blob: 8893d67f3c82239c4d06e406437575c099d92272 [file] [log] [blame]
Brian Carlstrom7940e442013-07-12 13:46:57 -07001/*
2 * Copyright (C) 2011 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include "compiler_driver.h"
18
Andreas Gampe8cf9cb32017-07-19 09:28:38 -070019#include <unistd.h>
Brian Carlstrom7940e442013-07-12 13:46:57 -070020
Mathieu Chartierab972ef2014-12-03 17:38:22 -080021#ifndef __APPLE__
22#include <malloc.h> // For mallinfo
23#endif
24
Vladimir Marko2ef01102019-02-05 15:05:10 +000025#include <string_view>
26#include <unordered_set>
27#include <vector>
28
Andreas Gampe5c803112018-04-13 17:28:34 -070029#include "android-base/logging.h"
Narayan Kamathe3eae5e2016-10-27 11:47:30 +010030#include "android-base/strings.h"
31
Mathieu Chartierc7853442015-03-27 14:35:38 -070032#include "art_field-inl.h"
Mathieu Chartiere401d142015-04-22 13:56:20 -070033#include "art_method-inl.h"
Andreas Gampef0446e92017-05-16 13:51:57 -070034#include "base/arena_allocator.h"
David Brazdild9c90372016-09-14 16:53:55 +010035#include "base/array_ref.h"
Vladimir Marko492a7fa2016-06-01 18:38:43 +010036#include "base/bit_vector.h"
Andreas Gampe542451c2016-07-26 09:02:02 -070037#include "base/enums.h"
Andreas Gampe170331f2017-12-07 18:41:03 -080038#include "base/logging.h" // For VLOG
Brian Carlstrom7940e442013-07-12 13:46:57 -070039#include "base/stl_util.h"
Vladimir Marko2ef01102019-02-05 15:05:10 +000040#include "base/string_view_cpp20.h"
Mathieu Chartier32ce2ad2016-03-04 14:58:03 -080041#include "base/systrace.h"
Vladimir Marko80afd022015-05-19 18:08:00 +010042#include "base/time_utils.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070043#include "base/timing_logger.h"
Vladimir Marko3481ba22015-04-13 12:22:36 +010044#include "class_linker-inl.h"
Vladimir Markod8dbc8d2017-09-20 13:37:47 +010045#include "compiled_method-inl.h"
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +000046#include "compiler.h"
Nicolas Geoffray6bb7f1b2016-11-03 10:52:49 +000047#include "compiler_callbacks.h"
Vladimir Markobe0e5462014-02-26 11:24:15 +000048#include "compiler_driver-inl.h"
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -070049#include "dex/class_accessor-inl.h"
David Sehrb2ec9f52018-02-21 13:20:31 -080050#include "dex/descriptors_names.h"
David Sehr9e734c72018-01-04 17:56:19 -080051#include "dex/dex_file-inl.h"
52#include "dex/dex_file_annotations.h"
53#include "dex/dex_instruction-inl.h"
Andreas Gampe5eb0d382015-07-23 01:19:26 -070054#include "dex/dex_to_dex_compiler.h"
Vladimir Markoc7f83202014-01-24 17:55:18 +000055#include "dex/verification_results.h"
Vladimir Marko2730db02014-01-27 11:15:17 +000056#include "dex/verified_method.h"
Mark Mendellae9fd932014-02-10 16:14:35 -080057#include "driver/compiler_options.h"
Vladimir Marko327497e2019-03-04 12:53:20 +000058#include "driver/dex_compilation_unit.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070059#include "gc/accounting/card_table-inl.h"
60#include "gc/accounting/heap_bitmap.h"
Mathieu Chartiere401d142015-04-22 13:56:20 -070061#include "gc/space/image_space.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070062#include "gc/space/space.h"
Steven Morelande431e272017-07-18 16:53:49 -070063#include "handle_scope-inl.h"
64#include "intrinsics_enum.h"
Vladimir Markoa3ad0cd2018-05-04 10:06:38 +010065#include "jni/jni_internal.h"
Vladimir Markod8dbc8d2017-09-20 13:37:47 +010066#include "linker/linker_patch.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070067#include "mirror/class-inl.h"
Steven Morelande431e272017-07-18 16:53:49 -070068#include "mirror/class_loader.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070069#include "mirror/dex_cache-inl.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070070#include "mirror/object-inl.h"
Andreas Gampec6ea7d02017-02-01 16:46:28 -080071#include "mirror/object-refvisitor-inl.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070072#include "mirror/object_array-inl.h"
73#include "mirror/throwable.h"
Steven Morelande431e272017-07-18 16:53:49 -070074#include "object_lock.h"
David Sehr82d046e2018-04-23 08:14:19 -070075#include "profile/profile_compilation_info.h"
Steven Morelande431e272017-07-18 16:53:49 -070076#include "runtime.h"
Orion Hodson26ef34c2017-11-01 13:32:41 +000077#include "runtime_intrinsics.h"
Mathieu Chartier0795f232016-09-27 18:43:30 -070078#include "scoped_thread_state_change-inl.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070079#include "thread.h"
Andreas Gampeb0f370e2014-09-25 22:51:40 -070080#include "thread_list.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070081#include "thread_pool.h"
Ian Rogers848871b2013-08-05 10:56:33 -070082#include "trampolines/trampoline_compiler.h"
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +010083#include "transaction.h"
Mathieu Chartier93764b82017-07-17 14:51:53 -070084#include "utils/atomic_dex_ref_map-inl.h"
Vladimir Marko20f85592015-03-19 10:07:02 +000085#include "utils/dex_cache_arrays_layout-inl.h"
Andreas Gampee21dc3d2014-12-08 16:59:43 -080086#include "utils/swap_space.h"
Nicolas Geoffrayb0bbe8e2016-11-19 10:42:37 +000087#include "vdex_file.h"
Andreas Gampea43ba3d2019-03-13 15:49:20 -070088#include "verifier/class_verifier.h"
Nicolas Geoffray08025182016-10-25 17:20:18 +010089#include "verifier/verifier_deps.h"
Andreas Gampe6d7abbd2017-04-24 13:19:09 -070090#include "verifier/verifier_enums.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070091
Brian Carlstrom7940e442013-07-12 13:46:57 -070092namespace art {
93
Mathieu Chartier8e219ae2014-08-19 14:29:46 -070094static constexpr bool kTimeCompileMethod = !kIsDebugBuild;
95
Calin Juravle226501b2015-12-11 14:41:31 +000096// Print additional info during profile guided compilation.
97static constexpr bool kDebugProfileGuidedCompilation = false;
98
Chang Xing70f689d2017-06-08 17:16:12 -070099// Max encoded fields allowed for initializing app image. Hardcode the number for now
100// because 5000 should be large enough.
101static constexpr uint32_t kMaxEncodedFields = 5000;
102
Brian Carlstrom7940e442013-07-12 13:46:57 -0700103static double Percentage(size_t x, size_t y) {
104 return 100.0 * (static_cast<double>(x)) / (static_cast<double>(x + y));
105}
106
107static void DumpStat(size_t x, size_t y, const char* str) {
108 if (x == 0 && y == 0) {
109 return;
110 }
Ian Rogerse732ef12013-10-09 15:22:24 -0700111 LOG(INFO) << Percentage(x, y) << "% of " << str << " for " << (x + y) << " cases";
Brian Carlstrom7940e442013-07-12 13:46:57 -0700112}
113
Vladimir Markof096aad2014-01-23 15:51:58 +0000114class CompilerDriver::AOTCompilationStats {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700115 public:
116 AOTCompilationStats()
Mathieu Chartier41dba672018-12-21 15:06:17 -0800117 : stats_lock_("AOT compilation statistics lock") {}
Brian Carlstrom7940e442013-07-12 13:46:57 -0700118
119 void Dump() {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700120 DumpStat(resolved_instance_fields_, unresolved_instance_fields_, "instance fields resolved");
121 DumpStat(resolved_local_static_fields_ + resolved_static_fields_, unresolved_static_fields_,
122 "static fields resolved");
123 DumpStat(resolved_local_static_fields_, resolved_static_fields_ + unresolved_static_fields_,
124 "static fields local to a class");
125 DumpStat(safe_casts_, not_safe_casts_, "check-casts removed based on type information");
126 // Note, the code below subtracts the stat value so that when added to the stat value we have
127 // 100% of samples. TODO: clean this up.
128 DumpStat(type_based_devirtualization_,
129 resolved_methods_[kVirtual] + unresolved_methods_[kVirtual] +
130 resolved_methods_[kInterface] + unresolved_methods_[kInterface] -
131 type_based_devirtualization_,
132 "virtual/interface calls made direct based on type information");
133
Mathieu Chartier41dba672018-12-21 15:06:17 -0800134 const size_t total = std::accumulate(
135 class_status_count_,
136 class_status_count_ + static_cast<size_t>(ClassStatus::kLast) + 1,
137 0u);
138 for (size_t i = 0; i <= static_cast<size_t>(ClassStatus::kLast); ++i) {
139 std::ostringstream oss;
140 oss << "classes with status " << static_cast<ClassStatus>(i);
141 DumpStat(class_status_count_[i], total - class_status_count_[i], oss.str().c_str());
142 }
143
Brian Carlstrom7940e442013-07-12 13:46:57 -0700144 for (size_t i = 0; i <= kMaxInvokeType; i++) {
145 std::ostringstream oss;
146 oss << static_cast<InvokeType>(i) << " methods were AOT resolved";
147 DumpStat(resolved_methods_[i], unresolved_methods_[i], oss.str().c_str());
148 if (virtual_made_direct_[i] > 0) {
149 std::ostringstream oss2;
150 oss2 << static_cast<InvokeType>(i) << " methods made direct";
151 DumpStat(virtual_made_direct_[i],
152 resolved_methods_[i] + unresolved_methods_[i] - virtual_made_direct_[i],
153 oss2.str().c_str());
154 }
155 if (direct_calls_to_boot_[i] > 0) {
156 std::ostringstream oss2;
157 oss2 << static_cast<InvokeType>(i) << " method calls are direct into boot";
158 DumpStat(direct_calls_to_boot_[i],
159 resolved_methods_[i] + unresolved_methods_[i] - direct_calls_to_boot_[i],
160 oss2.str().c_str());
161 }
162 if (direct_methods_to_boot_[i] > 0) {
163 std::ostringstream oss2;
164 oss2 << static_cast<InvokeType>(i) << " method calls have methods in boot";
165 DumpStat(direct_methods_to_boot_[i],
166 resolved_methods_[i] + unresolved_methods_[i] - direct_methods_to_boot_[i],
167 oss2.str().c_str());
168 }
169 }
170 }
171
172// Allow lossy statistics in non-debug builds.
173#ifndef NDEBUG
174#define STATS_LOCK() MutexLock mu(Thread::Current(), stats_lock_)
175#else
176#define STATS_LOCK()
177#endif
178
Mathieu Chartier90443472015-07-16 20:32:27 -0700179 void ResolvedInstanceField() REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700180 STATS_LOCK();
181 resolved_instance_fields_++;
182 }
183
Mathieu Chartier90443472015-07-16 20:32:27 -0700184 void UnresolvedInstanceField() REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700185 STATS_LOCK();
186 unresolved_instance_fields_++;
187 }
188
Mathieu Chartier90443472015-07-16 20:32:27 -0700189 void ResolvedLocalStaticField() REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700190 STATS_LOCK();
191 resolved_local_static_fields_++;
192 }
193
Mathieu Chartier90443472015-07-16 20:32:27 -0700194 void ResolvedStaticField() REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700195 STATS_LOCK();
196 resolved_static_fields_++;
197 }
198
Mathieu Chartier90443472015-07-16 20:32:27 -0700199 void UnresolvedStaticField() REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700200 STATS_LOCK();
201 unresolved_static_fields_++;
202 }
203
204 // Indicate that type information from the verifier led to devirtualization.
Mathieu Chartier90443472015-07-16 20:32:27 -0700205 void PreciseTypeDevirtualization() REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700206 STATS_LOCK();
207 type_based_devirtualization_++;
208 }
209
Brian Carlstrom7940e442013-07-12 13:46:57 -0700210 // A check-cast could be eliminated due to verifier type analysis.
Mathieu Chartier90443472015-07-16 20:32:27 -0700211 void SafeCast() REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700212 STATS_LOCK();
213 safe_casts_++;
214 }
215
216 // A check-cast couldn't be eliminated due to verifier type analysis.
Mathieu Chartier90443472015-07-16 20:32:27 -0700217 void NotASafeCast() REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700218 STATS_LOCK();
219 not_safe_casts_++;
220 }
221
Mathieu Chartier41dba672018-12-21 15:06:17 -0800222 // Register a class status.
223 void AddClassStatus(ClassStatus status) REQUIRES(!stats_lock_) {
224 STATS_LOCK();
225 ++class_status_count_[static_cast<size_t>(status)];
226 }
227
Brian Carlstrom7940e442013-07-12 13:46:57 -0700228 private:
229 Mutex stats_lock_;
230
Mathieu Chartier41dba672018-12-21 15:06:17 -0800231 size_t resolved_instance_fields_ = 0u;
232 size_t unresolved_instance_fields_ = 0u;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700233
Mathieu Chartier41dba672018-12-21 15:06:17 -0800234 size_t resolved_local_static_fields_ = 0u;
235 size_t resolved_static_fields_ = 0u;
236 size_t unresolved_static_fields_ = 0u;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700237 // Type based devirtualization for invoke interface and virtual.
Mathieu Chartier41dba672018-12-21 15:06:17 -0800238 size_t type_based_devirtualization_ = 0u;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700239
Mathieu Chartier41dba672018-12-21 15:06:17 -0800240 size_t resolved_methods_[kMaxInvokeType + 1] = {};
241 size_t unresolved_methods_[kMaxInvokeType + 1] = {};
242 size_t virtual_made_direct_[kMaxInvokeType + 1] = {};
243 size_t direct_calls_to_boot_[kMaxInvokeType + 1] = {};
244 size_t direct_methods_to_boot_[kMaxInvokeType + 1] = {};
Brian Carlstrom7940e442013-07-12 13:46:57 -0700245
Mathieu Chartier41dba672018-12-21 15:06:17 -0800246 size_t safe_casts_ = 0u;
247 size_t not_safe_casts_ = 0u;
248
249 size_t class_status_count_[static_cast<size_t>(ClassStatus::kLast) + 1] = {};
Brian Carlstrom7940e442013-07-12 13:46:57 -0700250
251 DISALLOW_COPY_AND_ASSIGN(AOTCompilationStats);
252};
253
Jeff Haodcdc85b2015-12-04 14:06:18 -0800254CompilerDriver::CompilerDriver(
255 const CompilerOptions* compiler_options,
Jeff Haodcdc85b2015-12-04 14:06:18 -0800256 Compiler::Kind compiler_kind,
Vladimir Marko944da602016-02-19 12:27:55 +0000257 size_t thread_count,
Vladimir Marko1a2a5cd2018-11-07 15:39:48 +0000258 int swap_fd)
Calin Juravle226501b2015-12-11 14:41:31 +0000259 : compiler_options_(compiler_options),
Vladimir Marko038924b2019-02-19 15:09:35 +0000260 compiler_(),
Jeff Hao48699fb2015-04-06 14:21:37 -0700261 compiler_kind_(compiler_kind),
Andreas Gampef39208f2017-10-19 15:06:59 -0700262 number_of_soft_verifier_failures_(0),
Andreas Gampe6cf49e52015-03-05 13:08:45 -0800263 had_hard_verifier_failure_(false),
Andreas Gampeace0dc12016-01-20 13:33:13 -0800264 parallel_thread_count_(thread_count),
Brian Carlstrom7940e442013-07-12 13:46:57 -0700265 stats_(new AOTCompilationStats),
Calin Juravle998c2162015-12-21 15:39:33 +0200266 compiled_method_storage_(swap_fd),
Vladimir Marko492a7fa2016-06-01 18:38:43 +0100267 max_arena_alloc_(0),
Mathieu Chartiera79efdb2018-01-18 16:31:01 -0800268 dex_to_dex_compiler_(this) {
Brian Carlstrom6449c622014-02-10 23:48:36 -0800269 DCHECK(compiler_options_ != nullptr);
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700270
Andreas Gampecac31ad2017-11-06 20:01:17 -0800271 compiled_method_storage_.SetDedupeEnabled(compiler_options_->DeduplicateCode());
Vladimir Marko038924b2019-02-19 15:09:35 +0000272 compiler_.reset(Compiler::Create(*compiler_options, &compiled_method_storage_, compiler_kind));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700273}
274
275CompilerDriver::~CompilerDriver() {
Mathieu Chartier93764b82017-07-17 14:51:53 -0700276 compiled_methods_.Visit([this](const DexFileReference& ref ATTRIBUTE_UNUSED,
Mathieu Chartieracab8d42016-11-23 13:45:58 -0800277 CompiledMethod* method) {
278 if (method != nullptr) {
Vladimir Marko33f7c8a2018-11-19 10:22:01 +0000279 CompiledMethod::ReleaseSwapAllocatedCompiledMethod(GetCompiledMethodStorage(), method);
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800280 }
Mathieu Chartieracab8d42016-11-23 13:45:58 -0800281 });
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
Andreas Gampeace0dc12016-01-20 13:33:13 -0800645void CompilerDriver::Resolve(jobject class_loader,
646 const std::vector<const DexFile*>& dex_files,
647 TimingLogger* timings) {
648 // Resolution allocates classes and needs to run single-threaded to be deterministic.
649 bool force_determinism = GetCompilerOptions().IsForceDeterminism();
650 ThreadPool* resolve_thread_pool = force_determinism
651 ? single_thread_pool_.get()
652 : parallel_thread_pool_.get();
653 size_t resolve_thread_count = force_determinism ? 1U : parallel_thread_count_;
654
Brian Carlstrom7940e442013-07-12 13:46:57 -0700655 for (size_t i = 0; i != dex_files.size(); ++i) {
656 const DexFile* dex_file = dex_files[i];
Kenny Rootd5185342014-05-13 14:47:05 -0700657 CHECK(dex_file != nullptr);
Andreas Gampeace0dc12016-01-20 13:33:13 -0800658 ResolveDexFile(class_loader,
659 *dex_file,
660 dex_files,
661 resolve_thread_pool,
662 resolve_thread_count,
663 timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700664 }
665}
666
Mathieu Chartiercd0f38f2018-10-15 09:44:35 -0700667void CompilerDriver::ResolveConstStrings(const std::vector<const DexFile*>& dex_files,
668 bool only_startup_strings,
669 TimingLogger* timings) {
Mathieu Chartier3bfc6942019-04-02 08:40:41 -0700670 if (only_startup_strings && GetCompilerOptions().GetProfileCompilationInfo() == nullptr) {
671 // If there is no profile, don't resolve any strings. Resolving all of the strings in the image
672 // will cause a bloated app image and slow down startup.
673 return;
674 }
Nicolas Geoffray571d2342016-10-12 13:03:15 +0000675 ScopedObjectAccess soa(Thread::Current());
676 StackHandleScope<1> hs(soa.Self());
677 ClassLinker* const class_linker = Runtime::Current()->GetClassLinker();
678 MutableHandle<mirror::DexCache> dex_cache(hs.NewHandle<mirror::DexCache>(nullptr));
Mathieu Chartier22752772018-10-18 14:18:59 -0700679 size_t num_instructions = 0u;
Nicolas Geoffray571d2342016-10-12 13:03:15 +0000680
Andreas Gampeace0dc12016-01-20 13:33:13 -0800681 for (const DexFile* dex_file : dex_files) {
Vladimir Markocd556b02017-02-03 11:47:34 +0000682 dex_cache.Assign(class_linker->FindDexCache(soa.Self(), *dex_file));
Mathieu Chartier3ffb5b12019-06-06 14:23:03 -0700683 bool added_preresolved_string_array = false;
Mathieu Chartier1ca718e2018-10-23 12:55:34 -0700684 if (only_startup_strings) {
685 // When resolving startup strings, create the preresolved strings array.
Mathieu Chartier3ffb5b12019-06-06 14:23:03 -0700686 added_preresolved_string_array = dex_cache->AddPreResolvedStringsArray();
Mathieu Chartier1ca718e2018-10-23 12:55:34 -0700687 }
Andreas Gampeace0dc12016-01-20 13:33:13 -0800688 TimingLogger::ScopedTiming t("Resolve const-string Strings", timings);
689
Mathieu Chartiera297b552018-11-07 11:41:01 -0800690 // TODO: Implement a profile-based filter for the boot image. See b/76145463.
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -0700691 for (ClassAccessor accessor : dex_file->GetClasses()) {
Vladimir Marko1a2a5cd2018-11-07 15:39:48 +0000692 const ProfileCompilationInfo* profile_compilation_info =
693 GetCompilerOptions().GetProfileCompilationInfo();
Mathieu Chartiera297b552018-11-07 11:41:01 -0800694
Mathieu Chartier22752772018-10-18 14:18:59 -0700695 const bool is_startup_class =
Vladimir Marko1a2a5cd2018-11-07 15:39:48 +0000696 profile_compilation_info != nullptr &&
697 profile_compilation_info->ContainsClass(*dex_file, accessor.GetClassIdx());
Mathieu Chartier22752772018-10-18 14:18:59 -0700698
Mathieu Chartierc2109c62019-03-20 13:34:39 -0700699 // Skip methods that failed to verify since they may contain invalid Dex code.
700 if (GetClassStatus(ClassReference(dex_file, accessor.GetClassDefIndex())) <
701 ClassStatus::kRetryVerificationAtRuntime) {
702 continue;
703 }
704
Mathieu Chartier0d896bd2018-05-25 00:20:27 -0700705 for (const ClassAccessor::Method& method : accessor.GetMethods()) {
Mathieu Chartier22752772018-10-18 14:18:59 -0700706 const bool is_clinit = (method.GetAccessFlags() & kAccConstructor) != 0 &&
707 (method.GetAccessFlags() & kAccStatic) != 0;
708 const bool is_startup_clinit = is_startup_class && is_clinit;
709
Vladimir Marko8809c9c2019-03-11 15:55:21 +0000710 if (profile_compilation_info != nullptr && !is_startup_clinit) {
711 ProfileCompilationInfo::MethodHotness hotness =
712 profile_compilation_info->GetMethodHotness(method.GetReference());
Mathieu Chartier3ffb5b12019-06-06 14:23:03 -0700713 if (added_preresolved_string_array ? !hotness.IsStartup() : !hotness.IsInProfile()) {
Vladimir Marko8809c9c2019-03-11 15:55:21 +0000714 continue;
715 }
Mathieu Chartiercd0f38f2018-10-15 09:44:35 -0700716 }
717
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -0700718 // Resolve const-strings in the code. Done to have deterministic allocation behavior. Right
719 // now this is single-threaded for simplicity.
720 // TODO: Collect the relevant string indices in parallel, then allocate them sequentially
721 // in a stable order.
722 for (const DexInstructionPcPair& inst : method.GetInstructions()) {
723 switch (inst->Opcode()) {
724 case Instruction::CONST_STRING:
725 case Instruction::CONST_STRING_JUMBO: {
726 dex::StringIndex string_index((inst->Opcode() == Instruction::CONST_STRING)
727 ? inst->VRegB_21c()
728 : inst->VRegB_31c());
729 ObjPtr<mirror::String> string = class_linker->ResolveString(string_index, dex_cache);
730 CHECK(string != nullptr) << "Could not allocate a string when forcing determinism";
Mathieu Chartier3ffb5b12019-06-06 14:23:03 -0700731 if (added_preresolved_string_array) {
Mathieu Chartier1ca718e2018-10-23 12:55:34 -0700732 dex_cache->GetPreResolvedStrings()[string_index.index_] =
733 GcRoot<mirror::String>(string);
734 }
Mathieu Chartier22752772018-10-18 14:18:59 -0700735 ++num_instructions;
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -0700736 break;
737 }
Andreas Gampeace0dc12016-01-20 13:33:13 -0800738
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -0700739 default:
740 break;
741 }
742 }
Mathieu Chartier0d896bd2018-05-25 00:20:27 -0700743 }
Vladimir Marko175e7862018-03-27 09:03:13 +0000744 }
745 }
Mathieu Chartier22752772018-10-18 14:18:59 -0700746 VLOG(compiler) << "Resolved " << num_instructions << " const string instructions";
Vladimir Marko175e7862018-03-27 09:03:13 +0000747}
748
749// Initialize type check bit strings for check-cast and instance-of in the code. Done to have
750// deterministic allocation behavior. Right now this is single-threaded for simplicity.
751// TODO: Collect the relevant type indices in parallel, then process them sequentially in a
752// stable order.
753
754static void InitializeTypeCheckBitstrings(CompilerDriver* driver,
755 ClassLinker* class_linker,
756 Handle<mirror::DexCache> dex_cache,
757 const DexFile& dex_file,
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -0700758 const ClassAccessor::Method& method)
Vladimir Marko175e7862018-03-27 09:03:13 +0000759 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -0700760 for (const DexInstructionPcPair& inst : method.GetInstructions()) {
Vladimir Marko175e7862018-03-27 09:03:13 +0000761 switch (inst->Opcode()) {
762 case Instruction::CHECK_CAST:
763 case Instruction::INSTANCE_OF: {
764 dex::TypeIndex type_index(
765 (inst->Opcode() == Instruction::CHECK_CAST) ? inst->VRegB_21c() : inst->VRegC_22c());
766 const char* descriptor = dex_file.StringByTypeIdx(type_index);
767 // We currently do not use the bitstring type check for array or final (including
768 // primitive) classes. We may reconsider this in future if it's deemed to be beneficial.
769 // And we cannot use it for classes outside the boot image as we do not know the runtime
770 // value of their bitstring when compiling (it may not even get assigned at runtime).
Vladimir Markodc4bcce2018-06-21 16:15:42 +0100771 if (descriptor[0] == 'L' && driver->GetCompilerOptions().IsImageClass(descriptor)) {
Vladimir Marko175e7862018-03-27 09:03:13 +0000772 ObjPtr<mirror::Class> klass =
773 class_linker->LookupResolvedType(type_index,
774 dex_cache.Get(),
Andreas Gampe3db70682018-12-26 15:12:03 -0800775 /* class_loader= */ nullptr);
Vladimir Marko175e7862018-03-27 09:03:13 +0000776 CHECK(klass != nullptr) << descriptor << " should have been previously resolved.";
777 // Now assign the bitstring if the class is not final. Keep this in sync with sharpening.
778 if (!klass->IsFinal()) {
779 MutexLock subtype_check_lock(Thread::Current(), *Locks::subtype_check_lock_);
780 SubtypeCheck<ObjPtr<mirror::Class>>::EnsureAssigned(klass);
781 }
Andreas Gampeace0dc12016-01-20 13:33:13 -0800782 }
Vladimir Marko175e7862018-03-27 09:03:13 +0000783 break;
784 }
785
786 default:
787 break;
788 }
789 }
790}
791
792static void InitializeTypeCheckBitstrings(CompilerDriver* driver,
793 const std::vector<const DexFile*>& dex_files,
794 TimingLogger* timings) {
795 ScopedObjectAccess soa(Thread::Current());
796 StackHandleScope<1> hs(soa.Self());
797 ClassLinker* const class_linker = Runtime::Current()->GetClassLinker();
798 MutableHandle<mirror::DexCache> dex_cache(hs.NewHandle<mirror::DexCache>(nullptr));
799
800 for (const DexFile* dex_file : dex_files) {
801 dex_cache.Assign(class_linker->FindDexCache(soa.Self(), *dex_file));
802 TimingLogger::ScopedTiming t("Initialize type check bitstrings", timings);
803
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -0700804 for (ClassAccessor accessor : dex_file->GetClasses()) {
Vladimir Marko175e7862018-03-27 09:03:13 +0000805 // Direct and virtual methods.
Mathieu Chartier0d896bd2018-05-25 00:20:27 -0700806 for (const ClassAccessor::Method& method : accessor.GetMethods()) {
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -0700807 InitializeTypeCheckBitstrings(driver, class_linker, dex_cache, *dex_file, method);
Mathieu Chartier0d896bd2018-05-25 00:20:27 -0700808 }
Andreas Gampeace0dc12016-01-20 13:33:13 -0800809 }
810 }
811}
812
813inline void CompilerDriver::CheckThreadPools() {
814 DCHECK(parallel_thread_pool_ != nullptr);
815 DCHECK(single_thread_pool_ != nullptr);
816}
817
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +0000818static void EnsureVerifiedOrVerifyAtRuntime(jobject jclass_loader,
819 const std::vector<const DexFile*>& dex_files) {
820 ScopedObjectAccess soa(Thread::Current());
821 StackHandleScope<2> hs(soa.Self());
822 Handle<mirror::ClassLoader> class_loader(
823 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader)));
824 MutableHandle<mirror::Class> cls(hs.NewHandle<mirror::Class>(nullptr));
825 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
826
827 for (const DexFile* dex_file : dex_files) {
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -0700828 for (ClassAccessor accessor : dex_file->GetClasses()) {
829 cls.Assign(class_linker->FindClass(soa.Self(), accessor.GetDescriptor(), class_loader));
Andreas Gampefa4333d2017-02-14 11:10:34 -0800830 if (cls == nullptr) {
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +0000831 soa.Self()->ClearException();
832 } else if (&cls->GetDexFile() == dex_file) {
Nicolas Geoffray7cc3ae52017-03-07 14:33:37 +0000833 DCHECK(cls->IsErroneous() || cls->IsVerified() || cls->ShouldVerifyAtRuntime())
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +0000834 << cls->PrettyClass()
835 << " " << cls->GetStatus();
836 }
837 }
838 }
839}
840
Andreas Gampeace0dc12016-01-20 13:33:13 -0800841void CompilerDriver::PreCompile(jobject class_loader,
842 const std::vector<const DexFile*>& dex_files,
Vladimir Marko2afaff72018-11-30 17:01:50 +0000843 TimingLogger* timings,
844 /*inout*/ HashSet<std::string>* image_classes,
845 /*out*/ VerificationResults* verification_results) {
Andreas Gampeace0dc12016-01-20 13:33:13 -0800846 CheckThreadPools();
Vladimir Marko213ee2d2018-06-22 11:56:34 +0100847
Vladimir Markodc4bcce2018-06-21 16:15:42 +0100848 VLOG(compiler) << "Before precompile " << GetMemoryUsageString(false);
849
Vladimir Marko213ee2d2018-06-22 11:56:34 +0100850 compiled_classes_.AddDexFiles(GetCompilerOptions().GetDexFilesForOatFile());
851 dex_to_dex_compiler_.SetDexFiles(GetCompilerOptions().GetDexFilesForOatFile());
852
Vladimir Markodc4bcce2018-06-21 16:15:42 +0100853 // Precompile:
854 // 1) Load image classes.
855 // 2) Resolve all classes.
856 // 3) For deterministic boot image, resolve strings for const-string instructions.
857 // 4) Attempt to verify all classes.
858 // 5) Attempt to initialize image classes, and trivially initialized classes.
859 // 6) Update the set of image classes.
860 // 7) For deterministic boot image, initialize bitstrings for type checking.
Andreas Gampeace0dc12016-01-20 13:33:13 -0800861
Vladimir Marko2afaff72018-11-30 17:01:50 +0000862 LoadImageClasses(timings, image_classes);
Andreas Gampe8d295f82015-01-20 14:50:21 -0800863 VLOG(compiler) << "LoadImageClasses: " << GetMemoryUsageString(false);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700864
Nicolas Geoffray49cda062017-04-21 13:08:25 +0100865 if (compiler_options_->IsAnyCompilationEnabled()) {
Mathieu Chartier88b74b62017-07-16 17:08:19 -0700866 // Avoid adding the dex files in the case where we aren't going to add compiled methods.
867 // This reduces RAM usage for this case.
868 for (const DexFile* dex_file : dex_files) {
Vladimir Marko815d5e52019-03-04 10:18:31 +0000869 // Can be already inserted. This happens for gtests.
Mathieu Chartier88b74b62017-07-16 17:08:19 -0700870 if (!compiled_methods_.HaveDexFile(dex_file)) {
Mathieu Chartierfc8b4222017-09-17 13:44:24 -0700871 compiled_methods_.AddDexFile(dex_file);
Mathieu Chartier88b74b62017-07-16 17:08:19 -0700872 }
873 }
Nicolas Geoffray49cda062017-04-21 13:08:25 +0100874 // Resolve eagerly to prepare for compilation.
Andreas Gampeace0dc12016-01-20 13:33:13 -0800875 Resolve(class_loader, dex_files, timings);
Mathieu Chartiere86deef2015-03-19 13:43:37 -0700876 VLOG(compiler) << "Resolve: " << GetMemoryUsageString(false);
877 }
878
Nicolas Geoffray60ca9492016-12-20 21:15:00 +0000879 if (compiler_options_->AssumeClassesAreVerified()) {
Mathieu Chartierab972ef2014-12-03 17:38:22 -0800880 VLOG(compiler) << "Verify none mode specified, skipping verification.";
Andreas Gampeace0dc12016-01-20 13:33:13 -0800881 SetVerified(class_loader, dex_files, timings);
Mathieu Chartiere86deef2015-03-19 13:43:37 -0700882 }
883
Nicolas Geoffray60ca9492016-12-20 21:15:00 +0000884 if (!compiler_options_->IsVerificationEnabled()) {
Jeff Hao4a200f52014-04-01 14:58:49 -0700885 return;
886 }
887
Mathieu Chartierc2109c62019-03-20 13:34:39 -0700888 Verify(class_loader, dex_files, timings, verification_results);
889 VLOG(compiler) << "Verify: " << GetMemoryUsageString(false);
890
Vladimir Markoaad75c62016-10-03 08:46:48 +0000891 if (GetCompilerOptions().IsForceDeterminism() && GetCompilerOptions().IsBootImage()) {
Andreas Gampeace0dc12016-01-20 13:33:13 -0800892 // Resolve strings from const-string. Do this now to have a deterministic image.
Mathieu Chartiercd0f38f2018-10-15 09:44:35 -0700893 ResolveConstStrings(dex_files, /*only_startup_strings=*/ false, timings);
Andreas Gampeace0dc12016-01-20 13:33:13 -0800894 VLOG(compiler) << "Resolve const-strings: " << GetMemoryUsageString(false);
Mathieu Chartiercd0f38f2018-10-15 09:44:35 -0700895 } else if (GetCompilerOptions().ResolveStartupConstStrings()) {
896 ResolveConstStrings(dex_files, /*only_startup_strings=*/ true, timings);
Andreas Gampeace0dc12016-01-20 13:33:13 -0800897 }
898
Andreas Gampe6cf49e52015-03-05 13:08:45 -0800899 if (had_hard_verifier_failure_ && GetCompilerOptions().AbortOnHardVerifierFailure()) {
Andreas Gampefdfb4d42017-07-27 12:12:22 -0700900 // Avoid dumping threads. Even if we shut down the thread pools, there will still be three
901 // instances of this thread's stack.
902 LOG(FATAL_WITHOUT_ABORT) << "Had a hard failure verifying all classes, and was asked to abort "
903 << "in such situations. Please check the log.";
Andreas Gampe56c9b7c2018-02-27 18:49:26 -0800904 _exit(1);
Andreas Gampef39208f2017-10-19 15:06:59 -0700905 } else if (number_of_soft_verifier_failures_ > 0 &&
906 GetCompilerOptions().AbortOnSoftVerifierFailure()) {
907 LOG(FATAL_WITHOUT_ABORT) << "Had " << number_of_soft_verifier_failures_ << " soft failure(s) "
908 << "verifying all classes, and was asked to abort in such situations. "
909 << "Please check the log.";
Andreas Gampe56c9b7c2018-02-27 18:49:26 -0800910 _exit(1);
Andreas Gampe6cf49e52015-03-05 13:08:45 -0800911 }
912
Nicolas Geoffray49cda062017-04-21 13:08:25 +0100913 if (compiler_options_->IsAnyCompilationEnabled()) {
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +0000914 if (kIsDebugBuild) {
915 EnsureVerifiedOrVerifyAtRuntime(class_loader, dex_files);
916 }
Nicolas Geoffrayade72d62016-12-15 13:20:02 +0000917 InitializeClasses(class_loader, dex_files, timings);
918 VLOG(compiler) << "InitializeClasses: " << GetMemoryUsageString(false);
919 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700920
Vladimir Marko2afaff72018-11-30 17:01:50 +0000921 UpdateImageClasses(timings, image_classes);
Andreas Gampe8d295f82015-01-20 14:50:21 -0800922 VLOG(compiler) << "UpdateImageClasses: " << GetMemoryUsageString(false);
Vladimir Marko175e7862018-03-27 09:03:13 +0000923
924 if (kBitstringSubtypeCheckEnabled &&
925 GetCompilerOptions().IsForceDeterminism() && GetCompilerOptions().IsBootImage()) {
926 // Initialize type check bit string used by check-cast and instanceof.
927 // Do this now to have a deterministic image.
928 // Note: This is done after UpdateImageClasses() at it relies on the image classes to be final.
929 InitializeTypeCheckBitstrings(this, dex_files, timings);
930 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700931}
932
Calin Juravle226501b2015-12-11 14:41:31 +0000933bool CompilerDriver::ShouldCompileBasedOnProfile(const MethodReference& method_ref) const {
Nicolas Geoffrayc5e3a522019-04-30 09:47:55 +0100934 // If compiling the apex image, filter out methods not in an apex file (the profile used
935 // for boot classpath is the same between the apex image and the boot image, so it includes
936 /// framewkro methods).
937 if (compiler_options_->IsApexBootImage() &&
938 !android::base::StartsWith(method_ref.dex_file->GetLocation(), "/apex")) {
939 return false;
940 }
941
Mathieu Chartier97ab5e32017-02-22 13:35:44 -0800942 // Profile compilation info may be null if no profile is passed.
Mathieu Chartierd0af56c2017-02-17 12:56:25 -0800943 if (!CompilerFilter::DependsOnProfile(compiler_options_->GetCompilerFilter())) {
944 // Use the compiler filter instead of the presence of profile_compilation_info_ since
945 // we may want to have full speed compilation along with profile based layout optimizations.
Calin Juravle226501b2015-12-11 14:41:31 +0000946 return true;
947 }
Mathieu Chartier97ab5e32017-02-22 13:35:44 -0800948 // If we are using a profile filter but do not have a profile compilation info, compile nothing.
Vladimir Marko1a2a5cd2018-11-07 15:39:48 +0000949 const ProfileCompilationInfo* profile_compilation_info =
950 GetCompilerOptions().GetProfileCompilationInfo();
951 if (profile_compilation_info == nullptr) {
Mathieu Chartier97ab5e32017-02-22 13:35:44 -0800952 return false;
953 }
Mathieu Chartier7b135c82017-06-05 12:54:01 -0700954 // Compile only hot methods, it is the profile saver's job to decide what startup methods to mark
955 // as hot.
Vladimir Marko1a2a5cd2018-11-07 15:39:48 +0000956 bool result = profile_compilation_info->GetMethodHotness(method_ref).IsHot();
Calin Juravle226501b2015-12-11 14:41:31 +0000957
958 if (kDebugProfileGuidedCompilation) {
959 LOG(INFO) << "[ProfileGuidedCompilation] "
Mathieu Chartierfc8b4222017-09-17 13:44:24 -0700960 << (result ? "Compiled" : "Skipped") << " method:" << method_ref.PrettyMethod(true);
Calin Juravle226501b2015-12-11 14:41:31 +0000961 }
Nicolas Geoffrayc5e3a522019-04-30 09:47:55 +0100962
Calin Juravle226501b2015-12-11 14:41:31 +0000963 return result;
964}
965
Mathieu Chartiere0671ce2015-07-28 17:23:28 -0700966class ResolveCatchBlockExceptionsClassVisitor : public ClassVisitor {
967 public:
Vladimir Marko8d6768d2017-03-14 10:13:21 +0000968 ResolveCatchBlockExceptionsClassVisitor() : classes_() {}
Mathieu Chartiere0671ce2015-07-28 17:23:28 -0700969
Roland Levillainf73caca2018-08-24 17:19:07 +0100970 bool operator()(ObjPtr<mirror::Class> c) override REQUIRES_SHARED(Locks::mutator_lock_) {
Vladimir Marko8d6768d2017-03-14 10:13:21 +0000971 classes_.push_back(c);
Mathieu Chartiere4275c02015-08-06 15:34:15 -0700972 return true;
973 }
974
Vladimir Marko8d6768d2017-03-14 10:13:21 +0000975 void FindExceptionTypesToResolve(
976 std::set<std::pair<dex::TypeIndex, const DexFile*>>* exceptions_to_resolve)
Vladimir Markobfb80d22017-02-14 14:08:12 +0000977 REQUIRES_SHARED(Locks::mutator_lock_) {
Vladimir Marko8d6768d2017-03-14 10:13:21 +0000978 const auto pointer_size = Runtime::Current()->GetClassLinker()->GetImagePointerSize();
979 for (ObjPtr<mirror::Class> klass : classes_) {
980 for (ArtMethod& method : klass->GetMethods(pointer_size)) {
981 FindExceptionTypesToResolveForMethod(&method, exceptions_to_resolve);
982 }
983 }
984 }
985
986 private:
987 void FindExceptionTypesToResolveForMethod(
988 ArtMethod* method,
989 std::set<std::pair<dex::TypeIndex, const DexFile*>>* exceptions_to_resolve)
990 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartier808c7a52017-12-15 11:19:33 -0800991 if (method->GetCodeItem() == nullptr) {
Mathieu Chartiere0671ce2015-07-28 17:23:28 -0700992 return; // native or abstract method
Brian Carlstrom7940e442013-07-12 13:46:57 -0700993 }
David Sehr0225f8e2018-01-31 08:52:24 +0000994 CodeItemDataAccessor accessor(method->DexInstructionData());
Mathieu Chartier808c7a52017-12-15 11:19:33 -0800995 if (accessor.TriesSize() == 0) {
Mathieu Chartiere0671ce2015-07-28 17:23:28 -0700996 return; // nothing to process
997 }
Mathieu Chartier808c7a52017-12-15 11:19:33 -0800998 const uint8_t* encoded_catch_handler_list = accessor.GetCatchHandlerData();
Mathieu Chartiere0671ce2015-07-28 17:23:28 -0700999 size_t num_encoded_catch_handlers = DecodeUnsignedLeb128(&encoded_catch_handler_list);
1000 for (size_t i = 0; i < num_encoded_catch_handlers; i++) {
1001 int32_t encoded_catch_handler_size = DecodeSignedLeb128(&encoded_catch_handler_list);
1002 bool has_catch_all = false;
1003 if (encoded_catch_handler_size <= 0) {
1004 encoded_catch_handler_size = -encoded_catch_handler_size;
1005 has_catch_all = true;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001006 }
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001007 for (int32_t j = 0; j < encoded_catch_handler_size; j++) {
Andreas Gampea5b09a62016-11-17 15:21:22 -08001008 dex::TypeIndex encoded_catch_handler_handlers_type_idx =
1009 dex::TypeIndex(DecodeUnsignedLeb128(&encoded_catch_handler_list));
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001010 // Add to set of types to resolve if not already in the dex cache resolved types
Vladimir Marko8d6768d2017-03-14 10:13:21 +00001011 if (!method->IsResolvedTypeIdx(encoded_catch_handler_handlers_type_idx)) {
1012 exceptions_to_resolve->emplace(encoded_catch_handler_handlers_type_idx,
1013 method->GetDexFile());
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001014 }
1015 // ignore address associated with catch handler
1016 DecodeUnsignedLeb128(&encoded_catch_handler_list);
1017 }
1018 if (has_catch_all) {
1019 // ignore catch all address
1020 DecodeUnsignedLeb128(&encoded_catch_handler_list);
1021 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001022 }
1023 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001024
Vladimir Marko8d6768d2017-03-14 10:13:21 +00001025 std::vector<ObjPtr<mirror::Class>> classes_;
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001026};
1027
1028class RecordImageClassesVisitor : public ClassVisitor {
1029 public:
Vladimir Marko54159c62018-06-20 14:30:08 +01001030 explicit RecordImageClassesVisitor(HashSet<std::string>* image_classes)
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001031 : image_classes_(image_classes) {}
1032
Roland Levillainbbc6e7e2018-08-24 16:58:47 +01001033 bool operator()(ObjPtr<mirror::Class> klass) override REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001034 std::string temp;
1035 image_classes_->insert(klass->GetDescriptor(&temp));
1036 return true;
1037 }
1038
1039 private:
Vladimir Marko54159c62018-06-20 14:30:08 +01001040 HashSet<std::string>* const image_classes_;
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001041};
Brian Carlstrom7940e442013-07-12 13:46:57 -07001042
1043// Make a list of descriptors for classes to include in the image
Vladimir Marko2afaff72018-11-30 17:01:50 +00001044void CompilerDriver::LoadImageClasses(TimingLogger* timings,
1045 /*inout*/ HashSet<std::string>* image_classes) {
Kenny Rootd5185342014-05-13 14:47:05 -07001046 CHECK(timings != nullptr);
Vladimir Markoaad75c62016-10-03 08:46:48 +00001047 if (!GetCompilerOptions().IsBootImage()) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001048 return;
1049 }
1050
Mathieu Chartierf5997b42014-06-20 10:37:54 -07001051 TimingLogger::ScopedTiming t("LoadImageClasses", timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001052 // Make a first class to load all classes explicitly listed in the file
1053 Thread* self = Thread::Current();
1054 ScopedObjectAccess soa(self);
1055 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Vladimir Marko2afaff72018-11-30 17:01:50 +00001056 CHECK(image_classes != nullptr);
1057 for (auto it = image_classes->begin(), end = image_classes->end(); it != end;) {
Vladimir Markoe9c36b32013-11-21 15:49:16 +00001058 const std::string& descriptor(*it);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001059 StackHandleScope<1> hs(self);
1060 Handle<mirror::Class> klass(
1061 hs.NewHandle(class_linker->FindSystemClass(self, descriptor.c_str())));
Andreas Gampefa4333d2017-02-14 11:10:34 -08001062 if (klass == nullptr) {
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001063 VLOG(compiler) << "Failed to find class " << descriptor;
Vladimir Marko2afaff72018-11-30 17:01:50 +00001064 it = image_classes->erase(it);
Ian Rogersa436fde2013-08-27 23:34:06 -07001065 self->ClearException();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001066 } else {
1067 ++it;
1068 }
1069 }
1070
1071 // Resolve exception classes referenced by the loaded classes. The catch logic assumes
1072 // exceptions are resolved by the verifier when there is a catch block in an interested method.
1073 // Do this here so that exception classes appear to have been specified image classes.
Andreas Gampea5b09a62016-11-17 15:21:22 -08001074 std::set<std::pair<dex::TypeIndex, const DexFile*>> unresolved_exception_types;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001075 StackHandleScope<1> hs(self);
1076 Handle<mirror::Class> java_lang_Throwable(
1077 hs.NewHandle(class_linker->FindSystemClass(self, "Ljava/lang/Throwable;")));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001078 do {
1079 unresolved_exception_types.clear();
Vladimir Marko8d6768d2017-03-14 10:13:21 +00001080 {
1081 // Thread suspension is not allowed while ResolveCatchBlockExceptionsClassVisitor
1082 // is using a std::vector<ObjPtr<mirror::Class>>.
1083 ScopedAssertNoThreadSuspension ants(__FUNCTION__);
1084 ResolveCatchBlockExceptionsClassVisitor visitor;
1085 class_linker->VisitClasses(&visitor);
1086 visitor.FindExceptionTypesToResolve(&unresolved_exception_types);
1087 }
Andreas Gampea5b09a62016-11-17 15:21:22 -08001088 for (const auto& exception_type : unresolved_exception_types) {
1089 dex::TypeIndex exception_type_idx = exception_type.first;
Mathieu Chartier02e25112013-08-14 16:14:24 -07001090 const DexFile* dex_file = exception_type.second;
Vladimir Marko666ee3d2017-12-11 18:37:36 +00001091 StackHandleScope<1> hs2(self);
Mathieu Chartierf284d442016-06-02 11:48:30 -07001092 Handle<mirror::DexCache> dex_cache(hs2.NewHandle(class_linker->RegisterDexFile(*dex_file,
1093 nullptr)));
Vladimir Marko666ee3d2017-12-11 18:37:36 +00001094 ObjPtr<mirror::Class> klass =
Andreas Gampefa4333d2017-02-14 11:10:34 -08001095 (dex_cache != nullptr)
Vladimir Marko666ee3d2017-12-11 18:37:36 +00001096 ? class_linker->ResolveType(exception_type_idx,
Vladimir Markocd556b02017-02-03 11:47:34 +00001097 dex_cache,
1098 ScopedNullHandle<mirror::ClassLoader>())
Vladimir Marko666ee3d2017-12-11 18:37:36 +00001099 : nullptr;
Andreas Gampefa4333d2017-02-14 11:10:34 -08001100 if (klass == nullptr) {
Andreas Gampe3f1dcd32018-12-28 09:39:56 -08001101 const dex::TypeId& type_id = dex_file->GetTypeId(exception_type_idx);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001102 const char* descriptor = dex_file->GetTypeDescriptor(type_id);
1103 LOG(FATAL) << "Failed to resolve class " << descriptor;
1104 }
Vladimir Marko666ee3d2017-12-11 18:37:36 +00001105 DCHECK(java_lang_Throwable->IsAssignableFrom(klass));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001106 }
1107 // Resolving exceptions may load classes that reference more exceptions, iterate until no
1108 // more are found
1109 } while (!unresolved_exception_types.empty());
1110
1111 // We walk the roots looking for classes so that we'll pick up the
1112 // above classes plus any classes them depend on such super
1113 // classes, interfaces, and the required ClassLinker roots.
Vladimir Marko2afaff72018-11-30 17:01:50 +00001114 RecordImageClassesVisitor visitor(image_classes);
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001115 class_linker->VisitClasses(&visitor);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001116
Vladimir Marko2afaff72018-11-30 17:01:50 +00001117 CHECK(!image_classes->empty());
Brian Carlstrom7940e442013-07-12 13:46:57 -07001118}
1119
Vladimir Marko19a4d372016-12-08 14:41:46 +00001120static void MaybeAddToImageClasses(Thread* self,
1121 ObjPtr<mirror::Class> klass,
Vladimir Marko54159c62018-06-20 14:30:08 +01001122 HashSet<std::string>* image_classes)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001123 REQUIRES_SHARED(Locks::mutator_lock_) {
Vladimir Marko19a4d372016-12-08 14:41:46 +00001124 DCHECK_EQ(self, Thread::Current());
Mathieu Chartierf8322842014-05-16 10:59:25 -07001125 StackHandleScope<1> hs(self);
Ian Rogers1ff3c982014-08-12 02:30:58 -07001126 std::string temp;
Andreas Gampe542451c2016-07-26 09:02:02 -07001127 const PointerSize pointer_size = Runtime::Current()->GetClassLinker()->GetImagePointerSize();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001128 while (!klass->IsObjectClass()) {
Ian Rogers1ff3c982014-08-12 02:30:58 -07001129 const char* descriptor = klass->GetDescriptor(&temp);
Vladimir Marko2ef01102019-02-05 15:05:10 +00001130 if (image_classes->find(std::string_view(descriptor)) != image_classes->end()) {
Vladimir Marko54159c62018-06-20 14:30:08 +01001131 break; // Previously inserted.
Brian Carlstrom7940e442013-07-12 13:46:57 -07001132 }
Vladimir Marko54159c62018-06-20 14:30:08 +01001133 image_classes->insert(descriptor);
Ian Rogers1ff3c982014-08-12 02:30:58 -07001134 VLOG(compiler) << "Adding " << descriptor << " to image classes";
Vladimir Marko19a4d372016-12-08 14:41:46 +00001135 for (size_t i = 0, num_interfaces = klass->NumDirectInterfaces(); i != num_interfaces; ++i) {
1136 ObjPtr<mirror::Class> interface = mirror::Class::GetDirectInterface(self, klass, i);
1137 DCHECK(interface != nullptr);
1138 MaybeAddToImageClasses(self, interface, image_classes);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001139 }
Vladimir Marko19a4d372016-12-08 14:41:46 +00001140 for (auto& m : klass->GetVirtualMethods(pointer_size)) {
1141 MaybeAddToImageClasses(self, m.GetDeclaringClass(), image_classes);
Mathieu Chartiere401d142015-04-22 13:56:20 -07001142 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001143 if (klass->IsArrayClass()) {
Vladimir Marko19a4d372016-12-08 14:41:46 +00001144 MaybeAddToImageClasses(self, klass->GetComponentType(), image_classes);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001145 }
Andreas Gampe98104992018-10-16 12:49:47 -07001146 klass = klass->GetSuperClass();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001147 }
1148}
1149
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001150// Keeps all the data for the update together. Also doubles as the reference visitor.
1151// Note: we can use object pointers because we suspend all threads.
1152class ClinitImageUpdate {
1153 public:
Mathieu Chartier31e88222016-10-14 18:43:19 -07001154 static ClinitImageUpdate* Create(VariableSizedHandleScope& hs,
Vladimir Marko54159c62018-06-20 14:30:08 +01001155 HashSet<std::string>* image_class_descriptors,
Mathieu Chartier31e88222016-10-14 18:43:19 -07001156 Thread* self,
1157 ClassLinker* linker) {
1158 std::unique_ptr<ClinitImageUpdate> res(new ClinitImageUpdate(hs,
1159 image_class_descriptors,
1160 self,
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001161 linker));
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001162 return res.release();
1163 }
1164
1165 ~ClinitImageUpdate() {
1166 // Allow others to suspend again.
1167 self_->EndAssertNoThreadSuspension(old_cause_);
1168 }
1169
1170 // Visitor for VisitReferences.
Mathieu Chartier31e88222016-10-14 18:43:19 -07001171 void operator()(ObjPtr<mirror::Object> object,
1172 MemberOffset field_offset,
Andreas Gampe3db70682018-12-26 15:12:03 -08001173 bool is_static ATTRIBUTE_UNUSED) const
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001174 REQUIRES_SHARED(Locks::mutator_lock_) {
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001175 mirror::Object* ref = object->GetFieldObject<mirror::Object>(field_offset);
1176 if (ref != nullptr) {
1177 VisitClinitClassesObject(ref);
1178 }
1179 }
1180
Roland Levillain5e8d5f02016-10-18 18:03:43 +01001181 // java.lang.ref.Reference visitor for VisitReferences.
Mathieu Chartier31e88222016-10-14 18:43:19 -07001182 void operator()(ObjPtr<mirror::Class> klass ATTRIBUTE_UNUSED,
1183 ObjPtr<mirror::Reference> ref ATTRIBUTE_UNUSED) const {}
Mathieu Chartierda7c6502015-07-23 16:01:26 -07001184
1185 // Ignore class native roots.
1186 void VisitRootIfNonNull(mirror::CompressedReference<mirror::Object>* root ATTRIBUTE_UNUSED)
1187 const {}
1188 void VisitRoot(mirror::CompressedReference<mirror::Object>* root ATTRIBUTE_UNUSED) const {}
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001189
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001190 void Walk() REQUIRES_SHARED(Locks::mutator_lock_) {
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001191 // Use the initial classes as roots for a search.
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001192 for (Handle<mirror::Class> klass_root : image_classes_) {
1193 VisitClinitClassesObject(klass_root.Get());
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001194 }
Vladimir Marko19a4d372016-12-08 14:41:46 +00001195 Thread* self = Thread::Current();
1196 ScopedAssertNoThreadSuspension ants(__FUNCTION__);
Mathieu Chartier31e88222016-10-14 18:43:19 -07001197 for (Handle<mirror::Class> h_klass : to_insert_) {
Vladimir Marko19a4d372016-12-08 14:41:46 +00001198 MaybeAddToImageClasses(self, h_klass.Get(), image_class_descriptors_);
Mathieu Chartier31e88222016-10-14 18:43:19 -07001199 }
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001200 }
1201
1202 private:
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001203 class FindImageClassesVisitor : public ClassVisitor {
1204 public:
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001205 explicit FindImageClassesVisitor(VariableSizedHandleScope& hs,
1206 ClinitImageUpdate* data)
1207 : data_(data),
1208 hs_(hs) {}
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001209
Roland Levillainbbc6e7e2018-08-24 16:58:47 +01001210 bool operator()(ObjPtr<mirror::Class> klass) override REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001211 std::string temp;
Vladimir Marko2ef01102019-02-05 15:05:10 +00001212 std::string_view name(klass->GetDescriptor(&temp));
Vladimir Marko29a533e2018-10-23 12:42:00 +01001213 auto it = data_->image_class_descriptors_->find(name);
1214 if (it != data_->image_class_descriptors_->end()) {
1215 if (LIKELY(klass->IsResolved())) {
1216 data_->image_classes_.push_back(hs_.NewHandle(klass));
1217 } else {
1218 DCHECK(klass->IsErroneousUnresolved());
1219 VLOG(compiler) << "Removing unresolved class from image classes: " << name;
1220 data_->image_class_descriptors_->erase(it);
1221 }
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001222 } else {
1223 // Check whether it is initialized and has a clinit. They must be kept, too.
1224 if (klass->IsInitialized() && klass->FindClassInitializer(
1225 Runtime::Current()->GetClassLinker()->GetImagePointerSize()) != nullptr) {
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001226 data_->image_classes_.push_back(hs_.NewHandle(klass));
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001227 }
1228 }
1229 return true;
1230 }
1231
1232 private:
1233 ClinitImageUpdate* const data_;
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001234 VariableSizedHandleScope& hs_;
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001235 };
1236
Mathieu Chartier31e88222016-10-14 18:43:19 -07001237 ClinitImageUpdate(VariableSizedHandleScope& hs,
Vladimir Marko54159c62018-06-20 14:30:08 +01001238 HashSet<std::string>* image_class_descriptors,
Mathieu Chartier31e88222016-10-14 18:43:19 -07001239 Thread* self,
1240 ClassLinker* linker) REQUIRES_SHARED(Locks::mutator_lock_)
1241 : hs_(hs),
1242 image_class_descriptors_(image_class_descriptors),
1243 self_(self) {
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001244 CHECK(linker != nullptr);
1245 CHECK(image_class_descriptors != nullptr);
1246
1247 // Make sure nobody interferes with us.
1248 old_cause_ = self->StartAssertNoThreadSuspension("Boot image closure");
1249
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001250 // Find all the already-marked classes.
1251 WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001252 FindImageClassesVisitor visitor(hs_, this);
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001253 linker->VisitClasses(&visitor);
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001254 }
1255
1256 void VisitClinitClassesObject(mirror::Object* object) const
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001257 REQUIRES_SHARED(Locks::mutator_lock_) {
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001258 DCHECK(object != nullptr);
1259 if (marked_objects_.find(object) != marked_objects_.end()) {
1260 // Already processed.
1261 return;
1262 }
1263
1264 // Mark it.
1265 marked_objects_.insert(object);
1266
1267 if (object->IsClass()) {
Mathieu Chartier31e88222016-10-14 18:43:19 -07001268 // Add to the TODO list since MaybeAddToImageClasses may cause thread suspension. Thread
1269 // suspensionb is not safe to do in VisitObjects or VisitReferences.
1270 to_insert_.push_back(hs_.NewHandle(object->AsClass()));
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001271 } else {
1272 // Else visit the object's class.
1273 VisitClinitClassesObject(object->GetClass());
1274 }
1275
Mathieu Chartiere401d142015-04-22 13:56:20 -07001276 // If it is not a DexCache, visit all references.
Mathieu Chartier31e88222016-10-14 18:43:19 -07001277 if (!object->IsDexCache()) {
Mathieu Chartier059ef3d2015-08-18 13:54:21 -07001278 object->VisitReferences(*this, *this);
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001279 }
1280 }
1281
Mathieu Chartier31e88222016-10-14 18:43:19 -07001282 VariableSizedHandleScope& hs_;
1283 mutable std::vector<Handle<mirror::Class>> to_insert_;
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001284 mutable std::unordered_set<mirror::Object*> marked_objects_;
Vladimir Marko54159c62018-06-20 14:30:08 +01001285 HashSet<std::string>* const image_class_descriptors_;
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001286 std::vector<Handle<mirror::Class>> image_classes_;
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001287 Thread* const self_;
1288 const char* old_cause_;
1289
1290 DISALLOW_COPY_AND_ASSIGN(ClinitImageUpdate);
1291};
Brian Carlstrom7940e442013-07-12 13:46:57 -07001292
Vladimir Marko2afaff72018-11-30 17:01:50 +00001293void CompilerDriver::UpdateImageClasses(TimingLogger* timings,
1294 /*inout*/ HashSet<std::string>* image_classes) {
Vladimir Markoaad75c62016-10-03 08:46:48 +00001295 if (GetCompilerOptions().IsBootImage()) {
Mathieu Chartierf5997b42014-06-20 10:37:54 -07001296 TimingLogger::ScopedTiming t("UpdateImageClasses", timings);
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001297
Mathieu Chartier4f55e222015-09-04 13:26:21 -07001298 Runtime* runtime = Runtime::Current();
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001299
1300 // Suspend all threads.
Mathieu Chartier4f55e222015-09-04 13:26:21 -07001301 ScopedSuspendAll ssa(__FUNCTION__);
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001302
Mathieu Chartier31e88222016-10-14 18:43:19 -07001303 VariableSizedHandleScope hs(Thread::Current());
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001304 std::string error_msg;
Mathieu Chartier31e88222016-10-14 18:43:19 -07001305 std::unique_ptr<ClinitImageUpdate> update(ClinitImageUpdate::Create(hs,
Vladimir Marko2afaff72018-11-30 17:01:50 +00001306 image_classes,
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001307 Thread::Current(),
Mathieu Chartier31e88222016-10-14 18:43:19 -07001308 runtime->GetClassLinker()));
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001309
1310 // Do the marking.
1311 update->Walk();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001312 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001313}
1314
Vladimir Markobe0e5462014-02-26 11:24:15 +00001315void CompilerDriver::ProcessedInstanceField(bool resolved) {
1316 if (!resolved) {
1317 stats_->UnresolvedInstanceField();
1318 } else {
1319 stats_->ResolvedInstanceField();
1320 }
1321}
1322
1323void CompilerDriver::ProcessedStaticField(bool resolved, bool local) {
1324 if (!resolved) {
1325 stats_->UnresolvedStaticField();
1326 } else if (local) {
1327 stats_->ResolvedLocalStaticField();
1328 } else {
1329 stats_->ResolvedStaticField();
1330 }
1331}
1332
Mathieu Chartierc7853442015-03-27 14:35:38 -07001333ArtField* CompilerDriver::ComputeInstanceFieldInfo(uint32_t field_idx,
Vladimir Markoe11dd502017-12-08 14:09:45 +00001334 const DexCompilationUnit* mUnit,
1335 bool is_put,
Mathieu Chartierc7853442015-03-27 14:35:38 -07001336 const ScopedObjectAccess& soa) {
Vladimir Markobe0e5462014-02-26 11:24:15 +00001337 // Try to resolve the field and compiling method's class.
Mathieu Chartierc7853442015-03-27 14:35:38 -07001338 ArtField* resolved_field;
Vladimir Marko28e012a2017-12-07 11:22:59 +00001339 ObjPtr<mirror::Class> referrer_class;
Mathieu Chartier736b5602015-09-02 14:54:11 -07001340 Handle<mirror::DexCache> dex_cache(mUnit->GetDexCache());
Vladimir Markobe0e5462014-02-26 11:24:15 +00001341 {
Vladimir Markoe11dd502017-12-08 14:09:45 +00001342 Handle<mirror::ClassLoader> class_loader = mUnit->GetClassLoader();
Andreas Gampe3db70682018-12-26 15:12:03 -08001343 resolved_field = ResolveField(soa, dex_cache, class_loader, field_idx, /* is_static= */ false);
Mathieu Chartierc7853442015-03-27 14:35:38 -07001344 referrer_class = resolved_field != nullptr
Vladimir Markoe11dd502017-12-08 14:09:45 +00001345 ? ResolveCompilingMethodsClass(soa, dex_cache, class_loader, mUnit) : nullptr;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001346 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001347 bool can_link = false;
Vladimir Markobe0e5462014-02-26 11:24:15 +00001348 if (resolved_field != nullptr && referrer_class != nullptr) {
Vladimir Markobe0e5462014-02-26 11:24:15 +00001349 std::pair<bool, bool> fast_path = IsFastInstanceField(
Mathieu Chartier736b5602015-09-02 14:54:11 -07001350 dex_cache.Get(), referrer_class, resolved_field, field_idx);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001351 can_link = is_put ? fast_path.second : fast_path.first;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001352 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001353 ProcessedInstanceField(can_link);
1354 return can_link ? resolved_field : nullptr;
1355}
1356
1357bool CompilerDriver::ComputeInstanceFieldInfo(uint32_t field_idx, const DexCompilationUnit* mUnit,
1358 bool is_put, MemberOffset* field_offset,
1359 bool* is_volatile) {
1360 ScopedObjectAccess soa(Thread::Current());
Mathieu Chartierc7853442015-03-27 14:35:38 -07001361 ArtField* resolved_field = ComputeInstanceFieldInfo(field_idx, mUnit, is_put, soa);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001362
Mathieu Chartierc7853442015-03-27 14:35:38 -07001363 if (resolved_field == nullptr) {
Vladimir Markobe0e5462014-02-26 11:24:15 +00001364 // Conservative defaults.
1365 *is_volatile = true;
1366 *field_offset = MemberOffset(static_cast<size_t>(-1));
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001367 return false;
1368 } else {
1369 *is_volatile = resolved_field->IsVolatile();
1370 *field_offset = resolved_field->GetOffset();
1371 return true;
Vladimir Markobe0e5462014-02-26 11:24:15 +00001372 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001373}
1374
Vladimir Marko2730db02014-01-27 11:15:17 +00001375bool CompilerDriver::IsSafeCast(const DexCompilationUnit* mUnit, uint32_t dex_pc) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001376 if (!compiler_options_->IsVerificationEnabled()) {
1377 // If we didn't verify, every cast has to be treated as non-safe.
1378 return false;
1379 }
Vladimir Marko2730db02014-01-27 11:15:17 +00001380 DCHECK(mUnit->GetVerifiedMethod() != nullptr);
1381 bool result = mUnit->GetVerifiedMethod()->IsSafeCast(dex_pc);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001382 if (result) {
1383 stats_->SafeCast();
1384 } else {
1385 stats_->NotASafeCast();
1386 }
1387 return result;
1388}
1389
Mathieu Chartier90443472015-07-16 20:32:27 -07001390class CompilationVisitor {
1391 public:
1392 virtual ~CompilationVisitor() {}
1393 virtual void Visit(size_t index) = 0;
1394};
1395
Brian Carlstrom7940e442013-07-12 13:46:57 -07001396class ParallelCompilationManager {
1397 public:
Brian Carlstrom7940e442013-07-12 13:46:57 -07001398 ParallelCompilationManager(ClassLinker* class_linker,
1399 jobject class_loader,
1400 CompilerDriver* compiler,
1401 const DexFile* dex_file,
Andreas Gampede7b4362014-07-28 18:38:57 -07001402 const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -08001403 ThreadPool* thread_pool)
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001404 : index_(0),
1405 class_linker_(class_linker),
Brian Carlstrom7940e442013-07-12 13:46:57 -07001406 class_loader_(class_loader),
1407 compiler_(compiler),
1408 dex_file_(dex_file),
Andreas Gampede7b4362014-07-28 18:38:57 -07001409 dex_files_(dex_files),
Ian Rogers3d504072014-03-01 09:16:49 -08001410 thread_pool_(thread_pool) {}
Brian Carlstrom7940e442013-07-12 13:46:57 -07001411
1412 ClassLinker* GetClassLinker() const {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001413 CHECK(class_linker_ != nullptr);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001414 return class_linker_;
1415 }
1416
1417 jobject GetClassLoader() const {
1418 return class_loader_;
1419 }
1420
1421 CompilerDriver* GetCompiler() const {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001422 CHECK(compiler_ != nullptr);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001423 return compiler_;
1424 }
1425
1426 const DexFile* GetDexFile() const {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001427 CHECK(dex_file_ != nullptr);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001428 return dex_file_;
1429 }
1430
Andreas Gampede7b4362014-07-28 18:38:57 -07001431 const std::vector<const DexFile*>& GetDexFiles() const {
1432 return dex_files_;
1433 }
1434
Mathieu Chartier90443472015-07-16 20:32:27 -07001435 void ForAll(size_t begin, size_t end, CompilationVisitor* visitor, size_t work_units)
1436 REQUIRES(!*Locks::mutator_lock_) {
Andreas Gampe3c060ad2018-01-22 13:07:49 -08001437 ForAllLambda(begin, end, [visitor](size_t index) { visitor->Visit(index); }, work_units);
1438 }
1439
1440 template <typename Fn>
1441 void ForAllLambda(size_t begin, size_t end, Fn fn, size_t work_units)
1442 REQUIRES(!*Locks::mutator_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001443 Thread* self = Thread::Current();
1444 self->AssertNoPendingException();
1445 CHECK_GT(work_units, 0U);
1446
Orion Hodson88591fe2018-03-06 13:35:43 +00001447 index_.store(begin, std::memory_order_relaxed);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001448 for (size_t i = 0; i < work_units; ++i) {
Andreas Gampe3c060ad2018-01-22 13:07:49 -08001449 thread_pool_->AddTask(self, new ForAllClosureLambda<Fn>(this, end, fn));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001450 }
1451 thread_pool_->StartWorkers(self);
1452
1453 // Ensure we're suspended while we're blocked waiting for the other threads to finish (worker
1454 // thread destructor's called below perform join).
1455 CHECK_NE(self->GetState(), kRunnable);
1456
1457 // Wait for all the worker threads to finish.
1458 thread_pool_->Wait(self, true, false);
Andreas Gampeace0dc12016-01-20 13:33:13 -08001459
1460 // And stop the workers accepting jobs.
1461 thread_pool_->StopWorkers(self);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001462 }
1463
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001464 size_t NextIndex() {
Orion Hodson88591fe2018-03-06 13:35:43 +00001465 return index_.fetch_add(1, std::memory_order_seq_cst);
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001466 }
1467
Brian Carlstrom7940e442013-07-12 13:46:57 -07001468 private:
Andreas Gampe3c060ad2018-01-22 13:07:49 -08001469 template <typename Fn>
1470 class ForAllClosureLambda : public Task {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001471 public:
Andreas Gampe3c060ad2018-01-22 13:07:49 -08001472 ForAllClosureLambda(ParallelCompilationManager* manager, size_t end, Fn fn)
Brian Carlstrom7940e442013-07-12 13:46:57 -07001473 : manager_(manager),
Brian Carlstrom7940e442013-07-12 13:46:57 -07001474 end_(end),
Andreas Gampe3c060ad2018-01-22 13:07:49 -08001475 fn_(fn) {}
Brian Carlstrom7940e442013-07-12 13:46:57 -07001476
Roland Levillainbbc6e7e2018-08-24 16:58:47 +01001477 void Run(Thread* self) override {
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001478 while (true) {
1479 const size_t index = manager_->NextIndex();
1480 if (UNLIKELY(index >= end_)) {
1481 break;
1482 }
Andreas Gampe3c060ad2018-01-22 13:07:49 -08001483 fn_(index);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001484 self->AssertNoPendingException();
1485 }
1486 }
1487
Roland Levillainbbc6e7e2018-08-24 16:58:47 +01001488 void Finalize() override {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001489 delete this;
1490 }
Brian Carlstrom0cd7ec22013-07-17 23:40:20 -07001491
Brian Carlstrom7940e442013-07-12 13:46:57 -07001492 private:
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001493 ParallelCompilationManager* const manager_;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001494 const size_t end_;
Andreas Gampe3c060ad2018-01-22 13:07:49 -08001495 Fn fn_;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001496 };
1497
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001498 AtomicInteger index_;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001499 ClassLinker* const class_linker_;
1500 const jobject class_loader_;
1501 CompilerDriver* const compiler_;
1502 const DexFile* const dex_file_;
Andreas Gampede7b4362014-07-28 18:38:57 -07001503 const std::vector<const DexFile*>& dex_files_;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001504 ThreadPool* const thread_pool_;
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001505
1506 DISALLOW_COPY_AND_ASSIGN(ParallelCompilationManager);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001507};
1508
Jeff Hao0e49b422013-11-08 12:16:56 -08001509// A fast version of SkipClass above if the class pointer is available
1510// that avoids the expensive FindInClassPath search.
Vladimir Marko28e012a2017-12-07 11:22:59 +00001511static bool SkipClass(jobject class_loader, const DexFile& dex_file, ObjPtr<mirror::Class> klass)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001512 REQUIRES_SHARED(Locks::mutator_lock_) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001513 DCHECK(klass != nullptr);
Jeff Hao0e49b422013-11-08 12:16:56 -08001514 const DexFile& original_dex_file = *klass->GetDexCache()->GetDexFile();
1515 if (&dex_file != &original_dex_file) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001516 if (class_loader == nullptr) {
David Sehr709b0702016-10-13 09:12:37 -07001517 LOG(WARNING) << "Skipping class " << klass->PrettyDescriptor() << " from "
Jeff Hao0e49b422013-11-08 12:16:56 -08001518 << dex_file.GetLocation() << " previously found in "
1519 << original_dex_file.GetLocation();
1520 }
1521 return true;
1522 }
1523 return false;
1524}
1525
Mathieu Chartier70b63482014-06-27 17:19:04 -07001526static void CheckAndClearResolveException(Thread* self)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001527 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartier70b63482014-06-27 17:19:04 -07001528 CHECK(self->IsExceptionPending());
Nicolas Geoffray14691c52015-03-05 10:40:17 +00001529 mirror::Throwable* exception = self->GetException();
Ian Rogers1ff3c982014-08-12 02:30:58 -07001530 std::string temp;
1531 const char* descriptor = exception->GetClass()->GetDescriptor(&temp);
1532 const char* expected_exceptions[] = {
Andreas Gampe501c3b02019-04-17 21:54:27 +00001533 "Ljava/lang/ClassFormatError;",
1534 "Ljava/lang/ClassCircularityError;",
Ian Rogers1ff3c982014-08-12 02:30:58 -07001535 "Ljava/lang/IllegalAccessError;",
1536 "Ljava/lang/IncompatibleClassChangeError;",
1537 "Ljava/lang/InstantiationError;",
Brian Carlstrom898fcb52014-08-25 23:07:30 -07001538 "Ljava/lang/LinkageError;",
Ian Rogers1ff3c982014-08-12 02:30:58 -07001539 "Ljava/lang/NoClassDefFoundError;",
1540 "Ljava/lang/NoSuchFieldError;",
Andreas Gampe501c3b02019-04-17 21:54:27 +00001541 "Ljava/lang/NoSuchMethodError;",
1542 "Ljava/lang/VerifyError;",
Ian Rogers1ff3c982014-08-12 02:30:58 -07001543 };
1544 bool found = false;
1545 for (size_t i = 0; (found == false) && (i < arraysize(expected_exceptions)); ++i) {
1546 if (strcmp(descriptor, expected_exceptions[i]) == 0) {
1547 found = true;
1548 }
1549 }
1550 if (!found) {
Brian Carlstrom898fcb52014-08-25 23:07:30 -07001551 LOG(FATAL) << "Unexpected exception " << exception->Dump();
Mathieu Chartier70b63482014-06-27 17:19:04 -07001552 }
1553 self->ClearException();
1554}
1555
Mathieu Chartier90443472015-07-16 20:32:27 -07001556class ResolveClassFieldsAndMethodsVisitor : public CompilationVisitor {
1557 public:
1558 explicit ResolveClassFieldsAndMethodsVisitor(const ParallelCompilationManager* manager)
1559 : manager_(manager) {}
Brian Carlstrom7940e442013-07-12 13:46:57 -07001560
Roland Levillainbbc6e7e2018-08-24 16:58:47 +01001561 void Visit(size_t class_def_index) override REQUIRES(!Locks::mutator_lock_) {
Andreas Gampe9b827ab2017-12-07 19:32:48 -08001562 ScopedTrace trace(__FUNCTION__);
Mathieu Chartier90443472015-07-16 20:32:27 -07001563 Thread* const self = Thread::Current();
1564 jobject jclass_loader = manager_->GetClassLoader();
1565 const DexFile& dex_file = *manager_->GetDexFile();
1566 ClassLinker* class_linker = manager_->GetClassLinker();
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001567
Mathieu Chartier90443472015-07-16 20:32:27 -07001568 // Method and Field are the worst. We can't resolve without either
1569 // context from the code use (to disambiguate virtual vs direct
1570 // method and instance vs static field) or from class
1571 // definitions. While the compiler will resolve what it can as it
1572 // needs it, here we try to resolve fields and methods used in class
1573 // definitions, since many of them many never be referenced by
1574 // generated code.
Andreas Gampe3f1dcd32018-12-28 09:39:56 -08001575 const dex::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
Mathieu Chartier90443472015-07-16 20:32:27 -07001576 ScopedObjectAccess soa(self);
1577 StackHandleScope<2> hs(soa.Self());
1578 Handle<mirror::ClassLoader> class_loader(
Mathieu Chartier0795f232016-09-27 18:43:30 -07001579 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader)));
Mathieu Chartier673ed3d2015-08-28 14:56:43 -07001580 Handle<mirror::DexCache> dex_cache(hs.NewHandle(class_linker->FindDexCache(
Vladimir Markocd556b02017-02-03 11:47:34 +00001581 soa.Self(), dex_file)));
Mathieu Chartier90443472015-07-16 20:32:27 -07001582 // Resolve the class.
Vladimir Marko28e012a2017-12-07 11:22:59 +00001583 ObjPtr<mirror::Class> klass =
Vladimir Marko666ee3d2017-12-11 18:37:36 +00001584 class_linker->ResolveType(class_def.class_idx_, dex_cache, class_loader);
Mathieu Chartier90443472015-07-16 20:32:27 -07001585 bool resolve_fields_and_methods;
1586 if (klass == nullptr) {
1587 // Class couldn't be resolved, for example, super-class is in a different dex file. Don't
1588 // attempt to resolve methods and fields when there is no declaring class.
1589 CheckAndClearResolveException(soa.Self());
1590 resolve_fields_and_methods = false;
1591 } else {
1592 // We successfully resolved a class, should we skip it?
1593 if (SkipClass(jclass_loader, dex_file, klass)) {
1594 return;
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001595 }
Mathieu Chartier90443472015-07-16 20:32:27 -07001596 // We want to resolve the methods and fields eagerly.
1597 resolve_fields_and_methods = true;
Ian Rogers68b56852014-08-29 20:19:11 -07001598 }
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001599
Vladimir Markoc1c34522018-10-31 13:56:49 +00001600 if (resolve_fields_and_methods) {
1601 ClassAccessor accessor(dex_file, class_def_index);
1602 // Optionally resolve fields and methods and figure out if we need a constructor barrier.
1603 auto method_visitor = [&](const ClassAccessor::Method& method)
1604 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001605 ArtMethod* resolved = class_linker->ResolveMethod<ClassLinker::ResolveMode::kNoChecks>(
1606 method.GetIndex(),
1607 dex_cache,
1608 class_loader,
Vladimir Markoc1c34522018-10-31 13:56:49 +00001609 /*referrer=*/ nullptr,
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001610 method.GetInvokeType(class_def.access_flags_));
1611 if (resolved == nullptr) {
1612 CheckAndClearResolveException(soa.Self());
Mathieu Chartier90443472015-07-16 20:32:27 -07001613 }
Vladimir Markoc1c34522018-10-31 13:56:49 +00001614 };
1615 accessor.VisitFieldsAndMethods(
1616 // static fields
1617 [&](ClassAccessor::Field& field) REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001618 ArtField* resolved = class_linker->ResolveField(
Vladimir Markoc1c34522018-10-31 13:56:49 +00001619 field.GetIndex(), dex_cache, class_loader, /*is_static=*/ true);
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001620 if (resolved == nullptr) {
1621 CheckAndClearResolveException(soa.Self());
1622 }
Vladimir Markoc1c34522018-10-31 13:56:49 +00001623 },
1624 // instance fields
1625 [&](ClassAccessor::Field& field) REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001626 ArtField* resolved = class_linker->ResolveField(
Vladimir Markoc1c34522018-10-31 13:56:49 +00001627 field.GetIndex(), dex_cache, class_loader, /*is_static=*/ false);
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001628 if (resolved == nullptr) {
1629 CheckAndClearResolveException(soa.Self());
1630 }
Vladimir Markoc1c34522018-10-31 13:56:49 +00001631 },
1632 /*direct_method_visitor=*/ method_visitor,
1633 /*virtual_method_visitor=*/ method_visitor);
1634 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001635 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001636
Mathieu Chartier90443472015-07-16 20:32:27 -07001637 private:
1638 const ParallelCompilationManager* const manager_;
1639};
1640
1641class ResolveTypeVisitor : public CompilationVisitor {
1642 public:
1643 explicit ResolveTypeVisitor(const ParallelCompilationManager* manager) : manager_(manager) {
1644 }
Roland Levillainbbc6e7e2018-08-24 16:58:47 +01001645 void Visit(size_t type_idx) override REQUIRES(!Locks::mutator_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001646 // Class derived values are more complicated, they require the linker and loader.
Mathieu Chartier90443472015-07-16 20:32:27 -07001647 ScopedObjectAccess soa(Thread::Current());
1648 ClassLinker* class_linker = manager_->GetClassLinker();
1649 const DexFile& dex_file = *manager_->GetDexFile();
1650 StackHandleScope<2> hs(soa.Self());
Mathieu Chartier90443472015-07-16 20:32:27 -07001651 Handle<mirror::ClassLoader> class_loader(
Mathieu Chartier0795f232016-09-27 18:43:30 -07001652 hs.NewHandle(soa.Decode<mirror::ClassLoader>(manager_->GetClassLoader())));
Mathieu Chartierd57d4542015-10-14 10:55:30 -07001653 Handle<mirror::DexCache> dex_cache(hs.NewHandle(class_linker->RegisterDexFile(
1654 dex_file,
Mathieu Chartierf284d442016-06-02 11:48:30 -07001655 class_loader.Get())));
Andreas Gampefa4333d2017-02-14 11:10:34 -08001656 ObjPtr<mirror::Class> klass = (dex_cache != nullptr)
Vladimir Marko666ee3d2017-12-11 18:37:36 +00001657 ? class_linker->ResolveType(dex::TypeIndex(type_idx), dex_cache, class_loader)
Vladimir Markocd556b02017-02-03 11:47:34 +00001658 : nullptr;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001659
Mathieu Chartier90443472015-07-16 20:32:27 -07001660 if (klass == nullptr) {
1661 soa.Self()->AssertPendingException();
1662 mirror::Throwable* exception = soa.Self()->GetException();
1663 VLOG(compiler) << "Exception during type resolution: " << exception->Dump();
1664 if (exception->GetClass()->DescriptorEquals("Ljava/lang/OutOfMemoryError;")) {
1665 // There's little point continuing compilation if the heap is exhausted.
1666 LOG(FATAL) << "Out of memory during type resolution for compilation";
1667 }
1668 soa.Self()->ClearException();
Ian Rogersa436fde2013-08-27 23:34:06 -07001669 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001670 }
Mathieu Chartier90443472015-07-16 20:32:27 -07001671
1672 private:
1673 const ParallelCompilationManager* const manager_;
1674};
Brian Carlstrom7940e442013-07-12 13:46:57 -07001675
Andreas Gampeace0dc12016-01-20 13:33:13 -08001676void CompilerDriver::ResolveDexFile(jobject class_loader,
1677 const DexFile& dex_file,
Andreas Gampede7b4362014-07-28 18:38:57 -07001678 const std::vector<const DexFile*>& dex_files,
Andreas Gampeace0dc12016-01-20 13:33:13 -08001679 ThreadPool* thread_pool,
1680 size_t thread_count,
1681 TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001682 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
1683
1684 // TODO: we could resolve strings here, although the string table is largely filled with class
1685 // and method names.
1686
Andreas Gampede7b4362014-07-28 18:38:57 -07001687 ParallelCompilationManager context(class_linker, class_loader, this, &dex_file, dex_files,
1688 thread_pool);
Vladimir Markoaad75c62016-10-03 08:46:48 +00001689 if (GetCompilerOptions().IsBootImage()) {
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001690 // For images we resolve all types, such as array, whereas for applications just those with
1691 // classdefs are resolved by ResolveClassFieldsAndMethods.
Mathieu Chartierf5997b42014-06-20 10:37:54 -07001692 TimingLogger::ScopedTiming t("Resolve Types", timings);
Mathieu Chartier90443472015-07-16 20:32:27 -07001693 ResolveTypeVisitor visitor(&context);
Andreas Gampeace0dc12016-01-20 13:33:13 -08001694 context.ForAll(0, dex_file.NumTypeIds(), &visitor, thread_count);
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001695 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001696
Mathieu Chartierf5997b42014-06-20 10:37:54 -07001697 TimingLogger::ScopedTiming t("Resolve MethodsAndFields", timings);
Mathieu Chartier90443472015-07-16 20:32:27 -07001698 ResolveClassFieldsAndMethodsVisitor visitor(&context);
Andreas Gampeace0dc12016-01-20 13:33:13 -08001699 context.ForAll(0, dex_file.NumClassDefs(), &visitor, thread_count);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001700}
1701
Andreas Gampeace0dc12016-01-20 13:33:13 -08001702void CompilerDriver::SetVerified(jobject class_loader,
1703 const std::vector<const DexFile*>& dex_files,
1704 TimingLogger* timings) {
1705 // This can be run in parallel.
Mathieu Chartier90443472015-07-16 20:32:27 -07001706 for (const DexFile* dex_file : dex_files) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001707 CHECK(dex_file != nullptr);
Andreas Gampeace0dc12016-01-20 13:33:13 -08001708 SetVerifiedDexFile(class_loader,
1709 *dex_file,
1710 dex_files,
1711 parallel_thread_pool_.get(),
1712 parallel_thread_count_,
1713 timings);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001714 }
1715}
1716
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001717static void LoadAndUpdateStatus(const ClassAccessor& accessor,
Vladimir Marko2c64a832018-01-04 11:31:56 +00001718 ClassStatus status,
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001719 Handle<mirror::ClassLoader> class_loader,
1720 Thread* self)
1721 REQUIRES_SHARED(Locks::mutator_lock_) {
1722 StackHandleScope<1> hs(self);
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001723 const char* descriptor = accessor.GetDescriptor();
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001724 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
1725 Handle<mirror::Class> cls(hs.NewHandle<mirror::Class>(
1726 class_linker->FindClass(self, descriptor, class_loader)));
Andreas Gampefa4333d2017-02-14 11:10:34 -08001727 if (cls != nullptr) {
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001728 // Check that the class is resolved with the current dex file. We might get
1729 // a boot image class, or a class in a different dex file for multidex, and
1730 // we should not update the status in that case.
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001731 if (&cls->GetDexFile() == &accessor.GetDexFile()) {
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001732 ObjectLock<mirror::Class> lock(self, cls);
1733 mirror::Class::SetStatus(cls, status, self);
Andreas Gampe5b20b352018-10-11 19:03:20 -07001734 if (status >= ClassStatus::kVerified) {
1735 cls->SetVerificationAttempted();
1736 }
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001737 }
1738 } else {
1739 DCHECK(self->IsExceptionPending());
1740 self->ClearException();
1741 }
1742}
1743
Nicolas Geoffray74981052017-01-16 17:54:09 +00001744bool CompilerDriver::FastVerify(jobject jclass_loader,
1745 const std::vector<const DexFile*>& dex_files,
Vladimir Marko2afaff72018-11-30 17:01:50 +00001746 TimingLogger* timings,
1747 /*out*/ VerificationResults* verification_results) {
Nicolas Geoffrayb0bbe8e2016-11-19 10:42:37 +00001748 verifier::VerifierDeps* verifier_deps =
1749 Runtime::Current()->GetCompilerCallbacks()->GetVerifierDeps();
Mathieu Chartier72041a02017-07-14 18:23:25 -07001750 // If there exist VerifierDeps that aren't the ones we just created to output, use them to verify.
1751 if (verifier_deps == nullptr || verifier_deps->OutputOnly()) {
Nicolas Geoffray74981052017-01-16 17:54:09 +00001752 return false;
1753 }
1754 TimingLogger::ScopedTiming t("Fast Verify", timings);
Calin Juravle5ffefaa2019-01-25 01:04:54 -08001755
Nicolas Geoffray74981052017-01-16 17:54:09 +00001756 ScopedObjectAccess soa(Thread::Current());
1757 StackHandleScope<2> hs(soa.Self());
1758 Handle<mirror::ClassLoader> class_loader(
1759 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader)));
David Brazdil8fd67222019-02-05 18:13:44 +00001760 std::string error_msg;
1761
David Brazdileda46e92019-02-18 12:38:19 +00001762 if (!verifier_deps->ValidateDependencies(
1763 soa.Self(),
1764 class_loader,
1765 // This returns classpath dex files in no particular order but VerifierDeps
1766 // does not care about the order.
1767 classpath_classes_.GetDexFiles(),
1768 &error_msg)) {
David Brazdil8fd67222019-02-05 18:13:44 +00001769 LOG(WARNING) << "Fast verification failed: " << error_msg;
Nicolas Geoffray74981052017-01-16 17:54:09 +00001770 return false;
1771 }
1772
Nicolas Geoffray49cda062017-04-21 13:08:25 +01001773 bool compiler_only_verifies = !GetCompilerOptions().IsAnyCompilationEnabled();
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001774
Nicolas Geoffray74981052017-01-16 17:54:09 +00001775 // We successfully validated the dependencies, now update class status
1776 // of verified classes. Note that the dependencies also record which classes
1777 // could not be fully verified; we could try again, but that would hurt verification
1778 // time. So instead we assume these classes still need to be verified at
1779 // runtime.
1780 for (const DexFile* dex_file : dex_files) {
David Brazdilfeb22822019-02-13 21:25:57 +00001781 // Fetch the list of verified classes.
1782 const std::vector<bool>& verified_classes = verifier_deps->GetVerifiedClasses(*dex_file);
1783 DCHECK_EQ(verified_classes.size(), dex_file->NumClassDefs());
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001784 for (ClassAccessor accessor : dex_file->GetClasses()) {
David Brazdilfeb22822019-02-13 21:25:57 +00001785 if (verified_classes[accessor.GetClassDefIndex()]) {
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001786 if (compiler_only_verifies) {
Nicolas Geoffray74981052017-01-16 17:54:09 +00001787 // Just update the compiled_classes_ map. The compiler doesn't need to resolve
1788 // the type.
Mathieu Chartier18e26872018-06-04 17:19:02 -07001789 ClassReference ref(dex_file, accessor.GetClassDefIndex());
Mathieu Chartier2eabc612018-05-25 14:31:16 -07001790 const ClassStatus existing = ClassStatus::kNotReady;
Mathieu Chartier1a088d42017-07-18 11:43:57 -07001791 ClassStateTable::InsertResult result =
Vladimir Marko2c64a832018-01-04 11:31:56 +00001792 compiled_classes_.Insert(ref, existing, ClassStatus::kVerified);
Mathieu Chartier2eabc612018-05-25 14:31:16 -07001793 CHECK_EQ(result, ClassStateTable::kInsertResultSuccess) << ref.dex_file->GetLocation();
Nicolas Geoffray74981052017-01-16 17:54:09 +00001794 } else {
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001795 // Update the class status, so later compilation stages know they don't need to verify
Nicolas Geoffray74981052017-01-16 17:54:09 +00001796 // the class.
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001797 LoadAndUpdateStatus(accessor, ClassStatus::kVerified, class_loader, soa.Self());
Nicolas Geoffray74981052017-01-16 17:54:09 +00001798 // Create `VerifiedMethod`s for each methods, the compiler expects one for
1799 // quickening or compiling.
1800 // Note that this means:
1801 // - We're only going to compile methods that did verify.
1802 // - Quickening will not do checkcast ellision.
1803 // TODO(ngeoffray): Reconsider this once we refactor compiler filters.
Mathieu Chartier0d896bd2018-05-25 00:20:27 -07001804 for (const ClassAccessor::Method& method : accessor.GetMethods()) {
Vladimir Marko2afaff72018-11-30 17:01:50 +00001805 verification_results->CreateVerifiedMethodFor(method.GetReference());
Mathieu Chartier0d896bd2018-05-25 00:20:27 -07001806 }
Nicolas Geoffray6bb7f1b2016-11-03 10:52:49 +00001807 }
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001808 } else if (!compiler_only_verifies) {
1809 // Make sure later compilation stages know they should not try to verify
1810 // this class again.
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001811 LoadAndUpdateStatus(accessor,
Vladimir Marko2c64a832018-01-04 11:31:56 +00001812 ClassStatus::kRetryVerificationAtRuntime,
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001813 class_loader,
1814 soa.Self());
Nicolas Geoffray6bb7f1b2016-11-03 10:52:49 +00001815 }
Nicolas Geoffray6bb7f1b2016-11-03 10:52:49 +00001816 }
1817 }
Nicolas Geoffray74981052017-01-16 17:54:09 +00001818 return true;
1819}
1820
1821void CompilerDriver::Verify(jobject jclass_loader,
1822 const std::vector<const DexFile*>& dex_files,
Vladimir Marko2afaff72018-11-30 17:01:50 +00001823 TimingLogger* timings,
1824 /*out*/ VerificationResults* verification_results) {
1825 if (FastVerify(jclass_loader, dex_files, timings, verification_results)) {
Nicolas Geoffray74981052017-01-16 17:54:09 +00001826 return;
1827 }
Nicolas Geoffray6bb7f1b2016-11-03 10:52:49 +00001828
Nicolas Geoffrayb0bbe8e2016-11-19 10:42:37 +00001829 // If there is no existing `verifier_deps` (because of non-existing vdex), or
1830 // the existing `verifier_deps` is not valid anymore, create a new one for
Nicolas Geoffray6bb7f1b2016-11-03 10:52:49 +00001831 // non boot image compilation. The verifier will need it to record the new dependencies.
1832 // Then dex2oat can update the vdex file with these new dependencies.
1833 if (!GetCompilerOptions().IsBootImage()) {
Mathieu Chartier72041a02017-07-14 18:23:25 -07001834 // Dex2oat creates the verifier deps.
Nicolas Geoffray340dafa2016-11-18 16:03:10 +00001835 // Create the main VerifierDeps, and set it to this thread.
Mathieu Chartier72041a02017-07-14 18:23:25 -07001836 verifier::VerifierDeps* verifier_deps =
1837 Runtime::Current()->GetCompilerCallbacks()->GetVerifierDeps();
1838 CHECK(verifier_deps != nullptr);
Nicolas Geoffrayb0bbe8e2016-11-19 10:42:37 +00001839 Thread::Current()->SetVerifierDeps(verifier_deps);
Nicolas Geoffray340dafa2016-11-18 16:03:10 +00001840 // Create per-thread VerifierDeps to avoid contention on the main one.
1841 // We will merge them after verification.
1842 for (ThreadPoolWorker* worker : parallel_thread_pool_->GetWorkers()) {
Vladimir Marko213ee2d2018-06-22 11:56:34 +01001843 worker->GetThread()->SetVerifierDeps(
1844 new verifier::VerifierDeps(GetCompilerOptions().GetDexFilesForOatFile()));
Nicolas Geoffray340dafa2016-11-18 16:03:10 +00001845 }
Nicolas Geoffray6bb7f1b2016-11-03 10:52:49 +00001846 }
Nicolas Geoffray74981052017-01-16 17:54:09 +00001847
Nicolas Geoffray46847392017-04-28 14:56:39 +01001848 // Verification updates VerifierDeps and needs to run single-threaded to be deterministic.
1849 bool force_determinism = GetCompilerOptions().IsForceDeterminism();
1850 ThreadPool* verify_thread_pool =
1851 force_determinism ? single_thread_pool_.get() : parallel_thread_pool_.get();
1852 size_t verify_thread_count = force_determinism ? 1U : parallel_thread_count_;
Mathieu Chartier90443472015-07-16 20:32:27 -07001853 for (const DexFile* dex_file : dex_files) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001854 CHECK(dex_file != nullptr);
Nicolas Geoffray6bb7f1b2016-11-03 10:52:49 +00001855 VerifyDexFile(jclass_loader,
Andreas Gampeace0dc12016-01-20 13:33:13 -08001856 *dex_file,
1857 dex_files,
Nicolas Geoffray46847392017-04-28 14:56:39 +01001858 verify_thread_pool,
1859 verify_thread_count,
Andreas Gampeace0dc12016-01-20 13:33:13 -08001860 timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001861 }
Nicolas Geoffray340dafa2016-11-18 16:03:10 +00001862
1863 if (!GetCompilerOptions().IsBootImage()) {
Nicolas Geoffray340dafa2016-11-18 16:03:10 +00001864 // Merge all VerifierDeps into the main one.
Nicolas Geoffray74981052017-01-16 17:54:09 +00001865 verifier::VerifierDeps* verifier_deps = Thread::Current()->GetVerifierDeps();
Nicolas Geoffray340dafa2016-11-18 16:03:10 +00001866 for (ThreadPoolWorker* worker : parallel_thread_pool_->GetWorkers()) {
Vladimir Marko6c702242019-02-07 16:17:33 +00001867 std::unique_ptr<verifier::VerifierDeps> thread_deps(worker->GetThread()->GetVerifierDeps());
1868 worker->GetThread()->SetVerifierDeps(nullptr); // We just took ownership.
1869 verifier_deps->MergeWith(std::move(thread_deps),
1870 GetCompilerOptions().GetDexFilesForOatFile());
Nicolas Geoffray340dafa2016-11-18 16:03:10 +00001871 }
1872 Thread::Current()->SetVerifierDeps(nullptr);
1873 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001874}
1875
Mathieu Chartier90443472015-07-16 20:32:27 -07001876class VerifyClassVisitor : public CompilationVisitor {
1877 public:
Andreas Gampe5fd66d02016-09-12 20:22:19 -07001878 VerifyClassVisitor(const ParallelCompilationManager* manager, verifier::HardFailLogMode log_level)
Andreas Gampe6cc23ac2018-08-24 15:22:43 -07001879 : manager_(manager),
1880 log_level_(log_level),
1881 sdk_version_(Runtime::Current()->GetTargetSdkVersion()) {}
Brian Carlstrom7940e442013-07-12 13:46:57 -07001882
Roland Levillainf73caca2018-08-24 17:19:07 +01001883 void Visit(size_t class_def_index) REQUIRES(!Locks::mutator_lock_) override {
Andreas Gampe9b827ab2017-12-07 19:32:48 -08001884 ScopedTrace trace(__FUNCTION__);
Mathieu Chartier90443472015-07-16 20:32:27 -07001885 ScopedObjectAccess soa(Thread::Current());
1886 const DexFile& dex_file = *manager_->GetDexFile();
Andreas Gampe3f1dcd32018-12-28 09:39:56 -08001887 const dex::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
Mathieu Chartier90443472015-07-16 20:32:27 -07001888 const char* descriptor = dex_file.GetClassDescriptor(class_def);
1889 ClassLinker* class_linker = manager_->GetClassLinker();
1890 jobject jclass_loader = manager_->GetClassLoader();
1891 StackHandleScope<3> hs(soa.Self());
1892 Handle<mirror::ClassLoader> class_loader(
Mathieu Chartier0795f232016-09-27 18:43:30 -07001893 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader)));
Mathieu Chartier90443472015-07-16 20:32:27 -07001894 Handle<mirror::Class> klass(
1895 hs.NewHandle(class_linker->FindClass(soa.Self(), descriptor, class_loader)));
Andreas Gampe6d7abbd2017-04-24 13:19:09 -07001896 verifier::FailureKind failure_kind;
Andreas Gampefa4333d2017-02-14 11:10:34 -08001897 if (klass == nullptr) {
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001898 CHECK(soa.Self()->IsExceptionPending());
1899 soa.Self()->ClearException();
Mathieu Chartier90443472015-07-16 20:32:27 -07001900
1901 /*
1902 * At compile time, we can still structurally verify the class even if FindClass fails.
1903 * This is to ensure the class is structurally sound for compilation. An unsound class
1904 * will be rejected by the verifier and later skipped during compilation in the compiler.
1905 */
Mathieu Chartier673ed3d2015-08-28 14:56:43 -07001906 Handle<mirror::DexCache> dex_cache(hs.NewHandle(class_linker->FindDexCache(
Vladimir Markocd556b02017-02-03 11:47:34 +00001907 soa.Self(), dex_file)));
Mathieu Chartier90443472015-07-16 20:32:27 -07001908 std::string error_msg;
Nicolas Geoffray08025182016-10-25 17:20:18 +01001909 failure_kind =
Andreas Gampea43ba3d2019-03-13 15:49:20 -07001910 verifier::ClassVerifier::VerifyClass(soa.Self(),
1911 &dex_file,
1912 dex_cache,
1913 class_loader,
1914 class_def,
1915 Runtime::Current()->GetCompilerCallbacks(),
1916 true /* allow soft failures */,
1917 log_level_,
1918 sdk_version_,
1919 &error_msg);
Andreas Gampe6d7abbd2017-04-24 13:19:09 -07001920 if (failure_kind == verifier::FailureKind::kHardFailure) {
Mathieu Chartier90443472015-07-16 20:32:27 -07001921 LOG(ERROR) << "Verification failed on class " << PrettyDescriptor(descriptor)
1922 << " because: " << error_msg;
1923 manager_->GetCompiler()->SetHadHardVerifierFailure();
Andreas Gampef39208f2017-10-19 15:06:59 -07001924 } else if (failure_kind == verifier::FailureKind::kSoftFailure) {
1925 manager_->GetCompiler()->AddSoftVerifierFailure();
Nicolas Geoffray7cc3ae52017-03-07 14:33:37 +00001926 } else {
1927 // Force a soft failure for the VerifierDeps. This is a sanity measure, as
1928 // the vdex file already records that the class hasn't been resolved. It avoids
1929 // trying to do future verification optimizations when processing the vdex file.
Andreas Gampef39208f2017-10-19 15:06:59 -07001930 DCHECK(failure_kind == verifier::FailureKind::kNoFailure) << failure_kind;
Andreas Gampe6d7abbd2017-04-24 13:19:09 -07001931 failure_kind = verifier::FailureKind::kSoftFailure;
Mathieu Chartier90443472015-07-16 20:32:27 -07001932 }
Andreas Gampebb30d5d2018-04-23 09:59:25 -07001933 } else if (&klass->GetDexFile() != &dex_file) {
1934 // Skip a duplicate class (as the resolved class is from another, earlier dex file).
David Brazdilfeb22822019-02-13 21:25:57 +00001935 // Record the information that we skipped this class in the vdex.
1936 // If the class resolved to a dex file not covered by the vdex, e.g. boot class path,
1937 // it is considered external, dependencies on it will be recorded and the vdex will
1938 // remain usable regardless of whether the class remains redefined or not (in the
1939 // latter case, this class will be verify-at-runtime).
1940 // On the other hand, if the class resolved to a dex file covered by the vdex, i.e.
1941 // a different dex file within the same APK, this class will always be eclipsed by it.
1942 // Recording that it was redefined is not necessary but will save class resolution
1943 // time during fast-verify.
1944 verifier::VerifierDeps::MaybeRecordClassRedefinition(dex_file, class_def);
Andreas Gampebb30d5d2018-04-23 09:59:25 -07001945 return; // Do not update state.
Mathieu Chartier90443472015-07-16 20:32:27 -07001946 } else if (!SkipClass(jclass_loader, dex_file, klass.Get())) {
David Sehr709b0702016-10-13 09:12:37 -07001947 CHECK(klass->IsResolved()) << klass->PrettyClass();
Nicolas Geoffray08025182016-10-25 17:20:18 +01001948 failure_kind = class_linker->VerifyClass(soa.Self(), klass, log_level_);
Mathieu Chartier90443472015-07-16 20:32:27 -07001949
1950 if (klass->IsErroneous()) {
1951 // ClassLinker::VerifyClass throws, which isn't useful in the compiler.
1952 CHECK(soa.Self()->IsExceptionPending());
1953 soa.Self()->ClearException();
1954 manager_->GetCompiler()->SetHadHardVerifierFailure();
Andreas Gampef39208f2017-10-19 15:06:59 -07001955 } else if (failure_kind == verifier::FailureKind::kSoftFailure) {
1956 manager_->GetCompiler()->AddSoftVerifierFailure();
Mathieu Chartier90443472015-07-16 20:32:27 -07001957 }
1958
Nicolas Geoffray7cc3ae52017-03-07 14:33:37 +00001959 CHECK(klass->ShouldVerifyAtRuntime() || klass->IsVerified() || klass->IsErroneous())
David Sehr709b0702016-10-13 09:12:37 -07001960 << klass->PrettyDescriptor() << ": state=" << klass->GetStatus();
Mathieu Chartier90443472015-07-16 20:32:27 -07001961
Nicolas Geoffrayc7da1d62017-04-19 09:36:24 +01001962 // Class has a meaningful status for the compiler now, record it.
1963 ClassReference ref(manager_->GetDexFile(), class_def_index);
1964 manager_->GetCompiler()->RecordClassStatus(ref, klass->GetStatus());
1965
Andreas Gamped278cb42017-11-22 14:13:00 -08001966 // It is *very* problematic if there are resolution errors in the boot classpath.
1967 //
1968 // It is also bad if classes fail verification. For example, we rely on things working
1969 // OK without verification when the decryption dialog is brought up. It is thus highly
1970 // recommended to compile the boot classpath with
1971 // --abort-on-hard-verifier-error --abort-on-soft-verifier-error
1972 // which is the default build system configuration.
Narayan Kamathe3eae5e2016-10-27 11:47:30 +01001973 if (kIsDebugBuild) {
Orion Hodsonc5e0d3f2017-08-22 19:00:04 +01001974 if (manager_->GetCompiler()->GetCompilerOptions().IsBootImage()) {
Andreas Gamped278cb42017-11-22 14:13:00 -08001975 if (!klass->IsResolved() || klass->IsErroneous()) {
Andreas Gampe12fadcd2017-08-03 05:06:28 -07001976 LOG(FATAL) << "Boot classpath class " << klass->PrettyClass()
Andreas Gamped278cb42017-11-22 14:13:00 -08001977 << " failed to resolve/is erroneous: state= " << klass->GetStatus();
1978 UNREACHABLE();
Andreas Gampe12fadcd2017-08-03 05:06:28 -07001979 }
Narayan Kamathe3eae5e2016-10-27 11:47:30 +01001980 }
Nicolas Geoffray7cc3ae52017-03-07 14:33:37 +00001981 if (klass->IsVerified()) {
Andreas Gampe6d7abbd2017-04-24 13:19:09 -07001982 DCHECK_EQ(failure_kind, verifier::FailureKind::kNoFailure);
Nicolas Geoffray7cc3ae52017-03-07 14:33:37 +00001983 } else if (klass->ShouldVerifyAtRuntime()) {
Andreas Gampe6d7abbd2017-04-24 13:19:09 -07001984 DCHECK_EQ(failure_kind, verifier::FailureKind::kSoftFailure);
Nicolas Geoffray7cc3ae52017-03-07 14:33:37 +00001985 } else {
Andreas Gampe6d7abbd2017-04-24 13:19:09 -07001986 DCHECK_EQ(failure_kind, verifier::FailureKind::kHardFailure);
Nicolas Geoffray7cc3ae52017-03-07 14:33:37 +00001987 }
Narayan Kamathe3eae5e2016-10-27 11:47:30 +01001988 }
Nicolas Geoffray08025182016-10-25 17:20:18 +01001989 } else {
1990 // Make the skip a soft failure, essentially being considered as verify at runtime.
Andreas Gampe6d7abbd2017-04-24 13:19:09 -07001991 failure_kind = verifier::FailureKind::kSoftFailure;
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001992 }
David Brazdilfeb22822019-02-13 21:25:57 +00001993 verifier::VerifierDeps::MaybeRecordVerificationStatus(dex_file, class_def, failure_kind);
Mathieu Chartier90443472015-07-16 20:32:27 -07001994 soa.Self()->AssertNoPendingException();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001995 }
Mathieu Chartier90443472015-07-16 20:32:27 -07001996
1997 private:
1998 const ParallelCompilationManager* const manager_;
Andreas Gampe5fd66d02016-09-12 20:22:19 -07001999 const verifier::HardFailLogMode log_level_;
Andreas Gampe6cc23ac2018-08-24 15:22:43 -07002000 const uint32_t sdk_version_;
Mathieu Chartier90443472015-07-16 20:32:27 -07002001};
Brian Carlstrom7940e442013-07-12 13:46:57 -07002002
Andreas Gampeace0dc12016-01-20 13:33:13 -08002003void CompilerDriver::VerifyDexFile(jobject class_loader,
2004 const DexFile& dex_file,
Andreas Gampede7b4362014-07-28 18:38:57 -07002005 const std::vector<const DexFile*>& dex_files,
Andreas Gampeace0dc12016-01-20 13:33:13 -08002006 ThreadPool* thread_pool,
2007 size_t thread_count,
2008 TimingLogger* timings) {
Mathieu Chartierf5997b42014-06-20 10:37:54 -07002009 TimingLogger::ScopedTiming t("Verify Dex File", timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002010 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Andreas Gampede7b4362014-07-28 18:38:57 -07002011 ParallelCompilationManager context(class_linker, class_loader, this, &dex_file, dex_files,
2012 thread_pool);
Andreas Gampef39208f2017-10-19 15:06:59 -07002013 bool abort_on_verifier_failures = GetCompilerOptions().AbortOnHardVerifierFailure()
2014 || GetCompilerOptions().AbortOnSoftVerifierFailure();
2015 verifier::HardFailLogMode log_level = abort_on_verifier_failures
Andreas Gampe5fd66d02016-09-12 20:22:19 -07002016 ? verifier::HardFailLogMode::kLogInternalFatal
2017 : verifier::HardFailLogMode::kLogWarning;
Andreas Gampe7fe30232016-03-25 16:58:00 -07002018 VerifyClassVisitor visitor(&context, log_level);
Andreas Gampeace0dc12016-01-20 13:33:13 -08002019 context.ForAll(0, dex_file.NumClassDefs(), &visitor, thread_count);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002020}
2021
Mathieu Chartier90443472015-07-16 20:32:27 -07002022class SetVerifiedClassVisitor : public CompilationVisitor {
2023 public:
2024 explicit SetVerifiedClassVisitor(const ParallelCompilationManager* manager) : manager_(manager) {}
2025
Roland Levillainf73caca2018-08-24 17:19:07 +01002026 void Visit(size_t class_def_index) REQUIRES(!Locks::mutator_lock_) override {
Andreas Gampe9b827ab2017-12-07 19:32:48 -08002027 ScopedTrace trace(__FUNCTION__);
Mathieu Chartier90443472015-07-16 20:32:27 -07002028 ScopedObjectAccess soa(Thread::Current());
2029 const DexFile& dex_file = *manager_->GetDexFile();
Andreas Gampe3f1dcd32018-12-28 09:39:56 -08002030 const dex::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
Mathieu Chartier90443472015-07-16 20:32:27 -07002031 const char* descriptor = dex_file.GetClassDescriptor(class_def);
2032 ClassLinker* class_linker = manager_->GetClassLinker();
2033 jobject jclass_loader = manager_->GetClassLoader();
2034 StackHandleScope<3> hs(soa.Self());
2035 Handle<mirror::ClassLoader> class_loader(
Mathieu Chartier0795f232016-09-27 18:43:30 -07002036 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader)));
Mathieu Chartier90443472015-07-16 20:32:27 -07002037 Handle<mirror::Class> klass(
2038 hs.NewHandle(class_linker->FindClass(soa.Self(), descriptor, class_loader)));
2039 // Class might have failed resolution. Then don't set it to verified.
Andreas Gampefa4333d2017-02-14 11:10:34 -08002040 if (klass != nullptr) {
Mathieu Chartier90443472015-07-16 20:32:27 -07002041 // Only do this if the class is resolved. If even resolution fails, quickening will go very,
2042 // very wrong.
Vladimir Marko72ab6842017-01-20 19:32:50 +00002043 if (klass->IsResolved() && !klass->IsErroneousResolved()) {
Vladimir Marko2c64a832018-01-04 11:31:56 +00002044 if (klass->GetStatus() < ClassStatus::kVerified) {
Mathieu Chartier90443472015-07-16 20:32:27 -07002045 ObjectLock<mirror::Class> lock(soa.Self(), klass);
2046 // Set class status to verified.
Vladimir Marko2c64a832018-01-04 11:31:56 +00002047 mirror::Class::SetStatus(klass, ClassStatus::kVerified, soa.Self());
Mathieu Chartier90443472015-07-16 20:32:27 -07002048 // Mark methods as pre-verified. If we don't do this, the interpreter will run with
2049 // access checks.
Vladimir Markoa0431112018-06-25 09:32:54 +01002050 InstructionSet instruction_set =
2051 manager_->GetCompiler()->GetCompilerOptions().GetInstructionSet();
2052 klass->SetSkipAccessChecksFlagOnAllMethods(GetInstructionSetPointerSize(instruction_set));
Igor Murashkindf707e42016-02-02 16:56:50 -08002053 klass->SetVerificationAttempted();
Mathieu Chartier90443472015-07-16 20:32:27 -07002054 }
2055 // Record the final class status if necessary.
2056 ClassReference ref(manager_->GetDexFile(), class_def_index);
2057 manager_->GetCompiler()->RecordClassStatus(ref, klass->GetStatus());
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002058 }
Mathieu Chartier90443472015-07-16 20:32:27 -07002059 } else {
2060 Thread* self = soa.Self();
2061 DCHECK(self->IsExceptionPending());
2062 self->ClearException();
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002063 }
2064 }
Mathieu Chartier90443472015-07-16 20:32:27 -07002065
2066 private:
2067 const ParallelCompilationManager* const manager_;
2068};
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002069
Andreas Gampeace0dc12016-01-20 13:33:13 -08002070void CompilerDriver::SetVerifiedDexFile(jobject class_loader,
2071 const DexFile& dex_file,
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002072 const std::vector<const DexFile*>& dex_files,
Andreas Gampeace0dc12016-01-20 13:33:13 -08002073 ThreadPool* thread_pool,
2074 size_t thread_count,
2075 TimingLogger* timings) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002076 TimingLogger::ScopedTiming t("Verify Dex File", timings);
Mathieu Chartier1a088d42017-07-18 11:43:57 -07002077 if (!compiled_classes_.HaveDexFile(&dex_file)) {
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002078 compiled_classes_.AddDexFile(&dex_file);
Mathieu Chartier1a088d42017-07-18 11:43:57 -07002079 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002080 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
2081 ParallelCompilationManager context(class_linker, class_loader, this, &dex_file, dex_files,
2082 thread_pool);
Mathieu Chartier90443472015-07-16 20:32:27 -07002083 SetVerifiedClassVisitor visitor(&context);
Andreas Gampeace0dc12016-01-20 13:33:13 -08002084 context.ForAll(0, dex_file.NumClassDefs(), &visitor, thread_count);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002085}
2086
Mathieu Chartier90443472015-07-16 20:32:27 -07002087class InitializeClassVisitor : public CompilationVisitor {
2088 public:
2089 explicit InitializeClassVisitor(const ParallelCompilationManager* manager) : manager_(manager) {}
Ian Rogersfc0e94b2013-09-23 23:51:32 -07002090
Roland Levillainbbc6e7e2018-08-24 16:58:47 +01002091 void Visit(size_t class_def_index) override {
Andreas Gampe9b827ab2017-12-07 19:32:48 -08002092 ScopedTrace trace(__FUNCTION__);
Mathieu Chartier90443472015-07-16 20:32:27 -07002093 jobject jclass_loader = manager_->GetClassLoader();
2094 const DexFile& dex_file = *manager_->GetDexFile();
Andreas Gampe3f1dcd32018-12-28 09:39:56 -08002095 const dex::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
2096 const dex::TypeId& class_type_id = dex_file.GetTypeId(class_def.class_idx_);
Mathieu Chartier90443472015-07-16 20:32:27 -07002097 const char* descriptor = dex_file.StringDataByIdx(class_type_id.descriptor_idx_);
Jeff Hao0e49b422013-11-08 12:16:56 -08002098
Mathieu Chartier90443472015-07-16 20:32:27 -07002099 ScopedObjectAccess soa(Thread::Current());
2100 StackHandleScope<3> hs(soa.Self());
2101 Handle<mirror::ClassLoader> class_loader(
Mathieu Chartier0795f232016-09-27 18:43:30 -07002102 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader)));
Mathieu Chartier90443472015-07-16 20:32:27 -07002103 Handle<mirror::Class> klass(
2104 hs.NewHandle(manager_->GetClassLinker()->FindClass(soa.Self(), descriptor, class_loader)));
2105
Mathieu Chartier41dba672018-12-21 15:06:17 -08002106 if (klass != nullptr) {
2107 if (!SkipClass(manager_->GetClassLoader(), dex_file, klass.Get())) {
2108 TryInitializeClass(klass, class_loader);
2109 }
2110 manager_->GetCompiler()->stats_->AddClassStatus(klass->GetStatus());
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002111 }
2112 // Clear any class not found or verification exceptions.
2113 soa.Self()->ClearException();
2114 }
2115
2116 // A helper function for initializing klass.
2117 void TryInitializeClass(Handle<mirror::Class> klass, Handle<mirror::ClassLoader>& class_loader)
2118 REQUIRES_SHARED(Locks::mutator_lock_) {
2119 const DexFile& dex_file = klass->GetDexFile();
Andreas Gampe3f1dcd32018-12-28 09:39:56 -08002120 const dex::ClassDef* class_def = klass->GetClassDef();
2121 const dex::TypeId& class_type_id = dex_file.GetTypeId(class_def->class_idx_);
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002122 const char* descriptor = dex_file.StringDataByIdx(class_type_id.descriptor_idx_);
2123 ScopedObjectAccessUnchecked soa(Thread::Current());
2124 StackHandleScope<3> hs(soa.Self());
Mathieu Chartierdabeb3a2017-06-12 17:10:07 -07002125 const bool is_boot_image = manager_->GetCompiler()->GetCompilerOptions().IsBootImage();
Mathieu Chartier17498e52017-06-13 11:35:04 -07002126 const bool is_app_image = manager_->GetCompiler()->GetCompilerOptions().IsAppImage();
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002127
Vladimir Marko2c64a832018-01-04 11:31:56 +00002128 ClassStatus old_status = klass->GetStatus();
Mathieu Chartier1a088d42017-07-18 11:43:57 -07002129 // Don't initialize classes in boot space when compiling app image
2130 if (is_app_image && klass->IsBootStrapClassLoaded()) {
2131 // Also return early and don't store the class status in the recorded class status.
2132 return;
2133 }
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002134 // Only try to initialize classes that were successfully verified.
2135 if (klass->IsVerified()) {
2136 // Attempt to initialize the class but bail if we either need to initialize the super-class
2137 // or static fields.
Nicolas Geoffrayabadf022017-08-03 08:25:41 +00002138 manager_->GetClassLinker()->EnsureInitialized(soa.Self(), klass, false, false);
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002139 old_status = klass->GetStatus();
2140 if (!klass->IsInitialized()) {
2141 // We don't want non-trivial class initialization occurring on multiple threads due to
2142 // deadlock problems. For example, a parent class is initialized (holding its lock) that
2143 // refers to a sub-class in its static/class initializer causing it to try to acquire the
2144 // sub-class' lock. While on a second thread the sub-class is initialized (holding its lock)
2145 // after first initializing its parents, whose locks are acquired. This leads to a
2146 // parent-to-child and a child-to-parent lock ordering and consequent potential deadlock.
2147 // We need to use an ObjectLock due to potential suspension in the interpreting code. Rather
2148 // than use a special Object for the purpose we use the Class of java.lang.Class.
2149 Handle<mirror::Class> h_klass(hs.NewHandle(klass->GetClass()));
2150 ObjectLock<mirror::Class> lock(soa.Self(), h_klass);
2151 // Attempt to initialize allowing initialization of parent classes but still not static
2152 // fields.
Chang Xinge602b1c2017-06-30 11:55:01 -07002153 // Initialize dependencies first only for app image, to make TryInitialize recursive.
2154 bool is_superclass_initialized = !is_app_image ? true :
2155 InitializeDependencies(klass, class_loader, soa.Self());
2156 if (!is_app_image || (is_app_image && is_superclass_initialized)) {
Nicolas Geoffrayabadf022017-08-03 08:25:41 +00002157 manager_->GetClassLinker()->EnsureInitialized(soa.Self(), klass, false, true);
Mathieu Chartier88cfa332019-05-09 16:35:02 -07002158 // It's OK to clear the exception here since the compiler is supposed to be fault
2159 // tolerant and will silently not initialize classes that have exceptions.
2160 soa.Self()->ClearException();
Chang Xinge602b1c2017-06-30 11:55:01 -07002161 }
2162 // Otherwise it's in app image but superclasses can't be initialized, no need to proceed.
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002163 old_status = klass->GetStatus();
Chang Xing70f689d2017-06-08 17:16:12 -07002164
Chris Wailes0c61be42018-09-26 17:27:34 -07002165 bool too_many_encoded_fields = !is_boot_image &&
2166 klass->NumStaticFields() > kMaxEncodedFields;
2167
Mathieu Chartierdabeb3a2017-06-12 17:10:07 -07002168 // If the class was not initialized, we can proceed to see if we can initialize static
Chang Xing70f689d2017-06-08 17:16:12 -07002169 // fields. Limit the max number of encoded fields.
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002170 if (!klass->IsInitialized() &&
Mathieu Chartier17498e52017-06-13 11:35:04 -07002171 (is_app_image || is_boot_image) &&
Chang Xinge602b1c2017-06-30 11:55:01 -07002172 is_superclass_initialized &&
Chang Xing70f689d2017-06-08 17:16:12 -07002173 !too_many_encoded_fields &&
Vladimir Markodc4bcce2018-06-21 16:15:42 +01002174 manager_->GetCompiler()->GetCompilerOptions().IsImageClass(descriptor)) {
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002175 bool can_init_static_fields = false;
Mathieu Chartierdabeb3a2017-06-12 17:10:07 -07002176 if (is_boot_image) {
Mathieu Chartier90443472015-07-16 20:32:27 -07002177 // We need to initialize static fields, we only do this for image classes that aren't
Mathieu Chartierdabeb3a2017-06-12 17:10:07 -07002178 // marked with the $NoPreloadHolder (which implies this should not be initialized
2179 // early).
Vladimir Marko2ef01102019-02-05 15:05:10 +00002180 can_init_static_fields = !EndsWith(std::string_view(descriptor), "$NoPreloadHolder;");
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002181 } else {
Mathieu Chartier17498e52017-06-13 11:35:04 -07002182 CHECK(is_app_image);
Mathieu Chartierdabeb3a2017-06-12 17:10:07 -07002183 // The boot image case doesn't need to recursively initialize the dependencies with
2184 // special logic since the class linker already does this.
Mathieu Chartierdabeb3a2017-06-12 17:10:07 -07002185 can_init_static_fields =
Mathieu Chartier0933cc52018-03-23 14:25:08 -07002186 ClassLinker::kAppImageMayContainStrings &&
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002187 !soa.Self()->IsExceptionPending() &&
Nicolas Geoffrayabadf022017-08-03 08:25:41 +00002188 is_superclass_initialized &&
2189 NoClinitInDependency(klass, soa.Self(), &class_loader);
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002190 // TODO The checking for clinit can be removed since it's already
2191 // checked when init superclass. Currently keep it because it contains
2192 // processing of intern strings. Will be removed later when intern strings
2193 // and clinit are both initialized.
2194 }
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01002195
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002196 if (can_init_static_fields) {
2197 VLOG(compiler) << "Initializing: " << descriptor;
2198 // TODO multithreading support. We should ensure the current compilation thread has
2199 // exclusive access to the runtime and the transaction. To achieve this, we could use
2200 // a ReaderWriterMutex but we're holding the mutator lock so we fail mutex sanity
2201 // checks in Thread::AssertThreadSuspensionIsAllowable.
2202 Runtime* const runtime = Runtime::Current();
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002203 // Run the class initializer in transaction mode.
Chang Xing5a906fc2017-07-26 15:01:16 -07002204 runtime->EnterTransactionMode(is_app_image, klass.Get());
Mathieu Chartier88cfa332019-05-09 16:35:02 -07002205
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002206 bool success = manager_->GetClassLinker()->EnsureInitialized(soa.Self(), klass, true,
2207 true);
2208 // TODO we detach transaction from runtime to indicate we quit the transactional
2209 // mode which prevents the GC from visiting objects modified during the transaction.
2210 // Ensure GC is not run so don't access freed objects when aborting transaction.
Andreas Gampe9e7078b2017-03-02 13:50:36 -08002211
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002212 {
2213 ScopedAssertNoThreadSuspension ants("Transaction end");
Chang Xing16d1dd82017-07-20 17:56:26 -07002214
2215 if (success) {
2216 runtime->ExitTransactionMode();
2217 DCHECK(!runtime->IsActiveTransaction());
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01002218
Chris Wailes0c61be42018-09-26 17:27:34 -07002219 if (is_boot_image) {
2220 // For boot image, we want to put the updated status in the oat class since we
2221 // can't reject the image anyways.
2222 old_status = klass->GetStatus();
2223 }
2224 } else {
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002225 CHECK(soa.Self()->IsExceptionPending());
2226 mirror::Throwable* exception = soa.Self()->GetException();
2227 VLOG(compiler) << "Initialization of " << descriptor << " aborted because of "
2228 << exception->Dump();
2229 std::ostream* file_log = manager_->GetCompiler()->
2230 GetCompilerOptions().GetInitFailureOutput();
2231 if (file_log != nullptr) {
2232 *file_log << descriptor << "\n";
2233 *file_log << exception->Dump() << "\n";
2234 }
2235 soa.Self()->ClearException();
Chang Xing605fe242017-07-20 15:57:21 -07002236 runtime->RollbackAllTransactions();
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002237 CHECK_EQ(old_status, klass->GetStatus()) << "Previous class status not restored";
2238 }
2239 }
2240
Nicolas Geoffrayabadf022017-08-03 08:25:41 +00002241 if (!success) {
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002242 // On failure, still intern strings of static fields and seen in <clinit>, as these
2243 // will be created in the zygote. This is separated from the transaction code just
2244 // above as we will allocate strings, so must be allowed to suspend.
2245 if (&klass->GetDexFile() == manager_->GetDexFile()) {
Andreas Gampe9e7078b2017-03-02 13:50:36 -08002246 InternStrings(klass, class_loader);
Mathieu Chartierdabeb3a2017-06-12 17:10:07 -07002247 } else {
2248 DCHECK(!is_boot_image) << "Boot image must have equal dex files";
Andreas Gampedbfe2542014-11-25 22:21:42 -08002249 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002250 }
2251 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002252 }
Mathieu Chartier88cfa332019-05-09 16:35:02 -07002253 // Clear exception in case EnsureInitialized has caused one in the code above.
2254 // It's OK to clear the exception here since the compiler is supposed to be fault
2255 // tolerant and will silently not initialize classes that have exceptions.
2256 soa.Self()->ClearException();
2257
Jeff Hao0cb17282017-07-12 14:51:49 -07002258 // If the class still isn't initialized, at least try some checks that initialization
2259 // would do so they can be skipped at runtime.
2260 if (!klass->IsInitialized() &&
2261 manager_->GetClassLinker()->ValidateSuperClassDescriptors(klass)) {
Vladimir Marko2c64a832018-01-04 11:31:56 +00002262 old_status = ClassStatus::kSuperclassValidated;
Jeff Hao0cb17282017-07-12 14:51:49 -07002263 } else {
2264 soa.Self()->ClearException();
2265 }
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002266 soa.Self()->AssertNoPendingException();
Brian Carlstrom7940e442013-07-12 13:46:57 -07002267 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002268 }
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002269 // Record the final class status if necessary.
2270 ClassReference ref(&dex_file, klass->GetDexClassDefIndex());
2271 // Back up the status before doing initialization for static encoded fields,
2272 // because the static encoded branch wants to keep the status to uninitialized.
2273 manager_->GetCompiler()->RecordClassStatus(ref, old_status);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002274 }
Mathieu Chartier90443472015-07-16 20:32:27 -07002275
2276 private:
Andreas Gampe9e7078b2017-03-02 13:50:36 -08002277 void InternStrings(Handle<mirror::Class> klass, Handle<mirror::ClassLoader> class_loader)
2278 REQUIRES_SHARED(Locks::mutator_lock_) {
2279 DCHECK(manager_->GetCompiler()->GetCompilerOptions().IsBootImage());
2280 DCHECK(klass->IsVerified());
2281 DCHECK(!klass->IsInitialized());
2282
2283 StackHandleScope<1> hs(Thread::Current());
Vladimir Markoe11dd502017-12-08 14:09:45 +00002284 Handle<mirror::DexCache> dex_cache = hs.NewHandle(klass->GetDexCache());
Andreas Gampe3f1dcd32018-12-28 09:39:56 -08002285 const dex::ClassDef* class_def = klass->GetClassDef();
Andreas Gampe9e7078b2017-03-02 13:50:36 -08002286 ClassLinker* class_linker = manager_->GetClassLinker();
2287
Andreas Gampe7bf90482017-03-02 16:41:35 -08002288 // Check encoded final field values for strings and intern.
Vladimir Markoe11dd502017-12-08 14:09:45 +00002289 annotations::RuntimeEncodedStaticFieldValueIterator value_it(dex_cache,
2290 class_loader,
Andreas Gampe9e7078b2017-03-02 13:50:36 -08002291 manager_->GetClassLinker(),
2292 *class_def);
2293 for ( ; value_it.HasNext(); value_it.Next()) {
2294 if (value_it.GetValueType() == annotations::RuntimeEncodedStaticFieldValueIterator::kString) {
2295 // Resolve the string. This will intern the string.
2296 art::ObjPtr<mirror::String> resolved = class_linker->ResolveString(
Vladimir Markoa64b52d2017-12-08 16:27:49 +00002297 dex::StringIndex(value_it.GetJavaValue().i), dex_cache);
Andreas Gampe9e7078b2017-03-02 13:50:36 -08002298 CHECK(resolved != nullptr);
2299 }
2300 }
Andreas Gampe7bf90482017-03-02 16:41:35 -08002301
2302 // Intern strings seen in <clinit>.
2303 ArtMethod* clinit = klass->FindClassInitializer(class_linker->GetImagePointerSize());
2304 if (clinit != nullptr) {
Mathieu Chartier73f21d42018-01-02 14:26:50 -08002305 for (const DexInstructionPcPair& inst : clinit->DexInstructions()) {
Mathieu Chartier2b2bef22017-10-26 17:10:19 -07002306 if (inst->Opcode() == Instruction::CONST_STRING) {
Andreas Gampe7bf90482017-03-02 16:41:35 -08002307 ObjPtr<mirror::String> s = class_linker->ResolveString(
Vladimir Markoa64b52d2017-12-08 16:27:49 +00002308 dex::StringIndex(inst->VRegB_21c()), dex_cache);
Andreas Gampe7bf90482017-03-02 16:41:35 -08002309 CHECK(s != nullptr);
Mathieu Chartier2b2bef22017-10-26 17:10:19 -07002310 } else if (inst->Opcode() == Instruction::CONST_STRING_JUMBO) {
Andreas Gampe7bf90482017-03-02 16:41:35 -08002311 ObjPtr<mirror::String> s = class_linker->ResolveString(
Vladimir Markoa64b52d2017-12-08 16:27:49 +00002312 dex::StringIndex(inst->VRegB_31c()), dex_cache);
Andreas Gampe7bf90482017-03-02 16:41:35 -08002313 CHECK(s != nullptr);
2314 }
Andreas Gampe7bf90482017-03-02 16:41:35 -08002315 }
2316 }
Andreas Gampe9e7078b2017-03-02 13:50:36 -08002317 }
2318
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002319 bool ResolveTypesOfMethods(Thread* self, ArtMethod* m)
2320 REQUIRES_SHARED(Locks::mutator_lock_) {
Vladimir Markob45528c2017-07-27 14:14:28 +01002321 // Return value of ResolveReturnType() is discarded because resolve will be done internally.
2322 ObjPtr<mirror::Class> rtn_type = m->ResolveReturnType();
Mathieu Chartier7a8bcfd2017-06-13 13:40:43 -07002323 if (rtn_type == nullptr) {
2324 self->ClearException();
2325 return false;
2326 }
Andreas Gampe3f1dcd32018-12-28 09:39:56 -08002327 const dex::TypeList* types = m->GetParameterTypeList();
Mathieu Chartier7a8bcfd2017-06-13 13:40:43 -07002328 if (types != nullptr) {
2329 for (uint32_t i = 0; i < types->Size(); ++i) {
2330 dex::TypeIndex param_type_idx = types->GetTypeItem(i).type_idx_;
Vladimir Markob45528c2017-07-27 14:14:28 +01002331 ObjPtr<mirror::Class> param_type = m->ResolveClassFromTypeIndex(param_type_idx);
Mathieu Chartier7a8bcfd2017-06-13 13:40:43 -07002332 if (param_type == nullptr) {
2333 self->ClearException();
2334 return false;
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002335 }
2336 }
Mathieu Chartier7a8bcfd2017-06-13 13:40:43 -07002337 }
2338 return true;
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002339 }
2340
2341 // Pre resolve types mentioned in all method signatures before start a transaction
2342 // since ResolveType doesn't work in transaction mode.
2343 bool PreResolveTypes(Thread* self, const Handle<mirror::Class>& klass)
2344 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartier7a8bcfd2017-06-13 13:40:43 -07002345 PointerSize pointer_size = manager_->GetClassLinker()->GetImagePointerSize();
2346 for (ArtMethod& m : klass->GetMethods(pointer_size)) {
2347 if (!ResolveTypesOfMethods(self, &m)) {
2348 return false;
2349 }
2350 }
2351 if (klass->IsInterface()) {
2352 return true;
2353 } else if (klass->HasSuperClass()) {
2354 StackHandleScope<1> hs(self);
2355 MutableHandle<mirror::Class> super_klass(hs.NewHandle<mirror::Class>(klass->GetSuperClass()));
2356 for (int i = super_klass->GetVTableLength() - 1; i >= 0; --i) {
2357 ArtMethod* m = klass->GetVTableEntry(i, pointer_size);
2358 ArtMethod* super_m = super_klass->GetVTableEntry(i, pointer_size);
2359 if (!ResolveTypesOfMethods(self, m) || !ResolveTypesOfMethods(self, super_m)) {
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002360 return false;
2361 }
2362 }
Mathieu Chartier7a8bcfd2017-06-13 13:40:43 -07002363 for (int32_t i = 0; i < klass->GetIfTableCount(); ++i) {
2364 super_klass.Assign(klass->GetIfTable()->GetInterface(i));
2365 if (klass->GetClassLoader() != super_klass->GetClassLoader()) {
2366 uint32_t num_methods = super_klass->NumVirtualMethods();
2367 for (uint32_t j = 0; j < num_methods; ++j) {
2368 ArtMethod* m = klass->GetIfTable()->GetMethodArray(i)->GetElementPtrSize<ArtMethod*>(
2369 j, pointer_size);
2370 ArtMethod* super_m = super_klass->GetVirtualMethod(j, pointer_size);
2371 if (!ResolveTypesOfMethods(self, m) || !ResolveTypesOfMethods(self, super_m)) {
2372 return false;
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002373 }
2374 }
2375 }
2376 }
Mathieu Chartier7a8bcfd2017-06-13 13:40:43 -07002377 }
2378 return true;
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002379 }
2380
2381 // Initialize the klass's dependencies recursively before initializing itself.
2382 // Checking for interfaces is also necessary since interfaces can contain
2383 // both default methods and static encoded fields.
2384 bool InitializeDependencies(const Handle<mirror::Class>& klass,
2385 Handle<mirror::ClassLoader> class_loader,
2386 Thread* self)
2387 REQUIRES_SHARED(Locks::mutator_lock_) {
2388 if (klass->HasSuperClass()) {
2389 ObjPtr<mirror::Class> super_class = klass->GetSuperClass();
2390 StackHandleScope<1> hs(self);
2391 Handle<mirror::Class> handle_scope_super(hs.NewHandle(super_class));
2392 if (!handle_scope_super->IsInitialized()) {
2393 this->TryInitializeClass(handle_scope_super, class_loader);
2394 if (!handle_scope_super->IsInitialized()) {
2395 return false;
2396 }
2397 }
2398 }
2399
2400 uint32_t num_if = klass->NumDirectInterfaces();
2401 for (size_t i = 0; i < num_if; i++) {
2402 ObjPtr<mirror::Class>
2403 interface = mirror::Class::GetDirectInterface(self, klass.Get(), i);
2404 StackHandleScope<1> hs(self);
2405 Handle<mirror::Class> handle_interface(hs.NewHandle(interface));
2406
2407 TryInitializeClass(handle_interface, class_loader);
2408
2409 if (!handle_interface->IsInitialized()) {
2410 return false;
2411 }
2412 }
2413
2414 return PreResolveTypes(self, klass);
2415 }
2416
2417 // In this phase the classes containing class initializers are ignored. Make sure no
2418 // clinit appears in kalss's super class chain and interfaces.
2419 bool NoClinitInDependency(const Handle<mirror::Class>& klass,
2420 Thread* self,
2421 Handle<mirror::ClassLoader>* class_loader)
2422 REQUIRES_SHARED(Locks::mutator_lock_) {
2423 ArtMethod* clinit =
2424 klass->FindClassInitializer(manager_->GetClassLinker()->GetImagePointerSize());
2425 if (clinit != nullptr) {
2426 VLOG(compiler) << klass->PrettyClass() << ' ' << clinit->PrettyMethod(true);
2427 return false;
2428 }
2429 if (klass->HasSuperClass()) {
2430 ObjPtr<mirror::Class> super_class = klass->GetSuperClass();
2431 StackHandleScope<1> hs(self);
2432 Handle<mirror::Class> handle_scope_super(hs.NewHandle(super_class));
2433 if (!NoClinitInDependency(handle_scope_super, self, class_loader)) {
2434 return false;
2435 }
2436 }
2437
2438 uint32_t num_if = klass->NumDirectInterfaces();
2439 for (size_t i = 0; i < num_if; i++) {
2440 ObjPtr<mirror::Class>
2441 interface = mirror::Class::GetDirectInterface(self, klass.Get(), i);
2442 StackHandleScope<1> hs(self);
2443 Handle<mirror::Class> handle_interface(hs.NewHandle(interface));
2444 if (!NoClinitInDependency(handle_interface, self, class_loader)) {
2445 return false;
2446 }
2447 }
2448
Chang Xingba17dbd2017-06-28 21:27:56 +00002449 return true;
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002450 }
2451
Mathieu Chartier90443472015-07-16 20:32:27 -07002452 const ParallelCompilationManager* const manager_;
2453};
Brian Carlstrom7940e442013-07-12 13:46:57 -07002454
Andreas Gampeace0dc12016-01-20 13:33:13 -08002455void CompilerDriver::InitializeClasses(jobject jni_class_loader,
2456 const DexFile& dex_file,
Andreas Gampede7b4362014-07-28 18:38:57 -07002457 const std::vector<const DexFile*>& dex_files,
Andreas Gampeace0dc12016-01-20 13:33:13 -08002458 TimingLogger* timings) {
Mathieu Chartierf5997b42014-06-20 10:37:54 -07002459 TimingLogger::ScopedTiming t("InitializeNoClinit", timings);
Andreas Gampeace0dc12016-01-20 13:33:13 -08002460
2461 // Initialization allocates objects and needs to run single-threaded to be deterministic.
2462 bool force_determinism = GetCompilerOptions().IsForceDeterminism();
2463 ThreadPool* init_thread_pool = force_determinism
2464 ? single_thread_pool_.get()
2465 : parallel_thread_pool_.get();
2466 size_t init_thread_count = force_determinism ? 1U : parallel_thread_count_;
2467
Brian Carlstrom7940e442013-07-12 13:46:57 -07002468 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Andreas Gampede7b4362014-07-28 18:38:57 -07002469 ParallelCompilationManager context(class_linker, jni_class_loader, this, &dex_file, dex_files,
Andreas Gampeace0dc12016-01-20 13:33:13 -08002470 init_thread_pool);
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002471
2472 if (GetCompilerOptions().IsBootImage() || GetCompilerOptions().IsAppImage()) {
2473 // Set the concurrency thread to 1 to support initialization for App Images since transaction
2474 // doesn't support multithreading now.
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01002475 // TODO: remove this when transactional mode supports multithreading.
Andreas Gampeace0dc12016-01-20 13:33:13 -08002476 init_thread_count = 1U;
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01002477 }
Mathieu Chartier90443472015-07-16 20:32:27 -07002478 InitializeClassVisitor visitor(&context);
Andreas Gampeace0dc12016-01-20 13:33:13 -08002479 context.ForAll(0, dex_file.NumClassDefs(), &visitor, init_thread_count);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002480}
2481
Mathieu Chartier91288d82016-04-28 09:44:54 -07002482class InitializeArrayClassesAndCreateConflictTablesVisitor : public ClassVisitor {
Mathieu Chartier085a0722016-04-01 17:33:31 -07002483 public:
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002484 explicit InitializeArrayClassesAndCreateConflictTablesVisitor(VariableSizedHandleScope& hs)
2485 : hs_(hs) {}
2486
Roland Levillainf73caca2018-08-24 17:19:07 +01002487 bool operator()(ObjPtr<mirror::Class> klass) override
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002488 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartier91288d82016-04-28 09:44:54 -07002489 if (Runtime::Current()->GetHeap()->ObjectIsInBootImageSpace(klass)) {
2490 return true;
2491 }
Mathieu Chartier085a0722016-04-01 17:33:31 -07002492 if (klass->IsArrayClass()) {
2493 StackHandleScope<1> hs(Thread::Current());
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002494 auto h_klass = hs.NewHandleWrapper(&klass);
2495 Runtime::Current()->GetClassLinker()->EnsureInitialized(hs.Self(), h_klass, true, true);
Mathieu Chartier085a0722016-04-01 17:33:31 -07002496 }
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002497 // Collect handles since there may be thread suspension in future EnsureInitialized.
2498 to_visit_.push_back(hs_.NewHandle(klass));
Nicolas Geoffray88f288e2016-06-29 08:17:52 +00002499 return true;
Nelli Kimbadee982016-05-13 13:08:53 +03002500 }
Artem Udovichenkoa62cb9b2016-06-30 09:18:25 +00002501
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002502 void FillAllIMTAndConflictTables() REQUIRES_SHARED(Locks::mutator_lock_) {
2503 for (Handle<mirror::Class> c : to_visit_) {
2504 // Create the conflict tables.
2505 FillIMTAndConflictTables(c.Get());
2506 }
2507 }
2508
Artem Udovichenkoa62cb9b2016-06-30 09:18:25 +00002509 private:
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002510 void FillIMTAndConflictTables(ObjPtr<mirror::Class> klass)
2511 REQUIRES_SHARED(Locks::mutator_lock_) {
Artem Udovichenkoa62cb9b2016-06-30 09:18:25 +00002512 if (!klass->ShouldHaveImt()) {
2513 return;
2514 }
2515 if (visited_classes_.find(klass) != visited_classes_.end()) {
2516 return;
2517 }
2518 if (klass->HasSuperClass()) {
2519 FillIMTAndConflictTables(klass->GetSuperClass());
2520 }
2521 if (!klass->IsTemp()) {
2522 Runtime::Current()->GetClassLinker()->FillIMTAndConflictTables(klass);
2523 }
2524 visited_classes_.insert(klass);
2525 }
2526
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002527 VariableSizedHandleScope& hs_;
2528 std::vector<Handle<mirror::Class>> to_visit_;
2529 std::unordered_set<ObjPtr<mirror::Class>, HashObjPtr> visited_classes_;
Mathieu Chartier085a0722016-04-01 17:33:31 -07002530};
2531
Brian Carlstrom7940e442013-07-12 13:46:57 -07002532void CompilerDriver::InitializeClasses(jobject class_loader,
2533 const std::vector<const DexFile*>& dex_files,
Andreas Gampeace0dc12016-01-20 13:33:13 -08002534 TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07002535 for (size_t i = 0; i != dex_files.size(); ++i) {
2536 const DexFile* dex_file = dex_files[i];
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002537 CHECK(dex_file != nullptr);
Andreas Gampeace0dc12016-01-20 13:33:13 -08002538 InitializeClasses(class_loader, *dex_file, dex_files, timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002539 }
Vladimir Markoaad75c62016-10-03 08:46:48 +00002540 if (GetCompilerOptions().IsBootImage() || GetCompilerOptions().IsAppImage()) {
Mathieu Chartier085a0722016-04-01 17:33:31 -07002541 // Make sure that we call EnsureIntiailized on all the array classes to call
2542 // SetVerificationAttempted so that the access flags are set. If we do not do this they get
2543 // changed at runtime resulting in more dirty image pages.
Mathieu Chartier91288d82016-04-28 09:44:54 -07002544 // Also create conflict tables.
Vladimir Marko2afaff72018-11-30 17:01:50 +00002545 // Only useful if we are compiling an image.
Mathieu Chartier085a0722016-04-01 17:33:31 -07002546 ScopedObjectAccess soa(Thread::Current());
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002547 VariableSizedHandleScope hs(soa.Self());
2548 InitializeArrayClassesAndCreateConflictTablesVisitor visitor(hs);
Mathieu Chartier91288d82016-04-28 09:44:54 -07002549 Runtime::Current()->GetClassLinker()->VisitClassesWithoutClassesLock(&visitor);
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002550 visitor.FillAllIMTAndConflictTables();
Mathieu Chartier085a0722016-04-01 17:33:31 -07002551 }
Vladimir Markoaad75c62016-10-03 08:46:48 +00002552 if (GetCompilerOptions().IsBootImage()) {
Mathieu Chartier093ef212014-08-11 13:52:12 -07002553 // Prune garbage objects created during aborted transactions.
Andreas Gampe3db70682018-12-26 15:12:03 -08002554 Runtime::Current()->GetHeap()->CollectGarbage(/* clear_soft_references= */ true);
Mathieu Chartier093ef212014-08-11 13:52:12 -07002555 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002556}
2557
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002558template <typename CompileFn>
2559static void CompileDexFile(CompilerDriver* driver,
2560 jobject class_loader,
2561 const DexFile& dex_file,
2562 const std::vector<const DexFile*>& dex_files,
2563 ThreadPool* thread_pool,
2564 size_t thread_count,
2565 TimingLogger* timings,
2566 const char* timing_name,
2567 CompileFn compile_fn) {
2568 TimingLogger::ScopedTiming t(timing_name, timings);
2569 ParallelCompilationManager context(Runtime::Current()->GetClassLinker(),
2570 class_loader,
2571 driver,
2572 &dex_file,
2573 dex_files,
2574 thread_pool);
Vladimir Marko492a7fa2016-06-01 18:38:43 +01002575
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002576 auto compile = [&context, &compile_fn](size_t class_def_index) {
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002577 const DexFile& dex_file = *context.GetDexFile();
Andreas Gampe3e7f66b2018-09-06 10:08:18 -07002578 SCOPED_TRACE << "compile " << dex_file.GetLocation() << "@" << class_def_index;
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002579 ClassLinker* class_linker = context.GetClassLinker();
2580 jobject jclass_loader = context.GetClassLoader();
Mathieu Chartier90443472015-07-16 20:32:27 -07002581 ClassReference ref(&dex_file, class_def_index);
Andreas Gampe3f1dcd32018-12-28 09:39:56 -08002582 const dex::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
Mathieu Chartier18e26872018-06-04 17:19:02 -07002583 ClassAccessor accessor(dex_file, class_def_index);
Vladimir Marko2afaff72018-11-30 17:01:50 +00002584 CompilerDriver* const driver = context.GetCompiler();
Mathieu Chartier90443472015-07-16 20:32:27 -07002585 // Skip compiling classes with generic verifier failures since they will still fail at runtime
Vladimir Marko2afaff72018-11-30 17:01:50 +00002586 if (driver->GetCompilerOptions().GetVerificationResults()->IsClassRejected(ref)) {
Ian Rogers1ff3c982014-08-12 02:30:58 -07002587 return;
2588 }
Mathieu Chartier736b5602015-09-02 14:54:11 -07002589 // Use a scoped object access to perform to the quick SkipClass check.
Mathieu Chartier736b5602015-09-02 14:54:11 -07002590 ScopedObjectAccess soa(Thread::Current());
2591 StackHandleScope<3> hs(soa.Self());
2592 Handle<mirror::ClassLoader> class_loader(
Mathieu Chartier0795f232016-09-27 18:43:30 -07002593 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader)));
Mathieu Chartier736b5602015-09-02 14:54:11 -07002594 Handle<mirror::Class> klass(
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07002595 hs.NewHandle(class_linker->FindClass(soa.Self(), accessor.GetDescriptor(), class_loader)));
Mathieu Chartier736b5602015-09-02 14:54:11 -07002596 Handle<mirror::DexCache> dex_cache;
Andreas Gampefa4333d2017-02-14 11:10:34 -08002597 if (klass == nullptr) {
Mathieu Chartier736b5602015-09-02 14:54:11 -07002598 soa.Self()->AssertPendingException();
2599 soa.Self()->ClearException();
2600 dex_cache = hs.NewHandle(class_linker->FindDexCache(soa.Self(), dex_file));
2601 } else if (SkipClass(jclass_loader, dex_file, klass.Get())) {
2602 return;
Andreas Gampebb30d5d2018-04-23 09:59:25 -07002603 } else if (&klass->GetDexFile() != &dex_file) {
2604 // Skip a duplicate class (as the resolved class is from another, earlier dex file).
2605 return; // Do not update state.
Mathieu Chartier736b5602015-09-02 14:54:11 -07002606 } else {
2607 dex_cache = hs.NewHandle(klass->GetDexCache());
2608 }
2609
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07002610 // Avoid suspension if there are no methods to compile.
2611 if (accessor.NumDirectMethods() + accessor.NumVirtualMethods() == 0) {
Mathieu Chartier90443472015-07-16 20:32:27 -07002612 return;
Brian Carlstrom7940e442013-07-12 13:46:57 -07002613 }
Mathieu Chartier90443472015-07-16 20:32:27 -07002614
Mathieu Chartier736b5602015-09-02 14:54:11 -07002615 // Go to native so that we don't block GC during compilation.
Mathieu Chartierf1d666e2015-09-03 16:13:34 -07002616 ScopedThreadSuspension sts(soa.Self(), kNative);
Mathieu Chartier736b5602015-09-02 14:54:11 -07002617
Mathieu Chartier90443472015-07-16 20:32:27 -07002618 // Can we run DEX-to-DEX compiler on this class ?
Mathieu Chartiera79efdb2018-01-18 16:31:01 -08002619 optimizer::DexToDexCompiler::CompilationLevel dex_to_dex_compilation_level =
Mathieu Chartier736b5602015-09-02 14:54:11 -07002620 GetDexToDexCompilationLevel(soa.Self(), *driver, jclass_loader, dex_file, class_def);
Andreas Gampe5eb0d382015-07-23 01:19:26 -07002621
Mathieu Chartierb7c273c2017-11-10 18:07:56 -08002622 // Compile direct and virtual methods.
2623 int64_t previous_method_idx = -1;
Mathieu Chartier0d896bd2018-05-25 00:20:27 -07002624 for (const ClassAccessor::Method& method : accessor.GetMethods()) {
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07002625 const uint32_t method_idx = method.GetIndex();
Mathieu Chartierb7c273c2017-11-10 18:07:56 -08002626 if (method_idx == previous_method_idx) {
Mathieu Chartier90443472015-07-16 20:32:27 -07002627 // smali can create dex files with two encoded_methods sharing the same method_idx
2628 // http://code.google.com/p/smali/issues/detail?id=119
Mathieu Chartier0d896bd2018-05-25 00:20:27 -07002629 continue;
Mathieu Chartier90443472015-07-16 20:32:27 -07002630 }
Mathieu Chartierb7c273c2017-11-10 18:07:56 -08002631 previous_method_idx = method_idx;
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002632 compile_fn(soa.Self(),
2633 driver,
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07002634 method.GetCodeItem(),
2635 method.GetAccessFlags(),
2636 method.GetInvokeType(class_def.access_flags_),
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002637 class_def_index,
2638 method_idx,
2639 class_loader,
2640 dex_file,
2641 dex_to_dex_compilation_level,
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002642 dex_cache);
Mathieu Chartier0d896bd2018-05-25 00:20:27 -07002643 }
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002644 };
2645 context.ForAllLambda(0, dex_file.NumClassDefs(), compile, thread_count);
2646}
2647
2648void CompilerDriver::Compile(jobject class_loader,
2649 const std::vector<const DexFile*>& dex_files,
2650 TimingLogger* timings) {
2651 if (kDebugProfileGuidedCompilation) {
Vladimir Marko1a2a5cd2018-11-07 15:39:48 +00002652 const ProfileCompilationInfo* profile_compilation_info =
2653 GetCompilerOptions().GetProfileCompilationInfo();
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002654 LOG(INFO) << "[ProfileGuidedCompilation] " <<
Vladimir Marko1a2a5cd2018-11-07 15:39:48 +00002655 ((profile_compilation_info == nullptr)
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002656 ? "null"
Vladimir Marko1a2a5cd2018-11-07 15:39:48 +00002657 : profile_compilation_info->DumpInfo(dex_files));
Brian Carlstrom7940e442013-07-12 13:46:57 -07002658 }
Mathieu Chartier90443472015-07-16 20:32:27 -07002659
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002660 dex_to_dex_compiler_.ClearState();
2661 for (const DexFile* dex_file : dex_files) {
2662 CHECK(dex_file != nullptr);
2663 CompileDexFile(this,
2664 class_loader,
2665 *dex_file,
2666 dex_files,
2667 parallel_thread_pool_.get(),
2668 parallel_thread_count_,
2669 timings,
2670 "Compile Dex File Quick",
2671 CompileMethodQuick);
2672 const ArenaPool* const arena_pool = Runtime::Current()->GetArenaPool();
2673 const size_t arena_alloc = arena_pool->GetBytesAllocated();
2674 max_arena_alloc_ = std::max(arena_alloc, max_arena_alloc_);
2675 Runtime::Current()->ReclaimArenaPoolMemory();
2676 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002677
Mathieu Chartier279e3a32018-01-24 18:17:55 -08002678 if (dex_to_dex_compiler_.NumCodeItemsToQuicken(Thread::Current()) > 0u) {
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002679 // TODO: Not visit all of the dex files, its probably rare that only one would have quickened
2680 // methods though.
2681 for (const DexFile* dex_file : dex_files) {
2682 CompileDexFile(this,
2683 class_loader,
2684 *dex_file,
2685 dex_files,
2686 parallel_thread_pool_.get(),
2687 parallel_thread_count_,
2688 timings,
2689 "Compile Dex File Dex2Dex",
2690 CompileMethodDex2Dex);
2691 }
2692 dex_to_dex_compiler_.ClearState();
2693 }
2694
2695 VLOG(compiler) << "Compile: " << GetMemoryUsageString(false);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002696}
2697
Andreas Gampe5eb0d382015-07-23 01:19:26 -07002698void CompilerDriver::AddCompiledMethod(const MethodReference& method_ref,
Vladimir Marko8e524ad2018-07-13 10:27:43 +01002699 CompiledMethod* const compiled_method) {
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002700 DCHECK(GetCompiledMethod(method_ref) == nullptr) << method_ref.PrettyMethod();
2701 MethodTable::InsertResult result = compiled_methods_.Insert(method_ref,
2702 /*expected*/ nullptr,
2703 compiled_method);
Mathieu Chartieracab8d42016-11-23 13:45:58 -08002704 CHECK(result == MethodTable::kInsertResultSuccess);
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002705 DCHECK(GetCompiledMethod(method_ref) != nullptr) << method_ref.PrettyMethod();
Brian Carlstrom7940e442013-07-12 13:46:57 -07002706}
2707
Mathieu Chartier279e3a32018-01-24 18:17:55 -08002708CompiledMethod* CompilerDriver::RemoveCompiledMethod(const MethodReference& method_ref) {
2709 CompiledMethod* ret = nullptr;
2710 CHECK(compiled_methods_.Remove(method_ref, &ret));
2711 return ret;
2712}
2713
Vladimir Marko2c64a832018-01-04 11:31:56 +00002714bool CompilerDriver::GetCompiledClass(const ClassReference& ref, ClassStatus* status) const {
Andreas Gampebb846102017-05-11 21:03:35 -07002715 DCHECK(status != nullptr);
Mathieu Chartier1a088d42017-07-18 11:43:57 -07002716 // The table doesn't know if something wasn't inserted. For this case it will return
Vladimir Marko2c64a832018-01-04 11:31:56 +00002717 // ClassStatus::kNotReady. To handle this, just assume anything we didn't try to verify
2718 // is not compiled.
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002719 if (!compiled_classes_.Get(ref, status) ||
Vladimir Marko2c64a832018-01-04 11:31:56 +00002720 *status < ClassStatus::kRetryVerificationAtRuntime) {
Andreas Gampebb846102017-05-11 21:03:35 -07002721 return false;
Brian Carlstrom7940e442013-07-12 13:46:57 -07002722 }
Andreas Gampebb846102017-05-11 21:03:35 -07002723 return true;
Brian Carlstrom7940e442013-07-12 13:46:57 -07002724}
2725
Vladimir Marko2c64a832018-01-04 11:31:56 +00002726ClassStatus CompilerDriver::GetClassStatus(const ClassReference& ref) const {
2727 ClassStatus status = ClassStatus::kNotReady;
Nicolas Geoffray486dda02017-09-11 14:15:52 +01002728 if (!GetCompiledClass(ref, &status)) {
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002729 classpath_classes_.Get(ref, &status);
Nicolas Geoffray486dda02017-09-11 14:15:52 +01002730 }
2731 return status;
2732}
2733
Vladimir Marko2c64a832018-01-04 11:31:56 +00002734void CompilerDriver::RecordClassStatus(const ClassReference& ref, ClassStatus status) {
Nicolas Geoffrayade72d62016-12-15 13:20:02 +00002735 switch (status) {
Vladimir Marko2c64a832018-01-04 11:31:56 +00002736 case ClassStatus::kErrorResolved:
2737 case ClassStatus::kErrorUnresolved:
2738 case ClassStatus::kNotReady:
2739 case ClassStatus::kResolved:
2740 case ClassStatus::kRetryVerificationAtRuntime:
2741 case ClassStatus::kVerified:
2742 case ClassStatus::kSuperclassValidated:
2743 case ClassStatus::kInitialized:
Nicolas Geoffrayade72d62016-12-15 13:20:02 +00002744 break; // Expected states.
2745 default:
2746 LOG(FATAL) << "Unexpected class status for class "
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002747 << PrettyDescriptor(
2748 ref.dex_file->GetClassDescriptor(ref.dex_file->GetClassDef(ref.index)))
Nicolas Geoffrayade72d62016-12-15 13:20:02 +00002749 << " of " << status;
2750 }
2751
Mathieu Chartier1a088d42017-07-18 11:43:57 -07002752 ClassStateTable::InsertResult result;
Nicolas Geoffray486dda02017-09-11 14:15:52 +01002753 ClassStateTable* table = &compiled_classes_;
Mathieu Chartier1a088d42017-07-18 11:43:57 -07002754 do {
Vladimir Marko2c64a832018-01-04 11:31:56 +00002755 ClassStatus existing = ClassStatus::kNotReady;
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002756 if (!table->Get(ref, &existing)) {
Nicolas Geoffray486dda02017-09-11 14:15:52 +01002757 // A classpath class.
Mathieu Chartier010f5cc2017-07-24 15:53:46 -07002758 if (kIsDebugBuild) {
2759 // Check to make sure it's not a dex file for an oat file we are compiling since these
2760 // should always succeed. These do not include classes in for used libraries.
Vladimir Marko213ee2d2018-06-22 11:56:34 +01002761 for (const DexFile* dex_file : GetCompilerOptions().GetDexFilesForOatFile()) {
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002762 CHECK_NE(ref.dex_file, dex_file) << ref.dex_file->GetLocation();
Mathieu Chartier010f5cc2017-07-24 15:53:46 -07002763 }
2764 }
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002765 if (!classpath_classes_.HaveDexFile(ref.dex_file)) {
Nicolas Geoffray486dda02017-09-11 14:15:52 +01002766 // Boot classpath dex file.
2767 return;
2768 }
2769 table = &classpath_classes_;
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002770 table->Get(ref, &existing);
Mathieu Chartier010f5cc2017-07-24 15:53:46 -07002771 }
Mathieu Chartier1a088d42017-07-18 11:43:57 -07002772 if (existing >= status) {
2773 // Existing status is already better than we expect, break.
2774 break;
2775 }
Nicolas Geoffrayade72d62016-12-15 13:20:02 +00002776 // Update the status if we now have a greater one. This happens with vdex,
2777 // which records a class is verified, but does not resolve it.
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002778 result = table->Insert(ref, existing, status);
2779 CHECK(result != ClassStateTable::kInsertResultInvalidDexFile) << ref.dex_file->GetLocation();
Mathieu Chartier1a088d42017-07-18 11:43:57 -07002780 } while (result != ClassStateTable::kInsertResultSuccess);
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07002781}
2782
Brian Carlstrom7940e442013-07-12 13:46:57 -07002783CompiledMethod* CompilerDriver::GetCompiledMethod(MethodReference ref) const {
Mathieu Chartieracab8d42016-11-23 13:45:58 -08002784 CompiledMethod* compiled_method = nullptr;
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002785 compiled_methods_.Get(ref, &compiled_method);
Mathieu Chartieracab8d42016-11-23 13:45:58 -08002786 return compiled_method;
Brian Carlstrom7940e442013-07-12 13:46:57 -07002787}
2788
Andreas Gampe8d295f82015-01-20 14:50:21 -08002789std::string CompilerDriver::GetMemoryUsageString(bool extended) const {
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002790 std::ostringstream oss;
Calin Juravle69158982016-03-16 11:53:41 +00002791 const gc::Heap* const heap = Runtime::Current()->GetHeap();
Anton Kirilovdd9473b2016-01-28 15:08:01 +00002792 const size_t java_alloc = heap->GetBytesAllocated();
Calin Juravle69158982016-03-16 11:53:41 +00002793 oss << "arena alloc=" << PrettySize(max_arena_alloc_) << " (" << max_arena_alloc_ << "B)";
Anton Kirilovdd9473b2016-01-28 15:08:01 +00002794 oss << " java alloc=" << PrettySize(java_alloc) << " (" << java_alloc << "B)";
Elliott Hughes7bf5a262015-04-02 20:55:07 -07002795#if defined(__BIONIC__) || defined(__GLIBC__)
Anton Kirilovdd9473b2016-01-28 15:08:01 +00002796 const struct mallinfo info = mallinfo();
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002797 const size_t allocated_space = static_cast<size_t>(info.uordblks);
2798 const size_t free_space = static_cast<size_t>(info.fordblks);
Anton Kirilovdd9473b2016-01-28 15:08:01 +00002799 oss << " native alloc=" << PrettySize(allocated_space) << " (" << allocated_space << "B)"
2800 << " free=" << PrettySize(free_space) << " (" << free_space << "B)";
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002801#endif
Vladimir Marko35831e82015-09-11 11:59:18 +01002802 compiled_method_storage_.DumpMemoryUsage(oss, extended);
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002803 return oss.str();
2804}
2805
Andreas Gampeace0dc12016-01-20 13:33:13 -08002806void CompilerDriver::InitializeThreadPools() {
2807 size_t parallel_count = parallel_thread_count_ > 0 ? parallel_thread_count_ - 1 : 0;
2808 parallel_thread_pool_.reset(
2809 new ThreadPool("Compiler driver thread pool", parallel_count));
2810 single_thread_pool_.reset(new ThreadPool("Single-threaded Compiler driver thread pool", 0));
2811}
2812
2813void CompilerDriver::FreeThreadPools() {
2814 parallel_thread_pool_.reset();
2815 single_thread_pool_.reset();
2816}
2817
Nicolas Geoffray486dda02017-09-11 14:15:52 +01002818void CompilerDriver::SetClasspathDexFiles(const std::vector<const DexFile*>& dex_files) {
2819 classpath_classes_.AddDexFiles(dex_files);
Mathieu Chartier72041a02017-07-14 18:23:25 -07002820}
2821
Brian Carlstrom7940e442013-07-12 13:46:57 -07002822} // namespace art