blob: 54e94d0ba203bc4e9665200138c557172de0be98 [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),
Ian Rogers72d32622014-05-06 16:20:11 -0700261 compiler_(Compiler::Create(this, compiler_kind)),
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
Ian Rogers72d32622014-05-06 16:20:11 -0700272 compiler_->Init();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700273
Andreas Gampecac31ad2017-11-06 20:01:17 -0800274 compiled_method_storage_.SetDedupeEnabled(compiler_options_->DeduplicateCode());
Brian Carlstrom7940e442013-07-12 13:46:57 -0700275}
276
277CompilerDriver::~CompilerDriver() {
Mathieu Chartier93764b82017-07-17 14:51:53 -0700278 compiled_methods_.Visit([this](const DexFileReference& ref ATTRIBUTE_UNUSED,
Mathieu Chartieracab8d42016-11-23 13:45:58 -0800279 CompiledMethod* method) {
280 if (method != nullptr) {
Vladimir Marko33f7c8a2018-11-19 10:22:01 +0000281 CompiledMethod::ReleaseSwapAllocatedCompiledMethod(GetCompiledMethodStorage(), method);
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800282 }
Mathieu Chartieracab8d42016-11-23 13:45:58 -0800283 });
Ian Rogers72d32622014-05-06 16:20:11 -0700284 compiler_->UnInit();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700285}
286
Vladimir Marko35831e82015-09-11 11:59:18 +0100287
Vladimir Markoa0431112018-06-25 09:32:54 +0100288#define CREATE_TRAMPOLINE(type, abi, offset) \
289 if (Is64BitInstructionSet(GetCompilerOptions().GetInstructionSet())) { \
290 return CreateTrampoline64(GetCompilerOptions().GetInstructionSet(), \
291 abi, \
292 type ## _ENTRYPOINT_OFFSET(PointerSize::k64, offset)); \
293 } else { \
294 return CreateTrampoline32(GetCompilerOptions().GetInstructionSet(), \
295 abi, \
296 type ## _ENTRYPOINT_OFFSET(PointerSize::k32, offset)); \
Ian Rogersdd7624d2014-03-14 17:43:00 -0700297 }
298
Vladimir Marko93205e32016-04-13 11:59:46 +0100299std::unique_ptr<const std::vector<uint8_t>> CompilerDriver::CreateJniDlsymLookup() const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700300 CREATE_TRAMPOLINE(JNI, kJniAbi, pDlsymLookup)
Ian Rogers848871b2013-08-05 10:56:33 -0700301}
302
Vladimir Marko93205e32016-04-13 11:59:46 +0100303std::unique_ptr<const std::vector<uint8_t>> CompilerDriver::CreateQuickGenericJniTrampoline()
304 const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700305 CREATE_TRAMPOLINE(QUICK, kQuickAbi, pQuickGenericJniTrampoline)
Andreas Gampe2da88232014-02-27 12:26:20 -0800306}
307
Vladimir Marko93205e32016-04-13 11:59:46 +0100308std::unique_ptr<const std::vector<uint8_t>> CompilerDriver::CreateQuickImtConflictTrampoline()
309 const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700310 CREATE_TRAMPOLINE(QUICK, kQuickAbi, pQuickImtConflictTrampoline)
Jeff Hao88474b42013-10-23 16:24:40 -0700311}
312
Vladimir Marko93205e32016-04-13 11:59:46 +0100313std::unique_ptr<const std::vector<uint8_t>> CompilerDriver::CreateQuickResolutionTrampoline()
314 const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700315 CREATE_TRAMPOLINE(QUICK, kQuickAbi, pQuickResolutionTrampoline)
Brian Carlstrom7940e442013-07-12 13:46:57 -0700316}
317
Vladimir Marko93205e32016-04-13 11:59:46 +0100318std::unique_ptr<const std::vector<uint8_t>> CompilerDriver::CreateQuickToInterpreterBridge()
319 const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700320 CREATE_TRAMPOLINE(QUICK, kQuickAbi, pQuickToInterpreterBridge)
Brian Carlstrom7940e442013-07-12 13:46:57 -0700321}
Ian Rogersdd7624d2014-03-14 17:43:00 -0700322#undef CREATE_TRAMPOLINE
Brian Carlstrom7940e442013-07-12 13:46:57 -0700323
324void CompilerDriver::CompileAll(jobject class_loader,
Brian Carlstrom45602482013-07-21 22:07:55 -0700325 const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -0800326 TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700327 DCHECK(!Runtime::Current()->IsStarted());
Andreas Gampeace0dc12016-01-20 13:33:13 -0800328
Vladimir Marko2afaff72018-11-30 17:01:50 +0000329 CheckThreadPools();
Andreas Gampeace0dc12016-01-20 13:33:13 -0800330
Vladimir Markoaad75c62016-10-03 08:46:48 +0000331 if (GetCompilerOptions().IsBootImage()) {
Nicolas Geoffray762869d2016-07-15 15:28:35 +0100332 // We don't need to setup the intrinsics for non boot image compilation, as
333 // those compilations will pick up a boot image that have the ArtMethod already
334 // set with the intrinsics flag.
Orion Hodson26ef34c2017-11-01 13:32:41 +0000335 InitializeIntrinsics();
Nicolas Geoffray762869d2016-07-15 15:28:35 +0100336 }
Andreas Gampe740667a2015-09-15 17:55:06 -0700337 // Compile:
338 // 1) Compile all classes and methods enabled for compilation. May fall back to dex-to-dex
339 // compilation.
Nicolas Geoffray49cda062017-04-21 13:08:25 +0100340 if (GetCompilerOptions().IsAnyCompilationEnabled()) {
Andreas Gampeace0dc12016-01-20 13:33:13 -0800341 Compile(class_loader, dex_files, timings);
Andreas Gampe740667a2015-09-15 17:55:06 -0700342 }
Nicolas Geoffray2d8801f2017-11-28 15:50:07 +0000343 if (GetCompilerOptions().GetDumpStats()) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700344 stats_->Dump();
345 }
346}
347
Mathieu Chartiera79efdb2018-01-18 16:31:01 -0800348static optimizer::DexToDexCompiler::CompilationLevel GetDexToDexCompilationLevel(
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700349 Thread* self, const CompilerDriver& driver, Handle<mirror::ClassLoader> class_loader,
Andreas Gampe3f1dcd32018-12-28 09:39:56 -0800350 const DexFile& dex_file, const dex::ClassDef& class_def)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700351 REQUIRES_SHARED(Locks::mutator_lock_) {
Nicolas Geoffrayf3075272018-01-08 12:41:19 +0000352 // When the dex file is uncompressed in the APK, we do not generate a copy in the .vdex
353 // file. As a result, dex2oat will map the dex file read-only, and we only need to check
354 // that to know if we can do quickening.
355 if (dex_file.GetContainer() != nullptr && dex_file.GetContainer()->IsReadOnly()) {
356 return optimizer::DexToDexCompiler::CompilationLevel::kDontDexToDexCompile;
357 }
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800358 auto* const runtime = Runtime::Current();
Nicolas Geoffray49cda062017-04-21 13:08:25 +0100359 DCHECK(driver.GetCompilerOptions().IsQuickeningCompilationEnabled());
Brian Carlstrom7940e442013-07-12 13:46:57 -0700360 const char* descriptor = dex_file.GetClassDescriptor(class_def);
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800361 ClassLinker* class_linker = runtime->GetClassLinker();
Vladimir Markoa8bba7d2018-05-30 15:18:48 +0100362 ObjPtr<mirror::Class> klass = class_linker->FindClass(self, descriptor, class_loader);
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700363 if (klass == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700364 CHECK(self->IsExceptionPending());
365 self->ClearException();
Mathieu Chartiera79efdb2018-01-18 16:31:01 -0800366 return optimizer::DexToDexCompiler::CompilationLevel::kDontDexToDexCompile;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700367 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700368 // DexToDex at the kOptimize level may introduce quickened opcodes, which replace symbolic
369 // references with actual offsets. We cannot re-verify such instructions.
370 //
371 // We store the verification information in the class status in the oat file, which the linker
372 // can validate (checksums) and use to skip load-time verification. It is thus safe to
373 // optimize when a class has been fully verified before.
Mathieu Chartiera79efdb2018-01-18 16:31:01 -0800374 optimizer::DexToDexCompiler::CompilationLevel max_level =
375 optimizer::DexToDexCompiler::CompilationLevel::kOptimize;
Alex Lighte40dd382017-01-25 17:44:53 -0800376 if (driver.GetCompilerOptions().GetDebuggable()) {
377 // We are debuggable so definitions of classes might be changed. We don't want to do any
378 // optimizations that could break that.
Mathieu Chartiera79efdb2018-01-18 16:31:01 -0800379 max_level = optimizer::DexToDexCompiler::CompilationLevel::kDontDexToDexCompile;
Alex Lighte40dd382017-01-25 17:44:53 -0800380 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700381 if (klass->IsVerified()) {
Sebastien Hertz75021222013-07-16 18:34:50 +0200382 // Class is verified so we can enable DEX-to-DEX compilation for performance.
Alex Lighte40dd382017-01-25 17:44:53 -0800383 return max_level;
Sebastien Hertz75021222013-07-16 18:34:50 +0200384 } else {
Andreas Gampe1a4bc7f2017-03-27 14:57:30 -0700385 // Class verification has failed: do not run DEX-to-DEX optimizations.
Mathieu Chartiera79efdb2018-01-18 16:31:01 -0800386 return optimizer::DexToDexCompiler::CompilationLevel::kDontDexToDexCompile;
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700387 }
388}
389
Mathieu Chartiera79efdb2018-01-18 16:31:01 -0800390static optimizer::DexToDexCompiler::CompilationLevel GetDexToDexCompilationLevel(
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700391 Thread* self,
392 const CompilerDriver& driver,
393 jobject jclass_loader,
394 const DexFile& dex_file,
Andreas Gampe3f1dcd32018-12-28 09:39:56 -0800395 const dex::ClassDef& class_def) {
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700396 ScopedObjectAccess soa(self);
397 StackHandleScope<1> hs(soa.Self());
398 Handle<mirror::ClassLoader> class_loader(
Mathieu Chartier0795f232016-09-27 18:43:30 -0700399 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader)));
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700400 return GetDexToDexCompilationLevel(self, driver, class_loader, dex_file, class_def);
401}
402
403// Does the runtime for the InstructionSet provide an implementation returned by
404// GetQuickGenericJniStub allowing down calls that aren't compiled using a JNI compiler?
405static bool InstructionSetHasGenericJniStub(InstructionSet isa) {
406 switch (isa) {
Vladimir Marko33bff252017-11-01 14:35:42 +0000407 case InstructionSet::kArm:
408 case InstructionSet::kArm64:
409 case InstructionSet::kThumb2:
410 case InstructionSet::kMips:
411 case InstructionSet::kMips64:
412 case InstructionSet::kX86:
413 case InstructionSet::kX86_64: return true;
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700414 default: return false;
415 }
416}
417
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800418template <typename CompileFn>
419static void CompileMethodHarness(
420 Thread* self,
421 CompilerDriver* driver,
Andreas Gampe3f1dcd32018-12-28 09:39:56 -0800422 const dex::CodeItem* code_item,
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800423 uint32_t access_flags,
424 InvokeType invoke_type,
425 uint16_t class_def_idx,
426 uint32_t method_idx,
427 Handle<mirror::ClassLoader> class_loader,
428 const DexFile& dex_file,
429 optimizer::DexToDexCompiler::CompilationLevel dex_to_dex_compilation_level,
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800430 Handle<mirror::DexCache> dex_cache,
431 CompileFn compile_fn) {
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700432 DCHECK(driver != nullptr);
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800433 CompiledMethod* compiled_method;
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700434 uint64_t start_ns = kTimeCompileMethod ? NanoTime() : 0;
435 MethodReference method_ref(&dex_file, method_idx);
436
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800437 compiled_method = compile_fn(self,
438 driver,
439 code_item,
440 access_flags,
441 invoke_type,
442 class_def_idx,
443 method_idx,
444 class_loader,
445 dex_file,
446 dex_to_dex_compilation_level,
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800447 dex_cache);
Igor Murashkin9d4b6da2016-07-29 09:51:58 -0700448
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700449 if (kTimeCompileMethod) {
450 uint64_t duration_ns = NanoTime() - start_ns;
451 if (duration_ns > MsToNs(driver->GetCompiler()->GetMaximumCompilationTimeBeforeWarning())) {
David Sehr709b0702016-10-13 09:12:37 -0700452 LOG(WARNING) << "Compilation of " << dex_file.PrettyMethod(method_idx)
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700453 << " took " << PrettyDuration(duration_ns);
454 }
455 }
456
457 if (compiled_method != nullptr) {
Vladimir Marko8e524ad2018-07-13 10:27:43 +0100458 driver->AddCompiledMethod(method_ref, compiled_method);
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700459 }
460
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700461 if (self->IsExceptionPending()) {
462 ScopedObjectAccess soa(self);
David Sehr709b0702016-10-13 09:12:37 -0700463 LOG(FATAL) << "Unexpected exception compiling: " << dex_file.PrettyMethod(method_idx) << "\n"
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700464 << self->GetException()->Dump();
Sebastien Hertz75021222013-07-16 18:34:50 +0200465 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700466}
467
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800468static void CompileMethodDex2Dex(
469 Thread* self,
470 CompilerDriver* driver,
Andreas Gampe3f1dcd32018-12-28 09:39:56 -0800471 const dex::CodeItem* code_item,
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800472 uint32_t access_flags,
473 InvokeType invoke_type,
474 uint16_t class_def_idx,
475 uint32_t method_idx,
476 Handle<mirror::ClassLoader> class_loader,
477 const DexFile& dex_file,
478 optimizer::DexToDexCompiler::CompilationLevel dex_to_dex_compilation_level,
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800479 Handle<mirror::DexCache> dex_cache) {
480 auto dex_2_dex_fn = [](Thread* self ATTRIBUTE_UNUSED,
481 CompilerDriver* driver,
Andreas Gampe3f1dcd32018-12-28 09:39:56 -0800482 const dex::CodeItem* code_item,
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800483 uint32_t access_flags,
484 InvokeType invoke_type,
485 uint16_t class_def_idx,
486 uint32_t method_idx,
487 Handle<mirror::ClassLoader> class_loader,
488 const DexFile& dex_file,
489 optimizer::DexToDexCompiler::CompilationLevel dex_to_dex_compilation_level,
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800490 Handle<mirror::DexCache> dex_cache ATTRIBUTE_UNUSED) -> CompiledMethod* {
491 DCHECK(driver != nullptr);
492 MethodReference method_ref(&dex_file, method_idx);
493
494 optimizer::DexToDexCompiler* const compiler = &driver->GetDexToDexCompiler();
495
496 if (compiler->ShouldCompileMethod(method_ref)) {
Vladimir Marko2afaff72018-11-30 17:01:50 +0000497 const VerificationResults* results = driver->GetCompilerOptions().GetVerificationResults();
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800498 DCHECK(results != nullptr);
499 const VerifiedMethod* verified_method = results->GetVerifiedMethod(method_ref);
500 // Do not optimize if a VerifiedMethod is missing. SafeCast elision,
501 // for example, relies on it.
502 return compiler->CompileMethod(
503 code_item,
504 access_flags,
505 invoke_type,
506 class_def_idx,
507 method_idx,
508 class_loader,
509 dex_file,
510 (verified_method != nullptr)
511 ? dex_to_dex_compilation_level
512 : optimizer::DexToDexCompiler::CompilationLevel::kDontDexToDexCompile);
513 }
514 return nullptr;
515 };
516 CompileMethodHarness(self,
517 driver,
518 code_item,
519 access_flags,
520 invoke_type,
521 class_def_idx,
522 method_idx,
523 class_loader,
524 dex_file,
525 dex_to_dex_compilation_level,
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800526 dex_cache,
527 dex_2_dex_fn);
528}
529
530static void CompileMethodQuick(
531 Thread* self,
532 CompilerDriver* driver,
Andreas Gampe3f1dcd32018-12-28 09:39:56 -0800533 const dex::CodeItem* code_item,
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800534 uint32_t access_flags,
535 InvokeType invoke_type,
536 uint16_t class_def_idx,
537 uint32_t method_idx,
538 Handle<mirror::ClassLoader> class_loader,
539 const DexFile& dex_file,
540 optimizer::DexToDexCompiler::CompilationLevel dex_to_dex_compilation_level,
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800541 Handle<mirror::DexCache> dex_cache) {
542 auto quick_fn = [](
543 Thread* self,
544 CompilerDriver* driver,
Andreas Gampe3f1dcd32018-12-28 09:39:56 -0800545 const dex::CodeItem* code_item,
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800546 uint32_t access_flags,
547 InvokeType invoke_type,
548 uint16_t class_def_idx,
549 uint32_t method_idx,
550 Handle<mirror::ClassLoader> class_loader,
551 const DexFile& dex_file,
552 optimizer::DexToDexCompiler::CompilationLevel dex_to_dex_compilation_level,
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800553 Handle<mirror::DexCache> dex_cache) {
554 DCHECK(driver != nullptr);
555 CompiledMethod* compiled_method = nullptr;
556 MethodReference method_ref(&dex_file, method_idx);
557
558 if ((access_flags & kAccNative) != 0) {
559 // Are we extracting only and have support for generic JNI down calls?
560 if (!driver->GetCompilerOptions().IsJniCompilationEnabled() &&
Vladimir Markoa0431112018-06-25 09:32:54 +0100561 InstructionSetHasGenericJniStub(driver->GetCompilerOptions().GetInstructionSet())) {
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800562 // Leaving this empty will trigger the generic JNI version
563 } else {
564 // Query any JNI optimization annotations such as @FastNative or @CriticalNative.
565 access_flags |= annotations::GetNativeMethodAnnotationAccessFlags(
566 dex_file, dex_file.GetClassDef(class_def_idx), method_idx);
567
568 compiled_method = driver->GetCompiler()->JniCompile(
569 access_flags, method_idx, dex_file, dex_cache);
570 CHECK(compiled_method != nullptr);
571 }
572 } else if ((access_flags & kAccAbstract) != 0) {
573 // Abstract methods don't have code.
574 } else {
Vladimir Marko2afaff72018-11-30 17:01:50 +0000575 const VerificationResults* results = driver->GetCompilerOptions().GetVerificationResults();
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800576 DCHECK(results != nullptr);
577 const VerifiedMethod* verified_method = results->GetVerifiedMethod(method_ref);
Mathieu Chartiera297b552018-11-07 11:41:01 -0800578 bool compile =
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800579 // Basic checks, e.g., not <clinit>.
580 results->IsCandidateForCompilation(method_ref, access_flags) &&
581 // Did not fail to create VerifiedMethod metadata.
582 verified_method != nullptr &&
583 // Do not have failures that should punt to the interpreter.
584 !verified_method->HasRuntimeThrow() &&
585 (verified_method->GetEncounteredVerificationFailures() &
586 (verifier::VERIFY_ERROR_FORCE_INTERPRETER | verifier::VERIFY_ERROR_LOCKING)) == 0 &&
587 // Is eligable for compilation by methods-to-compile filter.
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800588 driver->ShouldCompileBasedOnProfile(method_ref);
589
590 if (compile) {
591 // NOTE: if compiler declines to compile this method, it will return null.
592 compiled_method = driver->GetCompiler()->Compile(code_item,
593 access_flags,
594 invoke_type,
595 class_def_idx,
596 method_idx,
597 class_loader,
598 dex_file,
599 dex_cache);
Andreas Gampe5c803112018-04-13 17:28:34 -0700600 ProfileMethodsCheck check_type =
601 driver->GetCompilerOptions().CheckProfiledMethodsCompiled();
602 if (UNLIKELY(check_type != ProfileMethodsCheck::kNone)) {
603 bool violation = driver->ShouldCompileBasedOnProfile(method_ref) &&
604 (compiled_method == nullptr);
605 if (violation) {
606 std::ostringstream oss;
607 oss << "Failed to compile "
608 << method_ref.dex_file->PrettyMethod(method_ref.index)
609 << "[" << method_ref.dex_file->GetLocation() << "]"
610 << " as expected by profile";
611 switch (check_type) {
612 case ProfileMethodsCheck::kNone:
613 break;
614 case ProfileMethodsCheck::kLog:
615 LOG(ERROR) << oss.str();
616 break;
617 case ProfileMethodsCheck::kAbort:
618 LOG(FATAL_WITHOUT_ABORT) << oss.str();
619 _exit(1);
620 }
621 }
622 }
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800623 }
624 if (compiled_method == nullptr &&
625 dex_to_dex_compilation_level !=
626 optimizer::DexToDexCompiler::CompilationLevel::kDontDexToDexCompile) {
627 DCHECK(!Runtime::Current()->UseJitCompilation());
628 // TODO: add a command-line option to disable DEX-to-DEX compilation ?
Mathieu Chartier279e3a32018-01-24 18:17:55 -0800629 driver->GetDexToDexCompiler().MarkForCompilation(self, method_ref);
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800630 }
631 }
632 return compiled_method;
633 };
634 CompileMethodHarness(self,
635 driver,
636 code_item,
637 access_flags,
638 invoke_type,
639 class_def_idx,
640 method_idx,
641 class_loader,
642 dex_file,
643 dex_to_dex_compilation_level,
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800644 dex_cache,
645 quick_fn);
646}
647
Vladimir Markodc4bcce2018-06-21 16:15:42 +0100648// Compile a single Method. (For testing only.)
649void CompilerDriver::CompileOne(Thread* self,
650 jobject class_loader,
651 const DexFile& dex_file,
652 uint16_t class_def_idx,
653 uint32_t method_idx,
654 uint32_t access_flags,
655 InvokeType invoke_type,
Andreas Gampe3f1dcd32018-12-28 09:39:56 -0800656 const dex::CodeItem* code_item,
Vladimir Markodc4bcce2018-06-21 16:15:42 +0100657 Handle<mirror::DexCache> dex_cache,
658 Handle<mirror::ClassLoader> h_class_loader) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700659 // Can we run DEX-to-DEX compiler on this class ?
Mathieu Chartiera79efdb2018-01-18 16:31:01 -0800660 optimizer::DexToDexCompiler::CompilationLevel dex_to_dex_compilation_level =
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700661 GetDexToDexCompilationLevel(self,
662 *this,
Vladimir Markodc4bcce2018-06-21 16:15:42 +0100663 class_loader,
664 dex_file,
665 dex_file.GetClassDef(class_def_idx));
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700666
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800667 CompileMethodQuick(self,
668 this,
669 code_item,
670 access_flags,
671 invoke_type,
672 class_def_idx,
673 method_idx,
Vladimir Markodc4bcce2018-06-21 16:15:42 +0100674 h_class_loader,
675 dex_file,
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800676 dex_to_dex_compilation_level,
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800677 dex_cache);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700678
Mathieu Chartier279e3a32018-01-24 18:17:55 -0800679 const size_t num_methods = dex_to_dex_compiler_.NumCodeItemsToQuicken(self);
Mathieu Chartiera79efdb2018-01-18 16:31:01 -0800680 if (num_methods != 0) {
681 DCHECK_EQ(num_methods, 1u);
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800682 CompileMethodDex2Dex(self,
683 this,
684 code_item,
685 access_flags,
686 invoke_type,
687 class_def_idx,
688 method_idx,
Vladimir Markodc4bcce2018-06-21 16:15:42 +0100689 h_class_loader,
690 dex_file,
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800691 dex_to_dex_compilation_level,
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800692 dex_cache);
Mathieu Chartiera79efdb2018-01-18 16:31:01 -0800693 dex_to_dex_compiler_.ClearState();
Vladimir Marko492a7fa2016-06-01 18:38:43 +0100694 }
Mathieu Chartier2535abe2015-02-17 10:38:49 -0800695}
696
Andreas Gampeace0dc12016-01-20 13:33:13 -0800697void CompilerDriver::Resolve(jobject class_loader,
698 const std::vector<const DexFile*>& dex_files,
699 TimingLogger* timings) {
700 // Resolution allocates classes and needs to run single-threaded to be deterministic.
701 bool force_determinism = GetCompilerOptions().IsForceDeterminism();
702 ThreadPool* resolve_thread_pool = force_determinism
703 ? single_thread_pool_.get()
704 : parallel_thread_pool_.get();
705 size_t resolve_thread_count = force_determinism ? 1U : parallel_thread_count_;
706
Brian Carlstrom7940e442013-07-12 13:46:57 -0700707 for (size_t i = 0; i != dex_files.size(); ++i) {
708 const DexFile* dex_file = dex_files[i];
Kenny Rootd5185342014-05-13 14:47:05 -0700709 CHECK(dex_file != nullptr);
Andreas Gampeace0dc12016-01-20 13:33:13 -0800710 ResolveDexFile(class_loader,
711 *dex_file,
712 dex_files,
713 resolve_thread_pool,
714 resolve_thread_count,
715 timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700716 }
717}
718
Mathieu Chartiercd0f38f2018-10-15 09:44:35 -0700719void CompilerDriver::ResolveConstStrings(const std::vector<const DexFile*>& dex_files,
720 bool only_startup_strings,
721 TimingLogger* timings) {
Nicolas Geoffray571d2342016-10-12 13:03:15 +0000722 ScopedObjectAccess soa(Thread::Current());
723 StackHandleScope<1> hs(soa.Self());
724 ClassLinker* const class_linker = Runtime::Current()->GetClassLinker();
725 MutableHandle<mirror::DexCache> dex_cache(hs.NewHandle<mirror::DexCache>(nullptr));
Mathieu Chartier22752772018-10-18 14:18:59 -0700726 size_t num_instructions = 0u;
Nicolas Geoffray571d2342016-10-12 13:03:15 +0000727
Andreas Gampeace0dc12016-01-20 13:33:13 -0800728 for (const DexFile* dex_file : dex_files) {
Vladimir Markocd556b02017-02-03 11:47:34 +0000729 dex_cache.Assign(class_linker->FindDexCache(soa.Self(), *dex_file));
Mathieu Chartier1ca718e2018-10-23 12:55:34 -0700730 if (only_startup_strings) {
731 // When resolving startup strings, create the preresolved strings array.
732 dex_cache->AddPreResolvedStringsArray();
733 }
Andreas Gampeace0dc12016-01-20 13:33:13 -0800734 TimingLogger::ScopedTiming t("Resolve const-string Strings", timings);
735
Mathieu Chartiera297b552018-11-07 11:41:01 -0800736 // TODO: Implement a profile-based filter for the boot image. See b/76145463.
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -0700737 for (ClassAccessor accessor : dex_file->GetClasses()) {
Vladimir Marko1a2a5cd2018-11-07 15:39:48 +0000738 const ProfileCompilationInfo* profile_compilation_info =
739 GetCompilerOptions().GetProfileCompilationInfo();
Mathieu Chartiera297b552018-11-07 11:41:01 -0800740
Mathieu Chartier22752772018-10-18 14:18:59 -0700741 const bool is_startup_class =
Vladimir Marko1a2a5cd2018-11-07 15:39:48 +0000742 profile_compilation_info != nullptr &&
743 profile_compilation_info->ContainsClass(*dex_file, accessor.GetClassIdx());
Mathieu Chartier22752772018-10-18 14:18:59 -0700744
Mathieu Chartier0d896bd2018-05-25 00:20:27 -0700745 for (const ClassAccessor::Method& method : accessor.GetMethods()) {
Mathieu Chartier22752772018-10-18 14:18:59 -0700746 const bool is_clinit = (method.GetAccessFlags() & kAccConstructor) != 0 &&
747 (method.GetAccessFlags() & kAccStatic) != 0;
748 const bool is_startup_clinit = is_startup_class && is_clinit;
749
Mathieu Chartiercd0f38f2018-10-15 09:44:35 -0700750 if (only_startup_strings &&
Vladimir Marko1a2a5cd2018-11-07 15:39:48 +0000751 profile_compilation_info != nullptr &&
752 (!profile_compilation_info->GetMethodHotness(method.GetReference()).IsStartup() &&
Mathieu Chartier22752772018-10-18 14:18:59 -0700753 !is_startup_clinit)) {
Mathieu Chartiercd0f38f2018-10-15 09:44:35 -0700754 continue;
755 }
756
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -0700757 // Resolve const-strings in the code. Done to have deterministic allocation behavior. Right
758 // now this is single-threaded for simplicity.
759 // TODO: Collect the relevant string indices in parallel, then allocate them sequentially
760 // in a stable order.
761 for (const DexInstructionPcPair& inst : method.GetInstructions()) {
762 switch (inst->Opcode()) {
763 case Instruction::CONST_STRING:
764 case Instruction::CONST_STRING_JUMBO: {
765 dex::StringIndex string_index((inst->Opcode() == Instruction::CONST_STRING)
766 ? inst->VRegB_21c()
767 : inst->VRegB_31c());
768 ObjPtr<mirror::String> string = class_linker->ResolveString(string_index, dex_cache);
769 CHECK(string != nullptr) << "Could not allocate a string when forcing determinism";
Mathieu Chartier1ca718e2018-10-23 12:55:34 -0700770 if (only_startup_strings) {
771 dex_cache->GetPreResolvedStrings()[string_index.index_] =
772 GcRoot<mirror::String>(string);
773 }
Mathieu Chartier22752772018-10-18 14:18:59 -0700774 ++num_instructions;
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -0700775 break;
776 }
Andreas Gampeace0dc12016-01-20 13:33:13 -0800777
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -0700778 default:
779 break;
780 }
781 }
Mathieu Chartier0d896bd2018-05-25 00:20:27 -0700782 }
Vladimir Marko175e7862018-03-27 09:03:13 +0000783 }
784 }
Mathieu Chartier22752772018-10-18 14:18:59 -0700785 VLOG(compiler) << "Resolved " << num_instructions << " const string instructions";
Vladimir Marko175e7862018-03-27 09:03:13 +0000786}
787
788// Initialize type check bit strings for check-cast and instance-of in the code. Done to have
789// deterministic allocation behavior. Right now this is single-threaded for simplicity.
790// TODO: Collect the relevant type indices in parallel, then process them sequentially in a
791// stable order.
792
793static void InitializeTypeCheckBitstrings(CompilerDriver* driver,
794 ClassLinker* class_linker,
795 Handle<mirror::DexCache> dex_cache,
796 const DexFile& dex_file,
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -0700797 const ClassAccessor::Method& method)
Vladimir Marko175e7862018-03-27 09:03:13 +0000798 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -0700799 for (const DexInstructionPcPair& inst : method.GetInstructions()) {
Vladimir Marko175e7862018-03-27 09:03:13 +0000800 switch (inst->Opcode()) {
801 case Instruction::CHECK_CAST:
802 case Instruction::INSTANCE_OF: {
803 dex::TypeIndex type_index(
804 (inst->Opcode() == Instruction::CHECK_CAST) ? inst->VRegB_21c() : inst->VRegC_22c());
805 const char* descriptor = dex_file.StringByTypeIdx(type_index);
806 // We currently do not use the bitstring type check for array or final (including
807 // primitive) classes. We may reconsider this in future if it's deemed to be beneficial.
808 // And we cannot use it for classes outside the boot image as we do not know the runtime
809 // value of their bitstring when compiling (it may not even get assigned at runtime).
Vladimir Markodc4bcce2018-06-21 16:15:42 +0100810 if (descriptor[0] == 'L' && driver->GetCompilerOptions().IsImageClass(descriptor)) {
Vladimir Marko175e7862018-03-27 09:03:13 +0000811 ObjPtr<mirror::Class> klass =
812 class_linker->LookupResolvedType(type_index,
813 dex_cache.Get(),
Andreas Gampe3db70682018-12-26 15:12:03 -0800814 /* class_loader= */ nullptr);
Vladimir Marko175e7862018-03-27 09:03:13 +0000815 CHECK(klass != nullptr) << descriptor << " should have been previously resolved.";
816 // Now assign the bitstring if the class is not final. Keep this in sync with sharpening.
817 if (!klass->IsFinal()) {
818 MutexLock subtype_check_lock(Thread::Current(), *Locks::subtype_check_lock_);
819 SubtypeCheck<ObjPtr<mirror::Class>>::EnsureAssigned(klass);
820 }
Andreas Gampeace0dc12016-01-20 13:33:13 -0800821 }
Vladimir Marko175e7862018-03-27 09:03:13 +0000822 break;
823 }
824
825 default:
826 break;
827 }
828 }
829}
830
831static void InitializeTypeCheckBitstrings(CompilerDriver* driver,
832 const std::vector<const DexFile*>& dex_files,
833 TimingLogger* timings) {
834 ScopedObjectAccess soa(Thread::Current());
835 StackHandleScope<1> hs(soa.Self());
836 ClassLinker* const class_linker = Runtime::Current()->GetClassLinker();
837 MutableHandle<mirror::DexCache> dex_cache(hs.NewHandle<mirror::DexCache>(nullptr));
838
839 for (const DexFile* dex_file : dex_files) {
840 dex_cache.Assign(class_linker->FindDexCache(soa.Self(), *dex_file));
841 TimingLogger::ScopedTiming t("Initialize type check bitstrings", timings);
842
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -0700843 for (ClassAccessor accessor : dex_file->GetClasses()) {
Vladimir Marko175e7862018-03-27 09:03:13 +0000844 // Direct and virtual methods.
Mathieu Chartier0d896bd2018-05-25 00:20:27 -0700845 for (const ClassAccessor::Method& method : accessor.GetMethods()) {
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -0700846 InitializeTypeCheckBitstrings(driver, class_linker, dex_cache, *dex_file, method);
Mathieu Chartier0d896bd2018-05-25 00:20:27 -0700847 }
Andreas Gampeace0dc12016-01-20 13:33:13 -0800848 }
849 }
850}
851
852inline void CompilerDriver::CheckThreadPools() {
853 DCHECK(parallel_thread_pool_ != nullptr);
854 DCHECK(single_thread_pool_ != nullptr);
855}
856
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +0000857static void EnsureVerifiedOrVerifyAtRuntime(jobject jclass_loader,
858 const std::vector<const DexFile*>& dex_files) {
859 ScopedObjectAccess soa(Thread::Current());
860 StackHandleScope<2> hs(soa.Self());
861 Handle<mirror::ClassLoader> class_loader(
862 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader)));
863 MutableHandle<mirror::Class> cls(hs.NewHandle<mirror::Class>(nullptr));
864 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
865
866 for (const DexFile* dex_file : dex_files) {
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -0700867 for (ClassAccessor accessor : dex_file->GetClasses()) {
868 cls.Assign(class_linker->FindClass(soa.Self(), accessor.GetDescriptor(), class_loader));
Andreas Gampefa4333d2017-02-14 11:10:34 -0800869 if (cls == nullptr) {
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +0000870 soa.Self()->ClearException();
871 } else if (&cls->GetDexFile() == dex_file) {
Nicolas Geoffray7cc3ae52017-03-07 14:33:37 +0000872 DCHECK(cls->IsErroneous() || cls->IsVerified() || cls->ShouldVerifyAtRuntime())
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +0000873 << cls->PrettyClass()
874 << " " << cls->GetStatus();
875 }
876 }
877 }
878}
879
Andreas Gampeace0dc12016-01-20 13:33:13 -0800880void CompilerDriver::PreCompile(jobject class_loader,
881 const std::vector<const DexFile*>& dex_files,
Vladimir Marko2afaff72018-11-30 17:01:50 +0000882 TimingLogger* timings,
883 /*inout*/ HashSet<std::string>* image_classes,
884 /*out*/ VerificationResults* verification_results) {
Andreas Gampeace0dc12016-01-20 13:33:13 -0800885 CheckThreadPools();
Vladimir Marko213ee2d2018-06-22 11:56:34 +0100886
Vladimir Markodc4bcce2018-06-21 16:15:42 +0100887 VLOG(compiler) << "Before precompile " << GetMemoryUsageString(false);
888
Vladimir Marko213ee2d2018-06-22 11:56:34 +0100889 compiled_classes_.AddDexFiles(GetCompilerOptions().GetDexFilesForOatFile());
890 dex_to_dex_compiler_.SetDexFiles(GetCompilerOptions().GetDexFilesForOatFile());
891
Vladimir Markodc4bcce2018-06-21 16:15:42 +0100892 // Precompile:
893 // 1) Load image classes.
894 // 2) Resolve all classes.
895 // 3) For deterministic boot image, resolve strings for const-string instructions.
896 // 4) Attempt to verify all classes.
897 // 5) Attempt to initialize image classes, and trivially initialized classes.
898 // 6) Update the set of image classes.
899 // 7) For deterministic boot image, initialize bitstrings for type checking.
Andreas Gampeace0dc12016-01-20 13:33:13 -0800900
Vladimir Marko2afaff72018-11-30 17:01:50 +0000901 LoadImageClasses(timings, image_classes);
Andreas Gampe8d295f82015-01-20 14:50:21 -0800902 VLOG(compiler) << "LoadImageClasses: " << GetMemoryUsageString(false);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700903
Nicolas Geoffray49cda062017-04-21 13:08:25 +0100904 if (compiler_options_->IsAnyCompilationEnabled()) {
Mathieu Chartier88b74b62017-07-16 17:08:19 -0700905 // Avoid adding the dex files in the case where we aren't going to add compiled methods.
906 // This reduces RAM usage for this case.
907 for (const DexFile* dex_file : dex_files) {
908 // Can be already inserted if the caller is CompileOne. This happens for gtests.
909 if (!compiled_methods_.HaveDexFile(dex_file)) {
Mathieu Chartierfc8b4222017-09-17 13:44:24 -0700910 compiled_methods_.AddDexFile(dex_file);
Mathieu Chartier88b74b62017-07-16 17:08:19 -0700911 }
912 }
Nicolas Geoffray49cda062017-04-21 13:08:25 +0100913 // Resolve eagerly to prepare for compilation.
Andreas Gampeace0dc12016-01-20 13:33:13 -0800914 Resolve(class_loader, dex_files, timings);
Mathieu Chartiere86deef2015-03-19 13:43:37 -0700915 VLOG(compiler) << "Resolve: " << GetMemoryUsageString(false);
916 }
917
Nicolas Geoffray60ca9492016-12-20 21:15:00 +0000918 if (compiler_options_->AssumeClassesAreVerified()) {
Mathieu Chartierab972ef2014-12-03 17:38:22 -0800919 VLOG(compiler) << "Verify none mode specified, skipping verification.";
Andreas Gampeace0dc12016-01-20 13:33:13 -0800920 SetVerified(class_loader, dex_files, timings);
Mathieu Chartiere86deef2015-03-19 13:43:37 -0700921 }
922
Nicolas Geoffray60ca9492016-12-20 21:15:00 +0000923 if (!compiler_options_->IsVerificationEnabled()) {
Jeff Hao4a200f52014-04-01 14:58:49 -0700924 return;
925 }
926
Vladimir Markoaad75c62016-10-03 08:46:48 +0000927 if (GetCompilerOptions().IsForceDeterminism() && GetCompilerOptions().IsBootImage()) {
Andreas Gampeace0dc12016-01-20 13:33:13 -0800928 // Resolve strings from const-string. Do this now to have a deterministic image.
Mathieu Chartiercd0f38f2018-10-15 09:44:35 -0700929 ResolveConstStrings(dex_files, /*only_startup_strings=*/ false, timings);
Andreas Gampeace0dc12016-01-20 13:33:13 -0800930 VLOG(compiler) << "Resolve const-strings: " << GetMemoryUsageString(false);
Mathieu Chartiercd0f38f2018-10-15 09:44:35 -0700931 } else if (GetCompilerOptions().ResolveStartupConstStrings()) {
932 ResolveConstStrings(dex_files, /*only_startup_strings=*/ true, timings);
Andreas Gampeace0dc12016-01-20 13:33:13 -0800933 }
934
Vladimir Marko2afaff72018-11-30 17:01:50 +0000935 Verify(class_loader, dex_files, timings, verification_results);
Andreas Gampe8d295f82015-01-20 14:50:21 -0800936 VLOG(compiler) << "Verify: " << GetMemoryUsageString(false);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700937
Andreas Gampe6cf49e52015-03-05 13:08:45 -0800938 if (had_hard_verifier_failure_ && GetCompilerOptions().AbortOnHardVerifierFailure()) {
Andreas Gampefdfb4d42017-07-27 12:12:22 -0700939 // Avoid dumping threads. Even if we shut down the thread pools, there will still be three
940 // instances of this thread's stack.
941 LOG(FATAL_WITHOUT_ABORT) << "Had a hard failure verifying all classes, and was asked to abort "
942 << "in such situations. Please check the log.";
Andreas Gampe56c9b7c2018-02-27 18:49:26 -0800943 _exit(1);
Andreas Gampef39208f2017-10-19 15:06:59 -0700944 } else if (number_of_soft_verifier_failures_ > 0 &&
945 GetCompilerOptions().AbortOnSoftVerifierFailure()) {
946 LOG(FATAL_WITHOUT_ABORT) << "Had " << number_of_soft_verifier_failures_ << " soft failure(s) "
947 << "verifying all classes, and was asked to abort in such situations. "
948 << "Please check the log.";
Andreas Gampe56c9b7c2018-02-27 18:49:26 -0800949 _exit(1);
Andreas Gampe6cf49e52015-03-05 13:08:45 -0800950 }
951
Nicolas Geoffray49cda062017-04-21 13:08:25 +0100952 if (compiler_options_->IsAnyCompilationEnabled()) {
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +0000953 if (kIsDebugBuild) {
954 EnsureVerifiedOrVerifyAtRuntime(class_loader, dex_files);
955 }
Nicolas Geoffrayade72d62016-12-15 13:20:02 +0000956 InitializeClasses(class_loader, dex_files, timings);
957 VLOG(compiler) << "InitializeClasses: " << GetMemoryUsageString(false);
958 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700959
Vladimir Marko2afaff72018-11-30 17:01:50 +0000960 UpdateImageClasses(timings, image_classes);
Andreas Gampe8d295f82015-01-20 14:50:21 -0800961 VLOG(compiler) << "UpdateImageClasses: " << GetMemoryUsageString(false);
Vladimir Marko175e7862018-03-27 09:03:13 +0000962
963 if (kBitstringSubtypeCheckEnabled &&
964 GetCompilerOptions().IsForceDeterminism() && GetCompilerOptions().IsBootImage()) {
965 // Initialize type check bit string used by check-cast and instanceof.
966 // Do this now to have a deterministic image.
967 // Note: This is done after UpdateImageClasses() at it relies on the image classes to be final.
968 InitializeTypeCheckBitstrings(this, dex_files, timings);
969 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700970}
971
Calin Juravle226501b2015-12-11 14:41:31 +0000972bool CompilerDriver::ShouldCompileBasedOnProfile(const MethodReference& method_ref) const {
Mathieu Chartier97ab5e32017-02-22 13:35:44 -0800973 // Profile compilation info may be null if no profile is passed.
Mathieu Chartierd0af56c2017-02-17 12:56:25 -0800974 if (!CompilerFilter::DependsOnProfile(compiler_options_->GetCompilerFilter())) {
975 // Use the compiler filter instead of the presence of profile_compilation_info_ since
976 // we may want to have full speed compilation along with profile based layout optimizations.
Calin Juravle226501b2015-12-11 14:41:31 +0000977 return true;
978 }
Mathieu Chartier97ab5e32017-02-22 13:35:44 -0800979 // If we are using a profile filter but do not have a profile compilation info, compile nothing.
Vladimir Marko1a2a5cd2018-11-07 15:39:48 +0000980 const ProfileCompilationInfo* profile_compilation_info =
981 GetCompilerOptions().GetProfileCompilationInfo();
982 if (profile_compilation_info == nullptr) {
Mathieu Chartier97ab5e32017-02-22 13:35:44 -0800983 return false;
984 }
Mathieu Chartier7b135c82017-06-05 12:54:01 -0700985 // Compile only hot methods, it is the profile saver's job to decide what startup methods to mark
986 // as hot.
Vladimir Marko1a2a5cd2018-11-07 15:39:48 +0000987 bool result = profile_compilation_info->GetMethodHotness(method_ref).IsHot();
Calin Juravle226501b2015-12-11 14:41:31 +0000988
989 if (kDebugProfileGuidedCompilation) {
990 LOG(INFO) << "[ProfileGuidedCompilation] "
Mathieu Chartierfc8b4222017-09-17 13:44:24 -0700991 << (result ? "Compiled" : "Skipped") << " method:" << method_ref.PrettyMethod(true);
Calin Juravle226501b2015-12-11 14:41:31 +0000992 }
993 return result;
994}
995
Mathieu Chartiere0671ce2015-07-28 17:23:28 -0700996class ResolveCatchBlockExceptionsClassVisitor : public ClassVisitor {
997 public:
Vladimir Marko8d6768d2017-03-14 10:13:21 +0000998 ResolveCatchBlockExceptionsClassVisitor() : classes_() {}
Mathieu Chartiere0671ce2015-07-28 17:23:28 -0700999
Roland Levillainf73caca2018-08-24 17:19:07 +01001000 bool operator()(ObjPtr<mirror::Class> c) override REQUIRES_SHARED(Locks::mutator_lock_) {
Vladimir Marko8d6768d2017-03-14 10:13:21 +00001001 classes_.push_back(c);
Mathieu Chartiere4275c02015-08-06 15:34:15 -07001002 return true;
1003 }
1004
Vladimir Marko8d6768d2017-03-14 10:13:21 +00001005 void FindExceptionTypesToResolve(
1006 std::set<std::pair<dex::TypeIndex, const DexFile*>>* exceptions_to_resolve)
Vladimir Markobfb80d22017-02-14 14:08:12 +00001007 REQUIRES_SHARED(Locks::mutator_lock_) {
Vladimir Marko8d6768d2017-03-14 10:13:21 +00001008 const auto pointer_size = Runtime::Current()->GetClassLinker()->GetImagePointerSize();
1009 for (ObjPtr<mirror::Class> klass : classes_) {
1010 for (ArtMethod& method : klass->GetMethods(pointer_size)) {
1011 FindExceptionTypesToResolveForMethod(&method, exceptions_to_resolve);
1012 }
1013 }
1014 }
1015
1016 private:
1017 void FindExceptionTypesToResolveForMethod(
1018 ArtMethod* method,
1019 std::set<std::pair<dex::TypeIndex, const DexFile*>>* exceptions_to_resolve)
1020 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartier808c7a52017-12-15 11:19:33 -08001021 if (method->GetCodeItem() == nullptr) {
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001022 return; // native or abstract method
Brian Carlstrom7940e442013-07-12 13:46:57 -07001023 }
David Sehr0225f8e2018-01-31 08:52:24 +00001024 CodeItemDataAccessor accessor(method->DexInstructionData());
Mathieu Chartier808c7a52017-12-15 11:19:33 -08001025 if (accessor.TriesSize() == 0) {
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001026 return; // nothing to process
1027 }
Mathieu Chartier808c7a52017-12-15 11:19:33 -08001028 const uint8_t* encoded_catch_handler_list = accessor.GetCatchHandlerData();
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001029 size_t num_encoded_catch_handlers = DecodeUnsignedLeb128(&encoded_catch_handler_list);
1030 for (size_t i = 0; i < num_encoded_catch_handlers; i++) {
1031 int32_t encoded_catch_handler_size = DecodeSignedLeb128(&encoded_catch_handler_list);
1032 bool has_catch_all = false;
1033 if (encoded_catch_handler_size <= 0) {
1034 encoded_catch_handler_size = -encoded_catch_handler_size;
1035 has_catch_all = true;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001036 }
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001037 for (int32_t j = 0; j < encoded_catch_handler_size; j++) {
Andreas Gampea5b09a62016-11-17 15:21:22 -08001038 dex::TypeIndex encoded_catch_handler_handlers_type_idx =
1039 dex::TypeIndex(DecodeUnsignedLeb128(&encoded_catch_handler_list));
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001040 // Add to set of types to resolve if not already in the dex cache resolved types
Vladimir Marko8d6768d2017-03-14 10:13:21 +00001041 if (!method->IsResolvedTypeIdx(encoded_catch_handler_handlers_type_idx)) {
1042 exceptions_to_resolve->emplace(encoded_catch_handler_handlers_type_idx,
1043 method->GetDexFile());
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001044 }
1045 // ignore address associated with catch handler
1046 DecodeUnsignedLeb128(&encoded_catch_handler_list);
1047 }
1048 if (has_catch_all) {
1049 // ignore catch all address
1050 DecodeUnsignedLeb128(&encoded_catch_handler_list);
1051 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001052 }
1053 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001054
Vladimir Marko8d6768d2017-03-14 10:13:21 +00001055 std::vector<ObjPtr<mirror::Class>> classes_;
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001056};
1057
1058class RecordImageClassesVisitor : public ClassVisitor {
1059 public:
Vladimir Marko54159c62018-06-20 14:30:08 +01001060 explicit RecordImageClassesVisitor(HashSet<std::string>* image_classes)
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001061 : image_classes_(image_classes) {}
1062
Roland Levillainbbc6e7e2018-08-24 16:58:47 +01001063 bool operator()(ObjPtr<mirror::Class> klass) override REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001064 std::string temp;
1065 image_classes_->insert(klass->GetDescriptor(&temp));
1066 return true;
1067 }
1068
1069 private:
Vladimir Marko54159c62018-06-20 14:30:08 +01001070 HashSet<std::string>* const image_classes_;
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001071};
Brian Carlstrom7940e442013-07-12 13:46:57 -07001072
1073// Make a list of descriptors for classes to include in the image
Vladimir Marko2afaff72018-11-30 17:01:50 +00001074void CompilerDriver::LoadImageClasses(TimingLogger* timings,
1075 /*inout*/ HashSet<std::string>* image_classes) {
Kenny Rootd5185342014-05-13 14:47:05 -07001076 CHECK(timings != nullptr);
Vladimir Markoaad75c62016-10-03 08:46:48 +00001077 if (!GetCompilerOptions().IsBootImage()) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001078 return;
1079 }
1080
Mathieu Chartierf5997b42014-06-20 10:37:54 -07001081 TimingLogger::ScopedTiming t("LoadImageClasses", timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001082 // Make a first class to load all classes explicitly listed in the file
1083 Thread* self = Thread::Current();
1084 ScopedObjectAccess soa(self);
1085 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Vladimir Marko2afaff72018-11-30 17:01:50 +00001086 CHECK(image_classes != nullptr);
1087 for (auto it = image_classes->begin(), end = image_classes->end(); it != end;) {
Vladimir Markoe9c36b32013-11-21 15:49:16 +00001088 const std::string& descriptor(*it);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001089 StackHandleScope<1> hs(self);
1090 Handle<mirror::Class> klass(
1091 hs.NewHandle(class_linker->FindSystemClass(self, descriptor.c_str())));
Andreas Gampefa4333d2017-02-14 11:10:34 -08001092 if (klass == nullptr) {
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001093 VLOG(compiler) << "Failed to find class " << descriptor;
Vladimir Marko2afaff72018-11-30 17:01:50 +00001094 it = image_classes->erase(it);
Ian Rogersa436fde2013-08-27 23:34:06 -07001095 self->ClearException();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001096 } else {
1097 ++it;
1098 }
1099 }
1100
1101 // Resolve exception classes referenced by the loaded classes. The catch logic assumes
1102 // exceptions are resolved by the verifier when there is a catch block in an interested method.
1103 // Do this here so that exception classes appear to have been specified image classes.
Andreas Gampea5b09a62016-11-17 15:21:22 -08001104 std::set<std::pair<dex::TypeIndex, const DexFile*>> unresolved_exception_types;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001105 StackHandleScope<1> hs(self);
1106 Handle<mirror::Class> java_lang_Throwable(
1107 hs.NewHandle(class_linker->FindSystemClass(self, "Ljava/lang/Throwable;")));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001108 do {
1109 unresolved_exception_types.clear();
Vladimir Marko8d6768d2017-03-14 10:13:21 +00001110 {
1111 // Thread suspension is not allowed while ResolveCatchBlockExceptionsClassVisitor
1112 // is using a std::vector<ObjPtr<mirror::Class>>.
1113 ScopedAssertNoThreadSuspension ants(__FUNCTION__);
1114 ResolveCatchBlockExceptionsClassVisitor visitor;
1115 class_linker->VisitClasses(&visitor);
1116 visitor.FindExceptionTypesToResolve(&unresolved_exception_types);
1117 }
Andreas Gampea5b09a62016-11-17 15:21:22 -08001118 for (const auto& exception_type : unresolved_exception_types) {
1119 dex::TypeIndex exception_type_idx = exception_type.first;
Mathieu Chartier02e25112013-08-14 16:14:24 -07001120 const DexFile* dex_file = exception_type.second;
Vladimir Marko666ee3d2017-12-11 18:37:36 +00001121 StackHandleScope<1> hs2(self);
Mathieu Chartierf284d442016-06-02 11:48:30 -07001122 Handle<mirror::DexCache> dex_cache(hs2.NewHandle(class_linker->RegisterDexFile(*dex_file,
1123 nullptr)));
Vladimir Marko666ee3d2017-12-11 18:37:36 +00001124 ObjPtr<mirror::Class> klass =
Andreas Gampefa4333d2017-02-14 11:10:34 -08001125 (dex_cache != nullptr)
Vladimir Marko666ee3d2017-12-11 18:37:36 +00001126 ? class_linker->ResolveType(exception_type_idx,
Vladimir Markocd556b02017-02-03 11:47:34 +00001127 dex_cache,
1128 ScopedNullHandle<mirror::ClassLoader>())
Vladimir Marko666ee3d2017-12-11 18:37:36 +00001129 : nullptr;
Andreas Gampefa4333d2017-02-14 11:10:34 -08001130 if (klass == nullptr) {
Andreas Gampe3f1dcd32018-12-28 09:39:56 -08001131 const dex::TypeId& type_id = dex_file->GetTypeId(exception_type_idx);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001132 const char* descriptor = dex_file->GetTypeDescriptor(type_id);
1133 LOG(FATAL) << "Failed to resolve class " << descriptor;
1134 }
Vladimir Marko666ee3d2017-12-11 18:37:36 +00001135 DCHECK(java_lang_Throwable->IsAssignableFrom(klass));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001136 }
1137 // Resolving exceptions may load classes that reference more exceptions, iterate until no
1138 // more are found
1139 } while (!unresolved_exception_types.empty());
1140
1141 // We walk the roots looking for classes so that we'll pick up the
1142 // above classes plus any classes them depend on such super
1143 // classes, interfaces, and the required ClassLinker roots.
Vladimir Marko2afaff72018-11-30 17:01:50 +00001144 RecordImageClassesVisitor visitor(image_classes);
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001145 class_linker->VisitClasses(&visitor);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001146
Vladimir Marko2afaff72018-11-30 17:01:50 +00001147 CHECK(!image_classes->empty());
Brian Carlstrom7940e442013-07-12 13:46:57 -07001148}
1149
Vladimir Marko19a4d372016-12-08 14:41:46 +00001150static void MaybeAddToImageClasses(Thread* self,
1151 ObjPtr<mirror::Class> klass,
Vladimir Marko54159c62018-06-20 14:30:08 +01001152 HashSet<std::string>* image_classes)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001153 REQUIRES_SHARED(Locks::mutator_lock_) {
Vladimir Marko19a4d372016-12-08 14:41:46 +00001154 DCHECK_EQ(self, Thread::Current());
Mathieu Chartierf8322842014-05-16 10:59:25 -07001155 StackHandleScope<1> hs(self);
Ian Rogers1ff3c982014-08-12 02:30:58 -07001156 std::string temp;
Andreas Gampe542451c2016-07-26 09:02:02 -07001157 const PointerSize pointer_size = Runtime::Current()->GetClassLinker()->GetImagePointerSize();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001158 while (!klass->IsObjectClass()) {
Ian Rogers1ff3c982014-08-12 02:30:58 -07001159 const char* descriptor = klass->GetDescriptor(&temp);
Vladimir Marko2ef01102019-02-05 15:05:10 +00001160 if (image_classes->find(std::string_view(descriptor)) != image_classes->end()) {
Vladimir Marko54159c62018-06-20 14:30:08 +01001161 break; // Previously inserted.
Brian Carlstrom7940e442013-07-12 13:46:57 -07001162 }
Vladimir Marko54159c62018-06-20 14:30:08 +01001163 image_classes->insert(descriptor);
Ian Rogers1ff3c982014-08-12 02:30:58 -07001164 VLOG(compiler) << "Adding " << descriptor << " to image classes";
Vladimir Marko19a4d372016-12-08 14:41:46 +00001165 for (size_t i = 0, num_interfaces = klass->NumDirectInterfaces(); i != num_interfaces; ++i) {
1166 ObjPtr<mirror::Class> interface = mirror::Class::GetDirectInterface(self, klass, i);
1167 DCHECK(interface != nullptr);
1168 MaybeAddToImageClasses(self, interface, image_classes);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001169 }
Vladimir Marko19a4d372016-12-08 14:41:46 +00001170 for (auto& m : klass->GetVirtualMethods(pointer_size)) {
1171 MaybeAddToImageClasses(self, m.GetDeclaringClass(), image_classes);
Mathieu Chartiere401d142015-04-22 13:56:20 -07001172 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001173 if (klass->IsArrayClass()) {
Vladimir Marko19a4d372016-12-08 14:41:46 +00001174 MaybeAddToImageClasses(self, klass->GetComponentType(), image_classes);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001175 }
Andreas Gampe98104992018-10-16 12:49:47 -07001176 klass = klass->GetSuperClass();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001177 }
1178}
1179
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001180// Keeps all the data for the update together. Also doubles as the reference visitor.
1181// Note: we can use object pointers because we suspend all threads.
1182class ClinitImageUpdate {
1183 public:
Mathieu Chartier31e88222016-10-14 18:43:19 -07001184 static ClinitImageUpdate* Create(VariableSizedHandleScope& hs,
Vladimir Marko54159c62018-06-20 14:30:08 +01001185 HashSet<std::string>* image_class_descriptors,
Mathieu Chartier31e88222016-10-14 18:43:19 -07001186 Thread* self,
1187 ClassLinker* linker) {
1188 std::unique_ptr<ClinitImageUpdate> res(new ClinitImageUpdate(hs,
1189 image_class_descriptors,
1190 self,
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001191 linker));
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001192 return res.release();
1193 }
1194
1195 ~ClinitImageUpdate() {
1196 // Allow others to suspend again.
1197 self_->EndAssertNoThreadSuspension(old_cause_);
1198 }
1199
1200 // Visitor for VisitReferences.
Mathieu Chartier31e88222016-10-14 18:43:19 -07001201 void operator()(ObjPtr<mirror::Object> object,
1202 MemberOffset field_offset,
Andreas Gampe3db70682018-12-26 15:12:03 -08001203 bool is_static ATTRIBUTE_UNUSED) const
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001204 REQUIRES_SHARED(Locks::mutator_lock_) {
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001205 mirror::Object* ref = object->GetFieldObject<mirror::Object>(field_offset);
1206 if (ref != nullptr) {
1207 VisitClinitClassesObject(ref);
1208 }
1209 }
1210
Roland Levillain5e8d5f02016-10-18 18:03:43 +01001211 // java.lang.ref.Reference visitor for VisitReferences.
Mathieu Chartier31e88222016-10-14 18:43:19 -07001212 void operator()(ObjPtr<mirror::Class> klass ATTRIBUTE_UNUSED,
1213 ObjPtr<mirror::Reference> ref ATTRIBUTE_UNUSED) const {}
Mathieu Chartierda7c6502015-07-23 16:01:26 -07001214
1215 // Ignore class native roots.
1216 void VisitRootIfNonNull(mirror::CompressedReference<mirror::Object>* root ATTRIBUTE_UNUSED)
1217 const {}
1218 void VisitRoot(mirror::CompressedReference<mirror::Object>* root ATTRIBUTE_UNUSED) const {}
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001219
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001220 void Walk() REQUIRES_SHARED(Locks::mutator_lock_) {
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001221 // Use the initial classes as roots for a search.
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001222 for (Handle<mirror::Class> klass_root : image_classes_) {
1223 VisitClinitClassesObject(klass_root.Get());
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001224 }
Vladimir Marko19a4d372016-12-08 14:41:46 +00001225 Thread* self = Thread::Current();
1226 ScopedAssertNoThreadSuspension ants(__FUNCTION__);
Mathieu Chartier31e88222016-10-14 18:43:19 -07001227 for (Handle<mirror::Class> h_klass : to_insert_) {
Vladimir Marko19a4d372016-12-08 14:41:46 +00001228 MaybeAddToImageClasses(self, h_klass.Get(), image_class_descriptors_);
Mathieu Chartier31e88222016-10-14 18:43:19 -07001229 }
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001230 }
1231
1232 private:
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001233 class FindImageClassesVisitor : public ClassVisitor {
1234 public:
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001235 explicit FindImageClassesVisitor(VariableSizedHandleScope& hs,
1236 ClinitImageUpdate* data)
1237 : data_(data),
1238 hs_(hs) {}
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001239
Roland Levillainbbc6e7e2018-08-24 16:58:47 +01001240 bool operator()(ObjPtr<mirror::Class> klass) override REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001241 std::string temp;
Vladimir Marko2ef01102019-02-05 15:05:10 +00001242 std::string_view name(klass->GetDescriptor(&temp));
Vladimir Marko29a533e2018-10-23 12:42:00 +01001243 auto it = data_->image_class_descriptors_->find(name);
1244 if (it != data_->image_class_descriptors_->end()) {
1245 if (LIKELY(klass->IsResolved())) {
1246 data_->image_classes_.push_back(hs_.NewHandle(klass));
1247 } else {
1248 DCHECK(klass->IsErroneousUnresolved());
1249 VLOG(compiler) << "Removing unresolved class from image classes: " << name;
1250 data_->image_class_descriptors_->erase(it);
1251 }
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001252 } else {
1253 // Check whether it is initialized and has a clinit. They must be kept, too.
1254 if (klass->IsInitialized() && klass->FindClassInitializer(
1255 Runtime::Current()->GetClassLinker()->GetImagePointerSize()) != nullptr) {
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001256 data_->image_classes_.push_back(hs_.NewHandle(klass));
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001257 }
1258 }
1259 return true;
1260 }
1261
1262 private:
1263 ClinitImageUpdate* const data_;
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001264 VariableSizedHandleScope& hs_;
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001265 };
1266
Mathieu Chartier31e88222016-10-14 18:43:19 -07001267 ClinitImageUpdate(VariableSizedHandleScope& hs,
Vladimir Marko54159c62018-06-20 14:30:08 +01001268 HashSet<std::string>* image_class_descriptors,
Mathieu Chartier31e88222016-10-14 18:43:19 -07001269 Thread* self,
1270 ClassLinker* linker) REQUIRES_SHARED(Locks::mutator_lock_)
1271 : hs_(hs),
1272 image_class_descriptors_(image_class_descriptors),
1273 self_(self) {
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001274 CHECK(linker != nullptr);
1275 CHECK(image_class_descriptors != nullptr);
1276
1277 // Make sure nobody interferes with us.
1278 old_cause_ = self->StartAssertNoThreadSuspension("Boot image closure");
1279
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001280 // Find all the already-marked classes.
1281 WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001282 FindImageClassesVisitor visitor(hs_, this);
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001283 linker->VisitClasses(&visitor);
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001284 }
1285
1286 void VisitClinitClassesObject(mirror::Object* object) const
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001287 REQUIRES_SHARED(Locks::mutator_lock_) {
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001288 DCHECK(object != nullptr);
1289 if (marked_objects_.find(object) != marked_objects_.end()) {
1290 // Already processed.
1291 return;
1292 }
1293
1294 // Mark it.
1295 marked_objects_.insert(object);
1296
1297 if (object->IsClass()) {
Mathieu Chartier31e88222016-10-14 18:43:19 -07001298 // Add to the TODO list since MaybeAddToImageClasses may cause thread suspension. Thread
1299 // suspensionb is not safe to do in VisitObjects or VisitReferences.
1300 to_insert_.push_back(hs_.NewHandle(object->AsClass()));
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001301 } else {
1302 // Else visit the object's class.
1303 VisitClinitClassesObject(object->GetClass());
1304 }
1305
Mathieu Chartiere401d142015-04-22 13:56:20 -07001306 // If it is not a DexCache, visit all references.
Mathieu Chartier31e88222016-10-14 18:43:19 -07001307 if (!object->IsDexCache()) {
Mathieu Chartier059ef3d2015-08-18 13:54:21 -07001308 object->VisitReferences(*this, *this);
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001309 }
1310 }
1311
Mathieu Chartier31e88222016-10-14 18:43:19 -07001312 VariableSizedHandleScope& hs_;
1313 mutable std::vector<Handle<mirror::Class>> to_insert_;
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001314 mutable std::unordered_set<mirror::Object*> marked_objects_;
Vladimir Marko54159c62018-06-20 14:30:08 +01001315 HashSet<std::string>* const image_class_descriptors_;
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001316 std::vector<Handle<mirror::Class>> image_classes_;
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001317 Thread* const self_;
1318 const char* old_cause_;
1319
1320 DISALLOW_COPY_AND_ASSIGN(ClinitImageUpdate);
1321};
Brian Carlstrom7940e442013-07-12 13:46:57 -07001322
Vladimir Marko2afaff72018-11-30 17:01:50 +00001323void CompilerDriver::UpdateImageClasses(TimingLogger* timings,
1324 /*inout*/ HashSet<std::string>* image_classes) {
Vladimir Markoaad75c62016-10-03 08:46:48 +00001325 if (GetCompilerOptions().IsBootImage()) {
Mathieu Chartierf5997b42014-06-20 10:37:54 -07001326 TimingLogger::ScopedTiming t("UpdateImageClasses", timings);
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001327
Mathieu Chartier4f55e222015-09-04 13:26:21 -07001328 Runtime* runtime = Runtime::Current();
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001329
1330 // Suspend all threads.
Mathieu Chartier4f55e222015-09-04 13:26:21 -07001331 ScopedSuspendAll ssa(__FUNCTION__);
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001332
Mathieu Chartier31e88222016-10-14 18:43:19 -07001333 VariableSizedHandleScope hs(Thread::Current());
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001334 std::string error_msg;
Mathieu Chartier31e88222016-10-14 18:43:19 -07001335 std::unique_ptr<ClinitImageUpdate> update(ClinitImageUpdate::Create(hs,
Vladimir Marko2afaff72018-11-30 17:01:50 +00001336 image_classes,
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001337 Thread::Current(),
Mathieu Chartier31e88222016-10-14 18:43:19 -07001338 runtime->GetClassLinker()));
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001339
1340 // Do the marking.
1341 update->Walk();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001342 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001343}
1344
Vladimir Markobe0e5462014-02-26 11:24:15 +00001345void CompilerDriver::ProcessedInstanceField(bool resolved) {
1346 if (!resolved) {
1347 stats_->UnresolvedInstanceField();
1348 } else {
1349 stats_->ResolvedInstanceField();
1350 }
1351}
1352
1353void CompilerDriver::ProcessedStaticField(bool resolved, bool local) {
1354 if (!resolved) {
1355 stats_->UnresolvedStaticField();
1356 } else if (local) {
1357 stats_->ResolvedLocalStaticField();
1358 } else {
1359 stats_->ResolvedStaticField();
1360 }
1361}
1362
Mathieu Chartierc7853442015-03-27 14:35:38 -07001363ArtField* CompilerDriver::ComputeInstanceFieldInfo(uint32_t field_idx,
Vladimir Markoe11dd502017-12-08 14:09:45 +00001364 const DexCompilationUnit* mUnit,
1365 bool is_put,
Mathieu Chartierc7853442015-03-27 14:35:38 -07001366 const ScopedObjectAccess& soa) {
Vladimir Markobe0e5462014-02-26 11:24:15 +00001367 // Try to resolve the field and compiling method's class.
Mathieu Chartierc7853442015-03-27 14:35:38 -07001368 ArtField* resolved_field;
Vladimir Marko28e012a2017-12-07 11:22:59 +00001369 ObjPtr<mirror::Class> referrer_class;
Mathieu Chartier736b5602015-09-02 14:54:11 -07001370 Handle<mirror::DexCache> dex_cache(mUnit->GetDexCache());
Vladimir Markobe0e5462014-02-26 11:24:15 +00001371 {
Vladimir Markoe11dd502017-12-08 14:09:45 +00001372 Handle<mirror::ClassLoader> class_loader = mUnit->GetClassLoader();
Andreas Gampe3db70682018-12-26 15:12:03 -08001373 resolved_field = ResolveField(soa, dex_cache, class_loader, field_idx, /* is_static= */ false);
Mathieu Chartierc7853442015-03-27 14:35:38 -07001374 referrer_class = resolved_field != nullptr
Vladimir Markoe11dd502017-12-08 14:09:45 +00001375 ? ResolveCompilingMethodsClass(soa, dex_cache, class_loader, mUnit) : nullptr;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001376 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001377 bool can_link = false;
Vladimir Markobe0e5462014-02-26 11:24:15 +00001378 if (resolved_field != nullptr && referrer_class != nullptr) {
Vladimir Markobe0e5462014-02-26 11:24:15 +00001379 std::pair<bool, bool> fast_path = IsFastInstanceField(
Mathieu Chartier736b5602015-09-02 14:54:11 -07001380 dex_cache.Get(), referrer_class, resolved_field, field_idx);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001381 can_link = is_put ? fast_path.second : fast_path.first;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001382 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001383 ProcessedInstanceField(can_link);
1384 return can_link ? resolved_field : nullptr;
1385}
1386
1387bool CompilerDriver::ComputeInstanceFieldInfo(uint32_t field_idx, const DexCompilationUnit* mUnit,
1388 bool is_put, MemberOffset* field_offset,
1389 bool* is_volatile) {
1390 ScopedObjectAccess soa(Thread::Current());
Mathieu Chartierc7853442015-03-27 14:35:38 -07001391 ArtField* resolved_field = ComputeInstanceFieldInfo(field_idx, mUnit, is_put, soa);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001392
Mathieu Chartierc7853442015-03-27 14:35:38 -07001393 if (resolved_field == nullptr) {
Vladimir Markobe0e5462014-02-26 11:24:15 +00001394 // Conservative defaults.
1395 *is_volatile = true;
1396 *field_offset = MemberOffset(static_cast<size_t>(-1));
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001397 return false;
1398 } else {
1399 *is_volatile = resolved_field->IsVolatile();
1400 *field_offset = resolved_field->GetOffset();
1401 return true;
Vladimir Markobe0e5462014-02-26 11:24:15 +00001402 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001403}
1404
Vladimir Marko2730db02014-01-27 11:15:17 +00001405bool CompilerDriver::IsSafeCast(const DexCompilationUnit* mUnit, uint32_t dex_pc) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001406 if (!compiler_options_->IsVerificationEnabled()) {
1407 // If we didn't verify, every cast has to be treated as non-safe.
1408 return false;
1409 }
Vladimir Marko2730db02014-01-27 11:15:17 +00001410 DCHECK(mUnit->GetVerifiedMethod() != nullptr);
1411 bool result = mUnit->GetVerifiedMethod()->IsSafeCast(dex_pc);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001412 if (result) {
1413 stats_->SafeCast();
1414 } else {
1415 stats_->NotASafeCast();
1416 }
1417 return result;
1418}
1419
Mathieu Chartier90443472015-07-16 20:32:27 -07001420class CompilationVisitor {
1421 public:
1422 virtual ~CompilationVisitor() {}
1423 virtual void Visit(size_t index) = 0;
1424};
1425
Brian Carlstrom7940e442013-07-12 13:46:57 -07001426class ParallelCompilationManager {
1427 public:
Brian Carlstrom7940e442013-07-12 13:46:57 -07001428 ParallelCompilationManager(ClassLinker* class_linker,
1429 jobject class_loader,
1430 CompilerDriver* compiler,
1431 const DexFile* dex_file,
Andreas Gampede7b4362014-07-28 18:38:57 -07001432 const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -08001433 ThreadPool* thread_pool)
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001434 : index_(0),
1435 class_linker_(class_linker),
Brian Carlstrom7940e442013-07-12 13:46:57 -07001436 class_loader_(class_loader),
1437 compiler_(compiler),
1438 dex_file_(dex_file),
Andreas Gampede7b4362014-07-28 18:38:57 -07001439 dex_files_(dex_files),
Ian Rogers3d504072014-03-01 09:16:49 -08001440 thread_pool_(thread_pool) {}
Brian Carlstrom7940e442013-07-12 13:46:57 -07001441
1442 ClassLinker* GetClassLinker() const {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001443 CHECK(class_linker_ != nullptr);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001444 return class_linker_;
1445 }
1446
1447 jobject GetClassLoader() const {
1448 return class_loader_;
1449 }
1450
1451 CompilerDriver* GetCompiler() const {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001452 CHECK(compiler_ != nullptr);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001453 return compiler_;
1454 }
1455
1456 const DexFile* GetDexFile() const {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001457 CHECK(dex_file_ != nullptr);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001458 return dex_file_;
1459 }
1460
Andreas Gampede7b4362014-07-28 18:38:57 -07001461 const std::vector<const DexFile*>& GetDexFiles() const {
1462 return dex_files_;
1463 }
1464
Mathieu Chartier90443472015-07-16 20:32:27 -07001465 void ForAll(size_t begin, size_t end, CompilationVisitor* visitor, size_t work_units)
1466 REQUIRES(!*Locks::mutator_lock_) {
Andreas Gampe3c060ad2018-01-22 13:07:49 -08001467 ForAllLambda(begin, end, [visitor](size_t index) { visitor->Visit(index); }, work_units);
1468 }
1469
1470 template <typename Fn>
1471 void ForAllLambda(size_t begin, size_t end, Fn fn, size_t work_units)
1472 REQUIRES(!*Locks::mutator_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001473 Thread* self = Thread::Current();
1474 self->AssertNoPendingException();
1475 CHECK_GT(work_units, 0U);
1476
Orion Hodson88591fe2018-03-06 13:35:43 +00001477 index_.store(begin, std::memory_order_relaxed);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001478 for (size_t i = 0; i < work_units; ++i) {
Andreas Gampe3c060ad2018-01-22 13:07:49 -08001479 thread_pool_->AddTask(self, new ForAllClosureLambda<Fn>(this, end, fn));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001480 }
1481 thread_pool_->StartWorkers(self);
1482
1483 // Ensure we're suspended while we're blocked waiting for the other threads to finish (worker
1484 // thread destructor's called below perform join).
1485 CHECK_NE(self->GetState(), kRunnable);
1486
1487 // Wait for all the worker threads to finish.
1488 thread_pool_->Wait(self, true, false);
Andreas Gampeace0dc12016-01-20 13:33:13 -08001489
1490 // And stop the workers accepting jobs.
1491 thread_pool_->StopWorkers(self);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001492 }
1493
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001494 size_t NextIndex() {
Orion Hodson88591fe2018-03-06 13:35:43 +00001495 return index_.fetch_add(1, std::memory_order_seq_cst);
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001496 }
1497
Brian Carlstrom7940e442013-07-12 13:46:57 -07001498 private:
Andreas Gampe3c060ad2018-01-22 13:07:49 -08001499 template <typename Fn>
1500 class ForAllClosureLambda : public Task {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001501 public:
Andreas Gampe3c060ad2018-01-22 13:07:49 -08001502 ForAllClosureLambda(ParallelCompilationManager* manager, size_t end, Fn fn)
Brian Carlstrom7940e442013-07-12 13:46:57 -07001503 : manager_(manager),
Brian Carlstrom7940e442013-07-12 13:46:57 -07001504 end_(end),
Andreas Gampe3c060ad2018-01-22 13:07:49 -08001505 fn_(fn) {}
Brian Carlstrom7940e442013-07-12 13:46:57 -07001506
Roland Levillainbbc6e7e2018-08-24 16:58:47 +01001507 void Run(Thread* self) override {
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001508 while (true) {
1509 const size_t index = manager_->NextIndex();
1510 if (UNLIKELY(index >= end_)) {
1511 break;
1512 }
Andreas Gampe3c060ad2018-01-22 13:07:49 -08001513 fn_(index);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001514 self->AssertNoPendingException();
1515 }
1516 }
1517
Roland Levillainbbc6e7e2018-08-24 16:58:47 +01001518 void Finalize() override {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001519 delete this;
1520 }
Brian Carlstrom0cd7ec22013-07-17 23:40:20 -07001521
Brian Carlstrom7940e442013-07-12 13:46:57 -07001522 private:
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001523 ParallelCompilationManager* const manager_;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001524 const size_t end_;
Andreas Gampe3c060ad2018-01-22 13:07:49 -08001525 Fn fn_;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001526 };
1527
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001528 AtomicInteger index_;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001529 ClassLinker* const class_linker_;
1530 const jobject class_loader_;
1531 CompilerDriver* const compiler_;
1532 const DexFile* const dex_file_;
Andreas Gampede7b4362014-07-28 18:38:57 -07001533 const std::vector<const DexFile*>& dex_files_;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001534 ThreadPool* const thread_pool_;
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001535
1536 DISALLOW_COPY_AND_ASSIGN(ParallelCompilationManager);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001537};
1538
Jeff Hao0e49b422013-11-08 12:16:56 -08001539// A fast version of SkipClass above if the class pointer is available
1540// that avoids the expensive FindInClassPath search.
Vladimir Marko28e012a2017-12-07 11:22:59 +00001541static bool SkipClass(jobject class_loader, const DexFile& dex_file, ObjPtr<mirror::Class> klass)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001542 REQUIRES_SHARED(Locks::mutator_lock_) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001543 DCHECK(klass != nullptr);
Jeff Hao0e49b422013-11-08 12:16:56 -08001544 const DexFile& original_dex_file = *klass->GetDexCache()->GetDexFile();
1545 if (&dex_file != &original_dex_file) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001546 if (class_loader == nullptr) {
David Sehr709b0702016-10-13 09:12:37 -07001547 LOG(WARNING) << "Skipping class " << klass->PrettyDescriptor() << " from "
Jeff Hao0e49b422013-11-08 12:16:56 -08001548 << dex_file.GetLocation() << " previously found in "
1549 << original_dex_file.GetLocation();
1550 }
1551 return true;
1552 }
1553 return false;
1554}
1555
Mathieu Chartier70b63482014-06-27 17:19:04 -07001556static void CheckAndClearResolveException(Thread* self)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001557 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartier70b63482014-06-27 17:19:04 -07001558 CHECK(self->IsExceptionPending());
Nicolas Geoffray14691c52015-03-05 10:40:17 +00001559 mirror::Throwable* exception = self->GetException();
Ian Rogers1ff3c982014-08-12 02:30:58 -07001560 std::string temp;
1561 const char* descriptor = exception->GetClass()->GetDescriptor(&temp);
1562 const char* expected_exceptions[] = {
1563 "Ljava/lang/IllegalAccessError;",
1564 "Ljava/lang/IncompatibleClassChangeError;",
1565 "Ljava/lang/InstantiationError;",
Brian Carlstrom898fcb52014-08-25 23:07:30 -07001566 "Ljava/lang/LinkageError;",
Ian Rogers1ff3c982014-08-12 02:30:58 -07001567 "Ljava/lang/NoClassDefFoundError;",
1568 "Ljava/lang/NoSuchFieldError;",
1569 "Ljava/lang/NoSuchMethodError;"
1570 };
1571 bool found = false;
1572 for (size_t i = 0; (found == false) && (i < arraysize(expected_exceptions)); ++i) {
1573 if (strcmp(descriptor, expected_exceptions[i]) == 0) {
1574 found = true;
1575 }
1576 }
1577 if (!found) {
Brian Carlstrom898fcb52014-08-25 23:07:30 -07001578 LOG(FATAL) << "Unexpected exception " << exception->Dump();
Mathieu Chartier70b63482014-06-27 17:19:04 -07001579 }
1580 self->ClearException();
1581}
1582
Mathieu Chartier90443472015-07-16 20:32:27 -07001583class ResolveClassFieldsAndMethodsVisitor : public CompilationVisitor {
1584 public:
1585 explicit ResolveClassFieldsAndMethodsVisitor(const ParallelCompilationManager* manager)
1586 : manager_(manager) {}
Brian Carlstrom7940e442013-07-12 13:46:57 -07001587
Roland Levillainbbc6e7e2018-08-24 16:58:47 +01001588 void Visit(size_t class_def_index) override REQUIRES(!Locks::mutator_lock_) {
Andreas Gampe9b827ab2017-12-07 19:32:48 -08001589 ScopedTrace trace(__FUNCTION__);
Mathieu Chartier90443472015-07-16 20:32:27 -07001590 Thread* const self = Thread::Current();
1591 jobject jclass_loader = manager_->GetClassLoader();
1592 const DexFile& dex_file = *manager_->GetDexFile();
1593 ClassLinker* class_linker = manager_->GetClassLinker();
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001594
Mathieu Chartier90443472015-07-16 20:32:27 -07001595 // Method and Field are the worst. We can't resolve without either
1596 // context from the code use (to disambiguate virtual vs direct
1597 // method and instance vs static field) or from class
1598 // definitions. While the compiler will resolve what it can as it
1599 // needs it, here we try to resolve fields and methods used in class
1600 // definitions, since many of them many never be referenced by
1601 // generated code.
Andreas Gampe3f1dcd32018-12-28 09:39:56 -08001602 const dex::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
Mathieu Chartier90443472015-07-16 20:32:27 -07001603 ScopedObjectAccess soa(self);
1604 StackHandleScope<2> hs(soa.Self());
1605 Handle<mirror::ClassLoader> class_loader(
Mathieu Chartier0795f232016-09-27 18:43:30 -07001606 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader)));
Mathieu Chartier673ed3d2015-08-28 14:56:43 -07001607 Handle<mirror::DexCache> dex_cache(hs.NewHandle(class_linker->FindDexCache(
Vladimir Markocd556b02017-02-03 11:47:34 +00001608 soa.Self(), dex_file)));
Mathieu Chartier90443472015-07-16 20:32:27 -07001609 // Resolve the class.
Vladimir Marko28e012a2017-12-07 11:22:59 +00001610 ObjPtr<mirror::Class> klass =
Vladimir Marko666ee3d2017-12-11 18:37:36 +00001611 class_linker->ResolveType(class_def.class_idx_, dex_cache, class_loader);
Mathieu Chartier90443472015-07-16 20:32:27 -07001612 bool resolve_fields_and_methods;
1613 if (klass == nullptr) {
1614 // Class couldn't be resolved, for example, super-class is in a different dex file. Don't
1615 // attempt to resolve methods and fields when there is no declaring class.
1616 CheckAndClearResolveException(soa.Self());
1617 resolve_fields_and_methods = false;
1618 } else {
1619 // We successfully resolved a class, should we skip it?
1620 if (SkipClass(jclass_loader, dex_file, klass)) {
1621 return;
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001622 }
Mathieu Chartier90443472015-07-16 20:32:27 -07001623 // We want to resolve the methods and fields eagerly.
1624 resolve_fields_and_methods = true;
Ian Rogers68b56852014-08-29 20:19:11 -07001625 }
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001626
Vladimir Markoc1c34522018-10-31 13:56:49 +00001627 if (resolve_fields_and_methods) {
1628 ClassAccessor accessor(dex_file, class_def_index);
1629 // Optionally resolve fields and methods and figure out if we need a constructor barrier.
1630 auto method_visitor = [&](const ClassAccessor::Method& method)
1631 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001632 ArtMethod* resolved = class_linker->ResolveMethod<ClassLinker::ResolveMode::kNoChecks>(
1633 method.GetIndex(),
1634 dex_cache,
1635 class_loader,
Vladimir Markoc1c34522018-10-31 13:56:49 +00001636 /*referrer=*/ nullptr,
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001637 method.GetInvokeType(class_def.access_flags_));
1638 if (resolved == nullptr) {
1639 CheckAndClearResolveException(soa.Self());
Mathieu Chartier90443472015-07-16 20:32:27 -07001640 }
Vladimir Markoc1c34522018-10-31 13:56:49 +00001641 };
1642 accessor.VisitFieldsAndMethods(
1643 // static fields
1644 [&](ClassAccessor::Field& field) REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001645 ArtField* resolved = class_linker->ResolveField(
Vladimir Markoc1c34522018-10-31 13:56:49 +00001646 field.GetIndex(), dex_cache, class_loader, /*is_static=*/ true);
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001647 if (resolved == nullptr) {
1648 CheckAndClearResolveException(soa.Self());
1649 }
Vladimir Markoc1c34522018-10-31 13:56:49 +00001650 },
1651 // instance fields
1652 [&](ClassAccessor::Field& field) REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001653 ArtField* resolved = class_linker->ResolveField(
Vladimir Markoc1c34522018-10-31 13:56:49 +00001654 field.GetIndex(), dex_cache, class_loader, /*is_static=*/ false);
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001655 if (resolved == nullptr) {
1656 CheckAndClearResolveException(soa.Self());
1657 }
Vladimir Markoc1c34522018-10-31 13:56:49 +00001658 },
1659 /*direct_method_visitor=*/ method_visitor,
1660 /*virtual_method_visitor=*/ method_visitor);
1661 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001662 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001663
Mathieu Chartier90443472015-07-16 20:32:27 -07001664 private:
1665 const ParallelCompilationManager* const manager_;
1666};
1667
1668class ResolveTypeVisitor : public CompilationVisitor {
1669 public:
1670 explicit ResolveTypeVisitor(const ParallelCompilationManager* manager) : manager_(manager) {
1671 }
Roland Levillainbbc6e7e2018-08-24 16:58:47 +01001672 void Visit(size_t type_idx) override REQUIRES(!Locks::mutator_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001673 // Class derived values are more complicated, they require the linker and loader.
Mathieu Chartier90443472015-07-16 20:32:27 -07001674 ScopedObjectAccess soa(Thread::Current());
1675 ClassLinker* class_linker = manager_->GetClassLinker();
1676 const DexFile& dex_file = *manager_->GetDexFile();
1677 StackHandleScope<2> hs(soa.Self());
Mathieu Chartier90443472015-07-16 20:32:27 -07001678 Handle<mirror::ClassLoader> class_loader(
Mathieu Chartier0795f232016-09-27 18:43:30 -07001679 hs.NewHandle(soa.Decode<mirror::ClassLoader>(manager_->GetClassLoader())));
Mathieu Chartierd57d4542015-10-14 10:55:30 -07001680 Handle<mirror::DexCache> dex_cache(hs.NewHandle(class_linker->RegisterDexFile(
1681 dex_file,
Mathieu Chartierf284d442016-06-02 11:48:30 -07001682 class_loader.Get())));
Andreas Gampefa4333d2017-02-14 11:10:34 -08001683 ObjPtr<mirror::Class> klass = (dex_cache != nullptr)
Vladimir Marko666ee3d2017-12-11 18:37:36 +00001684 ? class_linker->ResolveType(dex::TypeIndex(type_idx), dex_cache, class_loader)
Vladimir Markocd556b02017-02-03 11:47:34 +00001685 : nullptr;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001686
Mathieu Chartier90443472015-07-16 20:32:27 -07001687 if (klass == nullptr) {
1688 soa.Self()->AssertPendingException();
1689 mirror::Throwable* exception = soa.Self()->GetException();
1690 VLOG(compiler) << "Exception during type resolution: " << exception->Dump();
1691 if (exception->GetClass()->DescriptorEquals("Ljava/lang/OutOfMemoryError;")) {
1692 // There's little point continuing compilation if the heap is exhausted.
1693 LOG(FATAL) << "Out of memory during type resolution for compilation";
1694 }
1695 soa.Self()->ClearException();
Ian Rogersa436fde2013-08-27 23:34:06 -07001696 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001697 }
Mathieu Chartier90443472015-07-16 20:32:27 -07001698
1699 private:
1700 const ParallelCompilationManager* const manager_;
1701};
Brian Carlstrom7940e442013-07-12 13:46:57 -07001702
Andreas Gampeace0dc12016-01-20 13:33:13 -08001703void CompilerDriver::ResolveDexFile(jobject class_loader,
1704 const DexFile& dex_file,
Andreas Gampede7b4362014-07-28 18:38:57 -07001705 const std::vector<const DexFile*>& dex_files,
Andreas Gampeace0dc12016-01-20 13:33:13 -08001706 ThreadPool* thread_pool,
1707 size_t thread_count,
1708 TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001709 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
1710
1711 // TODO: we could resolve strings here, although the string table is largely filled with class
1712 // and method names.
1713
Andreas Gampede7b4362014-07-28 18:38:57 -07001714 ParallelCompilationManager context(class_linker, class_loader, this, &dex_file, dex_files,
1715 thread_pool);
Vladimir Markoaad75c62016-10-03 08:46:48 +00001716 if (GetCompilerOptions().IsBootImage()) {
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001717 // For images we resolve all types, such as array, whereas for applications just those with
1718 // classdefs are resolved by ResolveClassFieldsAndMethods.
Mathieu Chartierf5997b42014-06-20 10:37:54 -07001719 TimingLogger::ScopedTiming t("Resolve Types", timings);
Mathieu Chartier90443472015-07-16 20:32:27 -07001720 ResolveTypeVisitor visitor(&context);
Andreas Gampeace0dc12016-01-20 13:33:13 -08001721 context.ForAll(0, dex_file.NumTypeIds(), &visitor, thread_count);
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001722 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001723
Mathieu Chartierf5997b42014-06-20 10:37:54 -07001724 TimingLogger::ScopedTiming t("Resolve MethodsAndFields", timings);
Mathieu Chartier90443472015-07-16 20:32:27 -07001725 ResolveClassFieldsAndMethodsVisitor visitor(&context);
Andreas Gampeace0dc12016-01-20 13:33:13 -08001726 context.ForAll(0, dex_file.NumClassDefs(), &visitor, thread_count);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001727}
1728
Andreas Gampeace0dc12016-01-20 13:33:13 -08001729void CompilerDriver::SetVerified(jobject class_loader,
1730 const std::vector<const DexFile*>& dex_files,
1731 TimingLogger* timings) {
1732 // This can be run in parallel.
Mathieu Chartier90443472015-07-16 20:32:27 -07001733 for (const DexFile* dex_file : dex_files) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001734 CHECK(dex_file != nullptr);
Andreas Gampeace0dc12016-01-20 13:33:13 -08001735 SetVerifiedDexFile(class_loader,
1736 *dex_file,
1737 dex_files,
1738 parallel_thread_pool_.get(),
1739 parallel_thread_count_,
1740 timings);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001741 }
1742}
1743
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001744static void LoadAndUpdateStatus(const ClassAccessor& accessor,
Vladimir Marko2c64a832018-01-04 11:31:56 +00001745 ClassStatus status,
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001746 Handle<mirror::ClassLoader> class_loader,
1747 Thread* self)
1748 REQUIRES_SHARED(Locks::mutator_lock_) {
1749 StackHandleScope<1> hs(self);
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001750 const char* descriptor = accessor.GetDescriptor();
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001751 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
1752 Handle<mirror::Class> cls(hs.NewHandle<mirror::Class>(
1753 class_linker->FindClass(self, descriptor, class_loader)));
Andreas Gampefa4333d2017-02-14 11:10:34 -08001754 if (cls != nullptr) {
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001755 // Check that the class is resolved with the current dex file. We might get
1756 // a boot image class, or a class in a different dex file for multidex, and
1757 // we should not update the status in that case.
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001758 if (&cls->GetDexFile() == &accessor.GetDexFile()) {
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001759 ObjectLock<mirror::Class> lock(self, cls);
1760 mirror::Class::SetStatus(cls, status, self);
Andreas Gampe5b20b352018-10-11 19:03:20 -07001761 if (status >= ClassStatus::kVerified) {
1762 cls->SetVerificationAttempted();
1763 }
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001764 }
1765 } else {
1766 DCHECK(self->IsExceptionPending());
1767 self->ClearException();
1768 }
1769}
1770
Nicolas Geoffray74981052017-01-16 17:54:09 +00001771bool CompilerDriver::FastVerify(jobject jclass_loader,
1772 const std::vector<const DexFile*>& dex_files,
Vladimir Marko2afaff72018-11-30 17:01:50 +00001773 TimingLogger* timings,
1774 /*out*/ VerificationResults* verification_results) {
Nicolas Geoffrayb0bbe8e2016-11-19 10:42:37 +00001775 verifier::VerifierDeps* verifier_deps =
1776 Runtime::Current()->GetCompilerCallbacks()->GetVerifierDeps();
Mathieu Chartier72041a02017-07-14 18:23:25 -07001777 // If there exist VerifierDeps that aren't the ones we just created to output, use them to verify.
1778 if (verifier_deps == nullptr || verifier_deps->OutputOnly()) {
Nicolas Geoffray74981052017-01-16 17:54:09 +00001779 return false;
1780 }
1781 TimingLogger::ScopedTiming t("Fast Verify", timings);
Calin Juravle5ffefaa2019-01-25 01:04:54 -08001782
Nicolas Geoffray74981052017-01-16 17:54:09 +00001783 ScopedObjectAccess soa(Thread::Current());
1784 StackHandleScope<2> hs(soa.Self());
1785 Handle<mirror::ClassLoader> class_loader(
1786 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader)));
David Brazdil8fd67222019-02-05 18:13:44 +00001787 std::string error_msg;
1788
1789 if (!verifier_deps->ValidateDependencies(class_loader, soa.Self(), &error_msg)) {
1790 LOG(WARNING) << "Fast verification failed: " << error_msg;
Nicolas Geoffray74981052017-01-16 17:54:09 +00001791 return false;
1792 }
1793
Nicolas Geoffray49cda062017-04-21 13:08:25 +01001794 bool compiler_only_verifies = !GetCompilerOptions().IsAnyCompilationEnabled();
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001795
Nicolas Geoffray74981052017-01-16 17:54:09 +00001796 // We successfully validated the dependencies, now update class status
1797 // of verified classes. Note that the dependencies also record which classes
1798 // could not be fully verified; we could try again, but that would hurt verification
1799 // time. So instead we assume these classes still need to be verified at
1800 // runtime.
1801 for (const DexFile* dex_file : dex_files) {
David Brazdilfeb22822019-02-13 21:25:57 +00001802 // Fetch the list of verified classes.
1803 const std::vector<bool>& verified_classes = verifier_deps->GetVerifiedClasses(*dex_file);
1804 DCHECK_EQ(verified_classes.size(), dex_file->NumClassDefs());
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001805 for (ClassAccessor accessor : dex_file->GetClasses()) {
David Brazdilfeb22822019-02-13 21:25:57 +00001806 if (verified_classes[accessor.GetClassDefIndex()]) {
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001807 if (compiler_only_verifies) {
Nicolas Geoffray74981052017-01-16 17:54:09 +00001808 // Just update the compiled_classes_ map. The compiler doesn't need to resolve
1809 // the type.
Mathieu Chartier18e26872018-06-04 17:19:02 -07001810 ClassReference ref(dex_file, accessor.GetClassDefIndex());
Mathieu Chartier2eabc612018-05-25 14:31:16 -07001811 const ClassStatus existing = ClassStatus::kNotReady;
Mathieu Chartier1a088d42017-07-18 11:43:57 -07001812 ClassStateTable::InsertResult result =
Vladimir Marko2c64a832018-01-04 11:31:56 +00001813 compiled_classes_.Insert(ref, existing, ClassStatus::kVerified);
Mathieu Chartier2eabc612018-05-25 14:31:16 -07001814 CHECK_EQ(result, ClassStateTable::kInsertResultSuccess) << ref.dex_file->GetLocation();
Nicolas Geoffray74981052017-01-16 17:54:09 +00001815 } else {
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001816 // Update the class status, so later compilation stages know they don't need to verify
Nicolas Geoffray74981052017-01-16 17:54:09 +00001817 // the class.
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001818 LoadAndUpdateStatus(accessor, ClassStatus::kVerified, class_loader, soa.Self());
Nicolas Geoffray74981052017-01-16 17:54:09 +00001819 // Create `VerifiedMethod`s for each methods, the compiler expects one for
1820 // quickening or compiling.
1821 // Note that this means:
1822 // - We're only going to compile methods that did verify.
1823 // - Quickening will not do checkcast ellision.
1824 // TODO(ngeoffray): Reconsider this once we refactor compiler filters.
Mathieu Chartier0d896bd2018-05-25 00:20:27 -07001825 for (const ClassAccessor::Method& method : accessor.GetMethods()) {
Vladimir Marko2afaff72018-11-30 17:01:50 +00001826 verification_results->CreateVerifiedMethodFor(method.GetReference());
Mathieu Chartier0d896bd2018-05-25 00:20:27 -07001827 }
Nicolas Geoffray6bb7f1b2016-11-03 10:52:49 +00001828 }
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001829 } else if (!compiler_only_verifies) {
1830 // Make sure later compilation stages know they should not try to verify
1831 // this class again.
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001832 LoadAndUpdateStatus(accessor,
Vladimir Marko2c64a832018-01-04 11:31:56 +00001833 ClassStatus::kRetryVerificationAtRuntime,
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001834 class_loader,
1835 soa.Self());
Nicolas Geoffray6bb7f1b2016-11-03 10:52:49 +00001836 }
Nicolas Geoffray6bb7f1b2016-11-03 10:52:49 +00001837 }
1838 }
Nicolas Geoffray74981052017-01-16 17:54:09 +00001839 return true;
1840}
1841
1842void CompilerDriver::Verify(jobject jclass_loader,
1843 const std::vector<const DexFile*>& dex_files,
Vladimir Marko2afaff72018-11-30 17:01:50 +00001844 TimingLogger* timings,
1845 /*out*/ VerificationResults* verification_results) {
1846 if (FastVerify(jclass_loader, dex_files, timings, verification_results)) {
Nicolas Geoffray74981052017-01-16 17:54:09 +00001847 return;
1848 }
Nicolas Geoffray6bb7f1b2016-11-03 10:52:49 +00001849
Nicolas Geoffrayb0bbe8e2016-11-19 10:42:37 +00001850 // If there is no existing `verifier_deps` (because of non-existing vdex), or
1851 // the existing `verifier_deps` is not valid anymore, create a new one for
Nicolas Geoffray6bb7f1b2016-11-03 10:52:49 +00001852 // non boot image compilation. The verifier will need it to record the new dependencies.
1853 // Then dex2oat can update the vdex file with these new dependencies.
1854 if (!GetCompilerOptions().IsBootImage()) {
Mathieu Chartier72041a02017-07-14 18:23:25 -07001855 // Dex2oat creates the verifier deps.
Nicolas Geoffray340dafa2016-11-18 16:03:10 +00001856 // Create the main VerifierDeps, and set it to this thread.
Mathieu Chartier72041a02017-07-14 18:23:25 -07001857 verifier::VerifierDeps* verifier_deps =
1858 Runtime::Current()->GetCompilerCallbacks()->GetVerifierDeps();
1859 CHECK(verifier_deps != nullptr);
Nicolas Geoffrayb0bbe8e2016-11-19 10:42:37 +00001860 Thread::Current()->SetVerifierDeps(verifier_deps);
Nicolas Geoffray340dafa2016-11-18 16:03:10 +00001861 // Create per-thread VerifierDeps to avoid contention on the main one.
1862 // We will merge them after verification.
1863 for (ThreadPoolWorker* worker : parallel_thread_pool_->GetWorkers()) {
Vladimir Marko213ee2d2018-06-22 11:56:34 +01001864 worker->GetThread()->SetVerifierDeps(
1865 new verifier::VerifierDeps(GetCompilerOptions().GetDexFilesForOatFile()));
Nicolas Geoffray340dafa2016-11-18 16:03:10 +00001866 }
Nicolas Geoffray6bb7f1b2016-11-03 10:52:49 +00001867 }
Nicolas Geoffray74981052017-01-16 17:54:09 +00001868
Nicolas Geoffray46847392017-04-28 14:56:39 +01001869 // Verification updates VerifierDeps and needs to run single-threaded to be deterministic.
1870 bool force_determinism = GetCompilerOptions().IsForceDeterminism();
1871 ThreadPool* verify_thread_pool =
1872 force_determinism ? single_thread_pool_.get() : parallel_thread_pool_.get();
1873 size_t verify_thread_count = force_determinism ? 1U : parallel_thread_count_;
Mathieu Chartier90443472015-07-16 20:32:27 -07001874 for (const DexFile* dex_file : dex_files) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001875 CHECK(dex_file != nullptr);
Nicolas Geoffray6bb7f1b2016-11-03 10:52:49 +00001876 VerifyDexFile(jclass_loader,
Andreas Gampeace0dc12016-01-20 13:33:13 -08001877 *dex_file,
1878 dex_files,
Nicolas Geoffray46847392017-04-28 14:56:39 +01001879 verify_thread_pool,
1880 verify_thread_count,
Andreas Gampeace0dc12016-01-20 13:33:13 -08001881 timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001882 }
Nicolas Geoffray340dafa2016-11-18 16:03:10 +00001883
1884 if (!GetCompilerOptions().IsBootImage()) {
Nicolas Geoffray340dafa2016-11-18 16:03:10 +00001885 // Merge all VerifierDeps into the main one.
Nicolas Geoffray74981052017-01-16 17:54:09 +00001886 verifier::VerifierDeps* verifier_deps = Thread::Current()->GetVerifierDeps();
Nicolas Geoffray340dafa2016-11-18 16:03:10 +00001887 for (ThreadPoolWorker* worker : parallel_thread_pool_->GetWorkers()) {
Vladimir Marko6c702242019-02-07 16:17:33 +00001888 std::unique_ptr<verifier::VerifierDeps> thread_deps(worker->GetThread()->GetVerifierDeps());
1889 worker->GetThread()->SetVerifierDeps(nullptr); // We just took ownership.
1890 verifier_deps->MergeWith(std::move(thread_deps),
1891 GetCompilerOptions().GetDexFilesForOatFile());
Nicolas Geoffray340dafa2016-11-18 16:03:10 +00001892 }
1893 Thread::Current()->SetVerifierDeps(nullptr);
1894 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001895}
1896
Mathieu Chartier90443472015-07-16 20:32:27 -07001897class VerifyClassVisitor : public CompilationVisitor {
1898 public:
Andreas Gampe5fd66d02016-09-12 20:22:19 -07001899 VerifyClassVisitor(const ParallelCompilationManager* manager, verifier::HardFailLogMode log_level)
Andreas Gampe6cc23ac2018-08-24 15:22:43 -07001900 : manager_(manager),
1901 log_level_(log_level),
1902 sdk_version_(Runtime::Current()->GetTargetSdkVersion()) {}
Brian Carlstrom7940e442013-07-12 13:46:57 -07001903
Roland Levillainf73caca2018-08-24 17:19:07 +01001904 void Visit(size_t class_def_index) REQUIRES(!Locks::mutator_lock_) override {
Andreas Gampe9b827ab2017-12-07 19:32:48 -08001905 ScopedTrace trace(__FUNCTION__);
Mathieu Chartier90443472015-07-16 20:32:27 -07001906 ScopedObjectAccess soa(Thread::Current());
1907 const DexFile& dex_file = *manager_->GetDexFile();
Andreas Gampe3f1dcd32018-12-28 09:39:56 -08001908 const dex::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
Mathieu Chartier90443472015-07-16 20:32:27 -07001909 const char* descriptor = dex_file.GetClassDescriptor(class_def);
1910 ClassLinker* class_linker = manager_->GetClassLinker();
1911 jobject jclass_loader = manager_->GetClassLoader();
1912 StackHandleScope<3> hs(soa.Self());
1913 Handle<mirror::ClassLoader> class_loader(
Mathieu Chartier0795f232016-09-27 18:43:30 -07001914 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader)));
Mathieu Chartier90443472015-07-16 20:32:27 -07001915 Handle<mirror::Class> klass(
1916 hs.NewHandle(class_linker->FindClass(soa.Self(), descriptor, class_loader)));
Andreas Gampe6d7abbd2017-04-24 13:19:09 -07001917 verifier::FailureKind failure_kind;
Andreas Gampefa4333d2017-02-14 11:10:34 -08001918 if (klass == nullptr) {
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001919 CHECK(soa.Self()->IsExceptionPending());
1920 soa.Self()->ClearException();
Mathieu Chartier90443472015-07-16 20:32:27 -07001921
1922 /*
1923 * At compile time, we can still structurally verify the class even if FindClass fails.
1924 * This is to ensure the class is structurally sound for compilation. An unsound class
1925 * will be rejected by the verifier and later skipped during compilation in the compiler.
1926 */
Mathieu Chartier673ed3d2015-08-28 14:56:43 -07001927 Handle<mirror::DexCache> dex_cache(hs.NewHandle(class_linker->FindDexCache(
Vladimir Markocd556b02017-02-03 11:47:34 +00001928 soa.Self(), dex_file)));
Mathieu Chartier90443472015-07-16 20:32:27 -07001929 std::string error_msg;
Nicolas Geoffray08025182016-10-25 17:20:18 +01001930 failure_kind =
1931 verifier::MethodVerifier::VerifyClass(soa.Self(),
Andreas Gampeec6e6c12015-11-05 20:39:56 -08001932 &dex_file,
1933 dex_cache,
1934 class_loader,
David Brazdil15fc7292016-09-02 14:13:18 +01001935 class_def,
Andreas Gampe53e32d12015-12-09 21:03:23 -08001936 Runtime::Current()->GetCompilerCallbacks(),
Andreas Gampeec6e6c12015-11-05 20:39:56 -08001937 true /* allow soft failures */,
Andreas Gampe7fe30232016-03-25 16:58:00 -07001938 log_level_,
Andreas Gampe6cc23ac2018-08-24 15:22:43 -07001939 sdk_version_,
Nicolas Geoffray08025182016-10-25 17:20:18 +01001940 &error_msg);
Andreas Gampe6d7abbd2017-04-24 13:19:09 -07001941 if (failure_kind == verifier::FailureKind::kHardFailure) {
Mathieu Chartier90443472015-07-16 20:32:27 -07001942 LOG(ERROR) << "Verification failed on class " << PrettyDescriptor(descriptor)
1943 << " because: " << error_msg;
1944 manager_->GetCompiler()->SetHadHardVerifierFailure();
Andreas Gampef39208f2017-10-19 15:06:59 -07001945 } else if (failure_kind == verifier::FailureKind::kSoftFailure) {
1946 manager_->GetCompiler()->AddSoftVerifierFailure();
Nicolas Geoffray7cc3ae52017-03-07 14:33:37 +00001947 } else {
1948 // Force a soft failure for the VerifierDeps. This is a sanity measure, as
1949 // the vdex file already records that the class hasn't been resolved. It avoids
1950 // trying to do future verification optimizations when processing the vdex file.
Andreas Gampef39208f2017-10-19 15:06:59 -07001951 DCHECK(failure_kind == verifier::FailureKind::kNoFailure) << failure_kind;
Andreas Gampe6d7abbd2017-04-24 13:19:09 -07001952 failure_kind = verifier::FailureKind::kSoftFailure;
Mathieu Chartier90443472015-07-16 20:32:27 -07001953 }
Andreas Gampebb30d5d2018-04-23 09:59:25 -07001954 } else if (&klass->GetDexFile() != &dex_file) {
1955 // Skip a duplicate class (as the resolved class is from another, earlier dex file).
David Brazdilfeb22822019-02-13 21:25:57 +00001956 // Record the information that we skipped this class in the vdex.
1957 // If the class resolved to a dex file not covered by the vdex, e.g. boot class path,
1958 // it is considered external, dependencies on it will be recorded and the vdex will
1959 // remain usable regardless of whether the class remains redefined or not (in the
1960 // latter case, this class will be verify-at-runtime).
1961 // On the other hand, if the class resolved to a dex file covered by the vdex, i.e.
1962 // a different dex file within the same APK, this class will always be eclipsed by it.
1963 // Recording that it was redefined is not necessary but will save class resolution
1964 // time during fast-verify.
1965 verifier::VerifierDeps::MaybeRecordClassRedefinition(dex_file, class_def);
Andreas Gampebb30d5d2018-04-23 09:59:25 -07001966 return; // Do not update state.
Mathieu Chartier90443472015-07-16 20:32:27 -07001967 } else if (!SkipClass(jclass_loader, dex_file, klass.Get())) {
David Sehr709b0702016-10-13 09:12:37 -07001968 CHECK(klass->IsResolved()) << klass->PrettyClass();
Nicolas Geoffray08025182016-10-25 17:20:18 +01001969 failure_kind = class_linker->VerifyClass(soa.Self(), klass, log_level_);
Mathieu Chartier90443472015-07-16 20:32:27 -07001970
1971 if (klass->IsErroneous()) {
1972 // ClassLinker::VerifyClass throws, which isn't useful in the compiler.
1973 CHECK(soa.Self()->IsExceptionPending());
1974 soa.Self()->ClearException();
1975 manager_->GetCompiler()->SetHadHardVerifierFailure();
Andreas Gampef39208f2017-10-19 15:06:59 -07001976 } else if (failure_kind == verifier::FailureKind::kSoftFailure) {
1977 manager_->GetCompiler()->AddSoftVerifierFailure();
Mathieu Chartier90443472015-07-16 20:32:27 -07001978 }
1979
Nicolas Geoffray7cc3ae52017-03-07 14:33:37 +00001980 CHECK(klass->ShouldVerifyAtRuntime() || klass->IsVerified() || klass->IsErroneous())
David Sehr709b0702016-10-13 09:12:37 -07001981 << klass->PrettyDescriptor() << ": state=" << klass->GetStatus();
Mathieu Chartier90443472015-07-16 20:32:27 -07001982
Nicolas Geoffrayc7da1d62017-04-19 09:36:24 +01001983 // Class has a meaningful status for the compiler now, record it.
1984 ClassReference ref(manager_->GetDexFile(), class_def_index);
1985 manager_->GetCompiler()->RecordClassStatus(ref, klass->GetStatus());
1986
Andreas Gamped278cb42017-11-22 14:13:00 -08001987 // It is *very* problematic if there are resolution errors in the boot classpath.
1988 //
1989 // It is also bad if classes fail verification. For example, we rely on things working
1990 // OK without verification when the decryption dialog is brought up. It is thus highly
1991 // recommended to compile the boot classpath with
1992 // --abort-on-hard-verifier-error --abort-on-soft-verifier-error
1993 // which is the default build system configuration.
Narayan Kamathe3eae5e2016-10-27 11:47:30 +01001994 if (kIsDebugBuild) {
Orion Hodsonc5e0d3f2017-08-22 19:00:04 +01001995 if (manager_->GetCompiler()->GetCompilerOptions().IsBootImage()) {
Andreas Gamped278cb42017-11-22 14:13:00 -08001996 if (!klass->IsResolved() || klass->IsErroneous()) {
Andreas Gampe12fadcd2017-08-03 05:06:28 -07001997 LOG(FATAL) << "Boot classpath class " << klass->PrettyClass()
Andreas Gamped278cb42017-11-22 14:13:00 -08001998 << " failed to resolve/is erroneous: state= " << klass->GetStatus();
1999 UNREACHABLE();
Andreas Gampe12fadcd2017-08-03 05:06:28 -07002000 }
Narayan Kamathe3eae5e2016-10-27 11:47:30 +01002001 }
Nicolas Geoffray7cc3ae52017-03-07 14:33:37 +00002002 if (klass->IsVerified()) {
Andreas Gampe6d7abbd2017-04-24 13:19:09 -07002003 DCHECK_EQ(failure_kind, verifier::FailureKind::kNoFailure);
Nicolas Geoffray7cc3ae52017-03-07 14:33:37 +00002004 } else if (klass->ShouldVerifyAtRuntime()) {
Andreas Gampe6d7abbd2017-04-24 13:19:09 -07002005 DCHECK_EQ(failure_kind, verifier::FailureKind::kSoftFailure);
Nicolas Geoffray7cc3ae52017-03-07 14:33:37 +00002006 } else {
Andreas Gampe6d7abbd2017-04-24 13:19:09 -07002007 DCHECK_EQ(failure_kind, verifier::FailureKind::kHardFailure);
Nicolas Geoffray7cc3ae52017-03-07 14:33:37 +00002008 }
Narayan Kamathe3eae5e2016-10-27 11:47:30 +01002009 }
Nicolas Geoffray08025182016-10-25 17:20:18 +01002010 } else {
2011 // Make the skip a soft failure, essentially being considered as verify at runtime.
Andreas Gampe6d7abbd2017-04-24 13:19:09 -07002012 failure_kind = verifier::FailureKind::kSoftFailure;
Ian Rogerse6bb3b22013-08-19 21:51:45 -07002013 }
David Brazdilfeb22822019-02-13 21:25:57 +00002014 verifier::VerifierDeps::MaybeRecordVerificationStatus(dex_file, class_def, failure_kind);
Mathieu Chartier90443472015-07-16 20:32:27 -07002015 soa.Self()->AssertNoPendingException();
Brian Carlstrom7940e442013-07-12 13:46:57 -07002016 }
Mathieu Chartier90443472015-07-16 20:32:27 -07002017
2018 private:
2019 const ParallelCompilationManager* const manager_;
Andreas Gampe5fd66d02016-09-12 20:22:19 -07002020 const verifier::HardFailLogMode log_level_;
Andreas Gampe6cc23ac2018-08-24 15:22:43 -07002021 const uint32_t sdk_version_;
Mathieu Chartier90443472015-07-16 20:32:27 -07002022};
Brian Carlstrom7940e442013-07-12 13:46:57 -07002023
Andreas Gampeace0dc12016-01-20 13:33:13 -08002024void CompilerDriver::VerifyDexFile(jobject class_loader,
2025 const DexFile& dex_file,
Andreas Gampede7b4362014-07-28 18:38:57 -07002026 const std::vector<const DexFile*>& dex_files,
Andreas Gampeace0dc12016-01-20 13:33:13 -08002027 ThreadPool* thread_pool,
2028 size_t thread_count,
2029 TimingLogger* timings) {
Mathieu Chartierf5997b42014-06-20 10:37:54 -07002030 TimingLogger::ScopedTiming t("Verify Dex File", timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002031 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Andreas Gampede7b4362014-07-28 18:38:57 -07002032 ParallelCompilationManager context(class_linker, class_loader, this, &dex_file, dex_files,
2033 thread_pool);
Andreas Gampef39208f2017-10-19 15:06:59 -07002034 bool abort_on_verifier_failures = GetCompilerOptions().AbortOnHardVerifierFailure()
2035 || GetCompilerOptions().AbortOnSoftVerifierFailure();
2036 verifier::HardFailLogMode log_level = abort_on_verifier_failures
Andreas Gampe5fd66d02016-09-12 20:22:19 -07002037 ? verifier::HardFailLogMode::kLogInternalFatal
2038 : verifier::HardFailLogMode::kLogWarning;
Andreas Gampe7fe30232016-03-25 16:58:00 -07002039 VerifyClassVisitor visitor(&context, log_level);
Andreas Gampeace0dc12016-01-20 13:33:13 -08002040 context.ForAll(0, dex_file.NumClassDefs(), &visitor, thread_count);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002041}
2042
Mathieu Chartier90443472015-07-16 20:32:27 -07002043class SetVerifiedClassVisitor : public CompilationVisitor {
2044 public:
2045 explicit SetVerifiedClassVisitor(const ParallelCompilationManager* manager) : manager_(manager) {}
2046
Roland Levillainf73caca2018-08-24 17:19:07 +01002047 void Visit(size_t class_def_index) REQUIRES(!Locks::mutator_lock_) override {
Andreas Gampe9b827ab2017-12-07 19:32:48 -08002048 ScopedTrace trace(__FUNCTION__);
Mathieu Chartier90443472015-07-16 20:32:27 -07002049 ScopedObjectAccess soa(Thread::Current());
2050 const DexFile& dex_file = *manager_->GetDexFile();
Andreas Gampe3f1dcd32018-12-28 09:39:56 -08002051 const dex::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
Mathieu Chartier90443472015-07-16 20:32:27 -07002052 const char* descriptor = dex_file.GetClassDescriptor(class_def);
2053 ClassLinker* class_linker = manager_->GetClassLinker();
2054 jobject jclass_loader = manager_->GetClassLoader();
2055 StackHandleScope<3> hs(soa.Self());
2056 Handle<mirror::ClassLoader> class_loader(
Mathieu Chartier0795f232016-09-27 18:43:30 -07002057 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader)));
Mathieu Chartier90443472015-07-16 20:32:27 -07002058 Handle<mirror::Class> klass(
2059 hs.NewHandle(class_linker->FindClass(soa.Self(), descriptor, class_loader)));
2060 // Class might have failed resolution. Then don't set it to verified.
Andreas Gampefa4333d2017-02-14 11:10:34 -08002061 if (klass != nullptr) {
Mathieu Chartier90443472015-07-16 20:32:27 -07002062 // Only do this if the class is resolved. If even resolution fails, quickening will go very,
2063 // very wrong.
Vladimir Marko72ab6842017-01-20 19:32:50 +00002064 if (klass->IsResolved() && !klass->IsErroneousResolved()) {
Vladimir Marko2c64a832018-01-04 11:31:56 +00002065 if (klass->GetStatus() < ClassStatus::kVerified) {
Mathieu Chartier90443472015-07-16 20:32:27 -07002066 ObjectLock<mirror::Class> lock(soa.Self(), klass);
2067 // Set class status to verified.
Vladimir Marko2c64a832018-01-04 11:31:56 +00002068 mirror::Class::SetStatus(klass, ClassStatus::kVerified, soa.Self());
Mathieu Chartier90443472015-07-16 20:32:27 -07002069 // Mark methods as pre-verified. If we don't do this, the interpreter will run with
2070 // access checks.
Vladimir Markoa0431112018-06-25 09:32:54 +01002071 InstructionSet instruction_set =
2072 manager_->GetCompiler()->GetCompilerOptions().GetInstructionSet();
2073 klass->SetSkipAccessChecksFlagOnAllMethods(GetInstructionSetPointerSize(instruction_set));
Igor Murashkindf707e42016-02-02 16:56:50 -08002074 klass->SetVerificationAttempted();
Mathieu Chartier90443472015-07-16 20:32:27 -07002075 }
2076 // Record the final class status if necessary.
2077 ClassReference ref(manager_->GetDexFile(), class_def_index);
2078 manager_->GetCompiler()->RecordClassStatus(ref, klass->GetStatus());
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002079 }
Mathieu Chartier90443472015-07-16 20:32:27 -07002080 } else {
2081 Thread* self = soa.Self();
2082 DCHECK(self->IsExceptionPending());
2083 self->ClearException();
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002084 }
2085 }
Mathieu Chartier90443472015-07-16 20:32:27 -07002086
2087 private:
2088 const ParallelCompilationManager* const manager_;
2089};
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002090
Andreas Gampeace0dc12016-01-20 13:33:13 -08002091void CompilerDriver::SetVerifiedDexFile(jobject class_loader,
2092 const DexFile& dex_file,
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002093 const std::vector<const DexFile*>& dex_files,
Andreas Gampeace0dc12016-01-20 13:33:13 -08002094 ThreadPool* thread_pool,
2095 size_t thread_count,
2096 TimingLogger* timings) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002097 TimingLogger::ScopedTiming t("Verify Dex File", timings);
Mathieu Chartier1a088d42017-07-18 11:43:57 -07002098 if (!compiled_classes_.HaveDexFile(&dex_file)) {
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002099 compiled_classes_.AddDexFile(&dex_file);
Mathieu Chartier1a088d42017-07-18 11:43:57 -07002100 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002101 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
2102 ParallelCompilationManager context(class_linker, class_loader, this, &dex_file, dex_files,
2103 thread_pool);
Mathieu Chartier90443472015-07-16 20:32:27 -07002104 SetVerifiedClassVisitor visitor(&context);
Andreas Gampeace0dc12016-01-20 13:33:13 -08002105 context.ForAll(0, dex_file.NumClassDefs(), &visitor, thread_count);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002106}
2107
Mathieu Chartier90443472015-07-16 20:32:27 -07002108class InitializeClassVisitor : public CompilationVisitor {
2109 public:
2110 explicit InitializeClassVisitor(const ParallelCompilationManager* manager) : manager_(manager) {}
Ian Rogersfc0e94b2013-09-23 23:51:32 -07002111
Roland Levillainbbc6e7e2018-08-24 16:58:47 +01002112 void Visit(size_t class_def_index) override {
Andreas Gampe9b827ab2017-12-07 19:32:48 -08002113 ScopedTrace trace(__FUNCTION__);
Mathieu Chartier90443472015-07-16 20:32:27 -07002114 jobject jclass_loader = manager_->GetClassLoader();
2115 const DexFile& dex_file = *manager_->GetDexFile();
Andreas Gampe3f1dcd32018-12-28 09:39:56 -08002116 const dex::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
2117 const dex::TypeId& class_type_id = dex_file.GetTypeId(class_def.class_idx_);
Mathieu Chartier90443472015-07-16 20:32:27 -07002118 const char* descriptor = dex_file.StringDataByIdx(class_type_id.descriptor_idx_);
Jeff Hao0e49b422013-11-08 12:16:56 -08002119
Mathieu Chartier90443472015-07-16 20:32:27 -07002120 ScopedObjectAccess soa(Thread::Current());
2121 StackHandleScope<3> hs(soa.Self());
2122 Handle<mirror::ClassLoader> class_loader(
Mathieu Chartier0795f232016-09-27 18:43:30 -07002123 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader)));
Mathieu Chartier90443472015-07-16 20:32:27 -07002124 Handle<mirror::Class> klass(
2125 hs.NewHandle(manager_->GetClassLinker()->FindClass(soa.Self(), descriptor, class_loader)));
2126
Mathieu Chartier41dba672018-12-21 15:06:17 -08002127 if (klass != nullptr) {
2128 if (!SkipClass(manager_->GetClassLoader(), dex_file, klass.Get())) {
2129 TryInitializeClass(klass, class_loader);
2130 }
2131 manager_->GetCompiler()->stats_->AddClassStatus(klass->GetStatus());
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002132 }
2133 // Clear any class not found or verification exceptions.
2134 soa.Self()->ClearException();
2135 }
2136
2137 // A helper function for initializing klass.
2138 void TryInitializeClass(Handle<mirror::Class> klass, Handle<mirror::ClassLoader>& class_loader)
2139 REQUIRES_SHARED(Locks::mutator_lock_) {
2140 const DexFile& dex_file = klass->GetDexFile();
Andreas Gampe3f1dcd32018-12-28 09:39:56 -08002141 const dex::ClassDef* class_def = klass->GetClassDef();
2142 const dex::TypeId& class_type_id = dex_file.GetTypeId(class_def->class_idx_);
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002143 const char* descriptor = dex_file.StringDataByIdx(class_type_id.descriptor_idx_);
2144 ScopedObjectAccessUnchecked soa(Thread::Current());
2145 StackHandleScope<3> hs(soa.Self());
Mathieu Chartierdabeb3a2017-06-12 17:10:07 -07002146 const bool is_boot_image = manager_->GetCompiler()->GetCompilerOptions().IsBootImage();
Mathieu Chartier17498e52017-06-13 11:35:04 -07002147 const bool is_app_image = manager_->GetCompiler()->GetCompilerOptions().IsAppImage();
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002148
Vladimir Marko2c64a832018-01-04 11:31:56 +00002149 ClassStatus old_status = klass->GetStatus();
Mathieu Chartier1a088d42017-07-18 11:43:57 -07002150 // Don't initialize classes in boot space when compiling app image
2151 if (is_app_image && klass->IsBootStrapClassLoaded()) {
2152 // Also return early and don't store the class status in the recorded class status.
2153 return;
2154 }
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002155 // Only try to initialize classes that were successfully verified.
2156 if (klass->IsVerified()) {
2157 // Attempt to initialize the class but bail if we either need to initialize the super-class
2158 // or static fields.
Nicolas Geoffrayabadf022017-08-03 08:25:41 +00002159 manager_->GetClassLinker()->EnsureInitialized(soa.Self(), klass, false, false);
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002160 old_status = klass->GetStatus();
2161 if (!klass->IsInitialized()) {
2162 // We don't want non-trivial class initialization occurring on multiple threads due to
2163 // deadlock problems. For example, a parent class is initialized (holding its lock) that
2164 // refers to a sub-class in its static/class initializer causing it to try to acquire the
2165 // sub-class' lock. While on a second thread the sub-class is initialized (holding its lock)
2166 // after first initializing its parents, whose locks are acquired. This leads to a
2167 // parent-to-child and a child-to-parent lock ordering and consequent potential deadlock.
2168 // We need to use an ObjectLock due to potential suspension in the interpreting code. Rather
2169 // than use a special Object for the purpose we use the Class of java.lang.Class.
2170 Handle<mirror::Class> h_klass(hs.NewHandle(klass->GetClass()));
2171 ObjectLock<mirror::Class> lock(soa.Self(), h_klass);
2172 // Attempt to initialize allowing initialization of parent classes but still not static
2173 // fields.
Chang Xinge602b1c2017-06-30 11:55:01 -07002174 // Initialize dependencies first only for app image, to make TryInitialize recursive.
2175 bool is_superclass_initialized = !is_app_image ? true :
2176 InitializeDependencies(klass, class_loader, soa.Self());
2177 if (!is_app_image || (is_app_image && is_superclass_initialized)) {
Nicolas Geoffrayabadf022017-08-03 08:25:41 +00002178 manager_->GetClassLinker()->EnsureInitialized(soa.Self(), klass, false, true);
Chang Xinge602b1c2017-06-30 11:55:01 -07002179 }
2180 // Otherwise it's in app image but superclasses can't be initialized, no need to proceed.
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002181 old_status = klass->GetStatus();
Chang Xing70f689d2017-06-08 17:16:12 -07002182
Chris Wailes0c61be42018-09-26 17:27:34 -07002183 bool too_many_encoded_fields = !is_boot_image &&
2184 klass->NumStaticFields() > kMaxEncodedFields;
2185
Mathieu Chartierdabeb3a2017-06-12 17:10:07 -07002186 // If the class was not initialized, we can proceed to see if we can initialize static
Chang Xing70f689d2017-06-08 17:16:12 -07002187 // fields. Limit the max number of encoded fields.
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002188 if (!klass->IsInitialized() &&
Mathieu Chartier17498e52017-06-13 11:35:04 -07002189 (is_app_image || is_boot_image) &&
Chang Xinge602b1c2017-06-30 11:55:01 -07002190 is_superclass_initialized &&
Chang Xing70f689d2017-06-08 17:16:12 -07002191 !too_many_encoded_fields &&
Vladimir Markodc4bcce2018-06-21 16:15:42 +01002192 manager_->GetCompiler()->GetCompilerOptions().IsImageClass(descriptor)) {
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002193 bool can_init_static_fields = false;
Mathieu Chartierdabeb3a2017-06-12 17:10:07 -07002194 if (is_boot_image) {
Mathieu Chartier90443472015-07-16 20:32:27 -07002195 // We need to initialize static fields, we only do this for image classes that aren't
Mathieu Chartierdabeb3a2017-06-12 17:10:07 -07002196 // marked with the $NoPreloadHolder (which implies this should not be initialized
2197 // early).
Vladimir Marko2ef01102019-02-05 15:05:10 +00002198 can_init_static_fields = !EndsWith(std::string_view(descriptor), "$NoPreloadHolder;");
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002199 } else {
Mathieu Chartier17498e52017-06-13 11:35:04 -07002200 CHECK(is_app_image);
Mathieu Chartierdabeb3a2017-06-12 17:10:07 -07002201 // The boot image case doesn't need to recursively initialize the dependencies with
2202 // special logic since the class linker already does this.
Mathieu Chartierdabeb3a2017-06-12 17:10:07 -07002203 can_init_static_fields =
Mathieu Chartier0933cc52018-03-23 14:25:08 -07002204 ClassLinker::kAppImageMayContainStrings &&
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002205 !soa.Self()->IsExceptionPending() &&
Nicolas Geoffrayabadf022017-08-03 08:25:41 +00002206 is_superclass_initialized &&
2207 NoClinitInDependency(klass, soa.Self(), &class_loader);
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002208 // TODO The checking for clinit can be removed since it's already
2209 // checked when init superclass. Currently keep it because it contains
2210 // processing of intern strings. Will be removed later when intern strings
2211 // and clinit are both initialized.
2212 }
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01002213
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002214 if (can_init_static_fields) {
2215 VLOG(compiler) << "Initializing: " << descriptor;
2216 // TODO multithreading support. We should ensure the current compilation thread has
2217 // exclusive access to the runtime and the transaction. To achieve this, we could use
2218 // a ReaderWriterMutex but we're holding the mutator lock so we fail mutex sanity
2219 // checks in Thread::AssertThreadSuspensionIsAllowable.
2220 Runtime* const runtime = Runtime::Current();
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002221 // Run the class initializer in transaction mode.
Chang Xing5a906fc2017-07-26 15:01:16 -07002222 runtime->EnterTransactionMode(is_app_image, klass.Get());
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002223 bool success = manager_->GetClassLinker()->EnsureInitialized(soa.Self(), klass, true,
2224 true);
2225 // TODO we detach transaction from runtime to indicate we quit the transactional
2226 // mode which prevents the GC from visiting objects modified during the transaction.
2227 // Ensure GC is not run so don't access freed objects when aborting transaction.
Andreas Gampe9e7078b2017-03-02 13:50:36 -08002228
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002229 {
2230 ScopedAssertNoThreadSuspension ants("Transaction end");
Chang Xing16d1dd82017-07-20 17:56:26 -07002231
2232 if (success) {
2233 runtime->ExitTransactionMode();
2234 DCHECK(!runtime->IsActiveTransaction());
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01002235
Chris Wailes0c61be42018-09-26 17:27:34 -07002236 if (is_boot_image) {
2237 // For boot image, we want to put the updated status in the oat class since we
2238 // can't reject the image anyways.
2239 old_status = klass->GetStatus();
2240 }
2241 } else {
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002242 CHECK(soa.Self()->IsExceptionPending());
2243 mirror::Throwable* exception = soa.Self()->GetException();
2244 VLOG(compiler) << "Initialization of " << descriptor << " aborted because of "
2245 << exception->Dump();
2246 std::ostream* file_log = manager_->GetCompiler()->
2247 GetCompilerOptions().GetInitFailureOutput();
2248 if (file_log != nullptr) {
2249 *file_log << descriptor << "\n";
2250 *file_log << exception->Dump() << "\n";
2251 }
2252 soa.Self()->ClearException();
Chang Xing605fe242017-07-20 15:57:21 -07002253 runtime->RollbackAllTransactions();
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002254 CHECK_EQ(old_status, klass->GetStatus()) << "Previous class status not restored";
2255 }
2256 }
2257
Nicolas Geoffrayabadf022017-08-03 08:25:41 +00002258 if (!success) {
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002259 // On failure, still intern strings of static fields and seen in <clinit>, as these
2260 // will be created in the zygote. This is separated from the transaction code just
2261 // above as we will allocate strings, so must be allowed to suspend.
2262 if (&klass->GetDexFile() == manager_->GetDexFile()) {
Andreas Gampe9e7078b2017-03-02 13:50:36 -08002263 InternStrings(klass, class_loader);
Mathieu Chartierdabeb3a2017-06-12 17:10:07 -07002264 } else {
2265 DCHECK(!is_boot_image) << "Boot image must have equal dex files";
Andreas Gampedbfe2542014-11-25 22:21:42 -08002266 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002267 }
2268 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002269 }
Jeff Hao0cb17282017-07-12 14:51:49 -07002270 // If the class still isn't initialized, at least try some checks that initialization
2271 // would do so they can be skipped at runtime.
2272 if (!klass->IsInitialized() &&
2273 manager_->GetClassLinker()->ValidateSuperClassDescriptors(klass)) {
Vladimir Marko2c64a832018-01-04 11:31:56 +00002274 old_status = ClassStatus::kSuperclassValidated;
Jeff Hao0cb17282017-07-12 14:51:49 -07002275 } else {
2276 soa.Self()->ClearException();
2277 }
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002278 soa.Self()->AssertNoPendingException();
Brian Carlstrom7940e442013-07-12 13:46:57 -07002279 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002280 }
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002281 // Record the final class status if necessary.
2282 ClassReference ref(&dex_file, klass->GetDexClassDefIndex());
2283 // Back up the status before doing initialization for static encoded fields,
2284 // because the static encoded branch wants to keep the status to uninitialized.
2285 manager_->GetCompiler()->RecordClassStatus(ref, old_status);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002286 }
Mathieu Chartier90443472015-07-16 20:32:27 -07002287
2288 private:
Andreas Gampe9e7078b2017-03-02 13:50:36 -08002289 void InternStrings(Handle<mirror::Class> klass, Handle<mirror::ClassLoader> class_loader)
2290 REQUIRES_SHARED(Locks::mutator_lock_) {
2291 DCHECK(manager_->GetCompiler()->GetCompilerOptions().IsBootImage());
2292 DCHECK(klass->IsVerified());
2293 DCHECK(!klass->IsInitialized());
2294
2295 StackHandleScope<1> hs(Thread::Current());
Vladimir Markoe11dd502017-12-08 14:09:45 +00002296 Handle<mirror::DexCache> dex_cache = hs.NewHandle(klass->GetDexCache());
Andreas Gampe3f1dcd32018-12-28 09:39:56 -08002297 const dex::ClassDef* class_def = klass->GetClassDef();
Andreas Gampe9e7078b2017-03-02 13:50:36 -08002298 ClassLinker* class_linker = manager_->GetClassLinker();
2299
Andreas Gampe7bf90482017-03-02 16:41:35 -08002300 // Check encoded final field values for strings and intern.
Vladimir Markoe11dd502017-12-08 14:09:45 +00002301 annotations::RuntimeEncodedStaticFieldValueIterator value_it(dex_cache,
2302 class_loader,
Andreas Gampe9e7078b2017-03-02 13:50:36 -08002303 manager_->GetClassLinker(),
2304 *class_def);
2305 for ( ; value_it.HasNext(); value_it.Next()) {
2306 if (value_it.GetValueType() == annotations::RuntimeEncodedStaticFieldValueIterator::kString) {
2307 // Resolve the string. This will intern the string.
2308 art::ObjPtr<mirror::String> resolved = class_linker->ResolveString(
Vladimir Markoa64b52d2017-12-08 16:27:49 +00002309 dex::StringIndex(value_it.GetJavaValue().i), dex_cache);
Andreas Gampe9e7078b2017-03-02 13:50:36 -08002310 CHECK(resolved != nullptr);
2311 }
2312 }
Andreas Gampe7bf90482017-03-02 16:41:35 -08002313
2314 // Intern strings seen in <clinit>.
2315 ArtMethod* clinit = klass->FindClassInitializer(class_linker->GetImagePointerSize());
2316 if (clinit != nullptr) {
Mathieu Chartier73f21d42018-01-02 14:26:50 -08002317 for (const DexInstructionPcPair& inst : clinit->DexInstructions()) {
Mathieu Chartier2b2bef22017-10-26 17:10:19 -07002318 if (inst->Opcode() == Instruction::CONST_STRING) {
Andreas Gampe7bf90482017-03-02 16:41:35 -08002319 ObjPtr<mirror::String> s = class_linker->ResolveString(
Vladimir Markoa64b52d2017-12-08 16:27:49 +00002320 dex::StringIndex(inst->VRegB_21c()), dex_cache);
Andreas Gampe7bf90482017-03-02 16:41:35 -08002321 CHECK(s != nullptr);
Mathieu Chartier2b2bef22017-10-26 17:10:19 -07002322 } else if (inst->Opcode() == Instruction::CONST_STRING_JUMBO) {
Andreas Gampe7bf90482017-03-02 16:41:35 -08002323 ObjPtr<mirror::String> s = class_linker->ResolveString(
Vladimir Markoa64b52d2017-12-08 16:27:49 +00002324 dex::StringIndex(inst->VRegB_31c()), dex_cache);
Andreas Gampe7bf90482017-03-02 16:41:35 -08002325 CHECK(s != nullptr);
2326 }
Andreas Gampe7bf90482017-03-02 16:41:35 -08002327 }
2328 }
Andreas Gampe9e7078b2017-03-02 13:50:36 -08002329 }
2330
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002331 bool ResolveTypesOfMethods(Thread* self, ArtMethod* m)
2332 REQUIRES_SHARED(Locks::mutator_lock_) {
Vladimir Markob45528c2017-07-27 14:14:28 +01002333 // Return value of ResolveReturnType() is discarded because resolve will be done internally.
2334 ObjPtr<mirror::Class> rtn_type = m->ResolveReturnType();
Mathieu Chartier7a8bcfd2017-06-13 13:40:43 -07002335 if (rtn_type == nullptr) {
2336 self->ClearException();
2337 return false;
2338 }
Andreas Gampe3f1dcd32018-12-28 09:39:56 -08002339 const dex::TypeList* types = m->GetParameterTypeList();
Mathieu Chartier7a8bcfd2017-06-13 13:40:43 -07002340 if (types != nullptr) {
2341 for (uint32_t i = 0; i < types->Size(); ++i) {
2342 dex::TypeIndex param_type_idx = types->GetTypeItem(i).type_idx_;
Vladimir Markob45528c2017-07-27 14:14:28 +01002343 ObjPtr<mirror::Class> param_type = m->ResolveClassFromTypeIndex(param_type_idx);
Mathieu Chartier7a8bcfd2017-06-13 13:40:43 -07002344 if (param_type == nullptr) {
2345 self->ClearException();
2346 return false;
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002347 }
2348 }
Mathieu Chartier7a8bcfd2017-06-13 13:40:43 -07002349 }
2350 return true;
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002351 }
2352
2353 // Pre resolve types mentioned in all method signatures before start a transaction
2354 // since ResolveType doesn't work in transaction mode.
2355 bool PreResolveTypes(Thread* self, const Handle<mirror::Class>& klass)
2356 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartier7a8bcfd2017-06-13 13:40:43 -07002357 PointerSize pointer_size = manager_->GetClassLinker()->GetImagePointerSize();
2358 for (ArtMethod& m : klass->GetMethods(pointer_size)) {
2359 if (!ResolveTypesOfMethods(self, &m)) {
2360 return false;
2361 }
2362 }
2363 if (klass->IsInterface()) {
2364 return true;
2365 } else if (klass->HasSuperClass()) {
2366 StackHandleScope<1> hs(self);
2367 MutableHandle<mirror::Class> super_klass(hs.NewHandle<mirror::Class>(klass->GetSuperClass()));
2368 for (int i = super_klass->GetVTableLength() - 1; i >= 0; --i) {
2369 ArtMethod* m = klass->GetVTableEntry(i, pointer_size);
2370 ArtMethod* super_m = super_klass->GetVTableEntry(i, pointer_size);
2371 if (!ResolveTypesOfMethods(self, m) || !ResolveTypesOfMethods(self, super_m)) {
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002372 return false;
2373 }
2374 }
Mathieu Chartier7a8bcfd2017-06-13 13:40:43 -07002375 for (int32_t i = 0; i < klass->GetIfTableCount(); ++i) {
2376 super_klass.Assign(klass->GetIfTable()->GetInterface(i));
2377 if (klass->GetClassLoader() != super_klass->GetClassLoader()) {
2378 uint32_t num_methods = super_klass->NumVirtualMethods();
2379 for (uint32_t j = 0; j < num_methods; ++j) {
2380 ArtMethod* m = klass->GetIfTable()->GetMethodArray(i)->GetElementPtrSize<ArtMethod*>(
2381 j, pointer_size);
2382 ArtMethod* super_m = super_klass->GetVirtualMethod(j, pointer_size);
2383 if (!ResolveTypesOfMethods(self, m) || !ResolveTypesOfMethods(self, super_m)) {
2384 return false;
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002385 }
2386 }
2387 }
2388 }
Mathieu Chartier7a8bcfd2017-06-13 13:40:43 -07002389 }
2390 return true;
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002391 }
2392
2393 // Initialize the klass's dependencies recursively before initializing itself.
2394 // Checking for interfaces is also necessary since interfaces can contain
2395 // both default methods and static encoded fields.
2396 bool InitializeDependencies(const Handle<mirror::Class>& klass,
2397 Handle<mirror::ClassLoader> class_loader,
2398 Thread* self)
2399 REQUIRES_SHARED(Locks::mutator_lock_) {
2400 if (klass->HasSuperClass()) {
2401 ObjPtr<mirror::Class> super_class = klass->GetSuperClass();
2402 StackHandleScope<1> hs(self);
2403 Handle<mirror::Class> handle_scope_super(hs.NewHandle(super_class));
2404 if (!handle_scope_super->IsInitialized()) {
2405 this->TryInitializeClass(handle_scope_super, class_loader);
2406 if (!handle_scope_super->IsInitialized()) {
2407 return false;
2408 }
2409 }
2410 }
2411
2412 uint32_t num_if = klass->NumDirectInterfaces();
2413 for (size_t i = 0; i < num_if; i++) {
2414 ObjPtr<mirror::Class>
2415 interface = mirror::Class::GetDirectInterface(self, klass.Get(), i);
2416 StackHandleScope<1> hs(self);
2417 Handle<mirror::Class> handle_interface(hs.NewHandle(interface));
2418
2419 TryInitializeClass(handle_interface, class_loader);
2420
2421 if (!handle_interface->IsInitialized()) {
2422 return false;
2423 }
2424 }
2425
2426 return PreResolveTypes(self, klass);
2427 }
2428
2429 // In this phase the classes containing class initializers are ignored. Make sure no
2430 // clinit appears in kalss's super class chain and interfaces.
2431 bool NoClinitInDependency(const Handle<mirror::Class>& klass,
2432 Thread* self,
2433 Handle<mirror::ClassLoader>* class_loader)
2434 REQUIRES_SHARED(Locks::mutator_lock_) {
2435 ArtMethod* clinit =
2436 klass->FindClassInitializer(manager_->GetClassLinker()->GetImagePointerSize());
2437 if (clinit != nullptr) {
2438 VLOG(compiler) << klass->PrettyClass() << ' ' << clinit->PrettyMethod(true);
2439 return false;
2440 }
2441 if (klass->HasSuperClass()) {
2442 ObjPtr<mirror::Class> super_class = klass->GetSuperClass();
2443 StackHandleScope<1> hs(self);
2444 Handle<mirror::Class> handle_scope_super(hs.NewHandle(super_class));
2445 if (!NoClinitInDependency(handle_scope_super, self, class_loader)) {
2446 return false;
2447 }
2448 }
2449
2450 uint32_t num_if = klass->NumDirectInterfaces();
2451 for (size_t i = 0; i < num_if; i++) {
2452 ObjPtr<mirror::Class>
2453 interface = mirror::Class::GetDirectInterface(self, klass.Get(), i);
2454 StackHandleScope<1> hs(self);
2455 Handle<mirror::Class> handle_interface(hs.NewHandle(interface));
2456 if (!NoClinitInDependency(handle_interface, self, class_loader)) {
2457 return false;
2458 }
2459 }
2460
Chang Xingba17dbd2017-06-28 21:27:56 +00002461 return true;
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002462 }
2463
Mathieu Chartier90443472015-07-16 20:32:27 -07002464 const ParallelCompilationManager* const manager_;
2465};
Brian Carlstrom7940e442013-07-12 13:46:57 -07002466
Andreas Gampeace0dc12016-01-20 13:33:13 -08002467void CompilerDriver::InitializeClasses(jobject jni_class_loader,
2468 const DexFile& dex_file,
Andreas Gampede7b4362014-07-28 18:38:57 -07002469 const std::vector<const DexFile*>& dex_files,
Andreas Gampeace0dc12016-01-20 13:33:13 -08002470 TimingLogger* timings) {
Mathieu Chartierf5997b42014-06-20 10:37:54 -07002471 TimingLogger::ScopedTiming t("InitializeNoClinit", timings);
Andreas Gampeace0dc12016-01-20 13:33:13 -08002472
2473 // Initialization allocates objects and needs to run single-threaded to be deterministic.
2474 bool force_determinism = GetCompilerOptions().IsForceDeterminism();
2475 ThreadPool* init_thread_pool = force_determinism
2476 ? single_thread_pool_.get()
2477 : parallel_thread_pool_.get();
2478 size_t init_thread_count = force_determinism ? 1U : parallel_thread_count_;
2479
Brian Carlstrom7940e442013-07-12 13:46:57 -07002480 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Andreas Gampede7b4362014-07-28 18:38:57 -07002481 ParallelCompilationManager context(class_linker, jni_class_loader, this, &dex_file, dex_files,
Andreas Gampeace0dc12016-01-20 13:33:13 -08002482 init_thread_pool);
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002483
2484 if (GetCompilerOptions().IsBootImage() || GetCompilerOptions().IsAppImage()) {
2485 // Set the concurrency thread to 1 to support initialization for App Images since transaction
2486 // doesn't support multithreading now.
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01002487 // TODO: remove this when transactional mode supports multithreading.
Andreas Gampeace0dc12016-01-20 13:33:13 -08002488 init_thread_count = 1U;
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01002489 }
Mathieu Chartier90443472015-07-16 20:32:27 -07002490 InitializeClassVisitor visitor(&context);
Andreas Gampeace0dc12016-01-20 13:33:13 -08002491 context.ForAll(0, dex_file.NumClassDefs(), &visitor, init_thread_count);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002492}
2493
Mathieu Chartier91288d82016-04-28 09:44:54 -07002494class InitializeArrayClassesAndCreateConflictTablesVisitor : public ClassVisitor {
Mathieu Chartier085a0722016-04-01 17:33:31 -07002495 public:
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002496 explicit InitializeArrayClassesAndCreateConflictTablesVisitor(VariableSizedHandleScope& hs)
2497 : hs_(hs) {}
2498
Roland Levillainf73caca2018-08-24 17:19:07 +01002499 bool operator()(ObjPtr<mirror::Class> klass) override
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002500 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartier91288d82016-04-28 09:44:54 -07002501 if (Runtime::Current()->GetHeap()->ObjectIsInBootImageSpace(klass)) {
2502 return true;
2503 }
Mathieu Chartier085a0722016-04-01 17:33:31 -07002504 if (klass->IsArrayClass()) {
2505 StackHandleScope<1> hs(Thread::Current());
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002506 auto h_klass = hs.NewHandleWrapper(&klass);
2507 Runtime::Current()->GetClassLinker()->EnsureInitialized(hs.Self(), h_klass, true, true);
Mathieu Chartier085a0722016-04-01 17:33:31 -07002508 }
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002509 // Collect handles since there may be thread suspension in future EnsureInitialized.
2510 to_visit_.push_back(hs_.NewHandle(klass));
Nicolas Geoffray88f288e2016-06-29 08:17:52 +00002511 return true;
Nelli Kimbadee982016-05-13 13:08:53 +03002512 }
Artem Udovichenkoa62cb9b2016-06-30 09:18:25 +00002513
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002514 void FillAllIMTAndConflictTables() REQUIRES_SHARED(Locks::mutator_lock_) {
2515 for (Handle<mirror::Class> c : to_visit_) {
2516 // Create the conflict tables.
2517 FillIMTAndConflictTables(c.Get());
2518 }
2519 }
2520
Artem Udovichenkoa62cb9b2016-06-30 09:18:25 +00002521 private:
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002522 void FillIMTAndConflictTables(ObjPtr<mirror::Class> klass)
2523 REQUIRES_SHARED(Locks::mutator_lock_) {
Artem Udovichenkoa62cb9b2016-06-30 09:18:25 +00002524 if (!klass->ShouldHaveImt()) {
2525 return;
2526 }
2527 if (visited_classes_.find(klass) != visited_classes_.end()) {
2528 return;
2529 }
2530 if (klass->HasSuperClass()) {
2531 FillIMTAndConflictTables(klass->GetSuperClass());
2532 }
2533 if (!klass->IsTemp()) {
2534 Runtime::Current()->GetClassLinker()->FillIMTAndConflictTables(klass);
2535 }
2536 visited_classes_.insert(klass);
2537 }
2538
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002539 VariableSizedHandleScope& hs_;
2540 std::vector<Handle<mirror::Class>> to_visit_;
2541 std::unordered_set<ObjPtr<mirror::Class>, HashObjPtr> visited_classes_;
Mathieu Chartier085a0722016-04-01 17:33:31 -07002542};
2543
Brian Carlstrom7940e442013-07-12 13:46:57 -07002544void CompilerDriver::InitializeClasses(jobject class_loader,
2545 const std::vector<const DexFile*>& dex_files,
Andreas Gampeace0dc12016-01-20 13:33:13 -08002546 TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07002547 for (size_t i = 0; i != dex_files.size(); ++i) {
2548 const DexFile* dex_file = dex_files[i];
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002549 CHECK(dex_file != nullptr);
Andreas Gampeace0dc12016-01-20 13:33:13 -08002550 InitializeClasses(class_loader, *dex_file, dex_files, timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002551 }
Vladimir Markoaad75c62016-10-03 08:46:48 +00002552 if (GetCompilerOptions().IsBootImage() || GetCompilerOptions().IsAppImage()) {
Mathieu Chartier085a0722016-04-01 17:33:31 -07002553 // Make sure that we call EnsureIntiailized on all the array classes to call
2554 // SetVerificationAttempted so that the access flags are set. If we do not do this they get
2555 // changed at runtime resulting in more dirty image pages.
Mathieu Chartier91288d82016-04-28 09:44:54 -07002556 // Also create conflict tables.
Vladimir Marko2afaff72018-11-30 17:01:50 +00002557 // Only useful if we are compiling an image.
Mathieu Chartier085a0722016-04-01 17:33:31 -07002558 ScopedObjectAccess soa(Thread::Current());
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002559 VariableSizedHandleScope hs(soa.Self());
2560 InitializeArrayClassesAndCreateConflictTablesVisitor visitor(hs);
Mathieu Chartier91288d82016-04-28 09:44:54 -07002561 Runtime::Current()->GetClassLinker()->VisitClassesWithoutClassesLock(&visitor);
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002562 visitor.FillAllIMTAndConflictTables();
Mathieu Chartier085a0722016-04-01 17:33:31 -07002563 }
Vladimir Markoaad75c62016-10-03 08:46:48 +00002564 if (GetCompilerOptions().IsBootImage()) {
Mathieu Chartier093ef212014-08-11 13:52:12 -07002565 // Prune garbage objects created during aborted transactions.
Andreas Gampe3db70682018-12-26 15:12:03 -08002566 Runtime::Current()->GetHeap()->CollectGarbage(/* clear_soft_references= */ true);
Mathieu Chartier093ef212014-08-11 13:52:12 -07002567 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002568}
2569
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002570template <typename CompileFn>
2571static void CompileDexFile(CompilerDriver* driver,
2572 jobject class_loader,
2573 const DexFile& dex_file,
2574 const std::vector<const DexFile*>& dex_files,
2575 ThreadPool* thread_pool,
2576 size_t thread_count,
2577 TimingLogger* timings,
2578 const char* timing_name,
2579 CompileFn compile_fn) {
2580 TimingLogger::ScopedTiming t(timing_name, timings);
2581 ParallelCompilationManager context(Runtime::Current()->GetClassLinker(),
2582 class_loader,
2583 driver,
2584 &dex_file,
2585 dex_files,
2586 thread_pool);
Vladimir Marko492a7fa2016-06-01 18:38:43 +01002587
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002588 auto compile = [&context, &compile_fn](size_t class_def_index) {
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002589 const DexFile& dex_file = *context.GetDexFile();
Andreas Gampe3e7f66b2018-09-06 10:08:18 -07002590 SCOPED_TRACE << "compile " << dex_file.GetLocation() << "@" << class_def_index;
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002591 ClassLinker* class_linker = context.GetClassLinker();
2592 jobject jclass_loader = context.GetClassLoader();
Mathieu Chartier90443472015-07-16 20:32:27 -07002593 ClassReference ref(&dex_file, class_def_index);
Andreas Gampe3f1dcd32018-12-28 09:39:56 -08002594 const dex::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
Mathieu Chartier18e26872018-06-04 17:19:02 -07002595 ClassAccessor accessor(dex_file, class_def_index);
Vladimir Marko2afaff72018-11-30 17:01:50 +00002596 CompilerDriver* const driver = context.GetCompiler();
Mathieu Chartier90443472015-07-16 20:32:27 -07002597 // Skip compiling classes with generic verifier failures since they will still fail at runtime
Vladimir Marko2afaff72018-11-30 17:01:50 +00002598 if (driver->GetCompilerOptions().GetVerificationResults()->IsClassRejected(ref)) {
Ian Rogers1ff3c982014-08-12 02:30:58 -07002599 return;
2600 }
Mathieu Chartier736b5602015-09-02 14:54:11 -07002601 // Use a scoped object access to perform to the quick SkipClass check.
Mathieu Chartier736b5602015-09-02 14:54:11 -07002602 ScopedObjectAccess soa(Thread::Current());
2603 StackHandleScope<3> hs(soa.Self());
2604 Handle<mirror::ClassLoader> class_loader(
Mathieu Chartier0795f232016-09-27 18:43:30 -07002605 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader)));
Mathieu Chartier736b5602015-09-02 14:54:11 -07002606 Handle<mirror::Class> klass(
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07002607 hs.NewHandle(class_linker->FindClass(soa.Self(), accessor.GetDescriptor(), class_loader)));
Mathieu Chartier736b5602015-09-02 14:54:11 -07002608 Handle<mirror::DexCache> dex_cache;
Andreas Gampefa4333d2017-02-14 11:10:34 -08002609 if (klass == nullptr) {
Mathieu Chartier736b5602015-09-02 14:54:11 -07002610 soa.Self()->AssertPendingException();
2611 soa.Self()->ClearException();
2612 dex_cache = hs.NewHandle(class_linker->FindDexCache(soa.Self(), dex_file));
2613 } else if (SkipClass(jclass_loader, dex_file, klass.Get())) {
2614 return;
Andreas Gampebb30d5d2018-04-23 09:59:25 -07002615 } else if (&klass->GetDexFile() != &dex_file) {
2616 // Skip a duplicate class (as the resolved class is from another, earlier dex file).
2617 return; // Do not update state.
Mathieu Chartier736b5602015-09-02 14:54:11 -07002618 } else {
2619 dex_cache = hs.NewHandle(klass->GetDexCache());
2620 }
2621
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07002622 // Avoid suspension if there are no methods to compile.
2623 if (accessor.NumDirectMethods() + accessor.NumVirtualMethods() == 0) {
Mathieu Chartier90443472015-07-16 20:32:27 -07002624 return;
Brian Carlstrom7940e442013-07-12 13:46:57 -07002625 }
Mathieu Chartier90443472015-07-16 20:32:27 -07002626
Mathieu Chartier736b5602015-09-02 14:54:11 -07002627 // Go to native so that we don't block GC during compilation.
Mathieu Chartierf1d666e2015-09-03 16:13:34 -07002628 ScopedThreadSuspension sts(soa.Self(), kNative);
Mathieu Chartier736b5602015-09-02 14:54:11 -07002629
Mathieu Chartier90443472015-07-16 20:32:27 -07002630 // Can we run DEX-to-DEX compiler on this class ?
Mathieu Chartiera79efdb2018-01-18 16:31:01 -08002631 optimizer::DexToDexCompiler::CompilationLevel dex_to_dex_compilation_level =
Mathieu Chartier736b5602015-09-02 14:54:11 -07002632 GetDexToDexCompilationLevel(soa.Self(), *driver, jclass_loader, dex_file, class_def);
Andreas Gampe5eb0d382015-07-23 01:19:26 -07002633
Mathieu Chartierb7c273c2017-11-10 18:07:56 -08002634 // Compile direct and virtual methods.
2635 int64_t previous_method_idx = -1;
Mathieu Chartier0d896bd2018-05-25 00:20:27 -07002636 for (const ClassAccessor::Method& method : accessor.GetMethods()) {
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07002637 const uint32_t method_idx = method.GetIndex();
Mathieu Chartierb7c273c2017-11-10 18:07:56 -08002638 if (method_idx == previous_method_idx) {
Mathieu Chartier90443472015-07-16 20:32:27 -07002639 // smali can create dex files with two encoded_methods sharing the same method_idx
2640 // http://code.google.com/p/smali/issues/detail?id=119
Mathieu Chartier0d896bd2018-05-25 00:20:27 -07002641 continue;
Mathieu Chartier90443472015-07-16 20:32:27 -07002642 }
Mathieu Chartierb7c273c2017-11-10 18:07:56 -08002643 previous_method_idx = method_idx;
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002644 compile_fn(soa.Self(),
2645 driver,
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07002646 method.GetCodeItem(),
2647 method.GetAccessFlags(),
2648 method.GetInvokeType(class_def.access_flags_),
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002649 class_def_index,
2650 method_idx,
2651 class_loader,
2652 dex_file,
2653 dex_to_dex_compilation_level,
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002654 dex_cache);
Mathieu Chartier0d896bd2018-05-25 00:20:27 -07002655 }
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002656 };
2657 context.ForAllLambda(0, dex_file.NumClassDefs(), compile, thread_count);
2658}
2659
2660void CompilerDriver::Compile(jobject class_loader,
2661 const std::vector<const DexFile*>& dex_files,
2662 TimingLogger* timings) {
2663 if (kDebugProfileGuidedCompilation) {
Vladimir Marko1a2a5cd2018-11-07 15:39:48 +00002664 const ProfileCompilationInfo* profile_compilation_info =
2665 GetCompilerOptions().GetProfileCompilationInfo();
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002666 LOG(INFO) << "[ProfileGuidedCompilation] " <<
Vladimir Marko1a2a5cd2018-11-07 15:39:48 +00002667 ((profile_compilation_info == nullptr)
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002668 ? "null"
Vladimir Marko1a2a5cd2018-11-07 15:39:48 +00002669 : profile_compilation_info->DumpInfo(dex_files));
Brian Carlstrom7940e442013-07-12 13:46:57 -07002670 }
Mathieu Chartier90443472015-07-16 20:32:27 -07002671
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002672 dex_to_dex_compiler_.ClearState();
2673 for (const DexFile* dex_file : dex_files) {
2674 CHECK(dex_file != nullptr);
2675 CompileDexFile(this,
2676 class_loader,
2677 *dex_file,
2678 dex_files,
2679 parallel_thread_pool_.get(),
2680 parallel_thread_count_,
2681 timings,
2682 "Compile Dex File Quick",
2683 CompileMethodQuick);
2684 const ArenaPool* const arena_pool = Runtime::Current()->GetArenaPool();
2685 const size_t arena_alloc = arena_pool->GetBytesAllocated();
2686 max_arena_alloc_ = std::max(arena_alloc, max_arena_alloc_);
2687 Runtime::Current()->ReclaimArenaPoolMemory();
2688 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002689
Mathieu Chartier279e3a32018-01-24 18:17:55 -08002690 if (dex_to_dex_compiler_.NumCodeItemsToQuicken(Thread::Current()) > 0u) {
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002691 // TODO: Not visit all of the dex files, its probably rare that only one would have quickened
2692 // methods though.
2693 for (const DexFile* dex_file : dex_files) {
2694 CompileDexFile(this,
2695 class_loader,
2696 *dex_file,
2697 dex_files,
2698 parallel_thread_pool_.get(),
2699 parallel_thread_count_,
2700 timings,
2701 "Compile Dex File Dex2Dex",
2702 CompileMethodDex2Dex);
2703 }
2704 dex_to_dex_compiler_.ClearState();
2705 }
2706
2707 VLOG(compiler) << "Compile: " << GetMemoryUsageString(false);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002708}
2709
Andreas Gampe5eb0d382015-07-23 01:19:26 -07002710void CompilerDriver::AddCompiledMethod(const MethodReference& method_ref,
Vladimir Marko8e524ad2018-07-13 10:27:43 +01002711 CompiledMethod* const compiled_method) {
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002712 DCHECK(GetCompiledMethod(method_ref) == nullptr) << method_ref.PrettyMethod();
2713 MethodTable::InsertResult result = compiled_methods_.Insert(method_ref,
2714 /*expected*/ nullptr,
2715 compiled_method);
Mathieu Chartieracab8d42016-11-23 13:45:58 -08002716 CHECK(result == MethodTable::kInsertResultSuccess);
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002717 DCHECK(GetCompiledMethod(method_ref) != nullptr) << method_ref.PrettyMethod();
Brian Carlstrom7940e442013-07-12 13:46:57 -07002718}
2719
Mathieu Chartier279e3a32018-01-24 18:17:55 -08002720CompiledMethod* CompilerDriver::RemoveCompiledMethod(const MethodReference& method_ref) {
2721 CompiledMethod* ret = nullptr;
2722 CHECK(compiled_methods_.Remove(method_ref, &ret));
2723 return ret;
2724}
2725
Vladimir Marko2c64a832018-01-04 11:31:56 +00002726bool CompilerDriver::GetCompiledClass(const ClassReference& ref, ClassStatus* status) const {
Andreas Gampebb846102017-05-11 21:03:35 -07002727 DCHECK(status != nullptr);
Mathieu Chartier1a088d42017-07-18 11:43:57 -07002728 // The table doesn't know if something wasn't inserted. For this case it will return
Vladimir Marko2c64a832018-01-04 11:31:56 +00002729 // ClassStatus::kNotReady. To handle this, just assume anything we didn't try to verify
2730 // is not compiled.
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002731 if (!compiled_classes_.Get(ref, status) ||
Vladimir Marko2c64a832018-01-04 11:31:56 +00002732 *status < ClassStatus::kRetryVerificationAtRuntime) {
Andreas Gampebb846102017-05-11 21:03:35 -07002733 return false;
Brian Carlstrom7940e442013-07-12 13:46:57 -07002734 }
Andreas Gampebb846102017-05-11 21:03:35 -07002735 return true;
Brian Carlstrom7940e442013-07-12 13:46:57 -07002736}
2737
Vladimir Marko2c64a832018-01-04 11:31:56 +00002738ClassStatus CompilerDriver::GetClassStatus(const ClassReference& ref) const {
2739 ClassStatus status = ClassStatus::kNotReady;
Nicolas Geoffray486dda02017-09-11 14:15:52 +01002740 if (!GetCompiledClass(ref, &status)) {
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002741 classpath_classes_.Get(ref, &status);
Nicolas Geoffray486dda02017-09-11 14:15:52 +01002742 }
2743 return status;
2744}
2745
Vladimir Marko2c64a832018-01-04 11:31:56 +00002746void CompilerDriver::RecordClassStatus(const ClassReference& ref, ClassStatus status) {
Nicolas Geoffrayade72d62016-12-15 13:20:02 +00002747 switch (status) {
Vladimir Marko2c64a832018-01-04 11:31:56 +00002748 case ClassStatus::kErrorResolved:
2749 case ClassStatus::kErrorUnresolved:
2750 case ClassStatus::kNotReady:
2751 case ClassStatus::kResolved:
2752 case ClassStatus::kRetryVerificationAtRuntime:
2753 case ClassStatus::kVerified:
2754 case ClassStatus::kSuperclassValidated:
2755 case ClassStatus::kInitialized:
Nicolas Geoffrayade72d62016-12-15 13:20:02 +00002756 break; // Expected states.
2757 default:
2758 LOG(FATAL) << "Unexpected class status for class "
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002759 << PrettyDescriptor(
2760 ref.dex_file->GetClassDescriptor(ref.dex_file->GetClassDef(ref.index)))
Nicolas Geoffrayade72d62016-12-15 13:20:02 +00002761 << " of " << status;
2762 }
2763
Mathieu Chartier1a088d42017-07-18 11:43:57 -07002764 ClassStateTable::InsertResult result;
Nicolas Geoffray486dda02017-09-11 14:15:52 +01002765 ClassStateTable* table = &compiled_classes_;
Mathieu Chartier1a088d42017-07-18 11:43:57 -07002766 do {
Vladimir Marko2c64a832018-01-04 11:31:56 +00002767 ClassStatus existing = ClassStatus::kNotReady;
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002768 if (!table->Get(ref, &existing)) {
Nicolas Geoffray486dda02017-09-11 14:15:52 +01002769 // A classpath class.
Mathieu Chartier010f5cc2017-07-24 15:53:46 -07002770 if (kIsDebugBuild) {
2771 // Check to make sure it's not a dex file for an oat file we are compiling since these
2772 // should always succeed. These do not include classes in for used libraries.
Vladimir Marko213ee2d2018-06-22 11:56:34 +01002773 for (const DexFile* dex_file : GetCompilerOptions().GetDexFilesForOatFile()) {
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002774 CHECK_NE(ref.dex_file, dex_file) << ref.dex_file->GetLocation();
Mathieu Chartier010f5cc2017-07-24 15:53:46 -07002775 }
2776 }
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002777 if (!classpath_classes_.HaveDexFile(ref.dex_file)) {
Nicolas Geoffray486dda02017-09-11 14:15:52 +01002778 // Boot classpath dex file.
2779 return;
2780 }
2781 table = &classpath_classes_;
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002782 table->Get(ref, &existing);
Mathieu Chartier010f5cc2017-07-24 15:53:46 -07002783 }
Mathieu Chartier1a088d42017-07-18 11:43:57 -07002784 if (existing >= status) {
2785 // Existing status is already better than we expect, break.
2786 break;
2787 }
Nicolas Geoffrayade72d62016-12-15 13:20:02 +00002788 // Update the status if we now have a greater one. This happens with vdex,
2789 // which records a class is verified, but does not resolve it.
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002790 result = table->Insert(ref, existing, status);
2791 CHECK(result != ClassStateTable::kInsertResultInvalidDexFile) << ref.dex_file->GetLocation();
Mathieu Chartier1a088d42017-07-18 11:43:57 -07002792 } while (result != ClassStateTable::kInsertResultSuccess);
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07002793}
2794
Brian Carlstrom7940e442013-07-12 13:46:57 -07002795CompiledMethod* CompilerDriver::GetCompiledMethod(MethodReference ref) const {
Mathieu Chartieracab8d42016-11-23 13:45:58 -08002796 CompiledMethod* compiled_method = nullptr;
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002797 compiled_methods_.Get(ref, &compiled_method);
Mathieu Chartieracab8d42016-11-23 13:45:58 -08002798 return compiled_method;
Brian Carlstrom7940e442013-07-12 13:46:57 -07002799}
2800
Andreas Gampe8d295f82015-01-20 14:50:21 -08002801std::string CompilerDriver::GetMemoryUsageString(bool extended) const {
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002802 std::ostringstream oss;
Calin Juravle69158982016-03-16 11:53:41 +00002803 const gc::Heap* const heap = Runtime::Current()->GetHeap();
Anton Kirilovdd9473b2016-01-28 15:08:01 +00002804 const size_t java_alloc = heap->GetBytesAllocated();
Calin Juravle69158982016-03-16 11:53:41 +00002805 oss << "arena alloc=" << PrettySize(max_arena_alloc_) << " (" << max_arena_alloc_ << "B)";
Anton Kirilovdd9473b2016-01-28 15:08:01 +00002806 oss << " java alloc=" << PrettySize(java_alloc) << " (" << java_alloc << "B)";
Elliott Hughes7bf5a262015-04-02 20:55:07 -07002807#if defined(__BIONIC__) || defined(__GLIBC__)
Anton Kirilovdd9473b2016-01-28 15:08:01 +00002808 const struct mallinfo info = mallinfo();
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002809 const size_t allocated_space = static_cast<size_t>(info.uordblks);
2810 const size_t free_space = static_cast<size_t>(info.fordblks);
Anton Kirilovdd9473b2016-01-28 15:08:01 +00002811 oss << " native alloc=" << PrettySize(allocated_space) << " (" << allocated_space << "B)"
2812 << " free=" << PrettySize(free_space) << " (" << free_space << "B)";
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002813#endif
Vladimir Marko35831e82015-09-11 11:59:18 +01002814 compiled_method_storage_.DumpMemoryUsage(oss, extended);
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002815 return oss.str();
2816}
2817
Andreas Gampeace0dc12016-01-20 13:33:13 -08002818void CompilerDriver::InitializeThreadPools() {
2819 size_t parallel_count = parallel_thread_count_ > 0 ? parallel_thread_count_ - 1 : 0;
2820 parallel_thread_pool_.reset(
2821 new ThreadPool("Compiler driver thread pool", parallel_count));
2822 single_thread_pool_.reset(new ThreadPool("Single-threaded Compiler driver thread pool", 0));
2823}
2824
2825void CompilerDriver::FreeThreadPools() {
2826 parallel_thread_pool_.reset();
2827 single_thread_pool_.reset();
2828}
2829
Nicolas Geoffray486dda02017-09-11 14:15:52 +01002830void CompilerDriver::SetClasspathDexFiles(const std::vector<const DexFile*>& dex_files) {
2831 classpath_classes_.AddDexFiles(dex_files);
Mathieu Chartier72041a02017-07-14 18:23:25 -07002832}
2833
Brian Carlstrom7940e442013-07-12 13:46:57 -07002834} // namespace art