blob: bd5e18493ea2d45ce9cf26d724d5098b2f10bac9 [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
Andreas Gampe8cf9cb32017-07-19 09:28:38 -070019#include <unistd.h>
20
Alex Lighteb7c1442015-08-31 13:17:42 -070021#include <algorithm>
Brian Carlstromdbc05252011-09-09 01:59:59 -070022#include <deque>
Ian Rogerscf7f1912014-10-22 22:06:39 -070023#include <iostream>
Vladimir Marko21300532017-01-24 18:06:55 +000024#include <map>
Ian Rogers700a4022014-05-19 16:49:03 -070025#include <memory>
Fred Shih381e4ca2014-08-25 17:24:27 -070026#include <queue>
Ian Rogers0cfe1fb2011-08-26 03:29:44 -070027#include <string>
Alex Lighteb7c1442015-08-31 13:17:42 -070028#include <tuple>
Alex Lighteb7c1442015-08-31 13:17:42 -070029#include <unordered_map>
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070030#include <utility>
Elliott Hughes90a33692011-08-30 13:27:07 -070031#include <vector>
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070032
Andreas Gampe46ee31b2016-12-14 10:11:49 -080033#include "android-base/stringprintf.h"
34
Mathieu Chartierc7853442015-03-27 14:35:38 -070035#include "art_field-inl.h"
Mathieu Chartiere401d142015-04-22 13:56:20 -070036#include "art_method-inl.h"
37#include "base/arena_allocator.h"
Elliott Hughes1aa246d2012-12-13 09:29:36 -080038#include "base/casts.h"
Elliott Hughes07ed66b2012-12-12 18:34:25 -080039#include "base/logging.h"
Mathieu Chartiere401d142015-04-22 13:56:20 -070040#include "base/scoped_arena_containers.h"
Narayan Kamathd1c606f2014-06-09 16:50:19 +010041#include "base/scoped_flock.h"
Elliott Hughes1aa246d2012-12-13 09:29:36 -080042#include "base/stl_util.h"
Mathieu Chartier32ce2ad2016-03-04 14:58:03 -080043#include "base/systrace.h"
Vladimir Marko80afd022015-05-19 18:08:00 +010044#include "base/time_utils.h"
Elliott Hughes76160052012-12-12 16:31:20 -080045#include "base/unix_file/fd_file.h"
Andreas Gampeb9aec2c2015-04-23 22:23:47 -070046#include "base/value_object.h"
Mingyao Yang063fc772016-08-02 11:02:54 -070047#include "cha.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080048#include "class_linker-inl.h"
Calin Juravle57d0acc2017-07-11 17:41:30 -070049#include "class_loader_utils.h"
Mathieu Chartiere4275c02015-08-06 15:34:15 -070050#include "class_table-inl.h"
Vladimir Marko2b5eaa22013-12-13 13:59:30 +000051#include "compiler_callbacks.h"
Elliott Hughes4740cdf2011-12-07 14:07:12 -080052#include "debugger.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070053#include "dex_file-inl.h"
Mathieu Chartier79c87da2017-10-10 11:54:29 -070054#include "dex_file_loader.h"
Mathieu Chartiere58991b2015-10-13 07:59:34 -070055#include "entrypoints/entrypoint_utils.h"
Ian Rogers6f3dbba2014-10-14 17:41:57 -070056#include "entrypoints/runtime_asm_entrypoints.h"
Alex Light705ad492015-09-21 11:36:30 -070057#include "experimental_flags.h"
Ian Rogers1d54e732013-05-02 21:10:01 -070058#include "gc/accounting/card_table-inl.h"
Mathieu Chartier03c1dd92016-03-07 16:13:54 -080059#include "gc/accounting/heap_bitmap-inl.h"
Chang Xingba17dbd2017-06-28 21:27:56 +000060#include "gc/accounting/space_bitmap-inl.h"
Andreas Gampe1c158a02017-07-13 17:26:19 -070061#include "gc/heap-visit-objects-inl.h"
Steven Morelande431e272017-07-18 16:53:49 -070062#include "gc/heap.h"
Mathieu Chartier1b1e31f2016-05-19 10:13:04 -070063#include "gc/scoped_gc_critical_section.h"
Ian Rogers1d54e732013-05-02 21:10:01 -070064#include "gc/space/image_space.h"
Vladimir Marko8d6768d2017-03-14 10:13:21 +000065#include "gc/space/space-inl.h"
Steven Morelande431e272017-07-18 16:53:49 -070066#include "gc_root-inl.h"
Mathieu Chartiere58991b2015-10-13 07:59:34 -070067#include "handle_scope-inl.h"
Mathieu Chartier4a26f172016-01-26 14:26:18 -080068#include "image-inl.h"
Andreas Gampe75a7db62016-09-26 12:04:26 -070069#include "imt_conflict_table.h"
70#include "imtable-inl.h"
Elliott Hughescf4c6c42011-09-01 15:16:42 -070071#include "intern_table.h"
Ian Rogers64b6d142012-10-29 16:34:15 -070072#include "interpreter/interpreter.h"
Andreas Gampec15a2f42017-04-21 12:09:39 -070073#include "java_vm_ext.h"
Mathieu Chartiere5f13e52015-02-24 09:37:21 -080074#include "jit/jit.h"
75#include "jit/jit_code_cache.h"
Calin Juravle33083d62017-01-18 15:29:12 -080076#include "jit/profile_compilation_info.h"
Andreas Gampe08883de2016-11-08 13:20:52 -080077#include "jni_internal.h"
Ian Rogers0571d352011-11-03 19:51:38 -070078#include "leb128.h"
Mathieu Chartierc7853442015-03-27 14:35:38 -070079#include "linear_alloc.h"
Orion Hodsonc069a302017-01-18 09:23:12 +000080#include "mirror/call_site.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080081#include "mirror/class-inl.h"
Steven Morelande431e272017-07-18 16:53:49 -070082#include "mirror/class.h"
Alex Lightd6251582016-10-31 11:12:30 -070083#include "mirror/class_ext.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080084#include "mirror/class_loader.h"
Ian Rogers39ebcb82013-05-30 16:57:23 -070085#include "mirror/dex_cache-inl.h"
Steven Morelande431e272017-07-18 16:53:49 -070086#include "mirror/dex_cache.h"
Narayan Kamath000e1882016-10-24 17:14:25 +010087#include "mirror/emulated_stack_frame.h"
Mathieu Chartierdaaf3262015-03-24 13:30:28 -070088#include "mirror/field.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080089#include "mirror/iftable-inl.h"
Mathieu Chartierfc58af42015-04-16 18:00:39 -070090#include "mirror/method.h"
Narayan Kamathafa48272016-08-03 12:46:58 +010091#include "mirror/method_handle_impl.h"
Orion Hodsonc069a302017-01-18 09:23:12 +000092#include "mirror/method_handles_lookup.h"
Steven Morelande431e272017-07-18 16:53:49 -070093#include "mirror/method_type.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080094#include "mirror/object-inl.h"
Chang Xingba17dbd2017-06-28 21:27:56 +000095#include "mirror/object-refvisitor-inl.h"
Steven Morelande431e272017-07-18 16:53:49 -070096#include "mirror/object_array-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080097#include "mirror/proxy.h"
Fred Shih4ee7a662014-07-11 09:59:27 -070098#include "mirror/reference-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080099#include "mirror/stack_trace_element.h"
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700100#include "mirror/string-inl.h"
Orion Hodson005ac512017-10-24 15:43:43 +0100101#include "mirror/var_handle.h"
Mathieu Chartiere58991b2015-10-13 07:59:34 -0700102#include "native/dalvik_system_DexFile.h"
Andreas Gampe373a9b52017-10-18 09:01:57 -0700103#include "nativehelper/scoped_local_ref.h"
Mathieu Chartiere58991b2015-10-13 07:59:34 -0700104#include "oat.h"
Mathieu Chartiere58991b2015-10-13 07:59:34 -0700105#include "oat_file-inl.h"
Steven Morelande431e272017-07-18 16:53:49 -0700106#include "oat_file.h"
Mathieu Chartiere58991b2015-10-13 07:59:34 -0700107#include "oat_file_assistant.h"
108#include "oat_file_manager.h"
109#include "object_lock.h"
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800110#include "os.h"
Brian Carlstrom1f870082011-08-23 16:02:11 -0700111#include "runtime.h"
Andreas Gampeac30fa22017-01-18 21:02:36 -0800112#include "runtime_callbacks.h"
Mathieu Chartier0795f232016-09-27 18:43:30 -0700113#include "scoped_thread_state_change-inl.h"
Ian Rogers7b078e82014-09-10 14:44:24 -0700114#include "thread-inl.h"
Mingyao Yang063fc772016-08-02 11:02:54 -0700115#include "thread_list.h"
Mathieu Chartier7778b882015-10-05 16:41:10 -0700116#include "trace.h"
Andreas Gampe2ff3b972017-06-05 18:14:53 -0700117#include "utf.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -0700118#include "utils.h"
Vladimir Marko05792b92015-08-03 11:56:49 +0100119#include "utils/dex_cache_arrays_layout-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800120#include "verifier/method_verifier.h"
Elliott Hugheseac76672012-05-24 21:56:51 -0700121#include "well_known_classes.h"
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700122
123namespace art {
124
Andreas Gampe46ee31b2016-12-14 10:11:49 -0800125using android::base::StringPrintf;
126
Mathieu Chartierc7853442015-03-27 14:35:38 -0700127static constexpr bool kSanityCheckObjects = kIsDebugBuild;
Mathieu Chartier8790c7f2016-03-31 15:05:45 -0700128static constexpr bool kVerifyArtMethodDeclaringClasses = kIsDebugBuild;
Mathieu Chartierc7853442015-03-27 14:35:38 -0700129
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700130static void ThrowNoClassDefFoundError(const char* fmt, ...)
131 __attribute__((__format__(__printf__, 1, 2)))
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700132 REQUIRES_SHARED(Locks::mutator_lock_);
Elliott Hughes0512f022012-03-15 22:10:52 -0700133static void ThrowNoClassDefFoundError(const char* fmt, ...) {
Elliott Hughes4a2b4172011-09-20 17:08:25 -0700134 va_list args;
135 va_start(args, fmt);
Ian Rogers62d6c772013-02-27 08:32:07 -0800136 Thread* self = Thread::Current();
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +0000137 self->ThrowNewExceptionV("Ljava/lang/NoClassDefFoundError;", fmt, args);
Ian Rogerscab01012012-01-10 17:35:46 -0800138 va_end(args);
139}
140
Andreas Gampe99babb62015-11-02 16:20:00 -0800141static bool HasInitWithString(Thread* self, ClassLinker* class_linker, const char* descriptor)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700142 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700143 ArtMethod* method = self->GetCurrentMethod(nullptr);
Andreas Gampebfdcdc12015-04-22 18:10:36 -0700144 StackHandleScope<1> hs(self);
145 Handle<mirror::ClassLoader> class_loader(hs.NewHandle(method != nullptr ?
Mathieu Chartier90443472015-07-16 20:32:27 -0700146 method->GetDeclaringClass()->GetClassLoader() : nullptr));
Mathieu Chartier28357fa2016-10-18 16:27:40 -0700147 ObjPtr<mirror::Class> exception_class = class_linker->FindClass(self, descriptor, class_loader);
Andreas Gampebfdcdc12015-04-22 18:10:36 -0700148
149 if (exception_class == nullptr) {
150 // No exc class ~ no <init>-with-string.
151 CHECK(self->IsExceptionPending());
152 self->ClearException();
153 return false;
154 }
155
Vladimir Markoba118822017-06-12 15:41:56 +0100156 ArtMethod* exception_init_method = exception_class->FindConstructor(
157 "(Ljava/lang/String;)V", class_linker->GetImagePointerSize());
Andreas Gampebfdcdc12015-04-22 18:10:36 -0700158 return exception_init_method != nullptr;
159}
160
Alex Lightd6251582016-10-31 11:12:30 -0700161static mirror::Object* GetVerifyError(ObjPtr<mirror::Class> c)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700162 REQUIRES_SHARED(Locks::mutator_lock_) {
Alex Lightd6251582016-10-31 11:12:30 -0700163 ObjPtr<mirror::ClassExt> ext(c->GetExtData());
164 if (ext == nullptr) {
165 return nullptr;
166 } else {
167 return ext->GetVerifyError();
168 }
169}
170
171// Helper for ThrowEarlierClassFailure. Throws the stored error.
172static void HandleEarlierVerifyError(Thread* self,
173 ClassLinker* class_linker,
174 ObjPtr<mirror::Class> c)
175 REQUIRES_SHARED(Locks::mutator_lock_) {
176 ObjPtr<mirror::Object> obj = GetVerifyError(c);
Andreas Gampe99babb62015-11-02 16:20:00 -0800177 DCHECK(obj != nullptr);
178 self->AssertNoPendingException();
179 if (obj->IsClass()) {
180 // Previous error has been stored as class. Create a new exception of that type.
181
182 // It's possible the exception doesn't have a <init>(String).
183 std::string temp;
184 const char* descriptor = obj->AsClass()->GetDescriptor(&temp);
185
186 if (HasInitWithString(self, class_linker, descriptor)) {
David Sehr709b0702016-10-13 09:12:37 -0700187 self->ThrowNewException(descriptor, c->PrettyDescriptor().c_str());
Andreas Gampe99babb62015-11-02 16:20:00 -0800188 } else {
189 self->ThrowNewException(descriptor, nullptr);
190 }
191 } else {
192 // Previous error has been stored as an instance. Just rethrow.
Mathieu Chartier28357fa2016-10-18 16:27:40 -0700193 ObjPtr<mirror::Class> throwable_class =
Andreas Gampe99babb62015-11-02 16:20:00 -0800194 self->DecodeJObject(WellKnownClasses::java_lang_Throwable)->AsClass();
Mathieu Chartier28357fa2016-10-18 16:27:40 -0700195 ObjPtr<mirror::Class> error_class = obj->GetClass();
Andreas Gampe99babb62015-11-02 16:20:00 -0800196 CHECK(throwable_class->IsAssignableFrom(error_class));
197 self->SetException(obj->AsThrowable());
198 }
199 self->AssertPendingException();
200}
201
Mathieu Chartier28357fa2016-10-18 16:27:40 -0700202void ClassLinker::ThrowEarlierClassFailure(ObjPtr<mirror::Class> c, bool wrap_in_no_class_def) {
Elliott Hughes5c599942012-06-13 16:45:05 -0700203 // The class failed to initialize on a previous attempt, so we want to throw
204 // a NoClassDefFoundError (v2 2.17.5). The exception to this rule is if we
205 // failed in verification, in which case v2 5.4.1 says we need to re-throw
206 // the previous error.
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800207 Runtime* const runtime = Runtime::Current();
208 if (!runtime->IsAotCompiler()) { // Give info if this occurs at runtime.
Andreas Gampe3d6b4702015-09-21 08:35:52 -0700209 std::string extra;
Alex Lightd6251582016-10-31 11:12:30 -0700210 if (GetVerifyError(c) != nullptr) {
211 ObjPtr<mirror::Object> verify_error = GetVerifyError(c);
Andreas Gampe369c8512016-01-28 15:31:39 -0800212 if (verify_error->IsClass()) {
David Sehr709b0702016-10-13 09:12:37 -0700213 extra = mirror::Class::PrettyDescriptor(verify_error->AsClass());
Andreas Gampe369c8512016-01-28 15:31:39 -0800214 } else {
215 extra = verify_error->AsThrowable()->Dump();
216 }
Andreas Gampe3d6b4702015-09-21 08:35:52 -0700217 }
David Sehr709b0702016-10-13 09:12:37 -0700218 LOG(INFO) << "Rejecting re-init on previously-failed class " << c->PrettyClass()
219 << ": " << extra;
Ian Rogers87e552d2012-08-31 15:54:48 -0700220 }
Elliott Hughes4a2b4172011-09-20 17:08:25 -0700221
David Sehr709b0702016-10-13 09:12:37 -0700222 CHECK(c->IsErroneous()) << c->PrettyClass() << " " << c->GetStatus();
Ian Rogers62d6c772013-02-27 08:32:07 -0800223 Thread* self = Thread::Current();
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800224 if (runtime->IsAotCompiler()) {
Ian Rogers7b078e82014-09-10 14:44:24 -0700225 // At compile time, accurate errors and NCDFE are disabled to speed compilation.
Mathieu Chartier28357fa2016-10-18 16:27:40 -0700226 ObjPtr<mirror::Throwable> pre_allocated = runtime->GetPreAllocatedNoClassDefFoundError();
Nicolas Geoffray14691c52015-03-05 10:40:17 +0000227 self->SetException(pre_allocated);
Elliott Hughes4a2b4172011-09-20 17:08:25 -0700228 } else {
Alex Lightd6251582016-10-31 11:12:30 -0700229 if (GetVerifyError(c) != nullptr) {
Andreas Gampecb086952015-11-02 16:20:00 -0800230 // Rethrow stored error.
Andreas Gampe99babb62015-11-02 16:20:00 -0800231 HandleEarlierVerifyError(self, this, c);
Andreas Gampecb086952015-11-02 16:20:00 -0800232 }
Alex Lightd6251582016-10-31 11:12:30 -0700233 // TODO This might be wrong if we hit an OOME while allocating the ClassExt. In that case we
234 // might have meant to go down the earlier if statement with the original error but it got
235 // swallowed by the OOM so we end up here.
236 if (GetVerifyError(c) == nullptr || wrap_in_no_class_def) {
Andreas Gampecb086952015-11-02 16:20:00 -0800237 // If there isn't a recorded earlier error, or this is a repeat throw from initialization,
238 // the top-level exception must be a NoClassDefFoundError. The potentially already pending
239 // exception will be a cause.
240 self->ThrowNewWrappedException("Ljava/lang/NoClassDefFoundError;",
David Sehr709b0702016-10-13 09:12:37 -0700241 c->PrettyDescriptor().c_str());
Ian Rogers7b078e82014-09-10 14:44:24 -0700242 }
Elliott Hughes4a2b4172011-09-20 17:08:25 -0700243 }
244}
245
Brian Carlstromb23eab12014-10-08 17:55:21 -0700246static void VlogClassInitializationFailure(Handle<mirror::Class> klass)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700247 REQUIRES_SHARED(Locks::mutator_lock_) {
Brian Carlstromb23eab12014-10-08 17:55:21 -0700248 if (VLOG_IS_ON(class_linker)) {
249 std::string temp;
250 LOG(INFO) << "Failed to initialize class " << klass->GetDescriptor(&temp) << " from "
Nicolas Geoffray14691c52015-03-05 10:40:17 +0000251 << klass->GetLocation() << "\n" << Thread::Current()->GetException()->Dump();
Brian Carlstromb23eab12014-10-08 17:55:21 -0700252 }
253}
254
255static void WrapExceptionInInitializer(Handle<mirror::Class> klass)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700256 REQUIRES_SHARED(Locks::mutator_lock_) {
Elliott Hughesa4f94742012-05-29 16:28:38 -0700257 Thread* self = Thread::Current();
258 JNIEnv* env = self->GetJniEnv();
Elliott Hughes4d0207c2011-10-03 19:14:34 -0700259
260 ScopedLocalRef<jthrowable> cause(env, env->ExceptionOccurred());
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700261 CHECK(cause.get() != nullptr);
Elliott Hughes4d0207c2011-10-03 19:14:34 -0700262
Andreas Gampe1e8a3952016-11-30 10:13:19 -0800263 // Boot classpath classes should not fail initialization. This is a sanity debug check. This
264 // cannot in general be guaranteed, but in all likelihood leads to breakage down the line.
265 if (klass->GetClassLoader() == nullptr && !Runtime::Current()->IsAotCompiler()) {
Andreas Gampe22f71d22016-11-21 10:10:08 -0800266 std::string tmp;
Andreas Gampe1e8a3952016-11-30 10:13:19 -0800267 LOG(kIsDebugBuild ? FATAL : WARNING) << klass->GetDescriptor(&tmp) << " failed initialization";
Andreas Gampe22f71d22016-11-21 10:10:08 -0800268 }
269
Elliott Hughes4d0207c2011-10-03 19:14:34 -0700270 env->ExceptionClear();
Elliott Hughesa4f94742012-05-29 16:28:38 -0700271 bool is_error = env->IsInstanceOf(cause.get(), WellKnownClasses::java_lang_Error);
272 env->Throw(cause.get());
Elliott Hughes4d0207c2011-10-03 19:14:34 -0700273
Elliott Hughesa4f94742012-05-29 16:28:38 -0700274 // We only wrap non-Error exceptions; an Error can just be used as-is.
275 if (!is_error) {
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +0000276 self->ThrowNewWrappedException("Ljava/lang/ExceptionInInitializerError;", nullptr);
Elliott Hughes4d0207c2011-10-03 19:14:34 -0700277 }
Brian Carlstromb23eab12014-10-08 17:55:21 -0700278 VlogClassInitializationFailure(klass);
Elliott Hughes4d0207c2011-10-03 19:14:34 -0700279}
280
Fred Shih381e4ca2014-08-25 17:24:27 -0700281// Gap between two fields in object layout.
282struct FieldGap {
283 uint32_t start_offset; // The offset from the start of the object.
284 uint32_t size; // The gap size of 1, 2, or 4 bytes.
285};
286struct FieldGapsComparator {
287 explicit FieldGapsComparator() {
288 }
289 bool operator() (const FieldGap& lhs, const FieldGap& rhs)
290 NO_THREAD_SAFETY_ANALYSIS {
Andreas Gampef52857f2015-02-18 15:38:57 -0800291 // Sort by gap size, largest first. Secondary sort by starting offset.
Richard Uhlerfab67882015-07-13 17:00:35 -0700292 // Note that the priority queue returns the largest element, so operator()
293 // should return true if lhs is less than rhs.
294 return lhs.size < rhs.size || (lhs.size == rhs.size && lhs.start_offset > rhs.start_offset);
Fred Shih381e4ca2014-08-25 17:24:27 -0700295 }
296};
Igor Murashkinb1d8c312015-08-04 11:18:43 -0700297typedef std::priority_queue<FieldGap, std::vector<FieldGap>, FieldGapsComparator> FieldGaps;
Fred Shih381e4ca2014-08-25 17:24:27 -0700298
299// Adds largest aligned gaps to queue of gaps.
Andreas Gampe277ccbd2014-11-03 21:36:10 -0800300static void AddFieldGap(uint32_t gap_start, uint32_t gap_end, FieldGaps* gaps) {
Fred Shih381e4ca2014-08-25 17:24:27 -0700301 DCHECK(gaps != nullptr);
302
303 uint32_t current_offset = gap_start;
304 while (current_offset != gap_end) {
305 size_t remaining = gap_end - current_offset;
306 if (remaining >= sizeof(uint32_t) && IsAligned<4>(current_offset)) {
307 gaps->push(FieldGap {current_offset, sizeof(uint32_t)});
308 current_offset += sizeof(uint32_t);
309 } else if (remaining >= sizeof(uint16_t) && IsAligned<2>(current_offset)) {
310 gaps->push(FieldGap {current_offset, sizeof(uint16_t)});
311 current_offset += sizeof(uint16_t);
312 } else {
313 gaps->push(FieldGap {current_offset, sizeof(uint8_t)});
314 current_offset += sizeof(uint8_t);
315 }
316 DCHECK_LE(current_offset, gap_end) << "Overran gap";
317 }
318}
319// Shuffle fields forward, making use of gaps whenever possible.
320template<int n>
Vladimir Marko76649e82014-11-10 18:32:59 +0000321static void ShuffleForward(size_t* current_field_idx,
Fred Shih381e4ca2014-08-25 17:24:27 -0700322 MemberOffset* field_offset,
Mathieu Chartierc7853442015-03-27 14:35:38 -0700323 std::deque<ArtField*>* grouped_and_sorted_fields,
Fred Shih381e4ca2014-08-25 17:24:27 -0700324 FieldGaps* gaps)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700325 REQUIRES_SHARED(Locks::mutator_lock_) {
Fred Shih381e4ca2014-08-25 17:24:27 -0700326 DCHECK(current_field_idx != nullptr);
327 DCHECK(grouped_and_sorted_fields != nullptr);
Fred Shih381e4ca2014-08-25 17:24:27 -0700328 DCHECK(gaps != nullptr);
329 DCHECK(field_offset != nullptr);
330
331 DCHECK(IsPowerOfTwo(n));
332 while (!grouped_and_sorted_fields->empty()) {
Mathieu Chartierc7853442015-03-27 14:35:38 -0700333 ArtField* field = grouped_and_sorted_fields->front();
Fred Shih381e4ca2014-08-25 17:24:27 -0700334 Primitive::Type type = field->GetTypeAsPrimitiveType();
335 if (Primitive::ComponentSize(type) < n) {
336 break;
337 }
338 if (!IsAligned<n>(field_offset->Uint32Value())) {
339 MemberOffset old_offset = *field_offset;
340 *field_offset = MemberOffset(RoundUp(field_offset->Uint32Value(), n));
341 AddFieldGap(old_offset.Uint32Value(), field_offset->Uint32Value(), gaps);
342 }
David Sehr709b0702016-10-13 09:12:37 -0700343 CHECK(type != Primitive::kPrimNot) << field->PrettyField(); // should be primitive types
Fred Shih381e4ca2014-08-25 17:24:27 -0700344 grouped_and_sorted_fields->pop_front();
Fred Shih381e4ca2014-08-25 17:24:27 -0700345 if (!gaps->empty() && gaps->top().size >= n) {
346 FieldGap gap = gaps->top();
347 gaps->pop();
Roland Levillain14d90572015-07-16 10:52:26 +0100348 DCHECK_ALIGNED(gap.start_offset, n);
Fred Shih381e4ca2014-08-25 17:24:27 -0700349 field->SetOffset(MemberOffset(gap.start_offset));
350 if (gap.size > n) {
351 AddFieldGap(gap.start_offset + n, gap.start_offset + gap.size, gaps);
352 }
353 } else {
Roland Levillain14d90572015-07-16 10:52:26 +0100354 DCHECK_ALIGNED(field_offset->Uint32Value(), n);
Fred Shih381e4ca2014-08-25 17:24:27 -0700355 field->SetOffset(*field_offset);
356 *field_offset = MemberOffset(field_offset->Uint32Value() + n);
357 }
358 ++(*current_field_idx);
359 }
360}
361
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800362ClassLinker::ClassLinker(InternTable* intern_table)
Andreas Gampe2af99022017-04-25 08:32:59 -0700363 : boot_class_table_(new ClassTable()),
364 failed_dex_cache_class_lookups_(0),
Ian Rogers98379392014-02-24 16:53:16 -0800365 class_roots_(nullptr),
366 array_iftable_(nullptr),
367 find_array_class_cache_next_victim_(0),
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700368 init_done_(false),
Vladimir Marko1998cd02017-01-13 13:02:58 +0000369 log_new_roots_(false),
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700370 intern_table_(intern_table),
Ian Rogers98379392014-02-24 16:53:16 -0800371 quick_resolution_trampoline_(nullptr),
Andreas Gampe2da88232014-02-27 12:26:20 -0800372 quick_imt_conflict_trampoline_(nullptr),
Vladimir Marko8a630572014-04-09 18:45:35 +0100373 quick_generic_jni_trampoline_(nullptr),
Mathieu Chartier2d721012014-11-10 11:08:06 -0800374 quick_to_interpreter_bridge_trampoline_(nullptr),
Andreas Gampec1ac9ee2017-07-24 22:35:49 -0700375 image_pointer_size_(kRuntimePointerSize),
Andreas Gampe7dface32017-07-25 21:32:59 -0700376 cha_(Runtime::Current()->IsAotCompiler() ? nullptr : new ClassHierarchyAnalysis()) {
377 // For CHA disabled during Aot, see b/34193647.
378
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -0700379 CHECK(intern_table_ != nullptr);
Andreas Gampe8ac75952015-06-02 21:01:45 -0700380 static_assert(kFindArrayCacheSize == arraysize(find_array_class_cache_),
381 "Array cache size wrong.");
382 std::fill_n(find_array_class_cache_, kFindArrayCacheSize, GcRoot<mirror::Class>(nullptr));
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700383}
Brian Carlstroma663ea52011-08-19 23:33:41 -0700384
Andreas Gampe7ba5a672016-02-04 21:45:01 -0800385void ClassLinker::CheckSystemClass(Thread* self, Handle<mirror::Class> c1, const char* descriptor) {
Mathieu Chartier28357fa2016-10-18 16:27:40 -0700386 ObjPtr<mirror::Class> c2 = FindSystemClass(self, descriptor);
Andreas Gampe7ba5a672016-02-04 21:45:01 -0800387 if (c2 == nullptr) {
388 LOG(FATAL) << "Could not find class " << descriptor;
389 UNREACHABLE();
390 }
391 if (c1.Get() != c2) {
392 std::ostringstream os1, os2;
393 c1->DumpClass(os1, mirror::Class::kDumpClassFullDetail);
394 c2->DumpClass(os2, mirror::Class::kDumpClassFullDetail);
395 LOG(FATAL) << "InitWithoutImage: Class mismatch for " << descriptor
396 << ". This is most likely the result of a broken build. Make sure that "
397 << "libcore and art projects match.\n\n"
398 << os1.str() << "\n\n" << os2.str();
399 UNREACHABLE();
400 }
401}
402
Andreas Gampe3db9c5d2015-11-17 11:52:46 -0800403bool ClassLinker::InitWithoutImage(std::vector<std::unique_ptr<const DexFile>> boot_class_path,
404 std::string* error_msg) {
Brian Carlstroma004aa92012-02-08 18:05:09 -0800405 VLOG(startup) << "ClassLinker::Init";
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700406
Mathieu Chartiere401d142015-04-22 13:56:20 -0700407 Thread* const self = Thread::Current();
408 Runtime* const runtime = Runtime::Current();
409 gc::Heap* const heap = runtime->GetHeap();
410
Jeff Haodcdc85b2015-12-04 14:06:18 -0800411 CHECK(!heap->HasBootImageSpace()) << "Runtime has image. We should use it.";
Elliott Hughesd8ddfd52011-08-15 14:32:53 -0700412 CHECK(!init_done_);
Brian Carlstrom578bbdc2011-07-21 14:07:47 -0700413
Mathieu Chartiere401d142015-04-22 13:56:20 -0700414 // Use the pointer size from the runtime since we are probably creating the image.
415 image_pointer_size_ = InstructionSetPointerSize(runtime->GetInstructionSet());
416
Elliott Hughes30646832011-10-13 16:59:46 -0700417 // java_lang_Class comes first, it's needed for AllocClass
Mathieu Chartier590fee92013-09-13 13:46:47 -0700418 // 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 -0800419 heap->IncrementDisableMovingGC(self);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700420 StackHandleScope<64> hs(self); // 64 is picked arbitrarily.
Mathieu Chartiere401d142015-04-22 13:56:20 -0700421 auto class_class_size = mirror::Class::ClassClassSize(image_pointer_size_);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700422 Handle<mirror::Class> java_lang_Class(hs.NewHandle(down_cast<mirror::Class*>(
Mathieu Chartiere401d142015-04-22 13:56:20 -0700423 heap->AllocNonMovableObject<true>(self, nullptr, class_class_size, VoidFunctor()))));
Andreas Gampefa4333d2017-02-14 11:10:34 -0800424 CHECK(java_lang_Class != nullptr);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700425 mirror::Class::SetClassClass(java_lang_Class.Get());
426 java_lang_Class->SetClass(java_lang_Class.Get());
Hiroshi Yamauchi12b58b22016-11-01 11:55:29 -0700427 if (kUseBakerReadBarrier) {
428 java_lang_Class->AssertReadBarrierState();
Hiroshi Yamauchi9d04a202014-01-31 13:35:49 -0800429 }
Mathieu Chartiere401d142015-04-22 13:56:20 -0700430 java_lang_Class->SetClassSize(class_class_size);
Hiroshi Yamauchif0edfc32014-09-25 11:46:46 -0700431 java_lang_Class->SetPrimitiveType(Primitive::kPrimNot);
Mathieu Chartier1d27b342014-01-28 12:51:09 -0800432 heap->DecrementDisableMovingGC(self);
Mathieu Chartier28357fa2016-10-18 16:27:40 -0700433 // AllocClass(ObjPtr<mirror::Class>) can now be used
Brian Carlstroma0808032011-07-18 00:39:23 -0700434
Elliott Hughes418d20f2011-09-22 14:00:39 -0700435 // Class[] is used for reflection support.
Mathieu Chartiere401d142015-04-22 13:56:20 -0700436 auto class_array_class_size = mirror::ObjectArray<mirror::Class>::ClassSize(image_pointer_size_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700437 Handle<mirror::Class> class_array_class(hs.NewHandle(
Mathieu Chartiere401d142015-04-22 13:56:20 -0700438 AllocClass(self, java_lang_Class.Get(), class_array_class_size)));
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700439 class_array_class->SetComponentType(java_lang_Class.Get());
Elliott Hughes418d20f2011-09-22 14:00:39 -0700440
Ian Rogers23435d02012-09-24 11:23:12 -0700441 // java_lang_Object comes next so that object_array_class can be created.
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700442 Handle<mirror::Class> java_lang_Object(hs.NewHandle(
Mathieu Chartiere401d142015-04-22 13:56:20 -0700443 AllocClass(self, java_lang_Class.Get(), mirror::Object::ClassSize(image_pointer_size_))));
Andreas Gampefa4333d2017-02-14 11:10:34 -0800444 CHECK(java_lang_Object != nullptr);
Ian Rogers23435d02012-09-24 11:23:12 -0700445 // backfill Object as the super class of Class.
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700446 java_lang_Class->SetSuperClass(java_lang_Object.Get());
Hiroshi Yamauchi5b783e62015-03-18 17:20:11 -0700447 mirror::Class::SetStatus(java_lang_Object, mirror::Class::kStatusLoaded, self);
Brian Carlstroma0808032011-07-18 00:39:23 -0700448
Mathieu Chartier673ed3d2015-08-28 14:56:43 -0700449 java_lang_Object->SetObjectSize(sizeof(mirror::Object));
Hiroshi Yamauchi04302db2015-11-11 23:45:34 -0800450 // Allocate in non-movable so that it's possible to check if a JNI weak global ref has been
451 // cleared without triggering the read barrier and unintentionally mark the sentinel alive.
452 runtime->SetSentinel(heap->AllocNonMovableObject<true>(self,
453 java_lang_Object.Get(),
454 java_lang_Object->GetObjectSize(),
455 VoidFunctor()));
Mathieu Chartier673ed3d2015-08-28 14:56:43 -0700456
Igor Murashkin86083f72017-10-27 10:59:04 -0700457 // Initialize the SubtypeCheck bitstring for java.lang.Object and java.lang.Class.
458 {
459 // It might seem the lock here is unnecessary, however all the SubtypeCheck
460 // functions are annotated to require locks all the way down.
461 //
462 // We take the lock here to avoid using NO_THREAD_SAFETY_ANALYSIS.
463 MutexLock subtype_check_lock(Thread::Current(), *Locks::subtype_check_lock_);
464 mirror::Class* java_lang_Object_ptr = java_lang_Object.Get();
465 SubtypeCheck<mirror::Class*>::EnsureInitialized(java_lang_Object_ptr);
466 mirror::Class* java_lang_Class_ptr = java_lang_Class.Get();
467 SubtypeCheck<mirror::Class*>::EnsureInitialized(java_lang_Class_ptr);
468 }
469
Ian Rogers23435d02012-09-24 11:23:12 -0700470 // Object[] next to hold class roots.
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700471 Handle<mirror::Class> object_array_class(hs.NewHandle(
Mathieu Chartiere401d142015-04-22 13:56:20 -0700472 AllocClass(self, java_lang_Class.Get(),
473 mirror::ObjectArray<mirror::Object>::ClassSize(image_pointer_size_))));
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700474 object_array_class->SetComponentType(java_lang_Object.Get());
Brian Carlstroma0808032011-07-18 00:39:23 -0700475
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700476 // Setup the char (primitive) class to be used for char[].
477 Handle<mirror::Class> char_class(hs.NewHandle(
Mathieu Chartiere401d142015-04-22 13:56:20 -0700478 AllocClass(self, java_lang_Class.Get(),
479 mirror::Class::PrimitiveClassSize(image_pointer_size_))));
Hiroshi Yamauchif0edfc32014-09-25 11:46:46 -0700480 // The primitive char class won't be initialized by
481 // InitializePrimitiveClass until line 459, but strings (and
482 // internal char arrays) will be allocated before that and the
483 // component size, which is computed from the primitive type, needs
484 // to be set here.
485 char_class->SetPrimitiveType(Primitive::kPrimChar);
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700486
Ian Rogers23435d02012-09-24 11:23:12 -0700487 // Setup the char[] class to be used for String.
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700488 Handle<mirror::Class> char_array_class(hs.NewHandle(
Mathieu Chartiere401d142015-04-22 13:56:20 -0700489 AllocClass(self, java_lang_Class.Get(), mirror::Array::ClassSize(image_pointer_size_))));
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700490 char_array_class->SetComponentType(char_class.Get());
491 mirror::CharArray::SetArrayClass(char_array_class.Get());
Brian Carlstrom9cff8e12011-08-18 16:47:29 -0700492
Ian Rogers23435d02012-09-24 11:23:12 -0700493 // Setup String.
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700494 Handle<mirror::Class> java_lang_String(hs.NewHandle(
Mathieu Chartiere401d142015-04-22 13:56:20 -0700495 AllocClass(self, java_lang_Class.Get(), mirror::String::ClassSize(image_pointer_size_))));
Mathieu Chartier52a7f5c2015-08-18 18:35:52 -0700496 java_lang_String->SetStringClass();
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700497 mirror::String::SetClass(java_lang_String.Get());
Hiroshi Yamauchi5b783e62015-03-18 17:20:11 -0700498 mirror::Class::SetStatus(java_lang_String, mirror::Class::kStatusResolved, self);
Jesse Wilson14150742011-07-29 19:04:44 -0400499
Mathieu Chartierdaaf3262015-03-24 13:30:28 -0700500 // Setup java.lang.ref.Reference.
Fred Shih4ee7a662014-07-11 09:59:27 -0700501 Handle<mirror::Class> java_lang_ref_Reference(hs.NewHandle(
Mathieu Chartiere401d142015-04-22 13:56:20 -0700502 AllocClass(self, java_lang_Class.Get(), mirror::Reference::ClassSize(image_pointer_size_))));
Fred Shih4ee7a662014-07-11 09:59:27 -0700503 mirror::Reference::SetClass(java_lang_ref_Reference.Get());
504 java_lang_ref_Reference->SetObjectSize(mirror::Reference::InstanceSize());
Hiroshi Yamauchi5b783e62015-03-18 17:20:11 -0700505 mirror::Class::SetStatus(java_lang_ref_Reference, mirror::Class::kStatusResolved, self);
Fred Shih4ee7a662014-07-11 09:59:27 -0700506
Ian Rogers23435d02012-09-24 11:23:12 -0700507 // Create storage for root classes, save away our work so far (requires descriptors).
Mathieu Chartierdaaf3262015-03-24 13:30:28 -0700508 class_roots_ = GcRoot<mirror::ObjectArray<mirror::Class>>(
Hiroshi Yamauchi94f7b492014-07-22 18:08:23 -0700509 mirror::ObjectArray<mirror::Class>::Alloc(self, object_array_class.Get(),
510 kClassRootsMax));
511 CHECK(!class_roots_.IsNull());
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700512 SetClassRoot(kJavaLangClass, java_lang_Class.Get());
513 SetClassRoot(kJavaLangObject, java_lang_Object.Get());
514 SetClassRoot(kClassArrayClass, class_array_class.Get());
515 SetClassRoot(kObjectArrayClass, object_array_class.Get());
516 SetClassRoot(kCharArrayClass, char_array_class.Get());
517 SetClassRoot(kJavaLangString, java_lang_String.Get());
Fred Shih4ee7a662014-07-11 09:59:27 -0700518 SetClassRoot(kJavaLangRefReference, java_lang_ref_Reference.Get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700519
Mathieu Chartier6beced42016-11-15 15:51:31 -0800520 // Fill in the empty iftable. Needs to be done after the kObjectArrayClass root is set.
521 java_lang_Object->SetIfTable(AllocIfTable(self, 0));
522
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700523 // Setup the primitive type classes.
Ian Rogers50b35e22012-10-04 10:09:15 -0700524 SetClassRoot(kPrimitiveBoolean, CreatePrimitiveClass(self, Primitive::kPrimBoolean));
525 SetClassRoot(kPrimitiveByte, CreatePrimitiveClass(self, Primitive::kPrimByte));
526 SetClassRoot(kPrimitiveShort, CreatePrimitiveClass(self, Primitive::kPrimShort));
527 SetClassRoot(kPrimitiveInt, CreatePrimitiveClass(self, Primitive::kPrimInt));
528 SetClassRoot(kPrimitiveLong, CreatePrimitiveClass(self, Primitive::kPrimLong));
529 SetClassRoot(kPrimitiveFloat, CreatePrimitiveClass(self, Primitive::kPrimFloat));
530 SetClassRoot(kPrimitiveDouble, CreatePrimitiveClass(self, Primitive::kPrimDouble));
531 SetClassRoot(kPrimitiveVoid, CreatePrimitiveClass(self, Primitive::kPrimVoid));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700532
Ian Rogers23435d02012-09-24 11:23:12 -0700533 // Create array interface entries to populate once we can load system classes.
Hiroshi Yamauchi94f7b492014-07-22 18:08:23 -0700534 array_iftable_ = GcRoot<mirror::IfTable>(AllocIfTable(self, 2));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700535
Ian Rogers23435d02012-09-24 11:23:12 -0700536 // Create int array type for AllocDexCache (done in AppendToBootClassPath).
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700537 Handle<mirror::Class> int_array_class(hs.NewHandle(
Mathieu Chartiere401d142015-04-22 13:56:20 -0700538 AllocClass(self, java_lang_Class.Get(), mirror::Array::ClassSize(image_pointer_size_))));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700539 int_array_class->SetComponentType(GetClassRoot(kPrimitiveInt));
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700540 mirror::IntArray::SetArrayClass(int_array_class.Get());
541 SetClassRoot(kIntArrayClass, int_array_class.Get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700542
Mathieu Chartierc7853442015-03-27 14:35:38 -0700543 // Create long array type for AllocDexCache (done in AppendToBootClassPath).
544 Handle<mirror::Class> long_array_class(hs.NewHandle(
Mathieu Chartiere401d142015-04-22 13:56:20 -0700545 AllocClass(self, java_lang_Class.Get(), mirror::Array::ClassSize(image_pointer_size_))));
Mathieu Chartierc7853442015-03-27 14:35:38 -0700546 long_array_class->SetComponentType(GetClassRoot(kPrimitiveLong));
547 mirror::LongArray::SetArrayClass(long_array_class.Get());
548 SetClassRoot(kLongArrayClass, long_array_class.Get());
549
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700550 // now that these are registered, we can use AllocClass() and AllocObjectArray
Brian Carlstroma0808032011-07-18 00:39:23 -0700551
Ian Rogers52813c92012-10-11 11:50:38 -0700552 // Set up DexCache. This cannot be done later since AppendToBootClassPath calls AllocDexCache.
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700553 Handle<mirror::Class> java_lang_DexCache(hs.NewHandle(
Mathieu Chartiere401d142015-04-22 13:56:20 -0700554 AllocClass(self, java_lang_Class.Get(), mirror::DexCache::ClassSize(image_pointer_size_))));
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700555 SetClassRoot(kJavaLangDexCache, java_lang_DexCache.Get());
Vladimir Marko05792b92015-08-03 11:56:49 +0100556 java_lang_DexCache->SetDexCacheClass();
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700557 java_lang_DexCache->SetObjectSize(mirror::DexCache::InstanceSize());
Hiroshi Yamauchi5b783e62015-03-18 17:20:11 -0700558 mirror::Class::SetStatus(java_lang_DexCache, mirror::Class::kStatusResolved, self);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700559
Alex Lightd6251582016-10-31 11:12:30 -0700560
561 // Setup dalvik.system.ClassExt
562 Handle<mirror::Class> dalvik_system_ClassExt(hs.NewHandle(
563 AllocClass(self, java_lang_Class.Get(), mirror::ClassExt::ClassSize(image_pointer_size_))));
564 SetClassRoot(kDalvikSystemClassExt, dalvik_system_ClassExt.Get());
565 mirror::ClassExt::SetClass(dalvik_system_ClassExt.Get());
566 mirror::Class::SetStatus(dalvik_system_ClassExt, mirror::Class::kStatusResolved, self);
567
Mathieu Chartier66f19252012-09-18 08:57:04 -0700568 // Set up array classes for string, field, method
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700569 Handle<mirror::Class> object_array_string(hs.NewHandle(
570 AllocClass(self, java_lang_Class.Get(),
Mathieu Chartiere401d142015-04-22 13:56:20 -0700571 mirror::ObjectArray<mirror::String>::ClassSize(image_pointer_size_))));
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700572 object_array_string->SetComponentType(java_lang_String.Get());
573 SetClassRoot(kJavaLangStringArrayClass, object_array_string.Get());
Mathieu Chartier66f19252012-09-18 08:57:04 -0700574
Nicolas Geoffray796d6302016-03-13 22:22:31 +0000575 LinearAlloc* linear_alloc = runtime->GetLinearAlloc();
Mathieu Chartiere401d142015-04-22 13:56:20 -0700576 // Create runtime resolution and imt conflict methods.
577 runtime->SetResolutionMethod(runtime->CreateResolutionMethod());
Nicolas Geoffray796d6302016-03-13 22:22:31 +0000578 runtime->SetImtConflictMethod(runtime->CreateImtConflictMethod(linear_alloc));
579 runtime->SetImtUnimplementedMethod(runtime->CreateImtConflictMethod(linear_alloc));
Ian Rogers4445a7e2012-10-05 17:19:13 -0700580
Ian Rogers23435d02012-09-24 11:23:12 -0700581 // Setup boot_class_path_ and register class_path now that we can use AllocObjectArray to create
582 // DexCache instances. Needs to be after String, Field, Method arrays since AllocDexCache uses
583 // these roots.
Andreas Gampe3db9c5d2015-11-17 11:52:46 -0800584 if (boot_class_path.empty()) {
585 *error_msg = "Boot classpath is empty.";
586 return false;
587 }
Richard Uhlerfbef44d2014-12-23 09:48:51 -0800588 for (auto& dex_file : boot_class_path) {
Andreas Gampe3db9c5d2015-11-17 11:52:46 -0800589 if (dex_file.get() == nullptr) {
590 *error_msg = "Null dex file.";
591 return false;
592 }
Ian Rogers7b078e82014-09-10 14:44:24 -0700593 AppendToBootClassPath(self, *dex_file);
Mathieu Chartierfbc31082016-01-24 11:59:56 -0800594 boot_dex_files_.push_back(std::move(dex_file));
Mathieu Chartier66f19252012-09-18 08:57:04 -0700595 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700596
597 // now we can use FindSystemClass
598
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700599 // run char class through InitializePrimitiveClass to finish init
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700600 InitializePrimitiveClass(char_class.Get(), Primitive::kPrimChar);
601 SetClassRoot(kPrimitiveChar, char_class.Get()); // needs descriptor
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700602
Dmitry Petrochenkof0972a42014-05-16 17:43:39 +0700603 // Set up GenericJNI entrypoint. That is mainly a hack for common_compiler_test.h so that
604 // we do not need friend classes or a publicly exposed setter.
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700605 quick_generic_jni_trampoline_ = GetQuickGenericJniStub();
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800606 if (!runtime->IsAotCompiler()) {
Alex Light64ad14d2014-08-19 14:23:13 -0700607 // We need to set up the generic trampolines since we don't have an image.
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700608 quick_resolution_trampoline_ = GetQuickResolutionStub();
609 quick_imt_conflict_trampoline_ = GetQuickImtConflictStub();
610 quick_to_interpreter_bridge_trampoline_ = GetQuickToInterpreterBridge();
Alex Light64ad14d2014-08-19 14:23:13 -0700611 }
Dmitry Petrochenkof0972a42014-05-16 17:43:39 +0700612
Alex Lightd6251582016-10-31 11:12:30 -0700613 // Object, String, ClassExt and DexCache need to be rerun through FindSystemClass to finish init
Hiroshi Yamauchi5b783e62015-03-18 17:20:11 -0700614 mirror::Class::SetStatus(java_lang_Object, mirror::Class::kStatusNotReady, self);
Andreas Gampe7ba5a672016-02-04 21:45:01 -0800615 CheckSystemClass(self, java_lang_Object, "Ljava/lang/Object;");
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700616 CHECK_EQ(java_lang_Object->GetObjectSize(), mirror::Object::InstanceSize());
Hiroshi Yamauchi5b783e62015-03-18 17:20:11 -0700617 mirror::Class::SetStatus(java_lang_String, mirror::Class::kStatusNotReady, self);
Andreas Gampe7ba5a672016-02-04 21:45:01 -0800618 CheckSystemClass(self, java_lang_String, "Ljava/lang/String;");
Hiroshi Yamauchi5b783e62015-03-18 17:20:11 -0700619 mirror::Class::SetStatus(java_lang_DexCache, mirror::Class::kStatusNotReady, self);
Andreas Gampe7ba5a672016-02-04 21:45:01 -0800620 CheckSystemClass(self, java_lang_DexCache, "Ljava/lang/DexCache;");
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700621 CHECK_EQ(java_lang_DexCache->GetObjectSize(), mirror::DexCache::InstanceSize());
Alex Lightd6251582016-10-31 11:12:30 -0700622 mirror::Class::SetStatus(dalvik_system_ClassExt, mirror::Class::kStatusNotReady, self);
623 CheckSystemClass(self, dalvik_system_ClassExt, "Ldalvik/system/ClassExt;");
624 CHECK_EQ(dalvik_system_ClassExt->GetObjectSize(), mirror::ClassExt::InstanceSize());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700625
Ian Rogers23435d02012-09-24 11:23:12 -0700626 // Setup the primitive array type classes - can't be done until Object has a vtable.
Ian Rogers98379392014-02-24 16:53:16 -0800627 SetClassRoot(kBooleanArrayClass, FindSystemClass(self, "[Z"));
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800628 mirror::BooleanArray::SetArrayClass(GetClassRoot(kBooleanArrayClass));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700629
Ian Rogers98379392014-02-24 16:53:16 -0800630 SetClassRoot(kByteArrayClass, FindSystemClass(self, "[B"));
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800631 mirror::ByteArray::SetArrayClass(GetClassRoot(kByteArrayClass));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700632
Andreas Gampe7ba5a672016-02-04 21:45:01 -0800633 CheckSystemClass(self, char_array_class, "[C");
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700634
Ian Rogers98379392014-02-24 16:53:16 -0800635 SetClassRoot(kShortArrayClass, FindSystemClass(self, "[S"));
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800636 mirror::ShortArray::SetArrayClass(GetClassRoot(kShortArrayClass));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700637
Andreas Gampe7ba5a672016-02-04 21:45:01 -0800638 CheckSystemClass(self, int_array_class, "[I");
639 CheckSystemClass(self, long_array_class, "[J");
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700640
Ian Rogers98379392014-02-24 16:53:16 -0800641 SetClassRoot(kFloatArrayClass, FindSystemClass(self, "[F"));
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800642 mirror::FloatArray::SetArrayClass(GetClassRoot(kFloatArrayClass));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700643
Ian Rogers98379392014-02-24 16:53:16 -0800644 SetClassRoot(kDoubleArrayClass, FindSystemClass(self, "[D"));
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800645 mirror::DoubleArray::SetArrayClass(GetClassRoot(kDoubleArrayClass));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700646
Andreas Gampe7ba5a672016-02-04 21:45:01 -0800647 // Run Class through FindSystemClass. This initializes the dex_cache_ fields and register it
648 // in class_table_.
649 CheckSystemClass(self, java_lang_Class, "Ljava/lang/Class;");
Elliott Hughes418d20f2011-09-22 14:00:39 -0700650
Andreas Gampe7ba5a672016-02-04 21:45:01 -0800651 CheckSystemClass(self, class_array_class, "[Ljava/lang/Class;");
652 CheckSystemClass(self, object_array_class, "[Ljava/lang/Object;");
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700653
Ian Rogers23435d02012-09-24 11:23:12 -0700654 // Setup the single, global copy of "iftable".
Mathieu Chartierfc58af42015-04-16 18:00:39 -0700655 auto java_lang_Cloneable = hs.NewHandle(FindSystemClass(self, "Ljava/lang/Cloneable;"));
Andreas Gampefa4333d2017-02-14 11:10:34 -0800656 CHECK(java_lang_Cloneable != nullptr);
Mathieu Chartierfc58af42015-04-16 18:00:39 -0700657 auto java_io_Serializable = hs.NewHandle(FindSystemClass(self, "Ljava/io/Serializable;"));
Andreas Gampefa4333d2017-02-14 11:10:34 -0800658 CHECK(java_io_Serializable != nullptr);
Ian Rogers23435d02012-09-24 11:23:12 -0700659 // We assume that Cloneable/Serializable don't have superinterfaces -- normally we'd have to
660 // crawl up and explicitly list all of the supers as well.
Mathieu Chartierfc58af42015-04-16 18:00:39 -0700661 array_iftable_.Read()->SetInterface(0, java_lang_Cloneable.Get());
662 array_iftable_.Read()->SetInterface(1, java_io_Serializable.Get());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700663
Mathieu Chartierfc58af42015-04-16 18:00:39 -0700664 // Sanity check Class[] and Object[]'s interfaces. GetDirectInterface may cause thread
665 // suspension.
666 CHECK_EQ(java_lang_Cloneable.Get(),
Vladimir Marko19a4d372016-12-08 14:41:46 +0000667 mirror::Class::GetDirectInterface(self, class_array_class.Get(), 0));
Mathieu Chartierfc58af42015-04-16 18:00:39 -0700668 CHECK_EQ(java_io_Serializable.Get(),
Vladimir Marko19a4d372016-12-08 14:41:46 +0000669 mirror::Class::GetDirectInterface(self, class_array_class.Get(), 1));
Mathieu Chartierfc58af42015-04-16 18:00:39 -0700670 CHECK_EQ(java_lang_Cloneable.Get(),
Vladimir Marko19a4d372016-12-08 14:41:46 +0000671 mirror::Class::GetDirectInterface(self, object_array_class.Get(), 0));
Mathieu Chartierfc58af42015-04-16 18:00:39 -0700672 CHECK_EQ(java_io_Serializable.Get(),
Vladimir Marko19a4d372016-12-08 14:41:46 +0000673 mirror::Class::GetDirectInterface(self, object_array_class.Get(), 1));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700674
Mathieu Chartierfc58af42015-04-16 18:00:39 -0700675 CHECK_EQ(object_array_string.Get(),
676 FindSystemClass(self, GetClassRootDescriptor(kJavaLangStringArrayClass)));
Brian Carlstrom1f870082011-08-23 16:02:11 -0700677
Andreas Gampe7ba5a672016-02-04 21:45:01 -0800678 // End of special init trickery, all subsequent classes may be loaded via FindSystemClass.
Ian Rogers466bb252011-10-14 03:29:56 -0700679
Ian Rogers23435d02012-09-24 11:23:12 -0700680 // Create java.lang.reflect.Proxy root.
Mathieu Chartierfc58af42015-04-16 18:00:39 -0700681 SetClassRoot(kJavaLangReflectProxy, FindSystemClass(self, "Ljava/lang/reflect/Proxy;"));
Ian Rogers466bb252011-10-14 03:29:56 -0700682
Mathieu Chartierdaaf3262015-03-24 13:30:28 -0700683 // Create java.lang.reflect.Field.class root.
Mathieu Chartierfc58af42015-04-16 18:00:39 -0700684 auto* class_root = FindSystemClass(self, "Ljava/lang/reflect/Field;");
685 CHECK(class_root != nullptr);
686 SetClassRoot(kJavaLangReflectField, class_root);
687 mirror::Field::SetClass(class_root);
Mathieu Chartierdaaf3262015-03-24 13:30:28 -0700688
689 // Create java.lang.reflect.Field array root.
Mathieu Chartierfc58af42015-04-16 18:00:39 -0700690 class_root = FindSystemClass(self, "[Ljava/lang/reflect/Field;");
691 CHECK(class_root != nullptr);
692 SetClassRoot(kJavaLangReflectFieldArrayClass, class_root);
693 mirror::Field::SetArrayClass(class_root);
694
695 // Create java.lang.reflect.Constructor.class root and array root.
696 class_root = FindSystemClass(self, "Ljava/lang/reflect/Constructor;");
697 CHECK(class_root != nullptr);
698 SetClassRoot(kJavaLangReflectConstructor, class_root);
699 mirror::Constructor::SetClass(class_root);
700 class_root = FindSystemClass(self, "[Ljava/lang/reflect/Constructor;");
701 CHECK(class_root != nullptr);
702 SetClassRoot(kJavaLangReflectConstructorArrayClass, class_root);
703 mirror::Constructor::SetArrayClass(class_root);
704
705 // Create java.lang.reflect.Method.class root and array root.
706 class_root = FindSystemClass(self, "Ljava/lang/reflect/Method;");
707 CHECK(class_root != nullptr);
708 SetClassRoot(kJavaLangReflectMethod, class_root);
709 mirror::Method::SetClass(class_root);
710 class_root = FindSystemClass(self, "[Ljava/lang/reflect/Method;");
711 CHECK(class_root != nullptr);
712 SetClassRoot(kJavaLangReflectMethodArrayClass, class_root);
713 mirror::Method::SetArrayClass(class_root);
Mathieu Chartierdaaf3262015-03-24 13:30:28 -0700714
Orion Hodson005ac512017-10-24 15:43:43 +0100715 // Create java.lang.invoke.CallSite.class root
716 class_root = FindSystemClass(self, "Ljava/lang/invoke/CallSite;");
717 CHECK(class_root != nullptr);
718 SetClassRoot(kJavaLangInvokeCallSite, class_root);
719 mirror::CallSite::SetClass(class_root);
720
Narayan Kamathafa48272016-08-03 12:46:58 +0100721 // Create java.lang.invoke.MethodType.class root
722 class_root = FindSystemClass(self, "Ljava/lang/invoke/MethodType;");
723 CHECK(class_root != nullptr);
724 SetClassRoot(kJavaLangInvokeMethodType, class_root);
725 mirror::MethodType::SetClass(class_root);
726
727 // Create java.lang.invoke.MethodHandleImpl.class root
728 class_root = FindSystemClass(self, "Ljava/lang/invoke/MethodHandleImpl;");
729 CHECK(class_root != nullptr);
730 SetClassRoot(kJavaLangInvokeMethodHandleImpl, class_root);
731 mirror::MethodHandleImpl::SetClass(class_root);
732
Orion Hodsonc069a302017-01-18 09:23:12 +0000733 // Create java.lang.invoke.MethodHandles.Lookup.class root
734 class_root = FindSystemClass(self, "Ljava/lang/invoke/MethodHandles$Lookup;");
735 CHECK(class_root != nullptr);
736 SetClassRoot(kJavaLangInvokeMethodHandlesLookup, class_root);
737 mirror::MethodHandlesLookup::SetClass(class_root);
738
Orion Hodson005ac512017-10-24 15:43:43 +0100739 // Create java.lang.invoke.VarHandle.class root
740 class_root = FindSystemClass(self, "Ljava/lang/invoke/VarHandle;");
Orion Hodsonc069a302017-01-18 09:23:12 +0000741 CHECK(class_root != nullptr);
Orion Hodson005ac512017-10-24 15:43:43 +0100742 SetClassRoot(kJavaLangInvokeVarHandle, class_root);
743 mirror::VarHandle::SetClass(class_root);
744
745 // Create java.lang.invoke.FieldVarHandle.class root
746 class_root = FindSystemClass(self, "Ljava/lang/invoke/FieldVarHandle;");
747 CHECK(class_root != nullptr);
748 SetClassRoot(kJavaLangInvokeFieldVarHandle, class_root);
749 mirror::FieldVarHandle::SetClass(class_root);
750
751 // Create java.lang.invoke.ArrayElementVarHandle.class root
752 class_root = FindSystemClass(self, "Ljava/lang/invoke/ArrayElementVarHandle;");
753 CHECK(class_root != nullptr);
754 SetClassRoot(kJavaLangInvokeArrayElementVarHandle, class_root);
755 mirror::ArrayElementVarHandle::SetClass(class_root);
756
757 // Create java.lang.invoke.ByteArrayViewVarHandle.class root
758 class_root = FindSystemClass(self, "Ljava/lang/invoke/ByteArrayViewVarHandle;");
759 CHECK(class_root != nullptr);
760 SetClassRoot(kJavaLangInvokeByteArrayViewVarHandle, class_root);
761 mirror::ByteArrayViewVarHandle::SetClass(class_root);
762
763 // Create java.lang.invoke.ByteBufferViewVarHandle.class root
764 class_root = FindSystemClass(self, "Ljava/lang/invoke/ByteBufferViewVarHandle;");
765 CHECK(class_root != nullptr);
766 SetClassRoot(kJavaLangInvokeByteBufferViewVarHandle, class_root);
767 mirror::ByteBufferViewVarHandle::SetClass(class_root);
Orion Hodsonc069a302017-01-18 09:23:12 +0000768
Narayan Kamath000e1882016-10-24 17:14:25 +0100769 class_root = FindSystemClass(self, "Ldalvik/system/EmulatedStackFrame;");
770 CHECK(class_root != nullptr);
771 SetClassRoot(kDalvikSystemEmulatedStackFrame, class_root);
772 mirror::EmulatedStackFrame::SetClass(class_root);
773
Brian Carlstrom1f870082011-08-23 16:02:11 -0700774 // java.lang.ref classes need to be specially flagged, but otherwise are normal classes
Fred Shih4ee7a662014-07-11 09:59:27 -0700775 // finish initializing Reference class
Hiroshi Yamauchi5b783e62015-03-18 17:20:11 -0700776 mirror::Class::SetStatus(java_lang_ref_Reference, mirror::Class::kStatusNotReady, self);
Andreas Gampe7ba5a672016-02-04 21:45:01 -0800777 CheckSystemClass(self, java_lang_ref_Reference, "Ljava/lang/ref/Reference;");
Fred Shih4ee7a662014-07-11 09:59:27 -0700778 CHECK_EQ(java_lang_ref_Reference->GetObjectSize(), mirror::Reference::InstanceSize());
Mathieu Chartiere401d142015-04-22 13:56:20 -0700779 CHECK_EQ(java_lang_ref_Reference->GetClassSize(),
780 mirror::Reference::ClassSize(image_pointer_size_));
Mathieu Chartierfc58af42015-04-16 18:00:39 -0700781 class_root = FindSystemClass(self, "Ljava/lang/ref/FinalizerReference;");
Mathieu Chartier66c2d2d2015-08-25 14:32:32 -0700782 CHECK_EQ(class_root->GetClassFlags(), mirror::kClassFlagNormal);
Mathieu Chartier52a7f5c2015-08-18 18:35:52 -0700783 class_root->SetClassFlags(class_root->GetClassFlags() | mirror::kClassFlagFinalizerReference);
Mathieu Chartierfc58af42015-04-16 18:00:39 -0700784 class_root = FindSystemClass(self, "Ljava/lang/ref/PhantomReference;");
Mathieu Chartier66c2d2d2015-08-25 14:32:32 -0700785 CHECK_EQ(class_root->GetClassFlags(), mirror::kClassFlagNormal);
Mathieu Chartier52a7f5c2015-08-18 18:35:52 -0700786 class_root->SetClassFlags(class_root->GetClassFlags() | mirror::kClassFlagPhantomReference);
Mathieu Chartierfc58af42015-04-16 18:00:39 -0700787 class_root = FindSystemClass(self, "Ljava/lang/ref/SoftReference;");
Mathieu Chartier66c2d2d2015-08-25 14:32:32 -0700788 CHECK_EQ(class_root->GetClassFlags(), mirror::kClassFlagNormal);
Mathieu Chartier52a7f5c2015-08-18 18:35:52 -0700789 class_root->SetClassFlags(class_root->GetClassFlags() | mirror::kClassFlagSoftReference);
Mathieu Chartierfc58af42015-04-16 18:00:39 -0700790 class_root = FindSystemClass(self, "Ljava/lang/ref/WeakReference;");
Mathieu Chartier66c2d2d2015-08-25 14:32:32 -0700791 CHECK_EQ(class_root->GetClassFlags(), mirror::kClassFlagNormal);
Mathieu Chartier52a7f5c2015-08-18 18:35:52 -0700792 class_root->SetClassFlags(class_root->GetClassFlags() | mirror::kClassFlagWeakReference);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700793
Ian Rogers23435d02012-09-24 11:23:12 -0700794 // Setup the ClassLoader, verifying the object_size_.
Mathieu Chartierfc58af42015-04-16 18:00:39 -0700795 class_root = FindSystemClass(self, "Ljava/lang/ClassLoader;");
Mathieu Chartiere4275c02015-08-06 15:34:15 -0700796 class_root->SetClassLoaderClass();
Mathieu Chartierfc58af42015-04-16 18:00:39 -0700797 CHECK_EQ(class_root->GetObjectSize(), mirror::ClassLoader::InstanceSize());
798 SetClassRoot(kJavaLangClassLoader, class_root);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700799
jeffhao8cd6dda2012-02-22 10:15:34 -0800800 // Set up java.lang.Throwable, java.lang.ClassNotFoundException, and
Ian Rogers23435d02012-09-24 11:23:12 -0700801 // java.lang.StackTraceElement as a convenience.
Ian Rogers98379392014-02-24 16:53:16 -0800802 SetClassRoot(kJavaLangThrowable, FindSystemClass(self, "Ljava/lang/Throwable;"));
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800803 mirror::Throwable::SetClass(GetClassRoot(kJavaLangThrowable));
Brian Carlstromf3632832014-05-20 15:36:53 -0700804 SetClassRoot(kJavaLangClassNotFoundException,
805 FindSystemClass(self, "Ljava/lang/ClassNotFoundException;"));
Ian Rogers98379392014-02-24 16:53:16 -0800806 SetClassRoot(kJavaLangStackTraceElement, FindSystemClass(self, "Ljava/lang/StackTraceElement;"));
Brian Carlstromf3632832014-05-20 15:36:53 -0700807 SetClassRoot(kJavaLangStackTraceElementArrayClass,
808 FindSystemClass(self, "[Ljava/lang/StackTraceElement;"));
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800809 mirror::StackTraceElement::SetClass(GetClassRoot(kJavaLangStackTraceElement));
Elliott Hughesd8ddfd52011-08-15 14:32:53 -0700810
Mathieu Chartiercdca4762016-04-28 09:44:54 -0700811 // Create conflict tables that depend on the class linker.
812 runtime->FixupConflictTables();
813
Ian Rogers98379392014-02-24 16:53:16 -0800814 FinishInit(self);
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700815
Brian Carlstroma004aa92012-02-08 18:05:09 -0800816 VLOG(startup) << "ClassLinker::InitFromCompiler exiting";
Andreas Gampe3db9c5d2015-11-17 11:52:46 -0800817
818 return true;
Brian Carlstroma663ea52011-08-19 23:33:41 -0700819}
820
Ian Rogers98379392014-02-24 16:53:16 -0800821void ClassLinker::FinishInit(Thread* self) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800822 VLOG(startup) << "ClassLinker::FinishInit entering";
Brian Carlstrom16192862011-09-12 17:50:06 -0700823
824 // Let the heap know some key offsets into java.lang.ref instances
Elliott Hughes20cde902011-10-04 17:37:27 -0700825 // Note: we hard code the field indexes here rather than using FindInstanceField
Brian Carlstrom16192862011-09-12 17:50:06 -0700826 // as the types of the field can't be resolved prior to the runtime being
827 // fully initialized
Mathieu Chartier28357fa2016-10-18 16:27:40 -0700828 StackHandleScope<2> hs(self);
829 Handle<mirror::Class> java_lang_ref_Reference = hs.NewHandle(GetClassRoot(kJavaLangRefReference));
830 Handle<mirror::Class> java_lang_ref_FinalizerReference =
831 hs.NewHandle(FindSystemClass(self, "Ljava/lang/ref/FinalizerReference;"));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800832
Mathieu Chartierc7853442015-03-27 14:35:38 -0700833 ArtField* pendingNext = java_lang_ref_Reference->GetInstanceField(0);
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -0700834 CHECK_STREQ(pendingNext->GetName(), "pendingNext");
835 CHECK_STREQ(pendingNext->GetTypeDescriptor(), "Ljava/lang/ref/Reference;");
Brian Carlstrom16192862011-09-12 17:50:06 -0700836
Mathieu Chartierc7853442015-03-27 14:35:38 -0700837 ArtField* queue = java_lang_ref_Reference->GetInstanceField(1);
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -0700838 CHECK_STREQ(queue->GetName(), "queue");
839 CHECK_STREQ(queue->GetTypeDescriptor(), "Ljava/lang/ref/ReferenceQueue;");
Brian Carlstrom16192862011-09-12 17:50:06 -0700840
Mathieu Chartierc7853442015-03-27 14:35:38 -0700841 ArtField* queueNext = java_lang_ref_Reference->GetInstanceField(2);
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -0700842 CHECK_STREQ(queueNext->GetName(), "queueNext");
843 CHECK_STREQ(queueNext->GetTypeDescriptor(), "Ljava/lang/ref/Reference;");
Brian Carlstrom16192862011-09-12 17:50:06 -0700844
Mathieu Chartierc7853442015-03-27 14:35:38 -0700845 ArtField* referent = java_lang_ref_Reference->GetInstanceField(3);
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -0700846 CHECK_STREQ(referent->GetName(), "referent");
847 CHECK_STREQ(referent->GetTypeDescriptor(), "Ljava/lang/Object;");
Brian Carlstrom16192862011-09-12 17:50:06 -0700848
Mathieu Chartierc7853442015-03-27 14:35:38 -0700849 ArtField* zombie = java_lang_ref_FinalizerReference->GetInstanceField(2);
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -0700850 CHECK_STREQ(zombie->GetName(), "zombie");
851 CHECK_STREQ(zombie->GetTypeDescriptor(), "Ljava/lang/Object;");
Brian Carlstrom16192862011-09-12 17:50:06 -0700852
Brian Carlstroma663ea52011-08-19 23:33:41 -0700853 // ensure all class_roots_ are initialized
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700854 for (size_t i = 0; i < kClassRootsMax; i++) {
Brian Carlstroma663ea52011-08-19 23:33:41 -0700855 ClassRoot class_root = static_cast<ClassRoot>(i);
Mathieu Chartier28357fa2016-10-18 16:27:40 -0700856 ObjPtr<mirror::Class> klass = GetClassRoot(class_root);
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700857 CHECK(klass != nullptr);
858 DCHECK(klass->IsArrayClass() || klass->IsPrimitive() || klass->GetDexCache() != nullptr);
Brian Carlstroma663ea52011-08-19 23:33:41 -0700859 // note SetClassRoot does additional validation.
860 // if possible add new checks there to catch errors early
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700861 }
862
Hiroshi Yamauchi94f7b492014-07-22 18:08:23 -0700863 CHECK(!array_iftable_.IsNull());
Elliott Hughes92f14b22011-10-06 12:29:54 -0700864
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700865 // disable the slow paths in FindClass and CreatePrimitiveClass now
866 // that Object, Class, and Object[] are setup
867 init_done_ = true;
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700868
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800869 VLOG(startup) << "ClassLinker::FinishInit exiting";
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700870}
871
Elliott Hughes2a20cfd2011-09-23 19:30:41 -0700872void ClassLinker::RunRootClinits() {
873 Thread* self = Thread::Current();
874 for (size_t i = 0; i < ClassLinker::kClassRootsMax; ++i) {
Mathieu Chartier28357fa2016-10-18 16:27:40 -0700875 ObjPtr<mirror::Class> c = GetClassRoot(ClassRoot(i));
Elliott Hughes2a20cfd2011-09-23 19:30:41 -0700876 if (!c->IsArrayClass() && !c->IsPrimitive()) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700877 StackHandleScope<1> hs(self);
878 Handle<mirror::Class> h_class(hs.NewHandle(GetClassRoot(ClassRoot(i))));
Ian Rogers7b078e82014-09-10 14:44:24 -0700879 EnsureInitialized(self, h_class, true, true);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700880 self->AssertNoPendingException();
Elliott Hughes2a20cfd2011-09-23 19:30:41 -0700881 }
882 }
883}
884
Sebastien Hertz46e857a2015-08-06 12:52:43 +0200885// Set image methods' entry point to interpreter.
886class SetInterpreterEntrypointArtMethodVisitor : public ArtMethodVisitor {
887 public:
Andreas Gampe542451c2016-07-26 09:02:02 -0700888 explicit SetInterpreterEntrypointArtMethodVisitor(PointerSize image_pointer_size)
Sebastien Hertz46e857a2015-08-06 12:52:43 +0200889 : image_pointer_size_(image_pointer_size) {}
890
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700891 void Visit(ArtMethod* method) OVERRIDE REQUIRES_SHARED(Locks::mutator_lock_) {
Sebastien Hertz46e857a2015-08-06 12:52:43 +0200892 if (kIsDebugBuild && !method->IsRuntimeMethod()) {
893 CHECK(method->GetDeclaringClass() != nullptr);
894 }
895 if (!method->IsNative() && !method->IsRuntimeMethod() && !method->IsResolutionMethod()) {
896 method->SetEntryPointFromQuickCompiledCodePtrSize(GetQuickToInterpreterBridge(),
897 image_pointer_size_);
898 }
899 }
900
901 private:
Andreas Gampe542451c2016-07-26 09:02:02 -0700902 const PointerSize image_pointer_size_;
Sebastien Hertz46e857a2015-08-06 12:52:43 +0200903
904 DISALLOW_COPY_AND_ASSIGN(SetInterpreterEntrypointArtMethodVisitor);
905};
906
Jeff Haodcdc85b2015-12-04 14:06:18 -0800907struct TrampolineCheckData {
908 const void* quick_resolution_trampoline;
909 const void* quick_imt_conflict_trampoline;
910 const void* quick_generic_jni_trampoline;
911 const void* quick_to_interpreter_bridge_trampoline;
Andreas Gampe542451c2016-07-26 09:02:02 -0700912 PointerSize pointer_size;
Jeff Haodcdc85b2015-12-04 14:06:18 -0800913 ArtMethod* m;
914 bool error;
915};
Mathieu Chartierfbc31082016-01-24 11:59:56 -0800916
Mathieu Chartierfbc31082016-01-24 11:59:56 -0800917bool ClassLinker::InitFromBootImage(std::string* error_msg) {
918 VLOG(startup) << __FUNCTION__ << " entering";
Brian Carlstroma663ea52011-08-19 23:33:41 -0700919 CHECK(!init_done_);
920
Mathieu Chartierdaaf3262015-03-24 13:30:28 -0700921 Runtime* const runtime = Runtime::Current();
922 Thread* const self = Thread::Current();
923 gc::Heap* const heap = runtime->GetHeap();
Jeff Haodcdc85b2015-12-04 14:06:18 -0800924 std::vector<gc::space::ImageSpace*> spaces = heap->GetBootImageSpaces();
925 CHECK(!spaces.empty());
Andreas Gampe542451c2016-07-26 09:02:02 -0700926 uint32_t pointer_size_unchecked = spaces[0]->GetImageHeader().GetPointerSizeUnchecked();
927 if (!ValidPointerSize(pointer_size_unchecked)) {
928 *error_msg = StringPrintf("Invalid image pointer size: %u", pointer_size_unchecked);
Mathieu Chartierfbc31082016-01-24 11:59:56 -0800929 return false;
930 }
Andreas Gampe542451c2016-07-26 09:02:02 -0700931 image_pointer_size_ = spaces[0]->GetImageHeader().GetPointerSize();
Mathieu Chartierfbc31082016-01-24 11:59:56 -0800932 if (!runtime->IsAotCompiler()) {
933 // Only the Aot compiler supports having an image with a different pointer size than the
934 // runtime. This happens on the host for compiling 32 bit tests since we use a 64 bit libart
935 // compiler. We may also use 32 bit dex2oat on a system with 64 bit apps.
Andreas Gampe542451c2016-07-26 09:02:02 -0700936 if (image_pointer_size_ != kRuntimePointerSize) {
Mathieu Chartierfbc31082016-01-24 11:59:56 -0800937 *error_msg = StringPrintf("Runtime must use current image pointer size: %zu vs %zu",
Andreas Gampe542451c2016-07-26 09:02:02 -0700938 static_cast<size_t>(image_pointer_size_),
Mathieu Chartierfbc31082016-01-24 11:59:56 -0800939 sizeof(void*));
940 return false;
941 }
942 }
Jeff Haodcdc85b2015-12-04 14:06:18 -0800943 std::vector<const OatFile*> oat_files =
944 runtime->GetOatFileManager().RegisterImageOatFiles(spaces);
945 DCHECK(!oat_files.empty());
946 const OatHeader& default_oat_header = oat_files[0]->GetOatHeader();
Jeff Haodcdc85b2015-12-04 14:06:18 -0800947 CHECK_EQ(default_oat_header.GetImageFileLocationOatDataBegin(), 0U);
948 const char* image_file_location = oat_files[0]->GetOatHeader().
Andreas Gampe22f8e5c2014-07-09 11:38:21 -0700949 GetStoreValueByKey(OatHeader::kImageLocationKey);
950 CHECK(image_file_location == nullptr || *image_file_location == 0);
Jeff Haodcdc85b2015-12-04 14:06:18 -0800951 quick_resolution_trampoline_ = default_oat_header.GetQuickResolutionTrampoline();
952 quick_imt_conflict_trampoline_ = default_oat_header.GetQuickImtConflictTrampoline();
953 quick_generic_jni_trampoline_ = default_oat_header.GetQuickGenericJniTrampoline();
954 quick_to_interpreter_bridge_trampoline_ = default_oat_header.GetQuickToInterpreterBridge();
955 if (kIsDebugBuild) {
956 // Check that the other images use the same trampoline.
957 for (size_t i = 1; i < oat_files.size(); ++i) {
958 const OatHeader& ith_oat_header = oat_files[i]->GetOatHeader();
959 const void* ith_quick_resolution_trampoline =
960 ith_oat_header.GetQuickResolutionTrampoline();
961 const void* ith_quick_imt_conflict_trampoline =
962 ith_oat_header.GetQuickImtConflictTrampoline();
963 const void* ith_quick_generic_jni_trampoline =
964 ith_oat_header.GetQuickGenericJniTrampoline();
965 const void* ith_quick_to_interpreter_bridge_trampoline =
966 ith_oat_header.GetQuickToInterpreterBridge();
967 if (ith_quick_resolution_trampoline != quick_resolution_trampoline_ ||
968 ith_quick_imt_conflict_trampoline != quick_imt_conflict_trampoline_ ||
969 ith_quick_generic_jni_trampoline != quick_generic_jni_trampoline_ ||
970 ith_quick_to_interpreter_bridge_trampoline != quick_to_interpreter_bridge_trampoline_) {
971 // Make sure that all methods in this image do not contain those trampolines as
972 // entrypoints. Otherwise the class-linker won't be able to work with a single set.
973 TrampolineCheckData data;
974 data.error = false;
975 data.pointer_size = GetImagePointerSize();
976 data.quick_resolution_trampoline = ith_quick_resolution_trampoline;
977 data.quick_imt_conflict_trampoline = ith_quick_imt_conflict_trampoline;
978 data.quick_generic_jni_trampoline = ith_quick_generic_jni_trampoline;
979 data.quick_to_interpreter_bridge_trampoline = ith_quick_to_interpreter_bridge_trampoline;
980 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
Andreas Gampe0c183382017-07-13 22:26:24 -0700981 auto visitor = [&](mirror::Object* obj) REQUIRES_SHARED(Locks::mutator_lock_) {
982 if (obj->IsClass()) {
983 ObjPtr<mirror::Class> klass = obj->AsClass();
984 for (ArtMethod& m : klass->GetMethods(data.pointer_size)) {
985 const void* entrypoint =
986 m.GetEntryPointFromQuickCompiledCodePtrSize(data.pointer_size);
987 if (entrypoint == data.quick_resolution_trampoline ||
988 entrypoint == data.quick_imt_conflict_trampoline ||
989 entrypoint == data.quick_generic_jni_trampoline ||
990 entrypoint == data.quick_to_interpreter_bridge_trampoline) {
991 data.m = &m;
992 data.error = true;
993 return;
994 }
995 }
996 }
997 };
998 spaces[i]->GetLiveBitmap()->Walk(visitor);
Jeff Haodcdc85b2015-12-04 14:06:18 -0800999 if (data.error) {
1000 ArtMethod* m = data.m;
David Sehr709b0702016-10-13 09:12:37 -07001001 LOG(ERROR) << "Found a broken ArtMethod: " << ArtMethod::PrettyMethod(m);
Jeff Haodcdc85b2015-12-04 14:06:18 -08001002 *error_msg = "Found an ArtMethod with a bad entrypoint";
1003 return false;
1004 }
1005 }
1006 }
1007 }
Brian Carlstrom58ae9412011-10-04 00:56:06 -07001008
Mathieu Chartierfbc31082016-01-24 11:59:56 -08001009 class_roots_ = GcRoot<mirror::ObjectArray<mirror::Class>>(
1010 down_cast<mirror::ObjectArray<mirror::Class>*>(
1011 spaces[0]->GetImageHeader().GetImageRoot(ImageHeader::kClassRoots)));
1012 mirror::Class::SetClassClass(class_roots_.Read()->Get(kJavaLangClass));
Mathieu Chartier02b6a782012-10-26 13:51:26 -07001013
Brian Carlstromfddf6f62012-03-15 16:56:45 -07001014 // Special case of setting up the String class early so that we can test arbitrary objects
1015 // as being Strings or not
Anwar Ghuloumc4f105d2013-04-10 16:12:11 -07001016 mirror::String::SetClass(GetClassRoot(kJavaLangString));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001017
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001018 ObjPtr<mirror::Class> java_lang_Object = GetClassRoot(kJavaLangObject);
Mathieu Chartier673ed3d2015-08-28 14:56:43 -07001019 java_lang_Object->SetObjectSize(sizeof(mirror::Object));
Hiroshi Yamauchi04302db2015-11-11 23:45:34 -08001020 // Allocate in non-movable so that it's possible to check if a JNI weak global ref has been
1021 // cleared without triggering the read barrier and unintentionally mark the sentinel alive.
Jeff Haodcdc85b2015-12-04 14:06:18 -08001022 runtime->SetSentinel(heap->AllocNonMovableObject<true>(
1023 self, java_lang_Object, java_lang_Object->GetObjectSize(), VoidFunctor()));
Mathieu Chartier673ed3d2015-08-28 14:56:43 -07001024
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001025 // reinit array_iftable_ from any array class instance, they should be ==
Hiroshi Yamauchi94f7b492014-07-22 18:08:23 -07001026 array_iftable_ = GcRoot<mirror::IfTable>(GetClassRoot(kObjectArrayClass)->GetIfTable());
Mathieu Chartier2d721012014-11-10 11:08:06 -08001027 DCHECK_EQ(array_iftable_.Read(), GetClassRoot(kBooleanArrayClass)->GetIfTable());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001028 // String class root was set above
Mathieu Chartierdaaf3262015-03-24 13:30:28 -07001029 mirror::Field::SetClass(GetClassRoot(kJavaLangReflectField));
1030 mirror::Field::SetArrayClass(GetClassRoot(kJavaLangReflectFieldArrayClass));
Mathieu Chartierfc58af42015-04-16 18:00:39 -07001031 mirror::Constructor::SetClass(GetClassRoot(kJavaLangReflectConstructor));
1032 mirror::Constructor::SetArrayClass(GetClassRoot(kJavaLangReflectConstructorArrayClass));
1033 mirror::Method::SetClass(GetClassRoot(kJavaLangReflectMethod));
1034 mirror::Method::SetArrayClass(GetClassRoot(kJavaLangReflectMethodArrayClass));
Orion Hodson005ac512017-10-24 15:43:43 +01001035 mirror::CallSite::SetClass(GetClassRoot(kJavaLangInvokeCallSite));
Narayan Kamathafa48272016-08-03 12:46:58 +01001036 mirror::MethodHandleImpl::SetClass(GetClassRoot(kJavaLangInvokeMethodHandleImpl));
Orion Hodsonc069a302017-01-18 09:23:12 +00001037 mirror::MethodHandlesLookup::SetClass(GetClassRoot(kJavaLangInvokeMethodHandlesLookup));
Orion Hodson005ac512017-10-24 15:43:43 +01001038 mirror::MethodType::SetClass(GetClassRoot(kJavaLangInvokeMethodType));
1039 mirror::VarHandle::SetClass(GetClassRoot(kJavaLangInvokeVarHandle));
1040 mirror::FieldVarHandle::SetClass(GetClassRoot(kJavaLangInvokeFieldVarHandle));
1041 mirror::ArrayElementVarHandle::SetClass(GetClassRoot(kJavaLangInvokeArrayElementVarHandle));
1042 mirror::ByteArrayViewVarHandle::SetClass(GetClassRoot(kJavaLangInvokeByteArrayViewVarHandle));
1043 mirror::ByteBufferViewVarHandle::SetClass(GetClassRoot(kJavaLangInvokeByteBufferViewVarHandle));
Fred Shih4ee7a662014-07-11 09:59:27 -07001044 mirror::Reference::SetClass(GetClassRoot(kJavaLangRefReference));
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001045 mirror::BooleanArray::SetArrayClass(GetClassRoot(kBooleanArrayClass));
1046 mirror::ByteArray::SetArrayClass(GetClassRoot(kByteArrayClass));
1047 mirror::CharArray::SetArrayClass(GetClassRoot(kCharArrayClass));
1048 mirror::DoubleArray::SetArrayClass(GetClassRoot(kDoubleArrayClass));
1049 mirror::FloatArray::SetArrayClass(GetClassRoot(kFloatArrayClass));
1050 mirror::IntArray::SetArrayClass(GetClassRoot(kIntArrayClass));
1051 mirror::LongArray::SetArrayClass(GetClassRoot(kLongArrayClass));
1052 mirror::ShortArray::SetArrayClass(GetClassRoot(kShortArrayClass));
1053 mirror::Throwable::SetClass(GetClassRoot(kJavaLangThrowable));
1054 mirror::StackTraceElement::SetClass(GetClassRoot(kJavaLangStackTraceElement));
Narayan Kamath000e1882016-10-24 17:14:25 +01001055 mirror::EmulatedStackFrame::SetClass(GetClassRoot(kDalvikSystemEmulatedStackFrame));
Alex Lightd6251582016-10-31 11:12:30 -07001056 mirror::ClassExt::SetClass(GetClassRoot(kDalvikSystemClassExt));
Brian Carlstroma663ea52011-08-19 23:33:41 -07001057
Mathieu Chartierfbc31082016-01-24 11:59:56 -08001058 for (gc::space::ImageSpace* image_space : spaces) {
1059 // Boot class loader, use a null handle.
1060 std::vector<std::unique_ptr<const DexFile>> dex_files;
1061 if (!AddImageSpace(image_space,
1062 ScopedNullHandle<mirror::ClassLoader>(),
1063 /*dex_elements*/nullptr,
1064 /*dex_location*/nullptr,
1065 /*out*/&dex_files,
1066 error_msg)) {
1067 return false;
Jeff Haodcdc85b2015-12-04 14:06:18 -08001068 }
Mathieu Chartierfbc31082016-01-24 11:59:56 -08001069 // Append opened dex files at the end.
1070 boot_dex_files_.insert(boot_dex_files_.end(),
1071 std::make_move_iterator(dex_files.begin()),
1072 std::make_move_iterator(dex_files.end()));
Mathieu Chartier208a5cb2015-12-02 15:44:07 -08001073 }
Mathieu Chartierbe8303d2017-08-17 17:39:39 -07001074 for (const std::unique_ptr<const DexFile>& dex_file : boot_dex_files_) {
1075 OatDexFile::MadviseDexFile(*dex_file, MadviseState::kMadviseStateAtLoad);
1076 }
Ian Rogers98379392014-02-24 16:53:16 -08001077 FinishInit(self);
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -07001078
Mathieu Chartierfbc31082016-01-24 11:59:56 -08001079 VLOG(startup) << __FUNCTION__ << " exiting";
1080 return true;
1081}
Andreas Gampe3db9c5d2015-11-17 11:52:46 -08001082
Jeff Hao5872d7c2016-04-27 11:07:41 -07001083bool ClassLinker::IsBootClassLoader(ScopedObjectAccessAlreadyRunnable& soa,
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001084 ObjPtr<mirror::ClassLoader> class_loader) {
Mathieu Chartierfbc31082016-01-24 11:59:56 -08001085 return class_loader == nullptr ||
Mathieu Chartier0795f232016-09-27 18:43:30 -07001086 soa.Decode<mirror::Class>(WellKnownClasses::java_lang_BootClassLoader) ==
1087 class_loader->GetClass();
Mathieu Chartierfbc31082016-01-24 11:59:56 -08001088}
1089
Mathieu Chartier8a1691f2017-03-02 12:02:13 -08001090static bool GetDexPathListElementName(ObjPtr<mirror::Object> element,
1091 ObjPtr<mirror::String>* out_name)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001092 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartierfbc31082016-01-24 11:59:56 -08001093 ArtField* const dex_file_field =
Andreas Gampe08883de2016-11-08 13:20:52 -08001094 jni::DecodeArtField(WellKnownClasses::dalvik_system_DexPathList__Element_dexFile);
Mathieu Chartierfbc31082016-01-24 11:59:56 -08001095 ArtField* const dex_file_name_field =
Andreas Gampe08883de2016-11-08 13:20:52 -08001096 jni::DecodeArtField(WellKnownClasses::dalvik_system_DexFile_fileName);
Mathieu Chartierfbc31082016-01-24 11:59:56 -08001097 DCHECK(dex_file_field != nullptr);
1098 DCHECK(dex_file_name_field != nullptr);
1099 DCHECK(element != nullptr);
David Sehr709b0702016-10-13 09:12:37 -07001100 CHECK_EQ(dex_file_field->GetDeclaringClass(), element->GetClass()) << element->PrettyTypeOf();
Mathieu Chartier3398c782016-09-30 10:27:43 -07001101 ObjPtr<mirror::Object> dex_file = dex_file_field->GetObject(element);
Mathieu Chartierfbc31082016-01-24 11:59:56 -08001102 if (dex_file == nullptr) {
Mathieu Chartier8a1691f2017-03-02 12:02:13 -08001103 // Null dex file means it was probably a jar with no dex files, return a null string.
1104 *out_name = nullptr;
1105 return true;
Mathieu Chartierfbc31082016-01-24 11:59:56 -08001106 }
Mathieu Chartier3398c782016-09-30 10:27:43 -07001107 ObjPtr<mirror::Object> name_object = dex_file_name_field->GetObject(dex_file);
Mathieu Chartierfbc31082016-01-24 11:59:56 -08001108 if (name_object != nullptr) {
Mathieu Chartier8a1691f2017-03-02 12:02:13 -08001109 *out_name = name_object->AsString();
1110 return true;
Mathieu Chartierfbc31082016-01-24 11:59:56 -08001111 }
Mathieu Chartier8a1691f2017-03-02 12:02:13 -08001112 return false;
Mathieu Chartierfbc31082016-01-24 11:59:56 -08001113}
1114
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001115static bool FlattenPathClassLoader(ObjPtr<mirror::ClassLoader> class_loader,
Mathieu Chartier8a1691f2017-03-02 12:02:13 -08001116 std::list<ObjPtr<mirror::String>>* out_dex_file_names,
Mathieu Chartierfbc31082016-01-24 11:59:56 -08001117 std::string* error_msg)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001118 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartierfbc31082016-01-24 11:59:56 -08001119 DCHECK(out_dex_file_names != nullptr);
1120 DCHECK(error_msg != nullptr);
1121 ScopedObjectAccessUnchecked soa(Thread::Current());
1122 ArtField* const dex_path_list_field =
Andreas Gampe08883de2016-11-08 13:20:52 -08001123 jni::DecodeArtField(WellKnownClasses::dalvik_system_BaseDexClassLoader_pathList);
Mathieu Chartierfbc31082016-01-24 11:59:56 -08001124 ArtField* const dex_elements_field =
Andreas Gampe08883de2016-11-08 13:20:52 -08001125 jni::DecodeArtField(WellKnownClasses::dalvik_system_DexPathList_dexElements);
Mathieu Chartierfbc31082016-01-24 11:59:56 -08001126 CHECK(dex_path_list_field != nullptr);
1127 CHECK(dex_elements_field != nullptr);
Jeff Hao5872d7c2016-04-27 11:07:41 -07001128 while (!ClassLinker::IsBootClassLoader(soa, class_loader)) {
Mathieu Chartier0795f232016-09-27 18:43:30 -07001129 if (soa.Decode<mirror::Class>(WellKnownClasses::dalvik_system_PathClassLoader) !=
1130 class_loader->GetClass()) {
David Sehr709b0702016-10-13 09:12:37 -07001131 *error_msg = StringPrintf("Unknown class loader type %s",
1132 class_loader->PrettyTypeOf().c_str());
Mathieu Chartierfbc31082016-01-24 11:59:56 -08001133 // Unsupported class loader.
1134 return false;
1135 }
Mathieu Chartier3398c782016-09-30 10:27:43 -07001136 ObjPtr<mirror::Object> dex_path_list = dex_path_list_field->GetObject(class_loader);
Mathieu Chartierfbc31082016-01-24 11:59:56 -08001137 if (dex_path_list != nullptr) {
1138 // DexPathList has an array dexElements of Elements[] which each contain a dex file.
Mathieu Chartier3398c782016-09-30 10:27:43 -07001139 ObjPtr<mirror::Object> dex_elements_obj = dex_elements_field->GetObject(dex_path_list);
Mathieu Chartierfbc31082016-01-24 11:59:56 -08001140 // Loop through each dalvik.system.DexPathList$Element's dalvik.system.DexFile and look
1141 // at the mCookie which is a DexFile vector.
1142 if (dex_elements_obj != nullptr) {
Mathieu Chartier3398c782016-09-30 10:27:43 -07001143 ObjPtr<mirror::ObjectArray<mirror::Object>> dex_elements =
Mathieu Chartierfbc31082016-01-24 11:59:56 -08001144 dex_elements_obj->AsObjectArray<mirror::Object>();
1145 // Reverse order since we insert the parent at the front.
1146 for (int32_t i = dex_elements->GetLength() - 1; i >= 0; --i) {
Mathieu Chartier3398c782016-09-30 10:27:43 -07001147 ObjPtr<mirror::Object> element = dex_elements->GetWithoutChecks(i);
Mathieu Chartierfbc31082016-01-24 11:59:56 -08001148 if (element == nullptr) {
1149 *error_msg = StringPrintf("Null dex element at index %d", i);
1150 return false;
1151 }
Mathieu Chartier8a1691f2017-03-02 12:02:13 -08001152 ObjPtr<mirror::String> name;
1153 if (!GetDexPathListElementName(element, &name)) {
1154 *error_msg = StringPrintf("Invalid dex path list element at index %d", i);
Mathieu Chartierfbc31082016-01-24 11:59:56 -08001155 return false;
1156 }
Mathieu Chartier8a1691f2017-03-02 12:02:13 -08001157 if (name != nullptr) {
1158 out_dex_file_names->push_front(name.Ptr());
1159 }
Mathieu Chartierfbc31082016-01-24 11:59:56 -08001160 }
1161 }
1162 }
1163 class_loader = class_loader->GetParent();
1164 }
1165 return true;
1166}
1167
Mathieu Chartier03c1dd92016-03-07 16:13:54 -08001168class VerifyDeclaringClassVisitor : public ArtMethodVisitor {
1169 public:
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001170 VerifyDeclaringClassVisitor() REQUIRES_SHARED(Locks::mutator_lock_, Locks::heap_bitmap_lock_)
Mathieu Chartier03c1dd92016-03-07 16:13:54 -08001171 : live_bitmap_(Runtime::Current()->GetHeap()->GetLiveBitmap()) {}
1172
1173 virtual void Visit(ArtMethod* method)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001174 REQUIRES_SHARED(Locks::mutator_lock_, Locks::heap_bitmap_lock_) {
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001175 ObjPtr<mirror::Class> klass = method->GetDeclaringClassUnchecked();
Mathieu Chartier03c1dd92016-03-07 16:13:54 -08001176 if (klass != nullptr) {
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001177 CHECK(live_bitmap_->Test(klass.Ptr())) << "Image method has unmarked declaring class";
Mathieu Chartier03c1dd92016-03-07 16:13:54 -08001178 }
1179 }
1180
1181 private:
1182 gc::accounting::HeapBitmap* const live_bitmap_;
1183};
1184
Chang Xingba17dbd2017-06-28 21:27:56 +00001185class FixupInternVisitor {
1186 public:
1187 ALWAYS_INLINE ObjPtr<mirror::Object> TryInsertIntern(mirror::Object* obj) const
1188 REQUIRES_SHARED(Locks::mutator_lock_) {
1189 if (obj != nullptr && obj->IsString()) {
1190 const auto intern = Runtime::Current()->GetInternTable()->InternStrong(obj->AsString());
1191 return intern;
1192 }
1193 return obj;
1194 }
1195
1196 ALWAYS_INLINE void VisitRootIfNonNull(
1197 mirror::CompressedReference<mirror::Object>* root) const
1198 REQUIRES_SHARED(Locks::mutator_lock_) {
1199 if (!root->IsNull()) {
1200 VisitRoot(root);
1201 }
1202 }
1203
1204 ALWAYS_INLINE void VisitRoot(mirror::CompressedReference<mirror::Object>* root) const
1205 REQUIRES_SHARED(Locks::mutator_lock_) {
1206 root->Assign(TryInsertIntern(root->AsMirrorPtr()));
1207 }
1208
1209 // Visit Class Fields
1210 ALWAYS_INLINE void operator()(ObjPtr<mirror::Object> obj,
1211 MemberOffset offset,
1212 bool is_static ATTRIBUTE_UNUSED) const
1213 REQUIRES_SHARED(Locks::mutator_lock_) {
1214 // There could be overlap between ranges, we must avoid visiting the same reference twice.
1215 // Avoid the class field since we already fixed it up in FixupClassVisitor.
1216 if (offset.Uint32Value() != mirror::Object::ClassOffset().Uint32Value()) {
1217 // Updating images, don't do a read barrier.
1218 // Only string fields are fixed, don't do a verify.
1219 mirror::Object* ref = obj->GetFieldObject<mirror::Object, kVerifyNone, kWithoutReadBarrier>(
1220 offset);
1221 obj->SetFieldObject<false, false>(offset, TryInsertIntern(ref));
1222 }
1223 }
1224
1225 void operator()(ObjPtr<mirror::Class> klass ATTRIBUTE_UNUSED,
1226 ObjPtr<mirror::Reference> ref) const
1227 REQUIRES_SHARED(Locks::mutator_lock_) REQUIRES(Locks::heap_bitmap_lock_) {
1228 this->operator()(ref, mirror::Reference::ReferentOffset(), false);
1229 }
1230
1231 void operator()(mirror::Object* obj) const
1232 REQUIRES_SHARED(Locks::mutator_lock_) {
1233 if (obj->IsDexCache()) {
1234 obj->VisitReferences<true, kVerifyNone, kWithoutReadBarrier>(*this, *this);
1235 } else {
1236 // Don't visit native roots for non-dex-cache
1237 obj->VisitReferences<false, kVerifyNone, kWithoutReadBarrier>(*this, *this);
1238 }
1239 }
1240};
1241
Andreas Gampe2af99022017-04-25 08:32:59 -07001242// new_class_set is the set of classes that were read from the class table section in the image.
1243// If there was no class table section, it is null.
1244// Note: using a class here to avoid having to make ClassLinker internals public.
1245class AppImageClassLoadersAndDexCachesHelper {
1246 public:
Vladimir Marko0f3c7002017-09-07 14:15:56 +01001247 static void Update(
Andreas Gampe2af99022017-04-25 08:32:59 -07001248 ClassLinker* class_linker,
1249 gc::space::ImageSpace* space,
1250 Handle<mirror::ClassLoader> class_loader,
1251 Handle<mirror::ObjectArray<mirror::DexCache>> dex_caches,
Vladimir Marko0f3c7002017-09-07 14:15:56 +01001252 ClassTable::ClassSet* new_class_set)
Andreas Gampe2af99022017-04-25 08:32:59 -07001253 REQUIRES(!Locks::dex_lock_)
1254 REQUIRES_SHARED(Locks::mutator_lock_);
1255};
1256
Vladimir Marko0f3c7002017-09-07 14:15:56 +01001257void AppImageClassLoadersAndDexCachesHelper::Update(
Andreas Gampe2af99022017-04-25 08:32:59 -07001258 ClassLinker* class_linker,
Mathieu Chartierfbc31082016-01-24 11:59:56 -08001259 gc::space::ImageSpace* space,
1260 Handle<mirror::ClassLoader> class_loader,
1261 Handle<mirror::ObjectArray<mirror::DexCache>> dex_caches,
Vladimir Marko0f3c7002017-09-07 14:15:56 +01001262 ClassTable::ClassSet* new_class_set)
Andreas Gampe2af99022017-04-25 08:32:59 -07001263 REQUIRES(!Locks::dex_lock_)
1264 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartierfbc31082016-01-24 11:59:56 -08001265 Thread* const self = Thread::Current();
1266 gc::Heap* const heap = Runtime::Current()->GetHeap();
1267 const ImageHeader& header = space->GetImageHeader();
Mathieu Chartier064e9d42016-03-07 17:41:39 -08001268 {
Vladimir Marko0f3c7002017-09-07 14:15:56 +01001269 // Register dex caches with the class loader.
Mathieu Chartier064e9d42016-03-07 17:41:39 -08001270 WriterMutexLock mu(self, *Locks::classlinker_classes_lock_);
Mathieu Chartier064e9d42016-03-07 17:41:39 -08001271 const size_t num_dex_caches = dex_caches->GetLength();
1272 for (size_t i = 0; i < num_dex_caches; i++) {
Vladimir Marko1bc4b172016-10-24 16:53:39 +00001273 ObjPtr<mirror::DexCache> dex_cache = dex_caches->Get(i);
Mathieu Chartier064e9d42016-03-07 17:41:39 -08001274 const DexFile* const dex_file = dex_cache->GetDexFile();
Mathieu Chartier064e9d42016-03-07 17:41:39 -08001275 {
Andreas Gampecc1b5352016-12-01 16:58:38 -08001276 WriterMutexLock mu2(self, *Locks::dex_lock_);
Andreas Gampe2af99022017-04-25 08:32:59 -07001277 CHECK(!class_linker->FindDexCacheDataLocked(*dex_file).IsValid());
1278 class_linker->RegisterDexFileLocked(*dex_file, dex_cache, class_loader.Get());
Mathieu Chartier064e9d42016-03-07 17:41:39 -08001279 }
Mathieu Chartier064e9d42016-03-07 17:41:39 -08001280 if (kIsDebugBuild) {
Vladimir Marko1a1de672016-10-13 12:53:15 +01001281 CHECK(new_class_set != nullptr);
Vladimir Marko8d6768d2017-03-14 10:13:21 +00001282 mirror::TypeDexCacheType* const types = dex_cache->GetResolvedTypes();
Vladimir Marko1a1de672016-10-13 12:53:15 +01001283 const size_t num_types = dex_cache->NumResolvedTypes();
Vladimir Marko8d6768d2017-03-14 10:13:21 +00001284 for (size_t j = 0; j != num_types; ++j) {
Mathieu Chartier064e9d42016-03-07 17:41:39 -08001285 // The image space is not yet added to the heap, avoid read barriers.
Vladimir Marko8d6768d2017-03-14 10:13:21 +00001286 ObjPtr<mirror::Class> klass = types[j].load(std::memory_order_relaxed).object.Read();
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001287 if (space->HasAddress(klass.Ptr())) {
Vladimir Marko72ab6842017-01-20 19:32:50 +00001288 DCHECK(!klass->IsErroneous()) << klass->GetStatus();
Mathieu Chartier58c3f6a2016-12-01 14:21:11 -08001289 auto it = new_class_set->Find(ClassTable::TableSlot(klass));
Vladimir Marko1a1de672016-10-13 12:53:15 +01001290 DCHECK(it != new_class_set->end());
1291 DCHECK_EQ(it->Read(), klass);
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001292 ObjPtr<mirror::Class> super_class = klass->GetSuperClass();
Vladimir Marko1a1de672016-10-13 12:53:15 +01001293 if (super_class != nullptr && !heap->ObjectIsInBootImageSpace(super_class)) {
Mathieu Chartier58c3f6a2016-12-01 14:21:11 -08001294 auto it2 = new_class_set->Find(ClassTable::TableSlot(super_class));
Vladimir Marko1a1de672016-10-13 12:53:15 +01001295 DCHECK(it2 != new_class_set->end());
1296 DCHECK_EQ(it2->Read(), super_class);
1297 }
1298 for (ArtMethod& m : klass->GetDirectMethods(kRuntimePointerSize)) {
1299 const void* code = m.GetEntryPointFromQuickCompiledCode();
Andreas Gampe2af99022017-04-25 08:32:59 -07001300 const void* oat_code = m.IsInvokable() ? class_linker->GetQuickOatCodeFor(&m) : code;
1301 if (!class_linker->IsQuickResolutionStub(code) &&
1302 !class_linker->IsQuickGenericJniStub(code) &&
1303 !class_linker->IsQuickToInterpreterBridge(code) &&
Vladimir Marko1a1de672016-10-13 12:53:15 +01001304 !m.IsNative()) {
David Sehr709b0702016-10-13 09:12:37 -07001305 DCHECK_EQ(code, oat_code) << m.PrettyMethod();
Mathieu Chartier69731002016-03-02 16:08:31 -08001306 }
Mathieu Chartierfbc31082016-01-24 11:59:56 -08001307 }
Vladimir Marko1a1de672016-10-13 12:53:15 +01001308 for (ArtMethod& m : klass->GetVirtualMethods(kRuntimePointerSize)) {
1309 const void* code = m.GetEntryPointFromQuickCompiledCode();
Andreas Gampe2af99022017-04-25 08:32:59 -07001310 const void* oat_code = m.IsInvokable() ? class_linker->GetQuickOatCodeFor(&m) : code;
1311 if (!class_linker->IsQuickResolutionStub(code) &&
1312 !class_linker->IsQuickGenericJniStub(code) &&
1313 !class_linker->IsQuickToInterpreterBridge(code) &&
Vladimir Marko1a1de672016-10-13 12:53:15 +01001314 !m.IsNative()) {
David Sehr709b0702016-10-13 09:12:37 -07001315 DCHECK_EQ(code, oat_code) << m.PrettyMethod();
Mathieu Chartierfbc31082016-01-24 11:59:56 -08001316 }
1317 }
1318 }
1319 }
1320 }
1321 }
Mathieu Chartiera0b95212016-03-07 16:13:54 -08001322 }
Chang Xingba17dbd2017-06-28 21:27:56 +00001323 {
1324 // Fixup all the literal strings happens at app images which are supposed to be interned.
1325 ScopedTrace timing("Fixup String Intern in image and dex_cache");
1326 const auto& image_header = space->GetImageHeader();
1327 const auto bitmap = space->GetMarkBitmap(); // bitmap of objects
1328 const uint8_t* target_base = space->GetMemMap()->Begin();
Vladimir Markocd87c3e2017-09-05 13:11:57 +01001329 const ImageSection& objects_section = image_header.GetObjectsSection();
Chang Xingba17dbd2017-06-28 21:27:56 +00001330
1331 uintptr_t objects_begin = reinterpret_cast<uintptr_t>(target_base + objects_section.Offset());
1332 uintptr_t objects_end = reinterpret_cast<uintptr_t>(target_base + objects_section.End());
1333
1334 FixupInternVisitor fixup_intern_visitor;
1335 bitmap->VisitMarkedRange(objects_begin, objects_end, fixup_intern_visitor);
1336 }
Mathieu Chartiera0b95212016-03-07 16:13:54 -08001337 if (kVerifyArtMethodDeclaringClasses) {
1338 ScopedTrace timing("Verify declaring classes");
1339 ReaderMutexLock rmu(self, *Locks::heap_bitmap_lock_);
1340 VerifyDeclaringClassVisitor visitor;
Andreas Gampe542451c2016-07-26 09:02:02 -07001341 header.VisitPackedArtMethods(&visitor, space->Begin(), kRuntimePointerSize);
Mathieu Chartier03c1dd92016-03-07 16:13:54 -08001342 }
Mathieu Chartierfbc31082016-01-24 11:59:56 -08001343}
1344
Nicolas Geoffrayf9bf2502016-12-14 14:59:04 +00001345// Update the class loader. Should only be used on classes in the image space.
1346class UpdateClassLoaderVisitor {
Mathieu Chartier1aa8ec22016-02-01 10:34:47 -08001347 public:
Nicolas Geoffrayf9bf2502016-12-14 14:59:04 +00001348 UpdateClassLoaderVisitor(gc::space::ImageSpace* space, ObjPtr<mirror::ClassLoader> class_loader)
Mathieu Chartier1aa8ec22016-02-01 10:34:47 -08001349 : space_(space),
Nicolas Geoffrayf9bf2502016-12-14 14:59:04 +00001350 class_loader_(class_loader) {}
Mathieu Chartier1aa8ec22016-02-01 10:34:47 -08001351
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001352 bool operator()(ObjPtr<mirror::Class> klass) const REQUIRES_SHARED(Locks::mutator_lock_) {
Vladimir Marko6ad2f6d2017-01-18 15:22:59 +00001353 // Do not update class loader for boot image classes where the app image
1354 // class loader is only the initiating loader but not the defining loader.
1355 if (klass->GetClassLoader() != nullptr) {
1356 klass->SetClassLoader(class_loader_);
1357 }
Mathieu Chartier1aa8ec22016-02-01 10:34:47 -08001358 return true;
1359 }
1360
1361 gc::space::ImageSpace* const space_;
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001362 ObjPtr<mirror::ClassLoader> const class_loader_;
Mathieu Chartier1aa8ec22016-02-01 10:34:47 -08001363};
1364
Mathieu Chartierbcb6a722016-03-08 16:49:58 -08001365static std::unique_ptr<const DexFile> OpenOatDexFile(const OatFile* oat_file,
1366 const char* location,
1367 std::string* error_msg)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001368 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartierbcb6a722016-03-08 16:49:58 -08001369 DCHECK(error_msg != nullptr);
1370 std::unique_ptr<const DexFile> dex_file;
Richard Uhler9a37efc2016-08-05 16:32:55 -07001371 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(location, nullptr, error_msg);
Mathieu Chartierbcb6a722016-03-08 16:49:58 -08001372 if (oat_dex_file == nullptr) {
Mathieu Chartierbcb6a722016-03-08 16:49:58 -08001373 return std::unique_ptr<const DexFile>();
1374 }
1375 std::string inner_error_msg;
1376 dex_file = oat_dex_file->OpenDexFile(&inner_error_msg);
1377 if (dex_file == nullptr) {
1378 *error_msg = StringPrintf("Failed to open dex file %s from within oat file %s error '%s'",
1379 location,
1380 oat_file->GetLocation().c_str(),
1381 inner_error_msg.c_str());
1382 return std::unique_ptr<const DexFile>();
1383 }
1384
1385 if (dex_file->GetLocationChecksum() != oat_dex_file->GetDexFileLocationChecksum()) {
1386 *error_msg = StringPrintf("Checksums do not match for %s: %x vs %x",
1387 location,
1388 dex_file->GetLocationChecksum(),
1389 oat_dex_file->GetDexFileLocationChecksum());
1390 return std::unique_ptr<const DexFile>();
1391 }
1392 return dex_file;
1393}
1394
1395bool ClassLinker::OpenImageDexFiles(gc::space::ImageSpace* space,
1396 std::vector<std::unique_ptr<const DexFile>>* out_dex_files,
1397 std::string* error_msg) {
Mathieu Chartier268764d2016-09-13 12:09:38 -07001398 ScopedAssertNoThreadSuspension nts(__FUNCTION__);
Mathieu Chartierbcb6a722016-03-08 16:49:58 -08001399 const ImageHeader& header = space->GetImageHeader();
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001400 ObjPtr<mirror::Object> dex_caches_object = header.GetImageRoot(ImageHeader::kDexCaches);
Mathieu Chartierbcb6a722016-03-08 16:49:58 -08001401 DCHECK(dex_caches_object != nullptr);
1402 mirror::ObjectArray<mirror::DexCache>* dex_caches =
1403 dex_caches_object->AsObjectArray<mirror::DexCache>();
1404 const OatFile* oat_file = space->GetOatFile();
1405 for (int32_t i = 0; i < dex_caches->GetLength(); i++) {
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001406 ObjPtr<mirror::DexCache> dex_cache = dex_caches->Get(i);
Mathieu Chartierbcb6a722016-03-08 16:49:58 -08001407 std::string dex_file_location(dex_cache->GetLocation()->ToModifiedUtf8());
1408 std::unique_ptr<const DexFile> dex_file = OpenOatDexFile(oat_file,
1409 dex_file_location.c_str(),
1410 error_msg);
1411 if (dex_file == nullptr) {
1412 return false;
1413 }
1414 dex_cache->SetDexFile(dex_file.get());
1415 out_dex_files->push_back(std::move(dex_file));
1416 }
1417 return true;
1418}
1419
Andreas Gampe0793bec2016-12-01 11:37:33 -08001420// Helper class for ArtMethod checks when adding an image. Keeps all required functionality
1421// together and caches some intermediate results.
1422class ImageSanityChecks FINAL {
1423 public:
1424 static void CheckObjects(gc::Heap* heap, ClassLinker* class_linker)
1425 REQUIRES_SHARED(Locks::mutator_lock_) {
1426 ImageSanityChecks isc(heap, class_linker);
Andreas Gampe1c158a02017-07-13 17:26:19 -07001427 auto visitor = [&](mirror::Object* obj) REQUIRES_SHARED(Locks::mutator_lock_) {
1428 DCHECK(obj != nullptr);
1429 CHECK(obj->GetClass() != nullptr) << "Null class in object " << obj;
1430 CHECK(obj->GetClass()->GetClass() != nullptr) << "Null class class " << obj;
1431 if (obj->IsClass()) {
1432 auto klass = obj->AsClass();
1433 for (ArtField& field : klass->GetIFields()) {
1434 CHECK_EQ(field.GetDeclaringClass(), klass);
1435 }
1436 for (ArtField& field : klass->GetSFields()) {
1437 CHECK_EQ(field.GetDeclaringClass(), klass);
1438 }
1439 const auto pointer_size = isc.pointer_size_;
1440 for (auto& m : klass->GetMethods(pointer_size)) {
1441 isc.SanityCheckArtMethod(&m, klass);
1442 }
1443 auto* vtable = klass->GetVTable();
1444 if (vtable != nullptr) {
1445 isc.SanityCheckArtMethodPointerArray(vtable, nullptr);
1446 }
1447 if (klass->ShouldHaveImt()) {
1448 ImTable* imt = klass->GetImt(pointer_size);
1449 for (size_t i = 0; i < ImTable::kSize; ++i) {
1450 isc.SanityCheckArtMethod(imt->Get(i, pointer_size), nullptr);
1451 }
1452 }
1453 if (klass->ShouldHaveEmbeddedVTable()) {
1454 for (int32_t i = 0; i < klass->GetEmbeddedVTableLength(); ++i) {
1455 isc.SanityCheckArtMethod(klass->GetEmbeddedVTableEntry(i, pointer_size), nullptr);
1456 }
1457 }
1458 mirror::IfTable* iftable = klass->GetIfTable();
1459 for (int32_t i = 0; i < klass->GetIfTableCount(); ++i) {
1460 if (iftable->GetMethodArrayCount(i) > 0) {
1461 isc.SanityCheckArtMethodPointerArray(iftable->GetMethodArray(i), nullptr);
1462 }
1463 }
1464 }
1465 };
1466 heap->VisitObjects(visitor);
Andreas Gampe0793bec2016-12-01 11:37:33 -08001467 }
1468
Vladimir Marko07bfbac2017-07-06 14:55:02 +01001469 static void CheckArtMethodDexCacheArray(gc::Heap* heap,
1470 ClassLinker* class_linker,
1471 mirror::MethodDexCacheType* arr,
1472 size_t size)
Andreas Gampe0793bec2016-12-01 11:37:33 -08001473 REQUIRES_SHARED(Locks::mutator_lock_) {
1474 ImageSanityChecks isc(heap, class_linker);
Vladimir Marko07bfbac2017-07-06 14:55:02 +01001475 isc.SanityCheckArtMethodDexCacheArray(arr, size);
Andreas Gampe0793bec2016-12-01 11:37:33 -08001476 }
1477
Andreas Gampe0793bec2016-12-01 11:37:33 -08001478 private:
1479 ImageSanityChecks(gc::Heap* heap, ClassLinker* class_linker)
1480 : spaces_(heap->GetBootImageSpaces()),
1481 pointer_size_(class_linker->GetImagePointerSize()) {
1482 space_begin_.reserve(spaces_.size());
1483 method_sections_.reserve(spaces_.size());
1484 runtime_method_sections_.reserve(spaces_.size());
1485 for (gc::space::ImageSpace* space : spaces_) {
1486 space_begin_.push_back(space->Begin());
1487 auto& header = space->GetImageHeader();
1488 method_sections_.push_back(&header.GetMethodsSection());
1489 runtime_method_sections_.push_back(&header.GetRuntimeMethodsSection());
1490 }
1491 }
1492
1493 void SanityCheckArtMethod(ArtMethod* m, ObjPtr<mirror::Class> expected_class)
1494 REQUIRES_SHARED(Locks::mutator_lock_) {
1495 if (m->IsRuntimeMethod()) {
1496 ObjPtr<mirror::Class> declaring_class = m->GetDeclaringClassUnchecked();
1497 CHECK(declaring_class == nullptr) << declaring_class << " " << m->PrettyMethod();
1498 } else if (m->IsCopied()) {
1499 CHECK(m->GetDeclaringClass() != nullptr) << m->PrettyMethod();
1500 } else if (expected_class != nullptr) {
1501 CHECK_EQ(m->GetDeclaringClassUnchecked(), expected_class) << m->PrettyMethod();
1502 }
1503 if (!spaces_.empty()) {
1504 bool contains = false;
1505 for (size_t i = 0; !contains && i != space_begin_.size(); ++i) {
1506 const size_t offset = reinterpret_cast<uint8_t*>(m) - space_begin_[i];
1507 contains = method_sections_[i]->Contains(offset) ||
1508 runtime_method_sections_[i]->Contains(offset);
1509 }
1510 CHECK(contains) << m << " not found";
1511 }
1512 }
1513
1514 void SanityCheckArtMethodPointerArray(ObjPtr<mirror::PointerArray> arr,
1515 ObjPtr<mirror::Class> expected_class)
1516 REQUIRES_SHARED(Locks::mutator_lock_) {
1517 CHECK(arr != nullptr);
1518 for (int32_t j = 0; j < arr->GetLength(); ++j) {
1519 auto* method = arr->GetElementPtrSize<ArtMethod*>(j, pointer_size_);
1520 // expected_class == null means we are a dex cache.
1521 if (expected_class != nullptr) {
1522 CHECK(method != nullptr);
1523 }
1524 if (method != nullptr) {
1525 SanityCheckArtMethod(method, expected_class);
1526 }
1527 }
1528 }
1529
Vladimir Marko07bfbac2017-07-06 14:55:02 +01001530 void SanityCheckArtMethodDexCacheArray(mirror::MethodDexCacheType* arr, size_t size)
Andreas Gampe0793bec2016-12-01 11:37:33 -08001531 REQUIRES_SHARED(Locks::mutator_lock_) {
1532 CHECK_EQ(arr != nullptr, size != 0u);
1533 if (arr != nullptr) {
1534 bool contains = false;
1535 for (auto space : spaces_) {
1536 auto offset = reinterpret_cast<uint8_t*>(arr) - space->Begin();
Vladimir Markocd87c3e2017-09-05 13:11:57 +01001537 if (space->GetImageHeader().GetDexCacheArraysSection().Contains(offset)) {
Andreas Gampe0793bec2016-12-01 11:37:33 -08001538 contains = true;
1539 break;
1540 }
1541 }
1542 CHECK(contains);
1543 }
1544 for (size_t j = 0; j < size; ++j) {
Vladimir Marko07bfbac2017-07-06 14:55:02 +01001545 auto pair = mirror::DexCache::GetNativePairPtrSize(arr, j, pointer_size_);
1546 ArtMethod* method = pair.object;
Andreas Gampe0793bec2016-12-01 11:37:33 -08001547 // expected_class == null means we are a dex cache.
1548 if (method != nullptr) {
1549 SanityCheckArtMethod(method, nullptr);
1550 }
1551 }
1552 }
1553
1554 const std::vector<gc::space::ImageSpace*>& spaces_;
1555 const PointerSize pointer_size_;
1556
1557 // Cached sections from the spaces.
1558 std::vector<const uint8_t*> space_begin_;
1559 std::vector<const ImageSection*> method_sections_;
1560 std::vector<const ImageSection*> runtime_method_sections_;
1561};
1562
Andreas Gampebe7af222017-07-25 09:57:28 -07001563static void VerifyAppImage(const ImageHeader& header,
1564 const Handle<mirror::ClassLoader>& class_loader,
1565 const Handle<mirror::ObjectArray<mirror::DexCache> >& dex_caches,
1566 ClassTable* class_table, gc::space::ImageSpace* space)
1567 REQUIRES_SHARED(Locks::mutator_lock_) {
1568 {
1569 class VerifyClassInTableArtMethodVisitor : public ArtMethodVisitor {
1570 public:
1571 explicit VerifyClassInTableArtMethodVisitor(ClassTable* table) : table_(table) {}
1572
1573 virtual void Visit(ArtMethod* method)
1574 REQUIRES_SHARED(Locks::mutator_lock_, Locks::classlinker_classes_lock_) {
1575 ObjPtr<mirror::Class> klass = method->GetDeclaringClass();
1576 if (klass != nullptr && !Runtime::Current()->GetHeap()->ObjectIsInBootImageSpace(klass)) {
1577 CHECK_EQ(table_->LookupByDescriptor(klass), klass) << mirror::Class::PrettyClass(klass);
1578 }
1579 }
1580
1581 private:
1582 ClassTable* const table_;
1583 };
1584 VerifyClassInTableArtMethodVisitor visitor(class_table);
1585 header.VisitPackedArtMethods(&visitor, space->Begin(), kRuntimePointerSize);
1586 }
1587 {
1588 // Verify that all direct interfaces of classes in the class table are also resolved.
1589 std::vector<ObjPtr<mirror::Class>> classes;
1590 auto verify_direct_interfaces_in_table = [&](ObjPtr<mirror::Class> klass)
1591 REQUIRES_SHARED(Locks::mutator_lock_) {
1592 if (!klass->IsPrimitive() && klass->GetClassLoader() == class_loader.Get()) {
1593 classes.push_back(klass);
1594 }
1595 return true;
1596 };
1597 class_table->Visit(verify_direct_interfaces_in_table);
1598 Thread* self = Thread::Current();
1599 for (ObjPtr<mirror::Class> klass : classes) {
1600 for (uint32_t i = 0, num = klass->NumDirectInterfaces(); i != num; ++i) {
1601 CHECK(klass->GetDirectInterface(self, klass, i) != nullptr)
1602 << klass->PrettyDescriptor() << " iface #" << i;
1603 }
1604 }
1605 }
1606 // Check that all non-primitive classes in dex caches are also in the class table.
1607 for (int32_t i = 0; i < dex_caches->GetLength(); i++) {
1608 ObjPtr<mirror::DexCache> dex_cache = dex_caches->Get(i);
1609 mirror::TypeDexCacheType* const types = dex_cache->GetResolvedTypes();
1610 for (int32_t j = 0, num_types = dex_cache->NumResolvedTypes(); j < num_types; j++) {
1611 ObjPtr<mirror::Class> klass = types[j].load(std::memory_order_relaxed).object.Read();
1612 if (klass != nullptr && !klass->IsPrimitive()) {
1613 CHECK(class_table->Contains(klass))
1614 << klass->PrettyDescriptor() << " " << dex_cache->GetDexFile()->GetLocation();
1615 }
1616 }
1617 }
1618}
1619
Mathieu Chartierfbc31082016-01-24 11:59:56 -08001620bool ClassLinker::AddImageSpace(
1621 gc::space::ImageSpace* space,
1622 Handle<mirror::ClassLoader> class_loader,
1623 jobjectArray dex_elements,
1624 const char* dex_location,
1625 std::vector<std::unique_ptr<const DexFile>>* out_dex_files,
1626 std::string* error_msg) {
1627 DCHECK(out_dex_files != nullptr);
1628 DCHECK(error_msg != nullptr);
1629 const uint64_t start_time = NanoTime();
Andreas Gampefa4333d2017-02-14 11:10:34 -08001630 const bool app_image = class_loader != nullptr;
Mathieu Chartierfbc31082016-01-24 11:59:56 -08001631 const ImageHeader& header = space->GetImageHeader();
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001632 ObjPtr<mirror::Object> dex_caches_object = header.GetImageRoot(ImageHeader::kDexCaches);
Mathieu Chartierfbc31082016-01-24 11:59:56 -08001633 DCHECK(dex_caches_object != nullptr);
1634 Runtime* const runtime = Runtime::Current();
1635 gc::Heap* const heap = runtime->GetHeap();
1636 Thread* const self = Thread::Current();
Mathieu Chartierfbc31082016-01-24 11:59:56 -08001637 // Check that the image is what we are expecting.
1638 if (image_pointer_size_ != space->GetImageHeader().GetPointerSize()) {
1639 *error_msg = StringPrintf("Application image pointer size does not match runtime: %zu vs %zu",
1640 static_cast<size_t>(space->GetImageHeader().GetPointerSize()),
1641 image_pointer_size_);
1642 return false;
1643 }
Vladimir Markoeca3eda2016-11-09 16:26:44 +00001644 size_t expected_image_roots = ImageHeader::NumberOfImageRoots(app_image);
1645 if (static_cast<size_t>(header.GetImageRoots()->GetLength()) != expected_image_roots) {
1646 *error_msg = StringPrintf("Expected %zu image roots but got %d",
1647 expected_image_roots,
1648 header.GetImageRoots()->GetLength());
1649 return false;
1650 }
1651 StackHandleScope<3> hs(self);
1652 Handle<mirror::ObjectArray<mirror::DexCache>> dex_caches(
1653 hs.NewHandle(dex_caches_object->AsObjectArray<mirror::DexCache>()));
1654 Handle<mirror::ObjectArray<mirror::Class>> class_roots(hs.NewHandle(
1655 header.GetImageRoot(ImageHeader::kClassRoots)->AsObjectArray<mirror::Class>()));
1656 static_assert(ImageHeader::kClassLoader + 1u == ImageHeader::kImageRootsMax,
1657 "Class loader should be the last image root.");
1658 MutableHandle<mirror::ClassLoader> image_class_loader(hs.NewHandle(
1659 app_image ? header.GetImageRoot(ImageHeader::kClassLoader)->AsClassLoader() : nullptr));
Andreas Gampefa4333d2017-02-14 11:10:34 -08001660 DCHECK(class_roots != nullptr);
Mathieu Chartierfbc31082016-01-24 11:59:56 -08001661 if (class_roots->GetLength() != static_cast<int32_t>(kClassRootsMax)) {
1662 *error_msg = StringPrintf("Expected %d class roots but got %d",
1663 class_roots->GetLength(),
1664 static_cast<int32_t>(kClassRootsMax));
1665 return false;
1666 }
1667 // Check against existing class roots to make sure they match the ones in the boot image.
1668 for (size_t i = 0; i < kClassRootsMax; i++) {
1669 if (class_roots->Get(i) != GetClassRoot(static_cast<ClassRoot>(i))) {
1670 *error_msg = "App image class roots must have pointer equality with runtime ones.";
1671 return false;
1672 }
1673 }
Vladimir Markoeca3eda2016-11-09 16:26:44 +00001674 const OatFile* oat_file = space->GetOatFile();
Mathieu Chartierfbc31082016-01-24 11:59:56 -08001675 if (oat_file->GetOatHeader().GetDexFileCount() !=
1676 static_cast<uint32_t>(dex_caches->GetLength())) {
1677 *error_msg = "Dex cache count and dex file count mismatch while trying to initialize from "
1678 "image";
1679 return false;
1680 }
1681
Mathieu Chartierfbc31082016-01-24 11:59:56 -08001682 for (int32_t i = 0; i < dex_caches->GetLength(); i++) {
Vladimir Markocd556b02017-02-03 11:47:34 +00001683 ObjPtr<mirror::DexCache> dex_cache = dex_caches->Get(i);
1684 std::string dex_file_location(dex_cache->GetLocation()->ToModifiedUtf8());
Mathieu Chartierfbc31082016-01-24 11:59:56 -08001685 // TODO: Only store qualified paths.
1686 // If non qualified, qualify it.
1687 if (dex_file_location.find('/') == std::string::npos) {
1688 std::string dex_location_path = dex_location;
1689 const size_t pos = dex_location_path.find_last_of('/');
1690 CHECK_NE(pos, std::string::npos);
1691 dex_location_path = dex_location_path.substr(0, pos + 1); // Keep trailing '/'
1692 dex_file_location = dex_location_path + dex_file_location;
1693 }
Mathieu Chartierbcb6a722016-03-08 16:49:58 -08001694 std::unique_ptr<const DexFile> dex_file = OpenOatDexFile(oat_file,
1695 dex_file_location.c_str(),
1696 error_msg);
Mathieu Chartierfbc31082016-01-24 11:59:56 -08001697 if (dex_file == nullptr) {
Mathieu Chartierfbc31082016-01-24 11:59:56 -08001698 return false;
1699 }
1700
1701 if (app_image) {
1702 // The current dex file field is bogus, overwrite it so that we can get the dex file in the
1703 // loop below.
Vladimir Markocd556b02017-02-03 11:47:34 +00001704 dex_cache->SetDexFile(dex_file.get());
Vladimir Marko8d6768d2017-03-14 10:13:21 +00001705 mirror::TypeDexCacheType* const types = dex_cache->GetResolvedTypes();
Vladimir Markocd556b02017-02-03 11:47:34 +00001706 for (int32_t j = 0, num_types = dex_cache->NumResolvedTypes(); j < num_types; j++) {
Vladimir Marko8d6768d2017-03-14 10:13:21 +00001707 ObjPtr<mirror::Class> klass = types[j].load(std::memory_order_relaxed).object.Read();
Mathieu Chartierfbc31082016-01-24 11:59:56 -08001708 if (klass != nullptr) {
Vladimir Marko72ab6842017-01-20 19:32:50 +00001709 DCHECK(!klass->IsErroneous()) << klass->GetStatus();
Mathieu Chartierfbc31082016-01-24 11:59:56 -08001710 }
1711 }
1712 } else {
1713 if (kSanityCheckObjects) {
Vladimir Marko07bfbac2017-07-06 14:55:02 +01001714 ImageSanityChecks::CheckArtMethodDexCacheArray(heap,
1715 this,
1716 dex_cache->GetResolvedMethods(),
1717 dex_cache->NumResolvedMethods());
Mathieu Chartierfbc31082016-01-24 11:59:56 -08001718 }
1719 // Register dex files, keep track of existing ones that are conflicts.
Vladimir Markocd556b02017-02-03 11:47:34 +00001720 AppendToBootClassPath(*dex_file.get(), dex_cache);
Mathieu Chartierfbc31082016-01-24 11:59:56 -08001721 }
1722 out_dex_files->push_back(std::move(dex_file));
1723 }
1724
1725 if (app_image) {
1726 ScopedObjectAccessUnchecked soa(Thread::Current());
1727 // Check that the class loader resolves the same way as the ones in the image.
1728 // Image class loader [A][B][C][image dex files]
1729 // Class loader = [???][dex_elements][image dex files]
1730 // Need to ensure that [???][dex_elements] == [A][B][C].
1731 // For each class loader, PathClassLoader, the laoder checks the parent first. Also the logic
1732 // for PathClassLoader does this by looping through the array of dex files. To ensure they
1733 // resolve the same way, simply flatten the hierarchy in the way the resolution order would be,
1734 // and check that the dex file names are the same.
Vladimir Markoeca3eda2016-11-09 16:26:44 +00001735 if (IsBootClassLoader(soa, image_class_loader.Get())) {
1736 *error_msg = "Unexpected BootClassLoader in app image";
1737 return false;
1738 }
Mathieu Chartier8a1691f2017-03-02 12:02:13 -08001739 std::list<ObjPtr<mirror::String>> image_dex_file_names;
Vladimir Markoeca3eda2016-11-09 16:26:44 +00001740 std::string temp_error_msg;
1741 if (!FlattenPathClassLoader(image_class_loader.Get(), &image_dex_file_names, &temp_error_msg)) {
1742 *error_msg = StringPrintf("Failed to flatten image class loader hierarchy '%s'",
1743 temp_error_msg.c_str());
1744 return false;
1745 }
Mathieu Chartier8a1691f2017-03-02 12:02:13 -08001746 std::list<ObjPtr<mirror::String>> loader_dex_file_names;
Vladimir Markoeca3eda2016-11-09 16:26:44 +00001747 if (!FlattenPathClassLoader(class_loader.Get(), &loader_dex_file_names, &temp_error_msg)) {
1748 *error_msg = StringPrintf("Failed to flatten class loader hierarchy '%s'",
1749 temp_error_msg.c_str());
1750 return false;
1751 }
1752 // Add the temporary dex path list elements at the end.
1753 auto elements = soa.Decode<mirror::ObjectArray<mirror::Object>>(dex_elements);
1754 for (size_t i = 0, num_elems = elements->GetLength(); i < num_elems; ++i) {
1755 ObjPtr<mirror::Object> element = elements->GetWithoutChecks(i);
1756 if (element != nullptr) {
1757 // If we are somewhere in the middle of the array, there may be nulls at the end.
Mathieu Chartier8a1691f2017-03-02 12:02:13 -08001758 ObjPtr<mirror::String> name;
1759 if (GetDexPathListElementName(element, &name) && name != nullptr) {
1760 loader_dex_file_names.push_back(name);
1761 }
Nicolas Geoffray1df3b552016-04-26 18:30:31 +01001762 }
Vladimir Markoeca3eda2016-11-09 16:26:44 +00001763 }
1764 // Ignore the number of image dex files since we are adding those to the class loader anyways.
1765 CHECK_GE(static_cast<size_t>(image_dex_file_names.size()),
1766 static_cast<size_t>(dex_caches->GetLength()));
1767 size_t image_count = image_dex_file_names.size() - dex_caches->GetLength();
1768 // Check that the dex file names match.
1769 bool equal = image_count == loader_dex_file_names.size();
1770 if (equal) {
1771 auto it1 = image_dex_file_names.begin();
1772 auto it2 = loader_dex_file_names.begin();
1773 for (size_t i = 0; equal && i < image_count; ++i, ++it1, ++it2) {
1774 equal = equal && (*it1)->Equals(*it2);
Mathieu Chartierfbc31082016-01-24 11:59:56 -08001775 }
Vladimir Markoeca3eda2016-11-09 16:26:44 +00001776 }
1777 if (!equal) {
1778 VLOG(image) << "Image dex files " << image_dex_file_names.size();
1779 for (ObjPtr<mirror::String> name : image_dex_file_names) {
1780 VLOG(image) << name->ToModifiedUtf8();
Mathieu Chartierfbc31082016-01-24 11:59:56 -08001781 }
Vladimir Markoeca3eda2016-11-09 16:26:44 +00001782 VLOG(image) << "Loader dex files " << loader_dex_file_names.size();
1783 for (ObjPtr<mirror::String> name : loader_dex_file_names) {
1784 VLOG(image) << name->ToModifiedUtf8();
Mathieu Chartierfbc31082016-01-24 11:59:56 -08001785 }
Vladimir Markoeca3eda2016-11-09 16:26:44 +00001786 *error_msg = "Rejecting application image due to class loader mismatch";
1787 // Ignore class loader mismatch for now since these would just use possibly incorrect
1788 // oat code anyways. The structural class check should be done in the parent.
Mathieu Chartierfbc31082016-01-24 11:59:56 -08001789 }
1790 }
1791
1792 if (kSanityCheckObjects) {
1793 for (int32_t i = 0; i < dex_caches->GetLength(); i++) {
1794 auto* dex_cache = dex_caches->Get(i);
1795 for (size_t j = 0; j < dex_cache->NumResolvedFields(); ++j) {
1796 auto* field = dex_cache->GetResolvedField(j, image_pointer_size_);
1797 if (field != nullptr) {
1798 CHECK(field->GetDeclaringClass()->GetClass() != nullptr);
1799 }
1800 }
1801 }
1802 if (!app_image) {
Andreas Gampe0793bec2016-12-01 11:37:33 -08001803 ImageSanityChecks::CheckObjects(heap, this);
Mathieu Chartierfbc31082016-01-24 11:59:56 -08001804 }
1805 }
1806
1807 // Set entry point to interpreter if in InterpretOnly mode.
1808 if (!runtime->IsAotCompiler() && runtime->GetInstrumentation()->InterpretOnly()) {
Mathieu Chartierfbc31082016-01-24 11:59:56 -08001809 SetInterpreterEntrypointArtMethodVisitor visitor(image_pointer_size_);
Mathieu Chartiercdca4762016-04-28 09:44:54 -07001810 header.VisitPackedArtMethods(&visitor, space->Begin(), image_pointer_size_);
Mathieu Chartierfbc31082016-01-24 11:59:56 -08001811 }
1812
Vladimir Marko6cfbdbc2017-07-25 13:26:39 +01001813 if (!app_image) {
1814 // Make the string intern table and class table immutable for boot image.
1815 // PIC app oat files may mmap a read-only copy into their own .bss section,
1816 // so enforce that the data in the boot image tables remains unchanged.
1817 //
1818 // We cannot do that for app image even after the fixup as some interned
1819 // String references may actually end up pointing to moveable Strings.
1820 uint8_t* const_section_begin = space->Begin() + header.GetBootImageConstantTablesOffset();
Mathieu Chartier8d8de0c2017-10-04 09:35:30 -07001821 CheckedCall(mprotect,
1822 "protect constant tables",
1823 const_section_begin,
1824 header.GetBootImageConstantTablesSize(),
1825 PROT_READ);
Vladimir Marko6cfbdbc2017-07-25 13:26:39 +01001826 }
1827
Mathieu Chartier1aa8ec22016-02-01 10:34:47 -08001828 ClassTable* class_table = nullptr;
1829 {
Mathieu Chartierfbc31082016-01-24 11:59:56 -08001830 WriterMutexLock mu(self, *Locks::classlinker_classes_lock_);
Mathieu Chartier1aa8ec22016-02-01 10:34:47 -08001831 class_table = InsertClassTableForClassLoader(class_loader.Get());
Mathieu Chartier69731002016-03-02 16:08:31 -08001832 }
1833 // If we have a class table section, read it and use it for verification in
1834 // UpdateAppImageClassLoadersAndDexCaches.
1835 ClassTable::ClassSet temp_set;
Vladimir Marko0f3c7002017-09-07 14:15:56 +01001836 const ImageSection& class_table_section = header.GetClassTableSection();
Mathieu Chartier69731002016-03-02 16:08:31 -08001837 const bool added_class_table = class_table_section.Size() > 0u;
1838 if (added_class_table) {
1839 const uint64_t start_time2 = NanoTime();
1840 size_t read_count = 0;
1841 temp_set = ClassTable::ClassSet(space->Begin() + class_table_section.Offset(),
1842 /*make copy*/false,
1843 &read_count);
Mathieu Chartier69731002016-03-02 16:08:31 -08001844 VLOG(image) << "Adding class table classes took " << PrettyDuration(NanoTime() - start_time2);
Mathieu Chartierfbc31082016-01-24 11:59:56 -08001845 }
1846 if (app_image) {
Vladimir Marko0f3c7002017-09-07 14:15:56 +01001847 AppImageClassLoadersAndDexCachesHelper::Update(this,
1848 space,
1849 class_loader,
1850 dex_caches,
1851 &temp_set);
Mathieu Chartier69731002016-03-02 16:08:31 -08001852 // Update class loader and resolved strings. If added_class_table is false, the resolved
1853 // strings were forwarded UpdateAppImageClassLoadersAndDexCaches.
Nicolas Geoffrayf9bf2502016-12-14 14:59:04 +00001854 UpdateClassLoaderVisitor visitor(space, class_loader.Get());
1855 for (const ClassTable::TableSlot& root : temp_set) {
Vladimir Marko1a1de672016-10-13 12:53:15 +01001856 visitor(root.Read());
Mathieu Chartier1aa8ec22016-02-01 10:34:47 -08001857 }
Igor Murashkin86083f72017-10-27 10:59:04 -07001858
1859 {
1860 // Every class in the app image has initially SubtypeCheckInfo in the
1861 // Uninitialized state.
1862 //
1863 // The SubtypeCheck invariants imply that a SubtypeCheckInfo is at least Initialized
1864 // after class initialization is complete. The app image ClassStatus as-is
1865 // are almost all ClassStatus::Initialized, and being in the
1866 // SubtypeCheckInfo::kUninitialized state is violating that invariant.
1867 //
1868 // Force every app image class's SubtypeCheck to be at least kIninitialized.
1869 //
1870 // See also ImageWriter::FixupClass.
1871 ScopedTrace trace("Recalculate app image SubtypeCheck bitstrings");
1872 MutexLock subtype_check_lock(Thread::Current(), *Locks::subtype_check_lock_);
1873 for (const ClassTable::TableSlot& root : temp_set) {
1874 mirror::Class* root_klass = root.Read();
1875 SubtypeCheck<mirror::Class*>::EnsureInitialized(root_klass);
1876 }
1877 }
Vladimir Marko1998cd02017-01-13 13:02:58 +00001878 }
1879 if (!oat_file->GetBssGcRoots().empty()) {
1880 // Insert oat file to class table for visiting .bss GC roots.
1881 class_table->InsertOatFile(oat_file);
Mathieu Chartierfbc31082016-01-24 11:59:56 -08001882 }
Igor Murashkin86083f72017-10-27 10:59:04 -07001883
Mathieu Chartier69731002016-03-02 16:08:31 -08001884 if (added_class_table) {
1885 WriterMutexLock mu(self, *Locks::classlinker_classes_lock_);
1886 class_table->AddClassSet(std::move(temp_set));
1887 }
Andreas Gampebe7af222017-07-25 09:57:28 -07001888
Mathieu Chartier69731002016-03-02 16:08:31 -08001889 if (kIsDebugBuild && app_image) {
1890 // This verification needs to happen after the classes have been added to the class loader.
1891 // Since it ensures classes are in the class table.
Andreas Gampeacbd98b2017-10-12 10:44:11 -07001892 ScopedTrace trace("VerifyAppImage");
Andreas Gampebe7af222017-07-25 09:57:28 -07001893 VerifyAppImage(header, class_loader, dex_caches, class_table, space);
Mathieu Chartier69731002016-03-02 16:08:31 -08001894 }
Andreas Gampebe7af222017-07-25 09:57:28 -07001895
Mathieu Chartierfbc31082016-01-24 11:59:56 -08001896 VLOG(class_linker) << "Adding image space took " << PrettyDuration(NanoTime() - start_time);
Andreas Gampe3db9c5d2015-11-17 11:52:46 -08001897 return true;
Brian Carlstroma663ea52011-08-19 23:33:41 -07001898}
1899
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001900bool ClassLinker::ClassInClassTable(ObjPtr<mirror::Class> klass) {
Mathieu Chartiercc5ebdf2015-07-27 11:19:43 -07001901 ClassTable* const class_table = ClassTableForClassLoader(klass->GetClassLoader());
1902 return class_table != nullptr && class_table->Contains(klass);
Mathieu Chartiere401d142015-04-22 13:56:20 -07001903}
1904
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -07001905void ClassLinker::VisitClassRoots(RootVisitor* visitor, VisitRootFlags flags) {
Mathieu Chartier7778b882015-10-05 16:41:10 -07001906 // Acquire tracing_enabled before locking class linker lock to prevent lock order violation. Since
1907 // enabling tracing requires the mutator lock, there are no race conditions here.
1908 const bool tracing_enabled = Trace::IsTracingEnabled();
Mathieu Chartier9b1c71e2015-09-02 18:51:54 -07001909 Thread* const self = Thread::Current();
1910 WriterMutexLock mu(self, *Locks::classlinker_classes_lock_);
Vladimir Marko9b03cb42017-02-16 16:37:03 +00001911 if (kUseReadBarrier) {
1912 // We do not track new roots for CC.
1913 DCHECK_EQ(0, flags & (kVisitRootFlagNewRoots |
1914 kVisitRootFlagClearRootLog |
1915 kVisitRootFlagStartLoggingNewRoots |
1916 kVisitRootFlagStopLoggingNewRoots));
1917 }
Mathieu Chartier52e4b432014-06-10 11:22:31 -07001918 if ((flags & kVisitRootFlagAllRoots) != 0) {
Mathieu Chartiere401d142015-04-22 13:56:20 -07001919 // Argument for how root visiting deals with ArtField and ArtMethod roots.
1920 // There is 3 GC cases to handle:
1921 // Non moving concurrent:
1922 // This case is easy to handle since the reference members of ArtMethod and ArtFields are held
Mathieu Chartierda7c6502015-07-23 16:01:26 -07001923 // live by the class and class roots.
Mathieu Chartiere401d142015-04-22 13:56:20 -07001924 //
1925 // Moving non-concurrent:
1926 // This case needs to call visit VisitNativeRoots in case the classes or dex cache arrays move.
1927 // To prevent missing roots, this case needs to ensure that there is no
1928 // suspend points between the point which we allocate ArtMethod arrays and place them in a
1929 // class which is in the class table.
1930 //
1931 // Moving concurrent:
1932 // Need to make sure to not copy ArtMethods without doing read barriers since the roots are
1933 // marked concurrently and we don't hold the classlinker_classes_lock_ when we do the copy.
Mathieu Chartier58c3f6a2016-12-01 14:21:11 -08001934 //
1935 // Use an unbuffered visitor since the class table uses a temporary GcRoot for holding decoded
1936 // ClassTable::TableSlot. The buffered root visiting would access a stale stack location for
1937 // these objects.
1938 UnbufferedRootVisitor root_visitor(visitor, RootInfo(kRootStickyClass));
Andreas Gampe2af99022017-04-25 08:32:59 -07001939 boot_class_table_->VisitRoots(root_visitor);
Mathieu Chartier7778b882015-10-05 16:41:10 -07001940 // If tracing is enabled, then mark all the class loaders to prevent unloading.
neo.chaea2d1b282016-11-08 08:40:46 +09001941 if ((flags & kVisitRootFlagClassLoader) != 0 || tracing_enabled) {
Mathieu Chartier7778b882015-10-05 16:41:10 -07001942 for (const ClassLoaderData& data : class_loaders_) {
1943 GcRoot<mirror::Object> root(GcRoot<mirror::Object>(self->DecodeJObject(data.weak_root)));
1944 root.VisitRoot(visitor, RootInfo(kRootVMInternal));
1945 }
1946 }
Vladimir Marko9b03cb42017-02-16 16:37:03 +00001947 } else if (!kUseReadBarrier && (flags & kVisitRootFlagNewRoots) != 0) {
Mathieu Chartierc2e20622014-11-03 11:41:47 -08001948 for (auto& root : new_class_roots_) {
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001949 ObjPtr<mirror::Class> old_ref = root.Read<kWithoutReadBarrier>();
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -07001950 root.VisitRoot(visitor, RootInfo(kRootStickyClass));
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001951 ObjPtr<mirror::Class> new_ref = root.Read<kWithoutReadBarrier>();
Mathieu Chartiercc5ebdf2015-07-27 11:19:43 -07001952 // Concurrent moving GC marked new roots through the to-space invariant.
1953 CHECK_EQ(new_ref, old_ref);
Mathieu Chartier52e4b432014-06-10 11:22:31 -07001954 }
Vladimir Marko1998cd02017-01-13 13:02:58 +00001955 for (const OatFile* oat_file : new_bss_roots_boot_oat_files_) {
1956 for (GcRoot<mirror::Object>& root : oat_file->GetBssGcRoots()) {
1957 ObjPtr<mirror::Object> old_ref = root.Read<kWithoutReadBarrier>();
1958 if (old_ref != nullptr) {
1959 DCHECK(old_ref->IsClass());
1960 root.VisitRoot(visitor, RootInfo(kRootStickyClass));
1961 ObjPtr<mirror::Object> new_ref = root.Read<kWithoutReadBarrier>();
1962 // Concurrent moving GC marked new roots through the to-space invariant.
1963 CHECK_EQ(new_ref, old_ref);
1964 }
1965 }
1966 }
Mathieu Chartier52e4b432014-06-10 11:22:31 -07001967 }
Vladimir Marko9b03cb42017-02-16 16:37:03 +00001968 if (!kUseReadBarrier && (flags & kVisitRootFlagClearRootLog) != 0) {
Mathieu Chartier52e4b432014-06-10 11:22:31 -07001969 new_class_roots_.clear();
Vladimir Marko1998cd02017-01-13 13:02:58 +00001970 new_bss_roots_boot_oat_files_.clear();
Mathieu Chartier52e4b432014-06-10 11:22:31 -07001971 }
Vladimir Marko9b03cb42017-02-16 16:37:03 +00001972 if (!kUseReadBarrier && (flags & kVisitRootFlagStartLoggingNewRoots) != 0) {
Vladimir Marko1998cd02017-01-13 13:02:58 +00001973 log_new_roots_ = true;
Vladimir Marko9b03cb42017-02-16 16:37:03 +00001974 } else if (!kUseReadBarrier && (flags & kVisitRootFlagStopLoggingNewRoots) != 0) {
Vladimir Marko1998cd02017-01-13 13:02:58 +00001975 log_new_roots_ = false;
Mathieu Chartier52e4b432014-06-10 11:22:31 -07001976 }
1977 // We deliberately ignore the class roots in the image since we
1978 // handle image roots by using the MS/CMS rescanning of dirty cards.
1979}
1980
Brian Carlstroma663ea52011-08-19 23:33:41 -07001981// Keep in sync with InitCallback. Anything we visit, we need to
1982// reinit references to when reinitializing a ClassLinker from a
1983// mapped image.
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -07001984void ClassLinker::VisitRoots(RootVisitor* visitor, VisitRootFlags flags) {
Mathieu Chartier31000802015-06-14 14:14:37 -07001985 class_roots_.VisitRootIfNonNull(visitor, RootInfo(kRootVMInternal));
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -07001986 VisitClassRoots(visitor, flags);
Mathieu Chartier31000802015-06-14 14:14:37 -07001987 array_iftable_.VisitRootIfNonNull(visitor, RootInfo(kRootVMInternal));
Mathieu Chartier6cfc2c02015-10-12 15:06:16 -07001988 // Instead of visiting the find_array_class_cache_ drop it so that it doesn't prevent class
1989 // unloading if we are marking roots.
1990 DropFindArrayClassCache();
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07001991}
1992
Mathieu Chartier9b1c71e2015-09-02 18:51:54 -07001993class VisitClassLoaderClassesVisitor : public ClassLoaderVisitor {
1994 public:
1995 explicit VisitClassLoaderClassesVisitor(ClassVisitor* visitor)
1996 : visitor_(visitor),
1997 done_(false) {}
1998
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001999 void Visit(ObjPtr<mirror::ClassLoader> class_loader)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07002000 REQUIRES_SHARED(Locks::classlinker_classes_lock_, Locks::mutator_lock_) OVERRIDE {
Mathieu Chartier9b1c71e2015-09-02 18:51:54 -07002001 ClassTable* const class_table = class_loader->GetClassTable();
Vladimir Markoc5798bf2016-12-09 10:20:54 +00002002 if (!done_ && class_table != nullptr) {
2003 DefiningClassLoaderFilterVisitor visitor(class_loader, visitor_);
2004 if (!class_table->Visit(visitor)) {
2005 // If the visitor ClassTable returns false it means that we don't need to continue.
2006 done_ = true;
2007 }
Mathieu Chartier9b1c71e2015-09-02 18:51:54 -07002008 }
2009 }
2010
2011 private:
Vladimir Markoc5798bf2016-12-09 10:20:54 +00002012 // Class visitor that limits the class visits from a ClassTable to the classes with
2013 // the provided defining class loader. This filter is used to avoid multiple visits
2014 // of the same class which can be recorded for multiple initiating class loaders.
2015 class DefiningClassLoaderFilterVisitor : public ClassVisitor {
2016 public:
2017 DefiningClassLoaderFilterVisitor(ObjPtr<mirror::ClassLoader> defining_class_loader,
2018 ClassVisitor* visitor)
2019 : defining_class_loader_(defining_class_loader), visitor_(visitor) { }
2020
2021 bool operator()(ObjPtr<mirror::Class> klass) OVERRIDE REQUIRES_SHARED(Locks::mutator_lock_) {
2022 if (klass->GetClassLoader() != defining_class_loader_) {
2023 return true;
2024 }
2025 return (*visitor_)(klass);
2026 }
2027
2028 ObjPtr<mirror::ClassLoader> const defining_class_loader_;
2029 ClassVisitor* const visitor_;
2030 };
2031
Mathieu Chartier9b1c71e2015-09-02 18:51:54 -07002032 ClassVisitor* const visitor_;
2033 // If done is true then we don't need to do any more visiting.
2034 bool done_;
2035};
2036
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07002037void ClassLinker::VisitClassesInternal(ClassVisitor* visitor) {
Andreas Gampe2af99022017-04-25 08:32:59 -07002038 if (boot_class_table_->Visit(*visitor)) {
Mathieu Chartier9b1c71e2015-09-02 18:51:54 -07002039 VisitClassLoaderClassesVisitor loader_visitor(visitor);
2040 VisitClassLoaders(&loader_visitor);
Mathieu Chartiercc5ebdf2015-07-27 11:19:43 -07002041 }
2042}
2043
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07002044void ClassLinker::VisitClasses(ClassVisitor* visitor) {
Mathieu Chartiercc5ebdf2015-07-27 11:19:43 -07002045 Thread* const self = Thread::Current();
2046 ReaderMutexLock mu(self, *Locks::classlinker_classes_lock_);
2047 // Not safe to have thread suspension when we are holding a lock.
2048 if (self != nullptr) {
Mathieu Chartier268764d2016-09-13 12:09:38 -07002049 ScopedAssertNoThreadSuspension nts(__FUNCTION__);
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07002050 VisitClassesInternal(visitor);
Mathieu Chartiercc5ebdf2015-07-27 11:19:43 -07002051 } else {
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07002052 VisitClassesInternal(visitor);
Elliott Hughesa2155262011-11-16 16:26:58 -08002053 }
2054}
2055
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07002056class GetClassesInToVector : public ClassVisitor {
2057 public:
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002058 bool operator()(ObjPtr<mirror::Class> klass) OVERRIDE {
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07002059 classes_.push_back(klass);
2060 return true;
2061 }
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002062 std::vector<ObjPtr<mirror::Class>> classes_;
Ian Rogersdbf3be02014-08-29 15:40:08 -07002063};
2064
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07002065class GetClassInToObjectArray : public ClassVisitor {
2066 public:
2067 explicit GetClassInToObjectArray(mirror::ObjectArray<mirror::Class>* arr)
2068 : arr_(arr), index_(0) {}
2069
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002070 bool operator()(ObjPtr<mirror::Class> klass) OVERRIDE REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07002071 ++index_;
2072 if (index_ <= arr_->GetLength()) {
2073 arr_->Set(index_ - 1, klass);
2074 return true;
2075 }
Ian Rogersdbf3be02014-08-29 15:40:08 -07002076 return false;
2077 }
Ian Rogersdbf3be02014-08-29 15:40:08 -07002078
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07002079 bool Succeeded() const REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07002080 return index_ <= arr_->GetLength();
2081 }
2082
2083 private:
2084 mirror::ObjectArray<mirror::Class>* const arr_;
2085 int32_t index_;
2086};
2087
2088void ClassLinker::VisitClassesWithoutClassesLock(ClassVisitor* visitor) {
Ian Rogersdbf3be02014-08-29 15:40:08 -07002089 // TODO: it may be possible to avoid secondary storage if we iterate over dex caches. The problem
2090 // is avoiding duplicates.
2091 if (!kMovingClasses) {
Mathieu Chartier268764d2016-09-13 12:09:38 -07002092 ScopedAssertNoThreadSuspension nts(__FUNCTION__);
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07002093 GetClassesInToVector accumulator;
2094 VisitClasses(&accumulator);
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002095 for (ObjPtr<mirror::Class> klass : accumulator.classes_) {
Mathieu Chartier1aa8ec22016-02-01 10:34:47 -08002096 if (!visitor->operator()(klass)) {
Ian Rogersdbf3be02014-08-29 15:40:08 -07002097 return;
2098 }
2099 }
2100 } else {
Mathieu Chartier268764d2016-09-13 12:09:38 -07002101 Thread* const self = Thread::Current();
Ian Rogersdbf3be02014-08-29 15:40:08 -07002102 StackHandleScope<1> hs(self);
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07002103 auto classes = hs.NewHandle<mirror::ObjectArray<mirror::Class>>(nullptr);
Ian Rogersdbf3be02014-08-29 15:40:08 -07002104 // We size the array assuming classes won't be added to the class table during the visit.
2105 // If this assumption fails we iterate again.
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07002106 while (true) {
Ian Rogersdbf3be02014-08-29 15:40:08 -07002107 size_t class_table_size;
2108 {
Ian Rogers7b078e82014-09-10 14:44:24 -07002109 ReaderMutexLock mu(self, *Locks::classlinker_classes_lock_);
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07002110 // Add 100 in case new classes get loaded when we are filling in the object array.
2111 class_table_size = NumZygoteClasses() + NumNonZygoteClasses() + 100;
Ian Rogersdbf3be02014-08-29 15:40:08 -07002112 }
Mathieu Chartierbc5a7952016-10-17 15:46:31 -07002113 ObjPtr<mirror::Class> class_type = mirror::Class::GetJavaLangClass();
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002114 ObjPtr<mirror::Class> array_of_class = FindArrayClass(self, &class_type);
Ian Rogersdbf3be02014-08-29 15:40:08 -07002115 classes.Assign(
2116 mirror::ObjectArray<mirror::Class>::Alloc(self, array_of_class, class_table_size));
Andreas Gampefa4333d2017-02-14 11:10:34 -08002117 CHECK(classes != nullptr); // OOME.
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07002118 GetClassInToObjectArray accumulator(classes.Get());
2119 VisitClasses(&accumulator);
2120 if (accumulator.Succeeded()) {
2121 break;
2122 }
Ian Rogersdbf3be02014-08-29 15:40:08 -07002123 }
2124 for (int32_t i = 0; i < classes->GetLength(); ++i) {
2125 // If the class table shrank during creation of the clases array we expect null elements. If
2126 // the class table grew then the loop repeats. If classes are created after the loop has
2127 // finished then we don't visit.
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002128 ObjPtr<mirror::Class> klass = classes->Get(i);
Mathieu Chartier1aa8ec22016-02-01 10:34:47 -08002129 if (klass != nullptr && !visitor->operator()(klass)) {
Ian Rogersdbf3be02014-08-29 15:40:08 -07002130 return;
2131 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002132 }
2133 }
2134}
2135
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07002136ClassLinker::~ClassLinker() {
Mathieu Chartierfc58af42015-04-16 18:00:39 -07002137 mirror::Class::ResetClass();
2138 mirror::Constructor::ResetClass();
Mathieu Chartierdaaf3262015-03-24 13:30:28 -07002139 mirror::Field::ResetClass();
Mathieu Chartierfc58af42015-04-16 18:00:39 -07002140 mirror::Method::ResetClass();
2141 mirror::Reference::ResetClass();
2142 mirror::StackTraceElement::ResetClass();
2143 mirror::String::ResetClass();
2144 mirror::Throwable::ResetClass();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002145 mirror::BooleanArray::ResetArrayClass();
2146 mirror::ByteArray::ResetArrayClass();
2147 mirror::CharArray::ResetArrayClass();
Mathieu Chartierfc58af42015-04-16 18:00:39 -07002148 mirror::Constructor::ResetArrayClass();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002149 mirror::DoubleArray::ResetArrayClass();
Mathieu Chartierfc58af42015-04-16 18:00:39 -07002150 mirror::Field::ResetArrayClass();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002151 mirror::FloatArray::ResetArrayClass();
Mathieu Chartierfc58af42015-04-16 18:00:39 -07002152 mirror::Method::ResetArrayClass();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002153 mirror::IntArray::ResetArrayClass();
2154 mirror::LongArray::ResetArrayClass();
2155 mirror::ShortArray::ResetArrayClass();
Orion Hodson005ac512017-10-24 15:43:43 +01002156 mirror::CallSite::ResetClass();
Narayan Kamathafa48272016-08-03 12:46:58 +01002157 mirror::MethodType::ResetClass();
2158 mirror::MethodHandleImpl::ResetClass();
Orion Hodsonc069a302017-01-18 09:23:12 +00002159 mirror::MethodHandlesLookup::ResetClass();
Orion Hodson005ac512017-10-24 15:43:43 +01002160 mirror::VarHandle::ResetClass();
2161 mirror::FieldVarHandle::ResetClass();
2162 mirror::ArrayElementVarHandle::ResetClass();
2163 mirror::ByteArrayViewVarHandle::ResetClass();
2164 mirror::ByteBufferViewVarHandle::ResetClass();
Narayan Kamath000e1882016-10-24 17:14:25 +01002165 mirror::EmulatedStackFrame::ResetClass();
Mathieu Chartier9b1c71e2015-09-02 18:51:54 -07002166 Thread* const self = Thread::Current();
Mathieu Chartier951ec2c2015-09-22 08:50:05 -07002167 for (const ClassLoaderData& data : class_loaders_) {
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +01002168 DeleteClassLoader(self, data);
Mathieu Chartier6b069532015-08-05 15:08:12 -07002169 }
Mathieu Chartier9b1c71e2015-09-02 18:51:54 -07002170 class_loaders_.clear();
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07002171}
2172
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +01002173void ClassLinker::DeleteClassLoader(Thread* self, const ClassLoaderData& data) {
2174 Runtime* const runtime = Runtime::Current();
2175 JavaVMExt* const vm = runtime->GetJavaVM();
2176 vm->DeleteWeakGlobalRef(self, data.weak_root);
Calin Juravlee5de54c2016-04-20 14:22:09 +01002177 // Notify the JIT that we need to remove the methods and/or profiling info.
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +01002178 if (runtime->GetJit() != nullptr) {
2179 jit::JitCodeCache* code_cache = runtime->GetJit()->GetCodeCache();
2180 if (code_cache != nullptr) {
Mathieu Chartiercf79cf52017-07-21 11:17:57 -07002181 // For the JIT case, RemoveMethodsIn removes the CHA dependencies.
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +01002182 code_cache->RemoveMethodsIn(self, *data.allocator);
2183 }
Andreas Gampec1ac9ee2017-07-24 22:35:49 -07002184 } else if (cha_ != nullptr) {
Mathieu Chartiercf79cf52017-07-21 11:17:57 -07002185 // If we don't have a JIT, we need to manually remove the CHA dependencies manually.
Andreas Gampec1ac9ee2017-07-24 22:35:49 -07002186 cha_->RemoveDependenciesForLinearAlloc(data.allocator);
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +01002187 }
2188 delete data.allocator;
2189 delete data.class_table;
2190}
2191
Mathieu Chartiere401d142015-04-22 13:56:20 -07002192mirror::PointerArray* ClassLinker::AllocPointerArray(Thread* self, size_t length) {
Andreas Gampe542451c2016-07-26 09:02:02 -07002193 return down_cast<mirror::PointerArray*>(
2194 image_pointer_size_ == PointerSize::k64
2195 ? static_cast<mirror::Array*>(mirror::LongArray::Alloc(self, length))
2196 : static_cast<mirror::Array*>(mirror::IntArray::Alloc(self, length)));
Mathieu Chartiere401d142015-04-22 13:56:20 -07002197}
2198
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002199mirror::DexCache* ClassLinker::AllocDexCache(ObjPtr<mirror::String>* out_location,
Mathieu Chartier6c60d842016-09-15 10:24:43 -07002200 Thread* self,
2201 const DexFile& dex_file) {
2202 StackHandleScope<1> hs(self);
2203 DCHECK(out_location != nullptr);
Mathieu Chartier28bd2e42016-10-04 13:54:57 -07002204 auto dex_cache(hs.NewHandle(ObjPtr<mirror::DexCache>::DownCast(
Mathieu Chartier6c60d842016-09-15 10:24:43 -07002205 GetClassRoot(kJavaLangDexCache)->AllocObject(self))));
Andreas Gampefa4333d2017-02-14 11:10:34 -08002206 if (dex_cache == nullptr) {
Mathieu Chartier6c60d842016-09-15 10:24:43 -07002207 self->AssertPendingOOMException();
2208 return nullptr;
2209 }
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002210 ObjPtr<mirror::String> location = intern_table_->InternStrong(dex_file.GetLocation().c_str());
Mathieu Chartier6c60d842016-09-15 10:24:43 -07002211 if (location == nullptr) {
2212 self->AssertPendingOOMException();
2213 return nullptr;
2214 }
2215 *out_location = location;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07002216 return dex_cache.Get();
Brian Carlstroma0808032011-07-18 00:39:23 -07002217}
2218
Mathieu Chartier6c60d842016-09-15 10:24:43 -07002219mirror::DexCache* ClassLinker::AllocAndInitializeDexCache(Thread* self,
2220 const DexFile& dex_file,
2221 LinearAlloc* linear_alloc) {
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002222 ObjPtr<mirror::String> location = nullptr;
2223 ObjPtr<mirror::DexCache> dex_cache = AllocDexCache(&location, self, dex_file);
Mathieu Chartier6c60d842016-09-15 10:24:43 -07002224 if (dex_cache != nullptr) {
Andreas Gampecc1b5352016-12-01 16:58:38 -08002225 WriterMutexLock mu(self, *Locks::dex_lock_);
Mathieu Chartier6c60d842016-09-15 10:24:43 -07002226 DCHECK(location != nullptr);
Andreas Gampecc1b5352016-12-01 16:58:38 -08002227 mirror::DexCache::InitializeDexCache(self,
2228 dex_cache,
2229 location,
2230 &dex_file,
2231 linear_alloc,
2232 image_pointer_size_);
Mathieu Chartier6c60d842016-09-15 10:24:43 -07002233 }
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002234 return dex_cache.Ptr();
Mathieu Chartier6c60d842016-09-15 10:24:43 -07002235}
2236
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002237mirror::Class* ClassLinker::AllocClass(Thread* self,
2238 ObjPtr<mirror::Class> java_lang_Class,
Ian Rogers6fac4472014-02-25 17:01:10 -08002239 uint32_t class_size) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002240 DCHECK_GE(class_size, sizeof(mirror::Class));
Ian Rogers1d54e732013-05-02 21:10:01 -07002241 gc::Heap* heap = Runtime::Current()->GetHeap();
Mingyao Yang98d1cc82014-05-15 17:02:16 -07002242 mirror::Class::InitializeClassVisitor visitor(class_size);
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002243 ObjPtr<mirror::Object> k = kMovingClasses ?
Brian Carlstromf3632832014-05-20 15:36:53 -07002244 heap->AllocObject<true>(self, java_lang_Class, class_size, visitor) :
2245 heap->AllocNonMovableObject<true>(self, java_lang_Class, class_size, visitor);
Ian Rogers6fac4472014-02-25 17:01:10 -08002246 if (UNLIKELY(k == nullptr)) {
Mathieu Chartiere401d142015-04-22 13:56:20 -07002247 self->AssertPendingOOMException();
Ian Rogers6fac4472014-02-25 17:01:10 -08002248 return nullptr;
Ian Rogersa436fde2013-08-27 23:34:06 -07002249 }
Ian Rogers6fac4472014-02-25 17:01:10 -08002250 return k->AsClass();
Brian Carlstrom75cb3b42011-07-28 02:13:36 -07002251}
2252
Ian Rogers6fac4472014-02-25 17:01:10 -08002253mirror::Class* ClassLinker::AllocClass(Thread* self, uint32_t class_size) {
Ian Rogers50b35e22012-10-04 10:09:15 -07002254 return AllocClass(self, GetClassRoot(kJavaLangClass), class_size);
Brian Carlstroma0808032011-07-18 00:39:23 -07002255}
2256
Igor Murashkinb1d8c312015-08-04 11:18:43 -07002257mirror::ObjectArray<mirror::StackTraceElement>* ClassLinker::AllocStackTraceElementArray(
Mathieu Chartierc77f3ab2015-09-03 19:41:50 -07002258 Thread* self,
2259 size_t length) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07002260 return mirror::ObjectArray<mirror::StackTraceElement>::Alloc(
2261 self, GetClassRoot(kJavaLangStackTraceElementArrayClass), length);
Shih-wei Liao55df06b2011-08-26 14:39:27 -07002262}
2263
Mathieu Chartierc77f3ab2015-09-03 19:41:50 -07002264mirror::Class* ClassLinker::EnsureResolved(Thread* self,
2265 const char* descriptor,
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002266 ObjPtr<mirror::Class> klass) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002267 DCHECK(klass != nullptr);
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002268 if (kIsDebugBuild) {
2269 StackHandleScope<1> hs(self);
2270 HandleWrapperObjPtr<mirror::Class> h = hs.NewHandleWrapper(&klass);
2271 Thread::PoisonObjectPointersIfDebug();
2272 }
Mingyao Yang98d1cc82014-05-15 17:02:16 -07002273
2274 // For temporary classes we must wait for them to be retired.
2275 if (init_done_ && klass->IsTemp()) {
2276 CHECK(!klass->IsResolved());
Vladimir Marko72ab6842017-01-20 19:32:50 +00002277 if (klass->IsErroneousUnresolved()) {
Mingyao Yang98d1cc82014-05-15 17:02:16 -07002278 ThrowEarlierClassFailure(klass);
2279 return nullptr;
2280 }
2281 StackHandleScope<1> hs(self);
2282 Handle<mirror::Class> h_class(hs.NewHandle(klass));
2283 ObjectLock<mirror::Class> lock(self, h_class);
2284 // Loop and wait for the resolving thread to retire this class.
Vladimir Marko72ab6842017-01-20 19:32:50 +00002285 while (!h_class->IsRetired() && !h_class->IsErroneousUnresolved()) {
Mingyao Yang98d1cc82014-05-15 17:02:16 -07002286 lock.WaitIgnoringInterrupts();
2287 }
Vladimir Marko72ab6842017-01-20 19:32:50 +00002288 if (h_class->IsErroneousUnresolved()) {
Mingyao Yang98d1cc82014-05-15 17:02:16 -07002289 ThrowEarlierClassFailure(h_class.Get());
2290 return nullptr;
2291 }
2292 CHECK(h_class->IsRetired());
2293 // Get the updated class from class table.
Andreas Gampe34ee6842014-12-02 15:43:52 -08002294 klass = LookupClass(self, descriptor, h_class.Get()->GetClassLoader());
Mingyao Yang98d1cc82014-05-15 17:02:16 -07002295 }
2296
Brian Carlstromaded5f72011-10-07 17:15:04 -07002297 // Wait for the class if it has not already been linked.
Mathieu Chartier4b0ef1c2016-07-29 16:26:01 -07002298 size_t index = 0;
2299 // Maximum number of yield iterations until we start sleeping.
2300 static const size_t kNumYieldIterations = 1000;
2301 // How long each sleep is in us.
2302 static const size_t kSleepDurationUS = 1000; // 1 ms.
Vladimir Marko72ab6842017-01-20 19:32:50 +00002303 while (!klass->IsResolved() && !klass->IsErroneousUnresolved()) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07002304 StackHandleScope<1> hs(self);
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002305 HandleWrapperObjPtr<mirror::Class> h_class(hs.NewHandleWrapper(&klass));
Mathieu Chartier4b0ef1c2016-07-29 16:26:01 -07002306 {
2307 ObjectTryLock<mirror::Class> lock(self, h_class);
2308 // Can not use a monitor wait here since it may block when returning and deadlock if another
2309 // thread has locked klass.
2310 if (lock.Acquired()) {
2311 // Check for circular dependencies between classes, the lock is required for SetStatus.
2312 if (!h_class->IsResolved() && h_class->GetClinitThreadId() == self->GetTid()) {
2313 ThrowClassCircularityError(h_class.Get());
Vladimir Marko72ab6842017-01-20 19:32:50 +00002314 mirror::Class::SetStatus(h_class, mirror::Class::kStatusErrorUnresolved, self);
Mathieu Chartier4b0ef1c2016-07-29 16:26:01 -07002315 return nullptr;
2316 }
2317 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002318 }
Mathieu Chartier4b0ef1c2016-07-29 16:26:01 -07002319 {
2320 // Handle wrapper deals with klass moving.
2321 ScopedThreadSuspension sts(self, kSuspended);
2322 if (index < kNumYieldIterations) {
2323 sched_yield();
2324 } else {
2325 usleep(kSleepDurationUS);
2326 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002327 }
Mathieu Chartier4b0ef1c2016-07-29 16:26:01 -07002328 ++index;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002329 }
Mingyao Yang98d1cc82014-05-15 17:02:16 -07002330
Vladimir Marko72ab6842017-01-20 19:32:50 +00002331 if (klass->IsErroneousUnresolved()) {
Elliott Hughes4a2b4172011-09-20 17:08:25 -07002332 ThrowEarlierClassFailure(klass);
Mathieu Chartierc528dba2013-11-26 12:00:11 -08002333 return nullptr;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002334 }
2335 // Return the loaded class. No exceptions should be pending.
David Sehr709b0702016-10-13 09:12:37 -07002336 CHECK(klass->IsResolved()) << klass->PrettyClass();
Ian Rogers62d6c772013-02-27 08:32:07 -08002337 self->AssertNoPendingException();
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002338 return klass.Ptr();
Brian Carlstromaded5f72011-10-07 17:15:04 -07002339}
2340
Ian Rogers68b56852014-08-29 20:19:11 -07002341typedef std::pair<const DexFile*, const DexFile::ClassDef*> ClassPathEntry;
2342
2343// Search a collection of DexFiles for a descriptor
Mathieu Chartiere7c9a8c2014-11-06 16:35:45 -08002344ClassPathEntry FindInClassPath(const char* descriptor,
Igor Murashkinb1d8c312015-08-04 11:18:43 -07002345 size_t hash, const std::vector<const DexFile*>& class_path) {
Mathieu Chartiere7c9a8c2014-11-06 16:35:45 -08002346 for (const DexFile* dex_file : class_path) {
David Sehr9aa352e2016-09-15 18:13:52 -07002347 const DexFile::ClassDef* dex_class_def = OatDexFile::FindClassDef(*dex_file, descriptor, hash);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002348 if (dex_class_def != nullptr) {
Ian Rogers68b56852014-08-29 20:19:11 -07002349 return ClassPathEntry(dex_file, dex_class_def);
2350 }
2351 }
Mathieu Chartiere7c9a8c2014-11-06 16:35:45 -08002352 return ClassPathEntry(nullptr, nullptr);
Ian Rogers68b56852014-08-29 20:19:11 -07002353}
2354
Nicolas Geoffray7d8d8ff2016-11-02 12:38:05 +00002355bool ClassLinker::FindClassInBaseDexClassLoader(ScopedObjectAccessAlreadyRunnable& soa,
2356 Thread* self,
2357 const char* descriptor,
2358 size_t hash,
2359 Handle<mirror::ClassLoader> class_loader,
2360 ObjPtr<mirror::Class>* result) {
Calin Juravlecdd49122017-07-05 20:09:53 -07002361 // Termination case: boot class loader.
Andreas Gampef865ea92015-04-13 22:14:19 -07002362 if (IsBootClassLoader(soa, class_loader.Get())) {
Calin Juravle415dc3d2017-06-28 11:03:12 -07002363 *result = FindClassInBootClassLoaderClassPath(self, descriptor, hash);
Andreas Gampef865ea92015-04-13 22:14:19 -07002364 return true;
2365 }
2366
Calin Juravlecdd49122017-07-05 20:09:53 -07002367 if (IsPathOrDexClassLoader(soa, class_loader)) {
2368 // For regular path or dex class loader the search order is:
2369 // - parent
2370 // - class loader dex files
Andreas Gampef865ea92015-04-13 22:14:19 -07002371
Calin Juravlecdd49122017-07-05 20:09:53 -07002372 // Handles as RegisterDexFile may allocate dex caches (and cause thread suspension).
2373 StackHandleScope<1> hs(self);
2374 Handle<mirror::ClassLoader> h_parent(hs.NewHandle(class_loader->GetParent()));
2375 if (!FindClassInBaseDexClassLoader(soa, self, descriptor, hash, h_parent, result)) {
2376 return false; // One of the parents is not supported.
2377 }
2378 if (*result != nullptr) {
2379 return true; // Found the class up the chain.
2380 }
Andreas Gampef865ea92015-04-13 22:14:19 -07002381
Calin Juravlecdd49122017-07-05 20:09:53 -07002382 // Search the current class loader classpath.
2383 *result = FindClassInBaseDexClassLoaderClassPath(soa, descriptor, hash, class_loader);
Andreas Gampef865ea92015-04-13 22:14:19 -07002384 return true;
2385 }
2386
Calin Juravlecdd49122017-07-05 20:09:53 -07002387 if (IsDelegateLastClassLoader(soa, class_loader)) {
2388 // For delegate last, the search order is:
2389 // - boot class path
2390 // - class loader dex files
2391 // - parent
2392 *result = FindClassInBootClassLoaderClassPath(self, descriptor, hash);
2393 if (*result != nullptr) {
2394 return true; // The class is part of the boot class path.
2395 }
2396
2397 *result = FindClassInBaseDexClassLoaderClassPath(soa, descriptor, hash, class_loader);
2398 if (*result != nullptr) {
2399 return true; // Found the class in the current class loader
2400 }
2401
2402 // Handles as RegisterDexFile may allocate dex caches (and cause thread suspension).
2403 StackHandleScope<1> hs(self);
2404 Handle<mirror::ClassLoader> h_parent(hs.NewHandle(class_loader->GetParent()));
2405 return FindClassInBaseDexClassLoader(soa, self, descriptor, hash, h_parent, result);
2406 }
2407
2408 // Unsupported class loader.
2409 *result = nullptr;
2410 return false;
Calin Juravle415dc3d2017-06-28 11:03:12 -07002411}
2412
2413// Finds the class in the boot class loader.
2414// If the class is found the method returns the resolved class. Otherwise it returns null.
2415ObjPtr<mirror::Class> ClassLinker::FindClassInBootClassLoaderClassPath(Thread* self,
2416 const char* descriptor,
2417 size_t hash) {
2418 ObjPtr<mirror::Class> result = nullptr;
2419 ClassPathEntry pair = FindInClassPath(descriptor, hash, boot_class_path_);
2420 if (pair.second != nullptr) {
2421 ObjPtr<mirror::Class> klass = LookupClass(self, descriptor, hash, nullptr);
2422 if (klass != nullptr) {
2423 result = EnsureResolved(self, descriptor, klass);
Mathieu Chartierab0ed822014-09-11 14:21:41 -07002424 } else {
Calin Juravle415dc3d2017-06-28 11:03:12 -07002425 result = DefineClass(self,
2426 descriptor,
2427 hash,
2428 ScopedNullHandle<mirror::ClassLoader>(),
2429 *pair.first,
2430 *pair.second);
Mathieu Chartierab0ed822014-09-11 14:21:41 -07002431 }
Calin Juravle415dc3d2017-06-28 11:03:12 -07002432 if (result == nullptr) {
2433 CHECK(self->IsExceptionPending()) << descriptor;
2434 self->ClearException();
Andreas Gampef865ea92015-04-13 22:14:19 -07002435 }
2436 }
Calin Juravle415dc3d2017-06-28 11:03:12 -07002437 return result;
2438}
Andreas Gampef865ea92015-04-13 22:14:19 -07002439
Calin Juravle415dc3d2017-06-28 11:03:12 -07002440ObjPtr<mirror::Class> ClassLinker::FindClassInBaseDexClassLoaderClassPath(
2441 ScopedObjectAccessAlreadyRunnable& soa,
2442 const char* descriptor,
2443 size_t hash,
2444 Handle<mirror::ClassLoader> class_loader) {
Calin Juravlecdd49122017-07-05 20:09:53 -07002445 CHECK(IsPathOrDexClassLoader(soa, class_loader) || IsDelegateLastClassLoader(soa, class_loader))
Calin Juravle415dc3d2017-06-28 11:03:12 -07002446 << "Unexpected class loader for descriptor " << descriptor;
Andreas Gampef865ea92015-04-13 22:14:19 -07002447
Calin Juravle415dc3d2017-06-28 11:03:12 -07002448 Thread* self = soa.Self();
Andreas Gampe08883de2016-11-08 13:20:52 -08002449 ArtField* const cookie_field =
2450 jni::DecodeArtField(WellKnownClasses::dalvik_system_DexFile_cookie);
Andreas Gampef865ea92015-04-13 22:14:19 -07002451 ArtField* const dex_file_field =
Andreas Gampe08883de2016-11-08 13:20:52 -08002452 jni::DecodeArtField(WellKnownClasses::dalvik_system_DexPathList__Element_dexFile);
Mathieu Chartier3398c782016-09-30 10:27:43 -07002453 ObjPtr<mirror::Object> dex_path_list =
Andreas Gampe08883de2016-11-08 13:20:52 -08002454 jni::DecodeArtField(WellKnownClasses::dalvik_system_BaseDexClassLoader_pathList)->
2455 GetObject(class_loader.Get());
Andreas Gampef865ea92015-04-13 22:14:19 -07002456 if (dex_path_list != nullptr && dex_file_field != nullptr && cookie_field != nullptr) {
2457 // DexPathList has an array dexElements of Elements[] which each contain a dex file.
Mathieu Chartier3398c782016-09-30 10:27:43 -07002458 ObjPtr<mirror::Object> dex_elements_obj =
Andreas Gampe08883de2016-11-08 13:20:52 -08002459 jni::DecodeArtField(WellKnownClasses::dalvik_system_DexPathList_dexElements)->
Calin Juravle415dc3d2017-06-28 11:03:12 -07002460 GetObject(dex_path_list);
Andreas Gampef865ea92015-04-13 22:14:19 -07002461 // Loop through each dalvik.system.DexPathList$Element's dalvik.system.DexFile and look
2462 // at the mCookie which is a DexFile vector.
2463 if (dex_elements_obj != nullptr) {
Calin Juravle415dc3d2017-06-28 11:03:12 -07002464 StackHandleScope<1> hs(self);
Andreas Gampef865ea92015-04-13 22:14:19 -07002465 Handle<mirror::ObjectArray<mirror::Object>> dex_elements =
2466 hs.NewHandle(dex_elements_obj->AsObjectArray<mirror::Object>());
2467 for (int32_t i = 0; i < dex_elements->GetLength(); ++i) {
Mathieu Chartier3398c782016-09-30 10:27:43 -07002468 ObjPtr<mirror::Object> element = dex_elements->GetWithoutChecks(i);
Andreas Gampef865ea92015-04-13 22:14:19 -07002469 if (element == nullptr) {
2470 // Should never happen, fall back to java code to throw a NPE.
2471 break;
2472 }
Mathieu Chartier3398c782016-09-30 10:27:43 -07002473 ObjPtr<mirror::Object> dex_file = dex_file_field->GetObject(element);
Andreas Gampef865ea92015-04-13 22:14:19 -07002474 if (dex_file != nullptr) {
Mathieu Chartier3398c782016-09-30 10:27:43 -07002475 ObjPtr<mirror::LongArray> long_array = cookie_field->GetObject(dex_file)->AsLongArray();
Andreas Gampef865ea92015-04-13 22:14:19 -07002476 if (long_array == nullptr) {
2477 // This should never happen so log a warning.
2478 LOG(WARNING) << "Null DexFile::mCookie for " << descriptor;
Mathieu Chartierab0ed822014-09-11 14:21:41 -07002479 break;
2480 }
Andreas Gampef865ea92015-04-13 22:14:19 -07002481 int32_t long_array_size = long_array->GetLength();
Mathieu Chartiere58991b2015-10-13 07:59:34 -07002482 // First element is the oat file.
2483 for (int32_t j = kDexFileIndexStart; j < long_array_size; ++j) {
Andreas Gampef865ea92015-04-13 22:14:19 -07002484 const DexFile* cp_dex_file = reinterpret_cast<const DexFile*>(static_cast<uintptr_t>(
2485 long_array->GetWithoutChecks(j)));
David Sehr9aa352e2016-09-15 18:13:52 -07002486 const DexFile::ClassDef* dex_class_def =
2487 OatDexFile::FindClassDef(*cp_dex_file, descriptor, hash);
Andreas Gampef865ea92015-04-13 22:14:19 -07002488 if (dex_class_def != nullptr) {
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002489 ObjPtr<mirror::Class> klass = DefineClass(self,
Calin Juravle415dc3d2017-06-28 11:03:12 -07002490 descriptor,
2491 hash,
2492 class_loader,
2493 *cp_dex_file,
2494 *dex_class_def);
Andreas Gampef865ea92015-04-13 22:14:19 -07002495 if (klass == nullptr) {
2496 CHECK(self->IsExceptionPending()) << descriptor;
2497 self->ClearException();
2498 // TODO: Is it really right to break here, and not check the other dex files?
Calin Juravle415dc3d2017-06-28 11:03:12 -07002499 return nullptr;
Mathieu Chartierab0ed822014-09-11 14:21:41 -07002500 }
Calin Juravle415dc3d2017-06-28 11:03:12 -07002501 return klass;
Mathieu Chartierab0ed822014-09-11 14:21:41 -07002502 }
2503 }
2504 }
2505 }
2506 }
Ian Rogers32427292014-11-19 14:05:21 -08002507 self->AssertNoPendingException();
Mathieu Chartierab0ed822014-09-11 14:21:41 -07002508 }
Calin Juravle415dc3d2017-06-28 11:03:12 -07002509 return nullptr;
Mathieu Chartierab0ed822014-09-11 14:21:41 -07002510}
2511
Mathieu Chartierc77f3ab2015-09-03 19:41:50 -07002512mirror::Class* ClassLinker::FindClass(Thread* self,
2513 const char* descriptor,
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07002514 Handle<mirror::ClassLoader> class_loader) {
Elliott Hughesba8eee12012-01-24 20:25:24 -08002515 DCHECK_NE(*descriptor, '\0') << "descriptor is empty string";
Ian Rogers98379392014-02-24 16:53:16 -08002516 DCHECK(self != nullptr);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002517 self->AssertNoPendingException();
Mathieu Chartiera59d9b22016-09-26 18:13:17 -07002518 self->PoisonObjectPointers(); // For DefineClass, CreateArrayClass, etc...
Elliott Hughesc3b77c72011-12-15 20:56:48 -08002519 if (descriptor[1] == '\0') {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002520 // only the descriptors of primitive types should be 1 character long, also avoid class lookup
2521 // for primitive classes that aren't backed by dex files.
2522 return FindPrimitiveClass(descriptor[0]);
2523 }
Mathieu Chartiere7c9a8c2014-11-06 16:35:45 -08002524 const size_t hash = ComputeModifiedUtf8Hash(descriptor);
Brian Carlstromaded5f72011-10-07 17:15:04 -07002525 // Find the class in the loaded classes table.
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002526 ObjPtr<mirror::Class> klass = LookupClass(self, descriptor, hash, class_loader.Get());
Ian Rogers68b56852014-08-29 20:19:11 -07002527 if (klass != nullptr) {
Mingyao Yang98d1cc82014-05-15 17:02:16 -07002528 return EnsureResolved(self, descriptor, klass);
Brian Carlstromaded5f72011-10-07 17:15:04 -07002529 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07002530 // Class is not yet loaded.
Andreas Gampefa4333d2017-02-14 11:10:34 -08002531 if (descriptor[0] != '[' && class_loader == nullptr) {
Vladimir Marko6ad2f6d2017-01-18 15:22:59 +00002532 // Non-array class and the boot class loader, search the boot class path.
Mathieu Chartiere7c9a8c2014-11-06 16:35:45 -08002533 ClassPathEntry pair = FindInClassPath(descriptor, hash, boot_class_path_);
Ian Rogers68b56852014-08-29 20:19:11 -07002534 if (pair.second != nullptr) {
Mathieu Chartier9865bde2015-12-21 09:58:16 -08002535 return DefineClass(self,
2536 descriptor,
2537 hash,
2538 ScopedNullHandle<mirror::ClassLoader>(),
2539 *pair.first,
Ian Rogers7b078e82014-09-10 14:44:24 -07002540 *pair.second);
Ian Rogers63557452014-06-04 16:57:15 -07002541 } else {
2542 // The boot class loader is searched ahead of the application class loader, failures are
2543 // expected and will be wrapped in a ClassNotFoundException. Use the pre-allocated error to
2544 // trigger the chaining with a proper stack trace.
Vladimir Marko6ad2f6d2017-01-18 15:22:59 +00002545 ObjPtr<mirror::Throwable> pre_allocated =
2546 Runtime::Current()->GetPreAllocatedNoClassDefFoundError();
Nicolas Geoffray14691c52015-03-05 10:40:17 +00002547 self->SetException(pre_allocated);
Ian Rogers63557452014-06-04 16:57:15 -07002548 return nullptr;
Jesse Wilson47daf872011-11-23 11:42:45 -05002549 }
Vladimir Marko6ad2f6d2017-01-18 15:22:59 +00002550 }
2551 ObjPtr<mirror::Class> result_ptr;
2552 bool descriptor_equals;
2553 if (descriptor[0] == '[') {
2554 result_ptr = CreateArrayClass(self, descriptor, hash, class_loader);
2555 DCHECK_EQ(result_ptr == nullptr, self->IsExceptionPending());
2556 DCHECK(result_ptr == nullptr || result_ptr->DescriptorEquals(descriptor));
2557 descriptor_equals = true;
Jesse Wilson47daf872011-11-23 11:42:45 -05002558 } else {
Ian Rogers98379392014-02-24 16:53:16 -08002559 ScopedObjectAccessUnchecked soa(self);
Vladimir Markoc5798bf2016-12-09 10:20:54 +00002560 bool known_hierarchy =
2561 FindClassInBaseDexClassLoader(soa, self, descriptor, hash, class_loader, &result_ptr);
2562 if (result_ptr != nullptr) {
2563 // The chain was understood and we found the class. We still need to add the class to
2564 // the class table to protect from racy programs that can try and redefine the path list
2565 // which would change the Class<?> returned for subsequent evaluation of const-class.
2566 DCHECK(known_hierarchy);
2567 DCHECK(result_ptr->DescriptorEquals(descriptor));
2568 descriptor_equals = true;
2569 } else {
2570 // Either the chain wasn't understood or the class wasn't found.
2571 //
2572 // If the chain was understood but we did not find the class, let the Java-side
2573 // rediscover all this and throw the exception with the right stack trace. Note that
2574 // the Java-side could still succeed for racy programs if another thread is actively
2575 // modifying the class loader's path list.
Andreas Gampef865ea92015-04-13 22:14:19 -07002576
Calin Juravleccd56952016-12-15 17:57:38 +00002577 if (!self->CanCallIntoJava()) {
2578 // Oops, we can't call into java so we can't run actual class-loader code.
2579 // This is true for e.g. for the compiler (jit or aot).
Vladimir Markoc5798bf2016-12-09 10:20:54 +00002580 ObjPtr<mirror::Throwable> pre_allocated =
2581 Runtime::Current()->GetPreAllocatedNoClassDefFoundError();
2582 self->SetException(pre_allocated);
Vladimir Marko2c8c6b62016-12-01 17:42:00 +00002583 return nullptr;
2584 }
Vladimir Markoc5798bf2016-12-09 10:20:54 +00002585
Vladimir Marko5fdd7782017-04-20 11:26:03 +01002586 // Inlined DescriptorToDot(descriptor) with extra validation.
2587 //
2588 // Throw NoClassDefFoundError early rather than potentially load a class only to fail
2589 // the DescriptorEquals() check below and give a confusing error message. For example,
2590 // when native code erroneously calls JNI GetFieldId() with signature "java/lang/String"
2591 // instead of "Ljava/lang/String;", the message below using the "dot" names would be
2592 // "class loader [...] returned class java.lang.String instead of java.lang.String".
2593 size_t descriptor_length = strlen(descriptor);
2594 if (UNLIKELY(descriptor[0] != 'L') ||
2595 UNLIKELY(descriptor[descriptor_length - 1] != ';') ||
2596 UNLIKELY(memchr(descriptor + 1, '.', descriptor_length - 2) != nullptr)) {
2597 ThrowNoClassDefFoundError("Invalid descriptor: %s.", descriptor);
2598 return nullptr;
2599 }
2600 std::string class_name_string(descriptor + 1, descriptor_length - 2);
2601 std::replace(class_name_string.begin(), class_name_string.end(), '/', '.');
2602
Vladimir Markoc5798bf2016-12-09 10:20:54 +00002603 ScopedLocalRef<jobject> class_loader_object(
2604 soa.Env(), soa.AddLocalReference<jobject>(class_loader.Get()));
Vladimir Markoc5798bf2016-12-09 10:20:54 +00002605 ScopedLocalRef<jobject> result(soa.Env(), nullptr);
2606 {
2607 ScopedThreadStateChange tsc(self, kNative);
2608 ScopedLocalRef<jobject> class_name_object(
2609 soa.Env(), soa.Env()->NewStringUTF(class_name_string.c_str()));
2610 if (class_name_object.get() == nullptr) {
2611 DCHECK(self->IsExceptionPending()); // OOME.
2612 return nullptr;
2613 }
2614 CHECK(class_loader_object.get() != nullptr);
2615 result.reset(soa.Env()->CallObjectMethod(class_loader_object.get(),
2616 WellKnownClasses::java_lang_ClassLoader_loadClass,
2617 class_name_object.get()));
2618 }
Vladimir Marko6ad2f6d2017-01-18 15:22:59 +00002619 if (result.get() == nullptr && !self->IsExceptionPending()) {
Vladimir Markoc5798bf2016-12-09 10:20:54 +00002620 // broken loader - throw NPE to be compatible with Dalvik
2621 ThrowNullPointerException(StringPrintf("ClassLoader.loadClass returned null for %s",
2622 class_name_string.c_str()).c_str());
2623 return nullptr;
2624 }
2625 result_ptr = soa.Decode<mirror::Class>(result.get());
2626 // Check the name of the returned class.
Vladimir Marko6ad2f6d2017-01-18 15:22:59 +00002627 descriptor_equals = (result_ptr != nullptr) && result_ptr->DescriptorEquals(descriptor);
Vladimir Marko2c8c6b62016-12-01 17:42:00 +00002628 }
Brian Carlstromaded5f72011-10-07 17:15:04 -07002629 }
Vladimir Marko6ad2f6d2017-01-18 15:22:59 +00002630
2631 if (self->IsExceptionPending()) {
2632 // If the ClassLoader threw or array class allocation failed, pass that exception up.
2633 // However, to comply with the RI behavior, first check if another thread succeeded.
2634 result_ptr = LookupClass(self, descriptor, hash, class_loader.Get());
2635 if (result_ptr != nullptr && !result_ptr->IsErroneous()) {
2636 self->ClearException();
2637 return EnsureResolved(self, descriptor, result_ptr);
2638 }
2639 return nullptr;
2640 }
2641
2642 // Try to insert the class to the class table, checking for mismatch.
2643 ObjPtr<mirror::Class> old;
2644 {
2645 WriterMutexLock mu(self, *Locks::classlinker_classes_lock_);
2646 ClassTable* const class_table = InsertClassTableForClassLoader(class_loader.Get());
2647 old = class_table->Lookup(descriptor, hash);
2648 if (old == nullptr) {
2649 old = result_ptr; // For the comparison below, after releasing the lock.
2650 if (descriptor_equals) {
2651 class_table->InsertWithHash(result_ptr.Ptr(), hash);
2652 Runtime::Current()->GetHeap()->WriteBarrierEveryFieldOf(class_loader.Get());
2653 } // else throw below, after releasing the lock.
2654 }
2655 }
2656 if (UNLIKELY(old != result_ptr)) {
2657 // Return `old` (even if `!descriptor_equals`) to mimic the RI behavior for parallel
2658 // capable class loaders. (All class loaders are considered parallel capable on Android.)
2659 mirror::Class* loader_class = class_loader->GetClass();
2660 const char* loader_class_name =
2661 loader_class->GetDexFile().StringByTypeIdx(loader_class->GetDexTypeIndex());
2662 LOG(WARNING) << "Initiating class loader of type " << DescriptorToDot(loader_class_name)
2663 << " is not well-behaved; it returned a different Class for racing loadClass(\""
2664 << DescriptorToDot(descriptor) << "\").";
2665 return EnsureResolved(self, descriptor, old);
2666 }
2667 if (UNLIKELY(!descriptor_equals)) {
2668 std::string result_storage;
2669 const char* result_name = result_ptr->GetDescriptor(&result_storage);
2670 std::string loader_storage;
2671 const char* loader_class_name = class_loader->GetClass()->GetDescriptor(&loader_storage);
2672 ThrowNoClassDefFoundError(
2673 "Initiating class loader of type %s returned class %s instead of %s.",
2674 DescriptorToDot(loader_class_name).c_str(),
2675 DescriptorToDot(result_name).c_str(),
2676 DescriptorToDot(descriptor).c_str());
2677 return nullptr;
2678 }
2679 // success, return mirror::Class*
2680 return result_ptr.Ptr();
Brian Carlstromaded5f72011-10-07 17:15:04 -07002681}
2682
Mathieu Chartierc77f3ab2015-09-03 19:41:50 -07002683mirror::Class* ClassLinker::DefineClass(Thread* self,
2684 const char* descriptor,
2685 size_t hash,
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07002686 Handle<mirror::ClassLoader> class_loader,
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002687 const DexFile& dex_file,
2688 const DexFile::ClassDef& dex_class_def) {
Mingyao Yang98d1cc82014-05-15 17:02:16 -07002689 StackHandleScope<3> hs(self);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07002690 auto klass = hs.NewHandle<mirror::Class>(nullptr);
Mingyao Yang98d1cc82014-05-15 17:02:16 -07002691
Brian Carlstromaded5f72011-10-07 17:15:04 -07002692 // Load the class from the dex file.
Ian Rogers7dfb28c2013-08-22 08:18:36 -07002693 if (UNLIKELY(!init_done_)) {
Brian Carlstromaded5f72011-10-07 17:15:04 -07002694 // finish up init of hand crafted class_roots_
Ian Rogers7dfb28c2013-08-22 08:18:36 -07002695 if (strcmp(descriptor, "Ljava/lang/Object;") == 0) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07002696 klass.Assign(GetClassRoot(kJavaLangObject));
Ian Rogers7dfb28c2013-08-22 08:18:36 -07002697 } else if (strcmp(descriptor, "Ljava/lang/Class;") == 0) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07002698 klass.Assign(GetClassRoot(kJavaLangClass));
Ian Rogers7dfb28c2013-08-22 08:18:36 -07002699 } else if (strcmp(descriptor, "Ljava/lang/String;") == 0) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07002700 klass.Assign(GetClassRoot(kJavaLangString));
Fred Shih4ee7a662014-07-11 09:59:27 -07002701 } else if (strcmp(descriptor, "Ljava/lang/ref/Reference;") == 0) {
2702 klass.Assign(GetClassRoot(kJavaLangRefReference));
Ian Rogers7dfb28c2013-08-22 08:18:36 -07002703 } else if (strcmp(descriptor, "Ljava/lang/DexCache;") == 0) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07002704 klass.Assign(GetClassRoot(kJavaLangDexCache));
Alex Lightd6251582016-10-31 11:12:30 -07002705 } else if (strcmp(descriptor, "Ldalvik/system/ClassExt;") == 0) {
2706 klass.Assign(GetClassRoot(kDalvikSystemClassExt));
Brian Carlstromaded5f72011-10-07 17:15:04 -07002707 }
Mingyao Yang98d1cc82014-05-15 17:02:16 -07002708 }
2709
Andreas Gampefa4333d2017-02-14 11:10:34 -08002710 if (klass == nullptr) {
Mingyao Yang98d1cc82014-05-15 17:02:16 -07002711 // Allocate a class with the status of not ready.
2712 // Interface object should get the right size here. Regular class will
2713 // figure out the right size later and be replaced with one of the right
2714 // size when the class becomes resolved.
Nicolas Geoffrayabadf022017-08-03 08:25:41 +00002715 klass.Assign(AllocClass(self, SizeOfClassWithoutEmbeddedTables(dex_file, dex_class_def)));
Brian Carlstromaded5f72011-10-07 17:15:04 -07002716 }
Andreas Gampefa4333d2017-02-14 11:10:34 -08002717 if (UNLIKELY(klass == nullptr)) {
Mathieu Chartier673ed3d2015-08-28 14:56:43 -07002718 self->AssertPendingOOMException();
Ian Rogersc114b5f2014-07-21 08:55:01 -07002719 return nullptr;
Ian Rogersa436fde2013-08-27 23:34:06 -07002720 }
Alex Lightb0f11922017-01-23 14:25:17 -08002721 // Get the real dex file. This will return the input if there aren't any callbacks or they do
2722 // nothing.
2723 DexFile const* new_dex_file = nullptr;
2724 DexFile::ClassDef const* new_class_def = nullptr;
2725 // TODO We should ideally figure out some way to move this after we get a lock on the klass so it
2726 // will only be called once.
2727 Runtime::Current()->GetRuntimeCallbacks()->ClassPreDefine(descriptor,
2728 klass,
2729 class_loader,
2730 dex_file,
2731 dex_class_def,
2732 &new_dex_file,
2733 &new_class_def);
Alex Light440b5d92017-01-24 15:32:25 -08002734 // Check to see if an exception happened during runtime callbacks. Return if so.
2735 if (self->IsExceptionPending()) {
2736 return nullptr;
2737 }
Alex Lightb0f11922017-01-23 14:25:17 -08002738 ObjPtr<mirror::DexCache> dex_cache = RegisterDexFile(*new_dex_file, class_loader.Get());
Mathieu Chartier673ed3d2015-08-28 14:56:43 -07002739 if (dex_cache == nullptr) {
Vladimir Markocd556b02017-02-03 11:47:34 +00002740 self->AssertPendingException();
Mathieu Chartier673ed3d2015-08-28 14:56:43 -07002741 return nullptr;
2742 }
2743 klass->SetDexCache(dex_cache);
Alex Lightb0f11922017-01-23 14:25:17 -08002744 SetupClass(*new_dex_file, *new_class_def, klass, class_loader.Get());
Mathieu Chartierc7853442015-03-27 14:35:38 -07002745
Jeff Hao848f70a2014-01-15 13:49:50 -08002746 // Mark the string class by setting its access flag.
2747 if (UNLIKELY(!init_done_)) {
2748 if (strcmp(descriptor, "Ljava/lang/String;") == 0) {
2749 klass->SetStringClass();
2750 }
2751 }
2752
Mathieu Chartierdb2633c2014-05-16 09:59:29 -07002753 ObjectLock<mirror::Class> lock(self, klass);
Brian Carlstromaded5f72011-10-07 17:15:04 -07002754 klass->SetClinitThreadId(self->GetTid());
Mathieu Chartier1e4841e2016-12-15 14:21:04 -08002755 // Make sure we have a valid empty iftable even if there are errors.
2756 klass->SetIfTable(GetClassRoot(kJavaLangObject)->GetIfTable());
Mingyao Yang98d1cc82014-05-15 17:02:16 -07002757
Mathieu Chartier590fee92013-09-13 13:46:47 -07002758 // Add the newly loaded class to the loaded classes table.
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002759 ObjPtr<mirror::Class> existing = InsertClass(descriptor, klass.Get(), hash);
Ian Rogersc114b5f2014-07-21 08:55:01 -07002760 if (existing != nullptr) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07002761 // We failed to insert because we raced with another thread. Calling EnsureResolved may cause
2762 // this thread to block.
Mingyao Yang98d1cc82014-05-15 17:02:16 -07002763 return EnsureResolved(self, descriptor, existing);
Brian Carlstromaded5f72011-10-07 17:15:04 -07002764 }
Mingyao Yang98d1cc82014-05-15 17:02:16 -07002765
Mathieu Chartierc7853442015-03-27 14:35:38 -07002766 // Load the fields and other things after we are inserted in the table. This is so that we don't
2767 // end up allocating unfree-able linear alloc resources and then lose the race condition. The
2768 // other reason is that the field roots are only visited from the class table. So we need to be
2769 // inserted before we allocate / fill in these fields.
Alex Lightb0f11922017-01-23 14:25:17 -08002770 LoadClass(self, *new_dex_file, *new_class_def, klass);
Mathieu Chartierc7853442015-03-27 14:35:38 -07002771 if (self->IsExceptionPending()) {
Mathieu Chartierfbc31082016-01-24 11:59:56 -08002772 VLOG(class_linker) << self->GetException()->Dump();
Mathieu Chartierc7853442015-03-27 14:35:38 -07002773 // An exception occured during load, set status to erroneous while holding klass' lock in case
2774 // notification is necessary.
2775 if (!klass->IsErroneous()) {
Vladimir Marko72ab6842017-01-20 19:32:50 +00002776 mirror::Class::SetStatus(klass, mirror::Class::kStatusErrorUnresolved, self);
Mathieu Chartierc7853442015-03-27 14:35:38 -07002777 }
2778 return nullptr;
2779 }
2780
Brian Carlstromaded5f72011-10-07 17:15:04 -07002781 // Finish loading (if necessary) by finding parents
2782 CHECK(!klass->IsLoaded());
Alex Lightb0f11922017-01-23 14:25:17 -08002783 if (!LoadSuperAndInterfaces(klass, *new_dex_file)) {
Brian Carlstromaded5f72011-10-07 17:15:04 -07002784 // Loading failed.
Ian Rogersecd4d9a2014-07-22 00:59:52 -07002785 if (!klass->IsErroneous()) {
Vladimir Marko72ab6842017-01-20 19:32:50 +00002786 mirror::Class::SetStatus(klass, mirror::Class::kStatusErrorUnresolved, self);
Ian Rogersecd4d9a2014-07-22 00:59:52 -07002787 }
Ian Rogersc114b5f2014-07-21 08:55:01 -07002788 return nullptr;
Brian Carlstromaded5f72011-10-07 17:15:04 -07002789 }
2790 CHECK(klass->IsLoaded());
Andreas Gampe0f01b582017-01-18 15:22:37 -08002791
Andreas Gampe6cfd4c92017-04-06 08:03:32 -07002792 // At this point the class is loaded. Publish a ClassLoad event.
Andreas Gampe0f01b582017-01-18 15:22:37 -08002793 // Note: this may be a temporary class. It is a listener's responsibility to handle this.
Andreas Gampeac30fa22017-01-18 21:02:36 -08002794 Runtime::Current()->GetRuntimeCallbacks()->ClassLoad(klass);
Andreas Gampe0f01b582017-01-18 15:22:37 -08002795
Brian Carlstromaded5f72011-10-07 17:15:04 -07002796 // Link the class (if necessary)
2797 CHECK(!klass->IsResolved());
Mathieu Chartier590fee92013-09-13 13:46:47 -07002798 // TODO: Use fast jobjects?
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07002799 auto interfaces = hs.NewHandle<mirror::ObjectArray<mirror::Class>>(nullptr);
Mingyao Yang98d1cc82014-05-15 17:02:16 -07002800
Hiroshi Yamauchi679b1cf2015-05-21 12:05:27 -07002801 MutableHandle<mirror::Class> h_new_class = hs.NewHandle<mirror::Class>(nullptr);
Igor Murashkinb1d8c312015-08-04 11:18:43 -07002802 if (!LinkClass(self, descriptor, klass, interfaces, &h_new_class)) {
Brian Carlstromaded5f72011-10-07 17:15:04 -07002803 // Linking failed.
Ian Rogersecd4d9a2014-07-22 00:59:52 -07002804 if (!klass->IsErroneous()) {
Vladimir Marko72ab6842017-01-20 19:32:50 +00002805 mirror::Class::SetStatus(klass, mirror::Class::kStatusErrorUnresolved, self);
Ian Rogersecd4d9a2014-07-22 00:59:52 -07002806 }
Ian Rogersc114b5f2014-07-21 08:55:01 -07002807 return nullptr;
Brian Carlstromaded5f72011-10-07 17:15:04 -07002808 }
Mathieu Chartier524507a2014-08-27 15:28:28 -07002809 self->AssertNoPendingException();
Andreas Gampefa4333d2017-02-14 11:10:34 -08002810 CHECK(h_new_class != nullptr) << descriptor;
Vladimir Marko72ab6842017-01-20 19:32:50 +00002811 CHECK(h_new_class->IsResolved() && !h_new_class->IsErroneousResolved()) << descriptor;
Elliott Hughes4740cdf2011-12-07 14:07:12 -08002812
Sebastien Hertza8a697f2015-01-15 12:28:47 +01002813 // Instrumentation may have updated entrypoints for all methods of all
2814 // classes. However it could not update methods of this class while we
2815 // were loading it. Now the class is resolved, we can update entrypoints
2816 // as required by instrumentation.
2817 if (Runtime::Current()->GetInstrumentation()->AreExitStubsInstalled()) {
2818 // We must be in the kRunnable state to prevent instrumentation from
2819 // suspending all threads to update entrypoints while we are doing it
2820 // for this class.
2821 DCHECK_EQ(self->GetState(), kRunnable);
Hiroshi Yamauchi679b1cf2015-05-21 12:05:27 -07002822 Runtime::Current()->GetInstrumentation()->InstallStubsForClass(h_new_class.Get());
Sebastien Hertza8a697f2015-01-15 12:28:47 +01002823 }
2824
Elliott Hughes4740cdf2011-12-07 14:07:12 -08002825 /*
2826 * We send CLASS_PREPARE events to the debugger from here. The
2827 * definition of "preparation" is creating the static fields for a
2828 * class and initializing them to the standard default values, but not
2829 * executing any code (that comes later, during "initialization").
2830 *
2831 * We did the static preparation in LinkClass.
2832 *
2833 * The class has been prepared and resolved but possibly not yet verified
2834 * at this point.
2835 */
Andreas Gampeac30fa22017-01-18 21:02:36 -08002836 Runtime::Current()->GetRuntimeCallbacks()->ClassPrepare(klass, h_new_class);
Elliott Hughes4740cdf2011-12-07 14:07:12 -08002837
Tamas Berghammer160e6df2016-01-05 14:29:02 +00002838 // Notify native debugger of the new class and its layout.
2839 jit::Jit::NewTypeLoadedIfUsingJit(h_new_class.Get());
2840
Hiroshi Yamauchi679b1cf2015-05-21 12:05:27 -07002841 return h_new_class.Get();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002842}
2843
Mingyao Yang98d1cc82014-05-15 17:02:16 -07002844uint32_t ClassLinker::SizeOfClassWithoutEmbeddedTables(const DexFile& dex_file,
2845 const DexFile::ClassDef& dex_class_def) {
Ian Rogers13735952014-10-08 12:43:28 -07002846 const uint8_t* class_data = dex_file.GetClassData(dex_class_def);
Brian Carlstrom4873d462011-08-21 15:23:39 -07002847 size_t num_ref = 0;
Fred Shih37f05ef2014-07-16 18:38:08 -07002848 size_t num_8 = 0;
2849 size_t num_16 = 0;
Brian Carlstrom4873d462011-08-21 15:23:39 -07002850 size_t num_32 = 0;
2851 size_t num_64 = 0;
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002852 if (class_data != nullptr) {
Vladimir Marko879d27b2016-03-15 20:31:50 +00002853 // We allow duplicate definitions of the same field in a class_data_item
2854 // but ignore the repeated indexes here, b/21868015.
Andreas Gampee2abbc62017-09-15 11:59:26 -07002855 uint32_t last_field_idx = dex::kDexNoIndex;
Ian Rogers0571d352011-11-03 19:51:38 -07002856 for (ClassDataItemIterator it(dex_file, class_data); it.HasNextStaticField(); it.Next()) {
Vladimir Marko879d27b2016-03-15 20:31:50 +00002857 uint32_t field_idx = it.GetMemberIndex();
2858 // Ordering enforced by DexFileVerifier.
Andreas Gampee2abbc62017-09-15 11:59:26 -07002859 DCHECK(last_field_idx == dex::kDexNoIndex || last_field_idx <= field_idx);
Vladimir Marko879d27b2016-03-15 20:31:50 +00002860 if (UNLIKELY(field_idx == last_field_idx)) {
2861 continue;
2862 }
2863 last_field_idx = field_idx;
2864 const DexFile::FieldId& field_id = dex_file.GetFieldId(field_idx);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07002865 const char* descriptor = dex_file.GetFieldTypeDescriptor(field_id);
Brian Carlstrom4873d462011-08-21 15:23:39 -07002866 char c = descriptor[0];
Fred Shih37f05ef2014-07-16 18:38:08 -07002867 switch (c) {
2868 case 'L':
2869 case '[':
2870 num_ref++;
2871 break;
2872 case 'J':
2873 case 'D':
2874 num_64++;
2875 break;
2876 case 'I':
2877 case 'F':
2878 num_32++;
2879 break;
2880 case 'S':
2881 case 'C':
2882 num_16++;
2883 break;
2884 case 'B':
2885 case 'Z':
2886 num_8++;
2887 break;
2888 default:
2889 LOG(FATAL) << "Unknown descriptor: " << c;
Ian Rogerse0a02da2014-12-02 14:10:53 -08002890 UNREACHABLE();
Brian Carlstrom4873d462011-08-21 15:23:39 -07002891 }
2892 }
2893 }
Mathieu Chartierc77f3ab2015-09-03 19:41:50 -07002894 return mirror::Class::ComputeClassSize(false,
2895 0,
2896 num_8,
2897 num_16,
2898 num_32,
2899 num_64,
2900 num_ref,
Mathieu Chartiere401d142015-04-22 13:56:20 -07002901 image_pointer_size_);
Brian Carlstrom4873d462011-08-21 15:23:39 -07002902}
2903
TDYa12785321912012-04-01 15:24:56 -07002904// Special case to get oat code without overwriting a trampoline.
Mathieu Chartiere401d142015-04-22 13:56:20 -07002905const void* ClassLinker::GetQuickOatCodeFor(ArtMethod* method) {
David Sehr709b0702016-10-13 09:12:37 -07002906 CHECK(method->IsInvokable()) << method->PrettyMethod();
Nicolas Geoffraya7a47592015-11-24 09:17:30 +00002907 if (method->IsProxyMethod()) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08002908 return GetQuickProxyInvokeHandler();
Jeff Hao8df6cea2013-07-29 13:54:48 -07002909 }
Vladimir Marko97d7e1c2016-10-04 14:44:28 +01002910 auto* code = method->GetOatMethodQuickCode(GetImagePointerSize());
2911 if (code != nullptr) {
2912 return code;
Mathieu Chartier2535abe2015-02-17 10:38:49 -08002913 }
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08002914 if (method->IsNative()) {
2915 // No code and native? Use generic trampoline.
2916 return GetQuickGenericJniStub();
2917 }
2918 return GetQuickToInterpreterBridge();
TDYa12785321912012-04-01 15:24:56 -07002919}
2920
Tamas Berghammerdd5e5e92016-02-12 16:29:00 +00002921bool ClassLinker::ShouldUseInterpreterEntrypoint(ArtMethod* method, const void* quick_code) {
2922 if (UNLIKELY(method->IsNative() || method->IsProxyMethod())) {
2923 return false;
2924 }
2925
Elliott Hughes956af0f2014-12-11 14:34:28 -08002926 if (quick_code == nullptr) {
Sebastien Hertz7d658cf2013-07-09 10:56:11 +02002927 return true;
2928 }
Tamas Berghammerdd5e5e92016-02-12 16:29:00 +00002929
2930 Runtime* runtime = Runtime::Current();
2931 instrumentation::Instrumentation* instr = runtime->GetInstrumentation();
2932 if (instr->InterpretOnly()) {
2933 return true;
2934 }
2935
2936 if (runtime->GetClassLinker()->IsQuickToInterpreterBridge(quick_code)) {
2937 // Doing this check avoids doing compiled/interpreter transitions.
2938 return true;
2939 }
2940
2941 if (Dbg::IsForcedInterpreterNeededForCalling(Thread::Current(), method)) {
2942 // Force the use of interpreter when it is required by the debugger.
2943 return true;
2944 }
2945
Alex Light8f34aba2017-10-09 13:46:32 -07002946 if (Thread::Current()->IsAsyncExceptionPending()) {
2947 // Force use of interpreter to handle async-exceptions
2948 return true;
2949 }
2950
Nicolas Geoffray433b79a2017-01-30 20:54:45 +00002951 if (runtime->IsJavaDebuggable()) {
2952 // For simplicity, we ignore precompiled code and go to the interpreter
2953 // assuming we don't already have jitted code.
2954 // We could look at the oat file where `quick_code` is being defined,
2955 // and check whether it's been compiled debuggable, but we decided to
2956 // only rely on the JIT for debuggable apps.
Alex Light6b16d892016-11-11 11:21:04 -08002957 jit::Jit* jit = Runtime::Current()->GetJit();
2958 return (jit == nullptr) || !jit->GetCodeCache()->ContainsPc(quick_code);
2959 }
2960
David Srbeckyf4480162016-03-16 00:06:24 +00002961 if (runtime->IsNativeDebuggable()) {
Calin Juravlee5de54c2016-04-20 14:22:09 +01002962 DCHECK(runtime->UseJitCompilation() && runtime->GetJit()->JitAtFirstUse());
David Srbeckyf4480162016-03-16 00:06:24 +00002963 // If we are doing native debugging, ignore application's AOT code,
Nicolas Geoffray433b79a2017-01-30 20:54:45 +00002964 // since we want to JIT it (at first use) with extra stackmaps for native
2965 // debugging. We keep however all AOT code from the boot image,
2966 // since the JIT-at-first-use is blocking and would result in non-negligible
2967 // startup performance impact.
David Srbeckyf4480162016-03-16 00:06:24 +00002968 return !runtime->GetHeap()->IsInBootImageOatFile(quick_code);
Tamas Berghammerdd5e5e92016-02-12 16:29:00 +00002969 }
2970
2971 return false;
Sebastien Hertz7d658cf2013-07-09 10:56:11 +02002972}
2973
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002974void ClassLinker::FixupStaticTrampolines(ObjPtr<mirror::Class> klass) {
David Sehr709b0702016-10-13 09:12:37 -07002975 DCHECK(klass->IsInitialized()) << klass->PrettyDescriptor();
Ian Rogers1c829822013-09-30 18:18:50 -07002976 if (klass->NumDirectMethods() == 0) {
2977 return; // No direct methods => no static methods.
Ian Rogers19846512012-02-24 11:42:47 -08002978 }
Ian Rogers62d6c772013-02-27 08:32:07 -08002979 Runtime* runtime = Runtime::Current();
Andreas Gampe81c6f8d2015-03-25 17:19:53 -07002980 if (!runtime->IsStarted()) {
Jeff Haodcdc85b2015-12-04 14:06:18 -08002981 if (runtime->IsAotCompiler() || runtime->GetHeap()->HasBootImageSpace()) {
Alex Light64ad14d2014-08-19 14:23:13 -07002982 return; // OAT file unavailable.
2983 }
Ian Rogers19846512012-02-24 11:42:47 -08002984 }
Alex Light64ad14d2014-08-19 14:23:13 -07002985
Mathieu Chartierf8322842014-05-16 10:59:25 -07002986 const DexFile& dex_file = klass->GetDexFile();
2987 const DexFile::ClassDef* dex_class_def = klass->GetClassDef();
Ian Rogers1c829822013-09-30 18:18:50 -07002988 CHECK(dex_class_def != nullptr);
Ian Rogers13735952014-10-08 12:43:28 -07002989 const uint8_t* class_data = dex_file.GetClassData(*dex_class_def);
Ian Rogers1c829822013-09-30 18:18:50 -07002990 // There should always be class data if there were direct methods.
David Sehr709b0702016-10-13 09:12:37 -07002991 CHECK(class_data != nullptr) << klass->PrettyDescriptor();
Ian Rogers19846512012-02-24 11:42:47 -08002992 ClassDataItemIterator it(dex_file, class_data);
Mathieu Chartiere17cf242017-06-19 11:05:51 -07002993 it.SkipAllFields();
Ian Rogers97b52f82014-08-14 11:34:07 -07002994 bool has_oat_class;
Vladimir Marko97d7e1c2016-10-04 14:44:28 +01002995 OatFile::OatClass oat_class = OatFile::FindOatClass(dex_file,
2996 klass->GetDexClassDefIndex(),
2997 &has_oat_class);
Ian Rogers1c829822013-09-30 18:18:50 -07002998 // Link the code of methods skipped by LinkCode.
Sebastien Hertz7d658cf2013-07-09 10:56:11 +02002999 for (size_t method_index = 0; it.HasNextDirectMethod(); ++method_index, it.Next()) {
Mathieu Chartiere401d142015-04-22 13:56:20 -07003000 ArtMethod* method = klass->GetDirectMethod(method_index, image_pointer_size_);
Sebastien Hertz7d658cf2013-07-09 10:56:11 +02003001 if (!method->IsStatic()) {
3002 // Only update static methods.
3003 continue;
Ian Rogers19846512012-02-24 11:42:47 -08003004 }
Nicolas Geoffray4fcdc942014-07-22 10:48:00 +01003005 const void* quick_code = nullptr;
3006 if (has_oat_class) {
3007 OatFile::OatMethod oat_method = oat_class.GetOatMethod(method_index);
Nicolas Geoffray4fcdc942014-07-22 10:48:00 +01003008 quick_code = oat_method.GetQuickCode();
3009 }
Tamas Berghammerdd5e5e92016-02-12 16:29:00 +00003010 // Check whether the method is native, in which case it's generic JNI.
3011 if (quick_code == nullptr && method->IsNative()) {
3012 quick_code = GetQuickGenericJniStub();
3013 } else if (ShouldUseInterpreterEntrypoint(method, quick_code)) {
Sebastien Hertz7d658cf2013-07-09 10:56:11 +02003014 // Use interpreter entry point.
Tamas Berghammerdd5e5e92016-02-12 16:29:00 +00003015 quick_code = GetQuickToInterpreterBridge();
Sebastien Hertz7d658cf2013-07-09 10:56:11 +02003016 }
Elliott Hughes956af0f2014-12-11 14:34:28 -08003017 runtime->GetInstrumentation()->UpdateMethodsCode(method, quick_code);
Ian Rogers19846512012-02-24 11:42:47 -08003018 }
Ian Rogers62d6c772013-02-27 08:32:07 -08003019 // Ignore virtual methods on the iterator.
Ian Rogers19846512012-02-24 11:42:47 -08003020}
3021
Vladimir Marko97d7e1c2016-10-04 14:44:28 +01003022// Does anything needed to make sure that the compiler will not generate a direct invoke to this
3023// method. Should only be called on non-invokable methods.
3024inline void EnsureThrowsInvocationError(ClassLinker* class_linker, ArtMethod* method) {
Alex Light9139e002015-10-09 15:59:48 -07003025 DCHECK(method != nullptr);
3026 DCHECK(!method->IsInvokable());
Vladimir Marko97d7e1c2016-10-04 14:44:28 +01003027 method->SetEntryPointFromQuickCompiledCodePtrSize(
3028 class_linker->GetQuickToInterpreterBridgeTrampoline(),
3029 class_linker->GetImagePointerSize());
Alex Light9139e002015-10-09 15:59:48 -07003030}
3031
Vladimir Marko97d7e1c2016-10-04 14:44:28 +01003032static void LinkCode(ClassLinker* class_linker,
3033 ArtMethod* method,
3034 const OatFile::OatClass* oat_class,
3035 uint32_t class_def_method_index) REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartiere401d142015-04-22 13:56:20 -07003036 Runtime* const runtime = Runtime::Current();
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08003037 if (runtime->IsAotCompiler()) {
Nicolas Geoffray4fcdc942014-07-22 10:48:00 +01003038 // The following code only applies to a non-compiler runtime.
3039 return;
3040 }
Ian Rogers62d6c772013-02-27 08:32:07 -08003041 // Method shouldn't have already been linked.
Ian Rogersef7d42f2014-01-06 12:55:46 -08003042 DCHECK(method->GetEntryPointFromQuickCompiledCode() == nullptr);
Nicolas Geoffray4fcdc942014-07-22 10:48:00 +01003043 if (oat_class != nullptr) {
3044 // Every kind of method should at least get an invoke stub from the oat_method.
3045 // non-abstract methods also get their code pointers.
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07003046 const OatFile::OatMethod oat_method = oat_class->GetOatMethod(class_def_method_index);
Mathieu Chartiere401d142015-04-22 13:56:20 -07003047 oat_method.LinkMethod(method);
Nicolas Geoffray4fcdc942014-07-22 10:48:00 +01003048 }
Brian Carlstrom92827a52011-10-10 15:50:01 -07003049
Tamas Berghammer3a98aae2016-02-08 20:21:54 +00003050 // Install entry point from interpreter.
Tamas Berghammerdd5e5e92016-02-12 16:29:00 +00003051 const void* quick_code = method->GetEntryPointFromQuickCompiledCode();
Vladimir Marko97d7e1c2016-10-04 14:44:28 +01003052 bool enter_interpreter = class_linker->ShouldUseInterpreterEntrypoint(method, quick_code);
Jeff Hao16743632013-05-08 10:59:04 -07003053
Alex Light9139e002015-10-09 15:59:48 -07003054 if (!method->IsInvokable()) {
Vladimir Marko97d7e1c2016-10-04 14:44:28 +01003055 EnsureThrowsInvocationError(class_linker, method);
Brian Carlstrom92827a52011-10-10 15:50:01 -07003056 return;
3057 }
Ian Rogers19846512012-02-24 11:42:47 -08003058
3059 if (method->IsStatic() && !method->IsConstructor()) {
Ian Rogers62d6c772013-02-27 08:32:07 -08003060 // For static methods excluding the class initializer, install the trampoline.
Sebastien Hertz7d658cf2013-07-09 10:56:11 +02003061 // It will be replaced by the proper entry point by ClassLinker::FixupStaticTrampolines
3062 // after initializing class (see ClassLinker::InitializeClass method).
Ian Rogers6f3dbba2014-10-14 17:41:57 -07003063 method->SetEntryPointFromQuickCompiledCode(GetQuickResolutionStub());
Tamas Berghammerdd5e5e92016-02-12 16:29:00 +00003064 } else if (quick_code == nullptr && method->IsNative()) {
3065 method->SetEntryPointFromQuickCompiledCode(GetQuickGenericJniStub());
Tamas Berghammer3a98aae2016-02-08 20:21:54 +00003066 } else if (enter_interpreter) {
Tamas Berghammerdd5e5e92016-02-12 16:29:00 +00003067 // Set entry point from compiled code if there's no code or in interpreter only mode.
3068 method->SetEntryPointFromQuickCompiledCode(GetQuickToInterpreterBridge());
Ian Rogers0d6de042012-02-29 08:50:26 -08003069 }
jeffhao26c0a1a2012-01-17 16:28:33 -08003070
Ian Rogers62d6c772013-02-27 08:32:07 -08003071 if (method->IsNative()) {
3072 // Unregistering restores the dlsym lookup stub.
Ian Rogers6f3dbba2014-10-14 17:41:57 -07003073 method->UnregisterNative();
Andreas Gampe90546832014-03-12 18:07:19 -07003074
Tamas Berghammerdd5e5e92016-02-12 16:29:00 +00003075 if (enter_interpreter || quick_code == nullptr) {
Ian Rogers6f3dbba2014-10-14 17:41:57 -07003076 // We have a native method here without code. Then it should have either the generic JNI
3077 // trampoline as entrypoint (non-static), or the resolution trampoline (static).
3078 // TODO: this doesn't handle all the cases where trampolines may be installed.
3079 const void* entry_point = method->GetEntryPointFromQuickCompiledCode();
Vladimir Marko97d7e1c2016-10-04 14:44:28 +01003080 DCHECK(class_linker->IsQuickGenericJniStub(entry_point) ||
3081 class_linker->IsQuickResolutionStub(entry_point));
Andreas Gampe90546832014-03-12 18:07:19 -07003082 }
Brian Carlstrom92827a52011-10-10 15:50:01 -07003083 }
3084}
3085
Mathieu Chartierc77f3ab2015-09-03 19:41:50 -07003086void ClassLinker::SetupClass(const DexFile& dex_file,
3087 const DexFile::ClassDef& dex_class_def,
3088 Handle<mirror::Class> klass,
Mathieu Chartier28357fa2016-10-18 16:27:40 -07003089 ObjPtr<mirror::ClassLoader> class_loader) {
Andreas Gampefa4333d2017-02-14 11:10:34 -08003090 CHECK(klass != nullptr);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07003091 CHECK(klass->GetDexCache() != nullptr);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003092 CHECK_EQ(mirror::Class::kStatusNotReady, klass->GetStatus());
Brian Carlstromf615a612011-07-23 12:50:34 -07003093 const char* descriptor = dex_file.GetClassDescriptor(dex_class_def);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07003094 CHECK(descriptor != nullptr);
Brian Carlstrom934486c2011-07-12 23:42:50 -07003095
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003096 klass->SetClass(GetClassRoot(kJavaLangClass));
Andreas Gampe51829322014-08-25 15:05:04 -07003097 uint32_t access_flags = dex_class_def.GetJavaAccessFlags();
Brian Carlstrom8e3fb142013-10-09 21:00:27 -07003098 CHECK_EQ(access_flags & ~kAccJavaFlagsMask, 0U);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003099 klass->SetAccessFlags(access_flags);
3100 klass->SetClassLoader(class_loader);
Ian Rogersc2b44472011-12-14 21:17:17 -08003101 DCHECK_EQ(klass->GetPrimitiveType(), Primitive::kPrimNot);
Hiroshi Yamauchi5b783e62015-03-18 17:20:11 -07003102 mirror::Class::SetStatus(klass, mirror::Class::kStatusIdx, nullptr);
Brian Carlstrom934486c2011-07-12 23:42:50 -07003103
Ian Rogers8b2c0b92013-09-19 02:56:49 -07003104 klass->SetDexClassDefIndex(dex_file.GetIndexForClassDef(dex_class_def));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003105 klass->SetDexTypeIndex(dex_class_def.class_idx_);
Mathieu Chartierc7853442015-03-27 14:35:38 -07003106}
Brian Carlstrom934486c2011-07-12 23:42:50 -07003107
Mathieu Chartierc77f3ab2015-09-03 19:41:50 -07003108void ClassLinker::LoadClass(Thread* self,
3109 const DexFile& dex_file,
Mathieu Chartierc7853442015-03-27 14:35:38 -07003110 const DexFile::ClassDef& dex_class_def,
3111 Handle<mirror::Class> klass) {
Ian Rogers13735952014-10-08 12:43:28 -07003112 const uint8_t* class_data = dex_file.GetClassData(dex_class_def);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07003113 if (class_data == nullptr) {
Ian Rogers0571d352011-11-03 19:51:38 -07003114 return; // no fields or methods - for example a marker interface
Brian Carlstrom934486c2011-07-12 23:42:50 -07003115 }
Vladimir Marko97d7e1c2016-10-04 14:44:28 +01003116 LoadClassMembers(self, dex_file, class_data, klass);
Vladimir Markod3c5beb2014-04-11 16:32:51 +01003117}
3118
Mathieu Chartier951ec2c2015-09-22 08:50:05 -07003119LengthPrefixedArray<ArtField>* ClassLinker::AllocArtFieldArray(Thread* self,
3120 LinearAlloc* allocator,
3121 size_t length) {
Mathieu Chartier54d220e2015-07-30 16:20:06 -07003122 if (length == 0) {
3123 return nullptr;
3124 }
Vladimir Markocf36d492015-08-12 19:27:26 +01003125 // If the ArtField alignment changes, review all uses of LengthPrefixedArray<ArtField>.
3126 static_assert(alignof(ArtField) == 4, "ArtField alignment is expected to be 4.");
3127 size_t storage_size = LengthPrefixedArray<ArtField>::ComputeSize(length);
Mathieu Chartier951ec2c2015-09-22 08:50:05 -07003128 void* array_storage = allocator->Alloc(self, storage_size);
Vladimir Markocf36d492015-08-12 19:27:26 +01003129 auto* ret = new(array_storage) LengthPrefixedArray<ArtField>(length);
Mathieu Chartier54d220e2015-07-30 16:20:06 -07003130 CHECK(ret != nullptr);
3131 std::uninitialized_fill_n(&ret->At(0), length, ArtField());
3132 return ret;
Mathieu Chartierc7853442015-03-27 14:35:38 -07003133}
3134
Mathieu Chartier951ec2c2015-09-22 08:50:05 -07003135LengthPrefixedArray<ArtMethod>* ClassLinker::AllocArtMethodArray(Thread* self,
3136 LinearAlloc* allocator,
3137 size_t length) {
Mathieu Chartier54d220e2015-07-30 16:20:06 -07003138 if (length == 0) {
3139 return nullptr;
Mathieu Chartiere401d142015-04-22 13:56:20 -07003140 }
Vladimir Marko14632852015-08-17 12:07:23 +01003141 const size_t method_alignment = ArtMethod::Alignment(image_pointer_size_);
3142 const size_t method_size = ArtMethod::Size(image_pointer_size_);
Vladimir Markocf36d492015-08-12 19:27:26 +01003143 const size_t storage_size =
3144 LengthPrefixedArray<ArtMethod>::ComputeSize(length, method_size, method_alignment);
Mathieu Chartier951ec2c2015-09-22 08:50:05 -07003145 void* array_storage = allocator->Alloc(self, storage_size);
Vladimir Markocf36d492015-08-12 19:27:26 +01003146 auto* ret = new (array_storage) LengthPrefixedArray<ArtMethod>(length);
Mathieu Chartier54d220e2015-07-30 16:20:06 -07003147 CHECK(ret != nullptr);
3148 for (size_t i = 0; i < length; ++i) {
Vladimir Markocf36d492015-08-12 19:27:26 +01003149 new(reinterpret_cast<void*>(&ret->At(i, method_size, method_alignment))) ArtMethod;
Mathieu Chartier54d220e2015-07-30 16:20:06 -07003150 }
3151 return ret;
Mathieu Chartiere401d142015-04-22 13:56:20 -07003152}
3153
Mathieu Chartier28357fa2016-10-18 16:27:40 -07003154LinearAlloc* ClassLinker::GetAllocatorForClassLoader(ObjPtr<mirror::ClassLoader> class_loader) {
Mathieu Chartier951ec2c2015-09-22 08:50:05 -07003155 if (class_loader == nullptr) {
3156 return Runtime::Current()->GetLinearAlloc();
3157 }
3158 LinearAlloc* allocator = class_loader->GetAllocator();
3159 DCHECK(allocator != nullptr);
3160 return allocator;
3161}
3162
Mathieu Chartier28357fa2016-10-18 16:27:40 -07003163LinearAlloc* ClassLinker::GetOrCreateAllocatorForClassLoader(ObjPtr<mirror::ClassLoader> class_loader) {
Mathieu Chartierd57d4542015-10-14 10:55:30 -07003164 if (class_loader == nullptr) {
3165 return Runtime::Current()->GetLinearAlloc();
3166 }
3167 WriterMutexLock mu(Thread::Current(), *Locks::classlinker_classes_lock_);
3168 LinearAlloc* allocator = class_loader->GetAllocator();
3169 if (allocator == nullptr) {
Mathieu Chartier5b830502016-03-02 10:30:23 -08003170 RegisterClassLoader(class_loader);
3171 allocator = class_loader->GetAllocator();
3172 CHECK(allocator != nullptr);
Mathieu Chartierd57d4542015-10-14 10:55:30 -07003173 }
3174 return allocator;
3175}
3176
Mathieu Chartierc77f3ab2015-09-03 19:41:50 -07003177void ClassLinker::LoadClassMembers(Thread* self,
3178 const DexFile& dex_file,
Ian Rogers13735952014-10-08 12:43:28 -07003179 const uint8_t* class_data,
Vladimir Marko97d7e1c2016-10-04 14:44:28 +01003180 Handle<mirror::Class> klass) {
Mathieu Chartiere401d142015-04-22 13:56:20 -07003181 {
3182 // Note: We cannot have thread suspension until the field and method arrays are setup or else
3183 // Class::VisitFieldRoots may miss some fields or methods.
Mathieu Chartier268764d2016-09-13 12:09:38 -07003184 ScopedAssertNoThreadSuspension nts(__FUNCTION__);
Mathieu Chartiere401d142015-04-22 13:56:20 -07003185 // Load static fields.
Vladimir Marko23682bf2015-06-24 14:28:03 +01003186 // We allow duplicate definitions of the same field in a class_data_item
3187 // but ignore the repeated indexes here, b/21868015.
Mathieu Chartier951ec2c2015-09-22 08:50:05 -07003188 LinearAlloc* const allocator = GetAllocatorForClassLoader(klass->GetClassLoader());
Mathieu Chartiere401d142015-04-22 13:56:20 -07003189 ClassDataItemIterator it(dex_file, class_data);
Mathieu Chartier951ec2c2015-09-22 08:50:05 -07003190 LengthPrefixedArray<ArtField>* sfields = AllocArtFieldArray(self,
3191 allocator,
3192 it.NumStaticFields());
Vladimir Marko23682bf2015-06-24 14:28:03 +01003193 size_t num_sfields = 0;
3194 uint32_t last_field_idx = 0u;
3195 for (; it.HasNextStaticField(); it.Next()) {
3196 uint32_t field_idx = it.GetMemberIndex();
3197 DCHECK_GE(field_idx, last_field_idx); // Ordering enforced by DexFileVerifier.
3198 if (num_sfields == 0 || LIKELY(field_idx > last_field_idx)) {
3199 DCHECK_LT(num_sfields, it.NumStaticFields());
Mathieu Chartier54d220e2015-07-30 16:20:06 -07003200 LoadField(it, klass, &sfields->At(num_sfields));
Vladimir Marko23682bf2015-06-24 14:28:03 +01003201 ++num_sfields;
3202 last_field_idx = field_idx;
3203 }
Mathieu Chartiere401d142015-04-22 13:56:20 -07003204 }
Orion Hodsonc069a302017-01-18 09:23:12 +00003205
Mathieu Chartiere401d142015-04-22 13:56:20 -07003206 // Load instance fields.
Mathieu Chartier951ec2c2015-09-22 08:50:05 -07003207 LengthPrefixedArray<ArtField>* ifields = AllocArtFieldArray(self,
3208 allocator,
3209 it.NumInstanceFields());
Vladimir Marko23682bf2015-06-24 14:28:03 +01003210 size_t num_ifields = 0u;
3211 last_field_idx = 0u;
3212 for (; it.HasNextInstanceField(); it.Next()) {
3213 uint32_t field_idx = it.GetMemberIndex();
3214 DCHECK_GE(field_idx, last_field_idx); // Ordering enforced by DexFileVerifier.
3215 if (num_ifields == 0 || LIKELY(field_idx > last_field_idx)) {
3216 DCHECK_LT(num_ifields, it.NumInstanceFields());
Mathieu Chartier54d220e2015-07-30 16:20:06 -07003217 LoadField(it, klass, &ifields->At(num_ifields));
Vladimir Marko23682bf2015-06-24 14:28:03 +01003218 ++num_ifields;
3219 last_field_idx = field_idx;
3220 }
3221 }
Orion Hodsonc069a302017-01-18 09:23:12 +00003222
Vladimir Marko23682bf2015-06-24 14:28:03 +01003223 if (UNLIKELY(num_sfields != it.NumStaticFields()) ||
3224 UNLIKELY(num_ifields != it.NumInstanceFields())) {
David Sehr709b0702016-10-13 09:12:37 -07003225 LOG(WARNING) << "Duplicate fields in class " << klass->PrettyDescriptor()
Vladimir Marko23682bf2015-06-24 14:28:03 +01003226 << " (unique static fields: " << num_sfields << "/" << it.NumStaticFields()
3227 << ", unique instance fields: " << num_ifields << "/" << it.NumInstanceFields() << ")";
Vladimir Marko81819db2015-11-05 15:30:12 +00003228 // NOTE: Not shrinking the over-allocated sfields/ifields, just setting size.
3229 if (sfields != nullptr) {
3230 sfields->SetSize(num_sfields);
3231 }
3232 if (ifields != nullptr) {
3233 ifields->SetSize(num_ifields);
3234 }
Mathieu Chartiere401d142015-04-22 13:56:20 -07003235 }
Vladimir Marko81819db2015-11-05 15:30:12 +00003236 // Set the field arrays.
3237 klass->SetSFieldsPtr(sfields);
3238 DCHECK_EQ(klass->NumStaticFields(), num_sfields);
Mathieu Chartier54d220e2015-07-30 16:20:06 -07003239 klass->SetIFieldsPtr(ifields);
Mathieu Chartiere401d142015-04-22 13:56:20 -07003240 DCHECK_EQ(klass->NumInstanceFields(), num_ifields);
3241 // Load methods.
Vladimir Marko97d7e1c2016-10-04 14:44:28 +01003242 bool has_oat_class = false;
3243 const OatFile::OatClass oat_class =
3244 (Runtime::Current()->IsStarted() && !Runtime::Current()->IsAotCompiler())
3245 ? OatFile::FindOatClass(dex_file, klass->GetDexClassDefIndex(), &has_oat_class)
3246 : OatFile::OatClass::Invalid();
3247 const OatFile::OatClass* oat_class_ptr = has_oat_class ? &oat_class : nullptr;
Alex Lighte64300b2015-12-15 15:02:47 -08003248 klass->SetMethodsPtr(
3249 AllocArtMethodArray(self, allocator, it.NumDirectMethods() + it.NumVirtualMethods()),
3250 it.NumDirectMethods(),
3251 it.NumVirtualMethods());
Mathieu Chartiere401d142015-04-22 13:56:20 -07003252 size_t class_def_method_index = 0;
Andreas Gampee2abbc62017-09-15 11:59:26 -07003253 uint32_t last_dex_method_index = dex::kDexNoIndex;
Mathieu Chartiere401d142015-04-22 13:56:20 -07003254 size_t last_class_def_method_index = 0;
Alex Lighte64300b2015-12-15 15:02:47 -08003255 // TODO These should really use the iterators.
Mathieu Chartiere401d142015-04-22 13:56:20 -07003256 for (size_t i = 0; it.HasNextDirectMethod(); i++, it.Next()) {
3257 ArtMethod* method = klass->GetDirectMethodUnchecked(i, image_pointer_size_);
Mathieu Chartier268764d2016-09-13 12:09:38 -07003258 LoadMethod(dex_file, it, klass, method);
Vladimir Marko97d7e1c2016-10-04 14:44:28 +01003259 LinkCode(this, method, oat_class_ptr, class_def_method_index);
Mathieu Chartiere401d142015-04-22 13:56:20 -07003260 uint32_t it_method_index = it.GetMemberIndex();
3261 if (last_dex_method_index == it_method_index) {
3262 // duplicate case
3263 method->SetMethodIndex(last_class_def_method_index);
3264 } else {
3265 method->SetMethodIndex(class_def_method_index);
3266 last_dex_method_index = it_method_index;
3267 last_class_def_method_index = class_def_method_index;
3268 }
3269 class_def_method_index++;
3270 }
3271 for (size_t i = 0; it.HasNextVirtualMethod(); i++, it.Next()) {
3272 ArtMethod* method = klass->GetVirtualMethodUnchecked(i, image_pointer_size_);
Mathieu Chartier268764d2016-09-13 12:09:38 -07003273 LoadMethod(dex_file, it, klass, method);
Mathieu Chartiere401d142015-04-22 13:56:20 -07003274 DCHECK_EQ(class_def_method_index, it.NumDirectMethods() + i);
Vladimir Marko97d7e1c2016-10-04 14:44:28 +01003275 LinkCode(this, method, oat_class_ptr, class_def_method_index);
Mathieu Chartiere401d142015-04-22 13:56:20 -07003276 class_def_method_index++;
3277 }
3278 DCHECK(!it.HasNext());
Ian Rogers0571d352011-11-03 19:51:38 -07003279 }
Mathieu Chartiereb837eb2015-07-29 17:25:41 -07003280 // Ensure that the card is marked so that remembered sets pick up native roots.
3281 Runtime::Current()->GetHeap()->WriteBarrierEveryFieldOf(klass.Get());
Mathieu Chartierf3f2a7a2015-04-14 15:43:10 -07003282 self->AllowThreadSuspension();
Brian Carlstrom934486c2011-07-12 23:42:50 -07003283}
3284
Mathieu Chartierc77f3ab2015-09-03 19:41:50 -07003285void ClassLinker::LoadField(const ClassDataItemIterator& it,
3286 Handle<mirror::Class> klass,
Mathieu Chartierc7853442015-03-27 14:35:38 -07003287 ArtField* dst) {
3288 const uint32_t field_idx = it.GetMemberIndex();
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003289 dst->SetDexFieldIndex(field_idx);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003290 dst->SetDeclaringClass(klass.Get());
Andreas Gampe51829322014-08-25 15:05:04 -07003291 dst->SetAccessFlags(it.GetFieldAccessFlags());
Brian Carlstrom934486c2011-07-12 23:42:50 -07003292}
3293
Mathieu Chartier268764d2016-09-13 12:09:38 -07003294void ClassLinker::LoadMethod(const DexFile& dex_file,
Mathieu Chartierc77f3ab2015-09-03 19:41:50 -07003295 const ClassDataItemIterator& it,
3296 Handle<mirror::Class> klass,
3297 ArtMethod* dst) {
Ian Rogers19846512012-02-24 11:42:47 -08003298 uint32_t dex_method_idx = it.GetMemberIndex();
Ian Rogers19846512012-02-24 11:42:47 -08003299 const DexFile::MethodId& method_id = dex_file.GetMethodId(dex_method_idx);
Ian Rogersdfb325e2013-10-30 01:00:44 -07003300 const char* method_name = dex_file.StringDataByIdx(method_id.name_idx_);
Mathieu Chartier66f19252012-09-18 08:57:04 -07003301
Mathieu Chartier268764d2016-09-13 12:09:38 -07003302 ScopedAssertNoThreadSuspension ants("LoadMethod");
Mathieu Chartier66f19252012-09-18 08:57:04 -07003303 dst->SetDexMethodIndex(dex_method_idx);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003304 dst->SetDeclaringClass(klass.Get());
Ian Rogers0571d352011-11-03 19:51:38 -07003305 dst->SetCodeItemOffset(it.GetMethodCodeItemOffset());
Brian Carlstrom934486c2011-07-12 23:42:50 -07003306
Andreas Gampe51829322014-08-25 15:05:04 -07003307 uint32_t access_flags = it.GetMethodAccessFlags();
Ian Rogers241b5de2013-10-09 17:58:57 -07003308
Ian Rogersdfb325e2013-10-30 01:00:44 -07003309 if (UNLIKELY(strcmp("finalize", method_name) == 0)) {
Ian Rogers241b5de2013-10-09 17:58:57 -07003310 // Set finalizable flag on declaring class.
Ian Rogersdfb325e2013-10-30 01:00:44 -07003311 if (strcmp("V", dex_file.GetShorty(method_id.proto_idx_)) == 0) {
3312 // Void return type.
Andreas Gampe2ed8def2014-08-28 14:41:02 -07003313 if (klass->GetClassLoader() != nullptr) { // All non-boot finalizer methods are flagged.
Ian Rogersdfb325e2013-10-30 01:00:44 -07003314 klass->SetFinalizable();
3315 } else {
Ian Rogers1ff3c982014-08-12 02:30:58 -07003316 std::string temp;
3317 const char* klass_descriptor = klass->GetDescriptor(&temp);
Ian Rogersdfb325e2013-10-30 01:00:44 -07003318 // The Enum class declares a "final" finalize() method to prevent subclasses from
3319 // introducing a finalizer. We don't want to set the finalizable flag for Enum or its
3320 // subclasses, so we exclude it here.
3321 // We also want to avoid setting the flag on Object, where we know that finalize() is
3322 // empty.
Ian Rogers1ff3c982014-08-12 02:30:58 -07003323 if (strcmp(klass_descriptor, "Ljava/lang/Object;") != 0 &&
3324 strcmp(klass_descriptor, "Ljava/lang/Enum;") != 0) {
Ian Rogers241b5de2013-10-09 17:58:57 -07003325 klass->SetFinalizable();
Ian Rogers241b5de2013-10-09 17:58:57 -07003326 }
3327 }
3328 }
3329 } else if (method_name[0] == '<') {
3330 // Fix broken access flags for initializers. Bug 11157540.
Ian Rogersdfb325e2013-10-30 01:00:44 -07003331 bool is_init = (strcmp("<init>", method_name) == 0);
3332 bool is_clinit = !is_init && (strcmp("<clinit>", method_name) == 0);
Ian Rogers241b5de2013-10-09 17:58:57 -07003333 if (UNLIKELY(!is_init && !is_clinit)) {
3334 LOG(WARNING) << "Unexpected '<' at start of method name " << method_name;
3335 } else {
3336 if (UNLIKELY((access_flags & kAccConstructor) == 0)) {
3337 LOG(WARNING) << method_name << " didn't have expected constructor access flag in class "
David Sehr709b0702016-10-13 09:12:37 -07003338 << klass->PrettyDescriptor() << " in dex file " << dex_file.GetLocation();
Ian Rogers241b5de2013-10-09 17:58:57 -07003339 access_flags |= kAccConstructor;
3340 }
3341 }
3342 }
3343 dst->SetAccessFlags(access_flags);
Brian Carlstrom934486c2011-07-12 23:42:50 -07003344}
3345
Ian Rogers7b078e82014-09-10 14:44:24 -07003346void ClassLinker::AppendToBootClassPath(Thread* self, const DexFile& dex_file) {
Vladimir Markocd556b02017-02-03 11:47:34 +00003347 ObjPtr<mirror::DexCache> dex_cache = AllocAndInitializeDexCache(
Mathieu Chartierd57d4542015-10-14 10:55:30 -07003348 self,
3349 dex_file,
Vladimir Markocd556b02017-02-03 11:47:34 +00003350 Runtime::Current()->GetLinearAlloc());
3351 CHECK(dex_cache != nullptr) << "Failed to allocate dex cache for " << dex_file.GetLocation();
Brian Carlstrom40381fb2011-10-19 14:13:40 -07003352 AppendToBootClassPath(dex_file, dex_cache);
Brian Carlstroma663ea52011-08-19 23:33:41 -07003353}
3354
Mathieu Chartierc528dba2013-11-26 12:00:11 -08003355void ClassLinker::AppendToBootClassPath(const DexFile& dex_file,
Vladimir Markocd556b02017-02-03 11:47:34 +00003356 ObjPtr<mirror::DexCache> dex_cache) {
3357 CHECK(dex_cache != nullptr) << dex_file.GetLocation();
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07003358 boot_class_path_.push_back(&dex_file);
Andreas Gampebe7af222017-07-25 09:57:28 -07003359 WriterMutexLock mu(Thread::Current(), *Locks::dex_lock_);
3360 RegisterDexFileLocked(dex_file, dex_cache, /* class_loader */ nullptr);
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07003361}
3362
Mathieu Chartierc528dba2013-11-26 12:00:11 -08003363void ClassLinker::RegisterDexFileLocked(const DexFile& dex_file,
Vladimir Markocd556b02017-02-03 11:47:34 +00003364 ObjPtr<mirror::DexCache> dex_cache,
3365 ObjPtr<mirror::ClassLoader> class_loader) {
Mathieu Chartier673ed3d2015-08-28 14:56:43 -07003366 Thread* const self = Thread::Current();
Andreas Gampecc1b5352016-12-01 16:58:38 -08003367 Locks::dex_lock_->AssertExclusiveHeld(self);
Vladimir Markocd556b02017-02-03 11:47:34 +00003368 CHECK(dex_cache != nullptr) << dex_file.GetLocation();
Mathieu Chartierfbc31082016-01-24 11:59:56 -08003369 // For app images, the dex cache location may be a suffix of the dex file location since the
3370 // dex file location is an absolute path.
Mathieu Chartier76172162016-01-26 14:54:06 -08003371 const std::string dex_cache_location = dex_cache->GetLocation()->ToModifiedUtf8();
3372 const size_t dex_cache_length = dex_cache_location.length();
Mathieu Chartierfbc31082016-01-24 11:59:56 -08003373 CHECK_GT(dex_cache_length, 0u) << dex_file.GetLocation();
3374 std::string dex_file_location = dex_file.GetLocation();
3375 CHECK_GE(dex_file_location.length(), dex_cache_length)
Mathieu Chartier76172162016-01-26 14:54:06 -08003376 << dex_cache_location << " " << dex_file.GetLocation();
Mathieu Chartierfbc31082016-01-24 11:59:56 -08003377 // Take suffix.
3378 const std::string dex_file_suffix = dex_file_location.substr(
3379 dex_file_location.length() - dex_cache_length,
3380 dex_cache_length);
3381 // Example dex_cache location is SettingsProvider.apk and
3382 // dex file location is /system/priv-app/SettingsProvider/SettingsProvider.apk
Mathieu Chartier76172162016-01-26 14:54:06 -08003383 CHECK_EQ(dex_cache_location, dex_file_suffix);
Vladimir Marko0eb882b2017-05-15 13:39:18 +01003384 const OatFile* oat_file =
3385 (dex_file.GetOatDexFile() != nullptr) ? dex_file.GetOatDexFile()->GetOatFile() : nullptr;
3386 // Clean up pass to remove null dex caches. Also check if we need to initialize OatFile .bss.
Mathieu Chartier673ed3d2015-08-28 14:56:43 -07003387 // Null dex caches can occur due to class unloading and we are lazily removing null entries.
Vladimir Marko0eb882b2017-05-15 13:39:18 +01003388 bool initialize_oat_file_bss = (oat_file != nullptr);
Mathieu Chartier673ed3d2015-08-28 14:56:43 -07003389 JavaVMExt* const vm = self->GetJniEnv()->vm;
Hiroshi Yamauchi04302db2015-11-11 23:45:34 -08003390 for (auto it = dex_caches_.begin(); it != dex_caches_.end(); ) {
3391 DexCacheData data = *it;
3392 if (self->IsJWeakCleared(data.weak_root)) {
3393 vm->DeleteWeakGlobalRef(self, data.weak_root);
Mathieu Chartier673ed3d2015-08-28 14:56:43 -07003394 it = dex_caches_.erase(it);
3395 } else {
Vladimir Marko0eb882b2017-05-15 13:39:18 +01003396 if (initialize_oat_file_bss &&
3397 it->dex_file->GetOatDexFile() != nullptr &&
3398 it->dex_file->GetOatDexFile()->GetOatFile() == oat_file) {
3399 initialize_oat_file_bss = false; // Already initialized.
3400 }
Mathieu Chartier673ed3d2015-08-28 14:56:43 -07003401 ++it;
3402 }
Brian Carlstrom81a90872015-08-28 09:07:14 -07003403 }
Vladimir Marko0eb882b2017-05-15 13:39:18 +01003404 if (initialize_oat_file_bss) {
3405 // TODO: Pre-initialize from boot/app image?
3406 ArtMethod* resolution_method = Runtime::Current()->GetResolutionMethod();
3407 for (ArtMethod*& entry : oat_file->GetBssMethods()) {
3408 entry = resolution_method;
3409 }
3410 }
Vladimir Markocd556b02017-02-03 11:47:34 +00003411 jweak dex_cache_jweak = vm->AddWeakGlobalRef(self, dex_cache);
Mathieu Chartier673ed3d2015-08-28 14:56:43 -07003412 dex_cache->SetDexFile(&dex_file);
Hiroshi Yamauchi04302db2015-11-11 23:45:34 -08003413 DexCacheData data;
3414 data.weak_root = dex_cache_jweak;
3415 data.dex_file = dex_cache->GetDexFile();
Vladimir Markocd556b02017-02-03 11:47:34 +00003416 data.class_table = ClassTableForClassLoader(class_loader);
3417 DCHECK(data.class_table != nullptr);
Mathieu Chartier72041a02017-07-14 18:23:25 -07003418 // Make sure to hold the dex cache live in the class table. This case happens for the boot class
3419 // path dex caches without an image.
3420 data.class_table->InsertStrongRoot(dex_cache);
3421 if (class_loader != nullptr) {
3422 // Since we added a strong root to the class table, do the write barrier as required for
3423 // remembered sets and generational GCs.
3424 Runtime::Current()->GetHeap()->WriteBarrierEveryFieldOf(class_loader);
3425 }
Hiroshi Yamauchi04302db2015-11-11 23:45:34 -08003426 dex_caches_.push_back(data);
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07003427}
3428
Vladimir Markocd556b02017-02-03 11:47:34 +00003429ObjPtr<mirror::DexCache> ClassLinker::DecodeDexCache(Thread* self, const DexCacheData& data) {
3430 return data.IsValid()
3431 ? ObjPtr<mirror::DexCache>::DownCast(self->DecodeJObject(data.weak_root))
3432 : nullptr;
3433}
3434
3435ObjPtr<mirror::DexCache> ClassLinker::EnsureSameClassLoader(
3436 Thread* self,
3437 ObjPtr<mirror::DexCache> dex_cache,
3438 const DexCacheData& data,
3439 ObjPtr<mirror::ClassLoader> class_loader) {
3440 DCHECK_EQ(dex_cache->GetDexFile(), data.dex_file);
3441 if (data.class_table != ClassTableForClassLoader(class_loader)) {
3442 self->ThrowNewExceptionF("Ljava/lang/InternalError;",
3443 "Attempt to register dex file %s with multiple class loaders",
3444 data.dex_file->GetLocation().c_str());
3445 return nullptr;
3446 }
3447 return dex_cache;
3448}
3449
Alex Light07f06212017-06-01 14:01:43 -07003450void ClassLinker::RegisterExistingDexCache(ObjPtr<mirror::DexCache> dex_cache,
3451 ObjPtr<mirror::ClassLoader> class_loader) {
3452 Thread* self = Thread::Current();
3453 StackHandleScope<2> hs(self);
3454 Handle<mirror::DexCache> h_dex_cache(hs.NewHandle(dex_cache));
3455 Handle<mirror::ClassLoader> h_class_loader(hs.NewHandle(class_loader));
3456 const DexFile* dex_file = dex_cache->GetDexFile();
3457 DCHECK(dex_file != nullptr) << "Attempt to register uninitialized dex_cache object!";
3458 if (kIsDebugBuild) {
3459 DexCacheData old_data;
3460 {
3461 ReaderMutexLock mu(self, *Locks::dex_lock_);
3462 old_data = FindDexCacheDataLocked(*dex_file);
3463 }
3464 ObjPtr<mirror::DexCache> old_dex_cache = DecodeDexCache(self, old_data);
3465 DCHECK(old_dex_cache.IsNull()) << "Attempt to manually register a dex cache thats already "
3466 << "been registered on dex file " << dex_file->GetLocation();
3467 }
3468 ClassTable* table;
3469 {
3470 WriterMutexLock mu(self, *Locks::classlinker_classes_lock_);
3471 table = InsertClassTableForClassLoader(h_class_loader.Get());
3472 }
3473 WriterMutexLock mu(self, *Locks::dex_lock_);
3474 RegisterDexFileLocked(*dex_file, h_dex_cache.Get(), h_class_loader.Get());
3475 table->InsertStrongRoot(h_dex_cache.Get());
3476 if (h_class_loader.Get() != nullptr) {
3477 // Since we added a strong root to the class table, do the write barrier as required for
3478 // remembered sets and generational GCs.
3479 Runtime::Current()->GetHeap()->WriteBarrierEveryFieldOf(h_class_loader.Get());
3480 }
3481}
3482
Vladimir Markocd556b02017-02-03 11:47:34 +00003483ObjPtr<mirror::DexCache> ClassLinker::RegisterDexFile(const DexFile& dex_file,
3484 ObjPtr<mirror::ClassLoader> class_loader) {
Ian Rogers1f539342012-10-03 21:09:42 -07003485 Thread* self = Thread::Current();
Vladimir Markocd556b02017-02-03 11:47:34 +00003486 DexCacheData old_data;
Brian Carlstrom47d237a2011-10-18 15:08:33 -07003487 {
Andreas Gampecc1b5352016-12-01 16:58:38 -08003488 ReaderMutexLock mu(self, *Locks::dex_lock_);
Vladimir Markocd556b02017-02-03 11:47:34 +00003489 old_data = FindDexCacheDataLocked(dex_file);
3490 }
3491 ObjPtr<mirror::DexCache> old_dex_cache = DecodeDexCache(self, old_data);
3492 if (old_dex_cache != nullptr) {
3493 return EnsureSameClassLoader(self, old_dex_cache, old_data, class_loader);
Brian Carlstromaded5f72011-10-07 17:15:04 -07003494 }
Mathieu Chartierc9dbb1d2016-06-03 17:47:32 -07003495 LinearAlloc* const linear_alloc = GetOrCreateAllocatorForClassLoader(class_loader);
3496 DCHECK(linear_alloc != nullptr);
3497 ClassTable* table;
3498 {
3499 WriterMutexLock mu(self, *Locks::classlinker_classes_lock_);
3500 table = InsertClassTableForClassLoader(class_loader);
3501 }
Brian Carlstrom47d237a2011-10-18 15:08:33 -07003502 // Don't alloc while holding the lock, since allocation may need to
3503 // suspend all threads and another thread may need the dex_lock_ to
3504 // get to a suspend point.
Vladimir Markocd556b02017-02-03 11:47:34 +00003505 StackHandleScope<3> hs(self);
3506 Handle<mirror::ClassLoader> h_class_loader(hs.NewHandle(class_loader));
Mathieu Chartier28357fa2016-10-18 16:27:40 -07003507 ObjPtr<mirror::String> location;
Mathieu Chartier6c60d842016-09-15 10:24:43 -07003508 Handle<mirror::DexCache> h_dex_cache(hs.NewHandle(AllocDexCache(/*out*/&location,
3509 self,
3510 dex_file)));
3511 Handle<mirror::String> h_location(hs.NewHandle(location));
Mathieu Chartierc9dbb1d2016-06-03 17:47:32 -07003512 {
Andreas Gampecc1b5352016-12-01 16:58:38 -08003513 WriterMutexLock mu(self, *Locks::dex_lock_);
Vladimir Markocd556b02017-02-03 11:47:34 +00003514 old_data = FindDexCacheDataLocked(dex_file);
3515 old_dex_cache = DecodeDexCache(self, old_data);
Andreas Gampefa4333d2017-02-14 11:10:34 -08003516 if (old_dex_cache == nullptr && h_dex_cache != nullptr) {
Vladimir Markocd556b02017-02-03 11:47:34 +00003517 // Do InitializeDexCache while holding dex lock to make sure two threads don't call it at the
3518 // same time with the same dex cache. Since the .bss is shared this can cause failing DCHECK
3519 // that the arrays are null.
3520 mirror::DexCache::InitializeDexCache(self,
3521 h_dex_cache.Get(),
3522 h_location.Get(),
3523 &dex_file,
3524 linear_alloc,
3525 image_pointer_size_);
3526 RegisterDexFileLocked(dex_file, h_dex_cache.Get(), h_class_loader.Get());
Mathieu Chartierc9dbb1d2016-06-03 17:47:32 -07003527 }
Vladimir Markocd556b02017-02-03 11:47:34 +00003528 }
3529 if (old_dex_cache != nullptr) {
3530 // Another thread managed to initialize the dex cache faster, so use that DexCache.
3531 // If this thread encountered OOME, ignore it.
Andreas Gampefa4333d2017-02-14 11:10:34 -08003532 DCHECK_EQ(h_dex_cache == nullptr, self->IsExceptionPending());
Vladimir Markocd556b02017-02-03 11:47:34 +00003533 self->ClearException();
3534 // We cannot call EnsureSameClassLoader() while holding the dex_lock_.
3535 return EnsureSameClassLoader(self, old_dex_cache, old_data, h_class_loader.Get());
3536 }
Andreas Gampefa4333d2017-02-14 11:10:34 -08003537 if (h_dex_cache == nullptr) {
Vladimir Markocd556b02017-02-03 11:47:34 +00003538 self->AssertPendingOOMException();
3539 return nullptr;
Brian Carlstrom47d237a2011-10-18 15:08:33 -07003540 }
Mathieu Chartierc9dbb1d2016-06-03 17:47:32 -07003541 table->InsertStrongRoot(h_dex_cache.Get());
Mathieu Chartiera1467d02017-02-22 09:22:50 -08003542 if (h_class_loader.Get() != nullptr) {
3543 // Since we added a strong root to the class table, do the write barrier as required for
3544 // remembered sets and generational GCs.
3545 Runtime::Current()->GetHeap()->WriteBarrierEveryFieldOf(h_class_loader.Get());
3546 }
Mathieu Chartier673ed3d2015-08-28 14:56:43 -07003547 return h_dex_cache.Get();
Brian Carlstromaded5f72011-10-07 17:15:04 -07003548}
3549
Vladimir Markocd556b02017-02-03 11:47:34 +00003550bool ClassLinker::IsDexFileRegistered(Thread* self, const DexFile& dex_file) {
Andreas Gampecc1b5352016-12-01 16:58:38 -08003551 ReaderMutexLock mu(self, *Locks::dex_lock_);
Vladimir Markocd556b02017-02-03 11:47:34 +00003552 return DecodeDexCache(self, FindDexCacheDataLocked(dex_file)) != nullptr;
Mathieu Chartier673ed3d2015-08-28 14:56:43 -07003553}
3554
Vladimir Markocd556b02017-02-03 11:47:34 +00003555ObjPtr<mirror::DexCache> ClassLinker::FindDexCache(Thread* self, const DexFile& dex_file) {
3556 ReaderMutexLock mu(self, *Locks::dex_lock_);
Mathieu Chartier9e050df2017-08-09 10:05:47 -07003557 DexCacheData dex_cache_data = FindDexCacheDataLocked(dex_file);
3558 ObjPtr<mirror::DexCache> dex_cache = DecodeDexCache(self, dex_cache_data);
Vladimir Markocd556b02017-02-03 11:47:34 +00003559 if (dex_cache != nullptr) {
3560 return dex_cache;
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07003561 }
Brian Carlstrom81a90872015-08-28 09:07:14 -07003562 // Failure, dump diagnostic and abort.
Hiroshi Yamauchi04302db2015-11-11 23:45:34 -08003563 for (const DexCacheData& data : dex_caches_) {
Vladimir Markocd556b02017-02-03 11:47:34 +00003564 if (DecodeDexCache(self, data) != nullptr) {
Andreas Gampe37c58462017-03-27 15:14:27 -07003565 LOG(FATAL_WITHOUT_ABORT) << "Registered dex file " << data.dex_file->GetLocation();
Mathieu Chartier673ed3d2015-08-28 14:56:43 -07003566 }
Brian Carlstrom81a90872015-08-28 09:07:14 -07003567 }
Mathieu Chartier9e050df2017-08-09 10:05:47 -07003568 LOG(FATAL) << "Failed to find DexCache for DexFile " << dex_file.GetLocation()
3569 << " " << &dex_file << " " << dex_cache_data.dex_file;
Ian Rogerse0a02da2014-12-02 14:10:53 -08003570 UNREACHABLE();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003571}
3572
Vladimir Markocd556b02017-02-03 11:47:34 +00003573ClassTable* ClassLinker::FindClassTable(Thread* self, ObjPtr<mirror::DexCache> dex_cache) {
3574 const DexFile* dex_file = dex_cache->GetDexFile();
3575 DCHECK(dex_file != nullptr);
3576 ReaderMutexLock mu(self, *Locks::dex_lock_);
3577 // Search assuming unique-ness of dex file.
3578 for (const DexCacheData& data : dex_caches_) {
3579 // Avoid decoding (and read barriers) other unrelated dex caches.
3580 if (data.dex_file == dex_file) {
3581 ObjPtr<mirror::DexCache> registered_dex_cache = DecodeDexCache(self, data);
3582 if (registered_dex_cache != nullptr) {
3583 CHECK_EQ(registered_dex_cache, dex_cache) << dex_file->GetLocation();
3584 return data.class_table;
3585 }
3586 }
3587 }
3588 return nullptr;
3589}
3590
3591ClassLinker::DexCacheData ClassLinker::FindDexCacheDataLocked(const DexFile& dex_file) {
3592 // Search assuming unique-ness of dex file.
3593 for (const DexCacheData& data : dex_caches_) {
3594 // Avoid decoding (and read barriers) other unrelated dex caches.
3595 if (data.dex_file == &dex_file) {
3596 return data;
3597 }
3598 }
3599 return DexCacheData();
3600}
3601
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003602mirror::Class* ClassLinker::CreatePrimitiveClass(Thread* self, Primitive::Type type) {
Mathieu Chartier6beced42016-11-15 15:51:31 -08003603 ObjPtr<mirror::Class> klass =
3604 AllocClass(self, mirror::Class::PrimitiveClassSize(image_pointer_size_));
Andreas Gampe2ed8def2014-08-28 14:41:02 -07003605 if (UNLIKELY(klass == nullptr)) {
Mathieu Chartiere401d142015-04-22 13:56:20 -07003606 self->AssertPendingOOMException();
Andreas Gampe2ed8def2014-08-28 14:41:02 -07003607 return nullptr;
Ian Rogersa436fde2013-08-27 23:34:06 -07003608 }
3609 return InitializePrimitiveClass(klass, type);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003610}
3611
Mathieu Chartier28357fa2016-10-18 16:27:40 -07003612mirror::Class* ClassLinker::InitializePrimitiveClass(ObjPtr<mirror::Class> primitive_class,
Mathieu Chartierc528dba2013-11-26 12:00:11 -08003613 Primitive::Type type) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07003614 CHECK(primitive_class != nullptr);
Ian Rogers1f539342012-10-03 21:09:42 -07003615 // Must hold lock on object when initializing.
Ian Rogers7dfb28c2013-08-22 08:18:36 -07003616 Thread* self = Thread::Current();
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003617 StackHandleScope<1> hs(self);
3618 Handle<mirror::Class> h_class(hs.NewHandle(primitive_class));
Mathieu Chartierdb2633c2014-05-16 09:59:29 -07003619 ObjectLock<mirror::Class> lock(self, h_class);
Hiroshi Yamauchi5b783e62015-03-18 17:20:11 -07003620 h_class->SetAccessFlags(kAccPublic | kAccFinal | kAccAbstract);
3621 h_class->SetPrimitiveType(type);
Mathieu Chartier6beced42016-11-15 15:51:31 -08003622 h_class->SetIfTable(GetClassRoot(kJavaLangObject)->GetIfTable());
Hiroshi Yamauchi5b783e62015-03-18 17:20:11 -07003623 mirror::Class::SetStatus(h_class, mirror::Class::kStatusInitialized, self);
Ian Rogers7dfb28c2013-08-22 08:18:36 -07003624 const char* descriptor = Primitive::Descriptor(type);
Mathieu Chartier6beced42016-11-15 15:51:31 -08003625 ObjPtr<mirror::Class> existing = InsertClass(descriptor,
3626 h_class.Get(),
3627 ComputeModifiedUtf8Hash(descriptor));
Andreas Gampe2ed8def2014-08-28 14:41:02 -07003628 CHECK(existing == nullptr) << "InitPrimitiveClass(" << type << ") failed";
Hiroshi Yamauchi5b783e62015-03-18 17:20:11 -07003629 return h_class.Get();
Carl Shapiro565f5072011-07-10 13:39:43 -07003630}
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003631
Brian Carlstrombe977852011-07-19 14:54:54 -07003632// Create an array class (i.e. the class object for the array, not the
3633// array itself). "descriptor" looks like "[C" or "[[[[B" or
3634// "[Ljava/lang/String;".
3635//
3636// If "descriptor" refers to an array of primitives, look up the
3637// primitive type's internally-generated class object.
3638//
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07003639// "class_loader" is the class loader of the class that's referring to
3640// us. It's used to ensure that we're looking for the element type in
3641// the right context. It does NOT become the class loader for the
3642// array class; that always comes from the base element class.
Brian Carlstrombe977852011-07-19 14:54:54 -07003643//
Mathieu Chartier2cebb242015-04-21 16:50:40 -07003644// Returns null with an exception raised on failure.
Igor Murashkinb1d8c312015-08-04 11:18:43 -07003645mirror::Class* ClassLinker::CreateArrayClass(Thread* self, const char* descriptor, size_t hash,
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07003646 Handle<mirror::ClassLoader> class_loader) {
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07003647 // Identify the underlying component type
Ian Rogers7dfb28c2013-08-22 08:18:36 -07003648 CHECK_EQ('[', descriptor[0]);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003649 StackHandleScope<2> hs(self);
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07003650 MutableHandle<mirror::Class> component_type(hs.NewHandle(FindClass(self, descriptor + 1,
3651 class_loader)));
Andreas Gampefa4333d2017-02-14 11:10:34 -08003652 if (component_type == nullptr) {
Mathieu Chartierc0a9ea42014-02-03 16:36:49 -08003653 DCHECK(self->IsExceptionPending());
Andreas Gampedc13d7d2014-07-23 20:18:36 -07003654 // We need to accept erroneous classes as component types.
Mathieu Chartiere7c9a8c2014-11-06 16:35:45 -08003655 const size_t component_hash = ComputeModifiedUtf8Hash(descriptor + 1);
3656 component_type.Assign(LookupClass(self, descriptor + 1, component_hash, class_loader.Get()));
Andreas Gampefa4333d2017-02-14 11:10:34 -08003657 if (component_type == nullptr) {
Andreas Gampedc13d7d2014-07-23 20:18:36 -07003658 DCHECK(self->IsExceptionPending());
3659 return nullptr;
3660 } else {
3661 self->ClearException();
3662 }
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07003663 }
Ian Rogers2d10b202014-05-12 19:15:18 -07003664 if (UNLIKELY(component_type->IsPrimitiveVoid())) {
3665 ThrowNoClassDefFoundError("Attempt to create array of void primitive type");
3666 return nullptr;
3667 }
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07003668 // See if the component type is already loaded. Array classes are
3669 // always associated with the class loader of their underlying
3670 // element type -- an array of Strings goes with the loader for
3671 // java/lang/String -- so we need to look for it there. (The
3672 // caller should have checked for the existence of the class
3673 // before calling here, but they did so with *their* class loader,
3674 // not the component type's loader.)
3675 //
3676 // If we find it, the caller adds "loader" to the class' initiating
3677 // loader list, which should prevent us from going through this again.
3678 //
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003679 // This call is unnecessary if "loader" and "component_type->GetClassLoader()"
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07003680 // are the same, because our caller (FindClass) just did the
3681 // lookup. (Even if we get this wrong we still have correct behavior,
3682 // because we effectively do this lookup again when we add the new
3683 // class to the hash table --- necessary because of possible races with
3684 // other threads.)
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003685 if (class_loader.Get() != component_type->GetClassLoader()) {
Vladimir Marko6ad2f6d2017-01-18 15:22:59 +00003686 ObjPtr<mirror::Class> new_class =
3687 LookupClass(self, descriptor, hash, component_type->GetClassLoader());
Andreas Gampe2ed8def2014-08-28 14:41:02 -07003688 if (new_class != nullptr) {
Mathieu Chartier28357fa2016-10-18 16:27:40 -07003689 return new_class.Ptr();
Brian Carlstroma331b3c2011-07-18 17:47:56 -07003690 }
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07003691 }
Brian Carlstroma331b3c2011-07-18 17:47:56 -07003692
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07003693 // Fill out the fields in the Class.
3694 //
3695 // It is possible to execute some methods against arrays, because
3696 // all arrays are subclasses of java_lang_Object_, so we need to set
3697 // up a vtable. We can just point at the one in java_lang_Object_.
3698 //
3699 // Array classes are simple enough that we don't need to do a full
3700 // link step.
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003701 auto new_class = hs.NewHandle<mirror::Class>(nullptr);
Ian Rogers7dfb28c2013-08-22 08:18:36 -07003702 if (UNLIKELY(!init_done_)) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003703 // Classes that were hand created, ie not by FindSystemClass
Ian Rogers7dfb28c2013-08-22 08:18:36 -07003704 if (strcmp(descriptor, "[Ljava/lang/Class;") == 0) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003705 new_class.Assign(GetClassRoot(kClassArrayClass));
Ian Rogers7dfb28c2013-08-22 08:18:36 -07003706 } else if (strcmp(descriptor, "[Ljava/lang/Object;") == 0) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003707 new_class.Assign(GetClassRoot(kObjectArrayClass));
Ian Rogers6f3dbba2014-10-14 17:41:57 -07003708 } else if (strcmp(descriptor, GetClassRootDescriptor(kJavaLangStringArrayClass)) == 0) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003709 new_class.Assign(GetClassRoot(kJavaLangStringArrayClass));
Ian Rogers7dfb28c2013-08-22 08:18:36 -07003710 } else if (strcmp(descriptor, "[C") == 0) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003711 new_class.Assign(GetClassRoot(kCharArrayClass));
Ian Rogers7dfb28c2013-08-22 08:18:36 -07003712 } else if (strcmp(descriptor, "[I") == 0) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003713 new_class.Assign(GetClassRoot(kIntArrayClass));
Mathieu Chartierc7853442015-03-27 14:35:38 -07003714 } else if (strcmp(descriptor, "[J") == 0) {
3715 new_class.Assign(GetClassRoot(kLongArrayClass));
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07003716 }
3717 }
Andreas Gampefa4333d2017-02-14 11:10:34 -08003718 if (new_class == nullptr) {
Mathieu Chartiere401d142015-04-22 13:56:20 -07003719 new_class.Assign(AllocClass(self, mirror::Array::ClassSize(image_pointer_size_)));
Andreas Gampefa4333d2017-02-14 11:10:34 -08003720 if (new_class == nullptr) {
Mathieu Chartiere401d142015-04-22 13:56:20 -07003721 self->AssertPendingOOMException();
Mathieu Chartierc0a9ea42014-02-03 16:36:49 -08003722 return nullptr;
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07003723 }
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003724 new_class->SetComponentType(component_type.Get());
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07003725 }
Mathieu Chartierdb2633c2014-05-16 09:59:29 -07003726 ObjectLock<mirror::Class> lock(self, new_class); // Must hold lock on object when initializing.
Andreas Gampe2ed8def2014-08-28 14:41:02 -07003727 DCHECK(new_class->GetComponentType() != nullptr);
Mathieu Chartier28357fa2016-10-18 16:27:40 -07003728 ObjPtr<mirror::Class> java_lang_Object = GetClassRoot(kJavaLangObject);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003729 new_class->SetSuperClass(java_lang_Object);
3730 new_class->SetVTable(java_lang_Object->GetVTable());
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07003731 new_class->SetPrimitiveType(Primitive::kPrimNot);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003732 new_class->SetClassLoader(component_type->GetClassLoader());
Mathieu Chartier52a7f5c2015-08-18 18:35:52 -07003733 if (component_type->IsPrimitive()) {
3734 new_class->SetClassFlags(mirror::kClassFlagNoReferenceFields);
3735 } else {
3736 new_class->SetClassFlags(mirror::kClassFlagObjectArray);
3737 }
Hiroshi Yamauchi5b783e62015-03-18 17:20:11 -07003738 mirror::Class::SetStatus(new_class, mirror::Class::kStatusLoaded, self);
Artem Udovichenkoa62cb9b2016-06-30 09:18:25 +00003739 new_class->PopulateEmbeddedVTable(image_pointer_size_);
3740 ImTable* object_imt = java_lang_Object->GetImt(image_pointer_size_);
3741 new_class->SetImt(object_imt, image_pointer_size_);
Hiroshi Yamauchi5b783e62015-03-18 17:20:11 -07003742 mirror::Class::SetStatus(new_class, mirror::Class::kStatusInitialized, self);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07003743 // don't need to set new_class->SetObjectSize(..)
Brian Carlstrom9cff8e12011-08-18 16:47:29 -07003744 // because Object::SizeOf delegates to Array::SizeOf
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07003745
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07003746 // All arrays have java/lang/Cloneable and java/io/Serializable as
3747 // interfaces. We need to set that up here, so that stuff like
3748 // "instanceof" works right.
3749 //
3750 // Note: The GC could run during the call to FindSystemClass,
3751 // so we need to make sure the class object is GC-valid while we're in
3752 // there. Do this by clearing the interface list so the GC will just
3753 // think that the entries are null.
3754
3755
3756 // Use the single, global copies of "interfaces" and "iftable"
3757 // (remember not to free them for arrays).
Hiroshi Yamauchie9e3e692014-06-24 14:31:37 -07003758 {
Mathieu Chartier28357fa2016-10-18 16:27:40 -07003759 ObjPtr<mirror::IfTable> array_iftable = array_iftable_.Read();
Hiroshi Yamauchie9e3e692014-06-24 14:31:37 -07003760 CHECK(array_iftable != nullptr);
3761 new_class->SetIfTable(array_iftable);
3762 }
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07003763
Elliott Hughes00626c22013-06-14 15:04:14 -07003764 // Inherit access flags from the component type.
3765 int access_flags = new_class->GetComponentType()->GetAccessFlags();
3766 // Lose any implementation detail flags; in particular, arrays aren't finalizable.
3767 access_flags &= kAccJavaFlagsMask;
3768 // Arrays can't be used as a superclass or interface, so we want to add "abstract final"
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07003769 // and remove "interface".
Elliott Hughes00626c22013-06-14 15:04:14 -07003770 access_flags |= kAccAbstract | kAccFinal;
3771 access_flags &= ~kAccInterface;
3772
3773 new_class->SetAccessFlags(access_flags);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07003774
Mathieu Chartier28357fa2016-10-18 16:27:40 -07003775 ObjPtr<mirror::Class> existing = InsertClass(descriptor, new_class.Get(), hash);
Mathieu Chartierc0a9ea42014-02-03 16:36:49 -08003776 if (existing == nullptr) {
Andreas Gampe6cfd4c92017-04-06 08:03:32 -07003777 // We postpone ClassLoad and ClassPrepare events to this point in time to avoid
3778 // duplicate events in case of races. Array classes don't really follow dedicated
3779 // load and prepare, anyways.
3780 Runtime::Current()->GetRuntimeCallbacks()->ClassLoad(new_class);
3781 Runtime::Current()->GetRuntimeCallbacks()->ClassPrepare(new_class, new_class);
3782
Tamas Berghammer160e6df2016-01-05 14:29:02 +00003783 jit::Jit::NewTypeLoadedIfUsingJit(new_class.Get());
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003784 return new_class.Get();
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07003785 }
3786 // Another thread must have loaded the class after we
3787 // started but before we finished. Abandon what we've
3788 // done.
3789 //
3790 // (Yes, this happens.)
3791
Mathieu Chartier28357fa2016-10-18 16:27:40 -07003792 return existing.Ptr();
Brian Carlstroma331b3c2011-07-18 17:47:56 -07003793}
3794
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003795mirror::Class* ClassLinker::FindPrimitiveClass(char type) {
Ian Rogers62f05122014-03-21 11:21:29 -07003796 switch (type) {
3797 case 'B':
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07003798 return GetClassRoot(kPrimitiveByte);
Ian Rogers62f05122014-03-21 11:21:29 -07003799 case 'C':
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07003800 return GetClassRoot(kPrimitiveChar);
Ian Rogers62f05122014-03-21 11:21:29 -07003801 case 'D':
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07003802 return GetClassRoot(kPrimitiveDouble);
Ian Rogers62f05122014-03-21 11:21:29 -07003803 case 'F':
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07003804 return GetClassRoot(kPrimitiveFloat);
Ian Rogers62f05122014-03-21 11:21:29 -07003805 case 'I':
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07003806 return GetClassRoot(kPrimitiveInt);
Ian Rogers62f05122014-03-21 11:21:29 -07003807 case 'J':
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07003808 return GetClassRoot(kPrimitiveLong);
Ian Rogers62f05122014-03-21 11:21:29 -07003809 case 'S':
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07003810 return GetClassRoot(kPrimitiveShort);
Ian Rogers62f05122014-03-21 11:21:29 -07003811 case 'Z':
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07003812 return GetClassRoot(kPrimitiveBoolean);
Ian Rogers62f05122014-03-21 11:21:29 -07003813 case 'V':
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07003814 return GetClassRoot(kPrimitiveVoid);
Ian Rogers62f05122014-03-21 11:21:29 -07003815 default:
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07003816 break;
Carl Shapiro744ad052011-08-06 15:53:36 -07003817 }
Elliott Hughesbd935992011-08-22 11:59:34 -07003818 std::string printable_type(PrintableChar(type));
Elliott Hughes4a2b4172011-09-20 17:08:25 -07003819 ThrowNoClassDefFoundError("Not a primitive type: %s", printable_type.c_str());
Andreas Gampe2ed8def2014-08-28 14:41:02 -07003820 return nullptr;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003821}
3822
Mathieu Chartier28357fa2016-10-18 16:27:40 -07003823mirror::Class* ClassLinker::InsertClass(const char* descriptor, ObjPtr<mirror::Class> klass, size_t hash) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08003824 if (VLOG_IS_ON(class_linker)) {
Mathieu Chartier28357fa2016-10-18 16:27:40 -07003825 ObjPtr<mirror::DexCache> dex_cache = klass->GetDexCache();
Brian Carlstromae826982011-11-09 01:33:42 -08003826 std::string source;
Andreas Gampe2ed8def2014-08-28 14:41:02 -07003827 if (dex_cache != nullptr) {
Brian Carlstromae826982011-11-09 01:33:42 -08003828 source += " from ";
3829 source += dex_cache->GetLocation()->ToModifiedUtf8();
3830 }
3831 LOG(INFO) << "Loaded class " << descriptor << source;
3832 }
Mathieu Chartier65975772016-08-05 10:46:36 -07003833 {
3834 WriterMutexLock mu(Thread::Current(), *Locks::classlinker_classes_lock_);
Mathieu Chartier28357fa2016-10-18 16:27:40 -07003835 ObjPtr<mirror::ClassLoader> const class_loader = klass->GetClassLoader();
Mathieu Chartier65975772016-08-05 10:46:36 -07003836 ClassTable* const class_table = InsertClassTableForClassLoader(class_loader);
Mathieu Chartier28357fa2016-10-18 16:27:40 -07003837 ObjPtr<mirror::Class> existing = class_table->Lookup(descriptor, hash);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07003838 if (existing != nullptr) {
Mathieu Chartier28357fa2016-10-18 16:27:40 -07003839 return existing.Ptr();
Mathieu Chartier65975772016-08-05 10:46:36 -07003840 }
Mathieu Chartier65975772016-08-05 10:46:36 -07003841 VerifyObject(klass);
3842 class_table->InsertWithHash(klass, hash);
3843 if (class_loader != nullptr) {
3844 // This is necessary because we need to have the card dirtied for remembered sets.
3845 Runtime::Current()->GetHeap()->WriteBarrierEveryFieldOf(class_loader);
3846 }
Vladimir Marko1998cd02017-01-13 13:02:58 +00003847 if (log_new_roots_) {
Mathieu Chartier65975772016-08-05 10:46:36 -07003848 new_class_roots_.push_back(GcRoot<mirror::Class>(klass));
Ian Rogers7dfb28c2013-08-22 08:18:36 -07003849 }
3850 }
Mathieu Chartier65975772016-08-05 10:46:36 -07003851 if (kIsDebugBuild) {
3852 // Test that copied methods correctly can find their holder.
3853 for (ArtMethod& method : klass->GetCopiedMethods(image_pointer_size_)) {
3854 CHECK_EQ(GetHoldingClassOfCopiedMethod(&method), klass);
3855 }
Mathieu Chartier893263b2014-03-04 11:07:42 -08003856 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -07003857 return nullptr;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003858}
3859
Vladimir Marko1998cd02017-01-13 13:02:58 +00003860void ClassLinker::WriteBarrierForBootOatFileBssRoots(const OatFile* oat_file) {
Mathieu Chartiera1467d02017-02-22 09:22:50 -08003861 WriterMutexLock mu(Thread::Current(), *Locks::classlinker_classes_lock_);
3862 DCHECK(!oat_file->GetBssGcRoots().empty()) << oat_file->GetLocation();
3863 if (log_new_roots_ && !ContainsElement(new_bss_roots_boot_oat_files_, oat_file)) {
3864 new_bss_roots_boot_oat_files_.push_back(oat_file);
Vladimir Marko1998cd02017-01-13 13:02:58 +00003865 }
3866}
3867
Alex Lighte64300b2015-12-15 15:02:47 -08003868// TODO This should really be in mirror::Class.
Mathieu Chartier28357fa2016-10-18 16:27:40 -07003869void ClassLinker::UpdateClassMethods(ObjPtr<mirror::Class> klass,
Alex Lighte64300b2015-12-15 15:02:47 -08003870 LengthPrefixedArray<ArtMethod>* new_methods) {
3871 klass->SetMethodsPtrUnchecked(new_methods,
3872 klass->NumDirectMethods(),
3873 klass->NumDeclaredVirtualMethods());
Mathieu Chartier54d220e2015-07-30 16:20:06 -07003874 // Need to mark the card so that the remembered sets and mod union tables get updated.
Mathieu Chartiereb837eb2015-07-29 17:25:41 -07003875 Runtime::Current()->GetHeap()->WriteBarrierEveryFieldOf(klass);
Mathieu Chartiere401d142015-04-22 13:56:20 -07003876}
3877
Mathieu Chartierc77f3ab2015-09-03 19:41:50 -07003878mirror::Class* ClassLinker::LookupClass(Thread* self,
Andreas Gampe2ff3b972017-06-05 18:14:53 -07003879 const char* descriptor,
3880 ObjPtr<mirror::ClassLoader> class_loader) {
3881 return LookupClass(self, descriptor, ComputeModifiedUtf8Hash(descriptor), class_loader);
3882}
3883
3884mirror::Class* ClassLinker::LookupClass(Thread* self,
Mathieu Chartierc77f3ab2015-09-03 19:41:50 -07003885 const char* descriptor,
3886 size_t hash,
Mathieu Chartier28357fa2016-10-18 16:27:40 -07003887 ObjPtr<mirror::ClassLoader> class_loader) {
Vladimir Marko1a1de672016-10-13 12:53:15 +01003888 ReaderMutexLock mu(self, *Locks::classlinker_classes_lock_);
3889 ClassTable* const class_table = ClassTableForClassLoader(class_loader);
3890 if (class_table != nullptr) {
Mathieu Chartier28357fa2016-10-18 16:27:40 -07003891 ObjPtr<mirror::Class> result = class_table->Lookup(descriptor, hash);
Vladimir Marko1a1de672016-10-13 12:53:15 +01003892 if (result != nullptr) {
Mathieu Chartier28357fa2016-10-18 16:27:40 -07003893 return result.Ptr();
Ian Rogers7dfb28c2013-08-22 08:18:36 -07003894 }
Sameer Abu Asal2c6de222013-05-02 17:38:59 -07003895 }
Vladimir Marko1a1de672016-10-13 12:53:15 +01003896 return nullptr;
Ian Rogers7dfb28c2013-08-22 08:18:36 -07003897}
3898
Mathieu Chartier9b1c71e2015-09-02 18:51:54 -07003899class MoveClassTableToPreZygoteVisitor : public ClassLoaderVisitor {
3900 public:
3901 explicit MoveClassTableToPreZygoteVisitor() {}
3902
Mathieu Chartier28357fa2016-10-18 16:27:40 -07003903 void Visit(ObjPtr<mirror::ClassLoader> class_loader)
Mathieu Chartier9b1c71e2015-09-02 18:51:54 -07003904 REQUIRES(Locks::classlinker_classes_lock_)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07003905 REQUIRES_SHARED(Locks::mutator_lock_) OVERRIDE {
Mathieu Chartier9b1c71e2015-09-02 18:51:54 -07003906 ClassTable* const class_table = class_loader->GetClassTable();
Mathieu Chartier6b069532015-08-05 15:08:12 -07003907 if (class_table != nullptr) {
3908 class_table->FreezeSnapshot();
3909 }
Mathieu Chartiercc5ebdf2015-07-27 11:19:43 -07003910 }
Mathieu Chartier9b1c71e2015-09-02 18:51:54 -07003911};
3912
3913void ClassLinker::MoveClassTableToPreZygote() {
3914 WriterMutexLock mu(Thread::Current(), *Locks::classlinker_classes_lock_);
Andreas Gampe2af99022017-04-25 08:32:59 -07003915 boot_class_table_->FreezeSnapshot();
Mathieu Chartier9b1c71e2015-09-02 18:51:54 -07003916 MoveClassTableToPreZygoteVisitor visitor;
Mathieu Chartier951ec2c2015-09-22 08:50:05 -07003917 VisitClassLoaders(&visitor);
Mathieu Chartierc2e20622014-11-03 11:41:47 -08003918}
3919
Mathieu Chartier9b1c71e2015-09-02 18:51:54 -07003920// Look up classes by hash and descriptor and put all matching ones in the result array.
3921class LookupClassesVisitor : public ClassLoaderVisitor {
3922 public:
Mathieu Chartier28357fa2016-10-18 16:27:40 -07003923 LookupClassesVisitor(const char* descriptor,
3924 size_t hash,
3925 std::vector<ObjPtr<mirror::Class>>* result)
Mathieu Chartier9b1c71e2015-09-02 18:51:54 -07003926 : descriptor_(descriptor),
3927 hash_(hash),
3928 result_(result) {}
3929
Mathieu Chartier28357fa2016-10-18 16:27:40 -07003930 void Visit(ObjPtr<mirror::ClassLoader> class_loader)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07003931 REQUIRES_SHARED(Locks::classlinker_classes_lock_, Locks::mutator_lock_) OVERRIDE {
Mathieu Chartier9b1c71e2015-09-02 18:51:54 -07003932 ClassTable* const class_table = class_loader->GetClassTable();
Mathieu Chartier28357fa2016-10-18 16:27:40 -07003933 ObjPtr<mirror::Class> klass = class_table->Lookup(descriptor_, hash_);
Vladimir Markoc5798bf2016-12-09 10:20:54 +00003934 // Add `klass` only if `class_loader` is its defining (not just initiating) class loader.
3935 if (klass != nullptr && klass->GetClassLoader() == class_loader) {
Mathieu Chartier9b1c71e2015-09-02 18:51:54 -07003936 result_->push_back(klass);
3937 }
3938 }
3939
3940 private:
3941 const char* const descriptor_;
3942 const size_t hash_;
Mathieu Chartier28357fa2016-10-18 16:27:40 -07003943 std::vector<ObjPtr<mirror::Class>>* const result_;
Mathieu Chartier9b1c71e2015-09-02 18:51:54 -07003944};
3945
Mathieu Chartier28357fa2016-10-18 16:27:40 -07003946void ClassLinker::LookupClasses(const char* descriptor,
3947 std::vector<ObjPtr<mirror::Class>>& result) {
Ian Rogers7dfb28c2013-08-22 08:18:36 -07003948 result.clear();
Mathieu Chartier9b1c71e2015-09-02 18:51:54 -07003949 Thread* const self = Thread::Current();
3950 ReaderMutexLock mu(self, *Locks::classlinker_classes_lock_);
Mathieu Chartier6b069532015-08-05 15:08:12 -07003951 const size_t hash = ComputeModifiedUtf8Hash(descriptor);
Andreas Gampe2af99022017-04-25 08:32:59 -07003952 ObjPtr<mirror::Class> klass = boot_class_table_->Lookup(descriptor, hash);
Mathieu Chartier6b069532015-08-05 15:08:12 -07003953 if (klass != nullptr) {
Vladimir Markoc5798bf2016-12-09 10:20:54 +00003954 DCHECK(klass->GetClassLoader() == nullptr);
Mathieu Chartier6b069532015-08-05 15:08:12 -07003955 result.push_back(klass);
3956 }
Mathieu Chartier9b1c71e2015-09-02 18:51:54 -07003957 LookupClassesVisitor visitor(descriptor, hash, &result);
3958 VisitClassLoaders(&visitor);
Elliott Hughes6fa602d2011-12-02 17:54:25 -08003959}
3960
Alex Lightf1f10492015-10-07 16:08:36 -07003961bool ClassLinker::AttemptSupertypeVerification(Thread* self,
3962 Handle<mirror::Class> klass,
3963 Handle<mirror::Class> supertype) {
3964 DCHECK(self != nullptr);
Andreas Gampefa4333d2017-02-14 11:10:34 -08003965 DCHECK(klass != nullptr);
3966 DCHECK(supertype != nullptr);
Alex Lightf1f10492015-10-07 16:08:36 -07003967
Alex Lightf1f10492015-10-07 16:08:36 -07003968 if (!supertype->IsVerified() && !supertype->IsErroneous()) {
3969 VerifyClass(self, supertype);
3970 }
Nicolas Geoffray7cc3ae52017-03-07 14:33:37 +00003971
3972 if (supertype->IsVerified() || supertype->ShouldVerifyAtRuntime()) {
3973 // The supertype is either verified, or we soft failed at AOT time.
3974 DCHECK(supertype->IsVerified() || Runtime::Current()->IsAotCompiler());
Alex Lightf1f10492015-10-07 16:08:36 -07003975 return true;
3976 }
3977 // If we got this far then we have a hard failure.
3978 std::string error_msg =
3979 StringPrintf("Rejecting class %s that attempts to sub-type erroneous class %s",
David Sehr709b0702016-10-13 09:12:37 -07003980 klass->PrettyDescriptor().c_str(),
3981 supertype->PrettyDescriptor().c_str());
Alex Lightf1f10492015-10-07 16:08:36 -07003982 LOG(WARNING) << error_msg << " in " << klass->GetDexCache()->GetLocation()->ToModifiedUtf8();
Andreas Gampe884f3b82016-03-30 19:52:58 -07003983 StackHandleScope<1> hs(self);
Alex Lightf1f10492015-10-07 16:08:36 -07003984 Handle<mirror::Throwable> cause(hs.NewHandle(self->GetException()));
Andreas Gampefa4333d2017-02-14 11:10:34 -08003985 if (cause != nullptr) {
Alex Lightf1f10492015-10-07 16:08:36 -07003986 // Set during VerifyClass call (if at all).
3987 self->ClearException();
3988 }
3989 // Change into a verify error.
3990 ThrowVerifyError(klass.Get(), "%s", error_msg.c_str());
Andreas Gampefa4333d2017-02-14 11:10:34 -08003991 if (cause != nullptr) {
Alex Lightf1f10492015-10-07 16:08:36 -07003992 self->GetException()->SetCause(cause.Get());
3993 }
3994 ClassReference ref(klass->GetDexCache()->GetDexFile(), klass->GetDexClassDefIndex());
3995 if (Runtime::Current()->IsAotCompiler()) {
3996 Runtime::Current()->GetCompilerCallbacks()->ClassRejected(ref);
3997 }
Andreas Gampe884f3b82016-03-30 19:52:58 -07003998 // Need to grab the lock to change status.
3999 ObjectLock<mirror::Class> super_lock(self, klass);
Vladimir Marko72ab6842017-01-20 19:32:50 +00004000 mirror::Class::SetStatus(klass, mirror::Class::kStatusErrorResolved, self);
Alex Lightf1f10492015-10-07 16:08:36 -07004001 return false;
4002}
4003
Andreas Gampecc1b5352016-12-01 16:58:38 -08004004// Ensures that methods have the kAccSkipAccessChecks bit set. We use the
4005// kAccVerificationAttempted bit on the class access flags to determine whether this has been done
4006// before.
4007static void EnsureSkipAccessChecksMethods(Handle<mirror::Class> klass, PointerSize pointer_size)
4008 REQUIRES_SHARED(Locks::mutator_lock_) {
4009 if (!klass->WasVerificationAttempted()) {
4010 klass->SetSkipAccessChecksFlagOnAllMethods(pointer_size);
4011 klass->SetVerificationAttempted();
4012 }
4013}
4014
Andreas Gampe6d7abbd2017-04-24 13:19:09 -07004015verifier::FailureKind ClassLinker::VerifyClass(
Nicolas Geoffray08025182016-10-25 17:20:18 +01004016 Thread* self, Handle<mirror::Class> klass, verifier::HardFailLogMode log_level) {
Andreas Gampe884f3b82016-03-30 19:52:58 -07004017 {
4018 // TODO: assert that the monitor on the Class is held
4019 ObjectLock<mirror::Class> lock(self, klass);
Elliott Hughesd9c67be2012-02-02 19:54:06 -08004020
Andreas Gampe884f3b82016-03-30 19:52:58 -07004021 // Is somebody verifying this now?
4022 mirror::Class::Status old_status = klass->GetStatus();
4023 while (old_status == mirror::Class::kStatusVerifying ||
4024 old_status == mirror::Class::kStatusVerifyingAtRuntime) {
4025 lock.WaitIgnoringInterrupts();
Mathieu Chartier5ef70202017-06-29 10:45:10 -07004026 // WaitIgnoringInterrupts can still receive an interrupt and return early, in this
4027 // case we may see the same status again. b/62912904. This is why the check is
4028 // greater or equal.
4029 CHECK(klass->IsErroneous() || (klass->GetStatus() >= old_status))
David Sehr709b0702016-10-13 09:12:37 -07004030 << "Class '" << klass->PrettyClass()
4031 << "' performed an illegal verification state transition from " << old_status
4032 << " to " << klass->GetStatus();
Andreas Gampe884f3b82016-03-30 19:52:58 -07004033 old_status = klass->GetStatus();
4034 }
jeffhao98eacac2011-09-14 16:11:53 -07004035
Andreas Gampe884f3b82016-03-30 19:52:58 -07004036 // The class might already be erroneous, for example at compile time if we attempted to verify
4037 // this class as a parent to another.
4038 if (klass->IsErroneous()) {
4039 ThrowEarlierClassFailure(klass.Get());
Andreas Gampe6d7abbd2017-04-24 13:19:09 -07004040 return verifier::FailureKind::kHardFailure;
Andreas Gampe884f3b82016-03-30 19:52:58 -07004041 }
Brian Carlstrom9b5ee882012-02-28 09:48:54 -08004042
Nicolas Geoffray7cc3ae52017-03-07 14:33:37 +00004043 // Don't attempt to re-verify if already verified.
Andreas Gampe884f3b82016-03-30 19:52:58 -07004044 if (klass->IsVerified()) {
Andreas Gampecc1b5352016-12-01 16:58:38 -08004045 EnsureSkipAccessChecksMethods(klass, image_pointer_size_);
Andreas Gampe6d7abbd2017-04-24 13:19:09 -07004046 return verifier::FailureKind::kNoFailure;
Andreas Gampe884f3b82016-03-30 19:52:58 -07004047 }
Nicolas Geoffray7cc3ae52017-03-07 14:33:37 +00004048
4049 // For AOT, don't attempt to re-verify if we have already found we should
4050 // verify at runtime.
4051 if (Runtime::Current()->IsAotCompiler() && klass->ShouldVerifyAtRuntime()) {
Andreas Gampe6d7abbd2017-04-24 13:19:09 -07004052 return verifier::FailureKind::kSoftFailure;
Andreas Gampe884f3b82016-03-30 19:52:58 -07004053 }
jeffhao98eacac2011-09-14 16:11:53 -07004054
Andreas Gampe884f3b82016-03-30 19:52:58 -07004055 if (klass->GetStatus() == mirror::Class::kStatusResolved) {
4056 mirror::Class::SetStatus(klass, mirror::Class::kStatusVerifying, self);
4057 } else {
4058 CHECK_EQ(klass->GetStatus(), mirror::Class::kStatusRetryVerificationAtRuntime)
David Sehr709b0702016-10-13 09:12:37 -07004059 << klass->PrettyClass();
Andreas Gampe884f3b82016-03-30 19:52:58 -07004060 CHECK(!Runtime::Current()->IsAotCompiler());
4061 mirror::Class::SetStatus(klass, mirror::Class::kStatusVerifyingAtRuntime, self);
4062 }
4063
4064 // Skip verification if disabled.
4065 if (!Runtime::Current()->IsVerificationEnabled()) {
4066 mirror::Class::SetStatus(klass, mirror::Class::kStatusVerified, self);
Andreas Gampecc1b5352016-12-01 16:58:38 -08004067 EnsureSkipAccessChecksMethods(klass, image_pointer_size_);
Andreas Gampe6d7abbd2017-04-24 13:19:09 -07004068 return verifier::FailureKind::kNoFailure;
Andreas Gampe884f3b82016-03-30 19:52:58 -07004069 }
Jeff Hao4a200f52014-04-01 14:58:49 -07004070 }
4071
Bharadwaj Kalandhabhatta271c1e12017-06-27 11:14:49 -07004072 VLOG(class_linker) << "Beginning verification for class: "
4073 << klass->PrettyDescriptor()
4074 << " in " << klass->GetDexCache()->GetLocation()->ToModifiedUtf8();
4075
Ian Rogers9ffb0392012-09-10 11:56:50 -07004076 // Verify super class.
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07004077 StackHandleScope<2> hs(self);
Alex Lightf1f10492015-10-07 16:08:36 -07004078 MutableHandle<mirror::Class> supertype(hs.NewHandle(klass->GetSuperClass()));
4079 // If we have a superclass and we get a hard verification failure we can return immediately.
Andreas Gampefa4333d2017-02-14 11:10:34 -08004080 if (supertype != nullptr && !AttemptSupertypeVerification(self, klass, supertype)) {
Alex Lightf1f10492015-10-07 16:08:36 -07004081 CHECK(self->IsExceptionPending()) << "Verification error should be pending.";
Andreas Gampe6d7abbd2017-04-24 13:19:09 -07004082 return verifier::FailureKind::kHardFailure;
Alex Lightf1f10492015-10-07 16:08:36 -07004083 }
Ian Rogers1c5eb702012-02-01 09:18:34 -08004084
Alex Lightf1f10492015-10-07 16:08:36 -07004085 // Verify all default super-interfaces.
4086 //
4087 // (1) Don't bother if the superclass has already had a soft verification failure.
4088 //
4089 // (2) Interfaces shouldn't bother to do this recursive verification because they cannot cause
4090 // recursive initialization by themselves. This is because when an interface is initialized
4091 // directly it must not initialize its superinterfaces. We are allowed to verify regardless
4092 // but choose not to for an optimization. If the interfaces is being verified due to a class
4093 // initialization (which would need all the default interfaces to be verified) the class code
4094 // will trigger the recursive verification anyway.
Andreas Gampefa4333d2017-02-14 11:10:34 -08004095 if ((supertype == nullptr || supertype->IsVerified()) // See (1)
Alex Lightf1f10492015-10-07 16:08:36 -07004096 && !klass->IsInterface()) { // See (2)
4097 int32_t iftable_count = klass->GetIfTableCount();
4098 MutableHandle<mirror::Class> iface(hs.NewHandle<mirror::Class>(nullptr));
4099 // Loop through all interfaces this class has defined. It doesn't matter the order.
4100 for (int32_t i = 0; i < iftable_count; i++) {
4101 iface.Assign(klass->GetIfTable()->GetInterface(i));
Andreas Gampefa4333d2017-02-14 11:10:34 -08004102 DCHECK(iface != nullptr);
Alex Lightf1f10492015-10-07 16:08:36 -07004103 // We only care if we have default interfaces and can skip if we are already verified...
4104 if (LIKELY(!iface->HasDefaultMethods() || iface->IsVerified())) {
4105 continue;
4106 } else if (UNLIKELY(!AttemptSupertypeVerification(self, klass, iface))) {
4107 // We had a hard failure while verifying this interface. Just return immediately.
4108 CHECK(self->IsExceptionPending()) << "Verification error should be pending.";
Andreas Gampe6d7abbd2017-04-24 13:19:09 -07004109 return verifier::FailureKind::kHardFailure;
Alex Lightf1f10492015-10-07 16:08:36 -07004110 } else if (UNLIKELY(!iface->IsVerified())) {
4111 // We softly failed to verify the iface. Stop checking and clean up.
4112 // Put the iface into the supertype handle so we know what caused us to fail.
4113 supertype.Assign(iface.Get());
4114 break;
Ian Rogers1c5eb702012-02-01 09:18:34 -08004115 }
Ian Rogers1c5eb702012-02-01 09:18:34 -08004116 }
4117 }
4118
Alex Lightf1f10492015-10-07 16:08:36 -07004119 // At this point if verification failed, then supertype is the "first" supertype that failed
4120 // verification (without a specific order). If verification succeeded, then supertype is either
4121 // null or the original superclass of klass and is verified.
Andreas Gampefa4333d2017-02-14 11:10:34 -08004122 DCHECK(supertype == nullptr ||
Alex Lightf1f10492015-10-07 16:08:36 -07004123 supertype.Get() == klass->GetSuperClass() ||
4124 !supertype->IsVerified());
4125
Elliott Hughes634eb2e2012-03-22 16:06:28 -07004126 // Try to use verification information from the oat file, otherwise do runtime verification.
Ian Rogers4445a7e2012-10-05 17:19:13 -07004127 const DexFile& dex_file = *klass->GetDexCache()->GetDexFile();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08004128 mirror::Class::Status oat_file_class_status(mirror::Class::kStatusNotReady);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07004129 bool preverified = VerifyClassUsingOatFile(dex_file, klass.Get(), oat_file_class_status);
Bharadwaj Kalandhabhatta271c1e12017-06-27 11:14:49 -07004130
4131 VLOG(class_linker) << "Class preverified status for class "
4132 << klass->PrettyDescriptor()
4133 << " in " << klass->GetDexCache()->GetLocation()->ToModifiedUtf8()
4134 << ": "
4135 << preverified;
4136
Andreas Gampeec6e6c12015-11-05 20:39:56 -08004137 // If the oat file says the class had an error, re-run the verifier. That way we will get a
4138 // precise error message. To ensure a rerun, test:
Vladimir Marko72ab6842017-01-20 19:32:50 +00004139 // mirror::Class::IsErroneous(oat_file_class_status) => !preverified
4140 DCHECK(!mirror::Class::IsErroneous(oat_file_class_status) || !preverified);
Andreas Gampeec6e6c12015-11-05 20:39:56 -08004141
Ian Rogers62d6c772013-02-27 08:32:07 -08004142 std::string error_msg;
Andreas Gampe6d7abbd2017-04-24 13:19:09 -07004143 verifier::FailureKind verifier_failure = verifier::FailureKind::kNoFailure;
jeffhaof1e6b7c2012-06-05 18:33:30 -07004144 if (!preverified) {
Mathieu Chartier9e050df2017-08-09 10:05:47 -07004145 verifier_failure = PerformClassVerification(self, klass, log_level, &error_msg);
jeffhaof1e6b7c2012-06-05 18:33:30 -07004146 }
Andreas Gampe884f3b82016-03-30 19:52:58 -07004147
4148 // Verification is done, grab the lock again.
4149 ObjectLock<mirror::Class> lock(self, klass);
4150
Andreas Gampe6d7abbd2017-04-24 13:19:09 -07004151 if (preverified || verifier_failure != verifier::FailureKind::kHardFailure) {
4152 if (!preverified && verifier_failure != verifier::FailureKind::kNoFailure) {
David Sehr709b0702016-10-13 09:12:37 -07004153 VLOG(class_linker) << "Soft verification failure in class "
4154 << klass->PrettyDescriptor()
4155 << " in " << klass->GetDexCache()->GetLocation()->ToModifiedUtf8()
4156 << " because: " << error_msg;
Ian Rogers529781d2012-07-23 17:24:29 -07004157 }
Ian Rogers1f539342012-10-03 21:09:42 -07004158 self->AssertNoPendingException();
jeffhaoe4f0b2a2012-08-30 11:18:57 -07004159 // Make sure all classes referenced by catch blocks are resolved.
Alex Light5a559862016-01-29 12:24:48 -08004160 ResolveClassExceptionHandlerTypes(klass);
Andreas Gampe6d7abbd2017-04-24 13:19:09 -07004161 if (verifier_failure == verifier::FailureKind::kNoFailure) {
Alex Lightf1f10492015-10-07 16:08:36 -07004162 // Even though there were no verifier failures we need to respect whether the super-class and
4163 // super-default-interfaces were verified or requiring runtime reverification.
Andreas Gampefa4333d2017-02-14 11:10:34 -08004164 if (supertype == nullptr || supertype->IsVerified()) {
Hiroshi Yamauchi5b783e62015-03-18 17:20:11 -07004165 mirror::Class::SetStatus(klass, mirror::Class::kStatusVerified, self);
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07004166 } else {
Alex Lightf1f10492015-10-07 16:08:36 -07004167 CHECK_EQ(supertype->GetStatus(), mirror::Class::kStatusRetryVerificationAtRuntime);
Hiroshi Yamauchi5b783e62015-03-18 17:20:11 -07004168 mirror::Class::SetStatus(klass, mirror::Class::kStatusRetryVerificationAtRuntime, self);
Alex Lightf1f10492015-10-07 16:08:36 -07004169 // Pretend a soft failure occurred so that we don't consider the class verified below.
Andreas Gampe6d7abbd2017-04-24 13:19:09 -07004170 verifier_failure = verifier::FailureKind::kSoftFailure;
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07004171 }
jeffhaoe4f0b2a2012-08-30 11:18:57 -07004172 } else {
Andreas Gampe6d7abbd2017-04-24 13:19:09 -07004173 CHECK_EQ(verifier_failure, verifier::FailureKind::kSoftFailure);
jeffhaoe4f0b2a2012-08-30 11:18:57 -07004174 // Soft failures at compile time should be retried at runtime. Soft
4175 // failures at runtime will be handled by slow paths in the generated
4176 // code. Set status accordingly.
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08004177 if (Runtime::Current()->IsAotCompiler()) {
Hiroshi Yamauchi5b783e62015-03-18 17:20:11 -07004178 mirror::Class::SetStatus(klass, mirror::Class::kStatusRetryVerificationAtRuntime, self);
jeffhaoe4f0b2a2012-08-30 11:18:57 -07004179 } else {
Hiroshi Yamauchi5b783e62015-03-18 17:20:11 -07004180 mirror::Class::SetStatus(klass, mirror::Class::kStatusVerified, self);
Igor Murashkindf707e42016-02-02 16:56:50 -08004181 // As this is a fake verified status, make sure the methods are _not_ marked
4182 // kAccSkipAccessChecks later.
4183 klass->SetVerificationAttempted();
jeffhaoe4f0b2a2012-08-30 11:18:57 -07004184 }
4185 }
jeffhao5cfd6fb2011-09-27 13:54:29 -07004186 } else {
David Sehr709b0702016-10-13 09:12:37 -07004187 VLOG(verifier) << "Verification failed on class " << klass->PrettyDescriptor()
Andreas Gampeec6e6c12015-11-05 20:39:56 -08004188 << " in " << klass->GetDexCache()->GetLocation()->ToModifiedUtf8()
4189 << " because: " << error_msg;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004190 self->AssertNoPendingException();
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07004191 ThrowVerifyError(klass.Get(), "%s", error_msg.c_str());
Vladimir Marko72ab6842017-01-20 19:32:50 +00004192 mirror::Class::SetStatus(klass, mirror::Class::kStatusErrorResolved, self);
jeffhao5cfd6fb2011-09-27 13:54:29 -07004193 }
Andreas Gampe6d7abbd2017-04-24 13:19:09 -07004194 if (preverified || verifier_failure == verifier::FailureKind::kNoFailure) {
Brian Carlstrom6d3f72c2013-08-21 18:06:34 -07004195 // Class is verified so we don't need to do any access check on its methods.
Igor Murashkindf707e42016-02-02 16:56:50 -08004196 // Let the interpreter know it by setting the kAccSkipAccessChecks flag onto each
Sebastien Hertz233ea8e2013-06-06 11:57:09 +02004197 // method.
4198 // Note: we're going here during compilation and at runtime. When we set the
Igor Murashkindf707e42016-02-02 16:56:50 -08004199 // kAccSkipAccessChecks flag when compiling image classes, the flag is recorded
Sebastien Hertz233ea8e2013-06-06 11:57:09 +02004200 // in the image and is set when loading the image.
Igor Murashkindf707e42016-02-02 16:56:50 -08004201
4202 if (UNLIKELY(Runtime::Current()->IsVerificationSoftFail())) {
4203 // Never skip access checks if the verification soft fail is forced.
4204 // Mark the class as having a verification attempt to avoid re-running the verifier.
4205 klass->SetVerificationAttempted();
4206 } else {
Andreas Gampecc1b5352016-12-01 16:58:38 -08004207 EnsureSkipAccessChecksMethods(klass, image_pointer_size_);
Igor Murashkindf707e42016-02-02 16:56:50 -08004208 }
Andreas Gampe48498592014-09-10 19:48:05 -07004209 }
Nicolas Geoffray486dda02017-09-11 14:15:52 +01004210 // Done verifying. Notify the compiler about the verification status, in case the class
4211 // was verified implicitly (eg super class of a compiled class).
4212 if (Runtime::Current()->IsAotCompiler()) {
4213 Runtime::Current()->GetCompilerCallbacks()->UpdateClassState(
4214 ClassReference(&klass->GetDexFile(), klass->GetDexClassDefIndex()), klass->GetStatus());
4215 }
Nicolas Geoffray08025182016-10-25 17:20:18 +01004216 return verifier_failure;
Andreas Gampe48498592014-09-10 19:48:05 -07004217}
4218
Mathieu Chartier9e050df2017-08-09 10:05:47 -07004219verifier::FailureKind ClassLinker::PerformClassVerification(Thread* self,
4220 Handle<mirror::Class> klass,
4221 verifier::HardFailLogMode log_level,
4222 std::string* error_msg) {
4223 Runtime* const runtime = Runtime::Current();
4224 return verifier::MethodVerifier::VerifyClass(self,
4225 klass.Get(),
4226 runtime->GetCompilerCallbacks(),
4227 runtime->IsAotCompiler(),
4228 log_level,
4229 error_msg);
4230}
4231
Mathieu Chartierc77f3ab2015-09-03 19:41:50 -07004232bool ClassLinker::VerifyClassUsingOatFile(const DexFile& dex_file,
Mathieu Chartier28357fa2016-10-18 16:27:40 -07004233 ObjPtr<mirror::Class> klass,
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08004234 mirror::Class::Status& oat_file_class_status) {
Anwar Ghuloum044d2832013-07-17 15:22:31 -07004235 // If we're compiling, we can only verify the class using the oat file if
4236 // we are not compiling the image or if the class we're verifying is not part of
4237 // the app. In other words, we will only check for preverification of bootclasspath
4238 // classes.
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08004239 if (Runtime::Current()->IsAotCompiler()) {
Anwar Ghuloum044d2832013-07-17 15:22:31 -07004240 // Are we compiling the bootclasspath?
Andreas Gampe81c6f8d2015-03-25 17:19:53 -07004241 if (Runtime::Current()->GetCompilerCallbacks()->IsBootImage()) {
Anwar Ghuloum044d2832013-07-17 15:22:31 -07004242 return false;
4243 }
4244 // We are compiling an app (not the image).
4245
4246 // Is this an app class? (I.e. not a bootclasspath class)
Andreas Gampe2ed8def2014-08-28 14:41:02 -07004247 if (klass->GetClassLoader() != nullptr) {
Anwar Ghuloum044d2832013-07-17 15:22:31 -07004248 return false;
4249 }
Brian Carlstrome7d856b2012-01-11 18:10:55 -08004250 }
Anwar Ghuloum044d2832013-07-17 15:22:31 -07004251
Richard Uhler07b3c232015-03-31 15:57:54 -07004252 const OatFile::OatDexFile* oat_dex_file = dex_file.GetOatDexFile();
Andreas Gampe2ed8def2014-08-28 14:41:02 -07004253 // In case we run without an image there won't be a backing oat file.
Mathieu Chartier1b868492016-11-16 16:22:37 -08004254 if (oat_dex_file == nullptr || oat_dex_file->GetOatFile() == nullptr) {
Anwar Ghuloumad256bb2013-07-18 14:58:55 -07004255 return false;
4256 }
4257
Ian Rogers8b2c0b92013-09-19 02:56:49 -07004258 uint16_t class_def_index = klass->GetDexClassDefIndex();
Vladimir Markod3c5beb2014-04-11 16:32:51 +01004259 oat_file_class_status = oat_dex_file->GetOatClass(class_def_index).GetStatus();
Jeff Hao0cb17282017-07-12 14:51:49 -07004260 if (oat_file_class_status >= mirror::Class::kStatusVerified) {
Mathieu Chartiera079e3a2016-03-16 19:08:31 -07004261 return true;
4262 }
4263 // If we only verified a subset of the classes at compile time, we can end up with classes that
4264 // were resolved by the verifier.
4265 if (oat_file_class_status == mirror::Class::kStatusResolved) {
4266 return false;
Brian Carlstrome7d856b2012-01-11 18:10:55 -08004267 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08004268 if (oat_file_class_status == mirror::Class::kStatusRetryVerificationAtRuntime) {
jeffhao1ac29442012-03-26 11:37:32 -07004269 // Compile time verification failed with a soft error. Compile time verification can fail
4270 // because we have incomplete type information. Consider the following:
Ian Rogersc4762272012-02-01 15:55:55 -08004271 // class ... {
4272 // Foo x;
4273 // .... () {
4274 // if (...) {
4275 // v1 gets assigned a type of resolved class Foo
4276 // } else {
4277 // v1 gets assigned a type of unresolved class Bar
4278 // }
4279 // iput x = v1
4280 // } }
4281 // when we merge v1 following the if-the-else it results in Conflict
4282 // (see verifier::RegType::Merge) as we can't know the type of Bar and we could possibly be
4283 // allowing an unsafe assignment to the field x in the iput (javac may have compiled this as
4284 // it knew Bar was a sub-class of Foo, but for us this may have been moved into a separate apk
4285 // at compile time).
4286 return false;
4287 }
Vladimir Marko72ab6842017-01-20 19:32:50 +00004288 if (mirror::Class::IsErroneous(oat_file_class_status)) {
jeffhao1ac29442012-03-26 11:37:32 -07004289 // Compile time verification failed with a hard error. This is caused by invalid instructions
4290 // in the class. These errors are unrecoverable.
4291 return false;
4292 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08004293 if (oat_file_class_status == mirror::Class::kStatusNotReady) {
Ian Rogersc4762272012-02-01 15:55:55 -08004294 // Status is uninitialized if we couldn't determine the status at compile time, for example,
4295 // not loading the class.
4296 // TODO: when the verifier doesn't rely on Class-es failing to resolve/load the type hierarchy
4297 // isn't a problem and this case shouldn't occur
Brian Carlstrome7d856b2012-01-11 18:10:55 -08004298 return false;
4299 }
Ian Rogers1ff3c982014-08-12 02:30:58 -07004300 std::string temp;
Elliott Hughes634eb2e2012-03-22 16:06:28 -07004301 LOG(FATAL) << "Unexpected class status: " << oat_file_class_status
David Sehr709b0702016-10-13 09:12:37 -07004302 << " " << dex_file.GetLocation() << " " << klass->PrettyClass() << " "
Ian Rogers1ff3c982014-08-12 02:30:58 -07004303 << klass->GetDescriptor(&temp);
Ian Rogerse0a02da2014-12-02 14:10:53 -08004304 UNREACHABLE();
Brian Carlstrome7d856b2012-01-11 18:10:55 -08004305}
4306
Alex Light5a559862016-01-29 12:24:48 -08004307void ClassLinker::ResolveClassExceptionHandlerTypes(Handle<mirror::Class> klass) {
Alex Light51a64d52015-12-17 13:55:59 -08004308 for (ArtMethod& method : klass->GetMethods(image_pointer_size_)) {
Alex Light5a559862016-01-29 12:24:48 -08004309 ResolveMethodExceptionHandlerTypes(&method);
Brian Carlstrome7d856b2012-01-11 18:10:55 -08004310 }
4311}
4312
Alex Light5a559862016-01-29 12:24:48 -08004313void ClassLinker::ResolveMethodExceptionHandlerTypes(ArtMethod* method) {
Brian Carlstrome7d856b2012-01-11 18:10:55 -08004314 // similar to DexVerifier::ScanTryCatchBlocks and dex2oat's ResolveExceptionsForMethod.
Alex Light5a559862016-01-29 12:24:48 -08004315 const DexFile::CodeItem* code_item =
4316 method->GetDexFile()->GetCodeItem(method->GetCodeItemOffset());
Andreas Gampe2ed8def2014-08-28 14:41:02 -07004317 if (code_item == nullptr) {
Brian Carlstrome7d856b2012-01-11 18:10:55 -08004318 return; // native or abstract method
4319 }
4320 if (code_item->tries_size_ == 0) {
4321 return; // nothing to process
4322 }
Ian Rogers13735952014-10-08 12:43:28 -07004323 const uint8_t* handlers_ptr = DexFile::GetCatchHandlerData(*code_item, 0);
Brian Carlstrome7d856b2012-01-11 18:10:55 -08004324 uint32_t handlers_size = DecodeUnsignedLeb128(&handlers_ptr);
Brian Carlstrome7d856b2012-01-11 18:10:55 -08004325 for (uint32_t idx = 0; idx < handlers_size; idx++) {
4326 CatchHandlerIterator iterator(handlers_ptr);
4327 for (; iterator.HasNext(); iterator.Next()) {
4328 // Ensure exception types are resolved so that they don't need resolution to be delivered,
4329 // unresolved exception types will be ignored by exception delivery
Andreas Gampea5b09a62016-11-17 15:21:22 -08004330 if (iterator.GetHandlerTypeIndex().IsValid()) {
Mathieu Chartier28357fa2016-10-18 16:27:40 -07004331 ObjPtr<mirror::Class> exception_type = ResolveType(iterator.GetHandlerTypeIndex(), method);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07004332 if (exception_type == nullptr) {
Brian Carlstrome7d856b2012-01-11 18:10:55 -08004333 DCHECK(Thread::Current()->IsExceptionPending());
4334 Thread::Current()->ClearException();
4335 }
4336 }
4337 }
4338 handlers_ptr = iterator.EndDataPointer();
4339 }
4340}
4341
Mathieu Chartierc77f3ab2015-09-03 19:41:50 -07004342mirror::Class* ClassLinker::CreateProxyClass(ScopedObjectAccessAlreadyRunnable& soa,
4343 jstring name,
4344 jobjectArray interfaces,
4345 jobject loader,
4346 jobjectArray methods,
4347 jobjectArray throws) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07004348 Thread* self = soa.Self();
Hiroshi Yamauchi679b1cf2015-05-21 12:05:27 -07004349 StackHandleScope<10> hs(self);
Andreas Gampe6cfd4c92017-04-06 08:03:32 -07004350 MutableHandle<mirror::Class> temp_klass(hs.NewHandle(
Mingyao Yang98d1cc82014-05-15 17:02:16 -07004351 AllocClass(self, GetClassRoot(kJavaLangClass), sizeof(mirror::Class))));
Andreas Gampe6cfd4c92017-04-06 08:03:32 -07004352 if (temp_klass == nullptr) {
Ian Rogersa436fde2013-08-27 23:34:06 -07004353 CHECK(self->IsExceptionPending()); // OOME.
Andreas Gampe2ed8def2014-08-28 14:41:02 -07004354 return nullptr;
Ian Rogersa436fde2013-08-27 23:34:06 -07004355 }
Andreas Gampe6cfd4c92017-04-06 08:03:32 -07004356 DCHECK(temp_klass->GetClass() != nullptr);
4357 temp_klass->SetObjectSize(sizeof(mirror::Proxy));
Igor Murashkindf707e42016-02-02 16:56:50 -08004358 // Set the class access flags incl. VerificationAttempted, so we do not try to set the flag on
4359 // the methods.
Andreas Gampe6cfd4c92017-04-06 08:03:32 -07004360 temp_klass->SetAccessFlags(kAccClassIsProxy | kAccPublic | kAccFinal | kAccVerificationAttempted);
4361 temp_klass->SetClassLoader(soa.Decode<mirror::ClassLoader>(loader));
4362 DCHECK_EQ(temp_klass->GetPrimitiveType(), Primitive::kPrimNot);
4363 temp_klass->SetName(soa.Decode<mirror::String>(name));
4364 temp_klass->SetDexCache(GetClassRoot(kJavaLangReflectProxy)->GetDexCache());
Mathieu Chartier6beced42016-11-15 15:51:31 -08004365 // Object has an empty iftable, copy it for that reason.
Andreas Gampe6cfd4c92017-04-06 08:03:32 -07004366 temp_klass->SetIfTable(GetClassRoot(kJavaLangObject)->GetIfTable());
4367 mirror::Class::SetStatus(temp_klass, mirror::Class::kStatusIdx, self);
4368 std::string descriptor(GetDescriptorForProxy(temp_klass.Get()));
Mathieu Chartiercc5ebdf2015-07-27 11:19:43 -07004369 const size_t hash = ComputeModifiedUtf8Hash(descriptor.c_str());
Hiroshi Yamauchi679b1cf2015-05-21 12:05:27 -07004370
Mathieu Chartierd57d4542015-10-14 10:55:30 -07004371 // Needs to be before we insert the class so that the allocator field is set.
Andreas Gampe6cfd4c92017-04-06 08:03:32 -07004372 LinearAlloc* const allocator = GetOrCreateAllocatorForClassLoader(temp_klass->GetClassLoader());
Mathieu Chartierd57d4542015-10-14 10:55:30 -07004373
Hiroshi Yamauchi679b1cf2015-05-21 12:05:27 -07004374 // Insert the class before loading the fields as the field roots
4375 // (ArtField::declaring_class_) are only visited from the class
4376 // table. There can't be any suspend points between inserting the
4377 // class and setting the field arrays below.
Andreas Gampe6cfd4c92017-04-06 08:03:32 -07004378 ObjPtr<mirror::Class> existing = InsertClass(descriptor.c_str(), temp_klass.Get(), hash);
Hiroshi Yamauchi679b1cf2015-05-21 12:05:27 -07004379 CHECK(existing == nullptr);
Ian Rogersc2b44472011-12-14 21:17:17 -08004380
Elliott Hughes2ed52c42012-03-21 16:56:56 -07004381 // Instance fields are inherited, but we add a couple of static fields...
Mathieu Chartierc7853442015-03-27 14:35:38 -07004382 const size_t num_fields = 2;
Mathieu Chartier951ec2c2015-09-22 08:50:05 -07004383 LengthPrefixedArray<ArtField>* sfields = AllocArtFieldArray(self, allocator, num_fields);
Andreas Gampe6cfd4c92017-04-06 08:03:32 -07004384 temp_klass->SetSFieldsPtr(sfields);
Mathieu Chartierc7853442015-03-27 14:35:38 -07004385
Elliott Hughes2ed52c42012-03-21 16:56:56 -07004386 // 1. Create a static field 'interfaces' that holds the _declared_ interfaces implemented by
4387 // our proxy, so Class.getInterfaces doesn't return the flattened set.
Mathieu Chartier54d220e2015-07-30 16:20:06 -07004388 ArtField& interfaces_sfield = sfields->At(0);
4389 interfaces_sfield.SetDexFieldIndex(0);
Andreas Gampe6cfd4c92017-04-06 08:03:32 -07004390 interfaces_sfield.SetDeclaringClass(temp_klass.Get());
Mathieu Chartier54d220e2015-07-30 16:20:06 -07004391 interfaces_sfield.SetAccessFlags(kAccStatic | kAccPublic | kAccFinal);
Mathieu Chartierc7853442015-03-27 14:35:38 -07004392
Elliott Hughes2ed52c42012-03-21 16:56:56 -07004393 // 2. Create a static field 'throws' that holds exceptions thrown by our methods.
Mathieu Chartier54d220e2015-07-30 16:20:06 -07004394 ArtField& throws_sfield = sfields->At(1);
4395 throws_sfield.SetDexFieldIndex(1);
Andreas Gampe6cfd4c92017-04-06 08:03:32 -07004396 throws_sfield.SetDeclaringClass(temp_klass.Get());
Mathieu Chartier54d220e2015-07-30 16:20:06 -07004397 throws_sfield.SetAccessFlags(kAccStatic | kAccPublic | kAccFinal);
Jesse Wilson95caa792011-10-12 18:14:17 -04004398
Ian Rogers466bb252011-10-14 03:29:56 -07004399 // Proxies have 1 direct method, the constructor
Alex Lighte64300b2015-12-15 15:02:47 -08004400 const size_t num_direct_methods = 1;
Jesse Wilson95caa792011-10-12 18:14:17 -04004401
Alex Lighte64300b2015-12-15 15:02:47 -08004402 // They have as many virtual methods as the array
Mathieu Chartier0795f232016-09-27 18:43:30 -07004403 auto h_methods = hs.NewHandle(soa.Decode<mirror::ObjectArray<mirror::Method>>(methods));
Mathieu Chartierfc58af42015-04-16 18:00:39 -07004404 DCHECK_EQ(h_methods->GetClass(), mirror::Method::ArrayClass())
David Sehr709b0702016-10-13 09:12:37 -07004405 << mirror::Class::PrettyClass(h_methods->GetClass());
Mathieu Chartierfc58af42015-04-16 18:00:39 -07004406 const size_t num_virtual_methods = h_methods->GetLength();
Alex Lighte64300b2015-12-15 15:02:47 -08004407
4408 // Create the methods array.
4409 LengthPrefixedArray<ArtMethod>* proxy_class_methods = AllocArtMethodArray(
4410 self, allocator, num_direct_methods + num_virtual_methods);
Mathieu Chartiere401d142015-04-22 13:56:20 -07004411 // Currently AllocArtMethodArray cannot return null, but the OOM logic is left there in case we
4412 // want to throw OOM in the future.
Alex Lighte64300b2015-12-15 15:02:47 -08004413 if (UNLIKELY(proxy_class_methods == nullptr)) {
Mathieu Chartiere401d142015-04-22 13:56:20 -07004414 self->AssertPendingOOMException();
4415 return nullptr;
Ian Rogersa436fde2013-08-27 23:34:06 -07004416 }
Andreas Gampe6cfd4c92017-04-06 08:03:32 -07004417 temp_klass->SetMethodsPtr(proxy_class_methods, num_direct_methods, num_virtual_methods);
Alex Lighte64300b2015-12-15 15:02:47 -08004418
4419 // Create the single direct method.
Andreas Gampe6cfd4c92017-04-06 08:03:32 -07004420 CreateProxyConstructor(temp_klass, temp_klass->GetDirectMethodUnchecked(0, image_pointer_size_));
Alex Lighte64300b2015-12-15 15:02:47 -08004421
4422 // Create virtual method using specified prototypes.
4423 // TODO These should really use the iterators.
Jesse Wilson95caa792011-10-12 18:14:17 -04004424 for (size_t i = 0; i < num_virtual_methods; ++i) {
Andreas Gampe6cfd4c92017-04-06 08:03:32 -07004425 auto* virtual_method = temp_klass->GetVirtualMethodUnchecked(i, image_pointer_size_);
Mathieu Chartiere401d142015-04-22 13:56:20 -07004426 auto* prototype = h_methods->Get(i)->GetArtMethod();
Andreas Gampe6cfd4c92017-04-06 08:03:32 -07004427 CreateProxyMethod(temp_klass, prototype, virtual_method);
Mathieu Chartiere401d142015-04-22 13:56:20 -07004428 DCHECK(virtual_method->GetDeclaringClass() != nullptr);
4429 DCHECK(prototype->GetDeclaringClass() != nullptr);
Jesse Wilson95caa792011-10-12 18:14:17 -04004430 }
Ian Rogersc2b44472011-12-14 21:17:17 -08004431
Hiroshi Yamauchi679b1cf2015-05-21 12:05:27 -07004432 // The super class is java.lang.reflect.Proxy
Andreas Gampe6cfd4c92017-04-06 08:03:32 -07004433 temp_klass->SetSuperClass(GetClassRoot(kJavaLangReflectProxy));
Hiroshi Yamauchi679b1cf2015-05-21 12:05:27 -07004434 // Now effectively in the loaded state.
Andreas Gampe6cfd4c92017-04-06 08:03:32 -07004435 mirror::Class::SetStatus(temp_klass, mirror::Class::kStatusLoaded, self);
Ian Rogers62d6c772013-02-27 08:32:07 -08004436 self->AssertNoPendingException();
Ian Rogersc2b44472011-12-14 21:17:17 -08004437
Andreas Gampe6cfd4c92017-04-06 08:03:32 -07004438 // At this point the class is loaded. Publish a ClassLoad event.
4439 // Note: this may be a temporary class. It is a listener's responsibility to handle this.
4440 Runtime::Current()->GetRuntimeCallbacks()->ClassLoad(temp_klass);
4441
4442 MutableHandle<mirror::Class> klass = hs.NewHandle<mirror::Class>(nullptr);
Ian Rogersc8982582012-09-07 16:53:25 -07004443 {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07004444 // Must hold lock on object when resolved.
Andreas Gampe6cfd4c92017-04-06 08:03:32 -07004445 ObjectLock<mirror::Class> resolution_lock(self, temp_klass);
Hiroshi Yamauchi679b1cf2015-05-21 12:05:27 -07004446 // Link the fields and virtual methods, creating vtable and iftables.
4447 // The new class will replace the old one in the class table.
Mathieu Chartiere401d142015-04-22 13:56:20 -07004448 Handle<mirror::ObjectArray<mirror::Class>> h_interfaces(
Mathieu Chartier0795f232016-09-27 18:43:30 -07004449 hs.NewHandle(soa.Decode<mirror::ObjectArray<mirror::Class>>(interfaces)));
Andreas Gampe6cfd4c92017-04-06 08:03:32 -07004450 if (!LinkClass(self, descriptor.c_str(), temp_klass, h_interfaces, &klass)) {
4451 mirror::Class::SetStatus(temp_klass, mirror::Class::kStatusErrorUnresolved, self);
Mathieu Chartierc528dba2013-11-26 12:00:11 -08004452 return nullptr;
Ian Rogers7dfb28c2013-08-22 08:18:36 -07004453 }
Mingyao Yang98d1cc82014-05-15 17:02:16 -07004454 }
Andreas Gampe6cfd4c92017-04-06 08:03:32 -07004455 CHECK(temp_klass->IsRetired());
4456 CHECK_NE(temp_klass.Get(), klass.Get());
Mingyao Yang98d1cc82014-05-15 17:02:16 -07004457
Mathieu Chartier54d220e2015-07-30 16:20:06 -07004458 CHECK_EQ(interfaces_sfield.GetDeclaringClass(), klass.Get());
Mathieu Chartier0795f232016-09-27 18:43:30 -07004459 interfaces_sfield.SetObject<false>(
4460 klass.Get(),
Mathieu Chartierf8ac97f2016-10-05 15:56:52 -07004461 soa.Decode<mirror::ObjectArray<mirror::Class>>(interfaces));
Mathieu Chartier54d220e2015-07-30 16:20:06 -07004462 CHECK_EQ(throws_sfield.GetDeclaringClass(), klass.Get());
4463 throws_sfield.SetObject<false>(
Mathieu Chartier0795f232016-09-27 18:43:30 -07004464 klass.Get(),
Mathieu Chartierf8ac97f2016-10-05 15:56:52 -07004465 soa.Decode<mirror::ObjectArray<mirror::ObjectArray<mirror::Class>>>(throws));
Mingyao Yang98d1cc82014-05-15 17:02:16 -07004466
Andreas Gampe6cfd4c92017-04-06 08:03:32 -07004467 Runtime::Current()->GetRuntimeCallbacks()->ClassPrepare(temp_klass, klass);
4468
Mingyao Yang98d1cc82014-05-15 17:02:16 -07004469 {
4470 // Lock on klass is released. Lock new class object.
4471 ObjectLock<mirror::Class> initialization_lock(self, klass);
Hiroshi Yamauchi5b783e62015-03-18 17:20:11 -07004472 mirror::Class::SetStatus(klass, mirror::Class::kStatusInitialized, self);
Ian Rogersc8982582012-09-07 16:53:25 -07004473 }
Ian Rogersc2b44472011-12-14 21:17:17 -08004474
4475 // sanity checks
Elliott Hughes67d92002012-03-26 15:08:51 -07004476 if (kIsDebugBuild) {
Mathieu Chartier54d220e2015-07-30 16:20:06 -07004477 CHECK(klass->GetIFieldsPtr() == nullptr);
Mathieu Chartiere401d142015-04-22 13:56:20 -07004478 CheckProxyConstructor(klass->GetDirectMethod(0, image_pointer_size_));
4479
Ian Rogersc2b44472011-12-14 21:17:17 -08004480 for (size_t i = 0; i < num_virtual_methods; ++i) {
Mathieu Chartiere401d142015-04-22 13:56:20 -07004481 auto* virtual_method = klass->GetVirtualMethodUnchecked(i, image_pointer_size_);
4482 auto* prototype = h_methods->Get(i++)->GetArtMethod();
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004483 CheckProxyMethod(virtual_method, prototype);
Ian Rogersc2b44472011-12-14 21:17:17 -08004484 }
Elliott Hughes2ed52c42012-03-21 16:56:56 -07004485
Hiroshi Yamauchi679b1cf2015-05-21 12:05:27 -07004486 StackHandleScope<1> hs2(self);
Mathieu Chartier0795f232016-09-27 18:43:30 -07004487 Handle<mirror::String> decoded_name = hs2.NewHandle(soa.Decode<mirror::String>(name));
Elliott Hughes2ed52c42012-03-21 16:56:56 -07004488 std::string interfaces_field_name(StringPrintf("java.lang.Class[] %s.interfaces",
Mathieu Chartier590fee92013-09-13 13:46:47 -07004489 decoded_name->ToModifiedUtf8().c_str()));
David Sehr709b0702016-10-13 09:12:37 -07004490 CHECK_EQ(ArtField::PrettyField(klass->GetStaticField(0)), interfaces_field_name);
Elliott Hughes2ed52c42012-03-21 16:56:56 -07004491
4492 std::string throws_field_name(StringPrintf("java.lang.Class[][] %s.throws",
Mathieu Chartier590fee92013-09-13 13:46:47 -07004493 decoded_name->ToModifiedUtf8().c_str()));
David Sehr709b0702016-10-13 09:12:37 -07004494 CHECK_EQ(ArtField::PrettyField(klass->GetStaticField(1)), throws_field_name);
Ian Rogersc2b44472011-12-14 21:17:17 -08004495
Narayan Kamath6b2dc312017-03-14 13:26:12 +00004496 CHECK_EQ(klass.Get()->GetProxyInterfaces(),
Mathieu Chartierf8ac97f2016-10-05 15:56:52 -07004497 soa.Decode<mirror::ObjectArray<mirror::Class>>(interfaces));
Narayan Kamath6b2dc312017-03-14 13:26:12 +00004498 CHECK_EQ(klass.Get()->GetProxyThrows(),
Mathieu Chartierf8ac97f2016-10-05 15:56:52 -07004499 soa.Decode<mirror::ObjectArray<mirror::ObjectArray<mirror::Class>>>(throws));
Ian Rogersc2b44472011-12-14 21:17:17 -08004500 }
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07004501 return klass.Get();
Jesse Wilson95caa792011-10-12 18:14:17 -04004502}
4503
Mathieu Chartier28357fa2016-10-18 16:27:40 -07004504std::string ClassLinker::GetDescriptorForProxy(ObjPtr<mirror::Class> proxy_class) {
Nicolas Geoffraya7a47592015-11-24 09:17:30 +00004505 DCHECK(proxy_class->IsProxyClass());
Mathieu Chartier28357fa2016-10-18 16:27:40 -07004506 ObjPtr<mirror::String> name = proxy_class->GetName();
Andreas Gampe2ed8def2014-08-28 14:41:02 -07004507 DCHECK(name != nullptr);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08004508 return DotToDescriptor(name->ToModifiedUtf8().c_str());
4509}
4510
Mathieu Chartiere401d142015-04-22 13:56:20 -07004511void ClassLinker::CreateProxyConstructor(Handle<mirror::Class> klass, ArtMethod* out) {
4512 // Create constructor for Proxy that must initialize the method.
Przemyslaw Szczepaniakf11cd292016-08-17 17:46:38 +01004513 CHECK_EQ(GetClassRoot(kJavaLangReflectProxy)->NumDirectMethods(), 23u);
4514
Igor Murashkin9d3d7522017-02-27 10:39:49 -08004515 // Find the <init>(InvocationHandler)V method. The exact method offset varies depending
4516 // on which front-end compiler was used to build the libcore DEX files.
Vladimir Markoba118822017-06-12 15:41:56 +01004517 ArtMethod* proxy_constructor = GetClassRoot(kJavaLangReflectProxy)->FindConstructor(
4518 "(Ljava/lang/reflect/InvocationHandler;)V", image_pointer_size_);
Igor Murashkin9d3d7522017-02-27 10:39:49 -08004519 DCHECK(proxy_constructor != nullptr)
4520 << "Could not find <init> method in java.lang.reflect.Proxy";
4521
Jeff Haodb8a6642014-08-14 17:18:52 -07004522 // Clone the existing constructor of Proxy (our constructor would just invoke it so steal its
4523 // code_ too)
Mathieu Chartiere401d142015-04-22 13:56:20 -07004524 DCHECK(out != nullptr);
4525 out->CopyFrom(proxy_constructor, image_pointer_size_);
Vladimir Markoba118822017-06-12 15:41:56 +01004526 // Make this constructor public and fix the class to be our Proxy version.
Mathieu Chartier201e2972017-06-05 18:34:53 -07004527 // Mark kAccCompileDontBother so that we don't take JIT samples for the method. b/62349349
Vladimir Markoba118822017-06-12 15:41:56 +01004528 // Note that the compiler calls a ResolveMethod() overload that does not handle a Proxy referrer.
Mathieu Chartier201e2972017-06-05 18:34:53 -07004529 out->SetAccessFlags((out->GetAccessFlags() & ~kAccProtected) |
4530 kAccPublic |
4531 kAccCompileDontBother);
Mathieu Chartiere401d142015-04-22 13:56:20 -07004532 out->SetDeclaringClass(klass.Get());
Vladimir Markod1ee20f2017-08-17 09:21:16 +00004533
4534 // Set the original constructor method.
4535 out->SetDataPtrSize(proxy_constructor, image_pointer_size_);
Ian Rogersc2b44472011-12-14 21:17:17 -08004536}
4537
Mathieu Chartiere401d142015-04-22 13:56:20 -07004538void ClassLinker::CheckProxyConstructor(ArtMethod* constructor) const {
Ian Rogers466bb252011-10-14 03:29:56 -07004539 CHECK(constructor->IsConstructor());
Mathieu Chartiere401d142015-04-22 13:56:20 -07004540 auto* np = constructor->GetInterfaceMethodIfProxy(image_pointer_size_);
4541 CHECK_STREQ(np->GetName(), "<init>");
4542 CHECK_STREQ(np->GetSignature().ToString().c_str(), "(Ljava/lang/reflect/InvocationHandler;)V");
Ian Rogers466bb252011-10-14 03:29:56 -07004543 DCHECK(constructor->IsPublic());
Jesse Wilson95caa792011-10-12 18:14:17 -04004544}
4545
Igor Murashkinb1d8c312015-08-04 11:18:43 -07004546void ClassLinker::CreateProxyMethod(Handle<mirror::Class> klass, ArtMethod* prototype,
Mathieu Chartiere401d142015-04-22 13:56:20 -07004547 ArtMethod* out) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08004548 // We steal everything from the prototype (such as DexCache, invoke stub, etc.) then specialize
Ian Rogers466bb252011-10-14 03:29:56 -07004549 // as necessary
Mathieu Chartiere401d142015-04-22 13:56:20 -07004550 DCHECK(out != nullptr);
4551 out->CopyFrom(prototype, image_pointer_size_);
Ian Rogers466bb252011-10-14 03:29:56 -07004552
Alex Lighte9dd04f2016-03-16 16:09:45 -07004553 // Set class to be the concrete proxy class.
Mathieu Chartiere401d142015-04-22 13:56:20 -07004554 out->SetDeclaringClass(klass.Get());
Alex Lighte9dd04f2016-03-16 16:09:45 -07004555 // Clear the abstract, default and conflict flags to ensure that defaults aren't picked in
4556 // preference to the invocation handler.
4557 const uint32_t kRemoveFlags = kAccAbstract | kAccDefault | kAccDefaultConflict;
4558 // Make the method final.
Mathieu Chartier201e2972017-06-05 18:34:53 -07004559 // Mark kAccCompileDontBother so that we don't take JIT samples for the method. b/62349349
4560 const uint32_t kAddFlags = kAccFinal | kAccCompileDontBother;
Alex Lighte9dd04f2016-03-16 16:09:45 -07004561 out->SetAccessFlags((out->GetAccessFlags() & ~kRemoveFlags) | kAddFlags);
4562
4563 // Clear the dex_code_item_offset_. It needs to be 0 since proxy methods have no CodeItems but the
4564 // method they copy might (if it's a default method).
4565 out->SetCodeItemOffset(0);
Jesse Wilson95caa792011-10-12 18:14:17 -04004566
Vladimir Markod1ee20f2017-08-17 09:21:16 +00004567 // Set the original interface method.
4568 out->SetDataPtrSize(prototype, image_pointer_size_);
4569
Ian Rogers466bb252011-10-14 03:29:56 -07004570 // At runtime the method looks like a reference and argument saving method, clone the code
4571 // related parameters from this method.
Mathieu Chartiere401d142015-04-22 13:56:20 -07004572 out->SetEntryPointFromQuickCompiledCode(GetQuickProxyInvokeHandler());
Ian Rogersc2b44472011-12-14 21:17:17 -08004573}
Jesse Wilson95caa792011-10-12 18:14:17 -04004574
Mathieu Chartiere401d142015-04-22 13:56:20 -07004575void ClassLinker::CheckProxyMethod(ArtMethod* method, ArtMethod* prototype) const {
Ian Rogers466bb252011-10-14 03:29:56 -07004576 // Basic sanity
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08004577 CHECK(!prototype->IsFinal());
4578 CHECK(method->IsFinal());
Alex Light9139e002015-10-09 15:59:48 -07004579 CHECK(method->IsInvokable());
Ian Rogers19846512012-02-24 11:42:47 -08004580
4581 // The proxy method doesn't have its own dex cache or dex file and so it steals those of its
4582 // interface prototype. The exception to this are Constructors and the Class of the Proxy itself.
Ian Rogers19846512012-02-24 11:42:47 -08004583 CHECK_EQ(prototype->GetDexMethodIndex(), method->GetDexMethodIndex());
Vladimir Marko5c3e9d12017-08-30 16:43:54 +01004584 CHECK_EQ(prototype, method->GetInterfaceMethodIfProxy(image_pointer_size_));
Jesse Wilson95caa792011-10-12 18:14:17 -04004585}
4586
Mathieu Chartier28357fa2016-10-18 16:27:40 -07004587bool ClassLinker::CanWeInitializeClass(ObjPtr<mirror::Class> klass, bool can_init_statics,
Mathieu Chartiere401d142015-04-22 13:56:20 -07004588 bool can_init_parents) {
Brian Carlstrom610e49f2013-11-04 17:07:22 -08004589 if (can_init_statics && can_init_parents) {
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07004590 return true;
4591 }
4592 if (!can_init_statics) {
4593 // Check if there's a class initializer.
Mathieu Chartiere401d142015-04-22 13:56:20 -07004594 ArtMethod* clinit = klass->FindClassInitializer(image_pointer_size_);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07004595 if (clinit != nullptr) {
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07004596 return false;
4597 }
4598 // Check if there are encoded static values needing initialization.
4599 if (klass->NumStaticFields() != 0) {
Mathieu Chartierf8322842014-05-16 10:59:25 -07004600 const DexFile::ClassDef* dex_class_def = klass->GetClassDef();
Andreas Gampe2ed8def2014-08-28 14:41:02 -07004601 DCHECK(dex_class_def != nullptr);
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07004602 if (dex_class_def->static_values_off_ != 0) {
4603 return false;
4604 }
4605 }
Alex Lighteb7c1442015-08-31 13:17:42 -07004606 // If we are a class we need to initialize all interfaces with default methods when we are
4607 // initialized. Check all of them.
4608 if (!klass->IsInterface()) {
4609 size_t num_interfaces = klass->GetIfTableCount();
4610 for (size_t i = 0; i < num_interfaces; i++) {
Mathieu Chartier28357fa2016-10-18 16:27:40 -07004611 ObjPtr<mirror::Class> iface = klass->GetIfTable()->GetInterface(i);
Alex Lighteb7c1442015-08-31 13:17:42 -07004612 if (iface->HasDefaultMethods() &&
4613 !CanWeInitializeClass(iface, can_init_statics, can_init_parents)) {
4614 return false;
4615 }
4616 }
4617 }
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07004618 }
Mathieu Chartiere401d142015-04-22 13:56:20 -07004619 if (klass->IsInterface() || !klass->HasSuperClass()) {
4620 return true;
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07004621 }
Mathieu Chartier28357fa2016-10-18 16:27:40 -07004622 ObjPtr<mirror::Class> super_class = klass->GetSuperClass();
Mathieu Chartiere401d142015-04-22 13:56:20 -07004623 if (!can_init_parents && !super_class->IsInitialized()) {
4624 return false;
4625 }
4626 return CanWeInitializeClass(super_class, can_init_statics, can_init_parents);
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07004627}
4628
Igor Murashkinb1d8c312015-08-04 11:18:43 -07004629bool ClassLinker::InitializeClass(Thread* self, Handle<mirror::Class> klass,
4630 bool can_init_statics, bool can_init_parents) {
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07004631 // see JLS 3rd edition, 12.4.2 "Detailed Initialization Procedure" for the locking protocol
4632
4633 // Are we already initialized and therefore done?
4634 // Note: we differ from the JLS here as we don't do this under the lock, this is benign as
4635 // an initialized class will never change its state.
4636 if (klass->IsInitialized()) {
4637 return true;
4638 }
4639
4640 // Fast fail if initialization requires a full runtime. Not part of the JLS.
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07004641 if (!CanWeInitializeClass(klass.Get(), can_init_statics, can_init_parents)) {
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07004642 return false;
4643 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004644
Ian Rogers7b078e82014-09-10 14:44:24 -07004645 self->AllowThreadSuspension();
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07004646 uint64_t t0;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004647 {
Mathieu Chartierdb2633c2014-05-16 09:59:29 -07004648 ObjectLock<mirror::Class> lock(self, klass);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004649
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07004650 // Re-check under the lock in case another thread initialized ahead of us.
4651 if (klass->IsInitialized()) {
Brian Carlstromd1422f82011-09-28 11:37:09 -07004652 return true;
4653 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004654
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07004655 // Was the class already found to be erroneous? Done under the lock to match the JLS.
Brian Carlstromd1422f82011-09-28 11:37:09 -07004656 if (klass->IsErroneous()) {
Andreas Gampecb086952015-11-02 16:20:00 -08004657 ThrowEarlierClassFailure(klass.Get(), true);
Brian Carlstromb23eab12014-10-08 17:55:21 -07004658 VlogClassInitializationFailure(klass);
Brian Carlstromd1422f82011-09-28 11:37:09 -07004659 return false;
4660 }
4661
Vladimir Marko72ab6842017-01-20 19:32:50 +00004662 CHECK(klass->IsResolved() && !klass->IsErroneousResolved())
4663 << klass->PrettyClass() << ": state=" << klass->GetStatus();
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07004664
4665 if (!klass->IsVerified()) {
Ian Rogers7b078e82014-09-10 14:44:24 -07004666 VerifyClass(self, klass);
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07004667 if (!klass->IsVerified()) {
4668 // We failed to verify, expect either the klass to be erroneous or verification failed at
4669 // compile time.
4670 if (klass->IsErroneous()) {
Andreas Gampefc49fa02016-04-21 12:21:55 -07004671 // The class is erroneous. This may be a verifier error, or another thread attempted
4672 // verification and/or initialization and failed. We can distinguish those cases by
4673 // whether an exception is already pending.
4674 if (self->IsExceptionPending()) {
4675 // Check that it's a VerifyError.
4676 DCHECK_EQ("java.lang.Class<java.lang.VerifyError>",
David Sehr709b0702016-10-13 09:12:37 -07004677 mirror::Class::PrettyClass(self->GetException()->GetClass()));
Andreas Gampefc49fa02016-04-21 12:21:55 -07004678 } else {
4679 // Check that another thread attempted initialization.
4680 DCHECK_NE(0, klass->GetClinitThreadId());
4681 DCHECK_NE(self->GetTid(), klass->GetClinitThreadId());
4682 // Need to rethrow the previous failure now.
4683 ThrowEarlierClassFailure(klass.Get(), true);
4684 }
Brian Carlstromb23eab12014-10-08 17:55:21 -07004685 VlogClassInitializationFailure(klass);
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07004686 } else {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08004687 CHECK(Runtime::Current()->IsAotCompiler());
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07004688 CHECK_EQ(klass->GetStatus(), mirror::Class::kStatusRetryVerificationAtRuntime);
jeffhaoa9b3bf42012-06-06 17:18:39 -07004689 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004690 return false;
Mathieu Chartier524507a2014-08-27 15:28:28 -07004691 } else {
4692 self->AssertNoPendingException();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004693 }
Andreas Gampefc49fa02016-04-21 12:21:55 -07004694
4695 // A separate thread could have moved us all the way to initialized. A "simple" example
4696 // involves a subclass of the current class being initialized at the same time (which
4697 // will implicitly initialize the superclass, if scheduled that way). b/28254258
Vladimir Marko72ab6842017-01-20 19:32:50 +00004698 DCHECK(!klass->IsErroneous()) << klass->GetStatus();
Andreas Gampefc49fa02016-04-21 12:21:55 -07004699 if (klass->IsInitialized()) {
4700 return true;
4701 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004702 }
4703
Brian Carlstromd1422f82011-09-28 11:37:09 -07004704 // If the class is kStatusInitializing, either this thread is
4705 // initializing higher up the stack or another thread has beat us
4706 // to initializing and we need to wait. Either way, this
4707 // invocation of InitializeClass will not be responsible for
4708 // running <clinit> and will return.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08004709 if (klass->GetStatus() == mirror::Class::kStatusInitializing) {
Mathieu Chartier524507a2014-08-27 15:28:28 -07004710 // Could have got an exception during verification.
4711 if (self->IsExceptionPending()) {
Brian Carlstromb23eab12014-10-08 17:55:21 -07004712 VlogClassInitializationFailure(klass);
Mathieu Chartier524507a2014-08-27 15:28:28 -07004713 return false;
4714 }
Elliott Hughes005ab2e2011-09-11 17:15:31 -07004715 // We caught somebody else in the act; was it us?
Elliott Hughesdcc24742011-09-07 14:02:44 -07004716 if (klass->GetClinitThreadId() == self->GetTid()) {
Brian Carlstromd1422f82011-09-28 11:37:09 -07004717 // Yes. That's fine. Return so we can continue initializing.
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004718 return true;
4719 }
Brian Carlstromd1422f82011-09-28 11:37:09 -07004720 // No. That's fine. Wait for another thread to finish initializing.
Igor Murashkinb1d8c312015-08-04 11:18:43 -07004721 return WaitForInitializeClass(klass, self, lock);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004722 }
4723
Jeff Haoe2e40342017-07-19 10:45:18 -07004724 // Try to get the oat class's status for this class if the oat file is present. The compiler
4725 // tries to validate superclass descriptors, and writes the result into the oat file.
4726 // Runtime correctness is guaranteed by classpath checks done on loading. If the classpath
4727 // is different at runtime than it was at compile time, the oat file is rejected. So if the
4728 // oat file is present, the classpaths must match, and the runtime time check can be skipped.
Jeff Hao0cb17282017-07-12 14:51:49 -07004729 bool has_oat_class = false;
Jeff Haoe2e40342017-07-19 10:45:18 -07004730 const Runtime* runtime = Runtime::Current();
4731 const OatFile::OatClass oat_class = (runtime->IsStarted() && !runtime->IsAotCompiler())
4732 ? OatFile::FindOatClass(klass->GetDexFile(), klass->GetDexClassDefIndex(), &has_oat_class)
4733 : OatFile::OatClass::Invalid();
Jeff Hao0cb17282017-07-12 14:51:49 -07004734 if (oat_class.GetStatus() < mirror::Class::kStatusSuperclassValidated &&
4735 !ValidateSuperClassDescriptors(klass)) {
Vladimir Marko72ab6842017-01-20 19:32:50 +00004736 mirror::Class::SetStatus(klass, mirror::Class::kStatusErrorResolved, self);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004737 return false;
4738 }
Ian Rogers7b078e82014-09-10 14:44:24 -07004739 self->AllowThreadSuspension();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004740
David Sehr709b0702016-10-13 09:12:37 -07004741 CHECK_EQ(klass->GetStatus(), mirror::Class::kStatusVerified) << klass->PrettyClass()
Andreas Gampe9510ccd2016-04-20 09:55:25 -07004742 << " self.tid=" << self->GetTid() << " clinit.tid=" << klass->GetClinitThreadId();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004743
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07004744 // From here out other threads may observe that we're initializing and so changes of state
4745 // require the a notification.
Elliott Hughesdcc24742011-09-07 14:02:44 -07004746 klass->SetClinitThreadId(self->GetTid());
Hiroshi Yamauchi5b783e62015-03-18 17:20:11 -07004747 mirror::Class::SetStatus(klass, mirror::Class::kStatusInitializing, self);
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07004748
4749 t0 = NanoTime();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004750 }
4751
Brian Carlstrom6d3f72c2013-08-21 18:06:34 -07004752 // Initialize super classes, must be done while initializing for the JLS.
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07004753 if (!klass->IsInterface() && klass->HasSuperClass()) {
Mathieu Chartier28357fa2016-10-18 16:27:40 -07004754 ObjPtr<mirror::Class> super_class = klass->GetSuperClass();
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07004755 if (!super_class->IsInitialized()) {
4756 CHECK(!super_class->IsInterface());
4757 CHECK(can_init_parents);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07004758 StackHandleScope<1> hs(self);
4759 Handle<mirror::Class> handle_scope_super(hs.NewHandle(super_class));
Ian Rogers7b078e82014-09-10 14:44:24 -07004760 bool super_initialized = InitializeClass(self, handle_scope_super, can_init_statics, true);
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07004761 if (!super_initialized) {
4762 // The super class was verified ahead of entering initializing, we should only be here if
4763 // the super class became erroneous due to initialization.
Chang Xingadbb91c2017-07-17 11:23:55 -07004764 // For the case of aot compiler, the super class might also be initializing but we don't
4765 // want to process circular dependencies in pre-compile.
4766 CHECK(self->IsExceptionPending())
Brian Carlstromf3632832014-05-20 15:36:53 -07004767 << "Super class initialization failed for "
David Sehr709b0702016-10-13 09:12:37 -07004768 << handle_scope_super->PrettyDescriptor()
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07004769 << " that has unexpected status " << handle_scope_super->GetStatus()
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07004770 << "\nPending exception:\n"
Nicolas Geoffray14691c52015-03-05 10:40:17 +00004771 << (self->GetException() != nullptr ? self->GetException()->Dump() : "");
Mathieu Chartierdb2633c2014-05-16 09:59:29 -07004772 ObjectLock<mirror::Class> lock(self, klass);
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07004773 // Initialization failed because the super-class is erroneous.
Vladimir Marko72ab6842017-01-20 19:32:50 +00004774 mirror::Class::SetStatus(klass, mirror::Class::kStatusErrorResolved, self);
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07004775 return false;
4776 }
Ian Rogers1bddec32012-02-04 12:27:34 -08004777 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004778 }
4779
Alex Lighteb7c1442015-08-31 13:17:42 -07004780 if (!klass->IsInterface()) {
4781 // Initialize interfaces with default methods for the JLS.
4782 size_t num_direct_interfaces = klass->NumDirectInterfaces();
Alex Light56a40f52015-10-14 11:07:41 -07004783 // Only setup the (expensive) handle scope if we actually need to.
4784 if (UNLIKELY(num_direct_interfaces > 0)) {
Alex Lighteb7c1442015-08-31 13:17:42 -07004785 StackHandleScope<1> hs_iface(self);
Alex Light56a40f52015-10-14 11:07:41 -07004786 MutableHandle<mirror::Class> handle_scope_iface(hs_iface.NewHandle<mirror::Class>(nullptr));
4787 for (size_t i = 0; i < num_direct_interfaces; i++) {
Vladimir Marko19a4d372016-12-08 14:41:46 +00004788 handle_scope_iface.Assign(mirror::Class::GetDirectInterface(self, klass.Get(), i));
Vladimir Marko8d6768d2017-03-14 10:13:21 +00004789 CHECK(handle_scope_iface != nullptr) << klass->PrettyDescriptor() << " iface #" << i;
Alex Light56a40f52015-10-14 11:07:41 -07004790 CHECK(handle_scope_iface->IsInterface());
4791 if (handle_scope_iface->HasBeenRecursivelyInitialized()) {
4792 // We have already done this for this interface. Skip it.
4793 continue;
4794 }
4795 // We cannot just call initialize class directly because we need to ensure that ALL
4796 // interfaces with default methods are initialized. Non-default interface initialization
4797 // will not affect other non-default super-interfaces.
4798 bool iface_initialized = InitializeDefaultInterfaceRecursive(self,
4799 handle_scope_iface,
4800 can_init_statics,
4801 can_init_parents);
4802 if (!iface_initialized) {
4803 ObjectLock<mirror::Class> lock(self, klass);
4804 // Initialization failed because one of our interfaces with default methods is erroneous.
Vladimir Marko72ab6842017-01-20 19:32:50 +00004805 mirror::Class::SetStatus(klass, mirror::Class::kStatusErrorResolved, self);
Alex Light56a40f52015-10-14 11:07:41 -07004806 return false;
4807 }
Alex Lighteb7c1442015-08-31 13:17:42 -07004808 }
4809 }
4810 }
4811
Mathieu Chartier05d89ee2014-10-28 13:57:04 -07004812 const size_t num_static_fields = klass->NumStaticFields();
4813 if (num_static_fields > 0) {
Mathieu Chartierf8322842014-05-16 10:59:25 -07004814 const DexFile::ClassDef* dex_class_def = klass->GetClassDef();
Andreas Gampe2ed8def2014-08-28 14:41:02 -07004815 CHECK(dex_class_def != nullptr);
Mathieu Chartierf8322842014-05-16 10:59:25 -07004816 const DexFile& dex_file = klass->GetDexFile();
Hiroshi Yamauchi67ef46a2014-08-21 15:59:43 -07004817 StackHandleScope<3> hs(self);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07004818 Handle<mirror::ClassLoader> class_loader(hs.NewHandle(klass->GetClassLoader()));
Mathieu Chartierf8322842014-05-16 10:59:25 -07004819 Handle<mirror::DexCache> dex_cache(hs.NewHandle(klass->GetDexCache()));
Mathieu Chartier05d89ee2014-10-28 13:57:04 -07004820
4821 // Eagerly fill in static fields so that the we don't have to do as many expensive
4822 // Class::FindStaticField in ResolveField.
4823 for (size_t i = 0; i < num_static_fields; ++i) {
Mathieu Chartierc7853442015-03-27 14:35:38 -07004824 ArtField* field = klass->GetStaticField(i);
Mathieu Chartier05d89ee2014-10-28 13:57:04 -07004825 const uint32_t field_idx = field->GetDexFieldIndex();
Mathieu Chartierc7853442015-03-27 14:35:38 -07004826 ArtField* resolved_field = dex_cache->GetResolvedField(field_idx, image_pointer_size_);
Mathieu Chartier05d89ee2014-10-28 13:57:04 -07004827 if (resolved_field == nullptr) {
Mathieu Chartierc7853442015-03-27 14:35:38 -07004828 dex_cache->SetResolvedField(field_idx, field, image_pointer_size_);
Mathieu Chartier9f3629d2014-10-28 18:23:02 -07004829 } else {
4830 DCHECK_EQ(field, resolved_field);
Mathieu Chartier05d89ee2014-10-28 13:57:04 -07004831 }
4832 }
4833
David Sehr9323e6e2016-09-13 08:58:35 -07004834 annotations::RuntimeEncodedStaticFieldValueIterator value_it(dex_file,
4835 &dex_cache,
4836 &class_loader,
4837 this,
4838 *dex_class_def);
Ian Rogers13735952014-10-08 12:43:28 -07004839 const uint8_t* class_data = dex_file.GetClassData(*dex_class_def);
Hiroshi Yamauchi88500112014-08-22 12:12:56 -07004840 ClassDataItemIterator field_it(dex_file, class_data);
4841 if (value_it.HasNext()) {
4842 DCHECK(field_it.HasNextStaticField());
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07004843 CHECK(can_init_statics);
Hiroshi Yamauchi88500112014-08-22 12:12:56 -07004844 for ( ; value_it.HasNext(); value_it.Next(), field_it.Next()) {
Mathieu Chartierc7853442015-03-27 14:35:38 -07004845 ArtField* field = ResolveField(
4846 dex_file, field_it.GetMemberIndex(), dex_cache, class_loader, true);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01004847 if (Runtime::Current()->IsActiveTransaction()) {
Hiroshi Yamauchi88500112014-08-22 12:12:56 -07004848 value_it.ReadValueToField<true>(field);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01004849 } else {
Hiroshi Yamauchi88500112014-08-22 12:12:56 -07004850 value_it.ReadValueToField<false>(field);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01004851 }
Mathieu Chartierda595be2016-08-10 13:57:39 -07004852 if (self->IsExceptionPending()) {
4853 break;
4854 }
Hiroshi Yamauchi88500112014-08-22 12:12:56 -07004855 DCHECK(!value_it.HasNext() || field_it.HasNextStaticField());
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07004856 }
4857 }
4858 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004859
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004860
Mathieu Chartierda595be2016-08-10 13:57:39 -07004861 if (!self->IsExceptionPending()) {
4862 ArtMethod* clinit = klass->FindClassInitializer(image_pointer_size_);
4863 if (clinit != nullptr) {
4864 CHECK(can_init_statics);
4865 JValue result;
4866 clinit->Invoke(self, nullptr, 0, &result, "V");
4867 }
4868 }
Ian Rogers7b078e82014-09-10 14:44:24 -07004869 self->AllowThreadSuspension();
Elliott Hughes83df2ac2011-10-11 16:37:54 -07004870 uint64_t t1 = NanoTime();
4871
Ian Rogersbdfb1a52012-01-12 14:05:22 -08004872 bool success = true;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004873 {
Mathieu Chartierdb2633c2014-05-16 09:59:29 -07004874 ObjectLock<mirror::Class> lock(self, klass);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004875
4876 if (self->IsExceptionPending()) {
Brian Carlstromb23eab12014-10-08 17:55:21 -07004877 WrapExceptionInInitializer(klass);
Vladimir Marko72ab6842017-01-20 19:32:50 +00004878 mirror::Class::SetStatus(klass, mirror::Class::kStatusErrorResolved, self);
Ian Rogersbdfb1a52012-01-12 14:05:22 -08004879 success = false;
Sebastien Hertz1c80bec2015-02-03 11:58:06 +01004880 } else if (Runtime::Current()->IsTransactionAborted()) {
4881 // The exception thrown when the transaction aborted has been caught and cleared
4882 // so we need to throw it again now.
David Sehr709b0702016-10-13 09:12:37 -07004883 VLOG(compiler) << "Return from class initializer of "
4884 << mirror::Class::PrettyDescriptor(klass.Get())
Sebastien Hertzbd9cf9f2015-03-03 12:16:13 +01004885 << " without exception while transaction was aborted: re-throw it now.";
Sebastien Hertz2fd7e692015-04-02 11:11:19 +02004886 Runtime::Current()->ThrowTransactionAbortError(self);
Vladimir Marko72ab6842017-01-20 19:32:50 +00004887 mirror::Class::SetStatus(klass, mirror::Class::kStatusErrorResolved, self);
Sebastien Hertz1c80bec2015-02-03 11:58:06 +01004888 success = false;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004889 } else {
Elliott Hughes83df2ac2011-10-11 16:37:54 -07004890 RuntimeStats* global_stats = Runtime::Current()->GetStats();
4891 RuntimeStats* thread_stats = self->GetStats();
4892 ++global_stats->class_init_count;
4893 ++thread_stats->class_init_count;
4894 global_stats->class_init_time_ns += (t1 - t0);
4895 thread_stats->class_init_time_ns += (t1 - t0);
Ian Rogerse6bb3b22013-08-19 21:51:45 -07004896 // Set the class as initialized except if failed to initialize static fields.
Hiroshi Yamauchi5b783e62015-03-18 17:20:11 -07004897 mirror::Class::SetStatus(klass, mirror::Class::kStatusInitialized, self);
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07004898 if (VLOG_IS_ON(class_linker)) {
Ian Rogers1ff3c982014-08-12 02:30:58 -07004899 std::string temp;
4900 LOG(INFO) << "Initialized class " << klass->GetDescriptor(&temp) << " from " <<
Mathieu Chartierf8322842014-05-16 10:59:25 -07004901 klass->GetLocation();
Brian Carlstromae826982011-11-09 01:33:42 -08004902 }
Brian Carlstrom073278c2014-02-19 15:21:21 -08004903 // Opportunistically set static method trampolines to their destination.
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07004904 FixupStaticTrampolines(klass.Get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004905 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004906 }
Ian Rogersbdfb1a52012-01-12 14:05:22 -08004907 return success;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004908}
4909
Alex Lighteb7c1442015-08-31 13:17:42 -07004910// We recursively run down the tree of interfaces. We need to do this in the order they are declared
4911// and perform the initialization only on those interfaces that contain default methods.
4912bool ClassLinker::InitializeDefaultInterfaceRecursive(Thread* self,
4913 Handle<mirror::Class> iface,
4914 bool can_init_statics,
4915 bool can_init_parents) {
4916 CHECK(iface->IsInterface());
4917 size_t num_direct_ifaces = iface->NumDirectInterfaces();
Alex Light56a40f52015-10-14 11:07:41 -07004918 // Only create the (expensive) handle scope if we need it.
4919 if (UNLIKELY(num_direct_ifaces > 0)) {
4920 StackHandleScope<1> hs(self);
4921 MutableHandle<mirror::Class> handle_super_iface(hs.NewHandle<mirror::Class>(nullptr));
4922 // First we initialize all of iface's super-interfaces recursively.
4923 for (size_t i = 0; i < num_direct_ifaces; i++) {
Vladimir Marko19a4d372016-12-08 14:41:46 +00004924 ObjPtr<mirror::Class> super_iface = mirror::Class::GetDirectInterface(self, iface.Get(), i);
Vladimir Marko8d6768d2017-03-14 10:13:21 +00004925 CHECK(super_iface != nullptr) << iface->PrettyDescriptor() << " iface #" << i;
Alex Light56a40f52015-10-14 11:07:41 -07004926 if (!super_iface->HasBeenRecursivelyInitialized()) {
4927 // Recursive step
4928 handle_super_iface.Assign(super_iface);
4929 if (!InitializeDefaultInterfaceRecursive(self,
4930 handle_super_iface,
4931 can_init_statics,
4932 can_init_parents)) {
4933 return false;
4934 }
Alex Lighteb7c1442015-08-31 13:17:42 -07004935 }
4936 }
4937 }
4938
4939 bool result = true;
4940 // Then we initialize 'iface' if it has default methods. We do not need to (and in fact must not)
4941 // initialize if we don't have default methods.
4942 if (iface->HasDefaultMethods()) {
4943 result = EnsureInitialized(self, iface, can_init_statics, can_init_parents);
4944 }
4945
4946 // Mark that this interface has undergone recursive default interface initialization so we know we
4947 // can skip it on any later class initializations. We do this even if we are not a default
4948 // interface since we can still avoid the traversal. This is purely a performance optimization.
4949 if (result) {
4950 // TODO This should be done in a better way
4951 ObjectLock<mirror::Class> lock(self, iface);
4952 iface->SetRecursivelyInitialized();
4953 }
4954 return result;
4955}
4956
Mathieu Chartierc77f3ab2015-09-03 19:41:50 -07004957bool ClassLinker::WaitForInitializeClass(Handle<mirror::Class> klass,
4958 Thread* self,
Igor Murashkinb1d8c312015-08-04 11:18:43 -07004959 ObjectLock<mirror::Class>& lock)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07004960 REQUIRES_SHARED(Locks::mutator_lock_) {
Brian Carlstromd1422f82011-09-28 11:37:09 -07004961 while (true) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004962 self->AssertNoPendingException();
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07004963 CHECK(!klass->IsInitialized());
Igor Murashkinb1d8c312015-08-04 11:18:43 -07004964 lock.WaitIgnoringInterrupts();
Brian Carlstromd1422f82011-09-28 11:37:09 -07004965
4966 // When we wake up, repeat the test for init-in-progress. If
4967 // there's an exception pending (only possible if
Brian Carlstromb23eab12014-10-08 17:55:21 -07004968 // we were not using WaitIgnoringInterrupts), bail out.
Brian Carlstromd1422f82011-09-28 11:37:09 -07004969 if (self->IsExceptionPending()) {
Brian Carlstromb23eab12014-10-08 17:55:21 -07004970 WrapExceptionInInitializer(klass);
Vladimir Marko72ab6842017-01-20 19:32:50 +00004971 mirror::Class::SetStatus(klass, mirror::Class::kStatusErrorResolved, self);
Brian Carlstromd1422f82011-09-28 11:37:09 -07004972 return false;
4973 }
4974 // Spurious wakeup? Go back to waiting.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08004975 if (klass->GetStatus() == mirror::Class::kStatusInitializing) {
Brian Carlstromd1422f82011-09-28 11:37:09 -07004976 continue;
4977 }
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08004978 if (klass->GetStatus() == mirror::Class::kStatusVerified &&
4979 Runtime::Current()->IsAotCompiler()) {
Ian Rogers3d1548d2012-09-24 14:08:03 -07004980 // Compile time initialization failed.
4981 return false;
4982 }
Brian Carlstromd1422f82011-09-28 11:37:09 -07004983 if (klass->IsErroneous()) {
4984 // The caller wants an exception, but it was thrown in a
4985 // different thread. Synthesize one here.
Brian Carlstromdf143242011-10-10 18:05:34 -07004986 ThrowNoClassDefFoundError("<clinit> failed for class %s; see exception in other thread",
David Sehr709b0702016-10-13 09:12:37 -07004987 klass->PrettyDescriptor().c_str());
Brian Carlstromb23eab12014-10-08 17:55:21 -07004988 VlogClassInitializationFailure(klass);
Brian Carlstromd1422f82011-09-28 11:37:09 -07004989 return false;
4990 }
4991 if (klass->IsInitialized()) {
4992 return true;
4993 }
David Sehr709b0702016-10-13 09:12:37 -07004994 LOG(FATAL) << "Unexpected class status. " << klass->PrettyClass() << " is "
Mathieu Chartierc528dba2013-11-26 12:00:11 -08004995 << klass->GetStatus();
Brian Carlstromd1422f82011-09-28 11:37:09 -07004996 }
Ian Rogers07140832014-09-30 15:43:59 -07004997 UNREACHABLE();
Brian Carlstromd1422f82011-09-28 11:37:09 -07004998}
4999
Vladimir Markod5e5a0e2015-05-08 12:26:59 +01005000static void ThrowSignatureCheckResolveReturnTypeException(Handle<mirror::Class> klass,
5001 Handle<mirror::Class> super_klass,
Mathieu Chartiere401d142015-04-22 13:56:20 -07005002 ArtMethod* method,
5003 ArtMethod* m)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07005004 REQUIRES_SHARED(Locks::mutator_lock_) {
Vladimir Markod5e5a0e2015-05-08 12:26:59 +01005005 DCHECK(Thread::Current()->IsExceptionPending());
5006 DCHECK(!m->IsProxyMethod());
5007 const DexFile* dex_file = m->GetDexFile();
5008 const DexFile::MethodId& method_id = dex_file->GetMethodId(m->GetDexMethodIndex());
5009 const DexFile::ProtoId& proto_id = dex_file->GetMethodPrototype(method_id);
Andreas Gampea5b09a62016-11-17 15:21:22 -08005010 dex::TypeIndex return_type_idx = proto_id.return_type_idx_;
David Sehr709b0702016-10-13 09:12:37 -07005011 std::string return_type = dex_file->PrettyType(return_type_idx);
5012 std::string class_loader = mirror::Object::PrettyTypeOf(m->GetDeclaringClass()->GetClassLoader());
Vladimir Markod5e5a0e2015-05-08 12:26:59 +01005013 ThrowWrappedLinkageError(klass.Get(),
5014 "While checking class %s method %s signature against %s %s: "
5015 "Failed to resolve return type %s with %s",
David Sehr709b0702016-10-13 09:12:37 -07005016 mirror::Class::PrettyDescriptor(klass.Get()).c_str(),
5017 ArtMethod::PrettyMethod(method).c_str(),
Vladimir Markod5e5a0e2015-05-08 12:26:59 +01005018 super_klass->IsInterface() ? "interface" : "superclass",
David Sehr709b0702016-10-13 09:12:37 -07005019 mirror::Class::PrettyDescriptor(super_klass.Get()).c_str(),
Vladimir Markod5e5a0e2015-05-08 12:26:59 +01005020 return_type.c_str(), class_loader.c_str());
5021}
5022
5023static void ThrowSignatureCheckResolveArgException(Handle<mirror::Class> klass,
5024 Handle<mirror::Class> super_klass,
Mathieu Chartiere401d142015-04-22 13:56:20 -07005025 ArtMethod* method,
5026 ArtMethod* m,
Mathieu Chartierc77f3ab2015-09-03 19:41:50 -07005027 uint32_t index,
Andreas Gampea5b09a62016-11-17 15:21:22 -08005028 dex::TypeIndex arg_type_idx)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07005029 REQUIRES_SHARED(Locks::mutator_lock_) {
Vladimir Markod5e5a0e2015-05-08 12:26:59 +01005030 DCHECK(Thread::Current()->IsExceptionPending());
5031 DCHECK(!m->IsProxyMethod());
5032 const DexFile* dex_file = m->GetDexFile();
David Sehr709b0702016-10-13 09:12:37 -07005033 std::string arg_type = dex_file->PrettyType(arg_type_idx);
5034 std::string class_loader = mirror::Object::PrettyTypeOf(m->GetDeclaringClass()->GetClassLoader());
Vladimir Markod5e5a0e2015-05-08 12:26:59 +01005035 ThrowWrappedLinkageError(klass.Get(),
5036 "While checking class %s method %s signature against %s %s: "
5037 "Failed to resolve arg %u type %s with %s",
David Sehr709b0702016-10-13 09:12:37 -07005038 mirror::Class::PrettyDescriptor(klass.Get()).c_str(),
5039 ArtMethod::PrettyMethod(method).c_str(),
Vladimir Markod5e5a0e2015-05-08 12:26:59 +01005040 super_klass->IsInterface() ? "interface" : "superclass",
David Sehr709b0702016-10-13 09:12:37 -07005041 mirror::Class::PrettyDescriptor(super_klass.Get()).c_str(),
Vladimir Markod5e5a0e2015-05-08 12:26:59 +01005042 index, arg_type.c_str(), class_loader.c_str());
5043}
5044
5045static void ThrowSignatureMismatch(Handle<mirror::Class> klass,
5046 Handle<mirror::Class> super_klass,
Mathieu Chartiere401d142015-04-22 13:56:20 -07005047 ArtMethod* method,
Vladimir Markod5e5a0e2015-05-08 12:26:59 +01005048 const std::string& error_msg)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07005049 REQUIRES_SHARED(Locks::mutator_lock_) {
Vladimir Markod5e5a0e2015-05-08 12:26:59 +01005050 ThrowLinkageError(klass.Get(),
5051 "Class %s method %s resolves differently in %s %s: %s",
David Sehr709b0702016-10-13 09:12:37 -07005052 mirror::Class::PrettyDescriptor(klass.Get()).c_str(),
5053 ArtMethod::PrettyMethod(method).c_str(),
Vladimir Markod5e5a0e2015-05-08 12:26:59 +01005054 super_klass->IsInterface() ? "interface" : "superclass",
David Sehr709b0702016-10-13 09:12:37 -07005055 mirror::Class::PrettyDescriptor(super_klass.Get()).c_str(),
Vladimir Markod5e5a0e2015-05-08 12:26:59 +01005056 error_msg.c_str());
5057}
5058
Ian Rogersb5fb2072014-12-02 17:22:02 -08005059static bool HasSameSignatureWithDifferentClassLoaders(Thread* self,
Vladimir Markod5e5a0e2015-05-08 12:26:59 +01005060 Handle<mirror::Class> klass,
5061 Handle<mirror::Class> super_klass,
Mathieu Chartiere401d142015-04-22 13:56:20 -07005062 ArtMethod* method1,
5063 ArtMethod* method2)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07005064 REQUIRES_SHARED(Locks::mutator_lock_) {
Ian Rogersb5fb2072014-12-02 17:22:02 -08005065 {
5066 StackHandleScope<1> hs(self);
Vladimir Markob45528c2017-07-27 14:14:28 +01005067 Handle<mirror::Class> return_type(hs.NewHandle(method1->ResolveReturnType()));
Andreas Gampefa4333d2017-02-14 11:10:34 -08005068 if (UNLIKELY(return_type == nullptr)) {
Mathieu Chartiere401d142015-04-22 13:56:20 -07005069 ThrowSignatureCheckResolveReturnTypeException(klass, super_klass, method1, method1);
Vladimir Markod5e5a0e2015-05-08 12:26:59 +01005070 return false;
5071 }
Vladimir Markob45528c2017-07-27 14:14:28 +01005072 ObjPtr<mirror::Class> other_return_type = method2->ResolveReturnType();
Vladimir Markod5e5a0e2015-05-08 12:26:59 +01005073 if (UNLIKELY(other_return_type == nullptr)) {
Mathieu Chartiere401d142015-04-22 13:56:20 -07005074 ThrowSignatureCheckResolveReturnTypeException(klass, super_klass, method1, method2);
Vladimir Markod5e5a0e2015-05-08 12:26:59 +01005075 return false;
5076 }
Vladimir Marko862f43c2015-02-10 18:22:57 +00005077 if (UNLIKELY(other_return_type != return_type.Get())) {
Vladimir Markod5e5a0e2015-05-08 12:26:59 +01005078 ThrowSignatureMismatch(klass, super_klass, method1,
5079 StringPrintf("Return types mismatch: %s(%p) vs %s(%p)",
David Sehr709b0702016-10-13 09:12:37 -07005080 return_type->PrettyClassAndClassLoader().c_str(),
Vladimir Markod5e5a0e2015-05-08 12:26:59 +01005081 return_type.Get(),
David Sehr709b0702016-10-13 09:12:37 -07005082 other_return_type->PrettyClassAndClassLoader().c_str(),
Mathieu Chartier28357fa2016-10-18 16:27:40 -07005083 other_return_type.Ptr()));
Ian Rogersb5fb2072014-12-02 17:22:02 -08005084 return false;
5085 }
5086 }
5087 const DexFile::TypeList* types1 = method1->GetParameterTypeList();
5088 const DexFile::TypeList* types2 = method2->GetParameterTypeList();
5089 if (types1 == nullptr) {
Andreas Gamped8ca52e2015-02-13 15:23:18 -08005090 if (types2 != nullptr && types2->Size() != 0) {
Vladimir Markod5e5a0e2015-05-08 12:26:59 +01005091 ThrowSignatureMismatch(klass, super_klass, method1,
5092 StringPrintf("Type list mismatch with %s",
David Sehr709b0702016-10-13 09:12:37 -07005093 method2->PrettyMethod(true).c_str()));
Andreas Gamped8ca52e2015-02-13 15:23:18 -08005094 return false;
5095 }
5096 return true;
Ian Rogersb5fb2072014-12-02 17:22:02 -08005097 } else if (UNLIKELY(types2 == nullptr)) {
Andreas Gamped8ca52e2015-02-13 15:23:18 -08005098 if (types1->Size() != 0) {
Vladimir Markod5e5a0e2015-05-08 12:26:59 +01005099 ThrowSignatureMismatch(klass, super_klass, method1,
5100 StringPrintf("Type list mismatch with %s",
David Sehr709b0702016-10-13 09:12:37 -07005101 method2->PrettyMethod(true).c_str()));
Andreas Gamped8ca52e2015-02-13 15:23:18 -08005102 return false;
5103 }
5104 return true;
Ian Rogersb5fb2072014-12-02 17:22:02 -08005105 }
5106 uint32_t num_types = types1->Size();
5107 if (UNLIKELY(num_types != types2->Size())) {
Vladimir Markod5e5a0e2015-05-08 12:26:59 +01005108 ThrowSignatureMismatch(klass, super_klass, method1,
5109 StringPrintf("Type list mismatch with %s",
David Sehr709b0702016-10-13 09:12:37 -07005110 method2->PrettyMethod(true).c_str()));
Ian Rogersb5fb2072014-12-02 17:22:02 -08005111 return false;
5112 }
5113 for (uint32_t i = 0; i < num_types; ++i) {
Vladimir Marko862f43c2015-02-10 18:22:57 +00005114 StackHandleScope<1> hs(self);
Andreas Gampea5b09a62016-11-17 15:21:22 -08005115 dex::TypeIndex param_type_idx = types1->GetTypeItem(i).type_idx_;
Vladimir Marko862f43c2015-02-10 18:22:57 +00005116 Handle<mirror::Class> param_type(hs.NewHandle(
Vladimir Markob45528c2017-07-27 14:14:28 +01005117 method1->ResolveClassFromTypeIndex(param_type_idx)));
Andreas Gampefa4333d2017-02-14 11:10:34 -08005118 if (UNLIKELY(param_type == nullptr)) {
Vladimir Markod5e5a0e2015-05-08 12:26:59 +01005119 ThrowSignatureCheckResolveArgException(klass, super_klass, method1,
Mathieu Chartiere401d142015-04-22 13:56:20 -07005120 method1, i, param_type_idx);
Vladimir Markod5e5a0e2015-05-08 12:26:59 +01005121 return false;
5122 }
Andreas Gampea5b09a62016-11-17 15:21:22 -08005123 dex::TypeIndex other_param_type_idx = types2->GetTypeItem(i).type_idx_;
Mathieu Chartier28357fa2016-10-18 16:27:40 -07005124 ObjPtr<mirror::Class> other_param_type =
Vladimir Markob45528c2017-07-27 14:14:28 +01005125 method2->ResolveClassFromTypeIndex(other_param_type_idx);
Vladimir Markod5e5a0e2015-05-08 12:26:59 +01005126 if (UNLIKELY(other_param_type == nullptr)) {
5127 ThrowSignatureCheckResolveArgException(klass, super_klass, method1,
Mathieu Chartiere401d142015-04-22 13:56:20 -07005128 method2, i, other_param_type_idx);
Vladimir Markod5e5a0e2015-05-08 12:26:59 +01005129 return false;
5130 }
Vladimir Marko862f43c2015-02-10 18:22:57 +00005131 if (UNLIKELY(param_type.Get() != other_param_type)) {
Vladimir Markod5e5a0e2015-05-08 12:26:59 +01005132 ThrowSignatureMismatch(klass, super_klass, method1,
5133 StringPrintf("Parameter %u type mismatch: %s(%p) vs %s(%p)",
5134 i,
David Sehr709b0702016-10-13 09:12:37 -07005135 param_type->PrettyClassAndClassLoader().c_str(),
Vladimir Markod5e5a0e2015-05-08 12:26:59 +01005136 param_type.Get(),
David Sehr709b0702016-10-13 09:12:37 -07005137 other_param_type->PrettyClassAndClassLoader().c_str(),
Mathieu Chartier28357fa2016-10-18 16:27:40 -07005138 other_param_type.Ptr()));
Ian Rogersb5fb2072014-12-02 17:22:02 -08005139 return false;
5140 }
5141 }
5142 return true;
5143}
5144
5145
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07005146bool ClassLinker::ValidateSuperClassDescriptors(Handle<mirror::Class> klass) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07005147 if (klass->IsInterface()) {
5148 return true;
5149 }
Ian Rogers151f2212014-05-06 11:27:27 -07005150 // Begin with the methods local to the superclass.
Ian Rogersded66a02014-10-28 18:12:55 -07005151 Thread* self = Thread::Current();
Mathieu Chartiere401d142015-04-22 13:56:20 -07005152 StackHandleScope<1> hs(self);
Vladimir Markod5e5a0e2015-05-08 12:26:59 +01005153 MutableHandle<mirror::Class> super_klass(hs.NewHandle<mirror::Class>(nullptr));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07005154 if (klass->HasSuperClass() &&
5155 klass->GetClassLoader() != klass->GetSuperClass()->GetClassLoader()) {
Vladimir Markod5e5a0e2015-05-08 12:26:59 +01005156 super_klass.Assign(klass->GetSuperClass());
Mingyao Yang2cdbad72014-07-16 10:44:41 -07005157 for (int i = klass->GetSuperClass()->GetVTableLength() - 1; i >= 0; --i) {
Mathieu Chartiere401d142015-04-22 13:56:20 -07005158 auto* m = klass->GetVTableEntry(i, image_pointer_size_);
5159 auto* super_m = klass->GetSuperClass()->GetVTableEntry(i, image_pointer_size_);
5160 if (m != super_m) {
Vladimir Marko942fd312017-01-16 20:52:19 +00005161 if (UNLIKELY(!HasSameSignatureWithDifferentClassLoaders(self,
5162 klass,
5163 super_klass,
5164 m,
5165 super_m))) {
Vladimir Markod5e5a0e2015-05-08 12:26:59 +01005166 self->AssertPendingException();
Andreas Gamped8ca52e2015-02-13 15:23:18 -08005167 return false;
5168 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07005169 }
5170 }
5171 }
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07005172 for (int32_t i = 0; i < klass->GetIfTableCount(); ++i) {
Vladimir Markod5e5a0e2015-05-08 12:26:59 +01005173 super_klass.Assign(klass->GetIfTable()->GetInterface(i));
5174 if (klass->GetClassLoader() != super_klass->GetClassLoader()) {
5175 uint32_t num_methods = super_klass->NumVirtualMethods();
Ian Rogers151f2212014-05-06 11:27:27 -07005176 for (uint32_t j = 0; j < num_methods; ++j) {
Mathieu Chartiere401d142015-04-22 13:56:20 -07005177 auto* m = klass->GetIfTable()->GetMethodArray(i)->GetElementPtrSize<ArtMethod*>(
5178 j, image_pointer_size_);
5179 auto* super_m = super_klass->GetVirtualMethod(j, image_pointer_size_);
5180 if (m != super_m) {
Vladimir Marko942fd312017-01-16 20:52:19 +00005181 if (UNLIKELY(!HasSameSignatureWithDifferentClassLoaders(self,
5182 klass,
5183 super_klass,
5184 m,
5185 super_m))) {
Vladimir Markod5e5a0e2015-05-08 12:26:59 +01005186 self->AssertPendingException();
Andreas Gamped8ca52e2015-02-13 15:23:18 -08005187 return false;
5188 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07005189 }
5190 }
5191 }
5192 }
5193 return true;
5194}
5195
Mathieu Chartier28357fa2016-10-18 16:27:40 -07005196bool ClassLinker::EnsureInitialized(Thread* self,
5197 Handle<mirror::Class> c,
5198 bool can_init_fields,
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07005199 bool can_init_parents) {
Andreas Gampefa4333d2017-02-14 11:10:34 -08005200 DCHECK(c != nullptr);
Igor Murashkin86083f72017-10-27 10:59:04 -07005201
Mathieu Chartier524507a2014-08-27 15:28:28 -07005202 if (c->IsInitialized()) {
Andreas Gampecc1b5352016-12-01 16:58:38 -08005203 EnsureSkipAccessChecksMethods(c, image_pointer_size_);
Mathieu Chartier8502f722016-06-08 15:09:08 -07005204 self->AssertNoPendingException();
Mathieu Chartier524507a2014-08-27 15:28:28 -07005205 return true;
5206 }
Igor Murashkin86083f72017-10-27 10:59:04 -07005207 // SubtypeCheckInfo::Initialized must happen-before any new-instance for that type.
5208 //
5209 // Ensure the bitstring is initialized before any of the class initialization
5210 // logic occurs. Once a class initializer starts running, objects can
5211 // escape into the heap and use the subtype checking code.
5212 //
5213 // Note: A class whose SubtypeCheckInfo is at least Initialized means it
5214 // can be used as a source for the IsSubClass check, and that all ancestors
5215 // of the class are Assigned (can be used as a target for IsSubClass check)
5216 // or Overflowed (can be used as a source for IsSubClass check).
5217 {
5218 MutexLock subtype_check_lock(Thread::Current(), *Locks::subtype_check_lock_);
5219 ObjPtr<mirror::Class> c_ptr(c.Get());
5220 SubtypeCheck<ObjPtr<mirror::Class>>::EnsureInitialized(c_ptr);
5221 // TODO: Avoid taking subtype_check_lock_ if SubtypeCheck is already initialized.
5222 }
Ian Rogers7b078e82014-09-10 14:44:24 -07005223 const bool success = InitializeClass(self, c, can_init_fields, can_init_parents);
Mathieu Chartier524507a2014-08-27 15:28:28 -07005224 if (!success) {
5225 if (can_init_fields && can_init_parents) {
David Sehr709b0702016-10-13 09:12:37 -07005226 CHECK(self->IsExceptionPending()) << c->PrettyClass();
Mathieu Chartier524507a2014-08-27 15:28:28 -07005227 }
5228 } else {
5229 self->AssertNoPendingException();
Ian Rogers595799e2012-01-11 17:32:51 -08005230 }
5231 return success;
Elliott Hughesf4c21c92011-08-19 17:31:31 -07005232}
5233
Mathieu Chartier28357fa2016-10-18 16:27:40 -07005234void ClassLinker::FixupTemporaryDeclaringClass(ObjPtr<mirror::Class> temp_class,
5235 ObjPtr<mirror::Class> new_class) {
Mathieu Chartiereb837eb2015-07-29 17:25:41 -07005236 DCHECK_EQ(temp_class->NumInstanceFields(), 0u);
Mathieu Chartier54d220e2015-07-30 16:20:06 -07005237 for (ArtField& field : new_class->GetIFields()) {
5238 if (field.GetDeclaringClass() == temp_class) {
5239 field.SetDeclaringClass(new_class);
Mingyao Yang98d1cc82014-05-15 17:02:16 -07005240 }
5241 }
5242
Mathieu Chartiereb837eb2015-07-29 17:25:41 -07005243 DCHECK_EQ(temp_class->NumStaticFields(), 0u);
Mathieu Chartier54d220e2015-07-30 16:20:06 -07005244 for (ArtField& field : new_class->GetSFields()) {
5245 if (field.GetDeclaringClass() == temp_class) {
5246 field.SetDeclaringClass(new_class);
Mingyao Yang98d1cc82014-05-15 17:02:16 -07005247 }
5248 }
5249
Mathieu Chartiereb837eb2015-07-29 17:25:41 -07005250 DCHECK_EQ(temp_class->NumDirectMethods(), 0u);
Mathieu Chartiereb837eb2015-07-29 17:25:41 -07005251 DCHECK_EQ(temp_class->NumVirtualMethods(), 0u);
Alex Lighte64300b2015-12-15 15:02:47 -08005252 for (auto& method : new_class->GetMethods(image_pointer_size_)) {
Mathieu Chartiere401d142015-04-22 13:56:20 -07005253 if (method.GetDeclaringClass() == temp_class) {
5254 method.SetDeclaringClass(new_class);
Mingyao Yang98d1cc82014-05-15 17:02:16 -07005255 }
5256 }
Mathieu Chartiereb837eb2015-07-29 17:25:41 -07005257
5258 // Make sure the remembered set and mod-union tables know that we updated some of the native
5259 // roots.
5260 Runtime::Current()->GetHeap()->WriteBarrierEveryFieldOf(new_class);
Mingyao Yang98d1cc82014-05-15 17:02:16 -07005261}
5262
Mathieu Chartier28357fa2016-10-18 16:27:40 -07005263void ClassLinker::RegisterClassLoader(ObjPtr<mirror::ClassLoader> class_loader) {
Mathieu Chartier5b830502016-03-02 10:30:23 -08005264 CHECK(class_loader->GetAllocator() == nullptr);
5265 CHECK(class_loader->GetClassTable() == nullptr);
5266 Thread* const self = Thread::Current();
5267 ClassLoaderData data;
5268 data.weak_root = self->GetJniEnv()->vm->AddWeakGlobalRef(self, class_loader);
5269 // Create and set the class table.
5270 data.class_table = new ClassTable;
5271 class_loader->SetClassTable(data.class_table);
5272 // Create and set the linear allocator.
5273 data.allocator = Runtime::Current()->CreateLinearAlloc();
5274 class_loader->SetAllocator(data.allocator);
5275 // Add to the list so that we know to free the data later.
5276 class_loaders_.push_back(data);
5277}
5278
Mathieu Chartier28357fa2016-10-18 16:27:40 -07005279ClassTable* ClassLinker::InsertClassTableForClassLoader(ObjPtr<mirror::ClassLoader> class_loader) {
Mathieu Chartier6b069532015-08-05 15:08:12 -07005280 if (class_loader == nullptr) {
Andreas Gampe2af99022017-04-25 08:32:59 -07005281 return boot_class_table_.get();
Mathieu Chartiercc5ebdf2015-07-27 11:19:43 -07005282 }
Mathieu Chartier6b069532015-08-05 15:08:12 -07005283 ClassTable* class_table = class_loader->GetClassTable();
5284 if (class_table == nullptr) {
Mathieu Chartier5b830502016-03-02 10:30:23 -08005285 RegisterClassLoader(class_loader);
5286 class_table = class_loader->GetClassTable();
5287 DCHECK(class_table != nullptr);
Mathieu Chartier6b069532015-08-05 15:08:12 -07005288 }
Mathieu Chartiercc5ebdf2015-07-27 11:19:43 -07005289 return class_table;
5290}
5291
Mathieu Chartier28357fa2016-10-18 16:27:40 -07005292ClassTable* ClassLinker::ClassTableForClassLoader(ObjPtr<mirror::ClassLoader> class_loader) {
Andreas Gampe2af99022017-04-25 08:32:59 -07005293 return class_loader == nullptr ? boot_class_table_.get() : class_loader->GetClassTable();
Mathieu Chartiercc5ebdf2015-07-27 11:19:43 -07005294}
5295
Mathieu Chartier28357fa2016-10-18 16:27:40 -07005296static ImTable* FindSuperImt(ObjPtr<mirror::Class> klass, PointerSize pointer_size)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07005297 REQUIRES_SHARED(Locks::mutator_lock_) {
Artem Udovichenkoa62cb9b2016-06-30 09:18:25 +00005298 while (klass->HasSuperClass()) {
5299 klass = klass->GetSuperClass();
5300 if (klass->ShouldHaveImt()) {
5301 return klass->GetImt(pointer_size);
5302 }
5303 }
5304 return nullptr;
5305}
5306
Mathieu Chartierc77f3ab2015-09-03 19:41:50 -07005307bool ClassLinker::LinkClass(Thread* self,
5308 const char* descriptor,
5309 Handle<mirror::Class> klass,
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07005310 Handle<mirror::ObjectArray<mirror::Class>> interfaces,
Igor Murashkinb1d8c312015-08-04 11:18:43 -07005311 MutableHandle<mirror::Class>* h_new_class_out) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08005312 CHECK_EQ(mirror::Class::kStatusLoaded, klass->GetStatus());
Mingyao Yang98d1cc82014-05-15 17:02:16 -07005313
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07005314 if (!LinkSuperClass(klass)) {
5315 return false;
5316 }
Artem Udovichenkoa62cb9b2016-06-30 09:18:25 +00005317 ArtMethod* imt_data[ImTable::kSize];
5318 // If there are any new conflicts compared to super class.
5319 bool new_conflict = false;
Nicolas Geoffray918dcea2017-07-21 07:58:14 +00005320 std::fill_n(imt_data, arraysize(imt_data), Runtime::Current()->GetImtUnimplementedMethod());
Artem Udovichenkoa62cb9b2016-06-30 09:18:25 +00005321 if (!LinkMethods(self, klass, interfaces, &new_conflict, imt_data)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07005322 return false;
5323 }
Ian Rogers7b078e82014-09-10 14:44:24 -07005324 if (!LinkInstanceFields(self, klass)) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07005325 return false;
5326 }
Mingyao Yang98d1cc82014-05-15 17:02:16 -07005327 size_t class_size;
Igor Murashkinb1d8c312015-08-04 11:18:43 -07005328 if (!LinkStaticFields(self, klass, &class_size)) {
Brian Carlstrom4873d462011-08-21 15:23:39 -07005329 return false;
5330 }
5331 CreateReferenceInstanceOffsets(klass);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08005332 CHECK_EQ(mirror::Class::kStatusLoaded, klass->GetStatus());
Mingyao Yang98d1cc82014-05-15 17:02:16 -07005333
Artem Udovichenkoa62cb9b2016-06-30 09:18:25 +00005334 ImTable* imt = nullptr;
5335 if (klass->ShouldHaveImt()) {
5336 // If there are any new conflicts compared to the super class we can not make a copy. There
5337 // can be cases where both will have a conflict method at the same slot without having the same
5338 // set of conflicts. In this case, we can not share the IMT since the conflict table slow path
5339 // will possibly create a table that is incorrect for either of the classes.
5340 // Same IMT with new_conflict does not happen very often.
5341 if (!new_conflict) {
5342 ImTable* super_imt = FindSuperImt(klass.Get(), image_pointer_size_);
5343 if (super_imt != nullptr) {
5344 bool imt_equals = true;
5345 for (size_t i = 0; i < ImTable::kSize && imt_equals; ++i) {
5346 imt_equals = imt_equals && (super_imt->Get(i, image_pointer_size_) == imt_data[i]);
5347 }
5348 if (imt_equals) {
5349 imt = super_imt;
5350 }
5351 }
5352 }
5353 if (imt == nullptr) {
5354 LinearAlloc* allocator = GetAllocatorForClassLoader(klass->GetClassLoader());
5355 imt = reinterpret_cast<ImTable*>(
5356 allocator->Alloc(self, ImTable::SizeInBytes(image_pointer_size_)));
5357 if (imt == nullptr) {
5358 return false;
5359 }
5360 imt->Populate(imt_data, image_pointer_size_);
5361 }
5362 }
5363
Mingyao Yang98d1cc82014-05-15 17:02:16 -07005364 if (!klass->IsTemp() || (!init_done_ && klass->GetClassSize() == class_size)) {
5365 // We don't need to retire this class as it has no embedded tables or it was created the
5366 // correct size during class linker initialization.
David Sehr709b0702016-10-13 09:12:37 -07005367 CHECK_EQ(klass->GetClassSize(), class_size) << klass->PrettyDescriptor();
Mingyao Yang98d1cc82014-05-15 17:02:16 -07005368
Artem Udovichenkoa62cb9b2016-06-30 09:18:25 +00005369 if (klass->ShouldHaveEmbeddedVTable()) {
5370 klass->PopulateEmbeddedVTable(image_pointer_size_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -07005371 }
Artem Udovichenkoa62cb9b2016-06-30 09:18:25 +00005372 if (klass->ShouldHaveImt()) {
5373 klass->SetImt(imt, image_pointer_size_);
5374 }
Mingyao Yang063fc772016-08-02 11:02:54 -07005375
5376 // Update CHA info based on whether we override methods.
5377 // Have to do this before setting the class as resolved which allows
5378 // instantiation of klass.
Andreas Gampec1ac9ee2017-07-24 22:35:49 -07005379 if (cha_ != nullptr) {
5380 cha_->UpdateAfterLoadingOf(klass);
5381 }
Nicolas Geoffray918dcea2017-07-21 07:58:14 +00005382
Mingyao Yang98d1cc82014-05-15 17:02:16 -07005383 // This will notify waiters on klass that saw the not yet resolved
5384 // class in the class_table_ during EnsureResolved.
Hiroshi Yamauchi5b783e62015-03-18 17:20:11 -07005385 mirror::Class::SetStatus(klass, mirror::Class::kStatusResolved, self);
Hiroshi Yamauchi679b1cf2015-05-21 12:05:27 -07005386 h_new_class_out->Assign(klass.Get());
Mingyao Yang98d1cc82014-05-15 17:02:16 -07005387 } else {
5388 CHECK(!klass->IsResolved());
5389 // Retire the temporary class and create the correctly sized resolved class.
Hiroshi Yamauchi679b1cf2015-05-21 12:05:27 -07005390 StackHandleScope<1> hs(self);
Mathieu Chartiere401d142015-04-22 13:56:20 -07005391 auto h_new_class = hs.NewHandle(klass->CopyOf(self, class_size, imt, image_pointer_size_));
Mathieu Chartier3ee25bb2015-08-10 10:13:02 -07005392 // Set arrays to null since we don't want to have multiple classes with the same ArtField or
5393 // ArtMethod array pointers. If this occurs, it causes bugs in remembered sets since the GC
5394 // may not see any references to the target space and clean the card for a class if another
5395 // class had the same array pointer.
Alex Lighte64300b2015-12-15 15:02:47 -08005396 klass->SetMethodsPtrUnchecked(nullptr, 0, 0);
Mathieu Chartier54d220e2015-07-30 16:20:06 -07005397 klass->SetSFieldsPtrUnchecked(nullptr);
5398 klass->SetIFieldsPtrUnchecked(nullptr);
Andreas Gampefa4333d2017-02-14 11:10:34 -08005399 if (UNLIKELY(h_new_class == nullptr)) {
Mathieu Chartiere401d142015-04-22 13:56:20 -07005400 self->AssertPendingOOMException();
Vladimir Marko72ab6842017-01-20 19:32:50 +00005401 mirror::Class::SetStatus(klass, mirror::Class::kStatusErrorUnresolved, self);
Mingyao Yang98d1cc82014-05-15 17:02:16 -07005402 return false;
5403 }
5404
Hiroshi Yamauchi679b1cf2015-05-21 12:05:27 -07005405 CHECK_EQ(h_new_class->GetClassSize(), class_size);
5406 ObjectLock<mirror::Class> lock(self, h_new_class);
5407 FixupTemporaryDeclaringClass(klass.Get(), h_new_class.Get());
Mathieu Chartiercc5ebdf2015-07-27 11:19:43 -07005408
5409 {
Mathieu Chartiereb837eb2015-07-29 17:25:41 -07005410 WriterMutexLock mu(self, *Locks::classlinker_classes_lock_);
Mathieu Chartier28357fa2016-10-18 16:27:40 -07005411 ObjPtr<mirror::ClassLoader> const class_loader = h_new_class.Get()->GetClassLoader();
Mathieu Chartiercc5ebdf2015-07-27 11:19:43 -07005412 ClassTable* const table = InsertClassTableForClassLoader(class_loader);
Mathieu Chartier28357fa2016-10-18 16:27:40 -07005413 ObjPtr<mirror::Class> existing = table->UpdateClass(descriptor, h_new_class.Get(),
Mathieu Chartiercc5ebdf2015-07-27 11:19:43 -07005414 ComputeModifiedUtf8Hash(descriptor));
Mathieu Chartier05aa4d32015-09-19 12:44:38 -07005415 if (class_loader != nullptr) {
5416 // We updated the class in the class table, perform the write barrier so that the GC knows
5417 // about the change.
5418 Runtime::Current()->GetHeap()->WriteBarrierEveryFieldOf(class_loader);
5419 }
Mathieu Chartiercc5ebdf2015-07-27 11:19:43 -07005420 CHECK_EQ(existing, klass.Get());
Vladimir Marko1998cd02017-01-13 13:02:58 +00005421 if (log_new_roots_) {
Mathieu Chartiercc5ebdf2015-07-27 11:19:43 -07005422 new_class_roots_.push_back(GcRoot<mirror::Class>(h_new_class.Get()));
5423 }
5424 }
Mingyao Yang98d1cc82014-05-15 17:02:16 -07005425
Mingyao Yang063fc772016-08-02 11:02:54 -07005426 // Update CHA info based on whether we override methods.
5427 // Have to do this before setting the class as resolved which allows
5428 // instantiation of klass.
Andreas Gampec1ac9ee2017-07-24 22:35:49 -07005429 if (cha_ != nullptr) {
5430 cha_->UpdateAfterLoadingOf(h_new_class);
5431 }
Mingyao Yang063fc772016-08-02 11:02:54 -07005432
Mingyao Yang98d1cc82014-05-15 17:02:16 -07005433 // This will notify waiters on temp class that saw the not yet resolved class in the
5434 // class_table_ during EnsureResolved.
Hiroshi Yamauchi5b783e62015-03-18 17:20:11 -07005435 mirror::Class::SetStatus(klass, mirror::Class::kStatusRetired, self);
Mingyao Yang98d1cc82014-05-15 17:02:16 -07005436
Hiroshi Yamauchi679b1cf2015-05-21 12:05:27 -07005437 CHECK_EQ(h_new_class->GetStatus(), mirror::Class::kStatusResolving);
Mingyao Yang98d1cc82014-05-15 17:02:16 -07005438 // This will notify waiters on new_class that saw the not yet resolved
5439 // class in the class_table_ during EnsureResolved.
Hiroshi Yamauchi679b1cf2015-05-21 12:05:27 -07005440 mirror::Class::SetStatus(h_new_class, mirror::Class::kStatusResolved, self);
5441 // Return the new class.
5442 h_new_class_out->Assign(h_new_class.Get());
Mingyao Yang98d1cc82014-05-15 17:02:16 -07005443 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07005444 return true;
5445}
5446
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07005447bool ClassLinker::LoadSuperAndInterfaces(Handle<mirror::Class> klass, const DexFile& dex_file) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08005448 CHECK_EQ(mirror::Class::kStatusIdx, klass->GetStatus());
Ian Rogers8b2c0b92013-09-19 02:56:49 -07005449 const DexFile::ClassDef& class_def = dex_file.GetClassDef(klass->GetDexClassDefIndex());
Andreas Gampea5b09a62016-11-17 15:21:22 -08005450 dex::TypeIndex super_class_idx = class_def.superclass_idx_;
5451 if (super_class_idx.IsValid()) {
Roland Levillain90328ac2016-05-18 12:25:38 +01005452 // Check that a class does not inherit from itself directly.
5453 //
5454 // TODO: This is a cheap check to detect the straightforward case
5455 // of a class extending itself (b/28685551), but we should do a
5456 // proper cycle detection on loaded classes, to detect all cases
5457 // of class circularity errors (b/28830038).
5458 if (super_class_idx == class_def.class_idx_) {
5459 ThrowClassCircularityError(klass.Get(),
5460 "Class %s extends itself",
David Sehr709b0702016-10-13 09:12:37 -07005461 klass->PrettyDescriptor().c_str());
Roland Levillain90328ac2016-05-18 12:25:38 +01005462 return false;
5463 }
5464
Mathieu Chartier28357fa2016-10-18 16:27:40 -07005465 ObjPtr<mirror::Class> super_class = ResolveType(dex_file, super_class_idx, klass.Get());
Andreas Gampe2ed8def2014-08-28 14:41:02 -07005466 if (super_class == nullptr) {
Brian Carlstrom65ca0772011-09-24 16:03:08 -07005467 DCHECK(Thread::Current()->IsExceptionPending());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07005468 return false;
5469 }
Ian Rogersbe125a92012-01-11 15:19:49 -08005470 // Verify
5471 if (!klass->CanAccess(super_class)) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07005472 ThrowIllegalAccessError(klass.Get(), "Class %s extended by class %s is inaccessible",
David Sehr709b0702016-10-13 09:12:37 -07005473 super_class->PrettyDescriptor().c_str(),
5474 klass->PrettyDescriptor().c_str());
Ian Rogersbe125a92012-01-11 15:19:49 -08005475 return false;
5476 }
Mingyao Yang98d1cc82014-05-15 17:02:16 -07005477 CHECK(super_class->IsResolved());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07005478 klass->SetSuperClass(super_class);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07005479 }
Ian Rogers8b2c0b92013-09-19 02:56:49 -07005480 const DexFile::TypeList* interfaces = dex_file.GetInterfacesList(class_def);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07005481 if (interfaces != nullptr) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08005482 for (size_t i = 0; i < interfaces->Size(); i++) {
Andreas Gampea5b09a62016-11-17 15:21:22 -08005483 dex::TypeIndex idx = interfaces->GetTypeItem(i).type_idx_;
Mathieu Chartier28357fa2016-10-18 16:27:40 -07005484 ObjPtr<mirror::Class> interface = ResolveType(dex_file, idx, klass.Get());
Andreas Gampe2ed8def2014-08-28 14:41:02 -07005485 if (interface == nullptr) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08005486 DCHECK(Thread::Current()->IsExceptionPending());
5487 return false;
5488 }
5489 // Verify
5490 if (!klass->CanAccess(interface)) {
5491 // TODO: the RI seemed to ignore this in my testing.
Mathieu Chartierc77f3ab2015-09-03 19:41:50 -07005492 ThrowIllegalAccessError(klass.Get(),
5493 "Interface %s implemented by class %s is inaccessible",
David Sehr709b0702016-10-13 09:12:37 -07005494 interface->PrettyDescriptor().c_str(),
5495 klass->PrettyDescriptor().c_str());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08005496 return false;
5497 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07005498 }
5499 }
Brian Carlstrom74eb46a2011-08-02 20:10:14 -07005500 // Mark the class as loaded.
Hiroshi Yamauchi5b783e62015-03-18 17:20:11 -07005501 mirror::Class::SetStatus(klass, mirror::Class::kStatusLoaded, nullptr);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07005502 return true;
5503}
5504
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07005505bool ClassLinker::LinkSuperClass(Handle<mirror::Class> klass) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07005506 CHECK(!klass->IsPrimitive());
Mathieu Chartier28357fa2016-10-18 16:27:40 -07005507 ObjPtr<mirror::Class> super = klass->GetSuperClass();
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07005508 if (klass.Get() == GetClassRoot(kJavaLangObject)) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07005509 if (super != nullptr) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07005510 ThrowClassFormatError(klass.Get(), "java.lang.Object must not have a superclass");
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07005511 return false;
5512 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07005513 return true;
5514 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -07005515 if (super == nullptr) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07005516 ThrowLinkageError(klass.Get(), "No superclass defined for class %s",
David Sehr709b0702016-10-13 09:12:37 -07005517 klass->PrettyDescriptor().c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07005518 return false;
5519 }
5520 // Verify
Vladimir Markob43b2d82017-07-18 17:46:38 +01005521 if (super->IsFinal()) {
5522 ThrowVerifyError(klass.Get(),
5523 "Superclass %s of %s is declared final",
5524 super->PrettyDescriptor().c_str(),
5525 klass->PrettyDescriptor().c_str());
5526 return false;
5527 }
5528 if (super->IsInterface()) {
Mathieu Chartierc77f3ab2015-09-03 19:41:50 -07005529 ThrowIncompatibleClassChangeError(klass.Get(),
Vladimir Markob43b2d82017-07-18 17:46:38 +01005530 "Superclass %s of %s is an interface",
David Sehr709b0702016-10-13 09:12:37 -07005531 super->PrettyDescriptor().c_str(),
Vladimir Markob43b2d82017-07-18 17:46:38 +01005532 klass->PrettyDescriptor().c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07005533 return false;
5534 }
5535 if (!klass->CanAccess(super)) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07005536 ThrowIllegalAccessError(klass.Get(), "Superclass %s is inaccessible to class %s",
David Sehr709b0702016-10-13 09:12:37 -07005537 super->PrettyDescriptor().c_str(),
5538 klass->PrettyDescriptor().c_str());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07005539 return false;
5540 }
Elliott Hughes20cde902011-10-04 17:37:27 -07005541
Brian Carlstromf3632832014-05-20 15:36:53 -07005542 // Inherit kAccClassIsFinalizable from the superclass in case this
5543 // class doesn't override finalize.
Elliott Hughes20cde902011-10-04 17:37:27 -07005544 if (super->IsFinalizable()) {
5545 klass->SetFinalizable();
5546 }
5547
Mathieu Chartiere4275c02015-08-06 15:34:15 -07005548 // Inherit class loader flag form super class.
5549 if (super->IsClassLoaderClass()) {
5550 klass->SetClassLoaderClass();
5551 }
5552
Elliott Hughes2da50362011-10-10 16:57:08 -07005553 // Inherit reference flags (if any) from the superclass.
Mathieu Chartier66c2d2d2015-08-25 14:32:32 -07005554 uint32_t reference_flags = (super->GetClassFlags() & mirror::kClassFlagReference);
Elliott Hughes2da50362011-10-10 16:57:08 -07005555 if (reference_flags != 0) {
Mathieu Chartier66c2d2d2015-08-25 14:32:32 -07005556 CHECK_EQ(klass->GetClassFlags(), 0u);
Mathieu Chartier52a7f5c2015-08-18 18:35:52 -07005557 klass->SetClassFlags(klass->GetClassFlags() | reference_flags);
Elliott Hughes2da50362011-10-10 16:57:08 -07005558 }
Elliott Hughes72ee0ae2011-10-10 17:31:28 -07005559 // Disallow custom direct subclasses of java.lang.ref.Reference.
Elliott Hughesbf61ba32011-10-11 10:53:09 -07005560 if (init_done_ && super == GetClassRoot(kJavaLangRefReference)) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07005561 ThrowLinkageError(klass.Get(),
Ian Rogers62d6c772013-02-27 08:32:07 -08005562 "Class %s attempts to subclass java.lang.ref.Reference, which is not allowed",
David Sehr709b0702016-10-13 09:12:37 -07005563 klass->PrettyDescriptor().c_str());
Elliott Hughes72ee0ae2011-10-10 17:31:28 -07005564 return false;
5565 }
Elliott Hughes2da50362011-10-10 16:57:08 -07005566
Ian Rogers7dfb28c2013-08-22 08:18:36 -07005567 if (kIsDebugBuild) {
5568 // Ensure super classes are fully resolved prior to resolving fields..
Andreas Gampe2ed8def2014-08-28 14:41:02 -07005569 while (super != nullptr) {
Ian Rogers7dfb28c2013-08-22 08:18:36 -07005570 CHECK(super->IsResolved());
5571 super = super->GetSuperClass();
5572 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07005573 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07005574 return true;
5575}
5576
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07005577// Populate the class vtable and itable. Compute return type indices.
Mathieu Chartierc77f3ab2015-09-03 19:41:50 -07005578bool ClassLinker::LinkMethods(Thread* self,
5579 Handle<mirror::Class> klass,
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07005580 Handle<mirror::ObjectArray<mirror::Class>> interfaces,
Artem Udovichenkoa62cb9b2016-06-30 09:18:25 +00005581 bool* out_new_conflict,
Igor Murashkinb1d8c312015-08-04 11:18:43 -07005582 ArtMethod** out_imt) {
Ian Rogers7b078e82014-09-10 14:44:24 -07005583 self->AllowThreadSuspension();
Alex Lighteb7c1442015-08-31 13:17:42 -07005584 // A map from vtable indexes to the method they need to be updated to point to. Used because we
5585 // need to have default methods be in the virtuals array of each class but we don't set that up
5586 // until LinkInterfaceMethods.
Alex Light9139e002015-10-09 15:59:48 -07005587 std::unordered_map<size_t, ClassLinker::MethodTranslation> default_translations;
Alex Lighteb7c1442015-08-31 13:17:42 -07005588 // Link virtual methods then interface methods.
5589 // We set up the interface lookup table first because we need it to determine if we need to update
5590 // any vtable entries with new default method implementations.
5591 return SetupInterfaceLookupTable(self, klass, interfaces)
5592 && LinkVirtualMethods(self, klass, /*out*/ &default_translations)
Artem Udovichenkoa62cb9b2016-06-30 09:18:25 +00005593 && LinkInterfaceMethods(self, klass, default_translations, out_new_conflict, out_imt);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07005594}
5595
Ian Rogers03b6eaf2014-10-28 09:34:57 -07005596// Comparator for name and signature of a method, used in finding overriding methods. Implementation
5597// avoids the use of handles, if it didn't then rather than compare dex files we could compare dex
5598// caches in the implementation below.
5599class MethodNameAndSignatureComparator FINAL : public ValueObject {
5600 public:
Mathieu Chartiere401d142015-04-22 13:56:20 -07005601 explicit MethodNameAndSignatureComparator(ArtMethod* method)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07005602 REQUIRES_SHARED(Locks::mutator_lock_) :
Ian Rogers03b6eaf2014-10-28 09:34:57 -07005603 dex_file_(method->GetDexFile()), mid_(&dex_file_->GetMethodId(method->GetDexMethodIndex())),
5604 name_(nullptr), name_len_(0) {
David Sehr709b0702016-10-13 09:12:37 -07005605 DCHECK(!method->IsProxyMethod()) << method->PrettyMethod();
Mathieu Chartier9f3629d2014-10-28 18:23:02 -07005606 }
5607
5608 const char* GetName() {
5609 if (name_ == nullptr) {
5610 name_ = dex_file_->StringDataAndUtf16LengthByIdx(mid_->name_idx_, &name_len_);
5611 }
5612 return name_;
Ian Rogers03b6eaf2014-10-28 09:34:57 -07005613 }
5614
Mathieu Chartiere401d142015-04-22 13:56:20 -07005615 bool HasSameNameAndSignature(ArtMethod* other)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07005616 REQUIRES_SHARED(Locks::mutator_lock_) {
David Sehr709b0702016-10-13 09:12:37 -07005617 DCHECK(!other->IsProxyMethod()) << other->PrettyMethod();
Ian Rogers03b6eaf2014-10-28 09:34:57 -07005618 const DexFile* other_dex_file = other->GetDexFile();
5619 const DexFile::MethodId& other_mid = other_dex_file->GetMethodId(other->GetDexMethodIndex());
5620 if (dex_file_ == other_dex_file) {
5621 return mid_->name_idx_ == other_mid.name_idx_ && mid_->proto_idx_ == other_mid.proto_idx_;
5622 }
Mathieu Chartier9f3629d2014-10-28 18:23:02 -07005623 GetName(); // Only used to make sure its calculated.
Ian Rogers03b6eaf2014-10-28 09:34:57 -07005624 uint32_t other_name_len;
5625 const char* other_name = other_dex_file->StringDataAndUtf16LengthByIdx(other_mid.name_idx_,
5626 &other_name_len);
5627 if (name_len_ != other_name_len || strcmp(name_, other_name) != 0) {
5628 return false;
5629 }
5630 return dex_file_->GetMethodSignature(*mid_) == other_dex_file->GetMethodSignature(other_mid);
5631 }
5632
5633 private:
5634 // Dex file for the method to compare against.
5635 const DexFile* const dex_file_;
5636 // MethodId for the method to compare against.
5637 const DexFile::MethodId* const mid_;
5638 // Lazily computed name from the dex file's strings.
5639 const char* name_;
5640 // Lazily computed name length.
5641 uint32_t name_len_;
5642};
5643
Mathieu Chartier9f3629d2014-10-28 18:23:02 -07005644class LinkVirtualHashTable {
5645 public:
Mathieu Chartierc77f3ab2015-09-03 19:41:50 -07005646 LinkVirtualHashTable(Handle<mirror::Class> klass,
5647 size_t hash_size,
5648 uint32_t* hash_table,
Andreas Gampe542451c2016-07-26 09:02:02 -07005649 PointerSize image_pointer_size)
Mathieu Chartierc77f3ab2015-09-03 19:41:50 -07005650 : klass_(klass),
5651 hash_size_(hash_size),
5652 hash_table_(hash_table),
Mathieu Chartiere401d142015-04-22 13:56:20 -07005653 image_pointer_size_(image_pointer_size) {
Mathieu Chartier9f3629d2014-10-28 18:23:02 -07005654 std::fill(hash_table_, hash_table_ + hash_size_, invalid_index_);
5655 }
Mathieu Chartierc77f3ab2015-09-03 19:41:50 -07005656
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07005657 void Add(uint32_t virtual_method_index) REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartiere401d142015-04-22 13:56:20 -07005658 ArtMethod* local_method = klass_->GetVirtualMethodDuringLinking(
5659 virtual_method_index, image_pointer_size_);
5660 const char* name = local_method->GetInterfaceMethodIfProxy(image_pointer_size_)->GetName();
Mathieu Chartiere7c9a8c2014-11-06 16:35:45 -08005661 uint32_t hash = ComputeModifiedUtf8Hash(name);
Mathieu Chartier9f3629d2014-10-28 18:23:02 -07005662 uint32_t index = hash % hash_size_;
5663 // Linear probe until we have an empty slot.
5664 while (hash_table_[index] != invalid_index_) {
5665 if (++index == hash_size_) {
5666 index = 0;
5667 }
5668 }
5669 hash_table_[index] = virtual_method_index;
5670 }
Mathieu Chartierc77f3ab2015-09-03 19:41:50 -07005671
Mathieu Chartier9f3629d2014-10-28 18:23:02 -07005672 uint32_t FindAndRemove(MethodNameAndSignatureComparator* comparator)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07005673 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartier9f3629d2014-10-28 18:23:02 -07005674 const char* name = comparator->GetName();
Mathieu Chartiere7c9a8c2014-11-06 16:35:45 -08005675 uint32_t hash = ComputeModifiedUtf8Hash(name);
Mathieu Chartier9f3629d2014-10-28 18:23:02 -07005676 size_t index = hash % hash_size_;
5677 while (true) {
5678 const uint32_t value = hash_table_[index];
5679 // Since linear probe makes continuous blocks, hitting an invalid index means we are done
5680 // the block and can safely assume not found.
5681 if (value == invalid_index_) {
5682 break;
5683 }
5684 if (value != removed_index_) { // This signifies not already overriden.
Mathieu Chartiere401d142015-04-22 13:56:20 -07005685 ArtMethod* virtual_method =
5686 klass_->GetVirtualMethodDuringLinking(value, image_pointer_size_);
5687 if (comparator->HasSameNameAndSignature(
5688 virtual_method->GetInterfaceMethodIfProxy(image_pointer_size_))) {
Mathieu Chartier9f3629d2014-10-28 18:23:02 -07005689 hash_table_[index] = removed_index_;
5690 return value;
5691 }
5692 }
5693 if (++index == hash_size_) {
5694 index = 0;
5695 }
5696 }
5697 return GetNotFoundIndex();
5698 }
Mathieu Chartierc77f3ab2015-09-03 19:41:50 -07005699
Mathieu Chartier9f3629d2014-10-28 18:23:02 -07005700 static uint32_t GetNotFoundIndex() {
5701 return invalid_index_;
5702 }
5703
5704 private:
5705 static const uint32_t invalid_index_;
5706 static const uint32_t removed_index_;
5707
5708 Handle<mirror::Class> klass_;
5709 const size_t hash_size_;
5710 uint32_t* const hash_table_;
Andreas Gampe542451c2016-07-26 09:02:02 -07005711 const PointerSize image_pointer_size_;
Mathieu Chartier9f3629d2014-10-28 18:23:02 -07005712};
5713
5714const uint32_t LinkVirtualHashTable::invalid_index_ = std::numeric_limits<uint32_t>::max();
5715const uint32_t LinkVirtualHashTable::removed_index_ = std::numeric_limits<uint32_t>::max() - 1;
5716
Stephen Hines1ddd9132017-02-08 01:51:18 -08005717bool ClassLinker::LinkVirtualMethods(
Alex Lighteb7c1442015-08-31 13:17:42 -07005718 Thread* self,
5719 Handle<mirror::Class> klass,
Alex Light9139e002015-10-09 15:59:48 -07005720 /*out*/std::unordered_map<size_t, ClassLinker::MethodTranslation>* default_translations) {
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07005721 const size_t num_virtual_methods = klass->NumVirtualMethods();
Alex Lighteb7c1442015-08-31 13:17:42 -07005722 if (klass->IsInterface()) {
5723 // No vtable.
5724 if (!IsUint<16>(num_virtual_methods)) {
5725 ThrowClassFormatError(klass.Get(), "Too many methods on interface: %zu", num_virtual_methods);
5726 return false;
5727 }
5728 bool has_defaults = false;
Alex Lighteb7c1442015-08-31 13:17:42 -07005729 // Assign each method an IMT index and set the default flag.
5730 for (size_t i = 0; i < num_virtual_methods; ++i) {
5731 ArtMethod* m = klass->GetVirtualMethodDuringLinking(i, image_pointer_size_);
5732 m->SetMethodIndex(i);
5733 if (!m->IsAbstract()) {
5734 m->SetAccessFlags(m->GetAccessFlags() | kAccDefault);
5735 has_defaults = true;
5736 }
5737 }
5738 // Mark that we have default methods so that we won't need to scan the virtual_methods_ array
5739 // during initialization. This is a performance optimization. We could simply traverse the
5740 // virtual_methods_ array again during initialization.
5741 if (has_defaults) {
5742 klass->SetHasDefaultMethods();
5743 }
5744 return true;
5745 } else if (klass->HasSuperClass()) {
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07005746 const size_t super_vtable_length = klass->GetSuperClass()->GetVTableLength();
5747 const size_t max_count = num_virtual_methods + super_vtable_length;
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07005748 StackHandleScope<2> hs(self);
Mingyao Yang38eecb02014-08-13 14:51:03 -07005749 Handle<mirror::Class> super_class(hs.NewHandle(klass->GetSuperClass()));
Mathieu Chartiere401d142015-04-22 13:56:20 -07005750 MutableHandle<mirror::PointerArray> vtable;
Artem Udovichenkoa62cb9b2016-06-30 09:18:25 +00005751 if (super_class->ShouldHaveEmbeddedVTable()) {
Mathieu Chartiere401d142015-04-22 13:56:20 -07005752 vtable = hs.NewHandle(AllocPointerArray(self, max_count));
Andreas Gampefa4333d2017-02-14 11:10:34 -08005753 if (UNLIKELY(vtable == nullptr)) {
Mathieu Chartiere401d142015-04-22 13:56:20 -07005754 self->AssertPendingOOMException();
Mingyao Yang2cdbad72014-07-16 10:44:41 -07005755 return false;
5756 }
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07005757 for (size_t i = 0; i < super_vtable_length; i++) {
Mathieu Chartiere401d142015-04-22 13:56:20 -07005758 vtable->SetElementPtrSize(
5759 i, super_class->GetEmbeddedVTableEntry(i, image_pointer_size_), image_pointer_size_);
Mingyao Yang2cdbad72014-07-16 10:44:41 -07005760 }
Alex Lighteb7c1442015-08-31 13:17:42 -07005761 // We might need to change vtable if we have new virtual methods or new interfaces (since that
5762 // might give us new default methods). If no new interfaces then we can skip the rest since
5763 // the class cannot override any of the super-class's methods. This is required for
5764 // correctness since without it we might not update overridden default method vtable entries
5765 // correctly.
5766 if (num_virtual_methods == 0 && super_class->GetIfTableCount() == klass->GetIfTableCount()) {
Mathieu Chartier9f3629d2014-10-28 18:23:02 -07005767 klass->SetVTable(vtable.Get());
5768 return true;
5769 }
Mingyao Yang2cdbad72014-07-16 10:44:41 -07005770 } else {
Alex Lighteb7c1442015-08-31 13:17:42 -07005771 DCHECK(super_class->IsAbstract() && !super_class->IsArrayClass());
Mathieu Chartiere401d142015-04-22 13:56:20 -07005772 auto* super_vtable = super_class->GetVTable();
David Sehr709b0702016-10-13 09:12:37 -07005773 CHECK(super_vtable != nullptr) << super_class->PrettyClass();
Alex Lighteb7c1442015-08-31 13:17:42 -07005774 // We might need to change vtable if we have new virtual methods or new interfaces (since that
5775 // might give us new default methods). See comment above.
5776 if (num_virtual_methods == 0 && super_class->GetIfTableCount() == klass->GetIfTableCount()) {
Mathieu Chartier9f3629d2014-10-28 18:23:02 -07005777 klass->SetVTable(super_vtable);
5778 return true;
5779 }
Mathieu Chartiere401d142015-04-22 13:56:20 -07005780 vtable = hs.NewHandle(down_cast<mirror::PointerArray*>(
5781 super_vtable->CopyOf(self, max_count)));
Andreas Gampefa4333d2017-02-14 11:10:34 -08005782 if (UNLIKELY(vtable == nullptr)) {
Mathieu Chartiere401d142015-04-22 13:56:20 -07005783 self->AssertPendingOOMException();
Mingyao Yang2cdbad72014-07-16 10:44:41 -07005784 return false;
5785 }
Ian Rogersa436fde2013-08-27 23:34:06 -07005786 }
Mathieu Chartier9f3629d2014-10-28 18:23:02 -07005787 // How the algorithm works:
5788 // 1. Populate hash table by adding num_virtual_methods from klass. The values in the hash
5789 // table are: invalid_index for unused slots, index super_vtable_length + i for a virtual
5790 // method which has not been matched to a vtable method, and j if the virtual method at the
5791 // index overrode the super virtual method at index j.
5792 // 2. Loop through super virtual methods, if they overwrite, update hash table to j
5793 // (j < super_vtable_length) to avoid redundant checks. (TODO maybe use this info for reducing
5794 // the need for the initial vtable which we later shrink back down).
5795 // 3. Add non overridden methods to the end of the vtable.
5796 static constexpr size_t kMaxStackHash = 250;
Alex Lighteb7c1442015-08-31 13:17:42 -07005797 // + 1 so that even if we only have new default methods we will still be able to use this hash
5798 // table (i.e. it will never have 0 size).
5799 const size_t hash_table_size = num_virtual_methods * 3 + 1;
Mathieu Chartier9f3629d2014-10-28 18:23:02 -07005800 uint32_t* hash_table_ptr;
5801 std::unique_ptr<uint32_t[]> hash_heap_storage;
5802 if (hash_table_size <= kMaxStackHash) {
5803 hash_table_ptr = reinterpret_cast<uint32_t*>(
5804 alloca(hash_table_size * sizeof(*hash_table_ptr)));
5805 } else {
5806 hash_heap_storage.reset(new uint32_t[hash_table_size]);
5807 hash_table_ptr = hash_heap_storage.get();
5808 }
Mathieu Chartiere401d142015-04-22 13:56:20 -07005809 LinkVirtualHashTable hash_table(klass, hash_table_size, hash_table_ptr, image_pointer_size_);
Mathieu Chartier9f3629d2014-10-28 18:23:02 -07005810 // Add virtual methods to the hash table.
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07005811 for (size_t i = 0; i < num_virtual_methods; ++i) {
Mathieu Chartiere401d142015-04-22 13:56:20 -07005812 DCHECK(klass->GetVirtualMethodDuringLinking(
5813 i, image_pointer_size_)->GetDeclaringClass() != nullptr);
Mathieu Chartier9f3629d2014-10-28 18:23:02 -07005814 hash_table.Add(i);
5815 }
Alex Lighteb7c1442015-08-31 13:17:42 -07005816 // Loop through each super vtable method and see if they are overridden by a method we added to
Mathieu Chartier9f3629d2014-10-28 18:23:02 -07005817 // the hash table.
5818 for (size_t j = 0; j < super_vtable_length; ++j) {
Alex Lighteb7c1442015-08-31 13:17:42 -07005819 // Search the hash table to see if we are overridden by any method.
Mathieu Chartiere401d142015-04-22 13:56:20 -07005820 ArtMethod* super_method = vtable->GetElementPtrSize<ArtMethod*>(j, image_pointer_size_);
Alex Lightc7a420c2016-10-18 14:33:18 -07005821 if (!klass->CanAccessMember(super_method->GetDeclaringClass(),
5822 super_method->GetAccessFlags())) {
5823 // Continue on to the next method since this one is package private and canot be overridden.
5824 // Before Android 4.1, the package-private method super_method might have been incorrectly
5825 // overridden.
5826 continue;
5827 }
Mathieu Chartier9f3629d2014-10-28 18:23:02 -07005828 MethodNameAndSignatureComparator super_method_name_comparator(
Mathieu Chartiere401d142015-04-22 13:56:20 -07005829 super_method->GetInterfaceMethodIfProxy(image_pointer_size_));
Alex Lightc7a420c2016-10-18 14:33:18 -07005830 // We remove the method so that subsequent lookups will be faster by making the hash-map
5831 // smaller as we go on.
Mathieu Chartier9f3629d2014-10-28 18:23:02 -07005832 uint32_t hash_index = hash_table.FindAndRemove(&super_method_name_comparator);
5833 if (hash_index != hash_table.GetNotFoundIndex()) {
Mathieu Chartiere401d142015-04-22 13:56:20 -07005834 ArtMethod* virtual_method = klass->GetVirtualMethodDuringLinking(
5835 hash_index, image_pointer_size_);
Alex Lightc7a420c2016-10-18 14:33:18 -07005836 if (super_method->IsFinal()) {
5837 ThrowLinkageError(klass.Get(), "Method %s overrides final method in class %s",
5838 virtual_method->PrettyMethod().c_str(),
5839 super_method->GetDeclaringClassDescriptor());
5840 return false;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07005841 }
Alex Lightc7a420c2016-10-18 14:33:18 -07005842 vtable->SetElementPtrSize(j, virtual_method, image_pointer_size_);
5843 virtual_method->SetMethodIndex(j);
Alex Light9139e002015-10-09 15:59:48 -07005844 } else if (super_method->IsOverridableByDefaultMethod()) {
Alex Lighteb7c1442015-08-31 13:17:42 -07005845 // We didn't directly override this method but we might through default methods...
5846 // Check for default method update.
5847 ArtMethod* default_method = nullptr;
Alex Light9139e002015-10-09 15:59:48 -07005848 switch (FindDefaultMethodImplementation(self,
5849 super_method,
5850 klass,
5851 /*out*/&default_method)) {
5852 case DefaultMethodSearchResult::kDefaultConflict: {
5853 // A conflict was found looking for default methods. Note this (assuming it wasn't
5854 // pre-existing) in the translations map.
5855 if (UNLIKELY(!super_method->IsDefaultConflicting())) {
5856 // Don't generate another conflict method to reduce memory use as an optimization.
5857 default_translations->insert(
5858 {j, ClassLinker::MethodTranslation::CreateConflictingMethod()});
5859 }
5860 break;
5861 }
5862 case DefaultMethodSearchResult::kAbstractFound: {
5863 // No conflict but method is abstract.
5864 // We note that this vtable entry must be made abstract.
5865 if (UNLIKELY(!super_method->IsAbstract())) {
5866 default_translations->insert(
5867 {j, ClassLinker::MethodTranslation::CreateAbstractMethod()});
5868 }
5869 break;
5870 }
5871 case DefaultMethodSearchResult::kDefaultFound: {
5872 if (UNLIKELY(super_method->IsDefaultConflicting() ||
5873 default_method->GetDeclaringClass() != super_method->GetDeclaringClass())) {
5874 // Found a default method implementation that is new.
5875 // TODO Refactor this add default methods to virtuals here and not in
5876 // LinkInterfaceMethods maybe.
5877 // The problem is default methods might override previously present
5878 // default-method or miranda-method vtable entries from the superclass.
5879 // Unfortunately we need these to be entries in this class's virtuals. We do not
5880 // give these entries there until LinkInterfaceMethods so we pass this map around
5881 // to let it know which vtable entries need to be updated.
5882 // Make a note that vtable entry j must be updated, store what it needs to be updated
5883 // to. We will allocate a virtual method slot in LinkInterfaceMethods and fix it up
5884 // then.
5885 default_translations->insert(
5886 {j, ClassLinker::MethodTranslation::CreateTranslatedMethod(default_method)});
David Sehr709b0702016-10-13 09:12:37 -07005887 VLOG(class_linker) << "Method " << super_method->PrettyMethod()
5888 << " overridden by default "
5889 << default_method->PrettyMethod()
5890 << " in " << mirror::Class::PrettyClass(klass.Get());
Alex Light9139e002015-10-09 15:59:48 -07005891 }
5892 break;
5893 }
Alex Lighteb7c1442015-08-31 13:17:42 -07005894 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07005895 }
Mathieu Chartier9f3629d2014-10-28 18:23:02 -07005896 }
Mathieu Chartier9f3629d2014-10-28 18:23:02 -07005897 size_t actual_count = super_vtable_length;
Alex Lighteb7c1442015-08-31 13:17:42 -07005898 // Add the non-overridden methods at the end.
Mathieu Chartier9f3629d2014-10-28 18:23:02 -07005899 for (size_t i = 0; i < num_virtual_methods; ++i) {
Mathieu Chartiere401d142015-04-22 13:56:20 -07005900 ArtMethod* local_method = klass->GetVirtualMethodDuringLinking(i, image_pointer_size_);
Mathieu Chartier9f3629d2014-10-28 18:23:02 -07005901 size_t method_idx = local_method->GetMethodIndexDuringLinking();
5902 if (method_idx < super_vtable_length &&
Mathieu Chartiere401d142015-04-22 13:56:20 -07005903 local_method == vtable->GetElementPtrSize<ArtMethod*>(method_idx, image_pointer_size_)) {
Mathieu Chartier9f3629d2014-10-28 18:23:02 -07005904 continue;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07005905 }
Mathieu Chartiere401d142015-04-22 13:56:20 -07005906 vtable->SetElementPtrSize(actual_count, local_method, image_pointer_size_);
Mathieu Chartier9f3629d2014-10-28 18:23:02 -07005907 local_method->SetMethodIndex(actual_count);
5908 ++actual_count;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07005909 }
Andreas Gampeab1eb0d2015-02-13 19:23:55 -08005910 if (!IsUint<16>(actual_count)) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07005911 ThrowClassFormatError(klass.Get(), "Too many methods defined on class: %zd", actual_count);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07005912 return false;
5913 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07005914 // Shrink vtable if possible
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07005915 CHECK_LE(actual_count, max_count);
5916 if (actual_count < max_count) {
Mathieu Chartiere401d142015-04-22 13:56:20 -07005917 vtable.Assign(down_cast<mirror::PointerArray*>(vtable->CopyOf(self, actual_count)));
Andreas Gampefa4333d2017-02-14 11:10:34 -08005918 if (UNLIKELY(vtable == nullptr)) {
Mathieu Chartiere401d142015-04-22 13:56:20 -07005919 self->AssertPendingOOMException();
Ian Rogersa436fde2013-08-27 23:34:06 -07005920 return false;
5921 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07005922 }
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07005923 klass->SetVTable(vtable.Get());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07005924 } else {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07005925 CHECK_EQ(klass.Get(), GetClassRoot(kJavaLangObject));
Andreas Gampeab1eb0d2015-02-13 19:23:55 -08005926 if (!IsUint<16>(num_virtual_methods)) {
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07005927 ThrowClassFormatError(klass.Get(), "Too many methods: %d",
5928 static_cast<int>(num_virtual_methods));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07005929 return false;
5930 }
Mathieu Chartiere401d142015-04-22 13:56:20 -07005931 auto* vtable = AllocPointerArray(self, num_virtual_methods);
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07005932 if (UNLIKELY(vtable == nullptr)) {
Mathieu Chartiere401d142015-04-22 13:56:20 -07005933 self->AssertPendingOOMException();
Ian Rogersa436fde2013-08-27 23:34:06 -07005934 return false;
5935 }
Brian Carlstroma40f9bc2011-07-26 21:26:07 -07005936 for (size_t i = 0; i < num_virtual_methods; ++i) {
Mathieu Chartiere401d142015-04-22 13:56:20 -07005937 ArtMethod* virtual_method = klass->GetVirtualMethodDuringLinking(i, image_pointer_size_);
5938 vtable->SetElementPtrSize(i, virtual_method, image_pointer_size_);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07005939 virtual_method->SetMethodIndex(i & 0xFFFF);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07005940 }
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07005941 klass->SetVTable(vtable);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07005942 }
5943 return true;
5944}
5945
Alex Light9139e002015-10-09 15:59:48 -07005946// Determine if the given iface has any subinterface in the given list that declares the method
5947// specified by 'target'.
5948//
5949// Arguments
5950// - self: The thread we are running on
5951// - target: A comparator that will match any method that overrides the method we are checking for
5952// - iftable: The iftable we are searching for an overriding method on.
5953// - ifstart: The index of the interface we are checking to see if anything overrides
5954// - iface: The interface we are checking to see if anything overrides.
5955// - image_pointer_size:
5956// The image pointer size.
5957//
5958// Returns
5959// - True: There is some method that matches the target comparator defined in an interface that
5960// is a subtype of iface.
5961// - False: There is no method that matches the target comparator in any interface that is a subtype
5962// of iface.
5963static bool ContainsOverridingMethodOf(Thread* self,
5964 MethodNameAndSignatureComparator& target,
5965 Handle<mirror::IfTable> iftable,
5966 size_t ifstart,
5967 Handle<mirror::Class> iface,
Andreas Gampe542451c2016-07-26 09:02:02 -07005968 PointerSize image_pointer_size)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07005969 REQUIRES_SHARED(Locks::mutator_lock_) {
Alex Light9139e002015-10-09 15:59:48 -07005970 DCHECK(self != nullptr);
Andreas Gampefa4333d2017-02-14 11:10:34 -08005971 DCHECK(iface != nullptr);
5972 DCHECK(iftable != nullptr);
Alex Light9139e002015-10-09 15:59:48 -07005973 DCHECK_GE(ifstart, 0u);
5974 DCHECK_LT(ifstart, iftable->Count());
5975 DCHECK_EQ(iface.Get(), iftable->GetInterface(ifstart));
5976 DCHECK(iface->IsInterface());
5977
5978 size_t iftable_count = iftable->Count();
5979 StackHandleScope<1> hs(self);
5980 MutableHandle<mirror::Class> current_iface(hs.NewHandle<mirror::Class>(nullptr));
5981 for (size_t k = ifstart + 1; k < iftable_count; k++) {
5982 // Skip ifstart since our current interface obviously cannot override itself.
5983 current_iface.Assign(iftable->GetInterface(k));
Alex Lighte64300b2015-12-15 15:02:47 -08005984 // Iterate through every method on this interface. The order does not matter.
5985 for (ArtMethod& current_method : current_iface->GetDeclaredVirtualMethods(image_pointer_size)) {
Alex Light9139e002015-10-09 15:59:48 -07005986 if (UNLIKELY(target.HasSameNameAndSignature(
Alex Lighte64300b2015-12-15 15:02:47 -08005987 current_method.GetInterfaceMethodIfProxy(image_pointer_size)))) {
Alex Light9139e002015-10-09 15:59:48 -07005988 // Check if the i'th interface is a subtype of this one.
5989 if (iface->IsAssignableFrom(current_iface.Get())) {
5990 return true;
5991 }
5992 break;
5993 }
5994 }
5995 }
5996 return false;
5997}
5998
Alex Lighteb7c1442015-08-31 13:17:42 -07005999// Find the default method implementation for 'interface_method' in 'klass'. Stores it into
Alex Light9139e002015-10-09 15:59:48 -07006000// out_default_method and returns kDefaultFound on success. If no default method was found return
6001// kAbstractFound and store nullptr into out_default_method. If an error occurs (such as a
6002// default_method conflict) it will return kDefaultConflict.
6003ClassLinker::DefaultMethodSearchResult ClassLinker::FindDefaultMethodImplementation(
6004 Thread* self,
6005 ArtMethod* target_method,
6006 Handle<mirror::Class> klass,
6007 /*out*/ArtMethod** out_default_method) const {
Alex Lighteb7c1442015-08-31 13:17:42 -07006008 DCHECK(self != nullptr);
6009 DCHECK(target_method != nullptr);
6010 DCHECK(out_default_method != nullptr);
Alex Lighteb7c1442015-08-31 13:17:42 -07006011
6012 *out_default_method = nullptr;
Alex Lighteb7c1442015-08-31 13:17:42 -07006013
6014 // We organize the interface table so that, for interface I any subinterfaces J follow it in the
6015 // table. This lets us walk the table backwards when searching for default methods. The first one
6016 // we encounter is the best candidate since it is the most specific. Once we have found it we keep
6017 // track of it and then continue checking all other interfaces, since we need to throw an error if
6018 // we encounter conflicting default method implementations (one is not a subtype of the other).
6019 //
6020 // The order of unrelated interfaces does not matter and is not defined.
6021 size_t iftable_count = klass->GetIfTableCount();
6022 if (iftable_count == 0) {
Alex Light9139e002015-10-09 15:59:48 -07006023 // No interfaces. We have already reset out to null so just return kAbstractFound.
6024 return DefaultMethodSearchResult::kAbstractFound;
Alex Lighteb7c1442015-08-31 13:17:42 -07006025 }
6026
Alex Light9139e002015-10-09 15:59:48 -07006027 StackHandleScope<3> hs(self);
6028 MutableHandle<mirror::Class> chosen_iface(hs.NewHandle<mirror::Class>(nullptr));
Alex Lighteb7c1442015-08-31 13:17:42 -07006029 MutableHandle<mirror::IfTable> iftable(hs.NewHandle(klass->GetIfTable()));
Alex Light9139e002015-10-09 15:59:48 -07006030 MutableHandle<mirror::Class> iface(hs.NewHandle<mirror::Class>(nullptr));
Alex Lighteb7c1442015-08-31 13:17:42 -07006031 MethodNameAndSignatureComparator target_name_comparator(
6032 target_method->GetInterfaceMethodIfProxy(image_pointer_size_));
6033 // Iterates over the klass's iftable in reverse
Alex Light9139e002015-10-09 15:59:48 -07006034 for (size_t k = iftable_count; k != 0; ) {
6035 --k;
6036
Alex Lighteb7c1442015-08-31 13:17:42 -07006037 DCHECK_LT(k, iftable->Count());
Alex Light9139e002015-10-09 15:59:48 -07006038
6039 iface.Assign(iftable->GetInterface(k));
Alex Lighte64300b2015-12-15 15:02:47 -08006040 // Iterate through every declared method on this interface. The order does not matter.
6041 for (auto& method_iter : iface->GetDeclaredVirtualMethods(image_pointer_size_)) {
6042 ArtMethod* current_method = &method_iter;
Alex Lighteb7c1442015-08-31 13:17:42 -07006043 // Skip abstract methods and methods with different names.
6044 if (current_method->IsAbstract() ||
6045 !target_name_comparator.HasSameNameAndSignature(
6046 current_method->GetInterfaceMethodIfProxy(image_pointer_size_))) {
6047 continue;
Alex Lightd7c10c22016-03-31 10:03:07 -07006048 } else if (!current_method->IsPublic()) {
6049 // The verifier should have caught the non-public method for dex version 37. Just warn and
6050 // skip it since this is from before default-methods so we don't really need to care that it
6051 // has code.
David Sehr709b0702016-10-13 09:12:37 -07006052 LOG(WARNING) << "Interface method " << current_method->PrettyMethod()
6053 << " is not public! "
Alex Lightd7c10c22016-03-31 10:03:07 -07006054 << "This will be a fatal error in subsequent versions of android. "
6055 << "Continuing anyway.";
Alex Lighteb7c1442015-08-31 13:17:42 -07006056 }
Andreas Gampefa4333d2017-02-14 11:10:34 -08006057 if (UNLIKELY(chosen_iface != nullptr)) {
Alex Light9139e002015-10-09 15:59:48 -07006058 // We have multiple default impls of the same method. This is a potential default conflict.
6059 // We need to check if this possibly conflicting method is either a superclass of the chosen
6060 // default implementation or is overridden by a non-default interface method. In either case
6061 // there is no conflict.
6062 if (!iface->IsAssignableFrom(chosen_iface.Get()) &&
6063 !ContainsOverridingMethodOf(self,
6064 target_name_comparator,
6065 iftable,
6066 k,
6067 iface,
6068 image_pointer_size_)) {
Nicolas Geoffray7f3e0db2016-01-28 09:29:31 +00006069 VLOG(class_linker) << "Conflicting default method implementations found: "
David Sehr709b0702016-10-13 09:12:37 -07006070 << current_method->PrettyMethod() << " and "
6071 << ArtMethod::PrettyMethod(*out_default_method) << " in class "
6072 << klass->PrettyClass() << " conflict.";
Alex Light9139e002015-10-09 15:59:48 -07006073 *out_default_method = nullptr;
6074 return DefaultMethodSearchResult::kDefaultConflict;
Alex Lighteb7c1442015-08-31 13:17:42 -07006075 } else {
6076 break; // Continue checking at the next interface.
6077 }
6078 } else {
Alex Light9139e002015-10-09 15:59:48 -07006079 // chosen_iface == null
6080 if (!ContainsOverridingMethodOf(self,
6081 target_name_comparator,
6082 iftable,
6083 k,
6084 iface,
6085 image_pointer_size_)) {
6086 // Don't set this as the chosen interface if something else is overriding it (because that
6087 // other interface would be potentially chosen instead if it was default). If the other
6088 // interface was abstract then we wouldn't select this interface as chosen anyway since
6089 // the abstract method masks it.
6090 *out_default_method = current_method;
6091 chosen_iface.Assign(iface.Get());
6092 // We should now finish traversing the graph to find if we have default methods that
6093 // conflict.
6094 } else {
David Sehr709b0702016-10-13 09:12:37 -07006095 VLOG(class_linker) << "A default method '" << current_method->PrettyMethod()
6096 << "' was "
6097 << "skipped because it was overridden by an abstract method in a "
6098 << "subinterface on class '" << klass->PrettyClass() << "'";
Alex Light9139e002015-10-09 15:59:48 -07006099 }
Alex Lighteb7c1442015-08-31 13:17:42 -07006100 }
Alex Lighteb7c1442015-08-31 13:17:42 -07006101 break;
6102 }
6103 }
Alex Light9139e002015-10-09 15:59:48 -07006104 if (*out_default_method != nullptr) {
David Sehr709b0702016-10-13 09:12:37 -07006105 VLOG(class_linker) << "Default method '" << (*out_default_method)->PrettyMethod()
6106 << "' selected "
6107 << "as the implementation for '" << target_method->PrettyMethod()
6108 << "' in '" << klass->PrettyClass() << "'";
Alex Light9139e002015-10-09 15:59:48 -07006109 return DefaultMethodSearchResult::kDefaultFound;
6110 } else {
6111 return DefaultMethodSearchResult::kAbstractFound;
6112 }
Alex Lighteb7c1442015-08-31 13:17:42 -07006113}
6114
Mathieu Chartier28357fa2016-10-18 16:27:40 -07006115ArtMethod* ClassLinker::AddMethodToConflictTable(ObjPtr<mirror::Class> klass,
Mathieu Chartier49b5ced2016-04-14 10:49:19 -07006116 ArtMethod* conflict_method,
6117 ArtMethod* interface_method,
6118 ArtMethod* method,
6119 bool force_new_conflict_method) {
Andreas Gampe542451c2016-07-26 09:02:02 -07006120 ImtConflictTable* current_table = conflict_method->GetImtConflictTable(kRuntimePointerSize);
Mathieu Chartier49b5ced2016-04-14 10:49:19 -07006121 Runtime* const runtime = Runtime::Current();
6122 LinearAlloc* linear_alloc = GetAllocatorForClassLoader(klass->GetClassLoader());
6123 bool new_entry = conflict_method == runtime->GetImtConflictMethod() || force_new_conflict_method;
6124
6125 // Create a new entry if the existing one is the shared conflict method.
6126 ArtMethod* new_conflict_method = new_entry
6127 ? runtime->CreateImtConflictMethod(linear_alloc)
6128 : conflict_method;
6129
6130 // Allocate a new table. Note that we will leak this table at the next conflict,
6131 // but that's a tradeoff compared to making the table fixed size.
6132 void* data = linear_alloc->Alloc(
Mathieu Chartiercdca4762016-04-28 09:44:54 -07006133 Thread::Current(), ImtConflictTable::ComputeSizeWithOneMoreEntry(current_table,
6134 image_pointer_size_));
Mathieu Chartier49b5ced2016-04-14 10:49:19 -07006135 if (data == nullptr) {
6136 LOG(ERROR) << "Failed to allocate conflict table";
6137 return conflict_method;
6138 }
6139 ImtConflictTable* new_table = new (data) ImtConflictTable(current_table,
6140 interface_method,
Mathieu Chartiercdca4762016-04-28 09:44:54 -07006141 method,
6142 image_pointer_size_);
Mathieu Chartier49b5ced2016-04-14 10:49:19 -07006143
6144 // Do a fence to ensure threads see the data in the table before it is assigned
6145 // to the conflict method.
6146 // Note that there is a race in the presence of multiple threads and we may leak
6147 // memory from the LinearAlloc, but that's a tradeoff compared to using
6148 // atomic operations.
6149 QuasiAtomic::ThreadFenceRelease();
Mathieu Chartiercdca4762016-04-28 09:44:54 -07006150 new_conflict_method->SetImtConflictTable(new_table, image_pointer_size_);
Mathieu Chartier49b5ced2016-04-14 10:49:19 -07006151 return new_conflict_method;
6152}
6153
Vladimir Marko921094a2017-01-12 18:37:06 +00006154bool ClassLinker::AllocateIfTableMethodArrays(Thread* self,
6155 Handle<mirror::Class> klass,
6156 Handle<mirror::IfTable> iftable) {
6157 DCHECK(!klass->IsInterface());
6158 const bool has_superclass = klass->HasSuperClass();
6159 const bool extend_super_iftable = has_superclass;
6160 const size_t ifcount = klass->GetIfTableCount();
6161 const size_t super_ifcount = has_superclass ? klass->GetSuperClass()->GetIfTableCount() : 0U;
6162 for (size_t i = 0; i < ifcount; ++i) {
6163 size_t num_methods = iftable->GetInterface(i)->NumDeclaredVirtualMethods();
6164 if (num_methods > 0) {
6165 const bool is_super = i < super_ifcount;
6166 // This is an interface implemented by a super-class. Therefore we can just copy the method
6167 // array from the superclass.
6168 const bool super_interface = is_super && extend_super_iftable;
6169 ObjPtr<mirror::PointerArray> method_array;
6170 if (super_interface) {
6171 ObjPtr<mirror::IfTable> if_table = klass->GetSuperClass()->GetIfTable();
6172 DCHECK(if_table != nullptr);
6173 DCHECK(if_table->GetMethodArray(i) != nullptr);
6174 // If we are working on a super interface, try extending the existing method array.
6175 method_array = down_cast<mirror::PointerArray*>(if_table->GetMethodArray(i)->Clone(self));
6176 } else {
6177 method_array = AllocPointerArray(self, num_methods);
6178 }
6179 if (UNLIKELY(method_array == nullptr)) {
6180 self->AssertPendingOOMException();
6181 return false;
6182 }
6183 iftable->SetMethodArray(i, method_array);
6184 }
6185 }
6186 return true;
6187}
6188
Mathieu Chartier49b5ced2016-04-14 10:49:19 -07006189void ClassLinker::SetIMTRef(ArtMethod* unimplemented_method,
6190 ArtMethod* imt_conflict_method,
6191 ArtMethod* current_method,
Artem Udovichenkoa62cb9b2016-06-30 09:18:25 +00006192 /*out*/bool* new_conflict,
Mathieu Chartier49b5ced2016-04-14 10:49:19 -07006193 /*out*/ArtMethod** imt_ref) {
Alex Lighteb7c1442015-08-31 13:17:42 -07006194 // Place method in imt if entry is empty, place conflict otherwise.
6195 if (*imt_ref == unimplemented_method) {
6196 *imt_ref = current_method;
Nicolas Geoffray796d6302016-03-13 22:22:31 +00006197 } else if (!(*imt_ref)->IsRuntimeMethod()) {
Alex Lighteb7c1442015-08-31 13:17:42 -07006198 // If we are not a conflict and we have the same signature and name as the imt
6199 // entry, it must be that we overwrote a superclass vtable entry.
Nicolas Geoffray796d6302016-03-13 22:22:31 +00006200 // Note that we have checked IsRuntimeMethod, as there may be multiple different
6201 // conflict methods.
Alex Lighteb7c1442015-08-31 13:17:42 -07006202 MethodNameAndSignatureComparator imt_comparator(
Mathieu Chartier49b5ced2016-04-14 10:49:19 -07006203 (*imt_ref)->GetInterfaceMethodIfProxy(image_pointer_size_));
Alex Lighteb7c1442015-08-31 13:17:42 -07006204 if (imt_comparator.HasSameNameAndSignature(
Mathieu Chartier49b5ced2016-04-14 10:49:19 -07006205 current_method->GetInterfaceMethodIfProxy(image_pointer_size_))) {
Alex Lighteb7c1442015-08-31 13:17:42 -07006206 *imt_ref = current_method;
6207 } else {
Alex Light9139e002015-10-09 15:59:48 -07006208 *imt_ref = imt_conflict_method;
Artem Udovichenkoa62cb9b2016-06-30 09:18:25 +00006209 *new_conflict = true;
Alex Lighteb7c1442015-08-31 13:17:42 -07006210 }
Nicolas Geoffray796d6302016-03-13 22:22:31 +00006211 } else {
6212 // Place the default conflict method. Note that there may be an existing conflict
6213 // method in the IMT, but it could be one tailored to the super class, with a
6214 // specific ImtConflictTable.
6215 *imt_ref = imt_conflict_method;
Artem Udovichenkoa62cb9b2016-06-30 09:18:25 +00006216 *new_conflict = true;
Alex Lighteb7c1442015-08-31 13:17:42 -07006217 }
6218}
6219
Mathieu Chartier28357fa2016-10-18 16:27:40 -07006220void ClassLinker::FillIMTAndConflictTables(ObjPtr<mirror::Class> klass) {
David Sehr709b0702016-10-13 09:12:37 -07006221 DCHECK(klass->ShouldHaveImt()) << klass->PrettyClass();
6222 DCHECK(!klass->IsTemp()) << klass->PrettyClass();
Artem Udovichenkoa62cb9b2016-06-30 09:18:25 +00006223 ArtMethod* imt_data[ImTable::kSize];
Mathieu Chartiercdca4762016-04-28 09:44:54 -07006224 Runtime* const runtime = Runtime::Current();
6225 ArtMethod* const unimplemented_method = runtime->GetImtUnimplementedMethod();
6226 ArtMethod* const conflict_method = runtime->GetImtConflictMethod();
Artem Udovichenkoa62cb9b2016-06-30 09:18:25 +00006227 std::fill_n(imt_data, arraysize(imt_data), unimplemented_method);
Mathieu Chartiercdca4762016-04-28 09:44:54 -07006228 if (klass->GetIfTable() != nullptr) {
Artem Udovichenkoa62cb9b2016-06-30 09:18:25 +00006229 bool new_conflict = false;
Mathieu Chartiercdca4762016-04-28 09:44:54 -07006230 FillIMTFromIfTable(klass->GetIfTable(),
6231 unimplemented_method,
6232 conflict_method,
6233 klass,
Artem Udovichenkoa62cb9b2016-06-30 09:18:25 +00006234 /*create_conflict_tables*/true,
6235 /*ignore_copied_methods*/false,
6236 &new_conflict,
6237 &imt_data[0]);
Mathieu Chartiercdca4762016-04-28 09:44:54 -07006238 }
Artem Udovichenkoa62cb9b2016-06-30 09:18:25 +00006239 if (!klass->ShouldHaveImt()) {
6240 return;
6241 }
6242 // Compare the IMT with the super class including the conflict methods. If they are equivalent,
6243 // we can just use the same pointer.
6244 ImTable* imt = nullptr;
Mathieu Chartier28357fa2016-10-18 16:27:40 -07006245 ObjPtr<mirror::Class> super_class = klass->GetSuperClass();
Artem Udovichenkoa62cb9b2016-06-30 09:18:25 +00006246 if (super_class != nullptr && super_class->ShouldHaveImt()) {
6247 ImTable* super_imt = super_class->GetImt(image_pointer_size_);
6248 bool same = true;
6249 for (size_t i = 0; same && i < ImTable::kSize; ++i) {
6250 ArtMethod* method = imt_data[i];
6251 ArtMethod* super_method = super_imt->Get(i, image_pointer_size_);
6252 if (method != super_method) {
6253 bool is_conflict_table = method->IsRuntimeMethod() &&
6254 method != unimplemented_method &&
6255 method != conflict_method;
6256 // Verify conflict contents.
6257 bool super_conflict_table = super_method->IsRuntimeMethod() &&
6258 super_method != unimplemented_method &&
6259 super_method != conflict_method;
6260 if (!is_conflict_table || !super_conflict_table) {
6261 same = false;
6262 } else {
6263 ImtConflictTable* table1 = method->GetImtConflictTable(image_pointer_size_);
6264 ImtConflictTable* table2 = super_method->GetImtConflictTable(image_pointer_size_);
6265 same = same && table1->Equals(table2, image_pointer_size_);
6266 }
6267 }
6268 }
6269 if (same) {
6270 imt = super_imt;
6271 }
6272 }
6273 if (imt == nullptr) {
6274 imt = klass->GetImt(image_pointer_size_);
6275 DCHECK(imt != nullptr);
6276 imt->Populate(imt_data, image_pointer_size_);
6277 } else {
6278 klass->SetImt(imt, image_pointer_size_);
Mathieu Chartiercdca4762016-04-28 09:44:54 -07006279 }
6280}
6281
Mathieu Chartiercdca4762016-04-28 09:44:54 -07006282ImtConflictTable* ClassLinker::CreateImtConflictTable(size_t count,
6283 LinearAlloc* linear_alloc,
Andreas Gampe542451c2016-07-26 09:02:02 -07006284 PointerSize image_pointer_size) {
Mathieu Chartiercdca4762016-04-28 09:44:54 -07006285 void* data = linear_alloc->Alloc(Thread::Current(),
6286 ImtConflictTable::ComputeSize(count,
6287 image_pointer_size));
6288 return (data != nullptr) ? new (data) ImtConflictTable(count, image_pointer_size) : nullptr;
6289}
6290
6291ImtConflictTable* ClassLinker::CreateImtConflictTable(size_t count, LinearAlloc* linear_alloc) {
6292 return CreateImtConflictTable(count, linear_alloc, image_pointer_size_);
6293}
6294
Mathieu Chartier28357fa2016-10-18 16:27:40 -07006295void ClassLinker::FillIMTFromIfTable(ObjPtr<mirror::IfTable> if_table,
Mathieu Chartiercdca4762016-04-28 09:44:54 -07006296 ArtMethod* unimplemented_method,
6297 ArtMethod* imt_conflict_method,
Mathieu Chartier28357fa2016-10-18 16:27:40 -07006298 ObjPtr<mirror::Class> klass,
Mathieu Chartiercdca4762016-04-28 09:44:54 -07006299 bool create_conflict_tables,
6300 bool ignore_copied_methods,
Artem Udovichenkoa62cb9b2016-06-30 09:18:25 +00006301 /*out*/bool* new_conflict,
6302 /*out*/ArtMethod** imt) {
6303 uint32_t conflict_counts[ImTable::kSize] = {};
Mathieu Chartier49b5ced2016-04-14 10:49:19 -07006304 for (size_t i = 0, length = if_table->Count(); i < length; ++i) {
Mathieu Chartier28357fa2016-10-18 16:27:40 -07006305 ObjPtr<mirror::Class> interface = if_table->GetInterface(i);
Mathieu Chartier49b5ced2016-04-14 10:49:19 -07006306 const size_t num_virtuals = interface->NumVirtualMethods();
6307 const size_t method_array_count = if_table->GetMethodArrayCount(i);
6308 // Virtual methods can be larger than the if table methods if there are default methods.
6309 DCHECK_GE(num_virtuals, method_array_count);
6310 if (kIsDebugBuild) {
6311 if (klass->IsInterface()) {
6312 DCHECK_EQ(method_array_count, 0u);
6313 } else {
6314 DCHECK_EQ(interface->NumDeclaredVirtualMethods(), method_array_count);
6315 }
6316 }
6317 if (method_array_count == 0) {
6318 continue;
6319 }
6320 auto* method_array = if_table->GetMethodArray(i);
6321 for (size_t j = 0; j < method_array_count; ++j) {
6322 ArtMethod* implementation_method =
6323 method_array->GetElementPtrSize<ArtMethod*>(j, image_pointer_size_);
6324 if (ignore_copied_methods && implementation_method->IsCopied()) {
6325 continue;
6326 }
6327 DCHECK(implementation_method != nullptr);
6328 // Miranda methods cannot be used to implement an interface method, but they are safe to put
6329 // in the IMT since their entrypoint is the interface trampoline. If we put any copied methods
6330 // or interface methods in the IMT here they will not create extra conflicts since we compare
6331 // names and signatures in SetIMTRef.
6332 ArtMethod* interface_method = interface->GetVirtualMethod(j, image_pointer_size_);
Andreas Gampe75a7db62016-09-26 12:04:26 -07006333 const uint32_t imt_index = ImTable::GetImtIndex(interface_method);
Mathieu Chartier49b5ced2016-04-14 10:49:19 -07006334
6335 // There is only any conflicts if all of the interface methods for an IMT slot don't have
6336 // the same implementation method, keep track of this to avoid creating a conflict table in
6337 // this case.
6338
6339 // Conflict table size for each IMT slot.
6340 ++conflict_counts[imt_index];
6341
6342 SetIMTRef(unimplemented_method,
6343 imt_conflict_method,
6344 implementation_method,
Artem Udovichenkoa62cb9b2016-06-30 09:18:25 +00006345 /*out*/new_conflict,
Mathieu Chartiercdca4762016-04-28 09:44:54 -07006346 /*out*/&imt[imt_index]);
Mathieu Chartier49b5ced2016-04-14 10:49:19 -07006347 }
6348 }
6349
6350 if (create_conflict_tables) {
6351 // Create the conflict tables.
6352 LinearAlloc* linear_alloc = GetAllocatorForClassLoader(klass->GetClassLoader());
Artem Udovichenkoa62cb9b2016-06-30 09:18:25 +00006353 for (size_t i = 0; i < ImTable::kSize; ++i) {
Mathieu Chartier49b5ced2016-04-14 10:49:19 -07006354 size_t conflicts = conflict_counts[i];
Mathieu Chartiercdca4762016-04-28 09:44:54 -07006355 if (imt[i] == imt_conflict_method) {
6356 ImtConflictTable* new_table = CreateImtConflictTable(conflicts, linear_alloc);
6357 if (new_table != nullptr) {
6358 ArtMethod* new_conflict_method =
6359 Runtime::Current()->CreateImtConflictMethod(linear_alloc);
6360 new_conflict_method->SetImtConflictTable(new_table, image_pointer_size_);
6361 imt[i] = new_conflict_method;
Mathieu Chartier49b5ced2016-04-14 10:49:19 -07006362 } else {
6363 LOG(ERROR) << "Failed to allocate conflict table";
Mathieu Chartiercdca4762016-04-28 09:44:54 -07006364 imt[i] = imt_conflict_method;
Mathieu Chartier49b5ced2016-04-14 10:49:19 -07006365 }
6366 } else {
Mathieu Chartiercdca4762016-04-28 09:44:54 -07006367 DCHECK_NE(imt[i], imt_conflict_method);
Mathieu Chartier49b5ced2016-04-14 10:49:19 -07006368 }
6369 }
6370
Mathieu Chartier49b5ced2016-04-14 10:49:19 -07006371 for (size_t i = 0, length = if_table->Count(); i < length; ++i) {
Mathieu Chartier28357fa2016-10-18 16:27:40 -07006372 ObjPtr<mirror::Class> interface = if_table->GetInterface(i);
Mathieu Chartier49b5ced2016-04-14 10:49:19 -07006373 const size_t method_array_count = if_table->GetMethodArrayCount(i);
6374 // Virtual methods can be larger than the if table methods if there are default methods.
6375 if (method_array_count == 0) {
6376 continue;
6377 }
6378 auto* method_array = if_table->GetMethodArray(i);
6379 for (size_t j = 0; j < method_array_count; ++j) {
6380 ArtMethod* implementation_method =
6381 method_array->GetElementPtrSize<ArtMethod*>(j, image_pointer_size_);
6382 if (ignore_copied_methods && implementation_method->IsCopied()) {
6383 continue;
6384 }
6385 DCHECK(implementation_method != nullptr);
6386 ArtMethod* interface_method = interface->GetVirtualMethod(j, image_pointer_size_);
Andreas Gampe75a7db62016-09-26 12:04:26 -07006387 const uint32_t imt_index = ImTable::GetImtIndex(interface_method);
Mathieu Chartiercdca4762016-04-28 09:44:54 -07006388 if (!imt[imt_index]->IsRuntimeMethod() ||
6389 imt[imt_index] == unimplemented_method ||
6390 imt[imt_index] == imt_conflict_method) {
6391 continue;
Mathieu Chartier49b5ced2016-04-14 10:49:19 -07006392 }
Mathieu Chartiercdca4762016-04-28 09:44:54 -07006393 ImtConflictTable* table = imt[imt_index]->GetImtConflictTable(image_pointer_size_);
6394 const size_t num_entries = table->NumEntries(image_pointer_size_);
6395 table->SetInterfaceMethod(num_entries, image_pointer_size_, interface_method);
6396 table->SetImplementationMethod(num_entries, image_pointer_size_, implementation_method);
Mathieu Chartier49b5ced2016-04-14 10:49:19 -07006397 }
6398 }
6399 }
6400}
6401
Alex Lighteb7c1442015-08-31 13:17:42 -07006402// Simple helper function that checks that no subtypes of 'val' are contained within the 'classes'
6403// set.
Mathieu Chartier28357fa2016-10-18 16:27:40 -07006404static bool NotSubinterfaceOfAny(
6405 const std::unordered_set<ObjPtr<mirror::Class>, HashObjPtr>& classes,
6406 ObjPtr<mirror::Class> val)
Alex Lighteb7c1442015-08-31 13:17:42 -07006407 REQUIRES(Roles::uninterruptible_)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07006408 REQUIRES_SHARED(Locks::mutator_lock_) {
Alex Lighteb7c1442015-08-31 13:17:42 -07006409 DCHECK(val != nullptr);
Mathieu Chartier28357fa2016-10-18 16:27:40 -07006410 for (ObjPtr<mirror::Class> c : classes) {
6411 if (val->IsAssignableFrom(c)) {
Alex Lighteb7c1442015-08-31 13:17:42 -07006412 return false;
6413 }
6414 }
6415 return true;
6416}
6417
6418// Fills in and flattens the interface inheritance hierarchy.
6419//
6420// By the end of this function all interfaces in the transitive closure of to_process are added to
6421// the iftable and every interface precedes all of its sub-interfaces in this list.
6422//
6423// all I, J: Interface | I <: J implies J precedes I
6424//
6425// (note A <: B means that A is a subtype of B)
6426//
6427// This returns the total number of items in the iftable. The iftable might be resized down after
6428// this call.
6429//
6430// We order this backwards so that we do not need to reorder superclass interfaces when new
6431// interfaces are added in subclass's interface tables.
6432//
6433// Upon entry into this function iftable is a copy of the superclass's iftable with the first
6434// super_ifcount entries filled in with the transitive closure of the interfaces of the superclass.
6435// The other entries are uninitialized. We will fill in the remaining entries in this function. The
6436// iftable must be large enough to hold all interfaces without changing its size.
Mathieu Chartier28357fa2016-10-18 16:27:40 -07006437static size_t FillIfTable(ObjPtr<mirror::IfTable> iftable,
Alex Lighteb7c1442015-08-31 13:17:42 -07006438 size_t super_ifcount,
6439 std::vector<mirror::Class*> to_process)
6440 REQUIRES(Roles::uninterruptible_)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07006441 REQUIRES_SHARED(Locks::mutator_lock_) {
Alex Lighteb7c1442015-08-31 13:17:42 -07006442 // This is the set of all class's already in the iftable. Used to make checking if a class has
6443 // already been added quicker.
Mathieu Chartier28357fa2016-10-18 16:27:40 -07006444 std::unordered_set<ObjPtr<mirror::Class>, HashObjPtr> classes_in_iftable;
Alex Lighteb7c1442015-08-31 13:17:42 -07006445 // The first super_ifcount elements are from the superclass. We note that they are already added.
6446 for (size_t i = 0; i < super_ifcount; i++) {
Mathieu Chartier28357fa2016-10-18 16:27:40 -07006447 ObjPtr<mirror::Class> iface = iftable->GetInterface(i);
Alex Lighteb7c1442015-08-31 13:17:42 -07006448 DCHECK(NotSubinterfaceOfAny(classes_in_iftable, iface)) << "Bad ordering.";
6449 classes_in_iftable.insert(iface);
6450 }
6451 size_t filled_ifcount = super_ifcount;
Mathieu Chartier28357fa2016-10-18 16:27:40 -07006452 for (ObjPtr<mirror::Class> interface : to_process) {
Alex Lighteb7c1442015-08-31 13:17:42 -07006453 // Let us call the first filled_ifcount elements of iftable the current-iface-list.
6454 // At this point in the loop current-iface-list has the invariant that:
6455 // for every pair of interfaces I,J within it:
6456 // if index_of(I) < index_of(J) then I is not a subtype of J
6457
6458 // If we have already seen this element then all of its super-interfaces must already be in the
6459 // current-iface-list so we can skip adding it.
6460 if (!ContainsElement(classes_in_iftable, interface)) {
6461 // We haven't seen this interface so add all of its super-interfaces onto the
6462 // current-iface-list, skipping those already on it.
6463 int32_t ifcount = interface->GetIfTableCount();
6464 for (int32_t j = 0; j < ifcount; j++) {
Mathieu Chartier28357fa2016-10-18 16:27:40 -07006465 ObjPtr<mirror::Class> super_interface = interface->GetIfTable()->GetInterface(j);
Alex Lighteb7c1442015-08-31 13:17:42 -07006466 if (!ContainsElement(classes_in_iftable, super_interface)) {
6467 DCHECK(NotSubinterfaceOfAny(classes_in_iftable, super_interface)) << "Bad ordering.";
6468 classes_in_iftable.insert(super_interface);
6469 iftable->SetInterface(filled_ifcount, super_interface);
6470 filled_ifcount++;
6471 }
6472 }
6473 DCHECK(NotSubinterfaceOfAny(classes_in_iftable, interface)) << "Bad ordering";
6474 // Place this interface onto the current-iface-list after all of its super-interfaces.
6475 classes_in_iftable.insert(interface);
6476 iftable->SetInterface(filled_ifcount, interface);
6477 filled_ifcount++;
6478 } else if (kIsDebugBuild) {
6479 // Check all super-interfaces are already in the list.
6480 int32_t ifcount = interface->GetIfTableCount();
6481 for (int32_t j = 0; j < ifcount; j++) {
Mathieu Chartier28357fa2016-10-18 16:27:40 -07006482 ObjPtr<mirror::Class> super_interface = interface->GetIfTable()->GetInterface(j);
Alex Lighteb7c1442015-08-31 13:17:42 -07006483 DCHECK(ContainsElement(classes_in_iftable, super_interface))
David Sehr709b0702016-10-13 09:12:37 -07006484 << "Iftable does not contain " << mirror::Class::PrettyClass(super_interface)
6485 << ", a superinterface of " << interface->PrettyClass();
Alex Lighteb7c1442015-08-31 13:17:42 -07006486 }
6487 }
6488 }
6489 if (kIsDebugBuild) {
6490 // Check that the iftable is ordered correctly.
6491 for (size_t i = 0; i < filled_ifcount; i++) {
Mathieu Chartier28357fa2016-10-18 16:27:40 -07006492 ObjPtr<mirror::Class> if_a = iftable->GetInterface(i);
Alex Lighteb7c1442015-08-31 13:17:42 -07006493 for (size_t j = i + 1; j < filled_ifcount; j++) {
Mathieu Chartier28357fa2016-10-18 16:27:40 -07006494 ObjPtr<mirror::Class> if_b = iftable->GetInterface(j);
Alex Lighteb7c1442015-08-31 13:17:42 -07006495 // !(if_a <: if_b)
6496 CHECK(!if_b->IsAssignableFrom(if_a))
David Sehr709b0702016-10-13 09:12:37 -07006497 << "Bad interface order: " << mirror::Class::PrettyClass(if_a) << " (index " << i
6498 << ") extends "
6499 << if_b->PrettyClass() << " (index " << j << ") and so should be after it in the "
Alex Lighteb7c1442015-08-31 13:17:42 -07006500 << "interface list.";
6501 }
6502 }
6503 }
6504 return filled_ifcount;
6505}
6506
6507bool ClassLinker::SetupInterfaceLookupTable(Thread* self, Handle<mirror::Class> klass,
6508 Handle<mirror::ObjectArray<mirror::Class>> interfaces) {
6509 StackHandleScope<1> hs(self);
Mathieu Chartier6beced42016-11-15 15:51:31 -08006510 const bool has_superclass = klass->HasSuperClass();
6511 const size_t super_ifcount = has_superclass ? klass->GetSuperClass()->GetIfTableCount() : 0U;
Andreas Gampefa4333d2017-02-14 11:10:34 -08006512 const bool have_interfaces = interfaces != nullptr;
Alex Lighteb7c1442015-08-31 13:17:42 -07006513 const size_t num_interfaces =
6514 have_interfaces ? interfaces->GetLength() : klass->NumDirectInterfaces();
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07006515 if (num_interfaces == 0) {
6516 if (super_ifcount == 0) {
Mathieu Chartier6beced42016-11-15 15:51:31 -08006517 if (LIKELY(has_superclass)) {
6518 klass->SetIfTable(klass->GetSuperClass()->GetIfTable());
6519 }
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07006520 // Class implements no interfaces.
6521 DCHECK_EQ(klass->GetIfTableCount(), 0);
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07006522 return true;
6523 }
Ian Rogers9bc81912012-10-11 21:43:36 -07006524 // Class implements same interfaces as parent, are any of these not marker interfaces?
6525 bool has_non_marker_interface = false;
Mathieu Chartier28357fa2016-10-18 16:27:40 -07006526 ObjPtr<mirror::IfTable> super_iftable = klass->GetSuperClass()->GetIfTable();
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07006527 for (size_t i = 0; i < super_ifcount; ++i) {
Ian Rogers9bc81912012-10-11 21:43:36 -07006528 if (super_iftable->GetMethodArrayCount(i) > 0) {
6529 has_non_marker_interface = true;
6530 break;
6531 }
6532 }
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07006533 // Class just inherits marker interfaces from parent so recycle parent's iftable.
Ian Rogers9bc81912012-10-11 21:43:36 -07006534 if (!has_non_marker_interface) {
Ian Rogers9bc81912012-10-11 21:43:36 -07006535 klass->SetIfTable(super_iftable);
6536 return true;
6537 }
6538 }
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07006539 size_t ifcount = super_ifcount + num_interfaces;
Alex Lighteb7c1442015-08-31 13:17:42 -07006540 // Check that every class being implemented is an interface.
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07006541 for (size_t i = 0; i < num_interfaces; i++) {
Mathieu Chartier28bd2e42016-10-04 13:54:57 -07006542 ObjPtr<mirror::Class> interface = have_interfaces
Mathieu Chartierc77f3ab2015-09-03 19:41:50 -07006543 ? interfaces->GetWithoutChecks(i)
Vladimir Marko19a4d372016-12-08 14:41:46 +00006544 : mirror::Class::GetDirectInterface(self, klass.Get(), i);
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07006545 DCHECK(interface != nullptr);
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07006546 if (UNLIKELY(!interface->IsInterface())) {
6547 std::string temp;
Mathieu Chartierc77f3ab2015-09-03 19:41:50 -07006548 ThrowIncompatibleClassChangeError(klass.Get(),
6549 "Class %s implements non-interface class %s",
David Sehr709b0702016-10-13 09:12:37 -07006550 klass->PrettyDescriptor().c_str(),
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07006551 PrettyDescriptor(interface->GetDescriptor(&temp)).c_str());
6552 return false;
6553 }
6554 ifcount += interface->GetIfTableCount();
6555 }
Alex Lighteb7c1442015-08-31 13:17:42 -07006556 // Create the interface function table.
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07006557 MutableHandle<mirror::IfTable> iftable(hs.NewHandle(AllocIfTable(self, ifcount)));
Andreas Gampefa4333d2017-02-14 11:10:34 -08006558 if (UNLIKELY(iftable == nullptr)) {
Mathieu Chartiere401d142015-04-22 13:56:20 -07006559 self->AssertPendingOOMException();
Ian Rogersa436fde2013-08-27 23:34:06 -07006560 return false;
6561 }
Alex Lighteb7c1442015-08-31 13:17:42 -07006562 // Fill in table with superclass's iftable.
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07006563 if (super_ifcount != 0) {
Mathieu Chartier28357fa2016-10-18 16:27:40 -07006564 ObjPtr<mirror::IfTable> super_iftable = klass->GetSuperClass()->GetIfTable();
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07006565 for (size_t i = 0; i < super_ifcount; i++) {
Mathieu Chartier28357fa2016-10-18 16:27:40 -07006566 ObjPtr<mirror::Class> super_interface = super_iftable->GetInterface(i);
Ian Rogers9bc81912012-10-11 21:43:36 -07006567 iftable->SetInterface(i, super_interface);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07006568 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07006569 }
Alex Lighteb7c1442015-08-31 13:17:42 -07006570
6571 // Note that AllowThreadSuspension is to thread suspension as pthread_testcancel is to pthread
6572 // cancellation. That is it will suspend if one has a pending suspend request but otherwise
6573 // doesn't really do anything.
Ian Rogers7b078e82014-09-10 14:44:24 -07006574 self->AllowThreadSuspension();
Alex Lighteb7c1442015-08-31 13:17:42 -07006575
6576 size_t new_ifcount;
6577 {
Mathieu Chartier268764d2016-09-13 12:09:38 -07006578 ScopedAssertNoThreadSuspension nts("Copying mirror::Class*'s for FillIfTable");
Alex Lighteb7c1442015-08-31 13:17:42 -07006579 std::vector<mirror::Class*> to_add;
6580 for (size_t i = 0; i < num_interfaces; i++) {
Mathieu Chartier28bd2e42016-10-04 13:54:57 -07006581 ObjPtr<mirror::Class> interface = have_interfaces ? interfaces->Get(i) :
Vladimir Marko19a4d372016-12-08 14:41:46 +00006582 mirror::Class::GetDirectInterface(self, klass.Get(), i);
Mathieu Chartier28bd2e42016-10-04 13:54:57 -07006583 to_add.push_back(interface.Ptr());
Ian Rogersb52b01a2012-01-12 17:01:38 -08006584 }
Alex Lighteb7c1442015-08-31 13:17:42 -07006585
6586 new_ifcount = FillIfTable(iftable.Get(), super_ifcount, std::move(to_add));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07006587 }
Alex Lighteb7c1442015-08-31 13:17:42 -07006588
Ian Rogers7b078e82014-09-10 14:44:24 -07006589 self->AllowThreadSuspension();
Alex Lighteb7c1442015-08-31 13:17:42 -07006590
Ian Rogersb52b01a2012-01-12 17:01:38 -08006591 // Shrink iftable in case duplicates were found
Alex Lighteb7c1442015-08-31 13:17:42 -07006592 if (new_ifcount < ifcount) {
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07006593 DCHECK_NE(num_interfaces, 0U);
Mathieu Chartiere401d142015-04-22 13:56:20 -07006594 iftable.Assign(down_cast<mirror::IfTable*>(
Alex Lighteb7c1442015-08-31 13:17:42 -07006595 iftable->CopyOf(self, new_ifcount * mirror::IfTable::kMax)));
Andreas Gampefa4333d2017-02-14 11:10:34 -08006596 if (UNLIKELY(iftable == nullptr)) {
Mathieu Chartiere401d142015-04-22 13:56:20 -07006597 self->AssertPendingOOMException();
Ian Rogersa436fde2013-08-27 23:34:06 -07006598 return false;
6599 }
Alex Lighteb7c1442015-08-31 13:17:42 -07006600 ifcount = new_ifcount;
Ian Rogersb52b01a2012-01-12 17:01:38 -08006601 } else {
Alex Lighteb7c1442015-08-31 13:17:42 -07006602 DCHECK_EQ(new_ifcount, ifcount);
Ian Rogersb52b01a2012-01-12 17:01:38 -08006603 }
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07006604 klass->SetIfTable(iftable.Get());
Alex Lighteb7c1442015-08-31 13:17:42 -07006605 return true;
6606}
6607
Alex Light1f3925d2016-09-07 12:04:20 -07006608// Finds the method with a name/signature that matches cmp in the given lists of methods. The list
6609// of methods must be unique.
6610static ArtMethod* FindSameNameAndSignature(MethodNameAndSignatureComparator& cmp ATTRIBUTE_UNUSED) {
6611 return nullptr;
6612}
6613
6614template <typename ... Types>
Alex Light9139e002015-10-09 15:59:48 -07006615static ArtMethod* FindSameNameAndSignature(MethodNameAndSignatureComparator& cmp,
Alex Light1f3925d2016-09-07 12:04:20 -07006616 const ScopedArenaVector<ArtMethod*>& list,
6617 const Types& ... rest)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07006618 REQUIRES_SHARED(Locks::mutator_lock_) {
Alex Light9139e002015-10-09 15:59:48 -07006619 for (ArtMethod* method : list) {
6620 if (cmp.HasSameNameAndSignature(method)) {
6621 return method;
6622 }
6623 }
Alex Light1f3925d2016-09-07 12:04:20 -07006624 return FindSameNameAndSignature(cmp, rest...);
Alex Light9139e002015-10-09 15:59:48 -07006625}
6626
Alex Light1f3925d2016-09-07 12:04:20 -07006627// Check that all vtable entries are present in this class's virtuals or are the same as a
6628// superclasses vtable entry.
6629static void CheckClassOwnsVTableEntries(Thread* self,
6630 Handle<mirror::Class> klass,
6631 PointerSize pointer_size)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07006632 REQUIRES_SHARED(Locks::mutator_lock_) {
Alex Light1f3925d2016-09-07 12:04:20 -07006633 StackHandleScope<2> hs(self);
6634 Handle<mirror::PointerArray> check_vtable(hs.NewHandle(klass->GetVTableDuringLinking()));
Mathieu Chartier28357fa2016-10-18 16:27:40 -07006635 ObjPtr<mirror::Class> super_temp = (klass->HasSuperClass()) ? klass->GetSuperClass() : nullptr;
Alex Light1f3925d2016-09-07 12:04:20 -07006636 Handle<mirror::Class> superclass(hs.NewHandle(super_temp));
Andreas Gampefa4333d2017-02-14 11:10:34 -08006637 int32_t super_vtable_length = (superclass != nullptr) ? superclass->GetVTableLength() : 0;
Alex Lighte64300b2015-12-15 15:02:47 -08006638 for (int32_t i = 0; i < check_vtable->GetLength(); ++i) {
6639 ArtMethod* m = check_vtable->GetElementPtrSize<ArtMethod*>(i, pointer_size);
6640 CHECK(m != nullptr);
6641
Alex Lighta41a30782017-03-29 11:33:19 -07006642 if (m->GetMethodIndexDuringLinking() != i) {
6643 LOG(WARNING) << m->PrettyMethod()
6644 << " has an unexpected method index for its spot in the vtable for class"
6645 << klass->PrettyClass();
6646 }
Alex Lighte64300b2015-12-15 15:02:47 -08006647 ArraySlice<ArtMethod> virtuals = klass->GetVirtualMethodsSliceUnchecked(pointer_size);
6648 auto is_same_method = [m] (const ArtMethod& meth) {
6649 return &meth == m;
6650 };
Alex Light3f980532017-03-17 15:10:32 -07006651 if (!((super_vtable_length > i && superclass->GetVTableEntry(i, pointer_size) == m) ||
6652 std::find_if(virtuals.begin(), virtuals.end(), is_same_method) != virtuals.end())) {
6653 LOG(WARNING) << m->PrettyMethod() << " does not seem to be owned by current class "
6654 << klass->PrettyClass() << " or any of its superclasses!";
6655 }
Alex Lighte64300b2015-12-15 15:02:47 -08006656 }
6657}
6658
Alex Light1f3925d2016-09-07 12:04:20 -07006659// Check to make sure the vtable does not have duplicates. Duplicates could cause problems when a
6660// method is overridden in a subclass.
6661static void CheckVTableHasNoDuplicates(Thread* self,
6662 Handle<mirror::Class> klass,
6663 PointerSize pointer_size)
6664 REQUIRES_SHARED(Locks::mutator_lock_) {
6665 StackHandleScope<1> hs(self);
6666 Handle<mirror::PointerArray> vtable(hs.NewHandle(klass->GetVTableDuringLinking()));
6667 int32_t num_entries = vtable->GetLength();
6668 for (int32_t i = 0; i < num_entries; i++) {
6669 ArtMethod* vtable_entry = vtable->GetElementPtrSize<ArtMethod*>(i, pointer_size);
6670 // Don't bother if we cannot 'see' the vtable entry (i.e. it is a package-private member maybe).
6671 if (!klass->CanAccessMember(vtable_entry->GetDeclaringClass(),
6672 vtable_entry->GetAccessFlags())) {
6673 continue;
6674 }
6675 MethodNameAndSignatureComparator name_comparator(
6676 vtable_entry->GetInterfaceMethodIfProxy(pointer_size));
Alex Lightc7a420c2016-10-18 14:33:18 -07006677 for (int32_t j = i + 1; j < num_entries; j++) {
Alex Light1f3925d2016-09-07 12:04:20 -07006678 ArtMethod* other_entry = vtable->GetElementPtrSize<ArtMethod*>(j, pointer_size);
Alex Lightc7a420c2016-10-18 14:33:18 -07006679 if (!klass->CanAccessMember(other_entry->GetDeclaringClass(),
6680 other_entry->GetAccessFlags())) {
6681 continue;
6682 }
Alex Light3f980532017-03-17 15:10:32 -07006683 if (vtable_entry == other_entry ||
6684 name_comparator.HasSameNameAndSignature(
6685 other_entry->GetInterfaceMethodIfProxy(pointer_size))) {
6686 LOG(WARNING) << "vtable entries " << i << " and " << j << " are identical for "
6687 << klass->PrettyClass() << " in method " << vtable_entry->PrettyMethod()
6688 << " (0x" << std::hex << reinterpret_cast<uintptr_t>(vtable_entry) << ") and "
6689 << other_entry->PrettyMethod() << " (0x" << std::hex
6690 << reinterpret_cast<uintptr_t>(other_entry) << ")";
6691 }
Alex Light1f3925d2016-09-07 12:04:20 -07006692 }
6693 }
6694}
6695
6696static void SanityCheckVTable(Thread* self, Handle<mirror::Class> klass, PointerSize pointer_size)
6697 REQUIRES_SHARED(Locks::mutator_lock_) {
6698 CheckClassOwnsVTableEntries(self, klass, pointer_size);
6699 CheckVTableHasNoDuplicates(self, klass, pointer_size);
6700}
6701
Mathieu Chartier49b5ced2016-04-14 10:49:19 -07006702void ClassLinker::FillImtFromSuperClass(Handle<mirror::Class> klass,
6703 ArtMethod* unimplemented_method,
6704 ArtMethod* imt_conflict_method,
Artem Udovichenkoa62cb9b2016-06-30 09:18:25 +00006705 bool* new_conflict,
Mathieu Chartiercdca4762016-04-28 09:44:54 -07006706 ArtMethod** imt) {
Alex Light705ad492015-09-21 11:36:30 -07006707 DCHECK(klass->HasSuperClass());
Mathieu Chartier28357fa2016-10-18 16:27:40 -07006708 ObjPtr<mirror::Class> super_class = klass->GetSuperClass();
Artem Udovichenkoa62cb9b2016-06-30 09:18:25 +00006709 if (super_class->ShouldHaveImt()) {
6710 ImTable* super_imt = super_class->GetImt(image_pointer_size_);
6711 for (size_t i = 0; i < ImTable::kSize; ++i) {
6712 imt[i] = super_imt->Get(i, image_pointer_size_);
Alex Light705ad492015-09-21 11:36:30 -07006713 }
6714 } else {
6715 // No imt in the super class, need to reconstruct from the iftable.
Mathieu Chartier28357fa2016-10-18 16:27:40 -07006716 ObjPtr<mirror::IfTable> if_table = super_class->GetIfTable();
Mathieu Chartier6beced42016-11-15 15:51:31 -08006717 if (if_table->Count() != 0) {
Mathieu Chartier49b5ced2016-04-14 10:49:19 -07006718 // Ignore copied methods since we will handle these in LinkInterfaceMethods.
Mathieu Chartiercdca4762016-04-28 09:44:54 -07006719 FillIMTFromIfTable(if_table,
6720 unimplemented_method,
6721 imt_conflict_method,
6722 klass.Get(),
6723 /*create_conflict_table*/false,
6724 /*ignore_copied_methods*/true,
Artem Udovichenkoa62cb9b2016-06-30 09:18:25 +00006725 /*out*/new_conflict,
Mathieu Chartiercdca4762016-04-28 09:44:54 -07006726 /*out*/imt);
Alex Light705ad492015-09-21 11:36:30 -07006727 }
6728 }
6729}
6730
Vladimir Marko921094a2017-01-12 18:37:06 +00006731class ClassLinker::LinkInterfaceMethodsHelper {
6732 public:
6733 LinkInterfaceMethodsHelper(ClassLinker* class_linker,
6734 Handle<mirror::Class> klass,
6735 Thread* self,
6736 Runtime* runtime)
6737 : class_linker_(class_linker),
6738 klass_(klass),
6739 method_alignment_(ArtMethod::Alignment(class_linker->GetImagePointerSize())),
6740 method_size_(ArtMethod::Size(class_linker->GetImagePointerSize())),
6741 self_(self),
6742 stack_(runtime->GetLinearAlloc()->GetArenaPool()),
6743 allocator_(&stack_),
6744 default_conflict_methods_(allocator_.Adapter()),
6745 overriding_default_conflict_methods_(allocator_.Adapter()),
6746 miranda_methods_(allocator_.Adapter()),
6747 default_methods_(allocator_.Adapter()),
6748 overriding_default_methods_(allocator_.Adapter()),
6749 move_table_(allocator_.Adapter()) {
6750 }
6751
6752 ArtMethod* FindMethod(ArtMethod* interface_method,
6753 MethodNameAndSignatureComparator& interface_name_comparator,
6754 ArtMethod* vtable_impl)
6755 REQUIRES_SHARED(Locks::mutator_lock_);
6756
6757 ArtMethod* GetOrCreateMirandaMethod(ArtMethod* interface_method,
6758 MethodNameAndSignatureComparator& interface_name_comparator)
6759 REQUIRES_SHARED(Locks::mutator_lock_);
6760
6761 bool HasNewVirtuals() const {
6762 return !(miranda_methods_.empty() &&
6763 default_methods_.empty() &&
6764 overriding_default_methods_.empty() &&
6765 overriding_default_conflict_methods_.empty() &&
6766 default_conflict_methods_.empty());
6767 }
6768
6769 void ReallocMethods() REQUIRES_SHARED(Locks::mutator_lock_);
6770
6771 ObjPtr<mirror::PointerArray> UpdateVtable(
6772 const std::unordered_map<size_t, ClassLinker::MethodTranslation>& default_translations,
6773 ObjPtr<mirror::PointerArray> old_vtable) REQUIRES_SHARED(Locks::mutator_lock_);
6774
6775 void UpdateIfTable(Handle<mirror::IfTable> iftable) REQUIRES_SHARED(Locks::mutator_lock_);
6776
6777 void UpdateIMT(ArtMethod** out_imt);
6778
6779 void CheckNoStaleMethodsInDexCache() REQUIRES_SHARED(Locks::mutator_lock_) {
6780 if (kIsDebugBuild) {
6781 PointerSize pointer_size = class_linker_->GetImagePointerSize();
6782 // Check that there are no stale methods are in the dex cache array.
6783 auto* resolved_methods = klass_->GetDexCache()->GetResolvedMethods();
6784 for (size_t i = 0, count = klass_->GetDexCache()->NumResolvedMethods(); i < count; ++i) {
Vladimir Marko07bfbac2017-07-06 14:55:02 +01006785 auto pair = mirror::DexCache::GetNativePairPtrSize(resolved_methods, i, pointer_size);
6786 ArtMethod* m = pair.object;
Vladimir Marko921094a2017-01-12 18:37:06 +00006787 CHECK(move_table_.find(m) == move_table_.end() ||
6788 // The original versions of copied methods will still be present so allow those too.
6789 // Note that if the first check passes this might fail to GetDeclaringClass().
6790 std::find_if(m->GetDeclaringClass()->GetMethods(pointer_size).begin(),
6791 m->GetDeclaringClass()->GetMethods(pointer_size).end(),
6792 [m] (ArtMethod& meth) {
6793 return &meth == m;
6794 }) != m->GetDeclaringClass()->GetMethods(pointer_size).end())
6795 << "Obsolete method " << m->PrettyMethod() << " is in dex cache!";
6796 }
6797 }
6798 }
6799
6800 void ClobberOldMethods(LengthPrefixedArray<ArtMethod>* old_methods,
6801 LengthPrefixedArray<ArtMethod>* methods) {
6802 if (kIsDebugBuild) {
6803 CHECK(methods != nullptr);
6804 // Put some random garbage in old methods to help find stale pointers.
6805 if (methods != old_methods && old_methods != nullptr) {
6806 // Need to make sure the GC is not running since it could be scanning the methods we are
6807 // about to overwrite.
6808 ScopedThreadStateChange tsc(self_, kSuspended);
6809 gc::ScopedGCCriticalSection gcs(self_,
6810 gc::kGcCauseClassLinker,
6811 gc::kCollectorTypeClassLinker);
6812 const size_t old_size = LengthPrefixedArray<ArtMethod>::ComputeSize(old_methods->size(),
6813 method_size_,
6814 method_alignment_);
6815 memset(old_methods, 0xFEu, old_size);
6816 }
6817 }
6818 }
6819
6820 private:
6821 size_t NumberOfNewVirtuals() const {
6822 return miranda_methods_.size() +
6823 default_methods_.size() +
6824 overriding_default_conflict_methods_.size() +
6825 overriding_default_methods_.size() +
6826 default_conflict_methods_.size();
6827 }
6828
6829 bool FillTables() REQUIRES_SHARED(Locks::mutator_lock_) {
6830 return !klass_->IsInterface();
6831 }
6832
6833 void LogNewVirtuals() const REQUIRES_SHARED(Locks::mutator_lock_) {
6834 DCHECK(!klass_->IsInterface() || (default_methods_.empty() && miranda_methods_.empty()))
6835 << "Interfaces should only have default-conflict methods appended to them.";
6836 VLOG(class_linker) << mirror::Class::PrettyClass(klass_.Get()) << ": miranda_methods="
6837 << miranda_methods_.size()
6838 << " default_methods=" << default_methods_.size()
6839 << " overriding_default_methods=" << overriding_default_methods_.size()
6840 << " default_conflict_methods=" << default_conflict_methods_.size()
6841 << " overriding_default_conflict_methods="
6842 << overriding_default_conflict_methods_.size();
6843 }
6844
6845 ClassLinker* class_linker_;
6846 Handle<mirror::Class> klass_;
6847 size_t method_alignment_;
6848 size_t method_size_;
6849 Thread* const self_;
6850
6851 // These are allocated on the heap to begin, we then transfer to linear alloc when we re-create
6852 // the virtual methods array.
6853 // Need to use low 4GB arenas for compiler or else the pointers wont fit in 32 bit method array
6854 // during cross compilation.
6855 // Use the linear alloc pool since this one is in the low 4gb for the compiler.
6856 ArenaStack stack_;
6857 ScopedArenaAllocator allocator_;
6858
6859 ScopedArenaVector<ArtMethod*> default_conflict_methods_;
6860 ScopedArenaVector<ArtMethod*> overriding_default_conflict_methods_;
6861 ScopedArenaVector<ArtMethod*> miranda_methods_;
6862 ScopedArenaVector<ArtMethod*> default_methods_;
6863 ScopedArenaVector<ArtMethod*> overriding_default_methods_;
6864
6865 ScopedArenaUnorderedMap<ArtMethod*, ArtMethod*> move_table_;
6866};
6867
6868ArtMethod* ClassLinker::LinkInterfaceMethodsHelper::FindMethod(
6869 ArtMethod* interface_method,
6870 MethodNameAndSignatureComparator& interface_name_comparator,
6871 ArtMethod* vtable_impl) {
6872 ArtMethod* current_method = nullptr;
6873 switch (class_linker_->FindDefaultMethodImplementation(self_,
6874 interface_method,
6875 klass_,
6876 /*out*/&current_method)) {
6877 case DefaultMethodSearchResult::kDefaultConflict: {
6878 // Default method conflict.
6879 DCHECK(current_method == nullptr);
6880 ArtMethod* default_conflict_method = nullptr;
6881 if (vtable_impl != nullptr && vtable_impl->IsDefaultConflicting()) {
6882 // We can reuse the method from the superclass, don't bother adding it to virtuals.
6883 default_conflict_method = vtable_impl;
6884 } else {
6885 // See if we already have a conflict method for this method.
6886 ArtMethod* preexisting_conflict = FindSameNameAndSignature(
6887 interface_name_comparator,
6888 default_conflict_methods_,
6889 overriding_default_conflict_methods_);
6890 if (LIKELY(preexisting_conflict != nullptr)) {
6891 // We already have another conflict we can reuse.
6892 default_conflict_method = preexisting_conflict;
6893 } else {
6894 // Note that we do this even if we are an interface since we need to create this and
6895 // cannot reuse another classes.
6896 // Create a new conflict method for this to use.
6897 default_conflict_method = reinterpret_cast<ArtMethod*>(allocator_.Alloc(method_size_));
6898 new(default_conflict_method) ArtMethod(interface_method,
6899 class_linker_->GetImagePointerSize());
6900 if (vtable_impl == nullptr) {
6901 // Save the conflict method. We need to add it to the vtable.
6902 default_conflict_methods_.push_back(default_conflict_method);
6903 } else {
6904 // Save the conflict method but it is already in the vtable.
6905 overriding_default_conflict_methods_.push_back(default_conflict_method);
6906 }
6907 }
6908 }
6909 current_method = default_conflict_method;
6910 break;
6911 } // case kDefaultConflict
6912 case DefaultMethodSearchResult::kDefaultFound: {
6913 DCHECK(current_method != nullptr);
6914 // Found a default method.
6915 if (vtable_impl != nullptr &&
6916 current_method->GetDeclaringClass() == vtable_impl->GetDeclaringClass()) {
6917 // We found a default method but it was the same one we already have from our
6918 // superclass. Don't bother adding it to our vtable again.
6919 current_method = vtable_impl;
6920 } else if (LIKELY(FillTables())) {
6921 // Interfaces don't need to copy default methods since they don't have vtables.
6922 // Only record this default method if it is new to save space.
6923 // TODO It might be worthwhile to copy default methods on interfaces anyway since it
6924 // would make lookup for interface super much faster. (We would only need to scan
6925 // the iftable to find if there is a NSME or AME.)
6926 ArtMethod* old = FindSameNameAndSignature(interface_name_comparator,
6927 default_methods_,
6928 overriding_default_methods_);
6929 if (old == nullptr) {
6930 // We found a default method implementation and there were no conflicts.
6931 if (vtable_impl == nullptr) {
6932 // Save the default method. We need to add it to the vtable.
6933 default_methods_.push_back(current_method);
6934 } else {
6935 // Save the default method but it is already in the vtable.
6936 overriding_default_methods_.push_back(current_method);
6937 }
6938 } else {
6939 CHECK(old == current_method) << "Multiple default implementations selected!";
6940 }
6941 }
6942 break;
6943 } // case kDefaultFound
6944 case DefaultMethodSearchResult::kAbstractFound: {
6945 DCHECK(current_method == nullptr);
6946 // Abstract method masks all defaults.
6947 if (vtable_impl != nullptr &&
6948 vtable_impl->IsAbstract() &&
6949 !vtable_impl->IsDefaultConflicting()) {
6950 // We need to make this an abstract method but the version in the vtable already is so
6951 // don't do anything.
6952 current_method = vtable_impl;
6953 }
6954 break;
6955 } // case kAbstractFound
6956 }
6957 return current_method;
6958}
6959
6960ArtMethod* ClassLinker::LinkInterfaceMethodsHelper::GetOrCreateMirandaMethod(
6961 ArtMethod* interface_method,
6962 MethodNameAndSignatureComparator& interface_name_comparator) {
6963 // Find out if there is already a miranda method we can use.
6964 ArtMethod* miranda_method = FindSameNameAndSignature(interface_name_comparator,
6965 miranda_methods_);
6966 if (miranda_method == nullptr) {
6967 DCHECK(interface_method->IsAbstract()) << interface_method->PrettyMethod();
6968 miranda_method = reinterpret_cast<ArtMethod*>(allocator_.Alloc(method_size_));
6969 CHECK(miranda_method != nullptr);
6970 // Point the interface table at a phantom slot.
6971 new(miranda_method) ArtMethod(interface_method, class_linker_->GetImagePointerSize());
6972 miranda_methods_.push_back(miranda_method);
6973 }
6974 return miranda_method;
6975}
6976
6977void ClassLinker::LinkInterfaceMethodsHelper::ReallocMethods() {
6978 LogNewVirtuals();
6979
6980 const size_t old_method_count = klass_->NumMethods();
6981 const size_t new_method_count = old_method_count + NumberOfNewVirtuals();
6982 DCHECK_NE(old_method_count, new_method_count);
6983
6984 // Attempt to realloc to save RAM if possible.
6985 LengthPrefixedArray<ArtMethod>* old_methods = klass_->GetMethodsPtr();
6986 // The Realloced virtual methods aren't visible from the class roots, so there is no issue
6987 // where GCs could attempt to mark stale pointers due to memcpy. And since we overwrite the
6988 // realloced memory with out->CopyFrom, we are guaranteed to have objects in the to space since
6989 // CopyFrom has internal read barriers.
6990 //
6991 // TODO We should maybe move some of this into mirror::Class or at least into another method.
6992 const size_t old_size = LengthPrefixedArray<ArtMethod>::ComputeSize(old_method_count,
6993 method_size_,
6994 method_alignment_);
6995 const size_t new_size = LengthPrefixedArray<ArtMethod>::ComputeSize(new_method_count,
6996 method_size_,
6997 method_alignment_);
6998 const size_t old_methods_ptr_size = (old_methods != nullptr) ? old_size : 0;
6999 auto* methods = reinterpret_cast<LengthPrefixedArray<ArtMethod>*>(
Nicolas Geoffray48b40cc2017-08-07 16:52:40 +01007000 class_linker_->GetAllocatorForClassLoader(klass_->GetClassLoader())->Realloc(
Vladimir Marko921094a2017-01-12 18:37:06 +00007001 self_, old_methods, old_methods_ptr_size, new_size));
7002 CHECK(methods != nullptr); // Native allocation failure aborts.
7003
7004 PointerSize pointer_size = class_linker_->GetImagePointerSize();
7005 if (methods != old_methods) {
7006 // Maps from heap allocated miranda method to linear alloc miranda method.
7007 StrideIterator<ArtMethod> out = methods->begin(method_size_, method_alignment_);
7008 // Copy over the old methods.
7009 for (auto& m : klass_->GetMethods(pointer_size)) {
7010 move_table_.emplace(&m, &*out);
7011 // The CopyFrom is only necessary to not miss read barriers since Realloc won't do read
7012 // barriers when it copies.
7013 out->CopyFrom(&m, pointer_size);
7014 ++out;
7015 }
7016 }
7017 StrideIterator<ArtMethod> out(methods->begin(method_size_, method_alignment_) + old_method_count);
7018 // Copy over miranda methods before copying vtable since CopyOf may cause thread suspension and
7019 // we want the roots of the miranda methods to get visited.
Nicolas Geoffray0376a5c2017-01-12 15:15:45 +00007020 for (size_t i = 0; i < miranda_methods_.size(); ++i) {
7021 ArtMethod* mir_method = miranda_methods_[i];
Vladimir Marko921094a2017-01-12 18:37:06 +00007022 ArtMethod& new_method = *out;
7023 new_method.CopyFrom(mir_method, pointer_size);
7024 new_method.SetAccessFlags(new_method.GetAccessFlags() | kAccMiranda | kAccCopied);
7025 DCHECK_NE(new_method.GetAccessFlags() & kAccAbstract, 0u)
7026 << "Miranda method should be abstract!";
7027 move_table_.emplace(mir_method, &new_method);
Nicolas Geoffray0376a5c2017-01-12 15:15:45 +00007028 // Update the entry in the method array, as the array will be used for future lookups,
7029 // where thread suspension is allowed.
7030 // As such, the array should not contain locally allocated ArtMethod, otherwise the GC
7031 // would not see them.
7032 miranda_methods_[i] = &new_method;
Vladimir Marko921094a2017-01-12 18:37:06 +00007033 ++out;
7034 }
7035 // We need to copy the default methods into our own method table since the runtime requires that
7036 // every method on a class's vtable be in that respective class's virtual method table.
7037 // NOTE This means that two classes might have the same implementation of a method from the same
7038 // interface but will have different ArtMethod*s for them. This also means we cannot compare a
7039 // default method found on a class with one found on the declaring interface directly and must
7040 // look at the declaring class to determine if they are the same.
Nicolas Geoffray0376a5c2017-01-12 15:15:45 +00007041 for (ScopedArenaVector<ArtMethod*>* methods_vec : {&default_methods_,
7042 &overriding_default_methods_}) {
7043 for (size_t i = 0; i < methods_vec->size(); ++i) {
7044 ArtMethod* def_method = (*methods_vec)[i];
Vladimir Marko921094a2017-01-12 18:37:06 +00007045 ArtMethod& new_method = *out;
7046 new_method.CopyFrom(def_method, pointer_size);
7047 // Clear the kAccSkipAccessChecks flag if it is present. Since this class hasn't been
7048 // verified yet it shouldn't have methods that are skipping access checks.
7049 // TODO This is rather arbitrary. We should maybe support classes where only some of its
7050 // methods are skip_access_checks.
7051 constexpr uint32_t kSetFlags = kAccDefault | kAccCopied;
7052 constexpr uint32_t kMaskFlags = ~kAccSkipAccessChecks;
7053 new_method.SetAccessFlags((new_method.GetAccessFlags() | kSetFlags) & kMaskFlags);
7054 move_table_.emplace(def_method, &new_method);
Nicolas Geoffray0376a5c2017-01-12 15:15:45 +00007055 // Update the entry in the method array, as the array will be used for future lookups,
7056 // where thread suspension is allowed.
7057 // As such, the array should not contain locally allocated ArtMethod, otherwise the GC
7058 // would not see them.
7059 (*methods_vec)[i] = &new_method;
Vladimir Marko921094a2017-01-12 18:37:06 +00007060 ++out;
7061 }
7062 }
Nicolas Geoffray0376a5c2017-01-12 15:15:45 +00007063 for (ScopedArenaVector<ArtMethod*>* methods_vec : {&default_conflict_methods_,
7064 &overriding_default_conflict_methods_}) {
7065 for (size_t i = 0; i < methods_vec->size(); ++i) {
7066 ArtMethod* conf_method = (*methods_vec)[i];
Vladimir Marko921094a2017-01-12 18:37:06 +00007067 ArtMethod& new_method = *out;
7068 new_method.CopyFrom(conf_method, pointer_size);
7069 // This is a type of default method (there are default method impls, just a conflict) so
7070 // mark this as a default, non-abstract method, since thats what it is. Also clear the
7071 // kAccSkipAccessChecks bit since this class hasn't been verified yet it shouldn't have
7072 // methods that are skipping access checks.
7073 constexpr uint32_t kSetFlags = kAccDefault | kAccDefaultConflict | kAccCopied;
7074 constexpr uint32_t kMaskFlags = ~(kAccAbstract | kAccSkipAccessChecks);
7075 new_method.SetAccessFlags((new_method.GetAccessFlags() | kSetFlags) & kMaskFlags);
7076 DCHECK(new_method.IsDefaultConflicting());
7077 // The actual method might or might not be marked abstract since we just copied it from a
7078 // (possibly default) interface method. We need to set it entry point to be the bridge so
7079 // that the compiler will not invoke the implementation of whatever method we copied from.
7080 EnsureThrowsInvocationError(class_linker_, &new_method);
7081 move_table_.emplace(conf_method, &new_method);
Nicolas Geoffray0376a5c2017-01-12 15:15:45 +00007082 // Update the entry in the method array, as the array will be used for future lookups,
7083 // where thread suspension is allowed.
7084 // As such, the array should not contain locally allocated ArtMethod, otherwise the GC
7085 // would not see them.
7086 (*methods_vec)[i] = &new_method;
Vladimir Marko921094a2017-01-12 18:37:06 +00007087 ++out;
7088 }
7089 }
7090 methods->SetSize(new_method_count);
7091 class_linker_->UpdateClassMethods(klass_.Get(), methods);
7092}
7093
7094ObjPtr<mirror::PointerArray> ClassLinker::LinkInterfaceMethodsHelper::UpdateVtable(
7095 const std::unordered_map<size_t, ClassLinker::MethodTranslation>& default_translations,
7096 ObjPtr<mirror::PointerArray> old_vtable) {
7097 // Update the vtable to the new method structures. We can skip this for interfaces since they
7098 // do not have vtables.
7099 const size_t old_vtable_count = old_vtable->GetLength();
7100 const size_t new_vtable_count = old_vtable_count +
7101 miranda_methods_.size() +
7102 default_methods_.size() +
7103 default_conflict_methods_.size();
7104
7105 ObjPtr<mirror::PointerArray> vtable =
7106 down_cast<mirror::PointerArray*>(old_vtable->CopyOf(self_, new_vtable_count));
7107 if (UNLIKELY(vtable == nullptr)) {
7108 self_->AssertPendingOOMException();
7109 return nullptr;
7110 }
7111
7112 size_t vtable_pos = old_vtable_count;
7113 PointerSize pointer_size = class_linker_->GetImagePointerSize();
7114 // Update all the newly copied method's indexes so they denote their placement in the vtable.
7115 for (const ScopedArenaVector<ArtMethod*>& methods_vec : {default_methods_,
7116 default_conflict_methods_,
7117 miranda_methods_}) {
7118 // These are the functions that are not already in the vtable!
Nicolas Geoffray0376a5c2017-01-12 15:15:45 +00007119 for (ArtMethod* new_vtable_method : methods_vec) {
Vladimir Marko921094a2017-01-12 18:37:06 +00007120 // Leave the declaring class alone the method's dex_code_item_offset_ and dex_method_index_
7121 // fields are references into the dex file the method was defined in. Since the ArtMethod
7122 // does not store that information it uses declaring_class_->dex_cache_.
7123 new_vtable_method->SetMethodIndex(0xFFFF & vtable_pos);
7124 vtable->SetElementPtrSize(vtable_pos, new_vtable_method, pointer_size);
7125 ++vtable_pos;
7126 }
7127 }
7128 DCHECK_EQ(vtable_pos, new_vtable_count);
7129
7130 // Update old vtable methods. We use the default_translations map to figure out what each
7131 // vtable entry should be updated to, if they need to be at all.
7132 for (size_t i = 0; i < old_vtable_count; ++i) {
7133 ArtMethod* translated_method = vtable->GetElementPtrSize<ArtMethod*>(i, pointer_size);
7134 // Try and find what we need to change this method to.
7135 auto translation_it = default_translations.find(i);
Vladimir Marko921094a2017-01-12 18:37:06 +00007136 if (translation_it != default_translations.end()) {
7137 if (translation_it->second.IsInConflict()) {
7138 // Find which conflict method we are to use for this method.
7139 MethodNameAndSignatureComparator old_method_comparator(
7140 translated_method->GetInterfaceMethodIfProxy(pointer_size));
7141 // We only need to look through overriding_default_conflict_methods since this is an
7142 // overridden method we are fixing up here.
7143 ArtMethod* new_conflict_method = FindSameNameAndSignature(
7144 old_method_comparator, overriding_default_conflict_methods_);
7145 CHECK(new_conflict_method != nullptr) << "Expected a conflict method!";
7146 translated_method = new_conflict_method;
7147 } else if (translation_it->second.IsAbstract()) {
7148 // Find which miranda method we are to use for this method.
7149 MethodNameAndSignatureComparator old_method_comparator(
7150 translated_method->GetInterfaceMethodIfProxy(pointer_size));
7151 ArtMethod* miranda_method = FindSameNameAndSignature(old_method_comparator,
7152 miranda_methods_);
7153 DCHECK(miranda_method != nullptr);
7154 translated_method = miranda_method;
7155 } else {
7156 // Normal default method (changed from an older default or abstract interface method).
7157 DCHECK(translation_it->second.IsTranslation());
7158 translated_method = translation_it->second.GetTranslation();
Nicolas Geoffray0376a5c2017-01-12 15:15:45 +00007159 auto it = move_table_.find(translated_method);
7160 DCHECK(it != move_table_.end());
7161 translated_method = it->second;
Vladimir Marko921094a2017-01-12 18:37:06 +00007162 }
Nicolas Geoffray0376a5c2017-01-12 15:15:45 +00007163 } else {
7164 auto it = move_table_.find(translated_method);
7165 translated_method = (it != move_table_.end()) ? it->second : nullptr;
Vladimir Marko921094a2017-01-12 18:37:06 +00007166 }
Nicolas Geoffray0376a5c2017-01-12 15:15:45 +00007167
7168 if (translated_method != nullptr) {
Vladimir Marko921094a2017-01-12 18:37:06 +00007169 // Make sure the new_methods index is set.
Nicolas Geoffray0376a5c2017-01-12 15:15:45 +00007170 if (translated_method->GetMethodIndexDuringLinking() != i) {
Vladimir Marko921094a2017-01-12 18:37:06 +00007171 if (kIsDebugBuild) {
7172 auto* methods = klass_->GetMethodsPtr();
7173 CHECK_LE(reinterpret_cast<uintptr_t>(&*methods->begin(method_size_, method_alignment_)),
Nicolas Geoffray0376a5c2017-01-12 15:15:45 +00007174 reinterpret_cast<uintptr_t>(translated_method));
7175 CHECK_LT(reinterpret_cast<uintptr_t>(translated_method),
Vladimir Marko921094a2017-01-12 18:37:06 +00007176 reinterpret_cast<uintptr_t>(&*methods->end(method_size_, method_alignment_)));
7177 }
Nicolas Geoffray0376a5c2017-01-12 15:15:45 +00007178 translated_method->SetMethodIndex(0xFFFF & i);
Vladimir Marko921094a2017-01-12 18:37:06 +00007179 }
Nicolas Geoffray0376a5c2017-01-12 15:15:45 +00007180 vtable->SetElementPtrSize(i, translated_method, pointer_size);
Vladimir Marko921094a2017-01-12 18:37:06 +00007181 }
7182 }
7183 klass_->SetVTable(vtable.Ptr());
7184 return vtable;
7185}
7186
7187void ClassLinker::LinkInterfaceMethodsHelper::UpdateIfTable(Handle<mirror::IfTable> iftable) {
7188 PointerSize pointer_size = class_linker_->GetImagePointerSize();
7189 const size_t ifcount = klass_->GetIfTableCount();
7190 // Go fix up all the stale iftable pointers.
7191 for (size_t i = 0; i < ifcount; ++i) {
7192 for (size_t j = 0, count = iftable->GetMethodArrayCount(i); j < count; ++j) {
7193 auto* method_array = iftable->GetMethodArray(i);
7194 auto* m = method_array->GetElementPtrSize<ArtMethod*>(j, pointer_size);
7195 DCHECK(m != nullptr) << klass_->PrettyClass();
7196 auto it = move_table_.find(m);
7197 if (it != move_table_.end()) {
7198 auto* new_m = it->second;
7199 DCHECK(new_m != nullptr) << klass_->PrettyClass();
7200 method_array->SetElementPtrSize(j, new_m, pointer_size);
7201 }
7202 }
7203 }
7204}
7205
7206void ClassLinker::LinkInterfaceMethodsHelper::UpdateIMT(ArtMethod** out_imt) {
7207 // Fix up IMT next.
7208 for (size_t i = 0; i < ImTable::kSize; ++i) {
7209 auto it = move_table_.find(out_imt[i]);
7210 if (it != move_table_.end()) {
7211 out_imt[i] = it->second;
7212 }
7213 }
7214}
7215
Alex Light705ad492015-09-21 11:36:30 -07007216// TODO This method needs to be split up into several smaller methods.
Alex Lighteb7c1442015-08-31 13:17:42 -07007217bool ClassLinker::LinkInterfaceMethods(
7218 Thread* self,
7219 Handle<mirror::Class> klass,
Alex Light9139e002015-10-09 15:59:48 -07007220 const std::unordered_map<size_t, ClassLinker::MethodTranslation>& default_translations,
Artem Udovichenkoa62cb9b2016-06-30 09:18:25 +00007221 bool* out_new_conflict,
Alex Lighteb7c1442015-08-31 13:17:42 -07007222 ArtMethod** out_imt) {
7223 StackHandleScope<3> hs(self);
7224 Runtime* const runtime = Runtime::Current();
Alex Light705ad492015-09-21 11:36:30 -07007225
7226 const bool is_interface = klass->IsInterface();
Alex Lighteb7c1442015-08-31 13:17:42 -07007227 const bool has_superclass = klass->HasSuperClass();
Alex Light705ad492015-09-21 11:36:30 -07007228 const bool fill_tables = !is_interface;
Alex Lighteb7c1442015-08-31 13:17:42 -07007229 const size_t super_ifcount = has_superclass ? klass->GetSuperClass()->GetIfTableCount() : 0U;
Alex Lighteb7c1442015-08-31 13:17:42 -07007230 const size_t ifcount = klass->GetIfTableCount();
7231
Vladimir Marko921094a2017-01-12 18:37:06 +00007232 Handle<mirror::IfTable> iftable(hs.NewHandle(klass->GetIfTable()));
Mathieu Chartiere401d142015-04-22 13:56:20 -07007233
7234 MutableHandle<mirror::PointerArray> vtable(hs.NewHandle(klass->GetVTableDuringLinking()));
7235 ArtMethod* const unimplemented_method = runtime->GetImtUnimplementedMethod();
Alex Light9139e002015-10-09 15:59:48 -07007236 ArtMethod* const imt_conflict_method = runtime->GetImtConflictMethod();
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07007237 // Copy the IMT from the super class if possible.
Alex Light705ad492015-09-21 11:36:30 -07007238 const bool extend_super_iftable = has_superclass;
7239 if (has_superclass && fill_tables) {
7240 FillImtFromSuperClass(klass,
Alex Light705ad492015-09-21 11:36:30 -07007241 unimplemented_method,
7242 imt_conflict_method,
Artem Udovichenkoa62cb9b2016-06-30 09:18:25 +00007243 out_new_conflict,
Mathieu Chartier49b5ced2016-04-14 10:49:19 -07007244 out_imt);
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07007245 }
Mathieu Chartiere401d142015-04-22 13:56:20 -07007246 // Allocate method arrays before since we don't want miss visiting miranda method roots due to
7247 // thread suspension.
Alex Light705ad492015-09-21 11:36:30 -07007248 if (fill_tables) {
Vladimir Marko921094a2017-01-12 18:37:06 +00007249 if (!AllocateIfTableMethodArrays(self, klass, iftable)) {
7250 return false;
Mathieu Chartiere401d142015-04-22 13:56:20 -07007251 }
7252 }
7253
Vladimir Marko921094a2017-01-12 18:37:06 +00007254 LinkInterfaceMethodsHelper helper(this, klass, self, runtime);
7255
Igor Murashkinb1d8c312015-08-04 11:18:43 -07007256 auto* old_cause = self->StartAssertNoThreadSuspension(
Mathieu Chartiere401d142015-04-22 13:56:20 -07007257 "Copying ArtMethods for LinkInterfaceMethods");
Alex Light9139e002015-10-09 15:59:48 -07007258 // Going in reverse to ensure that we will hit abstract methods that override defaults before the
7259 // defaults. This means we don't need to do any trickery when creating the Miranda methods, since
7260 // they will already be null. This has the additional benefit that the declarer of a miranda
7261 // method will actually declare an abstract method.
Vladimir Markoba118822017-06-12 15:41:56 +01007262 for (size_t i = ifcount; i != 0u; ) {
Alex Light9139e002015-10-09 15:59:48 -07007263 --i;
Alex Light9139e002015-10-09 15:59:48 -07007264 DCHECK_LT(i, ifcount);
7265
Alex Light705ad492015-09-21 11:36:30 -07007266 size_t num_methods = iftable->GetInterface(i)->NumDeclaredVirtualMethods();
Mathieu Chartiere401d142015-04-22 13:56:20 -07007267 if (num_methods > 0) {
7268 StackHandleScope<2> hs2(self);
7269 const bool is_super = i < super_ifcount;
7270 const bool super_interface = is_super && extend_super_iftable;
Alex Light705ad492015-09-21 11:36:30 -07007271 // We don't actually create or fill these tables for interfaces, we just copy some methods for
7272 // conflict methods. Just set this as nullptr in those cases.
7273 Handle<mirror::PointerArray> method_array(fill_tables
7274 ? hs2.NewHandle(iftable->GetMethodArray(i))
7275 : hs2.NewHandle<mirror::PointerArray>(nullptr));
Mathieu Chartiere401d142015-04-22 13:56:20 -07007276
Alex Lighte64300b2015-12-15 15:02:47 -08007277 ArraySlice<ArtMethod> input_virtual_methods;
Mathieu Chartier9865bde2015-12-21 09:58:16 -08007278 ScopedNullHandle<mirror::PointerArray> null_handle;
7279 Handle<mirror::PointerArray> input_vtable_array(null_handle);
Mathieu Chartiere401d142015-04-22 13:56:20 -07007280 int32_t input_array_length = 0;
Alex Lighte64300b2015-12-15 15:02:47 -08007281
Alex Light9139e002015-10-09 15:59:48 -07007282 // TODO Cleanup Needed: In the presence of default methods this optimization is rather dirty
7283 // and confusing. Default methods should always look through all the superclasses
7284 // because they are the last choice of an implementation. We get around this by looking
7285 // at the super-classes iftable methods (copied into method_array previously) when we are
7286 // looking for the implementation of a super-interface method but that is rather dirty.
Alex Lighte64300b2015-12-15 15:02:47 -08007287 bool using_virtuals;
Alex Light705ad492015-09-21 11:36:30 -07007288 if (super_interface || is_interface) {
Alex Lighte64300b2015-12-15 15:02:47 -08007289 // If we are overwriting a super class interface, try to only virtual methods instead of the
Mathieu Chartiere401d142015-04-22 13:56:20 -07007290 // whole vtable.
Alex Lighte64300b2015-12-15 15:02:47 -08007291 using_virtuals = true;
7292 input_virtual_methods = klass->GetDeclaredMethodsSlice(image_pointer_size_);
7293 input_array_length = input_virtual_methods.size();
Mathieu Chartiere401d142015-04-22 13:56:20 -07007294 } else {
Alex Lighte64300b2015-12-15 15:02:47 -08007295 // For a new interface, however, we need the whole vtable in case a new
7296 // interface method is implemented in the whole superclass.
7297 using_virtuals = false;
Andreas Gampefa4333d2017-02-14 11:10:34 -08007298 DCHECK(vtable != nullptr);
Mathieu Chartiere401d142015-04-22 13:56:20 -07007299 input_vtable_array = vtable;
7300 input_array_length = input_vtable_array->GetLength();
7301 }
Alex Lighte64300b2015-12-15 15:02:47 -08007302
Alex Lighteb7c1442015-08-31 13:17:42 -07007303 // For each method in interface
Ian Rogers62d6c772013-02-27 08:32:07 -08007304 for (size_t j = 0; j < num_methods; ++j) {
Mathieu Chartierc77f3ab2015-09-03 19:41:50 -07007305 auto* interface_method = iftable->GetInterface(i)->GetVirtualMethod(j, image_pointer_size_);
Mathieu Chartier9f3629d2014-10-28 18:23:02 -07007306 MethodNameAndSignatureComparator interface_name_comparator(
Mathieu Chartiere401d142015-04-22 13:56:20 -07007307 interface_method->GetInterfaceMethodIfProxy(image_pointer_size_));
Andreas Gampe75a7db62016-09-26 12:04:26 -07007308 uint32_t imt_index = ImTable::GetImtIndex(interface_method);
Alex Lighteb7c1442015-08-31 13:17:42 -07007309 ArtMethod** imt_ptr = &out_imt[imt_index];
Ian Rogers9bc81912012-10-11 21:43:36 -07007310 // For each method listed in the interface's method list, find the
7311 // matching method in our class's method list. We want to favor the
7312 // subclass over the superclass, which just requires walking
7313 // back from the end of the vtable. (This only matters if the
7314 // superclass defines a private method and this class redefines
7315 // it -- otherwise it would use the same vtable slot. In .dex files
7316 // those don't end up in the virtual method table, so it shouldn't
7317 // matter which direction we go. We walk it backward anyway.)
Alex Lighteb7c1442015-08-31 13:17:42 -07007318 //
7319 // To find defaults we need to do the same but also go over interfaces.
7320 bool found_impl = false;
Alex Light9139e002015-10-09 15:59:48 -07007321 ArtMethod* vtable_impl = nullptr;
Alex Lighteb7c1442015-08-31 13:17:42 -07007322 for (int32_t k = input_array_length - 1; k >= 0; --k) {
Alex Lighte64300b2015-12-15 15:02:47 -08007323 ArtMethod* vtable_method = using_virtuals ?
7324 &input_virtual_methods[k] :
Mathieu Chartiere401d142015-04-22 13:56:20 -07007325 input_vtable_array->GetElementPtrSize<ArtMethod*>(k, image_pointer_size_);
7326 ArtMethod* vtable_method_for_name_comparison =
7327 vtable_method->GetInterfaceMethodIfProxy(image_pointer_size_);
Ian Rogers03b6eaf2014-10-28 09:34:57 -07007328 if (interface_name_comparator.HasSameNameAndSignature(
Mathieu Chartier9f3629d2014-10-28 18:23:02 -07007329 vtable_method_for_name_comparison)) {
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07007330 if (!vtable_method->IsAbstract() && !vtable_method->IsPublic()) {
Mathieu Chartier4d122c12015-06-17 14:14:36 -07007331 // Must do EndAssertNoThreadSuspension before throw since the throw can cause
7332 // allocations.
7333 self->EndAssertNoThreadSuspension(old_cause);
Mathieu Chartiere401d142015-04-22 13:56:20 -07007334 ThrowIllegalAccessError(klass.Get(),
Brian Carlstromf3632832014-05-20 15:36:53 -07007335 "Method '%s' implementing interface method '%s' is not public",
David Sehr709b0702016-10-13 09:12:37 -07007336 vtable_method->PrettyMethod().c_str(),
7337 interface_method->PrettyMethod().c_str());
Ian Rogers9bc81912012-10-11 21:43:36 -07007338 return false;
Alex Light9139e002015-10-09 15:59:48 -07007339 } else if (UNLIKELY(vtable_method->IsOverridableByDefaultMethod())) {
Alex Lighteb7c1442015-08-31 13:17:42 -07007340 // We might have a newer, better, default method for this, so we just skip it. If we
7341 // are still using this we will select it again when scanning for default methods. To
7342 // obviate the need to copy the method again we will make a note that we already found
7343 // a default here.
7344 // TODO This should be much cleaner.
Alex Light9139e002015-10-09 15:59:48 -07007345 vtable_impl = vtable_method;
Alex Lighteb7c1442015-08-31 13:17:42 -07007346 break;
7347 } else {
7348 found_impl = true;
Alex Light705ad492015-09-21 11:36:30 -07007349 if (LIKELY(fill_tables)) {
7350 method_array->SetElementPtrSize(j, vtable_method, image_pointer_size_);
7351 // Place method in imt if entry is empty, place conflict otherwise.
7352 SetIMTRef(unimplemented_method,
7353 imt_conflict_method,
Alex Light705ad492015-09-21 11:36:30 -07007354 vtable_method,
Artem Udovichenkoa62cb9b2016-06-30 09:18:25 +00007355 /*out*/out_new_conflict,
Alex Light705ad492015-09-21 11:36:30 -07007356 /*out*/imt_ptr);
7357 }
Ian Rogers9bc81912012-10-11 21:43:36 -07007358 break;
7359 }
7360 }
Alex Light9139e002015-10-09 15:59:48 -07007361 }
7362 // Continue on to the next method if we are done.
7363 if (LIKELY(found_impl)) {
7364 continue;
7365 } else if (LIKELY(super_interface)) {
7366 // Don't look for a default implementation when the super-method is implemented directly
7367 // by the class.
7368 //
7369 // See if we can use the superclasses method and skip searching everything else.
7370 // Note: !found_impl && super_interface
7371 CHECK(extend_super_iftable);
7372 // If this is a super_interface method it is possible we shouldn't override it because a
7373 // superclass could have implemented it directly. We get the method the superclass used
7374 // to implement this to know if we can override it with a default method. Doing this is
7375 // safe since we know that the super_iftable is filled in so we can simply pull it from
7376 // there. We don't bother if this is not a super-classes interface since in that case we
7377 // have scanned the entire vtable anyway and would have found it.
7378 // TODO This is rather dirty but it is faster than searching through the entire vtable
7379 // every time.
7380 ArtMethod* supers_method =
7381 method_array->GetElementPtrSize<ArtMethod*>(j, image_pointer_size_);
7382 DCHECK(supers_method != nullptr);
7383 DCHECK(interface_name_comparator.HasSameNameAndSignature(supers_method));
Alex Light705ad492015-09-21 11:36:30 -07007384 if (LIKELY(!supers_method->IsOverridableByDefaultMethod())) {
Alex Light9139e002015-10-09 15:59:48 -07007385 // The method is not overridable by a default method (i.e. it is directly implemented
7386 // in some class). Therefore move onto the next interface method.
7387 continue;
Alex Lightd6c2bfa2016-05-02 18:51:34 -07007388 } else {
7389 // If the super-classes method is override-able by a default method we need to keep
7390 // track of it since though it is override-able it is not guaranteed to be 'overridden'.
7391 // If it turns out not to be overridden and we did not keep track of it we might add it
Alex Light66630be2016-05-04 09:23:09 -07007392 // to the vtable twice, causing corruption (vtable entries having inconsistent and
7393 // illegal states, incorrect vtable size, and incorrect or inconsistent iftable entries)
7394 // in this class and any subclasses.
Alex Lightd6c2bfa2016-05-02 18:51:34 -07007395 DCHECK(vtable_impl == nullptr || vtable_impl == supers_method)
David Sehr709b0702016-10-13 09:12:37 -07007396 << "vtable_impl was " << ArtMethod::PrettyMethod(vtable_impl)
7397 << " and not 'nullptr' or "
7398 << supers_method->PrettyMethod()
7399 << " as expected. IFTable appears to be corrupt!";
Alex Lightd6c2bfa2016-05-02 18:51:34 -07007400 vtable_impl = supers_method;
Alex Light9139e002015-10-09 15:59:48 -07007401 }
7402 }
7403 // If we haven't found it yet we should search through the interfaces for default methods.
Vladimir Marko921094a2017-01-12 18:37:06 +00007404 ArtMethod* current_method = helper.FindMethod(interface_method,
7405 interface_name_comparator,
7406 vtable_impl);
Alex Light705ad492015-09-21 11:36:30 -07007407 if (LIKELY(fill_tables)) {
Alex Light12771082016-01-26 16:07:41 -08007408 if (current_method == nullptr && !super_interface) {
Alex Light705ad492015-09-21 11:36:30 -07007409 // We could not find an implementation for this method and since it is a brand new
7410 // interface we searched the entire vtable (and all default methods) for an
7411 // implementation but couldn't find one. We therefore need to make a miranda method.
Vladimir Marko921094a2017-01-12 18:37:06 +00007412 current_method = helper.GetOrCreateMirandaMethod(interface_method,
7413 interface_name_comparator);
Alex Light12771082016-01-26 16:07:41 -08007414 }
7415
7416 if (current_method != nullptr) {
7417 // We found a default method implementation. Record it in the iftable and IMT.
7418 method_array->SetElementPtrSize(j, current_method, image_pointer_size_);
7419 SetIMTRef(unimplemented_method,
7420 imt_conflict_method,
Alex Light12771082016-01-26 16:07:41 -08007421 current_method,
Artem Udovichenkoa62cb9b2016-06-30 09:18:25 +00007422 /*out*/out_new_conflict,
Alex Light12771082016-01-26 16:07:41 -08007423 /*out*/imt_ptr);
Alex Light9139e002015-10-09 15:59:48 -07007424 }
7425 }
Alex Light705ad492015-09-21 11:36:30 -07007426 } // For each method in interface end.
7427 } // if (num_methods > 0)
7428 } // For each interface.
Alex Light705ad492015-09-21 11:36:30 -07007429 // TODO don't extend virtuals of interface unless necessary (when is it?).
Vladimir Marko921094a2017-01-12 18:37:06 +00007430 if (helper.HasNewVirtuals()) {
7431 LengthPrefixedArray<ArtMethod>* old_methods = kIsDebugBuild ? klass->GetMethodsPtr() : nullptr;
7432 helper.ReallocMethods(); // No return value to check. Native allocation failure aborts.
7433 LengthPrefixedArray<ArtMethod>* methods = kIsDebugBuild ? klass->GetMethodsPtr() : nullptr;
7434
Mathieu Chartierd4d83b82015-06-19 20:24:45 -07007435 // Done copying methods, they are all roots in the class now, so we can end the no thread
Mathieu Chartiere401d142015-04-22 13:56:20 -07007436 // suspension assert.
7437 self->EndAssertNoThreadSuspension(old_cause);
Mathieu Chartierd4d83b82015-06-19 20:24:45 -07007438
Alex Light705ad492015-09-21 11:36:30 -07007439 if (fill_tables) {
Vladimir Marko921094a2017-01-12 18:37:06 +00007440 vtable.Assign(helper.UpdateVtable(default_translations, vtable.Get()));
Andreas Gampefa4333d2017-02-14 11:10:34 -08007441 if (UNLIKELY(vtable == nullptr)) {
Vladimir Marko921094a2017-01-12 18:37:06 +00007442 // The helper has already called self->AssertPendingOOMException();
Alex Light705ad492015-09-21 11:36:30 -07007443 return false;
7444 }
Vladimir Marko921094a2017-01-12 18:37:06 +00007445 helper.UpdateIfTable(iftable);
7446 helper.UpdateIMT(out_imt);
Mathieu Chartiere401d142015-04-22 13:56:20 -07007447 }
Alex Light705ad492015-09-21 11:36:30 -07007448
Vladimir Marko921094a2017-01-12 18:37:06 +00007449 helper.CheckNoStaleMethodsInDexCache();
7450 helper.ClobberOldMethods(old_methods, methods);
Mathieu Chartiere401d142015-04-22 13:56:20 -07007451 } else {
7452 self->EndAssertNoThreadSuspension(old_cause);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07007453 }
Alex Light705ad492015-09-21 11:36:30 -07007454 if (kIsDebugBuild && !is_interface) {
Alex Light1f3925d2016-09-07 12:04:20 -07007455 SanityCheckVTable(self, klass, image_pointer_size_);
Elliott Hughes4681c802011-09-25 18:04:37 -07007456 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07007457 return true;
7458}
7459
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07007460bool ClassLinker::LinkInstanceFields(Thread* self, Handle<mirror::Class> klass) {
Andreas Gampefa4333d2017-02-14 11:10:34 -08007461 CHECK(klass != nullptr);
Igor Murashkinb1d8c312015-08-04 11:18:43 -07007462 return LinkFields(self, klass, false, nullptr);
Brian Carlstrom4873d462011-08-21 15:23:39 -07007463}
7464
Igor Murashkinb1d8c312015-08-04 11:18:43 -07007465bool ClassLinker::LinkStaticFields(Thread* self, Handle<mirror::Class> klass, size_t* class_size) {
Andreas Gampefa4333d2017-02-14 11:10:34 -08007466 CHECK(klass != nullptr);
Igor Murashkinb1d8c312015-08-04 11:18:43 -07007467 return LinkFields(self, klass, true, class_size);
Brian Carlstrom4873d462011-08-21 15:23:39 -07007468}
7469
Brian Carlstromdbc05252011-09-09 01:59:59 -07007470struct LinkFieldsComparator {
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07007471 explicit LinkFieldsComparator() REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07007472 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07007473 // No thread safety analysis as will be called from STL. Checked lock held in constructor.
Mathieu Chartierc7853442015-03-27 14:35:38 -07007474 bool operator()(ArtField* field1, ArtField* field2)
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08007475 NO_THREAD_SAFETY_ANALYSIS {
Fred Shih37f05ef2014-07-16 18:38:08 -07007476 // 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 -07007477 Primitive::Type type1 = field1->GetTypeAsPrimitiveType();
7478 Primitive::Type type2 = field2->GetTypeAsPrimitiveType();
Ian Rogersef7d42f2014-01-06 12:55:46 -08007479 if (type1 != type2) {
Vladimir Markod5777482014-11-12 17:02:02 +00007480 if (type1 == Primitive::kPrimNot) {
7481 // Reference always goes first.
7482 return true;
Ian Rogersef7d42f2014-01-06 12:55:46 -08007483 }
Vladimir Markod5777482014-11-12 17:02:02 +00007484 if (type2 == Primitive::kPrimNot) {
7485 // Reference always goes first.
7486 return false;
7487 }
7488 size_t size1 = Primitive::ComponentSize(type1);
7489 size_t size2 = Primitive::ComponentSize(type2);
7490 if (size1 != size2) {
7491 // Larger primitive types go first.
7492 return size1 > size2;
7493 }
7494 // Primitive types differ but sizes match. Arbitrarily order by primitive type.
7495 return type1 < type2;
Brian Carlstromdbc05252011-09-09 01:59:59 -07007496 }
Vladimir Marko7a7c1db2014-11-17 15:13:34 +00007497 // Same basic group? Then sort by dex field index. This is guaranteed to be sorted
7498 // by name and for equal names by type id index.
7499 // NOTE: This works also for proxies. Their static fields are assigned appropriate indexes.
7500 return field1->GetDexFieldIndex() < field2->GetDexFieldIndex();
Brian Carlstromdbc05252011-09-09 01:59:59 -07007501 }
7502};
7503
Mathieu Chartierc77f3ab2015-09-03 19:41:50 -07007504bool ClassLinker::LinkFields(Thread* self,
7505 Handle<mirror::Class> klass,
7506 bool is_static,
Igor Murashkinb1d8c312015-08-04 11:18:43 -07007507 size_t* class_size) {
Ian Rogers7b078e82014-09-10 14:44:24 -07007508 self->AllowThreadSuspension();
Mathieu Chartierc7853442015-03-27 14:35:38 -07007509 const size_t num_fields = is_static ? klass->NumStaticFields() : klass->NumInstanceFields();
Mathieu Chartier54d220e2015-07-30 16:20:06 -07007510 LengthPrefixedArray<ArtField>* const fields = is_static ? klass->GetSFieldsPtr() :
7511 klass->GetIFieldsPtr();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07007512
Mingyao Yang98d1cc82014-05-15 17:02:16 -07007513 // Initialize field_offset
Brian Carlstrom693267a2011-09-06 09:25:34 -07007514 MemberOffset field_offset(0);
Brian Carlstrom3320cf42011-10-04 14:58:28 -07007515 if (is_static) {
Mathieu Chartiere401d142015-04-22 13:56:20 -07007516 field_offset = klass->GetFirstReferenceStaticFieldOffsetDuringLinking(image_pointer_size_);
Brian Carlstrom3320cf42011-10-04 14:58:28 -07007517 } else {
Mathieu Chartier28357fa2016-10-18 16:27:40 -07007518 ObjPtr<mirror::Class> super_class = klass->GetSuperClass();
Andreas Gampe2ed8def2014-08-28 14:41:02 -07007519 if (super_class != nullptr) {
Brian Carlstromf3632832014-05-20 15:36:53 -07007520 CHECK(super_class->IsResolved())
David Sehr709b0702016-10-13 09:12:37 -07007521 << klass->PrettyClass() << " " << super_class->PrettyClass();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07007522 field_offset = MemberOffset(super_class->GetObjectSize());
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07007523 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07007524 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07007525
David Sehr709b0702016-10-13 09:12:37 -07007526 CHECK_EQ(num_fields == 0, fields == nullptr) << klass->PrettyClass();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07007527
Brian Carlstromdbc05252011-09-09 01:59:59 -07007528 // we want a relatively stable order so that adding new fields
Elliott Hughesadb460d2011-10-05 17:02:34 -07007529 // minimizes disruption of C++ version such as Class and Method.
Alex Lighte64300b2015-12-15 15:02:47 -08007530 //
7531 // The overall sort order order is:
7532 // 1) All object reference fields, sorted alphabetically.
7533 // 2) All java long (64-bit) integer fields, sorted alphabetically.
7534 // 3) All java double (64-bit) floating point fields, sorted alphabetically.
7535 // 4) All java int (32-bit) integer fields, sorted alphabetically.
7536 // 5) All java float (32-bit) floating point fields, sorted alphabetically.
7537 // 6) All java char (16-bit) integer fields, sorted alphabetically.
7538 // 7) All java short (16-bit) integer fields, sorted alphabetically.
7539 // 8) All java boolean (8-bit) integer fields, sorted alphabetically.
7540 // 9) All java byte (8-bit) integer fields, sorted alphabetically.
7541 //
7542 // Once the fields are sorted in this order we will attempt to fill any gaps that might be present
7543 // in the memory layout of the structure. See ShuffleForward for how this is done.
Mathieu Chartierc7853442015-03-27 14:35:38 -07007544 std::deque<ArtField*> grouped_and_sorted_fields;
Mathieu Chartier2d5f39e2014-09-19 17:52:37 -07007545 const char* old_no_suspend_cause = self->StartAssertNoThreadSuspension(
Fred Shih37f05ef2014-07-16 18:38:08 -07007546 "Naked ArtField references in deque");
Brian Carlstromdbc05252011-09-09 01:59:59 -07007547 for (size_t i = 0; i < num_fields; i++) {
Mathieu Chartier54d220e2015-07-30 16:20:06 -07007548 grouped_and_sorted_fields.push_back(&fields->At(i));
Brian Carlstromdbc05252011-09-09 01:59:59 -07007549 }
Mathieu Chartier590fee92013-09-13 13:46:47 -07007550 std::sort(grouped_and_sorted_fields.begin(), grouped_and_sorted_fields.end(),
7551 LinkFieldsComparator());
Brian Carlstromdbc05252011-09-09 01:59:59 -07007552
Fred Shih381e4ca2014-08-25 17:24:27 -07007553 // References should be at the front.
Brian Carlstromdbc05252011-09-09 01:59:59 -07007554 size_t current_field = 0;
7555 size_t num_reference_fields = 0;
Fred Shih381e4ca2014-08-25 17:24:27 -07007556 FieldGaps gaps;
7557
Brian Carlstromdbc05252011-09-09 01:59:59 -07007558 for (; current_field < num_fields; current_field++) {
Mathieu Chartierc7853442015-03-27 14:35:38 -07007559 ArtField* field = grouped_and_sorted_fields.front();
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07007560 Primitive::Type type = field->GetTypeAsPrimitiveType();
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07007561 bool isPrimitive = type != Primitive::kPrimNot;
Brian Carlstromdbc05252011-09-09 01:59:59 -07007562 if (isPrimitive) {
Brian Carlstrom7934ac22013-07-26 10:54:15 -07007563 break; // past last reference, move on to the next phase
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07007564 }
Vladimir Marko76649e82014-11-10 18:32:59 +00007565 if (UNLIKELY(!IsAligned<sizeof(mirror::HeapReference<mirror::Object>)>(
7566 field_offset.Uint32Value()))) {
Fred Shih381e4ca2014-08-25 17:24:27 -07007567 MemberOffset old_offset = field_offset;
7568 field_offset = MemberOffset(RoundUp(field_offset.Uint32Value(), 4));
7569 AddFieldGap(old_offset.Uint32Value(), field_offset.Uint32Value(), &gaps);
7570 }
Roland Levillain14d90572015-07-16 10:52:26 +01007571 DCHECK_ALIGNED(field_offset.Uint32Value(), sizeof(mirror::HeapReference<mirror::Object>));
Brian Carlstromdbc05252011-09-09 01:59:59 -07007572 grouped_and_sorted_fields.pop_front();
7573 num_reference_fields++;
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07007574 field->SetOffset(field_offset);
Vladimir Marko76649e82014-11-10 18:32:59 +00007575 field_offset = MemberOffset(field_offset.Uint32Value() +
7576 sizeof(mirror::HeapReference<mirror::Object>));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07007577 }
Fred Shih381e4ca2014-08-25 17:24:27 -07007578 // Gaps are stored as a max heap which means that we must shuffle from largest to smallest
7579 // otherwise we could end up with suboptimal gap fills.
Vladimir Marko76649e82014-11-10 18:32:59 +00007580 ShuffleForward<8>(&current_field, &field_offset, &grouped_and_sorted_fields, &gaps);
7581 ShuffleForward<4>(&current_field, &field_offset, &grouped_and_sorted_fields, &gaps);
7582 ShuffleForward<2>(&current_field, &field_offset, &grouped_and_sorted_fields, &gaps);
7583 ShuffleForward<1>(&current_field, &field_offset, &grouped_and_sorted_fields, &gaps);
Fred Shih37f05ef2014-07-16 18:38:08 -07007584 CHECK(grouped_and_sorted_fields.empty()) << "Missed " << grouped_and_sorted_fields.size() <<
7585 " fields.";
Ian Rogers7b078e82014-09-10 14:44:24 -07007586 self->EndAssertNoThreadSuspension(old_no_suspend_cause);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07007587
Elliott Hughesadb460d2011-10-05 17:02:34 -07007588 // 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 -07007589 if (!is_static && klass->DescriptorEquals("Ljava/lang/ref/Reference;")) {
Elliott Hughesadb460d2011-10-05 17:02:34 -07007590 // We know there are no non-reference fields in the Reference classes, and we know
7591 // that 'referent' is alphabetically last, so this is easy...
David Sehr709b0702016-10-13 09:12:37 -07007592 CHECK_EQ(num_reference_fields, num_fields) << klass->PrettyClass();
Mathieu Chartier54d220e2015-07-30 16:20:06 -07007593 CHECK_STREQ(fields->At(num_fields - 1).GetName(), "referent")
David Sehr709b0702016-10-13 09:12:37 -07007594 << klass->PrettyClass();
Elliott Hughesadb460d2011-10-05 17:02:34 -07007595 --num_reference_fields;
7596 }
7597
Mingyao Yang98d1cc82014-05-15 17:02:16 -07007598 size_t size = field_offset.Uint32Value();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07007599 // Update klass
Brian Carlstrom3320cf42011-10-04 14:58:28 -07007600 if (is_static) {
7601 klass->SetNumReferenceStaticFields(num_reference_fields);
Mingyao Yang98d1cc82014-05-15 17:02:16 -07007602 *class_size = size;
Brian Carlstrom3320cf42011-10-04 14:58:28 -07007603 } else {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07007604 klass->SetNumReferenceInstanceFields(num_reference_fields);
Mathieu Chartier28357fa2016-10-18 16:27:40 -07007605 ObjPtr<mirror::Class> super_class = klass->GetSuperClass();
Mathieu Chartier52a7f5c2015-08-18 18:35:52 -07007606 if (num_reference_fields == 0 || super_class == nullptr) {
7607 // object has one reference field, klass, but we ignore it since we always visit the class.
Mathieu Chartier66c2d2d2015-08-25 14:32:32 -07007608 // super_class is null iff the class is java.lang.Object.
Mathieu Chartier52a7f5c2015-08-18 18:35:52 -07007609 if (super_class == nullptr ||
7610 (super_class->GetClassFlags() & mirror::kClassFlagNoReferenceFields) != 0) {
7611 klass->SetClassFlags(klass->GetClassFlags() | mirror::kClassFlagNoReferenceFields);
Mathieu Chartier66c2d2d2015-08-25 14:32:32 -07007612 }
7613 }
7614 if (kIsDebugBuild) {
7615 DCHECK_EQ(super_class == nullptr, klass->DescriptorEquals("Ljava/lang/Object;"));
7616 size_t total_reference_instance_fields = 0;
Mathieu Chartier28357fa2016-10-18 16:27:40 -07007617 ObjPtr<mirror::Class> cur_super = klass.Get();
Mathieu Chartier66c2d2d2015-08-25 14:32:32 -07007618 while (cur_super != nullptr) {
7619 total_reference_instance_fields += cur_super->NumReferenceInstanceFieldsDuringLinking();
7620 cur_super = cur_super->GetSuperClass();
7621 }
7622 if (super_class == nullptr) {
David Sehr709b0702016-10-13 09:12:37 -07007623 CHECK_EQ(total_reference_instance_fields, 1u) << klass->PrettyDescriptor();
Mathieu Chartier66c2d2d2015-08-25 14:32:32 -07007624 } else {
7625 // Check that there is at least num_reference_fields other than Object.class.
7626 CHECK_GE(total_reference_instance_fields, 1u + num_reference_fields)
David Sehr709b0702016-10-13 09:12:37 -07007627 << klass->PrettyClass();
Mathieu Chartier52a7f5c2015-08-18 18:35:52 -07007628 }
7629 }
Brian Carlstromdbc05252011-09-09 01:59:59 -07007630 if (!klass->IsVariableSize()) {
Mathieu Chartiere401d142015-04-22 13:56:20 -07007631 std::string temp;
7632 DCHECK_GE(size, sizeof(mirror::Object)) << klass->GetDescriptor(&temp);
7633 size_t previous_size = klass->GetObjectSize();
7634 if (previous_size != 0) {
7635 // Make sure that we didn't originally have an incorrect size.
7636 CHECK_EQ(previous_size, size) << klass->GetDescriptor(&temp);
Mathieu Chartier79b4f382013-10-23 15:21:37 -07007637 }
Mathieu Chartiere401d142015-04-22 13:56:20 -07007638 klass->SetObjectSize(size);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07007639 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07007640 }
Vladimir Marko76649e82014-11-10 18:32:59 +00007641
7642 if (kIsDebugBuild) {
7643 // Make sure that the fields array is ordered by name but all reference
7644 // offsets are at the beginning as far as alignment allows.
7645 MemberOffset start_ref_offset = is_static
Mathieu Chartiere401d142015-04-22 13:56:20 -07007646 ? klass->GetFirstReferenceStaticFieldOffsetDuringLinking(image_pointer_size_)
Vladimir Marko76649e82014-11-10 18:32:59 +00007647 : klass->GetFirstReferenceInstanceFieldOffset();
7648 MemberOffset end_ref_offset(start_ref_offset.Uint32Value() +
7649 num_reference_fields *
7650 sizeof(mirror::HeapReference<mirror::Object>));
7651 MemberOffset current_ref_offset = start_ref_offset;
7652 for (size_t i = 0; i < num_fields; i++) {
Mathieu Chartier54d220e2015-07-30 16:20:06 -07007653 ArtField* field = &fields->At(i);
Mathieu Chartierc7853442015-03-27 14:35:38 -07007654 VLOG(class_linker) << "LinkFields: " << (is_static ? "static" : "instance")
David Sehr709b0702016-10-13 09:12:37 -07007655 << " class=" << klass->PrettyClass() << " field=" << field->PrettyField()
7656 << " offset=" << field->GetOffsetDuringLinking();
Vladimir Marko76649e82014-11-10 18:32:59 +00007657 if (i != 0) {
Mathieu Chartier54d220e2015-07-30 16:20:06 -07007658 ArtField* const prev_field = &fields->At(i - 1);
Vladimir Marko7a7c1db2014-11-17 15:13:34 +00007659 // NOTE: The field names can be the same. This is not possible in the Java language
7660 // but it's valid Java/dex bytecode and for example proguard can generate such bytecode.
Mathieu Chartier54d220e2015-07-30 16:20:06 -07007661 DCHECK_LE(strcmp(prev_field->GetName(), field->GetName()), 0);
Vladimir Marko76649e82014-11-10 18:32:59 +00007662 }
7663 Primitive::Type type = field->GetTypeAsPrimitiveType();
7664 bool is_primitive = type != Primitive::kPrimNot;
7665 if (klass->DescriptorEquals("Ljava/lang/ref/Reference;") &&
7666 strcmp("referent", field->GetName()) == 0) {
7667 is_primitive = true; // We lied above, so we have to expect a lie here.
7668 }
7669 MemberOffset offset = field->GetOffsetDuringLinking();
7670 if (is_primitive) {
7671 if (offset.Uint32Value() < end_ref_offset.Uint32Value()) {
7672 // Shuffled before references.
7673 size_t type_size = Primitive::ComponentSize(type);
7674 CHECK_LT(type_size, sizeof(mirror::HeapReference<mirror::Object>));
7675 CHECK_LT(offset.Uint32Value(), start_ref_offset.Uint32Value());
7676 CHECK_LE(offset.Uint32Value() + type_size, start_ref_offset.Uint32Value());
7677 CHECK(!IsAligned<sizeof(mirror::HeapReference<mirror::Object>)>(offset.Uint32Value()));
7678 }
7679 } else {
7680 CHECK_EQ(current_ref_offset.Uint32Value(), offset.Uint32Value());
7681 current_ref_offset = MemberOffset(current_ref_offset.Uint32Value() +
7682 sizeof(mirror::HeapReference<mirror::Object>));
7683 }
7684 }
7685 CHECK_EQ(current_ref_offset.Uint32Value(), end_ref_offset.Uint32Value());
7686 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07007687 return true;
7688}
7689
Vladimir Marko76649e82014-11-10 18:32:59 +00007690// Set the bitmap of reference instance field offsets.
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07007691void ClassLinker::CreateReferenceInstanceOffsets(Handle<mirror::Class> klass) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07007692 uint32_t reference_offsets = 0;
Mathieu Chartier28357fa2016-10-18 16:27:40 -07007693 ObjPtr<mirror::Class> super_class = klass->GetSuperClass();
Ian Rogerscdc1aaf2014-10-09 13:21:38 -07007694 // Leave the reference offsets as 0 for mirror::Object (the class field is handled specially).
Andreas Gampe2ed8def2014-08-28 14:41:02 -07007695 if (super_class != nullptr) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07007696 reference_offsets = super_class->GetReferenceInstanceOffsets();
Ian Rogerscdc1aaf2014-10-09 13:21:38 -07007697 // Compute reference offsets unless our superclass overflowed.
7698 if (reference_offsets != mirror::Class::kClassWalkSuper) {
7699 size_t num_reference_fields = klass->NumReferenceInstanceFieldsDuringLinking();
Vladimir Marko76649e82014-11-10 18:32:59 +00007700 if (num_reference_fields != 0u) {
7701 // All of the fields that contain object references are guaranteed be grouped in memory
7702 // starting at an appropriately aligned address after super class object data.
7703 uint32_t start_offset = RoundUp(super_class->GetObjectSize(),
7704 sizeof(mirror::HeapReference<mirror::Object>));
7705 uint32_t start_bit = (start_offset - mirror::kObjectHeaderSize) /
Ian Rogerscdc1aaf2014-10-09 13:21:38 -07007706 sizeof(mirror::HeapReference<mirror::Object>);
Vladimir Marko76649e82014-11-10 18:32:59 +00007707 if (start_bit + num_reference_fields > 32) {
Ian Rogerscdc1aaf2014-10-09 13:21:38 -07007708 reference_offsets = mirror::Class::kClassWalkSuper;
Ian Rogerscdc1aaf2014-10-09 13:21:38 -07007709 } else {
Vladimir Marko76649e82014-11-10 18:32:59 +00007710 reference_offsets |= (0xffffffffu << start_bit) &
7711 (0xffffffffu >> (32 - (start_bit + num_reference_fields)));
Ian Rogerscdc1aaf2014-10-09 13:21:38 -07007712 }
7713 }
Brian Carlstrom4873d462011-08-21 15:23:39 -07007714 }
7715 }
Mingyao Yangfaff0f02014-09-10 12:03:22 -07007716 klass->SetReferenceInstanceOffsets(reference_offsets);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07007717}
7718
Mathieu Chartierc77f3ab2015-09-03 19:41:50 -07007719mirror::String* ClassLinker::ResolveString(const DexFile& dex_file,
Andreas Gampe8a0128a2016-11-28 07:38:35 -08007720 dex::StringIndex string_idx,
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07007721 Handle<mirror::DexCache> dex_cache) {
Andreas Gampefa4333d2017-02-14 11:10:34 -08007722 DCHECK(dex_cache != nullptr);
Mathieu Chartiera59d9b22016-09-26 18:13:17 -07007723 Thread::PoisonObjectPointersIfDebug();
Mathieu Chartier28357fa2016-10-18 16:27:40 -07007724 ObjPtr<mirror::String> resolved = dex_cache->GetResolvedString(string_idx);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07007725 if (resolved != nullptr) {
Mathieu Chartier28357fa2016-10-18 16:27:40 -07007726 return resolved.Ptr();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07007727 }
Ian Rogersdfb325e2013-10-30 01:00:44 -07007728 uint32_t utf16_length;
7729 const char* utf8_data = dex_file.StringDataAndUtf16LengthByIdx(string_idx, &utf16_length);
Mathieu Chartier28357fa2016-10-18 16:27:40 -07007730 ObjPtr<mirror::String> string = intern_table_->InternStrong(utf16_length, utf8_data);
Vladimir Marko8d6768d2017-03-14 10:13:21 +00007731 if (string != nullptr) {
7732 dex_cache->SetResolvedString(string_idx, string);
7733 }
Mathieu Chartier28357fa2016-10-18 16:27:40 -07007734 return string.Ptr();
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07007735}
7736
Vladimir Markocac5a7e2016-02-22 10:39:50 +00007737mirror::String* ClassLinker::LookupString(const DexFile& dex_file,
Andreas Gampe8a0128a2016-11-28 07:38:35 -08007738 dex::StringIndex string_idx,
Vladimir Markof25cc732017-03-16 16:18:15 +00007739 ObjPtr<mirror::DexCache> dex_cache) {
Andreas Gampefa4333d2017-02-14 11:10:34 -08007740 DCHECK(dex_cache != nullptr);
Mathieu Chartier28357fa2016-10-18 16:27:40 -07007741 ObjPtr<mirror::String> resolved = dex_cache->GetResolvedString(string_idx);
Vladimir Markocac5a7e2016-02-22 10:39:50 +00007742 if (resolved != nullptr) {
Mathieu Chartier28357fa2016-10-18 16:27:40 -07007743 return resolved.Ptr();
Vladimir Markocac5a7e2016-02-22 10:39:50 +00007744 }
7745 uint32_t utf16_length;
7746 const char* utf8_data = dex_file.StringDataAndUtf16LengthByIdx(string_idx, &utf16_length);
Andreas Gampe8a0128a2016-11-28 07:38:35 -08007747 ObjPtr<mirror::String> string =
7748 intern_table_->LookupStrong(Thread::Current(), utf16_length, utf8_data);
Vladimir Markocac5a7e2016-02-22 10:39:50 +00007749 if (string != nullptr) {
7750 dex_cache->SetResolvedString(string_idx, string);
7751 }
Mathieu Chartier28357fa2016-10-18 16:27:40 -07007752 return string.Ptr();
Vladimir Markocac5a7e2016-02-22 10:39:50 +00007753}
7754
Mathieu Chartierb8901302016-09-30 10:27:43 -07007755ObjPtr<mirror::Class> ClassLinker::LookupResolvedType(const DexFile& dex_file,
Andreas Gampea5b09a62016-11-17 15:21:22 -08007756 dex::TypeIndex type_idx,
Mathieu Chartierb8901302016-09-30 10:27:43 -07007757 ObjPtr<mirror::DexCache> dex_cache,
7758 ObjPtr<mirror::ClassLoader> class_loader) {
7759 ObjPtr<mirror::Class> type = dex_cache->GetResolvedType(type_idx);
7760 if (type == nullptr) {
7761 const char* descriptor = dex_file.StringByTypeIdx(type_idx);
7762 DCHECK_NE(*descriptor, '\0') << "descriptor is empty string";
7763 if (descriptor[1] == '\0') {
7764 // only the descriptors of primitive types should be 1 character long, also avoid class lookup
7765 // for primitive classes that aren't backed by dex files.
7766 type = FindPrimitiveClass(descriptor[0]);
7767 } else {
7768 Thread* const self = Thread::Current();
7769 DCHECK(self != nullptr);
7770 const size_t hash = ComputeModifiedUtf8Hash(descriptor);
7771 // Find the class in the loaded classes table.
Mathieu Chartier1cc62e42016-10-03 18:01:28 -07007772 type = LookupClass(self, descriptor, hash, class_loader.Ptr());
Mathieu Chartierb8901302016-09-30 10:27:43 -07007773 }
Vladimir Marko8d6768d2017-03-14 10:13:21 +00007774 if (type != nullptr) {
7775 if (type->IsResolved()) {
7776 dex_cache->SetResolvedType(type_idx, type);
7777 } else {
7778 type = nullptr;
7779 }
7780 }
Mathieu Chartierb8901302016-09-30 10:27:43 -07007781 }
Vladimir Marko8d6768d2017-03-14 10:13:21 +00007782 DCHECK(type == nullptr || type->IsResolved());
7783 return type;
Mathieu Chartierb8901302016-09-30 10:27:43 -07007784}
7785
Mathieu Chartierc77f3ab2015-09-03 19:41:50 -07007786mirror::Class* ClassLinker::ResolveType(const DexFile& dex_file,
Andreas Gampea5b09a62016-11-17 15:21:22 -08007787 dex::TypeIndex type_idx,
Mathieu Chartier28357fa2016-10-18 16:27:40 -07007788 ObjPtr<mirror::Class> referrer) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07007789 StackHandleScope<2> hs(Thread::Current());
7790 Handle<mirror::DexCache> dex_cache(hs.NewHandle(referrer->GetDexCache()));
7791 Handle<mirror::ClassLoader> class_loader(hs.NewHandle(referrer->GetClassLoader()));
Mathieu Chartier590fee92013-09-13 13:46:47 -07007792 return ResolveType(dex_file, type_idx, dex_cache, class_loader);
7793}
7794
Mathieu Chartierc77f3ab2015-09-03 19:41:50 -07007795mirror::Class* ClassLinker::ResolveType(const DexFile& dex_file,
Andreas Gampea5b09a62016-11-17 15:21:22 -08007796 dex::TypeIndex type_idx,
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07007797 Handle<mirror::DexCache> dex_cache,
7798 Handle<mirror::ClassLoader> class_loader) {
Andreas Gampefa4333d2017-02-14 11:10:34 -08007799 DCHECK(dex_cache != nullptr);
Mathieu Chartiera59d9b22016-09-26 18:13:17 -07007800 Thread::PoisonObjectPointersIfDebug();
Mathieu Chartier28357fa2016-10-18 16:27:40 -07007801 ObjPtr<mirror::Class> resolved = dex_cache->GetResolvedType(type_idx);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07007802 if (resolved == nullptr) {
Ian Rogers98379392014-02-24 16:53:16 -08007803 Thread* self = Thread::Current();
Ian Rogers0571d352011-11-03 19:51:38 -07007804 const char* descriptor = dex_file.StringByTypeIdx(type_idx);
Ian Rogers98379392014-02-24 16:53:16 -08007805 resolved = FindClass(self, descriptor, class_loader);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07007806 if (resolved != nullptr) {
Jesse Wilson254db0f2011-11-16 16:44:11 -05007807 // TODO: we used to throw here if resolved's class loader was not the
7808 // boot class loader. This was to permit different classes with the
7809 // same name to be loaded simultaneously by different loaders
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07007810 dex_cache->SetResolvedType(type_idx, resolved);
7811 } else {
Ian Rogers62d6c772013-02-27 08:32:07 -08007812 CHECK(self->IsExceptionPending())
Ian Rogerscab01012012-01-10 17:35:46 -08007813 << "Expected pending exception for failed resolution of: " << descriptor;
Ian Rogers62d6c772013-02-27 08:32:07 -08007814 // Convert a ClassNotFoundException to a NoClassDefFoundError.
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07007815 StackHandleScope<1> hs(self);
Nicolas Geoffray14691c52015-03-05 10:40:17 +00007816 Handle<mirror::Throwable> cause(hs.NewHandle(self->GetException()));
Ian Rogers62d6c772013-02-27 08:32:07 -08007817 if (cause->InstanceOf(GetClassRoot(kJavaLangClassNotFoundException))) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07007818 DCHECK(resolved == nullptr); // No Handle needed to preserve resolved.
Ian Rogers98379392014-02-24 16:53:16 -08007819 self->ClearException();
jeffhao8cd6dda2012-02-22 10:15:34 -08007820 ThrowNoClassDefFoundError("Failed resolution of: %s", descriptor);
Nicolas Geoffray14691c52015-03-05 10:40:17 +00007821 self->GetException()->SetCause(cause.Get());
jeffhao8cd6dda2012-02-22 10:15:34 -08007822 }
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07007823 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07007824 }
Vladimir Marko72ab6842017-01-20 19:32:50 +00007825 DCHECK((resolved == nullptr) || resolved->IsResolved())
David Sehr709b0702016-10-13 09:12:37 -07007826 << resolved->PrettyDescriptor() << " " << resolved->GetStatus();
Mathieu Chartier28357fa2016-10-18 16:27:40 -07007827 return resolved.Ptr();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07007828}
7829
Andreas Gampe42ef8ab2015-12-03 17:27:32 -08007830template <ClassLinker::ResolveMode kResolveMode>
Mathieu Chartierc77f3ab2015-09-03 19:41:50 -07007831ArtMethod* ClassLinker::ResolveMethod(const DexFile& dex_file,
7832 uint32_t method_idx,
Mathieu Chartiere401d142015-04-22 13:56:20 -07007833 Handle<mirror::DexCache> dex_cache,
7834 Handle<mirror::ClassLoader> class_loader,
Mathieu Chartierc77f3ab2015-09-03 19:41:50 -07007835 ArtMethod* referrer,
7836 InvokeType type) {
Andreas Gampefa4333d2017-02-14 11:10:34 -08007837 DCHECK(dex_cache != nullptr);
Vladimir Markoba118822017-06-12 15:41:56 +01007838 DCHECK(referrer == nullptr || !referrer->IsProxyMethod());
Ian Rogers08f753d2012-08-24 14:35:25 -07007839 // Check for hit in the dex cache.
Vladimir Markoba118822017-06-12 15:41:56 +01007840 PointerSize pointer_size = image_pointer_size_;
7841 ArtMethod* resolved = dex_cache->GetResolvedMethod(method_idx, pointer_size);
Mathieu Chartiera59d9b22016-09-26 18:13:17 -07007842 Thread::PoisonObjectPointersIfDebug();
Vladimir Marko07bfbac2017-07-06 14:55:02 +01007843 DCHECK(resolved == nullptr || !resolved->IsRuntimeMethod());
7844 bool valid_dex_cache_method = resolved != nullptr;
Vladimir Markoba118822017-06-12 15:41:56 +01007845 if (kResolveMode == ResolveMode::kNoChecks && valid_dex_cache_method) {
7846 // We have a valid method from the DexCache and no checks to perform.
Mathieu Chartiere401d142015-04-22 13:56:20 -07007847 DCHECK(resolved->GetDeclaringClassUnchecked() != nullptr) << resolved->GetDexMethodIndex();
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07007848 return resolved;
7849 }
7850 const DexFile::MethodId& method_id = dex_file.GetMethodId(method_idx);
Vladimir Markoba118822017-06-12 15:41:56 +01007851 ObjPtr<mirror::Class> klass = nullptr;
7852 if (valid_dex_cache_method) {
7853 // We have a valid method from the DexCache but we need to perform ICCE and IAE checks.
7854 DCHECK(resolved->GetDeclaringClassUnchecked() != nullptr) << resolved->GetDexMethodIndex();
7855 klass = LookupResolvedType(dex_file, method_id.class_idx_, dex_cache.Get(), class_loader.Get());
Mathieu Chartierf5981312017-09-06 14:17:34 -07007856 CHECK(klass != nullptr) << resolved->PrettyMethod() << " " << resolved << " "
7857 << resolved->GetAccessFlags();
Vladimir Markoba118822017-06-12 15:41:56 +01007858 } else {
7859 // The method was not in the DexCache, resolve the declaring class.
7860 klass = ResolveType(dex_file, method_id.class_idx_, dex_cache, class_loader);
7861 if (klass == nullptr) {
7862 DCHECK(Thread::Current()->IsExceptionPending());
7863 return nullptr;
7864 }
7865 }
7866
7867 // Check if the invoke type matches the class type.
7868 if (kResolveMode == ResolveMode::kCheckICCEAndIAE &&
7869 CheckInvokeClassMismatch</* kThrow */ true>(
7870 dex_cache.Get(), type, [klass]() { return klass; })) {
Elliott Hughescc5f9a92011-09-28 19:17:29 -07007871 DCHECK(Thread::Current()->IsExceptionPending());
Andreas Gampeeff0f5d2014-08-13 21:49:37 -07007872 return nullptr;
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07007873 }
Vladimir Markoba118822017-06-12 15:41:56 +01007874
7875 if (!valid_dex_cache_method) {
7876 // Search for the method using dex_cache and method_idx. The Class::Find*Method()
7877 // functions can optimize the search if the dex_cache is the same as the DexCache
7878 // of the class, with fall-back to name and signature search otherwise.
7879 if (klass->IsInterface()) {
7880 resolved = klass->FindInterfaceMethod(dex_cache.Get(), method_idx, pointer_size);
7881 } else {
7882 resolved = klass->FindClassMethod(dex_cache.Get(), method_idx, pointer_size);
7883 }
7884 DCHECK(resolved == nullptr || resolved->GetDeclaringClassUnchecked() != nullptr);
7885 if (resolved != nullptr) {
7886 // Be a good citizen and update the dex cache to speed subsequent calls.
7887 dex_cache->SetResolvedMethod(method_idx, resolved, pointer_size);
Ian Rogers7b0c5b42012-02-16 15:29:07 -08007888 }
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07007889 }
Vladimir Markoba118822017-06-12 15:41:56 +01007890
7891 // Note: We can check for IllegalAccessError only if we have a referrer.
7892 if (kResolveMode == ResolveMode::kCheckICCEAndIAE && resolved != nullptr && referrer != nullptr) {
7893 ObjPtr<mirror::Class> methods_class = resolved->GetDeclaringClass();
7894 ObjPtr<mirror::Class> referring_class = referrer->GetDeclaringClass();
7895 if (!referring_class->CheckResolvedMethodAccess(methods_class,
7896 resolved,
7897 dex_cache.Get(),
7898 method_idx,
7899 type)) {
7900 DCHECK(Thread::Current()->IsExceptionPending());
7901 return nullptr;
7902 }
7903 }
7904
Andreas Gampeeff0f5d2014-08-13 21:49:37 -07007905 // If we found a method, check for incompatible class changes.
Vladimir Markoba118822017-06-12 15:41:56 +01007906 if (LIKELY(resolved != nullptr) &&
7907 LIKELY(kResolveMode == ResolveMode::kNoChecks ||
7908 !resolved->CheckIncompatibleClassChange(type))) {
Ian Rogers08f753d2012-08-24 14:35:25 -07007909 return resolved;
7910 } else {
Vladimir Markoba118822017-06-12 15:41:56 +01007911 // If we had a method, or if we can find one with another lookup type,
7912 // it's an incompatible-class-change error.
7913 if (resolved == nullptr) {
7914 if (klass->IsInterface()) {
7915 resolved = klass->FindClassMethod(dex_cache.Get(), method_idx, pointer_size);
7916 } else {
7917 // If there was an interface method with the same signature,
7918 // we would have found it also in the "copied" methods.
7919 DCHECK(klass->FindInterfaceMethod(dex_cache.Get(), method_idx, pointer_size) == nullptr);
7920 }
7921 }
Andreas Gampeeff0f5d2014-08-13 21:49:37 -07007922 if (resolved != nullptr) {
Mathieu Chartiere401d142015-04-22 13:56:20 -07007923 ThrowIncompatibleClassChangeError(type, resolved->GetInvokeType(), resolved, referrer);
Andreas Gampeeff0f5d2014-08-13 21:49:37 -07007924 } else {
Vladimir Markoba118822017-06-12 15:41:56 +01007925 // We failed to find the method (using all lookup types), so throw a NoSuchMethodError.
Andreas Gampeeff0f5d2014-08-13 21:49:37 -07007926 const char* name = dex_file.StringDataByIdx(method_id.name_idx_);
7927 const Signature signature = dex_file.GetMethodSignature(method_id);
Vladimir Markoba118822017-06-12 15:41:56 +01007928 ThrowNoSuchMethodError(type, klass, name, signature);
Ian Rogers08f753d2012-08-24 14:35:25 -07007929 }
Ian Rogerse0a02da2014-12-02 14:10:53 -08007930 Thread::Current()->AssertPendingException();
Andreas Gampeeff0f5d2014-08-13 21:49:37 -07007931 return nullptr;
Ian Rogers08f753d2012-08-24 14:35:25 -07007932 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07007933}
7934
Jeff Hao13e748b2015-08-25 20:44:19 +00007935ArtMethod* ClassLinker::ResolveMethodWithoutInvokeType(const DexFile& dex_file,
7936 uint32_t method_idx,
7937 Handle<mirror::DexCache> dex_cache,
7938 Handle<mirror::ClassLoader> class_loader) {
7939 ArtMethod* resolved = dex_cache->GetResolvedMethod(method_idx, image_pointer_size_);
Mathieu Chartiera59d9b22016-09-26 18:13:17 -07007940 Thread::PoisonObjectPointersIfDebug();
Vladimir Marko07bfbac2017-07-06 14:55:02 +01007941 if (resolved != nullptr) {
7942 DCHECK(!resolved->IsRuntimeMethod());
Jeff Hao13e748b2015-08-25 20:44:19 +00007943 DCHECK(resolved->GetDeclaringClassUnchecked() != nullptr) << resolved->GetDexMethodIndex();
7944 return resolved;
7945 }
7946 // Fail, get the declaring class.
7947 const DexFile::MethodId& method_id = dex_file.GetMethodId(method_idx);
Vladimir Markoba118822017-06-12 15:41:56 +01007948 ObjPtr<mirror::Class> klass =
7949 ResolveType(dex_file, method_id.class_idx_, dex_cache, class_loader);
Jeff Hao13e748b2015-08-25 20:44:19 +00007950 if (klass == nullptr) {
7951 Thread::Current()->AssertPendingException();
7952 return nullptr;
7953 }
7954 if (klass->IsInterface()) {
Vladimir Markoba118822017-06-12 15:41:56 +01007955 resolved = klass->FindInterfaceMethod(dex_cache.Get(), method_idx, image_pointer_size_);
7956 } else {
7957 resolved = klass->FindClassMethod(dex_cache.Get(), method_idx, image_pointer_size_);
Jeff Hao13e748b2015-08-25 20:44:19 +00007958 }
7959
7960 return resolved;
7961}
7962
Vladimir Markof44d36c2017-03-14 14:18:46 +00007963ArtField* ClassLinker::LookupResolvedField(uint32_t field_idx,
7964 ObjPtr<mirror::DexCache> dex_cache,
7965 ObjPtr<mirror::ClassLoader> class_loader,
7966 bool is_static) {
7967 const DexFile& dex_file = *dex_cache->GetDexFile();
7968 const DexFile::FieldId& field_id = dex_file.GetFieldId(field_idx);
7969 ObjPtr<mirror::Class> klass = dex_cache->GetResolvedType(field_id.class_idx_);
7970 if (klass == nullptr) {
7971 klass = LookupResolvedType(dex_file, field_id.class_idx_, dex_cache, class_loader);
7972 }
7973 if (klass == nullptr) {
7974 // The class has not been resolved yet, so the field is also unresolved.
7975 return nullptr;
7976 }
7977 DCHECK(klass->IsResolved());
7978 Thread* self = is_static ? Thread::Current() : nullptr;
7979
7980 // First try to find a field declared directly by `klass` by the field index.
7981 ArtField* resolved_field = is_static
7982 ? mirror::Class::FindStaticField(self, klass, dex_cache, field_idx)
7983 : klass->FindInstanceField(dex_cache, field_idx);
7984
7985 if (resolved_field == nullptr) {
7986 // If not found in `klass` by field index, search the class hierarchy using the name and type.
7987 const char* name = dex_file.GetFieldName(field_id);
7988 const char* type = dex_file.GetFieldTypeDescriptor(field_id);
7989 resolved_field = is_static
7990 ? mirror::Class::FindStaticField(self, klass, name, type)
7991 : klass->FindInstanceField(name, type);
7992 }
7993
7994 if (resolved_field != nullptr) {
7995 dex_cache->SetResolvedField(field_idx, resolved_field, image_pointer_size_);
7996 }
7997 return resolved_field;
7998}
7999
Mathieu Chartierc77f3ab2015-09-03 19:41:50 -07008000ArtField* ClassLinker::ResolveField(const DexFile& dex_file,
8001 uint32_t field_idx,
Mathieu Chartierc7853442015-03-27 14:35:38 -07008002 Handle<mirror::DexCache> dex_cache,
Mathieu Chartierc77f3ab2015-09-03 19:41:50 -07008003 Handle<mirror::ClassLoader> class_loader,
8004 bool is_static) {
Andreas Gampefa4333d2017-02-14 11:10:34 -08008005 DCHECK(dex_cache != nullptr);
Mathieu Chartierc7853442015-03-27 14:35:38 -07008006 ArtField* resolved = dex_cache->GetResolvedField(field_idx, image_pointer_size_);
Mathieu Chartiera59d9b22016-09-26 18:13:17 -07008007 Thread::PoisonObjectPointersIfDebug();
Andreas Gampe58a5af82014-07-31 16:23:49 -07008008 if (resolved != nullptr) {
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07008009 return resolved;
8010 }
8011 const DexFile::FieldId& field_id = dex_file.GetFieldId(field_idx);
Mathieu Chartierf8322842014-05-16 10:59:25 -07008012 Thread* const self = Thread::Current();
Vladimir Marko19a4d372016-12-08 14:41:46 +00008013 ObjPtr<mirror::Class> klass = ResolveType(dex_file, field_id.class_idx_, dex_cache, class_loader);
8014 if (klass == nullptr) {
Ian Rogers9f1ab122011-12-12 08:52:43 -08008015 DCHECK(Thread::Current()->IsExceptionPending());
Andreas Gampe58a5af82014-07-31 16:23:49 -07008016 return nullptr;
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07008017 }
8018
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07008019 if (is_static) {
Vladimir Marko19a4d372016-12-08 14:41:46 +00008020 resolved = mirror::Class::FindStaticField(self, klass, dex_cache.Get(), field_idx);
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07008021 } else {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07008022 resolved = klass->FindInstanceField(dex_cache.Get(), field_idx);
Brian Carlstrom20cfffa2011-08-26 02:31:27 -07008023 }
Ian Rogers7b0c5b42012-02-16 15:29:07 -08008024
Andreas Gampe58a5af82014-07-31 16:23:49 -07008025 if (resolved == nullptr) {
Ian Rogers7b0c5b42012-02-16 15:29:07 -08008026 const char* name = dex_file.GetFieldName(field_id);
8027 const char* type = dex_file.GetFieldTypeDescriptor(field_id);
8028 if (is_static) {
Mathieu Chartierf8322842014-05-16 10:59:25 -07008029 resolved = mirror::Class::FindStaticField(self, klass, name, type);
Ian Rogers7b0c5b42012-02-16 15:29:07 -08008030 } else {
8031 resolved = klass->FindInstanceField(name, type);
8032 }
Andreas Gampe58a5af82014-07-31 16:23:49 -07008033 if (resolved == nullptr) {
Vladimir Marko19a4d372016-12-08 14:41:46 +00008034 ThrowNoSuchFieldError(is_static ? "static " : "instance ", klass, type, name);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07008035 return nullptr;
Ian Rogers7b0c5b42012-02-16 15:29:07 -08008036 }
Ian Rogersb067ac22011-12-13 18:05:09 -08008037 }
Mathieu Chartierc7853442015-03-27 14:35:38 -07008038 dex_cache->SetResolvedField(field_idx, resolved, image_pointer_size_);
Ian Rogersb067ac22011-12-13 18:05:09 -08008039 return resolved;
8040}
8041
Mathieu Chartierc77f3ab2015-09-03 19:41:50 -07008042ArtField* ClassLinker::ResolveFieldJLS(const DexFile& dex_file,
8043 uint32_t field_idx,
Mathieu Chartierc7853442015-03-27 14:35:38 -07008044 Handle<mirror::DexCache> dex_cache,
8045 Handle<mirror::ClassLoader> class_loader) {
Andreas Gampefa4333d2017-02-14 11:10:34 -08008046 DCHECK(dex_cache != nullptr);
Mathieu Chartierc7853442015-03-27 14:35:38 -07008047 ArtField* resolved = dex_cache->GetResolvedField(field_idx, image_pointer_size_);
Mathieu Chartiera59d9b22016-09-26 18:13:17 -07008048 Thread::PoisonObjectPointersIfDebug();
Andreas Gampe58a5af82014-07-31 16:23:49 -07008049 if (resolved != nullptr) {
Ian Rogersb067ac22011-12-13 18:05:09 -08008050 return resolved;
8051 }
8052 const DexFile::FieldId& field_id = dex_file.GetFieldId(field_idx);
Mathieu Chartierf8322842014-05-16 10:59:25 -07008053 Thread* self = Thread::Current();
Vladimir Marko19a4d372016-12-08 14:41:46 +00008054 ObjPtr<mirror::Class> klass(ResolveType(dex_file, field_id.class_idx_, dex_cache, class_loader));
8055 if (klass == nullptr) {
Ian Rogersb067ac22011-12-13 18:05:09 -08008056 DCHECK(Thread::Current()->IsExceptionPending());
Andreas Gampe2ed8def2014-08-28 14:41:02 -07008057 return nullptr;
Ian Rogersb067ac22011-12-13 18:05:09 -08008058 }
8059
Vladimir Markof44d36c2017-03-14 14:18:46 +00008060 StringPiece name(dex_file.GetFieldName(field_id));
8061 StringPiece type(dex_file.GetFieldTypeDescriptor(field_id));
Mathieu Chartierf8322842014-05-16 10:59:25 -07008062 resolved = mirror::Class::FindField(self, klass, name, type);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07008063 if (resolved != nullptr) {
Mathieu Chartierc7853442015-03-27 14:35:38 -07008064 dex_cache->SetResolvedField(field_idx, resolved, image_pointer_size_);
Ian Rogersb067ac22011-12-13 18:05:09 -08008065 } else {
Vladimir Marko19a4d372016-12-08 14:41:46 +00008066 ThrowNoSuchFieldError("", klass, type, name);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -07008067 }
8068 return resolved;
Carl Shapiro5fafe2b2011-07-09 15:34:41 -07008069}
8070
Orion Hodsone7732be2017-10-11 14:35:20 +01008071mirror::MethodType* ClassLinker::ResolveMethodType(Thread* self,
8072 const DexFile& dex_file,
Narayan Kamath25352fc2016-08-03 12:46:58 +01008073 uint32_t proto_idx,
8074 Handle<mirror::DexCache> dex_cache,
8075 Handle<mirror::ClassLoader> class_loader) {
8076 DCHECK(Runtime::Current()->IsMethodHandlesEnabled());
Andreas Gampefa4333d2017-02-14 11:10:34 -08008077 DCHECK(dex_cache != nullptr);
Narayan Kamath25352fc2016-08-03 12:46:58 +01008078
Mathieu Chartier28357fa2016-10-18 16:27:40 -07008079 ObjPtr<mirror::MethodType> resolved = dex_cache->GetResolvedMethodType(proto_idx);
Narayan Kamath25352fc2016-08-03 12:46:58 +01008080 if (resolved != nullptr) {
Mathieu Chartier28357fa2016-10-18 16:27:40 -07008081 return resolved.Ptr();
Narayan Kamath25352fc2016-08-03 12:46:58 +01008082 }
8083
Narayan Kamath25352fc2016-08-03 12:46:58 +01008084 StackHandleScope<4> hs(self);
8085
8086 // First resolve the return type.
8087 const DexFile::ProtoId& proto_id = dex_file.GetProtoId(proto_idx);
8088 Handle<mirror::Class> return_type(hs.NewHandle(
8089 ResolveType(dex_file, proto_id.return_type_idx_, dex_cache, class_loader)));
Andreas Gampefa4333d2017-02-14 11:10:34 -08008090 if (return_type == nullptr) {
Narayan Kamath25352fc2016-08-03 12:46:58 +01008091 DCHECK(self->IsExceptionPending());
8092 return nullptr;
8093 }
8094
8095 // Then resolve the argument types.
8096 //
8097 // TODO: Is there a better way to figure out the number of method arguments
8098 // other than by looking at the shorty ?
8099 const size_t num_method_args = strlen(dex_file.StringDataByIdx(proto_id.shorty_idx_)) - 1;
8100
Mathieu Chartierbc5a7952016-10-17 15:46:31 -07008101 ObjPtr<mirror::Class> class_type = mirror::Class::GetJavaLangClass();
Mathieu Chartier28357fa2016-10-18 16:27:40 -07008102 ObjPtr<mirror::Class> array_of_class = FindArrayClass(self, &class_type);
Narayan Kamath25352fc2016-08-03 12:46:58 +01008103 Handle<mirror::ObjectArray<mirror::Class>> method_params(hs.NewHandle(
8104 mirror::ObjectArray<mirror::Class>::Alloc(self, array_of_class, num_method_args)));
Andreas Gampefa4333d2017-02-14 11:10:34 -08008105 if (method_params == nullptr) {
Narayan Kamath25352fc2016-08-03 12:46:58 +01008106 DCHECK(self->IsExceptionPending());
8107 return nullptr;
8108 }
8109
8110 DexFileParameterIterator it(dex_file, proto_id);
8111 int32_t i = 0;
8112 MutableHandle<mirror::Class> param_class = hs.NewHandle<mirror::Class>(nullptr);
8113 for (; it.HasNext(); it.Next()) {
Andreas Gampea5b09a62016-11-17 15:21:22 -08008114 const dex::TypeIndex type_idx = it.GetTypeIdx();
Narayan Kamath25352fc2016-08-03 12:46:58 +01008115 param_class.Assign(ResolveType(dex_file, type_idx, dex_cache, class_loader));
Andreas Gampefa4333d2017-02-14 11:10:34 -08008116 if (param_class == nullptr) {
Narayan Kamath25352fc2016-08-03 12:46:58 +01008117 DCHECK(self->IsExceptionPending());
8118 return nullptr;
8119 }
8120
8121 method_params->Set(i++, param_class.Get());
8122 }
8123
8124 DCHECK(!it.HasNext());
8125
8126 Handle<mirror::MethodType> type = hs.NewHandle(
8127 mirror::MethodType::Create(self, return_type, method_params));
8128 dex_cache->SetResolvedMethodType(proto_idx, type.Get());
8129
8130 return type.Get();
8131}
8132
Orion Hodsone7732be2017-10-11 14:35:20 +01008133mirror::MethodType* ClassLinker::ResolveMethodType(Thread* self,
8134 uint32_t proto_idx,
8135 ArtMethod* referrer) {
Orion Hodson2e599942017-09-22 16:17:41 +01008136 StackHandleScope<2> hs(self);
8137 const DexFile* dex_file = referrer->GetDexFile();
8138 Handle<mirror::DexCache> dex_cache(hs.NewHandle(referrer->GetDexCache()));
8139 Handle<mirror::ClassLoader> class_loader(hs.NewHandle(referrer->GetClassLoader()));
Orion Hodsone7732be2017-10-11 14:35:20 +01008140 return ResolveMethodType(self, *dex_file, proto_idx, dex_cache, class_loader);
Orion Hodson2e599942017-09-22 16:17:41 +01008141}
8142
Orion Hodsonf8db2c32017-07-07 20:07:12 +01008143mirror::MethodHandle* ClassLinker::ResolveMethodHandleForField(
8144 Thread* self,
8145 const DexFile::MethodHandleItem& method_handle,
8146 ArtMethod* referrer) {
Orion Hodsonc069a302017-01-18 09:23:12 +00008147 DexFile::MethodHandleType handle_type =
Orion Hodsonf8db2c32017-07-07 20:07:12 +01008148 static_cast<DexFile::MethodHandleType>(method_handle.method_handle_type_);
8149 mirror::MethodHandle::Kind kind;
8150 bool is_static;
8151 int32_t num_params;
Orion Hodsonc069a302017-01-18 09:23:12 +00008152 switch (handle_type) {
8153 case DexFile::MethodHandleType::kStaticPut: {
Orion Hodson82b351f2017-07-05 14:34:25 +01008154 kind = mirror::MethodHandle::Kind::kStaticPut;
Orion Hodsonf8db2c32017-07-07 20:07:12 +01008155 is_static = true;
8156 num_params = 1;
Orion Hodson631827d2017-04-10 14:53:47 +01008157 break;
8158 }
8159 case DexFile::MethodHandleType::kStaticGet: {
Orion Hodson82b351f2017-07-05 14:34:25 +01008160 kind = mirror::MethodHandle::Kind::kStaticGet;
Orion Hodsonf8db2c32017-07-07 20:07:12 +01008161 is_static = true;
8162 num_params = 0;
Orion Hodson631827d2017-04-10 14:53:47 +01008163 break;
8164 }
8165 case DexFile::MethodHandleType::kInstancePut: {
Orion Hodson82b351f2017-07-05 14:34:25 +01008166 kind = mirror::MethodHandle::Kind::kInstancePut;
Orion Hodsonf8db2c32017-07-07 20:07:12 +01008167 is_static = false;
Orion Hodsonc069a302017-01-18 09:23:12 +00008168 num_params = 2;
8169 break;
8170 }
8171 case DexFile::MethodHandleType::kInstanceGet: {
Orion Hodsonf8db2c32017-07-07 20:07:12 +01008172 kind = mirror::MethodHandle::Kind::kInstanceGet;
8173 is_static = false;
Orion Hodsonc069a302017-01-18 09:23:12 +00008174 num_params = 1;
8175 break;
8176 }
Orion Hodsonf8db2c32017-07-07 20:07:12 +01008177 case DexFile::MethodHandleType::kInvokeStatic:
Orion Hodson82b351f2017-07-05 14:34:25 +01008178 case DexFile::MethodHandleType::kInvokeInstance:
Orion Hodsonf8db2c32017-07-07 20:07:12 +01008179 case DexFile::MethodHandleType::kInvokeConstructor:
Orion Hodson82b351f2017-07-05 14:34:25 +01008180 case DexFile::MethodHandleType::kInvokeDirect:
Orion Hodsonf8db2c32017-07-07 20:07:12 +01008181 case DexFile::MethodHandleType::kInvokeInterface:
8182 UNREACHABLE();
Orion Hodsonc069a302017-01-18 09:23:12 +00008183 }
8184
Orion Hodsonf8db2c32017-07-07 20:07:12 +01008185 ArtField* target_field =
8186 ResolveField(method_handle.field_or_method_idx_, referrer, is_static);
8187 if (LIKELY(target_field != nullptr)) {
8188 ObjPtr<mirror::Class> target_class = target_field->GetDeclaringClass();
8189 ObjPtr<mirror::Class> referring_class = referrer->GetDeclaringClass();
8190 if (UNLIKELY(!referring_class->CanAccessMember(target_class, target_field->GetAccessFlags()))) {
8191 ThrowIllegalAccessErrorField(referring_class, target_field);
8192 return nullptr;
8193 }
8194 } else {
8195 DCHECK(Thread::Current()->IsExceptionPending());
8196 return nullptr;
8197 }
8198
8199 StackHandleScope<4> hs(self);
Orion Hodsonc069a302017-01-18 09:23:12 +00008200 ObjPtr<mirror::Class> class_type = mirror::Class::GetJavaLangClass();
8201 ObjPtr<mirror::Class> array_of_class = FindArrayClass(self, &class_type);
8202 Handle<mirror::ObjectArray<mirror::Class>> method_params(hs.NewHandle(
8203 mirror::ObjectArray<mirror::Class>::Alloc(self, array_of_class, num_params)));
Orion Hodsonf8db2c32017-07-07 20:07:12 +01008204 if (UNLIKELY(method_params.Get() == nullptr)) {
Orion Hodsonc069a302017-01-18 09:23:12 +00008205 DCHECK(self->IsExceptionPending());
8206 return nullptr;
8207 }
8208
Orion Hodsonf8db2c32017-07-07 20:07:12 +01008209 Handle<mirror::Class> constructor_class;
Orion Hodsonc069a302017-01-18 09:23:12 +00008210 Handle<mirror::Class> return_type;
8211 switch (handle_type) {
8212 case DexFile::MethodHandleType::kStaticPut: {
Vladimir Marko4098a7a2017-11-06 16:00:51 +00008213 method_params->Set(0, target_field->ResolveType());
Orion Hodsonc069a302017-01-18 09:23:12 +00008214 return_type = hs.NewHandle(FindPrimitiveClass('V'));
8215 break;
8216 }
8217 case DexFile::MethodHandleType::kStaticGet: {
Vladimir Marko4098a7a2017-11-06 16:00:51 +00008218 return_type = hs.NewHandle(target_field->ResolveType());
Orion Hodsonc069a302017-01-18 09:23:12 +00008219 break;
8220 }
8221 case DexFile::MethodHandleType::kInstancePut: {
Orion Hodson631827d2017-04-10 14:53:47 +01008222 method_params->Set(0, target_field->GetDeclaringClass());
Vladimir Marko4098a7a2017-11-06 16:00:51 +00008223 method_params->Set(1, target_field->ResolveType());
Orion Hodsonc069a302017-01-18 09:23:12 +00008224 return_type = hs.NewHandle(FindPrimitiveClass('V'));
8225 break;
8226 }
8227 case DexFile::MethodHandleType::kInstanceGet: {
Orion Hodson631827d2017-04-10 14:53:47 +01008228 method_params->Set(0, target_field->GetDeclaringClass());
Vladimir Marko4098a7a2017-11-06 16:00:51 +00008229 return_type = hs.NewHandle(target_field->ResolveType());
Orion Hodsonc069a302017-01-18 09:23:12 +00008230 break;
8231 }
Orion Hodsonf8db2c32017-07-07 20:07:12 +01008232 case DexFile::MethodHandleType::kInvokeStatic:
Orion Hodson631827d2017-04-10 14:53:47 +01008233 case DexFile::MethodHandleType::kInvokeInstance:
Orion Hodsonf8db2c32017-07-07 20:07:12 +01008234 case DexFile::MethodHandleType::kInvokeConstructor:
8235 case DexFile::MethodHandleType::kInvokeDirect:
Orion Hodson631827d2017-04-10 14:53:47 +01008236 case DexFile::MethodHandleType::kInvokeInterface:
Orion Hodsonf8db2c32017-07-07 20:07:12 +01008237 UNREACHABLE();
8238 }
8239
8240 for (int32_t i = 0; i < num_params; ++i) {
8241 if (UNLIKELY(method_params->Get(i) == nullptr)) {
8242 DCHECK(self->IsExceptionPending());
8243 return nullptr;
Orion Hodsonc069a302017-01-18 09:23:12 +00008244 }
8245 }
8246
Orion Hodsonf8db2c32017-07-07 20:07:12 +01008247 if (UNLIKELY(return_type.IsNull())) {
Orion Hodsonc069a302017-01-18 09:23:12 +00008248 DCHECK(self->IsExceptionPending());
8249 return nullptr;
8250 }
8251
8252 Handle<mirror::MethodType>
Orion Hodsonf8db2c32017-07-07 20:07:12 +01008253 method_type(hs.NewHandle(mirror::MethodType::Create(self, return_type, method_params)));
8254 if (UNLIKELY(method_type.IsNull())) {
Orion Hodsonc069a302017-01-18 09:23:12 +00008255 DCHECK(self->IsExceptionPending());
8256 return nullptr;
8257 }
Orion Hodson631827d2017-04-10 14:53:47 +01008258
Orion Hodsonf8db2c32017-07-07 20:07:12 +01008259 uintptr_t target = reinterpret_cast<uintptr_t>(target_field);
8260 return mirror::MethodHandleImpl::Create(self, target, kind, method_type);
8261}
8262
8263mirror::MethodHandle* ClassLinker::ResolveMethodHandleForMethod(
8264 Thread* self,
8265 const DexFile* const dex_file,
8266 const DexFile::MethodHandleItem& method_handle,
8267 ArtMethod* referrer) {
8268 DexFile::MethodHandleType handle_type =
8269 static_cast<DexFile::MethodHandleType>(method_handle.method_handle_type_);
8270 mirror::MethodHandle::Kind kind;
8271 uint32_t receiver_count = 0;
8272 ArtMethod* target_method = nullptr;
8273 switch (handle_type) {
8274 case DexFile::MethodHandleType::kStaticPut:
8275 case DexFile::MethodHandleType::kStaticGet:
8276 case DexFile::MethodHandleType::kInstancePut:
8277 case DexFile::MethodHandleType::kInstanceGet:
8278 UNREACHABLE();
8279 case DexFile::MethodHandleType::kInvokeStatic: {
8280 kind = mirror::MethodHandle::Kind::kInvokeStatic;
8281 receiver_count = 0;
Vladimir Markoba118822017-06-12 15:41:56 +01008282 target_method = ResolveMethod<ResolveMode::kNoChecks>(self,
8283 method_handle.field_or_method_idx_,
8284 referrer,
8285 InvokeType::kStatic);
Orion Hodsonf8db2c32017-07-07 20:07:12 +01008286 break;
8287 }
8288 case DexFile::MethodHandleType::kInvokeInstance: {
8289 kind = mirror::MethodHandle::Kind::kInvokeVirtual;
8290 receiver_count = 1;
Vladimir Markoba118822017-06-12 15:41:56 +01008291 target_method = ResolveMethod<ResolveMode::kNoChecks>(self,
8292 method_handle.field_or_method_idx_,
8293 referrer,
8294 InvokeType::kVirtual);
Orion Hodsonf8db2c32017-07-07 20:07:12 +01008295 break;
8296 }
8297 case DexFile::MethodHandleType::kInvokeConstructor: {
8298 // Constructors are currently implemented as a transform. They
8299 // are special cased later in this method.
8300 kind = mirror::MethodHandle::Kind::kInvokeTransform;
8301 receiver_count = 0;
Vladimir Markoba118822017-06-12 15:41:56 +01008302 target_method = ResolveMethod<ResolveMode::kNoChecks>(self,
8303 method_handle.field_or_method_idx_,
8304 referrer,
8305 InvokeType::kDirect);
Orion Hodsonf8db2c32017-07-07 20:07:12 +01008306 break;
8307 }
8308 case DexFile::MethodHandleType::kInvokeDirect: {
8309 kind = mirror::MethodHandle::Kind::kInvokeDirect;
8310 receiver_count = 1;
8311 StackHandleScope<2> hs(self);
8312 // A constant method handle with type kInvokeDirect can refer to
8313 // a method that is private or to a method in a super class. To
8314 // disambiguate the two options, we resolve the method ignoring
8315 // the invocation type to determine if the method is private. We
8316 // then resolve again specifying the intended invocation type to
8317 // force the appropriate checks.
8318 target_method = ResolveMethodWithoutInvokeType(*dex_file,
8319 method_handle.field_or_method_idx_,
8320 hs.NewHandle(referrer->GetDexCache()),
8321 hs.NewHandle(referrer->GetClassLoader()));
8322 if (UNLIKELY(target_method == nullptr)) {
8323 break;
8324 }
8325
8326 if (target_method->IsPrivate()) {
8327 kind = mirror::MethodHandle::Kind::kInvokeDirect;
Vladimir Markoba118822017-06-12 15:41:56 +01008328 target_method = ResolveMethod<ResolveMode::kNoChecks>(self,
8329 method_handle.field_or_method_idx_,
8330 referrer,
8331 InvokeType::kDirect);
Orion Hodsonf8db2c32017-07-07 20:07:12 +01008332 } else {
8333 kind = mirror::MethodHandle::Kind::kInvokeSuper;
Vladimir Markoba118822017-06-12 15:41:56 +01008334 target_method = ResolveMethod<ResolveMode::kNoChecks>(self,
8335 method_handle.field_or_method_idx_,
8336 referrer,
8337 InvokeType::kSuper);
Orion Hodsonf8db2c32017-07-07 20:07:12 +01008338 if (UNLIKELY(target_method == nullptr)) {
8339 break;
8340 }
8341 // Find the method specified in the parent in referring class
8342 // so invoke-super invokes the method in the parent of the
8343 // referrer.
8344 target_method =
8345 referrer->GetDeclaringClass()->FindVirtualMethodForVirtual(target_method,
8346 kRuntimePointerSize);
8347 }
8348 break;
8349 }
8350 case DexFile::MethodHandleType::kInvokeInterface: {
8351 kind = mirror::MethodHandle::Kind::kInvokeInterface;
8352 receiver_count = 1;
Vladimir Markoba118822017-06-12 15:41:56 +01008353 target_method = ResolveMethod<ResolveMode::kNoChecks>(self,
8354 method_handle.field_or_method_idx_,
8355 referrer,
8356 InvokeType::kInterface);
Orion Hodsonf8db2c32017-07-07 20:07:12 +01008357 break;
8358 }
Orion Hodson631827d2017-04-10 14:53:47 +01008359 }
Orion Hodsonf8db2c32017-07-07 20:07:12 +01008360
8361 if (UNLIKELY(target_method == nullptr)) {
8362 DCHECK(Thread::Current()->IsExceptionPending());
8363 return nullptr;
8364 }
8365
8366 ObjPtr<mirror::Class> target_class = target_method->GetDeclaringClass();
8367 ObjPtr<mirror::Class> referring_class = referrer->GetDeclaringClass();
8368 uint32_t access_flags = target_method->GetAccessFlags();
8369 if (UNLIKELY(!referring_class->CanAccessMember(target_class, access_flags))) {
8370 ThrowIllegalAccessErrorMethod(referring_class, target_method);
8371 return nullptr;
8372 }
8373
8374 // Calculate the number of parameters from the method shorty. We add the
8375 // receiver count (0 or 1) and deduct one for the return value.
8376 uint32_t shorty_length;
8377 target_method->GetShorty(&shorty_length);
8378 int32_t num_params = static_cast<int32_t>(shorty_length + receiver_count - 1);
8379
8380 StackHandleScope<7> hs(self);
8381 ObjPtr<mirror::Class> class_type = mirror::Class::GetJavaLangClass();
8382 ObjPtr<mirror::Class> array_of_class = FindArrayClass(self, &class_type);
8383 Handle<mirror::ObjectArray<mirror::Class>> method_params(hs.NewHandle(
8384 mirror::ObjectArray<mirror::Class>::Alloc(self, array_of_class, num_params)));
8385 if (method_params.Get() == nullptr) {
8386 DCHECK(self->IsExceptionPending());
8387 return nullptr;
8388 }
8389
8390 Handle<mirror::DexCache> dex_cache(hs.NewHandle(referrer->GetDexCache()));
8391 Handle<mirror::ClassLoader> class_loader(hs.NewHandle(referrer->GetClassLoader()));
8392 int32_t index = 0;
8393
8394 if (receiver_count != 0) {
8395 // Insert receiver
8396 method_params->Set(index++, target_method->GetDeclaringClass());
8397 }
8398
8399 DexFileParameterIterator it(*dex_file, target_method->GetPrototype());
8400 while (it.HasNext()) {
8401 const dex::TypeIndex type_idx = it.GetTypeIdx();
8402 mirror::Class* klass = ResolveType(*dex_file, type_idx, dex_cache, class_loader);
8403 if (nullptr == klass) {
8404 DCHECK(self->IsExceptionPending());
8405 return nullptr;
8406 }
8407 method_params->Set(index++, klass);
8408 it.Next();
8409 }
8410
Vladimir Markob45528c2017-07-27 14:14:28 +01008411 Handle<mirror::Class> return_type = hs.NewHandle(target_method->ResolveReturnType());
Orion Hodsonf8db2c32017-07-07 20:07:12 +01008412 if (UNLIKELY(return_type.IsNull())) {
8413 DCHECK(self->IsExceptionPending());
8414 return nullptr;
8415 }
8416
8417 Handle<mirror::MethodType>
8418 method_type(hs.NewHandle(mirror::MethodType::Create(self, return_type, method_params)));
8419 if (UNLIKELY(method_type.IsNull())) {
8420 DCHECK(self->IsExceptionPending());
8421 return nullptr;
8422 }
8423
8424 if (UNLIKELY(handle_type == DexFile::MethodHandleType::kInvokeConstructor)) {
8425 Handle<mirror::Class> constructor_class = hs.NewHandle(target_method->GetDeclaringClass());
8426 Handle<mirror::MethodHandlesLookup> lookup =
8427 hs.NewHandle(mirror::MethodHandlesLookup::GetDefault(self));
8428 return lookup->FindConstructor(self, constructor_class, method_type);
8429 }
8430
8431 uintptr_t target = reinterpret_cast<uintptr_t>(target_method);
8432 return mirror::MethodHandleImpl::Create(self, target, kind, method_type);
8433}
8434
Orion Hodsone7732be2017-10-11 14:35:20 +01008435mirror::MethodHandle* ClassLinker::ResolveMethodHandle(Thread* self,
8436 uint32_t method_handle_idx,
Orion Hodsonf8db2c32017-07-07 20:07:12 +01008437 ArtMethod* referrer)
8438 REQUIRES_SHARED(Locks::mutator_lock_) {
Orion Hodsonf8db2c32017-07-07 20:07:12 +01008439 const DexFile* const dex_file = referrer->GetDexFile();
8440 const DexFile::MethodHandleItem& method_handle = dex_file->GetMethodHandle(method_handle_idx);
8441 switch (static_cast<DexFile::MethodHandleType>(method_handle.method_handle_type_)) {
8442 case DexFile::MethodHandleType::kStaticPut:
8443 case DexFile::MethodHandleType::kStaticGet:
8444 case DexFile::MethodHandleType::kInstancePut:
8445 case DexFile::MethodHandleType::kInstanceGet:
8446 return ResolveMethodHandleForField(self, method_handle, referrer);
8447 case DexFile::MethodHandleType::kInvokeStatic:
8448 case DexFile::MethodHandleType::kInvokeInstance:
8449 case DexFile::MethodHandleType::kInvokeConstructor:
8450 case DexFile::MethodHandleType::kInvokeDirect:
8451 case DexFile::MethodHandleType::kInvokeInterface:
8452 return ResolveMethodHandleForMethod(self, dex_file, method_handle, referrer);
8453 }
Orion Hodsonc069a302017-01-18 09:23:12 +00008454}
8455
Ian Rogers6f3dbba2014-10-14 17:41:57 -07008456bool ClassLinker::IsQuickResolutionStub(const void* entry_point) const {
8457 return (entry_point == GetQuickResolutionStub()) ||
8458 (quick_resolution_trampoline_ == entry_point);
8459}
8460
Ian Rogers6f3dbba2014-10-14 17:41:57 -07008461bool ClassLinker::IsQuickToInterpreterBridge(const void* entry_point) const {
8462 return (entry_point == GetQuickToInterpreterBridge()) ||
8463 (quick_to_interpreter_bridge_trampoline_ == entry_point);
8464}
8465
8466bool ClassLinker::IsQuickGenericJniStub(const void* entry_point) const {
8467 return (entry_point == GetQuickGenericJniStub()) ||
8468 (quick_generic_jni_trampoline_ == entry_point);
8469}
8470
David Sehra49e0532017-08-25 08:05:29 -07008471bool ClassLinker::IsJniDlsymLookupStub(const void* entry_point) const {
8472 return entry_point == GetJniDlsymLookupStub();
8473}
8474
Ian Rogers6f3dbba2014-10-14 17:41:57 -07008475const void* ClassLinker::GetRuntimeQuickGenericJniStub() const {
8476 return GetQuickGenericJniStub();
8477}
8478
Mathieu Chartiere401d142015-04-22 13:56:20 -07008479void ClassLinker::SetEntryPointsToInterpreter(ArtMethod* method) const {
Ian Rogers6f3dbba2014-10-14 17:41:57 -07008480 if (!method->IsNative()) {
Ian Rogers6f3dbba2014-10-14 17:41:57 -07008481 method->SetEntryPointFromQuickCompiledCode(GetQuickToInterpreterBridge());
8482 } else {
Goran Jakovljevicc16268f2017-07-27 10:03:32 +02008483 method->SetEntryPointFromQuickCompiledCode(GetQuickGenericJniStub());
Ian Rogers6f3dbba2014-10-14 17:41:57 -07008484 }
8485}
8486
Alex Lightdb01a092017-04-03 15:39:55 -07008487void ClassLinker::SetEntryPointsForObsoleteMethod(ArtMethod* method) const {
8488 DCHECK(method->IsObsolete());
8489 // We cannot mess with the entrypoints of native methods because they are used to determine how
8490 // large the method's quick stack frame is. Without this information we cannot walk the stacks.
8491 if (!method->IsNative()) {
8492 method->SetEntryPointFromQuickCompiledCode(GetInvokeObsoleteMethodStub());
8493 }
8494}
8495
Ian Rogers7dfb28c2013-08-22 08:18:36 -07008496void ClassLinker::DumpForSigQuit(std::ostream& os) {
Mathieu Chartier6b069532015-08-05 15:08:12 -07008497 ScopedObjectAccess soa(Thread::Current());
Mathieu Chartier6b069532015-08-05 15:08:12 -07008498 ReaderMutexLock mu(soa.Self(), *Locks::classlinker_classes_lock_);
Mathieu Chartiercc5ebdf2015-07-27 11:19:43 -07008499 os << "Zygote loaded classes=" << NumZygoteClasses() << " post zygote classes="
8500 << NumNonZygoteClasses() << "\n";
8501}
8502
Mathieu Chartier9b1c71e2015-09-02 18:51:54 -07008503class CountClassesVisitor : public ClassLoaderVisitor {
8504 public:
8505 CountClassesVisitor() : num_zygote_classes(0), num_non_zygote_classes(0) {}
8506
Mathieu Chartier28357fa2016-10-18 16:27:40 -07008507 void Visit(ObjPtr<mirror::ClassLoader> class_loader)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07008508 REQUIRES_SHARED(Locks::classlinker_classes_lock_, Locks::mutator_lock_) OVERRIDE {
Mathieu Chartier9b1c71e2015-09-02 18:51:54 -07008509 ClassTable* const class_table = class_loader->GetClassTable();
Mathieu Chartier6b069532015-08-05 15:08:12 -07008510 if (class_table != nullptr) {
Vladimir Markoc5798bf2016-12-09 10:20:54 +00008511 num_zygote_classes += class_table->NumZygoteClasses(class_loader);
8512 num_non_zygote_classes += class_table->NumNonZygoteClasses(class_loader);
Mathieu Chartier6b069532015-08-05 15:08:12 -07008513 }
Mathieu Chartiercc5ebdf2015-07-27 11:19:43 -07008514 }
Mathieu Chartier9b1c71e2015-09-02 18:51:54 -07008515
8516 size_t num_zygote_classes;
8517 size_t num_non_zygote_classes;
8518};
8519
8520size_t ClassLinker::NumZygoteClasses() const {
8521 CountClassesVisitor visitor;
8522 VisitClassLoaders(&visitor);
Andreas Gampe2af99022017-04-25 08:32:59 -07008523 return visitor.num_zygote_classes + boot_class_table_->NumZygoteClasses(nullptr);
Mathieu Chartiercc5ebdf2015-07-27 11:19:43 -07008524}
8525
8526size_t ClassLinker::NumNonZygoteClasses() const {
Mathieu Chartier9b1c71e2015-09-02 18:51:54 -07008527 CountClassesVisitor visitor;
8528 VisitClassLoaders(&visitor);
Andreas Gampe2af99022017-04-25 08:32:59 -07008529 return visitor.num_non_zygote_classes + boot_class_table_->NumNonZygoteClasses(nullptr);
Elliott Hughescac6cc72011-11-03 20:31:21 -07008530}
8531
Ian Rogers7dfb28c2013-08-22 08:18:36 -07008532size_t ClassLinker::NumLoadedClasses() {
Ian Rogers1bf8d4d2013-05-30 00:18:49 -07008533 ReaderMutexLock mu(Thread::Current(), *Locks::classlinker_classes_lock_);
Mathieu Chartierc2e20622014-11-03 11:41:47 -08008534 // Only return non zygote classes since these are the ones which apps which care about.
Mathieu Chartiercc5ebdf2015-07-27 11:19:43 -07008535 return NumNonZygoteClasses();
Elliott Hughese27955c2011-08-26 15:21:24 -07008536}
8537
Brian Carlstrom47d237a2011-10-18 15:08:33 -07008538pid_t ClassLinker::GetClassesLockOwner() {
Ian Rogersb726dcb2012-09-05 08:57:23 -07008539 return Locks::classlinker_classes_lock_->GetExclusiveOwnerTid();
Brian Carlstrom47d237a2011-10-18 15:08:33 -07008540}
8541
8542pid_t ClassLinker::GetDexLockOwner() {
Andreas Gampecc1b5352016-12-01 16:58:38 -08008543 return Locks::dex_lock_->GetExclusiveOwnerTid();
Brian Carlstrom24a3c2e2011-10-17 18:07:52 -07008544}
8545
Mathieu Chartier28357fa2016-10-18 16:27:40 -07008546void ClassLinker::SetClassRoot(ClassRoot class_root, ObjPtr<mirror::Class> klass) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08008547 DCHECK(!init_done_);
8548
Andreas Gampe2ed8def2014-08-28 14:41:02 -07008549 DCHECK(klass != nullptr);
8550 DCHECK(klass->GetClassLoader() == nullptr);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08008551
Hiroshi Yamauchi94f7b492014-07-22 18:08:23 -07008552 mirror::ObjectArray<mirror::Class>* class_roots = class_roots_.Read();
Andreas Gampe2ed8def2014-08-28 14:41:02 -07008553 DCHECK(class_roots != nullptr);
8554 DCHECK(class_roots->Get(class_root) == nullptr);
Hiroshi Yamauchie9e3e692014-06-24 14:31:37 -07008555 class_roots->Set<false>(class_root, klass);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08008556}
8557
Ian Rogers6f3dbba2014-10-14 17:41:57 -07008558const char* ClassLinker::GetClassRootDescriptor(ClassRoot class_root) {
8559 static const char* class_roots_descriptors[] = {
8560 "Ljava/lang/Class;",
8561 "Ljava/lang/Object;",
8562 "[Ljava/lang/Class;",
8563 "[Ljava/lang/Object;",
8564 "Ljava/lang/String;",
8565 "Ljava/lang/DexCache;",
8566 "Ljava/lang/ref/Reference;",
Mathieu Chartierfc58af42015-04-16 18:00:39 -07008567 "Ljava/lang/reflect/Constructor;",
Mathieu Chartierdaaf3262015-03-24 13:30:28 -07008568 "Ljava/lang/reflect/Field;",
Mathieu Chartierfc58af42015-04-16 18:00:39 -07008569 "Ljava/lang/reflect/Method;",
Ian Rogers6f3dbba2014-10-14 17:41:57 -07008570 "Ljava/lang/reflect/Proxy;",
8571 "[Ljava/lang/String;",
Mathieu Chartierfc58af42015-04-16 18:00:39 -07008572 "[Ljava/lang/reflect/Constructor;",
Mathieu Chartierdaaf3262015-03-24 13:30:28 -07008573 "[Ljava/lang/reflect/Field;",
Mathieu Chartierfc58af42015-04-16 18:00:39 -07008574 "[Ljava/lang/reflect/Method;",
Orion Hodsonc069a302017-01-18 09:23:12 +00008575 "Ljava/lang/invoke/CallSite;",
Narayan Kamathafa48272016-08-03 12:46:58 +01008576 "Ljava/lang/invoke/MethodHandleImpl;",
Orion Hodsonc069a302017-01-18 09:23:12 +00008577 "Ljava/lang/invoke/MethodHandles$Lookup;",
Narayan Kamathafa48272016-08-03 12:46:58 +01008578 "Ljava/lang/invoke/MethodType;",
Orion Hodson005ac512017-10-24 15:43:43 +01008579 "Ljava/lang/invoke/VarHandle;",
8580 "Ljava/lang/invoke/FieldVarHandle;",
8581 "Ljava/lang/invoke/ArrayElementVarHandle;",
8582 "Ljava/lang/invoke/ByteArrayViewVarHandle;",
8583 "Ljava/lang/invoke/ByteBufferViewVarHandle;",
Ian Rogers6f3dbba2014-10-14 17:41:57 -07008584 "Ljava/lang/ClassLoader;",
8585 "Ljava/lang/Throwable;",
8586 "Ljava/lang/ClassNotFoundException;",
8587 "Ljava/lang/StackTraceElement;",
Narayan Kamath000e1882016-10-24 17:14:25 +01008588 "Ldalvik/system/EmulatedStackFrame;",
Ian Rogers6f3dbba2014-10-14 17:41:57 -07008589 "Z",
8590 "B",
8591 "C",
8592 "D",
8593 "F",
8594 "I",
8595 "J",
8596 "S",
8597 "V",
8598 "[Z",
8599 "[B",
8600 "[C",
8601 "[D",
8602 "[F",
8603 "[I",
8604 "[J",
8605 "[S",
8606 "[Ljava/lang/StackTraceElement;",
Alex Lightd6251582016-10-31 11:12:30 -07008607 "Ldalvik/system/ClassExt;",
Ian Rogers6f3dbba2014-10-14 17:41:57 -07008608 };
Andreas Gampe575e78c2014-11-03 23:41:03 -08008609 static_assert(arraysize(class_roots_descriptors) == size_t(kClassRootsMax),
8610 "Mismatch between class descriptors and class-root enum");
Ian Rogers6f3dbba2014-10-14 17:41:57 -07008611
8612 const char* descriptor = class_roots_descriptors[class_root];
8613 CHECK(descriptor != nullptr);
8614 return descriptor;
8615}
8616
Calin Juravle7865ac72017-06-28 11:03:12 -07008617jobject ClassLinker::CreateWellKnownClassLoader(Thread* self,
8618 const std::vector<const DexFile*>& dex_files,
8619 jclass loader_class,
8620 jobject parent_loader) {
8621 CHECK(self->GetJniEnv()->IsSameObject(loader_class,
8622 WellKnownClasses::dalvik_system_PathClassLoader) ||
8623 self->GetJniEnv()->IsSameObject(loader_class,
8624 WellKnownClasses::dalvik_system_DelegateLastClassLoader));
8625
Andreas Gampe81c6f8d2015-03-25 17:19:53 -07008626 // SOAAlreadyRunnable is protected, and we need something to add a global reference.
8627 // We could move the jobject to the callers, but all call-sites do this...
8628 ScopedObjectAccessUnchecked soa(self);
8629
Andreas Gampe81c6f8d2015-03-25 17:19:53 -07008630 // For now, create a libcore-level DexFile for each ART DexFile. This "explodes" multidex.
Vladimir Marko19a4d372016-12-08 14:41:46 +00008631 StackHandleScope<6> hs(self);
Andreas Gampe81c6f8d2015-03-25 17:19:53 -07008632
Mathieu Chartierc7853442015-03-27 14:35:38 -07008633 ArtField* dex_elements_field =
Andreas Gampe08883de2016-11-08 13:20:52 -08008634 jni::DecodeArtField(WellKnownClasses::dalvik_system_DexPathList_dexElements);
Andreas Gampe81c6f8d2015-03-25 17:19:53 -07008635
Vladimir Marko4098a7a2017-11-06 16:00:51 +00008636 Handle<mirror::Class> dex_elements_class(hs.NewHandle(dex_elements_field->ResolveType()));
Andreas Gampefa4333d2017-02-14 11:10:34 -08008637 DCHECK(dex_elements_class != nullptr);
Andreas Gampe81c6f8d2015-03-25 17:19:53 -07008638 DCHECK(dex_elements_class->IsArrayClass());
Mathieu Chartierdaaf3262015-03-24 13:30:28 -07008639 Handle<mirror::ObjectArray<mirror::Object>> h_dex_elements(hs.NewHandle(
Mathieu Chartier3398c782016-09-30 10:27:43 -07008640 mirror::ObjectArray<mirror::Object>::Alloc(self,
8641 dex_elements_class.Get(),
8642 dex_files.size())));
Andreas Gampe81c6f8d2015-03-25 17:19:53 -07008643 Handle<mirror::Class> h_dex_element_class =
8644 hs.NewHandle(dex_elements_class->GetComponentType());
8645
Mathieu Chartierc7853442015-03-27 14:35:38 -07008646 ArtField* element_file_field =
Andreas Gampe08883de2016-11-08 13:20:52 -08008647 jni::DecodeArtField(WellKnownClasses::dalvik_system_DexPathList__Element_dexFile);
Mathieu Chartierc7853442015-03-27 14:35:38 -07008648 DCHECK_EQ(h_dex_element_class.Get(), element_file_field->GetDeclaringClass());
Andreas Gampe81c6f8d2015-03-25 17:19:53 -07008649
Andreas Gampe08883de2016-11-08 13:20:52 -08008650 ArtField* cookie_field = jni::DecodeArtField(WellKnownClasses::dalvik_system_DexFile_cookie);
Vladimir Marko4098a7a2017-11-06 16:00:51 +00008651 DCHECK_EQ(cookie_field->GetDeclaringClass(), element_file_field->LookupType());
Andreas Gampe81c6f8d2015-03-25 17:19:53 -07008652
Andreas Gampe08883de2016-11-08 13:20:52 -08008653 ArtField* file_name_field = jni::DecodeArtField(WellKnownClasses::dalvik_system_DexFile_fileName);
Vladimir Marko4098a7a2017-11-06 16:00:51 +00008654 DCHECK_EQ(file_name_field->GetDeclaringClass(), element_file_field->LookupType());
Mathieu Chartierfbc31082016-01-24 11:59:56 -08008655
Andreas Gampe81c6f8d2015-03-25 17:19:53 -07008656 // Fill the elements array.
8657 int32_t index = 0;
8658 for (const DexFile* dex_file : dex_files) {
Mathieu Chartierfbc31082016-01-24 11:59:56 -08008659 StackHandleScope<4> hs2(self);
Andreas Gampe81c6f8d2015-03-25 17:19:53 -07008660
Calin Juravle7865ac72017-06-28 11:03:12 -07008661 // CreateWellKnownClassLoader is only used by gtests and compiler.
8662 // Index 0 of h_long_array is supposed to be the oat file but we can leave it null.
Mathieu Chartiere58991b2015-10-13 07:59:34 -07008663 Handle<mirror::LongArray> h_long_array = hs2.NewHandle(mirror::LongArray::Alloc(
8664 self,
8665 kDexFileIndexStart + 1));
Andreas Gampefa4333d2017-02-14 11:10:34 -08008666 DCHECK(h_long_array != nullptr);
Mathieu Chartiere58991b2015-10-13 07:59:34 -07008667 h_long_array->Set(kDexFileIndexStart, reinterpret_cast<intptr_t>(dex_file));
Andreas Gampe81c6f8d2015-03-25 17:19:53 -07008668
Mathieu Chartier3738e982017-05-12 16:07:28 -07008669 // Note that this creates a finalizable dalvik.system.DexFile object and a corresponding
8670 // FinalizerReference which will never get cleaned up without a started runtime.
Andreas Gampe81c6f8d2015-03-25 17:19:53 -07008671 Handle<mirror::Object> h_dex_file = hs2.NewHandle(
Mathieu Chartierc7853442015-03-27 14:35:38 -07008672 cookie_field->GetDeclaringClass()->AllocObject(self));
Andreas Gampefa4333d2017-02-14 11:10:34 -08008673 DCHECK(h_dex_file != nullptr);
Mathieu Chartierc7853442015-03-27 14:35:38 -07008674 cookie_field->SetObject<false>(h_dex_file.Get(), h_long_array.Get());
Andreas Gampe81c6f8d2015-03-25 17:19:53 -07008675
Mathieu Chartierfbc31082016-01-24 11:59:56 -08008676 Handle<mirror::String> h_file_name = hs2.NewHandle(
8677 mirror::String::AllocFromModifiedUtf8(self, dex_file->GetLocation().c_str()));
Andreas Gampefa4333d2017-02-14 11:10:34 -08008678 DCHECK(h_file_name != nullptr);
Mathieu Chartierfbc31082016-01-24 11:59:56 -08008679 file_name_field->SetObject<false>(h_dex_file.Get(), h_file_name.Get());
8680
Andreas Gampe81c6f8d2015-03-25 17:19:53 -07008681 Handle<mirror::Object> h_element = hs2.NewHandle(h_dex_element_class->AllocObject(self));
Andreas Gampefa4333d2017-02-14 11:10:34 -08008682 DCHECK(h_element != nullptr);
Mathieu Chartierc7853442015-03-27 14:35:38 -07008683 element_file_field->SetObject<false>(h_element.Get(), h_dex_file.Get());
Andreas Gampe81c6f8d2015-03-25 17:19:53 -07008684
8685 h_dex_elements->Set(index, h_element.Get());
8686 index++;
8687 }
8688 DCHECK_EQ(index, h_dex_elements->GetLength());
8689
8690 // Create DexPathList.
8691 Handle<mirror::Object> h_dex_path_list = hs.NewHandle(
Mathieu Chartierc7853442015-03-27 14:35:38 -07008692 dex_elements_field->GetDeclaringClass()->AllocObject(self));
Andreas Gampefa4333d2017-02-14 11:10:34 -08008693 DCHECK(h_dex_path_list != nullptr);
Andreas Gampe81c6f8d2015-03-25 17:19:53 -07008694 // Set elements.
Mathieu Chartierc7853442015-03-27 14:35:38 -07008695 dex_elements_field->SetObject<false>(h_dex_path_list.Get(), h_dex_elements.Get());
Andreas Gampe81c6f8d2015-03-25 17:19:53 -07008696
Calin Juravle7865ac72017-06-28 11:03:12 -07008697 // Create the class loader..
8698 Handle<mirror::Class> h_loader_class = hs.NewHandle(soa.Decode<mirror::Class>(loader_class));
8699 Handle<mirror::Object> h_class_loader = hs.NewHandle(h_loader_class->AllocObject(self));
8700 DCHECK(h_class_loader != nullptr);
Andreas Gampe81c6f8d2015-03-25 17:19:53 -07008701 // Set DexPathList.
Mathieu Chartierc7853442015-03-27 14:35:38 -07008702 ArtField* path_list_field =
Andreas Gampe08883de2016-11-08 13:20:52 -08008703 jni::DecodeArtField(WellKnownClasses::dalvik_system_BaseDexClassLoader_pathList);
Mathieu Chartierc7853442015-03-27 14:35:38 -07008704 DCHECK(path_list_field != nullptr);
Calin Juravle7865ac72017-06-28 11:03:12 -07008705 path_list_field->SetObject<false>(h_class_loader.Get(), h_dex_path_list.Get());
Andreas Gampe81c6f8d2015-03-25 17:19:53 -07008706
8707 // Make a pretend boot-classpath.
8708 // TODO: Should we scan the image?
Mathieu Chartierc7853442015-03-27 14:35:38 -07008709 ArtField* const parent_field =
Vladimir Marko19a4d372016-12-08 14:41:46 +00008710 mirror::Class::FindField(self,
Calin Juravle7865ac72017-06-28 11:03:12 -07008711 h_class_loader->GetClass(),
Vladimir Marko19a4d372016-12-08 14:41:46 +00008712 "parent",
Mathieu Chartierc7853442015-03-27 14:35:38 -07008713 "Ljava/lang/ClassLoader;");
Roland Levillainf39c9eb2015-05-26 15:02:07 +01008714 DCHECK(parent_field != nullptr);
Calin Juravle7865ac72017-06-28 11:03:12 -07008715
8716 ObjPtr<mirror::Object> parent = (parent_loader != nullptr)
8717 ? soa.Decode<mirror::ClassLoader>(parent_loader)
8718 : soa.Decode<mirror::Class>(WellKnownClasses::java_lang_BootClassLoader)->AllocObject(self);
8719 parent_field->SetObject<false>(h_class_loader.Get(), parent);
Andreas Gampe81c6f8d2015-03-25 17:19:53 -07008720
8721 // Make it a global ref and return.
8722 ScopedLocalRef<jobject> local_ref(
Calin Juravle7865ac72017-06-28 11:03:12 -07008723 soa.Env(), soa.Env()->AddLocalReference<jobject>(h_class_loader.Get()));
Andreas Gampe81c6f8d2015-03-25 17:19:53 -07008724 return soa.Env()->NewGlobalRef(local_ref.get());
8725}
8726
Calin Juravle7865ac72017-06-28 11:03:12 -07008727jobject ClassLinker::CreatePathClassLoader(Thread* self,
8728 const std::vector<const DexFile*>& dex_files) {
8729 return CreateWellKnownClassLoader(self,
8730 dex_files,
8731 WellKnownClasses::dalvik_system_PathClassLoader,
8732 nullptr);
8733}
8734
Andreas Gampe8ac75952015-06-02 21:01:45 -07008735void ClassLinker::DropFindArrayClassCache() {
8736 std::fill_n(find_array_class_cache_, kFindArrayCacheSize, GcRoot<mirror::Class>(nullptr));
8737 find_array_class_cache_next_victim_ = 0;
8738}
8739
Mathieu Chartier951ec2c2015-09-22 08:50:05 -07008740void ClassLinker::VisitClassLoaders(ClassLoaderVisitor* visitor) const {
Mathieu Chartier9b1c71e2015-09-02 18:51:54 -07008741 Thread* const self = Thread::Current();
Mathieu Chartier951ec2c2015-09-22 08:50:05 -07008742 for (const ClassLoaderData& data : class_loaders_) {
Mathieu Chartier4843bd52015-10-01 17:08:44 -07008743 // Need to use DecodeJObject so that we get null for cleared JNI weak globals.
Mathieu Chartierc4f39252016-10-05 18:32:08 -07008744 ObjPtr<mirror::ClassLoader> class_loader = ObjPtr<mirror::ClassLoader>::DownCast(
8745 self->DecodeJObject(data.weak_root));
Mathieu Chartier9b1c71e2015-09-02 18:51:54 -07008746 if (class_loader != nullptr) {
Mathieu Chartierc4f39252016-10-05 18:32:08 -07008747 visitor->Visit(class_loader.Ptr());
Mathieu Chartier9b1c71e2015-09-02 18:51:54 -07008748 }
8749 }
8750}
8751
Mathieu Chartierbc5a7952016-10-17 15:46:31 -07008752void ClassLinker::InsertDexFileInToClassLoader(ObjPtr<mirror::Object> dex_file,
8753 ObjPtr<mirror::ClassLoader> class_loader) {
Mathieu Chartier00310e02015-10-17 12:46:42 -07008754 DCHECK(dex_file != nullptr);
Mathieu Chartier00310e02015-10-17 12:46:42 -07008755 Thread* const self = Thread::Current();
8756 WriterMutexLock mu(self, *Locks::classlinker_classes_lock_);
Mathieu Chartierbc5a7952016-10-17 15:46:31 -07008757 ClassTable* const table = ClassTableForClassLoader(class_loader.Ptr());
Mathieu Chartier00310e02015-10-17 12:46:42 -07008758 DCHECK(table != nullptr);
Mathieu Chartierc9dbb1d2016-06-03 17:47:32 -07008759 if (table->InsertStrongRoot(dex_file) && class_loader != nullptr) {
Mathieu Chartier00310e02015-10-17 12:46:42 -07008760 // It was not already inserted, perform the write barrier to let the GC know the class loader's
8761 // class table was modified.
8762 Runtime::Current()->GetHeap()->WriteBarrierEveryFieldOf(class_loader);
8763 }
8764}
8765
Mathieu Chartier951ec2c2015-09-22 08:50:05 -07008766void ClassLinker::CleanupClassLoaders() {
Mathieu Chartier9b1c71e2015-09-02 18:51:54 -07008767 Thread* const self = Thread::Current();
Mathieu Chartier65975772016-08-05 10:46:36 -07008768 std::vector<ClassLoaderData> to_delete;
8769 // Do the delete outside the lock to avoid lock violation in jit code cache.
8770 {
8771 WriterMutexLock mu(self, *Locks::classlinker_classes_lock_);
8772 for (auto it = class_loaders_.begin(); it != class_loaders_.end(); ) {
8773 const ClassLoaderData& data = *it;
8774 // Need to use DecodeJObject so that we get null for cleared JNI weak globals.
Mathieu Chartierc4f39252016-10-05 18:32:08 -07008775 ObjPtr<mirror::ClassLoader> class_loader =
8776 ObjPtr<mirror::ClassLoader>::DownCast(self->DecodeJObject(data.weak_root));
Mathieu Chartier65975772016-08-05 10:46:36 -07008777 if (class_loader != nullptr) {
8778 ++it;
8779 } else {
8780 VLOG(class_linker) << "Freeing class loader";
8781 to_delete.push_back(data);
8782 it = class_loaders_.erase(it);
8783 }
Mathieu Chartier9b1c71e2015-09-02 18:51:54 -07008784 }
8785 }
Mathieu Chartier65975772016-08-05 10:46:36 -07008786 for (ClassLoaderData& data : to_delete) {
8787 DeleteClassLoader(self, data);
8788 }
Mathieu Chartier9b1c71e2015-09-02 18:51:54 -07008789}
8790
Vladimir Marko21300532017-01-24 18:06:55 +00008791class GetResolvedClassesVisitor : public ClassVisitor {
8792 public:
8793 GetResolvedClassesVisitor(std::set<DexCacheResolvedClasses>* result, bool ignore_boot_classes)
8794 : result_(result),
8795 ignore_boot_classes_(ignore_boot_classes),
8796 last_resolved_classes_(result->end()),
8797 last_dex_file_(nullptr),
8798 vlog_is_on_(VLOG_IS_ON(class_linker)),
8799 extra_stats_(),
8800 last_extra_stats_(extra_stats_.end()) { }
8801
8802 bool operator()(ObjPtr<mirror::Class> klass) OVERRIDE REQUIRES_SHARED(Locks::mutator_lock_) {
8803 if (!klass->IsProxyClass() &&
8804 !klass->IsArrayClass() &&
8805 klass->IsResolved() &&
8806 !klass->IsErroneousResolved() &&
8807 (!ignore_boot_classes_ || klass->GetClassLoader() != nullptr)) {
8808 const DexFile& dex_file = klass->GetDexFile();
8809 if (&dex_file != last_dex_file_) {
8810 last_dex_file_ = &dex_file;
Mathieu Chartier79c87da2017-10-10 11:54:29 -07008811 DexCacheResolvedClasses resolved_classes(
8812 dex_file.GetLocation(),
8813 DexFileLoader::GetBaseLocation(dex_file.GetLocation()),
8814 dex_file.GetLocationChecksum(),
8815 dex_file.NumMethodIds());
Vladimir Marko21300532017-01-24 18:06:55 +00008816 last_resolved_classes_ = result_->find(resolved_classes);
8817 if (last_resolved_classes_ == result_->end()) {
8818 last_resolved_classes_ = result_->insert(resolved_classes).first;
8819 }
8820 }
8821 bool added = last_resolved_classes_->AddClass(klass->GetDexTypeIndex());
8822 if (UNLIKELY(vlog_is_on_) && added) {
8823 const DexCacheResolvedClasses* resolved_classes = std::addressof(*last_resolved_classes_);
8824 if (last_extra_stats_ == extra_stats_.end() ||
8825 last_extra_stats_->first != resolved_classes) {
8826 last_extra_stats_ = extra_stats_.find(resolved_classes);
8827 if (last_extra_stats_ == extra_stats_.end()) {
8828 last_extra_stats_ =
8829 extra_stats_.emplace(resolved_classes, ExtraStats(dex_file.NumClassDefs())).first;
8830 }
8831 }
8832 }
8833 }
8834 return true;
8835 }
8836
8837 void PrintStatistics() const {
8838 if (vlog_is_on_) {
8839 for (const DexCacheResolvedClasses& resolved_classes : *result_) {
8840 auto it = extra_stats_.find(std::addressof(resolved_classes));
8841 DCHECK(it != extra_stats_.end());
8842 const ExtraStats& extra_stats = it->second;
8843 LOG(INFO) << "Dex location " << resolved_classes.GetDexLocation()
8844 << " has " << resolved_classes.GetClasses().size() << " / "
8845 << extra_stats.number_of_class_defs_ << " resolved classes";
8846 }
8847 }
8848 }
8849
8850 private:
8851 struct ExtraStats {
8852 explicit ExtraStats(uint32_t number_of_class_defs)
8853 : number_of_class_defs_(number_of_class_defs) {}
8854 uint32_t number_of_class_defs_;
8855 };
8856
8857 std::set<DexCacheResolvedClasses>* result_;
8858 bool ignore_boot_classes_;
8859 std::set<DexCacheResolvedClasses>::iterator last_resolved_classes_;
8860 const DexFile* last_dex_file_;
8861
8862 // Statistics.
8863 bool vlog_is_on_;
8864 std::map<const DexCacheResolvedClasses*, ExtraStats> extra_stats_;
8865 std::map<const DexCacheResolvedClasses*, ExtraStats>::iterator last_extra_stats_;
8866};
8867
Mathieu Chartierc5dd3192015-12-09 16:38:30 -08008868std::set<DexCacheResolvedClasses> ClassLinker::GetResolvedClasses(bool ignore_boot_classes) {
Mathieu Chartier32ce2ad2016-03-04 14:58:03 -08008869 ScopedTrace trace(__PRETTY_FUNCTION__);
Mathieu Chartierc5dd3192015-12-09 16:38:30 -08008870 ScopedObjectAccess soa(Thread::Current());
Mathieu Chartier268764d2016-09-13 12:09:38 -07008871 ScopedAssertNoThreadSuspension ants(__FUNCTION__);
Mathieu Chartierc5dd3192015-12-09 16:38:30 -08008872 std::set<DexCacheResolvedClasses> ret;
8873 VLOG(class_linker) << "Collecting resolved classes";
8874 const uint64_t start_time = NanoTime();
Vladimir Marko21300532017-01-24 18:06:55 +00008875 GetResolvedClassesVisitor visitor(&ret, ignore_boot_classes);
8876 VisitClasses(&visitor);
8877 if (VLOG_IS_ON(class_linker)) {
8878 visitor.PrintStatistics();
8879 LOG(INFO) << "Collecting class profile took " << PrettyDuration(NanoTime() - start_time);
Mathieu Chartierc5dd3192015-12-09 16:38:30 -08008880 }
Mathieu Chartierc5dd3192015-12-09 16:38:30 -08008881 return ret;
8882}
8883
Mathieu Chartier65975772016-08-05 10:46:36 -07008884class ClassLinker::FindVirtualMethodHolderVisitor : public ClassVisitor {
8885 public:
8886 FindVirtualMethodHolderVisitor(const ArtMethod* method, PointerSize pointer_size)
8887 : method_(method),
8888 pointer_size_(pointer_size) {}
8889
Mathieu Chartier28357fa2016-10-18 16:27:40 -07008890 bool operator()(ObjPtr<mirror::Class> klass) REQUIRES_SHARED(Locks::mutator_lock_) OVERRIDE {
Mathieu Chartier65975772016-08-05 10:46:36 -07008891 if (klass->GetVirtualMethodsSliceUnchecked(pointer_size_).Contains(method_)) {
8892 holder_ = klass;
8893 }
8894 // Return false to stop searching if holder_ is not null.
8895 return holder_ == nullptr;
8896 }
8897
Mathieu Chartier28357fa2016-10-18 16:27:40 -07008898 ObjPtr<mirror::Class> holder_ = nullptr;
Mathieu Chartier65975772016-08-05 10:46:36 -07008899 const ArtMethod* const method_;
8900 const PointerSize pointer_size_;
8901};
8902
8903mirror::Class* ClassLinker::GetHoldingClassOfCopiedMethod(ArtMethod* method) {
8904 ScopedTrace trace(__FUNCTION__); // Since this function is slow, have a trace to notify people.
8905 CHECK(method->IsCopied());
8906 FindVirtualMethodHolderVisitor visitor(method, image_pointer_size_);
8907 VisitClasses(&visitor);
Mathieu Chartier28357fa2016-10-18 16:27:40 -07008908 return visitor.holder_.Ptr();
Mathieu Chartier65975772016-08-05 10:46:36 -07008909}
8910
Andreas Gampec6ea7d02017-02-01 16:46:28 -08008911mirror::IfTable* ClassLinker::AllocIfTable(Thread* self, size_t ifcount) {
8912 return down_cast<mirror::IfTable*>(
8913 mirror::IfTable::Alloc(self,
8914 GetClassRoot(kObjectArrayClass),
8915 ifcount * mirror::IfTable::kMax));
8916}
8917
Andreas Gampe42ef8ab2015-12-03 17:27:32 -08008918// Instantiate ResolveMethod.
Vladimir Markoba118822017-06-12 15:41:56 +01008919template ArtMethod* ClassLinker::ResolveMethod<ClassLinker::ResolveMode::kCheckICCEAndIAE>(
Andreas Gampe42ef8ab2015-12-03 17:27:32 -08008920 const DexFile& dex_file,
8921 uint32_t method_idx,
8922 Handle<mirror::DexCache> dex_cache,
8923 Handle<mirror::ClassLoader> class_loader,
8924 ArtMethod* referrer,
8925 InvokeType type);
Vladimir Markoba118822017-06-12 15:41:56 +01008926template ArtMethod* ClassLinker::ResolveMethod<ClassLinker::ResolveMode::kNoChecks>(
Andreas Gampe42ef8ab2015-12-03 17:27:32 -08008927 const DexFile& dex_file,
8928 uint32_t method_idx,
8929 Handle<mirror::DexCache> dex_cache,
8930 Handle<mirror::ClassLoader> class_loader,
8931 ArtMethod* referrer,
8932 InvokeType type);
8933
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07008934} // namespace art