blob: d46cffb1e89f3687e12f0bd087ef5838602c2552 [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>
Andreas Gampeb0f370e2014-09-25 22:51:40 -070020#include <unordered_set>
Anwar Ghuloum67f99412013-08-12 14:19:48 -070021#include <vector>
Brian Carlstrom7940e442013-07-12 13:46:57 -070022
Mathieu Chartierab972ef2014-12-03 17:38:22 -080023#ifndef __APPLE__
24#include <malloc.h> // For mallinfo
25#endif
26
Andreas Gampe5c803112018-04-13 17:28:34 -070027#include "android-base/logging.h"
Narayan Kamathe3eae5e2016-10-27 11:47:30 +010028#include "android-base/strings.h"
29
Mathieu Chartierc7853442015-03-27 14:35:38 -070030#include "art_field-inl.h"
Mathieu Chartiere401d142015-04-22 13:56:20 -070031#include "art_method-inl.h"
Andreas Gampef0446e92017-05-16 13:51:57 -070032#include "base/arena_allocator.h"
David Brazdild9c90372016-09-14 16:53:55 +010033#include "base/array_ref.h"
Vladimir Marko492a7fa2016-06-01 18:38:43 +010034#include "base/bit_vector.h"
Andreas Gampe542451c2016-07-26 09:02:02 -070035#include "base/enums.h"
Andreas Gampe170331f2017-12-07 18:41:03 -080036#include "base/logging.h" // For VLOG
Brian Carlstrom7940e442013-07-12 13:46:57 -070037#include "base/stl_util.h"
Mathieu Chartier32ce2ad2016-03-04 14:58:03 -080038#include "base/systrace.h"
Vladimir Marko80afd022015-05-19 18:08:00 +010039#include "base/time_utils.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070040#include "base/timing_logger.h"
Vladimir Marko3481ba22015-04-13 12:22:36 +010041#include "class_linker-inl.h"
Vladimir Markod8dbc8d2017-09-20 13:37:47 +010042#include "compiled_method-inl.h"
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +000043#include "compiler.h"
Nicolas Geoffray6bb7f1b2016-11-03 10:52:49 +000044#include "compiler_callbacks.h"
Vladimir Markobe0e5462014-02-26 11:24:15 +000045#include "compiler_driver-inl.h"
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -070046#include "dex/class_accessor-inl.h"
David Sehrb2ec9f52018-02-21 13:20:31 -080047#include "dex/descriptors_names.h"
David Sehr9e734c72018-01-04 17:56:19 -080048#include "dex/dex_file-inl.h"
49#include "dex/dex_file_annotations.h"
50#include "dex/dex_instruction-inl.h"
Andreas Gampe5eb0d382015-07-23 01:19:26 -070051#include "dex/dex_to_dex_compiler.h"
Vladimir Markoc7f83202014-01-24 17:55:18 +000052#include "dex/verification_results.h"
Vladimir Marko2730db02014-01-27 11:15:17 +000053#include "dex/verified_method.h"
Steven Morelande431e272017-07-18 16:53:49 -070054#include "dex_compilation_unit.h"
Mark Mendellae9fd932014-02-10 16:14:35 -080055#include "driver/compiler_options.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070056#include "gc/accounting/card_table-inl.h"
57#include "gc/accounting/heap_bitmap.h"
Mathieu Chartiere401d142015-04-22 13:56:20 -070058#include "gc/space/image_space.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070059#include "gc/space/space.h"
Steven Morelande431e272017-07-18 16:53:49 -070060#include "handle_scope-inl.h"
61#include "intrinsics_enum.h"
Vladimir Markoa3ad0cd2018-05-04 10:06:38 +010062#include "jni/jni_internal.h"
Vladimir Markod8dbc8d2017-09-20 13:37:47 +010063#include "linker/linker_patch.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070064#include "mirror/class-inl.h"
Steven Morelande431e272017-07-18 16:53:49 -070065#include "mirror/class_loader.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070066#include "mirror/dex_cache-inl.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070067#include "mirror/object-inl.h"
Andreas Gampec6ea7d02017-02-01 16:46:28 -080068#include "mirror/object-refvisitor-inl.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070069#include "mirror/object_array-inl.h"
70#include "mirror/throwable.h"
Steven Morelande431e272017-07-18 16:53:49 -070071#include "object_lock.h"
David Sehr82d046e2018-04-23 08:14:19 -070072#include "profile/profile_compilation_info.h"
Steven Morelande431e272017-07-18 16:53:49 -070073#include "runtime.h"
Orion Hodson26ef34c2017-11-01 13:32:41 +000074#include "runtime_intrinsics.h"
Mathieu Chartier0795f232016-09-27 18:43:30 -070075#include "scoped_thread_state_change-inl.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070076#include "thread.h"
Andreas Gampeb0f370e2014-09-25 22:51:40 -070077#include "thread_list.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070078#include "thread_pool.h"
Ian Rogers848871b2013-08-05 10:56:33 -070079#include "trampolines/trampoline_compiler.h"
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +010080#include "transaction.h"
Mathieu Chartier93764b82017-07-17 14:51:53 -070081#include "utils/atomic_dex_ref_map-inl.h"
Vladimir Marko20f85592015-03-19 10:07:02 +000082#include "utils/dex_cache_arrays_layout-inl.h"
Andreas Gampee21dc3d2014-12-08 16:59:43 -080083#include "utils/swap_space.h"
Nicolas Geoffrayb0bbe8e2016-11-19 10:42:37 +000084#include "vdex_file.h"
Vladimir Marko2bc47802014-02-10 09:43:07 +000085#include "verifier/method_verifier-inl.h"
Steven Morelande431e272017-07-18 16:53:49 -070086#include "verifier/method_verifier.h"
Nicolas Geoffray08025182016-10-25 17:20:18 +010087#include "verifier/verifier_deps.h"
Andreas Gampe6d7abbd2017-04-24 13:19:09 -070088#include "verifier/verifier_enums.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070089
Brian Carlstrom7940e442013-07-12 13:46:57 -070090namespace art {
91
Mathieu Chartier8e219ae2014-08-19 14:29:46 -070092static constexpr bool kTimeCompileMethod = !kIsDebugBuild;
93
Calin Juravle226501b2015-12-11 14:41:31 +000094// Print additional info during profile guided compilation.
95static constexpr bool kDebugProfileGuidedCompilation = false;
96
Chang Xing70f689d2017-06-08 17:16:12 -070097// Max encoded fields allowed for initializing app image. Hardcode the number for now
98// because 5000 should be large enough.
99static constexpr uint32_t kMaxEncodedFields = 5000;
100
Brian Carlstrom7940e442013-07-12 13:46:57 -0700101static double Percentage(size_t x, size_t y) {
102 return 100.0 * (static_cast<double>(x)) / (static_cast<double>(x + y));
103}
104
105static void DumpStat(size_t x, size_t y, const char* str) {
106 if (x == 0 && y == 0) {
107 return;
108 }
Ian Rogerse732ef12013-10-09 15:22:24 -0700109 LOG(INFO) << Percentage(x, y) << "% of " << str << " for " << (x + y) << " cases";
Brian Carlstrom7940e442013-07-12 13:46:57 -0700110}
111
Vladimir Markof096aad2014-01-23 15:51:58 +0000112class CompilerDriver::AOTCompilationStats {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700113 public:
114 AOTCompilationStats()
Mathieu Chartier41dba672018-12-21 15:06:17 -0800115 : stats_lock_("AOT compilation statistics lock") {}
Brian Carlstrom7940e442013-07-12 13:46:57 -0700116
117 void Dump() {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700118 DumpStat(resolved_instance_fields_, unresolved_instance_fields_, "instance fields resolved");
119 DumpStat(resolved_local_static_fields_ + resolved_static_fields_, unresolved_static_fields_,
120 "static fields resolved");
121 DumpStat(resolved_local_static_fields_, resolved_static_fields_ + unresolved_static_fields_,
122 "static fields local to a class");
123 DumpStat(safe_casts_, not_safe_casts_, "check-casts removed based on type information");
124 // Note, the code below subtracts the stat value so that when added to the stat value we have
125 // 100% of samples. TODO: clean this up.
126 DumpStat(type_based_devirtualization_,
127 resolved_methods_[kVirtual] + unresolved_methods_[kVirtual] +
128 resolved_methods_[kInterface] + unresolved_methods_[kInterface] -
129 type_based_devirtualization_,
130 "virtual/interface calls made direct based on type information");
131
Mathieu Chartier41dba672018-12-21 15:06:17 -0800132 const size_t total = std::accumulate(
133 class_status_count_,
134 class_status_count_ + static_cast<size_t>(ClassStatus::kLast) + 1,
135 0u);
136 for (size_t i = 0; i <= static_cast<size_t>(ClassStatus::kLast); ++i) {
137 std::ostringstream oss;
138 oss << "classes with status " << static_cast<ClassStatus>(i);
139 DumpStat(class_status_count_[i], total - class_status_count_[i], oss.str().c_str());
140 }
141
Brian Carlstrom7940e442013-07-12 13:46:57 -0700142 for (size_t i = 0; i <= kMaxInvokeType; i++) {
143 std::ostringstream oss;
144 oss << static_cast<InvokeType>(i) << " methods were AOT resolved";
145 DumpStat(resolved_methods_[i], unresolved_methods_[i], oss.str().c_str());
146 if (virtual_made_direct_[i] > 0) {
147 std::ostringstream oss2;
148 oss2 << static_cast<InvokeType>(i) << " methods made direct";
149 DumpStat(virtual_made_direct_[i],
150 resolved_methods_[i] + unresolved_methods_[i] - virtual_made_direct_[i],
151 oss2.str().c_str());
152 }
153 if (direct_calls_to_boot_[i] > 0) {
154 std::ostringstream oss2;
155 oss2 << static_cast<InvokeType>(i) << " method calls are direct into boot";
156 DumpStat(direct_calls_to_boot_[i],
157 resolved_methods_[i] + unresolved_methods_[i] - direct_calls_to_boot_[i],
158 oss2.str().c_str());
159 }
160 if (direct_methods_to_boot_[i] > 0) {
161 std::ostringstream oss2;
162 oss2 << static_cast<InvokeType>(i) << " method calls have methods in boot";
163 DumpStat(direct_methods_to_boot_[i],
164 resolved_methods_[i] + unresolved_methods_[i] - direct_methods_to_boot_[i],
165 oss2.str().c_str());
166 }
167 }
168 }
169
170// Allow lossy statistics in non-debug builds.
171#ifndef NDEBUG
172#define STATS_LOCK() MutexLock mu(Thread::Current(), stats_lock_)
173#else
174#define STATS_LOCK()
175#endif
176
Mathieu Chartier90443472015-07-16 20:32:27 -0700177 void ResolvedInstanceField() REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700178 STATS_LOCK();
179 resolved_instance_fields_++;
180 }
181
Mathieu Chartier90443472015-07-16 20:32:27 -0700182 void UnresolvedInstanceField() REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700183 STATS_LOCK();
184 unresolved_instance_fields_++;
185 }
186
Mathieu Chartier90443472015-07-16 20:32:27 -0700187 void ResolvedLocalStaticField() REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700188 STATS_LOCK();
189 resolved_local_static_fields_++;
190 }
191
Mathieu Chartier90443472015-07-16 20:32:27 -0700192 void ResolvedStaticField() REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700193 STATS_LOCK();
194 resolved_static_fields_++;
195 }
196
Mathieu Chartier90443472015-07-16 20:32:27 -0700197 void UnresolvedStaticField() REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700198 STATS_LOCK();
199 unresolved_static_fields_++;
200 }
201
202 // Indicate that type information from the verifier led to devirtualization.
Mathieu Chartier90443472015-07-16 20:32:27 -0700203 void PreciseTypeDevirtualization() REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700204 STATS_LOCK();
205 type_based_devirtualization_++;
206 }
207
Brian Carlstrom7940e442013-07-12 13:46:57 -0700208 // A check-cast could be eliminated due to verifier type analysis.
Mathieu Chartier90443472015-07-16 20:32:27 -0700209 void SafeCast() REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700210 STATS_LOCK();
211 safe_casts_++;
212 }
213
214 // A check-cast couldn't be eliminated due to verifier type analysis.
Mathieu Chartier90443472015-07-16 20:32:27 -0700215 void NotASafeCast() REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700216 STATS_LOCK();
217 not_safe_casts_++;
218 }
219
Mathieu Chartier41dba672018-12-21 15:06:17 -0800220 // Register a class status.
221 void AddClassStatus(ClassStatus status) REQUIRES(!stats_lock_) {
222 STATS_LOCK();
223 ++class_status_count_[static_cast<size_t>(status)];
224 }
225
Brian Carlstrom7940e442013-07-12 13:46:57 -0700226 private:
227 Mutex stats_lock_;
228
Mathieu Chartier41dba672018-12-21 15:06:17 -0800229 size_t resolved_instance_fields_ = 0u;
230 size_t unresolved_instance_fields_ = 0u;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700231
Mathieu Chartier41dba672018-12-21 15:06:17 -0800232 size_t resolved_local_static_fields_ = 0u;
233 size_t resolved_static_fields_ = 0u;
234 size_t unresolved_static_fields_ = 0u;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700235 // Type based devirtualization for invoke interface and virtual.
Mathieu Chartier41dba672018-12-21 15:06:17 -0800236 size_t type_based_devirtualization_ = 0u;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700237
Mathieu Chartier41dba672018-12-21 15:06:17 -0800238 size_t resolved_methods_[kMaxInvokeType + 1] = {};
239 size_t unresolved_methods_[kMaxInvokeType + 1] = {};
240 size_t virtual_made_direct_[kMaxInvokeType + 1] = {};
241 size_t direct_calls_to_boot_[kMaxInvokeType + 1] = {};
242 size_t direct_methods_to_boot_[kMaxInvokeType + 1] = {};
Brian Carlstrom7940e442013-07-12 13:46:57 -0700243
Mathieu Chartier41dba672018-12-21 15:06:17 -0800244 size_t safe_casts_ = 0u;
245 size_t not_safe_casts_ = 0u;
246
247 size_t class_status_count_[static_cast<size_t>(ClassStatus::kLast) + 1] = {};
Brian Carlstrom7940e442013-07-12 13:46:57 -0700248
249 DISALLOW_COPY_AND_ASSIGN(AOTCompilationStats);
250};
251
Jeff Haodcdc85b2015-12-04 14:06:18 -0800252CompilerDriver::CompilerDriver(
253 const CompilerOptions* compiler_options,
Jeff Haodcdc85b2015-12-04 14:06:18 -0800254 Compiler::Kind compiler_kind,
Vladimir Marko944da602016-02-19 12:27:55 +0000255 size_t thread_count,
Vladimir Marko1a2a5cd2018-11-07 15:39:48 +0000256 int swap_fd)
Calin Juravle226501b2015-12-11 14:41:31 +0000257 : compiler_options_(compiler_options),
Ian Rogers72d32622014-05-06 16:20:11 -0700258 compiler_(Compiler::Create(this, compiler_kind)),
Jeff Hao48699fb2015-04-06 14:21:37 -0700259 compiler_kind_(compiler_kind),
Andreas Gampef39208f2017-10-19 15:06:59 -0700260 number_of_soft_verifier_failures_(0),
Andreas Gampe6cf49e52015-03-05 13:08:45 -0800261 had_hard_verifier_failure_(false),
Andreas Gampeace0dc12016-01-20 13:33:13 -0800262 parallel_thread_count_(thread_count),
Brian Carlstrom7940e442013-07-12 13:46:57 -0700263 stats_(new AOTCompilationStats),
Calin Juravle998c2162015-12-21 15:39:33 +0200264 compiled_method_storage_(swap_fd),
Vladimir Marko492a7fa2016-06-01 18:38:43 +0100265 max_arena_alloc_(0),
Mathieu Chartiera79efdb2018-01-18 16:31:01 -0800266 dex_to_dex_compiler_(this) {
Brian Carlstrom6449c622014-02-10 23:48:36 -0800267 DCHECK(compiler_options_ != nullptr);
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700268
Ian Rogers72d32622014-05-06 16:20:11 -0700269 compiler_->Init();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700270
Andreas Gampecac31ad2017-11-06 20:01:17 -0800271 compiled_method_storage_.SetDedupeEnabled(compiler_options_->DeduplicateCode());
Brian Carlstrom7940e442013-07-12 13:46:57 -0700272}
273
274CompilerDriver::~CompilerDriver() {
Mathieu Chartier93764b82017-07-17 14:51:53 -0700275 compiled_methods_.Visit([this](const DexFileReference& ref ATTRIBUTE_UNUSED,
Mathieu Chartieracab8d42016-11-23 13:45:58 -0800276 CompiledMethod* method) {
277 if (method != nullptr) {
Vladimir Marko33f7c8a2018-11-19 10:22:01 +0000278 CompiledMethod::ReleaseSwapAllocatedCompiledMethod(GetCompiledMethodStorage(), method);
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800279 }
Mathieu Chartieracab8d42016-11-23 13:45:58 -0800280 });
Ian Rogers72d32622014-05-06 16:20:11 -0700281 compiler_->UnInit();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700282}
283
Vladimir Marko35831e82015-09-11 11:59:18 +0100284
Vladimir Markoa0431112018-06-25 09:32:54 +0100285#define CREATE_TRAMPOLINE(type, abi, offset) \
286 if (Is64BitInstructionSet(GetCompilerOptions().GetInstructionSet())) { \
287 return CreateTrampoline64(GetCompilerOptions().GetInstructionSet(), \
288 abi, \
289 type ## _ENTRYPOINT_OFFSET(PointerSize::k64, offset)); \
290 } else { \
291 return CreateTrampoline32(GetCompilerOptions().GetInstructionSet(), \
292 abi, \
293 type ## _ENTRYPOINT_OFFSET(PointerSize::k32, offset)); \
Ian Rogersdd7624d2014-03-14 17:43:00 -0700294 }
295
Vladimir Marko93205e32016-04-13 11:59:46 +0100296std::unique_ptr<const std::vector<uint8_t>> CompilerDriver::CreateJniDlsymLookup() const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700297 CREATE_TRAMPOLINE(JNI, kJniAbi, pDlsymLookup)
Ian Rogers848871b2013-08-05 10:56:33 -0700298}
299
Vladimir Marko93205e32016-04-13 11:59:46 +0100300std::unique_ptr<const std::vector<uint8_t>> CompilerDriver::CreateQuickGenericJniTrampoline()
301 const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700302 CREATE_TRAMPOLINE(QUICK, kQuickAbi, pQuickGenericJniTrampoline)
Andreas Gampe2da88232014-02-27 12:26:20 -0800303}
304
Vladimir Marko93205e32016-04-13 11:59:46 +0100305std::unique_ptr<const std::vector<uint8_t>> CompilerDriver::CreateQuickImtConflictTrampoline()
306 const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700307 CREATE_TRAMPOLINE(QUICK, kQuickAbi, pQuickImtConflictTrampoline)
Jeff Hao88474b42013-10-23 16:24:40 -0700308}
309
Vladimir Marko93205e32016-04-13 11:59:46 +0100310std::unique_ptr<const std::vector<uint8_t>> CompilerDriver::CreateQuickResolutionTrampoline()
311 const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700312 CREATE_TRAMPOLINE(QUICK, kQuickAbi, pQuickResolutionTrampoline)
Brian Carlstrom7940e442013-07-12 13:46:57 -0700313}
314
Vladimir Marko93205e32016-04-13 11:59:46 +0100315std::unique_ptr<const std::vector<uint8_t>> CompilerDriver::CreateQuickToInterpreterBridge()
316 const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700317 CREATE_TRAMPOLINE(QUICK, kQuickAbi, pQuickToInterpreterBridge)
Brian Carlstrom7940e442013-07-12 13:46:57 -0700318}
Ian Rogersdd7624d2014-03-14 17:43:00 -0700319#undef CREATE_TRAMPOLINE
Brian Carlstrom7940e442013-07-12 13:46:57 -0700320
321void CompilerDriver::CompileAll(jobject class_loader,
Brian Carlstrom45602482013-07-21 22:07:55 -0700322 const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -0800323 TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700324 DCHECK(!Runtime::Current()->IsStarted());
Andreas Gampeace0dc12016-01-20 13:33:13 -0800325
Vladimir Marko2afaff72018-11-30 17:01:50 +0000326 CheckThreadPools();
Andreas Gampeace0dc12016-01-20 13:33:13 -0800327
Vladimir Markoaad75c62016-10-03 08:46:48 +0000328 if (GetCompilerOptions().IsBootImage()) {
Nicolas Geoffray762869d2016-07-15 15:28:35 +0100329 // We don't need to setup the intrinsics for non boot image compilation, as
330 // those compilations will pick up a boot image that have the ArtMethod already
331 // set with the intrinsics flag.
Orion Hodson26ef34c2017-11-01 13:32:41 +0000332 InitializeIntrinsics();
Nicolas Geoffray762869d2016-07-15 15:28:35 +0100333 }
Andreas Gampe740667a2015-09-15 17:55:06 -0700334 // Compile:
335 // 1) Compile all classes and methods enabled for compilation. May fall back to dex-to-dex
336 // compilation.
Nicolas Geoffray49cda062017-04-21 13:08:25 +0100337 if (GetCompilerOptions().IsAnyCompilationEnabled()) {
Andreas Gampeace0dc12016-01-20 13:33:13 -0800338 Compile(class_loader, dex_files, timings);
Andreas Gampe740667a2015-09-15 17:55:06 -0700339 }
Nicolas Geoffray2d8801f2017-11-28 15:50:07 +0000340 if (GetCompilerOptions().GetDumpStats()) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700341 stats_->Dump();
342 }
343}
344
Mathieu Chartiera79efdb2018-01-18 16:31:01 -0800345static optimizer::DexToDexCompiler::CompilationLevel GetDexToDexCompilationLevel(
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700346 Thread* self, const CompilerDriver& driver, Handle<mirror::ClassLoader> class_loader,
Andreas Gampe3f1dcd32018-12-28 09:39:56 -0800347 const DexFile& dex_file, const dex::ClassDef& class_def)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700348 REQUIRES_SHARED(Locks::mutator_lock_) {
Nicolas Geoffrayf3075272018-01-08 12:41:19 +0000349 // When the dex file is uncompressed in the APK, we do not generate a copy in the .vdex
350 // file. As a result, dex2oat will map the dex file read-only, and we only need to check
351 // that to know if we can do quickening.
352 if (dex_file.GetContainer() != nullptr && dex_file.GetContainer()->IsReadOnly()) {
353 return optimizer::DexToDexCompiler::CompilationLevel::kDontDexToDexCompile;
354 }
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800355 auto* const runtime = Runtime::Current();
Nicolas Geoffray49cda062017-04-21 13:08:25 +0100356 DCHECK(driver.GetCompilerOptions().IsQuickeningCompilationEnabled());
Brian Carlstrom7940e442013-07-12 13:46:57 -0700357 const char* descriptor = dex_file.GetClassDescriptor(class_def);
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800358 ClassLinker* class_linker = runtime->GetClassLinker();
Vladimir Markoa8bba7d2018-05-30 15:18:48 +0100359 ObjPtr<mirror::Class> klass = class_linker->FindClass(self, descriptor, class_loader);
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700360 if (klass == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700361 CHECK(self->IsExceptionPending());
362 self->ClearException();
Mathieu Chartiera79efdb2018-01-18 16:31:01 -0800363 return optimizer::DexToDexCompiler::CompilationLevel::kDontDexToDexCompile;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700364 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700365 // DexToDex at the kOptimize level may introduce quickened opcodes, which replace symbolic
366 // references with actual offsets. We cannot re-verify such instructions.
367 //
368 // We store the verification information in the class status in the oat file, which the linker
369 // can validate (checksums) and use to skip load-time verification. It is thus safe to
370 // optimize when a class has been fully verified before.
Mathieu Chartiera79efdb2018-01-18 16:31:01 -0800371 optimizer::DexToDexCompiler::CompilationLevel max_level =
372 optimizer::DexToDexCompiler::CompilationLevel::kOptimize;
Alex Lighte40dd382017-01-25 17:44:53 -0800373 if (driver.GetCompilerOptions().GetDebuggable()) {
374 // We are debuggable so definitions of classes might be changed. We don't want to do any
375 // optimizations that could break that.
Mathieu Chartiera79efdb2018-01-18 16:31:01 -0800376 max_level = optimizer::DexToDexCompiler::CompilationLevel::kDontDexToDexCompile;
Alex Lighte40dd382017-01-25 17:44:53 -0800377 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700378 if (klass->IsVerified()) {
Sebastien Hertz75021222013-07-16 18:34:50 +0200379 // Class is verified so we can enable DEX-to-DEX compilation for performance.
Alex Lighte40dd382017-01-25 17:44:53 -0800380 return max_level;
Sebastien Hertz75021222013-07-16 18:34:50 +0200381 } else {
Andreas Gampe1a4bc7f2017-03-27 14:57:30 -0700382 // Class verification has failed: do not run DEX-to-DEX optimizations.
Mathieu Chartiera79efdb2018-01-18 16:31:01 -0800383 return optimizer::DexToDexCompiler::CompilationLevel::kDontDexToDexCompile;
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700384 }
385}
386
Mathieu Chartiera79efdb2018-01-18 16:31:01 -0800387static optimizer::DexToDexCompiler::CompilationLevel GetDexToDexCompilationLevel(
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700388 Thread* self,
389 const CompilerDriver& driver,
390 jobject jclass_loader,
391 const DexFile& dex_file,
Andreas Gampe3f1dcd32018-12-28 09:39:56 -0800392 const dex::ClassDef& class_def) {
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700393 ScopedObjectAccess soa(self);
394 StackHandleScope<1> hs(soa.Self());
395 Handle<mirror::ClassLoader> class_loader(
Mathieu Chartier0795f232016-09-27 18:43:30 -0700396 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader)));
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700397 return GetDexToDexCompilationLevel(self, driver, class_loader, dex_file, class_def);
398}
399
400// Does the runtime for the InstructionSet provide an implementation returned by
401// GetQuickGenericJniStub allowing down calls that aren't compiled using a JNI compiler?
402static bool InstructionSetHasGenericJniStub(InstructionSet isa) {
403 switch (isa) {
Vladimir Marko33bff252017-11-01 14:35:42 +0000404 case InstructionSet::kArm:
405 case InstructionSet::kArm64:
406 case InstructionSet::kThumb2:
407 case InstructionSet::kMips:
408 case InstructionSet::kMips64:
409 case InstructionSet::kX86:
410 case InstructionSet::kX86_64: return true;
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700411 default: return false;
412 }
413}
414
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800415template <typename CompileFn>
416static void CompileMethodHarness(
417 Thread* self,
418 CompilerDriver* driver,
Andreas Gampe3f1dcd32018-12-28 09:39:56 -0800419 const dex::CodeItem* code_item,
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800420 uint32_t access_flags,
421 InvokeType invoke_type,
422 uint16_t class_def_idx,
423 uint32_t method_idx,
424 Handle<mirror::ClassLoader> class_loader,
425 const DexFile& dex_file,
426 optimizer::DexToDexCompiler::CompilationLevel dex_to_dex_compilation_level,
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800427 Handle<mirror::DexCache> dex_cache,
428 CompileFn compile_fn) {
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700429 DCHECK(driver != nullptr);
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800430 CompiledMethod* compiled_method;
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700431 uint64_t start_ns = kTimeCompileMethod ? NanoTime() : 0;
432 MethodReference method_ref(&dex_file, method_idx);
433
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800434 compiled_method = compile_fn(self,
435 driver,
436 code_item,
437 access_flags,
438 invoke_type,
439 class_def_idx,
440 method_idx,
441 class_loader,
442 dex_file,
443 dex_to_dex_compilation_level,
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800444 dex_cache);
Igor Murashkin9d4b6da2016-07-29 09:51:58 -0700445
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700446 if (kTimeCompileMethod) {
447 uint64_t duration_ns = NanoTime() - start_ns;
448 if (duration_ns > MsToNs(driver->GetCompiler()->GetMaximumCompilationTimeBeforeWarning())) {
David Sehr709b0702016-10-13 09:12:37 -0700449 LOG(WARNING) << "Compilation of " << dex_file.PrettyMethod(method_idx)
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700450 << " took " << PrettyDuration(duration_ns);
451 }
452 }
453
454 if (compiled_method != nullptr) {
Vladimir Marko8e524ad2018-07-13 10:27:43 +0100455 driver->AddCompiledMethod(method_ref, compiled_method);
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700456 }
457
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700458 if (self->IsExceptionPending()) {
459 ScopedObjectAccess soa(self);
David Sehr709b0702016-10-13 09:12:37 -0700460 LOG(FATAL) << "Unexpected exception compiling: " << dex_file.PrettyMethod(method_idx) << "\n"
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700461 << self->GetException()->Dump();
Sebastien Hertz75021222013-07-16 18:34:50 +0200462 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700463}
464
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800465static void CompileMethodDex2Dex(
466 Thread* self,
467 CompilerDriver* driver,
Andreas Gampe3f1dcd32018-12-28 09:39:56 -0800468 const dex::CodeItem* code_item,
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800469 uint32_t access_flags,
470 InvokeType invoke_type,
471 uint16_t class_def_idx,
472 uint32_t method_idx,
473 Handle<mirror::ClassLoader> class_loader,
474 const DexFile& dex_file,
475 optimizer::DexToDexCompiler::CompilationLevel dex_to_dex_compilation_level,
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800476 Handle<mirror::DexCache> dex_cache) {
477 auto dex_2_dex_fn = [](Thread* self ATTRIBUTE_UNUSED,
478 CompilerDriver* driver,
Andreas Gampe3f1dcd32018-12-28 09:39:56 -0800479 const dex::CodeItem* code_item,
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800480 uint32_t access_flags,
481 InvokeType invoke_type,
482 uint16_t class_def_idx,
483 uint32_t method_idx,
484 Handle<mirror::ClassLoader> class_loader,
485 const DexFile& dex_file,
486 optimizer::DexToDexCompiler::CompilationLevel dex_to_dex_compilation_level,
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800487 Handle<mirror::DexCache> dex_cache ATTRIBUTE_UNUSED) -> CompiledMethod* {
488 DCHECK(driver != nullptr);
489 MethodReference method_ref(&dex_file, method_idx);
490
491 optimizer::DexToDexCompiler* const compiler = &driver->GetDexToDexCompiler();
492
493 if (compiler->ShouldCompileMethod(method_ref)) {
Vladimir Marko2afaff72018-11-30 17:01:50 +0000494 const VerificationResults* results = driver->GetCompilerOptions().GetVerificationResults();
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800495 DCHECK(results != nullptr);
496 const VerifiedMethod* verified_method = results->GetVerifiedMethod(method_ref);
497 // Do not optimize if a VerifiedMethod is missing. SafeCast elision,
498 // for example, relies on it.
499 return compiler->CompileMethod(
500 code_item,
501 access_flags,
502 invoke_type,
503 class_def_idx,
504 method_idx,
505 class_loader,
506 dex_file,
507 (verified_method != nullptr)
508 ? dex_to_dex_compilation_level
509 : optimizer::DexToDexCompiler::CompilationLevel::kDontDexToDexCompile);
510 }
511 return nullptr;
512 };
513 CompileMethodHarness(self,
514 driver,
515 code_item,
516 access_flags,
517 invoke_type,
518 class_def_idx,
519 method_idx,
520 class_loader,
521 dex_file,
522 dex_to_dex_compilation_level,
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800523 dex_cache,
524 dex_2_dex_fn);
525}
526
527static void CompileMethodQuick(
528 Thread* self,
529 CompilerDriver* driver,
Andreas Gampe3f1dcd32018-12-28 09:39:56 -0800530 const dex::CodeItem* code_item,
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800531 uint32_t access_flags,
532 InvokeType invoke_type,
533 uint16_t class_def_idx,
534 uint32_t method_idx,
535 Handle<mirror::ClassLoader> class_loader,
536 const DexFile& dex_file,
537 optimizer::DexToDexCompiler::CompilationLevel dex_to_dex_compilation_level,
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800538 Handle<mirror::DexCache> dex_cache) {
539 auto quick_fn = [](
540 Thread* self,
541 CompilerDriver* driver,
Andreas Gampe3f1dcd32018-12-28 09:39:56 -0800542 const dex::CodeItem* code_item,
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800543 uint32_t access_flags,
544 InvokeType invoke_type,
545 uint16_t class_def_idx,
546 uint32_t method_idx,
547 Handle<mirror::ClassLoader> class_loader,
548 const DexFile& dex_file,
549 optimizer::DexToDexCompiler::CompilationLevel dex_to_dex_compilation_level,
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800550 Handle<mirror::DexCache> dex_cache) {
551 DCHECK(driver != nullptr);
552 CompiledMethod* compiled_method = nullptr;
553 MethodReference method_ref(&dex_file, method_idx);
554
555 if ((access_flags & kAccNative) != 0) {
556 // Are we extracting only and have support for generic JNI down calls?
557 if (!driver->GetCompilerOptions().IsJniCompilationEnabled() &&
Vladimir Markoa0431112018-06-25 09:32:54 +0100558 InstructionSetHasGenericJniStub(driver->GetCompilerOptions().GetInstructionSet())) {
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800559 // Leaving this empty will trigger the generic JNI version
560 } else {
561 // Query any JNI optimization annotations such as @FastNative or @CriticalNative.
562 access_flags |= annotations::GetNativeMethodAnnotationAccessFlags(
563 dex_file, dex_file.GetClassDef(class_def_idx), method_idx);
564
565 compiled_method = driver->GetCompiler()->JniCompile(
566 access_flags, method_idx, dex_file, dex_cache);
567 CHECK(compiled_method != nullptr);
568 }
569 } else if ((access_flags & kAccAbstract) != 0) {
570 // Abstract methods don't have code.
571 } else {
Vladimir Marko2afaff72018-11-30 17:01:50 +0000572 const VerificationResults* results = driver->GetCompilerOptions().GetVerificationResults();
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800573 DCHECK(results != nullptr);
574 const VerifiedMethod* verified_method = results->GetVerifiedMethod(method_ref);
Mathieu Chartiera297b552018-11-07 11:41:01 -0800575 bool compile =
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800576 // Basic checks, e.g., not <clinit>.
577 results->IsCandidateForCompilation(method_ref, access_flags) &&
578 // Did not fail to create VerifiedMethod metadata.
579 verified_method != nullptr &&
580 // Do not have failures that should punt to the interpreter.
581 !verified_method->HasRuntimeThrow() &&
582 (verified_method->GetEncounteredVerificationFailures() &
583 (verifier::VERIFY_ERROR_FORCE_INTERPRETER | verifier::VERIFY_ERROR_LOCKING)) == 0 &&
584 // Is eligable for compilation by methods-to-compile filter.
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800585 driver->ShouldCompileBasedOnProfile(method_ref);
586
587 if (compile) {
588 // NOTE: if compiler declines to compile this method, it will return null.
589 compiled_method = driver->GetCompiler()->Compile(code_item,
590 access_flags,
591 invoke_type,
592 class_def_idx,
593 method_idx,
594 class_loader,
595 dex_file,
596 dex_cache);
Andreas Gampe5c803112018-04-13 17:28:34 -0700597 ProfileMethodsCheck check_type =
598 driver->GetCompilerOptions().CheckProfiledMethodsCompiled();
599 if (UNLIKELY(check_type != ProfileMethodsCheck::kNone)) {
600 bool violation = driver->ShouldCompileBasedOnProfile(method_ref) &&
601 (compiled_method == nullptr);
602 if (violation) {
603 std::ostringstream oss;
604 oss << "Failed to compile "
605 << method_ref.dex_file->PrettyMethod(method_ref.index)
606 << "[" << method_ref.dex_file->GetLocation() << "]"
607 << " as expected by profile";
608 switch (check_type) {
609 case ProfileMethodsCheck::kNone:
610 break;
611 case ProfileMethodsCheck::kLog:
612 LOG(ERROR) << oss.str();
613 break;
614 case ProfileMethodsCheck::kAbort:
615 LOG(FATAL_WITHOUT_ABORT) << oss.str();
616 _exit(1);
617 }
618 }
619 }
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800620 }
621 if (compiled_method == nullptr &&
622 dex_to_dex_compilation_level !=
623 optimizer::DexToDexCompiler::CompilationLevel::kDontDexToDexCompile) {
624 DCHECK(!Runtime::Current()->UseJitCompilation());
625 // TODO: add a command-line option to disable DEX-to-DEX compilation ?
Mathieu Chartier279e3a32018-01-24 18:17:55 -0800626 driver->GetDexToDexCompiler().MarkForCompilation(self, method_ref);
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800627 }
628 }
629 return compiled_method;
630 };
631 CompileMethodHarness(self,
632 driver,
633 code_item,
634 access_flags,
635 invoke_type,
636 class_def_idx,
637 method_idx,
638 class_loader,
639 dex_file,
640 dex_to_dex_compilation_level,
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800641 dex_cache,
642 quick_fn);
643}
644
Vladimir Markodc4bcce2018-06-21 16:15:42 +0100645// Compile a single Method. (For testing only.)
646void CompilerDriver::CompileOne(Thread* self,
647 jobject class_loader,
648 const DexFile& dex_file,
649 uint16_t class_def_idx,
650 uint32_t method_idx,
651 uint32_t access_flags,
652 InvokeType invoke_type,
Andreas Gampe3f1dcd32018-12-28 09:39:56 -0800653 const dex::CodeItem* code_item,
Vladimir Markodc4bcce2018-06-21 16:15:42 +0100654 Handle<mirror::DexCache> dex_cache,
655 Handle<mirror::ClassLoader> h_class_loader) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700656 // Can we run DEX-to-DEX compiler on this class ?
Mathieu Chartiera79efdb2018-01-18 16:31:01 -0800657 optimizer::DexToDexCompiler::CompilationLevel dex_to_dex_compilation_level =
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700658 GetDexToDexCompilationLevel(self,
659 *this,
Vladimir Markodc4bcce2018-06-21 16:15:42 +0100660 class_loader,
661 dex_file,
662 dex_file.GetClassDef(class_def_idx));
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700663
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800664 CompileMethodQuick(self,
665 this,
666 code_item,
667 access_flags,
668 invoke_type,
669 class_def_idx,
670 method_idx,
Vladimir Markodc4bcce2018-06-21 16:15:42 +0100671 h_class_loader,
672 dex_file,
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800673 dex_to_dex_compilation_level,
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800674 dex_cache);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700675
Mathieu Chartier279e3a32018-01-24 18:17:55 -0800676 const size_t num_methods = dex_to_dex_compiler_.NumCodeItemsToQuicken(self);
Mathieu Chartiera79efdb2018-01-18 16:31:01 -0800677 if (num_methods != 0) {
678 DCHECK_EQ(num_methods, 1u);
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800679 CompileMethodDex2Dex(self,
680 this,
681 code_item,
682 access_flags,
683 invoke_type,
684 class_def_idx,
685 method_idx,
Vladimir Markodc4bcce2018-06-21 16:15:42 +0100686 h_class_loader,
687 dex_file,
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800688 dex_to_dex_compilation_level,
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800689 dex_cache);
Mathieu Chartiera79efdb2018-01-18 16:31:01 -0800690 dex_to_dex_compiler_.ClearState();
Vladimir Marko492a7fa2016-06-01 18:38:43 +0100691 }
Mathieu Chartier2535abe2015-02-17 10:38:49 -0800692}
693
Andreas Gampeace0dc12016-01-20 13:33:13 -0800694void CompilerDriver::Resolve(jobject class_loader,
695 const std::vector<const DexFile*>& dex_files,
696 TimingLogger* timings) {
697 // Resolution allocates classes and needs to run single-threaded to be deterministic.
698 bool force_determinism = GetCompilerOptions().IsForceDeterminism();
699 ThreadPool* resolve_thread_pool = force_determinism
700 ? single_thread_pool_.get()
701 : parallel_thread_pool_.get();
702 size_t resolve_thread_count = force_determinism ? 1U : parallel_thread_count_;
703
Brian Carlstrom7940e442013-07-12 13:46:57 -0700704 for (size_t i = 0; i != dex_files.size(); ++i) {
705 const DexFile* dex_file = dex_files[i];
Kenny Rootd5185342014-05-13 14:47:05 -0700706 CHECK(dex_file != nullptr);
Andreas Gampeace0dc12016-01-20 13:33:13 -0800707 ResolveDexFile(class_loader,
708 *dex_file,
709 dex_files,
710 resolve_thread_pool,
711 resolve_thread_count,
712 timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700713 }
714}
715
Mathieu Chartiercd0f38f2018-10-15 09:44:35 -0700716void CompilerDriver::ResolveConstStrings(const std::vector<const DexFile*>& dex_files,
717 bool only_startup_strings,
718 TimingLogger* timings) {
Nicolas Geoffray571d2342016-10-12 13:03:15 +0000719 ScopedObjectAccess soa(Thread::Current());
720 StackHandleScope<1> hs(soa.Self());
721 ClassLinker* const class_linker = Runtime::Current()->GetClassLinker();
722 MutableHandle<mirror::DexCache> dex_cache(hs.NewHandle<mirror::DexCache>(nullptr));
Mathieu Chartier22752772018-10-18 14:18:59 -0700723 size_t num_instructions = 0u;
Nicolas Geoffray571d2342016-10-12 13:03:15 +0000724
Andreas Gampeace0dc12016-01-20 13:33:13 -0800725 for (const DexFile* dex_file : dex_files) {
Vladimir Markocd556b02017-02-03 11:47:34 +0000726 dex_cache.Assign(class_linker->FindDexCache(soa.Self(), *dex_file));
Mathieu Chartier1ca718e2018-10-23 12:55:34 -0700727 if (only_startup_strings) {
728 // When resolving startup strings, create the preresolved strings array.
729 dex_cache->AddPreResolvedStringsArray();
730 }
Andreas Gampeace0dc12016-01-20 13:33:13 -0800731 TimingLogger::ScopedTiming t("Resolve const-string Strings", timings);
732
Mathieu Chartiera297b552018-11-07 11:41:01 -0800733 // TODO: Implement a profile-based filter for the boot image. See b/76145463.
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -0700734 for (ClassAccessor accessor : dex_file->GetClasses()) {
Vladimir Marko1a2a5cd2018-11-07 15:39:48 +0000735 const ProfileCompilationInfo* profile_compilation_info =
736 GetCompilerOptions().GetProfileCompilationInfo();
Mathieu Chartiera297b552018-11-07 11:41:01 -0800737
Mathieu Chartier22752772018-10-18 14:18:59 -0700738 const bool is_startup_class =
Vladimir Marko1a2a5cd2018-11-07 15:39:48 +0000739 profile_compilation_info != nullptr &&
740 profile_compilation_info->ContainsClass(*dex_file, accessor.GetClassIdx());
Mathieu Chartier22752772018-10-18 14:18:59 -0700741
Mathieu Chartier0d896bd2018-05-25 00:20:27 -0700742 for (const ClassAccessor::Method& method : accessor.GetMethods()) {
Mathieu Chartier22752772018-10-18 14:18:59 -0700743 const bool is_clinit = (method.GetAccessFlags() & kAccConstructor) != 0 &&
744 (method.GetAccessFlags() & kAccStatic) != 0;
745 const bool is_startup_clinit = is_startup_class && is_clinit;
746
Mathieu Chartiercd0f38f2018-10-15 09:44:35 -0700747 if (only_startup_strings &&
Vladimir Marko1a2a5cd2018-11-07 15:39:48 +0000748 profile_compilation_info != nullptr &&
749 (!profile_compilation_info->GetMethodHotness(method.GetReference()).IsStartup() &&
Mathieu Chartier22752772018-10-18 14:18:59 -0700750 !is_startup_clinit)) {
Mathieu Chartiercd0f38f2018-10-15 09:44:35 -0700751 continue;
752 }
753
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -0700754 // Resolve const-strings in the code. Done to have deterministic allocation behavior. Right
755 // now this is single-threaded for simplicity.
756 // TODO: Collect the relevant string indices in parallel, then allocate them sequentially
757 // in a stable order.
758 for (const DexInstructionPcPair& inst : method.GetInstructions()) {
759 switch (inst->Opcode()) {
760 case Instruction::CONST_STRING:
761 case Instruction::CONST_STRING_JUMBO: {
762 dex::StringIndex string_index((inst->Opcode() == Instruction::CONST_STRING)
763 ? inst->VRegB_21c()
764 : inst->VRegB_31c());
765 ObjPtr<mirror::String> string = class_linker->ResolveString(string_index, dex_cache);
766 CHECK(string != nullptr) << "Could not allocate a string when forcing determinism";
Mathieu Chartier1ca718e2018-10-23 12:55:34 -0700767 if (only_startup_strings) {
768 dex_cache->GetPreResolvedStrings()[string_index.index_] =
769 GcRoot<mirror::String>(string);
770 }
Mathieu Chartier22752772018-10-18 14:18:59 -0700771 ++num_instructions;
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -0700772 break;
773 }
Andreas Gampeace0dc12016-01-20 13:33:13 -0800774
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -0700775 default:
776 break;
777 }
778 }
Mathieu Chartier0d896bd2018-05-25 00:20:27 -0700779 }
Vladimir Marko175e7862018-03-27 09:03:13 +0000780 }
781 }
Mathieu Chartier22752772018-10-18 14:18:59 -0700782 VLOG(compiler) << "Resolved " << num_instructions << " const string instructions";
Vladimir Marko175e7862018-03-27 09:03:13 +0000783}
784
785// Initialize type check bit strings for check-cast and instance-of in the code. Done to have
786// deterministic allocation behavior. Right now this is single-threaded for simplicity.
787// TODO: Collect the relevant type indices in parallel, then process them sequentially in a
788// stable order.
789
790static void InitializeTypeCheckBitstrings(CompilerDriver* driver,
791 ClassLinker* class_linker,
792 Handle<mirror::DexCache> dex_cache,
793 const DexFile& dex_file,
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -0700794 const ClassAccessor::Method& method)
Vladimir Marko175e7862018-03-27 09:03:13 +0000795 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -0700796 for (const DexInstructionPcPair& inst : method.GetInstructions()) {
Vladimir Marko175e7862018-03-27 09:03:13 +0000797 switch (inst->Opcode()) {
798 case Instruction::CHECK_CAST:
799 case Instruction::INSTANCE_OF: {
800 dex::TypeIndex type_index(
801 (inst->Opcode() == Instruction::CHECK_CAST) ? inst->VRegB_21c() : inst->VRegC_22c());
802 const char* descriptor = dex_file.StringByTypeIdx(type_index);
803 // We currently do not use the bitstring type check for array or final (including
804 // primitive) classes. We may reconsider this in future if it's deemed to be beneficial.
805 // And we cannot use it for classes outside the boot image as we do not know the runtime
806 // value of their bitstring when compiling (it may not even get assigned at runtime).
Vladimir Markodc4bcce2018-06-21 16:15:42 +0100807 if (descriptor[0] == 'L' && driver->GetCompilerOptions().IsImageClass(descriptor)) {
Vladimir Marko175e7862018-03-27 09:03:13 +0000808 ObjPtr<mirror::Class> klass =
809 class_linker->LookupResolvedType(type_index,
810 dex_cache.Get(),
Andreas Gampe3db70682018-12-26 15:12:03 -0800811 /* class_loader= */ nullptr);
Vladimir Marko175e7862018-03-27 09:03:13 +0000812 CHECK(klass != nullptr) << descriptor << " should have been previously resolved.";
813 // Now assign the bitstring if the class is not final. Keep this in sync with sharpening.
814 if (!klass->IsFinal()) {
815 MutexLock subtype_check_lock(Thread::Current(), *Locks::subtype_check_lock_);
816 SubtypeCheck<ObjPtr<mirror::Class>>::EnsureAssigned(klass);
817 }
Andreas Gampeace0dc12016-01-20 13:33:13 -0800818 }
Vladimir Marko175e7862018-03-27 09:03:13 +0000819 break;
820 }
821
822 default:
823 break;
824 }
825 }
826}
827
828static void InitializeTypeCheckBitstrings(CompilerDriver* driver,
829 const std::vector<const DexFile*>& dex_files,
830 TimingLogger* timings) {
831 ScopedObjectAccess soa(Thread::Current());
832 StackHandleScope<1> hs(soa.Self());
833 ClassLinker* const class_linker = Runtime::Current()->GetClassLinker();
834 MutableHandle<mirror::DexCache> dex_cache(hs.NewHandle<mirror::DexCache>(nullptr));
835
836 for (const DexFile* dex_file : dex_files) {
837 dex_cache.Assign(class_linker->FindDexCache(soa.Self(), *dex_file));
838 TimingLogger::ScopedTiming t("Initialize type check bitstrings", timings);
839
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -0700840 for (ClassAccessor accessor : dex_file->GetClasses()) {
Vladimir Marko175e7862018-03-27 09:03:13 +0000841 // Direct and virtual methods.
Mathieu Chartier0d896bd2018-05-25 00:20:27 -0700842 for (const ClassAccessor::Method& method : accessor.GetMethods()) {
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -0700843 InitializeTypeCheckBitstrings(driver, class_linker, dex_cache, *dex_file, method);
Mathieu Chartier0d896bd2018-05-25 00:20:27 -0700844 }
Andreas Gampeace0dc12016-01-20 13:33:13 -0800845 }
846 }
847}
848
849inline void CompilerDriver::CheckThreadPools() {
850 DCHECK(parallel_thread_pool_ != nullptr);
851 DCHECK(single_thread_pool_ != nullptr);
852}
853
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +0000854static void EnsureVerifiedOrVerifyAtRuntime(jobject jclass_loader,
855 const std::vector<const DexFile*>& dex_files) {
856 ScopedObjectAccess soa(Thread::Current());
857 StackHandleScope<2> hs(soa.Self());
858 Handle<mirror::ClassLoader> class_loader(
859 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader)));
860 MutableHandle<mirror::Class> cls(hs.NewHandle<mirror::Class>(nullptr));
861 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
862
863 for (const DexFile* dex_file : dex_files) {
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -0700864 for (ClassAccessor accessor : dex_file->GetClasses()) {
865 cls.Assign(class_linker->FindClass(soa.Self(), accessor.GetDescriptor(), class_loader));
Andreas Gampefa4333d2017-02-14 11:10:34 -0800866 if (cls == nullptr) {
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +0000867 soa.Self()->ClearException();
868 } else if (&cls->GetDexFile() == dex_file) {
Nicolas Geoffray7cc3ae52017-03-07 14:33:37 +0000869 DCHECK(cls->IsErroneous() || cls->IsVerified() || cls->ShouldVerifyAtRuntime())
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +0000870 << cls->PrettyClass()
871 << " " << cls->GetStatus();
872 }
873 }
874 }
875}
876
Andreas Gampeace0dc12016-01-20 13:33:13 -0800877void CompilerDriver::PreCompile(jobject class_loader,
878 const std::vector<const DexFile*>& dex_files,
Vladimir Marko2afaff72018-11-30 17:01:50 +0000879 TimingLogger* timings,
880 /*inout*/ HashSet<std::string>* image_classes,
881 /*out*/ VerificationResults* verification_results) {
Andreas Gampeace0dc12016-01-20 13:33:13 -0800882 CheckThreadPools();
Vladimir Marko213ee2d2018-06-22 11:56:34 +0100883
Vladimir Markodc4bcce2018-06-21 16:15:42 +0100884 VLOG(compiler) << "Before precompile " << GetMemoryUsageString(false);
885
Vladimir Marko213ee2d2018-06-22 11:56:34 +0100886 compiled_classes_.AddDexFiles(GetCompilerOptions().GetDexFilesForOatFile());
887 dex_to_dex_compiler_.SetDexFiles(GetCompilerOptions().GetDexFilesForOatFile());
888
Vladimir Markodc4bcce2018-06-21 16:15:42 +0100889 // Precompile:
890 // 1) Load image classes.
891 // 2) Resolve all classes.
892 // 3) For deterministic boot image, resolve strings for const-string instructions.
893 // 4) Attempt to verify all classes.
894 // 5) Attempt to initialize image classes, and trivially initialized classes.
895 // 6) Update the set of image classes.
896 // 7) For deterministic boot image, initialize bitstrings for type checking.
Andreas Gampeace0dc12016-01-20 13:33:13 -0800897
Vladimir Marko2afaff72018-11-30 17:01:50 +0000898 LoadImageClasses(timings, image_classes);
Andreas Gampe8d295f82015-01-20 14:50:21 -0800899 VLOG(compiler) << "LoadImageClasses: " << GetMemoryUsageString(false);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700900
Nicolas Geoffray49cda062017-04-21 13:08:25 +0100901 if (compiler_options_->IsAnyCompilationEnabled()) {
Mathieu Chartier88b74b62017-07-16 17:08:19 -0700902 // Avoid adding the dex files in the case where we aren't going to add compiled methods.
903 // This reduces RAM usage for this case.
904 for (const DexFile* dex_file : dex_files) {
905 // Can be already inserted if the caller is CompileOne. This happens for gtests.
906 if (!compiled_methods_.HaveDexFile(dex_file)) {
Mathieu Chartierfc8b4222017-09-17 13:44:24 -0700907 compiled_methods_.AddDexFile(dex_file);
Mathieu Chartier88b74b62017-07-16 17:08:19 -0700908 }
909 }
Nicolas Geoffray49cda062017-04-21 13:08:25 +0100910 // Resolve eagerly to prepare for compilation.
Andreas Gampeace0dc12016-01-20 13:33:13 -0800911 Resolve(class_loader, dex_files, timings);
Mathieu Chartiere86deef2015-03-19 13:43:37 -0700912 VLOG(compiler) << "Resolve: " << GetMemoryUsageString(false);
913 }
914
Nicolas Geoffray60ca9492016-12-20 21:15:00 +0000915 if (compiler_options_->AssumeClassesAreVerified()) {
Mathieu Chartierab972ef2014-12-03 17:38:22 -0800916 VLOG(compiler) << "Verify none mode specified, skipping verification.";
Andreas Gampeace0dc12016-01-20 13:33:13 -0800917 SetVerified(class_loader, dex_files, timings);
Mathieu Chartiere86deef2015-03-19 13:43:37 -0700918 }
919
Nicolas Geoffray60ca9492016-12-20 21:15:00 +0000920 if (!compiler_options_->IsVerificationEnabled()) {
Jeff Hao4a200f52014-04-01 14:58:49 -0700921 return;
922 }
923
Vladimir Markoaad75c62016-10-03 08:46:48 +0000924 if (GetCompilerOptions().IsForceDeterminism() && GetCompilerOptions().IsBootImage()) {
Andreas Gampeace0dc12016-01-20 13:33:13 -0800925 // Resolve strings from const-string. Do this now to have a deterministic image.
Mathieu Chartiercd0f38f2018-10-15 09:44:35 -0700926 ResolveConstStrings(dex_files, /*only_startup_strings=*/ false, timings);
Andreas Gampeace0dc12016-01-20 13:33:13 -0800927 VLOG(compiler) << "Resolve const-strings: " << GetMemoryUsageString(false);
Mathieu Chartiercd0f38f2018-10-15 09:44:35 -0700928 } else if (GetCompilerOptions().ResolveStartupConstStrings()) {
929 ResolveConstStrings(dex_files, /*only_startup_strings=*/ true, timings);
Andreas Gampeace0dc12016-01-20 13:33:13 -0800930 }
931
Vladimir Marko2afaff72018-11-30 17:01:50 +0000932 Verify(class_loader, dex_files, timings, verification_results);
Andreas Gampe8d295f82015-01-20 14:50:21 -0800933 VLOG(compiler) << "Verify: " << GetMemoryUsageString(false);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700934
Andreas Gampe6cf49e52015-03-05 13:08:45 -0800935 if (had_hard_verifier_failure_ && GetCompilerOptions().AbortOnHardVerifierFailure()) {
Andreas Gampefdfb4d42017-07-27 12:12:22 -0700936 // Avoid dumping threads. Even if we shut down the thread pools, there will still be three
937 // instances of this thread's stack.
938 LOG(FATAL_WITHOUT_ABORT) << "Had a hard failure verifying all classes, and was asked to abort "
939 << "in such situations. Please check the log.";
Andreas Gampe56c9b7c2018-02-27 18:49:26 -0800940 _exit(1);
Andreas Gampef39208f2017-10-19 15:06:59 -0700941 } else if (number_of_soft_verifier_failures_ > 0 &&
942 GetCompilerOptions().AbortOnSoftVerifierFailure()) {
943 LOG(FATAL_WITHOUT_ABORT) << "Had " << number_of_soft_verifier_failures_ << " soft failure(s) "
944 << "verifying all classes, and was asked to abort in such situations. "
945 << "Please check the log.";
Andreas Gampe56c9b7c2018-02-27 18:49:26 -0800946 _exit(1);
Andreas Gampe6cf49e52015-03-05 13:08:45 -0800947 }
948
Nicolas Geoffray49cda062017-04-21 13:08:25 +0100949 if (compiler_options_->IsAnyCompilationEnabled()) {
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +0000950 if (kIsDebugBuild) {
951 EnsureVerifiedOrVerifyAtRuntime(class_loader, dex_files);
952 }
Nicolas Geoffrayade72d62016-12-15 13:20:02 +0000953 InitializeClasses(class_loader, dex_files, timings);
954 VLOG(compiler) << "InitializeClasses: " << GetMemoryUsageString(false);
955 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700956
Vladimir Marko2afaff72018-11-30 17:01:50 +0000957 UpdateImageClasses(timings, image_classes);
Andreas Gampe8d295f82015-01-20 14:50:21 -0800958 VLOG(compiler) << "UpdateImageClasses: " << GetMemoryUsageString(false);
Vladimir Marko175e7862018-03-27 09:03:13 +0000959
960 if (kBitstringSubtypeCheckEnabled &&
961 GetCompilerOptions().IsForceDeterminism() && GetCompilerOptions().IsBootImage()) {
962 // Initialize type check bit string used by check-cast and instanceof.
963 // Do this now to have a deterministic image.
964 // Note: This is done after UpdateImageClasses() at it relies on the image classes to be final.
965 InitializeTypeCheckBitstrings(this, dex_files, timings);
966 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700967}
968
Calin Juravle226501b2015-12-11 14:41:31 +0000969bool CompilerDriver::ShouldCompileBasedOnProfile(const MethodReference& method_ref) const {
Mathieu Chartier97ab5e32017-02-22 13:35:44 -0800970 // Profile compilation info may be null if no profile is passed.
Mathieu Chartierd0af56c2017-02-17 12:56:25 -0800971 if (!CompilerFilter::DependsOnProfile(compiler_options_->GetCompilerFilter())) {
972 // Use the compiler filter instead of the presence of profile_compilation_info_ since
973 // we may want to have full speed compilation along with profile based layout optimizations.
Calin Juravle226501b2015-12-11 14:41:31 +0000974 return true;
975 }
Mathieu Chartier97ab5e32017-02-22 13:35:44 -0800976 // If we are using a profile filter but do not have a profile compilation info, compile nothing.
Vladimir Marko1a2a5cd2018-11-07 15:39:48 +0000977 const ProfileCompilationInfo* profile_compilation_info =
978 GetCompilerOptions().GetProfileCompilationInfo();
979 if (profile_compilation_info == nullptr) {
Mathieu Chartier97ab5e32017-02-22 13:35:44 -0800980 return false;
981 }
Mathieu Chartier7b135c82017-06-05 12:54:01 -0700982 // Compile only hot methods, it is the profile saver's job to decide what startup methods to mark
983 // as hot.
Vladimir Marko1a2a5cd2018-11-07 15:39:48 +0000984 bool result = profile_compilation_info->GetMethodHotness(method_ref).IsHot();
Calin Juravle226501b2015-12-11 14:41:31 +0000985
986 if (kDebugProfileGuidedCompilation) {
987 LOG(INFO) << "[ProfileGuidedCompilation] "
Mathieu Chartierfc8b4222017-09-17 13:44:24 -0700988 << (result ? "Compiled" : "Skipped") << " method:" << method_ref.PrettyMethod(true);
Calin Juravle226501b2015-12-11 14:41:31 +0000989 }
990 return result;
991}
992
Mathieu Chartiere0671ce2015-07-28 17:23:28 -0700993class ResolveCatchBlockExceptionsClassVisitor : public ClassVisitor {
994 public:
Vladimir Marko8d6768d2017-03-14 10:13:21 +0000995 ResolveCatchBlockExceptionsClassVisitor() : classes_() {}
Mathieu Chartiere0671ce2015-07-28 17:23:28 -0700996
Roland Levillainf73caca2018-08-24 17:19:07 +0100997 bool operator()(ObjPtr<mirror::Class> c) override REQUIRES_SHARED(Locks::mutator_lock_) {
Vladimir Marko8d6768d2017-03-14 10:13:21 +0000998 classes_.push_back(c);
Mathieu Chartiere4275c02015-08-06 15:34:15 -0700999 return true;
1000 }
1001
Vladimir Marko8d6768d2017-03-14 10:13:21 +00001002 void FindExceptionTypesToResolve(
1003 std::set<std::pair<dex::TypeIndex, const DexFile*>>* exceptions_to_resolve)
Vladimir Markobfb80d22017-02-14 14:08:12 +00001004 REQUIRES_SHARED(Locks::mutator_lock_) {
Vladimir Marko8d6768d2017-03-14 10:13:21 +00001005 const auto pointer_size = Runtime::Current()->GetClassLinker()->GetImagePointerSize();
1006 for (ObjPtr<mirror::Class> klass : classes_) {
1007 for (ArtMethod& method : klass->GetMethods(pointer_size)) {
1008 FindExceptionTypesToResolveForMethod(&method, exceptions_to_resolve);
1009 }
1010 }
1011 }
1012
1013 private:
1014 void FindExceptionTypesToResolveForMethod(
1015 ArtMethod* method,
1016 std::set<std::pair<dex::TypeIndex, const DexFile*>>* exceptions_to_resolve)
1017 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartier808c7a52017-12-15 11:19:33 -08001018 if (method->GetCodeItem() == nullptr) {
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001019 return; // native or abstract method
Brian Carlstrom7940e442013-07-12 13:46:57 -07001020 }
David Sehr0225f8e2018-01-31 08:52:24 +00001021 CodeItemDataAccessor accessor(method->DexInstructionData());
Mathieu Chartier808c7a52017-12-15 11:19:33 -08001022 if (accessor.TriesSize() == 0) {
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001023 return; // nothing to process
1024 }
Mathieu Chartier808c7a52017-12-15 11:19:33 -08001025 const uint8_t* encoded_catch_handler_list = accessor.GetCatchHandlerData();
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001026 size_t num_encoded_catch_handlers = DecodeUnsignedLeb128(&encoded_catch_handler_list);
1027 for (size_t i = 0; i < num_encoded_catch_handlers; i++) {
1028 int32_t encoded_catch_handler_size = DecodeSignedLeb128(&encoded_catch_handler_list);
1029 bool has_catch_all = false;
1030 if (encoded_catch_handler_size <= 0) {
1031 encoded_catch_handler_size = -encoded_catch_handler_size;
1032 has_catch_all = true;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001033 }
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001034 for (int32_t j = 0; j < encoded_catch_handler_size; j++) {
Andreas Gampea5b09a62016-11-17 15:21:22 -08001035 dex::TypeIndex encoded_catch_handler_handlers_type_idx =
1036 dex::TypeIndex(DecodeUnsignedLeb128(&encoded_catch_handler_list));
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001037 // Add to set of types to resolve if not already in the dex cache resolved types
Vladimir Marko8d6768d2017-03-14 10:13:21 +00001038 if (!method->IsResolvedTypeIdx(encoded_catch_handler_handlers_type_idx)) {
1039 exceptions_to_resolve->emplace(encoded_catch_handler_handlers_type_idx,
1040 method->GetDexFile());
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001041 }
1042 // ignore address associated with catch handler
1043 DecodeUnsignedLeb128(&encoded_catch_handler_list);
1044 }
1045 if (has_catch_all) {
1046 // ignore catch all address
1047 DecodeUnsignedLeb128(&encoded_catch_handler_list);
1048 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001049 }
1050 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001051
Vladimir Marko8d6768d2017-03-14 10:13:21 +00001052 std::vector<ObjPtr<mirror::Class>> classes_;
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001053};
1054
1055class RecordImageClassesVisitor : public ClassVisitor {
1056 public:
Vladimir Marko54159c62018-06-20 14:30:08 +01001057 explicit RecordImageClassesVisitor(HashSet<std::string>* image_classes)
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001058 : image_classes_(image_classes) {}
1059
Roland Levillainbbc6e7e2018-08-24 16:58:47 +01001060 bool operator()(ObjPtr<mirror::Class> klass) override REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001061 std::string temp;
1062 image_classes_->insert(klass->GetDescriptor(&temp));
1063 return true;
1064 }
1065
1066 private:
Vladimir Marko54159c62018-06-20 14:30:08 +01001067 HashSet<std::string>* const image_classes_;
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001068};
Brian Carlstrom7940e442013-07-12 13:46:57 -07001069
1070// Make a list of descriptors for classes to include in the image
Vladimir Marko2afaff72018-11-30 17:01:50 +00001071void CompilerDriver::LoadImageClasses(TimingLogger* timings,
1072 /*inout*/ HashSet<std::string>* image_classes) {
Kenny Rootd5185342014-05-13 14:47:05 -07001073 CHECK(timings != nullptr);
Vladimir Markoaad75c62016-10-03 08:46:48 +00001074 if (!GetCompilerOptions().IsBootImage()) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001075 return;
1076 }
1077
Mathieu Chartierf5997b42014-06-20 10:37:54 -07001078 TimingLogger::ScopedTiming t("LoadImageClasses", timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001079 // Make a first class to load all classes explicitly listed in the file
1080 Thread* self = Thread::Current();
1081 ScopedObjectAccess soa(self);
1082 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Vladimir Marko2afaff72018-11-30 17:01:50 +00001083 CHECK(image_classes != nullptr);
1084 for (auto it = image_classes->begin(), end = image_classes->end(); it != end;) {
Vladimir Markoe9c36b32013-11-21 15:49:16 +00001085 const std::string& descriptor(*it);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001086 StackHandleScope<1> hs(self);
1087 Handle<mirror::Class> klass(
1088 hs.NewHandle(class_linker->FindSystemClass(self, descriptor.c_str())));
Andreas Gampefa4333d2017-02-14 11:10:34 -08001089 if (klass == nullptr) {
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001090 VLOG(compiler) << "Failed to find class " << descriptor;
Vladimir Marko2afaff72018-11-30 17:01:50 +00001091 it = image_classes->erase(it);
Ian Rogersa436fde2013-08-27 23:34:06 -07001092 self->ClearException();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001093 } else {
1094 ++it;
1095 }
1096 }
1097
1098 // Resolve exception classes referenced by the loaded classes. The catch logic assumes
1099 // exceptions are resolved by the verifier when there is a catch block in an interested method.
1100 // Do this here so that exception classes appear to have been specified image classes.
Andreas Gampea5b09a62016-11-17 15:21:22 -08001101 std::set<std::pair<dex::TypeIndex, const DexFile*>> unresolved_exception_types;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001102 StackHandleScope<1> hs(self);
1103 Handle<mirror::Class> java_lang_Throwable(
1104 hs.NewHandle(class_linker->FindSystemClass(self, "Ljava/lang/Throwable;")));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001105 do {
1106 unresolved_exception_types.clear();
Vladimir Marko8d6768d2017-03-14 10:13:21 +00001107 {
1108 // Thread suspension is not allowed while ResolveCatchBlockExceptionsClassVisitor
1109 // is using a std::vector<ObjPtr<mirror::Class>>.
1110 ScopedAssertNoThreadSuspension ants(__FUNCTION__);
1111 ResolveCatchBlockExceptionsClassVisitor visitor;
1112 class_linker->VisitClasses(&visitor);
1113 visitor.FindExceptionTypesToResolve(&unresolved_exception_types);
1114 }
Andreas Gampea5b09a62016-11-17 15:21:22 -08001115 for (const auto& exception_type : unresolved_exception_types) {
1116 dex::TypeIndex exception_type_idx = exception_type.first;
Mathieu Chartier02e25112013-08-14 16:14:24 -07001117 const DexFile* dex_file = exception_type.second;
Vladimir Marko666ee3d2017-12-11 18:37:36 +00001118 StackHandleScope<1> hs2(self);
Mathieu Chartierf284d442016-06-02 11:48:30 -07001119 Handle<mirror::DexCache> dex_cache(hs2.NewHandle(class_linker->RegisterDexFile(*dex_file,
1120 nullptr)));
Vladimir Marko666ee3d2017-12-11 18:37:36 +00001121 ObjPtr<mirror::Class> klass =
Andreas Gampefa4333d2017-02-14 11:10:34 -08001122 (dex_cache != nullptr)
Vladimir Marko666ee3d2017-12-11 18:37:36 +00001123 ? class_linker->ResolveType(exception_type_idx,
Vladimir Markocd556b02017-02-03 11:47:34 +00001124 dex_cache,
1125 ScopedNullHandle<mirror::ClassLoader>())
Vladimir Marko666ee3d2017-12-11 18:37:36 +00001126 : nullptr;
Andreas Gampefa4333d2017-02-14 11:10:34 -08001127 if (klass == nullptr) {
Andreas Gampe3f1dcd32018-12-28 09:39:56 -08001128 const dex::TypeId& type_id = dex_file->GetTypeId(exception_type_idx);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001129 const char* descriptor = dex_file->GetTypeDescriptor(type_id);
1130 LOG(FATAL) << "Failed to resolve class " << descriptor;
1131 }
Vladimir Marko666ee3d2017-12-11 18:37:36 +00001132 DCHECK(java_lang_Throwable->IsAssignableFrom(klass));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001133 }
1134 // Resolving exceptions may load classes that reference more exceptions, iterate until no
1135 // more are found
1136 } while (!unresolved_exception_types.empty());
1137
1138 // We walk the roots looking for classes so that we'll pick up the
1139 // above classes plus any classes them depend on such super
1140 // classes, interfaces, and the required ClassLinker roots.
Vladimir Marko2afaff72018-11-30 17:01:50 +00001141 RecordImageClassesVisitor visitor(image_classes);
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001142 class_linker->VisitClasses(&visitor);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001143
Vladimir Marko2afaff72018-11-30 17:01:50 +00001144 CHECK(!image_classes->empty());
Brian Carlstrom7940e442013-07-12 13:46:57 -07001145}
1146
Vladimir Marko19a4d372016-12-08 14:41:46 +00001147static void MaybeAddToImageClasses(Thread* self,
1148 ObjPtr<mirror::Class> klass,
Vladimir Marko54159c62018-06-20 14:30:08 +01001149 HashSet<std::string>* image_classes)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001150 REQUIRES_SHARED(Locks::mutator_lock_) {
Vladimir Marko19a4d372016-12-08 14:41:46 +00001151 DCHECK_EQ(self, Thread::Current());
Mathieu Chartierf8322842014-05-16 10:59:25 -07001152 StackHandleScope<1> hs(self);
Ian Rogers1ff3c982014-08-12 02:30:58 -07001153 std::string temp;
Andreas Gampe542451c2016-07-26 09:02:02 -07001154 const PointerSize pointer_size = Runtime::Current()->GetClassLinker()->GetImagePointerSize();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001155 while (!klass->IsObjectClass()) {
Ian Rogers1ff3c982014-08-12 02:30:58 -07001156 const char* descriptor = klass->GetDescriptor(&temp);
Vladimir Marko54159c62018-06-20 14:30:08 +01001157 if (image_classes->find(StringPiece(descriptor)) != image_classes->end()) {
1158 break; // Previously inserted.
Brian Carlstrom7940e442013-07-12 13:46:57 -07001159 }
Vladimir Marko54159c62018-06-20 14:30:08 +01001160 image_classes->insert(descriptor);
Ian Rogers1ff3c982014-08-12 02:30:58 -07001161 VLOG(compiler) << "Adding " << descriptor << " to image classes";
Vladimir Marko19a4d372016-12-08 14:41:46 +00001162 for (size_t i = 0, num_interfaces = klass->NumDirectInterfaces(); i != num_interfaces; ++i) {
1163 ObjPtr<mirror::Class> interface = mirror::Class::GetDirectInterface(self, klass, i);
1164 DCHECK(interface != nullptr);
1165 MaybeAddToImageClasses(self, interface, image_classes);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001166 }
Vladimir Marko19a4d372016-12-08 14:41:46 +00001167 for (auto& m : klass->GetVirtualMethods(pointer_size)) {
1168 MaybeAddToImageClasses(self, m.GetDeclaringClass(), image_classes);
Mathieu Chartiere401d142015-04-22 13:56:20 -07001169 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001170 if (klass->IsArrayClass()) {
Vladimir Marko19a4d372016-12-08 14:41:46 +00001171 MaybeAddToImageClasses(self, klass->GetComponentType(), image_classes);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001172 }
Andreas Gampe98104992018-10-16 12:49:47 -07001173 klass = klass->GetSuperClass();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001174 }
1175}
1176
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001177// Keeps all the data for the update together. Also doubles as the reference visitor.
1178// Note: we can use object pointers because we suspend all threads.
1179class ClinitImageUpdate {
1180 public:
Mathieu Chartier31e88222016-10-14 18:43:19 -07001181 static ClinitImageUpdate* Create(VariableSizedHandleScope& hs,
Vladimir Marko54159c62018-06-20 14:30:08 +01001182 HashSet<std::string>* image_class_descriptors,
Mathieu Chartier31e88222016-10-14 18:43:19 -07001183 Thread* self,
1184 ClassLinker* linker) {
1185 std::unique_ptr<ClinitImageUpdate> res(new ClinitImageUpdate(hs,
1186 image_class_descriptors,
1187 self,
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001188 linker));
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001189 return res.release();
1190 }
1191
1192 ~ClinitImageUpdate() {
1193 // Allow others to suspend again.
1194 self_->EndAssertNoThreadSuspension(old_cause_);
1195 }
1196
1197 // Visitor for VisitReferences.
Mathieu Chartier31e88222016-10-14 18:43:19 -07001198 void operator()(ObjPtr<mirror::Object> object,
1199 MemberOffset field_offset,
Andreas Gampe3db70682018-12-26 15:12:03 -08001200 bool is_static ATTRIBUTE_UNUSED) const
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001201 REQUIRES_SHARED(Locks::mutator_lock_) {
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001202 mirror::Object* ref = object->GetFieldObject<mirror::Object>(field_offset);
1203 if (ref != nullptr) {
1204 VisitClinitClassesObject(ref);
1205 }
1206 }
1207
Roland Levillain5e8d5f02016-10-18 18:03:43 +01001208 // java.lang.ref.Reference visitor for VisitReferences.
Mathieu Chartier31e88222016-10-14 18:43:19 -07001209 void operator()(ObjPtr<mirror::Class> klass ATTRIBUTE_UNUSED,
1210 ObjPtr<mirror::Reference> ref ATTRIBUTE_UNUSED) const {}
Mathieu Chartierda7c6502015-07-23 16:01:26 -07001211
1212 // Ignore class native roots.
1213 void VisitRootIfNonNull(mirror::CompressedReference<mirror::Object>* root ATTRIBUTE_UNUSED)
1214 const {}
1215 void VisitRoot(mirror::CompressedReference<mirror::Object>* root ATTRIBUTE_UNUSED) const {}
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001216
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001217 void Walk() REQUIRES_SHARED(Locks::mutator_lock_) {
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001218 // Use the initial classes as roots for a search.
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001219 for (Handle<mirror::Class> klass_root : image_classes_) {
1220 VisitClinitClassesObject(klass_root.Get());
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001221 }
Vladimir Marko19a4d372016-12-08 14:41:46 +00001222 Thread* self = Thread::Current();
1223 ScopedAssertNoThreadSuspension ants(__FUNCTION__);
Mathieu Chartier31e88222016-10-14 18:43:19 -07001224 for (Handle<mirror::Class> h_klass : to_insert_) {
Vladimir Marko19a4d372016-12-08 14:41:46 +00001225 MaybeAddToImageClasses(self, h_klass.Get(), image_class_descriptors_);
Mathieu Chartier31e88222016-10-14 18:43:19 -07001226 }
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001227 }
1228
1229 private:
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001230 class FindImageClassesVisitor : public ClassVisitor {
1231 public:
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001232 explicit FindImageClassesVisitor(VariableSizedHandleScope& hs,
1233 ClinitImageUpdate* data)
1234 : data_(data),
1235 hs_(hs) {}
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001236
Roland Levillainbbc6e7e2018-08-24 16:58:47 +01001237 bool operator()(ObjPtr<mirror::Class> klass) override REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001238 std::string temp;
Vladimir Marko54159c62018-06-20 14:30:08 +01001239 StringPiece name(klass->GetDescriptor(&temp));
Vladimir Marko29a533e2018-10-23 12:42:00 +01001240 auto it = data_->image_class_descriptors_->find(name);
1241 if (it != data_->image_class_descriptors_->end()) {
1242 if (LIKELY(klass->IsResolved())) {
1243 data_->image_classes_.push_back(hs_.NewHandle(klass));
1244 } else {
1245 DCHECK(klass->IsErroneousUnresolved());
1246 VLOG(compiler) << "Removing unresolved class from image classes: " << name;
1247 data_->image_class_descriptors_->erase(it);
1248 }
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001249 } else {
1250 // Check whether it is initialized and has a clinit. They must be kept, too.
1251 if (klass->IsInitialized() && klass->FindClassInitializer(
1252 Runtime::Current()->GetClassLinker()->GetImagePointerSize()) != nullptr) {
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001253 data_->image_classes_.push_back(hs_.NewHandle(klass));
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001254 }
1255 }
1256 return true;
1257 }
1258
1259 private:
1260 ClinitImageUpdate* const data_;
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001261 VariableSizedHandleScope& hs_;
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001262 };
1263
Mathieu Chartier31e88222016-10-14 18:43:19 -07001264 ClinitImageUpdate(VariableSizedHandleScope& hs,
Vladimir Marko54159c62018-06-20 14:30:08 +01001265 HashSet<std::string>* image_class_descriptors,
Mathieu Chartier31e88222016-10-14 18:43:19 -07001266 Thread* self,
1267 ClassLinker* linker) REQUIRES_SHARED(Locks::mutator_lock_)
1268 : hs_(hs),
1269 image_class_descriptors_(image_class_descriptors),
1270 self_(self) {
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001271 CHECK(linker != nullptr);
1272 CHECK(image_class_descriptors != nullptr);
1273
1274 // Make sure nobody interferes with us.
1275 old_cause_ = self->StartAssertNoThreadSuspension("Boot image closure");
1276
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001277 // Find all the already-marked classes.
1278 WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001279 FindImageClassesVisitor visitor(hs_, this);
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001280 linker->VisitClasses(&visitor);
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001281 }
1282
1283 void VisitClinitClassesObject(mirror::Object* object) const
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001284 REQUIRES_SHARED(Locks::mutator_lock_) {
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001285 DCHECK(object != nullptr);
1286 if (marked_objects_.find(object) != marked_objects_.end()) {
1287 // Already processed.
1288 return;
1289 }
1290
1291 // Mark it.
1292 marked_objects_.insert(object);
1293
1294 if (object->IsClass()) {
Mathieu Chartier31e88222016-10-14 18:43:19 -07001295 // Add to the TODO list since MaybeAddToImageClasses may cause thread suspension. Thread
1296 // suspensionb is not safe to do in VisitObjects or VisitReferences.
1297 to_insert_.push_back(hs_.NewHandle(object->AsClass()));
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001298 } else {
1299 // Else visit the object's class.
1300 VisitClinitClassesObject(object->GetClass());
1301 }
1302
Mathieu Chartiere401d142015-04-22 13:56:20 -07001303 // If it is not a DexCache, visit all references.
Mathieu Chartier31e88222016-10-14 18:43:19 -07001304 if (!object->IsDexCache()) {
Mathieu Chartier059ef3d2015-08-18 13:54:21 -07001305 object->VisitReferences(*this, *this);
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001306 }
1307 }
1308
Mathieu Chartier31e88222016-10-14 18:43:19 -07001309 VariableSizedHandleScope& hs_;
1310 mutable std::vector<Handle<mirror::Class>> to_insert_;
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001311 mutable std::unordered_set<mirror::Object*> marked_objects_;
Vladimir Marko54159c62018-06-20 14:30:08 +01001312 HashSet<std::string>* const image_class_descriptors_;
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001313 std::vector<Handle<mirror::Class>> image_classes_;
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001314 Thread* const self_;
1315 const char* old_cause_;
1316
1317 DISALLOW_COPY_AND_ASSIGN(ClinitImageUpdate);
1318};
Brian Carlstrom7940e442013-07-12 13:46:57 -07001319
Vladimir Marko2afaff72018-11-30 17:01:50 +00001320void CompilerDriver::UpdateImageClasses(TimingLogger* timings,
1321 /*inout*/ HashSet<std::string>* image_classes) {
Vladimir Markoaad75c62016-10-03 08:46:48 +00001322 if (GetCompilerOptions().IsBootImage()) {
Mathieu Chartierf5997b42014-06-20 10:37:54 -07001323 TimingLogger::ScopedTiming t("UpdateImageClasses", timings);
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001324
Mathieu Chartier4f55e222015-09-04 13:26:21 -07001325 Runtime* runtime = Runtime::Current();
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001326
1327 // Suspend all threads.
Mathieu Chartier4f55e222015-09-04 13:26:21 -07001328 ScopedSuspendAll ssa(__FUNCTION__);
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001329
Mathieu Chartier31e88222016-10-14 18:43:19 -07001330 VariableSizedHandleScope hs(Thread::Current());
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001331 std::string error_msg;
Mathieu Chartier31e88222016-10-14 18:43:19 -07001332 std::unique_ptr<ClinitImageUpdate> update(ClinitImageUpdate::Create(hs,
Vladimir Marko2afaff72018-11-30 17:01:50 +00001333 image_classes,
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001334 Thread::Current(),
Mathieu Chartier31e88222016-10-14 18:43:19 -07001335 runtime->GetClassLinker()));
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001336
1337 // Do the marking.
1338 update->Walk();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001339 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001340}
1341
Vladimir Markobe0e5462014-02-26 11:24:15 +00001342void CompilerDriver::ProcessedInstanceField(bool resolved) {
1343 if (!resolved) {
1344 stats_->UnresolvedInstanceField();
1345 } else {
1346 stats_->ResolvedInstanceField();
1347 }
1348}
1349
1350void CompilerDriver::ProcessedStaticField(bool resolved, bool local) {
1351 if (!resolved) {
1352 stats_->UnresolvedStaticField();
1353 } else if (local) {
1354 stats_->ResolvedLocalStaticField();
1355 } else {
1356 stats_->ResolvedStaticField();
1357 }
1358}
1359
Mathieu Chartierc7853442015-03-27 14:35:38 -07001360ArtField* CompilerDriver::ComputeInstanceFieldInfo(uint32_t field_idx,
Vladimir Markoe11dd502017-12-08 14:09:45 +00001361 const DexCompilationUnit* mUnit,
1362 bool is_put,
Mathieu Chartierc7853442015-03-27 14:35:38 -07001363 const ScopedObjectAccess& soa) {
Vladimir Markobe0e5462014-02-26 11:24:15 +00001364 // Try to resolve the field and compiling method's class.
Mathieu Chartierc7853442015-03-27 14:35:38 -07001365 ArtField* resolved_field;
Vladimir Marko28e012a2017-12-07 11:22:59 +00001366 ObjPtr<mirror::Class> referrer_class;
Mathieu Chartier736b5602015-09-02 14:54:11 -07001367 Handle<mirror::DexCache> dex_cache(mUnit->GetDexCache());
Vladimir Markobe0e5462014-02-26 11:24:15 +00001368 {
Vladimir Markoe11dd502017-12-08 14:09:45 +00001369 Handle<mirror::ClassLoader> class_loader = mUnit->GetClassLoader();
Andreas Gampe3db70682018-12-26 15:12:03 -08001370 resolved_field = ResolveField(soa, dex_cache, class_loader, field_idx, /* is_static= */ false);
Mathieu Chartierc7853442015-03-27 14:35:38 -07001371 referrer_class = resolved_field != nullptr
Vladimir Markoe11dd502017-12-08 14:09:45 +00001372 ? ResolveCompilingMethodsClass(soa, dex_cache, class_loader, mUnit) : nullptr;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001373 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001374 bool can_link = false;
Vladimir Markobe0e5462014-02-26 11:24:15 +00001375 if (resolved_field != nullptr && referrer_class != nullptr) {
Vladimir Markobe0e5462014-02-26 11:24:15 +00001376 std::pair<bool, bool> fast_path = IsFastInstanceField(
Mathieu Chartier736b5602015-09-02 14:54:11 -07001377 dex_cache.Get(), referrer_class, resolved_field, field_idx);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001378 can_link = is_put ? fast_path.second : fast_path.first;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001379 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001380 ProcessedInstanceField(can_link);
1381 return can_link ? resolved_field : nullptr;
1382}
1383
1384bool CompilerDriver::ComputeInstanceFieldInfo(uint32_t field_idx, const DexCompilationUnit* mUnit,
1385 bool is_put, MemberOffset* field_offset,
1386 bool* is_volatile) {
1387 ScopedObjectAccess soa(Thread::Current());
Mathieu Chartierc7853442015-03-27 14:35:38 -07001388 ArtField* resolved_field = ComputeInstanceFieldInfo(field_idx, mUnit, is_put, soa);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001389
Mathieu Chartierc7853442015-03-27 14:35:38 -07001390 if (resolved_field == nullptr) {
Vladimir Markobe0e5462014-02-26 11:24:15 +00001391 // Conservative defaults.
1392 *is_volatile = true;
1393 *field_offset = MemberOffset(static_cast<size_t>(-1));
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001394 return false;
1395 } else {
1396 *is_volatile = resolved_field->IsVolatile();
1397 *field_offset = resolved_field->GetOffset();
1398 return true;
Vladimir Markobe0e5462014-02-26 11:24:15 +00001399 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001400}
1401
Vladimir Marko2730db02014-01-27 11:15:17 +00001402bool CompilerDriver::IsSafeCast(const DexCompilationUnit* mUnit, uint32_t dex_pc) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001403 if (!compiler_options_->IsVerificationEnabled()) {
1404 // If we didn't verify, every cast has to be treated as non-safe.
1405 return false;
1406 }
Vladimir Marko2730db02014-01-27 11:15:17 +00001407 DCHECK(mUnit->GetVerifiedMethod() != nullptr);
1408 bool result = mUnit->GetVerifiedMethod()->IsSafeCast(dex_pc);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001409 if (result) {
1410 stats_->SafeCast();
1411 } else {
1412 stats_->NotASafeCast();
1413 }
1414 return result;
1415}
1416
Mathieu Chartier90443472015-07-16 20:32:27 -07001417class CompilationVisitor {
1418 public:
1419 virtual ~CompilationVisitor() {}
1420 virtual void Visit(size_t index) = 0;
1421};
1422
Brian Carlstrom7940e442013-07-12 13:46:57 -07001423class ParallelCompilationManager {
1424 public:
Brian Carlstrom7940e442013-07-12 13:46:57 -07001425 ParallelCompilationManager(ClassLinker* class_linker,
1426 jobject class_loader,
1427 CompilerDriver* compiler,
1428 const DexFile* dex_file,
Andreas Gampede7b4362014-07-28 18:38:57 -07001429 const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -08001430 ThreadPool* thread_pool)
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001431 : index_(0),
1432 class_linker_(class_linker),
Brian Carlstrom7940e442013-07-12 13:46:57 -07001433 class_loader_(class_loader),
1434 compiler_(compiler),
1435 dex_file_(dex_file),
Andreas Gampede7b4362014-07-28 18:38:57 -07001436 dex_files_(dex_files),
Ian Rogers3d504072014-03-01 09:16:49 -08001437 thread_pool_(thread_pool) {}
Brian Carlstrom7940e442013-07-12 13:46:57 -07001438
1439 ClassLinker* GetClassLinker() const {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001440 CHECK(class_linker_ != nullptr);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001441 return class_linker_;
1442 }
1443
1444 jobject GetClassLoader() const {
1445 return class_loader_;
1446 }
1447
1448 CompilerDriver* GetCompiler() const {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001449 CHECK(compiler_ != nullptr);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001450 return compiler_;
1451 }
1452
1453 const DexFile* GetDexFile() const {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001454 CHECK(dex_file_ != nullptr);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001455 return dex_file_;
1456 }
1457
Andreas Gampede7b4362014-07-28 18:38:57 -07001458 const std::vector<const DexFile*>& GetDexFiles() const {
1459 return dex_files_;
1460 }
1461
Mathieu Chartier90443472015-07-16 20:32:27 -07001462 void ForAll(size_t begin, size_t end, CompilationVisitor* visitor, size_t work_units)
1463 REQUIRES(!*Locks::mutator_lock_) {
Andreas Gampe3c060ad2018-01-22 13:07:49 -08001464 ForAllLambda(begin, end, [visitor](size_t index) { visitor->Visit(index); }, work_units);
1465 }
1466
1467 template <typename Fn>
1468 void ForAllLambda(size_t begin, size_t end, Fn fn, size_t work_units)
1469 REQUIRES(!*Locks::mutator_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001470 Thread* self = Thread::Current();
1471 self->AssertNoPendingException();
1472 CHECK_GT(work_units, 0U);
1473
Orion Hodson88591fe2018-03-06 13:35:43 +00001474 index_.store(begin, std::memory_order_relaxed);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001475 for (size_t i = 0; i < work_units; ++i) {
Andreas Gampe3c060ad2018-01-22 13:07:49 -08001476 thread_pool_->AddTask(self, new ForAllClosureLambda<Fn>(this, end, fn));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001477 }
1478 thread_pool_->StartWorkers(self);
1479
1480 // Ensure we're suspended while we're blocked waiting for the other threads to finish (worker
1481 // thread destructor's called below perform join).
1482 CHECK_NE(self->GetState(), kRunnable);
1483
1484 // Wait for all the worker threads to finish.
1485 thread_pool_->Wait(self, true, false);
Andreas Gampeace0dc12016-01-20 13:33:13 -08001486
1487 // And stop the workers accepting jobs.
1488 thread_pool_->StopWorkers(self);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001489 }
1490
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001491 size_t NextIndex() {
Orion Hodson88591fe2018-03-06 13:35:43 +00001492 return index_.fetch_add(1, std::memory_order_seq_cst);
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001493 }
1494
Brian Carlstrom7940e442013-07-12 13:46:57 -07001495 private:
Andreas Gampe3c060ad2018-01-22 13:07:49 -08001496 template <typename Fn>
1497 class ForAllClosureLambda : public Task {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001498 public:
Andreas Gampe3c060ad2018-01-22 13:07:49 -08001499 ForAllClosureLambda(ParallelCompilationManager* manager, size_t end, Fn fn)
Brian Carlstrom7940e442013-07-12 13:46:57 -07001500 : manager_(manager),
Brian Carlstrom7940e442013-07-12 13:46:57 -07001501 end_(end),
Andreas Gampe3c060ad2018-01-22 13:07:49 -08001502 fn_(fn) {}
Brian Carlstrom7940e442013-07-12 13:46:57 -07001503
Roland Levillainbbc6e7e2018-08-24 16:58:47 +01001504 void Run(Thread* self) override {
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001505 while (true) {
1506 const size_t index = manager_->NextIndex();
1507 if (UNLIKELY(index >= end_)) {
1508 break;
1509 }
Andreas Gampe3c060ad2018-01-22 13:07:49 -08001510 fn_(index);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001511 self->AssertNoPendingException();
1512 }
1513 }
1514
Roland Levillainbbc6e7e2018-08-24 16:58:47 +01001515 void Finalize() override {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001516 delete this;
1517 }
Brian Carlstrom0cd7ec22013-07-17 23:40:20 -07001518
Brian Carlstrom7940e442013-07-12 13:46:57 -07001519 private:
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001520 ParallelCompilationManager* const manager_;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001521 const size_t end_;
Andreas Gampe3c060ad2018-01-22 13:07:49 -08001522 Fn fn_;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001523 };
1524
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001525 AtomicInteger index_;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001526 ClassLinker* const class_linker_;
1527 const jobject class_loader_;
1528 CompilerDriver* const compiler_;
1529 const DexFile* const dex_file_;
Andreas Gampede7b4362014-07-28 18:38:57 -07001530 const std::vector<const DexFile*>& dex_files_;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001531 ThreadPool* const thread_pool_;
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001532
1533 DISALLOW_COPY_AND_ASSIGN(ParallelCompilationManager);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001534};
1535
Jeff Hao0e49b422013-11-08 12:16:56 -08001536// A fast version of SkipClass above if the class pointer is available
1537// that avoids the expensive FindInClassPath search.
Vladimir Marko28e012a2017-12-07 11:22:59 +00001538static bool SkipClass(jobject class_loader, const DexFile& dex_file, ObjPtr<mirror::Class> klass)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001539 REQUIRES_SHARED(Locks::mutator_lock_) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001540 DCHECK(klass != nullptr);
Jeff Hao0e49b422013-11-08 12:16:56 -08001541 const DexFile& original_dex_file = *klass->GetDexCache()->GetDexFile();
1542 if (&dex_file != &original_dex_file) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001543 if (class_loader == nullptr) {
David Sehr709b0702016-10-13 09:12:37 -07001544 LOG(WARNING) << "Skipping class " << klass->PrettyDescriptor() << " from "
Jeff Hao0e49b422013-11-08 12:16:56 -08001545 << dex_file.GetLocation() << " previously found in "
1546 << original_dex_file.GetLocation();
1547 }
1548 return true;
1549 }
1550 return false;
1551}
1552
Mathieu Chartier70b63482014-06-27 17:19:04 -07001553static void CheckAndClearResolveException(Thread* self)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001554 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartier70b63482014-06-27 17:19:04 -07001555 CHECK(self->IsExceptionPending());
Nicolas Geoffray14691c52015-03-05 10:40:17 +00001556 mirror::Throwable* exception = self->GetException();
Ian Rogers1ff3c982014-08-12 02:30:58 -07001557 std::string temp;
1558 const char* descriptor = exception->GetClass()->GetDescriptor(&temp);
1559 const char* expected_exceptions[] = {
1560 "Ljava/lang/IllegalAccessError;",
1561 "Ljava/lang/IncompatibleClassChangeError;",
1562 "Ljava/lang/InstantiationError;",
Brian Carlstrom898fcb52014-08-25 23:07:30 -07001563 "Ljava/lang/LinkageError;",
Ian Rogers1ff3c982014-08-12 02:30:58 -07001564 "Ljava/lang/NoClassDefFoundError;",
1565 "Ljava/lang/NoSuchFieldError;",
1566 "Ljava/lang/NoSuchMethodError;"
1567 };
1568 bool found = false;
1569 for (size_t i = 0; (found == false) && (i < arraysize(expected_exceptions)); ++i) {
1570 if (strcmp(descriptor, expected_exceptions[i]) == 0) {
1571 found = true;
1572 }
1573 }
1574 if (!found) {
Brian Carlstrom898fcb52014-08-25 23:07:30 -07001575 LOG(FATAL) << "Unexpected exception " << exception->Dump();
Mathieu Chartier70b63482014-06-27 17:19:04 -07001576 }
1577 self->ClearException();
1578}
1579
Mathieu Chartier90443472015-07-16 20:32:27 -07001580class ResolveClassFieldsAndMethodsVisitor : public CompilationVisitor {
1581 public:
1582 explicit ResolveClassFieldsAndMethodsVisitor(const ParallelCompilationManager* manager)
1583 : manager_(manager) {}
Brian Carlstrom7940e442013-07-12 13:46:57 -07001584
Roland Levillainbbc6e7e2018-08-24 16:58:47 +01001585 void Visit(size_t class_def_index) override REQUIRES(!Locks::mutator_lock_) {
Andreas Gampe9b827ab2017-12-07 19:32:48 -08001586 ScopedTrace trace(__FUNCTION__);
Mathieu Chartier90443472015-07-16 20:32:27 -07001587 Thread* const self = Thread::Current();
1588 jobject jclass_loader = manager_->GetClassLoader();
1589 const DexFile& dex_file = *manager_->GetDexFile();
1590 ClassLinker* class_linker = manager_->GetClassLinker();
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001591
Mathieu Chartier90443472015-07-16 20:32:27 -07001592 // Method and Field are the worst. We can't resolve without either
1593 // context from the code use (to disambiguate virtual vs direct
1594 // method and instance vs static field) or from class
1595 // definitions. While the compiler will resolve what it can as it
1596 // needs it, here we try to resolve fields and methods used in class
1597 // definitions, since many of them many never be referenced by
1598 // generated code.
Andreas Gampe3f1dcd32018-12-28 09:39:56 -08001599 const dex::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
Mathieu Chartier90443472015-07-16 20:32:27 -07001600 ScopedObjectAccess soa(self);
1601 StackHandleScope<2> hs(soa.Self());
1602 Handle<mirror::ClassLoader> class_loader(
Mathieu Chartier0795f232016-09-27 18:43:30 -07001603 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader)));
Mathieu Chartier673ed3d2015-08-28 14:56:43 -07001604 Handle<mirror::DexCache> dex_cache(hs.NewHandle(class_linker->FindDexCache(
Vladimir Markocd556b02017-02-03 11:47:34 +00001605 soa.Self(), dex_file)));
Mathieu Chartier90443472015-07-16 20:32:27 -07001606 // Resolve the class.
Vladimir Marko28e012a2017-12-07 11:22:59 +00001607 ObjPtr<mirror::Class> klass =
Vladimir Marko666ee3d2017-12-11 18:37:36 +00001608 class_linker->ResolveType(class_def.class_idx_, dex_cache, class_loader);
Mathieu Chartier90443472015-07-16 20:32:27 -07001609 bool resolve_fields_and_methods;
1610 if (klass == nullptr) {
1611 // Class couldn't be resolved, for example, super-class is in a different dex file. Don't
1612 // attempt to resolve methods and fields when there is no declaring class.
1613 CheckAndClearResolveException(soa.Self());
1614 resolve_fields_and_methods = false;
1615 } else {
1616 // We successfully resolved a class, should we skip it?
1617 if (SkipClass(jclass_loader, dex_file, klass)) {
1618 return;
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001619 }
Mathieu Chartier90443472015-07-16 20:32:27 -07001620 // We want to resolve the methods and fields eagerly.
1621 resolve_fields_and_methods = true;
Ian Rogers68b56852014-08-29 20:19:11 -07001622 }
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001623
Vladimir Markoc1c34522018-10-31 13:56:49 +00001624 if (resolve_fields_and_methods) {
1625 ClassAccessor accessor(dex_file, class_def_index);
1626 // Optionally resolve fields and methods and figure out if we need a constructor barrier.
1627 auto method_visitor = [&](const ClassAccessor::Method& method)
1628 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001629 ArtMethod* resolved = class_linker->ResolveMethod<ClassLinker::ResolveMode::kNoChecks>(
1630 method.GetIndex(),
1631 dex_cache,
1632 class_loader,
Vladimir Markoc1c34522018-10-31 13:56:49 +00001633 /*referrer=*/ nullptr,
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001634 method.GetInvokeType(class_def.access_flags_));
1635 if (resolved == nullptr) {
1636 CheckAndClearResolveException(soa.Self());
Mathieu Chartier90443472015-07-16 20:32:27 -07001637 }
Vladimir Markoc1c34522018-10-31 13:56:49 +00001638 };
1639 accessor.VisitFieldsAndMethods(
1640 // static fields
1641 [&](ClassAccessor::Field& field) REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001642 ArtField* resolved = class_linker->ResolveField(
Vladimir Markoc1c34522018-10-31 13:56:49 +00001643 field.GetIndex(), dex_cache, class_loader, /*is_static=*/ true);
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001644 if (resolved == nullptr) {
1645 CheckAndClearResolveException(soa.Self());
1646 }
Vladimir Markoc1c34522018-10-31 13:56:49 +00001647 },
1648 // instance fields
1649 [&](ClassAccessor::Field& field) REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001650 ArtField* resolved = class_linker->ResolveField(
Vladimir Markoc1c34522018-10-31 13:56:49 +00001651 field.GetIndex(), dex_cache, class_loader, /*is_static=*/ false);
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001652 if (resolved == nullptr) {
1653 CheckAndClearResolveException(soa.Self());
1654 }
Vladimir Markoc1c34522018-10-31 13:56:49 +00001655 },
1656 /*direct_method_visitor=*/ method_visitor,
1657 /*virtual_method_visitor=*/ method_visitor);
1658 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001659 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001660
Mathieu Chartier90443472015-07-16 20:32:27 -07001661 private:
1662 const ParallelCompilationManager* const manager_;
1663};
1664
1665class ResolveTypeVisitor : public CompilationVisitor {
1666 public:
1667 explicit ResolveTypeVisitor(const ParallelCompilationManager* manager) : manager_(manager) {
1668 }
Roland Levillainbbc6e7e2018-08-24 16:58:47 +01001669 void Visit(size_t type_idx) override REQUIRES(!Locks::mutator_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001670 // Class derived values are more complicated, they require the linker and loader.
Mathieu Chartier90443472015-07-16 20:32:27 -07001671 ScopedObjectAccess soa(Thread::Current());
1672 ClassLinker* class_linker = manager_->GetClassLinker();
1673 const DexFile& dex_file = *manager_->GetDexFile();
1674 StackHandleScope<2> hs(soa.Self());
Mathieu Chartier90443472015-07-16 20:32:27 -07001675 Handle<mirror::ClassLoader> class_loader(
Mathieu Chartier0795f232016-09-27 18:43:30 -07001676 hs.NewHandle(soa.Decode<mirror::ClassLoader>(manager_->GetClassLoader())));
Mathieu Chartierd57d4542015-10-14 10:55:30 -07001677 Handle<mirror::DexCache> dex_cache(hs.NewHandle(class_linker->RegisterDexFile(
1678 dex_file,
Mathieu Chartierf284d442016-06-02 11:48:30 -07001679 class_loader.Get())));
Andreas Gampefa4333d2017-02-14 11:10:34 -08001680 ObjPtr<mirror::Class> klass = (dex_cache != nullptr)
Vladimir Marko666ee3d2017-12-11 18:37:36 +00001681 ? class_linker->ResolveType(dex::TypeIndex(type_idx), dex_cache, class_loader)
Vladimir Markocd556b02017-02-03 11:47:34 +00001682 : nullptr;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001683
Mathieu Chartier90443472015-07-16 20:32:27 -07001684 if (klass == nullptr) {
1685 soa.Self()->AssertPendingException();
1686 mirror::Throwable* exception = soa.Self()->GetException();
1687 VLOG(compiler) << "Exception during type resolution: " << exception->Dump();
1688 if (exception->GetClass()->DescriptorEquals("Ljava/lang/OutOfMemoryError;")) {
1689 // There's little point continuing compilation if the heap is exhausted.
1690 LOG(FATAL) << "Out of memory during type resolution for compilation";
1691 }
1692 soa.Self()->ClearException();
Ian Rogersa436fde2013-08-27 23:34:06 -07001693 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001694 }
Mathieu Chartier90443472015-07-16 20:32:27 -07001695
1696 private:
1697 const ParallelCompilationManager* const manager_;
1698};
Brian Carlstrom7940e442013-07-12 13:46:57 -07001699
Andreas Gampeace0dc12016-01-20 13:33:13 -08001700void CompilerDriver::ResolveDexFile(jobject class_loader,
1701 const DexFile& dex_file,
Andreas Gampede7b4362014-07-28 18:38:57 -07001702 const std::vector<const DexFile*>& dex_files,
Andreas Gampeace0dc12016-01-20 13:33:13 -08001703 ThreadPool* thread_pool,
1704 size_t thread_count,
1705 TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001706 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
1707
1708 // TODO: we could resolve strings here, although the string table is largely filled with class
1709 // and method names.
1710
Andreas Gampede7b4362014-07-28 18:38:57 -07001711 ParallelCompilationManager context(class_linker, class_loader, this, &dex_file, dex_files,
1712 thread_pool);
Vladimir Markoaad75c62016-10-03 08:46:48 +00001713 if (GetCompilerOptions().IsBootImage()) {
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001714 // For images we resolve all types, such as array, whereas for applications just those with
1715 // classdefs are resolved by ResolveClassFieldsAndMethods.
Mathieu Chartierf5997b42014-06-20 10:37:54 -07001716 TimingLogger::ScopedTiming t("Resolve Types", timings);
Mathieu Chartier90443472015-07-16 20:32:27 -07001717 ResolveTypeVisitor visitor(&context);
Andreas Gampeace0dc12016-01-20 13:33:13 -08001718 context.ForAll(0, dex_file.NumTypeIds(), &visitor, thread_count);
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001719 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001720
Mathieu Chartierf5997b42014-06-20 10:37:54 -07001721 TimingLogger::ScopedTiming t("Resolve MethodsAndFields", timings);
Mathieu Chartier90443472015-07-16 20:32:27 -07001722 ResolveClassFieldsAndMethodsVisitor visitor(&context);
Andreas Gampeace0dc12016-01-20 13:33:13 -08001723 context.ForAll(0, dex_file.NumClassDefs(), &visitor, thread_count);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001724}
1725
Andreas Gampeace0dc12016-01-20 13:33:13 -08001726void CompilerDriver::SetVerified(jobject class_loader,
1727 const std::vector<const DexFile*>& dex_files,
1728 TimingLogger* timings) {
1729 // This can be run in parallel.
Mathieu Chartier90443472015-07-16 20:32:27 -07001730 for (const DexFile* dex_file : dex_files) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001731 CHECK(dex_file != nullptr);
Andreas Gampeace0dc12016-01-20 13:33:13 -08001732 SetVerifiedDexFile(class_loader,
1733 *dex_file,
1734 dex_files,
1735 parallel_thread_pool_.get(),
1736 parallel_thread_count_,
1737 timings);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001738 }
1739}
1740
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001741static void LoadAndUpdateStatus(const ClassAccessor& accessor,
Vladimir Marko2c64a832018-01-04 11:31:56 +00001742 ClassStatus status,
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001743 Handle<mirror::ClassLoader> class_loader,
1744 Thread* self)
1745 REQUIRES_SHARED(Locks::mutator_lock_) {
1746 StackHandleScope<1> hs(self);
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001747 const char* descriptor = accessor.GetDescriptor();
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001748 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
1749 Handle<mirror::Class> cls(hs.NewHandle<mirror::Class>(
1750 class_linker->FindClass(self, descriptor, class_loader)));
Andreas Gampefa4333d2017-02-14 11:10:34 -08001751 if (cls != nullptr) {
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001752 // Check that the class is resolved with the current dex file. We might get
1753 // a boot image class, or a class in a different dex file for multidex, and
1754 // we should not update the status in that case.
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001755 if (&cls->GetDexFile() == &accessor.GetDexFile()) {
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001756 ObjectLock<mirror::Class> lock(self, cls);
1757 mirror::Class::SetStatus(cls, status, self);
Andreas Gampe5b20b352018-10-11 19:03:20 -07001758 if (status >= ClassStatus::kVerified) {
1759 cls->SetVerificationAttempted();
1760 }
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001761 }
1762 } else {
1763 DCHECK(self->IsExceptionPending());
1764 self->ClearException();
1765 }
1766}
1767
Calin Juravle5ffefaa2019-01-25 01:04:54 -08001768// Returns true if any of the given dex files define a class from the boot classpath.
1769static bool DexFilesRedefineBootClasses(
1770 const std::vector<const DexFile*>& dex_files,
1771 TimingLogger* timings) {
1772 TimingLogger::ScopedTiming t("Fast Verify: Boot Class Redefinition Check", timings);
1773
1774 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
1775 Thread* self = Thread::Current();
1776 ScopedObjectAccess soa(self);
1777
1778 bool foundRedefinition = false;
1779 for (const DexFile* dex_file : dex_files) {
1780 for (ClassAccessor accessor : dex_file->GetClasses()) {
1781 const char* descriptor = accessor.GetDescriptor();
1782 StackHandleScope<1> hs_class(self);
1783 Handle<mirror::Class> klass =
1784 hs_class.NewHandle(class_linker->FindSystemClass(self, descriptor));
1785 if (klass == nullptr) {
1786 self->ClearException();
1787 } else {
1788 LOG(WARNING) << "Redefinition of boot class " << descriptor
1789 << " App dex file: " << accessor.GetDexFile().GetLocation()
1790 << " Boot dex file: " << klass->GetDexFile().GetLocation();
1791 foundRedefinition = true;
1792 if (!VLOG_IS_ON(verifier)) {
1793 // If we are not in verbose mode, return early.
1794 // Otherwise continue and log all the collisions for easier debugging.
1795 return true;
1796 }
1797 }
1798 }
1799 }
1800
1801 return foundRedefinition;
1802}
1803
Nicolas Geoffray74981052017-01-16 17:54:09 +00001804bool CompilerDriver::FastVerify(jobject jclass_loader,
1805 const std::vector<const DexFile*>& dex_files,
Vladimir Marko2afaff72018-11-30 17:01:50 +00001806 TimingLogger* timings,
1807 /*out*/ VerificationResults* verification_results) {
Nicolas Geoffrayb0bbe8e2016-11-19 10:42:37 +00001808 verifier::VerifierDeps* verifier_deps =
1809 Runtime::Current()->GetCompilerCallbacks()->GetVerifierDeps();
Mathieu Chartier72041a02017-07-14 18:23:25 -07001810 // If there exist VerifierDeps that aren't the ones we just created to output, use them to verify.
1811 if (verifier_deps == nullptr || verifier_deps->OutputOnly()) {
Nicolas Geoffray74981052017-01-16 17:54:09 +00001812 return false;
1813 }
1814 TimingLogger::ScopedTiming t("Fast Verify", timings);
Calin Juravle5ffefaa2019-01-25 01:04:54 -08001815
1816 // We cannot do fast verification if the app redefines classes from the boot classpath.
1817 // Vdex does not record resolution chains for boot classes and we might wrongfully
1818 // resolve a class to the app when it should have been resolved to the boot classpath
1819 // (e.g. if we verified against the SDK and the app redefines a boot class which is not
1820 // in the SDK.)
1821 if (DexFilesRedefineBootClasses(dex_files, timings)) {
1822 LOG(WARNING) << "Found redefinition of boot classes. Not doing fast verification.";
1823 return false;
1824 }
1825
Nicolas Geoffray74981052017-01-16 17:54:09 +00001826 ScopedObjectAccess soa(Thread::Current());
1827 StackHandleScope<2> hs(soa.Self());
1828 Handle<mirror::ClassLoader> class_loader(
1829 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader)));
Nicolas Geoffray74981052017-01-16 17:54:09 +00001830 if (!verifier_deps->ValidateDependencies(class_loader, soa.Self())) {
1831 return false;
1832 }
1833
Nicolas Geoffray49cda062017-04-21 13:08:25 +01001834 bool compiler_only_verifies = !GetCompilerOptions().IsAnyCompilationEnabled();
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001835
Nicolas Geoffray74981052017-01-16 17:54:09 +00001836 // We successfully validated the dependencies, now update class status
1837 // of verified classes. Note that the dependencies also record which classes
1838 // could not be fully verified; we could try again, but that would hurt verification
1839 // time. So instead we assume these classes still need to be verified at
1840 // runtime.
1841 for (const DexFile* dex_file : dex_files) {
Mathieu Chartierbf755fe2017-08-01 13:42:56 -07001842 // Fetch the list of unverified classes.
1843 const std::set<dex::TypeIndex>& unverified_classes =
Nicolas Geoffray74981052017-01-16 17:54:09 +00001844 verifier_deps->GetUnverifiedClasses(*dex_file);
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001845 for (ClassAccessor accessor : dex_file->GetClasses()) {
1846 if (unverified_classes.find(accessor.GetClassIdx()) == unverified_classes.end()) {
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001847 if (compiler_only_verifies) {
Nicolas Geoffray74981052017-01-16 17:54:09 +00001848 // Just update the compiled_classes_ map. The compiler doesn't need to resolve
1849 // the type.
Mathieu Chartier18e26872018-06-04 17:19:02 -07001850 ClassReference ref(dex_file, accessor.GetClassDefIndex());
Mathieu Chartier2eabc612018-05-25 14:31:16 -07001851 const ClassStatus existing = ClassStatus::kNotReady;
Mathieu Chartier1a088d42017-07-18 11:43:57 -07001852 ClassStateTable::InsertResult result =
Vladimir Marko2c64a832018-01-04 11:31:56 +00001853 compiled_classes_.Insert(ref, existing, ClassStatus::kVerified);
Mathieu Chartier2eabc612018-05-25 14:31:16 -07001854 CHECK_EQ(result, ClassStateTable::kInsertResultSuccess) << ref.dex_file->GetLocation();
Nicolas Geoffray74981052017-01-16 17:54:09 +00001855 } else {
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001856 // Update the class status, so later compilation stages know they don't need to verify
Nicolas Geoffray74981052017-01-16 17:54:09 +00001857 // the class.
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001858 LoadAndUpdateStatus(accessor, ClassStatus::kVerified, class_loader, soa.Self());
Nicolas Geoffray74981052017-01-16 17:54:09 +00001859 // Create `VerifiedMethod`s for each methods, the compiler expects one for
1860 // quickening or compiling.
1861 // Note that this means:
1862 // - We're only going to compile methods that did verify.
1863 // - Quickening will not do checkcast ellision.
1864 // TODO(ngeoffray): Reconsider this once we refactor compiler filters.
Mathieu Chartier0d896bd2018-05-25 00:20:27 -07001865 for (const ClassAccessor::Method& method : accessor.GetMethods()) {
Vladimir Marko2afaff72018-11-30 17:01:50 +00001866 verification_results->CreateVerifiedMethodFor(method.GetReference());
Mathieu Chartier0d896bd2018-05-25 00:20:27 -07001867 }
Nicolas Geoffray6bb7f1b2016-11-03 10:52:49 +00001868 }
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001869 } else if (!compiler_only_verifies) {
1870 // Make sure later compilation stages know they should not try to verify
1871 // this class again.
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001872 LoadAndUpdateStatus(accessor,
Vladimir Marko2c64a832018-01-04 11:31:56 +00001873 ClassStatus::kRetryVerificationAtRuntime,
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001874 class_loader,
1875 soa.Self());
Nicolas Geoffray6bb7f1b2016-11-03 10:52:49 +00001876 }
Nicolas Geoffray6bb7f1b2016-11-03 10:52:49 +00001877 }
1878 }
Nicolas Geoffray74981052017-01-16 17:54:09 +00001879 return true;
1880}
1881
1882void CompilerDriver::Verify(jobject jclass_loader,
1883 const std::vector<const DexFile*>& dex_files,
Vladimir Marko2afaff72018-11-30 17:01:50 +00001884 TimingLogger* timings,
1885 /*out*/ VerificationResults* verification_results) {
1886 if (FastVerify(jclass_loader, dex_files, timings, verification_results)) {
Nicolas Geoffray74981052017-01-16 17:54:09 +00001887 return;
1888 }
Nicolas Geoffray6bb7f1b2016-11-03 10:52:49 +00001889
Nicolas Geoffrayb0bbe8e2016-11-19 10:42:37 +00001890 // If there is no existing `verifier_deps` (because of non-existing vdex), or
1891 // the existing `verifier_deps` is not valid anymore, create a new one for
Nicolas Geoffray6bb7f1b2016-11-03 10:52:49 +00001892 // non boot image compilation. The verifier will need it to record the new dependencies.
1893 // Then dex2oat can update the vdex file with these new dependencies.
1894 if (!GetCompilerOptions().IsBootImage()) {
Mathieu Chartier72041a02017-07-14 18:23:25 -07001895 // Dex2oat creates the verifier deps.
Nicolas Geoffray340dafa2016-11-18 16:03:10 +00001896 // Create the main VerifierDeps, and set it to this thread.
Mathieu Chartier72041a02017-07-14 18:23:25 -07001897 verifier::VerifierDeps* verifier_deps =
1898 Runtime::Current()->GetCompilerCallbacks()->GetVerifierDeps();
1899 CHECK(verifier_deps != nullptr);
Nicolas Geoffrayb0bbe8e2016-11-19 10:42:37 +00001900 Thread::Current()->SetVerifierDeps(verifier_deps);
Nicolas Geoffray340dafa2016-11-18 16:03:10 +00001901 // Create per-thread VerifierDeps to avoid contention on the main one.
1902 // We will merge them after verification.
1903 for (ThreadPoolWorker* worker : parallel_thread_pool_->GetWorkers()) {
Vladimir Marko213ee2d2018-06-22 11:56:34 +01001904 worker->GetThread()->SetVerifierDeps(
1905 new verifier::VerifierDeps(GetCompilerOptions().GetDexFilesForOatFile()));
Nicolas Geoffray340dafa2016-11-18 16:03:10 +00001906 }
Nicolas Geoffray6bb7f1b2016-11-03 10:52:49 +00001907 }
Nicolas Geoffray74981052017-01-16 17:54:09 +00001908
Nicolas Geoffray46847392017-04-28 14:56:39 +01001909 // Verification updates VerifierDeps and needs to run single-threaded to be deterministic.
1910 bool force_determinism = GetCompilerOptions().IsForceDeterminism();
1911 ThreadPool* verify_thread_pool =
1912 force_determinism ? single_thread_pool_.get() : parallel_thread_pool_.get();
1913 size_t verify_thread_count = force_determinism ? 1U : parallel_thread_count_;
Mathieu Chartier90443472015-07-16 20:32:27 -07001914 for (const DexFile* dex_file : dex_files) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001915 CHECK(dex_file != nullptr);
Nicolas Geoffray6bb7f1b2016-11-03 10:52:49 +00001916 VerifyDexFile(jclass_loader,
Andreas Gampeace0dc12016-01-20 13:33:13 -08001917 *dex_file,
1918 dex_files,
Nicolas Geoffray46847392017-04-28 14:56:39 +01001919 verify_thread_pool,
1920 verify_thread_count,
Andreas Gampeace0dc12016-01-20 13:33:13 -08001921 timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001922 }
Nicolas Geoffray340dafa2016-11-18 16:03:10 +00001923
1924 if (!GetCompilerOptions().IsBootImage()) {
Nicolas Geoffray340dafa2016-11-18 16:03:10 +00001925 // Merge all VerifierDeps into the main one.
Nicolas Geoffray74981052017-01-16 17:54:09 +00001926 verifier::VerifierDeps* verifier_deps = Thread::Current()->GetVerifierDeps();
Nicolas Geoffray340dafa2016-11-18 16:03:10 +00001927 for (ThreadPoolWorker* worker : parallel_thread_pool_->GetWorkers()) {
1928 verifier::VerifierDeps* thread_deps = worker->GetThread()->GetVerifierDeps();
1929 worker->GetThread()->SetVerifierDeps(nullptr);
Vladimir Marko213ee2d2018-06-22 11:56:34 +01001930 verifier_deps->MergeWith(*thread_deps, GetCompilerOptions().GetDexFilesForOatFile());
Nicolas Geoffray340dafa2016-11-18 16:03:10 +00001931 delete thread_deps;
1932 }
1933 Thread::Current()->SetVerifierDeps(nullptr);
1934 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001935}
1936
Mathieu Chartier90443472015-07-16 20:32:27 -07001937class VerifyClassVisitor : public CompilationVisitor {
1938 public:
Andreas Gampe5fd66d02016-09-12 20:22:19 -07001939 VerifyClassVisitor(const ParallelCompilationManager* manager, verifier::HardFailLogMode log_level)
Andreas Gampe6cc23ac2018-08-24 15:22:43 -07001940 : manager_(manager),
1941 log_level_(log_level),
1942 sdk_version_(Runtime::Current()->GetTargetSdkVersion()) {}
Brian Carlstrom7940e442013-07-12 13:46:57 -07001943
Roland Levillainf73caca2018-08-24 17:19:07 +01001944 void Visit(size_t class_def_index) REQUIRES(!Locks::mutator_lock_) override {
Andreas Gampe9b827ab2017-12-07 19:32:48 -08001945 ScopedTrace trace(__FUNCTION__);
Mathieu Chartier90443472015-07-16 20:32:27 -07001946 ScopedObjectAccess soa(Thread::Current());
1947 const DexFile& dex_file = *manager_->GetDexFile();
Andreas Gampe3f1dcd32018-12-28 09:39:56 -08001948 const dex::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
Mathieu Chartier90443472015-07-16 20:32:27 -07001949 const char* descriptor = dex_file.GetClassDescriptor(class_def);
1950 ClassLinker* class_linker = manager_->GetClassLinker();
1951 jobject jclass_loader = manager_->GetClassLoader();
1952 StackHandleScope<3> hs(soa.Self());
1953 Handle<mirror::ClassLoader> class_loader(
Mathieu Chartier0795f232016-09-27 18:43:30 -07001954 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader)));
Mathieu Chartier90443472015-07-16 20:32:27 -07001955 Handle<mirror::Class> klass(
1956 hs.NewHandle(class_linker->FindClass(soa.Self(), descriptor, class_loader)));
Andreas Gampe6d7abbd2017-04-24 13:19:09 -07001957 verifier::FailureKind failure_kind;
Andreas Gampefa4333d2017-02-14 11:10:34 -08001958 if (klass == nullptr) {
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001959 CHECK(soa.Self()->IsExceptionPending());
1960 soa.Self()->ClearException();
Mathieu Chartier90443472015-07-16 20:32:27 -07001961
1962 /*
1963 * At compile time, we can still structurally verify the class even if FindClass fails.
1964 * This is to ensure the class is structurally sound for compilation. An unsound class
1965 * will be rejected by the verifier and later skipped during compilation in the compiler.
1966 */
Mathieu Chartier673ed3d2015-08-28 14:56:43 -07001967 Handle<mirror::DexCache> dex_cache(hs.NewHandle(class_linker->FindDexCache(
Vladimir Markocd556b02017-02-03 11:47:34 +00001968 soa.Self(), dex_file)));
Mathieu Chartier90443472015-07-16 20:32:27 -07001969 std::string error_msg;
Nicolas Geoffray08025182016-10-25 17:20:18 +01001970 failure_kind =
1971 verifier::MethodVerifier::VerifyClass(soa.Self(),
Andreas Gampeec6e6c12015-11-05 20:39:56 -08001972 &dex_file,
1973 dex_cache,
1974 class_loader,
David Brazdil15fc7292016-09-02 14:13:18 +01001975 class_def,
Andreas Gampe53e32d12015-12-09 21:03:23 -08001976 Runtime::Current()->GetCompilerCallbacks(),
Andreas Gampeec6e6c12015-11-05 20:39:56 -08001977 true /* allow soft failures */,
Andreas Gampe7fe30232016-03-25 16:58:00 -07001978 log_level_,
Andreas Gampe6cc23ac2018-08-24 15:22:43 -07001979 sdk_version_,
Nicolas Geoffray08025182016-10-25 17:20:18 +01001980 &error_msg);
Andreas Gampe6d7abbd2017-04-24 13:19:09 -07001981 if (failure_kind == verifier::FailureKind::kHardFailure) {
Mathieu Chartier90443472015-07-16 20:32:27 -07001982 LOG(ERROR) << "Verification failed on class " << PrettyDescriptor(descriptor)
1983 << " because: " << error_msg;
1984 manager_->GetCompiler()->SetHadHardVerifierFailure();
Andreas Gampef39208f2017-10-19 15:06:59 -07001985 } else if (failure_kind == verifier::FailureKind::kSoftFailure) {
1986 manager_->GetCompiler()->AddSoftVerifierFailure();
Nicolas Geoffray7cc3ae52017-03-07 14:33:37 +00001987 } else {
1988 // Force a soft failure for the VerifierDeps. This is a sanity measure, as
1989 // the vdex file already records that the class hasn't been resolved. It avoids
1990 // trying to do future verification optimizations when processing the vdex file.
Andreas Gampef39208f2017-10-19 15:06:59 -07001991 DCHECK(failure_kind == verifier::FailureKind::kNoFailure) << failure_kind;
Andreas Gampe6d7abbd2017-04-24 13:19:09 -07001992 failure_kind = verifier::FailureKind::kSoftFailure;
Mathieu Chartier90443472015-07-16 20:32:27 -07001993 }
Andreas Gampebb30d5d2018-04-23 09:59:25 -07001994 } else if (&klass->GetDexFile() != &dex_file) {
1995 // Skip a duplicate class (as the resolved class is from another, earlier dex file).
1996 return; // Do not update state.
Mathieu Chartier90443472015-07-16 20:32:27 -07001997 } else if (!SkipClass(jclass_loader, dex_file, klass.Get())) {
David Sehr709b0702016-10-13 09:12:37 -07001998 CHECK(klass->IsResolved()) << klass->PrettyClass();
Nicolas Geoffray08025182016-10-25 17:20:18 +01001999 failure_kind = class_linker->VerifyClass(soa.Self(), klass, log_level_);
Mathieu Chartier90443472015-07-16 20:32:27 -07002000
2001 if (klass->IsErroneous()) {
2002 // ClassLinker::VerifyClass throws, which isn't useful in the compiler.
2003 CHECK(soa.Self()->IsExceptionPending());
2004 soa.Self()->ClearException();
2005 manager_->GetCompiler()->SetHadHardVerifierFailure();
Andreas Gampef39208f2017-10-19 15:06:59 -07002006 } else if (failure_kind == verifier::FailureKind::kSoftFailure) {
2007 manager_->GetCompiler()->AddSoftVerifierFailure();
Mathieu Chartier90443472015-07-16 20:32:27 -07002008 }
2009
Nicolas Geoffray7cc3ae52017-03-07 14:33:37 +00002010 CHECK(klass->ShouldVerifyAtRuntime() || klass->IsVerified() || klass->IsErroneous())
David Sehr709b0702016-10-13 09:12:37 -07002011 << klass->PrettyDescriptor() << ": state=" << klass->GetStatus();
Mathieu Chartier90443472015-07-16 20:32:27 -07002012
Nicolas Geoffrayc7da1d62017-04-19 09:36:24 +01002013 // Class has a meaningful status for the compiler now, record it.
2014 ClassReference ref(manager_->GetDexFile(), class_def_index);
2015 manager_->GetCompiler()->RecordClassStatus(ref, klass->GetStatus());
2016
Andreas Gamped278cb42017-11-22 14:13:00 -08002017 // It is *very* problematic if there are resolution errors in the boot classpath.
2018 //
2019 // It is also bad if classes fail verification. For example, we rely on things working
2020 // OK without verification when the decryption dialog is brought up. It is thus highly
2021 // recommended to compile the boot classpath with
2022 // --abort-on-hard-verifier-error --abort-on-soft-verifier-error
2023 // which is the default build system configuration.
Narayan Kamathe3eae5e2016-10-27 11:47:30 +01002024 if (kIsDebugBuild) {
Orion Hodsonc5e0d3f2017-08-22 19:00:04 +01002025 if (manager_->GetCompiler()->GetCompilerOptions().IsBootImage()) {
Andreas Gamped278cb42017-11-22 14:13:00 -08002026 if (!klass->IsResolved() || klass->IsErroneous()) {
Andreas Gampe12fadcd2017-08-03 05:06:28 -07002027 LOG(FATAL) << "Boot classpath class " << klass->PrettyClass()
Andreas Gamped278cb42017-11-22 14:13:00 -08002028 << " failed to resolve/is erroneous: state= " << klass->GetStatus();
2029 UNREACHABLE();
Andreas Gampe12fadcd2017-08-03 05:06:28 -07002030 }
Narayan Kamathe3eae5e2016-10-27 11:47:30 +01002031 }
Nicolas Geoffray7cc3ae52017-03-07 14:33:37 +00002032 if (klass->IsVerified()) {
Andreas Gampe6d7abbd2017-04-24 13:19:09 -07002033 DCHECK_EQ(failure_kind, verifier::FailureKind::kNoFailure);
Nicolas Geoffray7cc3ae52017-03-07 14:33:37 +00002034 } else if (klass->ShouldVerifyAtRuntime()) {
Andreas Gampe6d7abbd2017-04-24 13:19:09 -07002035 DCHECK_EQ(failure_kind, verifier::FailureKind::kSoftFailure);
Nicolas Geoffray7cc3ae52017-03-07 14:33:37 +00002036 } else {
Andreas Gampe6d7abbd2017-04-24 13:19:09 -07002037 DCHECK_EQ(failure_kind, verifier::FailureKind::kHardFailure);
Nicolas Geoffray7cc3ae52017-03-07 14:33:37 +00002038 }
Narayan Kamathe3eae5e2016-10-27 11:47:30 +01002039 }
Nicolas Geoffray08025182016-10-25 17:20:18 +01002040 } else {
2041 // Make the skip a soft failure, essentially being considered as verify at runtime.
Andreas Gampe6d7abbd2017-04-24 13:19:09 -07002042 failure_kind = verifier::FailureKind::kSoftFailure;
Ian Rogerse6bb3b22013-08-19 21:51:45 -07002043 }
Nicolas Geoffray08025182016-10-25 17:20:18 +01002044 verifier::VerifierDeps::MaybeRecordVerificationStatus(
2045 dex_file, class_def.class_idx_, failure_kind);
Mathieu Chartier90443472015-07-16 20:32:27 -07002046 soa.Self()->AssertNoPendingException();
Brian Carlstrom7940e442013-07-12 13:46:57 -07002047 }
Mathieu Chartier90443472015-07-16 20:32:27 -07002048
2049 private:
2050 const ParallelCompilationManager* const manager_;
Andreas Gampe5fd66d02016-09-12 20:22:19 -07002051 const verifier::HardFailLogMode log_level_;
Andreas Gampe6cc23ac2018-08-24 15:22:43 -07002052 const uint32_t sdk_version_;
Mathieu Chartier90443472015-07-16 20:32:27 -07002053};
Brian Carlstrom7940e442013-07-12 13:46:57 -07002054
Andreas Gampeace0dc12016-01-20 13:33:13 -08002055void CompilerDriver::VerifyDexFile(jobject class_loader,
2056 const DexFile& dex_file,
Andreas Gampede7b4362014-07-28 18:38:57 -07002057 const std::vector<const DexFile*>& dex_files,
Andreas Gampeace0dc12016-01-20 13:33:13 -08002058 ThreadPool* thread_pool,
2059 size_t thread_count,
2060 TimingLogger* timings) {
Mathieu Chartierf5997b42014-06-20 10:37:54 -07002061 TimingLogger::ScopedTiming t("Verify Dex File", timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002062 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Andreas Gampede7b4362014-07-28 18:38:57 -07002063 ParallelCompilationManager context(class_linker, class_loader, this, &dex_file, dex_files,
2064 thread_pool);
Andreas Gampef39208f2017-10-19 15:06:59 -07002065 bool abort_on_verifier_failures = GetCompilerOptions().AbortOnHardVerifierFailure()
2066 || GetCompilerOptions().AbortOnSoftVerifierFailure();
2067 verifier::HardFailLogMode log_level = abort_on_verifier_failures
Andreas Gampe5fd66d02016-09-12 20:22:19 -07002068 ? verifier::HardFailLogMode::kLogInternalFatal
2069 : verifier::HardFailLogMode::kLogWarning;
Andreas Gampe7fe30232016-03-25 16:58:00 -07002070 VerifyClassVisitor visitor(&context, log_level);
Andreas Gampeace0dc12016-01-20 13:33:13 -08002071 context.ForAll(0, dex_file.NumClassDefs(), &visitor, thread_count);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002072}
2073
Mathieu Chartier90443472015-07-16 20:32:27 -07002074class SetVerifiedClassVisitor : public CompilationVisitor {
2075 public:
2076 explicit SetVerifiedClassVisitor(const ParallelCompilationManager* manager) : manager_(manager) {}
2077
Roland Levillainf73caca2018-08-24 17:19:07 +01002078 void Visit(size_t class_def_index) REQUIRES(!Locks::mutator_lock_) override {
Andreas Gampe9b827ab2017-12-07 19:32:48 -08002079 ScopedTrace trace(__FUNCTION__);
Mathieu Chartier90443472015-07-16 20:32:27 -07002080 ScopedObjectAccess soa(Thread::Current());
2081 const DexFile& dex_file = *manager_->GetDexFile();
Andreas Gampe3f1dcd32018-12-28 09:39:56 -08002082 const dex::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
Mathieu Chartier90443472015-07-16 20:32:27 -07002083 const char* descriptor = dex_file.GetClassDescriptor(class_def);
2084 ClassLinker* class_linker = manager_->GetClassLinker();
2085 jobject jclass_loader = manager_->GetClassLoader();
2086 StackHandleScope<3> hs(soa.Self());
2087 Handle<mirror::ClassLoader> class_loader(
Mathieu Chartier0795f232016-09-27 18:43:30 -07002088 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader)));
Mathieu Chartier90443472015-07-16 20:32:27 -07002089 Handle<mirror::Class> klass(
2090 hs.NewHandle(class_linker->FindClass(soa.Self(), descriptor, class_loader)));
2091 // Class might have failed resolution. Then don't set it to verified.
Andreas Gampefa4333d2017-02-14 11:10:34 -08002092 if (klass != nullptr) {
Mathieu Chartier90443472015-07-16 20:32:27 -07002093 // Only do this if the class is resolved. If even resolution fails, quickening will go very,
2094 // very wrong.
Vladimir Marko72ab6842017-01-20 19:32:50 +00002095 if (klass->IsResolved() && !klass->IsErroneousResolved()) {
Vladimir Marko2c64a832018-01-04 11:31:56 +00002096 if (klass->GetStatus() < ClassStatus::kVerified) {
Mathieu Chartier90443472015-07-16 20:32:27 -07002097 ObjectLock<mirror::Class> lock(soa.Self(), klass);
2098 // Set class status to verified.
Vladimir Marko2c64a832018-01-04 11:31:56 +00002099 mirror::Class::SetStatus(klass, ClassStatus::kVerified, soa.Self());
Mathieu Chartier90443472015-07-16 20:32:27 -07002100 // Mark methods as pre-verified. If we don't do this, the interpreter will run with
2101 // access checks.
Vladimir Markoa0431112018-06-25 09:32:54 +01002102 InstructionSet instruction_set =
2103 manager_->GetCompiler()->GetCompilerOptions().GetInstructionSet();
2104 klass->SetSkipAccessChecksFlagOnAllMethods(GetInstructionSetPointerSize(instruction_set));
Igor Murashkindf707e42016-02-02 16:56:50 -08002105 klass->SetVerificationAttempted();
Mathieu Chartier90443472015-07-16 20:32:27 -07002106 }
2107 // Record the final class status if necessary.
2108 ClassReference ref(manager_->GetDexFile(), class_def_index);
2109 manager_->GetCompiler()->RecordClassStatus(ref, klass->GetStatus());
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002110 }
Mathieu Chartier90443472015-07-16 20:32:27 -07002111 } else {
2112 Thread* self = soa.Self();
2113 DCHECK(self->IsExceptionPending());
2114 self->ClearException();
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002115 }
2116 }
Mathieu Chartier90443472015-07-16 20:32:27 -07002117
2118 private:
2119 const ParallelCompilationManager* const manager_;
2120};
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002121
Andreas Gampeace0dc12016-01-20 13:33:13 -08002122void CompilerDriver::SetVerifiedDexFile(jobject class_loader,
2123 const DexFile& dex_file,
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002124 const std::vector<const DexFile*>& dex_files,
Andreas Gampeace0dc12016-01-20 13:33:13 -08002125 ThreadPool* thread_pool,
2126 size_t thread_count,
2127 TimingLogger* timings) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002128 TimingLogger::ScopedTiming t("Verify Dex File", timings);
Mathieu Chartier1a088d42017-07-18 11:43:57 -07002129 if (!compiled_classes_.HaveDexFile(&dex_file)) {
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002130 compiled_classes_.AddDexFile(&dex_file);
Mathieu Chartier1a088d42017-07-18 11:43:57 -07002131 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002132 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
2133 ParallelCompilationManager context(class_linker, class_loader, this, &dex_file, dex_files,
2134 thread_pool);
Mathieu Chartier90443472015-07-16 20:32:27 -07002135 SetVerifiedClassVisitor visitor(&context);
Andreas Gampeace0dc12016-01-20 13:33:13 -08002136 context.ForAll(0, dex_file.NumClassDefs(), &visitor, thread_count);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002137}
2138
Mathieu Chartier90443472015-07-16 20:32:27 -07002139class InitializeClassVisitor : public CompilationVisitor {
2140 public:
2141 explicit InitializeClassVisitor(const ParallelCompilationManager* manager) : manager_(manager) {}
Ian Rogersfc0e94b2013-09-23 23:51:32 -07002142
Roland Levillainbbc6e7e2018-08-24 16:58:47 +01002143 void Visit(size_t class_def_index) override {
Andreas Gampe9b827ab2017-12-07 19:32:48 -08002144 ScopedTrace trace(__FUNCTION__);
Mathieu Chartier90443472015-07-16 20:32:27 -07002145 jobject jclass_loader = manager_->GetClassLoader();
2146 const DexFile& dex_file = *manager_->GetDexFile();
Andreas Gampe3f1dcd32018-12-28 09:39:56 -08002147 const dex::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
2148 const dex::TypeId& class_type_id = dex_file.GetTypeId(class_def.class_idx_);
Mathieu Chartier90443472015-07-16 20:32:27 -07002149 const char* descriptor = dex_file.StringDataByIdx(class_type_id.descriptor_idx_);
Jeff Hao0e49b422013-11-08 12:16:56 -08002150
Mathieu Chartier90443472015-07-16 20:32:27 -07002151 ScopedObjectAccess soa(Thread::Current());
2152 StackHandleScope<3> hs(soa.Self());
2153 Handle<mirror::ClassLoader> class_loader(
Mathieu Chartier0795f232016-09-27 18:43:30 -07002154 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader)));
Mathieu Chartier90443472015-07-16 20:32:27 -07002155 Handle<mirror::Class> klass(
2156 hs.NewHandle(manager_->GetClassLinker()->FindClass(soa.Self(), descriptor, class_loader)));
2157
Mathieu Chartier41dba672018-12-21 15:06:17 -08002158 if (klass != nullptr) {
2159 if (!SkipClass(manager_->GetClassLoader(), dex_file, klass.Get())) {
2160 TryInitializeClass(klass, class_loader);
2161 }
2162 manager_->GetCompiler()->stats_->AddClassStatus(klass->GetStatus());
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002163 }
2164 // Clear any class not found or verification exceptions.
2165 soa.Self()->ClearException();
2166 }
2167
2168 // A helper function for initializing klass.
2169 void TryInitializeClass(Handle<mirror::Class> klass, Handle<mirror::ClassLoader>& class_loader)
2170 REQUIRES_SHARED(Locks::mutator_lock_) {
2171 const DexFile& dex_file = klass->GetDexFile();
Andreas Gampe3f1dcd32018-12-28 09:39:56 -08002172 const dex::ClassDef* class_def = klass->GetClassDef();
2173 const dex::TypeId& class_type_id = dex_file.GetTypeId(class_def->class_idx_);
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002174 const char* descriptor = dex_file.StringDataByIdx(class_type_id.descriptor_idx_);
2175 ScopedObjectAccessUnchecked soa(Thread::Current());
2176 StackHandleScope<3> hs(soa.Self());
Mathieu Chartierdabeb3a2017-06-12 17:10:07 -07002177 const bool is_boot_image = manager_->GetCompiler()->GetCompilerOptions().IsBootImage();
Mathieu Chartier17498e52017-06-13 11:35:04 -07002178 const bool is_app_image = manager_->GetCompiler()->GetCompilerOptions().IsAppImage();
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002179
Vladimir Marko2c64a832018-01-04 11:31:56 +00002180 ClassStatus old_status = klass->GetStatus();
Mathieu Chartier1a088d42017-07-18 11:43:57 -07002181 // Don't initialize classes in boot space when compiling app image
2182 if (is_app_image && klass->IsBootStrapClassLoaded()) {
2183 // Also return early and don't store the class status in the recorded class status.
2184 return;
2185 }
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002186 // Only try to initialize classes that were successfully verified.
2187 if (klass->IsVerified()) {
2188 // Attempt to initialize the class but bail if we either need to initialize the super-class
2189 // or static fields.
Nicolas Geoffrayabadf022017-08-03 08:25:41 +00002190 manager_->GetClassLinker()->EnsureInitialized(soa.Self(), klass, false, false);
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002191 old_status = klass->GetStatus();
2192 if (!klass->IsInitialized()) {
2193 // We don't want non-trivial class initialization occurring on multiple threads due to
2194 // deadlock problems. For example, a parent class is initialized (holding its lock) that
2195 // refers to a sub-class in its static/class initializer causing it to try to acquire the
2196 // sub-class' lock. While on a second thread the sub-class is initialized (holding its lock)
2197 // after first initializing its parents, whose locks are acquired. This leads to a
2198 // parent-to-child and a child-to-parent lock ordering and consequent potential deadlock.
2199 // We need to use an ObjectLock due to potential suspension in the interpreting code. Rather
2200 // than use a special Object for the purpose we use the Class of java.lang.Class.
2201 Handle<mirror::Class> h_klass(hs.NewHandle(klass->GetClass()));
2202 ObjectLock<mirror::Class> lock(soa.Self(), h_klass);
2203 // Attempt to initialize allowing initialization of parent classes but still not static
2204 // fields.
Chang Xinge602b1c2017-06-30 11:55:01 -07002205 // Initialize dependencies first only for app image, to make TryInitialize recursive.
2206 bool is_superclass_initialized = !is_app_image ? true :
2207 InitializeDependencies(klass, class_loader, soa.Self());
2208 if (!is_app_image || (is_app_image && is_superclass_initialized)) {
Nicolas Geoffrayabadf022017-08-03 08:25:41 +00002209 manager_->GetClassLinker()->EnsureInitialized(soa.Self(), klass, false, true);
Chang Xinge602b1c2017-06-30 11:55:01 -07002210 }
2211 // Otherwise it's in app image but superclasses can't be initialized, no need to proceed.
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002212 old_status = klass->GetStatus();
Chang Xing70f689d2017-06-08 17:16:12 -07002213
Chris Wailes0c61be42018-09-26 17:27:34 -07002214 bool too_many_encoded_fields = !is_boot_image &&
2215 klass->NumStaticFields() > kMaxEncodedFields;
2216
Mathieu Chartierdabeb3a2017-06-12 17:10:07 -07002217 // If the class was not initialized, we can proceed to see if we can initialize static
Chang Xing70f689d2017-06-08 17:16:12 -07002218 // fields. Limit the max number of encoded fields.
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002219 if (!klass->IsInitialized() &&
Mathieu Chartier17498e52017-06-13 11:35:04 -07002220 (is_app_image || is_boot_image) &&
Chang Xinge602b1c2017-06-30 11:55:01 -07002221 is_superclass_initialized &&
Chang Xing70f689d2017-06-08 17:16:12 -07002222 !too_many_encoded_fields &&
Vladimir Markodc4bcce2018-06-21 16:15:42 +01002223 manager_->GetCompiler()->GetCompilerOptions().IsImageClass(descriptor)) {
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002224 bool can_init_static_fields = false;
Mathieu Chartierdabeb3a2017-06-12 17:10:07 -07002225 if (is_boot_image) {
Mathieu Chartier90443472015-07-16 20:32:27 -07002226 // We need to initialize static fields, we only do this for image classes that aren't
Mathieu Chartierdabeb3a2017-06-12 17:10:07 -07002227 // marked with the $NoPreloadHolder (which implies this should not be initialized
2228 // early).
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002229 can_init_static_fields = !StringPiece(descriptor).ends_with("$NoPreloadHolder;");
2230 } else {
Mathieu Chartier17498e52017-06-13 11:35:04 -07002231 CHECK(is_app_image);
Mathieu Chartierdabeb3a2017-06-12 17:10:07 -07002232 // The boot image case doesn't need to recursively initialize the dependencies with
2233 // special logic since the class linker already does this.
Mathieu Chartierdabeb3a2017-06-12 17:10:07 -07002234 can_init_static_fields =
Mathieu Chartier0933cc52018-03-23 14:25:08 -07002235 ClassLinker::kAppImageMayContainStrings &&
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002236 !soa.Self()->IsExceptionPending() &&
Nicolas Geoffrayabadf022017-08-03 08:25:41 +00002237 is_superclass_initialized &&
2238 NoClinitInDependency(klass, soa.Self(), &class_loader);
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002239 // TODO The checking for clinit can be removed since it's already
2240 // checked when init superclass. Currently keep it because it contains
2241 // processing of intern strings. Will be removed later when intern strings
2242 // and clinit are both initialized.
2243 }
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01002244
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002245 if (can_init_static_fields) {
2246 VLOG(compiler) << "Initializing: " << descriptor;
2247 // TODO multithreading support. We should ensure the current compilation thread has
2248 // exclusive access to the runtime and the transaction. To achieve this, we could use
2249 // a ReaderWriterMutex but we're holding the mutator lock so we fail mutex sanity
2250 // checks in Thread::AssertThreadSuspensionIsAllowable.
2251 Runtime* const runtime = Runtime::Current();
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002252 // Run the class initializer in transaction mode.
Chang Xing5a906fc2017-07-26 15:01:16 -07002253 runtime->EnterTransactionMode(is_app_image, klass.Get());
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002254 bool success = manager_->GetClassLinker()->EnsureInitialized(soa.Self(), klass, true,
2255 true);
2256 // TODO we detach transaction from runtime to indicate we quit the transactional
2257 // mode which prevents the GC from visiting objects modified during the transaction.
2258 // Ensure GC is not run so don't access freed objects when aborting transaction.
Andreas Gampe9e7078b2017-03-02 13:50:36 -08002259
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002260 {
2261 ScopedAssertNoThreadSuspension ants("Transaction end");
Chang Xing16d1dd82017-07-20 17:56:26 -07002262
2263 if (success) {
2264 runtime->ExitTransactionMode();
2265 DCHECK(!runtime->IsActiveTransaction());
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01002266
Chris Wailes0c61be42018-09-26 17:27:34 -07002267 if (is_boot_image) {
2268 // For boot image, we want to put the updated status in the oat class since we
2269 // can't reject the image anyways.
2270 old_status = klass->GetStatus();
2271 }
2272 } else {
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002273 CHECK(soa.Self()->IsExceptionPending());
2274 mirror::Throwable* exception = soa.Self()->GetException();
2275 VLOG(compiler) << "Initialization of " << descriptor << " aborted because of "
2276 << exception->Dump();
2277 std::ostream* file_log = manager_->GetCompiler()->
2278 GetCompilerOptions().GetInitFailureOutput();
2279 if (file_log != nullptr) {
2280 *file_log << descriptor << "\n";
2281 *file_log << exception->Dump() << "\n";
2282 }
2283 soa.Self()->ClearException();
Chang Xing605fe242017-07-20 15:57:21 -07002284 runtime->RollbackAllTransactions();
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002285 CHECK_EQ(old_status, klass->GetStatus()) << "Previous class status not restored";
2286 }
2287 }
2288
Nicolas Geoffrayabadf022017-08-03 08:25:41 +00002289 if (!success) {
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002290 // On failure, still intern strings of static fields and seen in <clinit>, as these
2291 // will be created in the zygote. This is separated from the transaction code just
2292 // above as we will allocate strings, so must be allowed to suspend.
2293 if (&klass->GetDexFile() == manager_->GetDexFile()) {
Andreas Gampe9e7078b2017-03-02 13:50:36 -08002294 InternStrings(klass, class_loader);
Mathieu Chartierdabeb3a2017-06-12 17:10:07 -07002295 } else {
2296 DCHECK(!is_boot_image) << "Boot image must have equal dex files";
Andreas Gampedbfe2542014-11-25 22:21:42 -08002297 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002298 }
2299 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002300 }
Jeff Hao0cb17282017-07-12 14:51:49 -07002301 // If the class still isn't initialized, at least try some checks that initialization
2302 // would do so they can be skipped at runtime.
2303 if (!klass->IsInitialized() &&
2304 manager_->GetClassLinker()->ValidateSuperClassDescriptors(klass)) {
Vladimir Marko2c64a832018-01-04 11:31:56 +00002305 old_status = ClassStatus::kSuperclassValidated;
Jeff Hao0cb17282017-07-12 14:51:49 -07002306 } else {
2307 soa.Self()->ClearException();
2308 }
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002309 soa.Self()->AssertNoPendingException();
Brian Carlstrom7940e442013-07-12 13:46:57 -07002310 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002311 }
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002312 // Record the final class status if necessary.
2313 ClassReference ref(&dex_file, klass->GetDexClassDefIndex());
2314 // Back up the status before doing initialization for static encoded fields,
2315 // because the static encoded branch wants to keep the status to uninitialized.
2316 manager_->GetCompiler()->RecordClassStatus(ref, old_status);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002317 }
Mathieu Chartier90443472015-07-16 20:32:27 -07002318
2319 private:
Andreas Gampe9e7078b2017-03-02 13:50:36 -08002320 void InternStrings(Handle<mirror::Class> klass, Handle<mirror::ClassLoader> class_loader)
2321 REQUIRES_SHARED(Locks::mutator_lock_) {
2322 DCHECK(manager_->GetCompiler()->GetCompilerOptions().IsBootImage());
2323 DCHECK(klass->IsVerified());
2324 DCHECK(!klass->IsInitialized());
2325
2326 StackHandleScope<1> hs(Thread::Current());
Vladimir Markoe11dd502017-12-08 14:09:45 +00002327 Handle<mirror::DexCache> dex_cache = hs.NewHandle(klass->GetDexCache());
Andreas Gampe3f1dcd32018-12-28 09:39:56 -08002328 const dex::ClassDef* class_def = klass->GetClassDef();
Andreas Gampe9e7078b2017-03-02 13:50:36 -08002329 ClassLinker* class_linker = manager_->GetClassLinker();
2330
Andreas Gampe7bf90482017-03-02 16:41:35 -08002331 // Check encoded final field values for strings and intern.
Vladimir Markoe11dd502017-12-08 14:09:45 +00002332 annotations::RuntimeEncodedStaticFieldValueIterator value_it(dex_cache,
2333 class_loader,
Andreas Gampe9e7078b2017-03-02 13:50:36 -08002334 manager_->GetClassLinker(),
2335 *class_def);
2336 for ( ; value_it.HasNext(); value_it.Next()) {
2337 if (value_it.GetValueType() == annotations::RuntimeEncodedStaticFieldValueIterator::kString) {
2338 // Resolve the string. This will intern the string.
2339 art::ObjPtr<mirror::String> resolved = class_linker->ResolveString(
Vladimir Markoa64b52d2017-12-08 16:27:49 +00002340 dex::StringIndex(value_it.GetJavaValue().i), dex_cache);
Andreas Gampe9e7078b2017-03-02 13:50:36 -08002341 CHECK(resolved != nullptr);
2342 }
2343 }
Andreas Gampe7bf90482017-03-02 16:41:35 -08002344
2345 // Intern strings seen in <clinit>.
2346 ArtMethod* clinit = klass->FindClassInitializer(class_linker->GetImagePointerSize());
2347 if (clinit != nullptr) {
Mathieu Chartier73f21d42018-01-02 14:26:50 -08002348 for (const DexInstructionPcPair& inst : clinit->DexInstructions()) {
Mathieu Chartier2b2bef22017-10-26 17:10:19 -07002349 if (inst->Opcode() == Instruction::CONST_STRING) {
Andreas Gampe7bf90482017-03-02 16:41:35 -08002350 ObjPtr<mirror::String> s = class_linker->ResolveString(
Vladimir Markoa64b52d2017-12-08 16:27:49 +00002351 dex::StringIndex(inst->VRegB_21c()), dex_cache);
Andreas Gampe7bf90482017-03-02 16:41:35 -08002352 CHECK(s != nullptr);
Mathieu Chartier2b2bef22017-10-26 17:10:19 -07002353 } else if (inst->Opcode() == Instruction::CONST_STRING_JUMBO) {
Andreas Gampe7bf90482017-03-02 16:41:35 -08002354 ObjPtr<mirror::String> s = class_linker->ResolveString(
Vladimir Markoa64b52d2017-12-08 16:27:49 +00002355 dex::StringIndex(inst->VRegB_31c()), dex_cache);
Andreas Gampe7bf90482017-03-02 16:41:35 -08002356 CHECK(s != nullptr);
2357 }
Andreas Gampe7bf90482017-03-02 16:41:35 -08002358 }
2359 }
Andreas Gampe9e7078b2017-03-02 13:50:36 -08002360 }
2361
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002362 bool ResolveTypesOfMethods(Thread* self, ArtMethod* m)
2363 REQUIRES_SHARED(Locks::mutator_lock_) {
Vladimir Markob45528c2017-07-27 14:14:28 +01002364 // Return value of ResolveReturnType() is discarded because resolve will be done internally.
2365 ObjPtr<mirror::Class> rtn_type = m->ResolveReturnType();
Mathieu Chartier7a8bcfd2017-06-13 13:40:43 -07002366 if (rtn_type == nullptr) {
2367 self->ClearException();
2368 return false;
2369 }
Andreas Gampe3f1dcd32018-12-28 09:39:56 -08002370 const dex::TypeList* types = m->GetParameterTypeList();
Mathieu Chartier7a8bcfd2017-06-13 13:40:43 -07002371 if (types != nullptr) {
2372 for (uint32_t i = 0; i < types->Size(); ++i) {
2373 dex::TypeIndex param_type_idx = types->GetTypeItem(i).type_idx_;
Vladimir Markob45528c2017-07-27 14:14:28 +01002374 ObjPtr<mirror::Class> param_type = m->ResolveClassFromTypeIndex(param_type_idx);
Mathieu Chartier7a8bcfd2017-06-13 13:40:43 -07002375 if (param_type == nullptr) {
2376 self->ClearException();
2377 return false;
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002378 }
2379 }
Mathieu Chartier7a8bcfd2017-06-13 13:40:43 -07002380 }
2381 return true;
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002382 }
2383
2384 // Pre resolve types mentioned in all method signatures before start a transaction
2385 // since ResolveType doesn't work in transaction mode.
2386 bool PreResolveTypes(Thread* self, const Handle<mirror::Class>& klass)
2387 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartier7a8bcfd2017-06-13 13:40:43 -07002388 PointerSize pointer_size = manager_->GetClassLinker()->GetImagePointerSize();
2389 for (ArtMethod& m : klass->GetMethods(pointer_size)) {
2390 if (!ResolveTypesOfMethods(self, &m)) {
2391 return false;
2392 }
2393 }
2394 if (klass->IsInterface()) {
2395 return true;
2396 } else if (klass->HasSuperClass()) {
2397 StackHandleScope<1> hs(self);
2398 MutableHandle<mirror::Class> super_klass(hs.NewHandle<mirror::Class>(klass->GetSuperClass()));
2399 for (int i = super_klass->GetVTableLength() - 1; i >= 0; --i) {
2400 ArtMethod* m = klass->GetVTableEntry(i, pointer_size);
2401 ArtMethod* super_m = super_klass->GetVTableEntry(i, pointer_size);
2402 if (!ResolveTypesOfMethods(self, m) || !ResolveTypesOfMethods(self, super_m)) {
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002403 return false;
2404 }
2405 }
Mathieu Chartier7a8bcfd2017-06-13 13:40:43 -07002406 for (int32_t i = 0; i < klass->GetIfTableCount(); ++i) {
2407 super_klass.Assign(klass->GetIfTable()->GetInterface(i));
2408 if (klass->GetClassLoader() != super_klass->GetClassLoader()) {
2409 uint32_t num_methods = super_klass->NumVirtualMethods();
2410 for (uint32_t j = 0; j < num_methods; ++j) {
2411 ArtMethod* m = klass->GetIfTable()->GetMethodArray(i)->GetElementPtrSize<ArtMethod*>(
2412 j, pointer_size);
2413 ArtMethod* super_m = super_klass->GetVirtualMethod(j, pointer_size);
2414 if (!ResolveTypesOfMethods(self, m) || !ResolveTypesOfMethods(self, super_m)) {
2415 return false;
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002416 }
2417 }
2418 }
2419 }
Mathieu Chartier7a8bcfd2017-06-13 13:40:43 -07002420 }
2421 return true;
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002422 }
2423
2424 // Initialize the klass's dependencies recursively before initializing itself.
2425 // Checking for interfaces is also necessary since interfaces can contain
2426 // both default methods and static encoded fields.
2427 bool InitializeDependencies(const Handle<mirror::Class>& klass,
2428 Handle<mirror::ClassLoader> class_loader,
2429 Thread* self)
2430 REQUIRES_SHARED(Locks::mutator_lock_) {
2431 if (klass->HasSuperClass()) {
2432 ObjPtr<mirror::Class> super_class = klass->GetSuperClass();
2433 StackHandleScope<1> hs(self);
2434 Handle<mirror::Class> handle_scope_super(hs.NewHandle(super_class));
2435 if (!handle_scope_super->IsInitialized()) {
2436 this->TryInitializeClass(handle_scope_super, class_loader);
2437 if (!handle_scope_super->IsInitialized()) {
2438 return false;
2439 }
2440 }
2441 }
2442
2443 uint32_t num_if = klass->NumDirectInterfaces();
2444 for (size_t i = 0; i < num_if; i++) {
2445 ObjPtr<mirror::Class>
2446 interface = mirror::Class::GetDirectInterface(self, klass.Get(), i);
2447 StackHandleScope<1> hs(self);
2448 Handle<mirror::Class> handle_interface(hs.NewHandle(interface));
2449
2450 TryInitializeClass(handle_interface, class_loader);
2451
2452 if (!handle_interface->IsInitialized()) {
2453 return false;
2454 }
2455 }
2456
2457 return PreResolveTypes(self, klass);
2458 }
2459
2460 // In this phase the classes containing class initializers are ignored. Make sure no
2461 // clinit appears in kalss's super class chain and interfaces.
2462 bool NoClinitInDependency(const Handle<mirror::Class>& klass,
2463 Thread* self,
2464 Handle<mirror::ClassLoader>* class_loader)
2465 REQUIRES_SHARED(Locks::mutator_lock_) {
2466 ArtMethod* clinit =
2467 klass->FindClassInitializer(manager_->GetClassLinker()->GetImagePointerSize());
2468 if (clinit != nullptr) {
2469 VLOG(compiler) << klass->PrettyClass() << ' ' << clinit->PrettyMethod(true);
2470 return false;
2471 }
2472 if (klass->HasSuperClass()) {
2473 ObjPtr<mirror::Class> super_class = klass->GetSuperClass();
2474 StackHandleScope<1> hs(self);
2475 Handle<mirror::Class> handle_scope_super(hs.NewHandle(super_class));
2476 if (!NoClinitInDependency(handle_scope_super, self, class_loader)) {
2477 return false;
2478 }
2479 }
2480
2481 uint32_t num_if = klass->NumDirectInterfaces();
2482 for (size_t i = 0; i < num_if; i++) {
2483 ObjPtr<mirror::Class>
2484 interface = mirror::Class::GetDirectInterface(self, klass.Get(), i);
2485 StackHandleScope<1> hs(self);
2486 Handle<mirror::Class> handle_interface(hs.NewHandle(interface));
2487 if (!NoClinitInDependency(handle_interface, self, class_loader)) {
2488 return false;
2489 }
2490 }
2491
Chang Xingba17dbd2017-06-28 21:27:56 +00002492 return true;
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002493 }
2494
Mathieu Chartier90443472015-07-16 20:32:27 -07002495 const ParallelCompilationManager* const manager_;
2496};
Brian Carlstrom7940e442013-07-12 13:46:57 -07002497
Andreas Gampeace0dc12016-01-20 13:33:13 -08002498void CompilerDriver::InitializeClasses(jobject jni_class_loader,
2499 const DexFile& dex_file,
Andreas Gampede7b4362014-07-28 18:38:57 -07002500 const std::vector<const DexFile*>& dex_files,
Andreas Gampeace0dc12016-01-20 13:33:13 -08002501 TimingLogger* timings) {
Mathieu Chartierf5997b42014-06-20 10:37:54 -07002502 TimingLogger::ScopedTiming t("InitializeNoClinit", timings);
Andreas Gampeace0dc12016-01-20 13:33:13 -08002503
2504 // Initialization allocates objects and needs to run single-threaded to be deterministic.
2505 bool force_determinism = GetCompilerOptions().IsForceDeterminism();
2506 ThreadPool* init_thread_pool = force_determinism
2507 ? single_thread_pool_.get()
2508 : parallel_thread_pool_.get();
2509 size_t init_thread_count = force_determinism ? 1U : parallel_thread_count_;
2510
Brian Carlstrom7940e442013-07-12 13:46:57 -07002511 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Andreas Gampede7b4362014-07-28 18:38:57 -07002512 ParallelCompilationManager context(class_linker, jni_class_loader, this, &dex_file, dex_files,
Andreas Gampeace0dc12016-01-20 13:33:13 -08002513 init_thread_pool);
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002514
2515 if (GetCompilerOptions().IsBootImage() || GetCompilerOptions().IsAppImage()) {
2516 // Set the concurrency thread to 1 to support initialization for App Images since transaction
2517 // doesn't support multithreading now.
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01002518 // TODO: remove this when transactional mode supports multithreading.
Andreas Gampeace0dc12016-01-20 13:33:13 -08002519 init_thread_count = 1U;
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01002520 }
Mathieu Chartier90443472015-07-16 20:32:27 -07002521 InitializeClassVisitor visitor(&context);
Andreas Gampeace0dc12016-01-20 13:33:13 -08002522 context.ForAll(0, dex_file.NumClassDefs(), &visitor, init_thread_count);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002523}
2524
Mathieu Chartier91288d82016-04-28 09:44:54 -07002525class InitializeArrayClassesAndCreateConflictTablesVisitor : public ClassVisitor {
Mathieu Chartier085a0722016-04-01 17:33:31 -07002526 public:
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002527 explicit InitializeArrayClassesAndCreateConflictTablesVisitor(VariableSizedHandleScope& hs)
2528 : hs_(hs) {}
2529
Roland Levillainf73caca2018-08-24 17:19:07 +01002530 bool operator()(ObjPtr<mirror::Class> klass) override
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002531 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartier91288d82016-04-28 09:44:54 -07002532 if (Runtime::Current()->GetHeap()->ObjectIsInBootImageSpace(klass)) {
2533 return true;
2534 }
Mathieu Chartier085a0722016-04-01 17:33:31 -07002535 if (klass->IsArrayClass()) {
2536 StackHandleScope<1> hs(Thread::Current());
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002537 auto h_klass = hs.NewHandleWrapper(&klass);
2538 Runtime::Current()->GetClassLinker()->EnsureInitialized(hs.Self(), h_klass, true, true);
Mathieu Chartier085a0722016-04-01 17:33:31 -07002539 }
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002540 // Collect handles since there may be thread suspension in future EnsureInitialized.
2541 to_visit_.push_back(hs_.NewHandle(klass));
Nicolas Geoffray88f288e2016-06-29 08:17:52 +00002542 return true;
Nelli Kimbadee982016-05-13 13:08:53 +03002543 }
Artem Udovichenkoa62cb9b2016-06-30 09:18:25 +00002544
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002545 void FillAllIMTAndConflictTables() REQUIRES_SHARED(Locks::mutator_lock_) {
2546 for (Handle<mirror::Class> c : to_visit_) {
2547 // Create the conflict tables.
2548 FillIMTAndConflictTables(c.Get());
2549 }
2550 }
2551
Artem Udovichenkoa62cb9b2016-06-30 09:18:25 +00002552 private:
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002553 void FillIMTAndConflictTables(ObjPtr<mirror::Class> klass)
2554 REQUIRES_SHARED(Locks::mutator_lock_) {
Artem Udovichenkoa62cb9b2016-06-30 09:18:25 +00002555 if (!klass->ShouldHaveImt()) {
2556 return;
2557 }
2558 if (visited_classes_.find(klass) != visited_classes_.end()) {
2559 return;
2560 }
2561 if (klass->HasSuperClass()) {
2562 FillIMTAndConflictTables(klass->GetSuperClass());
2563 }
2564 if (!klass->IsTemp()) {
2565 Runtime::Current()->GetClassLinker()->FillIMTAndConflictTables(klass);
2566 }
2567 visited_classes_.insert(klass);
2568 }
2569
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002570 VariableSizedHandleScope& hs_;
2571 std::vector<Handle<mirror::Class>> to_visit_;
2572 std::unordered_set<ObjPtr<mirror::Class>, HashObjPtr> visited_classes_;
Mathieu Chartier085a0722016-04-01 17:33:31 -07002573};
2574
Brian Carlstrom7940e442013-07-12 13:46:57 -07002575void CompilerDriver::InitializeClasses(jobject class_loader,
2576 const std::vector<const DexFile*>& dex_files,
Andreas Gampeace0dc12016-01-20 13:33:13 -08002577 TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07002578 for (size_t i = 0; i != dex_files.size(); ++i) {
2579 const DexFile* dex_file = dex_files[i];
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002580 CHECK(dex_file != nullptr);
Andreas Gampeace0dc12016-01-20 13:33:13 -08002581 InitializeClasses(class_loader, *dex_file, dex_files, timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002582 }
Vladimir Markoaad75c62016-10-03 08:46:48 +00002583 if (GetCompilerOptions().IsBootImage() || GetCompilerOptions().IsAppImage()) {
Mathieu Chartier085a0722016-04-01 17:33:31 -07002584 // Make sure that we call EnsureIntiailized on all the array classes to call
2585 // SetVerificationAttempted so that the access flags are set. If we do not do this they get
2586 // changed at runtime resulting in more dirty image pages.
Mathieu Chartier91288d82016-04-28 09:44:54 -07002587 // Also create conflict tables.
Vladimir Marko2afaff72018-11-30 17:01:50 +00002588 // Only useful if we are compiling an image.
Mathieu Chartier085a0722016-04-01 17:33:31 -07002589 ScopedObjectAccess soa(Thread::Current());
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002590 VariableSizedHandleScope hs(soa.Self());
2591 InitializeArrayClassesAndCreateConflictTablesVisitor visitor(hs);
Mathieu Chartier91288d82016-04-28 09:44:54 -07002592 Runtime::Current()->GetClassLinker()->VisitClassesWithoutClassesLock(&visitor);
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002593 visitor.FillAllIMTAndConflictTables();
Mathieu Chartier085a0722016-04-01 17:33:31 -07002594 }
Vladimir Markoaad75c62016-10-03 08:46:48 +00002595 if (GetCompilerOptions().IsBootImage()) {
Mathieu Chartier093ef212014-08-11 13:52:12 -07002596 // Prune garbage objects created during aborted transactions.
Andreas Gampe3db70682018-12-26 15:12:03 -08002597 Runtime::Current()->GetHeap()->CollectGarbage(/* clear_soft_references= */ true);
Mathieu Chartier093ef212014-08-11 13:52:12 -07002598 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002599}
2600
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002601template <typename CompileFn>
2602static void CompileDexFile(CompilerDriver* driver,
2603 jobject class_loader,
2604 const DexFile& dex_file,
2605 const std::vector<const DexFile*>& dex_files,
2606 ThreadPool* thread_pool,
2607 size_t thread_count,
2608 TimingLogger* timings,
2609 const char* timing_name,
2610 CompileFn compile_fn) {
2611 TimingLogger::ScopedTiming t(timing_name, timings);
2612 ParallelCompilationManager context(Runtime::Current()->GetClassLinker(),
2613 class_loader,
2614 driver,
2615 &dex_file,
2616 dex_files,
2617 thread_pool);
Vladimir Marko492a7fa2016-06-01 18:38:43 +01002618
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002619 auto compile = [&context, &compile_fn](size_t class_def_index) {
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002620 const DexFile& dex_file = *context.GetDexFile();
Andreas Gampe3e7f66b2018-09-06 10:08:18 -07002621 SCOPED_TRACE << "compile " << dex_file.GetLocation() << "@" << class_def_index;
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002622 ClassLinker* class_linker = context.GetClassLinker();
2623 jobject jclass_loader = context.GetClassLoader();
Mathieu Chartier90443472015-07-16 20:32:27 -07002624 ClassReference ref(&dex_file, class_def_index);
Andreas Gampe3f1dcd32018-12-28 09:39:56 -08002625 const dex::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
Mathieu Chartier18e26872018-06-04 17:19:02 -07002626 ClassAccessor accessor(dex_file, class_def_index);
Vladimir Marko2afaff72018-11-30 17:01:50 +00002627 CompilerDriver* const driver = context.GetCompiler();
Mathieu Chartier90443472015-07-16 20:32:27 -07002628 // Skip compiling classes with generic verifier failures since they will still fail at runtime
Vladimir Marko2afaff72018-11-30 17:01:50 +00002629 if (driver->GetCompilerOptions().GetVerificationResults()->IsClassRejected(ref)) {
Ian Rogers1ff3c982014-08-12 02:30:58 -07002630 return;
2631 }
Mathieu Chartier736b5602015-09-02 14:54:11 -07002632 // Use a scoped object access to perform to the quick SkipClass check.
Mathieu Chartier736b5602015-09-02 14:54:11 -07002633 ScopedObjectAccess soa(Thread::Current());
2634 StackHandleScope<3> hs(soa.Self());
2635 Handle<mirror::ClassLoader> class_loader(
Mathieu Chartier0795f232016-09-27 18:43:30 -07002636 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader)));
Mathieu Chartier736b5602015-09-02 14:54:11 -07002637 Handle<mirror::Class> klass(
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07002638 hs.NewHandle(class_linker->FindClass(soa.Self(), accessor.GetDescriptor(), class_loader)));
Mathieu Chartier736b5602015-09-02 14:54:11 -07002639 Handle<mirror::DexCache> dex_cache;
Andreas Gampefa4333d2017-02-14 11:10:34 -08002640 if (klass == nullptr) {
Mathieu Chartier736b5602015-09-02 14:54:11 -07002641 soa.Self()->AssertPendingException();
2642 soa.Self()->ClearException();
2643 dex_cache = hs.NewHandle(class_linker->FindDexCache(soa.Self(), dex_file));
2644 } else if (SkipClass(jclass_loader, dex_file, klass.Get())) {
2645 return;
Andreas Gampebb30d5d2018-04-23 09:59:25 -07002646 } else if (&klass->GetDexFile() != &dex_file) {
2647 // Skip a duplicate class (as the resolved class is from another, earlier dex file).
2648 return; // Do not update state.
Mathieu Chartier736b5602015-09-02 14:54:11 -07002649 } else {
2650 dex_cache = hs.NewHandle(klass->GetDexCache());
2651 }
2652
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07002653 // Avoid suspension if there are no methods to compile.
2654 if (accessor.NumDirectMethods() + accessor.NumVirtualMethods() == 0) {
Mathieu Chartier90443472015-07-16 20:32:27 -07002655 return;
Brian Carlstrom7940e442013-07-12 13:46:57 -07002656 }
Mathieu Chartier90443472015-07-16 20:32:27 -07002657
Mathieu Chartier736b5602015-09-02 14:54:11 -07002658 // Go to native so that we don't block GC during compilation.
Mathieu Chartierf1d666e2015-09-03 16:13:34 -07002659 ScopedThreadSuspension sts(soa.Self(), kNative);
Mathieu Chartier736b5602015-09-02 14:54:11 -07002660
Mathieu Chartier90443472015-07-16 20:32:27 -07002661 // Can we run DEX-to-DEX compiler on this class ?
Mathieu Chartiera79efdb2018-01-18 16:31:01 -08002662 optimizer::DexToDexCompiler::CompilationLevel dex_to_dex_compilation_level =
Mathieu Chartier736b5602015-09-02 14:54:11 -07002663 GetDexToDexCompilationLevel(soa.Self(), *driver, jclass_loader, dex_file, class_def);
Andreas Gampe5eb0d382015-07-23 01:19:26 -07002664
Mathieu Chartierb7c273c2017-11-10 18:07:56 -08002665 // Compile direct and virtual methods.
2666 int64_t previous_method_idx = -1;
Mathieu Chartier0d896bd2018-05-25 00:20:27 -07002667 for (const ClassAccessor::Method& method : accessor.GetMethods()) {
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07002668 const uint32_t method_idx = method.GetIndex();
Mathieu Chartierb7c273c2017-11-10 18:07:56 -08002669 if (method_idx == previous_method_idx) {
Mathieu Chartier90443472015-07-16 20:32:27 -07002670 // smali can create dex files with two encoded_methods sharing the same method_idx
2671 // http://code.google.com/p/smali/issues/detail?id=119
Mathieu Chartier0d896bd2018-05-25 00:20:27 -07002672 continue;
Mathieu Chartier90443472015-07-16 20:32:27 -07002673 }
Mathieu Chartierb7c273c2017-11-10 18:07:56 -08002674 previous_method_idx = method_idx;
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002675 compile_fn(soa.Self(),
2676 driver,
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07002677 method.GetCodeItem(),
2678 method.GetAccessFlags(),
2679 method.GetInvokeType(class_def.access_flags_),
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002680 class_def_index,
2681 method_idx,
2682 class_loader,
2683 dex_file,
2684 dex_to_dex_compilation_level,
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002685 dex_cache);
Mathieu Chartier0d896bd2018-05-25 00:20:27 -07002686 }
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002687 };
2688 context.ForAllLambda(0, dex_file.NumClassDefs(), compile, thread_count);
2689}
2690
2691void CompilerDriver::Compile(jobject class_loader,
2692 const std::vector<const DexFile*>& dex_files,
2693 TimingLogger* timings) {
2694 if (kDebugProfileGuidedCompilation) {
Vladimir Marko1a2a5cd2018-11-07 15:39:48 +00002695 const ProfileCompilationInfo* profile_compilation_info =
2696 GetCompilerOptions().GetProfileCompilationInfo();
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002697 LOG(INFO) << "[ProfileGuidedCompilation] " <<
Vladimir Marko1a2a5cd2018-11-07 15:39:48 +00002698 ((profile_compilation_info == nullptr)
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002699 ? "null"
Vladimir Marko1a2a5cd2018-11-07 15:39:48 +00002700 : profile_compilation_info->DumpInfo(dex_files));
Brian Carlstrom7940e442013-07-12 13:46:57 -07002701 }
Mathieu Chartier90443472015-07-16 20:32:27 -07002702
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002703 dex_to_dex_compiler_.ClearState();
2704 for (const DexFile* dex_file : dex_files) {
2705 CHECK(dex_file != nullptr);
2706 CompileDexFile(this,
2707 class_loader,
2708 *dex_file,
2709 dex_files,
2710 parallel_thread_pool_.get(),
2711 parallel_thread_count_,
2712 timings,
2713 "Compile Dex File Quick",
2714 CompileMethodQuick);
2715 const ArenaPool* const arena_pool = Runtime::Current()->GetArenaPool();
2716 const size_t arena_alloc = arena_pool->GetBytesAllocated();
2717 max_arena_alloc_ = std::max(arena_alloc, max_arena_alloc_);
2718 Runtime::Current()->ReclaimArenaPoolMemory();
2719 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002720
Mathieu Chartier279e3a32018-01-24 18:17:55 -08002721 if (dex_to_dex_compiler_.NumCodeItemsToQuicken(Thread::Current()) > 0u) {
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002722 // TODO: Not visit all of the dex files, its probably rare that only one would have quickened
2723 // methods though.
2724 for (const DexFile* dex_file : dex_files) {
2725 CompileDexFile(this,
2726 class_loader,
2727 *dex_file,
2728 dex_files,
2729 parallel_thread_pool_.get(),
2730 parallel_thread_count_,
2731 timings,
2732 "Compile Dex File Dex2Dex",
2733 CompileMethodDex2Dex);
2734 }
2735 dex_to_dex_compiler_.ClearState();
2736 }
2737
2738 VLOG(compiler) << "Compile: " << GetMemoryUsageString(false);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002739}
2740
Andreas Gampe5eb0d382015-07-23 01:19:26 -07002741void CompilerDriver::AddCompiledMethod(const MethodReference& method_ref,
Vladimir Marko8e524ad2018-07-13 10:27:43 +01002742 CompiledMethod* const compiled_method) {
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002743 DCHECK(GetCompiledMethod(method_ref) == nullptr) << method_ref.PrettyMethod();
2744 MethodTable::InsertResult result = compiled_methods_.Insert(method_ref,
2745 /*expected*/ nullptr,
2746 compiled_method);
Mathieu Chartieracab8d42016-11-23 13:45:58 -08002747 CHECK(result == MethodTable::kInsertResultSuccess);
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002748 DCHECK(GetCompiledMethod(method_ref) != nullptr) << method_ref.PrettyMethod();
Brian Carlstrom7940e442013-07-12 13:46:57 -07002749}
2750
Mathieu Chartier279e3a32018-01-24 18:17:55 -08002751CompiledMethod* CompilerDriver::RemoveCompiledMethod(const MethodReference& method_ref) {
2752 CompiledMethod* ret = nullptr;
2753 CHECK(compiled_methods_.Remove(method_ref, &ret));
2754 return ret;
2755}
2756
Vladimir Marko2c64a832018-01-04 11:31:56 +00002757bool CompilerDriver::GetCompiledClass(const ClassReference& ref, ClassStatus* status) const {
Andreas Gampebb846102017-05-11 21:03:35 -07002758 DCHECK(status != nullptr);
Mathieu Chartier1a088d42017-07-18 11:43:57 -07002759 // The table doesn't know if something wasn't inserted. For this case it will return
Vladimir Marko2c64a832018-01-04 11:31:56 +00002760 // ClassStatus::kNotReady. To handle this, just assume anything we didn't try to verify
2761 // is not compiled.
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002762 if (!compiled_classes_.Get(ref, status) ||
Vladimir Marko2c64a832018-01-04 11:31:56 +00002763 *status < ClassStatus::kRetryVerificationAtRuntime) {
Andreas Gampebb846102017-05-11 21:03:35 -07002764 return false;
Brian Carlstrom7940e442013-07-12 13:46:57 -07002765 }
Andreas Gampebb846102017-05-11 21:03:35 -07002766 return true;
Brian Carlstrom7940e442013-07-12 13:46:57 -07002767}
2768
Vladimir Marko2c64a832018-01-04 11:31:56 +00002769ClassStatus CompilerDriver::GetClassStatus(const ClassReference& ref) const {
2770 ClassStatus status = ClassStatus::kNotReady;
Nicolas Geoffray486dda02017-09-11 14:15:52 +01002771 if (!GetCompiledClass(ref, &status)) {
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002772 classpath_classes_.Get(ref, &status);
Nicolas Geoffray486dda02017-09-11 14:15:52 +01002773 }
2774 return status;
2775}
2776
Vladimir Marko2c64a832018-01-04 11:31:56 +00002777void CompilerDriver::RecordClassStatus(const ClassReference& ref, ClassStatus status) {
Nicolas Geoffrayade72d62016-12-15 13:20:02 +00002778 switch (status) {
Vladimir Marko2c64a832018-01-04 11:31:56 +00002779 case ClassStatus::kErrorResolved:
2780 case ClassStatus::kErrorUnresolved:
2781 case ClassStatus::kNotReady:
2782 case ClassStatus::kResolved:
2783 case ClassStatus::kRetryVerificationAtRuntime:
2784 case ClassStatus::kVerified:
2785 case ClassStatus::kSuperclassValidated:
2786 case ClassStatus::kInitialized:
Nicolas Geoffrayade72d62016-12-15 13:20:02 +00002787 break; // Expected states.
2788 default:
2789 LOG(FATAL) << "Unexpected class status for class "
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002790 << PrettyDescriptor(
2791 ref.dex_file->GetClassDescriptor(ref.dex_file->GetClassDef(ref.index)))
Nicolas Geoffrayade72d62016-12-15 13:20:02 +00002792 << " of " << status;
2793 }
2794
Mathieu Chartier1a088d42017-07-18 11:43:57 -07002795 ClassStateTable::InsertResult result;
Nicolas Geoffray486dda02017-09-11 14:15:52 +01002796 ClassStateTable* table = &compiled_classes_;
Mathieu Chartier1a088d42017-07-18 11:43:57 -07002797 do {
Vladimir Marko2c64a832018-01-04 11:31:56 +00002798 ClassStatus existing = ClassStatus::kNotReady;
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002799 if (!table->Get(ref, &existing)) {
Nicolas Geoffray486dda02017-09-11 14:15:52 +01002800 // A classpath class.
Mathieu Chartier010f5cc2017-07-24 15:53:46 -07002801 if (kIsDebugBuild) {
2802 // Check to make sure it's not a dex file for an oat file we are compiling since these
2803 // should always succeed. These do not include classes in for used libraries.
Vladimir Marko213ee2d2018-06-22 11:56:34 +01002804 for (const DexFile* dex_file : GetCompilerOptions().GetDexFilesForOatFile()) {
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002805 CHECK_NE(ref.dex_file, dex_file) << ref.dex_file->GetLocation();
Mathieu Chartier010f5cc2017-07-24 15:53:46 -07002806 }
2807 }
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002808 if (!classpath_classes_.HaveDexFile(ref.dex_file)) {
Nicolas Geoffray486dda02017-09-11 14:15:52 +01002809 // Boot classpath dex file.
2810 return;
2811 }
2812 table = &classpath_classes_;
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002813 table->Get(ref, &existing);
Mathieu Chartier010f5cc2017-07-24 15:53:46 -07002814 }
Mathieu Chartier1a088d42017-07-18 11:43:57 -07002815 if (existing >= status) {
2816 // Existing status is already better than we expect, break.
2817 break;
2818 }
Nicolas Geoffrayade72d62016-12-15 13:20:02 +00002819 // Update the status if we now have a greater one. This happens with vdex,
2820 // which records a class is verified, but does not resolve it.
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002821 result = table->Insert(ref, existing, status);
2822 CHECK(result != ClassStateTable::kInsertResultInvalidDexFile) << ref.dex_file->GetLocation();
Mathieu Chartier1a088d42017-07-18 11:43:57 -07002823 } while (result != ClassStateTable::kInsertResultSuccess);
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07002824}
2825
Brian Carlstrom7940e442013-07-12 13:46:57 -07002826CompiledMethod* CompilerDriver::GetCompiledMethod(MethodReference ref) const {
Mathieu Chartieracab8d42016-11-23 13:45:58 -08002827 CompiledMethod* compiled_method = nullptr;
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002828 compiled_methods_.Get(ref, &compiled_method);
Mathieu Chartieracab8d42016-11-23 13:45:58 -08002829 return compiled_method;
Brian Carlstrom7940e442013-07-12 13:46:57 -07002830}
2831
Andreas Gampe8d295f82015-01-20 14:50:21 -08002832std::string CompilerDriver::GetMemoryUsageString(bool extended) const {
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002833 std::ostringstream oss;
Calin Juravle69158982016-03-16 11:53:41 +00002834 const gc::Heap* const heap = Runtime::Current()->GetHeap();
Anton Kirilovdd9473b2016-01-28 15:08:01 +00002835 const size_t java_alloc = heap->GetBytesAllocated();
Calin Juravle69158982016-03-16 11:53:41 +00002836 oss << "arena alloc=" << PrettySize(max_arena_alloc_) << " (" << max_arena_alloc_ << "B)";
Anton Kirilovdd9473b2016-01-28 15:08:01 +00002837 oss << " java alloc=" << PrettySize(java_alloc) << " (" << java_alloc << "B)";
Elliott Hughes7bf5a262015-04-02 20:55:07 -07002838#if defined(__BIONIC__) || defined(__GLIBC__)
Anton Kirilovdd9473b2016-01-28 15:08:01 +00002839 const struct mallinfo info = mallinfo();
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002840 const size_t allocated_space = static_cast<size_t>(info.uordblks);
2841 const size_t free_space = static_cast<size_t>(info.fordblks);
Anton Kirilovdd9473b2016-01-28 15:08:01 +00002842 oss << " native alloc=" << PrettySize(allocated_space) << " (" << allocated_space << "B)"
2843 << " free=" << PrettySize(free_space) << " (" << free_space << "B)";
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002844#endif
Vladimir Marko35831e82015-09-11 11:59:18 +01002845 compiled_method_storage_.DumpMemoryUsage(oss, extended);
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002846 return oss.str();
2847}
2848
Andreas Gampeace0dc12016-01-20 13:33:13 -08002849void CompilerDriver::InitializeThreadPools() {
2850 size_t parallel_count = parallel_thread_count_ > 0 ? parallel_thread_count_ - 1 : 0;
2851 parallel_thread_pool_.reset(
2852 new ThreadPool("Compiler driver thread pool", parallel_count));
2853 single_thread_pool_.reset(new ThreadPool("Single-threaded Compiler driver thread pool", 0));
2854}
2855
2856void CompilerDriver::FreeThreadPools() {
2857 parallel_thread_pool_.reset();
2858 single_thread_pool_.reset();
2859}
2860
Nicolas Geoffray486dda02017-09-11 14:15:52 +01002861void CompilerDriver::SetClasspathDexFiles(const std::vector<const DexFile*>& dex_files) {
2862 classpath_classes_.AddDexFiles(dex_files);
Mathieu Chartier72041a02017-07-14 18:23:25 -07002863}
2864
Brian Carlstrom7940e442013-07-12 13:46:57 -07002865} // namespace art