blob: e9a3d550d92b0d70a44729e200b0db2decbf99dd [file] [log] [blame]
Brian Carlstrom7940e442013-07-12 13:46:57 -07001/*
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 */
16
17#include "compiler_driver.h"
18
Andreas Gampe8cf9cb32017-07-19 09:28:38 -070019#include <unistd.h>
Brian Carlstrom7940e442013-07-12 13:46:57 -070020
Mathieu Chartierab972ef2014-12-03 17:38:22 -080021#ifndef __APPLE__
22#include <malloc.h> // For mallinfo
23#endif
24
Vladimir Marko2ef01102019-02-05 15:05:10 +000025#include <string_view>
26#include <unordered_set>
27#include <vector>
28
Andreas Gampe5c803112018-04-13 17:28:34 -070029#include "android-base/logging.h"
Narayan Kamathe3eae5e2016-10-27 11:47:30 +010030#include "android-base/strings.h"
31
Mathieu Chartierc7853442015-03-27 14:35:38 -070032#include "art_field-inl.h"
Mathieu Chartiere401d142015-04-22 13:56:20 -070033#include "art_method-inl.h"
Andreas Gampef0446e92017-05-16 13:51:57 -070034#include "base/arena_allocator.h"
David Brazdild9c90372016-09-14 16:53:55 +010035#include "base/array_ref.h"
Vladimir Marko492a7fa2016-06-01 18:38:43 +010036#include "base/bit_vector.h"
Andreas Gampe542451c2016-07-26 09:02:02 -070037#include "base/enums.h"
Andreas Gampe170331f2017-12-07 18:41:03 -080038#include "base/logging.h" // For VLOG
Brian Carlstrom7940e442013-07-12 13:46:57 -070039#include "base/stl_util.h"
Vladimir Marko2ef01102019-02-05 15:05:10 +000040#include "base/string_view_cpp20.h"
Mathieu Chartier32ce2ad2016-03-04 14:58:03 -080041#include "base/systrace.h"
Vladimir Marko80afd022015-05-19 18:08:00 +010042#include "base/time_utils.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070043#include "base/timing_logger.h"
Vladimir Marko3481ba22015-04-13 12:22:36 +010044#include "class_linker-inl.h"
Vladimir Markod8dbc8d2017-09-20 13:37:47 +010045#include "compiled_method-inl.h"
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +000046#include "compiler.h"
Nicolas Geoffray6bb7f1b2016-11-03 10:52:49 +000047#include "compiler_callbacks.h"
Vladimir Markobe0e5462014-02-26 11:24:15 +000048#include "compiler_driver-inl.h"
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -070049#include "dex/class_accessor-inl.h"
David Sehrb2ec9f52018-02-21 13:20:31 -080050#include "dex/descriptors_names.h"
David Sehr9e734c72018-01-04 17:56:19 -080051#include "dex/dex_file-inl.h"
52#include "dex/dex_file_annotations.h"
53#include "dex/dex_instruction-inl.h"
Andreas Gampe5eb0d382015-07-23 01:19:26 -070054#include "dex/dex_to_dex_compiler.h"
Vladimir Markoc7f83202014-01-24 17:55:18 +000055#include "dex/verification_results.h"
Vladimir Marko2730db02014-01-27 11:15:17 +000056#include "dex/verified_method.h"
Steven Morelande431e272017-07-18 16:53:49 -070057#include "dex_compilation_unit.h"
Mark Mendellae9fd932014-02-10 16:14:35 -080058#include "driver/compiler_options.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070059#include "gc/accounting/card_table-inl.h"
60#include "gc/accounting/heap_bitmap.h"
Mathieu Chartiere401d142015-04-22 13:56:20 -070061#include "gc/space/image_space.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070062#include "gc/space/space.h"
Steven Morelande431e272017-07-18 16:53:49 -070063#include "handle_scope-inl.h"
64#include "intrinsics_enum.h"
Vladimir Markoa3ad0cd2018-05-04 10:06:38 +010065#include "jni/jni_internal.h"
Vladimir Markod8dbc8d2017-09-20 13:37:47 +010066#include "linker/linker_patch.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070067#include "mirror/class-inl.h"
Steven Morelande431e272017-07-18 16:53:49 -070068#include "mirror/class_loader.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070069#include "mirror/dex_cache-inl.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070070#include "mirror/object-inl.h"
Andreas Gampec6ea7d02017-02-01 16:46:28 -080071#include "mirror/object-refvisitor-inl.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070072#include "mirror/object_array-inl.h"
73#include "mirror/throwable.h"
Steven Morelande431e272017-07-18 16:53:49 -070074#include "object_lock.h"
David Sehr82d046e2018-04-23 08:14:19 -070075#include "profile/profile_compilation_info.h"
Steven Morelande431e272017-07-18 16:53:49 -070076#include "runtime.h"
Orion Hodson26ef34c2017-11-01 13:32:41 +000077#include "runtime_intrinsics.h"
Mathieu Chartier0795f232016-09-27 18:43:30 -070078#include "scoped_thread_state_change-inl.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070079#include "thread.h"
Andreas Gampeb0f370e2014-09-25 22:51:40 -070080#include "thread_list.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070081#include "thread_pool.h"
Ian Rogers848871b2013-08-05 10:56:33 -070082#include "trampolines/trampoline_compiler.h"
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +010083#include "transaction.h"
Mathieu Chartier93764b82017-07-17 14:51:53 -070084#include "utils/atomic_dex_ref_map-inl.h"
Vladimir Marko20f85592015-03-19 10:07:02 +000085#include "utils/dex_cache_arrays_layout-inl.h"
Andreas Gampee21dc3d2014-12-08 16:59:43 -080086#include "utils/swap_space.h"
Nicolas Geoffrayb0bbe8e2016-11-19 10:42:37 +000087#include "vdex_file.h"
Vladimir Marko2bc47802014-02-10 09:43:07 +000088#include "verifier/method_verifier-inl.h"
Steven Morelande431e272017-07-18 16:53:49 -070089#include "verifier/method_verifier.h"
Nicolas Geoffray08025182016-10-25 17:20:18 +010090#include "verifier/verifier_deps.h"
Andreas Gampe6d7abbd2017-04-24 13:19:09 -070091#include "verifier/verifier_enums.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070092
Brian Carlstrom7940e442013-07-12 13:46:57 -070093namespace art {
94
Mathieu Chartier8e219ae2014-08-19 14:29:46 -070095static constexpr bool kTimeCompileMethod = !kIsDebugBuild;
96
Calin Juravle226501b2015-12-11 14:41:31 +000097// Print additional info during profile guided compilation.
98static constexpr bool kDebugProfileGuidedCompilation = false;
99
Chang Xing70f689d2017-06-08 17:16:12 -0700100// Max encoded fields allowed for initializing app image. Hardcode the number for now
101// because 5000 should be large enough.
102static constexpr uint32_t kMaxEncodedFields = 5000;
103
Brian Carlstrom7940e442013-07-12 13:46:57 -0700104static double Percentage(size_t x, size_t y) {
105 return 100.0 * (static_cast<double>(x)) / (static_cast<double>(x + y));
106}
107
108static void DumpStat(size_t x, size_t y, const char* str) {
109 if (x == 0 && y == 0) {
110 return;
111 }
Ian Rogerse732ef12013-10-09 15:22:24 -0700112 LOG(INFO) << Percentage(x, y) << "% of " << str << " for " << (x + y) << " cases";
Brian Carlstrom7940e442013-07-12 13:46:57 -0700113}
114
Vladimir Markof096aad2014-01-23 15:51:58 +0000115class CompilerDriver::AOTCompilationStats {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700116 public:
117 AOTCompilationStats()
Mathieu Chartier41dba672018-12-21 15:06:17 -0800118 : stats_lock_("AOT compilation statistics lock") {}
Brian Carlstrom7940e442013-07-12 13:46:57 -0700119
120 void Dump() {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700121 DumpStat(resolved_instance_fields_, unresolved_instance_fields_, "instance fields resolved");
122 DumpStat(resolved_local_static_fields_ + resolved_static_fields_, unresolved_static_fields_,
123 "static fields resolved");
124 DumpStat(resolved_local_static_fields_, resolved_static_fields_ + unresolved_static_fields_,
125 "static fields local to a class");
126 DumpStat(safe_casts_, not_safe_casts_, "check-casts removed based on type information");
127 // Note, the code below subtracts the stat value so that when added to the stat value we have
128 // 100% of samples. TODO: clean this up.
129 DumpStat(type_based_devirtualization_,
130 resolved_methods_[kVirtual] + unresolved_methods_[kVirtual] +
131 resolved_methods_[kInterface] + unresolved_methods_[kInterface] -
132 type_based_devirtualization_,
133 "virtual/interface calls made direct based on type information");
134
Mathieu Chartier41dba672018-12-21 15:06:17 -0800135 const size_t total = std::accumulate(
136 class_status_count_,
137 class_status_count_ + static_cast<size_t>(ClassStatus::kLast) + 1,
138 0u);
139 for (size_t i = 0; i <= static_cast<size_t>(ClassStatus::kLast); ++i) {
140 std::ostringstream oss;
141 oss << "classes with status " << static_cast<ClassStatus>(i);
142 DumpStat(class_status_count_[i], total - class_status_count_[i], oss.str().c_str());
143 }
144
Brian Carlstrom7940e442013-07-12 13:46:57 -0700145 for (size_t i = 0; i <= kMaxInvokeType; i++) {
146 std::ostringstream oss;
147 oss << static_cast<InvokeType>(i) << " methods were AOT resolved";
148 DumpStat(resolved_methods_[i], unresolved_methods_[i], oss.str().c_str());
149 if (virtual_made_direct_[i] > 0) {
150 std::ostringstream oss2;
151 oss2 << static_cast<InvokeType>(i) << " methods made direct";
152 DumpStat(virtual_made_direct_[i],
153 resolved_methods_[i] + unresolved_methods_[i] - virtual_made_direct_[i],
154 oss2.str().c_str());
155 }
156 if (direct_calls_to_boot_[i] > 0) {
157 std::ostringstream oss2;
158 oss2 << static_cast<InvokeType>(i) << " method calls are direct into boot";
159 DumpStat(direct_calls_to_boot_[i],
160 resolved_methods_[i] + unresolved_methods_[i] - direct_calls_to_boot_[i],
161 oss2.str().c_str());
162 }
163 if (direct_methods_to_boot_[i] > 0) {
164 std::ostringstream oss2;
165 oss2 << static_cast<InvokeType>(i) << " method calls have methods in boot";
166 DumpStat(direct_methods_to_boot_[i],
167 resolved_methods_[i] + unresolved_methods_[i] - direct_methods_to_boot_[i],
168 oss2.str().c_str());
169 }
170 }
171 }
172
173// Allow lossy statistics in non-debug builds.
174#ifndef NDEBUG
175#define STATS_LOCK() MutexLock mu(Thread::Current(), stats_lock_)
176#else
177#define STATS_LOCK()
178#endif
179
Mathieu Chartier90443472015-07-16 20:32:27 -0700180 void ResolvedInstanceField() REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700181 STATS_LOCK();
182 resolved_instance_fields_++;
183 }
184
Mathieu Chartier90443472015-07-16 20:32:27 -0700185 void UnresolvedInstanceField() REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700186 STATS_LOCK();
187 unresolved_instance_fields_++;
188 }
189
Mathieu Chartier90443472015-07-16 20:32:27 -0700190 void ResolvedLocalStaticField() REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700191 STATS_LOCK();
192 resolved_local_static_fields_++;
193 }
194
Mathieu Chartier90443472015-07-16 20:32:27 -0700195 void ResolvedStaticField() REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700196 STATS_LOCK();
197 resolved_static_fields_++;
198 }
199
Mathieu Chartier90443472015-07-16 20:32:27 -0700200 void UnresolvedStaticField() REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700201 STATS_LOCK();
202 unresolved_static_fields_++;
203 }
204
205 // Indicate that type information from the verifier led to devirtualization.
Mathieu Chartier90443472015-07-16 20:32:27 -0700206 void PreciseTypeDevirtualization() REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700207 STATS_LOCK();
208 type_based_devirtualization_++;
209 }
210
Brian Carlstrom7940e442013-07-12 13:46:57 -0700211 // A check-cast could be eliminated due to verifier type analysis.
Mathieu Chartier90443472015-07-16 20:32:27 -0700212 void SafeCast() REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700213 STATS_LOCK();
214 safe_casts_++;
215 }
216
217 // A check-cast couldn't be eliminated due to verifier type analysis.
Mathieu Chartier90443472015-07-16 20:32:27 -0700218 void NotASafeCast() REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700219 STATS_LOCK();
220 not_safe_casts_++;
221 }
222
Mathieu Chartier41dba672018-12-21 15:06:17 -0800223 // Register a class status.
224 void AddClassStatus(ClassStatus status) REQUIRES(!stats_lock_) {
225 STATS_LOCK();
226 ++class_status_count_[static_cast<size_t>(status)];
227 }
228
Brian Carlstrom7940e442013-07-12 13:46:57 -0700229 private:
230 Mutex stats_lock_;
231
Mathieu Chartier41dba672018-12-21 15:06:17 -0800232 size_t resolved_instance_fields_ = 0u;
233 size_t unresolved_instance_fields_ = 0u;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700234
Mathieu Chartier41dba672018-12-21 15:06:17 -0800235 size_t resolved_local_static_fields_ = 0u;
236 size_t resolved_static_fields_ = 0u;
237 size_t unresolved_static_fields_ = 0u;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700238 // Type based devirtualization for invoke interface and virtual.
Mathieu Chartier41dba672018-12-21 15:06:17 -0800239 size_t type_based_devirtualization_ = 0u;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700240
Mathieu Chartier41dba672018-12-21 15:06:17 -0800241 size_t resolved_methods_[kMaxInvokeType + 1] = {};
242 size_t unresolved_methods_[kMaxInvokeType + 1] = {};
243 size_t virtual_made_direct_[kMaxInvokeType + 1] = {};
244 size_t direct_calls_to_boot_[kMaxInvokeType + 1] = {};
245 size_t direct_methods_to_boot_[kMaxInvokeType + 1] = {};
Brian Carlstrom7940e442013-07-12 13:46:57 -0700246
Mathieu Chartier41dba672018-12-21 15:06:17 -0800247 size_t safe_casts_ = 0u;
248 size_t not_safe_casts_ = 0u;
249
250 size_t class_status_count_[static_cast<size_t>(ClassStatus::kLast) + 1] = {};
Brian Carlstrom7940e442013-07-12 13:46:57 -0700251
252 DISALLOW_COPY_AND_ASSIGN(AOTCompilationStats);
253};
254
Jeff Haodcdc85b2015-12-04 14:06:18 -0800255CompilerDriver::CompilerDriver(
256 const CompilerOptions* compiler_options,
Jeff Haodcdc85b2015-12-04 14:06:18 -0800257 Compiler::Kind compiler_kind,
Vladimir Marko944da602016-02-19 12:27:55 +0000258 size_t thread_count,
Vladimir Marko1a2a5cd2018-11-07 15:39:48 +0000259 int swap_fd)
Calin Juravle226501b2015-12-11 14:41:31 +0000260 : compiler_options_(compiler_options),
Vladimir Marko038924b2019-02-19 15:09:35 +0000261 compiler_(),
Jeff Hao48699fb2015-04-06 14:21:37 -0700262 compiler_kind_(compiler_kind),
Andreas Gampef39208f2017-10-19 15:06:59 -0700263 number_of_soft_verifier_failures_(0),
Andreas Gampe6cf49e52015-03-05 13:08:45 -0800264 had_hard_verifier_failure_(false),
Andreas Gampeace0dc12016-01-20 13:33:13 -0800265 parallel_thread_count_(thread_count),
Brian Carlstrom7940e442013-07-12 13:46:57 -0700266 stats_(new AOTCompilationStats),
Calin Juravle998c2162015-12-21 15:39:33 +0200267 compiled_method_storage_(swap_fd),
Vladimir Marko492a7fa2016-06-01 18:38:43 +0100268 max_arena_alloc_(0),
Mathieu Chartiera79efdb2018-01-18 16:31:01 -0800269 dex_to_dex_compiler_(this) {
Brian Carlstrom6449c622014-02-10 23:48:36 -0800270 DCHECK(compiler_options_ != nullptr);
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700271
Andreas Gampecac31ad2017-11-06 20:01:17 -0800272 compiled_method_storage_.SetDedupeEnabled(compiler_options_->DeduplicateCode());
Vladimir Marko038924b2019-02-19 15:09:35 +0000273 compiler_.reset(Compiler::Create(*compiler_options, &compiled_method_storage_, compiler_kind));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700274}
275
276CompilerDriver::~CompilerDriver() {
Mathieu Chartier93764b82017-07-17 14:51:53 -0700277 compiled_methods_.Visit([this](const DexFileReference& ref ATTRIBUTE_UNUSED,
Mathieu Chartieracab8d42016-11-23 13:45:58 -0800278 CompiledMethod* method) {
279 if (method != nullptr) {
Vladimir Marko33f7c8a2018-11-19 10:22:01 +0000280 CompiledMethod::ReleaseSwapAllocatedCompiledMethod(GetCompiledMethodStorage(), method);
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800281 }
Mathieu Chartieracab8d42016-11-23 13:45:58 -0800282 });
Brian Carlstrom7940e442013-07-12 13:46:57 -0700283}
284
Vladimir Marko35831e82015-09-11 11:59:18 +0100285
Vladimir Markoa0431112018-06-25 09:32:54 +0100286#define CREATE_TRAMPOLINE(type, abi, offset) \
287 if (Is64BitInstructionSet(GetCompilerOptions().GetInstructionSet())) { \
288 return CreateTrampoline64(GetCompilerOptions().GetInstructionSet(), \
289 abi, \
290 type ## _ENTRYPOINT_OFFSET(PointerSize::k64, offset)); \
291 } else { \
292 return CreateTrampoline32(GetCompilerOptions().GetInstructionSet(), \
293 abi, \
294 type ## _ENTRYPOINT_OFFSET(PointerSize::k32, offset)); \
Ian Rogersdd7624d2014-03-14 17:43:00 -0700295 }
296
Vladimir Marko93205e32016-04-13 11:59:46 +0100297std::unique_ptr<const std::vector<uint8_t>> CompilerDriver::CreateJniDlsymLookup() const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700298 CREATE_TRAMPOLINE(JNI, kJniAbi, pDlsymLookup)
Ian Rogers848871b2013-08-05 10:56:33 -0700299}
300
Vladimir Marko93205e32016-04-13 11:59:46 +0100301std::unique_ptr<const std::vector<uint8_t>> CompilerDriver::CreateQuickGenericJniTrampoline()
302 const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700303 CREATE_TRAMPOLINE(QUICK, kQuickAbi, pQuickGenericJniTrampoline)
Andreas Gampe2da88232014-02-27 12:26:20 -0800304}
305
Vladimir Marko93205e32016-04-13 11:59:46 +0100306std::unique_ptr<const std::vector<uint8_t>> CompilerDriver::CreateQuickImtConflictTrampoline()
307 const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700308 CREATE_TRAMPOLINE(QUICK, kQuickAbi, pQuickImtConflictTrampoline)
Jeff Hao88474b42013-10-23 16:24:40 -0700309}
310
Vladimir Marko93205e32016-04-13 11:59:46 +0100311std::unique_ptr<const std::vector<uint8_t>> CompilerDriver::CreateQuickResolutionTrampoline()
312 const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700313 CREATE_TRAMPOLINE(QUICK, kQuickAbi, pQuickResolutionTrampoline)
Brian Carlstrom7940e442013-07-12 13:46:57 -0700314}
315
Vladimir Marko93205e32016-04-13 11:59:46 +0100316std::unique_ptr<const std::vector<uint8_t>> CompilerDriver::CreateQuickToInterpreterBridge()
317 const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700318 CREATE_TRAMPOLINE(QUICK, kQuickAbi, pQuickToInterpreterBridge)
Brian Carlstrom7940e442013-07-12 13:46:57 -0700319}
Ian Rogersdd7624d2014-03-14 17:43:00 -0700320#undef CREATE_TRAMPOLINE
Brian Carlstrom7940e442013-07-12 13:46:57 -0700321
322void CompilerDriver::CompileAll(jobject class_loader,
Brian Carlstrom45602482013-07-21 22:07:55 -0700323 const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -0800324 TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700325 DCHECK(!Runtime::Current()->IsStarted());
Andreas Gampeace0dc12016-01-20 13:33:13 -0800326
Vladimir Marko2afaff72018-11-30 17:01:50 +0000327 CheckThreadPools();
Andreas Gampeace0dc12016-01-20 13:33:13 -0800328
Vladimir Markoaad75c62016-10-03 08:46:48 +0000329 if (GetCompilerOptions().IsBootImage()) {
Nicolas Geoffray762869d2016-07-15 15:28:35 +0100330 // We don't need to setup the intrinsics for non boot image compilation, as
331 // those compilations will pick up a boot image that have the ArtMethod already
332 // set with the intrinsics flag.
Orion Hodson26ef34c2017-11-01 13:32:41 +0000333 InitializeIntrinsics();
Nicolas Geoffray762869d2016-07-15 15:28:35 +0100334 }
Andreas Gampe740667a2015-09-15 17:55:06 -0700335 // Compile:
336 // 1) Compile all classes and methods enabled for compilation. May fall back to dex-to-dex
337 // compilation.
Nicolas Geoffray49cda062017-04-21 13:08:25 +0100338 if (GetCompilerOptions().IsAnyCompilationEnabled()) {
Andreas Gampeace0dc12016-01-20 13:33:13 -0800339 Compile(class_loader, dex_files, timings);
Andreas Gampe740667a2015-09-15 17:55:06 -0700340 }
Nicolas Geoffray2d8801f2017-11-28 15:50:07 +0000341 if (GetCompilerOptions().GetDumpStats()) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700342 stats_->Dump();
343 }
344}
345
Mathieu Chartiera79efdb2018-01-18 16:31:01 -0800346static optimizer::DexToDexCompiler::CompilationLevel GetDexToDexCompilationLevel(
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700347 Thread* self, const CompilerDriver& driver, Handle<mirror::ClassLoader> class_loader,
Andreas Gampe3f1dcd32018-12-28 09:39:56 -0800348 const DexFile& dex_file, const dex::ClassDef& class_def)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700349 REQUIRES_SHARED(Locks::mutator_lock_) {
Nicolas Geoffrayf3075272018-01-08 12:41:19 +0000350 // When the dex file is uncompressed in the APK, we do not generate a copy in the .vdex
351 // file. As a result, dex2oat will map the dex file read-only, and we only need to check
352 // that to know if we can do quickening.
353 if (dex_file.GetContainer() != nullptr && dex_file.GetContainer()->IsReadOnly()) {
354 return optimizer::DexToDexCompiler::CompilationLevel::kDontDexToDexCompile;
355 }
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800356 auto* const runtime = Runtime::Current();
Nicolas Geoffray49cda062017-04-21 13:08:25 +0100357 DCHECK(driver.GetCompilerOptions().IsQuickeningCompilationEnabled());
Brian Carlstrom7940e442013-07-12 13:46:57 -0700358 const char* descriptor = dex_file.GetClassDescriptor(class_def);
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800359 ClassLinker* class_linker = runtime->GetClassLinker();
Vladimir Markoa8bba7d2018-05-30 15:18:48 +0100360 ObjPtr<mirror::Class> klass = class_linker->FindClass(self, descriptor, class_loader);
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700361 if (klass == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700362 CHECK(self->IsExceptionPending());
363 self->ClearException();
Mathieu Chartiera79efdb2018-01-18 16:31:01 -0800364 return optimizer::DexToDexCompiler::CompilationLevel::kDontDexToDexCompile;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700365 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700366 // DexToDex at the kOptimize level may introduce quickened opcodes, which replace symbolic
367 // references with actual offsets. We cannot re-verify such instructions.
368 //
369 // We store the verification information in the class status in the oat file, which the linker
370 // can validate (checksums) and use to skip load-time verification. It is thus safe to
371 // optimize when a class has been fully verified before.
Mathieu Chartiera79efdb2018-01-18 16:31:01 -0800372 optimizer::DexToDexCompiler::CompilationLevel max_level =
373 optimizer::DexToDexCompiler::CompilationLevel::kOptimize;
Alex Lighte40dd382017-01-25 17:44:53 -0800374 if (driver.GetCompilerOptions().GetDebuggable()) {
375 // We are debuggable so definitions of classes might be changed. We don't want to do any
376 // optimizations that could break that.
Mathieu Chartiera79efdb2018-01-18 16:31:01 -0800377 max_level = optimizer::DexToDexCompiler::CompilationLevel::kDontDexToDexCompile;
Alex Lighte40dd382017-01-25 17:44:53 -0800378 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700379 if (klass->IsVerified()) {
Sebastien Hertz75021222013-07-16 18:34:50 +0200380 // Class is verified so we can enable DEX-to-DEX compilation for performance.
Alex Lighte40dd382017-01-25 17:44:53 -0800381 return max_level;
Sebastien Hertz75021222013-07-16 18:34:50 +0200382 } else {
Andreas Gampe1a4bc7f2017-03-27 14:57:30 -0700383 // Class verification has failed: do not run DEX-to-DEX optimizations.
Mathieu Chartiera79efdb2018-01-18 16:31:01 -0800384 return optimizer::DexToDexCompiler::CompilationLevel::kDontDexToDexCompile;
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700385 }
386}
387
Mathieu Chartiera79efdb2018-01-18 16:31:01 -0800388static optimizer::DexToDexCompiler::CompilationLevel GetDexToDexCompilationLevel(
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700389 Thread* self,
390 const CompilerDriver& driver,
391 jobject jclass_loader,
392 const DexFile& dex_file,
Andreas Gampe3f1dcd32018-12-28 09:39:56 -0800393 const dex::ClassDef& class_def) {
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700394 ScopedObjectAccess soa(self);
395 StackHandleScope<1> hs(soa.Self());
396 Handle<mirror::ClassLoader> class_loader(
Mathieu Chartier0795f232016-09-27 18:43:30 -0700397 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader)));
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700398 return GetDexToDexCompilationLevel(self, driver, class_loader, dex_file, class_def);
399}
400
401// Does the runtime for the InstructionSet provide an implementation returned by
402// GetQuickGenericJniStub allowing down calls that aren't compiled using a JNI compiler?
403static bool InstructionSetHasGenericJniStub(InstructionSet isa) {
404 switch (isa) {
Vladimir Marko33bff252017-11-01 14:35:42 +0000405 case InstructionSet::kArm:
406 case InstructionSet::kArm64:
407 case InstructionSet::kThumb2:
408 case InstructionSet::kMips:
409 case InstructionSet::kMips64:
410 case InstructionSet::kX86:
411 case InstructionSet::kX86_64: return true;
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700412 default: return false;
413 }
414}
415
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800416template <typename CompileFn>
417static void CompileMethodHarness(
418 Thread* self,
419 CompilerDriver* driver,
Andreas Gampe3f1dcd32018-12-28 09:39:56 -0800420 const dex::CodeItem* code_item,
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800421 uint32_t access_flags,
422 InvokeType invoke_type,
423 uint16_t class_def_idx,
424 uint32_t method_idx,
425 Handle<mirror::ClassLoader> class_loader,
426 const DexFile& dex_file,
427 optimizer::DexToDexCompiler::CompilationLevel dex_to_dex_compilation_level,
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800428 Handle<mirror::DexCache> dex_cache,
429 CompileFn compile_fn) {
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700430 DCHECK(driver != nullptr);
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800431 CompiledMethod* compiled_method;
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700432 uint64_t start_ns = kTimeCompileMethod ? NanoTime() : 0;
433 MethodReference method_ref(&dex_file, method_idx);
434
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800435 compiled_method = compile_fn(self,
436 driver,
437 code_item,
438 access_flags,
439 invoke_type,
440 class_def_idx,
441 method_idx,
442 class_loader,
443 dex_file,
444 dex_to_dex_compilation_level,
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800445 dex_cache);
Igor Murashkin9d4b6da2016-07-29 09:51:58 -0700446
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700447 if (kTimeCompileMethod) {
448 uint64_t duration_ns = NanoTime() - start_ns;
449 if (duration_ns > MsToNs(driver->GetCompiler()->GetMaximumCompilationTimeBeforeWarning())) {
David Sehr709b0702016-10-13 09:12:37 -0700450 LOG(WARNING) << "Compilation of " << dex_file.PrettyMethod(method_idx)
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700451 << " took " << PrettyDuration(duration_ns);
452 }
453 }
454
455 if (compiled_method != nullptr) {
Vladimir Marko8e524ad2018-07-13 10:27:43 +0100456 driver->AddCompiledMethod(method_ref, compiled_method);
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700457 }
458
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700459 if (self->IsExceptionPending()) {
460 ScopedObjectAccess soa(self);
David Sehr709b0702016-10-13 09:12:37 -0700461 LOG(FATAL) << "Unexpected exception compiling: " << dex_file.PrettyMethod(method_idx) << "\n"
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700462 << self->GetException()->Dump();
Sebastien Hertz75021222013-07-16 18:34:50 +0200463 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700464}
465
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800466static void CompileMethodDex2Dex(
467 Thread* self,
468 CompilerDriver* driver,
Andreas Gampe3f1dcd32018-12-28 09:39:56 -0800469 const dex::CodeItem* code_item,
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800470 uint32_t access_flags,
471 InvokeType invoke_type,
472 uint16_t class_def_idx,
473 uint32_t method_idx,
474 Handle<mirror::ClassLoader> class_loader,
475 const DexFile& dex_file,
476 optimizer::DexToDexCompiler::CompilationLevel dex_to_dex_compilation_level,
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800477 Handle<mirror::DexCache> dex_cache) {
478 auto dex_2_dex_fn = [](Thread* self ATTRIBUTE_UNUSED,
479 CompilerDriver* driver,
Andreas Gampe3f1dcd32018-12-28 09:39:56 -0800480 const dex::CodeItem* code_item,
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800481 uint32_t access_flags,
482 InvokeType invoke_type,
483 uint16_t class_def_idx,
484 uint32_t method_idx,
485 Handle<mirror::ClassLoader> class_loader,
486 const DexFile& dex_file,
487 optimizer::DexToDexCompiler::CompilationLevel dex_to_dex_compilation_level,
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800488 Handle<mirror::DexCache> dex_cache ATTRIBUTE_UNUSED) -> CompiledMethod* {
489 DCHECK(driver != nullptr);
490 MethodReference method_ref(&dex_file, method_idx);
491
492 optimizer::DexToDexCompiler* const compiler = &driver->GetDexToDexCompiler();
493
494 if (compiler->ShouldCompileMethod(method_ref)) {
Vladimir Marko2afaff72018-11-30 17:01:50 +0000495 const VerificationResults* results = driver->GetCompilerOptions().GetVerificationResults();
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800496 DCHECK(results != nullptr);
497 const VerifiedMethod* verified_method = results->GetVerifiedMethod(method_ref);
498 // Do not optimize if a VerifiedMethod is missing. SafeCast elision,
499 // for example, relies on it.
500 return compiler->CompileMethod(
501 code_item,
502 access_flags,
503 invoke_type,
504 class_def_idx,
505 method_idx,
506 class_loader,
507 dex_file,
508 (verified_method != nullptr)
509 ? dex_to_dex_compilation_level
510 : optimizer::DexToDexCompiler::CompilationLevel::kDontDexToDexCompile);
511 }
512 return nullptr;
513 };
514 CompileMethodHarness(self,
515 driver,
516 code_item,
517 access_flags,
518 invoke_type,
519 class_def_idx,
520 method_idx,
521 class_loader,
522 dex_file,
523 dex_to_dex_compilation_level,
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800524 dex_cache,
525 dex_2_dex_fn);
526}
527
528static void CompileMethodQuick(
529 Thread* self,
530 CompilerDriver* driver,
Andreas Gampe3f1dcd32018-12-28 09:39:56 -0800531 const dex::CodeItem* code_item,
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800532 uint32_t access_flags,
533 InvokeType invoke_type,
534 uint16_t class_def_idx,
535 uint32_t method_idx,
536 Handle<mirror::ClassLoader> class_loader,
537 const DexFile& dex_file,
538 optimizer::DexToDexCompiler::CompilationLevel dex_to_dex_compilation_level,
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800539 Handle<mirror::DexCache> dex_cache) {
540 auto quick_fn = [](
541 Thread* self,
542 CompilerDriver* driver,
Andreas Gampe3f1dcd32018-12-28 09:39:56 -0800543 const dex::CodeItem* code_item,
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800544 uint32_t access_flags,
545 InvokeType invoke_type,
546 uint16_t class_def_idx,
547 uint32_t method_idx,
548 Handle<mirror::ClassLoader> class_loader,
549 const DexFile& dex_file,
550 optimizer::DexToDexCompiler::CompilationLevel dex_to_dex_compilation_level,
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800551 Handle<mirror::DexCache> dex_cache) {
552 DCHECK(driver != nullptr);
553 CompiledMethod* compiled_method = nullptr;
554 MethodReference method_ref(&dex_file, method_idx);
555
556 if ((access_flags & kAccNative) != 0) {
557 // Are we extracting only and have support for generic JNI down calls?
558 if (!driver->GetCompilerOptions().IsJniCompilationEnabled() &&
Vladimir Markoa0431112018-06-25 09:32:54 +0100559 InstructionSetHasGenericJniStub(driver->GetCompilerOptions().GetInstructionSet())) {
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800560 // Leaving this empty will trigger the generic JNI version
561 } else {
562 // Query any JNI optimization annotations such as @FastNative or @CriticalNative.
563 access_flags |= annotations::GetNativeMethodAnnotationAccessFlags(
564 dex_file, dex_file.GetClassDef(class_def_idx), method_idx);
565
566 compiled_method = driver->GetCompiler()->JniCompile(
567 access_flags, method_idx, dex_file, dex_cache);
568 CHECK(compiled_method != nullptr);
569 }
570 } else if ((access_flags & kAccAbstract) != 0) {
571 // Abstract methods don't have code.
572 } else {
Vladimir Marko2afaff72018-11-30 17:01:50 +0000573 const VerificationResults* results = driver->GetCompilerOptions().GetVerificationResults();
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800574 DCHECK(results != nullptr);
575 const VerifiedMethod* verified_method = results->GetVerifiedMethod(method_ref);
Mathieu Chartiera297b552018-11-07 11:41:01 -0800576 bool compile =
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800577 // Basic checks, e.g., not <clinit>.
578 results->IsCandidateForCompilation(method_ref, access_flags) &&
579 // Did not fail to create VerifiedMethod metadata.
580 verified_method != nullptr &&
581 // Do not have failures that should punt to the interpreter.
582 !verified_method->HasRuntimeThrow() &&
583 (verified_method->GetEncounteredVerificationFailures() &
584 (verifier::VERIFY_ERROR_FORCE_INTERPRETER | verifier::VERIFY_ERROR_LOCKING)) == 0 &&
585 // Is eligable for compilation by methods-to-compile filter.
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800586 driver->ShouldCompileBasedOnProfile(method_ref);
587
588 if (compile) {
589 // NOTE: if compiler declines to compile this method, it will return null.
590 compiled_method = driver->GetCompiler()->Compile(code_item,
591 access_flags,
592 invoke_type,
593 class_def_idx,
594 method_idx,
595 class_loader,
596 dex_file,
597 dex_cache);
Andreas Gampe5c803112018-04-13 17:28:34 -0700598 ProfileMethodsCheck check_type =
599 driver->GetCompilerOptions().CheckProfiledMethodsCompiled();
600 if (UNLIKELY(check_type != ProfileMethodsCheck::kNone)) {
601 bool violation = driver->ShouldCompileBasedOnProfile(method_ref) &&
602 (compiled_method == nullptr);
603 if (violation) {
604 std::ostringstream oss;
605 oss << "Failed to compile "
606 << method_ref.dex_file->PrettyMethod(method_ref.index)
607 << "[" << method_ref.dex_file->GetLocation() << "]"
608 << " as expected by profile";
609 switch (check_type) {
610 case ProfileMethodsCheck::kNone:
611 break;
612 case ProfileMethodsCheck::kLog:
613 LOG(ERROR) << oss.str();
614 break;
615 case ProfileMethodsCheck::kAbort:
616 LOG(FATAL_WITHOUT_ABORT) << oss.str();
617 _exit(1);
618 }
619 }
620 }
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800621 }
622 if (compiled_method == nullptr &&
623 dex_to_dex_compilation_level !=
624 optimizer::DexToDexCompiler::CompilationLevel::kDontDexToDexCompile) {
625 DCHECK(!Runtime::Current()->UseJitCompilation());
626 // TODO: add a command-line option to disable DEX-to-DEX compilation ?
Mathieu Chartier279e3a32018-01-24 18:17:55 -0800627 driver->GetDexToDexCompiler().MarkForCompilation(self, method_ref);
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800628 }
629 }
630 return compiled_method;
631 };
632 CompileMethodHarness(self,
633 driver,
634 code_item,
635 access_flags,
636 invoke_type,
637 class_def_idx,
638 method_idx,
639 class_loader,
640 dex_file,
641 dex_to_dex_compilation_level,
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800642 dex_cache,
643 quick_fn);
644}
645
Vladimir Markodc4bcce2018-06-21 16:15:42 +0100646// Compile a single Method. (For testing only.)
647void CompilerDriver::CompileOne(Thread* self,
648 jobject class_loader,
649 const DexFile& dex_file,
650 uint16_t class_def_idx,
651 uint32_t method_idx,
652 uint32_t access_flags,
653 InvokeType invoke_type,
Andreas Gampe3f1dcd32018-12-28 09:39:56 -0800654 const dex::CodeItem* code_item,
Vladimir Markodc4bcce2018-06-21 16:15:42 +0100655 Handle<mirror::DexCache> dex_cache,
656 Handle<mirror::ClassLoader> h_class_loader) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700657 // Can we run DEX-to-DEX compiler on this class ?
Mathieu Chartiera79efdb2018-01-18 16:31:01 -0800658 optimizer::DexToDexCompiler::CompilationLevel dex_to_dex_compilation_level =
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700659 GetDexToDexCompilationLevel(self,
660 *this,
Vladimir Markodc4bcce2018-06-21 16:15:42 +0100661 class_loader,
662 dex_file,
663 dex_file.GetClassDef(class_def_idx));
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700664
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800665 CompileMethodQuick(self,
666 this,
667 code_item,
668 access_flags,
669 invoke_type,
670 class_def_idx,
671 method_idx,
Vladimir Markodc4bcce2018-06-21 16:15:42 +0100672 h_class_loader,
673 dex_file,
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800674 dex_to_dex_compilation_level,
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800675 dex_cache);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700676
Mathieu Chartier279e3a32018-01-24 18:17:55 -0800677 const size_t num_methods = dex_to_dex_compiler_.NumCodeItemsToQuicken(self);
Mathieu Chartiera79efdb2018-01-18 16:31:01 -0800678 if (num_methods != 0) {
679 DCHECK_EQ(num_methods, 1u);
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800680 CompileMethodDex2Dex(self,
681 this,
682 code_item,
683 access_flags,
684 invoke_type,
685 class_def_idx,
686 method_idx,
Vladimir Markodc4bcce2018-06-21 16:15:42 +0100687 h_class_loader,
688 dex_file,
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800689 dex_to_dex_compilation_level,
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800690 dex_cache);
Mathieu Chartiera79efdb2018-01-18 16:31:01 -0800691 dex_to_dex_compiler_.ClearState();
Vladimir Marko492a7fa2016-06-01 18:38:43 +0100692 }
Mathieu Chartier2535abe2015-02-17 10:38:49 -0800693}
694
Andreas Gampeace0dc12016-01-20 13:33:13 -0800695void CompilerDriver::Resolve(jobject class_loader,
696 const std::vector<const DexFile*>& dex_files,
697 TimingLogger* timings) {
698 // Resolution allocates classes and needs to run single-threaded to be deterministic.
699 bool force_determinism = GetCompilerOptions().IsForceDeterminism();
700 ThreadPool* resolve_thread_pool = force_determinism
701 ? single_thread_pool_.get()
702 : parallel_thread_pool_.get();
703 size_t resolve_thread_count = force_determinism ? 1U : parallel_thread_count_;
704
Brian Carlstrom7940e442013-07-12 13:46:57 -0700705 for (size_t i = 0; i != dex_files.size(); ++i) {
706 const DexFile* dex_file = dex_files[i];
Kenny Rootd5185342014-05-13 14:47:05 -0700707 CHECK(dex_file != nullptr);
Andreas Gampeace0dc12016-01-20 13:33:13 -0800708 ResolveDexFile(class_loader,
709 *dex_file,
710 dex_files,
711 resolve_thread_pool,
712 resolve_thread_count,
713 timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700714 }
715}
716
Mathieu Chartiercd0f38f2018-10-15 09:44:35 -0700717void CompilerDriver::ResolveConstStrings(const std::vector<const DexFile*>& dex_files,
718 bool only_startup_strings,
719 TimingLogger* timings) {
Nicolas Geoffray571d2342016-10-12 13:03:15 +0000720 ScopedObjectAccess soa(Thread::Current());
721 StackHandleScope<1> hs(soa.Self());
722 ClassLinker* const class_linker = Runtime::Current()->GetClassLinker();
723 MutableHandle<mirror::DexCache> dex_cache(hs.NewHandle<mirror::DexCache>(nullptr));
Mathieu Chartier22752772018-10-18 14:18:59 -0700724 size_t num_instructions = 0u;
Nicolas Geoffray571d2342016-10-12 13:03:15 +0000725
Andreas Gampeace0dc12016-01-20 13:33:13 -0800726 for (const DexFile* dex_file : dex_files) {
Vladimir Markocd556b02017-02-03 11:47:34 +0000727 dex_cache.Assign(class_linker->FindDexCache(soa.Self(), *dex_file));
Mathieu Chartier1ca718e2018-10-23 12:55:34 -0700728 if (only_startup_strings) {
729 // When resolving startup strings, create the preresolved strings array.
730 dex_cache->AddPreResolvedStringsArray();
731 }
Andreas Gampeace0dc12016-01-20 13:33:13 -0800732 TimingLogger::ScopedTiming t("Resolve const-string Strings", timings);
733
Mathieu Chartiera297b552018-11-07 11:41:01 -0800734 // TODO: Implement a profile-based filter for the boot image. See b/76145463.
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -0700735 for (ClassAccessor accessor : dex_file->GetClasses()) {
Vladimir Marko1a2a5cd2018-11-07 15:39:48 +0000736 const ProfileCompilationInfo* profile_compilation_info =
737 GetCompilerOptions().GetProfileCompilationInfo();
Mathieu Chartiera297b552018-11-07 11:41:01 -0800738
Mathieu Chartier22752772018-10-18 14:18:59 -0700739 const bool is_startup_class =
Vladimir Marko1a2a5cd2018-11-07 15:39:48 +0000740 profile_compilation_info != nullptr &&
741 profile_compilation_info->ContainsClass(*dex_file, accessor.GetClassIdx());
Mathieu Chartier22752772018-10-18 14:18:59 -0700742
Mathieu Chartier0d896bd2018-05-25 00:20:27 -0700743 for (const ClassAccessor::Method& method : accessor.GetMethods()) {
Mathieu Chartier22752772018-10-18 14:18:59 -0700744 const bool is_clinit = (method.GetAccessFlags() & kAccConstructor) != 0 &&
745 (method.GetAccessFlags() & kAccStatic) != 0;
746 const bool is_startup_clinit = is_startup_class && is_clinit;
747
Mathieu Chartiercd0f38f2018-10-15 09:44:35 -0700748 if (only_startup_strings &&
Vladimir Marko1a2a5cd2018-11-07 15:39:48 +0000749 profile_compilation_info != nullptr &&
750 (!profile_compilation_info->GetMethodHotness(method.GetReference()).IsStartup() &&
Mathieu Chartier22752772018-10-18 14:18:59 -0700751 !is_startup_clinit)) {
Mathieu Chartiercd0f38f2018-10-15 09:44:35 -0700752 continue;
753 }
754
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -0700755 // Resolve const-strings in the code. Done to have deterministic allocation behavior. Right
756 // now this is single-threaded for simplicity.
757 // TODO: Collect the relevant string indices in parallel, then allocate them sequentially
758 // in a stable order.
759 for (const DexInstructionPcPair& inst : method.GetInstructions()) {
760 switch (inst->Opcode()) {
761 case Instruction::CONST_STRING:
762 case Instruction::CONST_STRING_JUMBO: {
763 dex::StringIndex string_index((inst->Opcode() == Instruction::CONST_STRING)
764 ? inst->VRegB_21c()
765 : inst->VRegB_31c());
766 ObjPtr<mirror::String> string = class_linker->ResolveString(string_index, dex_cache);
767 CHECK(string != nullptr) << "Could not allocate a string when forcing determinism";
Mathieu Chartier1ca718e2018-10-23 12:55:34 -0700768 if (only_startup_strings) {
769 dex_cache->GetPreResolvedStrings()[string_index.index_] =
770 GcRoot<mirror::String>(string);
771 }
Mathieu Chartier22752772018-10-18 14:18:59 -0700772 ++num_instructions;
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -0700773 break;
774 }
Andreas Gampeace0dc12016-01-20 13:33:13 -0800775
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -0700776 default:
777 break;
778 }
779 }
Mathieu Chartier0d896bd2018-05-25 00:20:27 -0700780 }
Vladimir Marko175e7862018-03-27 09:03:13 +0000781 }
782 }
Mathieu Chartier22752772018-10-18 14:18:59 -0700783 VLOG(compiler) << "Resolved " << num_instructions << " const string instructions";
Vladimir Marko175e7862018-03-27 09:03:13 +0000784}
785
786// Initialize type check bit strings for check-cast and instance-of in the code. Done to have
787// deterministic allocation behavior. Right now this is single-threaded for simplicity.
788// TODO: Collect the relevant type indices in parallel, then process them sequentially in a
789// stable order.
790
791static void InitializeTypeCheckBitstrings(CompilerDriver* driver,
792 ClassLinker* class_linker,
793 Handle<mirror::DexCache> dex_cache,
794 const DexFile& dex_file,
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -0700795 const ClassAccessor::Method& method)
Vladimir Marko175e7862018-03-27 09:03:13 +0000796 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -0700797 for (const DexInstructionPcPair& inst : method.GetInstructions()) {
Vladimir Marko175e7862018-03-27 09:03:13 +0000798 switch (inst->Opcode()) {
799 case Instruction::CHECK_CAST:
800 case Instruction::INSTANCE_OF: {
801 dex::TypeIndex type_index(
802 (inst->Opcode() == Instruction::CHECK_CAST) ? inst->VRegB_21c() : inst->VRegC_22c());
803 const char* descriptor = dex_file.StringByTypeIdx(type_index);
804 // We currently do not use the bitstring type check for array or final (including
805 // primitive) classes. We may reconsider this in future if it's deemed to be beneficial.
806 // And we cannot use it for classes outside the boot image as we do not know the runtime
807 // value of their bitstring when compiling (it may not even get assigned at runtime).
Vladimir Markodc4bcce2018-06-21 16:15:42 +0100808 if (descriptor[0] == 'L' && driver->GetCompilerOptions().IsImageClass(descriptor)) {
Vladimir Marko175e7862018-03-27 09:03:13 +0000809 ObjPtr<mirror::Class> klass =
810 class_linker->LookupResolvedType(type_index,
811 dex_cache.Get(),
Andreas Gampe3db70682018-12-26 15:12:03 -0800812 /* class_loader= */ nullptr);
Vladimir Marko175e7862018-03-27 09:03:13 +0000813 CHECK(klass != nullptr) << descriptor << " should have been previously resolved.";
814 // Now assign the bitstring if the class is not final. Keep this in sync with sharpening.
815 if (!klass->IsFinal()) {
816 MutexLock subtype_check_lock(Thread::Current(), *Locks::subtype_check_lock_);
817 SubtypeCheck<ObjPtr<mirror::Class>>::EnsureAssigned(klass);
818 }
Andreas Gampeace0dc12016-01-20 13:33:13 -0800819 }
Vladimir Marko175e7862018-03-27 09:03:13 +0000820 break;
821 }
822
823 default:
824 break;
825 }
826 }
827}
828
829static void InitializeTypeCheckBitstrings(CompilerDriver* driver,
830 const std::vector<const DexFile*>& dex_files,
831 TimingLogger* timings) {
832 ScopedObjectAccess soa(Thread::Current());
833 StackHandleScope<1> hs(soa.Self());
834 ClassLinker* const class_linker = Runtime::Current()->GetClassLinker();
835 MutableHandle<mirror::DexCache> dex_cache(hs.NewHandle<mirror::DexCache>(nullptr));
836
837 for (const DexFile* dex_file : dex_files) {
838 dex_cache.Assign(class_linker->FindDexCache(soa.Self(), *dex_file));
839 TimingLogger::ScopedTiming t("Initialize type check bitstrings", timings);
840
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -0700841 for (ClassAccessor accessor : dex_file->GetClasses()) {
Vladimir Marko175e7862018-03-27 09:03:13 +0000842 // Direct and virtual methods.
Mathieu Chartier0d896bd2018-05-25 00:20:27 -0700843 for (const ClassAccessor::Method& method : accessor.GetMethods()) {
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -0700844 InitializeTypeCheckBitstrings(driver, class_linker, dex_cache, *dex_file, method);
Mathieu Chartier0d896bd2018-05-25 00:20:27 -0700845 }
Andreas Gampeace0dc12016-01-20 13:33:13 -0800846 }
847 }
848}
849
850inline void CompilerDriver::CheckThreadPools() {
851 DCHECK(parallel_thread_pool_ != nullptr);
852 DCHECK(single_thread_pool_ != nullptr);
853}
854
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +0000855static void EnsureVerifiedOrVerifyAtRuntime(jobject jclass_loader,
856 const std::vector<const DexFile*>& dex_files) {
857 ScopedObjectAccess soa(Thread::Current());
858 StackHandleScope<2> hs(soa.Self());
859 Handle<mirror::ClassLoader> class_loader(
860 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader)));
861 MutableHandle<mirror::Class> cls(hs.NewHandle<mirror::Class>(nullptr));
862 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
863
864 for (const DexFile* dex_file : dex_files) {
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -0700865 for (ClassAccessor accessor : dex_file->GetClasses()) {
866 cls.Assign(class_linker->FindClass(soa.Self(), accessor.GetDescriptor(), class_loader));
Andreas Gampefa4333d2017-02-14 11:10:34 -0800867 if (cls == nullptr) {
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +0000868 soa.Self()->ClearException();
869 } else if (&cls->GetDexFile() == dex_file) {
Nicolas Geoffray7cc3ae52017-03-07 14:33:37 +0000870 DCHECK(cls->IsErroneous() || cls->IsVerified() || cls->ShouldVerifyAtRuntime())
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +0000871 << cls->PrettyClass()
872 << " " << cls->GetStatus();
873 }
874 }
875 }
876}
877
Andreas Gampeace0dc12016-01-20 13:33:13 -0800878void CompilerDriver::PreCompile(jobject class_loader,
879 const std::vector<const DexFile*>& dex_files,
Vladimir Marko2afaff72018-11-30 17:01:50 +0000880 TimingLogger* timings,
881 /*inout*/ HashSet<std::string>* image_classes,
882 /*out*/ VerificationResults* verification_results) {
Andreas Gampeace0dc12016-01-20 13:33:13 -0800883 CheckThreadPools();
Vladimir Marko213ee2d2018-06-22 11:56:34 +0100884
Vladimir Markodc4bcce2018-06-21 16:15:42 +0100885 VLOG(compiler) << "Before precompile " << GetMemoryUsageString(false);
886
Vladimir Marko213ee2d2018-06-22 11:56:34 +0100887 compiled_classes_.AddDexFiles(GetCompilerOptions().GetDexFilesForOatFile());
888 dex_to_dex_compiler_.SetDexFiles(GetCompilerOptions().GetDexFilesForOatFile());
889
Vladimir Markodc4bcce2018-06-21 16:15:42 +0100890 // Precompile:
891 // 1) Load image classes.
892 // 2) Resolve all classes.
893 // 3) For deterministic boot image, resolve strings for const-string instructions.
894 // 4) Attempt to verify all classes.
895 // 5) Attempt to initialize image classes, and trivially initialized classes.
896 // 6) Update the set of image classes.
897 // 7) For deterministic boot image, initialize bitstrings for type checking.
Andreas Gampeace0dc12016-01-20 13:33:13 -0800898
Vladimir Marko2afaff72018-11-30 17:01:50 +0000899 LoadImageClasses(timings, image_classes);
Andreas Gampe8d295f82015-01-20 14:50:21 -0800900 VLOG(compiler) << "LoadImageClasses: " << GetMemoryUsageString(false);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700901
Nicolas Geoffray49cda062017-04-21 13:08:25 +0100902 if (compiler_options_->IsAnyCompilationEnabled()) {
Mathieu Chartier88b74b62017-07-16 17:08:19 -0700903 // Avoid adding the dex files in the case where we aren't going to add compiled methods.
904 // This reduces RAM usage for this case.
905 for (const DexFile* dex_file : dex_files) {
906 // Can be already inserted if the caller is CompileOne. This happens for gtests.
907 if (!compiled_methods_.HaveDexFile(dex_file)) {
Mathieu Chartierfc8b4222017-09-17 13:44:24 -0700908 compiled_methods_.AddDexFile(dex_file);
Mathieu Chartier88b74b62017-07-16 17:08:19 -0700909 }
910 }
Nicolas Geoffray49cda062017-04-21 13:08:25 +0100911 // Resolve eagerly to prepare for compilation.
Andreas Gampeace0dc12016-01-20 13:33:13 -0800912 Resolve(class_loader, dex_files, timings);
Mathieu Chartiere86deef2015-03-19 13:43:37 -0700913 VLOG(compiler) << "Resolve: " << GetMemoryUsageString(false);
914 }
915
Nicolas Geoffray60ca9492016-12-20 21:15:00 +0000916 if (compiler_options_->AssumeClassesAreVerified()) {
Mathieu Chartierab972ef2014-12-03 17:38:22 -0800917 VLOG(compiler) << "Verify none mode specified, skipping verification.";
Andreas Gampeace0dc12016-01-20 13:33:13 -0800918 SetVerified(class_loader, dex_files, timings);
Mathieu Chartiere86deef2015-03-19 13:43:37 -0700919 }
920
Nicolas Geoffray60ca9492016-12-20 21:15:00 +0000921 if (!compiler_options_->IsVerificationEnabled()) {
Jeff Hao4a200f52014-04-01 14:58:49 -0700922 return;
923 }
924
Vladimir Markoaad75c62016-10-03 08:46:48 +0000925 if (GetCompilerOptions().IsForceDeterminism() && GetCompilerOptions().IsBootImage()) {
Andreas Gampeace0dc12016-01-20 13:33:13 -0800926 // Resolve strings from const-string. Do this now to have a deterministic image.
Mathieu Chartiercd0f38f2018-10-15 09:44:35 -0700927 ResolveConstStrings(dex_files, /*only_startup_strings=*/ false, timings);
Andreas Gampeace0dc12016-01-20 13:33:13 -0800928 VLOG(compiler) << "Resolve const-strings: " << GetMemoryUsageString(false);
Mathieu Chartiercd0f38f2018-10-15 09:44:35 -0700929 } else if (GetCompilerOptions().ResolveStartupConstStrings()) {
930 ResolveConstStrings(dex_files, /*only_startup_strings=*/ true, timings);
Andreas Gampeace0dc12016-01-20 13:33:13 -0800931 }
932
Vladimir Marko2afaff72018-11-30 17:01:50 +0000933 Verify(class_loader, dex_files, timings, verification_results);
Andreas Gampe8d295f82015-01-20 14:50:21 -0800934 VLOG(compiler) << "Verify: " << GetMemoryUsageString(false);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700935
Andreas Gampe6cf49e52015-03-05 13:08:45 -0800936 if (had_hard_verifier_failure_ && GetCompilerOptions().AbortOnHardVerifierFailure()) {
Andreas Gampefdfb4d42017-07-27 12:12:22 -0700937 // Avoid dumping threads. Even if we shut down the thread pools, there will still be three
938 // instances of this thread's stack.
939 LOG(FATAL_WITHOUT_ABORT) << "Had a hard failure verifying all classes, and was asked to abort "
940 << "in such situations. Please check the log.";
Andreas Gampe56c9b7c2018-02-27 18:49:26 -0800941 _exit(1);
Andreas Gampef39208f2017-10-19 15:06:59 -0700942 } else if (number_of_soft_verifier_failures_ > 0 &&
943 GetCompilerOptions().AbortOnSoftVerifierFailure()) {
944 LOG(FATAL_WITHOUT_ABORT) << "Had " << number_of_soft_verifier_failures_ << " soft failure(s) "
945 << "verifying all classes, and was asked to abort in such situations. "
946 << "Please check the log.";
Andreas Gampe56c9b7c2018-02-27 18:49:26 -0800947 _exit(1);
Andreas Gampe6cf49e52015-03-05 13:08:45 -0800948 }
949
Nicolas Geoffray49cda062017-04-21 13:08:25 +0100950 if (compiler_options_->IsAnyCompilationEnabled()) {
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +0000951 if (kIsDebugBuild) {
952 EnsureVerifiedOrVerifyAtRuntime(class_loader, dex_files);
953 }
Nicolas Geoffrayade72d62016-12-15 13:20:02 +0000954 InitializeClasses(class_loader, dex_files, timings);
955 VLOG(compiler) << "InitializeClasses: " << GetMemoryUsageString(false);
956 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700957
Vladimir Marko2afaff72018-11-30 17:01:50 +0000958 UpdateImageClasses(timings, image_classes);
Andreas Gampe8d295f82015-01-20 14:50:21 -0800959 VLOG(compiler) << "UpdateImageClasses: " << GetMemoryUsageString(false);
Vladimir Marko175e7862018-03-27 09:03:13 +0000960
961 if (kBitstringSubtypeCheckEnabled &&
962 GetCompilerOptions().IsForceDeterminism() && GetCompilerOptions().IsBootImage()) {
963 // Initialize type check bit string used by check-cast and instanceof.
964 // Do this now to have a deterministic image.
965 // Note: This is done after UpdateImageClasses() at it relies on the image classes to be final.
966 InitializeTypeCheckBitstrings(this, dex_files, timings);
967 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700968}
969
Calin Juravle226501b2015-12-11 14:41:31 +0000970bool CompilerDriver::ShouldCompileBasedOnProfile(const MethodReference& method_ref) const {
Mathieu Chartier97ab5e32017-02-22 13:35:44 -0800971 // Profile compilation info may be null if no profile is passed.
Mathieu Chartierd0af56c2017-02-17 12:56:25 -0800972 if (!CompilerFilter::DependsOnProfile(compiler_options_->GetCompilerFilter())) {
973 // Use the compiler filter instead of the presence of profile_compilation_info_ since
974 // we may want to have full speed compilation along with profile based layout optimizations.
Calin Juravle226501b2015-12-11 14:41:31 +0000975 return true;
976 }
Mathieu Chartier97ab5e32017-02-22 13:35:44 -0800977 // If we are using a profile filter but do not have a profile compilation info, compile nothing.
Vladimir Marko1a2a5cd2018-11-07 15:39:48 +0000978 const ProfileCompilationInfo* profile_compilation_info =
979 GetCompilerOptions().GetProfileCompilationInfo();
980 if (profile_compilation_info == nullptr) {
Mathieu Chartier97ab5e32017-02-22 13:35:44 -0800981 return false;
982 }
Mathieu Chartier7b135c82017-06-05 12:54:01 -0700983 // Compile only hot methods, it is the profile saver's job to decide what startup methods to mark
984 // as hot.
Vladimir Marko1a2a5cd2018-11-07 15:39:48 +0000985 bool result = profile_compilation_info->GetMethodHotness(method_ref).IsHot();
Calin Juravle226501b2015-12-11 14:41:31 +0000986
987 if (kDebugProfileGuidedCompilation) {
988 LOG(INFO) << "[ProfileGuidedCompilation] "
Mathieu Chartierfc8b4222017-09-17 13:44:24 -0700989 << (result ? "Compiled" : "Skipped") << " method:" << method_ref.PrettyMethod(true);
Calin Juravle226501b2015-12-11 14:41:31 +0000990 }
991 return result;
992}
993
Mathieu Chartiere0671ce2015-07-28 17:23:28 -0700994class ResolveCatchBlockExceptionsClassVisitor : public ClassVisitor {
995 public:
Vladimir Marko8d6768d2017-03-14 10:13:21 +0000996 ResolveCatchBlockExceptionsClassVisitor() : classes_() {}
Mathieu Chartiere0671ce2015-07-28 17:23:28 -0700997
Roland Levillainf73caca2018-08-24 17:19:07 +0100998 bool operator()(ObjPtr<mirror::Class> c) override REQUIRES_SHARED(Locks::mutator_lock_) {
Vladimir Marko8d6768d2017-03-14 10:13:21 +0000999 classes_.push_back(c);
Mathieu Chartiere4275c02015-08-06 15:34:15 -07001000 return true;
1001 }
1002
Vladimir Marko8d6768d2017-03-14 10:13:21 +00001003 void FindExceptionTypesToResolve(
1004 std::set<std::pair<dex::TypeIndex, const DexFile*>>* exceptions_to_resolve)
Vladimir Markobfb80d22017-02-14 14:08:12 +00001005 REQUIRES_SHARED(Locks::mutator_lock_) {
Vladimir Marko8d6768d2017-03-14 10:13:21 +00001006 const auto pointer_size = Runtime::Current()->GetClassLinker()->GetImagePointerSize();
1007 for (ObjPtr<mirror::Class> klass : classes_) {
1008 for (ArtMethod& method : klass->GetMethods(pointer_size)) {
1009 FindExceptionTypesToResolveForMethod(&method, exceptions_to_resolve);
1010 }
1011 }
1012 }
1013
1014 private:
1015 void FindExceptionTypesToResolveForMethod(
1016 ArtMethod* method,
1017 std::set<std::pair<dex::TypeIndex, const DexFile*>>* exceptions_to_resolve)
1018 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartier808c7a52017-12-15 11:19:33 -08001019 if (method->GetCodeItem() == nullptr) {
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001020 return; // native or abstract method
Brian Carlstrom7940e442013-07-12 13:46:57 -07001021 }
David Sehr0225f8e2018-01-31 08:52:24 +00001022 CodeItemDataAccessor accessor(method->DexInstructionData());
Mathieu Chartier808c7a52017-12-15 11:19:33 -08001023 if (accessor.TriesSize() == 0) {
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001024 return; // nothing to process
1025 }
Mathieu Chartier808c7a52017-12-15 11:19:33 -08001026 const uint8_t* encoded_catch_handler_list = accessor.GetCatchHandlerData();
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001027 size_t num_encoded_catch_handlers = DecodeUnsignedLeb128(&encoded_catch_handler_list);
1028 for (size_t i = 0; i < num_encoded_catch_handlers; i++) {
1029 int32_t encoded_catch_handler_size = DecodeSignedLeb128(&encoded_catch_handler_list);
1030 bool has_catch_all = false;
1031 if (encoded_catch_handler_size <= 0) {
1032 encoded_catch_handler_size = -encoded_catch_handler_size;
1033 has_catch_all = true;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001034 }
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001035 for (int32_t j = 0; j < encoded_catch_handler_size; j++) {
Andreas Gampea5b09a62016-11-17 15:21:22 -08001036 dex::TypeIndex encoded_catch_handler_handlers_type_idx =
1037 dex::TypeIndex(DecodeUnsignedLeb128(&encoded_catch_handler_list));
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001038 // Add to set of types to resolve if not already in the dex cache resolved types
Vladimir Marko8d6768d2017-03-14 10:13:21 +00001039 if (!method->IsResolvedTypeIdx(encoded_catch_handler_handlers_type_idx)) {
1040 exceptions_to_resolve->emplace(encoded_catch_handler_handlers_type_idx,
1041 method->GetDexFile());
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001042 }
1043 // ignore address associated with catch handler
1044 DecodeUnsignedLeb128(&encoded_catch_handler_list);
1045 }
1046 if (has_catch_all) {
1047 // ignore catch all address
1048 DecodeUnsignedLeb128(&encoded_catch_handler_list);
1049 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001050 }
1051 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001052
Vladimir Marko8d6768d2017-03-14 10:13:21 +00001053 std::vector<ObjPtr<mirror::Class>> classes_;
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001054};
1055
1056class RecordImageClassesVisitor : public ClassVisitor {
1057 public:
Vladimir Marko54159c62018-06-20 14:30:08 +01001058 explicit RecordImageClassesVisitor(HashSet<std::string>* image_classes)
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001059 : image_classes_(image_classes) {}
1060
Roland Levillainbbc6e7e2018-08-24 16:58:47 +01001061 bool operator()(ObjPtr<mirror::Class> klass) override REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001062 std::string temp;
1063 image_classes_->insert(klass->GetDescriptor(&temp));
1064 return true;
1065 }
1066
1067 private:
Vladimir Marko54159c62018-06-20 14:30:08 +01001068 HashSet<std::string>* const image_classes_;
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001069};
Brian Carlstrom7940e442013-07-12 13:46:57 -07001070
1071// Make a list of descriptors for classes to include in the image
Vladimir Marko2afaff72018-11-30 17:01:50 +00001072void CompilerDriver::LoadImageClasses(TimingLogger* timings,
1073 /*inout*/ HashSet<std::string>* image_classes) {
Kenny Rootd5185342014-05-13 14:47:05 -07001074 CHECK(timings != nullptr);
Vladimir Markoaad75c62016-10-03 08:46:48 +00001075 if (!GetCompilerOptions().IsBootImage()) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001076 return;
1077 }
1078
Mathieu Chartierf5997b42014-06-20 10:37:54 -07001079 TimingLogger::ScopedTiming t("LoadImageClasses", timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001080 // Make a first class to load all classes explicitly listed in the file
1081 Thread* self = Thread::Current();
1082 ScopedObjectAccess soa(self);
1083 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Vladimir Marko2afaff72018-11-30 17:01:50 +00001084 CHECK(image_classes != nullptr);
1085 for (auto it = image_classes->begin(), end = image_classes->end(); it != end;) {
Vladimir Markoe9c36b32013-11-21 15:49:16 +00001086 const std::string& descriptor(*it);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001087 StackHandleScope<1> hs(self);
1088 Handle<mirror::Class> klass(
1089 hs.NewHandle(class_linker->FindSystemClass(self, descriptor.c_str())));
Andreas Gampefa4333d2017-02-14 11:10:34 -08001090 if (klass == nullptr) {
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001091 VLOG(compiler) << "Failed to find class " << descriptor;
Vladimir Marko2afaff72018-11-30 17:01:50 +00001092 it = image_classes->erase(it);
Ian Rogersa436fde2013-08-27 23:34:06 -07001093 self->ClearException();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001094 } else {
1095 ++it;
1096 }
1097 }
1098
1099 // Resolve exception classes referenced by the loaded classes. The catch logic assumes
1100 // exceptions are resolved by the verifier when there is a catch block in an interested method.
1101 // Do this here so that exception classes appear to have been specified image classes.
Andreas Gampea5b09a62016-11-17 15:21:22 -08001102 std::set<std::pair<dex::TypeIndex, const DexFile*>> unresolved_exception_types;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001103 StackHandleScope<1> hs(self);
1104 Handle<mirror::Class> java_lang_Throwable(
1105 hs.NewHandle(class_linker->FindSystemClass(self, "Ljava/lang/Throwable;")));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001106 do {
1107 unresolved_exception_types.clear();
Vladimir Marko8d6768d2017-03-14 10:13:21 +00001108 {
1109 // Thread suspension is not allowed while ResolveCatchBlockExceptionsClassVisitor
1110 // is using a std::vector<ObjPtr<mirror::Class>>.
1111 ScopedAssertNoThreadSuspension ants(__FUNCTION__);
1112 ResolveCatchBlockExceptionsClassVisitor visitor;
1113 class_linker->VisitClasses(&visitor);
1114 visitor.FindExceptionTypesToResolve(&unresolved_exception_types);
1115 }
Andreas Gampea5b09a62016-11-17 15:21:22 -08001116 for (const auto& exception_type : unresolved_exception_types) {
1117 dex::TypeIndex exception_type_idx = exception_type.first;
Mathieu Chartier02e25112013-08-14 16:14:24 -07001118 const DexFile* dex_file = exception_type.second;
Vladimir Marko666ee3d2017-12-11 18:37:36 +00001119 StackHandleScope<1> hs2(self);
Mathieu Chartierf284d442016-06-02 11:48:30 -07001120 Handle<mirror::DexCache> dex_cache(hs2.NewHandle(class_linker->RegisterDexFile(*dex_file,
1121 nullptr)));
Vladimir Marko666ee3d2017-12-11 18:37:36 +00001122 ObjPtr<mirror::Class> klass =
Andreas Gampefa4333d2017-02-14 11:10:34 -08001123 (dex_cache != nullptr)
Vladimir Marko666ee3d2017-12-11 18:37:36 +00001124 ? class_linker->ResolveType(exception_type_idx,
Vladimir Markocd556b02017-02-03 11:47:34 +00001125 dex_cache,
1126 ScopedNullHandle<mirror::ClassLoader>())
Vladimir Marko666ee3d2017-12-11 18:37:36 +00001127 : nullptr;
Andreas Gampefa4333d2017-02-14 11:10:34 -08001128 if (klass == nullptr) {
Andreas Gampe3f1dcd32018-12-28 09:39:56 -08001129 const dex::TypeId& type_id = dex_file->GetTypeId(exception_type_idx);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001130 const char* descriptor = dex_file->GetTypeDescriptor(type_id);
1131 LOG(FATAL) << "Failed to resolve class " << descriptor;
1132 }
Vladimir Marko666ee3d2017-12-11 18:37:36 +00001133 DCHECK(java_lang_Throwable->IsAssignableFrom(klass));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001134 }
1135 // Resolving exceptions may load classes that reference more exceptions, iterate until no
1136 // more are found
1137 } while (!unresolved_exception_types.empty());
1138
1139 // We walk the roots looking for classes so that we'll pick up the
1140 // above classes plus any classes them depend on such super
1141 // classes, interfaces, and the required ClassLinker roots.
Vladimir Marko2afaff72018-11-30 17:01:50 +00001142 RecordImageClassesVisitor visitor(image_classes);
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001143 class_linker->VisitClasses(&visitor);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001144
Vladimir Marko2afaff72018-11-30 17:01:50 +00001145 CHECK(!image_classes->empty());
Brian Carlstrom7940e442013-07-12 13:46:57 -07001146}
1147
Vladimir Marko19a4d372016-12-08 14:41:46 +00001148static void MaybeAddToImageClasses(Thread* self,
1149 ObjPtr<mirror::Class> klass,
Vladimir Marko54159c62018-06-20 14:30:08 +01001150 HashSet<std::string>* image_classes)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001151 REQUIRES_SHARED(Locks::mutator_lock_) {
Vladimir Marko19a4d372016-12-08 14:41:46 +00001152 DCHECK_EQ(self, Thread::Current());
Mathieu Chartierf8322842014-05-16 10:59:25 -07001153 StackHandleScope<1> hs(self);
Ian Rogers1ff3c982014-08-12 02:30:58 -07001154 std::string temp;
Andreas Gampe542451c2016-07-26 09:02:02 -07001155 const PointerSize pointer_size = Runtime::Current()->GetClassLinker()->GetImagePointerSize();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001156 while (!klass->IsObjectClass()) {
Ian Rogers1ff3c982014-08-12 02:30:58 -07001157 const char* descriptor = klass->GetDescriptor(&temp);
Vladimir Marko2ef01102019-02-05 15:05:10 +00001158 if (image_classes->find(std::string_view(descriptor)) != image_classes->end()) {
Vladimir Marko54159c62018-06-20 14:30:08 +01001159 break; // Previously inserted.
Brian Carlstrom7940e442013-07-12 13:46:57 -07001160 }
Vladimir Marko54159c62018-06-20 14:30:08 +01001161 image_classes->insert(descriptor);
Ian Rogers1ff3c982014-08-12 02:30:58 -07001162 VLOG(compiler) << "Adding " << descriptor << " to image classes";
Vladimir Marko19a4d372016-12-08 14:41:46 +00001163 for (size_t i = 0, num_interfaces = klass->NumDirectInterfaces(); i != num_interfaces; ++i) {
1164 ObjPtr<mirror::Class> interface = mirror::Class::GetDirectInterface(self, klass, i);
1165 DCHECK(interface != nullptr);
1166 MaybeAddToImageClasses(self, interface, image_classes);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001167 }
Vladimir Marko19a4d372016-12-08 14:41:46 +00001168 for (auto& m : klass->GetVirtualMethods(pointer_size)) {
1169 MaybeAddToImageClasses(self, m.GetDeclaringClass(), image_classes);
Mathieu Chartiere401d142015-04-22 13:56:20 -07001170 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001171 if (klass->IsArrayClass()) {
Vladimir Marko19a4d372016-12-08 14:41:46 +00001172 MaybeAddToImageClasses(self, klass->GetComponentType(), image_classes);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001173 }
Andreas Gampe98104992018-10-16 12:49:47 -07001174 klass = klass->GetSuperClass();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001175 }
1176}
1177
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001178// Keeps all the data for the update together. Also doubles as the reference visitor.
1179// Note: we can use object pointers because we suspend all threads.
1180class ClinitImageUpdate {
1181 public:
Mathieu Chartier31e88222016-10-14 18:43:19 -07001182 static ClinitImageUpdate* Create(VariableSizedHandleScope& hs,
Vladimir Marko54159c62018-06-20 14:30:08 +01001183 HashSet<std::string>* image_class_descriptors,
Mathieu Chartier31e88222016-10-14 18:43:19 -07001184 Thread* self,
1185 ClassLinker* linker) {
1186 std::unique_ptr<ClinitImageUpdate> res(new ClinitImageUpdate(hs,
1187 image_class_descriptors,
1188 self,
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001189 linker));
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001190 return res.release();
1191 }
1192
1193 ~ClinitImageUpdate() {
1194 // Allow others to suspend again.
1195 self_->EndAssertNoThreadSuspension(old_cause_);
1196 }
1197
1198 // Visitor for VisitReferences.
Mathieu Chartier31e88222016-10-14 18:43:19 -07001199 void operator()(ObjPtr<mirror::Object> object,
1200 MemberOffset field_offset,
Andreas Gampe3db70682018-12-26 15:12:03 -08001201 bool is_static ATTRIBUTE_UNUSED) const
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001202 REQUIRES_SHARED(Locks::mutator_lock_) {
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001203 mirror::Object* ref = object->GetFieldObject<mirror::Object>(field_offset);
1204 if (ref != nullptr) {
1205 VisitClinitClassesObject(ref);
1206 }
1207 }
1208
Roland Levillain5e8d5f02016-10-18 18:03:43 +01001209 // java.lang.ref.Reference visitor for VisitReferences.
Mathieu Chartier31e88222016-10-14 18:43:19 -07001210 void operator()(ObjPtr<mirror::Class> klass ATTRIBUTE_UNUSED,
1211 ObjPtr<mirror::Reference> ref ATTRIBUTE_UNUSED) const {}
Mathieu Chartierda7c6502015-07-23 16:01:26 -07001212
1213 // Ignore class native roots.
1214 void VisitRootIfNonNull(mirror::CompressedReference<mirror::Object>* root ATTRIBUTE_UNUSED)
1215 const {}
1216 void VisitRoot(mirror::CompressedReference<mirror::Object>* root ATTRIBUTE_UNUSED) const {}
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001217
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001218 void Walk() REQUIRES_SHARED(Locks::mutator_lock_) {
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001219 // Use the initial classes as roots for a search.
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001220 for (Handle<mirror::Class> klass_root : image_classes_) {
1221 VisitClinitClassesObject(klass_root.Get());
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001222 }
Vladimir Marko19a4d372016-12-08 14:41:46 +00001223 Thread* self = Thread::Current();
1224 ScopedAssertNoThreadSuspension ants(__FUNCTION__);
Mathieu Chartier31e88222016-10-14 18:43:19 -07001225 for (Handle<mirror::Class> h_klass : to_insert_) {
Vladimir Marko19a4d372016-12-08 14:41:46 +00001226 MaybeAddToImageClasses(self, h_klass.Get(), image_class_descriptors_);
Mathieu Chartier31e88222016-10-14 18:43:19 -07001227 }
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001228 }
1229
1230 private:
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001231 class FindImageClassesVisitor : public ClassVisitor {
1232 public:
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001233 explicit FindImageClassesVisitor(VariableSizedHandleScope& hs,
1234 ClinitImageUpdate* data)
1235 : data_(data),
1236 hs_(hs) {}
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001237
Roland Levillainbbc6e7e2018-08-24 16:58:47 +01001238 bool operator()(ObjPtr<mirror::Class> klass) override REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001239 std::string temp;
Vladimir Marko2ef01102019-02-05 15:05:10 +00001240 std::string_view name(klass->GetDescriptor(&temp));
Vladimir Marko29a533e2018-10-23 12:42:00 +01001241 auto it = data_->image_class_descriptors_->find(name);
1242 if (it != data_->image_class_descriptors_->end()) {
1243 if (LIKELY(klass->IsResolved())) {
1244 data_->image_classes_.push_back(hs_.NewHandle(klass));
1245 } else {
1246 DCHECK(klass->IsErroneousUnresolved());
1247 VLOG(compiler) << "Removing unresolved class from image classes: " << name;
1248 data_->image_class_descriptors_->erase(it);
1249 }
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001250 } else {
1251 // Check whether it is initialized and has a clinit. They must be kept, too.
1252 if (klass->IsInitialized() && klass->FindClassInitializer(
1253 Runtime::Current()->GetClassLinker()->GetImagePointerSize()) != nullptr) {
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001254 data_->image_classes_.push_back(hs_.NewHandle(klass));
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001255 }
1256 }
1257 return true;
1258 }
1259
1260 private:
1261 ClinitImageUpdate* const data_;
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001262 VariableSizedHandleScope& hs_;
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001263 };
1264
Mathieu Chartier31e88222016-10-14 18:43:19 -07001265 ClinitImageUpdate(VariableSizedHandleScope& hs,
Vladimir Marko54159c62018-06-20 14:30:08 +01001266 HashSet<std::string>* image_class_descriptors,
Mathieu Chartier31e88222016-10-14 18:43:19 -07001267 Thread* self,
1268 ClassLinker* linker) REQUIRES_SHARED(Locks::mutator_lock_)
1269 : hs_(hs),
1270 image_class_descriptors_(image_class_descriptors),
1271 self_(self) {
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001272 CHECK(linker != nullptr);
1273 CHECK(image_class_descriptors != nullptr);
1274
1275 // Make sure nobody interferes with us.
1276 old_cause_ = self->StartAssertNoThreadSuspension("Boot image closure");
1277
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001278 // Find all the already-marked classes.
1279 WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001280 FindImageClassesVisitor visitor(hs_, this);
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001281 linker->VisitClasses(&visitor);
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001282 }
1283
1284 void VisitClinitClassesObject(mirror::Object* object) const
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001285 REQUIRES_SHARED(Locks::mutator_lock_) {
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001286 DCHECK(object != nullptr);
1287 if (marked_objects_.find(object) != marked_objects_.end()) {
1288 // Already processed.
1289 return;
1290 }
1291
1292 // Mark it.
1293 marked_objects_.insert(object);
1294
1295 if (object->IsClass()) {
Mathieu Chartier31e88222016-10-14 18:43:19 -07001296 // Add to the TODO list since MaybeAddToImageClasses may cause thread suspension. Thread
1297 // suspensionb is not safe to do in VisitObjects or VisitReferences.
1298 to_insert_.push_back(hs_.NewHandle(object->AsClass()));
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001299 } else {
1300 // Else visit the object's class.
1301 VisitClinitClassesObject(object->GetClass());
1302 }
1303
Mathieu Chartiere401d142015-04-22 13:56:20 -07001304 // If it is not a DexCache, visit all references.
Mathieu Chartier31e88222016-10-14 18:43:19 -07001305 if (!object->IsDexCache()) {
Mathieu Chartier059ef3d2015-08-18 13:54:21 -07001306 object->VisitReferences(*this, *this);
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001307 }
1308 }
1309
Mathieu Chartier31e88222016-10-14 18:43:19 -07001310 VariableSizedHandleScope& hs_;
1311 mutable std::vector<Handle<mirror::Class>> to_insert_;
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001312 mutable std::unordered_set<mirror::Object*> marked_objects_;
Vladimir Marko54159c62018-06-20 14:30:08 +01001313 HashSet<std::string>* const image_class_descriptors_;
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001314 std::vector<Handle<mirror::Class>> image_classes_;
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001315 Thread* const self_;
1316 const char* old_cause_;
1317
1318 DISALLOW_COPY_AND_ASSIGN(ClinitImageUpdate);
1319};
Brian Carlstrom7940e442013-07-12 13:46:57 -07001320
Vladimir Marko2afaff72018-11-30 17:01:50 +00001321void CompilerDriver::UpdateImageClasses(TimingLogger* timings,
1322 /*inout*/ HashSet<std::string>* image_classes) {
Vladimir Markoaad75c62016-10-03 08:46:48 +00001323 if (GetCompilerOptions().IsBootImage()) {
Mathieu Chartierf5997b42014-06-20 10:37:54 -07001324 TimingLogger::ScopedTiming t("UpdateImageClasses", timings);
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001325
Mathieu Chartier4f55e222015-09-04 13:26:21 -07001326 Runtime* runtime = Runtime::Current();
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001327
1328 // Suspend all threads.
Mathieu Chartier4f55e222015-09-04 13:26:21 -07001329 ScopedSuspendAll ssa(__FUNCTION__);
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001330
Mathieu Chartier31e88222016-10-14 18:43:19 -07001331 VariableSizedHandleScope hs(Thread::Current());
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001332 std::string error_msg;
Mathieu Chartier31e88222016-10-14 18:43:19 -07001333 std::unique_ptr<ClinitImageUpdate> update(ClinitImageUpdate::Create(hs,
Vladimir Marko2afaff72018-11-30 17:01:50 +00001334 image_classes,
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001335 Thread::Current(),
Mathieu Chartier31e88222016-10-14 18:43:19 -07001336 runtime->GetClassLinker()));
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001337
1338 // Do the marking.
1339 update->Walk();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001340 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001341}
1342
Vladimir Markobe0e5462014-02-26 11:24:15 +00001343void CompilerDriver::ProcessedInstanceField(bool resolved) {
1344 if (!resolved) {
1345 stats_->UnresolvedInstanceField();
1346 } else {
1347 stats_->ResolvedInstanceField();
1348 }
1349}
1350
1351void CompilerDriver::ProcessedStaticField(bool resolved, bool local) {
1352 if (!resolved) {
1353 stats_->UnresolvedStaticField();
1354 } else if (local) {
1355 stats_->ResolvedLocalStaticField();
1356 } else {
1357 stats_->ResolvedStaticField();
1358 }
1359}
1360
Mathieu Chartierc7853442015-03-27 14:35:38 -07001361ArtField* CompilerDriver::ComputeInstanceFieldInfo(uint32_t field_idx,
Vladimir Markoe11dd502017-12-08 14:09:45 +00001362 const DexCompilationUnit* mUnit,
1363 bool is_put,
Mathieu Chartierc7853442015-03-27 14:35:38 -07001364 const ScopedObjectAccess& soa) {
Vladimir Markobe0e5462014-02-26 11:24:15 +00001365 // Try to resolve the field and compiling method's class.
Mathieu Chartierc7853442015-03-27 14:35:38 -07001366 ArtField* resolved_field;
Vladimir Marko28e012a2017-12-07 11:22:59 +00001367 ObjPtr<mirror::Class> referrer_class;
Mathieu Chartier736b5602015-09-02 14:54:11 -07001368 Handle<mirror::DexCache> dex_cache(mUnit->GetDexCache());
Vladimir Markobe0e5462014-02-26 11:24:15 +00001369 {
Vladimir Markoe11dd502017-12-08 14:09:45 +00001370 Handle<mirror::ClassLoader> class_loader = mUnit->GetClassLoader();
Andreas Gampe3db70682018-12-26 15:12:03 -08001371 resolved_field = ResolveField(soa, dex_cache, class_loader, field_idx, /* is_static= */ false);
Mathieu Chartierc7853442015-03-27 14:35:38 -07001372 referrer_class = resolved_field != nullptr
Vladimir Markoe11dd502017-12-08 14:09:45 +00001373 ? ResolveCompilingMethodsClass(soa, dex_cache, class_loader, mUnit) : nullptr;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001374 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001375 bool can_link = false;
Vladimir Markobe0e5462014-02-26 11:24:15 +00001376 if (resolved_field != nullptr && referrer_class != nullptr) {
Vladimir Markobe0e5462014-02-26 11:24:15 +00001377 std::pair<bool, bool> fast_path = IsFastInstanceField(
Mathieu Chartier736b5602015-09-02 14:54:11 -07001378 dex_cache.Get(), referrer_class, resolved_field, field_idx);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001379 can_link = is_put ? fast_path.second : fast_path.first;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001380 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001381 ProcessedInstanceField(can_link);
1382 return can_link ? resolved_field : nullptr;
1383}
1384
1385bool CompilerDriver::ComputeInstanceFieldInfo(uint32_t field_idx, const DexCompilationUnit* mUnit,
1386 bool is_put, MemberOffset* field_offset,
1387 bool* is_volatile) {
1388 ScopedObjectAccess soa(Thread::Current());
Mathieu Chartierc7853442015-03-27 14:35:38 -07001389 ArtField* resolved_field = ComputeInstanceFieldInfo(field_idx, mUnit, is_put, soa);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001390
Mathieu Chartierc7853442015-03-27 14:35:38 -07001391 if (resolved_field == nullptr) {
Vladimir Markobe0e5462014-02-26 11:24:15 +00001392 // Conservative defaults.
1393 *is_volatile = true;
1394 *field_offset = MemberOffset(static_cast<size_t>(-1));
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001395 return false;
1396 } else {
1397 *is_volatile = resolved_field->IsVolatile();
1398 *field_offset = resolved_field->GetOffset();
1399 return true;
Vladimir Markobe0e5462014-02-26 11:24:15 +00001400 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001401}
1402
Vladimir Marko2730db02014-01-27 11:15:17 +00001403bool CompilerDriver::IsSafeCast(const DexCompilationUnit* mUnit, uint32_t dex_pc) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001404 if (!compiler_options_->IsVerificationEnabled()) {
1405 // If we didn't verify, every cast has to be treated as non-safe.
1406 return false;
1407 }
Vladimir Marko2730db02014-01-27 11:15:17 +00001408 DCHECK(mUnit->GetVerifiedMethod() != nullptr);
1409 bool result = mUnit->GetVerifiedMethod()->IsSafeCast(dex_pc);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001410 if (result) {
1411 stats_->SafeCast();
1412 } else {
1413 stats_->NotASafeCast();
1414 }
1415 return result;
1416}
1417
Mathieu Chartier90443472015-07-16 20:32:27 -07001418class CompilationVisitor {
1419 public:
1420 virtual ~CompilationVisitor() {}
1421 virtual void Visit(size_t index) = 0;
1422};
1423
Brian Carlstrom7940e442013-07-12 13:46:57 -07001424class ParallelCompilationManager {
1425 public:
Brian Carlstrom7940e442013-07-12 13:46:57 -07001426 ParallelCompilationManager(ClassLinker* class_linker,
1427 jobject class_loader,
1428 CompilerDriver* compiler,
1429 const DexFile* dex_file,
Andreas Gampede7b4362014-07-28 18:38:57 -07001430 const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -08001431 ThreadPool* thread_pool)
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001432 : index_(0),
1433 class_linker_(class_linker),
Brian Carlstrom7940e442013-07-12 13:46:57 -07001434 class_loader_(class_loader),
1435 compiler_(compiler),
1436 dex_file_(dex_file),
Andreas Gampede7b4362014-07-28 18:38:57 -07001437 dex_files_(dex_files),
Ian Rogers3d504072014-03-01 09:16:49 -08001438 thread_pool_(thread_pool) {}
Brian Carlstrom7940e442013-07-12 13:46:57 -07001439
1440 ClassLinker* GetClassLinker() const {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001441 CHECK(class_linker_ != nullptr);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001442 return class_linker_;
1443 }
1444
1445 jobject GetClassLoader() const {
1446 return class_loader_;
1447 }
1448
1449 CompilerDriver* GetCompiler() const {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001450 CHECK(compiler_ != nullptr);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001451 return compiler_;
1452 }
1453
1454 const DexFile* GetDexFile() const {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001455 CHECK(dex_file_ != nullptr);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001456 return dex_file_;
1457 }
1458
Andreas Gampede7b4362014-07-28 18:38:57 -07001459 const std::vector<const DexFile*>& GetDexFiles() const {
1460 return dex_files_;
1461 }
1462
Mathieu Chartier90443472015-07-16 20:32:27 -07001463 void ForAll(size_t begin, size_t end, CompilationVisitor* visitor, size_t work_units)
1464 REQUIRES(!*Locks::mutator_lock_) {
Andreas Gampe3c060ad2018-01-22 13:07:49 -08001465 ForAllLambda(begin, end, [visitor](size_t index) { visitor->Visit(index); }, work_units);
1466 }
1467
1468 template <typename Fn>
1469 void ForAllLambda(size_t begin, size_t end, Fn fn, size_t work_units)
1470 REQUIRES(!*Locks::mutator_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001471 Thread* self = Thread::Current();
1472 self->AssertNoPendingException();
1473 CHECK_GT(work_units, 0U);
1474
Orion Hodson88591fe2018-03-06 13:35:43 +00001475 index_.store(begin, std::memory_order_relaxed);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001476 for (size_t i = 0; i < work_units; ++i) {
Andreas Gampe3c060ad2018-01-22 13:07:49 -08001477 thread_pool_->AddTask(self, new ForAllClosureLambda<Fn>(this, end, fn));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001478 }
1479 thread_pool_->StartWorkers(self);
1480
1481 // Ensure we're suspended while we're blocked waiting for the other threads to finish (worker
1482 // thread destructor's called below perform join).
1483 CHECK_NE(self->GetState(), kRunnable);
1484
1485 // Wait for all the worker threads to finish.
1486 thread_pool_->Wait(self, true, false);
Andreas Gampeace0dc12016-01-20 13:33:13 -08001487
1488 // And stop the workers accepting jobs.
1489 thread_pool_->StopWorkers(self);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001490 }
1491
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001492 size_t NextIndex() {
Orion Hodson88591fe2018-03-06 13:35:43 +00001493 return index_.fetch_add(1, std::memory_order_seq_cst);
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001494 }
1495
Brian Carlstrom7940e442013-07-12 13:46:57 -07001496 private:
Andreas Gampe3c060ad2018-01-22 13:07:49 -08001497 template <typename Fn>
1498 class ForAllClosureLambda : public Task {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001499 public:
Andreas Gampe3c060ad2018-01-22 13:07:49 -08001500 ForAllClosureLambda(ParallelCompilationManager* manager, size_t end, Fn fn)
Brian Carlstrom7940e442013-07-12 13:46:57 -07001501 : manager_(manager),
Brian Carlstrom7940e442013-07-12 13:46:57 -07001502 end_(end),
Andreas Gampe3c060ad2018-01-22 13:07:49 -08001503 fn_(fn) {}
Brian Carlstrom7940e442013-07-12 13:46:57 -07001504
Roland Levillainbbc6e7e2018-08-24 16:58:47 +01001505 void Run(Thread* self) override {
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001506 while (true) {
1507 const size_t index = manager_->NextIndex();
1508 if (UNLIKELY(index >= end_)) {
1509 break;
1510 }
Andreas Gampe3c060ad2018-01-22 13:07:49 -08001511 fn_(index);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001512 self->AssertNoPendingException();
1513 }
1514 }
1515
Roland Levillainbbc6e7e2018-08-24 16:58:47 +01001516 void Finalize() override {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001517 delete this;
1518 }
Brian Carlstrom0cd7ec22013-07-17 23:40:20 -07001519
Brian Carlstrom7940e442013-07-12 13:46:57 -07001520 private:
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001521 ParallelCompilationManager* const manager_;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001522 const size_t end_;
Andreas Gampe3c060ad2018-01-22 13:07:49 -08001523 Fn fn_;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001524 };
1525
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001526 AtomicInteger index_;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001527 ClassLinker* const class_linker_;
1528 const jobject class_loader_;
1529 CompilerDriver* const compiler_;
1530 const DexFile* const dex_file_;
Andreas Gampede7b4362014-07-28 18:38:57 -07001531 const std::vector<const DexFile*>& dex_files_;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001532 ThreadPool* const thread_pool_;
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001533
1534 DISALLOW_COPY_AND_ASSIGN(ParallelCompilationManager);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001535};
1536
Jeff Hao0e49b422013-11-08 12:16:56 -08001537// A fast version of SkipClass above if the class pointer is available
1538// that avoids the expensive FindInClassPath search.
Vladimir Marko28e012a2017-12-07 11:22:59 +00001539static bool SkipClass(jobject class_loader, const DexFile& dex_file, ObjPtr<mirror::Class> klass)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001540 REQUIRES_SHARED(Locks::mutator_lock_) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001541 DCHECK(klass != nullptr);
Jeff Hao0e49b422013-11-08 12:16:56 -08001542 const DexFile& original_dex_file = *klass->GetDexCache()->GetDexFile();
1543 if (&dex_file != &original_dex_file) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001544 if (class_loader == nullptr) {
David Sehr709b0702016-10-13 09:12:37 -07001545 LOG(WARNING) << "Skipping class " << klass->PrettyDescriptor() << " from "
Jeff Hao0e49b422013-11-08 12:16:56 -08001546 << dex_file.GetLocation() << " previously found in "
1547 << original_dex_file.GetLocation();
1548 }
1549 return true;
1550 }
1551 return false;
1552}
1553
Mathieu Chartier70b63482014-06-27 17:19:04 -07001554static void CheckAndClearResolveException(Thread* self)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001555 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartier70b63482014-06-27 17:19:04 -07001556 CHECK(self->IsExceptionPending());
Nicolas Geoffray14691c52015-03-05 10:40:17 +00001557 mirror::Throwable* exception = self->GetException();
Ian Rogers1ff3c982014-08-12 02:30:58 -07001558 std::string temp;
1559 const char* descriptor = exception->GetClass()->GetDescriptor(&temp);
1560 const char* expected_exceptions[] = {
1561 "Ljava/lang/IllegalAccessError;",
1562 "Ljava/lang/IncompatibleClassChangeError;",
1563 "Ljava/lang/InstantiationError;",
Brian Carlstrom898fcb52014-08-25 23:07:30 -07001564 "Ljava/lang/LinkageError;",
Ian Rogers1ff3c982014-08-12 02:30:58 -07001565 "Ljava/lang/NoClassDefFoundError;",
1566 "Ljava/lang/NoSuchFieldError;",
1567 "Ljava/lang/NoSuchMethodError;"
1568 };
1569 bool found = false;
1570 for (size_t i = 0; (found == false) && (i < arraysize(expected_exceptions)); ++i) {
1571 if (strcmp(descriptor, expected_exceptions[i]) == 0) {
1572 found = true;
1573 }
1574 }
1575 if (!found) {
Brian Carlstrom898fcb52014-08-25 23:07:30 -07001576 LOG(FATAL) << "Unexpected exception " << exception->Dump();
Mathieu Chartier70b63482014-06-27 17:19:04 -07001577 }
1578 self->ClearException();
1579}
1580
Mathieu Chartier90443472015-07-16 20:32:27 -07001581class ResolveClassFieldsAndMethodsVisitor : public CompilationVisitor {
1582 public:
1583 explicit ResolveClassFieldsAndMethodsVisitor(const ParallelCompilationManager* manager)
1584 : manager_(manager) {}
Brian Carlstrom7940e442013-07-12 13:46:57 -07001585
Roland Levillainbbc6e7e2018-08-24 16:58:47 +01001586 void Visit(size_t class_def_index) override REQUIRES(!Locks::mutator_lock_) {
Andreas Gampe9b827ab2017-12-07 19:32:48 -08001587 ScopedTrace trace(__FUNCTION__);
Mathieu Chartier90443472015-07-16 20:32:27 -07001588 Thread* const self = Thread::Current();
1589 jobject jclass_loader = manager_->GetClassLoader();
1590 const DexFile& dex_file = *manager_->GetDexFile();
1591 ClassLinker* class_linker = manager_->GetClassLinker();
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001592
Mathieu Chartier90443472015-07-16 20:32:27 -07001593 // Method and Field are the worst. We can't resolve without either
1594 // context from the code use (to disambiguate virtual vs direct
1595 // method and instance vs static field) or from class
1596 // definitions. While the compiler will resolve what it can as it
1597 // needs it, here we try to resolve fields and methods used in class
1598 // definitions, since many of them many never be referenced by
1599 // generated code.
Andreas Gampe3f1dcd32018-12-28 09:39:56 -08001600 const dex::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
Mathieu Chartier90443472015-07-16 20:32:27 -07001601 ScopedObjectAccess soa(self);
1602 StackHandleScope<2> hs(soa.Self());
1603 Handle<mirror::ClassLoader> class_loader(
Mathieu Chartier0795f232016-09-27 18:43:30 -07001604 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader)));
Mathieu Chartier673ed3d2015-08-28 14:56:43 -07001605 Handle<mirror::DexCache> dex_cache(hs.NewHandle(class_linker->FindDexCache(
Vladimir Markocd556b02017-02-03 11:47:34 +00001606 soa.Self(), dex_file)));
Mathieu Chartier90443472015-07-16 20:32:27 -07001607 // Resolve the class.
Vladimir Marko28e012a2017-12-07 11:22:59 +00001608 ObjPtr<mirror::Class> klass =
Vladimir Marko666ee3d2017-12-11 18:37:36 +00001609 class_linker->ResolveType(class_def.class_idx_, dex_cache, class_loader);
Mathieu Chartier90443472015-07-16 20:32:27 -07001610 bool resolve_fields_and_methods;
1611 if (klass == nullptr) {
1612 // Class couldn't be resolved, for example, super-class is in a different dex file. Don't
1613 // attempt to resolve methods and fields when there is no declaring class.
1614 CheckAndClearResolveException(soa.Self());
1615 resolve_fields_and_methods = false;
1616 } else {
1617 // We successfully resolved a class, should we skip it?
1618 if (SkipClass(jclass_loader, dex_file, klass)) {
1619 return;
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001620 }
Mathieu Chartier90443472015-07-16 20:32:27 -07001621 // We want to resolve the methods and fields eagerly.
1622 resolve_fields_and_methods = true;
Ian Rogers68b56852014-08-29 20:19:11 -07001623 }
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001624
Vladimir Markoc1c34522018-10-31 13:56:49 +00001625 if (resolve_fields_and_methods) {
1626 ClassAccessor accessor(dex_file, class_def_index);
1627 // Optionally resolve fields and methods and figure out if we need a constructor barrier.
1628 auto method_visitor = [&](const ClassAccessor::Method& method)
1629 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001630 ArtMethod* resolved = class_linker->ResolveMethod<ClassLinker::ResolveMode::kNoChecks>(
1631 method.GetIndex(),
1632 dex_cache,
1633 class_loader,
Vladimir Markoc1c34522018-10-31 13:56:49 +00001634 /*referrer=*/ nullptr,
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001635 method.GetInvokeType(class_def.access_flags_));
1636 if (resolved == nullptr) {
1637 CheckAndClearResolveException(soa.Self());
Mathieu Chartier90443472015-07-16 20:32:27 -07001638 }
Vladimir Markoc1c34522018-10-31 13:56:49 +00001639 };
1640 accessor.VisitFieldsAndMethods(
1641 // static fields
1642 [&](ClassAccessor::Field& field) REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001643 ArtField* resolved = class_linker->ResolveField(
Vladimir Markoc1c34522018-10-31 13:56:49 +00001644 field.GetIndex(), dex_cache, class_loader, /*is_static=*/ true);
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001645 if (resolved == nullptr) {
1646 CheckAndClearResolveException(soa.Self());
1647 }
Vladimir Markoc1c34522018-10-31 13:56:49 +00001648 },
1649 // instance fields
1650 [&](ClassAccessor::Field& field) REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001651 ArtField* resolved = class_linker->ResolveField(
Vladimir Markoc1c34522018-10-31 13:56:49 +00001652 field.GetIndex(), dex_cache, class_loader, /*is_static=*/ false);
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001653 if (resolved == nullptr) {
1654 CheckAndClearResolveException(soa.Self());
1655 }
Vladimir Markoc1c34522018-10-31 13:56:49 +00001656 },
1657 /*direct_method_visitor=*/ method_visitor,
1658 /*virtual_method_visitor=*/ method_visitor);
1659 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001660 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001661
Mathieu Chartier90443472015-07-16 20:32:27 -07001662 private:
1663 const ParallelCompilationManager* const manager_;
1664};
1665
1666class ResolveTypeVisitor : public CompilationVisitor {
1667 public:
1668 explicit ResolveTypeVisitor(const ParallelCompilationManager* manager) : manager_(manager) {
1669 }
Roland Levillainbbc6e7e2018-08-24 16:58:47 +01001670 void Visit(size_t type_idx) override REQUIRES(!Locks::mutator_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001671 // Class derived values are more complicated, they require the linker and loader.
Mathieu Chartier90443472015-07-16 20:32:27 -07001672 ScopedObjectAccess soa(Thread::Current());
1673 ClassLinker* class_linker = manager_->GetClassLinker();
1674 const DexFile& dex_file = *manager_->GetDexFile();
1675 StackHandleScope<2> hs(soa.Self());
Mathieu Chartier90443472015-07-16 20:32:27 -07001676 Handle<mirror::ClassLoader> class_loader(
Mathieu Chartier0795f232016-09-27 18:43:30 -07001677 hs.NewHandle(soa.Decode<mirror::ClassLoader>(manager_->GetClassLoader())));
Mathieu Chartierd57d4542015-10-14 10:55:30 -07001678 Handle<mirror::DexCache> dex_cache(hs.NewHandle(class_linker->RegisterDexFile(
1679 dex_file,
Mathieu Chartierf284d442016-06-02 11:48:30 -07001680 class_loader.Get())));
Andreas Gampefa4333d2017-02-14 11:10:34 -08001681 ObjPtr<mirror::Class> klass = (dex_cache != nullptr)
Vladimir Marko666ee3d2017-12-11 18:37:36 +00001682 ? class_linker->ResolveType(dex::TypeIndex(type_idx), dex_cache, class_loader)
Vladimir Markocd556b02017-02-03 11:47:34 +00001683 : nullptr;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001684
Mathieu Chartier90443472015-07-16 20:32:27 -07001685 if (klass == nullptr) {
1686 soa.Self()->AssertPendingException();
1687 mirror::Throwable* exception = soa.Self()->GetException();
1688 VLOG(compiler) << "Exception during type resolution: " << exception->Dump();
1689 if (exception->GetClass()->DescriptorEquals("Ljava/lang/OutOfMemoryError;")) {
1690 // There's little point continuing compilation if the heap is exhausted.
1691 LOG(FATAL) << "Out of memory during type resolution for compilation";
1692 }
1693 soa.Self()->ClearException();
Ian Rogersa436fde2013-08-27 23:34:06 -07001694 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001695 }
Mathieu Chartier90443472015-07-16 20:32:27 -07001696
1697 private:
1698 const ParallelCompilationManager* const manager_;
1699};
Brian Carlstrom7940e442013-07-12 13:46:57 -07001700
Andreas Gampeace0dc12016-01-20 13:33:13 -08001701void CompilerDriver::ResolveDexFile(jobject class_loader,
1702 const DexFile& dex_file,
Andreas Gampede7b4362014-07-28 18:38:57 -07001703 const std::vector<const DexFile*>& dex_files,
Andreas Gampeace0dc12016-01-20 13:33:13 -08001704 ThreadPool* thread_pool,
1705 size_t thread_count,
1706 TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001707 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
1708
1709 // TODO: we could resolve strings here, although the string table is largely filled with class
1710 // and method names.
1711
Andreas Gampede7b4362014-07-28 18:38:57 -07001712 ParallelCompilationManager context(class_linker, class_loader, this, &dex_file, dex_files,
1713 thread_pool);
Vladimir Markoaad75c62016-10-03 08:46:48 +00001714 if (GetCompilerOptions().IsBootImage()) {
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001715 // For images we resolve all types, such as array, whereas for applications just those with
1716 // classdefs are resolved by ResolveClassFieldsAndMethods.
Mathieu Chartierf5997b42014-06-20 10:37:54 -07001717 TimingLogger::ScopedTiming t("Resolve Types", timings);
Mathieu Chartier90443472015-07-16 20:32:27 -07001718 ResolveTypeVisitor visitor(&context);
Andreas Gampeace0dc12016-01-20 13:33:13 -08001719 context.ForAll(0, dex_file.NumTypeIds(), &visitor, thread_count);
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001720 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001721
Mathieu Chartierf5997b42014-06-20 10:37:54 -07001722 TimingLogger::ScopedTiming t("Resolve MethodsAndFields", timings);
Mathieu Chartier90443472015-07-16 20:32:27 -07001723 ResolveClassFieldsAndMethodsVisitor visitor(&context);
Andreas Gampeace0dc12016-01-20 13:33:13 -08001724 context.ForAll(0, dex_file.NumClassDefs(), &visitor, thread_count);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001725}
1726
Andreas Gampeace0dc12016-01-20 13:33:13 -08001727void CompilerDriver::SetVerified(jobject class_loader,
1728 const std::vector<const DexFile*>& dex_files,
1729 TimingLogger* timings) {
1730 // This can be run in parallel.
Mathieu Chartier90443472015-07-16 20:32:27 -07001731 for (const DexFile* dex_file : dex_files) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001732 CHECK(dex_file != nullptr);
Andreas Gampeace0dc12016-01-20 13:33:13 -08001733 SetVerifiedDexFile(class_loader,
1734 *dex_file,
1735 dex_files,
1736 parallel_thread_pool_.get(),
1737 parallel_thread_count_,
1738 timings);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001739 }
1740}
1741
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001742static void LoadAndUpdateStatus(const ClassAccessor& accessor,
Vladimir Marko2c64a832018-01-04 11:31:56 +00001743 ClassStatus status,
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001744 Handle<mirror::ClassLoader> class_loader,
1745 Thread* self)
1746 REQUIRES_SHARED(Locks::mutator_lock_) {
1747 StackHandleScope<1> hs(self);
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001748 const char* descriptor = accessor.GetDescriptor();
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001749 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
1750 Handle<mirror::Class> cls(hs.NewHandle<mirror::Class>(
1751 class_linker->FindClass(self, descriptor, class_loader)));
Andreas Gampefa4333d2017-02-14 11:10:34 -08001752 if (cls != nullptr) {
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001753 // Check that the class is resolved with the current dex file. We might get
1754 // a boot image class, or a class in a different dex file for multidex, and
1755 // we should not update the status in that case.
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001756 if (&cls->GetDexFile() == &accessor.GetDexFile()) {
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001757 ObjectLock<mirror::Class> lock(self, cls);
1758 mirror::Class::SetStatus(cls, status, self);
Andreas Gampe5b20b352018-10-11 19:03:20 -07001759 if (status >= ClassStatus::kVerified) {
1760 cls->SetVerificationAttempted();
1761 }
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001762 }
1763 } else {
1764 DCHECK(self->IsExceptionPending());
1765 self->ClearException();
1766 }
1767}
1768
Nicolas Geoffray74981052017-01-16 17:54:09 +00001769bool CompilerDriver::FastVerify(jobject jclass_loader,
1770 const std::vector<const DexFile*>& dex_files,
Vladimir Marko2afaff72018-11-30 17:01:50 +00001771 TimingLogger* timings,
1772 /*out*/ VerificationResults* verification_results) {
Nicolas Geoffrayb0bbe8e2016-11-19 10:42:37 +00001773 verifier::VerifierDeps* verifier_deps =
1774 Runtime::Current()->GetCompilerCallbacks()->GetVerifierDeps();
Mathieu Chartier72041a02017-07-14 18:23:25 -07001775 // If there exist VerifierDeps that aren't the ones we just created to output, use them to verify.
1776 if (verifier_deps == nullptr || verifier_deps->OutputOnly()) {
Nicolas Geoffray74981052017-01-16 17:54:09 +00001777 return false;
1778 }
1779 TimingLogger::ScopedTiming t("Fast Verify", timings);
Calin Juravle5ffefaa2019-01-25 01:04:54 -08001780
Nicolas Geoffray74981052017-01-16 17:54:09 +00001781 ScopedObjectAccess soa(Thread::Current());
1782 StackHandleScope<2> hs(soa.Self());
1783 Handle<mirror::ClassLoader> class_loader(
1784 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader)));
David Brazdil8fd67222019-02-05 18:13:44 +00001785 std::string error_msg;
1786
1787 if (!verifier_deps->ValidateDependencies(class_loader, soa.Self(), &error_msg)) {
1788 LOG(WARNING) << "Fast verification failed: " << error_msg;
Nicolas Geoffray74981052017-01-16 17:54:09 +00001789 return false;
1790 }
1791
Nicolas Geoffray49cda062017-04-21 13:08:25 +01001792 bool compiler_only_verifies = !GetCompilerOptions().IsAnyCompilationEnabled();
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001793
Nicolas Geoffray74981052017-01-16 17:54:09 +00001794 // We successfully validated the dependencies, now update class status
1795 // of verified classes. Note that the dependencies also record which classes
1796 // could not be fully verified; we could try again, but that would hurt verification
1797 // time. So instead we assume these classes still need to be verified at
1798 // runtime.
1799 for (const DexFile* dex_file : dex_files) {
Mathieu Chartierbf755fe2017-08-01 13:42:56 -07001800 // Fetch the list of unverified classes.
1801 const std::set<dex::TypeIndex>& unverified_classes =
Nicolas Geoffray74981052017-01-16 17:54:09 +00001802 verifier_deps->GetUnverifiedClasses(*dex_file);
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001803 for (ClassAccessor accessor : dex_file->GetClasses()) {
1804 if (unverified_classes.find(accessor.GetClassIdx()) == unverified_classes.end()) {
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001805 if (compiler_only_verifies) {
Nicolas Geoffray74981052017-01-16 17:54:09 +00001806 // Just update the compiled_classes_ map. The compiler doesn't need to resolve
1807 // the type.
Mathieu Chartier18e26872018-06-04 17:19:02 -07001808 ClassReference ref(dex_file, accessor.GetClassDefIndex());
Mathieu Chartier2eabc612018-05-25 14:31:16 -07001809 const ClassStatus existing = ClassStatus::kNotReady;
Mathieu Chartier1a088d42017-07-18 11:43:57 -07001810 ClassStateTable::InsertResult result =
Vladimir Marko2c64a832018-01-04 11:31:56 +00001811 compiled_classes_.Insert(ref, existing, ClassStatus::kVerified);
Mathieu Chartier2eabc612018-05-25 14:31:16 -07001812 CHECK_EQ(result, ClassStateTable::kInsertResultSuccess) << ref.dex_file->GetLocation();
Nicolas Geoffray74981052017-01-16 17:54:09 +00001813 } else {
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001814 // Update the class status, so later compilation stages know they don't need to verify
Nicolas Geoffray74981052017-01-16 17:54:09 +00001815 // the class.
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001816 LoadAndUpdateStatus(accessor, ClassStatus::kVerified, class_loader, soa.Self());
Nicolas Geoffray74981052017-01-16 17:54:09 +00001817 // Create `VerifiedMethod`s for each methods, the compiler expects one for
1818 // quickening or compiling.
1819 // Note that this means:
1820 // - We're only going to compile methods that did verify.
1821 // - Quickening will not do checkcast ellision.
1822 // TODO(ngeoffray): Reconsider this once we refactor compiler filters.
Mathieu Chartier0d896bd2018-05-25 00:20:27 -07001823 for (const ClassAccessor::Method& method : accessor.GetMethods()) {
Vladimir Marko2afaff72018-11-30 17:01:50 +00001824 verification_results->CreateVerifiedMethodFor(method.GetReference());
Mathieu Chartier0d896bd2018-05-25 00:20:27 -07001825 }
Nicolas Geoffray6bb7f1b2016-11-03 10:52:49 +00001826 }
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001827 } else if (!compiler_only_verifies) {
1828 // Make sure later compilation stages know they should not try to verify
1829 // this class again.
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001830 LoadAndUpdateStatus(accessor,
Vladimir Marko2c64a832018-01-04 11:31:56 +00001831 ClassStatus::kRetryVerificationAtRuntime,
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001832 class_loader,
1833 soa.Self());
Nicolas Geoffray6bb7f1b2016-11-03 10:52:49 +00001834 }
Nicolas Geoffray6bb7f1b2016-11-03 10:52:49 +00001835 }
1836 }
Nicolas Geoffray74981052017-01-16 17:54:09 +00001837 return true;
1838}
1839
1840void CompilerDriver::Verify(jobject jclass_loader,
1841 const std::vector<const DexFile*>& dex_files,
Vladimir Marko2afaff72018-11-30 17:01:50 +00001842 TimingLogger* timings,
1843 /*out*/ VerificationResults* verification_results) {
1844 if (FastVerify(jclass_loader, dex_files, timings, verification_results)) {
Nicolas Geoffray74981052017-01-16 17:54:09 +00001845 return;
1846 }
Nicolas Geoffray6bb7f1b2016-11-03 10:52:49 +00001847
Nicolas Geoffrayb0bbe8e2016-11-19 10:42:37 +00001848 // If there is no existing `verifier_deps` (because of non-existing vdex), or
1849 // the existing `verifier_deps` is not valid anymore, create a new one for
Nicolas Geoffray6bb7f1b2016-11-03 10:52:49 +00001850 // non boot image compilation. The verifier will need it to record the new dependencies.
1851 // Then dex2oat can update the vdex file with these new dependencies.
1852 if (!GetCompilerOptions().IsBootImage()) {
Mathieu Chartier72041a02017-07-14 18:23:25 -07001853 // Dex2oat creates the verifier deps.
Nicolas Geoffray340dafa2016-11-18 16:03:10 +00001854 // Create the main VerifierDeps, and set it to this thread.
Mathieu Chartier72041a02017-07-14 18:23:25 -07001855 verifier::VerifierDeps* verifier_deps =
1856 Runtime::Current()->GetCompilerCallbacks()->GetVerifierDeps();
1857 CHECK(verifier_deps != nullptr);
Nicolas Geoffrayb0bbe8e2016-11-19 10:42:37 +00001858 Thread::Current()->SetVerifierDeps(verifier_deps);
Nicolas Geoffray340dafa2016-11-18 16:03:10 +00001859 // Create per-thread VerifierDeps to avoid contention on the main one.
1860 // We will merge them after verification.
1861 for (ThreadPoolWorker* worker : parallel_thread_pool_->GetWorkers()) {
Vladimir Marko213ee2d2018-06-22 11:56:34 +01001862 worker->GetThread()->SetVerifierDeps(
1863 new verifier::VerifierDeps(GetCompilerOptions().GetDexFilesForOatFile()));
Nicolas Geoffray340dafa2016-11-18 16:03:10 +00001864 }
Nicolas Geoffray6bb7f1b2016-11-03 10:52:49 +00001865 }
Nicolas Geoffray74981052017-01-16 17:54:09 +00001866
Nicolas Geoffray46847392017-04-28 14:56:39 +01001867 // Verification updates VerifierDeps and needs to run single-threaded to be deterministic.
1868 bool force_determinism = GetCompilerOptions().IsForceDeterminism();
1869 ThreadPool* verify_thread_pool =
1870 force_determinism ? single_thread_pool_.get() : parallel_thread_pool_.get();
1871 size_t verify_thread_count = force_determinism ? 1U : parallel_thread_count_;
Mathieu Chartier90443472015-07-16 20:32:27 -07001872 for (const DexFile* dex_file : dex_files) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001873 CHECK(dex_file != nullptr);
Nicolas Geoffray6bb7f1b2016-11-03 10:52:49 +00001874 VerifyDexFile(jclass_loader,
Andreas Gampeace0dc12016-01-20 13:33:13 -08001875 *dex_file,
1876 dex_files,
Nicolas Geoffray46847392017-04-28 14:56:39 +01001877 verify_thread_pool,
1878 verify_thread_count,
Andreas Gampeace0dc12016-01-20 13:33:13 -08001879 timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001880 }
Nicolas Geoffray340dafa2016-11-18 16:03:10 +00001881
1882 if (!GetCompilerOptions().IsBootImage()) {
Nicolas Geoffray340dafa2016-11-18 16:03:10 +00001883 // Merge all VerifierDeps into the main one.
Nicolas Geoffray74981052017-01-16 17:54:09 +00001884 verifier::VerifierDeps* verifier_deps = Thread::Current()->GetVerifierDeps();
Nicolas Geoffray340dafa2016-11-18 16:03:10 +00001885 for (ThreadPoolWorker* worker : parallel_thread_pool_->GetWorkers()) {
Vladimir Marko6c702242019-02-07 16:17:33 +00001886 std::unique_ptr<verifier::VerifierDeps> thread_deps(worker->GetThread()->GetVerifierDeps());
1887 worker->GetThread()->SetVerifierDeps(nullptr); // We just took ownership.
1888 verifier_deps->MergeWith(std::move(thread_deps),
1889 GetCompilerOptions().GetDexFilesForOatFile());
Nicolas Geoffray340dafa2016-11-18 16:03:10 +00001890 }
1891 Thread::Current()->SetVerifierDeps(nullptr);
1892 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001893}
1894
Mathieu Chartier90443472015-07-16 20:32:27 -07001895class VerifyClassVisitor : public CompilationVisitor {
1896 public:
Andreas Gampe5fd66d02016-09-12 20:22:19 -07001897 VerifyClassVisitor(const ParallelCompilationManager* manager, verifier::HardFailLogMode log_level)
Andreas Gampe6cc23ac2018-08-24 15:22:43 -07001898 : manager_(manager),
1899 log_level_(log_level),
1900 sdk_version_(Runtime::Current()->GetTargetSdkVersion()) {}
Brian Carlstrom7940e442013-07-12 13:46:57 -07001901
Roland Levillainf73caca2018-08-24 17:19:07 +01001902 void Visit(size_t class_def_index) REQUIRES(!Locks::mutator_lock_) override {
Andreas Gampe9b827ab2017-12-07 19:32:48 -08001903 ScopedTrace trace(__FUNCTION__);
Mathieu Chartier90443472015-07-16 20:32:27 -07001904 ScopedObjectAccess soa(Thread::Current());
1905 const DexFile& dex_file = *manager_->GetDexFile();
Andreas Gampe3f1dcd32018-12-28 09:39:56 -08001906 const dex::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
Mathieu Chartier90443472015-07-16 20:32:27 -07001907 const char* descriptor = dex_file.GetClassDescriptor(class_def);
1908 ClassLinker* class_linker = manager_->GetClassLinker();
1909 jobject jclass_loader = manager_->GetClassLoader();
1910 StackHandleScope<3> hs(soa.Self());
1911 Handle<mirror::ClassLoader> class_loader(
Mathieu Chartier0795f232016-09-27 18:43:30 -07001912 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader)));
Mathieu Chartier90443472015-07-16 20:32:27 -07001913 Handle<mirror::Class> klass(
1914 hs.NewHandle(class_linker->FindClass(soa.Self(), descriptor, class_loader)));
Andreas Gampe6d7abbd2017-04-24 13:19:09 -07001915 verifier::FailureKind failure_kind;
Andreas Gampefa4333d2017-02-14 11:10:34 -08001916 if (klass == nullptr) {
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001917 CHECK(soa.Self()->IsExceptionPending());
1918 soa.Self()->ClearException();
Mathieu Chartier90443472015-07-16 20:32:27 -07001919
1920 /*
1921 * At compile time, we can still structurally verify the class even if FindClass fails.
1922 * This is to ensure the class is structurally sound for compilation. An unsound class
1923 * will be rejected by the verifier and later skipped during compilation in the compiler.
1924 */
Mathieu Chartier673ed3d2015-08-28 14:56:43 -07001925 Handle<mirror::DexCache> dex_cache(hs.NewHandle(class_linker->FindDexCache(
Vladimir Markocd556b02017-02-03 11:47:34 +00001926 soa.Self(), dex_file)));
Mathieu Chartier90443472015-07-16 20:32:27 -07001927 std::string error_msg;
Nicolas Geoffray08025182016-10-25 17:20:18 +01001928 failure_kind =
1929 verifier::MethodVerifier::VerifyClass(soa.Self(),
Andreas Gampeec6e6c12015-11-05 20:39:56 -08001930 &dex_file,
1931 dex_cache,
1932 class_loader,
David Brazdil15fc7292016-09-02 14:13:18 +01001933 class_def,
Andreas Gampe53e32d12015-12-09 21:03:23 -08001934 Runtime::Current()->GetCompilerCallbacks(),
Andreas Gampeec6e6c12015-11-05 20:39:56 -08001935 true /* allow soft failures */,
Andreas Gampe7fe30232016-03-25 16:58:00 -07001936 log_level_,
Andreas Gampe6cc23ac2018-08-24 15:22:43 -07001937 sdk_version_,
Nicolas Geoffray08025182016-10-25 17:20:18 +01001938 &error_msg);
Andreas Gampe6d7abbd2017-04-24 13:19:09 -07001939 if (failure_kind == verifier::FailureKind::kHardFailure) {
Mathieu Chartier90443472015-07-16 20:32:27 -07001940 LOG(ERROR) << "Verification failed on class " << PrettyDescriptor(descriptor)
1941 << " because: " << error_msg;
1942 manager_->GetCompiler()->SetHadHardVerifierFailure();
Andreas Gampef39208f2017-10-19 15:06:59 -07001943 } else if (failure_kind == verifier::FailureKind::kSoftFailure) {
1944 manager_->GetCompiler()->AddSoftVerifierFailure();
Nicolas Geoffray7cc3ae52017-03-07 14:33:37 +00001945 } else {
1946 // Force a soft failure for the VerifierDeps. This is a sanity measure, as
1947 // the vdex file already records that the class hasn't been resolved. It avoids
1948 // trying to do future verification optimizations when processing the vdex file.
Andreas Gampef39208f2017-10-19 15:06:59 -07001949 DCHECK(failure_kind == verifier::FailureKind::kNoFailure) << failure_kind;
Andreas Gampe6d7abbd2017-04-24 13:19:09 -07001950 failure_kind = verifier::FailureKind::kSoftFailure;
Mathieu Chartier90443472015-07-16 20:32:27 -07001951 }
Andreas Gampebb30d5d2018-04-23 09:59:25 -07001952 } else if (&klass->GetDexFile() != &dex_file) {
1953 // Skip a duplicate class (as the resolved class is from another, earlier dex file).
1954 return; // Do not update state.
Mathieu Chartier90443472015-07-16 20:32:27 -07001955 } else if (!SkipClass(jclass_loader, dex_file, klass.Get())) {
David Sehr709b0702016-10-13 09:12:37 -07001956 CHECK(klass->IsResolved()) << klass->PrettyClass();
Nicolas Geoffray08025182016-10-25 17:20:18 +01001957 failure_kind = class_linker->VerifyClass(soa.Self(), klass, log_level_);
Mathieu Chartier90443472015-07-16 20:32:27 -07001958
1959 if (klass->IsErroneous()) {
1960 // ClassLinker::VerifyClass throws, which isn't useful in the compiler.
1961 CHECK(soa.Self()->IsExceptionPending());
1962 soa.Self()->ClearException();
1963 manager_->GetCompiler()->SetHadHardVerifierFailure();
Andreas Gampef39208f2017-10-19 15:06:59 -07001964 } else if (failure_kind == verifier::FailureKind::kSoftFailure) {
1965 manager_->GetCompiler()->AddSoftVerifierFailure();
Mathieu Chartier90443472015-07-16 20:32:27 -07001966 }
1967
Nicolas Geoffray7cc3ae52017-03-07 14:33:37 +00001968 CHECK(klass->ShouldVerifyAtRuntime() || klass->IsVerified() || klass->IsErroneous())
David Sehr709b0702016-10-13 09:12:37 -07001969 << klass->PrettyDescriptor() << ": state=" << klass->GetStatus();
Mathieu Chartier90443472015-07-16 20:32:27 -07001970
Nicolas Geoffrayc7da1d62017-04-19 09:36:24 +01001971 // Class has a meaningful status for the compiler now, record it.
1972 ClassReference ref(manager_->GetDexFile(), class_def_index);
1973 manager_->GetCompiler()->RecordClassStatus(ref, klass->GetStatus());
1974
Andreas Gamped278cb42017-11-22 14:13:00 -08001975 // It is *very* problematic if there are resolution errors in the boot classpath.
1976 //
1977 // It is also bad if classes fail verification. For example, we rely on things working
1978 // OK without verification when the decryption dialog is brought up. It is thus highly
1979 // recommended to compile the boot classpath with
1980 // --abort-on-hard-verifier-error --abort-on-soft-verifier-error
1981 // which is the default build system configuration.
Narayan Kamathe3eae5e2016-10-27 11:47:30 +01001982 if (kIsDebugBuild) {
Orion Hodsonc5e0d3f2017-08-22 19:00:04 +01001983 if (manager_->GetCompiler()->GetCompilerOptions().IsBootImage()) {
Andreas Gamped278cb42017-11-22 14:13:00 -08001984 if (!klass->IsResolved() || klass->IsErroneous()) {
Andreas Gampe12fadcd2017-08-03 05:06:28 -07001985 LOG(FATAL) << "Boot classpath class " << klass->PrettyClass()
Andreas Gamped278cb42017-11-22 14:13:00 -08001986 << " failed to resolve/is erroneous: state= " << klass->GetStatus();
1987 UNREACHABLE();
Andreas Gampe12fadcd2017-08-03 05:06:28 -07001988 }
Narayan Kamathe3eae5e2016-10-27 11:47:30 +01001989 }
Nicolas Geoffray7cc3ae52017-03-07 14:33:37 +00001990 if (klass->IsVerified()) {
Andreas Gampe6d7abbd2017-04-24 13:19:09 -07001991 DCHECK_EQ(failure_kind, verifier::FailureKind::kNoFailure);
Nicolas Geoffray7cc3ae52017-03-07 14:33:37 +00001992 } else if (klass->ShouldVerifyAtRuntime()) {
Andreas Gampe6d7abbd2017-04-24 13:19:09 -07001993 DCHECK_EQ(failure_kind, verifier::FailureKind::kSoftFailure);
Nicolas Geoffray7cc3ae52017-03-07 14:33:37 +00001994 } else {
Andreas Gampe6d7abbd2017-04-24 13:19:09 -07001995 DCHECK_EQ(failure_kind, verifier::FailureKind::kHardFailure);
Nicolas Geoffray7cc3ae52017-03-07 14:33:37 +00001996 }
Narayan Kamathe3eae5e2016-10-27 11:47:30 +01001997 }
Nicolas Geoffray08025182016-10-25 17:20:18 +01001998 } else {
1999 // Make the skip a soft failure, essentially being considered as verify at runtime.
Andreas Gampe6d7abbd2017-04-24 13:19:09 -07002000 failure_kind = verifier::FailureKind::kSoftFailure;
Ian Rogerse6bb3b22013-08-19 21:51:45 -07002001 }
Nicolas Geoffray08025182016-10-25 17:20:18 +01002002 verifier::VerifierDeps::MaybeRecordVerificationStatus(
2003 dex_file, class_def.class_idx_, failure_kind);
Mathieu Chartier90443472015-07-16 20:32:27 -07002004 soa.Self()->AssertNoPendingException();
Brian Carlstrom7940e442013-07-12 13:46:57 -07002005 }
Mathieu Chartier90443472015-07-16 20:32:27 -07002006
2007 private:
2008 const ParallelCompilationManager* const manager_;
Andreas Gampe5fd66d02016-09-12 20:22:19 -07002009 const verifier::HardFailLogMode log_level_;
Andreas Gampe6cc23ac2018-08-24 15:22:43 -07002010 const uint32_t sdk_version_;
Mathieu Chartier90443472015-07-16 20:32:27 -07002011};
Brian Carlstrom7940e442013-07-12 13:46:57 -07002012
Andreas Gampeace0dc12016-01-20 13:33:13 -08002013void CompilerDriver::VerifyDexFile(jobject class_loader,
2014 const DexFile& dex_file,
Andreas Gampede7b4362014-07-28 18:38:57 -07002015 const std::vector<const DexFile*>& dex_files,
Andreas Gampeace0dc12016-01-20 13:33:13 -08002016 ThreadPool* thread_pool,
2017 size_t thread_count,
2018 TimingLogger* timings) {
Mathieu Chartierf5997b42014-06-20 10:37:54 -07002019 TimingLogger::ScopedTiming t("Verify Dex File", timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002020 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Andreas Gampede7b4362014-07-28 18:38:57 -07002021 ParallelCompilationManager context(class_linker, class_loader, this, &dex_file, dex_files,
2022 thread_pool);
Andreas Gampef39208f2017-10-19 15:06:59 -07002023 bool abort_on_verifier_failures = GetCompilerOptions().AbortOnHardVerifierFailure()
2024 || GetCompilerOptions().AbortOnSoftVerifierFailure();
2025 verifier::HardFailLogMode log_level = abort_on_verifier_failures
Andreas Gampe5fd66d02016-09-12 20:22:19 -07002026 ? verifier::HardFailLogMode::kLogInternalFatal
2027 : verifier::HardFailLogMode::kLogWarning;
Andreas Gampe7fe30232016-03-25 16:58:00 -07002028 VerifyClassVisitor visitor(&context, log_level);
Andreas Gampeace0dc12016-01-20 13:33:13 -08002029 context.ForAll(0, dex_file.NumClassDefs(), &visitor, thread_count);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002030}
2031
Mathieu Chartier90443472015-07-16 20:32:27 -07002032class SetVerifiedClassVisitor : public CompilationVisitor {
2033 public:
2034 explicit SetVerifiedClassVisitor(const ParallelCompilationManager* manager) : manager_(manager) {}
2035
Roland Levillainf73caca2018-08-24 17:19:07 +01002036 void Visit(size_t class_def_index) REQUIRES(!Locks::mutator_lock_) override {
Andreas Gampe9b827ab2017-12-07 19:32:48 -08002037 ScopedTrace trace(__FUNCTION__);
Mathieu Chartier90443472015-07-16 20:32:27 -07002038 ScopedObjectAccess soa(Thread::Current());
2039 const DexFile& dex_file = *manager_->GetDexFile();
Andreas Gampe3f1dcd32018-12-28 09:39:56 -08002040 const dex::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
Mathieu Chartier90443472015-07-16 20:32:27 -07002041 const char* descriptor = dex_file.GetClassDescriptor(class_def);
2042 ClassLinker* class_linker = manager_->GetClassLinker();
2043 jobject jclass_loader = manager_->GetClassLoader();
2044 StackHandleScope<3> hs(soa.Self());
2045 Handle<mirror::ClassLoader> class_loader(
Mathieu Chartier0795f232016-09-27 18:43:30 -07002046 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader)));
Mathieu Chartier90443472015-07-16 20:32:27 -07002047 Handle<mirror::Class> klass(
2048 hs.NewHandle(class_linker->FindClass(soa.Self(), descriptor, class_loader)));
2049 // Class might have failed resolution. Then don't set it to verified.
Andreas Gampefa4333d2017-02-14 11:10:34 -08002050 if (klass != nullptr) {
Mathieu Chartier90443472015-07-16 20:32:27 -07002051 // Only do this if the class is resolved. If even resolution fails, quickening will go very,
2052 // very wrong.
Vladimir Marko72ab6842017-01-20 19:32:50 +00002053 if (klass->IsResolved() && !klass->IsErroneousResolved()) {
Vladimir Marko2c64a832018-01-04 11:31:56 +00002054 if (klass->GetStatus() < ClassStatus::kVerified) {
Mathieu Chartier90443472015-07-16 20:32:27 -07002055 ObjectLock<mirror::Class> lock(soa.Self(), klass);
2056 // Set class status to verified.
Vladimir Marko2c64a832018-01-04 11:31:56 +00002057 mirror::Class::SetStatus(klass, ClassStatus::kVerified, soa.Self());
Mathieu Chartier90443472015-07-16 20:32:27 -07002058 // Mark methods as pre-verified. If we don't do this, the interpreter will run with
2059 // access checks.
Vladimir Markoa0431112018-06-25 09:32:54 +01002060 InstructionSet instruction_set =
2061 manager_->GetCompiler()->GetCompilerOptions().GetInstructionSet();
2062 klass->SetSkipAccessChecksFlagOnAllMethods(GetInstructionSetPointerSize(instruction_set));
Igor Murashkindf707e42016-02-02 16:56:50 -08002063 klass->SetVerificationAttempted();
Mathieu Chartier90443472015-07-16 20:32:27 -07002064 }
2065 // Record the final class status if necessary.
2066 ClassReference ref(manager_->GetDexFile(), class_def_index);
2067 manager_->GetCompiler()->RecordClassStatus(ref, klass->GetStatus());
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002068 }
Mathieu Chartier90443472015-07-16 20:32:27 -07002069 } else {
2070 Thread* self = soa.Self();
2071 DCHECK(self->IsExceptionPending());
2072 self->ClearException();
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002073 }
2074 }
Mathieu Chartier90443472015-07-16 20:32:27 -07002075
2076 private:
2077 const ParallelCompilationManager* const manager_;
2078};
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002079
Andreas Gampeace0dc12016-01-20 13:33:13 -08002080void CompilerDriver::SetVerifiedDexFile(jobject class_loader,
2081 const DexFile& dex_file,
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002082 const std::vector<const DexFile*>& dex_files,
Andreas Gampeace0dc12016-01-20 13:33:13 -08002083 ThreadPool* thread_pool,
2084 size_t thread_count,
2085 TimingLogger* timings) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002086 TimingLogger::ScopedTiming t("Verify Dex File", timings);
Mathieu Chartier1a088d42017-07-18 11:43:57 -07002087 if (!compiled_classes_.HaveDexFile(&dex_file)) {
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002088 compiled_classes_.AddDexFile(&dex_file);
Mathieu Chartier1a088d42017-07-18 11:43:57 -07002089 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002090 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
2091 ParallelCompilationManager context(class_linker, class_loader, this, &dex_file, dex_files,
2092 thread_pool);
Mathieu Chartier90443472015-07-16 20:32:27 -07002093 SetVerifiedClassVisitor visitor(&context);
Andreas Gampeace0dc12016-01-20 13:33:13 -08002094 context.ForAll(0, dex_file.NumClassDefs(), &visitor, thread_count);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002095}
2096
Mathieu Chartier90443472015-07-16 20:32:27 -07002097class InitializeClassVisitor : public CompilationVisitor {
2098 public:
2099 explicit InitializeClassVisitor(const ParallelCompilationManager* manager) : manager_(manager) {}
Ian Rogersfc0e94b2013-09-23 23:51:32 -07002100
Roland Levillainbbc6e7e2018-08-24 16:58:47 +01002101 void Visit(size_t class_def_index) override {
Andreas Gampe9b827ab2017-12-07 19:32:48 -08002102 ScopedTrace trace(__FUNCTION__);
Mathieu Chartier90443472015-07-16 20:32:27 -07002103 jobject jclass_loader = manager_->GetClassLoader();
2104 const DexFile& dex_file = *manager_->GetDexFile();
Andreas Gampe3f1dcd32018-12-28 09:39:56 -08002105 const dex::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
2106 const dex::TypeId& class_type_id = dex_file.GetTypeId(class_def.class_idx_);
Mathieu Chartier90443472015-07-16 20:32:27 -07002107 const char* descriptor = dex_file.StringDataByIdx(class_type_id.descriptor_idx_);
Jeff Hao0e49b422013-11-08 12:16:56 -08002108
Mathieu Chartier90443472015-07-16 20:32:27 -07002109 ScopedObjectAccess soa(Thread::Current());
2110 StackHandleScope<3> hs(soa.Self());
2111 Handle<mirror::ClassLoader> class_loader(
Mathieu Chartier0795f232016-09-27 18:43:30 -07002112 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader)));
Mathieu Chartier90443472015-07-16 20:32:27 -07002113 Handle<mirror::Class> klass(
2114 hs.NewHandle(manager_->GetClassLinker()->FindClass(soa.Self(), descriptor, class_loader)));
2115
Mathieu Chartier41dba672018-12-21 15:06:17 -08002116 if (klass != nullptr) {
2117 if (!SkipClass(manager_->GetClassLoader(), dex_file, klass.Get())) {
2118 TryInitializeClass(klass, class_loader);
2119 }
2120 manager_->GetCompiler()->stats_->AddClassStatus(klass->GetStatus());
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002121 }
2122 // Clear any class not found or verification exceptions.
2123 soa.Self()->ClearException();
2124 }
2125
2126 // A helper function for initializing klass.
2127 void TryInitializeClass(Handle<mirror::Class> klass, Handle<mirror::ClassLoader>& class_loader)
2128 REQUIRES_SHARED(Locks::mutator_lock_) {
2129 const DexFile& dex_file = klass->GetDexFile();
Andreas Gampe3f1dcd32018-12-28 09:39:56 -08002130 const dex::ClassDef* class_def = klass->GetClassDef();
2131 const dex::TypeId& class_type_id = dex_file.GetTypeId(class_def->class_idx_);
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002132 const char* descriptor = dex_file.StringDataByIdx(class_type_id.descriptor_idx_);
2133 ScopedObjectAccessUnchecked soa(Thread::Current());
2134 StackHandleScope<3> hs(soa.Self());
Mathieu Chartierdabeb3a2017-06-12 17:10:07 -07002135 const bool is_boot_image = manager_->GetCompiler()->GetCompilerOptions().IsBootImage();
Mathieu Chartier17498e52017-06-13 11:35:04 -07002136 const bool is_app_image = manager_->GetCompiler()->GetCompilerOptions().IsAppImage();
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002137
Vladimir Marko2c64a832018-01-04 11:31:56 +00002138 ClassStatus old_status = klass->GetStatus();
Mathieu Chartier1a088d42017-07-18 11:43:57 -07002139 // Don't initialize classes in boot space when compiling app image
2140 if (is_app_image && klass->IsBootStrapClassLoaded()) {
2141 // Also return early and don't store the class status in the recorded class status.
2142 return;
2143 }
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002144 // Only try to initialize classes that were successfully verified.
2145 if (klass->IsVerified()) {
2146 // Attempt to initialize the class but bail if we either need to initialize the super-class
2147 // or static fields.
Nicolas Geoffrayabadf022017-08-03 08:25:41 +00002148 manager_->GetClassLinker()->EnsureInitialized(soa.Self(), klass, false, false);
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002149 old_status = klass->GetStatus();
2150 if (!klass->IsInitialized()) {
2151 // We don't want non-trivial class initialization occurring on multiple threads due to
2152 // deadlock problems. For example, a parent class is initialized (holding its lock) that
2153 // refers to a sub-class in its static/class initializer causing it to try to acquire the
2154 // sub-class' lock. While on a second thread the sub-class is initialized (holding its lock)
2155 // after first initializing its parents, whose locks are acquired. This leads to a
2156 // parent-to-child and a child-to-parent lock ordering and consequent potential deadlock.
2157 // We need to use an ObjectLock due to potential suspension in the interpreting code. Rather
2158 // than use a special Object for the purpose we use the Class of java.lang.Class.
2159 Handle<mirror::Class> h_klass(hs.NewHandle(klass->GetClass()));
2160 ObjectLock<mirror::Class> lock(soa.Self(), h_klass);
2161 // Attempt to initialize allowing initialization of parent classes but still not static
2162 // fields.
Chang Xinge602b1c2017-06-30 11:55:01 -07002163 // Initialize dependencies first only for app image, to make TryInitialize recursive.
2164 bool is_superclass_initialized = !is_app_image ? true :
2165 InitializeDependencies(klass, class_loader, soa.Self());
2166 if (!is_app_image || (is_app_image && is_superclass_initialized)) {
Nicolas Geoffrayabadf022017-08-03 08:25:41 +00002167 manager_->GetClassLinker()->EnsureInitialized(soa.Self(), klass, false, true);
Chang Xinge602b1c2017-06-30 11:55:01 -07002168 }
2169 // Otherwise it's in app image but superclasses can't be initialized, no need to proceed.
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002170 old_status = klass->GetStatus();
Chang Xing70f689d2017-06-08 17:16:12 -07002171
Chris Wailes0c61be42018-09-26 17:27:34 -07002172 bool too_many_encoded_fields = !is_boot_image &&
2173 klass->NumStaticFields() > kMaxEncodedFields;
2174
Mathieu Chartierdabeb3a2017-06-12 17:10:07 -07002175 // If the class was not initialized, we can proceed to see if we can initialize static
Chang Xing70f689d2017-06-08 17:16:12 -07002176 // fields. Limit the max number of encoded fields.
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002177 if (!klass->IsInitialized() &&
Mathieu Chartier17498e52017-06-13 11:35:04 -07002178 (is_app_image || is_boot_image) &&
Chang Xinge602b1c2017-06-30 11:55:01 -07002179 is_superclass_initialized &&
Chang Xing70f689d2017-06-08 17:16:12 -07002180 !too_many_encoded_fields &&
Vladimir Markodc4bcce2018-06-21 16:15:42 +01002181 manager_->GetCompiler()->GetCompilerOptions().IsImageClass(descriptor)) {
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002182 bool can_init_static_fields = false;
Mathieu Chartierdabeb3a2017-06-12 17:10:07 -07002183 if (is_boot_image) {
Mathieu Chartier90443472015-07-16 20:32:27 -07002184 // We need to initialize static fields, we only do this for image classes that aren't
Mathieu Chartierdabeb3a2017-06-12 17:10:07 -07002185 // marked with the $NoPreloadHolder (which implies this should not be initialized
2186 // early).
Vladimir Marko2ef01102019-02-05 15:05:10 +00002187 can_init_static_fields = !EndsWith(std::string_view(descriptor), "$NoPreloadHolder;");
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002188 } else {
Mathieu Chartier17498e52017-06-13 11:35:04 -07002189 CHECK(is_app_image);
Mathieu Chartierdabeb3a2017-06-12 17:10:07 -07002190 // The boot image case doesn't need to recursively initialize the dependencies with
2191 // special logic since the class linker already does this.
Mathieu Chartierdabeb3a2017-06-12 17:10:07 -07002192 can_init_static_fields =
Mathieu Chartier0933cc52018-03-23 14:25:08 -07002193 ClassLinker::kAppImageMayContainStrings &&
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002194 !soa.Self()->IsExceptionPending() &&
Nicolas Geoffrayabadf022017-08-03 08:25:41 +00002195 is_superclass_initialized &&
2196 NoClinitInDependency(klass, soa.Self(), &class_loader);
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002197 // TODO The checking for clinit can be removed since it's already
2198 // checked when init superclass. Currently keep it because it contains
2199 // processing of intern strings. Will be removed later when intern strings
2200 // and clinit are both initialized.
2201 }
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01002202
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002203 if (can_init_static_fields) {
2204 VLOG(compiler) << "Initializing: " << descriptor;
2205 // TODO multithreading support. We should ensure the current compilation thread has
2206 // exclusive access to the runtime and the transaction. To achieve this, we could use
2207 // a ReaderWriterMutex but we're holding the mutator lock so we fail mutex sanity
2208 // checks in Thread::AssertThreadSuspensionIsAllowable.
2209 Runtime* const runtime = Runtime::Current();
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002210 // Run the class initializer in transaction mode.
Chang Xing5a906fc2017-07-26 15:01:16 -07002211 runtime->EnterTransactionMode(is_app_image, klass.Get());
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002212 bool success = manager_->GetClassLinker()->EnsureInitialized(soa.Self(), klass, true,
2213 true);
2214 // TODO we detach transaction from runtime to indicate we quit the transactional
2215 // mode which prevents the GC from visiting objects modified during the transaction.
2216 // Ensure GC is not run so don't access freed objects when aborting transaction.
Andreas Gampe9e7078b2017-03-02 13:50:36 -08002217
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002218 {
2219 ScopedAssertNoThreadSuspension ants("Transaction end");
Chang Xing16d1dd82017-07-20 17:56:26 -07002220
2221 if (success) {
2222 runtime->ExitTransactionMode();
2223 DCHECK(!runtime->IsActiveTransaction());
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01002224
Chris Wailes0c61be42018-09-26 17:27:34 -07002225 if (is_boot_image) {
2226 // For boot image, we want to put the updated status in the oat class since we
2227 // can't reject the image anyways.
2228 old_status = klass->GetStatus();
2229 }
2230 } else {
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002231 CHECK(soa.Self()->IsExceptionPending());
2232 mirror::Throwable* exception = soa.Self()->GetException();
2233 VLOG(compiler) << "Initialization of " << descriptor << " aborted because of "
2234 << exception->Dump();
2235 std::ostream* file_log = manager_->GetCompiler()->
2236 GetCompilerOptions().GetInitFailureOutput();
2237 if (file_log != nullptr) {
2238 *file_log << descriptor << "\n";
2239 *file_log << exception->Dump() << "\n";
2240 }
2241 soa.Self()->ClearException();
Chang Xing605fe242017-07-20 15:57:21 -07002242 runtime->RollbackAllTransactions();
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002243 CHECK_EQ(old_status, klass->GetStatus()) << "Previous class status not restored";
2244 }
2245 }
2246
Nicolas Geoffrayabadf022017-08-03 08:25:41 +00002247 if (!success) {
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002248 // On failure, still intern strings of static fields and seen in <clinit>, as these
2249 // will be created in the zygote. This is separated from the transaction code just
2250 // above as we will allocate strings, so must be allowed to suspend.
2251 if (&klass->GetDexFile() == manager_->GetDexFile()) {
Andreas Gampe9e7078b2017-03-02 13:50:36 -08002252 InternStrings(klass, class_loader);
Mathieu Chartierdabeb3a2017-06-12 17:10:07 -07002253 } else {
2254 DCHECK(!is_boot_image) << "Boot image must have equal dex files";
Andreas Gampedbfe2542014-11-25 22:21:42 -08002255 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002256 }
2257 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002258 }
Jeff Hao0cb17282017-07-12 14:51:49 -07002259 // If the class still isn't initialized, at least try some checks that initialization
2260 // would do so they can be skipped at runtime.
2261 if (!klass->IsInitialized() &&
2262 manager_->GetClassLinker()->ValidateSuperClassDescriptors(klass)) {
Vladimir Marko2c64a832018-01-04 11:31:56 +00002263 old_status = ClassStatus::kSuperclassValidated;
Jeff Hao0cb17282017-07-12 14:51:49 -07002264 } else {
2265 soa.Self()->ClearException();
2266 }
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002267 soa.Self()->AssertNoPendingException();
Brian Carlstrom7940e442013-07-12 13:46:57 -07002268 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002269 }
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002270 // Record the final class status if necessary.
2271 ClassReference ref(&dex_file, klass->GetDexClassDefIndex());
2272 // Back up the status before doing initialization for static encoded fields,
2273 // because the static encoded branch wants to keep the status to uninitialized.
2274 manager_->GetCompiler()->RecordClassStatus(ref, old_status);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002275 }
Mathieu Chartier90443472015-07-16 20:32:27 -07002276
2277 private:
Andreas Gampe9e7078b2017-03-02 13:50:36 -08002278 void InternStrings(Handle<mirror::Class> klass, Handle<mirror::ClassLoader> class_loader)
2279 REQUIRES_SHARED(Locks::mutator_lock_) {
2280 DCHECK(manager_->GetCompiler()->GetCompilerOptions().IsBootImage());
2281 DCHECK(klass->IsVerified());
2282 DCHECK(!klass->IsInitialized());
2283
2284 StackHandleScope<1> hs(Thread::Current());
Vladimir Markoe11dd502017-12-08 14:09:45 +00002285 Handle<mirror::DexCache> dex_cache = hs.NewHandle(klass->GetDexCache());
Andreas Gampe3f1dcd32018-12-28 09:39:56 -08002286 const dex::ClassDef* class_def = klass->GetClassDef();
Andreas Gampe9e7078b2017-03-02 13:50:36 -08002287 ClassLinker* class_linker = manager_->GetClassLinker();
2288
Andreas Gampe7bf90482017-03-02 16:41:35 -08002289 // Check encoded final field values for strings and intern.
Vladimir Markoe11dd502017-12-08 14:09:45 +00002290 annotations::RuntimeEncodedStaticFieldValueIterator value_it(dex_cache,
2291 class_loader,
Andreas Gampe9e7078b2017-03-02 13:50:36 -08002292 manager_->GetClassLinker(),
2293 *class_def);
2294 for ( ; value_it.HasNext(); value_it.Next()) {
2295 if (value_it.GetValueType() == annotations::RuntimeEncodedStaticFieldValueIterator::kString) {
2296 // Resolve the string. This will intern the string.
2297 art::ObjPtr<mirror::String> resolved = class_linker->ResolveString(
Vladimir Markoa64b52d2017-12-08 16:27:49 +00002298 dex::StringIndex(value_it.GetJavaValue().i), dex_cache);
Andreas Gampe9e7078b2017-03-02 13:50:36 -08002299 CHECK(resolved != nullptr);
2300 }
2301 }
Andreas Gampe7bf90482017-03-02 16:41:35 -08002302
2303 // Intern strings seen in <clinit>.
2304 ArtMethod* clinit = klass->FindClassInitializer(class_linker->GetImagePointerSize());
2305 if (clinit != nullptr) {
Mathieu Chartier73f21d42018-01-02 14:26:50 -08002306 for (const DexInstructionPcPair& inst : clinit->DexInstructions()) {
Mathieu Chartier2b2bef22017-10-26 17:10:19 -07002307 if (inst->Opcode() == Instruction::CONST_STRING) {
Andreas Gampe7bf90482017-03-02 16:41:35 -08002308 ObjPtr<mirror::String> s = class_linker->ResolveString(
Vladimir Markoa64b52d2017-12-08 16:27:49 +00002309 dex::StringIndex(inst->VRegB_21c()), dex_cache);
Andreas Gampe7bf90482017-03-02 16:41:35 -08002310 CHECK(s != nullptr);
Mathieu Chartier2b2bef22017-10-26 17:10:19 -07002311 } else if (inst->Opcode() == Instruction::CONST_STRING_JUMBO) {
Andreas Gampe7bf90482017-03-02 16:41:35 -08002312 ObjPtr<mirror::String> s = class_linker->ResolveString(
Vladimir Markoa64b52d2017-12-08 16:27:49 +00002313 dex::StringIndex(inst->VRegB_31c()), dex_cache);
Andreas Gampe7bf90482017-03-02 16:41:35 -08002314 CHECK(s != nullptr);
2315 }
Andreas Gampe7bf90482017-03-02 16:41:35 -08002316 }
2317 }
Andreas Gampe9e7078b2017-03-02 13:50:36 -08002318 }
2319
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002320 bool ResolveTypesOfMethods(Thread* self, ArtMethod* m)
2321 REQUIRES_SHARED(Locks::mutator_lock_) {
Vladimir Markob45528c2017-07-27 14:14:28 +01002322 // Return value of ResolveReturnType() is discarded because resolve will be done internally.
2323 ObjPtr<mirror::Class> rtn_type = m->ResolveReturnType();
Mathieu Chartier7a8bcfd2017-06-13 13:40:43 -07002324 if (rtn_type == nullptr) {
2325 self->ClearException();
2326 return false;
2327 }
Andreas Gampe3f1dcd32018-12-28 09:39:56 -08002328 const dex::TypeList* types = m->GetParameterTypeList();
Mathieu Chartier7a8bcfd2017-06-13 13:40:43 -07002329 if (types != nullptr) {
2330 for (uint32_t i = 0; i < types->Size(); ++i) {
2331 dex::TypeIndex param_type_idx = types->GetTypeItem(i).type_idx_;
Vladimir Markob45528c2017-07-27 14:14:28 +01002332 ObjPtr<mirror::Class> param_type = m->ResolveClassFromTypeIndex(param_type_idx);
Mathieu Chartier7a8bcfd2017-06-13 13:40:43 -07002333 if (param_type == nullptr) {
2334 self->ClearException();
2335 return false;
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002336 }
2337 }
Mathieu Chartier7a8bcfd2017-06-13 13:40:43 -07002338 }
2339 return true;
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002340 }
2341
2342 // Pre resolve types mentioned in all method signatures before start a transaction
2343 // since ResolveType doesn't work in transaction mode.
2344 bool PreResolveTypes(Thread* self, const Handle<mirror::Class>& klass)
2345 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartier7a8bcfd2017-06-13 13:40:43 -07002346 PointerSize pointer_size = manager_->GetClassLinker()->GetImagePointerSize();
2347 for (ArtMethod& m : klass->GetMethods(pointer_size)) {
2348 if (!ResolveTypesOfMethods(self, &m)) {
2349 return false;
2350 }
2351 }
2352 if (klass->IsInterface()) {
2353 return true;
2354 } else if (klass->HasSuperClass()) {
2355 StackHandleScope<1> hs(self);
2356 MutableHandle<mirror::Class> super_klass(hs.NewHandle<mirror::Class>(klass->GetSuperClass()));
2357 for (int i = super_klass->GetVTableLength() - 1; i >= 0; --i) {
2358 ArtMethod* m = klass->GetVTableEntry(i, pointer_size);
2359 ArtMethod* super_m = super_klass->GetVTableEntry(i, pointer_size);
2360 if (!ResolveTypesOfMethods(self, m) || !ResolveTypesOfMethods(self, super_m)) {
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002361 return false;
2362 }
2363 }
Mathieu Chartier7a8bcfd2017-06-13 13:40:43 -07002364 for (int32_t i = 0; i < klass->GetIfTableCount(); ++i) {
2365 super_klass.Assign(klass->GetIfTable()->GetInterface(i));
2366 if (klass->GetClassLoader() != super_klass->GetClassLoader()) {
2367 uint32_t num_methods = super_klass->NumVirtualMethods();
2368 for (uint32_t j = 0; j < num_methods; ++j) {
2369 ArtMethod* m = klass->GetIfTable()->GetMethodArray(i)->GetElementPtrSize<ArtMethod*>(
2370 j, pointer_size);
2371 ArtMethod* super_m = super_klass->GetVirtualMethod(j, pointer_size);
2372 if (!ResolveTypesOfMethods(self, m) || !ResolveTypesOfMethods(self, super_m)) {
2373 return false;
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002374 }
2375 }
2376 }
2377 }
Mathieu Chartier7a8bcfd2017-06-13 13:40:43 -07002378 }
2379 return true;
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002380 }
2381
2382 // Initialize the klass's dependencies recursively before initializing itself.
2383 // Checking for interfaces is also necessary since interfaces can contain
2384 // both default methods and static encoded fields.
2385 bool InitializeDependencies(const Handle<mirror::Class>& klass,
2386 Handle<mirror::ClassLoader> class_loader,
2387 Thread* self)
2388 REQUIRES_SHARED(Locks::mutator_lock_) {
2389 if (klass->HasSuperClass()) {
2390 ObjPtr<mirror::Class> super_class = klass->GetSuperClass();
2391 StackHandleScope<1> hs(self);
2392 Handle<mirror::Class> handle_scope_super(hs.NewHandle(super_class));
2393 if (!handle_scope_super->IsInitialized()) {
2394 this->TryInitializeClass(handle_scope_super, class_loader);
2395 if (!handle_scope_super->IsInitialized()) {
2396 return false;
2397 }
2398 }
2399 }
2400
2401 uint32_t num_if = klass->NumDirectInterfaces();
2402 for (size_t i = 0; i < num_if; i++) {
2403 ObjPtr<mirror::Class>
2404 interface = mirror::Class::GetDirectInterface(self, klass.Get(), i);
2405 StackHandleScope<1> hs(self);
2406 Handle<mirror::Class> handle_interface(hs.NewHandle(interface));
2407
2408 TryInitializeClass(handle_interface, class_loader);
2409
2410 if (!handle_interface->IsInitialized()) {
2411 return false;
2412 }
2413 }
2414
2415 return PreResolveTypes(self, klass);
2416 }
2417
2418 // In this phase the classes containing class initializers are ignored. Make sure no
2419 // clinit appears in kalss's super class chain and interfaces.
2420 bool NoClinitInDependency(const Handle<mirror::Class>& klass,
2421 Thread* self,
2422 Handle<mirror::ClassLoader>* class_loader)
2423 REQUIRES_SHARED(Locks::mutator_lock_) {
2424 ArtMethod* clinit =
2425 klass->FindClassInitializer(manager_->GetClassLinker()->GetImagePointerSize());
2426 if (clinit != nullptr) {
2427 VLOG(compiler) << klass->PrettyClass() << ' ' << clinit->PrettyMethod(true);
2428 return false;
2429 }
2430 if (klass->HasSuperClass()) {
2431 ObjPtr<mirror::Class> super_class = klass->GetSuperClass();
2432 StackHandleScope<1> hs(self);
2433 Handle<mirror::Class> handle_scope_super(hs.NewHandle(super_class));
2434 if (!NoClinitInDependency(handle_scope_super, self, class_loader)) {
2435 return false;
2436 }
2437 }
2438
2439 uint32_t num_if = klass->NumDirectInterfaces();
2440 for (size_t i = 0; i < num_if; i++) {
2441 ObjPtr<mirror::Class>
2442 interface = mirror::Class::GetDirectInterface(self, klass.Get(), i);
2443 StackHandleScope<1> hs(self);
2444 Handle<mirror::Class> handle_interface(hs.NewHandle(interface));
2445 if (!NoClinitInDependency(handle_interface, self, class_loader)) {
2446 return false;
2447 }
2448 }
2449
Chang Xingba17dbd2017-06-28 21:27:56 +00002450 return true;
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002451 }
2452
Mathieu Chartier90443472015-07-16 20:32:27 -07002453 const ParallelCompilationManager* const manager_;
2454};
Brian Carlstrom7940e442013-07-12 13:46:57 -07002455
Andreas Gampeace0dc12016-01-20 13:33:13 -08002456void CompilerDriver::InitializeClasses(jobject jni_class_loader,
2457 const DexFile& dex_file,
Andreas Gampede7b4362014-07-28 18:38:57 -07002458 const std::vector<const DexFile*>& dex_files,
Andreas Gampeace0dc12016-01-20 13:33:13 -08002459 TimingLogger* timings) {
Mathieu Chartierf5997b42014-06-20 10:37:54 -07002460 TimingLogger::ScopedTiming t("InitializeNoClinit", timings);
Andreas Gampeace0dc12016-01-20 13:33:13 -08002461
2462 // Initialization allocates objects and needs to run single-threaded to be deterministic.
2463 bool force_determinism = GetCompilerOptions().IsForceDeterminism();
2464 ThreadPool* init_thread_pool = force_determinism
2465 ? single_thread_pool_.get()
2466 : parallel_thread_pool_.get();
2467 size_t init_thread_count = force_determinism ? 1U : parallel_thread_count_;
2468
Brian Carlstrom7940e442013-07-12 13:46:57 -07002469 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Andreas Gampede7b4362014-07-28 18:38:57 -07002470 ParallelCompilationManager context(class_linker, jni_class_loader, this, &dex_file, dex_files,
Andreas Gampeace0dc12016-01-20 13:33:13 -08002471 init_thread_pool);
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002472
2473 if (GetCompilerOptions().IsBootImage() || GetCompilerOptions().IsAppImage()) {
2474 // Set the concurrency thread to 1 to support initialization for App Images since transaction
2475 // doesn't support multithreading now.
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01002476 // TODO: remove this when transactional mode supports multithreading.
Andreas Gampeace0dc12016-01-20 13:33:13 -08002477 init_thread_count = 1U;
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01002478 }
Mathieu Chartier90443472015-07-16 20:32:27 -07002479 InitializeClassVisitor visitor(&context);
Andreas Gampeace0dc12016-01-20 13:33:13 -08002480 context.ForAll(0, dex_file.NumClassDefs(), &visitor, init_thread_count);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002481}
2482
Mathieu Chartier91288d82016-04-28 09:44:54 -07002483class InitializeArrayClassesAndCreateConflictTablesVisitor : public ClassVisitor {
Mathieu Chartier085a0722016-04-01 17:33:31 -07002484 public:
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002485 explicit InitializeArrayClassesAndCreateConflictTablesVisitor(VariableSizedHandleScope& hs)
2486 : hs_(hs) {}
2487
Roland Levillainf73caca2018-08-24 17:19:07 +01002488 bool operator()(ObjPtr<mirror::Class> klass) override
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002489 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartier91288d82016-04-28 09:44:54 -07002490 if (Runtime::Current()->GetHeap()->ObjectIsInBootImageSpace(klass)) {
2491 return true;
2492 }
Mathieu Chartier085a0722016-04-01 17:33:31 -07002493 if (klass->IsArrayClass()) {
2494 StackHandleScope<1> hs(Thread::Current());
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002495 auto h_klass = hs.NewHandleWrapper(&klass);
2496 Runtime::Current()->GetClassLinker()->EnsureInitialized(hs.Self(), h_klass, true, true);
Mathieu Chartier085a0722016-04-01 17:33:31 -07002497 }
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002498 // Collect handles since there may be thread suspension in future EnsureInitialized.
2499 to_visit_.push_back(hs_.NewHandle(klass));
Nicolas Geoffray88f288e2016-06-29 08:17:52 +00002500 return true;
Nelli Kimbadee982016-05-13 13:08:53 +03002501 }
Artem Udovichenkoa62cb9b2016-06-30 09:18:25 +00002502
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002503 void FillAllIMTAndConflictTables() REQUIRES_SHARED(Locks::mutator_lock_) {
2504 for (Handle<mirror::Class> c : to_visit_) {
2505 // Create the conflict tables.
2506 FillIMTAndConflictTables(c.Get());
2507 }
2508 }
2509
Artem Udovichenkoa62cb9b2016-06-30 09:18:25 +00002510 private:
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002511 void FillIMTAndConflictTables(ObjPtr<mirror::Class> klass)
2512 REQUIRES_SHARED(Locks::mutator_lock_) {
Artem Udovichenkoa62cb9b2016-06-30 09:18:25 +00002513 if (!klass->ShouldHaveImt()) {
2514 return;
2515 }
2516 if (visited_classes_.find(klass) != visited_classes_.end()) {
2517 return;
2518 }
2519 if (klass->HasSuperClass()) {
2520 FillIMTAndConflictTables(klass->GetSuperClass());
2521 }
2522 if (!klass->IsTemp()) {
2523 Runtime::Current()->GetClassLinker()->FillIMTAndConflictTables(klass);
2524 }
2525 visited_classes_.insert(klass);
2526 }
2527
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002528 VariableSizedHandleScope& hs_;
2529 std::vector<Handle<mirror::Class>> to_visit_;
2530 std::unordered_set<ObjPtr<mirror::Class>, HashObjPtr> visited_classes_;
Mathieu Chartier085a0722016-04-01 17:33:31 -07002531};
2532
Brian Carlstrom7940e442013-07-12 13:46:57 -07002533void CompilerDriver::InitializeClasses(jobject class_loader,
2534 const std::vector<const DexFile*>& dex_files,
Andreas Gampeace0dc12016-01-20 13:33:13 -08002535 TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07002536 for (size_t i = 0; i != dex_files.size(); ++i) {
2537 const DexFile* dex_file = dex_files[i];
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002538 CHECK(dex_file != nullptr);
Andreas Gampeace0dc12016-01-20 13:33:13 -08002539 InitializeClasses(class_loader, *dex_file, dex_files, timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002540 }
Vladimir Markoaad75c62016-10-03 08:46:48 +00002541 if (GetCompilerOptions().IsBootImage() || GetCompilerOptions().IsAppImage()) {
Mathieu Chartier085a0722016-04-01 17:33:31 -07002542 // Make sure that we call EnsureIntiailized on all the array classes to call
2543 // SetVerificationAttempted so that the access flags are set. If we do not do this they get
2544 // changed at runtime resulting in more dirty image pages.
Mathieu Chartier91288d82016-04-28 09:44:54 -07002545 // Also create conflict tables.
Vladimir Marko2afaff72018-11-30 17:01:50 +00002546 // Only useful if we are compiling an image.
Mathieu Chartier085a0722016-04-01 17:33:31 -07002547 ScopedObjectAccess soa(Thread::Current());
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002548 VariableSizedHandleScope hs(soa.Self());
2549 InitializeArrayClassesAndCreateConflictTablesVisitor visitor(hs);
Mathieu Chartier91288d82016-04-28 09:44:54 -07002550 Runtime::Current()->GetClassLinker()->VisitClassesWithoutClassesLock(&visitor);
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002551 visitor.FillAllIMTAndConflictTables();
Mathieu Chartier085a0722016-04-01 17:33:31 -07002552 }
Vladimir Markoaad75c62016-10-03 08:46:48 +00002553 if (GetCompilerOptions().IsBootImage()) {
Mathieu Chartier093ef212014-08-11 13:52:12 -07002554 // Prune garbage objects created during aborted transactions.
Andreas Gampe3db70682018-12-26 15:12:03 -08002555 Runtime::Current()->GetHeap()->CollectGarbage(/* clear_soft_references= */ true);
Mathieu Chartier093ef212014-08-11 13:52:12 -07002556 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002557}
2558
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002559template <typename CompileFn>
2560static void CompileDexFile(CompilerDriver* driver,
2561 jobject class_loader,
2562 const DexFile& dex_file,
2563 const std::vector<const DexFile*>& dex_files,
2564 ThreadPool* thread_pool,
2565 size_t thread_count,
2566 TimingLogger* timings,
2567 const char* timing_name,
2568 CompileFn compile_fn) {
2569 TimingLogger::ScopedTiming t(timing_name, timings);
2570 ParallelCompilationManager context(Runtime::Current()->GetClassLinker(),
2571 class_loader,
2572 driver,
2573 &dex_file,
2574 dex_files,
2575 thread_pool);
Vladimir Marko492a7fa2016-06-01 18:38:43 +01002576
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002577 auto compile = [&context, &compile_fn](size_t class_def_index) {
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002578 const DexFile& dex_file = *context.GetDexFile();
Andreas Gampe3e7f66b2018-09-06 10:08:18 -07002579 SCOPED_TRACE << "compile " << dex_file.GetLocation() << "@" << class_def_index;
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002580 ClassLinker* class_linker = context.GetClassLinker();
2581 jobject jclass_loader = context.GetClassLoader();
Mathieu Chartier90443472015-07-16 20:32:27 -07002582 ClassReference ref(&dex_file, class_def_index);
Andreas Gampe3f1dcd32018-12-28 09:39:56 -08002583 const dex::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
Mathieu Chartier18e26872018-06-04 17:19:02 -07002584 ClassAccessor accessor(dex_file, class_def_index);
Vladimir Marko2afaff72018-11-30 17:01:50 +00002585 CompilerDriver* const driver = context.GetCompiler();
Mathieu Chartier90443472015-07-16 20:32:27 -07002586 // Skip compiling classes with generic verifier failures since they will still fail at runtime
Vladimir Marko2afaff72018-11-30 17:01:50 +00002587 if (driver->GetCompilerOptions().GetVerificationResults()->IsClassRejected(ref)) {
Ian Rogers1ff3c982014-08-12 02:30:58 -07002588 return;
2589 }
Mathieu Chartier736b5602015-09-02 14:54:11 -07002590 // Use a scoped object access to perform to the quick SkipClass check.
Mathieu Chartier736b5602015-09-02 14:54:11 -07002591 ScopedObjectAccess soa(Thread::Current());
2592 StackHandleScope<3> hs(soa.Self());
2593 Handle<mirror::ClassLoader> class_loader(
Mathieu Chartier0795f232016-09-27 18:43:30 -07002594 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader)));
Mathieu Chartier736b5602015-09-02 14:54:11 -07002595 Handle<mirror::Class> klass(
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07002596 hs.NewHandle(class_linker->FindClass(soa.Self(), accessor.GetDescriptor(), class_loader)));
Mathieu Chartier736b5602015-09-02 14:54:11 -07002597 Handle<mirror::DexCache> dex_cache;
Andreas Gampefa4333d2017-02-14 11:10:34 -08002598 if (klass == nullptr) {
Mathieu Chartier736b5602015-09-02 14:54:11 -07002599 soa.Self()->AssertPendingException();
2600 soa.Self()->ClearException();
2601 dex_cache = hs.NewHandle(class_linker->FindDexCache(soa.Self(), dex_file));
2602 } else if (SkipClass(jclass_loader, dex_file, klass.Get())) {
2603 return;
Andreas Gampebb30d5d2018-04-23 09:59:25 -07002604 } else if (&klass->GetDexFile() != &dex_file) {
2605 // Skip a duplicate class (as the resolved class is from another, earlier dex file).
2606 return; // Do not update state.
Mathieu Chartier736b5602015-09-02 14:54:11 -07002607 } else {
2608 dex_cache = hs.NewHandle(klass->GetDexCache());
2609 }
2610
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07002611 // Avoid suspension if there are no methods to compile.
2612 if (accessor.NumDirectMethods() + accessor.NumVirtualMethods() == 0) {
Mathieu Chartier90443472015-07-16 20:32:27 -07002613 return;
Brian Carlstrom7940e442013-07-12 13:46:57 -07002614 }
Mathieu Chartier90443472015-07-16 20:32:27 -07002615
Mathieu Chartier736b5602015-09-02 14:54:11 -07002616 // Go to native so that we don't block GC during compilation.
Mathieu Chartierf1d666e2015-09-03 16:13:34 -07002617 ScopedThreadSuspension sts(soa.Self(), kNative);
Mathieu Chartier736b5602015-09-02 14:54:11 -07002618
Mathieu Chartier90443472015-07-16 20:32:27 -07002619 // Can we run DEX-to-DEX compiler on this class ?
Mathieu Chartiera79efdb2018-01-18 16:31:01 -08002620 optimizer::DexToDexCompiler::CompilationLevel dex_to_dex_compilation_level =
Mathieu Chartier736b5602015-09-02 14:54:11 -07002621 GetDexToDexCompilationLevel(soa.Self(), *driver, jclass_loader, dex_file, class_def);
Andreas Gampe5eb0d382015-07-23 01:19:26 -07002622
Mathieu Chartierb7c273c2017-11-10 18:07:56 -08002623 // Compile direct and virtual methods.
2624 int64_t previous_method_idx = -1;
Mathieu Chartier0d896bd2018-05-25 00:20:27 -07002625 for (const ClassAccessor::Method& method : accessor.GetMethods()) {
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07002626 const uint32_t method_idx = method.GetIndex();
Mathieu Chartierb7c273c2017-11-10 18:07:56 -08002627 if (method_idx == previous_method_idx) {
Mathieu Chartier90443472015-07-16 20:32:27 -07002628 // smali can create dex files with two encoded_methods sharing the same method_idx
2629 // http://code.google.com/p/smali/issues/detail?id=119
Mathieu Chartier0d896bd2018-05-25 00:20:27 -07002630 continue;
Mathieu Chartier90443472015-07-16 20:32:27 -07002631 }
Mathieu Chartierb7c273c2017-11-10 18:07:56 -08002632 previous_method_idx = method_idx;
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002633 compile_fn(soa.Self(),
2634 driver,
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07002635 method.GetCodeItem(),
2636 method.GetAccessFlags(),
2637 method.GetInvokeType(class_def.access_flags_),
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002638 class_def_index,
2639 method_idx,
2640 class_loader,
2641 dex_file,
2642 dex_to_dex_compilation_level,
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002643 dex_cache);
Mathieu Chartier0d896bd2018-05-25 00:20:27 -07002644 }
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002645 };
2646 context.ForAllLambda(0, dex_file.NumClassDefs(), compile, thread_count);
2647}
2648
2649void CompilerDriver::Compile(jobject class_loader,
2650 const std::vector<const DexFile*>& dex_files,
2651 TimingLogger* timings) {
2652 if (kDebugProfileGuidedCompilation) {
Vladimir Marko1a2a5cd2018-11-07 15:39:48 +00002653 const ProfileCompilationInfo* profile_compilation_info =
2654 GetCompilerOptions().GetProfileCompilationInfo();
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002655 LOG(INFO) << "[ProfileGuidedCompilation] " <<
Vladimir Marko1a2a5cd2018-11-07 15:39:48 +00002656 ((profile_compilation_info == nullptr)
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002657 ? "null"
Vladimir Marko1a2a5cd2018-11-07 15:39:48 +00002658 : profile_compilation_info->DumpInfo(dex_files));
Brian Carlstrom7940e442013-07-12 13:46:57 -07002659 }
Mathieu Chartier90443472015-07-16 20:32:27 -07002660
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002661 dex_to_dex_compiler_.ClearState();
2662 for (const DexFile* dex_file : dex_files) {
2663 CHECK(dex_file != nullptr);
2664 CompileDexFile(this,
2665 class_loader,
2666 *dex_file,
2667 dex_files,
2668 parallel_thread_pool_.get(),
2669 parallel_thread_count_,
2670 timings,
2671 "Compile Dex File Quick",
2672 CompileMethodQuick);
2673 const ArenaPool* const arena_pool = Runtime::Current()->GetArenaPool();
2674 const size_t arena_alloc = arena_pool->GetBytesAllocated();
2675 max_arena_alloc_ = std::max(arena_alloc, max_arena_alloc_);
2676 Runtime::Current()->ReclaimArenaPoolMemory();
2677 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002678
Mathieu Chartier279e3a32018-01-24 18:17:55 -08002679 if (dex_to_dex_compiler_.NumCodeItemsToQuicken(Thread::Current()) > 0u) {
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002680 // TODO: Not visit all of the dex files, its probably rare that only one would have quickened
2681 // methods though.
2682 for (const DexFile* dex_file : dex_files) {
2683 CompileDexFile(this,
2684 class_loader,
2685 *dex_file,
2686 dex_files,
2687 parallel_thread_pool_.get(),
2688 parallel_thread_count_,
2689 timings,
2690 "Compile Dex File Dex2Dex",
2691 CompileMethodDex2Dex);
2692 }
2693 dex_to_dex_compiler_.ClearState();
2694 }
2695
2696 VLOG(compiler) << "Compile: " << GetMemoryUsageString(false);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002697}
2698
Andreas Gampe5eb0d382015-07-23 01:19:26 -07002699void CompilerDriver::AddCompiledMethod(const MethodReference& method_ref,
Vladimir Marko8e524ad2018-07-13 10:27:43 +01002700 CompiledMethod* const compiled_method) {
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002701 DCHECK(GetCompiledMethod(method_ref) == nullptr) << method_ref.PrettyMethod();
2702 MethodTable::InsertResult result = compiled_methods_.Insert(method_ref,
2703 /*expected*/ nullptr,
2704 compiled_method);
Mathieu Chartieracab8d42016-11-23 13:45:58 -08002705 CHECK(result == MethodTable::kInsertResultSuccess);
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002706 DCHECK(GetCompiledMethod(method_ref) != nullptr) << method_ref.PrettyMethod();
Brian Carlstrom7940e442013-07-12 13:46:57 -07002707}
2708
Mathieu Chartier279e3a32018-01-24 18:17:55 -08002709CompiledMethod* CompilerDriver::RemoveCompiledMethod(const MethodReference& method_ref) {
2710 CompiledMethod* ret = nullptr;
2711 CHECK(compiled_methods_.Remove(method_ref, &ret));
2712 return ret;
2713}
2714
Vladimir Marko2c64a832018-01-04 11:31:56 +00002715bool CompilerDriver::GetCompiledClass(const ClassReference& ref, ClassStatus* status) const {
Andreas Gampebb846102017-05-11 21:03:35 -07002716 DCHECK(status != nullptr);
Mathieu Chartier1a088d42017-07-18 11:43:57 -07002717 // The table doesn't know if something wasn't inserted. For this case it will return
Vladimir Marko2c64a832018-01-04 11:31:56 +00002718 // ClassStatus::kNotReady. To handle this, just assume anything we didn't try to verify
2719 // is not compiled.
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002720 if (!compiled_classes_.Get(ref, status) ||
Vladimir Marko2c64a832018-01-04 11:31:56 +00002721 *status < ClassStatus::kRetryVerificationAtRuntime) {
Andreas Gampebb846102017-05-11 21:03:35 -07002722 return false;
Brian Carlstrom7940e442013-07-12 13:46:57 -07002723 }
Andreas Gampebb846102017-05-11 21:03:35 -07002724 return true;
Brian Carlstrom7940e442013-07-12 13:46:57 -07002725}
2726
Vladimir Marko2c64a832018-01-04 11:31:56 +00002727ClassStatus CompilerDriver::GetClassStatus(const ClassReference& ref) const {
2728 ClassStatus status = ClassStatus::kNotReady;
Nicolas Geoffray486dda02017-09-11 14:15:52 +01002729 if (!GetCompiledClass(ref, &status)) {
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002730 classpath_classes_.Get(ref, &status);
Nicolas Geoffray486dda02017-09-11 14:15:52 +01002731 }
2732 return status;
2733}
2734
Vladimir Marko2c64a832018-01-04 11:31:56 +00002735void CompilerDriver::RecordClassStatus(const ClassReference& ref, ClassStatus status) {
Nicolas Geoffrayade72d62016-12-15 13:20:02 +00002736 switch (status) {
Vladimir Marko2c64a832018-01-04 11:31:56 +00002737 case ClassStatus::kErrorResolved:
2738 case ClassStatus::kErrorUnresolved:
2739 case ClassStatus::kNotReady:
2740 case ClassStatus::kResolved:
2741 case ClassStatus::kRetryVerificationAtRuntime:
2742 case ClassStatus::kVerified:
2743 case ClassStatus::kSuperclassValidated:
2744 case ClassStatus::kInitialized:
Nicolas Geoffrayade72d62016-12-15 13:20:02 +00002745 break; // Expected states.
2746 default:
2747 LOG(FATAL) << "Unexpected class status for class "
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002748 << PrettyDescriptor(
2749 ref.dex_file->GetClassDescriptor(ref.dex_file->GetClassDef(ref.index)))
Nicolas Geoffrayade72d62016-12-15 13:20:02 +00002750 << " of " << status;
2751 }
2752
Mathieu Chartier1a088d42017-07-18 11:43:57 -07002753 ClassStateTable::InsertResult result;
Nicolas Geoffray486dda02017-09-11 14:15:52 +01002754 ClassStateTable* table = &compiled_classes_;
Mathieu Chartier1a088d42017-07-18 11:43:57 -07002755 do {
Vladimir Marko2c64a832018-01-04 11:31:56 +00002756 ClassStatus existing = ClassStatus::kNotReady;
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002757 if (!table->Get(ref, &existing)) {
Nicolas Geoffray486dda02017-09-11 14:15:52 +01002758 // A classpath class.
Mathieu Chartier010f5cc2017-07-24 15:53:46 -07002759 if (kIsDebugBuild) {
2760 // Check to make sure it's not a dex file for an oat file we are compiling since these
2761 // should always succeed. These do not include classes in for used libraries.
Vladimir Marko213ee2d2018-06-22 11:56:34 +01002762 for (const DexFile* dex_file : GetCompilerOptions().GetDexFilesForOatFile()) {
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002763 CHECK_NE(ref.dex_file, dex_file) << ref.dex_file->GetLocation();
Mathieu Chartier010f5cc2017-07-24 15:53:46 -07002764 }
2765 }
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002766 if (!classpath_classes_.HaveDexFile(ref.dex_file)) {
Nicolas Geoffray486dda02017-09-11 14:15:52 +01002767 // Boot classpath dex file.
2768 return;
2769 }
2770 table = &classpath_classes_;
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002771 table->Get(ref, &existing);
Mathieu Chartier010f5cc2017-07-24 15:53:46 -07002772 }
Mathieu Chartier1a088d42017-07-18 11:43:57 -07002773 if (existing >= status) {
2774 // Existing status is already better than we expect, break.
2775 break;
2776 }
Nicolas Geoffrayade72d62016-12-15 13:20:02 +00002777 // Update the status if we now have a greater one. This happens with vdex,
2778 // which records a class is verified, but does not resolve it.
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002779 result = table->Insert(ref, existing, status);
2780 CHECK(result != ClassStateTable::kInsertResultInvalidDexFile) << ref.dex_file->GetLocation();
Mathieu Chartier1a088d42017-07-18 11:43:57 -07002781 } while (result != ClassStateTable::kInsertResultSuccess);
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07002782}
2783
Brian Carlstrom7940e442013-07-12 13:46:57 -07002784CompiledMethod* CompilerDriver::GetCompiledMethod(MethodReference ref) const {
Mathieu Chartieracab8d42016-11-23 13:45:58 -08002785 CompiledMethod* compiled_method = nullptr;
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002786 compiled_methods_.Get(ref, &compiled_method);
Mathieu Chartieracab8d42016-11-23 13:45:58 -08002787 return compiled_method;
Brian Carlstrom7940e442013-07-12 13:46:57 -07002788}
2789
Andreas Gampe8d295f82015-01-20 14:50:21 -08002790std::string CompilerDriver::GetMemoryUsageString(bool extended) const {
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002791 std::ostringstream oss;
Calin Juravle69158982016-03-16 11:53:41 +00002792 const gc::Heap* const heap = Runtime::Current()->GetHeap();
Anton Kirilovdd9473b2016-01-28 15:08:01 +00002793 const size_t java_alloc = heap->GetBytesAllocated();
Calin Juravle69158982016-03-16 11:53:41 +00002794 oss << "arena alloc=" << PrettySize(max_arena_alloc_) << " (" << max_arena_alloc_ << "B)";
Anton Kirilovdd9473b2016-01-28 15:08:01 +00002795 oss << " java alloc=" << PrettySize(java_alloc) << " (" << java_alloc << "B)";
Elliott Hughes7bf5a262015-04-02 20:55:07 -07002796#if defined(__BIONIC__) || defined(__GLIBC__)
Anton Kirilovdd9473b2016-01-28 15:08:01 +00002797 const struct mallinfo info = mallinfo();
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002798 const size_t allocated_space = static_cast<size_t>(info.uordblks);
2799 const size_t free_space = static_cast<size_t>(info.fordblks);
Anton Kirilovdd9473b2016-01-28 15:08:01 +00002800 oss << " native alloc=" << PrettySize(allocated_space) << " (" << allocated_space << "B)"
2801 << " free=" << PrettySize(free_space) << " (" << free_space << "B)";
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002802#endif
Vladimir Marko35831e82015-09-11 11:59:18 +01002803 compiled_method_storage_.DumpMemoryUsage(oss, extended);
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002804 return oss.str();
2805}
2806
Andreas Gampeace0dc12016-01-20 13:33:13 -08002807void CompilerDriver::InitializeThreadPools() {
2808 size_t parallel_count = parallel_thread_count_ > 0 ? parallel_thread_count_ - 1 : 0;
2809 parallel_thread_pool_.reset(
2810 new ThreadPool("Compiler driver thread pool", parallel_count));
2811 single_thread_pool_.reset(new ThreadPool("Single-threaded Compiler driver thread pool", 0));
2812}
2813
2814void CompilerDriver::FreeThreadPools() {
2815 parallel_thread_pool_.reset();
2816 single_thread_pool_.reset();
2817}
2818
Nicolas Geoffray486dda02017-09-11 14:15:52 +01002819void CompilerDriver::SetClasspathDexFiles(const std::vector<const DexFile*>& dex_files) {
2820 classpath_classes_.AddDexFiles(dex_files);
Mathieu Chartier72041a02017-07-14 18:23:25 -07002821}
2822
Brian Carlstrom7940e442013-07-12 13:46:57 -07002823} // namespace art