blob: 12fa5464604087ee7ef9222f993ec16f865b72ea [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>
Andreas Gampea696c0a2014-12-10 20:51:45 -080024#include <unistd.h>
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070025#include <utility>
Elliott Hughes90a33692011-08-30 13:27:07 -070026#include <vector>
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070027
Elliott Hughes1aa246d2012-12-13 09:29:36 -080028#include "base/casts.h"
Elliott Hughes07ed66b2012-12-12 18:34:25 -080029#include "base/logging.h"
Narayan Kamathd1c606f2014-06-09 16:50:19 +010030#include "base/scoped_flock.h"
Elliott Hughes1aa246d2012-12-13 09:29:36 -080031#include "base/stl_util.h"
Elliott Hughes76160052012-12-12 16:31:20 -080032#include "base/unix_file/fd_file.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080033#include "class_linker-inl.h"
Vladimir Marko2b5eaa22013-12-13 13:59:30 +000034#include "compiler_callbacks.h"
Elliott Hughes4740cdf2011-12-07 14:07:12 -080035#include "debugger.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070036#include "dex_file-inl.h"
Ian Rogers6f3dbba2014-10-14 17:41:57 -070037#include "entrypoints/runtime_asm_entrypoints.h"
Hiroshi Yamauchi94f7b492014-07-22 18:08:23 -070038#include "gc_root-inl.h"
Ian Rogers1d54e732013-05-02 21:10:01 -070039#include "gc/accounting/card_table-inl.h"
40#include "gc/accounting/heap_bitmap.h"
41#include "gc/heap.h"
42#include "gc/space/image_space.h"
Mathieu Chartiereb8167a2014-05-07 15:43:14 -070043#include "handle_scope.h"
Elliott Hughescf4c6c42011-09-01 15:16:42 -070044#include "intern_table.h"
Ian Rogers64b6d142012-10-29 16:34:15 -070045#include "interpreter/interpreter.h"
Mathieu Chartiere5f13e52015-02-24 09:37:21 -080046#include "jit/jit.h"
47#include "jit/jit_code_cache.h"
Ian Rogers0571d352011-11-03 19:51:38 -070048#include "leb128.h"
Brian Carlstrom700c8d32012-11-05 10:42:02 -080049#include "oat.h"
Brian Carlstrom58ae9412011-10-04 00:56:06 -070050#include "oat_file.h"
Richard Uhler66d874d2015-01-15 09:37:19 -080051#include "oat_file_assistant.h"
Ian Rogers22d5e732014-07-15 22:23:51 -070052#include "object_lock.h"
Brian Carlstromea46f952013-07-30 01:26:50 -070053#include "mirror/art_field-inl.h"
54#include "mirror/art_method-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080055#include "mirror/class.h"
56#include "mirror/class-inl.h"
57#include "mirror/class_loader.h"
Ian Rogers39ebcb82013-05-30 16:57:23 -070058#include "mirror/dex_cache-inl.h"
Mathieu Chartierdaaf3262015-03-24 13:30:28 -070059#include "mirror/field.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080060#include "mirror/iftable-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080061#include "mirror/object-inl.h"
62#include "mirror/object_array-inl.h"
63#include "mirror/proxy.h"
Fred Shih4ee7a662014-07-11 09:59:27 -070064#include "mirror/reference-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080065#include "mirror/stack_trace_element.h"
Mingyao Yang98d1cc82014-05-15 17:02:16 -070066#include "mirror/string-inl.h"
Brian Carlstrom5b332c82012-02-01 15:02:31 -080067#include "os.h"
Brian Carlstrom1f870082011-08-23 16:02:11 -070068#include "runtime.h"
Ian Rogers7655f292013-07-29 11:07:13 -070069#include "entrypoints/entrypoint_utils.h"
Elliott Hughes4d0207c2011-10-03 19:14:34 -070070#include "ScopedLocalRef.h"
Ian Rogers00f7d0e2012-07-19 15:28:27 -070071#include "scoped_thread_state_change.h"
Mathieu Chartiereb8167a2014-05-07 15:43:14 -070072#include "handle_scope-inl.h"
Ian Rogers7b078e82014-09-10 14:44:24 -070073#include "thread-inl.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070074#include "utils.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080075#include "verifier/method_verifier.h"
Elliott Hugheseac76672012-05-24 21:56:51 -070076#include "well_known_classes.h"
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070077
78namespace art {
79
Ian Rogers00f7d0e2012-07-19 15:28:27 -070080static void ThrowNoClassDefFoundError(const char* fmt, ...)
81 __attribute__((__format__(__printf__, 1, 2)))
Ian Rogersb726dcb2012-09-05 08:57:23 -070082 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes0512f022012-03-15 22:10:52 -070083static void ThrowNoClassDefFoundError(const char* fmt, ...) {
Elliott Hughes4a2b4172011-09-20 17:08:25 -070084 va_list args;
85 va_start(args, fmt);
Ian Rogers62d6c772013-02-27 08:32:07 -080086 Thread* self = Thread::Current();
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +000087 self->ThrowNewExceptionV("Ljava/lang/NoClassDefFoundError;", fmt, args);
Ian Rogerscab01012012-01-10 17:35:46 -080088 va_end(args);
89}
90
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080091static void ThrowEarlierClassFailure(mirror::Class* c)
Ian Rogersb726dcb2012-09-05 08:57:23 -070092 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes5c599942012-06-13 16:45:05 -070093 // The class failed to initialize on a previous attempt, so we want to throw
94 // a NoClassDefFoundError (v2 2.17.5). The exception to this rule is if we
95 // failed in verification, in which case v2 5.4.1 says we need to re-throw
96 // the previous error.
Mathieu Chartiere5f13e52015-02-24 09:37:21 -080097 Runtime* const runtime = Runtime::Current();
98 if (!runtime->IsAotCompiler()) { // Give info if this occurs at runtime.
Ian Rogers87e552d2012-08-31 15:54:48 -070099 LOG(INFO) << "Rejecting re-init on previously-failed class " << PrettyClass(c);
100 }
Elliott Hughes4a2b4172011-09-20 17:08:25 -0700101
Elliott Hughes5c599942012-06-13 16:45:05 -0700102 CHECK(c->IsErroneous()) << PrettyClass(c) << " " << c->GetStatus();
Ian Rogers62d6c772013-02-27 08:32:07 -0800103 Thread* self = Thread::Current();
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800104 if (runtime->IsAotCompiler()) {
Ian Rogers7b078e82014-09-10 14:44:24 -0700105 // At compile time, accurate errors and NCDFE are disabled to speed compilation.
106 mirror::Throwable* pre_allocated = runtime->GetPreAllocatedNoClassDefFoundError();
Nicolas Geoffray14691c52015-03-05 10:40:17 +0000107 self->SetException(pre_allocated);
Elliott Hughes4a2b4172011-09-20 17:08:25 -0700108 } else {
Ian Rogers7b078e82014-09-10 14:44:24 -0700109 if (c->GetVerifyErrorClass() != NULL) {
110 // TODO: change the verifier to store an _instance_, with a useful detail message?
111 std::string temp;
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +0000112 self->ThrowNewException(c->GetVerifyErrorClass()->GetDescriptor(&temp),
Ian Rogers7b078e82014-09-10 14:44:24 -0700113 PrettyDescriptor(c).c_str());
114 } else {
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +0000115 self->ThrowNewException("Ljava/lang/NoClassDefFoundError;",
Ian Rogers7b078e82014-09-10 14:44:24 -0700116 PrettyDescriptor(c).c_str());
117 }
Elliott Hughes4a2b4172011-09-20 17:08:25 -0700118 }
119}
120
Brian Carlstromb23eab12014-10-08 17:55:21 -0700121static void VlogClassInitializationFailure(Handle<mirror::Class> klass)
122 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
123 if (VLOG_IS_ON(class_linker)) {
124 std::string temp;
125 LOG(INFO) << "Failed to initialize class " << klass->GetDescriptor(&temp) << " from "
Nicolas Geoffray14691c52015-03-05 10:40:17 +0000126 << klass->GetLocation() << "\n" << Thread::Current()->GetException()->Dump();
Brian Carlstromb23eab12014-10-08 17:55:21 -0700127 }
128}
129
130static void WrapExceptionInInitializer(Handle<mirror::Class> klass)
131 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughesa4f94742012-05-29 16:28:38 -0700132 Thread* self = Thread::Current();
133 JNIEnv* env = self->GetJniEnv();
Elliott Hughes4d0207c2011-10-03 19:14:34 -0700134
135 ScopedLocalRef<jthrowable> cause(env, env->ExceptionOccurred());
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700136 CHECK(cause.get() != nullptr);
Elliott Hughes4d0207c2011-10-03 19:14:34 -0700137
138 env->ExceptionClear();
Elliott Hughesa4f94742012-05-29 16:28:38 -0700139 bool is_error = env->IsInstanceOf(cause.get(), WellKnownClasses::java_lang_Error);
140 env->Throw(cause.get());
Elliott Hughes4d0207c2011-10-03 19:14:34 -0700141
Elliott Hughesa4f94742012-05-29 16:28:38 -0700142 // We only wrap non-Error exceptions; an Error can just be used as-is.
143 if (!is_error) {
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +0000144 self->ThrowNewWrappedException("Ljava/lang/ExceptionInInitializerError;", 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 {
Andreas Gampef52857f2015-02-18 15:38:57 -0800159 // Sort by gap size, largest first. Secondary sort by starting offset.
160 return lhs.size > rhs.size || (lhs.size == rhs.size && lhs.start_offset < rhs.start_offset);
Fred Shih381e4ca2014-08-25 17:24:27 -0700161 }
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 quick_resolution_trampoline_(nullptr),
Andreas Gampe2da88232014-02-27 12:26:20 -0800241 quick_imt_conflict_trampoline_(nullptr),
Vladimir Marko8a630572014-04-09 18:45:35 +0100242 quick_generic_jni_trampoline_(nullptr),
Mathieu Chartier2d721012014-11-10 11:08:06 -0800243 quick_to_interpreter_bridge_trampoline_(nullptr),
244 image_pointer_size_(sizeof(void*)) {
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -0700245 CHECK(intern_table_ != nullptr);
246 for (size_t i = 0; i < kFindArrayCacheSize; ++i) {
247 find_array_class_cache_[i] = GcRoot<mirror::Class>(nullptr);
248 }
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700249}
Brian Carlstroma663ea52011-08-19 23:33:41 -0700250
Richard Uhlerfbef44d2014-12-23 09:48:51 -0800251void ClassLinker::InitWithoutImage(std::vector<std::unique_ptr<const DexFile>> boot_class_path) {
Brian Carlstroma004aa92012-02-08 18:05:09 -0800252 VLOG(startup) << "ClassLinker::Init";
Alex Light64ad14d2014-08-19 14:23:13 -0700253 CHECK(!Runtime::Current()->GetHeap()->HasImageSpace()) << "Runtime has image. We should use it.";
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700254
Elliott Hughesd8ddfd52011-08-15 14:32:53 -0700255 CHECK(!init_done_);
Brian Carlstrom578bbdc2011-07-21 14:07:47 -0700256
Elliott Hughes30646832011-10-13 16:59:46 -0700257 // java_lang_Class comes first, it's needed for AllocClass
Ian Rogers1f539342012-10-03 21:09:42 -0700258 Thread* self = Thread::Current();
Ian Rogers1d54e732013-05-02 21:10:01 -0700259 gc::Heap* heap = Runtime::Current()->GetHeap();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700260 // 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 -0800261 heap->IncrementDisableMovingGC(self);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700262 StackHandleScope<64> hs(self); // 64 is picked arbitrarily.
263 Handle<mirror::Class> java_lang_Class(hs.NewHandle(down_cast<mirror::Class*>(
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700264 heap->AllocNonMovableObject<true>(self, nullptr,
265 mirror::Class::ClassClassSize(),
Brian Carlstromf3632832014-05-20 15:36:53 -0700266 VoidFunctor()))));
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700267 CHECK(java_lang_Class.Get() != nullptr);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700268 mirror::Class::SetClassClass(java_lang_Class.Get());
269 java_lang_Class->SetClass(java_lang_Class.Get());
Hiroshi Yamauchi624468c2014-03-31 15:14:47 -0700270 if (kUseBakerOrBrooksReadBarrier) {
271 java_lang_Class->AssertReadBarrierPointer();
Hiroshi Yamauchi9d04a202014-01-31 13:35:49 -0800272 }
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700273 java_lang_Class->SetClassSize(mirror::Class::ClassClassSize());
Hiroshi Yamauchif0edfc32014-09-25 11:46:46 -0700274 java_lang_Class->SetPrimitiveType(Primitive::kPrimNot);
Mathieu Chartier1d27b342014-01-28 12:51:09 -0800275 heap->DecrementDisableMovingGC(self);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800276 // AllocClass(mirror::Class*) can now be used
Brian Carlstroma0808032011-07-18 00:39:23 -0700277
Elliott Hughes418d20f2011-09-22 14:00:39 -0700278 // Class[] is used for reflection support.
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700279 Handle<mirror::Class> class_array_class(hs.NewHandle(
280 AllocClass(self, java_lang_Class.Get(), mirror::ObjectArray<mirror::Class>::ClassSize())));
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700281 class_array_class->SetComponentType(java_lang_Class.Get());
Elliott Hughes418d20f2011-09-22 14:00:39 -0700282
Ian Rogers23435d02012-09-24 11:23:12 -0700283 // java_lang_Object comes next so that object_array_class can be created.
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700284 Handle<mirror::Class> java_lang_Object(hs.NewHandle(
285 AllocClass(self, java_lang_Class.Get(), mirror::Object::ClassSize())));
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700286 CHECK(java_lang_Object.Get() != nullptr);
Ian Rogers23435d02012-09-24 11:23:12 -0700287 // backfill Object as the super class of Class.
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700288 java_lang_Class->SetSuperClass(java_lang_Object.Get());
Hiroshi Yamauchi5b783e62015-03-18 17:20:11 -0700289 mirror::Class::SetStatus(java_lang_Object, mirror::Class::kStatusLoaded, self);
Brian Carlstroma0808032011-07-18 00:39:23 -0700290
Ian Rogers23435d02012-09-24 11:23:12 -0700291 // Object[] next to hold class roots.
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700292 Handle<mirror::Class> object_array_class(hs.NewHandle(
293 AllocClass(self, java_lang_Class.Get(), mirror::ObjectArray<mirror::Object>::ClassSize())));
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700294 object_array_class->SetComponentType(java_lang_Object.Get());
Brian Carlstroma0808032011-07-18 00:39:23 -0700295
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700296 // Setup the char (primitive) class to be used for char[].
297 Handle<mirror::Class> char_class(hs.NewHandle(
298 AllocClass(self, java_lang_Class.Get(), mirror::Class::PrimitiveClassSize())));
Hiroshi Yamauchif0edfc32014-09-25 11:46:46 -0700299 // The primitive char class won't be initialized by
300 // InitializePrimitiveClass until line 459, but strings (and
301 // internal char arrays) will be allocated before that and the
302 // component size, which is computed from the primitive type, needs
303 // to be set here.
304 char_class->SetPrimitiveType(Primitive::kPrimChar);
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700305
Ian Rogers23435d02012-09-24 11:23:12 -0700306 // Setup the char[] class to be used for String.
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700307 Handle<mirror::Class> char_array_class(hs.NewHandle(
308 AllocClass(self, java_lang_Class.Get(),
309 mirror::Array::ClassSize())));
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700310 char_array_class->SetComponentType(char_class.Get());
311 mirror::CharArray::SetArrayClass(char_array_class.Get());
Brian Carlstrom9cff8e12011-08-18 16:47:29 -0700312
Ian Rogers23435d02012-09-24 11:23:12 -0700313 // Setup String.
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700314 Handle<mirror::Class> java_lang_String(hs.NewHandle(
315 AllocClass(self, java_lang_Class.Get(), mirror::String::ClassSize())));
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700316 mirror::String::SetClass(java_lang_String.Get());
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700317 java_lang_String->SetObjectSize(mirror::String::InstanceSize());
Hiroshi Yamauchi5b783e62015-03-18 17:20:11 -0700318 mirror::Class::SetStatus(java_lang_String, mirror::Class::kStatusResolved, self);
Jesse Wilson14150742011-07-29 19:04:44 -0400319
Mathieu Chartierdaaf3262015-03-24 13:30:28 -0700320 // Setup java.lang.ref.Reference.
Fred Shih4ee7a662014-07-11 09:59:27 -0700321 Handle<mirror::Class> java_lang_ref_Reference(hs.NewHandle(
322 AllocClass(self, java_lang_Class.Get(), mirror::Reference::ClassSize())));
323 mirror::Reference::SetClass(java_lang_ref_Reference.Get());
324 java_lang_ref_Reference->SetObjectSize(mirror::Reference::InstanceSize());
Hiroshi Yamauchi5b783e62015-03-18 17:20:11 -0700325 mirror::Class::SetStatus(java_lang_ref_Reference, mirror::Class::kStatusResolved, self);
Fred Shih4ee7a662014-07-11 09:59:27 -0700326
Ian Rogers23435d02012-09-24 11:23:12 -0700327 // Create storage for root classes, save away our work so far (requires descriptors).
Mathieu Chartierdaaf3262015-03-24 13:30:28 -0700328 class_roots_ = GcRoot<mirror::ObjectArray<mirror::Class>>(
Hiroshi Yamauchi94f7b492014-07-22 18:08:23 -0700329 mirror::ObjectArray<mirror::Class>::Alloc(self, object_array_class.Get(),
330 kClassRootsMax));
331 CHECK(!class_roots_.IsNull());
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700332 SetClassRoot(kJavaLangClass, java_lang_Class.Get());
333 SetClassRoot(kJavaLangObject, java_lang_Object.Get());
334 SetClassRoot(kClassArrayClass, class_array_class.Get());
335 SetClassRoot(kObjectArrayClass, object_array_class.Get());
336 SetClassRoot(kCharArrayClass, char_array_class.Get());
337 SetClassRoot(kJavaLangString, java_lang_String.Get());
Fred Shih4ee7a662014-07-11 09:59:27 -0700338 SetClassRoot(kJavaLangRefReference, java_lang_ref_Reference.Get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700339
340 // Setup the primitive type classes.
Ian Rogers50b35e22012-10-04 10:09:15 -0700341 SetClassRoot(kPrimitiveBoolean, CreatePrimitiveClass(self, Primitive::kPrimBoolean));
342 SetClassRoot(kPrimitiveByte, CreatePrimitiveClass(self, Primitive::kPrimByte));
343 SetClassRoot(kPrimitiveShort, CreatePrimitiveClass(self, Primitive::kPrimShort));
344 SetClassRoot(kPrimitiveInt, CreatePrimitiveClass(self, Primitive::kPrimInt));
345 SetClassRoot(kPrimitiveLong, CreatePrimitiveClass(self, Primitive::kPrimLong));
346 SetClassRoot(kPrimitiveFloat, CreatePrimitiveClass(self, Primitive::kPrimFloat));
347 SetClassRoot(kPrimitiveDouble, CreatePrimitiveClass(self, Primitive::kPrimDouble));
348 SetClassRoot(kPrimitiveVoid, CreatePrimitiveClass(self, Primitive::kPrimVoid));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700349
Ian Rogers23435d02012-09-24 11:23:12 -0700350 // Create array interface entries to populate once we can load system classes.
Hiroshi Yamauchi94f7b492014-07-22 18:08:23 -0700351 array_iftable_ = GcRoot<mirror::IfTable>(AllocIfTable(self, 2));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700352
Ian Rogers23435d02012-09-24 11:23:12 -0700353 // Create int array type for AllocDexCache (done in AppendToBootClassPath).
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700354 Handle<mirror::Class> int_array_class(hs.NewHandle(
355 AllocClass(self, java_lang_Class.Get(), mirror::Array::ClassSize())));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700356 int_array_class->SetComponentType(GetClassRoot(kPrimitiveInt));
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700357 mirror::IntArray::SetArrayClass(int_array_class.Get());
358 SetClassRoot(kIntArrayClass, int_array_class.Get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700359
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700360 // now that these are registered, we can use AllocClass() and AllocObjectArray
Brian Carlstroma0808032011-07-18 00:39:23 -0700361
Ian Rogers52813c92012-10-11 11:50:38 -0700362 // Set up DexCache. This cannot be done later since AppendToBootClassPath calls AllocDexCache.
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700363 Handle<mirror::Class> java_lang_DexCache(hs.NewHandle(
364 AllocClass(self, java_lang_Class.Get(), mirror::DexCache::ClassSize())));
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700365 SetClassRoot(kJavaLangDexCache, java_lang_DexCache.Get());
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700366 java_lang_DexCache->SetObjectSize(mirror::DexCache::InstanceSize());
Hiroshi Yamauchi5b783e62015-03-18 17:20:11 -0700367 mirror::Class::SetStatus(java_lang_DexCache, mirror::Class::kStatusResolved, self);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700368
Brian Carlstromf3632832014-05-20 15:36:53 -0700369 // Constructor, Field, Method, and AbstractMethod are necessary so
370 // that FindClass can link members.
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700371 Handle<mirror::Class> java_lang_reflect_ArtField(hs.NewHandle(
372 AllocClass(self, java_lang_Class.Get(), mirror::ArtField::ClassSize())));
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700373 CHECK(java_lang_reflect_ArtField.Get() != nullptr);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700374 java_lang_reflect_ArtField->SetObjectSize(mirror::ArtField::InstanceSize());
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700375 SetClassRoot(kJavaLangReflectArtField, java_lang_reflect_ArtField.Get());
Hiroshi Yamauchi5b783e62015-03-18 17:20:11 -0700376 mirror::Class::SetStatus(java_lang_reflect_ArtField, mirror::Class::kStatusResolved, self);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700377 mirror::ArtField::SetClass(java_lang_reflect_ArtField.Get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700378
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700379 Handle<mirror::Class> java_lang_reflect_ArtMethod(hs.NewHandle(
380 AllocClass(self, java_lang_Class.Get(), mirror::ArtMethod::ClassSize())));
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700381 CHECK(java_lang_reflect_ArtMethod.Get() != nullptr);
Jeff Haoc7d11882015-02-03 15:08:39 -0800382 size_t pointer_size = GetInstructionSetPointerSize(Runtime::Current()->GetInstructionSet());
383 java_lang_reflect_ArtMethod->SetObjectSize(mirror::ArtMethod::InstanceSize(pointer_size));
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700384 SetClassRoot(kJavaLangReflectArtMethod, java_lang_reflect_ArtMethod.Get());
Hiroshi Yamauchi5b783e62015-03-18 17:20:11 -0700385 mirror::Class::SetStatus(java_lang_reflect_ArtMethod, mirror::Class::kStatusResolved, self);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700386 mirror::ArtMethod::SetClass(java_lang_reflect_ArtMethod.Get());
Mathieu Chartier66f19252012-09-18 08:57:04 -0700387
388 // Set up array classes for string, field, method
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700389 Handle<mirror::Class> object_array_string(hs.NewHandle(
390 AllocClass(self, java_lang_Class.Get(),
391 mirror::ObjectArray<mirror::String>::ClassSize())));
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700392 object_array_string->SetComponentType(java_lang_String.Get());
393 SetClassRoot(kJavaLangStringArrayClass, object_array_string.Get());
Mathieu Chartier66f19252012-09-18 08:57:04 -0700394
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700395 Handle<mirror::Class> object_array_art_method(hs.NewHandle(
396 AllocClass(self, java_lang_Class.Get(),
397 mirror::ObjectArray<mirror::ArtMethod>::ClassSize())));
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700398 object_array_art_method->SetComponentType(java_lang_reflect_ArtMethod.Get());
399 SetClassRoot(kJavaLangReflectArtMethodArrayClass, object_array_art_method.Get());
Ian Rogers4445a7e2012-10-05 17:19:13 -0700400
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700401 Handle<mirror::Class> object_array_art_field(hs.NewHandle(
402 AllocClass(self, java_lang_Class.Get(),
403 mirror::ObjectArray<mirror::ArtField>::ClassSize())));
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700404 object_array_art_field->SetComponentType(java_lang_reflect_ArtField.Get());
405 SetClassRoot(kJavaLangReflectArtFieldArrayClass, object_array_art_field.Get());
Mathieu Chartier66f19252012-09-18 08:57:04 -0700406
Ian Rogers23435d02012-09-24 11:23:12 -0700407 // Setup boot_class_path_ and register class_path now that we can use AllocObjectArray to create
408 // DexCache instances. Needs to be after String, Field, Method arrays since AllocDexCache uses
409 // these roots.
Mathieu Chartier66f19252012-09-18 08:57:04 -0700410 CHECK_NE(0U, boot_class_path.size());
Richard Uhlerfbef44d2014-12-23 09:48:51 -0800411 for (auto& dex_file : boot_class_path) {
412 CHECK(dex_file.get() != nullptr);
Ian Rogers7b078e82014-09-10 14:44:24 -0700413 AppendToBootClassPath(self, *dex_file);
Richard Uhlerfbef44d2014-12-23 09:48:51 -0800414 opened_dex_files_.push_back(std::move(dex_file));
Mathieu Chartier66f19252012-09-18 08:57:04 -0700415 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700416
417 // now we can use FindSystemClass
418
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700419 // run char class through InitializePrimitiveClass to finish init
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700420 InitializePrimitiveClass(char_class.Get(), Primitive::kPrimChar);
421 SetClassRoot(kPrimitiveChar, char_class.Get()); // needs descriptor
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700422
Jeff Hao88474b42013-10-23 16:24:40 -0700423 // Create runtime resolution and imt conflict methods. Also setup the default imt.
424 Runtime* runtime = Runtime::Current();
425 runtime->SetResolutionMethod(runtime->CreateResolutionMethod());
426 runtime->SetImtConflictMethod(runtime->CreateImtConflictMethod());
Mathieu Chartier2d2621a2014-10-23 16:48:06 -0700427 runtime->SetImtUnimplementedMethod(runtime->CreateImtConflictMethod());
Jeff Hao88474b42013-10-23 16:24:40 -0700428 runtime->SetDefaultImt(runtime->CreateDefaultImt(this));
429
Dmitry Petrochenkof0972a42014-05-16 17:43:39 +0700430 // Set up GenericJNI entrypoint. That is mainly a hack for common_compiler_test.h so that
431 // we do not need friend classes or a publicly exposed setter.
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700432 quick_generic_jni_trampoline_ = GetQuickGenericJniStub();
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800433 if (!runtime->IsAotCompiler()) {
Alex Light64ad14d2014-08-19 14:23:13 -0700434 // We need to set up the generic trampolines since we don't have an image.
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700435 quick_resolution_trampoline_ = GetQuickResolutionStub();
436 quick_imt_conflict_trampoline_ = GetQuickImtConflictStub();
437 quick_to_interpreter_bridge_trampoline_ = GetQuickToInterpreterBridge();
Alex Light64ad14d2014-08-19 14:23:13 -0700438 }
Dmitry Petrochenkof0972a42014-05-16 17:43:39 +0700439
Mathieu Chartier66f19252012-09-18 08:57:04 -0700440 // Object, String and DexCache need to be rerun through FindSystemClass to finish init
Hiroshi Yamauchi5b783e62015-03-18 17:20:11 -0700441 mirror::Class::SetStatus(java_lang_Object, mirror::Class::kStatusNotReady, self);
Ian Rogers98379392014-02-24 16:53:16 -0800442 mirror::Class* Object_class = FindSystemClass(self, "Ljava/lang/Object;");
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700443 CHECK_EQ(java_lang_Object.Get(), Object_class);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700444 CHECK_EQ(java_lang_Object->GetObjectSize(), mirror::Object::InstanceSize());
Hiroshi Yamauchi5b783e62015-03-18 17:20:11 -0700445 mirror::Class::SetStatus(java_lang_String, mirror::Class::kStatusNotReady, self);
Ian Rogers98379392014-02-24 16:53:16 -0800446 mirror::Class* String_class = FindSystemClass(self, "Ljava/lang/String;");
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700447 std::ostringstream os1, os2;
448 java_lang_String->DumpClass(os1, mirror::Class::kDumpClassFullDetail);
449 String_class->DumpClass(os2, mirror::Class::kDumpClassFullDetail);
450 CHECK_EQ(java_lang_String.Get(), String_class) << os1.str() << "\n\n" << os2.str();
451 CHECK_EQ(java_lang_String->GetObjectSize(), mirror::String::InstanceSize());
Hiroshi Yamauchi5b783e62015-03-18 17:20:11 -0700452 mirror::Class::SetStatus(java_lang_DexCache, mirror::Class::kStatusNotReady, self);
Ian Rogers98379392014-02-24 16:53:16 -0800453 mirror::Class* DexCache_class = FindSystemClass(self, "Ljava/lang/DexCache;");
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700454 CHECK_EQ(java_lang_String.Get(), String_class);
455 CHECK_EQ(java_lang_DexCache.Get(), DexCache_class);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700456 CHECK_EQ(java_lang_DexCache->GetObjectSize(), mirror::DexCache::InstanceSize());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700457
Ian Rogers23435d02012-09-24 11:23:12 -0700458 // Setup the primitive array type classes - can't be done until Object has a vtable.
Ian Rogers98379392014-02-24 16:53:16 -0800459 SetClassRoot(kBooleanArrayClass, FindSystemClass(self, "[Z"));
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800460 mirror::BooleanArray::SetArrayClass(GetClassRoot(kBooleanArrayClass));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700461
Ian Rogers98379392014-02-24 16:53:16 -0800462 SetClassRoot(kByteArrayClass, FindSystemClass(self, "[B"));
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800463 mirror::ByteArray::SetArrayClass(GetClassRoot(kByteArrayClass));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700464
Ian Rogers98379392014-02-24 16:53:16 -0800465 mirror::Class* found_char_array_class = FindSystemClass(self, "[C");
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700466 CHECK_EQ(char_array_class.Get(), found_char_array_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700467
Ian Rogers98379392014-02-24 16:53:16 -0800468 SetClassRoot(kShortArrayClass, FindSystemClass(self, "[S"));
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800469 mirror::ShortArray::SetArrayClass(GetClassRoot(kShortArrayClass));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700470
Ian Rogers98379392014-02-24 16:53:16 -0800471 mirror::Class* found_int_array_class = FindSystemClass(self, "[I");
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700472 CHECK_EQ(int_array_class.Get(), found_int_array_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700473
Ian Rogers98379392014-02-24 16:53:16 -0800474 SetClassRoot(kLongArrayClass, FindSystemClass(self, "[J"));
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800475 mirror::LongArray::SetArrayClass(GetClassRoot(kLongArrayClass));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700476
Ian Rogers98379392014-02-24 16:53:16 -0800477 SetClassRoot(kFloatArrayClass, FindSystemClass(self, "[F"));
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800478 mirror::FloatArray::SetArrayClass(GetClassRoot(kFloatArrayClass));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700479
Ian Rogers98379392014-02-24 16:53:16 -0800480 SetClassRoot(kDoubleArrayClass, FindSystemClass(self, "[D"));
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800481 mirror::DoubleArray::SetArrayClass(GetClassRoot(kDoubleArrayClass));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700482
Ian Rogers98379392014-02-24 16:53:16 -0800483 mirror::Class* found_class_array_class = FindSystemClass(self, "[Ljava/lang/Class;");
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700484 CHECK_EQ(class_array_class.Get(), found_class_array_class);
Elliott Hughes418d20f2011-09-22 14:00:39 -0700485
Ian Rogers98379392014-02-24 16:53:16 -0800486 mirror::Class* found_object_array_class = FindSystemClass(self, "[Ljava/lang/Object;");
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700487 CHECK_EQ(object_array_class.Get(), found_object_array_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700488
Ian Rogers23435d02012-09-24 11:23:12 -0700489 // Setup the single, global copy of "iftable".
Ian Rogers98379392014-02-24 16:53:16 -0800490 mirror::Class* java_lang_Cloneable = FindSystemClass(self, "Ljava/lang/Cloneable;");
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700491 CHECK(java_lang_Cloneable != nullptr);
Ian Rogers98379392014-02-24 16:53:16 -0800492 mirror::Class* java_io_Serializable = FindSystemClass(self, "Ljava/io/Serializable;");
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700493 CHECK(java_io_Serializable != nullptr);
Ian Rogers23435d02012-09-24 11:23:12 -0700494 // We assume that Cloneable/Serializable don't have superinterfaces -- normally we'd have to
495 // crawl up and explicitly list all of the supers as well.
Hiroshi Yamauchie9e3e692014-06-24 14:31:37 -0700496 {
Hiroshi Yamauchi94f7b492014-07-22 18:08:23 -0700497 mirror::IfTable* array_iftable = array_iftable_.Read();
Hiroshi Yamauchie9e3e692014-06-24 14:31:37 -0700498 array_iftable->SetInterface(0, java_lang_Cloneable);
499 array_iftable->SetInterface(1, java_io_Serializable);
500 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700501
Ian Rogers23435d02012-09-24 11:23:12 -0700502 // Sanity check Class[] and Object[]'s interfaces.
Mathieu Chartierf8322842014-05-16 10:59:25 -0700503 CHECK_EQ(java_lang_Cloneable, mirror::Class::GetDirectInterface(self, class_array_class, 0));
504 CHECK_EQ(java_io_Serializable, mirror::Class::GetDirectInterface(self, class_array_class, 1));
505 CHECK_EQ(java_lang_Cloneable, mirror::Class::GetDirectInterface(self, object_array_class, 0));
506 CHECK_EQ(java_io_Serializable, mirror::Class::GetDirectInterface(self, object_array_class, 1));
Brian Carlstromea46f952013-07-30 01:26:50 -0700507 // Run Class, ArtField, and ArtMethod through FindSystemClass. This initializes their
Ian Rogers7dfb28c2013-08-22 08:18:36 -0700508 // dex_cache_ fields and register them in class_table_.
Ian Rogers98379392014-02-24 16:53:16 -0800509 mirror::Class* Class_class = FindSystemClass(self, "Ljava/lang/Class;");
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700510 CHECK_EQ(java_lang_Class.Get(), Class_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700511
Hiroshi Yamauchi5b783e62015-03-18 17:20:11 -0700512 mirror::Class::SetStatus(java_lang_reflect_ArtMethod, mirror::Class::kStatusNotReady, self);
Ian Rogers98379392014-02-24 16:53:16 -0800513 mirror::Class* Art_method_class = FindSystemClass(self, "Ljava/lang/reflect/ArtMethod;");
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700514 CHECK_EQ(java_lang_reflect_ArtMethod.Get(), Art_method_class);
Mathieu Chartier66f19252012-09-18 08:57:04 -0700515
Hiroshi Yamauchi5b783e62015-03-18 17:20:11 -0700516 mirror::Class::SetStatus(java_lang_reflect_ArtField, mirror::Class::kStatusNotReady, self);
Ian Rogers98379392014-02-24 16:53:16 -0800517 mirror::Class* Art_field_class = FindSystemClass(self, "Ljava/lang/reflect/ArtField;");
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700518 CHECK_EQ(java_lang_reflect_ArtField.Get(), Art_field_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700519
Brian Carlstromf3632832014-05-20 15:36:53 -0700520 mirror::Class* String_array_class =
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700521 FindSystemClass(self, GetClassRootDescriptor(kJavaLangStringArrayClass));
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700522 CHECK_EQ(object_array_string.Get(), String_array_class);
Mathieu Chartier66f19252012-09-18 08:57:04 -0700523
Brian Carlstromea46f952013-07-30 01:26:50 -0700524 mirror::Class* Art_method_array_class =
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700525 FindSystemClass(self, GetClassRootDescriptor(kJavaLangReflectArtMethodArrayClass));
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700526 CHECK_EQ(object_array_art_method.Get(), Art_method_array_class);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700527
Brian Carlstromea46f952013-07-30 01:26:50 -0700528 mirror::Class* Art_field_array_class =
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700529 FindSystemClass(self, GetClassRootDescriptor(kJavaLangReflectArtFieldArrayClass));
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700530 CHECK_EQ(object_array_art_field.Get(), Art_field_array_class);
Ian Rogers4445a7e2012-10-05 17:19:13 -0700531
Ian Rogers23435d02012-09-24 11:23:12 -0700532 // End of special init trickery, subsequent classes may be loaded via FindSystemClass.
Ian Rogers466bb252011-10-14 03:29:56 -0700533
Ian Rogers23435d02012-09-24 11:23:12 -0700534 // Create java.lang.reflect.Proxy root.
Ian Rogers98379392014-02-24 16:53:16 -0800535 mirror::Class* java_lang_reflect_Proxy = FindSystemClass(self, "Ljava/lang/reflect/Proxy;");
Ian Rogers466bb252011-10-14 03:29:56 -0700536 SetClassRoot(kJavaLangReflectProxy, java_lang_reflect_Proxy);
537
Mathieu Chartierdaaf3262015-03-24 13:30:28 -0700538 // Create java.lang.reflect.Field.class root.
539 mirror::Class* java_lang_reflect_Field = FindSystemClass(self, "Ljava/lang/reflect/Field;");
540 CHECK(java_lang_reflect_Field != nullptr);
541 SetClassRoot(kJavaLangReflectField, java_lang_reflect_Field);
542 mirror::Field::SetClass(java_lang_reflect_Field);
543
544 // Create java.lang.reflect.Field array root.
545 mirror::Class* java_lang_reflect_Field_array =
546 FindSystemClass(self, "[Ljava/lang/reflect/Field;");
547 CHECK(java_lang_reflect_Field_array != nullptr);
548 SetClassRoot(kJavaLangReflectFieldArrayClass, java_lang_reflect_Field_array);
549 mirror::Field::SetArrayClass(java_lang_reflect_Field_array);
550
Brian Carlstrom1f870082011-08-23 16:02:11 -0700551 // java.lang.ref classes need to be specially flagged, but otherwise are normal classes
Fred Shih4ee7a662014-07-11 09:59:27 -0700552 // finish initializing Reference class
Hiroshi Yamauchi5b783e62015-03-18 17:20:11 -0700553 mirror::Class::SetStatus(java_lang_ref_Reference, mirror::Class::kStatusNotReady, self);
Fred Shih4ee7a662014-07-11 09:59:27 -0700554 mirror::Class* Reference_class = FindSystemClass(self, "Ljava/lang/ref/Reference;");
555 CHECK_EQ(java_lang_ref_Reference.Get(), Reference_class);
556 CHECK_EQ(java_lang_ref_Reference->GetObjectSize(), mirror::Reference::InstanceSize());
557 CHECK_EQ(java_lang_ref_Reference->GetClassSize(), mirror::Reference::ClassSize());
Brian Carlstromf3632832014-05-20 15:36:53 -0700558 mirror::Class* java_lang_ref_FinalizerReference =
559 FindSystemClass(self, "Ljava/lang/ref/FinalizerReference;");
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700560 java_lang_ref_FinalizerReference->SetAccessFlags(
561 java_lang_ref_FinalizerReference->GetAccessFlags() |
562 kAccClassIsReference | kAccClassIsFinalizerReference);
Brian Carlstromf3632832014-05-20 15:36:53 -0700563 mirror::Class* java_lang_ref_PhantomReference =
564 FindSystemClass(self, "Ljava/lang/ref/PhantomReference;");
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700565 java_lang_ref_PhantomReference->SetAccessFlags(
566 java_lang_ref_PhantomReference->GetAccessFlags() |
567 kAccClassIsReference | kAccClassIsPhantomReference);
Brian Carlstromf3632832014-05-20 15:36:53 -0700568 mirror::Class* java_lang_ref_SoftReference =
569 FindSystemClass(self, "Ljava/lang/ref/SoftReference;");
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700570 java_lang_ref_SoftReference->SetAccessFlags(
571 java_lang_ref_SoftReference->GetAccessFlags() | kAccClassIsReference);
Brian Carlstromf3632832014-05-20 15:36:53 -0700572 mirror::Class* java_lang_ref_WeakReference =
573 FindSystemClass(self, "Ljava/lang/ref/WeakReference;");
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700574 java_lang_ref_WeakReference->SetAccessFlags(
575 java_lang_ref_WeakReference->GetAccessFlags() |
576 kAccClassIsReference | kAccClassIsWeakReference);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700577
Ian Rogers23435d02012-09-24 11:23:12 -0700578 // Setup the ClassLoader, verifying the object_size_.
Ian Rogers98379392014-02-24 16:53:16 -0800579 mirror::Class* java_lang_ClassLoader = FindSystemClass(self, "Ljava/lang/ClassLoader;");
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700580 CHECK_EQ(java_lang_ClassLoader->GetObjectSize(), mirror::ClassLoader::InstanceSize());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700581 SetClassRoot(kJavaLangClassLoader, java_lang_ClassLoader);
582
jeffhao8cd6dda2012-02-22 10:15:34 -0800583 // Set up java.lang.Throwable, java.lang.ClassNotFoundException, and
Ian Rogers23435d02012-09-24 11:23:12 -0700584 // java.lang.StackTraceElement as a convenience.
Ian Rogers98379392014-02-24 16:53:16 -0800585 SetClassRoot(kJavaLangThrowable, FindSystemClass(self, "Ljava/lang/Throwable;"));
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800586 mirror::Throwable::SetClass(GetClassRoot(kJavaLangThrowable));
Brian Carlstromf3632832014-05-20 15:36:53 -0700587 SetClassRoot(kJavaLangClassNotFoundException,
588 FindSystemClass(self, "Ljava/lang/ClassNotFoundException;"));
Ian Rogers98379392014-02-24 16:53:16 -0800589 SetClassRoot(kJavaLangStackTraceElement, FindSystemClass(self, "Ljava/lang/StackTraceElement;"));
Brian Carlstromf3632832014-05-20 15:36:53 -0700590 SetClassRoot(kJavaLangStackTraceElementArrayClass,
591 FindSystemClass(self, "[Ljava/lang/StackTraceElement;"));
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800592 mirror::StackTraceElement::SetClass(GetClassRoot(kJavaLangStackTraceElement));
Elliott Hughesd8ddfd52011-08-15 14:32:53 -0700593
Andreas Gampe76bd8802014-12-10 16:43:58 -0800594 // Ensure void type is resolved in the core's dex cache so java.lang.Void is correctly
595 // initialized.
596 {
597 const DexFile& dex_file = java_lang_Object->GetDexFile();
598 const DexFile::StringId* void_string_id = dex_file.FindStringId("V");
599 CHECK(void_string_id != nullptr);
600 uint32_t void_string_index = dex_file.GetIndexForStringId(*void_string_id);
601 const DexFile::TypeId* void_type_id = dex_file.FindTypeId(void_string_index);
602 CHECK(void_type_id != nullptr);
603 uint16_t void_type_idx = dex_file.GetIndexForTypeId(*void_type_id);
604 // Now we resolve void type so the dex cache contains it. We use java.lang.Object class
605 // as referrer so the used dex cache is core's one.
606 mirror::Class* resolved_type = ResolveType(dex_file, void_type_idx, java_lang_Object.Get());
607 CHECK_EQ(resolved_type, GetClassRoot(kPrimitiveVoid));
608 self->AssertNoPendingException();
609 }
610
Ian Rogers98379392014-02-24 16:53:16 -0800611 FinishInit(self);
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700612
Brian Carlstroma004aa92012-02-08 18:05:09 -0800613 VLOG(startup) << "ClassLinker::InitFromCompiler exiting";
Brian Carlstroma663ea52011-08-19 23:33:41 -0700614}
615
Ian Rogers98379392014-02-24 16:53:16 -0800616void ClassLinker::FinishInit(Thread* self) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800617 VLOG(startup) << "ClassLinker::FinishInit entering";
Brian Carlstrom16192862011-09-12 17:50:06 -0700618
619 // Let the heap know some key offsets into java.lang.ref instances
Elliott Hughes20cde902011-10-04 17:37:27 -0700620 // Note: we hard code the field indexes here rather than using FindInstanceField
Brian Carlstrom16192862011-09-12 17:50:06 -0700621 // as the types of the field can't be resolved prior to the runtime being
622 // fully initialized
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800623 mirror::Class* java_lang_ref_Reference = GetClassRoot(kJavaLangRefReference);
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700624 mirror::Class* java_lang_ref_FinalizerReference =
Ian Rogers98379392014-02-24 16:53:16 -0800625 FindSystemClass(self, "Ljava/lang/ref/FinalizerReference;");
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800626
Brian Carlstromea46f952013-07-30 01:26:50 -0700627 mirror::ArtField* pendingNext = java_lang_ref_Reference->GetInstanceField(0);
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -0700628 CHECK_STREQ(pendingNext->GetName(), "pendingNext");
629 CHECK_STREQ(pendingNext->GetTypeDescriptor(), "Ljava/lang/ref/Reference;");
Brian Carlstrom16192862011-09-12 17:50:06 -0700630
Brian Carlstromea46f952013-07-30 01:26:50 -0700631 mirror::ArtField* queue = java_lang_ref_Reference->GetInstanceField(1);
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -0700632 CHECK_STREQ(queue->GetName(), "queue");
633 CHECK_STREQ(queue->GetTypeDescriptor(), "Ljava/lang/ref/ReferenceQueue;");
Brian Carlstrom16192862011-09-12 17:50:06 -0700634
Brian Carlstromea46f952013-07-30 01:26:50 -0700635 mirror::ArtField* queueNext = java_lang_ref_Reference->GetInstanceField(2);
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -0700636 CHECK_STREQ(queueNext->GetName(), "queueNext");
637 CHECK_STREQ(queueNext->GetTypeDescriptor(), "Ljava/lang/ref/Reference;");
Brian Carlstrom16192862011-09-12 17:50:06 -0700638
Brian Carlstromea46f952013-07-30 01:26:50 -0700639 mirror::ArtField* referent = java_lang_ref_Reference->GetInstanceField(3);
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -0700640 CHECK_STREQ(referent->GetName(), "referent");
641 CHECK_STREQ(referent->GetTypeDescriptor(), "Ljava/lang/Object;");
Brian Carlstrom16192862011-09-12 17:50:06 -0700642
Brian Carlstromea46f952013-07-30 01:26:50 -0700643 mirror::ArtField* zombie = java_lang_ref_FinalizerReference->GetInstanceField(2);
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -0700644 CHECK_STREQ(zombie->GetName(), "zombie");
645 CHECK_STREQ(zombie->GetTypeDescriptor(), "Ljava/lang/Object;");
Brian Carlstrom16192862011-09-12 17:50:06 -0700646
Brian Carlstroma663ea52011-08-19 23:33:41 -0700647 // ensure all class_roots_ are initialized
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700648 for (size_t i = 0; i < kClassRootsMax; i++) {
Brian Carlstroma663ea52011-08-19 23:33:41 -0700649 ClassRoot class_root = static_cast<ClassRoot>(i);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800650 mirror::Class* klass = GetClassRoot(class_root);
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700651 CHECK(klass != nullptr);
652 DCHECK(klass->IsArrayClass() || klass->IsPrimitive() || klass->GetDexCache() != nullptr);
Brian Carlstroma663ea52011-08-19 23:33:41 -0700653 // note SetClassRoot does additional validation.
654 // if possible add new checks there to catch errors early
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700655 }
656
Hiroshi Yamauchi94f7b492014-07-22 18:08:23 -0700657 CHECK(!array_iftable_.IsNull());
Elliott Hughes92f14b22011-10-06 12:29:54 -0700658
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700659 // disable the slow paths in FindClass and CreatePrimitiveClass now
660 // that Object, Class, and Object[] are setup
661 init_done_ = true;
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700662
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800663 VLOG(startup) << "ClassLinker::FinishInit exiting";
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700664}
665
Elliott Hughes2a20cfd2011-09-23 19:30:41 -0700666void ClassLinker::RunRootClinits() {
667 Thread* self = Thread::Current();
668 for (size_t i = 0; i < ClassLinker::kClassRootsMax; ++i) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800669 mirror::Class* c = GetClassRoot(ClassRoot(i));
Elliott Hughes2a20cfd2011-09-23 19:30:41 -0700670 if (!c->IsArrayClass() && !c->IsPrimitive()) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700671 StackHandleScope<1> hs(self);
672 Handle<mirror::Class> h_class(hs.NewHandle(GetClassRoot(ClassRoot(i))));
Ian Rogers7b078e82014-09-10 14:44:24 -0700673 EnsureInitialized(self, h_class, true, true);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700674 self->AssertNoPendingException();
Elliott Hughes2a20cfd2011-09-23 19:30:41 -0700675 }
676 }
677}
678
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700679const OatFile* ClassLinker::RegisterOatFile(const OatFile* oat_file) {
Ian Rogers1bf8d4d2013-05-30 00:18:49 -0700680 WriterMutexLock mu(Thread::Current(), dex_lock_);
Brian Carlstrom0d6adac2014-02-05 17:39:16 -0800681 if (kIsDebugBuild) {
682 for (size_t i = 0; i < oat_files_.size(); ++i) {
683 CHECK_NE(oat_file, oat_files_[i]) << oat_file->GetLocation();
Ian Rogers1bf8d4d2013-05-30 00:18:49 -0700684 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800685 }
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700686 VLOG(class_linker) << "Registering " << oat_file->GetLocation();
687 oat_files_.push_back(oat_file);
688 return oat_file;
Brian Carlstrom866c8622012-01-06 16:35:13 -0800689}
690
Brian Carlstrom56d947f2013-07-15 13:14:23 -0700691OatFile& ClassLinker::GetImageOatFile(gc::space::ImageSpace* space) {
692 VLOG(startup) << "ClassLinker::GetImageOatFile entering";
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700693 OatFile* oat_file = space->ReleaseOatFile();
694 CHECK_EQ(RegisterOatFile(oat_file), oat_file);
Brian Carlstrom56d947f2013-07-15 13:14:23 -0700695 VLOG(startup) << "ClassLinker::GetImageOatFile exiting";
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700696 return *oat_file;
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700697}
698
Richard Uhler66d874d2015-01-15 09:37:19 -0800699std::vector<std::unique_ptr<const DexFile>> ClassLinker::OpenDexFilesFromOat(
700 const char* dex_location, const char* oat_location,
701 std::vector<std::string>* error_msgs) {
702 CHECK(error_msgs != nullptr);
Calin Juravle621962a2014-09-02 15:53:55 +0100703
Richard Uhler66d874d2015-01-15 09:37:19 -0800704 // Verify we aren't holding the mutator lock, which could starve GC if we
705 // have to generate or relocate an oat file.
706 Locks::mutator_lock_->AssertNotHeld(Thread::Current());
707
708 OatFileAssistant oat_file_assistant(dex_location, oat_location, kRuntimeISA,
709 !Runtime::Current()->IsAotCompiler());
710
711 // Lock the target oat location to avoid races generating and loading the
712 // oat file.
713 std::string error_msg;
714 if (!oat_file_assistant.Lock(&error_msg)) {
715 // Don't worry too much if this fails. If it does fail, it's unlikely we
716 // can generate an oat file anyway.
717 VLOG(class_linker) << "OatFileAssistant::Lock: " << error_msg;
Andreas Gampe833a4852014-05-21 18:46:59 -0700718 }
719
Richard Uhler66d874d2015-01-15 09:37:19 -0800720 // Check if we already have an up-to-date oat file open.
721 const OatFile* source_oat_file = nullptr;
722 {
723 ReaderMutexLock mu(Thread::Current(), dex_lock_);
724 for (const OatFile* oat_file : oat_files_) {
725 CHECK(oat_file != nullptr);
726 if (oat_file_assistant.GivenOatFileIsUpToDate(*oat_file)) {
727 source_oat_file = oat_file;
728 break;
Andreas Gampe833a4852014-05-21 18:46:59 -0700729 }
730 }
Andreas Gampe833a4852014-05-21 18:46:59 -0700731 }
732
Richard Uhler66d874d2015-01-15 09:37:19 -0800733 // If we didn't have an up-to-date oat file open, try to load one from disk.
734 if (source_oat_file == nullptr) {
735 // Update the oat file on disk if we can. This may fail, but that's okay.
736 // Best effort is all that matters here.
737 if (!oat_file_assistant.MakeUpToDate(&error_msg)) {
738 LOG(WARNING) << error_msg;
Andreas Gampe833a4852014-05-21 18:46:59 -0700739 }
Andreas Gampe833a4852014-05-21 18:46:59 -0700740
Richard Uhler66d874d2015-01-15 09:37:19 -0800741 // Get the oat file on disk.
742 std::unique_ptr<OatFile> oat_file = oat_file_assistant.GetBestOatFile();
743 if (oat_file.get() != nullptr) {
744 source_oat_file = oat_file.release();
745 RegisterOatFile(source_oat_file);
Andreas Gampe833a4852014-05-21 18:46:59 -0700746 }
747 }
748
Richard Uhler66d874d2015-01-15 09:37:19 -0800749 std::vector<std::unique_ptr<const DexFile>> dex_files;
Andreas Gampe833a4852014-05-21 18:46:59 -0700750
Richard Uhler66d874d2015-01-15 09:37:19 -0800751 // Load the dex files from the oat file.
752 if (source_oat_file != nullptr) {
753 dex_files = oat_file_assistant.LoadDexFiles(*source_oat_file, dex_location);
754 if (dex_files.empty()) {
755 error_msgs->push_back("Failed to open dex files from "
756 + source_oat_file->GetLocation());
Andreas Gampe833a4852014-05-21 18:46:59 -0700757 }
758 }
759
Richard Uhler66d874d2015-01-15 09:37:19 -0800760 // Fall back to running out of the original dex file if we couldn't load any
761 // dex_files from the oat file.
762 if (dex_files.empty()) {
Jean Christophe Beyler24e04aa2014-09-12 12:03:25 -0700763 if (Runtime::Current()->IsDexFileFallbackEnabled()) {
Richard Uhler66d874d2015-01-15 09:37:19 -0800764 if (!DexFile::Open(dex_location, dex_location, &error_msg, &dex_files)) {
765 LOG(WARNING) << error_msg;
766 error_msgs->push_back("Failed to open dex files from "
767 + std::string(dex_location));
Jean Christophe Beyler24e04aa2014-09-12 12:03:25 -0700768 }
769 } else {
770 error_msgs->push_back("Fallback mode disabled, skipping dex files.");
771 }
Andreas Gampe833a4852014-05-21 18:46:59 -0700772 }
Richard Uhler66d874d2015-01-15 09:37:19 -0800773 return dex_files;
Brian Carlstromaded5f72011-10-07 17:15:04 -0700774}
775
Brian Carlstromae826982011-11-09 01:33:42 -0800776const OatFile* ClassLinker::FindOpenedOatFileFromOatLocation(const std::string& oat_location) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700777 ReaderMutexLock mu(Thread::Current(), dex_lock_);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700778 for (size_t i = 0; i < oat_files_.size(); i++) {
779 const OatFile* oat_file = oat_files_[i];
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700780 DCHECK(oat_file != nullptr);
Brian Carlstromae826982011-11-09 01:33:42 -0800781 if (oat_file->GetLocation() == oat_location) {
Brian Carlstromaded5f72011-10-07 17:15:04 -0700782 return oat_file;
783 }
784 }
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700785 return nullptr;
Brian Carlstromfad71432011-10-16 20:25:10 -0700786}
Brian Carlstromaded5f72011-10-07 17:15:04 -0700787
Mathieu Chartiera89d7ed2014-12-05 10:57:13 -0800788void ClassLinker::InitFromImageInterpretOnlyCallback(mirror::Object* obj, void* arg) {
Ian Rogers7dfb28c2013-08-22 08:18:36 -0700789 ClassLinker* class_linker = reinterpret_cast<ClassLinker*>(arg);
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700790 DCHECK(obj != nullptr);
791 DCHECK(class_linker != nullptr);
Ian Rogers7dfb28c2013-08-22 08:18:36 -0700792 if (obj->IsArtMethod()) {
Brian Carlstromea46f952013-07-30 01:26:50 -0700793 mirror::ArtMethod* method = obj->AsArtMethod();
Ian Rogers848871b2013-08-05 10:56:33 -0700794 if (!method->IsNative()) {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800795 const size_t pointer_size = class_linker->image_pointer_size_;
Mathieu Chartiera89d7ed2014-12-05 10:57:13 -0800796 method->SetEntryPointFromInterpreterPtrSize(artInterpreterToInterpreterBridge, pointer_size);
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800797 if (!method->IsRuntimeMethod() && method != Runtime::Current()->GetResolutionMethod()) {
Mathieu Chartiera89d7ed2014-12-05 10:57:13 -0800798 method->SetEntryPointFromQuickCompiledCodePtrSize(GetQuickToInterpreterBridge(),
799 pointer_size);
Ian Rogers848871b2013-08-05 10:56:33 -0700800 }
801 }
802 }
803}
804
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700805void ClassLinker::InitFromImage() {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800806 VLOG(startup) << "ClassLinker::InitFromImage entering";
Brian Carlstroma663ea52011-08-19 23:33:41 -0700807 CHECK(!init_done_);
808
Mathieu Chartierdaaf3262015-03-24 13:30:28 -0700809 Runtime* const runtime = Runtime::Current();
810 Thread* const self = Thread::Current();
811 gc::Heap* const heap = runtime->GetHeap();
812 gc::space::ImageSpace* const space = heap->GetImageSpace();
Ian Rogers7dfb28c2013-08-22 08:18:36 -0700813 dex_cache_image_class_lookup_required_ = true;
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700814 CHECK(space != nullptr);
Brian Carlstrom56d947f2013-07-15 13:14:23 -0700815 OatFile& oat_file = GetImageOatFile(space);
816 CHECK_EQ(oat_file.GetOatHeader().GetImageFileLocationOatChecksum(), 0U);
817 CHECK_EQ(oat_file.GetOatHeader().GetImageFileLocationOatDataBegin(), 0U);
Andreas Gampe22f8e5c2014-07-09 11:38:21 -0700818 const char* image_file_location = oat_file.GetOatHeader().
819 GetStoreValueByKey(OatHeader::kImageLocationKey);
820 CHECK(image_file_location == nullptr || *image_file_location == 0);
Brian Carlstrom56d947f2013-07-15 13:14:23 -0700821 quick_resolution_trampoline_ = oat_file.GetOatHeader().GetQuickResolutionTrampoline();
Jeff Hao88474b42013-10-23 16:24:40 -0700822 quick_imt_conflict_trampoline_ = oat_file.GetOatHeader().GetQuickImtConflictTrampoline();
Andreas Gampe2da88232014-02-27 12:26:20 -0800823 quick_generic_jni_trampoline_ = oat_file.GetOatHeader().GetQuickGenericJniTrampoline();
Vladimir Marko8a630572014-04-09 18:45:35 +0100824 quick_to_interpreter_bridge_trampoline_ = oat_file.GetOatHeader().GetQuickToInterpreterBridge();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800825 mirror::Object* dex_caches_object = space->GetImageHeader().GetImageRoot(ImageHeader::kDexCaches);
826 mirror::ObjectArray<mirror::DexCache>* dex_caches =
827 dex_caches_object->AsObjectArray<mirror::DexCache>();
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700828
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700829 StackHandleScope<1> hs(self);
830 Handle<mirror::ObjectArray<mirror::Class>> class_roots(hs.NewHandle(
831 space->GetImageHeader().GetImageRoot(ImageHeader::kClassRoots)->
832 AsObjectArray<mirror::Class>()));
Hiroshi Yamauchi94f7b492014-07-22 18:08:23 -0700833 class_roots_ = GcRoot<mirror::ObjectArray<mirror::Class>>(class_roots.Get());
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700834
Brian Carlstromfddf6f62012-03-15 16:56:45 -0700835 // Special case of setting up the String class early so that we can test arbitrary objects
836 // as being Strings or not
Anwar Ghuloumc4f105d2013-04-10 16:12:11 -0700837 mirror::String::SetClass(GetClassRoot(kJavaLangString));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800838
Brian Carlstrom56d947f2013-07-15 13:14:23 -0700839 CHECK_EQ(oat_file.GetOatHeader().GetDexFileCount(),
Brian Carlstromfddf6f62012-03-15 16:56:45 -0700840 static_cast<uint32_t>(dex_caches->GetLength()));
Ian Rogers7dfb28c2013-08-22 08:18:36 -0700841 for (int32_t i = 0; i < dex_caches->GetLength(); i++) {
Andreas Gampe277ccbd2014-11-03 21:36:10 -0800842 StackHandleScope<1> hs2(self);
843 Handle<mirror::DexCache> dex_cache(hs2.NewHandle(dex_caches->Get(i)));
Brian Carlstromfddf6f62012-03-15 16:56:45 -0700844 const std::string& dex_file_location(dex_cache->GetLocation()->ToModifiedUtf8());
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700845 const OatFile::OatDexFile* oat_dex_file = oat_file.GetOatDexFile(dex_file_location.c_str(),
846 nullptr);
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700847 CHECK(oat_dex_file != nullptr) << oat_file.GetLocation() << " " << dex_file_location;
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700848 std::string error_msg;
Richard Uhlerfbef44d2014-12-23 09:48:51 -0800849 std::unique_ptr<const DexFile> dex_file = oat_dex_file->OpenDexFile(&error_msg);
850 if (dex_file.get() == nullptr) {
Brian Carlstromfddf6f62012-03-15 16:56:45 -0700851 LOG(FATAL) << "Failed to open dex file " << dex_file_location
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700852 << " from within oat file " << oat_file.GetLocation()
853 << " error '" << error_msg << "'";
Ian Rogerse0a02da2014-12-02 14:10:53 -0800854 UNREACHABLE();
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700855 }
Brian Carlstromfddf6f62012-03-15 16:56:45 -0700856
857 CHECK_EQ(dex_file->GetLocationChecksum(), oat_dex_file->GetDexFileLocationChecksum());
858
Richard Uhlerfbef44d2014-12-23 09:48:51 -0800859 AppendToBootClassPath(*dex_file.get(), dex_cache);
860 opened_dex_files_.push_back(std::move(dex_file));
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700861 }
862
Anwar Ghuloumc4f105d2013-04-10 16:12:11 -0700863 // Set classes on AbstractMethod early so that IsMethod tests can be performed during the live
864 // bitmap walk.
Brian Carlstromea46f952013-07-30 01:26:50 -0700865 mirror::ArtMethod::SetClass(GetClassRoot(kJavaLangReflectArtMethod));
Mathieu Chartier2d721012014-11-10 11:08:06 -0800866 size_t art_method_object_size = mirror::ArtMethod::GetJavaLangReflectArtMethod()->GetObjectSize();
Mathieu Chartierdaaf3262015-03-24 13:30:28 -0700867 if (!runtime->IsAotCompiler()) {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800868 // Aot compiler supports having an image with a different pointer size than the runtime. This
Mathieu Chartier2d721012014-11-10 11:08:06 -0800869 // happens on the host for compile 32 bit tests since we use a 64 bit libart compiler. We may
870 // also use 32 bit dex2oat on a system with 64 bit apps.
871 CHECK_EQ(art_method_object_size, mirror::ArtMethod::InstanceSize(sizeof(void*)))
872 << sizeof(void*);
873 }
874 if (art_method_object_size == mirror::ArtMethod::InstanceSize(4)) {
875 image_pointer_size_ = 4;
876 } else {
877 CHECK_EQ(art_method_object_size, mirror::ArtMethod::InstanceSize(8));
878 image_pointer_size_ = 8;
879 }
Anwar Ghuloumc4f105d2013-04-10 16:12:11 -0700880
Ian Rogers7dfb28c2013-08-22 08:18:36 -0700881 // Set entry point to interpreter if in InterpretOnly mode.
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800882 if (!runtime->IsAotCompiler() && runtime->GetInstrumentation()->InterpretOnly()) {
Mathieu Chartier590fee92013-09-13 13:46:47 -0700883 heap->VisitObjects(InitFromImageInterpretOnlyCallback, this);
Mathieu Chartierb062fdd2012-07-03 09:51:48 -0700884 }
Brian Carlstroma663ea52011-08-19 23:33:41 -0700885
886 // reinit class_roots_
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800887 mirror::Class::SetClassClass(class_roots->Get(kJavaLangClass));
Hiroshi Yamauchi94f7b492014-07-22 18:08:23 -0700888 class_roots_ = GcRoot<mirror::ObjectArray<mirror::Class>>(class_roots.Get());
Brian Carlstroma663ea52011-08-19 23:33:41 -0700889
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800890 // reinit array_iftable_ from any array class instance, they should be ==
Hiroshi Yamauchi94f7b492014-07-22 18:08:23 -0700891 array_iftable_ = GcRoot<mirror::IfTable>(GetClassRoot(kObjectArrayClass)->GetIfTable());
Mathieu Chartier2d721012014-11-10 11:08:06 -0800892 DCHECK_EQ(array_iftable_.Read(), GetClassRoot(kBooleanArrayClass)->GetIfTable());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800893 // String class root was set above
Mathieu Chartierdaaf3262015-03-24 13:30:28 -0700894 mirror::Field::SetClass(GetClassRoot(kJavaLangReflectField));
895 mirror::Field::SetArrayClass(GetClassRoot(kJavaLangReflectFieldArrayClass));
Fred Shih4ee7a662014-07-11 09:59:27 -0700896 mirror::Reference::SetClass(GetClassRoot(kJavaLangRefReference));
Brian Carlstromea46f952013-07-30 01:26:50 -0700897 mirror::ArtField::SetClass(GetClassRoot(kJavaLangReflectArtField));
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800898 mirror::BooleanArray::SetArrayClass(GetClassRoot(kBooleanArrayClass));
899 mirror::ByteArray::SetArrayClass(GetClassRoot(kByteArrayClass));
900 mirror::CharArray::SetArrayClass(GetClassRoot(kCharArrayClass));
901 mirror::DoubleArray::SetArrayClass(GetClassRoot(kDoubleArrayClass));
902 mirror::FloatArray::SetArrayClass(GetClassRoot(kFloatArrayClass));
903 mirror::IntArray::SetArrayClass(GetClassRoot(kIntArrayClass));
904 mirror::LongArray::SetArrayClass(GetClassRoot(kLongArrayClass));
905 mirror::ShortArray::SetArrayClass(GetClassRoot(kShortArrayClass));
906 mirror::Throwable::SetClass(GetClassRoot(kJavaLangThrowable));
907 mirror::StackTraceElement::SetClass(GetClassRoot(kJavaLangStackTraceElement));
Brian Carlstroma663ea52011-08-19 23:33:41 -0700908
Ian Rogers98379392014-02-24 16:53:16 -0800909 FinishInit(self);
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700910
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800911 VLOG(startup) << "ClassLinker::InitFromImage exiting";
Brian Carlstroma663ea52011-08-19 23:33:41 -0700912}
913
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -0700914void ClassLinker::VisitClassRoots(RootVisitor* visitor, VisitRootFlags flags) {
Mathieu Chartier52e4b432014-06-10 11:22:31 -0700915 WriterMutexLock mu(Thread::Current(), *Locks::classlinker_classes_lock_);
916 if ((flags & kVisitRootFlagAllRoots) != 0) {
Mathieu Chartier4809d0a2015-04-07 10:39:04 -0700917 BufferedRootVisitor<kDefaultBufferedRootCount> buffered_visitor(
918 visitor, RootInfo(kRootStickyClass));
Mathieu Chartierc2e20622014-11-03 11:41:47 -0800919 for (GcRoot<mirror::Class>& root : class_table_) {
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -0700920 buffered_visitor.VisitRoot(root);
Mathieu Chartierc2e20622014-11-03 11:41:47 -0800921 }
922 for (GcRoot<mirror::Class>& root : pre_zygote_class_table_) {
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -0700923 buffered_visitor.VisitRoot(root);
Mathieu Chartier52e4b432014-06-10 11:22:31 -0700924 }
925 } else if ((flags & kVisitRootFlagNewRoots) != 0) {
Mathieu Chartierc2e20622014-11-03 11:41:47 -0800926 for (auto& root : new_class_roots_) {
927 mirror::Class* old_ref = root.Read<kWithoutReadBarrier>();
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -0700928 root.VisitRoot(visitor, RootInfo(kRootStickyClass));
Mathieu Chartierc2e20622014-11-03 11:41:47 -0800929 mirror::Class* new_ref = root.Read<kWithoutReadBarrier>();
Hiroshi Yamauchi94f7b492014-07-22 18:08:23 -0700930 if (UNLIKELY(new_ref != old_ref)) {
Mathieu Chartier52e4b432014-06-10 11:22:31 -0700931 // Uh ohes, GC moved a root in the log. Need to search the class_table and update the
932 // corresponding object. This is slow, but luckily for us, this may only happen with a
933 // concurrent moving GC.
Mathieu Chartierc2e20622014-11-03 11:41:47 -0800934 auto it = class_table_.Find(GcRoot<mirror::Class>(old_ref));
Mathieu Chartiere34fa1d2015-01-14 14:55:47 -0800935 DCHECK(it != class_table_.end());
936 *it = GcRoot<mirror::Class>(new_ref);
Mathieu Chartier52e4b432014-06-10 11:22:31 -0700937 }
938 }
939 }
940 if ((flags & kVisitRootFlagClearRootLog) != 0) {
941 new_class_roots_.clear();
942 }
943 if ((flags & kVisitRootFlagStartLoggingNewRoots) != 0) {
944 log_new_class_table_roots_ = true;
945 } else if ((flags & kVisitRootFlagStopLoggingNewRoots) != 0) {
946 log_new_class_table_roots_ = false;
947 }
948 // We deliberately ignore the class roots in the image since we
949 // handle image roots by using the MS/CMS rescanning of dirty cards.
950}
951
Brian Carlstroma663ea52011-08-19 23:33:41 -0700952// Keep in sync with InitCallback. Anything we visit, we need to
953// reinit references to when reinitializing a ClassLinker from a
954// mapped image.
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -0700955void ClassLinker::VisitRoots(RootVisitor* visitor, VisitRootFlags flags) {
956 class_roots_.VisitRoot(visitor, RootInfo(kRootVMInternal));
957 Thread* const self = Thread::Current();
Elliott Hughesf8349362012-06-18 15:00:06 -0700958 {
Ian Rogers1bf8d4d2013-05-30 00:18:49 -0700959 ReaderMutexLock mu(self, dex_lock_);
Mathieu Chartier893263b2014-03-04 11:07:42 -0800960 if ((flags & kVisitRootFlagAllRoots) != 0) {
Hiroshi Yamauchi94f7b492014-07-22 18:08:23 -0700961 for (GcRoot<mirror::DexCache>& dex_cache : dex_caches_) {
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -0700962 dex_cache.VisitRoot(visitor, RootInfo(kRootVMInternal));
Mathieu Chartierc4621982013-09-16 19:43:47 -0700963 }
Mathieu Chartier893263b2014-03-04 11:07:42 -0800964 } else if ((flags & kVisitRootFlagNewRoots) != 0) {
965 for (size_t index : new_dex_cache_roots_) {
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -0700966 dex_caches_[index].VisitRoot(visitor, RootInfo(kRootVMInternal));
Mathieu Chartierc4621982013-09-16 19:43:47 -0700967 }
Elliott Hughesf8349362012-06-18 15:00:06 -0700968 }
Mathieu Chartier893263b2014-03-04 11:07:42 -0800969 if ((flags & kVisitRootFlagClearRootLog) != 0) {
970 new_dex_cache_roots_.clear();
971 }
972 if ((flags & kVisitRootFlagStartLoggingNewRoots) != 0) {
973 log_new_dex_caches_roots_ = true;
974 } else if ((flags & kVisitRootFlagStopLoggingNewRoots) != 0) {
975 log_new_dex_caches_roots_ = false;
976 }
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700977 }
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -0700978 VisitClassRoots(visitor, flags);
979 array_iftable_.VisitRoot(visitor, RootInfo(kRootVMInternal));
Ian Rogers98379392014-02-24 16:53:16 -0800980 for (size_t i = 0; i < kFindArrayCacheSize; ++i) {
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -0700981 find_array_class_cache_[i].VisitRootIfNonNull(visitor, RootInfo(kRootVMInternal));
Ian Rogers98379392014-02-24 16:53:16 -0800982 }
Brian Carlstrom578bbdc2011-07-21 14:07:47 -0700983}
984
Ian Rogers7dfb28c2013-08-22 08:18:36 -0700985void ClassLinker::VisitClasses(ClassVisitor* visitor, void* arg) {
986 if (dex_cache_image_class_lookup_required_) {
987 MoveImageClassesToClassTable();
Elliott Hughesa2155262011-11-16 16:26:58 -0800988 }
Ian Rogersdbf3be02014-08-29 15:40:08 -0700989 // TODO: why isn't this a ReaderMutexLock?
Mathieu Chartierc528dba2013-11-26 12:00:11 -0800990 WriterMutexLock mu(Thread::Current(), *Locks::classlinker_classes_lock_);
Mathieu Chartierc2e20622014-11-03 11:41:47 -0800991 for (GcRoot<mirror::Class>& root : class_table_) {
992 if (!visitor(root.Read(), arg)) {
993 return;
994 }
995 }
996 for (GcRoot<mirror::Class>& root : pre_zygote_class_table_) {
997 if (!visitor(root.Read(), arg)) {
Elliott Hughesa2155262011-11-16 16:26:58 -0800998 return;
999 }
1000 }
1001}
1002
Ian Rogersdbf3be02014-08-29 15:40:08 -07001003static bool GetClassesVisitorSet(mirror::Class* c, void* arg) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001004 std::set<mirror::Class*>* classes = reinterpret_cast<std::set<mirror::Class*>*>(arg);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001005 classes->insert(c);
1006 return true;
1007}
1008
Ian Rogersdbf3be02014-08-29 15:40:08 -07001009struct GetClassesVisitorArrayArg {
1010 Handle<mirror::ObjectArray<mirror::Class>>* classes;
1011 int32_t index;
1012 bool success;
1013};
1014
1015static bool GetClassesVisitorArray(mirror::Class* c, void* varg)
1016 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
1017 GetClassesVisitorArrayArg* arg = reinterpret_cast<GetClassesVisitorArrayArg*>(varg);
1018 if (arg->index < (*arg->classes)->GetLength()) {
1019 (*arg->classes)->Set(arg->index, c);
1020 arg->index++;
1021 return true;
1022 } else {
1023 arg->success = false;
1024 return false;
1025 }
1026}
1027
Ian Rogers7dfb28c2013-08-22 08:18:36 -07001028void ClassLinker::VisitClassesWithoutClassesLock(ClassVisitor* visitor, void* arg) {
Ian Rogersdbf3be02014-08-29 15:40:08 -07001029 // TODO: it may be possible to avoid secondary storage if we iterate over dex caches. The problem
1030 // is avoiding duplicates.
1031 if (!kMovingClasses) {
1032 std::set<mirror::Class*> classes;
1033 VisitClasses(GetClassesVisitorSet, &classes);
1034 for (mirror::Class* klass : classes) {
1035 if (!visitor(klass, arg)) {
1036 return;
1037 }
1038 }
1039 } else {
1040 Thread* self = Thread::Current();
1041 StackHandleScope<1> hs(self);
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07001042 MutableHandle<mirror::ObjectArray<mirror::Class>> classes =
Ian Rogersdbf3be02014-08-29 15:40:08 -07001043 hs.NewHandle<mirror::ObjectArray<mirror::Class>>(nullptr);
1044 GetClassesVisitorArrayArg local_arg;
1045 local_arg.classes = &classes;
1046 local_arg.success = false;
1047 // We size the array assuming classes won't be added to the class table during the visit.
1048 // If this assumption fails we iterate again.
1049 while (!local_arg.success) {
1050 size_t class_table_size;
1051 {
Ian Rogers7b078e82014-09-10 14:44:24 -07001052 ReaderMutexLock mu(self, *Locks::classlinker_classes_lock_);
Mathieu Chartierc2e20622014-11-03 11:41:47 -08001053 class_table_size = class_table_.Size() + pre_zygote_class_table_.Size();
Ian Rogersdbf3be02014-08-29 15:40:08 -07001054 }
1055 mirror::Class* class_type = mirror::Class::GetJavaLangClass();
1056 mirror::Class* array_of_class = FindArrayClass(self, &class_type);
1057 classes.Assign(
1058 mirror::ObjectArray<mirror::Class>::Alloc(self, array_of_class, class_table_size));
1059 CHECK(classes.Get() != nullptr); // OOME.
1060 local_arg.index = 0;
1061 local_arg.success = true;
1062 VisitClasses(GetClassesVisitorArray, &local_arg);
1063 }
1064 for (int32_t i = 0; i < classes->GetLength(); ++i) {
1065 // If the class table shrank during creation of the clases array we expect null elements. If
1066 // the class table grew then the loop repeats. If classes are created after the loop has
1067 // finished then we don't visit.
1068 mirror::Class* klass = classes->Get(i);
1069 if (klass != nullptr && !visitor(klass, arg)) {
1070 return;
1071 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001072 }
1073 }
1074}
1075
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001076ClassLinker::~ClassLinker() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001077 mirror::Class::ResetClass();
1078 mirror::String::ResetClass();
Fred Shih4ee7a662014-07-11 09:59:27 -07001079 mirror::Reference::ResetClass();
Brian Carlstromea46f952013-07-30 01:26:50 -07001080 mirror::ArtField::ResetClass();
1081 mirror::ArtMethod::ResetClass();
Mathieu Chartierdaaf3262015-03-24 13:30:28 -07001082 mirror::Field::ResetClass();
1083 mirror::Field::ResetArrayClass();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001084 mirror::BooleanArray::ResetArrayClass();
1085 mirror::ByteArray::ResetArrayClass();
1086 mirror::CharArray::ResetArrayClass();
1087 mirror::DoubleArray::ResetArrayClass();
1088 mirror::FloatArray::ResetArrayClass();
1089 mirror::IntArray::ResetArrayClass();
1090 mirror::LongArray::ResetArrayClass();
1091 mirror::ShortArray::ResetArrayClass();
1092 mirror::Throwable::ResetClass();
1093 mirror::StackTraceElement::ResetClass();
Brian Carlstrom58ae9412011-10-04 00:56:06 -07001094 STLDeleteElements(&oat_files_);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07001095}
1096
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001097mirror::DexCache* ClassLinker::AllocDexCache(Thread* self, const DexFile& dex_file) {
Ian Rogers1d54e732013-05-02 21:10:01 -07001098 gc::Heap* heap = Runtime::Current()->GetHeap();
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001099 StackHandleScope<16> hs(self);
1100 Handle<mirror::Class> dex_cache_class(hs.NewHandle(GetClassRoot(kJavaLangDexCache)));
1101 Handle<mirror::DexCache> dex_cache(
1102 hs.NewHandle(down_cast<mirror::DexCache*>(
1103 heap->AllocObject<true>(self, dex_cache_class.Get(), dex_cache_class->GetObjectSize(),
1104 VoidFunctor()))));
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001105 if (dex_cache.Get() == nullptr) {
1106 return nullptr;
Elliott Hughes30646832011-10-13 16:59:46 -07001107 }
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001108 Handle<mirror::String>
1109 location(hs.NewHandle(intern_table_->InternStrong(dex_file.GetLocation().c_str())));
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001110 if (location.Get() == nullptr) {
1111 return nullptr;
Elliott Hughes30646832011-10-13 16:59:46 -07001112 }
Ian Rogers700a4022014-05-19 16:49:03 -07001113 Handle<mirror::ObjectArray<mirror::String>>
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001114 strings(hs.NewHandle(AllocStringArray(self, dex_file.NumStringIds())));
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001115 if (strings.Get() == nullptr) {
1116 return nullptr;
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001117 }
Ian Rogers700a4022014-05-19 16:49:03 -07001118 Handle<mirror::ObjectArray<mirror::Class>>
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001119 types(hs.NewHandle(AllocClassArray(self, dex_file.NumTypeIds())));
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001120 if (types.Get() == nullptr) {
1121 return nullptr;
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001122 }
Ian Rogers700a4022014-05-19 16:49:03 -07001123 Handle<mirror::ObjectArray<mirror::ArtMethod>>
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001124 methods(hs.NewHandle(AllocArtMethodArray(self, dex_file.NumMethodIds())));
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001125 if (methods.Get() == nullptr) {
1126 return nullptr;
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001127 }
Ian Rogers700a4022014-05-19 16:49:03 -07001128 Handle<mirror::ObjectArray<mirror::ArtField>>
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001129 fields(hs.NewHandle(AllocArtFieldArray(self, dex_file.NumFieldIds())));
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001130 if (fields.Get() == nullptr) {
1131 return nullptr;
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001132 }
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001133 dex_cache->Init(&dex_file, location.Get(), strings.Get(), types.Get(), methods.Get(),
1134 fields.Get());
1135 return dex_cache.Get();
Brian Carlstroma0808032011-07-18 00:39:23 -07001136}
1137
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001138mirror::Class* ClassLinker::AllocClass(Thread* self, mirror::Class* java_lang_Class,
Ian Rogers6fac4472014-02-25 17:01:10 -08001139 uint32_t class_size) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001140 DCHECK_GE(class_size, sizeof(mirror::Class));
Ian Rogers1d54e732013-05-02 21:10:01 -07001141 gc::Heap* heap = Runtime::Current()->GetHeap();
Mingyao Yang98d1cc82014-05-15 17:02:16 -07001142 mirror::Class::InitializeClassVisitor visitor(class_size);
Mathieu Chartier52e4b432014-06-10 11:22:31 -07001143 mirror::Object* k = kMovingClasses ?
Brian Carlstromf3632832014-05-20 15:36:53 -07001144 heap->AllocObject<true>(self, java_lang_Class, class_size, visitor) :
1145 heap->AllocNonMovableObject<true>(self, java_lang_Class, class_size, visitor);
Ian Rogers6fac4472014-02-25 17:01:10 -08001146 if (UNLIKELY(k == nullptr)) {
Ian Rogersa436fde2013-08-27 23:34:06 -07001147 CHECK(self->IsExceptionPending()); // OOME.
Ian Rogers6fac4472014-02-25 17:01:10 -08001148 return nullptr;
Ian Rogersa436fde2013-08-27 23:34:06 -07001149 }
Ian Rogers6fac4472014-02-25 17:01:10 -08001150 return k->AsClass();
Brian Carlstrom75cb3b42011-07-28 02:13:36 -07001151}
1152
Ian Rogers6fac4472014-02-25 17:01:10 -08001153mirror::Class* ClassLinker::AllocClass(Thread* self, uint32_t class_size) {
Ian Rogers50b35e22012-10-04 10:09:15 -07001154 return AllocClass(self, GetClassRoot(kJavaLangClass), class_size);
Brian Carlstroma0808032011-07-18 00:39:23 -07001155}
1156
Brian Carlstromea46f952013-07-30 01:26:50 -07001157mirror::ArtField* ClassLinker::AllocArtField(Thread* self) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001158 return down_cast<mirror::ArtField*>(
Mathieu Chartiercbb2d202013-11-14 17:45:16 -08001159 GetClassRoot(kJavaLangReflectArtField)->AllocNonMovableObject(self));
Brian Carlstroma0808032011-07-18 00:39:23 -07001160}
1161
Brian Carlstromea46f952013-07-30 01:26:50 -07001162mirror::ArtMethod* ClassLinker::AllocArtMethod(Thread* self) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001163 return down_cast<mirror::ArtMethod*>(
Mathieu Chartiercbb2d202013-11-14 17:45:16 -08001164 GetClassRoot(kJavaLangReflectArtMethod)->AllocNonMovableObject(self));
Mathieu Chartier66f19252012-09-18 08:57:04 -07001165}
1166
Mathieu Chartier590fee92013-09-13 13:46:47 -07001167mirror::ObjectArray<mirror::StackTraceElement>* ClassLinker::AllocStackTraceElementArray(
1168 Thread* self, size_t length) {
1169 return mirror::ObjectArray<mirror::StackTraceElement>::Alloc(
1170 self, GetClassRoot(kJavaLangStackTraceElementArrayClass), length);
Shih-wei Liao55df06b2011-08-26 14:39:27 -07001171}
1172
Mingyao Yang98d1cc82014-05-15 17:02:16 -07001173mirror::Class* ClassLinker::EnsureResolved(Thread* self, const char* descriptor,
1174 mirror::Class* klass) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001175 DCHECK(klass != nullptr);
Mingyao Yang98d1cc82014-05-15 17:02:16 -07001176
1177 // For temporary classes we must wait for them to be retired.
1178 if (init_done_ && klass->IsTemp()) {
1179 CHECK(!klass->IsResolved());
1180 if (klass->IsErroneous()) {
1181 ThrowEarlierClassFailure(klass);
1182 return nullptr;
1183 }
1184 StackHandleScope<1> hs(self);
1185 Handle<mirror::Class> h_class(hs.NewHandle(klass));
1186 ObjectLock<mirror::Class> lock(self, h_class);
1187 // Loop and wait for the resolving thread to retire this class.
1188 while (!h_class->IsRetired() && !h_class->IsErroneous()) {
1189 lock.WaitIgnoringInterrupts();
1190 }
1191 if (h_class->IsErroneous()) {
1192 ThrowEarlierClassFailure(h_class.Get());
1193 return nullptr;
1194 }
1195 CHECK(h_class->IsRetired());
1196 // Get the updated class from class table.
Mathieu Chartiere7c9a8c2014-11-06 16:35:45 -08001197 klass = LookupClass(self, descriptor, ComputeModifiedUtf8Hash(descriptor),
1198 h_class.Get()->GetClassLoader());
Mingyao Yang98d1cc82014-05-15 17:02:16 -07001199 }
1200
Brian Carlstromaded5f72011-10-07 17:15:04 -07001201 // Wait for the class if it has not already been linked.
Elliott Hughes5fe594f2011-09-08 12:33:17 -07001202 if (!klass->IsResolved() && !klass->IsErroneous()) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001203 StackHandleScope<1> hs(self);
Mathieu Chartierdb2633c2014-05-16 09:59:29 -07001204 HandleWrapper<mirror::Class> h_class(hs.NewHandleWrapper(&klass));
1205 ObjectLock<mirror::Class> lock(self, h_class);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001206 // Check for circular dependencies between classes.
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001207 if (!h_class->IsResolved() && h_class->GetClinitThreadId() == self->GetTid()) {
1208 ThrowClassCircularityError(h_class.Get());
Hiroshi Yamauchi5b783e62015-03-18 17:20:11 -07001209 mirror::Class::SetStatus(h_class, mirror::Class::kStatusError, self);
Mathieu Chartierc528dba2013-11-26 12:00:11 -08001210 return nullptr;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001211 }
1212 // Wait for the pending initialization to complete.
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001213 while (!h_class->IsResolved() && !h_class->IsErroneous()) {
Ian Rogers05f30572013-02-20 12:13:11 -08001214 lock.WaitIgnoringInterrupts();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001215 }
1216 }
Mingyao Yang98d1cc82014-05-15 17:02:16 -07001217
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001218 if (klass->IsErroneous()) {
Elliott Hughes4a2b4172011-09-20 17:08:25 -07001219 ThrowEarlierClassFailure(klass);
Mathieu Chartierc528dba2013-11-26 12:00:11 -08001220 return nullptr;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001221 }
1222 // Return the loaded class. No exceptions should be pending.
Brian Carlstromaded5f72011-10-07 17:15:04 -07001223 CHECK(klass->IsResolved()) << PrettyClass(klass);
Ian Rogers62d6c772013-02-27 08:32:07 -08001224 self->AssertNoPendingException();
Brian Carlstromaded5f72011-10-07 17:15:04 -07001225 return klass;
1226}
1227
Ian Rogers68b56852014-08-29 20:19:11 -07001228typedef std::pair<const DexFile*, const DexFile::ClassDef*> ClassPathEntry;
1229
1230// Search a collection of DexFiles for a descriptor
Mathieu Chartiere7c9a8c2014-11-06 16:35:45 -08001231ClassPathEntry FindInClassPath(const char* descriptor,
1232 size_t hash, const std::vector<const DexFile*>& class_path) {
1233 for (const DexFile* dex_file : class_path) {
1234 const DexFile::ClassDef* dex_class_def = dex_file->FindClassDef(descriptor, hash);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001235 if (dex_class_def != nullptr) {
Ian Rogers68b56852014-08-29 20:19:11 -07001236 return ClassPathEntry(dex_file, dex_class_def);
1237 }
1238 }
Mathieu Chartiere7c9a8c2014-11-06 16:35:45 -08001239 return ClassPathEntry(nullptr, nullptr);
Ian Rogers68b56852014-08-29 20:19:11 -07001240}
1241
Mathieu Chartierab0ed822014-09-11 14:21:41 -07001242mirror::Class* ClassLinker::FindClassInPathClassLoader(ScopedObjectAccessAlreadyRunnable& soa,
1243 Thread* self, const char* descriptor,
Mathieu Chartiere7c9a8c2014-11-06 16:35:45 -08001244 size_t hash,
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07001245 Handle<mirror::ClassLoader> class_loader) {
Ian Rogers32427292014-11-19 14:05:21 -08001246 // Can we special case for a well understood PathClassLoader with the BootClassLoader as parent?
Mathieu Chartierab0ed822014-09-11 14:21:41 -07001247 if (class_loader->GetClass() !=
1248 soa.Decode<mirror::Class*>(WellKnownClasses::dalvik_system_PathClassLoader) ||
1249 class_loader->GetParent()->GetClass() !=
1250 soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_BootClassLoader)) {
1251 return nullptr;
1252 }
Mathieu Chartiere7c9a8c2014-11-06 16:35:45 -08001253 ClassPathEntry pair = FindInClassPath(descriptor, hash, boot_class_path_);
Mathieu Chartierab0ed822014-09-11 14:21:41 -07001254 // Check if this would be found in the parent boot class loader.
1255 if (pair.second != nullptr) {
Mathieu Chartiere7c9a8c2014-11-06 16:35:45 -08001256 mirror::Class* klass = LookupClass(self, descriptor, hash, nullptr);
Mathieu Chartierab0ed822014-09-11 14:21:41 -07001257 if (klass != nullptr) {
Ian Rogers32427292014-11-19 14:05:21 -08001258 // May return null if resolution on another thread fails.
1259 klass = EnsureResolved(self, descriptor, klass);
1260 } else {
1261 // May OOME.
1262 klass = DefineClass(self, descriptor, hash, NullHandle<mirror::ClassLoader>(), *pair.first,
1263 *pair.second);
Mathieu Chartierab0ed822014-09-11 14:21:41 -07001264 }
Ian Rogers32427292014-11-19 14:05:21 -08001265 if (klass == nullptr) {
1266 CHECK(self->IsExceptionPending()) << descriptor;
1267 self->ClearException();
Mathieu Chartierab0ed822014-09-11 14:21:41 -07001268 }
Ian Rogers32427292014-11-19 14:05:21 -08001269 return klass;
Mathieu Chartierab0ed822014-09-11 14:21:41 -07001270 } else {
Ian Rogers32427292014-11-19 14:05:21 -08001271 // Handle as if this is the child PathClassLoader.
1272 // Handles as RegisterDexFile may allocate dex caches (and cause thread suspension).
Mathieu Chartierab0ed822014-09-11 14:21:41 -07001273 StackHandleScope<3> hs(self);
1274 // The class loader is a PathClassLoader which inherits from BaseDexClassLoader.
1275 // We need to get the DexPathList and loop through it.
1276 Handle<mirror::ArtField> cookie_field =
1277 hs.NewHandle(soa.DecodeField(WellKnownClasses::dalvik_system_DexFile_cookie));
1278 Handle<mirror::ArtField> dex_file_field =
1279 hs.NewHandle(
Andreas Gampec8ccf682014-09-29 20:07:43 -07001280 soa.DecodeField(WellKnownClasses::dalvik_system_DexPathList__Element_dexFile));
Mathieu Chartierab0ed822014-09-11 14:21:41 -07001281 mirror::Object* dex_path_list =
1282 soa.DecodeField(WellKnownClasses::dalvik_system_PathClassLoader_pathList)->
1283 GetObject(class_loader.Get());
1284 if (dex_path_list != nullptr && dex_file_field.Get() != nullptr &&
1285 cookie_field.Get() != nullptr) {
1286 // DexPathList has an array dexElements of Elements[] which each contain a dex file.
1287 mirror::Object* dex_elements_obj =
1288 soa.DecodeField(WellKnownClasses::dalvik_system_DexPathList_dexElements)->
1289 GetObject(dex_path_list);
1290 // Loop through each dalvik.system.DexPathList$Element's dalvik.system.DexFile and look
1291 // at the mCookie which is a DexFile vector.
1292 if (dex_elements_obj != nullptr) {
1293 Handle<mirror::ObjectArray<mirror::Object>> dex_elements =
1294 hs.NewHandle(dex_elements_obj->AsObjectArray<mirror::Object>());
1295 for (int32_t i = 0; i < dex_elements->GetLength(); ++i) {
1296 mirror::Object* element = dex_elements->GetWithoutChecks(i);
1297 if (element == nullptr) {
1298 // Should never happen, fall back to java code to throw a NPE.
1299 break;
1300 }
1301 mirror::Object* dex_file = dex_file_field->GetObject(element);
1302 if (dex_file != nullptr) {
Andreas Gampe324b9bb2015-02-23 16:33:22 -08001303 mirror::LongArray* long_array = cookie_field->GetObject(dex_file)->AsLongArray();
1304 if (long_array == nullptr) {
Mathieu Chartierab0ed822014-09-11 14:21:41 -07001305 // This should never happen so log a warning.
1306 LOG(WARNING) << "Null DexFile::mCookie for " << descriptor;
1307 break;
1308 }
Andreas Gampe324b9bb2015-02-23 16:33:22 -08001309 int32_t long_array_size = long_array->GetLength();
1310 for (int32_t j = 0; j < long_array_size; ++j) {
1311 const DexFile* cp_dex_file = reinterpret_cast<const DexFile*>(static_cast<uintptr_t>(
1312 long_array->GetWithoutChecks(j)));
Mathieu Chartiere7c9a8c2014-11-06 16:35:45 -08001313 const DexFile::ClassDef* dex_class_def = cp_dex_file->FindClassDef(descriptor, hash);
Mathieu Chartierab0ed822014-09-11 14:21:41 -07001314 if (dex_class_def != nullptr) {
Andreas Gampe277ccbd2014-11-03 21:36:10 -08001315 RegisterDexFile(*cp_dex_file);
Mathieu Chartiere7c9a8c2014-11-06 16:35:45 -08001316 mirror::Class* klass = DefineClass(self, descriptor, hash, class_loader,
1317 *cp_dex_file, *dex_class_def);
Mathieu Chartierab0ed822014-09-11 14:21:41 -07001318 if (klass == nullptr) {
1319 CHECK(self->IsExceptionPending()) << descriptor;
1320 self->ClearException();
1321 return nullptr;
1322 }
1323 return klass;
1324 }
1325 }
1326 }
1327 }
1328 }
1329 }
Ian Rogers32427292014-11-19 14:05:21 -08001330 self->AssertNoPendingException();
1331 return nullptr;
Mathieu Chartierab0ed822014-09-11 14:21:41 -07001332 }
Mathieu Chartierab0ed822014-09-11 14:21:41 -07001333}
1334
Ian Rogers98379392014-02-24 16:53:16 -08001335mirror::Class* ClassLinker::FindClass(Thread* self, const char* descriptor,
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07001336 Handle<mirror::ClassLoader> class_loader) {
Elliott Hughesba8eee12012-01-24 20:25:24 -08001337 DCHECK_NE(*descriptor, '\0') << "descriptor is empty string";
Ian Rogers98379392014-02-24 16:53:16 -08001338 DCHECK(self != nullptr);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001339 self->AssertNoPendingException();
Elliott Hughesc3b77c72011-12-15 20:56:48 -08001340 if (descriptor[1] == '\0') {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001341 // only the descriptors of primitive types should be 1 character long, also avoid class lookup
1342 // for primitive classes that aren't backed by dex files.
1343 return FindPrimitiveClass(descriptor[0]);
1344 }
Mathieu Chartiere7c9a8c2014-11-06 16:35:45 -08001345 const size_t hash = ComputeModifiedUtf8Hash(descriptor);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001346 // Find the class in the loaded classes table.
Mathieu Chartiere7c9a8c2014-11-06 16:35:45 -08001347 mirror::Class* klass = LookupClass(self, descriptor, hash, class_loader.Get());
Ian Rogers68b56852014-08-29 20:19:11 -07001348 if (klass != nullptr) {
Mingyao Yang98d1cc82014-05-15 17:02:16 -07001349 return EnsureResolved(self, descriptor, klass);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001350 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001351 // Class is not yet loaded.
1352 if (descriptor[0] == '[') {
Mathieu Chartiere7c9a8c2014-11-06 16:35:45 -08001353 return CreateArrayClass(self, descriptor, hash, class_loader);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001354 } else if (class_loader.Get() == nullptr) {
Ian Rogers63557452014-06-04 16:57:15 -07001355 // The boot class loader, search the boot class path.
Mathieu Chartiere7c9a8c2014-11-06 16:35:45 -08001356 ClassPathEntry pair = FindInClassPath(descriptor, hash, boot_class_path_);
Ian Rogers68b56852014-08-29 20:19:11 -07001357 if (pair.second != nullptr) {
Mathieu Chartiere7c9a8c2014-11-06 16:35:45 -08001358 return DefineClass(self, descriptor, hash, NullHandle<mirror::ClassLoader>(), *pair.first,
Ian Rogers7b078e82014-09-10 14:44:24 -07001359 *pair.second);
Ian Rogers63557452014-06-04 16:57:15 -07001360 } else {
1361 // The boot class loader is searched ahead of the application class loader, failures are
1362 // expected and will be wrapped in a ClassNotFoundException. Use the pre-allocated error to
1363 // trigger the chaining with a proper stack trace.
1364 mirror::Throwable* pre_allocated = Runtime::Current()->GetPreAllocatedNoClassDefFoundError();
Nicolas Geoffray14691c52015-03-05 10:40:17 +00001365 self->SetException(pre_allocated);
Ian Rogers63557452014-06-04 16:57:15 -07001366 return nullptr;
Jesse Wilson47daf872011-11-23 11:42:45 -05001367 }
Jesse Wilson47daf872011-11-23 11:42:45 -05001368 } else {
Ian Rogers98379392014-02-24 16:53:16 -08001369 ScopedObjectAccessUnchecked soa(self);
Mathieu Chartiere7c9a8c2014-11-06 16:35:45 -08001370 mirror::Class* cp_klass = FindClassInPathClassLoader(soa, self, descriptor, hash,
1371 class_loader);
Andreas Gampe277ccbd2014-11-03 21:36:10 -08001372 if (cp_klass != nullptr) {
1373 return cp_klass;
Mathieu Chartier6bcae8f2014-09-04 18:33:17 -07001374 }
Andreas Gampe81c6f8d2015-03-25 17:19:53 -07001375
1376 if (Runtime::Current()->IsAotCompiler()) {
1377 // Oops, compile-time, can't run actual class-loader code.
1378 mirror::Throwable* pre_allocated = Runtime::Current()->GetPreAllocatedNoClassDefFoundError();
1379 self->SetException(pre_allocated);
1380 return nullptr;
1381 }
1382
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001383 ScopedLocalRef<jobject> class_loader_object(soa.Env(),
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001384 soa.AddLocalReference<jobject>(class_loader.Get()));
Elliott Hughes95572412011-12-13 18:14:20 -08001385 std::string class_name_string(DescriptorToDot(descriptor));
Ian Rogers68b56852014-08-29 20:19:11 -07001386 ScopedLocalRef<jobject> result(soa.Env(), nullptr);
Ian Rogers365c1022012-06-22 15:05:28 -07001387 {
1388 ScopedThreadStateChange tsc(self, kNative);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001389 ScopedLocalRef<jobject> class_name_object(soa.Env(),
1390 soa.Env()->NewStringUTF(class_name_string.c_str()));
Ian Rogers68b56852014-08-29 20:19:11 -07001391 if (class_name_object.get() == nullptr) {
Ian Rogers63557452014-06-04 16:57:15 -07001392 DCHECK(self->IsExceptionPending()); // OOME.
Ian Rogers68b56852014-08-29 20:19:11 -07001393 return nullptr;
Ian Rogers365c1022012-06-22 15:05:28 -07001394 }
Ian Rogers68b56852014-08-29 20:19:11 -07001395 CHECK(class_loader_object.get() != nullptr);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001396 result.reset(soa.Env()->CallObjectMethod(class_loader_object.get(),
1397 WellKnownClasses::java_lang_ClassLoader_loadClass,
1398 class_name_object.get()));
Jesse Wilson47daf872011-11-23 11:42:45 -05001399 }
Ian Rogers98379392014-02-24 16:53:16 -08001400 if (self->IsExceptionPending()) {
Elliott Hughes748382f2012-01-26 18:07:38 -08001401 // If the ClassLoader threw, pass that exception up.
Ian Rogers68b56852014-08-29 20:19:11 -07001402 return nullptr;
1403 } else if (result.get() == nullptr) {
Ian Rogerscab01012012-01-10 17:35:46 -08001404 // broken loader - throw NPE to be compatible with Dalvik
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +00001405 ThrowNullPointerException(StringPrintf("ClassLoader.loadClass returned null for %s",
1406 class_name_string.c_str()).c_str());
Ian Rogers68b56852014-08-29 20:19:11 -07001407 return nullptr;
Ian Rogers761bfa82012-01-11 10:14:05 -08001408 } else {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001409 // success, return mirror::Class*
1410 return soa.Decode<mirror::Class*>(result.get());
Ian Rogers6b0870d2011-12-15 19:38:12 -08001411 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001412 }
Ian Rogers07140832014-09-30 15:43:59 -07001413 UNREACHABLE();
Brian Carlstromaded5f72011-10-07 17:15:04 -07001414}
1415
Mathieu Chartiere7c9a8c2014-11-06 16:35:45 -08001416mirror::Class* ClassLinker::DefineClass(Thread* self, const char* descriptor, size_t hash,
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07001417 Handle<mirror::ClassLoader> class_loader,
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001418 const DexFile& dex_file,
1419 const DexFile::ClassDef& dex_class_def) {
Mingyao Yang98d1cc82014-05-15 17:02:16 -07001420 StackHandleScope<3> hs(self);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001421 auto klass = hs.NewHandle<mirror::Class>(nullptr);
Mingyao Yang98d1cc82014-05-15 17:02:16 -07001422
Brian Carlstromaded5f72011-10-07 17:15:04 -07001423 // Load the class from the dex file.
Ian Rogers7dfb28c2013-08-22 08:18:36 -07001424 if (UNLIKELY(!init_done_)) {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001425 // finish up init of hand crafted class_roots_
Ian Rogers7dfb28c2013-08-22 08:18:36 -07001426 if (strcmp(descriptor, "Ljava/lang/Object;") == 0) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001427 klass.Assign(GetClassRoot(kJavaLangObject));
Ian Rogers7dfb28c2013-08-22 08:18:36 -07001428 } else if (strcmp(descriptor, "Ljava/lang/Class;") == 0) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001429 klass.Assign(GetClassRoot(kJavaLangClass));
Ian Rogers7dfb28c2013-08-22 08:18:36 -07001430 } else if (strcmp(descriptor, "Ljava/lang/String;") == 0) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001431 klass.Assign(GetClassRoot(kJavaLangString));
Fred Shih4ee7a662014-07-11 09:59:27 -07001432 } else if (strcmp(descriptor, "Ljava/lang/ref/Reference;") == 0) {
1433 klass.Assign(GetClassRoot(kJavaLangRefReference));
Ian Rogers7dfb28c2013-08-22 08:18:36 -07001434 } else if (strcmp(descriptor, "Ljava/lang/DexCache;") == 0) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001435 klass.Assign(GetClassRoot(kJavaLangDexCache));
Ian Rogers7dfb28c2013-08-22 08:18:36 -07001436 } else if (strcmp(descriptor, "Ljava/lang/reflect/ArtField;") == 0) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001437 klass.Assign(GetClassRoot(kJavaLangReflectArtField));
Ian Rogers7dfb28c2013-08-22 08:18:36 -07001438 } else if (strcmp(descriptor, "Ljava/lang/reflect/ArtMethod;") == 0) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001439 klass.Assign(GetClassRoot(kJavaLangReflectArtMethod));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001440 }
Mingyao Yang98d1cc82014-05-15 17:02:16 -07001441 }
1442
Mathieu Chartiere7c9a8c2014-11-06 16:35:45 -08001443 if (klass.Get() == nullptr) {
Mingyao Yang98d1cc82014-05-15 17:02:16 -07001444 // Allocate a class with the status of not ready.
1445 // Interface object should get the right size here. Regular class will
1446 // figure out the right size later and be replaced with one of the right
1447 // size when the class becomes resolved.
1448 klass.Assign(AllocClass(self, SizeOfClassWithoutEmbeddedTables(dex_file, dex_class_def)));
Brian Carlstromaded5f72011-10-07 17:15:04 -07001449 }
Ian Rogersc114b5f2014-07-21 08:55:01 -07001450 if (UNLIKELY(klass.Get() == nullptr)) {
Ian Rogersa436fde2013-08-27 23:34:06 -07001451 CHECK(self->IsExceptionPending()); // Expect an OOME.
Ian Rogersc114b5f2014-07-21 08:55:01 -07001452 return nullptr;
Ian Rogersa436fde2013-08-27 23:34:06 -07001453 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001454 klass->SetDexCache(FindDexCache(dex_file));
Ian Rogers7b078e82014-09-10 14:44:24 -07001455 LoadClass(self, dex_file, dex_class_def, klass, class_loader.Get());
Mathieu Chartierdb2633c2014-05-16 09:59:29 -07001456 ObjectLock<mirror::Class> lock(self, klass);
Ian Rogersc114b5f2014-07-21 08:55:01 -07001457 if (self->IsExceptionPending()) {
1458 // An exception occured during load, set status to erroneous while holding klass' lock in case
1459 // notification is necessary.
Ian Rogersecd4d9a2014-07-22 00:59:52 -07001460 if (!klass->IsErroneous()) {
Hiroshi Yamauchi5b783e62015-03-18 17:20:11 -07001461 mirror::Class::SetStatus(klass, mirror::Class::kStatusError, self);
Ian Rogersecd4d9a2014-07-22 00:59:52 -07001462 }
Ian Rogersc114b5f2014-07-21 08:55:01 -07001463 return nullptr;
1464 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07001465 klass->SetClinitThreadId(self->GetTid());
Mingyao Yang98d1cc82014-05-15 17:02:16 -07001466
Mathieu Chartier590fee92013-09-13 13:46:47 -07001467 // Add the newly loaded class to the loaded classes table.
Mathieu Chartiere7c9a8c2014-11-06 16:35:45 -08001468 mirror::Class* existing = InsertClass(descriptor, klass.Get(), hash);
Ian Rogersc114b5f2014-07-21 08:55:01 -07001469 if (existing != nullptr) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001470 // We failed to insert because we raced with another thread. Calling EnsureResolved may cause
1471 // this thread to block.
Mingyao Yang98d1cc82014-05-15 17:02:16 -07001472 return EnsureResolved(self, descriptor, existing);
Brian Carlstromaded5f72011-10-07 17:15:04 -07001473 }
Mingyao Yang98d1cc82014-05-15 17:02:16 -07001474
Brian Carlstromaded5f72011-10-07 17:15:04 -07001475 // Finish loading (if necessary) by finding parents
1476 CHECK(!klass->IsLoaded());
1477 if (!LoadSuperAndInterfaces(klass, dex_file)) {
1478 // Loading failed.
Ian Rogersecd4d9a2014-07-22 00:59:52 -07001479 if (!klass->IsErroneous()) {
Hiroshi Yamauchi5b783e62015-03-18 17:20:11 -07001480 mirror::Class::SetStatus(klass, mirror::Class::kStatusError, self);
Ian Rogersecd4d9a2014-07-22 00:59:52 -07001481 }
Ian Rogersc114b5f2014-07-21 08:55:01 -07001482 return nullptr;
Brian Carlstromaded5f72011-10-07 17:15:04 -07001483 }
1484 CHECK(klass->IsLoaded());
1485 // Link the class (if necessary)
1486 CHECK(!klass->IsResolved());
Mathieu Chartier590fee92013-09-13 13:46:47 -07001487 // TODO: Use fast jobjects?
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001488 auto interfaces = hs.NewHandle<mirror::ObjectArray<mirror::Class>>(nullptr);
Mingyao Yang98d1cc82014-05-15 17:02:16 -07001489
1490 mirror::Class* new_class = nullptr;
1491 if (!LinkClass(self, descriptor, klass, interfaces, &new_class)) {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001492 // Linking failed.
Ian Rogersecd4d9a2014-07-22 00:59:52 -07001493 if (!klass->IsErroneous()) {
Hiroshi Yamauchi5b783e62015-03-18 17:20:11 -07001494 mirror::Class::SetStatus(klass, mirror::Class::kStatusError, self);
Ian Rogersecd4d9a2014-07-22 00:59:52 -07001495 }
Ian Rogersc114b5f2014-07-21 08:55:01 -07001496 return nullptr;
Brian Carlstromaded5f72011-10-07 17:15:04 -07001497 }
Mathieu Chartier524507a2014-08-27 15:28:28 -07001498 self->AssertNoPendingException();
Mingyao Yang98d1cc82014-05-15 17:02:16 -07001499 CHECK(new_class != nullptr) << descriptor;
1500 CHECK(new_class->IsResolved()) << descriptor;
1501
1502 Handle<mirror::Class> new_class_h(hs.NewHandle(new_class));
Elliott Hughes4740cdf2011-12-07 14:07:12 -08001503
Sebastien Hertza8a697f2015-01-15 12:28:47 +01001504 // Instrumentation may have updated entrypoints for all methods of all
1505 // classes. However it could not update methods of this class while we
1506 // were loading it. Now the class is resolved, we can update entrypoints
1507 // as required by instrumentation.
1508 if (Runtime::Current()->GetInstrumentation()->AreExitStubsInstalled()) {
1509 // We must be in the kRunnable state to prevent instrumentation from
1510 // suspending all threads to update entrypoints while we are doing it
1511 // for this class.
1512 DCHECK_EQ(self->GetState(), kRunnable);
1513 Runtime::Current()->GetInstrumentation()->InstallStubsForClass(new_class_h.Get());
1514 }
1515
Elliott Hughes4740cdf2011-12-07 14:07:12 -08001516 /*
1517 * We send CLASS_PREPARE events to the debugger from here. The
1518 * definition of "preparation" is creating the static fields for a
1519 * class and initializing them to the standard default values, but not
1520 * executing any code (that comes later, during "initialization").
1521 *
1522 * We did the static preparation in LinkClass.
1523 *
1524 * The class has been prepared and resolved but possibly not yet verified
1525 * at this point.
1526 */
Mingyao Yang98d1cc82014-05-15 17:02:16 -07001527 Dbg::PostClassPrepare(new_class_h.Get());
Elliott Hughes4740cdf2011-12-07 14:07:12 -08001528
Mingyao Yang98d1cc82014-05-15 17:02:16 -07001529 return new_class_h.Get();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001530}
1531
Mingyao Yang98d1cc82014-05-15 17:02:16 -07001532uint32_t ClassLinker::SizeOfClassWithoutEmbeddedTables(const DexFile& dex_file,
1533 const DexFile::ClassDef& dex_class_def) {
Ian Rogers13735952014-10-08 12:43:28 -07001534 const uint8_t* class_data = dex_file.GetClassData(dex_class_def);
Brian Carlstrom4873d462011-08-21 15:23:39 -07001535 size_t num_ref = 0;
Fred Shih37f05ef2014-07-16 18:38:08 -07001536 size_t num_8 = 0;
1537 size_t num_16 = 0;
Brian Carlstrom4873d462011-08-21 15:23:39 -07001538 size_t num_32 = 0;
1539 size_t num_64 = 0;
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001540 if (class_data != nullptr) {
Ian Rogers0571d352011-11-03 19:51:38 -07001541 for (ClassDataItemIterator it(dex_file, class_data); it.HasNextStaticField(); it.Next()) {
1542 const DexFile::FieldId& field_id = dex_file.GetFieldId(it.GetMemberIndex());
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07001543 const char* descriptor = dex_file.GetFieldTypeDescriptor(field_id);
Brian Carlstrom4873d462011-08-21 15:23:39 -07001544 char c = descriptor[0];
Fred Shih37f05ef2014-07-16 18:38:08 -07001545 switch (c) {
1546 case 'L':
1547 case '[':
1548 num_ref++;
1549 break;
1550 case 'J':
1551 case 'D':
1552 num_64++;
1553 break;
1554 case 'I':
1555 case 'F':
1556 num_32++;
1557 break;
1558 case 'S':
1559 case 'C':
1560 num_16++;
1561 break;
1562 case 'B':
1563 case 'Z':
1564 num_8++;
1565 break;
1566 default:
1567 LOG(FATAL) << "Unknown descriptor: " << c;
Ian Rogerse0a02da2014-12-02 14:10:53 -08001568 UNREACHABLE();
Brian Carlstrom4873d462011-08-21 15:23:39 -07001569 }
1570 }
1571 }
Fred Shih37f05ef2014-07-16 18:38:08 -07001572 return mirror::Class::ComputeClassSize(false, 0, num_8, num_16, num_32, num_64, num_ref);
Brian Carlstrom4873d462011-08-21 15:23:39 -07001573}
1574
Ian Rogers97b52f82014-08-14 11:34:07 -07001575OatFile::OatClass ClassLinker::FindOatClass(const DexFile& dex_file, uint16_t class_def_idx,
1576 bool* found) {
Ian Rogers8b2c0b92013-09-19 02:56:49 -07001577 DCHECK_NE(class_def_idx, DexFile::kDexNoIndex16);
Richard Uhler07b3c232015-03-31 15:57:54 -07001578 const OatFile::OatDexFile* oat_dex_file = dex_file.GetOatDexFile();
Vladimir Markoaa4497d2014-09-05 14:01:17 +01001579 if (oat_dex_file == nullptr) {
Ian Rogers97b52f82014-08-14 11:34:07 -07001580 *found = false;
1581 return OatFile::OatClass::Invalid();
Nicolas Geoffray4fcdc942014-07-22 10:48:00 +01001582 }
Ian Rogers97b52f82014-08-14 11:34:07 -07001583 *found = true;
1584 return oat_dex_file->GetOatClass(class_def_idx);
Ian Rogers19846512012-02-24 11:42:47 -08001585}
1586
Ian Rogers8b2c0b92013-09-19 02:56:49 -07001587static uint32_t GetOatMethodIndexFromMethodIndex(const DexFile& dex_file, uint16_t class_def_idx,
1588 uint32_t method_idx) {
1589 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_idx);
Ian Rogers13735952014-10-08 12:43:28 -07001590 const uint8_t* class_data = dex_file.GetClassData(class_def);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001591 CHECK(class_data != nullptr);
Mathieu Chartiere35517a2012-10-30 18:49:55 -07001592 ClassDataItemIterator it(dex_file, class_data);
1593 // Skip fields
1594 while (it.HasNextStaticField()) {
1595 it.Next();
1596 }
1597 while (it.HasNextInstanceField()) {
1598 it.Next();
1599 }
1600 // Process methods
1601 size_t class_def_method_index = 0;
1602 while (it.HasNextDirectMethod()) {
1603 if (it.GetMemberIndex() == method_idx) {
1604 return class_def_method_index;
1605 }
1606 class_def_method_index++;
1607 it.Next();
1608 }
1609 while (it.HasNextVirtualMethod()) {
1610 if (it.GetMemberIndex() == method_idx) {
1611 return class_def_method_index;
1612 }
1613 class_def_method_index++;
1614 it.Next();
1615 }
1616 DCHECK(!it.HasNext());
1617 LOG(FATAL) << "Failed to find method index " << method_idx << " in " << dex_file.GetLocation();
Ian Rogerse0a02da2014-12-02 14:10:53 -08001618 UNREACHABLE();
Mathieu Chartiere35517a2012-10-30 18:49:55 -07001619}
1620
Ian Rogers97b52f82014-08-14 11:34:07 -07001621const OatFile::OatMethod ClassLinker::FindOatMethodFor(mirror::ArtMethod* method, bool* found) {
Ian Rogers19846512012-02-24 11:42:47 -08001622 // Although we overwrite the trampoline of non-static methods, we may get here via the resolution
Ian Rogersfb6adba2012-03-04 21:51:51 -08001623 // method for direct methods (or virtual methods made direct).
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001624 mirror::Class* declaring_class = method->GetDeclaringClass();
Ian Rogersfb6adba2012-03-04 21:51:51 -08001625 size_t oat_method_index;
1626 if (method->IsStatic() || method->IsDirect()) {
1627 // Simple case where the oat method index was stashed at load time.
1628 oat_method_index = method->GetMethodIndex();
1629 } else {
1630 // We're invoking a virtual method directly (thanks to sharpening), compute the oat_method_index
1631 // by search for its position in the declared virtual methods.
1632 oat_method_index = declaring_class->NumDirectMethods();
1633 size_t end = declaring_class->NumVirtualMethods();
Andreas Gampe277ccbd2014-11-03 21:36:10 -08001634 bool found_virtual = false;
Ian Rogersfb6adba2012-03-04 21:51:51 -08001635 for (size_t i = 0; i < end; i++) {
Jeff Hao68caf9e2014-09-03 13:48:16 -07001636 // Check method index instead of identity in case of duplicate method definitions.
1637 if (method->GetDexMethodIndex() ==
1638 declaring_class->GetVirtualMethod(i)->GetDexMethodIndex()) {
Andreas Gampe277ccbd2014-11-03 21:36:10 -08001639 found_virtual = true;
Ian Rogersfb6adba2012-03-04 21:51:51 -08001640 break;
1641 }
Ian Rogersf320b632012-03-13 18:47:47 -07001642 oat_method_index++;
Ian Rogersfb6adba2012-03-04 21:51:51 -08001643 }
Andreas Gampe277ccbd2014-11-03 21:36:10 -08001644 CHECK(found_virtual) << "Didn't find oat method index for virtual method: "
1645 << PrettyMethod(method);
Ian Rogersfb6adba2012-03-04 21:51:51 -08001646 }
Mathieu Chartiere35517a2012-10-30 18:49:55 -07001647 DCHECK_EQ(oat_method_index,
1648 GetOatMethodIndexFromMethodIndex(*declaring_class->GetDexCache()->GetDexFile(),
Ian Rogers8b2c0b92013-09-19 02:56:49 -07001649 method->GetDeclaringClass()->GetDexClassDefIndex(),
Mathieu Chartiere35517a2012-10-30 18:49:55 -07001650 method->GetDexMethodIndex()));
Ian Rogers97b52f82014-08-14 11:34:07 -07001651 OatFile::OatClass oat_class = FindOatClass(*declaring_class->GetDexCache()->GetDexFile(),
1652 declaring_class->GetDexClassDefIndex(),
1653 found);
Andreas Gampe277ccbd2014-11-03 21:36:10 -08001654 if (!(*found)) {
Ian Rogers97b52f82014-08-14 11:34:07 -07001655 return OatFile::OatMethod::Invalid();
Nicolas Geoffray4fcdc942014-07-22 10:48:00 +01001656 }
Ian Rogers97b52f82014-08-14 11:34:07 -07001657 return oat_class.GetOatMethod(oat_method_index);
TDYa12785321912012-04-01 15:24:56 -07001658}
1659
1660// Special case to get oat code without overwriting a trampoline.
Ian Rogersef7d42f2014-01-06 12:55:46 -08001661const void* ClassLinker::GetQuickOatCodeFor(mirror::ArtMethod* method) {
Ian Rogers62d6c772013-02-27 08:32:07 -08001662 CHECK(!method->IsAbstract()) << PrettyMethod(method);
Jeff Hao8df6cea2013-07-29 13:54:48 -07001663 if (method->IsProxyMethod()) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001664 return GetQuickProxyInvokeHandler();
Jeff Hao8df6cea2013-07-29 13:54:48 -07001665 }
Ian Rogers97b52f82014-08-14 11:34:07 -07001666 bool found;
Mathieu Chartierc0d5f892015-02-25 13:22:57 -08001667 OatFile::OatMethod oat_method = FindOatMethodFor(method, &found);
1668 if (found) {
1669 auto* code = oat_method.GetQuickCode();
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08001670 if (code != nullptr) {
1671 return code;
Mathieu Chartier2535abe2015-02-17 10:38:49 -08001672 }
1673 }
Mathieu Chartierc0d5f892015-02-25 13:22:57 -08001674 jit::Jit* const jit = Runtime::Current()->GetJit();
1675 if (jit != nullptr) {
1676 auto* code = jit->GetCodeCache()->GetCodeFor(method);
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08001677 if (code != nullptr) {
1678 return code;
1679 }
1680 }
1681 if (method->IsNative()) {
1682 // No code and native? Use generic trampoline.
1683 return GetQuickGenericJniStub();
1684 }
1685 return GetQuickToInterpreterBridge();
TDYa12785321912012-04-01 15:24:56 -07001686}
1687
Hiroshi Yamauchi9bdec882014-08-15 17:11:12 -07001688const void* ClassLinker::GetOatMethodQuickCodeFor(mirror::ArtMethod* method) {
1689 if (method->IsNative() || method->IsAbstract() || method->IsProxyMethod()) {
1690 return nullptr;
1691 }
Mathieu Chartierc0d5f892015-02-25 13:22:57 -08001692 bool found;
1693 OatFile::OatMethod oat_method = FindOatMethodFor(method, &found);
1694 if (found) {
1695 return oat_method.GetQuickCode();
1696 }
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08001697 jit::Jit* jit = Runtime::Current()->GetJit();
1698 if (jit != nullptr) {
1699 auto* code = jit->GetCodeCache()->GetCodeFor(method);
1700 if (code != nullptr) {
1701 return code;
1702 }
1703 }
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08001704 return nullptr;
Hiroshi Yamauchi9bdec882014-08-15 17:11:12 -07001705}
1706
Ian Rogersef7d42f2014-01-06 12:55:46 -08001707const void* ClassLinker::GetQuickOatCodeFor(const DexFile& dex_file, uint16_t class_def_idx,
1708 uint32_t method_idx) {
Ian Rogers97b52f82014-08-14 11:34:07 -07001709 bool found;
1710 OatFile::OatClass oat_class = FindOatClass(dex_file, class_def_idx, &found);
1711 if (!found) {
Nicolas Geoffray4fcdc942014-07-22 10:48:00 +01001712 return nullptr;
1713 }
Ian Rogers8b2c0b92013-09-19 02:56:49 -07001714 uint32_t oat_method_idx = GetOatMethodIndexFromMethodIndex(dex_file, class_def_idx, method_idx);
Vladimir Markod3c5beb2014-04-11 16:32:51 +01001715 return oat_class.GetOatMethod(oat_method_idx).GetQuickCode();
Ian Rogersef7d42f2014-01-06 12:55:46 -08001716}
1717
Sebastien Hertz7d658cf2013-07-09 10:56:11 +02001718// Returns true if the method must run with interpreter, false otherwise.
Elliott Hughes956af0f2014-12-11 14:34:28 -08001719static bool NeedsInterpreter(mirror::ArtMethod* method, const void* quick_code)
Brian Carlstromf3632832014-05-20 15:36:53 -07001720 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes956af0f2014-12-11 14:34:28 -08001721 if (quick_code == nullptr) {
Sebastien Hertz7d658cf2013-07-09 10:56:11 +02001722 // No code: need interpreter.
Andreas Gampe2da88232014-02-27 12:26:20 -08001723 // May return true for native code, in the case of generic JNI
1724 // DCHECK(!method->IsNative());
Sebastien Hertz7d658cf2013-07-09 10:56:11 +02001725 return true;
1726 }
1727 // If interpreter mode is enabled, every method (except native and proxy) must
1728 // be run with interpreter.
1729 return Runtime::Current()->GetInstrumentation()->InterpretOnly() &&
1730 !method->IsNative() && !method->IsProxyMethod();
1731}
1732
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001733void ClassLinker::FixupStaticTrampolines(mirror::Class* klass) {
Brian Carlstrom073278c2014-02-19 15:21:21 -08001734 DCHECK(klass->IsInitialized()) << PrettyDescriptor(klass);
Ian Rogers1c829822013-09-30 18:18:50 -07001735 if (klass->NumDirectMethods() == 0) {
1736 return; // No direct methods => no static methods.
Ian Rogers19846512012-02-24 11:42:47 -08001737 }
Ian Rogers62d6c772013-02-27 08:32:07 -08001738 Runtime* runtime = Runtime::Current();
Andreas Gampe81c6f8d2015-03-25 17:19:53 -07001739 if (!runtime->IsStarted()) {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08001740 if (runtime->IsAotCompiler() || runtime->GetHeap()->HasImageSpace()) {
Alex Light64ad14d2014-08-19 14:23:13 -07001741 return; // OAT file unavailable.
1742 }
Ian Rogers19846512012-02-24 11:42:47 -08001743 }
Alex Light64ad14d2014-08-19 14:23:13 -07001744
Mathieu Chartierf8322842014-05-16 10:59:25 -07001745 const DexFile& dex_file = klass->GetDexFile();
1746 const DexFile::ClassDef* dex_class_def = klass->GetClassDef();
Ian Rogers1c829822013-09-30 18:18:50 -07001747 CHECK(dex_class_def != nullptr);
Ian Rogers13735952014-10-08 12:43:28 -07001748 const uint8_t* class_data = dex_file.GetClassData(*dex_class_def);
Ian Rogers1c829822013-09-30 18:18:50 -07001749 // There should always be class data if there were direct methods.
1750 CHECK(class_data != nullptr) << PrettyDescriptor(klass);
Ian Rogers19846512012-02-24 11:42:47 -08001751 ClassDataItemIterator it(dex_file, class_data);
1752 // Skip fields
1753 while (it.HasNextStaticField()) {
1754 it.Next();
1755 }
1756 while (it.HasNextInstanceField()) {
1757 it.Next();
1758 }
Ian Rogers97b52f82014-08-14 11:34:07 -07001759 bool has_oat_class;
1760 OatFile::OatClass oat_class = FindOatClass(dex_file, klass->GetDexClassDefIndex(),
1761 &has_oat_class);
Ian Rogers1c829822013-09-30 18:18:50 -07001762 // Link the code of methods skipped by LinkCode.
Sebastien Hertz7d658cf2013-07-09 10:56:11 +02001763 for (size_t method_index = 0; it.HasNextDirectMethod(); ++method_index, it.Next()) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001764 mirror::ArtMethod* method = klass->GetDirectMethod(method_index);
Sebastien Hertz7d658cf2013-07-09 10:56:11 +02001765 if (!method->IsStatic()) {
1766 // Only update static methods.
1767 continue;
Ian Rogers19846512012-02-24 11:42:47 -08001768 }
Nicolas Geoffray4fcdc942014-07-22 10:48:00 +01001769 const void* quick_code = nullptr;
1770 if (has_oat_class) {
1771 OatFile::OatMethod oat_method = oat_class.GetOatMethod(method_index);
Nicolas Geoffray4fcdc942014-07-22 10:48:00 +01001772 quick_code = oat_method.GetQuickCode();
1773 }
Elliott Hughes956af0f2014-12-11 14:34:28 -08001774 const bool enter_interpreter = NeedsInterpreter(method, quick_code);
Sebastien Hertz7d658cf2013-07-09 10:56:11 +02001775 if (enter_interpreter) {
1776 // Use interpreter entry point.
Ian Rogers1a570662014-03-12 01:02:21 -07001777 // Check whether the method is native, in which case it's generic JNI.
Elliott Hughes956af0f2014-12-11 14:34:28 -08001778 if (quick_code == nullptr && method->IsNative()) {
Ian Rogers6f3dbba2014-10-14 17:41:57 -07001779 quick_code = GetQuickGenericJniStub();
Andreas Gampe2da88232014-02-27 12:26:20 -08001780 } else {
1781 quick_code = GetQuickToInterpreterBridge();
1782 }
Sebastien Hertz7d658cf2013-07-09 10:56:11 +02001783 }
Elliott Hughes956af0f2014-12-11 14:34:28 -08001784 runtime->GetInstrumentation()->UpdateMethodsCode(method, quick_code);
Ian Rogers19846512012-02-24 11:42:47 -08001785 }
Ian Rogers62d6c772013-02-27 08:32:07 -08001786 // Ignore virtual methods on the iterator.
Ian Rogers19846512012-02-24 11:42:47 -08001787}
1788
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07001789void ClassLinker::LinkCode(Handle<mirror::ArtMethod> method,
Mathieu Chartierbf99f772014-08-23 16:37:27 -07001790 const OatFile::OatClass* oat_class,
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07001791 uint32_t class_def_method_index) {
Ian Rogers6f3dbba2014-10-14 17:41:57 -07001792 Runtime* runtime = Runtime::Current();
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08001793 if (runtime->IsAotCompiler()) {
Nicolas Geoffray4fcdc942014-07-22 10:48:00 +01001794 // The following code only applies to a non-compiler runtime.
1795 return;
1796 }
Ian Rogers62d6c772013-02-27 08:32:07 -08001797 // Method shouldn't have already been linked.
Ian Rogersef7d42f2014-01-06 12:55:46 -08001798 DCHECK(method->GetEntryPointFromQuickCompiledCode() == nullptr);
Nicolas Geoffray4fcdc942014-07-22 10:48:00 +01001799 if (oat_class != nullptr) {
1800 // Every kind of method should at least get an invoke stub from the oat_method.
1801 // non-abstract methods also get their code pointers.
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07001802 const OatFile::OatMethod oat_method = oat_class->GetOatMethod(class_def_method_index);
Nicolas Geoffray4fcdc942014-07-22 10:48:00 +01001803 oat_method.LinkMethod(method.Get());
1804 }
Brian Carlstrom92827a52011-10-10 15:50:01 -07001805
Jeff Hao16743632013-05-08 10:59:04 -07001806 // Install entry point from interpreter.
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001807 bool enter_interpreter = NeedsInterpreter(method.Get(),
Elliott Hughes956af0f2014-12-11 14:34:28 -08001808 method->GetEntryPointFromQuickCompiledCode());
Andreas Gampebf6b92a2014-03-05 16:11:04 -08001809 if (enter_interpreter && !method->IsNative()) {
Ian Rogers6f3dbba2014-10-14 17:41:57 -07001810 method->SetEntryPointFromInterpreter(artInterpreterToInterpreterBridge);
Jeff Hao16743632013-05-08 10:59:04 -07001811 } else {
Dragos Sbirlea08bf1962013-08-12 08:53:04 -07001812 method->SetEntryPointFromInterpreter(artInterpreterToCompiledCodeBridge);
Jeff Hao16743632013-05-08 10:59:04 -07001813 }
1814
Brian Carlstrom92827a52011-10-10 15:50:01 -07001815 if (method->IsAbstract()) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001816 method->SetEntryPointFromQuickCompiledCode(GetQuickToInterpreterBridge());
Brian Carlstrom92827a52011-10-10 15:50:01 -07001817 return;
1818 }
Ian Rogers19846512012-02-24 11:42:47 -08001819
1820 if (method->IsStatic() && !method->IsConstructor()) {
Ian Rogers62d6c772013-02-27 08:32:07 -08001821 // For static methods excluding the class initializer, install the trampoline.
Sebastien Hertz7d658cf2013-07-09 10:56:11 +02001822 // It will be replaced by the proper entry point by ClassLinker::FixupStaticTrampolines
1823 // after initializing class (see ClassLinker::InitializeClass method).
Ian Rogers6f3dbba2014-10-14 17:41:57 -07001824 method->SetEntryPointFromQuickCompiledCode(GetQuickResolutionStub());
Sebastien Hertz7d658cf2013-07-09 10:56:11 +02001825 } else if (enter_interpreter) {
Andreas Gampebf6b92a2014-03-05 16:11:04 -08001826 if (!method->IsNative()) {
1827 // Set entry point from compiled code if there's no code or in interpreter only mode.
1828 method->SetEntryPointFromQuickCompiledCode(GetQuickToInterpreterBridge());
Andreas Gampebf6b92a2014-03-05 16:11:04 -08001829 } else {
Ian Rogers6f3dbba2014-10-14 17:41:57 -07001830 method->SetEntryPointFromQuickCompiledCode(GetQuickGenericJniStub());
Andreas Gampebf6b92a2014-03-05 16:11:04 -08001831 }
Ian Rogers0d6de042012-02-29 08:50:26 -08001832 }
jeffhao26c0a1a2012-01-17 16:28:33 -08001833
Ian Rogers62d6c772013-02-27 08:32:07 -08001834 if (method->IsNative()) {
1835 // Unregistering restores the dlsym lookup stub.
Ian Rogers6f3dbba2014-10-14 17:41:57 -07001836 method->UnregisterNative();
Andreas Gampe90546832014-03-12 18:07:19 -07001837
1838 if (enter_interpreter) {
Ian Rogers6f3dbba2014-10-14 17:41:57 -07001839 // We have a native method here without code. Then it should have either the generic JNI
1840 // trampoline as entrypoint (non-static), or the resolution trampoline (static).
1841 // TODO: this doesn't handle all the cases where trampolines may be installed.
1842 const void* entry_point = method->GetEntryPointFromQuickCompiledCode();
1843 DCHECK(IsQuickGenericJniStub(entry_point) || IsQuickResolutionStub(entry_point));
Andreas Gampe90546832014-03-12 18:07:19 -07001844 }
Brian Carlstrom92827a52011-10-10 15:50:01 -07001845 }
1846}
1847
Fred Shih37f05ef2014-07-16 18:38:08 -07001848
Fred Shih37f05ef2014-07-16 18:38:08 -07001849
Ian Rogers7b078e82014-09-10 14:44:24 -07001850void ClassLinker::LoadClass(Thread* self, const DexFile& dex_file,
Brian Carlstromf615a612011-07-23 12:50:34 -07001851 const DexFile::ClassDef& dex_class_def,
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07001852 Handle<mirror::Class> klass,
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001853 mirror::ClassLoader* class_loader) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001854 CHECK(klass.Get() != nullptr);
1855 CHECK(klass->GetDexCache() != nullptr);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001856 CHECK_EQ(mirror::Class::kStatusNotReady, klass->GetStatus());
Brian Carlstromf615a612011-07-23 12:50:34 -07001857 const char* descriptor = dex_file.GetClassDescriptor(dex_class_def);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001858 CHECK(descriptor != nullptr);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001859
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001860 klass->SetClass(GetClassRoot(kJavaLangClass));
Andreas Gampe51829322014-08-25 15:05:04 -07001861 uint32_t access_flags = dex_class_def.GetJavaAccessFlags();
Brian Carlstrom8e3fb142013-10-09 21:00:27 -07001862 CHECK_EQ(access_flags & ~kAccJavaFlagsMask, 0U);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001863 klass->SetAccessFlags(access_flags);
1864 klass->SetClassLoader(class_loader);
Ian Rogersc2b44472011-12-14 21:17:17 -08001865 DCHECK_EQ(klass->GetPrimitiveType(), Primitive::kPrimNot);
Hiroshi Yamauchi5b783e62015-03-18 17:20:11 -07001866 mirror::Class::SetStatus(klass, mirror::Class::kStatusIdx, nullptr);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001867
Ian Rogers8b2c0b92013-09-19 02:56:49 -07001868 klass->SetDexClassDefIndex(dex_file.GetIndexForClassDef(dex_class_def));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001869 klass->SetDexTypeIndex(dex_class_def.class_idx_);
Mathieu Chartier91a6dc42014-12-01 10:31:15 -08001870 CHECK(klass->GetDexCacheStrings() != nullptr);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001871
Ian Rogers13735952014-10-08 12:43:28 -07001872 const uint8_t* class_data = dex_file.GetClassData(dex_class_def);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001873 if (class_data == nullptr) {
Ian Rogers0571d352011-11-03 19:51:38 -07001874 return; // no fields or methods - for example a marker interface
Brian Carlstrom934486c2011-07-12 23:42:50 -07001875 }
Vladimir Markod3c5beb2014-04-11 16:32:51 +01001876
Ian Rogers97b52f82014-08-14 11:34:07 -07001877
1878 bool has_oat_class = false;
Andreas Gampe81c6f8d2015-03-25 17:19:53 -07001879 if (Runtime::Current()->IsStarted() && !Runtime::Current()->IsAotCompiler()) {
Ian Rogers97b52f82014-08-14 11:34:07 -07001880 OatFile::OatClass oat_class = FindOatClass(dex_file, klass->GetDexClassDefIndex(),
1881 &has_oat_class);
1882 if (has_oat_class) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07001883 LoadClassMembers(self, dex_file, class_data, klass, &oat_class);
Ian Rogers97b52f82014-08-14 11:34:07 -07001884 }
1885 }
1886 if (!has_oat_class) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07001887 LoadClassMembers(self, dex_file, class_data, klass, nullptr);
Vladimir Markod3c5beb2014-04-11 16:32:51 +01001888 }
1889}
1890
Ian Rogers7b078e82014-09-10 14:44:24 -07001891void ClassLinker::LoadClassMembers(Thread* self, const DexFile& dex_file,
Ian Rogers13735952014-10-08 12:43:28 -07001892 const uint8_t* class_data,
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07001893 Handle<mirror::Class> klass,
Vladimir Markod3c5beb2014-04-11 16:32:51 +01001894 const OatFile::OatClass* oat_class) {
1895 // Load fields.
Ian Rogers0571d352011-11-03 19:51:38 -07001896 ClassDataItemIterator it(dex_file, class_data);
1897 if (it.NumStaticFields() != 0) {
Ian Rogersa436fde2013-08-27 23:34:06 -07001898 mirror::ObjectArray<mirror::ArtField>* statics = AllocArtFieldArray(self, it.NumStaticFields());
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001899 if (UNLIKELY(statics == nullptr)) {
Ian Rogersa436fde2013-08-27 23:34:06 -07001900 CHECK(self->IsExceptionPending()); // OOME.
1901 return;
1902 }
1903 klass->SetSFields(statics);
Ian Rogers0571d352011-11-03 19:51:38 -07001904 }
1905 if (it.NumInstanceFields() != 0) {
Ian Rogersa436fde2013-08-27 23:34:06 -07001906 mirror::ObjectArray<mirror::ArtField>* fields =
1907 AllocArtFieldArray(self, it.NumInstanceFields());
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001908 if (UNLIKELY(fields == nullptr)) {
Ian Rogersa436fde2013-08-27 23:34:06 -07001909 CHECK(self->IsExceptionPending()); // OOME.
1910 return;
1911 }
1912 klass->SetIFields(fields);
Ian Rogers0571d352011-11-03 19:51:38 -07001913 }
1914 for (size_t i = 0; it.HasNextStaticField(); i++, it.Next()) {
Ian Rogers7b078e82014-09-10 14:44:24 -07001915 self->AllowThreadSuspension();
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001916 StackHandleScope<1> hs(self);
1917 Handle<mirror::ArtField> sfield(hs.NewHandle(AllocArtField(self)));
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001918 if (UNLIKELY(sfield.Get() == nullptr)) {
Ian Rogersa436fde2013-08-27 23:34:06 -07001919 CHECK(self->IsExceptionPending()); // OOME.
1920 return;
1921 }
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001922 klass->SetStaticField(i, sfield.Get());
Ian Rogers0571d352011-11-03 19:51:38 -07001923 LoadField(dex_file, it, klass, sfield);
1924 }
1925 for (size_t i = 0; it.HasNextInstanceField(); i++, it.Next()) {
Ian Rogers7b078e82014-09-10 14:44:24 -07001926 self->AllowThreadSuspension();
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001927 StackHandleScope<1> hs(self);
1928 Handle<mirror::ArtField> ifield(hs.NewHandle(AllocArtField(self)));
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001929 if (UNLIKELY(ifield.Get() == nullptr)) {
Ian Rogersa436fde2013-08-27 23:34:06 -07001930 CHECK(self->IsExceptionPending()); // OOME.
1931 return;
1932 }
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001933 klass->SetInstanceField(i, ifield.Get());
Ian Rogers0571d352011-11-03 19:51:38 -07001934 LoadField(dex_file, it, klass, ifield);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001935 }
1936
Ian Rogers0571d352011-11-03 19:51:38 -07001937 // Load methods.
1938 if (it.NumDirectMethods() != 0) {
Brian Carlstrom934486c2011-07-12 23:42:50 -07001939 // TODO: append direct methods to class object
Ian Rogersa436fde2013-08-27 23:34:06 -07001940 mirror::ObjectArray<mirror::ArtMethod>* directs =
1941 AllocArtMethodArray(self, it.NumDirectMethods());
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001942 if (UNLIKELY(directs == nullptr)) {
Ian Rogersa436fde2013-08-27 23:34:06 -07001943 CHECK(self->IsExceptionPending()); // OOME.
1944 return;
1945 }
1946 klass->SetDirectMethods(directs);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001947 }
Ian Rogers0571d352011-11-03 19:51:38 -07001948 if (it.NumVirtualMethods() != 0) {
1949 // TODO: append direct methods to class object
Ian Rogersa436fde2013-08-27 23:34:06 -07001950 mirror::ObjectArray<mirror::ArtMethod>* virtuals =
1951 AllocArtMethodArray(self, it.NumVirtualMethods());
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001952 if (UNLIKELY(virtuals == nullptr)) {
Ian Rogersa436fde2013-08-27 23:34:06 -07001953 CHECK(self->IsExceptionPending()); // OOME.
1954 return;
1955 }
1956 klass->SetVirtualMethods(virtuals);
Brian Carlstrom934486c2011-07-12 23:42:50 -07001957 }
Ian Rogersfb6adba2012-03-04 21:51:51 -08001958 size_t class_def_method_index = 0;
Jeff Hao68caf9e2014-09-03 13:48:16 -07001959 uint32_t last_dex_method_index = DexFile::kDexNoIndex;
1960 size_t last_class_def_method_index = 0;
Ian Rogers0571d352011-11-03 19:51:38 -07001961 for (size_t i = 0; it.HasNextDirectMethod(); i++, it.Next()) {
Ian Rogers7b078e82014-09-10 14:44:24 -07001962 self->AllowThreadSuspension();
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001963 StackHandleScope<1> hs(self);
1964 Handle<mirror::ArtMethod> method(hs.NewHandle(LoadMethod(self, dex_file, it, klass)));
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001965 if (UNLIKELY(method.Get() == nullptr)) {
Ian Rogersa436fde2013-08-27 23:34:06 -07001966 CHECK(self->IsExceptionPending()); // OOME.
1967 return;
1968 }
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001969 klass->SetDirectMethod(i, method.Get());
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07001970 LinkCode(method, oat_class, class_def_method_index);
Jeff Hao68caf9e2014-09-03 13:48:16 -07001971 uint32_t it_method_index = it.GetMemberIndex();
1972 if (last_dex_method_index == it_method_index) {
1973 // duplicate case
1974 method->SetMethodIndex(last_class_def_method_index);
1975 } else {
1976 method->SetMethodIndex(class_def_method_index);
1977 last_dex_method_index = it_method_index;
1978 last_class_def_method_index = class_def_method_index;
1979 }
Ian Rogersfb6adba2012-03-04 21:51:51 -08001980 class_def_method_index++;
Ian Rogers0571d352011-11-03 19:51:38 -07001981 }
1982 for (size_t i = 0; it.HasNextVirtualMethod(); i++, it.Next()) {
Ian Rogers7b078e82014-09-10 14:44:24 -07001983 self->AllowThreadSuspension();
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001984 StackHandleScope<1> hs(self);
1985 Handle<mirror::ArtMethod> method(hs.NewHandle(LoadMethod(self, dex_file, it, klass)));
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001986 if (UNLIKELY(method.Get() == nullptr)) {
Ian Rogersa436fde2013-08-27 23:34:06 -07001987 CHECK(self->IsExceptionPending()); // OOME.
1988 return;
1989 }
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001990 klass->SetVirtualMethod(i, method.Get());
Ian Rogersfb6adba2012-03-04 21:51:51 -08001991 DCHECK_EQ(class_def_method_index, it.NumDirectMethods() + i);
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07001992 LinkCode(method, oat_class, class_def_method_index);
Ian Rogersfb6adba2012-03-04 21:51:51 -08001993 class_def_method_index++;
Ian Rogers0571d352011-11-03 19:51:38 -07001994 }
1995 DCHECK(!it.HasNext());
Brian Carlstrom934486c2011-07-12 23:42:50 -07001996}
1997
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001998void ClassLinker::LoadField(const DexFile& /*dex_file*/, const ClassDataItemIterator& it,
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07001999 Handle<mirror::Class> klass,
2000 Handle<mirror::ArtField> dst) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002001 uint32_t field_idx = it.GetMemberIndex();
2002 dst->SetDexFieldIndex(field_idx);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07002003 dst->SetDeclaringClass(klass.Get());
Andreas Gampe51829322014-08-25 15:05:04 -07002004 dst->SetAccessFlags(it.GetFieldAccessFlags());
Brian Carlstrom934486c2011-07-12 23:42:50 -07002005}
2006
Brian Carlstromea46f952013-07-30 01:26:50 -07002007mirror::ArtMethod* ClassLinker::LoadMethod(Thread* self, const DexFile& dex_file,
Ian Rogersa436fde2013-08-27 23:34:06 -07002008 const ClassDataItemIterator& it,
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07002009 Handle<mirror::Class> klass) {
Ian Rogers19846512012-02-24 11:42:47 -08002010 uint32_t dex_method_idx = it.GetMemberIndex();
Ian Rogers19846512012-02-24 11:42:47 -08002011 const DexFile::MethodId& method_id = dex_file.GetMethodId(dex_method_idx);
Ian Rogersdfb325e2013-10-30 01:00:44 -07002012 const char* method_name = dex_file.StringDataByIdx(method_id.name_idx_);
Mathieu Chartier66f19252012-09-18 08:57:04 -07002013
Brian Carlstromea46f952013-07-30 01:26:50 -07002014 mirror::ArtMethod* dst = AllocArtMethod(self);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002015 if (UNLIKELY(dst == nullptr)) {
Ian Rogersa436fde2013-08-27 23:34:06 -07002016 CHECK(self->IsExceptionPending()); // OOME.
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002017 return nullptr;
Ian Rogersa436fde2013-08-27 23:34:06 -07002018 }
Brian Carlstromea46f952013-07-30 01:26:50 -07002019 DCHECK(dst->IsArtMethod()) << PrettyDescriptor(dst->GetClass());
Mathieu Chartier66f19252012-09-18 08:57:04 -07002020
Mathieu Chartier2d5f39e2014-09-19 17:52:37 -07002021 ScopedAssertNoThreadSuspension ants(self, "LoadMethod");
Mathieu Chartier66f19252012-09-18 08:57:04 -07002022 dst->SetDexMethodIndex(dex_method_idx);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07002023 dst->SetDeclaringClass(klass.Get());
Ian Rogers0571d352011-11-03 19:51:38 -07002024 dst->SetCodeItemOffset(it.GetMethodCodeItemOffset());
Brian Carlstrom934486c2011-07-12 23:42:50 -07002025
Ian Rogers19846512012-02-24 11:42:47 -08002026 dst->SetDexCacheResolvedMethods(klass->GetDexCache()->GetResolvedMethods());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002027 dst->SetDexCacheResolvedTypes(klass->GetDexCache()->GetResolvedTypes());
Mathieu Chartier66f19252012-09-18 08:57:04 -07002028
Andreas Gampe51829322014-08-25 15:05:04 -07002029 uint32_t access_flags = it.GetMethodAccessFlags();
Ian Rogers241b5de2013-10-09 17:58:57 -07002030
Ian Rogersdfb325e2013-10-30 01:00:44 -07002031 if (UNLIKELY(strcmp("finalize", method_name) == 0)) {
Ian Rogers241b5de2013-10-09 17:58:57 -07002032 // Set finalizable flag on declaring class.
Ian Rogersdfb325e2013-10-30 01:00:44 -07002033 if (strcmp("V", dex_file.GetShorty(method_id.proto_idx_)) == 0) {
2034 // Void return type.
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002035 if (klass->GetClassLoader() != nullptr) { // All non-boot finalizer methods are flagged.
Ian Rogersdfb325e2013-10-30 01:00:44 -07002036 klass->SetFinalizable();
2037 } else {
Ian Rogers1ff3c982014-08-12 02:30:58 -07002038 std::string temp;
2039 const char* klass_descriptor = klass->GetDescriptor(&temp);
Ian Rogersdfb325e2013-10-30 01:00:44 -07002040 // The Enum class declares a "final" finalize() method to prevent subclasses from
2041 // introducing a finalizer. We don't want to set the finalizable flag for Enum or its
2042 // subclasses, so we exclude it here.
2043 // We also want to avoid setting the flag on Object, where we know that finalize() is
2044 // empty.
Ian Rogers1ff3c982014-08-12 02:30:58 -07002045 if (strcmp(klass_descriptor, "Ljava/lang/Object;") != 0 &&
2046 strcmp(klass_descriptor, "Ljava/lang/Enum;") != 0) {
Ian Rogers241b5de2013-10-09 17:58:57 -07002047 klass->SetFinalizable();
Ian Rogers241b5de2013-10-09 17:58:57 -07002048 }
2049 }
2050 }
2051 } else if (method_name[0] == '<') {
2052 // Fix broken access flags for initializers. Bug 11157540.
Ian Rogersdfb325e2013-10-30 01:00:44 -07002053 bool is_init = (strcmp("<init>", method_name) == 0);
2054 bool is_clinit = !is_init && (strcmp("<clinit>", method_name) == 0);
Ian Rogers241b5de2013-10-09 17:58:57 -07002055 if (UNLIKELY(!is_init && !is_clinit)) {
2056 LOG(WARNING) << "Unexpected '<' at start of method name " << method_name;
2057 } else {
2058 if (UNLIKELY((access_flags & kAccConstructor) == 0)) {
2059 LOG(WARNING) << method_name << " didn't have expected constructor access flag in class "
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07002060 << PrettyDescriptor(klass.Get()) << " in dex file " << dex_file.GetLocation();
Ian Rogers241b5de2013-10-09 17:58:57 -07002061 access_flags |= kAccConstructor;
2062 }
2063 }
2064 }
2065 dst->SetAccessFlags(access_flags);
Mathieu Chartier66f19252012-09-18 08:57:04 -07002066
Mathieu Chartier66f19252012-09-18 08:57:04 -07002067 return dst;
Brian Carlstrom934486c2011-07-12 23:42:50 -07002068}
2069
Ian Rogers7b078e82014-09-10 14:44:24 -07002070void ClassLinker::AppendToBootClassPath(Thread* self, const DexFile& dex_file) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07002071 StackHandleScope<1> hs(self);
2072 Handle<mirror::DexCache> dex_cache(hs.NewHandle(AllocDexCache(self, dex_file)));
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002073 CHECK(dex_cache.Get() != nullptr) << "Failed to allocate dex cache for "
2074 << dex_file.GetLocation();
Brian Carlstrom40381fb2011-10-19 14:13:40 -07002075 AppendToBootClassPath(dex_file, dex_cache);
Brian Carlstroma663ea52011-08-19 23:33:41 -07002076}
2077
Mathieu Chartierc528dba2013-11-26 12:00:11 -08002078void ClassLinker::AppendToBootClassPath(const DexFile& dex_file,
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07002079 Handle<mirror::DexCache> dex_cache) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002080 CHECK(dex_cache.Get() != nullptr) << dex_file.GetLocation();
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07002081 boot_class_path_.push_back(&dex_file);
Brian Carlstroma663ea52011-08-19 23:33:41 -07002082 RegisterDexFile(dex_file, dex_cache);
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07002083}
2084
Hiroshi Yamauchie9e3e692014-06-24 14:31:37 -07002085bool ClassLinker::IsDexFileRegisteredLocked(const DexFile& dex_file) {
Ian Rogers1bf8d4d2013-05-30 00:18:49 -07002086 dex_lock_.AssertSharedHeld(Thread::Current());
Mathieu Chartier66f19252012-09-18 08:57:04 -07002087 for (size_t i = 0; i != dex_caches_.size(); ++i) {
Hiroshi Yamauchie9e3e692014-06-24 14:31:37 -07002088 mirror::DexCache* dex_cache = GetDexCache(i);
2089 if (dex_cache->GetDexFile() == &dex_file) {
Ian Rogers19846512012-02-24 11:42:47 -08002090 return true;
Brian Carlstromaded5f72011-10-07 17:15:04 -07002091 }
2092 }
2093 return false;
Brian Carlstroma663ea52011-08-19 23:33:41 -07002094}
2095
Hiroshi Yamauchie9e3e692014-06-24 14:31:37 -07002096bool ClassLinker::IsDexFileRegistered(const DexFile& dex_file) {
Ian Rogers1bf8d4d2013-05-30 00:18:49 -07002097 ReaderMutexLock mu(Thread::Current(), dex_lock_);
Brian Carlstrom06918512011-10-16 23:39:12 -07002098 return IsDexFileRegisteredLocked(dex_file);
Brian Carlstromaded5f72011-10-07 17:15:04 -07002099}
2100
Mathieu Chartierc528dba2013-11-26 12:00:11 -08002101void ClassLinker::RegisterDexFileLocked(const DexFile& dex_file,
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07002102 Handle<mirror::DexCache> dex_cache) {
Ian Rogers1bf8d4d2013-05-30 00:18:49 -07002103 dex_lock_.AssertExclusiveHeld(Thread::Current());
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002104 CHECK(dex_cache.Get() != nullptr) << dex_file.GetLocation();
Brian Carlstrom7c3d13a2013-09-04 17:15:11 -07002105 CHECK(dex_cache->GetLocation()->Equals(dex_file.GetLocation()))
2106 << dex_cache->GetLocation()->ToModifiedUtf8() << " " << dex_file.GetLocation();
Hiroshi Yamauchi94f7b492014-07-22 18:08:23 -07002107 dex_caches_.push_back(GcRoot<mirror::DexCache>(dex_cache.Get()));
Mathieu Chartier66f19252012-09-18 08:57:04 -07002108 dex_cache->SetDexFile(&dex_file);
Mathieu Chartier893263b2014-03-04 11:07:42 -08002109 if (log_new_dex_caches_roots_) {
2110 // TODO: This is not safe if we can remove dex caches.
2111 new_dex_cache_roots_.push_back(dex_caches_.size() - 1);
2112 }
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07002113}
2114
Brian Carlstromaded5f72011-10-07 17:15:04 -07002115void ClassLinker::RegisterDexFile(const DexFile& dex_file) {
Ian Rogers1f539342012-10-03 21:09:42 -07002116 Thread* self = Thread::Current();
Brian Carlstrom47d237a2011-10-18 15:08:33 -07002117 {
Ian Rogers1bf8d4d2013-05-30 00:18:49 -07002118 ReaderMutexLock mu(self, dex_lock_);
Brian Carlstrom47d237a2011-10-18 15:08:33 -07002119 if (IsDexFileRegisteredLocked(dex_file)) {
2120 return;
2121 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07002122 }
Brian Carlstrom47d237a2011-10-18 15:08:33 -07002123 // Don't alloc while holding the lock, since allocation may need to
2124 // suspend all threads and another thread may need the dex_lock_ to
2125 // get to a suspend point.
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07002126 StackHandleScope<1> hs(self);
2127 Handle<mirror::DexCache> dex_cache(hs.NewHandle(AllocDexCache(self, dex_file)));
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002128 CHECK(dex_cache.Get() != nullptr) << "Failed to allocate dex cache for "
2129 << dex_file.GetLocation();
Brian Carlstrom47d237a2011-10-18 15:08:33 -07002130 {
Ian Rogers1bf8d4d2013-05-30 00:18:49 -07002131 WriterMutexLock mu(self, dex_lock_);
Brian Carlstrom47d237a2011-10-18 15:08:33 -07002132 if (IsDexFileRegisteredLocked(dex_file)) {
2133 return;
2134 }
2135 RegisterDexFileLocked(dex_file, dex_cache);
2136 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07002137}
2138
Mathieu Chartierc528dba2013-11-26 12:00:11 -08002139void ClassLinker::RegisterDexFile(const DexFile& dex_file,
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07002140 Handle<mirror::DexCache> dex_cache) {
Ian Rogers1bf8d4d2013-05-30 00:18:49 -07002141 WriterMutexLock mu(Thread::Current(), dex_lock_);
Brian Carlstromaded5f72011-10-07 17:15:04 -07002142 RegisterDexFileLocked(dex_file, dex_cache);
2143}
2144
Hiroshi Yamauchie9e3e692014-06-24 14:31:37 -07002145mirror::DexCache* ClassLinker::FindDexCache(const DexFile& dex_file) {
Ian Rogers1bf8d4d2013-05-30 00:18:49 -07002146 ReaderMutexLock mu(Thread::Current(), dex_lock_);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002147 // Search assuming unique-ness of dex file.
Mathieu Chartier66f19252012-09-18 08:57:04 -07002148 for (size_t i = 0; i != dex_caches_.size(); ++i) {
Hiroshi Yamauchie9e3e692014-06-24 14:31:37 -07002149 mirror::DexCache* dex_cache = GetDexCache(i);
Mathieu Chartier66f19252012-09-18 08:57:04 -07002150 if (dex_cache->GetDexFile() == &dex_file) {
2151 return dex_cache;
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07002152 }
2153 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002154 // Search matching by location name.
2155 std::string location(dex_file.GetLocation());
2156 for (size_t i = 0; i != dex_caches_.size(); ++i) {
Hiroshi Yamauchie9e3e692014-06-24 14:31:37 -07002157 mirror::DexCache* dex_cache = GetDexCache(i);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002158 if (dex_cache->GetDexFile()->GetLocation() == location) {
2159 return dex_cache;
2160 }
2161 }
2162 // Failure, dump diagnostic and abort.
2163 for (size_t i = 0; i != dex_caches_.size(); ++i) {
Hiroshi Yamauchie9e3e692014-06-24 14:31:37 -07002164 mirror::DexCache* dex_cache = GetDexCache(i);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002165 LOG(ERROR) << "Registered dex file " << i << " = " << dex_cache->GetDexFile()->GetLocation();
2166 }
2167 LOG(FATAL) << "Failed to find DexCache for DexFile " << location;
Ian Rogerse0a02da2014-12-02 14:10:53 -08002168 UNREACHABLE();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002169}
2170
Hiroshi Yamauchie9e3e692014-06-24 14:31:37 -07002171void ClassLinker::FixupDexCaches(mirror::ArtMethod* resolution_method) {
Ian Rogers1bf8d4d2013-05-30 00:18:49 -07002172 ReaderMutexLock mu(Thread::Current(), dex_lock_);
Ian Rogers19846512012-02-24 11:42:47 -08002173 for (size_t i = 0; i != dex_caches_.size(); ++i) {
Hiroshi Yamauchie9e3e692014-06-24 14:31:37 -07002174 mirror::DexCache* dex_cache = GetDexCache(i);
2175 dex_cache->Fixup(resolution_method);
Ian Rogers19846512012-02-24 11:42:47 -08002176 }
2177}
2178
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002179mirror::Class* ClassLinker::CreatePrimitiveClass(Thread* self, Primitive::Type type) {
Mingyao Yang98d1cc82014-05-15 17:02:16 -07002180 mirror::Class* klass = AllocClass(self, mirror::Class::PrimitiveClassSize());
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002181 if (UNLIKELY(klass == nullptr)) {
2182 return nullptr;
Ian Rogersa436fde2013-08-27 23:34:06 -07002183 }
2184 return InitializePrimitiveClass(klass, type);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002185}
2186
Mathieu Chartierc528dba2013-11-26 12:00:11 -08002187mirror::Class* ClassLinker::InitializePrimitiveClass(mirror::Class* primitive_class,
2188 Primitive::Type type) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002189 CHECK(primitive_class != nullptr);
Ian Rogers1f539342012-10-03 21:09:42 -07002190 // Must hold lock on object when initializing.
Ian Rogers7dfb28c2013-08-22 08:18:36 -07002191 Thread* self = Thread::Current();
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07002192 StackHandleScope<1> hs(self);
2193 Handle<mirror::Class> h_class(hs.NewHandle(primitive_class));
Mathieu Chartierdb2633c2014-05-16 09:59:29 -07002194 ObjectLock<mirror::Class> lock(self, h_class);
Hiroshi Yamauchi5b783e62015-03-18 17:20:11 -07002195 h_class->SetAccessFlags(kAccPublic | kAccFinal | kAccAbstract);
2196 h_class->SetPrimitiveType(type);
2197 mirror::Class::SetStatus(h_class, mirror::Class::kStatusInitialized, self);
Ian Rogers7dfb28c2013-08-22 08:18:36 -07002198 const char* descriptor = Primitive::Descriptor(type);
Hiroshi Yamauchi5b783e62015-03-18 17:20:11 -07002199 mirror::Class* existing = InsertClass(descriptor, h_class.Get(),
Mathieu Chartiere7c9a8c2014-11-06 16:35:45 -08002200 ComputeModifiedUtf8Hash(descriptor));
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002201 CHECK(existing == nullptr) << "InitPrimitiveClass(" << type << ") failed";
Hiroshi Yamauchi5b783e62015-03-18 17:20:11 -07002202 return h_class.Get();
Carl Shapiro565f5072011-07-10 13:39:43 -07002203}
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002204
Brian Carlstrombe977852011-07-19 14:54:54 -07002205// Create an array class (i.e. the class object for the array, not the
2206// array itself). "descriptor" looks like "[C" or "[[[[B" or
2207// "[Ljava/lang/String;".
2208//
2209// If "descriptor" refers to an array of primitives, look up the
2210// primitive type's internally-generated class object.
2211//
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07002212// "class_loader" is the class loader of the class that's referring to
2213// us. It's used to ensure that we're looking for the element type in
2214// the right context. It does NOT become the class loader for the
2215// array class; that always comes from the base element class.
Brian Carlstrombe977852011-07-19 14:54:54 -07002216//
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002217// Returns nullptr with an exception raised on failure.
Mathieu Chartiere7c9a8c2014-11-06 16:35:45 -08002218mirror::Class* ClassLinker::CreateArrayClass(Thread* self, const char* descriptor, size_t hash,
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07002219 Handle<mirror::ClassLoader> class_loader) {
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07002220 // Identify the underlying component type
Ian Rogers7dfb28c2013-08-22 08:18:36 -07002221 CHECK_EQ('[', descriptor[0]);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07002222 StackHandleScope<2> hs(self);
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07002223 MutableHandle<mirror::Class> component_type(hs.NewHandle(FindClass(self, descriptor + 1,
2224 class_loader)));
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07002225 if (component_type.Get() == nullptr) {
Mathieu Chartierc0a9ea42014-02-03 16:36:49 -08002226 DCHECK(self->IsExceptionPending());
Andreas Gampedc13d7d2014-07-23 20:18:36 -07002227 // We need to accept erroneous classes as component types.
Mathieu Chartiere7c9a8c2014-11-06 16:35:45 -08002228 const size_t component_hash = ComputeModifiedUtf8Hash(descriptor + 1);
2229 component_type.Assign(LookupClass(self, descriptor + 1, component_hash, class_loader.Get()));
Andreas Gampedc13d7d2014-07-23 20:18:36 -07002230 if (component_type.Get() == nullptr) {
2231 DCHECK(self->IsExceptionPending());
2232 return nullptr;
2233 } else {
2234 self->ClearException();
2235 }
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07002236 }
Ian Rogers2d10b202014-05-12 19:15:18 -07002237 if (UNLIKELY(component_type->IsPrimitiveVoid())) {
2238 ThrowNoClassDefFoundError("Attempt to create array of void primitive type");
2239 return nullptr;
2240 }
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07002241 // See if the component type is already loaded. Array classes are
2242 // always associated with the class loader of their underlying
2243 // element type -- an array of Strings goes with the loader for
2244 // java/lang/String -- so we need to look for it there. (The
2245 // caller should have checked for the existence of the class
2246 // before calling here, but they did so with *their* class loader,
2247 // not the component type's loader.)
2248 //
2249 // If we find it, the caller adds "loader" to the class' initiating
2250 // loader list, which should prevent us from going through this again.
2251 //
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002252 // This call is unnecessary if "loader" and "component_type->GetClassLoader()"
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07002253 // are the same, because our caller (FindClass) just did the
2254 // lookup. (Even if we get this wrong we still have correct behavior,
2255 // because we effectively do this lookup again when we add the new
2256 // class to the hash table --- necessary because of possible races with
2257 // other threads.)
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07002258 if (class_loader.Get() != component_type->GetClassLoader()) {
Mathieu Chartiere7c9a8c2014-11-06 16:35:45 -08002259 mirror::Class* new_class = LookupClass(self, descriptor, hash, component_type->GetClassLoader());
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002260 if (new_class != nullptr) {
Brian Carlstroma331b3c2011-07-18 17:47:56 -07002261 return new_class;
2262 }
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07002263 }
Brian Carlstroma331b3c2011-07-18 17:47:56 -07002264
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07002265 // Fill out the fields in the Class.
2266 //
2267 // It is possible to execute some methods against arrays, because
2268 // all arrays are subclasses of java_lang_Object_, so we need to set
2269 // up a vtable. We can just point at the one in java_lang_Object_.
2270 //
2271 // Array classes are simple enough that we don't need to do a full
2272 // link step.
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07002273 auto new_class = hs.NewHandle<mirror::Class>(nullptr);
Ian Rogers7dfb28c2013-08-22 08:18:36 -07002274 if (UNLIKELY(!init_done_)) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002275 // Classes that were hand created, ie not by FindSystemClass
Ian Rogers7dfb28c2013-08-22 08:18:36 -07002276 if (strcmp(descriptor, "[Ljava/lang/Class;") == 0) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07002277 new_class.Assign(GetClassRoot(kClassArrayClass));
Ian Rogers7dfb28c2013-08-22 08:18:36 -07002278 } else if (strcmp(descriptor, "[Ljava/lang/Object;") == 0) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07002279 new_class.Assign(GetClassRoot(kObjectArrayClass));
Ian Rogers6f3dbba2014-10-14 17:41:57 -07002280 } else if (strcmp(descriptor, GetClassRootDescriptor(kJavaLangStringArrayClass)) == 0) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07002281 new_class.Assign(GetClassRoot(kJavaLangStringArrayClass));
Ian Rogers7dfb28c2013-08-22 08:18:36 -07002282 } else if (strcmp(descriptor,
Ian Rogers6f3dbba2014-10-14 17:41:57 -07002283 GetClassRootDescriptor(kJavaLangReflectArtMethodArrayClass)) == 0) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07002284 new_class.Assign(GetClassRoot(kJavaLangReflectArtMethodArrayClass));
Ian Rogers7dfb28c2013-08-22 08:18:36 -07002285 } else if (strcmp(descriptor,
Ian Rogers6f3dbba2014-10-14 17:41:57 -07002286 GetClassRootDescriptor(kJavaLangReflectArtFieldArrayClass)) == 0) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07002287 new_class.Assign(GetClassRoot(kJavaLangReflectArtFieldArrayClass));
Ian Rogers7dfb28c2013-08-22 08:18:36 -07002288 } else if (strcmp(descriptor, "[C") == 0) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07002289 new_class.Assign(GetClassRoot(kCharArrayClass));
Ian Rogers7dfb28c2013-08-22 08:18:36 -07002290 } else if (strcmp(descriptor, "[I") == 0) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07002291 new_class.Assign(GetClassRoot(kIntArrayClass));
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07002292 }
2293 }
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07002294 if (new_class.Get() == nullptr) {
Mingyao Yang98d1cc82014-05-15 17:02:16 -07002295 new_class.Assign(AllocClass(self, mirror::Array::ClassSize()));
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07002296 if (new_class.Get() == nullptr) {
Mathieu Chartierc0a9ea42014-02-03 16:36:49 -08002297 return nullptr;
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07002298 }
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07002299 new_class->SetComponentType(component_type.Get());
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07002300 }
Mathieu Chartierdb2633c2014-05-16 09:59:29 -07002301 ObjectLock<mirror::Class> lock(self, new_class); // Must hold lock on object when initializing.
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002302 DCHECK(new_class->GetComponentType() != nullptr);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002303 mirror::Class* java_lang_Object = GetClassRoot(kJavaLangObject);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002304 new_class->SetSuperClass(java_lang_Object);
2305 new_class->SetVTable(java_lang_Object->GetVTable());
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07002306 new_class->SetPrimitiveType(Primitive::kPrimNot);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002307 new_class->SetClassLoader(component_type->GetClassLoader());
Hiroshi Yamauchi5b783e62015-03-18 17:20:11 -07002308 mirror::Class::SetStatus(new_class, mirror::Class::kStatusLoaded, self);
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07002309 {
Andreas Gampe277ccbd2014-11-03 21:36:10 -08002310 StackHandleScope<mirror::Class::kImtSize> hs2(self,
2311 Runtime::Current()->GetImtUnimplementedMethod());
2312 new_class->PopulateEmbeddedImtAndVTable(&hs2);
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07002313 }
Hiroshi Yamauchi5b783e62015-03-18 17:20:11 -07002314 mirror::Class::SetStatus(new_class, mirror::Class::kStatusInitialized, self);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07002315 // don't need to set new_class->SetObjectSize(..)
Brian Carlstrom9cff8e12011-08-18 16:47:29 -07002316 // because Object::SizeOf delegates to Array::SizeOf
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07002317
2318
2319 // All arrays have java/lang/Cloneable and java/io/Serializable as
2320 // interfaces. We need to set that up here, so that stuff like
2321 // "instanceof" works right.
2322 //
2323 // Note: The GC could run during the call to FindSystemClass,
2324 // so we need to make sure the class object is GC-valid while we're in
2325 // there. Do this by clearing the interface list so the GC will just
2326 // think that the entries are null.
2327
2328
2329 // Use the single, global copies of "interfaces" and "iftable"
2330 // (remember not to free them for arrays).
Hiroshi Yamauchie9e3e692014-06-24 14:31:37 -07002331 {
Hiroshi Yamauchi94f7b492014-07-22 18:08:23 -07002332 mirror::IfTable* array_iftable = array_iftable_.Read();
Hiroshi Yamauchie9e3e692014-06-24 14:31:37 -07002333 CHECK(array_iftable != nullptr);
2334 new_class->SetIfTable(array_iftable);
2335 }
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07002336
Elliott Hughes00626c22013-06-14 15:04:14 -07002337 // Inherit access flags from the component type.
2338 int access_flags = new_class->GetComponentType()->GetAccessFlags();
2339 // Lose any implementation detail flags; in particular, arrays aren't finalizable.
2340 access_flags &= kAccJavaFlagsMask;
2341 // Arrays can't be used as a superclass or interface, so we want to add "abstract final"
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07002342 // and remove "interface".
Elliott Hughes00626c22013-06-14 15:04:14 -07002343 access_flags |= kAccAbstract | kAccFinal;
2344 access_flags &= ~kAccInterface;
2345
2346 new_class->SetAccessFlags(access_flags);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07002347
Mathieu Chartiere7c9a8c2014-11-06 16:35:45 -08002348 mirror::Class* existing = InsertClass(descriptor, new_class.Get(), hash);
Mathieu Chartierc0a9ea42014-02-03 16:36:49 -08002349 if (existing == nullptr) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07002350 return new_class.Get();
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07002351 }
2352 // Another thread must have loaded the class after we
2353 // started but before we finished. Abandon what we've
2354 // done.
2355 //
2356 // (Yes, this happens.)
2357
Brian Carlstrom07bb8552012-01-18 22:10:50 -08002358 return existing;
Brian Carlstroma331b3c2011-07-18 17:47:56 -07002359}
2360
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002361mirror::Class* ClassLinker::FindPrimitiveClass(char type) {
Ian Rogers62f05122014-03-21 11:21:29 -07002362 switch (type) {
2363 case 'B':
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07002364 return GetClassRoot(kPrimitiveByte);
Ian Rogers62f05122014-03-21 11:21:29 -07002365 case 'C':
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07002366 return GetClassRoot(kPrimitiveChar);
Ian Rogers62f05122014-03-21 11:21:29 -07002367 case 'D':
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07002368 return GetClassRoot(kPrimitiveDouble);
Ian Rogers62f05122014-03-21 11:21:29 -07002369 case 'F':
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07002370 return GetClassRoot(kPrimitiveFloat);
Ian Rogers62f05122014-03-21 11:21:29 -07002371 case 'I':
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07002372 return GetClassRoot(kPrimitiveInt);
Ian Rogers62f05122014-03-21 11:21:29 -07002373 case 'J':
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07002374 return GetClassRoot(kPrimitiveLong);
Ian Rogers62f05122014-03-21 11:21:29 -07002375 case 'S':
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07002376 return GetClassRoot(kPrimitiveShort);
Ian Rogers62f05122014-03-21 11:21:29 -07002377 case 'Z':
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07002378 return GetClassRoot(kPrimitiveBoolean);
Ian Rogers62f05122014-03-21 11:21:29 -07002379 case 'V':
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07002380 return GetClassRoot(kPrimitiveVoid);
Ian Rogers62f05122014-03-21 11:21:29 -07002381 default:
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07002382 break;
Carl Shapiro744ad052011-08-06 15:53:36 -07002383 }
Elliott Hughesbd935992011-08-22 11:59:34 -07002384 std::string printable_type(PrintableChar(type));
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002385 ThrowNoClassDefFoundError("Not a primitive type: %s", printable_type.c_str());
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002386 return nullptr;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002387}
2388
Ian Rogers7dfb28c2013-08-22 08:18:36 -07002389mirror::Class* ClassLinker::InsertClass(const char* descriptor, mirror::Class* klass,
2390 size_t hash) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08002391 if (VLOG_IS_ON(class_linker)) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002392 mirror::DexCache* dex_cache = klass->GetDexCache();
Brian Carlstromae826982011-11-09 01:33:42 -08002393 std::string source;
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002394 if (dex_cache != nullptr) {
Brian Carlstromae826982011-11-09 01:33:42 -08002395 source += " from ";
2396 source += dex_cache->GetLocation()->ToModifiedUtf8();
2397 }
2398 LOG(INFO) << "Loaded class " << descriptor << source;
2399 }
Ian Rogers1bf8d4d2013-05-30 00:18:49 -07002400 WriterMutexLock mu(Thread::Current(), *Locks::classlinker_classes_lock_);
Mathieu Chartierc2e20622014-11-03 11:41:47 -08002401 mirror::Class* existing = LookupClassFromTableLocked(descriptor, klass->GetClassLoader(), hash);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002402 if (existing != nullptr) {
Brian Carlstrom07bb8552012-01-18 22:10:50 -08002403 return existing;
Ian Rogers5d76c432011-10-31 21:42:49 -07002404 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002405 if (kIsDebugBuild && !klass->IsTemp() && klass->GetClassLoader() == nullptr &&
Mingyao Yang98d1cc82014-05-15 17:02:16 -07002406 dex_cache_image_class_lookup_required_) {
Ian Rogers7dfb28c2013-08-22 08:18:36 -07002407 // Check a class loaded with the system class loader matches one in the image if the class
2408 // is in the image.
2409 existing = LookupClassFromImage(descriptor);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002410 if (existing != nullptr) {
Mathieu Chartierc2e20622014-11-03 11:41:47 -08002411 CHECK_EQ(klass, existing);
Ian Rogers7dfb28c2013-08-22 08:18:36 -07002412 }
2413 }
Mathieu Chartier4e305412014-02-19 10:54:44 -08002414 VerifyObject(klass);
Mathieu Chartierc2e20622014-11-03 11:41:47 -08002415 class_table_.InsertWithHash(GcRoot<mirror::Class>(klass), hash);
Mathieu Chartier893263b2014-03-04 11:07:42 -08002416 if (log_new_class_table_roots_) {
Mathieu Chartierc2e20622014-11-03 11:41:47 -08002417 new_class_roots_.push_back(GcRoot<mirror::Class>(klass));
Mathieu Chartier893263b2014-03-04 11:07:42 -08002418 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002419 return nullptr;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002420}
2421
Mingyao Yang98d1cc82014-05-15 17:02:16 -07002422mirror::Class* ClassLinker::UpdateClass(const char* descriptor, mirror::Class* klass,
2423 size_t hash) {
2424 WriterMutexLock mu(Thread::Current(), *Locks::classlinker_classes_lock_);
Mathieu Chartiere7c9a8c2014-11-06 16:35:45 -08002425 auto existing_it = class_table_.FindWithHash(std::make_pair(descriptor, klass->GetClassLoader()),
2426 hash);
2427 if (existing_it == class_table_.end()) {
Mingyao Yang98d1cc82014-05-15 17:02:16 -07002428 CHECK(klass->IsProxyClass());
2429 return nullptr;
2430 }
2431
Mathieu Chartiere7c9a8c2014-11-06 16:35:45 -08002432 mirror::Class* existing = existing_it->Read();
Mingyao Yang98d1cc82014-05-15 17:02:16 -07002433 CHECK_NE(existing, klass) << descriptor;
2434 CHECK(!existing->IsResolved()) << descriptor;
2435 CHECK_EQ(klass->GetStatus(), mirror::Class::kStatusResolving) << descriptor;
2436
Mingyao Yang98d1cc82014-05-15 17:02:16 -07002437 CHECK(!klass->IsTemp()) << descriptor;
2438 if (kIsDebugBuild && klass->GetClassLoader() == nullptr &&
2439 dex_cache_image_class_lookup_required_) {
2440 // Check a class loaded with the system class loader matches one in the image if the class
2441 // is in the image.
2442 existing = LookupClassFromImage(descriptor);
2443 if (existing != nullptr) {
Mathieu Chartierc2e20622014-11-03 11:41:47 -08002444 CHECK_EQ(klass, existing) << descriptor;
Mingyao Yang98d1cc82014-05-15 17:02:16 -07002445 }
2446 }
2447 VerifyObject(klass);
2448
Mathieu Chartierc2e20622014-11-03 11:41:47 -08002449 // Update the element in the hash set.
Mathieu Chartiere7c9a8c2014-11-06 16:35:45 -08002450 *existing_it = GcRoot<mirror::Class>(klass);
Mingyao Yang98d1cc82014-05-15 17:02:16 -07002451 if (log_new_class_table_roots_) {
Mathieu Chartierc2e20622014-11-03 11:41:47 -08002452 new_class_roots_.push_back(GcRoot<mirror::Class>(klass));
Mingyao Yang98d1cc82014-05-15 17:02:16 -07002453 }
2454
2455 return existing;
2456}
2457
Mathieu Chartierc2e20622014-11-03 11:41:47 -08002458bool ClassLinker::RemoveClass(const char* descriptor, mirror::ClassLoader* class_loader) {
Ian Rogers1bf8d4d2013-05-30 00:18:49 -07002459 WriterMutexLock mu(Thread::Current(), *Locks::classlinker_classes_lock_);
Mathieu Chartierc2e20622014-11-03 11:41:47 -08002460 auto pair = std::make_pair(descriptor, class_loader);
2461 auto it = class_table_.Find(pair);
2462 if (it != class_table_.end()) {
2463 class_table_.Erase(it);
2464 return true;
2465 }
2466 it = pre_zygote_class_table_.Find(pair);
2467 if (it != pre_zygote_class_table_.end()) {
2468 pre_zygote_class_table_.Erase(it);
2469 return true;
Brian Carlstromae826982011-11-09 01:33:42 -08002470 }
2471 return false;
2472}
2473
Mathieu Chartiere7c9a8c2014-11-06 16:35:45 -08002474mirror::Class* ClassLinker::LookupClass(Thread* self, const char* descriptor, size_t hash,
Mathieu Chartierc2e20622014-11-03 11:41:47 -08002475 mirror::ClassLoader* class_loader) {
Ian Rogers7dfb28c2013-08-22 08:18:36 -07002476 {
Ian Rogers7b078e82014-09-10 14:44:24 -07002477 ReaderMutexLock mu(self, *Locks::classlinker_classes_lock_);
Ian Rogers7dfb28c2013-08-22 08:18:36 -07002478 mirror::Class* result = LookupClassFromTableLocked(descriptor, class_loader, hash);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002479 if (result != nullptr) {
Ian Rogers7dfb28c2013-08-22 08:18:36 -07002480 return result;
2481 }
Sameer Abu Asal2c6de222013-05-02 17:38:59 -07002482 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002483 if (class_loader != nullptr || !dex_cache_image_class_lookup_required_) {
2484 return nullptr;
Ian Rogers7dfb28c2013-08-22 08:18:36 -07002485 } else {
2486 // Lookup failed but need to search dex_caches_.
2487 mirror::Class* result = LookupClassFromImage(descriptor);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002488 if (result != nullptr) {
Ian Rogers7dfb28c2013-08-22 08:18:36 -07002489 InsertClass(descriptor, result, hash);
2490 } else {
2491 // Searching the image dex files/caches failed, we don't want to get into this situation
2492 // often as map searches are faster, so after kMaxFailedDexCacheLookups move all image
2493 // classes into the class table.
Ian Rogers68b56852014-08-29 20:19:11 -07002494 constexpr uint32_t kMaxFailedDexCacheLookups = 1000;
Ian Rogers7dfb28c2013-08-22 08:18:36 -07002495 if (++failed_dex_cache_class_lookups_ > kMaxFailedDexCacheLookups) {
2496 MoveImageClassesToClassTable();
2497 }
2498 }
2499 return result;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002500 }
Brian Carlstrom07bb8552012-01-18 22:10:50 -08002501}
2502
Ian Rogers7dfb28c2013-08-22 08:18:36 -07002503mirror::Class* ClassLinker::LookupClassFromTableLocked(const char* descriptor,
Mathieu Chartierc2e20622014-11-03 11:41:47 -08002504 mirror::ClassLoader* class_loader,
Ian Rogers7dfb28c2013-08-22 08:18:36 -07002505 size_t hash) {
Mathieu Chartierc2e20622014-11-03 11:41:47 -08002506 auto descriptor_pair = std::make_pair(descriptor, class_loader);
2507 auto it = pre_zygote_class_table_.FindWithHash(descriptor_pair, hash);
2508 if (it == pre_zygote_class_table_.end()) {
2509 it = class_table_.FindWithHash(descriptor_pair, hash);
2510 if (it == class_table_.end()) {
2511 return nullptr;
Ian Rogers5d76c432011-10-31 21:42:49 -07002512 }
2513 }
Mathieu Chartierc2e20622014-11-03 11:41:47 -08002514 return it->Read();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002515}
2516
Ian Rogers7dfb28c2013-08-22 08:18:36 -07002517static mirror::ObjectArray<mirror::DexCache>* GetImageDexCaches()
2518 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
2519 gc::space::ImageSpace* image = Runtime::Current()->GetHeap()->GetImageSpace();
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002520 CHECK(image != nullptr);
Ian Rogers7dfb28c2013-08-22 08:18:36 -07002521 mirror::Object* root = image->GetImageHeader().GetImageRoot(ImageHeader::kDexCaches);
2522 return root->AsObjectArray<mirror::DexCache>();
2523}
2524
2525void ClassLinker::MoveImageClassesToClassTable() {
2526 Thread* self = Thread::Current();
2527 WriterMutexLock mu(self, *Locks::classlinker_classes_lock_);
2528 if (!dex_cache_image_class_lookup_required_) {
2529 return; // All dex cache classes are already in the class table.
2530 }
Mathieu Chartier2d5f39e2014-09-19 17:52:37 -07002531 ScopedAssertNoThreadSuspension ants(self, "Moving image classes to class table");
Ian Rogers7dfb28c2013-08-22 08:18:36 -07002532 mirror::ObjectArray<mirror::DexCache>* dex_caches = GetImageDexCaches();
Ian Rogers1ff3c982014-08-12 02:30:58 -07002533 std::string temp;
Ian Rogers7dfb28c2013-08-22 08:18:36 -07002534 for (int32_t i = 0; i < dex_caches->GetLength(); i++) {
2535 mirror::DexCache* dex_cache = dex_caches->Get(i);
2536 mirror::ObjectArray<mirror::Class>* types = dex_cache->GetResolvedTypes();
2537 for (int32_t j = 0; j < types->GetLength(); j++) {
2538 mirror::Class* klass = types->Get(j);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002539 if (klass != nullptr) {
2540 DCHECK(klass->GetClassLoader() == nullptr);
Ian Rogers1ff3c982014-08-12 02:30:58 -07002541 const char* descriptor = klass->GetDescriptor(&temp);
Mathieu Chartiere7c9a8c2014-11-06 16:35:45 -08002542 size_t hash = ComputeModifiedUtf8Hash(descriptor);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002543 mirror::Class* existing = LookupClassFromTableLocked(descriptor, nullptr, hash);
2544 if (existing != nullptr) {
Mathieu Chartierc2e20622014-11-03 11:41:47 -08002545 CHECK_EQ(existing, klass) << PrettyClassAndClassLoader(existing) << " != "
Ian Rogers7dfb28c2013-08-22 08:18:36 -07002546 << PrettyClassAndClassLoader(klass);
2547 } else {
Mathieu Chartierc2e20622014-11-03 11:41:47 -08002548 class_table_.Insert(GcRoot<mirror::Class>(klass));
Mathieu Chartier893263b2014-03-04 11:07:42 -08002549 if (log_new_class_table_roots_) {
Mathieu Chartierc2e20622014-11-03 11:41:47 -08002550 new_class_roots_.push_back(GcRoot<mirror::Class>(klass));
Mathieu Chartier893263b2014-03-04 11:07:42 -08002551 }
Ian Rogers7dfb28c2013-08-22 08:18:36 -07002552 }
2553 }
Elliott Hughes6fa602d2011-12-02 17:54:25 -08002554 }
2555 }
Ian Rogers7dfb28c2013-08-22 08:18:36 -07002556 dex_cache_image_class_lookup_required_ = false;
Ian Rogers7dfb28c2013-08-22 08:18:36 -07002557}
2558
Mathieu Chartierc2e20622014-11-03 11:41:47 -08002559void ClassLinker::MoveClassTableToPreZygote() {
2560 WriterMutexLock mu(Thread::Current(), *Locks::classlinker_classes_lock_);
2561 DCHECK(pre_zygote_class_table_.Empty());
2562 pre_zygote_class_table_ = std::move(class_table_);
2563 class_table_.Clear();
2564}
2565
Ian Rogers7dfb28c2013-08-22 08:18:36 -07002566mirror::Class* ClassLinker::LookupClassFromImage(const char* descriptor) {
Mathieu Chartier2d5f39e2014-09-19 17:52:37 -07002567 ScopedAssertNoThreadSuspension ants(Thread::Current(), "Image class lookup");
Ian Rogers7dfb28c2013-08-22 08:18:36 -07002568 mirror::ObjectArray<mirror::DexCache>* dex_caches = GetImageDexCaches();
2569 for (int32_t i = 0; i < dex_caches->GetLength(); ++i) {
2570 mirror::DexCache* dex_cache = dex_caches->Get(i);
2571 const DexFile* dex_file = dex_cache->GetDexFile();
Vladimir Marko801a8112014-01-06 14:28:16 +00002572 // Try binary searching the string/type index.
Ian Rogers7dfb28c2013-08-22 08:18:36 -07002573 const DexFile::StringId* string_id = dex_file->FindStringId(descriptor);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002574 if (string_id != nullptr) {
Ian Rogers7dfb28c2013-08-22 08:18:36 -07002575 const DexFile::TypeId* type_id =
2576 dex_file->FindTypeId(dex_file->GetIndexForStringId(*string_id));
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002577 if (type_id != nullptr) {
Ian Rogers7dfb28c2013-08-22 08:18:36 -07002578 uint16_t type_idx = dex_file->GetIndexForTypeId(*type_id);
2579 mirror::Class* klass = dex_cache->GetResolvedType(type_idx);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002580 if (klass != nullptr) {
Ian Rogers7dfb28c2013-08-22 08:18:36 -07002581 return klass;
2582 }
2583 }
2584 }
2585 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002586 return nullptr;
Ian Rogers7dfb28c2013-08-22 08:18:36 -07002587}
2588
2589void ClassLinker::LookupClasses(const char* descriptor, std::vector<mirror::Class*>& result) {
2590 result.clear();
2591 if (dex_cache_image_class_lookup_required_) {
2592 MoveImageClassesToClassTable();
2593 }
Mathieu Chartierc2e20622014-11-03 11:41:47 -08002594 WriterMutexLock mu(Thread::Current(), *Locks::classlinker_classes_lock_);
2595 while (true) {
2596 auto it = class_table_.Find(descriptor);
2597 if (it == class_table_.end()) {
2598 break;
Elliott Hughes6fa602d2011-12-02 17:54:25 -08002599 }
Mathieu Chartierc2e20622014-11-03 11:41:47 -08002600 result.push_back(it->Read());
2601 class_table_.Erase(it);
2602 }
2603 for (mirror::Class* k : result) {
2604 class_table_.Insert(GcRoot<mirror::Class>(k));
2605 }
2606 size_t pre_zygote_start = result.size();
2607 // Now handle the pre zygote table.
2608 // Note: This dirties the pre-zygote table but shouldn't be an issue since LookupClasses is only
2609 // called from the debugger.
2610 while (true) {
2611 auto it = pre_zygote_class_table_.Find(descriptor);
2612 if (it == pre_zygote_class_table_.end()) {
2613 break;
2614 }
2615 result.push_back(it->Read());
2616 pre_zygote_class_table_.Erase(it);
2617 }
2618 for (size_t i = pre_zygote_start; i < result.size(); ++i) {
2619 pre_zygote_class_table_.Insert(GcRoot<mirror::Class>(result[i]));
Elliott Hughes6fa602d2011-12-02 17:54:25 -08002620 }
2621}
2622
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07002623void ClassLinker::VerifyClass(Thread* self, Handle<mirror::Class> klass) {
Brian Carlstrom9b5ee882012-02-28 09:48:54 -08002624 // TODO: assert that the monitor on the Class is held
Mathieu Chartierdb2633c2014-05-16 09:59:29 -07002625 ObjectLock<mirror::Class> lock(self, klass);
Elliott Hughesd9c67be2012-02-02 19:54:06 -08002626
Ian Rogers9ffb0392012-09-10 11:56:50 -07002627 // Don't attempt to re-verify if already sufficiently verified.
Andreas Gampebb0c7f62014-09-11 10:59:33 -07002628 if (klass->IsVerified()) {
Andreas Gampe48498592014-09-10 19:48:05 -07002629 EnsurePreverifiedMethods(klass);
jeffhao98eacac2011-09-14 16:11:53 -07002630 return;
2631 }
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08002632 if (klass->IsCompileTimeVerified() && Runtime::Current()->IsAotCompiler()) {
Andreas Gampebb0c7f62014-09-11 10:59:33 -07002633 return;
2634 }
jeffhao98eacac2011-09-14 16:11:53 -07002635
Ian Rogers9ffb0392012-09-10 11:56:50 -07002636 // The class might already be erroneous, for example at compile time if we attempted to verify
2637 // this class as a parent to another.
Brian Carlstrom9b5ee882012-02-28 09:48:54 -08002638 if (klass->IsErroneous()) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07002639 ThrowEarlierClassFailure(klass.Get());
Brian Carlstrom9b5ee882012-02-28 09:48:54 -08002640 return;
2641 }
2642
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002643 if (klass->GetStatus() == mirror::Class::kStatusResolved) {
Hiroshi Yamauchi5b783e62015-03-18 17:20:11 -07002644 mirror::Class::SetStatus(klass, mirror::Class::kStatusVerifying, self);
Ian Rogers9ffb0392012-09-10 11:56:50 -07002645 } else {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002646 CHECK_EQ(klass->GetStatus(), mirror::Class::kStatusRetryVerificationAtRuntime)
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07002647 << PrettyClass(klass.Get());
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08002648 CHECK(!Runtime::Current()->IsAotCompiler());
Hiroshi Yamauchi5b783e62015-03-18 17:20:11 -07002649 mirror::Class::SetStatus(klass, mirror::Class::kStatusVerifyingAtRuntime, self);
Ian Rogers9ffb0392012-09-10 11:56:50 -07002650 }
jeffhao98eacac2011-09-14 16:11:53 -07002651
Jeff Hao4a200f52014-04-01 14:58:49 -07002652 // Skip verification if disabled.
2653 if (!Runtime::Current()->IsVerificationEnabled()) {
Hiroshi Yamauchi5b783e62015-03-18 17:20:11 -07002654 mirror::Class::SetStatus(klass, mirror::Class::kStatusVerified, self);
Andreas Gampe48498592014-09-10 19:48:05 -07002655 EnsurePreverifiedMethods(klass);
Jeff Hao4a200f52014-04-01 14:58:49 -07002656 return;
2657 }
2658
Ian Rogers9ffb0392012-09-10 11:56:50 -07002659 // Verify super class.
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07002660 StackHandleScope<2> hs(self);
2661 Handle<mirror::Class> super(hs.NewHandle(klass->GetSuperClass()));
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002662 if (super.Get() != nullptr) {
Ian Rogers9ffb0392012-09-10 11:56:50 -07002663 // Acquire lock to prevent races on verifying the super class.
Andreas Gampe277ccbd2014-11-03 21:36:10 -08002664 ObjectLock<mirror::Class> super_lock(self, super);
Ian Rogers1c5eb702012-02-01 09:18:34 -08002665
2666 if (!super->IsVerified() && !super->IsErroneous()) {
Ian Rogers7b078e82014-09-10 14:44:24 -07002667 VerifyClass(self, super);
Ian Rogers1c5eb702012-02-01 09:18:34 -08002668 }
jeffhaof1e6b7c2012-06-05 18:33:30 -07002669 if (!super->IsCompileTimeVerified()) {
Brian Carlstromf3632832014-05-20 15:36:53 -07002670 std::string error_msg(
2671 StringPrintf("Rejecting class %s that attempts to sub-class erroneous class %s",
2672 PrettyDescriptor(klass.Get()).c_str(),
2673 PrettyDescriptor(super.Get()).c_str()));
Andreas Gampee4301ff2015-02-17 19:25:29 -08002674 LOG(WARNING) << error_msg << " in " << klass->GetDexCache()->GetLocation()->ToModifiedUtf8();
Nicolas Geoffray14691c52015-03-05 10:40:17 +00002675 Handle<mirror::Throwable> cause(hs.NewHandle(self->GetException()));
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07002676 if (cause.Get() != nullptr) {
Ian Rogers1c5eb702012-02-01 09:18:34 -08002677 self->ClearException();
2678 }
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07002679 ThrowVerifyError(klass.Get(), "%s", error_msg.c_str());
2680 if (cause.Get() != nullptr) {
Nicolas Geoffray14691c52015-03-05 10:40:17 +00002681 self->GetException()->SetCause(cause.Get());
Ian Rogers1c5eb702012-02-01 09:18:34 -08002682 }
Jeff Hao22cb09b2013-12-12 14:29:15 -08002683 ClassReference ref(klass->GetDexCache()->GetDexFile(), klass->GetDexClassDefIndex());
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08002684 if (Runtime::Current()->IsAotCompiler()) {
Vladimir Marko2b5eaa22013-12-13 13:59:30 +00002685 Runtime::Current()->GetCompilerCallbacks()->ClassRejected(ref);
2686 }
Hiroshi Yamauchi5b783e62015-03-18 17:20:11 -07002687 mirror::Class::SetStatus(klass, mirror::Class::kStatusError, self);
Ian Rogers1c5eb702012-02-01 09:18:34 -08002688 return;
2689 }
2690 }
2691
Elliott Hughes634eb2e2012-03-22 16:06:28 -07002692 // Try to use verification information from the oat file, otherwise do runtime verification.
Ian Rogers4445a7e2012-10-05 17:19:13 -07002693 const DexFile& dex_file = *klass->GetDexCache()->GetDexFile();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002694 mirror::Class::Status oat_file_class_status(mirror::Class::kStatusNotReady);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07002695 bool preverified = VerifyClassUsingOatFile(dex_file, klass.Get(), oat_file_class_status);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002696 if (oat_file_class_status == mirror::Class::kStatusError) {
Ian Rogerse6bb3b22013-08-19 21:51:45 -07002697 VLOG(class_linker) << "Skipping runtime verification of erroneous class "
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07002698 << PrettyDescriptor(klass.Get()) << " in "
Ian Rogerse6bb3b22013-08-19 21:51:45 -07002699 << klass->GetDexCache()->GetLocation()->ToModifiedUtf8();
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07002700 ThrowVerifyError(klass.Get(), "Rejecting class %s because it failed compile-time verification",
2701 PrettyDescriptor(klass.Get()).c_str());
Hiroshi Yamauchi5b783e62015-03-18 17:20:11 -07002702 mirror::Class::SetStatus(klass, mirror::Class::kStatusError, self);
jeffhaoec014232012-09-05 10:42:25 -07002703 return;
2704 }
Sebastien Hertz233ea8e2013-06-06 11:57:09 +02002705 verifier::MethodVerifier::FailureKind verifier_failure = verifier::MethodVerifier::kNoFailure;
Ian Rogers62d6c772013-02-27 08:32:07 -08002706 std::string error_msg;
jeffhaof1e6b7c2012-06-05 18:33:30 -07002707 if (!preverified) {
Ian Rogers7b078e82014-09-10 14:44:24 -07002708 verifier_failure = verifier::MethodVerifier::VerifyClass(self, klass.Get(),
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08002709 Runtime::Current()->IsAotCompiler(),
Ian Rogers8b2c0b92013-09-19 02:56:49 -07002710 &error_msg);
jeffhaof1e6b7c2012-06-05 18:33:30 -07002711 }
2712 if (preverified || verifier_failure != verifier::MethodVerifier::kHardFailure) {
Ian Rogers529781d2012-07-23 17:24:29 -07002713 if (!preverified && verifier_failure != verifier::MethodVerifier::kNoFailure) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07002714 VLOG(class_linker) << "Soft verification failure in class " << PrettyDescriptor(klass.Get())
Ian Rogers529781d2012-07-23 17:24:29 -07002715 << " in " << klass->GetDexCache()->GetLocation()->ToModifiedUtf8()
2716 << " because: " << error_msg;
2717 }
Ian Rogers1f539342012-10-03 21:09:42 -07002718 self->AssertNoPendingException();
jeffhaoe4f0b2a2012-08-30 11:18:57 -07002719 // Make sure all classes referenced by catch blocks are resolved.
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002720 ResolveClassExceptionHandlerTypes(dex_file, klass);
jeffhaoe4f0b2a2012-08-30 11:18:57 -07002721 if (verifier_failure == verifier::MethodVerifier::kNoFailure) {
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07002722 // Even though there were no verifier failures we need to respect whether the super-class
2723 // was verified or requiring runtime reverification.
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002724 if (super.Get() == nullptr || super->IsVerified()) {
Hiroshi Yamauchi5b783e62015-03-18 17:20:11 -07002725 mirror::Class::SetStatus(klass, mirror::Class::kStatusVerified, self);
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07002726 } else {
2727 CHECK_EQ(super->GetStatus(), mirror::Class::kStatusRetryVerificationAtRuntime);
Hiroshi Yamauchi5b783e62015-03-18 17:20:11 -07002728 mirror::Class::SetStatus(klass, mirror::Class::kStatusRetryVerificationAtRuntime, self);
Brian Carlstrom6d3f72c2013-08-21 18:06:34 -07002729 // Pretend a soft failure occured so that we don't consider the class verified below.
2730 verifier_failure = verifier::MethodVerifier::kSoftFailure;
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07002731 }
jeffhaoe4f0b2a2012-08-30 11:18:57 -07002732 } else {
2733 CHECK_EQ(verifier_failure, verifier::MethodVerifier::kSoftFailure);
2734 // Soft failures at compile time should be retried at runtime. Soft
2735 // failures at runtime will be handled by slow paths in the generated
2736 // code. Set status accordingly.
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08002737 if (Runtime::Current()->IsAotCompiler()) {
Hiroshi Yamauchi5b783e62015-03-18 17:20:11 -07002738 mirror::Class::SetStatus(klass, mirror::Class::kStatusRetryVerificationAtRuntime, self);
jeffhaoe4f0b2a2012-08-30 11:18:57 -07002739 } else {
Hiroshi Yamauchi5b783e62015-03-18 17:20:11 -07002740 mirror::Class::SetStatus(klass, mirror::Class::kStatusVerified, self);
Andreas Gampebb0c7f62014-09-11 10:59:33 -07002741 // As this is a fake verified status, make sure the methods are _not_ marked preverified
2742 // later.
Ian Rogers7b078e82014-09-10 14:44:24 -07002743 klass->SetPreverified();
jeffhaoe4f0b2a2012-08-30 11:18:57 -07002744 }
2745 }
jeffhao5cfd6fb2011-09-27 13:54:29 -07002746 } else {
Andreas Gampee4301ff2015-02-17 19:25:29 -08002747 LOG(WARNING) << "Verification failed on class " << PrettyDescriptor(klass.Get())
Ian Rogers1c5eb702012-02-01 09:18:34 -08002748 << " in " << klass->GetDexCache()->GetLocation()->ToModifiedUtf8()
2749 << " because: " << error_msg;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002750 self->AssertNoPendingException();
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07002751 ThrowVerifyError(klass.Get(), "%s", error_msg.c_str());
Hiroshi Yamauchi5b783e62015-03-18 17:20:11 -07002752 mirror::Class::SetStatus(klass, mirror::Class::kStatusError, self);
jeffhao5cfd6fb2011-09-27 13:54:29 -07002753 }
Sebastien Hertz233ea8e2013-06-06 11:57:09 +02002754 if (preverified || verifier_failure == verifier::MethodVerifier::kNoFailure) {
Brian Carlstrom6d3f72c2013-08-21 18:06:34 -07002755 // Class is verified so we don't need to do any access check on its methods.
Sebastien Hertz233ea8e2013-06-06 11:57:09 +02002756 // Let the interpreter know it by setting the kAccPreverified flag onto each
2757 // method.
2758 // Note: we're going here during compilation and at runtime. When we set the
2759 // kAccPreverified flag when compiling image classes, the flag is recorded
2760 // in the image and is set when loading the image.
Andreas Gampe48498592014-09-10 19:48:05 -07002761 EnsurePreverifiedMethods(klass);
2762 }
2763}
2764
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07002765void ClassLinker::EnsurePreverifiedMethods(Handle<mirror::Class> klass) {
Ian Rogers7b078e82014-09-10 14:44:24 -07002766 if (!klass->IsPreverified()) {
Sebastien Hertz233ea8e2013-06-06 11:57:09 +02002767 klass->SetPreverifiedFlagOnAllMethods();
Ian Rogers7b078e82014-09-10 14:44:24 -07002768 klass->SetPreverified();
Sebastien Hertz233ea8e2013-06-06 11:57:09 +02002769 }
jeffhao98eacac2011-09-14 16:11:53 -07002770}
2771
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002772bool ClassLinker::VerifyClassUsingOatFile(const DexFile& dex_file, mirror::Class* klass,
2773 mirror::Class::Status& oat_file_class_status) {
Anwar Ghuloum044d2832013-07-17 15:22:31 -07002774 // If we're compiling, we can only verify the class using the oat file if
2775 // we are not compiling the image or if the class we're verifying is not part of
2776 // the app. In other words, we will only check for preverification of bootclasspath
2777 // classes.
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08002778 if (Runtime::Current()->IsAotCompiler()) {
Anwar Ghuloum044d2832013-07-17 15:22:31 -07002779 // Are we compiling the bootclasspath?
Andreas Gampe81c6f8d2015-03-25 17:19:53 -07002780 if (Runtime::Current()->GetCompilerCallbacks()->IsBootImage()) {
Anwar Ghuloum044d2832013-07-17 15:22:31 -07002781 return false;
2782 }
2783 // We are compiling an app (not the image).
2784
2785 // Is this an app class? (I.e. not a bootclasspath class)
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002786 if (klass->GetClassLoader() != nullptr) {
Anwar Ghuloum044d2832013-07-17 15:22:31 -07002787 return false;
2788 }
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002789 }
Anwar Ghuloum044d2832013-07-17 15:22:31 -07002790
Richard Uhler07b3c232015-03-31 15:57:54 -07002791 const OatFile::OatDexFile* oat_dex_file = dex_file.GetOatDexFile();
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002792 // In case we run without an image there won't be a backing oat file.
2793 if (oat_dex_file == nullptr) {
Anwar Ghuloumad256bb2013-07-18 14:58:55 -07002794 return false;
2795 }
2796
Andreas Gampe76bd8802014-12-10 16:43:58 -08002797 // We may be running with a preopted oat file but without image. In this case,
2798 // we don't skip verification of preverified classes to ensure we initialize
2799 // dex caches with all types resolved during verification.
2800 // We need to trust image classes, as these might be coming out of a pre-opted, quickened boot
2801 // image (that we just failed loading), and the verifier can't be run on quickened opcodes when
2802 // the runtime isn't started. On the other hand, app classes can be re-verified even if they are
2803 // already pre-opted, as then the runtime is started.
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08002804 if (!Runtime::Current()->IsAotCompiler() &&
Andreas Gampe76bd8802014-12-10 16:43:58 -08002805 !Runtime::Current()->GetHeap()->HasImageSpace() &&
2806 klass->GetClassLoader() != nullptr) {
2807 return false;
2808 }
2809
Ian Rogers8b2c0b92013-09-19 02:56:49 -07002810 uint16_t class_def_index = klass->GetDexClassDefIndex();
Vladimir Markod3c5beb2014-04-11 16:32:51 +01002811 oat_file_class_status = oat_dex_file->GetOatClass(class_def_index).GetStatus();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002812 if (oat_file_class_status == mirror::Class::kStatusVerified ||
2813 oat_file_class_status == mirror::Class::kStatusInitialized) {
Anwar Ghuloum044d2832013-07-17 15:22:31 -07002814 return true;
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002815 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002816 if (oat_file_class_status == mirror::Class::kStatusRetryVerificationAtRuntime) {
jeffhao1ac29442012-03-26 11:37:32 -07002817 // Compile time verification failed with a soft error. Compile time verification can fail
2818 // because we have incomplete type information. Consider the following:
Ian Rogersc4762272012-02-01 15:55:55 -08002819 // class ... {
2820 // Foo x;
2821 // .... () {
2822 // if (...) {
2823 // v1 gets assigned a type of resolved class Foo
2824 // } else {
2825 // v1 gets assigned a type of unresolved class Bar
2826 // }
2827 // iput x = v1
2828 // } }
2829 // when we merge v1 following the if-the-else it results in Conflict
2830 // (see verifier::RegType::Merge) as we can't know the type of Bar and we could possibly be
2831 // allowing an unsafe assignment to the field x in the iput (javac may have compiled this as
2832 // it knew Bar was a sub-class of Foo, but for us this may have been moved into a separate apk
2833 // at compile time).
2834 return false;
2835 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002836 if (oat_file_class_status == mirror::Class::kStatusError) {
jeffhao1ac29442012-03-26 11:37:32 -07002837 // Compile time verification failed with a hard error. This is caused by invalid instructions
2838 // in the class. These errors are unrecoverable.
2839 return false;
2840 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002841 if (oat_file_class_status == mirror::Class::kStatusNotReady) {
Ian Rogersc4762272012-02-01 15:55:55 -08002842 // Status is uninitialized if we couldn't determine the status at compile time, for example,
2843 // not loading the class.
2844 // TODO: when the verifier doesn't rely on Class-es failing to resolve/load the type hierarchy
2845 // isn't a problem and this case shouldn't occur
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002846 return false;
2847 }
Ian Rogers1ff3c982014-08-12 02:30:58 -07002848 std::string temp;
Elliott Hughes634eb2e2012-03-22 16:06:28 -07002849 LOG(FATAL) << "Unexpected class status: " << oat_file_class_status
Ian Rogersfc0e94b2013-09-23 23:51:32 -07002850 << " " << dex_file.GetLocation() << " " << PrettyClass(klass) << " "
Ian Rogers1ff3c982014-08-12 02:30:58 -07002851 << klass->GetDescriptor(&temp);
Ian Rogerse0a02da2014-12-02 14:10:53 -08002852 UNREACHABLE();
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002853}
2854
Mathieu Chartierc528dba2013-11-26 12:00:11 -08002855void ClassLinker::ResolveClassExceptionHandlerTypes(const DexFile& dex_file,
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07002856 Handle<mirror::Class> klass) {
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002857 for (size_t i = 0; i < klass->NumDirectMethods(); i++) {
2858 ResolveMethodExceptionHandlerTypes(dex_file, klass->GetDirectMethod(i));
2859 }
2860 for (size_t i = 0; i < klass->NumVirtualMethods(); i++) {
2861 ResolveMethodExceptionHandlerTypes(dex_file, klass->GetVirtualMethod(i));
2862 }
2863}
2864
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002865void ClassLinker::ResolveMethodExceptionHandlerTypes(const DexFile& dex_file,
Brian Carlstromea46f952013-07-30 01:26:50 -07002866 mirror::ArtMethod* method) {
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002867 // similar to DexVerifier::ScanTryCatchBlocks and dex2oat's ResolveExceptionsForMethod.
2868 const DexFile::CodeItem* code_item = dex_file.GetCodeItem(method->GetCodeItemOffset());
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002869 if (code_item == nullptr) {
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002870 return; // native or abstract method
2871 }
2872 if (code_item->tries_size_ == 0) {
2873 return; // nothing to process
2874 }
Ian Rogers13735952014-10-08 12:43:28 -07002875 const uint8_t* handlers_ptr = DexFile::GetCatchHandlerData(*code_item, 0);
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002876 uint32_t handlers_size = DecodeUnsignedLeb128(&handlers_ptr);
2877 ClassLinker* linker = Runtime::Current()->GetClassLinker();
2878 for (uint32_t idx = 0; idx < handlers_size; idx++) {
2879 CatchHandlerIterator iterator(handlers_ptr);
2880 for (; iterator.HasNext(); iterator.Next()) {
2881 // Ensure exception types are resolved so that they don't need resolution to be delivered,
2882 // unresolved exception types will be ignored by exception delivery
2883 if (iterator.GetHandlerTypeIndex() != DexFile::kDexNoIndex16) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002884 mirror::Class* exception_type = linker->ResolveType(iterator.GetHandlerTypeIndex(), method);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002885 if (exception_type == nullptr) {
Brian Carlstrome7d856b2012-01-11 18:10:55 -08002886 DCHECK(Thread::Current()->IsExceptionPending());
2887 Thread::Current()->ClearException();
2888 }
2889 }
2890 }
2891 handlers_ptr = iterator.EndDataPointer();
2892 }
2893}
2894
Brian Carlstromea46f952013-07-30 01:26:50 -07002895static void CheckProxyConstructor(mirror::ArtMethod* constructor);
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07002896static void CheckProxyMethod(Handle<mirror::ArtMethod> method,
2897 Handle<mirror::ArtMethod> prototype);
Ian Rogersc2b44472011-12-14 21:17:17 -08002898
Mathieu Chartier2b7c4d12014-05-19 10:52:16 -07002899mirror::Class* ClassLinker::CreateProxyClass(ScopedObjectAccessAlreadyRunnable& soa, jstring name,
Mathieu Chartier590fee92013-09-13 13:46:47 -07002900 jobjectArray interfaces, jobject loader,
2901 jobjectArray methods, jobjectArray throws) {
2902 Thread* self = soa.Self();
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07002903 StackHandleScope<8> hs(self);
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07002904 MutableHandle<mirror::Class> klass(hs.NewHandle(
Mingyao Yang98d1cc82014-05-15 17:02:16 -07002905 AllocClass(self, GetClassRoot(kJavaLangClass), sizeof(mirror::Class))));
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002906 if (klass.Get() == nullptr) {
Ian Rogersa436fde2013-08-27 23:34:06 -07002907 CHECK(self->IsExceptionPending()); // OOME.
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002908 return nullptr;
Ian Rogersa436fde2013-08-27 23:34:06 -07002909 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002910 DCHECK(klass->GetClass() != nullptr);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002911 klass->SetObjectSize(sizeof(mirror::Proxy));
Andreas Gampe48498592014-09-10 19:48:05 -07002912 // Set the class access flags incl. preverified, so we do not try to set the flag on the methods.
2913 klass->SetAccessFlags(kAccClassIsProxy | kAccPublic | kAccFinal | kAccPreverified);
Mathieu Chartier590fee92013-09-13 13:46:47 -07002914 klass->SetClassLoader(soa.Decode<mirror::ClassLoader*>(loader));
Ian Rogersc2b44472011-12-14 21:17:17 -08002915 DCHECK_EQ(klass->GetPrimitiveType(), Primitive::kPrimNot);
Mathieu Chartier590fee92013-09-13 13:46:47 -07002916 klass->SetName(soa.Decode<mirror::String*>(name));
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002917 mirror::Class* proxy_class = GetClassRoot(kJavaLangReflectProxy);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002918 klass->SetDexCache(proxy_class->GetDexCache());
Hiroshi Yamauchi5b783e62015-03-18 17:20:11 -07002919 mirror::Class::SetStatus(klass, mirror::Class::kStatusIdx, self);
Ian Rogersc2b44472011-12-14 21:17:17 -08002920
Elliott Hughes2ed52c42012-03-21 16:56:56 -07002921 // Instance fields are inherited, but we add a couple of static fields...
Ian Rogersa436fde2013-08-27 23:34:06 -07002922 {
2923 mirror::ObjectArray<mirror::ArtField>* sfields = AllocArtFieldArray(self, 2);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002924 if (UNLIKELY(sfields == nullptr)) {
Ian Rogersa436fde2013-08-27 23:34:06 -07002925 CHECK(self->IsExceptionPending()); // OOME.
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002926 return nullptr;
Ian Rogersa436fde2013-08-27 23:34:06 -07002927 }
2928 klass->SetSFields(sfields);
2929 }
Elliott Hughes2ed52c42012-03-21 16:56:56 -07002930 // 1. Create a static field 'interfaces' that holds the _declared_ interfaces implemented by
2931 // our proxy, so Class.getInterfaces doesn't return the flattened set.
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07002932 Handle<mirror::ArtField> interfaces_sfield(hs.NewHandle(AllocArtField(self)));
2933 if (UNLIKELY(interfaces_sfield.Get() == nullptr)) {
Ian Rogersa436fde2013-08-27 23:34:06 -07002934 CHECK(self->IsExceptionPending()); // OOME.
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07002935 return nullptr;
Ian Rogersa436fde2013-08-27 23:34:06 -07002936 }
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07002937 klass->SetStaticField(0, interfaces_sfield.Get());
Elliott Hughes2ed52c42012-03-21 16:56:56 -07002938 interfaces_sfield->SetDexFieldIndex(0);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07002939 interfaces_sfield->SetDeclaringClass(klass.Get());
Elliott Hughes2ed52c42012-03-21 16:56:56 -07002940 interfaces_sfield->SetAccessFlags(kAccStatic | kAccPublic | kAccFinal);
2941 // 2. Create a static field 'throws' that holds exceptions thrown by our methods.
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07002942 Handle<mirror::ArtField> throws_sfield(hs.NewHandle(AllocArtField(self)));
2943 if (UNLIKELY(throws_sfield.Get() == nullptr)) {
Ian Rogersa436fde2013-08-27 23:34:06 -07002944 CHECK(self->IsExceptionPending()); // OOME.
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07002945 return nullptr;
Ian Rogersa436fde2013-08-27 23:34:06 -07002946 }
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07002947 klass->SetStaticField(1, throws_sfield.Get());
Elliott Hughes2ed52c42012-03-21 16:56:56 -07002948 throws_sfield->SetDexFieldIndex(1);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07002949 throws_sfield->SetDeclaringClass(klass.Get());
Elliott Hughes2ed52c42012-03-21 16:56:56 -07002950 throws_sfield->SetAccessFlags(kAccStatic | kAccPublic | kAccFinal);
Jesse Wilson95caa792011-10-12 18:14:17 -04002951
Ian Rogers466bb252011-10-14 03:29:56 -07002952 // Proxies have 1 direct method, the constructor
Ian Rogersa436fde2013-08-27 23:34:06 -07002953 {
Mathieu Chartier590fee92013-09-13 13:46:47 -07002954 mirror::ObjectArray<mirror::ArtMethod>* directs = AllocArtMethodArray(self, 1);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07002955 if (UNLIKELY(directs == nullptr)) {
Ian Rogersa436fde2013-08-27 23:34:06 -07002956 CHECK(self->IsExceptionPending()); // OOME.
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07002957 return nullptr;
Ian Rogersa436fde2013-08-27 23:34:06 -07002958 }
2959 klass->SetDirectMethods(directs);
2960 mirror::ArtMethod* constructor = CreateProxyConstructor(self, klass, proxy_class);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07002961 if (UNLIKELY(constructor == nullptr)) {
Ian Rogersa436fde2013-08-27 23:34:06 -07002962 CHECK(self->IsExceptionPending()); // OOME.
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07002963 return nullptr;
Ian Rogersa436fde2013-08-27 23:34:06 -07002964 }
2965 klass->SetDirectMethod(0, constructor);
2966 }
Jesse Wilson95caa792011-10-12 18:14:17 -04002967
Mathieu Chartier590fee92013-09-13 13:46:47 -07002968 // Create virtual method using specified prototypes.
2969 size_t num_virtual_methods =
2970 soa.Decode<mirror::ObjectArray<mirror::ArtMethod>*>(methods)->GetLength();
Ian Rogersa436fde2013-08-27 23:34:06 -07002971 {
Brian Carlstromf3632832014-05-20 15:36:53 -07002972 mirror::ObjectArray<mirror::ArtMethod>* virtuals = AllocArtMethodArray(self,
2973 num_virtual_methods);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002974 if (UNLIKELY(virtuals == nullptr)) {
Ian Rogersa436fde2013-08-27 23:34:06 -07002975 CHECK(self->IsExceptionPending()); // OOME.
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002976 return nullptr;
Ian Rogersa436fde2013-08-27 23:34:06 -07002977 }
2978 klass->SetVirtualMethods(virtuals);
2979 }
Jesse Wilson95caa792011-10-12 18:14:17 -04002980 for (size_t i = 0; i < num_virtual_methods; ++i) {
Andreas Gampe277ccbd2014-11-03 21:36:10 -08002981 StackHandleScope<1> hs2(self);
Mathieu Chartier590fee92013-09-13 13:46:47 -07002982 mirror::ObjectArray<mirror::ArtMethod>* decoded_methods =
2983 soa.Decode<mirror::ObjectArray<mirror::ArtMethod>*>(methods);
Andreas Gampe277ccbd2014-11-03 21:36:10 -08002984 Handle<mirror::ArtMethod> prototype(hs2.NewHandle(decoded_methods->Get(i)));
Ian Rogersa436fde2013-08-27 23:34:06 -07002985 mirror::ArtMethod* clone = CreateProxyMethod(self, klass, prototype);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07002986 if (UNLIKELY(clone == nullptr)) {
Ian Rogersa436fde2013-08-27 23:34:06 -07002987 CHECK(self->IsExceptionPending()); // OOME.
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07002988 return nullptr;
Ian Rogersa436fde2013-08-27 23:34:06 -07002989 }
2990 klass->SetVirtualMethod(i, clone);
Jesse Wilson95caa792011-10-12 18:14:17 -04002991 }
Ian Rogersc2b44472011-12-14 21:17:17 -08002992
2993 klass->SetSuperClass(proxy_class); // The super class is java.lang.reflect.Proxy
Hiroshi Yamauchi5b783e62015-03-18 17:20:11 -07002994 mirror::Class::SetStatus(klass, mirror::Class::kStatusLoaded, self); // Now effectively in the loaded state.
Ian Rogers62d6c772013-02-27 08:32:07 -08002995 self->AssertNoPendingException();
Ian Rogersc2b44472011-12-14 21:17:17 -08002996
Mingyao Yang98d1cc82014-05-15 17:02:16 -07002997 std::string descriptor(GetDescriptorForProxy(klass.Get()));
2998 mirror::Class* new_class = nullptr;
Ian Rogersc8982582012-09-07 16:53:25 -07002999 {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07003000 // Must hold lock on object when resolved.
3001 ObjectLock<mirror::Class> resolution_lock(self, klass);
Ian Rogers7dfb28c2013-08-22 08:18:36 -07003002 // Link the fields and virtual methods, creating vtable and iftables
Mingyao Yang98d1cc82014-05-15 17:02:16 -07003003 Handle<mirror::ObjectArray<mirror::Class> > h_interfaces(
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003004 hs.NewHandle(soa.Decode<mirror::ObjectArray<mirror::Class>*>(interfaces)));
Mingyao Yang98d1cc82014-05-15 17:02:16 -07003005 if (!LinkClass(self, descriptor.c_str(), klass, h_interfaces, &new_class)) {
Hiroshi Yamauchi5b783e62015-03-18 17:20:11 -07003006 mirror::Class::SetStatus(klass, mirror::Class::kStatusError, self);
Mathieu Chartierc528dba2013-11-26 12:00:11 -08003007 return nullptr;
Ian Rogers7dfb28c2013-08-22 08:18:36 -07003008 }
Mingyao Yang98d1cc82014-05-15 17:02:16 -07003009 }
Ian Rogers7dfb28c2013-08-22 08:18:36 -07003010
Mingyao Yang98d1cc82014-05-15 17:02:16 -07003011 CHECK(klass->IsRetired());
3012 CHECK_NE(klass.Get(), new_class);
3013 klass.Assign(new_class);
3014
3015 CHECK_EQ(interfaces_sfield->GetDeclaringClass(), new_class);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07003016 interfaces_sfield->SetObject<false>(klass.Get(),
3017 soa.Decode<mirror::ObjectArray<mirror::Class>*>(interfaces));
Mingyao Yang98d1cc82014-05-15 17:02:16 -07003018 CHECK_EQ(throws_sfield->GetDeclaringClass(), new_class);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07003019 throws_sfield->SetObject<false>(klass.Get(),
3020 soa.Decode<mirror::ObjectArray<mirror::ObjectArray<mirror::Class> >*>(throws));
Mingyao Yang98d1cc82014-05-15 17:02:16 -07003021
3022 {
3023 // Lock on klass is released. Lock new class object.
3024 ObjectLock<mirror::Class> initialization_lock(self, klass);
Hiroshi Yamauchi5b783e62015-03-18 17:20:11 -07003025 mirror::Class::SetStatus(klass, mirror::Class::kStatusInitialized, self);
Ian Rogersc8982582012-09-07 16:53:25 -07003026 }
Ian Rogersc2b44472011-12-14 21:17:17 -08003027
3028 // sanity checks
Elliott Hughes67d92002012-03-26 15:08:51 -07003029 if (kIsDebugBuild) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003030 CHECK(klass->GetIFields() == nullptr);
Ian Rogersc2b44472011-12-14 21:17:17 -08003031 CheckProxyConstructor(klass->GetDirectMethod(0));
3032 for (size_t i = 0; i < num_virtual_methods; ++i) {
Andreas Gampe277ccbd2014-11-03 21:36:10 -08003033 StackHandleScope<2> hs2(self);
Mathieu Chartier590fee92013-09-13 13:46:47 -07003034 mirror::ObjectArray<mirror::ArtMethod>* decoded_methods =
3035 soa.Decode<mirror::ObjectArray<mirror::ArtMethod>*>(methods);
Andreas Gampe277ccbd2014-11-03 21:36:10 -08003036 Handle<mirror::ArtMethod> prototype(hs2.NewHandle(decoded_methods->Get(i)));
3037 Handle<mirror::ArtMethod> virtual_method(hs2.NewHandle(klass->GetVirtualMethod(i)));
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003038 CheckProxyMethod(virtual_method, prototype);
Ian Rogersc2b44472011-12-14 21:17:17 -08003039 }
Elliott Hughes2ed52c42012-03-21 16:56:56 -07003040
Mathieu Chartier590fee92013-09-13 13:46:47 -07003041 mirror::String* decoded_name = soa.Decode<mirror::String*>(name);
Elliott Hughes2ed52c42012-03-21 16:56:56 -07003042 std::string interfaces_field_name(StringPrintf("java.lang.Class[] %s.interfaces",
Mathieu Chartier590fee92013-09-13 13:46:47 -07003043 decoded_name->ToModifiedUtf8().c_str()));
Elliott Hughes2ed52c42012-03-21 16:56:56 -07003044 CHECK_EQ(PrettyField(klass->GetStaticField(0)), interfaces_field_name);
3045
3046 std::string throws_field_name(StringPrintf("java.lang.Class[][] %s.throws",
Mathieu Chartier590fee92013-09-13 13:46:47 -07003047 decoded_name->ToModifiedUtf8().c_str()));
Elliott Hughes2ed52c42012-03-21 16:56:56 -07003048 CHECK_EQ(PrettyField(klass->GetStaticField(1)), throws_field_name);
Ian Rogersc2b44472011-12-14 21:17:17 -08003049
Mingyao Yang98d1cc82014-05-15 17:02:16 -07003050 CHECK_EQ(klass.Get()->GetInterfaces(),
Brian Carlstromf3632832014-05-20 15:36:53 -07003051 soa.Decode<mirror::ObjectArray<mirror::Class>*>(interfaces));
Mingyao Yang98d1cc82014-05-15 17:02:16 -07003052 CHECK_EQ(klass.Get()->GetThrows(),
Brian Carlstromf3632832014-05-20 15:36:53 -07003053 soa.Decode<mirror::ObjectArray<mirror::ObjectArray<mirror::Class>>*>(throws));
Ian Rogersc2b44472011-12-14 21:17:17 -08003054 }
Mathieu Chartiere7c9a8c2014-11-06 16:35:45 -08003055 mirror::Class* existing = InsertClass(descriptor.c_str(), klass.Get(),
3056 ComputeModifiedUtf8Hash(descriptor.c_str()));
Mathieu Chartier31b9d662013-10-14 11:53:12 -07003057 CHECK(existing == nullptr);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003058 return klass.Get();
Jesse Wilson95caa792011-10-12 18:14:17 -04003059}
3060
Ian Rogersef7d42f2014-01-06 12:55:46 -08003061std::string ClassLinker::GetDescriptorForProxy(mirror::Class* proxy_class) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003062 DCHECK(proxy_class->IsProxyClass());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003063 mirror::String* name = proxy_class->GetName();
Andreas Gampe2ed8def2014-08-28 14:41:02 -07003064 DCHECK(name != nullptr);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003065 return DotToDescriptor(name->ToModifiedUtf8().c_str());
3066}
3067
Ian Rogersef7d42f2014-01-06 12:55:46 -08003068mirror::ArtMethod* ClassLinker::FindMethodForProxy(mirror::Class* proxy_class,
3069 mirror::ArtMethod* proxy_method) {
Ian Rogers16f93672012-02-14 12:29:06 -08003070 DCHECK(proxy_class->IsProxyClass());
3071 DCHECK(proxy_method->IsProxyMethod());
3072 // Locate the dex cache of the original interface/Object
Andreas Gampe58a5af82014-07-31 16:23:49 -07003073 mirror::DexCache* dex_cache = nullptr;
Ian Rogers16f93672012-02-14 12:29:06 -08003074 {
Ian Rogers1bf8d4d2013-05-30 00:18:49 -07003075 ReaderMutexLock mu(Thread::Current(), dex_lock_);
Ian Rogers16f93672012-02-14 12:29:06 -08003076 for (size_t i = 0; i != dex_caches_.size(); ++i) {
Hiroshi Yamauchie9e3e692014-06-24 14:31:37 -07003077 mirror::DexCache* a_dex_cache = GetDexCache(i);
Andreas Gampe58a5af82014-07-31 16:23:49 -07003078 if (proxy_method->HasSameDexCacheResolvedTypes(a_dex_cache->GetResolvedTypes())) {
Hiroshi Yamauchie9e3e692014-06-24 14:31:37 -07003079 dex_cache = a_dex_cache;
Ian Rogers16f93672012-02-14 12:29:06 -08003080 break;
3081 }
3082 }
3083 }
Andreas Gampe58a5af82014-07-31 16:23:49 -07003084 CHECK(dex_cache != nullptr);
Ian Rogers16f93672012-02-14 12:29:06 -08003085 uint32_t method_idx = proxy_method->GetDexMethodIndex();
Brian Carlstromea46f952013-07-30 01:26:50 -07003086 mirror::ArtMethod* resolved_method = dex_cache->GetResolvedMethod(method_idx);
Andreas Gampe58a5af82014-07-31 16:23:49 -07003087 CHECK(resolved_method != nullptr);
Ian Rogers16f93672012-02-14 12:29:06 -08003088 return resolved_method;
3089}
3090
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003091
Brian Carlstromea46f952013-07-30 01:26:50 -07003092mirror::ArtMethod* ClassLinker::CreateProxyConstructor(Thread* self,
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07003093 Handle<mirror::Class> klass,
Brian Carlstromea46f952013-07-30 01:26:50 -07003094 mirror::Class* proxy_class) {
Ian Rogers466bb252011-10-14 03:29:56 -07003095 // Create constructor for Proxy that must initialize h
Brian Carlstromea46f952013-07-30 01:26:50 -07003096 mirror::ObjectArray<mirror::ArtMethod>* proxy_direct_methods =
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003097 proxy_class->GetDirectMethods();
Brian Carlstromea46f952013-07-30 01:26:50 -07003098 CHECK_EQ(proxy_direct_methods->GetLength(), 16);
3099 mirror::ArtMethod* proxy_constructor = proxy_direct_methods->Get(2);
Sebastien Hertzae94e352014-08-27 15:32:56 +02003100 // Ensure constructor is in dex cache so that we can use the dex cache to look up the overridden
3101 // constructor method.
3102 proxy_class->GetDexCache()->SetResolvedMethod(proxy_constructor->GetDexMethodIndex(),
3103 proxy_constructor);
Jeff Haodb8a6642014-08-14 17:18:52 -07003104 // Clone the existing constructor of Proxy (our constructor would just invoke it so steal its
3105 // code_ too)
Jeff Haof0a3f092014-07-24 16:26:09 -07003106 mirror::ArtMethod* constructor = down_cast<mirror::ArtMethod*>(proxy_constructor->Clone(self));
3107 if (constructor == nullptr) {
Ian Rogersa436fde2013-08-27 23:34:06 -07003108 CHECK(self->IsExceptionPending()); // OOME.
Jeff Haof0a3f092014-07-24 16:26:09 -07003109 return nullptr;
Ian Rogersa436fde2013-08-27 23:34:06 -07003110 }
Ian Rogers466bb252011-10-14 03:29:56 -07003111 // Make this constructor public and fix the class to be our Proxy version
3112 constructor->SetAccessFlags((constructor->GetAccessFlags() & ~kAccProtected) | kAccPublic);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003113 constructor->SetDeclaringClass(klass.Get());
Ian Rogersc2b44472011-12-14 21:17:17 -08003114 return constructor;
3115}
3116
Brian Carlstromea46f952013-07-30 01:26:50 -07003117static void CheckProxyConstructor(mirror::ArtMethod* constructor)
Ian Rogersb726dcb2012-09-05 08:57:23 -07003118 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers466bb252011-10-14 03:29:56 -07003119 CHECK(constructor->IsConstructor());
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003120 CHECK_STREQ(constructor->GetName(), "<init>");
3121 CHECK_STREQ(constructor->GetSignature().ToString().c_str(),
3122 "(Ljava/lang/reflect/InvocationHandler;)V");
Ian Rogers466bb252011-10-14 03:29:56 -07003123 DCHECK(constructor->IsPublic());
Jesse Wilson95caa792011-10-12 18:14:17 -04003124}
3125
Mathieu Chartierc528dba2013-11-26 12:00:11 -08003126mirror::ArtMethod* ClassLinker::CreateProxyMethod(Thread* self,
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07003127 Handle<mirror::Class> klass,
3128 Handle<mirror::ArtMethod> prototype) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003129 // Ensure prototype is in dex cache so that we can use the dex cache to look up the overridden
3130 // prototype method
Ian Rogers16f93672012-02-14 12:29:06 -08003131 prototype->GetDeclaringClass()->GetDexCache()->SetResolvedMethod(prototype->GetDexMethodIndex(),
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003132 prototype.Get());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003133 // We steal everything from the prototype (such as DexCache, invoke stub, etc.) then specialize
Ian Rogers466bb252011-10-14 03:29:56 -07003134 // as necessary
Brian Carlstromea46f952013-07-30 01:26:50 -07003135 mirror::ArtMethod* method = down_cast<mirror::ArtMethod*>(prototype->Clone(self));
Andreas Gampe2ed8def2014-08-28 14:41:02 -07003136 if (UNLIKELY(method == nullptr)) {
Ian Rogersa436fde2013-08-27 23:34:06 -07003137 CHECK(self->IsExceptionPending()); // OOME.
Andreas Gampe2ed8def2014-08-28 14:41:02 -07003138 return nullptr;
Ian Rogersa436fde2013-08-27 23:34:06 -07003139 }
Ian Rogers466bb252011-10-14 03:29:56 -07003140
3141 // Set class to be the concrete proxy class and clear the abstract flag, modify exceptions to
3142 // the intersection of throw exceptions as defined in Proxy
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003143 method->SetDeclaringClass(klass.Get());
Ian Rogers466bb252011-10-14 03:29:56 -07003144 method->SetAccessFlags((method->GetAccessFlags() & ~kAccAbstract) | kAccFinal);
Jesse Wilson95caa792011-10-12 18:14:17 -04003145
Ian Rogers466bb252011-10-14 03:29:56 -07003146 // At runtime the method looks like a reference and argument saving method, clone the code
3147 // related parameters from this method.
Ian Rogersef7d42f2014-01-06 12:55:46 -08003148 method->SetEntryPointFromQuickCompiledCode(GetQuickProxyInvokeHandler());
Dragos Sbirlea08bf1962013-08-12 08:53:04 -07003149 method->SetEntryPointFromInterpreter(artInterpreterToCompiledCodeBridge);
Ian Rogers16f93672012-02-14 12:29:06 -08003150
Ian Rogersc2b44472011-12-14 21:17:17 -08003151 return method;
3152}
Jesse Wilson95caa792011-10-12 18:14:17 -04003153
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07003154static void CheckProxyMethod(Handle<mirror::ArtMethod> method,
3155 Handle<mirror::ArtMethod> prototype)
Ian Rogersb726dcb2012-09-05 08:57:23 -07003156 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers466bb252011-10-14 03:29:56 -07003157 // Basic sanity
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003158 CHECK(!prototype->IsFinal());
3159 CHECK(method->IsFinal());
3160 CHECK(!method->IsAbstract());
Ian Rogers19846512012-02-24 11:42:47 -08003161
3162 // The proxy method doesn't have its own dex cache or dex file and so it steals those of its
3163 // interface prototype. The exception to this are Constructors and the Class of the Proxy itself.
Andreas Gampe58a5af82014-07-31 16:23:49 -07003164 CHECK(prototype->HasSameDexCacheResolvedMethods(method.Get()));
3165 CHECK(prototype->HasSameDexCacheResolvedTypes(method.Get()));
Ian Rogers19846512012-02-24 11:42:47 -08003166 CHECK_EQ(prototype->GetDexMethodIndex(), method->GetDexMethodIndex());
3167
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003168 CHECK_STREQ(method->GetName(), prototype->GetName());
3169 CHECK_STREQ(method->GetShorty(), prototype->GetShorty());
Ian Rogers466bb252011-10-14 03:29:56 -07003170 // More complex sanity - via dex cache
Ian Rogersded66a02014-10-28 18:12:55 -07003171 CHECK_EQ(method->GetInterfaceMethodIfProxy()->GetReturnType(), prototype->GetReturnType());
Jesse Wilson95caa792011-10-12 18:14:17 -04003172}
3173
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07003174static bool CanWeInitializeClass(mirror::Class* klass, bool can_init_statics,
3175 bool can_init_parents)
3176 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Brian Carlstrom610e49f2013-11-04 17:07:22 -08003177 if (can_init_statics && can_init_parents) {
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07003178 return true;
3179 }
3180 if (!can_init_statics) {
3181 // Check if there's a class initializer.
Ian Rogersd91d6d62013-09-25 20:26:14 -07003182 mirror::ArtMethod* clinit = klass->FindClassInitializer();
Andreas Gampe2ed8def2014-08-28 14:41:02 -07003183 if (clinit != nullptr) {
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07003184 return false;
3185 }
3186 // Check if there are encoded static values needing initialization.
3187 if (klass->NumStaticFields() != 0) {
Mathieu Chartierf8322842014-05-16 10:59:25 -07003188 const DexFile::ClassDef* dex_class_def = klass->GetClassDef();
Andreas Gampe2ed8def2014-08-28 14:41:02 -07003189 DCHECK(dex_class_def != nullptr);
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07003190 if (dex_class_def->static_values_off_ != 0) {
3191 return false;
3192 }
3193 }
3194 }
3195 if (!klass->IsInterface() && klass->HasSuperClass()) {
3196 mirror::Class* super_class = klass->GetSuperClass();
3197 if (!can_init_parents && !super_class->IsInitialized()) {
3198 return false;
3199 } else {
Brian Carlstrom610e49f2013-11-04 17:07:22 -08003200 if (!CanWeInitializeClass(super_class, can_init_statics, can_init_parents)) {
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07003201 return false;
3202 }
3203 }
3204 }
3205 return true;
3206}
3207
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07003208bool ClassLinker::InitializeClass(Thread* self, Handle<mirror::Class> klass,
Ian Rogers7b078e82014-09-10 14:44:24 -07003209 bool can_init_statics, bool can_init_parents) {
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07003210 // see JLS 3rd edition, 12.4.2 "Detailed Initialization Procedure" for the locking protocol
3211
3212 // Are we already initialized and therefore done?
3213 // Note: we differ from the JLS here as we don't do this under the lock, this is benign as
3214 // an initialized class will never change its state.
3215 if (klass->IsInitialized()) {
3216 return true;
3217 }
3218
3219 // Fast fail if initialization requires a full runtime. Not part of the JLS.
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003220 if (!CanWeInitializeClass(klass.Get(), can_init_statics, can_init_parents)) {
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07003221 return false;
3222 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003223
Ian Rogers7b078e82014-09-10 14:44:24 -07003224 self->AllowThreadSuspension();
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07003225 uint64_t t0;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003226 {
Mathieu Chartierdb2633c2014-05-16 09:59:29 -07003227 ObjectLock<mirror::Class> lock(self, klass);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003228
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07003229 // Re-check under the lock in case another thread initialized ahead of us.
3230 if (klass->IsInitialized()) {
Brian Carlstromd1422f82011-09-28 11:37:09 -07003231 return true;
3232 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003233
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07003234 // Was the class already found to be erroneous? Done under the lock to match the JLS.
Brian Carlstromd1422f82011-09-28 11:37:09 -07003235 if (klass->IsErroneous()) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003236 ThrowEarlierClassFailure(klass.Get());
Brian Carlstromb23eab12014-10-08 17:55:21 -07003237 VlogClassInitializationFailure(klass);
Brian Carlstromd1422f82011-09-28 11:37:09 -07003238 return false;
3239 }
3240
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003241 CHECK(klass->IsResolved()) << PrettyClass(klass.Get()) << ": state=" << klass->GetStatus();
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07003242
3243 if (!klass->IsVerified()) {
Ian Rogers7b078e82014-09-10 14:44:24 -07003244 VerifyClass(self, klass);
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07003245 if (!klass->IsVerified()) {
3246 // We failed to verify, expect either the klass to be erroneous or verification failed at
3247 // compile time.
3248 if (klass->IsErroneous()) {
jeffhaoa9b3bf42012-06-06 17:18:39 -07003249 CHECK(self->IsExceptionPending());
Brian Carlstromb23eab12014-10-08 17:55:21 -07003250 VlogClassInitializationFailure(klass);
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07003251 } else {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08003252 CHECK(Runtime::Current()->IsAotCompiler());
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07003253 CHECK_EQ(klass->GetStatus(), mirror::Class::kStatusRetryVerificationAtRuntime);
jeffhaoa9b3bf42012-06-06 17:18:39 -07003254 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003255 return false;
Mathieu Chartier524507a2014-08-27 15:28:28 -07003256 } else {
3257 self->AssertNoPendingException();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003258 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003259 }
3260
Brian Carlstromd1422f82011-09-28 11:37:09 -07003261 // If the class is kStatusInitializing, either this thread is
3262 // initializing higher up the stack or another thread has beat us
3263 // to initializing and we need to wait. Either way, this
3264 // invocation of InitializeClass will not be responsible for
3265 // running <clinit> and will return.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003266 if (klass->GetStatus() == mirror::Class::kStatusInitializing) {
Mathieu Chartier524507a2014-08-27 15:28:28 -07003267 // Could have got an exception during verification.
3268 if (self->IsExceptionPending()) {
Brian Carlstromb23eab12014-10-08 17:55:21 -07003269 VlogClassInitializationFailure(klass);
Mathieu Chartier524507a2014-08-27 15:28:28 -07003270 return false;
3271 }
Elliott Hughes005ab2e2011-09-11 17:15:31 -07003272 // We caught somebody else in the act; was it us?
Elliott Hughesdcc24742011-09-07 14:02:44 -07003273 if (klass->GetClinitThreadId() == self->GetTid()) {
Brian Carlstromd1422f82011-09-28 11:37:09 -07003274 // Yes. That's fine. Return so we can continue initializing.
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003275 return true;
3276 }
Brian Carlstromd1422f82011-09-28 11:37:09 -07003277 // No. That's fine. Wait for another thread to finish initializing.
3278 return WaitForInitializeClass(klass, self, lock);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003279 }
3280
3281 if (!ValidateSuperClassDescriptors(klass)) {
Hiroshi Yamauchi5b783e62015-03-18 17:20:11 -07003282 mirror::Class::SetStatus(klass, mirror::Class::kStatusError, self);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003283 return false;
3284 }
Ian Rogers7b078e82014-09-10 14:44:24 -07003285 self->AllowThreadSuspension();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003286
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003287 CHECK_EQ(klass->GetStatus(), mirror::Class::kStatusVerified) << PrettyClass(klass.Get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003288
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07003289 // From here out other threads may observe that we're initializing and so changes of state
3290 // require the a notification.
Elliott Hughesdcc24742011-09-07 14:02:44 -07003291 klass->SetClinitThreadId(self->GetTid());
Hiroshi Yamauchi5b783e62015-03-18 17:20:11 -07003292 mirror::Class::SetStatus(klass, mirror::Class::kStatusInitializing, self);
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07003293
3294 t0 = NanoTime();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003295 }
3296
Brian Carlstrom6d3f72c2013-08-21 18:06:34 -07003297 // Initialize super classes, must be done while initializing for the JLS.
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07003298 if (!klass->IsInterface() && klass->HasSuperClass()) {
3299 mirror::Class* super_class = klass->GetSuperClass();
3300 if (!super_class->IsInitialized()) {
3301 CHECK(!super_class->IsInterface());
3302 CHECK(can_init_parents);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003303 StackHandleScope<1> hs(self);
3304 Handle<mirror::Class> handle_scope_super(hs.NewHandle(super_class));
Ian Rogers7b078e82014-09-10 14:44:24 -07003305 bool super_initialized = InitializeClass(self, handle_scope_super, can_init_statics, true);
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07003306 if (!super_initialized) {
3307 // The super class was verified ahead of entering initializing, we should only be here if
3308 // the super class became erroneous due to initialization.
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003309 CHECK(handle_scope_super->IsErroneous() && self->IsExceptionPending())
Brian Carlstromf3632832014-05-20 15:36:53 -07003310 << "Super class initialization failed for "
3311 << PrettyDescriptor(handle_scope_super.Get())
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003312 << " that has unexpected status " << handle_scope_super->GetStatus()
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07003313 << "\nPending exception:\n"
Nicolas Geoffray14691c52015-03-05 10:40:17 +00003314 << (self->GetException() != nullptr ? self->GetException()->Dump() : "");
Mathieu Chartierdb2633c2014-05-16 09:59:29 -07003315 ObjectLock<mirror::Class> lock(self, klass);
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07003316 // Initialization failed because the super-class is erroneous.
Hiroshi Yamauchi5b783e62015-03-18 17:20:11 -07003317 mirror::Class::SetStatus(klass, mirror::Class::kStatusError, self);
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07003318 return false;
3319 }
Ian Rogers1bddec32012-02-04 12:27:34 -08003320 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003321 }
3322
Mathieu Chartier05d89ee2014-10-28 13:57:04 -07003323 const size_t num_static_fields = klass->NumStaticFields();
3324 if (num_static_fields > 0) {
Mathieu Chartierf8322842014-05-16 10:59:25 -07003325 const DexFile::ClassDef* dex_class_def = klass->GetClassDef();
Andreas Gampe2ed8def2014-08-28 14:41:02 -07003326 CHECK(dex_class_def != nullptr);
Mathieu Chartierf8322842014-05-16 10:59:25 -07003327 const DexFile& dex_file = klass->GetDexFile();
Hiroshi Yamauchi67ef46a2014-08-21 15:59:43 -07003328 StackHandleScope<3> hs(self);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003329 Handle<mirror::ClassLoader> class_loader(hs.NewHandle(klass->GetClassLoader()));
Mathieu Chartierf8322842014-05-16 10:59:25 -07003330 Handle<mirror::DexCache> dex_cache(hs.NewHandle(klass->GetDexCache()));
Mathieu Chartier05d89ee2014-10-28 13:57:04 -07003331
3332 // Eagerly fill in static fields so that the we don't have to do as many expensive
3333 // Class::FindStaticField in ResolveField.
3334 for (size_t i = 0; i < num_static_fields; ++i) {
3335 mirror::ArtField* field = klass->GetStaticField(i);
3336 const uint32_t field_idx = field->GetDexFieldIndex();
3337 mirror::ArtField* resolved_field = dex_cache->GetResolvedField(field_idx);
3338 if (resolved_field == nullptr) {
3339 dex_cache->SetResolvedField(field_idx, field);
Mathieu Chartier9f3629d2014-10-28 18:23:02 -07003340 } else {
3341 DCHECK_EQ(field, resolved_field);
Mathieu Chartier05d89ee2014-10-28 13:57:04 -07003342 }
3343 }
3344
Hiroshi Yamauchi88500112014-08-22 12:12:56 -07003345 EncodedStaticFieldValueIterator value_it(dex_file, &dex_cache, &class_loader,
3346 this, *dex_class_def);
Ian Rogers13735952014-10-08 12:43:28 -07003347 const uint8_t* class_data = dex_file.GetClassData(*dex_class_def);
Hiroshi Yamauchi88500112014-08-22 12:12:56 -07003348 ClassDataItemIterator field_it(dex_file, class_data);
3349 if (value_it.HasNext()) {
3350 DCHECK(field_it.HasNextStaticField());
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07003351 CHECK(can_init_statics);
Hiroshi Yamauchi88500112014-08-22 12:12:56 -07003352 for ( ; value_it.HasNext(); value_it.Next(), field_it.Next()) {
Andreas Gampe277ccbd2014-11-03 21:36:10 -08003353 StackHandleScope<1> hs2(self);
3354 Handle<mirror::ArtField> field(hs2.NewHandle(
Hiroshi Yamauchi88500112014-08-22 12:12:56 -07003355 ResolveField(dex_file, field_it.GetMemberIndex(), dex_cache, class_loader, true)));
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01003356 if (Runtime::Current()->IsActiveTransaction()) {
Hiroshi Yamauchi88500112014-08-22 12:12:56 -07003357 value_it.ReadValueToField<true>(field);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01003358 } else {
Hiroshi Yamauchi88500112014-08-22 12:12:56 -07003359 value_it.ReadValueToField<false>(field);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01003360 }
Hiroshi Yamauchi88500112014-08-22 12:12:56 -07003361 DCHECK(!value_it.HasNext() || field_it.HasNextStaticField());
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07003362 }
3363 }
3364 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003365
Ian Rogersd91d6d62013-09-25 20:26:14 -07003366 mirror::ArtMethod* clinit = klass->FindClassInitializer();
Andreas Gampe2ed8def2014-08-28 14:41:02 -07003367 if (clinit != nullptr) {
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07003368 CHECK(can_init_statics);
Ian Rogers5d27faf2014-05-02 17:17:18 -07003369 JValue result;
Andreas Gampe2ed8def2014-08-28 14:41:02 -07003370 clinit->Invoke(self, nullptr, 0, &result, "V");
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003371 }
3372
Ian Rogers7b078e82014-09-10 14:44:24 -07003373 self->AllowThreadSuspension();
Elliott Hughes83df2ac2011-10-11 16:37:54 -07003374 uint64_t t1 = NanoTime();
3375
Ian Rogersbdfb1a52012-01-12 14:05:22 -08003376 bool success = true;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003377 {
Mathieu Chartierdb2633c2014-05-16 09:59:29 -07003378 ObjectLock<mirror::Class> lock(self, klass);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003379
3380 if (self->IsExceptionPending()) {
Brian Carlstromb23eab12014-10-08 17:55:21 -07003381 WrapExceptionInInitializer(klass);
Hiroshi Yamauchi5b783e62015-03-18 17:20:11 -07003382 mirror::Class::SetStatus(klass, mirror::Class::kStatusError, self);
Ian Rogersbdfb1a52012-01-12 14:05:22 -08003383 success = false;
Sebastien Hertz1c80bec2015-02-03 11:58:06 +01003384 } else if (Runtime::Current()->IsTransactionAborted()) {
3385 // The exception thrown when the transaction aborted has been caught and cleared
3386 // so we need to throw it again now.
Sebastien Hertzbd9cf9f2015-03-03 12:16:13 +01003387 VLOG(compiler) << "Return from class initializer of " << PrettyDescriptor(klass.Get())
3388 << " without exception while transaction was aborted: re-throw it now.";
Sebastien Hertz2fd7e692015-04-02 11:11:19 +02003389 Runtime::Current()->ThrowTransactionAbortError(self);
Hiroshi Yamauchi5b783e62015-03-18 17:20:11 -07003390 mirror::Class::SetStatus(klass, mirror::Class::kStatusError, self);
Sebastien Hertz1c80bec2015-02-03 11:58:06 +01003391 success = false;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003392 } else {
Elliott Hughes83df2ac2011-10-11 16:37:54 -07003393 RuntimeStats* global_stats = Runtime::Current()->GetStats();
3394 RuntimeStats* thread_stats = self->GetStats();
3395 ++global_stats->class_init_count;
3396 ++thread_stats->class_init_count;
3397 global_stats->class_init_time_ns += (t1 - t0);
3398 thread_stats->class_init_time_ns += (t1 - t0);
Ian Rogerse6bb3b22013-08-19 21:51:45 -07003399 // Set the class as initialized except if failed to initialize static fields.
Hiroshi Yamauchi5b783e62015-03-18 17:20:11 -07003400 mirror::Class::SetStatus(klass, mirror::Class::kStatusInitialized, self);
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07003401 if (VLOG_IS_ON(class_linker)) {
Ian Rogers1ff3c982014-08-12 02:30:58 -07003402 std::string temp;
3403 LOG(INFO) << "Initialized class " << klass->GetDescriptor(&temp) << " from " <<
Mathieu Chartierf8322842014-05-16 10:59:25 -07003404 klass->GetLocation();
Brian Carlstromae826982011-11-09 01:33:42 -08003405 }
Brian Carlstrom073278c2014-02-19 15:21:21 -08003406 // Opportunistically set static method trampolines to their destination.
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003407 FixupStaticTrampolines(klass.Get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003408 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003409 }
Ian Rogersbdfb1a52012-01-12 14:05:22 -08003410 return success;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003411}
3412
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07003413bool ClassLinker::WaitForInitializeClass(Handle<mirror::Class> klass, Thread* self,
Mathieu Chartierc528dba2013-11-26 12:00:11 -08003414 ObjectLock<mirror::Class>& lock)
Ian Rogersb726dcb2012-09-05 08:57:23 -07003415 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Brian Carlstromd1422f82011-09-28 11:37:09 -07003416 while (true) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003417 self->AssertNoPendingException();
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07003418 CHECK(!klass->IsInitialized());
Ian Rogers05f30572013-02-20 12:13:11 -08003419 lock.WaitIgnoringInterrupts();
Brian Carlstromd1422f82011-09-28 11:37:09 -07003420
3421 // When we wake up, repeat the test for init-in-progress. If
3422 // there's an exception pending (only possible if
Brian Carlstromb23eab12014-10-08 17:55:21 -07003423 // we were not using WaitIgnoringInterrupts), bail out.
Brian Carlstromd1422f82011-09-28 11:37:09 -07003424 if (self->IsExceptionPending()) {
Brian Carlstromb23eab12014-10-08 17:55:21 -07003425 WrapExceptionInInitializer(klass);
Hiroshi Yamauchi5b783e62015-03-18 17:20:11 -07003426 mirror::Class::SetStatus(klass, mirror::Class::kStatusError, self);
Brian Carlstromd1422f82011-09-28 11:37:09 -07003427 return false;
3428 }
3429 // Spurious wakeup? Go back to waiting.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003430 if (klass->GetStatus() == mirror::Class::kStatusInitializing) {
Brian Carlstromd1422f82011-09-28 11:37:09 -07003431 continue;
3432 }
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08003433 if (klass->GetStatus() == mirror::Class::kStatusVerified &&
3434 Runtime::Current()->IsAotCompiler()) {
Ian Rogers3d1548d2012-09-24 14:08:03 -07003435 // Compile time initialization failed.
3436 return false;
3437 }
Brian Carlstromd1422f82011-09-28 11:37:09 -07003438 if (klass->IsErroneous()) {
3439 // The caller wants an exception, but it was thrown in a
3440 // different thread. Synthesize one here.
Brian Carlstromdf143242011-10-10 18:05:34 -07003441 ThrowNoClassDefFoundError("<clinit> failed for class %s; see exception in other thread",
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003442 PrettyDescriptor(klass.Get()).c_str());
Brian Carlstromb23eab12014-10-08 17:55:21 -07003443 VlogClassInitializationFailure(klass);
Brian Carlstromd1422f82011-09-28 11:37:09 -07003444 return false;
3445 }
3446 if (klass->IsInitialized()) {
3447 return true;
3448 }
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003449 LOG(FATAL) << "Unexpected class status. " << PrettyClass(klass.Get()) << " is "
Mathieu Chartierc528dba2013-11-26 12:00:11 -08003450 << klass->GetStatus();
Brian Carlstromd1422f82011-09-28 11:37:09 -07003451 }
Ian Rogers07140832014-09-30 15:43:59 -07003452 UNREACHABLE();
Brian Carlstromd1422f82011-09-28 11:37:09 -07003453}
3454
Ian Rogersb5fb2072014-12-02 17:22:02 -08003455static bool HasSameSignatureWithDifferentClassLoaders(Thread* self,
3456 Handle<mirror::ArtMethod> method1,
Andreas Gamped8ca52e2015-02-13 15:23:18 -08003457 Handle<mirror::ArtMethod> method2,
3458 std::string* error_msg)
Ian Rogersb5fb2072014-12-02 17:22:02 -08003459 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
3460 {
3461 StackHandleScope<1> hs(self);
3462 Handle<mirror::Class> return_type(hs.NewHandle(method1->GetReturnType()));
Vladimir Marko862f43c2015-02-10 18:22:57 +00003463 mirror::Class* other_return_type = method2->GetReturnType();
3464 // NOTE: return_type.Get() must be sequenced after method2->GetReturnType().
3465 if (UNLIKELY(other_return_type != return_type.Get())) {
Andreas Gamped8ca52e2015-02-13 15:23:18 -08003466 *error_msg = StringPrintf("Return types mismatch: %s(%p) vs %s(%p)",
3467 PrettyClassAndClassLoader(return_type.Get()).c_str(),
3468 return_type.Get(),
3469 PrettyClassAndClassLoader(other_return_type).c_str(),
3470 other_return_type);
Ian Rogersb5fb2072014-12-02 17:22:02 -08003471 return false;
3472 }
3473 }
3474 const DexFile::TypeList* types1 = method1->GetParameterTypeList();
3475 const DexFile::TypeList* types2 = method2->GetParameterTypeList();
3476 if (types1 == nullptr) {
Andreas Gamped8ca52e2015-02-13 15:23:18 -08003477 if (types2 != nullptr && types2->Size() != 0) {
3478 *error_msg = StringPrintf("Type list mismatch with %s",
3479 PrettyMethod(method2.Get(), true).c_str());
3480 return false;
3481 }
3482 return true;
Ian Rogersb5fb2072014-12-02 17:22:02 -08003483 } else if (UNLIKELY(types2 == nullptr)) {
Andreas Gamped8ca52e2015-02-13 15:23:18 -08003484 if (types1->Size() != 0) {
3485 *error_msg = StringPrintf("Type list mismatch with %s",
3486 PrettyMethod(method2.Get(), true).c_str());
3487 return false;
3488 }
3489 return true;
Ian Rogersb5fb2072014-12-02 17:22:02 -08003490 }
3491 uint32_t num_types = types1->Size();
3492 if (UNLIKELY(num_types != types2->Size())) {
Andreas Gamped8ca52e2015-02-13 15:23:18 -08003493 *error_msg = StringPrintf("Type list mismatch with %s",
3494 PrettyMethod(method2.Get(), true).c_str());
Ian Rogersb5fb2072014-12-02 17:22:02 -08003495 return false;
3496 }
3497 for (uint32_t i = 0; i < num_types; ++i) {
Vladimir Marko862f43c2015-02-10 18:22:57 +00003498 StackHandleScope<1> hs(self);
3499 Handle<mirror::Class> param_type(hs.NewHandle(
3500 method1->GetClassFromTypeIndex(types1->GetTypeItem(i).type_idx_, true)));
Ian Rogersb5fb2072014-12-02 17:22:02 -08003501 mirror::Class* other_param_type =
3502 method2->GetClassFromTypeIndex(types2->GetTypeItem(i).type_idx_, true);
Vladimir Marko862f43c2015-02-10 18:22:57 +00003503 // NOTE: param_type.Get() must be sequenced after method2->GetClassFromTypeIndex(...).
3504 if (UNLIKELY(param_type.Get() != other_param_type)) {
Andreas Gamped8ca52e2015-02-13 15:23:18 -08003505 *error_msg = StringPrintf("Parameter %u type mismatch: %s(%p) vs %s(%p)",
3506 i,
3507 PrettyClassAndClassLoader(param_type.Get()).c_str(),
3508 param_type.Get(),
3509 PrettyClassAndClassLoader(other_param_type).c_str(),
3510 other_param_type);
Ian Rogersb5fb2072014-12-02 17:22:02 -08003511 return false;
3512 }
3513 }
3514 return true;
3515}
3516
3517
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07003518bool ClassLinker::ValidateSuperClassDescriptors(Handle<mirror::Class> klass) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003519 if (klass->IsInterface()) {
3520 return true;
3521 }
Ian Rogers151f2212014-05-06 11:27:27 -07003522 // Begin with the methods local to the superclass.
Ian Rogersded66a02014-10-28 18:12:55 -07003523 Thread* self = Thread::Current();
3524 StackHandleScope<2> hs(self);
Ian Rogersb5fb2072014-12-02 17:22:02 -08003525 MutableHandle<mirror::ArtMethod> h_m(hs.NewHandle<mirror::ArtMethod>(nullptr));
3526 MutableHandle<mirror::ArtMethod> super_h_m(hs.NewHandle<mirror::ArtMethod>(nullptr));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003527 if (klass->HasSuperClass() &&
3528 klass->GetClassLoader() != klass->GetSuperClass()->GetClassLoader()) {
Mingyao Yang2cdbad72014-07-16 10:44:41 -07003529 for (int i = klass->GetSuperClass()->GetVTableLength() - 1; i >= 0; --i) {
Ian Rogersb5fb2072014-12-02 17:22:02 -08003530 h_m.Assign(klass->GetVTableEntry(i));
3531 super_h_m.Assign(klass->GetSuperClass()->GetVTableEntry(i));
Andreas Gamped8ca52e2015-02-13 15:23:18 -08003532 if (h_m.Get() != super_h_m.Get()) {
3533 std::string error_msg;
3534 if (!HasSameSignatureWithDifferentClassLoaders(self, h_m, super_h_m, &error_msg)) {
3535 ThrowLinkageError(klass.Get(),
3536 "Class %s method %s resolves differently in superclass %s: %s",
3537 PrettyDescriptor(klass.Get()).c_str(),
3538 PrettyMethod(h_m.Get()).c_str(),
3539 PrettyDescriptor(klass->GetSuperClass()).c_str(),
3540 error_msg.c_str());
3541 return false;
3542 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003543 }
3544 }
3545 }
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07003546 for (int32_t i = 0; i < klass->GetIfTableCount(); ++i) {
Ian Rogers151f2212014-05-06 11:27:27 -07003547 if (klass->GetClassLoader() != klass->GetIfTable()->GetInterface(i)->GetClassLoader()) {
3548 uint32_t num_methods = klass->GetIfTable()->GetInterface(i)->NumVirtualMethods();
3549 for (uint32_t j = 0; j < num_methods; ++j) {
Ian Rogersb5fb2072014-12-02 17:22:02 -08003550 h_m.Assign(klass->GetIfTable()->GetMethodArray(i)->GetWithoutChecks(j));
3551 super_h_m.Assign(klass->GetIfTable()->GetInterface(i)->GetVirtualMethod(j));
Andreas Gamped8ca52e2015-02-13 15:23:18 -08003552 if (h_m.Get() != super_h_m.Get()) {
3553 std::string error_msg;
3554 if (!HasSameSignatureWithDifferentClassLoaders(self, h_m, super_h_m, &error_msg)) {
3555 ThrowLinkageError(klass.Get(),
3556 "Class %s method %s resolves differently in interface %s: %s",
3557 PrettyDescriptor(klass.Get()).c_str(),
3558 PrettyMethod(h_m.Get()).c_str(),
3559 PrettyDescriptor(klass->GetIfTable()->GetInterface(i)).c_str(),
3560 error_msg.c_str());
3561 return false;
3562 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003563 }
3564 }
3565 }
3566 }
3567 return true;
3568}
3569
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07003570bool ClassLinker::EnsureInitialized(Thread* self, Handle<mirror::Class> c, bool can_init_fields,
3571 bool can_init_parents) {
Mathieu Chartier0cd81352014-05-22 16:48:55 -07003572 DCHECK(c.Get() != nullptr);
Mathieu Chartier524507a2014-08-27 15:28:28 -07003573 if (c->IsInitialized()) {
Andreas Gampe48498592014-09-10 19:48:05 -07003574 EnsurePreverifiedMethods(c);
Mathieu Chartier524507a2014-08-27 15:28:28 -07003575 return true;
3576 }
Ian Rogers7b078e82014-09-10 14:44:24 -07003577 const bool success = InitializeClass(self, c, can_init_fields, can_init_parents);
Mathieu Chartier524507a2014-08-27 15:28:28 -07003578 if (!success) {
3579 if (can_init_fields && can_init_parents) {
3580 CHECK(self->IsExceptionPending()) << PrettyClass(c.Get());
3581 }
3582 } else {
3583 self->AssertNoPendingException();
Ian Rogers595799e2012-01-11 17:32:51 -08003584 }
3585 return success;
Elliott Hughesf4c21c92011-08-19 17:31:31 -07003586}
3587
Mingyao Yang98d1cc82014-05-15 17:02:16 -07003588void ClassLinker::FixupTemporaryDeclaringClass(mirror::Class* temp_class, mirror::Class* new_class) {
3589 mirror::ObjectArray<mirror::ArtField>* fields = new_class->GetIFields();
3590 if (fields != nullptr) {
3591 for (int index = 0; index < fields->GetLength(); index ++) {
3592 if (fields->Get(index)->GetDeclaringClass() == temp_class) {
3593 fields->Get(index)->SetDeclaringClass(new_class);
3594 }
3595 }
3596 }
3597
3598 fields = new_class->GetSFields();
3599 if (fields != nullptr) {
3600 for (int index = 0; index < fields->GetLength(); index ++) {
3601 if (fields->Get(index)->GetDeclaringClass() == temp_class) {
3602 fields->Get(index)->SetDeclaringClass(new_class);
3603 }
3604 }
3605 }
3606
3607 mirror::ObjectArray<mirror::ArtMethod>* methods = new_class->GetDirectMethods();
3608 if (methods != nullptr) {
3609 for (int index = 0; index < methods->GetLength(); index ++) {
3610 if (methods->Get(index)->GetDeclaringClass() == temp_class) {
3611 methods->Get(index)->SetDeclaringClass(new_class);
3612 }
3613 }
3614 }
3615
3616 methods = new_class->GetVirtualMethods();
3617 if (methods != nullptr) {
3618 for (int index = 0; index < methods->GetLength(); index ++) {
3619 if (methods->Get(index)->GetDeclaringClass() == temp_class) {
3620 methods->Get(index)->SetDeclaringClass(new_class);
3621 }
3622 }
3623 }
3624}
3625
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07003626bool ClassLinker::LinkClass(Thread* self, const char* descriptor, Handle<mirror::Class> klass,
3627 Handle<mirror::ObjectArray<mirror::Class>> interfaces,
Mingyao Yang98d1cc82014-05-15 17:02:16 -07003628 mirror::Class** new_class) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003629 CHECK_EQ(mirror::Class::kStatusLoaded, klass->GetStatus());
Mingyao Yang98d1cc82014-05-15 17:02:16 -07003630
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003631 if (!LinkSuperClass(klass)) {
3632 return false;
3633 }
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07003634 StackHandleScope<mirror::Class::kImtSize> imt_handle_scope(
3635 self, Runtime::Current()->GetImtUnimplementedMethod());
3636 if (!LinkMethods(self, klass, interfaces, &imt_handle_scope)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003637 return false;
3638 }
Ian Rogers7b078e82014-09-10 14:44:24 -07003639 if (!LinkInstanceFields(self, klass)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003640 return false;
3641 }
Mingyao Yang98d1cc82014-05-15 17:02:16 -07003642 size_t class_size;
Ian Rogers7b078e82014-09-10 14:44:24 -07003643 if (!LinkStaticFields(self, klass, &class_size)) {
Brian Carlstrom4873d462011-08-21 15:23:39 -07003644 return false;
3645 }
3646 CreateReferenceInstanceOffsets(klass);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003647 CHECK_EQ(mirror::Class::kStatusLoaded, klass->GetStatus());
Mingyao Yang98d1cc82014-05-15 17:02:16 -07003648
3649 if (!klass->IsTemp() || (!init_done_ && klass->GetClassSize() == class_size)) {
3650 // We don't need to retire this class as it has no embedded tables or it was created the
3651 // correct size during class linker initialization.
3652 CHECK_EQ(klass->GetClassSize(), class_size) << PrettyDescriptor(klass.Get());
3653
3654 if (klass->ShouldHaveEmbeddedImtAndVTable()) {
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07003655 klass->PopulateEmbeddedImtAndVTable(&imt_handle_scope);
Mingyao Yang98d1cc82014-05-15 17:02:16 -07003656 }
3657
3658 // This will notify waiters on klass that saw the not yet resolved
3659 // class in the class_table_ during EnsureResolved.
Hiroshi Yamauchi5b783e62015-03-18 17:20:11 -07003660 mirror::Class::SetStatus(klass, mirror::Class::kStatusResolved, self);
Mingyao Yang98d1cc82014-05-15 17:02:16 -07003661 *new_class = klass.Get();
3662 } else {
3663 CHECK(!klass->IsResolved());
3664 // Retire the temporary class and create the correctly sized resolved class.
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07003665 *new_class = klass->CopyOf(self, class_size, &imt_handle_scope);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07003666 if (UNLIKELY(*new_class == nullptr)) {
Mingyao Yang98d1cc82014-05-15 17:02:16 -07003667 CHECK(self->IsExceptionPending()); // Expect an OOME.
Hiroshi Yamauchi5b783e62015-03-18 17:20:11 -07003668 mirror::Class::SetStatus(klass, mirror::Class::kStatusError, self);
Mingyao Yang98d1cc82014-05-15 17:02:16 -07003669 return false;
3670 }
3671
3672 CHECK_EQ((*new_class)->GetClassSize(), class_size);
3673 StackHandleScope<1> hs(self);
3674 auto new_class_h = hs.NewHandleWrapper<mirror::Class>(new_class);
3675 ObjectLock<mirror::Class> lock(self, new_class_h);
3676
3677 FixupTemporaryDeclaringClass(klass.Get(), new_class_h.Get());
3678
Mathieu Chartiere7c9a8c2014-11-06 16:35:45 -08003679 mirror::Class* existing = UpdateClass(descriptor, new_class_h.Get(),
3680 ComputeModifiedUtf8Hash(descriptor));
Andreas Gampe2ed8def2014-08-28 14:41:02 -07003681 CHECK(existing == nullptr || existing == klass.Get());
Mingyao Yang98d1cc82014-05-15 17:02:16 -07003682
3683 // This will notify waiters on temp class that saw the not yet resolved class in the
3684 // class_table_ during EnsureResolved.
Hiroshi Yamauchi5b783e62015-03-18 17:20:11 -07003685 mirror::Class::SetStatus(klass, mirror::Class::kStatusRetired, self);
Mingyao Yang98d1cc82014-05-15 17:02:16 -07003686
3687 CHECK_EQ(new_class_h->GetStatus(), mirror::Class::kStatusResolving);
3688 // This will notify waiters on new_class that saw the not yet resolved
3689 // class in the class_table_ during EnsureResolved.
Hiroshi Yamauchi5b783e62015-03-18 17:20:11 -07003690 mirror::Class::SetStatus(new_class_h, mirror::Class::kStatusResolved, self);
Mingyao Yang98d1cc82014-05-15 17:02:16 -07003691 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003692 return true;
3693}
3694
Andreas Gampefd9eb392014-11-06 16:52:58 -08003695static void CountMethodsAndFields(ClassDataItemIterator& dex_data,
3696 size_t* virtual_methods,
3697 size_t* direct_methods,
3698 size_t* static_fields,
3699 size_t* instance_fields) {
3700 *virtual_methods = *direct_methods = *static_fields = *instance_fields = 0;
3701
3702 while (dex_data.HasNextStaticField()) {
3703 dex_data.Next();
3704 (*static_fields)++;
3705 }
3706 while (dex_data.HasNextInstanceField()) {
3707 dex_data.Next();
3708 (*instance_fields)++;
3709 }
3710 while (dex_data.HasNextDirectMethod()) {
3711 (*direct_methods)++;
3712 dex_data.Next();
3713 }
3714 while (dex_data.HasNextVirtualMethod()) {
3715 (*virtual_methods)++;
3716 dex_data.Next();
3717 }
3718 DCHECK(!dex_data.HasNext());
3719}
3720
3721static void DumpClass(std::ostream& os,
3722 const DexFile& dex_file, const DexFile::ClassDef& dex_class_def,
3723 const char* suffix) {
3724 ClassDataItemIterator dex_data(dex_file, dex_file.GetClassData(dex_class_def));
3725 os << dex_file.GetClassDescriptor(dex_class_def) << suffix << ":\n";
3726 os << " Static fields:\n";
3727 while (dex_data.HasNextStaticField()) {
3728 const DexFile::FieldId& id = dex_file.GetFieldId(dex_data.GetMemberIndex());
3729 os << " " << dex_file.GetFieldTypeDescriptor(id) << " " << dex_file.GetFieldName(id) << "\n";
3730 dex_data.Next();
3731 }
3732 os << " Instance fields:\n";
3733 while (dex_data.HasNextInstanceField()) {
3734 const DexFile::FieldId& id = dex_file.GetFieldId(dex_data.GetMemberIndex());
3735 os << " " << dex_file.GetFieldTypeDescriptor(id) << " " << dex_file.GetFieldName(id) << "\n";
3736 dex_data.Next();
3737 }
3738 os << " Direct methods:\n";
3739 while (dex_data.HasNextDirectMethod()) {
3740 const DexFile::MethodId& id = dex_file.GetMethodId(dex_data.GetMemberIndex());
3741 os << " " << dex_file.GetMethodName(id) << dex_file.GetMethodSignature(id).ToString() << "\n";
3742 dex_data.Next();
3743 }
3744 os << " Virtual methods:\n";
3745 while (dex_data.HasNextVirtualMethod()) {
3746 const DexFile::MethodId& id = dex_file.GetMethodId(dex_data.GetMemberIndex());
3747 os << " " << dex_file.GetMethodName(id) << dex_file.GetMethodSignature(id).ToString() << "\n";
3748 dex_data.Next();
3749 }
3750}
3751
3752static std::string DumpClasses(const DexFile& dex_file1, const DexFile::ClassDef& dex_class_def1,
3753 const DexFile& dex_file2, const DexFile::ClassDef& dex_class_def2) {
3754 std::ostringstream os;
3755 DumpClass(os, dex_file1, dex_class_def1, " (Compile time)");
3756 DumpClass(os, dex_file2, dex_class_def2, " (Runtime)");
3757 return os.str();
3758}
3759
3760
3761// Very simple structural check on whether the classes match. Only compares the number of
3762// methods and fields.
3763static bool SimpleStructuralCheck(const DexFile& dex_file1, const DexFile::ClassDef& dex_class_def1,
3764 const DexFile& dex_file2, const DexFile::ClassDef& dex_class_def2,
3765 std::string* error_msg) {
3766 ClassDataItemIterator dex_data1(dex_file1, dex_file1.GetClassData(dex_class_def1));
3767 ClassDataItemIterator dex_data2(dex_file2, dex_file2.GetClassData(dex_class_def2));
3768
3769 // Counters for current dex file.
3770 size_t dex_virtual_methods1, dex_direct_methods1, dex_static_fields1, dex_instance_fields1;
3771 CountMethodsAndFields(dex_data1, &dex_virtual_methods1, &dex_direct_methods1, &dex_static_fields1,
3772 &dex_instance_fields1);
3773 // Counters for compile-time dex file.
3774 size_t dex_virtual_methods2, dex_direct_methods2, dex_static_fields2, dex_instance_fields2;
3775 CountMethodsAndFields(dex_data2, &dex_virtual_methods2, &dex_direct_methods2, &dex_static_fields2,
3776 &dex_instance_fields2);
3777
3778 if (dex_virtual_methods1 != dex_virtual_methods2) {
3779 std::string class_dump = DumpClasses(dex_file1, dex_class_def1, dex_file2, dex_class_def2);
3780 *error_msg = StringPrintf("Virtual method count off: %zu vs %zu\n%s", dex_virtual_methods1,
3781 dex_virtual_methods2, class_dump.c_str());
3782 return false;
3783 }
3784 if (dex_direct_methods1 != dex_direct_methods2) {
3785 std::string class_dump = DumpClasses(dex_file1, dex_class_def1, dex_file2, dex_class_def2);
3786 *error_msg = StringPrintf("Direct method count off: %zu vs %zu\n%s", dex_direct_methods1,
3787 dex_direct_methods2, class_dump.c_str());
3788 return false;
3789 }
3790 if (dex_static_fields1 != dex_static_fields2) {
3791 std::string class_dump = DumpClasses(dex_file1, dex_class_def1, dex_file2, dex_class_def2);
3792 *error_msg = StringPrintf("Static field count off: %zu vs %zu\n%s", dex_static_fields1,
3793 dex_static_fields2, class_dump.c_str());
3794 return false;
3795 }
3796 if (dex_instance_fields1 != dex_instance_fields2) {
3797 std::string class_dump = DumpClasses(dex_file1, dex_class_def1, dex_file2, dex_class_def2);
3798 *error_msg = StringPrintf("Instance field count off: %zu vs %zu\n%s", dex_instance_fields1,
3799 dex_instance_fields2, class_dump.c_str());
3800 return false;
3801 }
3802
3803 return true;
3804}
3805
3806// Checks whether a the super-class changed from what we had at compile-time. This would
3807// invalidate quickening.
3808static bool CheckSuperClassChange(Handle<mirror::Class> klass,
3809 const DexFile& dex_file,
3810 const DexFile::ClassDef& class_def,
3811 mirror::Class* super_class)
3812 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
3813 // Check for unexpected changes in the superclass.
3814 // Quick check 1) is the super_class class-loader the boot class loader? This always has
3815 // precedence.
3816 if (super_class->GetClassLoader() != nullptr &&
3817 // Quick check 2) different dex cache? Breaks can only occur for different dex files,
3818 // which is implied by different dex cache.
3819 klass->GetDexCache() != super_class->GetDexCache()) {
3820 // Now comes the expensive part: things can be broken if (a) the klass' dex file has a
3821 // definition for the super-class, and (b) the files are in separate oat files. The oat files
3822 // are referenced from the dex file, so do (b) first. Only relevant if we have oat files.
Richard Uhler07b3c232015-03-31 15:57:54 -07003823 const OatDexFile* class_oat_dex_file = dex_file.GetOatDexFile();
3824 const OatFile* class_oat_file = nullptr;
3825 if (class_oat_dex_file != nullptr) {
3826 class_oat_file = class_oat_dex_file->GetOatFile();
3827 }
3828
Andreas Gampefd9eb392014-11-06 16:52:58 -08003829 if (class_oat_file != nullptr) {
Richard Uhler07b3c232015-03-31 15:57:54 -07003830 const OatDexFile* loaded_super_oat_dex_file = super_class->GetDexFile().GetOatDexFile();
3831 const OatFile* loaded_super_oat_file = nullptr;
3832 if (loaded_super_oat_dex_file != nullptr) {
3833 loaded_super_oat_file = loaded_super_oat_dex_file->GetOatFile();
3834 }
3835
Andreas Gampefd9eb392014-11-06 16:52:58 -08003836 if (loaded_super_oat_file != nullptr && class_oat_file != loaded_super_oat_file) {
3837 // Now check (a).
3838 const DexFile::ClassDef* super_class_def = dex_file.FindClassDef(class_def.superclass_idx_);
3839 if (super_class_def != nullptr) {
3840 // Uh-oh, we found something. Do our check.
3841 std::string error_msg;
3842 if (!SimpleStructuralCheck(dex_file, *super_class_def,
3843 super_class->GetDexFile(), *super_class->GetClassDef(),
3844 &error_msg)) {
3845 // Print a warning to the log. This exception might be caught, e.g., as common in test
3846 // drivers. When the class is later tried to be used, we re-throw a new instance, as we
3847 // only save the type of the exception.
3848 LOG(WARNING) << "Incompatible structural change detected: " <<
3849 StringPrintf(
3850 "Structural change of %s is hazardous (%s at compile time, %s at runtime): %s",
3851 PrettyType(super_class_def->class_idx_, dex_file).c_str(),
3852 class_oat_file->GetLocation().c_str(),
3853 loaded_super_oat_file->GetLocation().c_str(),
3854 error_msg.c_str());
3855 ThrowIncompatibleClassChangeError(klass.Get(),
3856 "Structural change of %s is hazardous (%s at compile time, %s at runtime): %s",
3857 PrettyType(super_class_def->class_idx_, dex_file).c_str(),
3858 class_oat_file->GetLocation().c_str(),
3859 loaded_super_oat_file->GetLocation().c_str(),
3860 error_msg.c_str());
3861 return false;
3862 }
3863 }
3864 }
3865 }
3866 }
3867 return true;
3868}
3869
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07003870bool ClassLinker::LoadSuperAndInterfaces(Handle<mirror::Class> klass, const DexFile& dex_file) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003871 CHECK_EQ(mirror::Class::kStatusIdx, klass->GetStatus());
Ian Rogers8b2c0b92013-09-19 02:56:49 -07003872 const DexFile::ClassDef& class_def = dex_file.GetClassDef(klass->GetDexClassDefIndex());
3873 uint16_t super_class_idx = class_def.superclass_idx_;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003874 if (super_class_idx != DexFile::kDexNoIndex16) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003875 mirror::Class* super_class = ResolveType(dex_file, super_class_idx, klass.Get());
Andreas Gampe2ed8def2014-08-28 14:41:02 -07003876 if (super_class == nullptr) {
Brian Carlstrom65ca0772011-09-24 16:03:08 -07003877 DCHECK(Thread::Current()->IsExceptionPending());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003878 return false;
3879 }
Ian Rogersbe125a92012-01-11 15:19:49 -08003880 // Verify
3881 if (!klass->CanAccess(super_class)) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003882 ThrowIllegalAccessError(klass.Get(), "Class %s extended by class %s is inaccessible",
Ian Rogers62d6c772013-02-27 08:32:07 -08003883 PrettyDescriptor(super_class).c_str(),
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003884 PrettyDescriptor(klass.Get()).c_str());
Ian Rogersbe125a92012-01-11 15:19:49 -08003885 return false;
3886 }
Mingyao Yang98d1cc82014-05-15 17:02:16 -07003887 CHECK(super_class->IsResolved());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003888 klass->SetSuperClass(super_class);
Andreas Gampefd9eb392014-11-06 16:52:58 -08003889
3890 if (!CheckSuperClassChange(klass, dex_file, class_def, super_class)) {
3891 DCHECK(Thread::Current()->IsExceptionPending());
3892 return false;
3893 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003894 }
Ian Rogers8b2c0b92013-09-19 02:56:49 -07003895 const DexFile::TypeList* interfaces = dex_file.GetInterfacesList(class_def);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07003896 if (interfaces != nullptr) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003897 for (size_t i = 0; i < interfaces->Size(); i++) {
3898 uint16_t idx = interfaces->GetTypeItem(i).type_idx_;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003899 mirror::Class* interface = ResolveType(dex_file, idx, klass.Get());
Andreas Gampe2ed8def2014-08-28 14:41:02 -07003900 if (interface == nullptr) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003901 DCHECK(Thread::Current()->IsExceptionPending());
3902 return false;
3903 }
3904 // Verify
3905 if (!klass->CanAccess(interface)) {
3906 // TODO: the RI seemed to ignore this in my testing.
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003907 ThrowIllegalAccessError(klass.Get(), "Interface %s implemented by class %s is inaccessible",
Ian Rogers62d6c772013-02-27 08:32:07 -08003908 PrettyDescriptor(interface).c_str(),
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003909 PrettyDescriptor(klass.Get()).c_str());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003910 return false;
3911 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003912 }
3913 }
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07003914 // Mark the class as loaded.
Hiroshi Yamauchi5b783e62015-03-18 17:20:11 -07003915 mirror::Class::SetStatus(klass, mirror::Class::kStatusLoaded, nullptr);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003916 return true;
3917}
3918
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07003919bool ClassLinker::LinkSuperClass(Handle<mirror::Class> klass) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003920 CHECK(!klass->IsPrimitive());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003921 mirror::Class* super = klass->GetSuperClass();
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003922 if (klass.Get() == GetClassRoot(kJavaLangObject)) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07003923 if (super != nullptr) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003924 ThrowClassFormatError(klass.Get(), "java.lang.Object must not have a superclass");
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003925 return false;
3926 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003927 return true;
3928 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -07003929 if (super == nullptr) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003930 ThrowLinkageError(klass.Get(), "No superclass defined for class %s",
3931 PrettyDescriptor(klass.Get()).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003932 return false;
3933 }
3934 // Verify
Elliott Hughes4a2b4172011-09-20 17:08:25 -07003935 if (super->IsFinal() || super->IsInterface()) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003936 ThrowIncompatibleClassChangeError(klass.Get(), "Superclass %s of %s is %s",
Ian Rogers62d6c772013-02-27 08:32:07 -08003937 PrettyDescriptor(super).c_str(),
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003938 PrettyDescriptor(klass.Get()).c_str(),
Ian Rogers62d6c772013-02-27 08:32:07 -08003939 super->IsFinal() ? "declared final" : "an interface");
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003940 return false;
3941 }
3942 if (!klass->CanAccess(super)) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003943 ThrowIllegalAccessError(klass.Get(), "Superclass %s is inaccessible to class %s",
Ian Rogers62d6c772013-02-27 08:32:07 -08003944 PrettyDescriptor(super).c_str(),
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003945 PrettyDescriptor(klass.Get()).c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003946 return false;
3947 }
Elliott Hughes20cde902011-10-04 17:37:27 -07003948
Brian Carlstromf3632832014-05-20 15:36:53 -07003949 // Inherit kAccClassIsFinalizable from the superclass in case this
3950 // class doesn't override finalize.
Elliott Hughes20cde902011-10-04 17:37:27 -07003951 if (super->IsFinalizable()) {
3952 klass->SetFinalizable();
3953 }
3954
Elliott Hughes2da50362011-10-10 16:57:08 -07003955 // Inherit reference flags (if any) from the superclass.
3956 int reference_flags = (super->GetAccessFlags() & kAccReferenceFlagsMask);
3957 if (reference_flags != 0) {
3958 klass->SetAccessFlags(klass->GetAccessFlags() | reference_flags);
3959 }
Elliott Hughes72ee0ae2011-10-10 17:31:28 -07003960 // Disallow custom direct subclasses of java.lang.ref.Reference.
Elliott Hughesbf61ba32011-10-11 10:53:09 -07003961 if (init_done_ && super == GetClassRoot(kJavaLangRefReference)) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003962 ThrowLinkageError(klass.Get(),
Ian Rogers62d6c772013-02-27 08:32:07 -08003963 "Class %s attempts to subclass java.lang.ref.Reference, which is not allowed",
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003964 PrettyDescriptor(klass.Get()).c_str());
Elliott Hughes72ee0ae2011-10-10 17:31:28 -07003965 return false;
3966 }
Elliott Hughes2da50362011-10-10 16:57:08 -07003967
Ian Rogers7dfb28c2013-08-22 08:18:36 -07003968 if (kIsDebugBuild) {
3969 // Ensure super classes are fully resolved prior to resolving fields..
Andreas Gampe2ed8def2014-08-28 14:41:02 -07003970 while (super != nullptr) {
Ian Rogers7dfb28c2013-08-22 08:18:36 -07003971 CHECK(super->IsResolved());
3972 super = super->GetSuperClass();
3973 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003974 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003975 return true;
3976}
3977
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003978// Populate the class vtable and itable. Compute return type indices.
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07003979bool ClassLinker::LinkMethods(Thread* self, Handle<mirror::Class> klass,
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07003980 Handle<mirror::ObjectArray<mirror::Class>> interfaces,
3981 StackHandleScope<mirror::Class::kImtSize>* out_imt) {
Ian Rogers7b078e82014-09-10 14:44:24 -07003982 self->AllowThreadSuspension();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003983 if (klass->IsInterface()) {
3984 // No vtable.
3985 size_t count = klass->NumVirtualMethods();
Andreas Gampeab1eb0d2015-02-13 19:23:55 -08003986 if (!IsUint<16>(count)) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003987 ThrowClassFormatError(klass.Get(), "Too many methods on interface: %zd", count);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003988 return false;
3989 }
Carl Shapiro565f5072011-07-10 13:39:43 -07003990 for (size_t i = 0; i < count; ++i) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003991 klass->GetVirtualMethodDuringLinking(i)->SetMethodIndex(i);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003992 }
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07003993 } else if (!LinkVirtualMethods(self, klass)) { // Link virtual methods first.
3994 return false;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003995 }
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07003996 return LinkInterfaceMethods(self, klass, interfaces, out_imt); // Link interface method last.
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003997}
3998
Ian Rogers03b6eaf2014-10-28 09:34:57 -07003999// Comparator for name and signature of a method, used in finding overriding methods. Implementation
4000// avoids the use of handles, if it didn't then rather than compare dex files we could compare dex
4001// caches in the implementation below.
4002class MethodNameAndSignatureComparator FINAL : public ValueObject {
4003 public:
4004 explicit MethodNameAndSignatureComparator(mirror::ArtMethod* method)
4005 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) :
4006 dex_file_(method->GetDexFile()), mid_(&dex_file_->GetMethodId(method->GetDexMethodIndex())),
4007 name_(nullptr), name_len_(0) {
Mathieu Chartier9f3629d2014-10-28 18:23:02 -07004008 DCHECK(!method->IsProxyMethod()) << PrettyMethod(method);
4009 }
4010
4011 const char* GetName() {
4012 if (name_ == nullptr) {
4013 name_ = dex_file_->StringDataAndUtf16LengthByIdx(mid_->name_idx_, &name_len_);
4014 }
4015 return name_;
Ian Rogers03b6eaf2014-10-28 09:34:57 -07004016 }
4017
4018 bool HasSameNameAndSignature(mirror::ArtMethod* other)
4019 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
4020 DCHECK(!other->IsProxyMethod()) << PrettyMethod(other);
4021 const DexFile* other_dex_file = other->GetDexFile();
4022 const DexFile::MethodId& other_mid = other_dex_file->GetMethodId(other->GetDexMethodIndex());
4023 if (dex_file_ == other_dex_file) {
4024 return mid_->name_idx_ == other_mid.name_idx_ && mid_->proto_idx_ == other_mid.proto_idx_;
4025 }
Mathieu Chartier9f3629d2014-10-28 18:23:02 -07004026 GetName(); // Only used to make sure its calculated.
Ian Rogers03b6eaf2014-10-28 09:34:57 -07004027 uint32_t other_name_len;
4028 const char* other_name = other_dex_file->StringDataAndUtf16LengthByIdx(other_mid.name_idx_,
4029 &other_name_len);
4030 if (name_len_ != other_name_len || strcmp(name_, other_name) != 0) {
4031 return false;
4032 }
4033 return dex_file_->GetMethodSignature(*mid_) == other_dex_file->GetMethodSignature(other_mid);
4034 }
4035
4036 private:
4037 // Dex file for the method to compare against.
4038 const DexFile* const dex_file_;
4039 // MethodId for the method to compare against.
4040 const DexFile::MethodId* const mid_;
4041 // Lazily computed name from the dex file's strings.
4042 const char* name_;
4043 // Lazily computed name length.
4044 uint32_t name_len_;
4045};
4046
Mathieu Chartier9f3629d2014-10-28 18:23:02 -07004047class LinkVirtualHashTable {
4048 public:
4049 LinkVirtualHashTable(Handle<mirror::Class> klass, size_t hash_size, uint32_t* hash_table)
4050 : klass_(klass), hash_size_(hash_size), hash_table_(hash_table) {
4051 std::fill(hash_table_, hash_table_ + hash_size_, invalid_index_);
4052 }
4053 void Add(uint32_t virtual_method_index) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
4054 mirror::ArtMethod* local_method = klass_->GetVirtualMethodDuringLinking(virtual_method_index);
4055 const char* name = local_method->GetName();
Mathieu Chartiere7c9a8c2014-11-06 16:35:45 -08004056 uint32_t hash = ComputeModifiedUtf8Hash(name);
Mathieu Chartier9f3629d2014-10-28 18:23:02 -07004057 uint32_t index = hash % hash_size_;
4058 // Linear probe until we have an empty slot.
4059 while (hash_table_[index] != invalid_index_) {
4060 if (++index == hash_size_) {
4061 index = 0;
4062 }
4063 }
4064 hash_table_[index] = virtual_method_index;
4065 }
4066 uint32_t FindAndRemove(MethodNameAndSignatureComparator* comparator)
4067 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
4068 const char* name = comparator->GetName();
Mathieu Chartiere7c9a8c2014-11-06 16:35:45 -08004069 uint32_t hash = ComputeModifiedUtf8Hash(name);
Mathieu Chartier9f3629d2014-10-28 18:23:02 -07004070 size_t index = hash % hash_size_;
4071 while (true) {
4072 const uint32_t value = hash_table_[index];
4073 // Since linear probe makes continuous blocks, hitting an invalid index means we are done
4074 // the block and can safely assume not found.
4075 if (value == invalid_index_) {
4076 break;
4077 }
4078 if (value != removed_index_) { // This signifies not already overriden.
4079 mirror::ArtMethod* virtual_method =
4080 klass_->GetVirtualMethodDuringLinking(value);
4081 if (comparator->HasSameNameAndSignature(virtual_method->GetInterfaceMethodIfProxy())) {
4082 hash_table_[index] = removed_index_;
4083 return value;
4084 }
4085 }
4086 if (++index == hash_size_) {
4087 index = 0;
4088 }
4089 }
4090 return GetNotFoundIndex();
4091 }
4092 static uint32_t GetNotFoundIndex() {
4093 return invalid_index_;
4094 }
4095
4096 private:
4097 static const uint32_t invalid_index_;
4098 static const uint32_t removed_index_;
4099
4100 Handle<mirror::Class> klass_;
4101 const size_t hash_size_;
4102 uint32_t* const hash_table_;
4103};
4104
4105const uint32_t LinkVirtualHashTable::invalid_index_ = std::numeric_limits<uint32_t>::max();
4106const uint32_t LinkVirtualHashTable::removed_index_ = std::numeric_limits<uint32_t>::max() - 1;
4107
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07004108bool ClassLinker::LinkVirtualMethods(Thread* self, Handle<mirror::Class> klass) {
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07004109 const size_t num_virtual_methods = klass->NumVirtualMethods();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004110 if (klass->HasSuperClass()) {
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07004111 const size_t super_vtable_length = klass->GetSuperClass()->GetVTableLength();
4112 const size_t max_count = num_virtual_methods + super_vtable_length;
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07004113 StackHandleScope<2> hs(self);
Mingyao Yang38eecb02014-08-13 14:51:03 -07004114 Handle<mirror::Class> super_class(hs.NewHandle(klass->GetSuperClass()));
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07004115 MutableHandle<mirror::ObjectArray<mirror::ArtMethod>> vtable;
Mingyao Yang2cdbad72014-07-16 10:44:41 -07004116 if (super_class->ShouldHaveEmbeddedImtAndVTable()) {
4117 vtable = hs.NewHandle(AllocArtMethodArray(self, max_count));
4118 if (UNLIKELY(vtable.Get() == nullptr)) {
4119 CHECK(self->IsExceptionPending()); // OOME.
4120 return false;
4121 }
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07004122 for (size_t i = 0; i < super_vtable_length; i++) {
4123 vtable->SetWithoutChecks<false>(i, super_class->GetEmbeddedVTableEntry(i));
Mingyao Yang2cdbad72014-07-16 10:44:41 -07004124 }
Mathieu Chartier9f3629d2014-10-28 18:23:02 -07004125 if (num_virtual_methods == 0) {
4126 klass->SetVTable(vtable.Get());
4127 return true;
4128 }
Mingyao Yang2cdbad72014-07-16 10:44:41 -07004129 } else {
Mathieu Chartier9f3629d2014-10-28 18:23:02 -07004130 mirror::ObjectArray<mirror::ArtMethod>* super_vtable = super_class->GetVTable();
4131 CHECK(super_vtable != nullptr) << PrettyClass(super_class.Get());
4132 if (num_virtual_methods == 0) {
4133 klass->SetVTable(super_vtable);
4134 return true;
4135 }
4136 vtable = hs.NewHandle(super_vtable->CopyOf(self, max_count));
Mingyao Yang2cdbad72014-07-16 10:44:41 -07004137 if (UNLIKELY(vtable.Get() == nullptr)) {
4138 CHECK(self->IsExceptionPending()); // OOME.
4139 return false;
4140 }
Ian Rogersa436fde2013-08-27 23:34:06 -07004141 }
Mathieu Chartier9f3629d2014-10-28 18:23:02 -07004142 // How the algorithm works:
4143 // 1. Populate hash table by adding num_virtual_methods from klass. The values in the hash
4144 // table are: invalid_index for unused slots, index super_vtable_length + i for a virtual
4145 // method which has not been matched to a vtable method, and j if the virtual method at the
4146 // index overrode the super virtual method at index j.
4147 // 2. Loop through super virtual methods, if they overwrite, update hash table to j
4148 // (j < super_vtable_length) to avoid redundant checks. (TODO maybe use this info for reducing
4149 // the need for the initial vtable which we later shrink back down).
4150 // 3. Add non overridden methods to the end of the vtable.
4151 static constexpr size_t kMaxStackHash = 250;
4152 const size_t hash_table_size = num_virtual_methods * 3;
4153 uint32_t* hash_table_ptr;
4154 std::unique_ptr<uint32_t[]> hash_heap_storage;
4155 if (hash_table_size <= kMaxStackHash) {
4156 hash_table_ptr = reinterpret_cast<uint32_t*>(
4157 alloca(hash_table_size * sizeof(*hash_table_ptr)));
4158 } else {
4159 hash_heap_storage.reset(new uint32_t[hash_table_size]);
4160 hash_table_ptr = hash_heap_storage.get();
4161 }
4162 LinkVirtualHashTable hash_table(klass, hash_table_size, hash_table_ptr);
4163 // Add virtual methods to the hash table.
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07004164 for (size_t i = 0; i < num_virtual_methods; ++i) {
Mathieu Chartier9f3629d2014-10-28 18:23:02 -07004165 hash_table.Add(i);
4166 }
4167 // Loop through each super vtable method and see if they are overriden by a method we added to
4168 // the hash table.
4169 for (size_t j = 0; j < super_vtable_length; ++j) {
4170 // Search the hash table to see if we are overidden by any method.
4171 mirror::ArtMethod* super_method = vtable->GetWithoutChecks(j);
4172 MethodNameAndSignatureComparator super_method_name_comparator(
4173 super_method->GetInterfaceMethodIfProxy());
4174 uint32_t hash_index = hash_table.FindAndRemove(&super_method_name_comparator);
4175 if (hash_index != hash_table.GetNotFoundIndex()) {
4176 mirror::ArtMethod* virtual_method = klass->GetVirtualMethodDuringLinking(hash_index);
4177 if (klass->CanAccessMember(super_method->GetDeclaringClass(),
4178 super_method->GetAccessFlags())) {
4179 if (super_method->IsFinal()) {
4180 ThrowLinkageError(klass.Get(), "Method %s overrides final method in class %s",
4181 PrettyMethod(virtual_method).c_str(),
4182 super_method->GetDeclaringClassDescriptor());
4183 return false;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004184 }
Mathieu Chartier9f3629d2014-10-28 18:23:02 -07004185 vtable->SetWithoutChecks<false>(j, virtual_method);
4186 virtual_method->SetMethodIndex(j);
4187 } else {
4188 LOG(WARNING) << "Before Android 4.1, method " << PrettyMethod(virtual_method)
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07004189 << " would have incorrectly overridden the package-private method in "
4190 << PrettyDescriptor(super_method->GetDeclaringClassDescriptor());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004191 }
4192 }
Mathieu Chartier9f3629d2014-10-28 18:23:02 -07004193 }
4194 // Add the non overridden methods at the end.
4195 size_t actual_count = super_vtable_length;
4196 for (size_t i = 0; i < num_virtual_methods; ++i) {
4197 mirror::ArtMethod* local_method = klass->GetVirtualMethodDuringLinking(i);
4198 size_t method_idx = local_method->GetMethodIndexDuringLinking();
4199 if (method_idx < super_vtable_length &&
4200 local_method == vtable->GetWithoutChecks(method_idx)) {
4201 continue;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004202 }
Mathieu Chartier9f3629d2014-10-28 18:23:02 -07004203 vtable->SetWithoutChecks<false>(actual_count, local_method);
4204 local_method->SetMethodIndex(actual_count);
4205 ++actual_count;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004206 }
Andreas Gampeab1eb0d2015-02-13 19:23:55 -08004207 if (!IsUint<16>(actual_count)) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07004208 ThrowClassFormatError(klass.Get(), "Too many methods defined on class: %zd", actual_count);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004209 return false;
4210 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07004211 // Shrink vtable if possible
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004212 CHECK_LE(actual_count, max_count);
4213 if (actual_count < max_count) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07004214 vtable.Assign(vtable->CopyOf(self, actual_count));
Andreas Gampe2ed8def2014-08-28 14:41:02 -07004215 if (UNLIKELY(vtable.Get() == nullptr)) {
Ian Rogersa436fde2013-08-27 23:34:06 -07004216 CHECK(self->IsExceptionPending()); // OOME.
4217 return false;
4218 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004219 }
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07004220 klass->SetVTable(vtable.Get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004221 } else {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004222 CHECK_EQ(klass.Get(), GetClassRoot(kJavaLangObject));
Andreas Gampeab1eb0d2015-02-13 19:23:55 -08004223 if (!IsUint<16>(num_virtual_methods)) {
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07004224 ThrowClassFormatError(klass.Get(), "Too many methods: %d",
4225 static_cast<int>(num_virtual_methods));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004226 return false;
4227 }
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07004228 mirror::ObjectArray<mirror::ArtMethod>* vtable = AllocArtMethodArray(self, num_virtual_methods);
4229 if (UNLIKELY(vtable == nullptr)) {
Ian Rogersa436fde2013-08-27 23:34:06 -07004230 CHECK(self->IsExceptionPending()); // OOME.
4231 return false;
4232 }
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07004233 for (size_t i = 0; i < num_virtual_methods; ++i) {
Brian Carlstromea46f952013-07-30 01:26:50 -07004234 mirror::ArtMethod* virtual_method = klass->GetVirtualMethodDuringLinking(i);
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07004235 vtable->SetWithoutChecks<false>(i, virtual_method);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07004236 virtual_method->SetMethodIndex(i & 0xFFFF);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004237 }
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07004238 klass->SetVTable(vtable);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004239 }
4240 return true;
4241}
4242
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07004243bool ClassLinker::LinkInterfaceMethods(Thread* self, Handle<mirror::Class> klass,
4244 Handle<mirror::ObjectArray<mirror::Class>> interfaces,
4245 StackHandleScope<mirror::Class::kImtSize>* out_imt) {
Mathieu Chartierd035c2d2014-10-27 17:30:20 -07004246 StackHandleScope<3> hs(self);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004247 Runtime* const runtime = Runtime::Current();
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07004248 const bool has_superclass = klass->HasSuperClass();
4249 const size_t super_ifcount = has_superclass ? klass->GetSuperClass()->GetIfTableCount() : 0U;
4250 const bool have_interfaces = interfaces.Get() != nullptr;
4251 const size_t num_interfaces =
4252 have_interfaces ? interfaces->GetLength() : klass->NumDirectInterfaces();
4253 if (num_interfaces == 0) {
4254 if (super_ifcount == 0) {
4255 // Class implements no interfaces.
4256 DCHECK_EQ(klass->GetIfTableCount(), 0);
4257 DCHECK(klass->GetIfTable() == nullptr);
4258 return true;
4259 }
Ian Rogers9bc81912012-10-11 21:43:36 -07004260 // Class implements same interfaces as parent, are any of these not marker interfaces?
4261 bool has_non_marker_interface = false;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08004262 mirror::IfTable* super_iftable = klass->GetSuperClass()->GetIfTable();
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07004263 for (size_t i = 0; i < super_ifcount; ++i) {
Ian Rogers9bc81912012-10-11 21:43:36 -07004264 if (super_iftable->GetMethodArrayCount(i) > 0) {
4265 has_non_marker_interface = true;
4266 break;
4267 }
4268 }
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07004269 // Class just inherits marker interfaces from parent so recycle parent's iftable.
Ian Rogers9bc81912012-10-11 21:43:36 -07004270 if (!has_non_marker_interface) {
Ian Rogers9bc81912012-10-11 21:43:36 -07004271 klass->SetIfTable(super_iftable);
4272 return true;
4273 }
4274 }
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07004275 size_t ifcount = super_ifcount + num_interfaces;
4276 for (size_t i = 0; i < num_interfaces; i++) {
4277 mirror::Class* interface = have_interfaces ?
4278 interfaces->GetWithoutChecks(i) : mirror::Class::GetDirectInterface(self, klass, i);
4279 DCHECK(interface != nullptr);
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07004280 if (UNLIKELY(!interface->IsInterface())) {
4281 std::string temp;
4282 ThrowIncompatibleClassChangeError(klass.Get(), "Class %s implements non-interface class %s",
4283 PrettyDescriptor(klass.Get()).c_str(),
4284 PrettyDescriptor(interface->GetDescriptor(&temp)).c_str());
4285 return false;
4286 }
4287 ifcount += interface->GetIfTableCount();
4288 }
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07004289 MutableHandle<mirror::IfTable> iftable(hs.NewHandle(AllocIfTable(self, ifcount)));
Andreas Gampe2ed8def2014-08-28 14:41:02 -07004290 if (UNLIKELY(iftable.Get() == nullptr)) {
Ian Rogersa436fde2013-08-27 23:34:06 -07004291 CHECK(self->IsExceptionPending()); // OOME.
4292 return false;
4293 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004294 if (super_ifcount != 0) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08004295 mirror::IfTable* super_iftable = klass->GetSuperClass()->GetIfTable();
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07004296 for (size_t i = 0; i < super_ifcount; i++) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08004297 mirror::Class* super_interface = super_iftable->GetInterface(i);
Ian Rogers9bc81912012-10-11 21:43:36 -07004298 iftable->SetInterface(i, super_interface);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07004299 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004300 }
Ian Rogers7b078e82014-09-10 14:44:24 -07004301 self->AllowThreadSuspension();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004302 // Flatten the interface inheritance hierarchy.
4303 size_t idx = super_ifcount;
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08004304 for (size_t i = 0; i < num_interfaces; i++) {
Mathieu Chartierd035c2d2014-10-27 17:30:20 -07004305 mirror::Class* interface = have_interfaces ? interfaces->Get(i) :
4306 mirror::Class::GetDirectInterface(self, klass, i);
Ian Rogersb52b01a2012-01-12 17:01:38 -08004307 // Check if interface is already in iftable
4308 bool duplicate = false;
4309 for (size_t j = 0; j < idx; j++) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08004310 mirror::Class* existing_interface = iftable->GetInterface(j);
Ian Rogersb52b01a2012-01-12 17:01:38 -08004311 if (existing_interface == interface) {
4312 duplicate = true;
4313 break;
4314 }
4315 }
4316 if (!duplicate) {
4317 // Add this non-duplicate interface.
Ian Rogers9bc81912012-10-11 21:43:36 -07004318 iftable->SetInterface(idx++, interface);
Ian Rogersb52b01a2012-01-12 17:01:38 -08004319 // Add this interface's non-duplicate super-interfaces.
4320 for (int32_t j = 0; j < interface->GetIfTableCount(); j++) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08004321 mirror::Class* super_interface = interface->GetIfTable()->GetInterface(j);
Ian Rogersb52b01a2012-01-12 17:01:38 -08004322 bool super_duplicate = false;
4323 for (size_t k = 0; k < idx; k++) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08004324 mirror::Class* existing_interface = iftable->GetInterface(k);
Ian Rogersb52b01a2012-01-12 17:01:38 -08004325 if (existing_interface == super_interface) {
4326 super_duplicate = true;
4327 break;
4328 }
4329 }
4330 if (!super_duplicate) {
Ian Rogers9bc81912012-10-11 21:43:36 -07004331 iftable->SetInterface(idx++, super_interface);
Ian Rogersb52b01a2012-01-12 17:01:38 -08004332 }
4333 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004334 }
4335 }
Ian Rogers7b078e82014-09-10 14:44:24 -07004336 self->AllowThreadSuspension();
Ian Rogersb52b01a2012-01-12 17:01:38 -08004337 // Shrink iftable in case duplicates were found
4338 if (idx < ifcount) {
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07004339 DCHECK_NE(num_interfaces, 0U);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07004340 iftable.Assign(down_cast<mirror::IfTable*>(iftable->CopyOf(self, idx * mirror::IfTable::kMax)));
Andreas Gampe2ed8def2014-08-28 14:41:02 -07004341 if (UNLIKELY(iftable.Get() == nullptr)) {
Ian Rogersa436fde2013-08-27 23:34:06 -07004342 CHECK(self->IsExceptionPending()); // OOME.
4343 return false;
4344 }
Ian Rogersb52b01a2012-01-12 17:01:38 -08004345 ifcount = idx;
4346 } else {
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07004347 DCHECK_EQ(idx, ifcount);
Ian Rogersb52b01a2012-01-12 17:01:38 -08004348 }
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07004349 klass->SetIfTable(iftable.Get());
Elliott Hughes4681c802011-09-25 18:04:37 -07004350 // If we're an interface, we don't need the vtable pointers, so we're done.
Ian Rogers9bc81912012-10-11 21:43:36 -07004351 if (klass->IsInterface()) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004352 return true;
4353 }
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07004354 size_t miranda_list_size = 0;
Hiroshi Yamauchi41369d22014-08-19 13:10:36 -07004355 size_t max_miranda_methods = 0; // The max size of miranda_list.
4356 for (size_t i = 0; i < ifcount; ++i) {
4357 max_miranda_methods += iftable->GetInterface(i)->NumVirtualMethods();
4358 }
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07004359 MutableHandle<mirror::ObjectArray<mirror::ArtMethod>>
Hiroshi Yamauchi41369d22014-08-19 13:10:36 -07004360 miranda_list(hs.NewHandle(AllocArtMethodArray(self, max_miranda_methods)));
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07004361 MutableHandle<mirror::ObjectArray<mirror::ArtMethod>> vtable(
4362 hs.NewHandle(klass->GetVTableDuringLinking()));
4363 // Copy the IMT from the super class if possible.
4364 bool extend_super_iftable = false;
4365 if (has_superclass) {
4366 mirror::Class* super_class = klass->GetSuperClass();
4367 extend_super_iftable = true;
4368 if (super_class->ShouldHaveEmbeddedImtAndVTable()) {
4369 for (size_t i = 0; i < mirror::Class::kImtSize; ++i) {
4370 out_imt->SetReference(i, super_class->GetEmbeddedImTableEntry(i));
4371 }
4372 } else {
4373 // No imt in the super class, need to reconstruct from the iftable.
4374 mirror::IfTable* if_table = super_class->GetIfTable();
4375 mirror::ArtMethod* conflict_method = runtime->GetImtConflictMethod();
4376 const size_t length = super_class->GetIfTableCount();
4377 for (size_t i = 0; i < length; ++i) {
4378 mirror::Class* interface = iftable->GetInterface(i);
4379 const size_t num_virtuals = interface->NumVirtualMethods();
4380 const size_t method_array_count = if_table->GetMethodArrayCount(i);
4381 DCHECK_EQ(num_virtuals, method_array_count);
4382 if (method_array_count == 0) {
4383 continue;
4384 }
4385 mirror::ObjectArray<mirror::ArtMethod>* method_array = if_table->GetMethodArray(i);
4386 for (size_t j = 0; j < num_virtuals; ++j) {
4387 mirror::ArtMethod* method = method_array->GetWithoutChecks(j);
4388 if (method->IsMiranda()) {
4389 continue;
4390 }
4391 mirror::ArtMethod* interface_method = interface->GetVirtualMethod(j);
4392 uint32_t imt_index = interface_method->GetDexMethodIndex() % mirror::Class::kImtSize;
4393 mirror::ArtMethod* imt_ref = out_imt->GetReference(imt_index)->AsArtMethod();
4394 if (imt_ref == runtime->GetImtUnimplementedMethod()) {
4395 out_imt->SetReference(imt_index, method);
4396 } else if (imt_ref != conflict_method) {
4397 out_imt->SetReference(imt_index, conflict_method);
4398 }
4399 }
4400 }
4401 }
4402 }
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07004403 for (size_t i = 0; i < ifcount; ++i) {
Ian Rogers7b078e82014-09-10 14:44:24 -07004404 self->AllowThreadSuspension();
Mathieu Chartierc528dba2013-11-26 12:00:11 -08004405 size_t num_methods = iftable->GetInterface(i)->NumVirtualMethods();
Ian Rogers9bc81912012-10-11 21:43:36 -07004406 if (num_methods > 0) {
Andreas Gampe277ccbd2014-11-03 21:36:10 -08004407 StackHandleScope<2> hs2(self);
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07004408 const bool is_super = i < super_ifcount;
4409 const bool super_interface = is_super && extend_super_iftable;
4410 Handle<mirror::ObjectArray<mirror::ArtMethod>> method_array;
4411 Handle<mirror::ObjectArray<mirror::ArtMethod>> input_array;
4412 if (super_interface) {
4413 mirror::IfTable* if_table = klass->GetSuperClass()->GetIfTable();
4414 DCHECK(if_table != nullptr);
4415 DCHECK(if_table->GetMethodArray(i) != nullptr);
4416 // If we are working on a super interface, try extending the existing method array.
Andreas Gampe277ccbd2014-11-03 21:36:10 -08004417 method_array = hs2.NewHandle(if_table->GetMethodArray(i)->Clone(self)->
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07004418 AsObjectArray<mirror::ArtMethod>());
4419 // We are overwriting a super class interface, try to only virtual methods instead of the
4420 // whole vtable.
Andreas Gampe277ccbd2014-11-03 21:36:10 -08004421 input_array = hs2.NewHandle(klass->GetVirtualMethods());
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07004422 } else {
Andreas Gampe277ccbd2014-11-03 21:36:10 -08004423 method_array = hs2.NewHandle(AllocArtMethodArray(self, num_methods));
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07004424 // A new interface, we need the whole vtable incase a new interface method is implemented
4425 // in the whole superclass.
4426 input_array = vtable;
4427 }
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07004428 if (UNLIKELY(method_array.Get() == nullptr)) {
Ian Rogersa436fde2013-08-27 23:34:06 -07004429 CHECK(self->IsExceptionPending()); // OOME.
4430 return false;
4431 }
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07004432 iftable->SetMethodArray(i, method_array.Get());
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07004433 if (input_array.Get() == nullptr) {
4434 // If the added virtual methods is empty, do nothing.
4435 DCHECK(super_interface);
4436 continue;
4437 }
Ian Rogers62d6c772013-02-27 08:32:07 -08004438 for (size_t j = 0; j < num_methods; ++j) {
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07004439 mirror::ArtMethod* interface_method = iftable->GetInterface(i)->GetVirtualMethod(j);
Mathieu Chartier9f3629d2014-10-28 18:23:02 -07004440 MethodNameAndSignatureComparator interface_name_comparator(
4441 interface_method->GetInterfaceMethodIfProxy());
Ian Rogers9bc81912012-10-11 21:43:36 -07004442 int32_t k;
4443 // For each method listed in the interface's method list, find the
4444 // matching method in our class's method list. We want to favor the
4445 // subclass over the superclass, which just requires walking
4446 // back from the end of the vtable. (This only matters if the
4447 // superclass defines a private method and this class redefines
4448 // it -- otherwise it would use the same vtable slot. In .dex files
4449 // those don't end up in the virtual method table, so it shouldn't
4450 // matter which direction we go. We walk it backward anyway.)
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07004451 for (k = input_array->GetLength() - 1; k >= 0; --k) {
4452 mirror::ArtMethod* vtable_method = input_array->GetWithoutChecks(k);
Ian Rogers03b6eaf2014-10-28 09:34:57 -07004453 mirror::ArtMethod* vtable_method_for_name_comparison =
4454 vtable_method->GetInterfaceMethodIfProxy();
4455 if (interface_name_comparator.HasSameNameAndSignature(
Mathieu Chartier9f3629d2014-10-28 18:23:02 -07004456 vtable_method_for_name_comparison)) {
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07004457 if (!vtable_method->IsAbstract() && !vtable_method->IsPublic()) {
Brian Carlstromf3632832014-05-20 15:36:53 -07004458 ThrowIllegalAccessError(
4459 klass.Get(),
4460 "Method '%s' implementing interface method '%s' is not public",
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07004461 PrettyMethod(vtable_method).c_str(),
4462 PrettyMethod(interface_method).c_str());
Ian Rogers9bc81912012-10-11 21:43:36 -07004463 return false;
4464 }
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07004465 method_array->SetWithoutChecks<false>(j, vtable_method);
Jeff Hao88474b42013-10-23 16:24:40 -07004466 // Place method in imt if entry is empty, place conflict otherwise.
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07004467 uint32_t imt_index = interface_method->GetDexMethodIndex() % mirror::Class::kImtSize;
4468 mirror::ArtMethod* imt_ref = out_imt->GetReference(imt_index)->AsArtMethod();
4469 mirror::ArtMethod* conflict_method = runtime->GetImtConflictMethod();
4470 if (imt_ref == runtime->GetImtUnimplementedMethod()) {
4471 out_imt->SetReference(imt_index, vtable_method);
4472 } else if (imt_ref != conflict_method) {
4473 // If we are not a conflict and we have the same signature and name as the imt entry,
4474 // it must be that we overwrote a superclass vtable entry.
Mathieu Chartier9f3629d2014-10-28 18:23:02 -07004475 MethodNameAndSignatureComparator imt_ref_name_comparator(
4476 imt_ref->GetInterfaceMethodIfProxy());
Ian Rogers03b6eaf2014-10-28 09:34:57 -07004477 if (imt_ref_name_comparator.HasSameNameAndSignature(
Mathieu Chartier9f3629d2014-10-28 18:23:02 -07004478 vtable_method_for_name_comparison)) {
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07004479 out_imt->SetReference(imt_index, vtable_method);
4480 } else {
4481 out_imt->SetReference(imt_index, conflict_method);
4482 }
Jeff Hao88474b42013-10-23 16:24:40 -07004483 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004484 break;
4485 }
4486 }
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07004487 if (k < 0 && !super_interface) {
4488 mirror::ArtMethod* miranda_method = nullptr;
Hiroshi Yamauchi41369d22014-08-19 13:10:36 -07004489 for (size_t l = 0; l < miranda_list_size; ++l) {
4490 mirror::ArtMethod* mir_method = miranda_list->Get(l);
Ian Rogers03b6eaf2014-10-28 09:34:57 -07004491 if (interface_name_comparator.HasSameNameAndSignature(mir_method)) {
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07004492 miranda_method = mir_method;
Ian Rogers9bc81912012-10-11 21:43:36 -07004493 break;
4494 }
4495 }
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07004496 if (miranda_method == nullptr) {
Ian Rogersa436fde2013-08-27 23:34:06 -07004497 // Point the interface table at a phantom slot.
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07004498 miranda_method = interface_method->Clone(self)->AsArtMethod();
4499 if (UNLIKELY(miranda_method == nullptr)) {
Ian Rogersa436fde2013-08-27 23:34:06 -07004500 CHECK(self->IsExceptionPending()); // OOME.
4501 return false;
4502 }
Hiroshi Yamauchi41369d22014-08-19 13:10:36 -07004503 DCHECK_LT(miranda_list_size, max_miranda_methods);
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07004504 miranda_list->Set<false>(miranda_list_size++, miranda_method);
Ian Rogers9bc81912012-10-11 21:43:36 -07004505 }
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07004506 method_array->SetWithoutChecks<false>(j, miranda_method);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004507 }
4508 }
4509 }
4510 }
Hiroshi Yamauchi41369d22014-08-19 13:10:36 -07004511 if (miranda_list_size > 0) {
Brian Carlstrom913af1b2011-07-23 21:41:13 -07004512 int old_method_count = klass->NumVirtualMethods();
Hiroshi Yamauchi41369d22014-08-19 13:10:36 -07004513 int new_method_count = old_method_count + miranda_list_size;
Ian Rogersa436fde2013-08-27 23:34:06 -07004514 mirror::ObjectArray<mirror::ArtMethod>* virtuals;
4515 if (old_method_count == 0) {
4516 virtuals = AllocArtMethodArray(self, new_method_count);
4517 } else {
4518 virtuals = klass->GetVirtualMethods()->CopyOf(self, new_method_count);
4519 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -07004520 if (UNLIKELY(virtuals == nullptr)) {
Ian Rogersa436fde2013-08-27 23:34:06 -07004521 CHECK(self->IsExceptionPending()); // OOME.
4522 return false;
4523 }
4524 klass->SetVirtualMethods(virtuals);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004525
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07004526 int old_vtable_count = vtable->GetLength();
Hiroshi Yamauchi41369d22014-08-19 13:10:36 -07004527 int new_vtable_count = old_vtable_count + miranda_list_size;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07004528 vtable.Assign(vtable->CopyOf(self, new_vtable_count));
Andreas Gampe2ed8def2014-08-28 14:41:02 -07004529 if (UNLIKELY(vtable.Get() == nullptr)) {
Ian Rogersa436fde2013-08-27 23:34:06 -07004530 CHECK(self->IsExceptionPending()); // OOME.
4531 return false;
4532 }
Hiroshi Yamauchi41369d22014-08-19 13:10:36 -07004533 for (size_t i = 0; i < miranda_list_size; ++i) {
4534 mirror::ArtMethod* method = miranda_list->Get(i);
Ian Rogers9074b992011-10-26 17:41:55 -07004535 // Leave the declaring class alone as type indices are relative to it
Brian Carlstrom92827a52011-10-10 15:50:01 -07004536 method->SetAccessFlags(method->GetAccessFlags() | kAccMiranda);
4537 method->SetMethodIndex(0xFFFF & (old_vtable_count + i));
4538 klass->SetVirtualMethod(old_method_count + i, method);
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07004539 vtable->SetWithoutChecks<false>(old_vtable_count + i, method);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004540 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07004541 // TODO: do not assign to the vtable field until it is fully constructed.
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07004542 klass->SetVTable(vtable.Get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004543 }
Elliott Hughes4681c802011-09-25 18:04:37 -07004544
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07004545 if (kIsDebugBuild) {
Andreas Gampe277ccbd2014-11-03 21:36:10 -08004546 mirror::ObjectArray<mirror::ArtMethod>* check_vtable = klass->GetVTableDuringLinking();
4547 for (int i = 0; i < check_vtable->GetLength(); ++i) {
4548 CHECK(check_vtable->GetWithoutChecks(i) != nullptr);
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07004549 }
Elliott Hughes4681c802011-09-25 18:04:37 -07004550 }
4551
Ian Rogers7b078e82014-09-10 14:44:24 -07004552 self->AllowThreadSuspension();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004553 return true;
4554}
4555
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07004556bool ClassLinker::LinkInstanceFields(Thread* self, Handle<mirror::Class> klass) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07004557 CHECK(klass.Get() != nullptr);
Ian Rogers7b078e82014-09-10 14:44:24 -07004558 return LinkFields(self, klass, false, nullptr);
Brian Carlstrom4873d462011-08-21 15:23:39 -07004559}
4560
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07004561bool ClassLinker::LinkStaticFields(Thread* self, Handle<mirror::Class> klass, size_t* class_size) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07004562 CHECK(klass.Get() != nullptr);
Ian Rogers7b078e82014-09-10 14:44:24 -07004563 return LinkFields(self, klass, true, class_size);
Brian Carlstrom4873d462011-08-21 15:23:39 -07004564}
4565
Brian Carlstromdbc05252011-09-09 01:59:59 -07004566struct LinkFieldsComparator {
Mathieu Chartier590fee92013-09-13 13:46:47 -07004567 explicit LinkFieldsComparator() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
4568 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004569 // No thread safety analysis as will be called from STL. Checked lock held in constructor.
Ian Rogersef7d42f2014-01-06 12:55:46 -08004570 bool operator()(mirror::ArtField* field1, mirror::ArtField* field2)
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08004571 NO_THREAD_SAFETY_ANALYSIS {
Fred Shih37f05ef2014-07-16 18:38:08 -07004572 // 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 -07004573 Primitive::Type type1 = field1->GetTypeAsPrimitiveType();
4574 Primitive::Type type2 = field2->GetTypeAsPrimitiveType();
Ian Rogersef7d42f2014-01-06 12:55:46 -08004575 if (type1 != type2) {
Vladimir Markod5777482014-11-12 17:02:02 +00004576 if (type1 == Primitive::kPrimNot) {
4577 // Reference always goes first.
4578 return true;
Ian Rogersef7d42f2014-01-06 12:55:46 -08004579 }
Vladimir Markod5777482014-11-12 17:02:02 +00004580 if (type2 == Primitive::kPrimNot) {
4581 // Reference always goes first.
4582 return false;
4583 }
4584 size_t size1 = Primitive::ComponentSize(type1);
4585 size_t size2 = Primitive::ComponentSize(type2);
4586 if (size1 != size2) {
4587 // Larger primitive types go first.
4588 return size1 > size2;
4589 }
4590 // Primitive types differ but sizes match. Arbitrarily order by primitive type.
4591 return type1 < type2;
Brian Carlstromdbc05252011-09-09 01:59:59 -07004592 }
Vladimir Marko7a7c1db2014-11-17 15:13:34 +00004593 // Same basic group? Then sort by dex field index. This is guaranteed to be sorted
4594 // by name and for equal names by type id index.
4595 // NOTE: This works also for proxies. Their static fields are assigned appropriate indexes.
4596 return field1->GetDexFieldIndex() < field2->GetDexFieldIndex();
Brian Carlstromdbc05252011-09-09 01:59:59 -07004597 }
4598};
4599
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07004600bool ClassLinker::LinkFields(Thread* self, Handle<mirror::Class> klass, bool is_static,
Ian Rogers7b078e82014-09-10 14:44:24 -07004601 size_t* class_size) {
4602 self->AllowThreadSuspension();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07004603 size_t num_fields =
Brian Carlstrom3320cf42011-10-04 14:58:28 -07004604 is_static ? klass->NumStaticFields() : klass->NumInstanceFields();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07004605
Brian Carlstromea46f952013-07-30 01:26:50 -07004606 mirror::ObjectArray<mirror::ArtField>* fields =
Brian Carlstrom3320cf42011-10-04 14:58:28 -07004607 is_static ? klass->GetSFields() : klass->GetIFields();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07004608
Mingyao Yang98d1cc82014-05-15 17:02:16 -07004609 // Initialize field_offset
Brian Carlstrom693267a2011-09-06 09:25:34 -07004610 MemberOffset field_offset(0);
Brian Carlstrom3320cf42011-10-04 14:58:28 -07004611 if (is_static) {
Vladimir Marko76649e82014-11-10 18:32:59 +00004612 field_offset = klass->GetFirstReferenceStaticFieldOffsetDuringLinking();
Brian Carlstrom3320cf42011-10-04 14:58:28 -07004613 } else {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08004614 mirror::Class* super_class = klass->GetSuperClass();
Andreas Gampe2ed8def2014-08-28 14:41:02 -07004615 if (super_class != nullptr) {
Brian Carlstromf3632832014-05-20 15:36:53 -07004616 CHECK(super_class->IsResolved())
4617 << PrettyClass(klass.Get()) << " " << PrettyClass(super_class);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07004618 field_offset = MemberOffset(super_class->GetObjectSize());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07004619 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07004620 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07004621
Andreas Gampe2ed8def2014-08-28 14:41:02 -07004622 CHECK_EQ(num_fields == 0, fields == nullptr) << PrettyClass(klass.Get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07004623
Brian Carlstromdbc05252011-09-09 01:59:59 -07004624 // we want a relatively stable order so that adding new fields
Elliott Hughesadb460d2011-10-05 17:02:34 -07004625 // minimizes disruption of C++ version such as Class and Method.
Brian Carlstromea46f952013-07-30 01:26:50 -07004626 std::deque<mirror::ArtField*> grouped_and_sorted_fields;
Mathieu Chartier2d5f39e2014-09-19 17:52:37 -07004627 const char* old_no_suspend_cause = self->StartAssertNoThreadSuspension(
Fred Shih37f05ef2014-07-16 18:38:08 -07004628 "Naked ArtField references in deque");
Brian Carlstromdbc05252011-09-09 01:59:59 -07004629 for (size_t i = 0; i < num_fields; i++) {
Ian Rogersfc0e94b2013-09-23 23:51:32 -07004630 mirror::ArtField* f = fields->Get(i);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07004631 CHECK(f != nullptr) << PrettyClass(klass.Get());
Ian Rogersfc0e94b2013-09-23 23:51:32 -07004632 grouped_and_sorted_fields.push_back(f);
Brian Carlstromdbc05252011-09-09 01:59:59 -07004633 }
Mathieu Chartier590fee92013-09-13 13:46:47 -07004634 std::sort(grouped_and_sorted_fields.begin(), grouped_and_sorted_fields.end(),
4635 LinkFieldsComparator());
Brian Carlstromdbc05252011-09-09 01:59:59 -07004636
Fred Shih381e4ca2014-08-25 17:24:27 -07004637 // References should be at the front.
Brian Carlstromdbc05252011-09-09 01:59:59 -07004638 size_t current_field = 0;
4639 size_t num_reference_fields = 0;
Fred Shih381e4ca2014-08-25 17:24:27 -07004640 FieldGaps gaps;
4641
Brian Carlstromdbc05252011-09-09 01:59:59 -07004642 for (; current_field < num_fields; current_field++) {
Brian Carlstromea46f952013-07-30 01:26:50 -07004643 mirror::ArtField* field = grouped_and_sorted_fields.front();
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07004644 Primitive::Type type = field->GetTypeAsPrimitiveType();
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07004645 bool isPrimitive = type != Primitive::kPrimNot;
Brian Carlstromdbc05252011-09-09 01:59:59 -07004646 if (isPrimitive) {
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004647 break; // past last reference, move on to the next phase
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004648 }
Vladimir Marko76649e82014-11-10 18:32:59 +00004649 if (UNLIKELY(!IsAligned<sizeof(mirror::HeapReference<mirror::Object>)>(
4650 field_offset.Uint32Value()))) {
Fred Shih381e4ca2014-08-25 17:24:27 -07004651 MemberOffset old_offset = field_offset;
4652 field_offset = MemberOffset(RoundUp(field_offset.Uint32Value(), 4));
4653 AddFieldGap(old_offset.Uint32Value(), field_offset.Uint32Value(), &gaps);
4654 }
Vladimir Marko76649e82014-11-10 18:32:59 +00004655 DCHECK(IsAligned<sizeof(mirror::HeapReference<mirror::Object>)>(field_offset.Uint32Value()));
Brian Carlstromdbc05252011-09-09 01:59:59 -07004656 grouped_and_sorted_fields.pop_front();
4657 num_reference_fields++;
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07004658 field->SetOffset(field_offset);
Vladimir Marko76649e82014-11-10 18:32:59 +00004659 field_offset = MemberOffset(field_offset.Uint32Value() +
4660 sizeof(mirror::HeapReference<mirror::Object>));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004661 }
Fred Shih381e4ca2014-08-25 17:24:27 -07004662 // Gaps are stored as a max heap which means that we must shuffle from largest to smallest
4663 // otherwise we could end up with suboptimal gap fills.
Vladimir Marko76649e82014-11-10 18:32:59 +00004664 ShuffleForward<8>(&current_field, &field_offset, &grouped_and_sorted_fields, &gaps);
4665 ShuffleForward<4>(&current_field, &field_offset, &grouped_and_sorted_fields, &gaps);
4666 ShuffleForward<2>(&current_field, &field_offset, &grouped_and_sorted_fields, &gaps);
4667 ShuffleForward<1>(&current_field, &field_offset, &grouped_and_sorted_fields, &gaps);
Fred Shih37f05ef2014-07-16 18:38:08 -07004668 CHECK(grouped_and_sorted_fields.empty()) << "Missed " << grouped_and_sorted_fields.size() <<
4669 " fields.";
Ian Rogers7b078e82014-09-10 14:44:24 -07004670 self->EndAssertNoThreadSuspension(old_no_suspend_cause);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004671
Elliott Hughesadb460d2011-10-05 17:02:34 -07004672 // 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 -07004673 if (!is_static && klass->DescriptorEquals("Ljava/lang/ref/Reference;")) {
Elliott Hughesadb460d2011-10-05 17:02:34 -07004674 // We know there are no non-reference fields in the Reference classes, and we know
4675 // that 'referent' is alphabetically last, so this is easy...
Brian Carlstromf3632832014-05-20 15:36:53 -07004676 CHECK_EQ(num_reference_fields, num_fields) << PrettyClass(klass.Get());
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07004677 CHECK_STREQ(fields->Get(num_fields - 1)->GetName(), "referent") << PrettyClass(klass.Get());
Elliott Hughesadb460d2011-10-05 17:02:34 -07004678 --num_reference_fields;
4679 }
4680
Mingyao Yang98d1cc82014-05-15 17:02:16 -07004681 size_t size = field_offset.Uint32Value();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07004682 // Update klass
Brian Carlstrom3320cf42011-10-04 14:58:28 -07004683 if (is_static) {
4684 klass->SetNumReferenceStaticFields(num_reference_fields);
Mingyao Yang98d1cc82014-05-15 17:02:16 -07004685 *class_size = size;
Brian Carlstrom3320cf42011-10-04 14:58:28 -07004686 } else {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07004687 klass->SetNumReferenceInstanceFields(num_reference_fields);
Brian Carlstromdbc05252011-09-09 01:59:59 -07004688 if (!klass->IsVariableSize()) {
Mathieu Chartier2d721012014-11-10 11:08:06 -08004689 if (klass->DescriptorEquals("Ljava/lang/reflect/ArtMethod;")) {
Jeff Haoc7d11882015-02-03 15:08:39 -08004690 size_t pointer_size = GetInstructionSetPointerSize(Runtime::Current()->GetInstructionSet());
4691 klass->SetObjectSize(mirror::ArtMethod::InstanceSize(pointer_size));
Mathieu Chartier2d721012014-11-10 11:08:06 -08004692 } else {
4693 std::string temp;
4694 DCHECK_GE(size, sizeof(mirror::Object)) << klass->GetDescriptor(&temp);
4695 size_t previous_size = klass->GetObjectSize();
4696 if (previous_size != 0) {
4697 // Make sure that we didn't originally have an incorrect size.
4698 CHECK_EQ(previous_size, size) << klass->GetDescriptor(&temp);
4699 }
4700 klass->SetObjectSize(size);
Mathieu Chartier79b4f382013-10-23 15:21:37 -07004701 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07004702 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07004703 }
Vladimir Marko76649e82014-11-10 18:32:59 +00004704
4705 if (kIsDebugBuild) {
4706 // Make sure that the fields array is ordered by name but all reference
4707 // offsets are at the beginning as far as alignment allows.
4708 MemberOffset start_ref_offset = is_static
4709 ? klass->GetFirstReferenceStaticFieldOffsetDuringLinking()
4710 : klass->GetFirstReferenceInstanceFieldOffset();
4711 MemberOffset end_ref_offset(start_ref_offset.Uint32Value() +
4712 num_reference_fields *
4713 sizeof(mirror::HeapReference<mirror::Object>));
4714 MemberOffset current_ref_offset = start_ref_offset;
4715 for (size_t i = 0; i < num_fields; i++) {
4716 mirror::ArtField* field = fields->Get(i);
4717 if ((false)) { // enable to debug field layout
4718 LOG(INFO) << "LinkFields: " << (is_static ? "static" : "instance")
4719 << " class=" << PrettyClass(klass.Get())
4720 << " field=" << PrettyField(field)
4721 << " offset="
4722 << field->GetField32(mirror::ArtField::OffsetOffset());
4723 }
4724 if (i != 0) {
4725 mirror::ArtField* prev_field = fields->Get(i - 1u);
Vladimir Marko7a7c1db2014-11-17 15:13:34 +00004726 // NOTE: The field names can be the same. This is not possible in the Java language
4727 // but it's valid Java/dex bytecode and for example proguard can generate such bytecode.
4728 CHECK_LE(strcmp(prev_field->GetName(), field->GetName()), 0);
Vladimir Marko76649e82014-11-10 18:32:59 +00004729 }
4730 Primitive::Type type = field->GetTypeAsPrimitiveType();
4731 bool is_primitive = type != Primitive::kPrimNot;
4732 if (klass->DescriptorEquals("Ljava/lang/ref/Reference;") &&
4733 strcmp("referent", field->GetName()) == 0) {
4734 is_primitive = true; // We lied above, so we have to expect a lie here.
4735 }
4736 MemberOffset offset = field->GetOffsetDuringLinking();
4737 if (is_primitive) {
4738 if (offset.Uint32Value() < end_ref_offset.Uint32Value()) {
4739 // Shuffled before references.
4740 size_t type_size = Primitive::ComponentSize(type);
4741 CHECK_LT(type_size, sizeof(mirror::HeapReference<mirror::Object>));
4742 CHECK_LT(offset.Uint32Value(), start_ref_offset.Uint32Value());
4743 CHECK_LE(offset.Uint32Value() + type_size, start_ref_offset.Uint32Value());
4744 CHECK(!IsAligned<sizeof(mirror::HeapReference<mirror::Object>)>(offset.Uint32Value()));
4745 }
4746 } else {
4747 CHECK_EQ(current_ref_offset.Uint32Value(), offset.Uint32Value());
4748 current_ref_offset = MemberOffset(current_ref_offset.Uint32Value() +
4749 sizeof(mirror::HeapReference<mirror::Object>));
4750 }
4751 }
4752 CHECK_EQ(current_ref_offset.Uint32Value(), end_ref_offset.Uint32Value());
4753 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004754 return true;
4755}
4756
Vladimir Marko76649e82014-11-10 18:32:59 +00004757// Set the bitmap of reference instance field offsets.
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07004758void ClassLinker::CreateReferenceInstanceOffsets(Handle<mirror::Class> klass) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07004759 uint32_t reference_offsets = 0;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08004760 mirror::Class* super_class = klass->GetSuperClass();
Ian Rogerscdc1aaf2014-10-09 13:21:38 -07004761 // Leave the reference offsets as 0 for mirror::Object (the class field is handled specially).
Andreas Gampe2ed8def2014-08-28 14:41:02 -07004762 if (super_class != nullptr) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07004763 reference_offsets = super_class->GetReferenceInstanceOffsets();
Ian Rogerscdc1aaf2014-10-09 13:21:38 -07004764 // Compute reference offsets unless our superclass overflowed.
4765 if (reference_offsets != mirror::Class::kClassWalkSuper) {
4766 size_t num_reference_fields = klass->NumReferenceInstanceFieldsDuringLinking();
Vladimir Marko76649e82014-11-10 18:32:59 +00004767 if (num_reference_fields != 0u) {
4768 // All of the fields that contain object references are guaranteed be grouped in memory
4769 // starting at an appropriately aligned address after super class object data.
4770 uint32_t start_offset = RoundUp(super_class->GetObjectSize(),
4771 sizeof(mirror::HeapReference<mirror::Object>));
4772 uint32_t start_bit = (start_offset - mirror::kObjectHeaderSize) /
Ian Rogerscdc1aaf2014-10-09 13:21:38 -07004773 sizeof(mirror::HeapReference<mirror::Object>);
Vladimir Marko76649e82014-11-10 18:32:59 +00004774 if (start_bit + num_reference_fields > 32) {
Ian Rogerscdc1aaf2014-10-09 13:21:38 -07004775 reference_offsets = mirror::Class::kClassWalkSuper;
Ian Rogerscdc1aaf2014-10-09 13:21:38 -07004776 } else {
Vladimir Marko76649e82014-11-10 18:32:59 +00004777 reference_offsets |= (0xffffffffu << start_bit) &
4778 (0xffffffffu >> (32 - (start_bit + num_reference_fields)));
Ian Rogerscdc1aaf2014-10-09 13:21:38 -07004779 }
4780 }
Brian Carlstrom4873d462011-08-21 15:23:39 -07004781 }
4782 }
Mingyao Yangfaff0f02014-09-10 12:03:22 -07004783 klass->SetReferenceInstanceOffsets(reference_offsets);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004784}
4785
Mathieu Chartier590fee92013-09-13 13:46:47 -07004786mirror::String* ClassLinker::ResolveString(const DexFile& dex_file, uint32_t string_idx,
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07004787 Handle<mirror::DexCache> dex_cache) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07004788 DCHECK(dex_cache.Get() != nullptr);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08004789 mirror::String* resolved = dex_cache->GetResolvedString(string_idx);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07004790 if (resolved != nullptr) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004791 return resolved;
4792 }
Ian Rogersdfb325e2013-10-30 01:00:44 -07004793 uint32_t utf16_length;
4794 const char* utf8_data = dex_file.StringDataAndUtf16LengthByIdx(string_idx, &utf16_length);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08004795 mirror::String* string = intern_table_->InternStrong(utf16_length, utf8_data);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07004796 dex_cache->SetResolvedString(string_idx, string);
4797 return string;
4798}
4799
Mathieu Chartier590fee92013-09-13 13:46:47 -07004800mirror::Class* ClassLinker::ResolveType(const DexFile& dex_file, uint16_t type_idx,
Ian Rogersef7d42f2014-01-06 12:55:46 -08004801 mirror::Class* referrer) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07004802 StackHandleScope<2> hs(Thread::Current());
4803 Handle<mirror::DexCache> dex_cache(hs.NewHandle(referrer->GetDexCache()));
4804 Handle<mirror::ClassLoader> class_loader(hs.NewHandle(referrer->GetClassLoader()));
Mathieu Chartier590fee92013-09-13 13:46:47 -07004805 return ResolveType(dex_file, type_idx, dex_cache, class_loader);
4806}
4807
4808mirror::Class* ClassLinker::ResolveType(const DexFile& dex_file, uint16_t type_idx,
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07004809 Handle<mirror::DexCache> dex_cache,
4810 Handle<mirror::ClassLoader> class_loader) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07004811 DCHECK(dex_cache.Get() != nullptr);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08004812 mirror::Class* resolved = dex_cache->GetResolvedType(type_idx);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07004813 if (resolved == nullptr) {
Ian Rogers98379392014-02-24 16:53:16 -08004814 Thread* self = Thread::Current();
Ian Rogers0571d352011-11-03 19:51:38 -07004815 const char* descriptor = dex_file.StringByTypeIdx(type_idx);
Ian Rogers98379392014-02-24 16:53:16 -08004816 resolved = FindClass(self, descriptor, class_loader);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07004817 if (resolved != nullptr) {
Jesse Wilson254db0f2011-11-16 16:44:11 -05004818 // TODO: we used to throw here if resolved's class loader was not the
4819 // boot class loader. This was to permit different classes with the
4820 // same name to be loaded simultaneously by different loaders
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07004821 dex_cache->SetResolvedType(type_idx, resolved);
4822 } else {
Ian Rogers62d6c772013-02-27 08:32:07 -08004823 CHECK(self->IsExceptionPending())
Ian Rogerscab01012012-01-10 17:35:46 -08004824 << "Expected pending exception for failed resolution of: " << descriptor;
Ian Rogers62d6c772013-02-27 08:32:07 -08004825 // Convert a ClassNotFoundException to a NoClassDefFoundError.
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07004826 StackHandleScope<1> hs(self);
Nicolas Geoffray14691c52015-03-05 10:40:17 +00004827 Handle<mirror::Throwable> cause(hs.NewHandle(self->GetException()));
Ian Rogers62d6c772013-02-27 08:32:07 -08004828 if (cause->InstanceOf(GetClassRoot(kJavaLangClassNotFoundException))) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07004829 DCHECK(resolved == nullptr); // No Handle needed to preserve resolved.
Ian Rogers98379392014-02-24 16:53:16 -08004830 self->ClearException();
jeffhao8cd6dda2012-02-22 10:15:34 -08004831 ThrowNoClassDefFoundError("Failed resolution of: %s", descriptor);
Nicolas Geoffray14691c52015-03-05 10:40:17 +00004832 self->GetException()->SetCause(cause.Get());
jeffhao8cd6dda2012-02-22 10:15:34 -08004833 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07004834 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004835 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -07004836 DCHECK((resolved == nullptr) || resolved->IsResolved() || resolved->IsErroneous())
Brian Carlstromabcf7ae2013-09-23 22:19:52 -07004837 << PrettyDescriptor(resolved) << " " << resolved->GetStatus();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004838 return resolved;
4839}
4840
Mathieu Chartier0cd81352014-05-22 16:48:55 -07004841mirror::ArtMethod* ClassLinker::ResolveMethod(const DexFile& dex_file, uint32_t method_idx,
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07004842 Handle<mirror::DexCache> dex_cache,
4843 Handle<mirror::ClassLoader> class_loader,
4844 Handle<mirror::ArtMethod> referrer,
Ian Rogersd91d6d62013-09-25 20:26:14 -07004845 InvokeType type) {
Andreas Gampeeff0f5d2014-08-13 21:49:37 -07004846 DCHECK(dex_cache.Get() != nullptr);
Ian Rogers08f753d2012-08-24 14:35:25 -07004847 // Check for hit in the dex cache.
Brian Carlstromea46f952013-07-30 01:26:50 -07004848 mirror::ArtMethod* resolved = dex_cache->GetResolvedMethod(method_idx);
Mathieu Chartier0cd81352014-05-22 16:48:55 -07004849 if (resolved != nullptr && !resolved->IsRuntimeMethod()) {
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07004850 return resolved;
4851 }
Ian Rogers08f753d2012-08-24 14:35:25 -07004852 // Fail, get the declaring class.
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07004853 const DexFile::MethodId& method_id = dex_file.GetMethodId(method_idx);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08004854 mirror::Class* klass = ResolveType(dex_file, method_id.class_idx_, dex_cache, class_loader);
Andreas Gampeeff0f5d2014-08-13 21:49:37 -07004855 if (klass == nullptr) {
Elliott Hughescc5f9a92011-09-28 19:17:29 -07004856 DCHECK(Thread::Current()->IsExceptionPending());
Andreas Gampeeff0f5d2014-08-13 21:49:37 -07004857 return nullptr;
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07004858 }
Ian Rogers08f753d2012-08-24 14:35:25 -07004859 // Scan using method_idx, this saves string compares but will only hit for matching dex
4860 // caches/files.
4861 switch (type) {
4862 case kDirect: // Fall-through.
4863 case kStatic:
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07004864 resolved = klass->FindDirectMethod(dex_cache.Get(), method_idx);
Ian Rogers08f753d2012-08-24 14:35:25 -07004865 break;
4866 case kInterface:
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07004867 resolved = klass->FindInterfaceMethod(dex_cache.Get(), method_idx);
Andreas Gampeeff0f5d2014-08-13 21:49:37 -07004868 DCHECK(resolved == nullptr || resolved->GetDeclaringClass()->IsInterface());
Ian Rogers08f753d2012-08-24 14:35:25 -07004869 break;
4870 case kSuper: // Fall-through.
4871 case kVirtual:
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07004872 resolved = klass->FindVirtualMethod(dex_cache.Get(), method_idx);
Ian Rogers08f753d2012-08-24 14:35:25 -07004873 break;
4874 default:
4875 LOG(FATAL) << "Unreachable - invocation type: " << type;
Ian Rogers2c4257b2014-10-24 14:20:06 -07004876 UNREACHABLE();
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07004877 }
Andreas Gampeeff0f5d2014-08-13 21:49:37 -07004878 if (resolved == nullptr) {
Ian Rogers08f753d2012-08-24 14:35:25 -07004879 // Search by name, which works across dex files.
Ian Rogers7b0c5b42012-02-16 15:29:07 -08004880 const char* name = dex_file.StringDataByIdx(method_id.name_idx_);
Ian Rogersd91d6d62013-09-25 20:26:14 -07004881 const Signature signature = dex_file.GetMethodSignature(method_id);
Ian Rogers08f753d2012-08-24 14:35:25 -07004882 switch (type) {
4883 case kDirect: // Fall-through.
4884 case kStatic:
jeffhao8cd6dda2012-02-22 10:15:34 -08004885 resolved = klass->FindDirectMethod(name, signature);
Ian Rogers08f753d2012-08-24 14:35:25 -07004886 break;
4887 case kInterface:
4888 resolved = klass->FindInterfaceMethod(name, signature);
Andreas Gampeeff0f5d2014-08-13 21:49:37 -07004889 DCHECK(resolved == nullptr || resolved->GetDeclaringClass()->IsInterface());
Ian Rogers08f753d2012-08-24 14:35:25 -07004890 break;
4891 case kSuper: // Fall-through.
4892 case kVirtual:
4893 resolved = klass->FindVirtualMethod(name, signature);
4894 break;
Ian Rogers7b0c5b42012-02-16 15:29:07 -08004895 }
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07004896 }
Andreas Gampeeff0f5d2014-08-13 21:49:37 -07004897 // If we found a method, check for incompatible class changes.
4898 if (LIKELY(resolved != nullptr && !resolved->CheckIncompatibleClassChange(type))) {
Ian Rogers08f753d2012-08-24 14:35:25 -07004899 // Be a good citizen and update the dex cache to speed subsequent calls.
4900 dex_cache->SetResolvedMethod(method_idx, resolved);
4901 return resolved;
4902 } else {
Andreas Gampeeff0f5d2014-08-13 21:49:37 -07004903 // If we had a method, it's an incompatible-class-change error.
4904 if (resolved != nullptr) {
4905 ThrowIncompatibleClassChangeError(type, resolved->GetInvokeType(), resolved, referrer.Get());
4906 } else {
4907 // We failed to find the method which means either an access error, an incompatible class
4908 // change, or no such method. First try to find the method among direct and virtual methods.
4909 const char* name = dex_file.StringDataByIdx(method_id.name_idx_);
4910 const Signature signature = dex_file.GetMethodSignature(method_id);
4911 switch (type) {
4912 case kDirect:
4913 case kStatic:
Ian Rogers08f753d2012-08-24 14:35:25 -07004914 resolved = klass->FindVirtualMethod(name, signature);
Andreas Gampeeff0f5d2014-08-13 21:49:37 -07004915 // Note: kDirect and kStatic are also mutually exclusive, but in that case we would
4916 // have had a resolved method before, which triggers the "true" branch above.
4917 break;
4918 case kInterface:
4919 case kVirtual:
4920 case kSuper:
4921 resolved = klass->FindDirectMethod(name, signature);
4922 break;
4923 }
4924
4925 // If we found something, check that it can be accessed by the referrer.
Ian Rogerse0a02da2014-12-02 14:10:53 -08004926 bool exception_generated = false;
Andreas Gampeeff0f5d2014-08-13 21:49:37 -07004927 if (resolved != nullptr && referrer.Get() != nullptr) {
4928 mirror::Class* methods_class = resolved->GetDeclaringClass();
4929 mirror::Class* referring_class = referrer->GetDeclaringClass();
4930 if (!referring_class->CanAccess(methods_class)) {
4931 ThrowIllegalAccessErrorClassForMethodDispatch(referring_class, methods_class,
4932 resolved, type);
Ian Rogerse0a02da2014-12-02 14:10:53 -08004933 exception_generated = true;
Andreas Gampeeff0f5d2014-08-13 21:49:37 -07004934 } else if (!referring_class->CanAccessMember(methods_class,
4935 resolved->GetAccessFlags())) {
4936 ThrowIllegalAccessErrorMethod(referring_class, resolved);
Ian Rogerse0a02da2014-12-02 14:10:53 -08004937 exception_generated = true;
Andreas Gampeeff0f5d2014-08-13 21:49:37 -07004938 }
4939 }
Ian Rogerse0a02da2014-12-02 14:10:53 -08004940 if (!exception_generated) {
4941 // Otherwise, throw an IncompatibleClassChangeError if we found something, and check
4942 // interface methods and throw if we find the method there. If we find nothing, throw a
4943 // NoSuchMethodError.
4944 switch (type) {
4945 case kDirect:
4946 case kStatic:
Andreas Gampeeff0f5d2014-08-13 21:49:37 -07004947 if (resolved != nullptr) {
4948 ThrowIncompatibleClassChangeError(type, kVirtual, resolved, referrer.Get());
4949 } else {
Ian Rogerse0a02da2014-12-02 14:10:53 -08004950 resolved = klass->FindInterfaceMethod(name, signature);
4951 if (resolved != nullptr) {
4952 ThrowIncompatibleClassChangeError(type, kInterface, resolved, referrer.Get());
4953 } else {
4954 ThrowNoSuchMethodError(type, klass, name, signature);
4955 }
Andreas Gampeeff0f5d2014-08-13 21:49:37 -07004956 }
Ian Rogerse0a02da2014-12-02 14:10:53 -08004957 break;
4958 case kInterface:
Andreas Gampeeff0f5d2014-08-13 21:49:37 -07004959 if (resolved != nullptr) {
Ian Rogerse0a02da2014-12-02 14:10:53 -08004960 ThrowIncompatibleClassChangeError(type, kDirect, resolved, referrer.Get());
4961 } else {
4962 resolved = klass->FindVirtualMethod(name, signature);
4963 if (resolved != nullptr) {
4964 ThrowIncompatibleClassChangeError(type, kVirtual, resolved, referrer.Get());
4965 } else {
4966 ThrowNoSuchMethodError(type, klass, name, signature);
4967 }
4968 }
4969 break;
4970 case kSuper:
4971 if (resolved != nullptr) {
4972 ThrowIncompatibleClassChangeError(type, kDirect, resolved, referrer.Get());
Andreas Gampeeff0f5d2014-08-13 21:49:37 -07004973 } else {
4974 ThrowNoSuchMethodError(type, klass, name, signature);
4975 }
Ian Rogerse0a02da2014-12-02 14:10:53 -08004976 break;
4977 case kVirtual:
4978 if (resolved != nullptr) {
4979 ThrowIncompatibleClassChangeError(type, kDirect, resolved, referrer.Get());
4980 } else {
4981 resolved = klass->FindInterfaceMethod(name, signature);
4982 if (resolved != nullptr) {
4983 ThrowIncompatibleClassChangeError(type, kInterface, resolved, referrer.Get());
4984 } else {
4985 ThrowNoSuchMethodError(type, klass, name, signature);
4986 }
4987 }
4988 break;
4989 }
Andreas Gampeeff0f5d2014-08-13 21:49:37 -07004990 }
Ian Rogers08f753d2012-08-24 14:35:25 -07004991 }
Ian Rogerse0a02da2014-12-02 14:10:53 -08004992 Thread::Current()->AssertPendingException();
Andreas Gampeeff0f5d2014-08-13 21:49:37 -07004993 return nullptr;
Ian Rogers08f753d2012-08-24 14:35:25 -07004994 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004995}
4996
Mathieu Chartier590fee92013-09-13 13:46:47 -07004997mirror::ArtField* ClassLinker::ResolveField(const DexFile& dex_file, uint32_t field_idx,
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07004998 Handle<mirror::DexCache> dex_cache,
4999 Handle<mirror::ClassLoader> class_loader,
Brian Carlstrome8104522013-10-15 21:56:36 -07005000 bool is_static) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07005001 DCHECK(dex_cache.Get() != nullptr);
Brian Carlstromea46f952013-07-30 01:26:50 -07005002 mirror::ArtField* resolved = dex_cache->GetResolvedField(field_idx);
Andreas Gampe58a5af82014-07-31 16:23:49 -07005003 if (resolved != nullptr) {
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07005004 return resolved;
5005 }
5006 const DexFile::FieldId& field_id = dex_file.GetFieldId(field_idx);
Mathieu Chartierf8322842014-05-16 10:59:25 -07005007 Thread* const self = Thread::Current();
5008 StackHandleScope<1> hs(self);
5009 Handle<mirror::Class> klass(
5010 hs.NewHandle(ResolveType(dex_file, field_id.class_idx_, dex_cache, class_loader)));
Andreas Gampe58a5af82014-07-31 16:23:49 -07005011 if (klass.Get() == nullptr) {
Ian Rogers9f1ab122011-12-12 08:52:43 -08005012 DCHECK(Thread::Current()->IsExceptionPending());
Andreas Gampe58a5af82014-07-31 16:23:49 -07005013 return nullptr;
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07005014 }
5015
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07005016 if (is_static) {
Mathieu Chartierf8322842014-05-16 10:59:25 -07005017 resolved = mirror::Class::FindStaticField(self, klass, dex_cache.Get(), field_idx);
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07005018 } else {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07005019 resolved = klass->FindInstanceField(dex_cache.Get(), field_idx);
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07005020 }
Ian Rogers7b0c5b42012-02-16 15:29:07 -08005021
Andreas Gampe58a5af82014-07-31 16:23:49 -07005022 if (resolved == nullptr) {
Ian Rogers7b0c5b42012-02-16 15:29:07 -08005023 const char* name = dex_file.GetFieldName(field_id);
5024 const char* type = dex_file.GetFieldTypeDescriptor(field_id);
5025 if (is_static) {
Mathieu Chartierf8322842014-05-16 10:59:25 -07005026 resolved = mirror::Class::FindStaticField(self, klass, name, type);
Ian Rogers7b0c5b42012-02-16 15:29:07 -08005027 } else {
5028 resolved = klass->FindInstanceField(name, type);
5029 }
Andreas Gampe58a5af82014-07-31 16:23:49 -07005030 if (resolved == nullptr) {
Mathieu Chartierf8322842014-05-16 10:59:25 -07005031 ThrowNoSuchFieldError(is_static ? "static " : "instance ", klass.Get(), type, name);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07005032 return nullptr;
Ian Rogers7b0c5b42012-02-16 15:29:07 -08005033 }
Ian Rogersb067ac22011-12-13 18:05:09 -08005034 }
Ian Rogers7b0c5b42012-02-16 15:29:07 -08005035 dex_cache->SetResolvedField(field_idx, resolved);
Ian Rogersb067ac22011-12-13 18:05:09 -08005036 return resolved;
5037}
5038
Brian Carlstromea46f952013-07-30 01:26:50 -07005039mirror::ArtField* ClassLinker::ResolveFieldJLS(const DexFile& dex_file,
Ian Rogersfc0e94b2013-09-23 23:51:32 -07005040 uint32_t field_idx,
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07005041 Handle<mirror::DexCache> dex_cache,
5042 Handle<mirror::ClassLoader> class_loader) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07005043 DCHECK(dex_cache.Get() != nullptr);
Brian Carlstromea46f952013-07-30 01:26:50 -07005044 mirror::ArtField* resolved = dex_cache->GetResolvedField(field_idx);
Andreas Gampe58a5af82014-07-31 16:23:49 -07005045 if (resolved != nullptr) {
Ian Rogersb067ac22011-12-13 18:05:09 -08005046 return resolved;
5047 }
5048 const DexFile::FieldId& field_id = dex_file.GetFieldId(field_idx);
Mathieu Chartierf8322842014-05-16 10:59:25 -07005049 Thread* self = Thread::Current();
5050 StackHandleScope<1> hs(self);
5051 Handle<mirror::Class> klass(
5052 hs.NewHandle(ResolveType(dex_file, field_id.class_idx_, dex_cache, class_loader)));
Andreas Gampe2ed8def2014-08-28 14:41:02 -07005053 if (klass.Get() == nullptr) {
Ian Rogersb067ac22011-12-13 18:05:09 -08005054 DCHECK(Thread::Current()->IsExceptionPending());
Andreas Gampe2ed8def2014-08-28 14:41:02 -07005055 return nullptr;
Ian Rogersb067ac22011-12-13 18:05:09 -08005056 }
5057
Ian Rogersdfb325e2013-10-30 01:00:44 -07005058 StringPiece name(dex_file.StringDataByIdx(field_id.name_idx_));
5059 StringPiece type(dex_file.StringDataByIdx(
Ian Rogersfc0e94b2013-09-23 23:51:32 -07005060 dex_file.GetTypeId(field_id.type_idx_).descriptor_idx_));
Mathieu Chartierf8322842014-05-16 10:59:25 -07005061 resolved = mirror::Class::FindField(self, klass, name, type);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07005062 if (resolved != nullptr) {
Ian Rogersb067ac22011-12-13 18:05:09 -08005063 dex_cache->SetResolvedField(field_idx, resolved);
5064 } else {
Mathieu Chartierf8322842014-05-16 10:59:25 -07005065 ThrowNoSuchFieldError("", klass.Get(), type, name);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07005066 }
5067 return resolved;
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07005068}
5069
Brian Carlstromea46f952013-07-30 01:26:50 -07005070const char* ClassLinker::MethodShorty(uint32_t method_idx, mirror::ArtMethod* referrer,
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08005071 uint32_t* length) {
5072 mirror::Class* declaring_class = referrer->GetDeclaringClass();
5073 mirror::DexCache* dex_cache = declaring_class->GetDexCache();
Ian Rogers4445a7e2012-10-05 17:19:13 -07005074 const DexFile& dex_file = *dex_cache->GetDexFile();
Ian Rogersad25ac52011-10-04 19:13:33 -07005075 const DexFile::MethodId& method_id = dex_file.GetMethodId(method_idx);
Ian Rogers19846512012-02-24 11:42:47 -08005076 return dex_file.GetMethodShorty(method_id, length);
Ian Rogersad25ac52011-10-04 19:13:33 -07005077}
5078
Ian Rogers7dfb28c2013-08-22 08:18:36 -07005079void ClassLinker::DumpAllClasses(int flags) {
5080 if (dex_cache_image_class_lookup_required_) {
5081 MoveImageClassesToClassTable();
5082 }
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07005083 // TODO: at the time this was written, it wasn't safe to call PrettyField with the ClassLinker
5084 // 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 -08005085 std::vector<mirror::Class*> all_classes;
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07005086 {
Ian Rogers1bf8d4d2013-05-30 00:18:49 -07005087 ReaderMutexLock mu(Thread::Current(), *Locks::classlinker_classes_lock_);
Mathieu Chartierc2e20622014-11-03 11:41:47 -08005088 for (GcRoot<mirror::Class>& it : class_table_) {
5089 all_classes.push_back(it.Read());
Ian Rogers5d76c432011-10-31 21:42:49 -07005090 }
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07005091 }
5092
5093 for (size_t i = 0; i < all_classes.size(); ++i) {
5094 all_classes[i]->DumpClass(std::cerr, flags);
5095 }
5096}
5097
Elliott Hughes956af0f2014-12-11 14:34:28 -08005098static OatFile::OatMethod CreateOatMethod(const void* code) {
Ian Rogers6f3dbba2014-10-14 17:41:57 -07005099 CHECK(code != nullptr);
Mathieu Chartier957ca1c2014-11-21 16:51:29 -08005100 const uint8_t* base = reinterpret_cast<const uint8_t*>(code); // Base of data points at code.
5101 base -= sizeof(void*); // Move backward so that code_offset != 0.
5102 const uint32_t code_offset = sizeof(void*);
5103 return OatFile::OatMethod(base, code_offset);
Ian Rogers6f3dbba2014-10-14 17:41:57 -07005104}
5105
Ian Rogers6f3dbba2014-10-14 17:41:57 -07005106bool ClassLinker::IsQuickResolutionStub(const void* entry_point) const {
5107 return (entry_point == GetQuickResolutionStub()) ||
5108 (quick_resolution_trampoline_ == entry_point);
5109}
5110
Ian Rogers6f3dbba2014-10-14 17:41:57 -07005111bool ClassLinker::IsQuickToInterpreterBridge(const void* entry_point) const {
5112 return (entry_point == GetQuickToInterpreterBridge()) ||
5113 (quick_to_interpreter_bridge_trampoline_ == entry_point);
5114}
5115
5116bool ClassLinker::IsQuickGenericJniStub(const void* entry_point) const {
5117 return (entry_point == GetQuickGenericJniStub()) ||
5118 (quick_generic_jni_trampoline_ == entry_point);
5119}
5120
5121const void* ClassLinker::GetRuntimeQuickGenericJniStub() const {
5122 return GetQuickGenericJniStub();
5123}
5124
Elliott Hughes956af0f2014-12-11 14:34:28 -08005125void ClassLinker::SetEntryPointsToCompiledCode(mirror::ArtMethod* method,
5126 const void* method_code) const {
5127 OatFile::OatMethod oat_method = CreateOatMethod(method_code);
Ian Rogers6f3dbba2014-10-14 17:41:57 -07005128 oat_method.LinkMethod(method);
5129 method->SetEntryPointFromInterpreter(artInterpreterToCompiledCodeBridge);
Ian Rogers6f3dbba2014-10-14 17:41:57 -07005130}
5131
5132void ClassLinker::SetEntryPointsToInterpreter(mirror::ArtMethod* method) const {
5133 if (!method->IsNative()) {
5134 method->SetEntryPointFromInterpreter(artInterpreterToInterpreterBridge);
Ian Rogers6f3dbba2014-10-14 17:41:57 -07005135 method->SetEntryPointFromQuickCompiledCode(GetQuickToInterpreterBridge());
5136 } else {
5137 const void* quick_method_code = GetQuickGenericJniStub();
Elliott Hughes956af0f2014-12-11 14:34:28 -08005138 OatFile::OatMethod oat_method = CreateOatMethod(quick_method_code);
Ian Rogers6f3dbba2014-10-14 17:41:57 -07005139 oat_method.LinkMethod(method);
5140 method->SetEntryPointFromInterpreter(artInterpreterToCompiledCodeBridge);
Ian Rogers6f3dbba2014-10-14 17:41:57 -07005141 }
5142}
5143
Ian Rogers7dfb28c2013-08-22 08:18:36 -07005144void ClassLinker::DumpForSigQuit(std::ostream& os) {
Ian Rogers7b078e82014-09-10 14:44:24 -07005145 Thread* self = Thread::Current();
Ian Rogers7dfb28c2013-08-22 08:18:36 -07005146 if (dex_cache_image_class_lookup_required_) {
Ian Rogers7b078e82014-09-10 14:44:24 -07005147 ScopedObjectAccess soa(self);
Ian Rogers7dfb28c2013-08-22 08:18:36 -07005148 MoveImageClassesToClassTable();
5149 }
Ian Rogers7b078e82014-09-10 14:44:24 -07005150 ReaderMutexLock mu(self, *Locks::classlinker_classes_lock_);
Mathieu Chartierc2e20622014-11-03 11:41:47 -08005151 os << "Zygote loaded classes=" << pre_zygote_class_table_.Size() << " post zygote classes="
5152 << class_table_.Size() << "\n";
Elliott Hughescac6cc72011-11-03 20:31:21 -07005153}
5154
Ian Rogers7dfb28c2013-08-22 08:18:36 -07005155size_t ClassLinker::NumLoadedClasses() {
5156 if (dex_cache_image_class_lookup_required_) {
5157 MoveImageClassesToClassTable();
5158 }
Ian Rogers1bf8d4d2013-05-30 00:18:49 -07005159 ReaderMutexLock mu(Thread::Current(), *Locks::classlinker_classes_lock_);
Mathieu Chartierc2e20622014-11-03 11:41:47 -08005160 // Only return non zygote classes since these are the ones which apps which care about.
5161 return class_table_.Size();
Elliott Hughese27955c2011-08-26 15:21:24 -07005162}
5163
Brian Carlstrom47d237a2011-10-18 15:08:33 -07005164pid_t ClassLinker::GetClassesLockOwner() {
Ian Rogersb726dcb2012-09-05 08:57:23 -07005165 return Locks::classlinker_classes_lock_->GetExclusiveOwnerTid();
Brian Carlstrom47d237a2011-10-18 15:08:33 -07005166}
5167
5168pid_t ClassLinker::GetDexLockOwner() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07005169 return dex_lock_.GetExclusiveOwnerTid();
Brian Carlstrom24a3c2e2011-10-17 18:07:52 -07005170}
5171
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08005172void ClassLinker::SetClassRoot(ClassRoot class_root, mirror::Class* klass) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08005173 DCHECK(!init_done_);
5174
Andreas Gampe2ed8def2014-08-28 14:41:02 -07005175 DCHECK(klass != nullptr);
5176 DCHECK(klass->GetClassLoader() == nullptr);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08005177
Hiroshi Yamauchi94f7b492014-07-22 18:08:23 -07005178 mirror::ObjectArray<mirror::Class>* class_roots = class_roots_.Read();
Andreas Gampe2ed8def2014-08-28 14:41:02 -07005179 DCHECK(class_roots != nullptr);
5180 DCHECK(class_roots->Get(class_root) == nullptr);
Hiroshi Yamauchie9e3e692014-06-24 14:31:37 -07005181 class_roots->Set<false>(class_root, klass);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08005182}
5183
Ian Rogers6f3dbba2014-10-14 17:41:57 -07005184const char* ClassLinker::GetClassRootDescriptor(ClassRoot class_root) {
5185 static const char* class_roots_descriptors[] = {
5186 "Ljava/lang/Class;",
5187 "Ljava/lang/Object;",
5188 "[Ljava/lang/Class;",
5189 "[Ljava/lang/Object;",
5190 "Ljava/lang/String;",
5191 "Ljava/lang/DexCache;",
5192 "Ljava/lang/ref/Reference;",
5193 "Ljava/lang/reflect/ArtField;",
5194 "Ljava/lang/reflect/ArtMethod;",
Mathieu Chartierdaaf3262015-03-24 13:30:28 -07005195 "Ljava/lang/reflect/Field;",
Ian Rogers6f3dbba2014-10-14 17:41:57 -07005196 "Ljava/lang/reflect/Proxy;",
5197 "[Ljava/lang/String;",
5198 "[Ljava/lang/reflect/ArtField;",
5199 "[Ljava/lang/reflect/ArtMethod;",
Mathieu Chartierdaaf3262015-03-24 13:30:28 -07005200 "[Ljava/lang/reflect/Field;",
Ian Rogers6f3dbba2014-10-14 17:41:57 -07005201 "Ljava/lang/ClassLoader;",
5202 "Ljava/lang/Throwable;",
5203 "Ljava/lang/ClassNotFoundException;",
5204 "Ljava/lang/StackTraceElement;",
5205 "Z",
5206 "B",
5207 "C",
5208 "D",
5209 "F",
5210 "I",
5211 "J",
5212 "S",
5213 "V",
5214 "[Z",
5215 "[B",
5216 "[C",
5217 "[D",
5218 "[F",
5219 "[I",
5220 "[J",
5221 "[S",
5222 "[Ljava/lang/StackTraceElement;",
5223 };
Andreas Gampe575e78c2014-11-03 23:41:03 -08005224 static_assert(arraysize(class_roots_descriptors) == size_t(kClassRootsMax),
5225 "Mismatch between class descriptors and class-root enum");
Ian Rogers6f3dbba2014-10-14 17:41:57 -07005226
5227 const char* descriptor = class_roots_descriptors[class_root];
5228 CHECK(descriptor != nullptr);
5229 return descriptor;
5230}
5231
Mathieu Chartierc2e20622014-11-03 11:41:47 -08005232std::size_t ClassLinker::ClassDescriptorHashEquals::operator()(const GcRoot<mirror::Class>& root)
5233 const {
5234 std::string temp;
Mathieu Chartiere7c9a8c2014-11-06 16:35:45 -08005235 return ComputeModifiedUtf8Hash(root.Read()->GetDescriptor(&temp));
Mathieu Chartierc2e20622014-11-03 11:41:47 -08005236}
5237
5238bool ClassLinker::ClassDescriptorHashEquals::operator()(const GcRoot<mirror::Class>& a,
Mathieu Chartier47f867a2015-03-18 10:39:00 -07005239 const GcRoot<mirror::Class>& b) const {
Mathieu Chartierc2e20622014-11-03 11:41:47 -08005240 if (a.Read()->GetClassLoader() != b.Read()->GetClassLoader()) {
5241 return false;
5242 }
5243 std::string temp;
5244 return a.Read()->DescriptorEquals(b.Read()->GetDescriptor(&temp));
5245}
5246
5247std::size_t ClassLinker::ClassDescriptorHashEquals::operator()(
5248 const std::pair<const char*, mirror::ClassLoader*>& element) const {
Mathieu Chartiere7c9a8c2014-11-06 16:35:45 -08005249 return ComputeModifiedUtf8Hash(element.first);
Mathieu Chartierc2e20622014-11-03 11:41:47 -08005250}
5251
5252bool ClassLinker::ClassDescriptorHashEquals::operator()(
Mathieu Chartier47f867a2015-03-18 10:39:00 -07005253 const GcRoot<mirror::Class>& a, const std::pair<const char*, mirror::ClassLoader*>& b) const {
Mathieu Chartierc2e20622014-11-03 11:41:47 -08005254 if (a.Read()->GetClassLoader() != b.second) {
5255 return false;
5256 }
5257 return a.Read()->DescriptorEquals(b.first);
5258}
5259
5260bool ClassLinker::ClassDescriptorHashEquals::operator()(const GcRoot<mirror::Class>& a,
Mathieu Chartier47f867a2015-03-18 10:39:00 -07005261 const char* descriptor) const {
Mathieu Chartierc2e20622014-11-03 11:41:47 -08005262 return a.Read()->DescriptorEquals(descriptor);
5263}
5264
5265std::size_t ClassLinker::ClassDescriptorHashEquals::operator()(const char* descriptor) const {
Mathieu Chartiere7c9a8c2014-11-06 16:35:45 -08005266 return ComputeModifiedUtf8Hash(descriptor);
Mathieu Chartierc2e20622014-11-03 11:41:47 -08005267}
5268
Sebastien Hertz6963e442014-11-26 22:11:27 +01005269bool ClassLinker::MayBeCalledWithDirectCodePointer(mirror::ArtMethod* m) {
Mathieu Chartierd8565452015-03-26 09:41:50 -07005270 if (Runtime::Current()->UseJit()) {
5271 // JIT can have direct code pointers from any method to any other method.
5272 return true;
5273 }
Sebastien Hertz6963e442014-11-26 22:11:27 +01005274 // Non-image methods don't use direct code pointer.
5275 if (!m->GetDeclaringClass()->IsBootStrapClassLoaded()) {
5276 return false;
5277 }
5278 if (m->IsPrivate()) {
5279 // The method can only be called inside its own oat file. Therefore it won't be called using
5280 // its direct code if the oat file has been compiled in PIC mode.
Sebastien Hertz6963e442014-11-26 22:11:27 +01005281 const DexFile& dex_file = m->GetDeclaringClass()->GetDexFile();
Richard Uhler07b3c232015-03-31 15:57:54 -07005282 const OatFile::OatDexFile* oat_dex_file = dex_file.GetOatDexFile();
Sebastien Hertz6963e442014-11-26 22:11:27 +01005283 if (oat_dex_file == nullptr) {
5284 // No oat file: the method has not been compiled.
5285 return false;
5286 }
5287 const OatFile* oat_file = oat_dex_file->GetOatFile();
5288 return oat_file != nullptr && !oat_file->IsPic();
5289 } else {
5290 // The method can be called outside its own oat file. Therefore it won't be called using its
5291 // direct code pointer only if all loaded oat files have been compiled in PIC mode.
5292 ReaderMutexLock mu(Thread::Current(), dex_lock_);
5293 for (const OatFile* oat_file : oat_files_) {
5294 if (!oat_file->IsPic()) {
5295 return true;
5296 }
5297 }
5298 return false;
5299 }
5300}
5301
Andreas Gampe81c6f8d2015-03-25 17:19:53 -07005302jobject ClassLinker::CreatePathClassLoader(Thread* self, std::vector<const DexFile*>& dex_files) {
5303 // SOAAlreadyRunnable is protected, and we need something to add a global reference.
5304 // We could move the jobject to the callers, but all call-sites do this...
5305 ScopedObjectAccessUnchecked soa(self);
5306
5307 // Register the dex files.
5308 for (const DexFile* dex_file : dex_files) {
5309 RegisterDexFile(*dex_file);
5310 }
5311
5312 // For now, create a libcore-level DexFile for each ART DexFile. This "explodes" multidex.
5313 StackHandleScope<11> hs(self);
5314
5315 Handle<mirror::ArtField> h_dex_elements_field =
5316 hs.NewHandle(soa.DecodeField(WellKnownClasses::dalvik_system_DexPathList_dexElements));
5317
Mathieu Chartierdaaf3262015-03-24 13:30:28 -07005318 mirror::Class* dex_elements_class = h_dex_elements_field->GetType<true>();
Andreas Gampe81c6f8d2015-03-25 17:19:53 -07005319 DCHECK(dex_elements_class != nullptr);
5320 DCHECK(dex_elements_class->IsArrayClass());
Mathieu Chartierdaaf3262015-03-24 13:30:28 -07005321 Handle<mirror::ObjectArray<mirror::Object>> h_dex_elements(hs.NewHandle(
5322 mirror::ObjectArray<mirror::Object>::Alloc(self, dex_elements_class, dex_files.size())));
Andreas Gampe81c6f8d2015-03-25 17:19:53 -07005323 Handle<mirror::Class> h_dex_element_class =
5324 hs.NewHandle(dex_elements_class->GetComponentType());
5325
5326 Handle<mirror::ArtField> h_element_file_field =
5327 hs.NewHandle(
5328 soa.DecodeField(WellKnownClasses::dalvik_system_DexPathList__Element_dexFile));
5329 DCHECK_EQ(h_dex_element_class.Get(), h_element_file_field->GetDeclaringClass());
5330
5331 Handle<mirror::ArtField> h_cookie_field =
5332 hs.NewHandle(soa.DecodeField(WellKnownClasses::dalvik_system_DexFile_cookie));
Mathieu Chartierdaaf3262015-03-24 13:30:28 -07005333 DCHECK_EQ(h_cookie_field->GetDeclaringClass(), h_element_file_field->GetType<false>());
Andreas Gampe81c6f8d2015-03-25 17:19:53 -07005334
5335 // Fill the elements array.
5336 int32_t index = 0;
5337 for (const DexFile* dex_file : dex_files) {
5338 StackHandleScope<3> hs2(self);
5339
5340 Handle<mirror::LongArray> h_long_array = hs2.NewHandle(mirror::LongArray::Alloc(self, 1));
5341 DCHECK(h_long_array.Get() != nullptr);
5342 h_long_array->Set(0, reinterpret_cast<intptr_t>(dex_file));
5343
5344 Handle<mirror::Object> h_dex_file = hs2.NewHandle(
5345 h_cookie_field->GetDeclaringClass()->AllocObject(self));
5346 DCHECK(h_dex_file.Get() != nullptr);
5347 h_cookie_field->SetObject<false>(h_dex_file.Get(), h_long_array.Get());
5348
5349 Handle<mirror::Object> h_element = hs2.NewHandle(h_dex_element_class->AllocObject(self));
5350 DCHECK(h_element.Get() != nullptr);
5351 h_element_file_field->SetObject<false>(h_element.Get(), h_dex_file.Get());
5352
5353 h_dex_elements->Set(index, h_element.Get());
5354 index++;
5355 }
5356 DCHECK_EQ(index, h_dex_elements->GetLength());
5357
5358 // Create DexPathList.
5359 Handle<mirror::Object> h_dex_path_list = hs.NewHandle(
5360 h_dex_elements_field->GetDeclaringClass()->AllocObject(self));
5361 DCHECK(h_dex_path_list.Get() != nullptr);
5362 // Set elements.
5363 h_dex_elements_field->SetObject<false>(h_dex_path_list.Get(), h_dex_elements.Get());
5364
5365 // Create PathClassLoader.
5366 Handle<mirror::Class> h_path_class_class = hs.NewHandle(
5367 soa.Decode<mirror::Class*>(WellKnownClasses::dalvik_system_PathClassLoader));
5368 Handle<mirror::Object> h_path_class_loader = hs.NewHandle(
5369 h_path_class_class->AllocObject(self));
5370 DCHECK(h_path_class_loader.Get() != nullptr);
5371 // Set DexPathList.
5372 Handle<mirror::ArtField> h_path_list_field = hs.NewHandle(
5373 soa.DecodeField(WellKnownClasses::dalvik_system_PathClassLoader_pathList));
5374 DCHECK(h_path_list_field.Get() != nullptr);
5375 h_path_list_field->SetObject<false>(h_path_class_loader.Get(), h_dex_path_list.Get());
5376
5377 // Make a pretend boot-classpath.
5378 // TODO: Should we scan the image?
5379 Handle<mirror::ArtField> h_parent_field = hs.NewHandle(
5380 mirror::Class::FindField(self, hs.NewHandle(h_path_class_loader->GetClass()), "parent",
5381 "Ljava/lang/ClassLoader;"));
5382 DCHECK(h_parent_field.Get() != nullptr);
5383 mirror::Object* boot_cl =
5384 soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_BootClassLoader)->AllocObject(self);
5385 h_parent_field->SetObject<false>(h_path_class_loader.Get(), boot_cl);
5386
5387 // Make it a global ref and return.
5388 ScopedLocalRef<jobject> local_ref(
5389 soa.Env(), soa.Env()->AddLocalReference<jobject>(h_path_class_loader.Get()));
5390 return soa.Env()->NewGlobalRef(local_ref.get());
5391}
5392
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07005393} // namespace art