blob: 7690e233a70e72819a6a35000b8456ceed69dcd3 [file] [log] [blame]
Brian Carlstrom7940e442013-07-12 13:46:57 -07001/*
2 * Copyright (C) 2011 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include "compiler_driver.h"
18
Andreas Gampe8cf9cb32017-07-19 09:28:38 -070019#include <unistd.h>
Andreas Gampeb0f370e2014-09-25 22:51:40 -070020#include <unordered_set>
Anwar Ghuloum67f99412013-08-12 14:19:48 -070021#include <vector>
Brian Carlstrom7940e442013-07-12 13:46:57 -070022
Mathieu Chartierab972ef2014-12-03 17:38:22 -080023#ifndef __APPLE__
24#include <malloc.h> // For mallinfo
25#endif
26
Narayan Kamathe3eae5e2016-10-27 11:47:30 +010027#include "android-base/strings.h"
28
Mathieu Chartierc7853442015-03-27 14:35:38 -070029#include "art_field-inl.h"
Mathieu Chartiere401d142015-04-22 13:56:20 -070030#include "art_method-inl.h"
Andreas Gampef0446e92017-05-16 13:51:57 -070031#include "base/arena_allocator.h"
David Brazdild9c90372016-09-14 16:53:55 +010032#include "base/array_ref.h"
Vladimir Marko492a7fa2016-06-01 18:38:43 +010033#include "base/bit_vector.h"
Andreas Gampe542451c2016-07-26 09:02:02 -070034#include "base/enums.h"
Andreas Gampe170331f2017-12-07 18:41:03 -080035#include "base/logging.h" // For VLOG
Brian Carlstrom7940e442013-07-12 13:46:57 -070036#include "base/stl_util.h"
Mathieu Chartier32ce2ad2016-03-04 14:58:03 -080037#include "base/systrace.h"
Vladimir Marko80afd022015-05-19 18:08:00 +010038#include "base/time_utils.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070039#include "base/timing_logger.h"
Vladimir Marko3481ba22015-04-13 12:22:36 +010040#include "class_linker-inl.h"
Vladimir Markod8dbc8d2017-09-20 13:37:47 +010041#include "compiled_method-inl.h"
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +000042#include "compiler.h"
Nicolas Geoffray6bb7f1b2016-11-03 10:52:49 +000043#include "compiler_callbacks.h"
Vladimir Markobe0e5462014-02-26 11:24:15 +000044#include "compiler_driver-inl.h"
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -070045#include "dex/class_accessor-inl.h"
David Sehrb2ec9f52018-02-21 13:20:31 -080046#include "dex/descriptors_names.h"
David Sehr9e734c72018-01-04 17:56:19 -080047#include "dex/dex_file-inl.h"
48#include "dex/dex_file_annotations.h"
49#include "dex/dex_instruction-inl.h"
Andreas Gampe5eb0d382015-07-23 01:19:26 -070050#include "dex/dex_to_dex_compiler.h"
Vladimir Markoc7f83202014-01-24 17:55:18 +000051#include "dex/verification_results.h"
Vladimir Marko2730db02014-01-27 11:15:17 +000052#include "dex/verified_method.h"
Steven Morelande431e272017-07-18 16:53:49 -070053#include "dex_compilation_unit.h"
Mark Mendellae9fd932014-02-10 16:14:35 -080054#include "driver/compiler_options.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070055#include "gc/accounting/card_table-inl.h"
56#include "gc/accounting/heap_bitmap.h"
Mathieu Chartiere401d142015-04-22 13:56:20 -070057#include "gc/space/image_space.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070058#include "gc/space/space.h"
Steven Morelande431e272017-07-18 16:53:49 -070059#include "handle_scope-inl.h"
60#include "intrinsics_enum.h"
Vladimir Markoa3ad0cd2018-05-04 10:06:38 +010061#include "jni/jni_internal.h"
Vladimir Markod8dbc8d2017-09-20 13:37:47 +010062#include "linker/linker_patch.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070063#include "mirror/class-inl.h"
Steven Morelande431e272017-07-18 16:53:49 -070064#include "mirror/class_loader.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070065#include "mirror/dex_cache-inl.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070066#include "mirror/object-inl.h"
Andreas Gampec6ea7d02017-02-01 16:46:28 -080067#include "mirror/object-refvisitor-inl.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070068#include "mirror/object_array-inl.h"
69#include "mirror/throwable.h"
Steven Morelande431e272017-07-18 16:53:49 -070070#include "object_lock.h"
David Sehr82d046e2018-04-23 08:14:19 -070071#include "profile/profile_compilation_info.h"
Steven Morelande431e272017-07-18 16:53:49 -070072#include "runtime.h"
Orion Hodson26ef34c2017-11-01 13:32:41 +000073#include "runtime_intrinsics.h"
Mathieu Chartier0795f232016-09-27 18:43:30 -070074#include "scoped_thread_state_change-inl.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070075#include "thread.h"
Andreas Gampeb0f370e2014-09-25 22:51:40 -070076#include "thread_list.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070077#include "thread_pool.h"
Ian Rogers848871b2013-08-05 10:56:33 -070078#include "trampolines/trampoline_compiler.h"
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +010079#include "transaction.h"
Mathieu Chartier93764b82017-07-17 14:51:53 -070080#include "utils/atomic_dex_ref_map-inl.h"
Vladimir Marko20f85592015-03-19 10:07:02 +000081#include "utils/dex_cache_arrays_layout-inl.h"
Andreas Gampee21dc3d2014-12-08 16:59:43 -080082#include "utils/swap_space.h"
Nicolas Geoffrayb0bbe8e2016-11-19 10:42:37 +000083#include "vdex_file.h"
Vladimir Marko2bc47802014-02-10 09:43:07 +000084#include "verifier/method_verifier-inl.h"
Steven Morelande431e272017-07-18 16:53:49 -070085#include "verifier/method_verifier.h"
Nicolas Geoffray08025182016-10-25 17:20:18 +010086#include "verifier/verifier_deps.h"
Andreas Gampe6d7abbd2017-04-24 13:19:09 -070087#include "verifier/verifier_enums.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070088
Brian Carlstrom7940e442013-07-12 13:46:57 -070089namespace art {
90
Mathieu Chartier8e219ae2014-08-19 14:29:46 -070091static constexpr bool kTimeCompileMethod = !kIsDebugBuild;
92
Calin Juravle226501b2015-12-11 14:41:31 +000093// Print additional info during profile guided compilation.
94static constexpr bool kDebugProfileGuidedCompilation = false;
95
Chang Xing70f689d2017-06-08 17:16:12 -070096// Max encoded fields allowed for initializing app image. Hardcode the number for now
97// because 5000 should be large enough.
98static constexpr uint32_t kMaxEncodedFields = 5000;
99
Brian Carlstrom7940e442013-07-12 13:46:57 -0700100static double Percentage(size_t x, size_t y) {
101 return 100.0 * (static_cast<double>(x)) / (static_cast<double>(x + y));
102}
103
104static void DumpStat(size_t x, size_t y, const char* str) {
105 if (x == 0 && y == 0) {
106 return;
107 }
Ian Rogerse732ef12013-10-09 15:22:24 -0700108 LOG(INFO) << Percentage(x, y) << "% of " << str << " for " << (x + y) << " cases";
Brian Carlstrom7940e442013-07-12 13:46:57 -0700109}
110
Vladimir Markof096aad2014-01-23 15:51:58 +0000111class CompilerDriver::AOTCompilationStats {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700112 public:
113 AOTCompilationStats()
114 : stats_lock_("AOT compilation statistics lock"),
Brian Carlstrom7940e442013-07-12 13:46:57 -0700115 resolved_instance_fields_(0), unresolved_instance_fields_(0),
116 resolved_local_static_fields_(0), resolved_static_fields_(0), unresolved_static_fields_(0),
117 type_based_devirtualization_(0),
118 safe_casts_(0), not_safe_casts_(0) {
119 for (size_t i = 0; i <= kMaxInvokeType; i++) {
120 resolved_methods_[i] = 0;
121 unresolved_methods_[i] = 0;
122 virtual_made_direct_[i] = 0;
123 direct_calls_to_boot_[i] = 0;
124 direct_methods_to_boot_[i] = 0;
125 }
126 }
127
128 void Dump() {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700129 DumpStat(resolved_instance_fields_, unresolved_instance_fields_, "instance fields resolved");
130 DumpStat(resolved_local_static_fields_ + resolved_static_fields_, unresolved_static_fields_,
131 "static fields resolved");
132 DumpStat(resolved_local_static_fields_, resolved_static_fields_ + unresolved_static_fields_,
133 "static fields local to a class");
134 DumpStat(safe_casts_, not_safe_casts_, "check-casts removed based on type information");
135 // Note, the code below subtracts the stat value so that when added to the stat value we have
136 // 100% of samples. TODO: clean this up.
137 DumpStat(type_based_devirtualization_,
138 resolved_methods_[kVirtual] + unresolved_methods_[kVirtual] +
139 resolved_methods_[kInterface] + unresolved_methods_[kInterface] -
140 type_based_devirtualization_,
141 "virtual/interface calls made direct based on type information");
142
143 for (size_t i = 0; i <= kMaxInvokeType; i++) {
144 std::ostringstream oss;
145 oss << static_cast<InvokeType>(i) << " methods were AOT resolved";
146 DumpStat(resolved_methods_[i], unresolved_methods_[i], oss.str().c_str());
147 if (virtual_made_direct_[i] > 0) {
148 std::ostringstream oss2;
149 oss2 << static_cast<InvokeType>(i) << " methods made direct";
150 DumpStat(virtual_made_direct_[i],
151 resolved_methods_[i] + unresolved_methods_[i] - virtual_made_direct_[i],
152 oss2.str().c_str());
153 }
154 if (direct_calls_to_boot_[i] > 0) {
155 std::ostringstream oss2;
156 oss2 << static_cast<InvokeType>(i) << " method calls are direct into boot";
157 DumpStat(direct_calls_to_boot_[i],
158 resolved_methods_[i] + unresolved_methods_[i] - direct_calls_to_boot_[i],
159 oss2.str().c_str());
160 }
161 if (direct_methods_to_boot_[i] > 0) {
162 std::ostringstream oss2;
163 oss2 << static_cast<InvokeType>(i) << " method calls have methods in boot";
164 DumpStat(direct_methods_to_boot_[i],
165 resolved_methods_[i] + unresolved_methods_[i] - direct_methods_to_boot_[i],
166 oss2.str().c_str());
167 }
168 }
169 }
170
171// Allow lossy statistics in non-debug builds.
172#ifndef NDEBUG
173#define STATS_LOCK() MutexLock mu(Thread::Current(), stats_lock_)
174#else
175#define STATS_LOCK()
176#endif
177
Mathieu Chartier90443472015-07-16 20:32:27 -0700178 void ResolvedInstanceField() REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700179 STATS_LOCK();
180 resolved_instance_fields_++;
181 }
182
Mathieu Chartier90443472015-07-16 20:32:27 -0700183 void UnresolvedInstanceField() REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700184 STATS_LOCK();
185 unresolved_instance_fields_++;
186 }
187
Mathieu Chartier90443472015-07-16 20:32:27 -0700188 void ResolvedLocalStaticField() REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700189 STATS_LOCK();
190 resolved_local_static_fields_++;
191 }
192
Mathieu Chartier90443472015-07-16 20:32:27 -0700193 void ResolvedStaticField() REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700194 STATS_LOCK();
195 resolved_static_fields_++;
196 }
197
Mathieu Chartier90443472015-07-16 20:32:27 -0700198 void UnresolvedStaticField() REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700199 STATS_LOCK();
200 unresolved_static_fields_++;
201 }
202
203 // Indicate that type information from the verifier led to devirtualization.
Mathieu Chartier90443472015-07-16 20:32:27 -0700204 void PreciseTypeDevirtualization() REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700205 STATS_LOCK();
206 type_based_devirtualization_++;
207 }
208
Brian Carlstrom7940e442013-07-12 13:46:57 -0700209 // A check-cast could be eliminated due to verifier type analysis.
Mathieu Chartier90443472015-07-16 20:32:27 -0700210 void SafeCast() REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700211 STATS_LOCK();
212 safe_casts_++;
213 }
214
215 // A check-cast couldn't be eliminated due to verifier type analysis.
Mathieu Chartier90443472015-07-16 20:32:27 -0700216 void NotASafeCast() REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700217 STATS_LOCK();
218 not_safe_casts_++;
219 }
220
221 private:
222 Mutex stats_lock_;
223
Brian Carlstrom7940e442013-07-12 13:46:57 -0700224 size_t resolved_instance_fields_;
225 size_t unresolved_instance_fields_;
226
227 size_t resolved_local_static_fields_;
228 size_t resolved_static_fields_;
229 size_t unresolved_static_fields_;
230 // Type based devirtualization for invoke interface and virtual.
231 size_t type_based_devirtualization_;
232
233 size_t resolved_methods_[kMaxInvokeType + 1];
234 size_t unresolved_methods_[kMaxInvokeType + 1];
235 size_t virtual_made_direct_[kMaxInvokeType + 1];
236 size_t direct_calls_to_boot_[kMaxInvokeType + 1];
237 size_t direct_methods_to_boot_[kMaxInvokeType + 1];
238
239 size_t safe_casts_;
240 size_t not_safe_casts_;
241
242 DISALLOW_COPY_AND_ASSIGN(AOTCompilationStats);
243};
244
Jeff Haodcdc85b2015-12-04 14:06:18 -0800245CompilerDriver::CompilerDriver(
246 const CompilerOptions* compiler_options,
247 VerificationResults* verification_results,
Jeff Haodcdc85b2015-12-04 14:06:18 -0800248 Compiler::Kind compiler_kind,
Vladimir Markodc4bcce2018-06-21 16:15:42 +0100249 HashSet<std::string>* image_classes,
Vladimir Marko944da602016-02-19 12:27:55 +0000250 size_t thread_count,
Vladimir Marko944da602016-02-19 12:27:55 +0000251 int swap_fd,
Calin Juravle998c2162015-12-21 15:39:33 +0200252 const ProfileCompilationInfo* profile_compilation_info)
Calin Juravle226501b2015-12-11 14:41:31 +0000253 : compiler_options_(compiler_options),
Brian Carlstrom6449c622014-02-10 23:48:36 -0800254 verification_results_(verification_results),
Ian Rogers72d32622014-05-06 16:20:11 -0700255 compiler_(Compiler::Create(this, compiler_kind)),
Jeff Hao48699fb2015-04-06 14:21:37 -0700256 compiler_kind_(compiler_kind),
Mathieu Chartierc4ae9162016-04-07 13:19:19 -0700257 requires_constructor_barrier_lock_("constructor barrier lock"),
Vladimir Marko54159c62018-06-20 14:30:08 +0100258 image_classes_(std::move(image_classes)),
Andreas Gampef39208f2017-10-19 15:06:59 -0700259 number_of_soft_verifier_failures_(0),
Andreas Gampe6cf49e52015-03-05 13:08:45 -0800260 had_hard_verifier_failure_(false),
Andreas Gampeace0dc12016-01-20 13:33:13 -0800261 parallel_thread_count_(thread_count),
Brian Carlstrom7940e442013-07-12 13:46:57 -0700262 stats_(new AOTCompilationStats),
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700263 compiler_context_(nullptr),
Calin Juravle998c2162015-12-21 15:39:33 +0200264 compiled_method_storage_(swap_fd),
Calin Juravle69158982016-03-16 11:53:41 +0000265 profile_compilation_info_(profile_compilation_info),
Vladimir Marko492a7fa2016-06-01 18:38:43 +0100266 max_arena_alloc_(0),
Mathieu Chartiera79efdb2018-01-18 16:31:01 -0800267 dex_to_dex_compiler_(this) {
Brian Carlstrom6449c622014-02-10 23:48:36 -0800268 DCHECK(compiler_options_ != nullptr);
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700269
Ian Rogers72d32622014-05-06 16:20:11 -0700270 compiler_->Init();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700271
Vladimir Markoaad75c62016-10-03 08:46:48 +0000272 if (GetCompilerOptions().IsBootImage()) {
Vladimir Markodc4bcce2018-06-21 16:15:42 +0100273 CHECK(image_classes_ != nullptr) << "Expected image classes for boot image";
Mathieu Chartierc5dd3192015-12-09 16:38:30 -0800274 }
Andreas Gampecac31ad2017-11-06 20:01:17 -0800275
276 compiled_method_storage_.SetDedupeEnabled(compiler_options_->DeduplicateCode());
Brian Carlstrom7940e442013-07-12 13:46:57 -0700277}
278
279CompilerDriver::~CompilerDriver() {
Mathieu Chartier93764b82017-07-17 14:51:53 -0700280 compiled_methods_.Visit([this](const DexFileReference& ref ATTRIBUTE_UNUSED,
Mathieu Chartieracab8d42016-11-23 13:45:58 -0800281 CompiledMethod* method) {
282 if (method != nullptr) {
283 CompiledMethod::ReleaseSwapAllocatedCompiledMethod(this, method);
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800284 }
Mathieu Chartieracab8d42016-11-23 13:45:58 -0800285 });
Ian Rogers72d32622014-05-06 16:20:11 -0700286 compiler_->UnInit();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700287}
288
Vladimir Marko35831e82015-09-11 11:59:18 +0100289
Vladimir Markoa0431112018-06-25 09:32:54 +0100290#define CREATE_TRAMPOLINE(type, abi, offset) \
291 if (Is64BitInstructionSet(GetCompilerOptions().GetInstructionSet())) { \
292 return CreateTrampoline64(GetCompilerOptions().GetInstructionSet(), \
293 abi, \
294 type ## _ENTRYPOINT_OFFSET(PointerSize::k64, offset)); \
295 } else { \
296 return CreateTrampoline32(GetCompilerOptions().GetInstructionSet(), \
297 abi, \
298 type ## _ENTRYPOINT_OFFSET(PointerSize::k32, offset)); \
Ian Rogersdd7624d2014-03-14 17:43:00 -0700299 }
300
Vladimir Marko93205e32016-04-13 11:59:46 +0100301std::unique_ptr<const std::vector<uint8_t>> CompilerDriver::CreateJniDlsymLookup() const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700302 CREATE_TRAMPOLINE(JNI, kJniAbi, pDlsymLookup)
Ian Rogers848871b2013-08-05 10:56:33 -0700303}
304
Vladimir Marko93205e32016-04-13 11:59:46 +0100305std::unique_ptr<const std::vector<uint8_t>> CompilerDriver::CreateQuickGenericJniTrampoline()
306 const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700307 CREATE_TRAMPOLINE(QUICK, kQuickAbi, pQuickGenericJniTrampoline)
Andreas Gampe2da88232014-02-27 12:26:20 -0800308}
309
Vladimir Marko93205e32016-04-13 11:59:46 +0100310std::unique_ptr<const std::vector<uint8_t>> CompilerDriver::CreateQuickImtConflictTrampoline()
311 const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700312 CREATE_TRAMPOLINE(QUICK, kQuickAbi, pQuickImtConflictTrampoline)
Jeff Hao88474b42013-10-23 16:24:40 -0700313}
314
Vladimir Marko93205e32016-04-13 11:59:46 +0100315std::unique_ptr<const std::vector<uint8_t>> CompilerDriver::CreateQuickResolutionTrampoline()
316 const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700317 CREATE_TRAMPOLINE(QUICK, kQuickAbi, pQuickResolutionTrampoline)
Brian Carlstrom7940e442013-07-12 13:46:57 -0700318}
319
Vladimir Marko93205e32016-04-13 11:59:46 +0100320std::unique_ptr<const std::vector<uint8_t>> CompilerDriver::CreateQuickToInterpreterBridge()
321 const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700322 CREATE_TRAMPOLINE(QUICK, kQuickAbi, pQuickToInterpreterBridge)
Brian Carlstrom7940e442013-07-12 13:46:57 -0700323}
Ian Rogersdd7624d2014-03-14 17:43:00 -0700324#undef CREATE_TRAMPOLINE
Brian Carlstrom7940e442013-07-12 13:46:57 -0700325
326void CompilerDriver::CompileAll(jobject class_loader,
Brian Carlstrom45602482013-07-21 22:07:55 -0700327 const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -0800328 TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700329 DCHECK(!Runtime::Current()->IsStarted());
Andreas Gampeace0dc12016-01-20 13:33:13 -0800330
331 InitializeThreadPools();
332
Nicolas Geoffrayb0bbe8e2016-11-19 10:42:37 +0000333 PreCompile(class_loader, dex_files, timings);
Vladimir Markoaad75c62016-10-03 08:46:48 +0000334 if (GetCompilerOptions().IsBootImage()) {
Nicolas Geoffray762869d2016-07-15 15:28:35 +0100335 // We don't need to setup the intrinsics for non boot image compilation, as
336 // those compilations will pick up a boot image that have the ArtMethod already
337 // set with the intrinsics flag.
Orion Hodson26ef34c2017-11-01 13:32:41 +0000338 InitializeIntrinsics();
Nicolas Geoffray762869d2016-07-15 15:28:35 +0100339 }
Andreas Gampe740667a2015-09-15 17:55:06 -0700340 // Compile:
341 // 1) Compile all classes and methods enabled for compilation. May fall back to dex-to-dex
342 // compilation.
Nicolas Geoffray49cda062017-04-21 13:08:25 +0100343 if (GetCompilerOptions().IsAnyCompilationEnabled()) {
Andreas Gampeace0dc12016-01-20 13:33:13 -0800344 Compile(class_loader, dex_files, timings);
Andreas Gampe740667a2015-09-15 17:55:06 -0700345 }
Nicolas Geoffray2d8801f2017-11-28 15:50:07 +0000346 if (GetCompilerOptions().GetDumpStats()) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700347 stats_->Dump();
348 }
Andreas Gampeace0dc12016-01-20 13:33:13 -0800349
350 FreeThreadPools();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700351}
352
Mathieu Chartiera79efdb2018-01-18 16:31:01 -0800353static optimizer::DexToDexCompiler::CompilationLevel GetDexToDexCompilationLevel(
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700354 Thread* self, const CompilerDriver& driver, Handle<mirror::ClassLoader> class_loader,
355 const DexFile& dex_file, const DexFile::ClassDef& class_def)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700356 REQUIRES_SHARED(Locks::mutator_lock_) {
Nicolas Geoffrayf3075272018-01-08 12:41:19 +0000357 // When the dex file is uncompressed in the APK, we do not generate a copy in the .vdex
358 // file. As a result, dex2oat will map the dex file read-only, and we only need to check
359 // that to know if we can do quickening.
360 if (dex_file.GetContainer() != nullptr && dex_file.GetContainer()->IsReadOnly()) {
361 return optimizer::DexToDexCompiler::CompilationLevel::kDontDexToDexCompile;
362 }
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800363 auto* const runtime = Runtime::Current();
Nicolas Geoffray49cda062017-04-21 13:08:25 +0100364 DCHECK(driver.GetCompilerOptions().IsQuickeningCompilationEnabled());
Brian Carlstrom7940e442013-07-12 13:46:57 -0700365 const char* descriptor = dex_file.GetClassDescriptor(class_def);
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800366 ClassLinker* class_linker = runtime->GetClassLinker();
Vladimir Markoa8bba7d2018-05-30 15:18:48 +0100367 ObjPtr<mirror::Class> klass = class_linker->FindClass(self, descriptor, class_loader);
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700368 if (klass == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700369 CHECK(self->IsExceptionPending());
370 self->ClearException();
Mathieu Chartiera79efdb2018-01-18 16:31:01 -0800371 return optimizer::DexToDexCompiler::CompilationLevel::kDontDexToDexCompile;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700372 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700373 // DexToDex at the kOptimize level may introduce quickened opcodes, which replace symbolic
374 // references with actual offsets. We cannot re-verify such instructions.
375 //
376 // We store the verification information in the class status in the oat file, which the linker
377 // can validate (checksums) and use to skip load-time verification. It is thus safe to
378 // optimize when a class has been fully verified before.
Mathieu Chartiera79efdb2018-01-18 16:31:01 -0800379 optimizer::DexToDexCompiler::CompilationLevel max_level =
380 optimizer::DexToDexCompiler::CompilationLevel::kOptimize;
Alex Lighte40dd382017-01-25 17:44:53 -0800381 if (driver.GetCompilerOptions().GetDebuggable()) {
382 // We are debuggable so definitions of classes might be changed. We don't want to do any
383 // optimizations that could break that.
Mathieu Chartiera79efdb2018-01-18 16:31:01 -0800384 max_level = optimizer::DexToDexCompiler::CompilationLevel::kDontDexToDexCompile;
Alex Lighte40dd382017-01-25 17:44:53 -0800385 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700386 if (klass->IsVerified()) {
Sebastien Hertz75021222013-07-16 18:34:50 +0200387 // Class is verified so we can enable DEX-to-DEX compilation for performance.
Alex Lighte40dd382017-01-25 17:44:53 -0800388 return max_level;
Sebastien Hertz75021222013-07-16 18:34:50 +0200389 } else {
Andreas Gampe1a4bc7f2017-03-27 14:57:30 -0700390 // Class verification has failed: do not run DEX-to-DEX optimizations.
Mathieu Chartiera79efdb2018-01-18 16:31:01 -0800391 return optimizer::DexToDexCompiler::CompilationLevel::kDontDexToDexCompile;
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700392 }
393}
394
Mathieu Chartiera79efdb2018-01-18 16:31:01 -0800395static optimizer::DexToDexCompiler::CompilationLevel GetDexToDexCompilationLevel(
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700396 Thread* self,
397 const CompilerDriver& driver,
398 jobject jclass_loader,
399 const DexFile& dex_file,
400 const DexFile::ClassDef& class_def) {
401 ScopedObjectAccess soa(self);
402 StackHandleScope<1> hs(soa.Self());
403 Handle<mirror::ClassLoader> class_loader(
Mathieu Chartier0795f232016-09-27 18:43:30 -0700404 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader)));
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700405 return GetDexToDexCompilationLevel(self, driver, class_loader, dex_file, class_def);
406}
407
408// Does the runtime for the InstructionSet provide an implementation returned by
409// GetQuickGenericJniStub allowing down calls that aren't compiled using a JNI compiler?
410static bool InstructionSetHasGenericJniStub(InstructionSet isa) {
411 switch (isa) {
Vladimir Marko33bff252017-11-01 14:35:42 +0000412 case InstructionSet::kArm:
413 case InstructionSet::kArm64:
414 case InstructionSet::kThumb2:
415 case InstructionSet::kMips:
416 case InstructionSet::kMips64:
417 case InstructionSet::kX86:
418 case InstructionSet::kX86_64: return true;
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700419 default: return false;
420 }
421}
422
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800423template <typename CompileFn>
424static void CompileMethodHarness(
425 Thread* self,
426 CompilerDriver* driver,
427 const DexFile::CodeItem* code_item,
428 uint32_t access_flags,
429 InvokeType invoke_type,
430 uint16_t class_def_idx,
431 uint32_t method_idx,
432 Handle<mirror::ClassLoader> class_loader,
433 const DexFile& dex_file,
434 optimizer::DexToDexCompiler::CompilationLevel dex_to_dex_compilation_level,
435 bool compilation_enabled,
436 Handle<mirror::DexCache> dex_cache,
437 CompileFn compile_fn) {
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700438 DCHECK(driver != nullptr);
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800439 CompiledMethod* compiled_method;
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700440 uint64_t start_ns = kTimeCompileMethod ? NanoTime() : 0;
441 MethodReference method_ref(&dex_file, method_idx);
442
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800443 compiled_method = compile_fn(self,
444 driver,
445 code_item,
446 access_flags,
447 invoke_type,
448 class_def_idx,
449 method_idx,
450 class_loader,
451 dex_file,
452 dex_to_dex_compilation_level,
453 compilation_enabled,
454 dex_cache);
Igor Murashkin9d4b6da2016-07-29 09:51:58 -0700455
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700456 if (kTimeCompileMethod) {
457 uint64_t duration_ns = NanoTime() - start_ns;
458 if (duration_ns > MsToNs(driver->GetCompiler()->GetMaximumCompilationTimeBeforeWarning())) {
David Sehr709b0702016-10-13 09:12:37 -0700459 LOG(WARNING) << "Compilation of " << dex_file.PrettyMethod(method_idx)
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700460 << " took " << PrettyDuration(duration_ns);
461 }
462 }
463
464 if (compiled_method != nullptr) {
Vladimir Marko8e524ad2018-07-13 10:27:43 +0100465 driver->AddCompiledMethod(method_ref, compiled_method);
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700466 }
467
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700468 if (self->IsExceptionPending()) {
469 ScopedObjectAccess soa(self);
David Sehr709b0702016-10-13 09:12:37 -0700470 LOG(FATAL) << "Unexpected exception compiling: " << dex_file.PrettyMethod(method_idx) << "\n"
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700471 << self->GetException()->Dump();
Sebastien Hertz75021222013-07-16 18:34:50 +0200472 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700473}
474
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800475static void CompileMethodDex2Dex(
476 Thread* self,
477 CompilerDriver* driver,
478 const DexFile::CodeItem* code_item,
479 uint32_t access_flags,
480 InvokeType invoke_type,
481 uint16_t class_def_idx,
482 uint32_t method_idx,
483 Handle<mirror::ClassLoader> class_loader,
484 const DexFile& dex_file,
485 optimizer::DexToDexCompiler::CompilationLevel dex_to_dex_compilation_level,
486 bool compilation_enabled,
487 Handle<mirror::DexCache> dex_cache) {
488 auto dex_2_dex_fn = [](Thread* self ATTRIBUTE_UNUSED,
489 CompilerDriver* driver,
490 const DexFile::CodeItem* code_item,
491 uint32_t access_flags,
492 InvokeType invoke_type,
493 uint16_t class_def_idx,
494 uint32_t method_idx,
495 Handle<mirror::ClassLoader> class_loader,
496 const DexFile& dex_file,
497 optimizer::DexToDexCompiler::CompilationLevel dex_to_dex_compilation_level,
498 bool compilation_enabled ATTRIBUTE_UNUSED,
499 Handle<mirror::DexCache> dex_cache ATTRIBUTE_UNUSED) -> CompiledMethod* {
500 DCHECK(driver != nullptr);
501 MethodReference method_ref(&dex_file, method_idx);
502
503 optimizer::DexToDexCompiler* const compiler = &driver->GetDexToDexCompiler();
504
505 if (compiler->ShouldCompileMethod(method_ref)) {
506 VerificationResults* results = driver->GetVerificationResults();
507 DCHECK(results != nullptr);
508 const VerifiedMethod* verified_method = results->GetVerifiedMethod(method_ref);
509 // Do not optimize if a VerifiedMethod is missing. SafeCast elision,
510 // for example, relies on it.
511 return compiler->CompileMethod(
512 code_item,
513 access_flags,
514 invoke_type,
515 class_def_idx,
516 method_idx,
517 class_loader,
518 dex_file,
519 (verified_method != nullptr)
520 ? dex_to_dex_compilation_level
521 : optimizer::DexToDexCompiler::CompilationLevel::kDontDexToDexCompile);
522 }
523 return nullptr;
524 };
525 CompileMethodHarness(self,
526 driver,
527 code_item,
528 access_flags,
529 invoke_type,
530 class_def_idx,
531 method_idx,
532 class_loader,
533 dex_file,
534 dex_to_dex_compilation_level,
535 compilation_enabled,
536 dex_cache,
537 dex_2_dex_fn);
538}
539
540static void CompileMethodQuick(
541 Thread* self,
542 CompilerDriver* driver,
543 const DexFile::CodeItem* code_item,
544 uint32_t access_flags,
545 InvokeType invoke_type,
546 uint16_t class_def_idx,
547 uint32_t method_idx,
548 Handle<mirror::ClassLoader> class_loader,
549 const DexFile& dex_file,
550 optimizer::DexToDexCompiler::CompilationLevel dex_to_dex_compilation_level,
551 bool compilation_enabled,
552 Handle<mirror::DexCache> dex_cache) {
553 auto quick_fn = [](
554 Thread* self,
555 CompilerDriver* driver,
556 const DexFile::CodeItem* code_item,
557 uint32_t access_flags,
558 InvokeType invoke_type,
559 uint16_t class_def_idx,
560 uint32_t method_idx,
561 Handle<mirror::ClassLoader> class_loader,
562 const DexFile& dex_file,
563 optimizer::DexToDexCompiler::CompilationLevel dex_to_dex_compilation_level,
564 bool compilation_enabled,
565 Handle<mirror::DexCache> dex_cache) {
566 DCHECK(driver != nullptr);
567 CompiledMethod* compiled_method = nullptr;
568 MethodReference method_ref(&dex_file, method_idx);
569
570 if ((access_flags & kAccNative) != 0) {
571 // Are we extracting only and have support for generic JNI down calls?
572 if (!driver->GetCompilerOptions().IsJniCompilationEnabled() &&
Vladimir Markoa0431112018-06-25 09:32:54 +0100573 InstructionSetHasGenericJniStub(driver->GetCompilerOptions().GetInstructionSet())) {
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800574 // Leaving this empty will trigger the generic JNI version
575 } else {
576 // Query any JNI optimization annotations such as @FastNative or @CriticalNative.
577 access_flags |= annotations::GetNativeMethodAnnotationAccessFlags(
578 dex_file, dex_file.GetClassDef(class_def_idx), method_idx);
579
580 compiled_method = driver->GetCompiler()->JniCompile(
581 access_flags, method_idx, dex_file, dex_cache);
582 CHECK(compiled_method != nullptr);
583 }
584 } else if ((access_flags & kAccAbstract) != 0) {
585 // Abstract methods don't have code.
586 } else {
587 VerificationResults* results = driver->GetVerificationResults();
588 DCHECK(results != nullptr);
589 const VerifiedMethod* verified_method = results->GetVerifiedMethod(method_ref);
590 bool compile = compilation_enabled &&
591 // Basic checks, e.g., not <clinit>.
592 results->IsCandidateForCompilation(method_ref, access_flags) &&
593 // Did not fail to create VerifiedMethod metadata.
594 verified_method != nullptr &&
595 // Do not have failures that should punt to the interpreter.
596 !verified_method->HasRuntimeThrow() &&
597 (verified_method->GetEncounteredVerificationFailures() &
598 (verifier::VERIFY_ERROR_FORCE_INTERPRETER | verifier::VERIFY_ERROR_LOCKING)) == 0 &&
599 // Is eligable for compilation by methods-to-compile filter.
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800600 driver->ShouldCompileBasedOnProfile(method_ref);
601
602 if (compile) {
603 // NOTE: if compiler declines to compile this method, it will return null.
604 compiled_method = driver->GetCompiler()->Compile(code_item,
605 access_flags,
606 invoke_type,
607 class_def_idx,
608 method_idx,
609 class_loader,
610 dex_file,
611 dex_cache);
612 }
613 if (compiled_method == nullptr &&
614 dex_to_dex_compilation_level !=
615 optimizer::DexToDexCompiler::CompilationLevel::kDontDexToDexCompile) {
616 DCHECK(!Runtime::Current()->UseJitCompilation());
617 // TODO: add a command-line option to disable DEX-to-DEX compilation ?
Mathieu Chartier279e3a32018-01-24 18:17:55 -0800618 driver->GetDexToDexCompiler().MarkForCompilation(self, method_ref);
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800619 }
620 }
621 return compiled_method;
622 };
623 CompileMethodHarness(self,
624 driver,
625 code_item,
626 access_flags,
627 invoke_type,
628 class_def_idx,
629 method_idx,
630 class_loader,
631 dex_file,
632 dex_to_dex_compilation_level,
633 compilation_enabled,
634 dex_cache,
635 quick_fn);
636}
637
Vladimir Markodc4bcce2018-06-21 16:15:42 +0100638// Compile a single Method. (For testing only.)
639void CompilerDriver::CompileOne(Thread* self,
640 jobject class_loader,
641 const DexFile& dex_file,
642 uint16_t class_def_idx,
643 uint32_t method_idx,
644 uint32_t access_flags,
645 InvokeType invoke_type,
646 const DexFile::CodeItem* code_item,
647 Handle<mirror::DexCache> dex_cache,
648 Handle<mirror::ClassLoader> h_class_loader) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700649 // Can we run DEX-to-DEX compiler on this class ?
Mathieu Chartiera79efdb2018-01-18 16:31:01 -0800650 optimizer::DexToDexCompiler::CompilationLevel dex_to_dex_compilation_level =
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700651 GetDexToDexCompilationLevel(self,
652 *this,
Vladimir Markodc4bcce2018-06-21 16:15:42 +0100653 class_loader,
654 dex_file,
655 dex_file.GetClassDef(class_def_idx));
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700656
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800657 CompileMethodQuick(self,
658 this,
659 code_item,
660 access_flags,
661 invoke_type,
662 class_def_idx,
663 method_idx,
Vladimir Markodc4bcce2018-06-21 16:15:42 +0100664 h_class_loader,
665 dex_file,
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800666 dex_to_dex_compilation_level,
667 true,
668 dex_cache);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700669
Mathieu Chartier279e3a32018-01-24 18:17:55 -0800670 const size_t num_methods = dex_to_dex_compiler_.NumCodeItemsToQuicken(self);
Mathieu Chartiera79efdb2018-01-18 16:31:01 -0800671 if (num_methods != 0) {
672 DCHECK_EQ(num_methods, 1u);
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800673 CompileMethodDex2Dex(self,
674 this,
675 code_item,
676 access_flags,
677 invoke_type,
678 class_def_idx,
679 method_idx,
Vladimir Markodc4bcce2018-06-21 16:15:42 +0100680 h_class_loader,
681 dex_file,
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800682 dex_to_dex_compilation_level,
683 true,
684 dex_cache);
Mathieu Chartiera79efdb2018-01-18 16:31:01 -0800685 dex_to_dex_compiler_.ClearState();
Vladimir Marko492a7fa2016-06-01 18:38:43 +0100686 }
Mathieu Chartier2535abe2015-02-17 10:38:49 -0800687}
688
Andreas Gampeace0dc12016-01-20 13:33:13 -0800689void CompilerDriver::Resolve(jobject class_loader,
690 const std::vector<const DexFile*>& dex_files,
691 TimingLogger* timings) {
692 // Resolution allocates classes and needs to run single-threaded to be deterministic.
693 bool force_determinism = GetCompilerOptions().IsForceDeterminism();
694 ThreadPool* resolve_thread_pool = force_determinism
695 ? single_thread_pool_.get()
696 : parallel_thread_pool_.get();
697 size_t resolve_thread_count = force_determinism ? 1U : parallel_thread_count_;
698
Brian Carlstrom7940e442013-07-12 13:46:57 -0700699 for (size_t i = 0; i != dex_files.size(); ++i) {
700 const DexFile* dex_file = dex_files[i];
Kenny Rootd5185342014-05-13 14:47:05 -0700701 CHECK(dex_file != nullptr);
Andreas Gampeace0dc12016-01-20 13:33:13 -0800702 ResolveDexFile(class_loader,
703 *dex_file,
704 dex_files,
705 resolve_thread_pool,
706 resolve_thread_count,
707 timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700708 }
709}
710
Mathieu Chartiercd0f38f2018-10-15 09:44:35 -0700711void CompilerDriver::ResolveConstStrings(const std::vector<const DexFile*>& dex_files,
712 bool only_startup_strings,
713 TimingLogger* timings) {
Nicolas Geoffray571d2342016-10-12 13:03:15 +0000714 ScopedObjectAccess soa(Thread::Current());
715 StackHandleScope<1> hs(soa.Self());
716 ClassLinker* const class_linker = Runtime::Current()->GetClassLinker();
717 MutableHandle<mirror::DexCache> dex_cache(hs.NewHandle<mirror::DexCache>(nullptr));
Mathieu Chartier22752772018-10-18 14:18:59 -0700718 size_t num_instructions = 0u;
Nicolas Geoffray571d2342016-10-12 13:03:15 +0000719
Andreas Gampeace0dc12016-01-20 13:33:13 -0800720 for (const DexFile* dex_file : dex_files) {
Vladimir Markocd556b02017-02-03 11:47:34 +0000721 dex_cache.Assign(class_linker->FindDexCache(soa.Self(), *dex_file));
Andreas Gampeace0dc12016-01-20 13:33:13 -0800722 TimingLogger::ScopedTiming t("Resolve const-string Strings", timings);
723
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -0700724 for (ClassAccessor accessor : dex_file->GetClasses()) {
Mathieu Chartiercd0f38f2018-10-15 09:44:35 -0700725 if (!IsClassToCompile(accessor.GetDescriptor())) {
Andreas Gampeace0dc12016-01-20 13:33:13 -0800726 // Compilation is skipped, do not resolve const-string in code of this class.
Vladimir Marko175e7862018-03-27 09:03:13 +0000727 // FIXME: Make sure that inlining honors this. b/26687569
Andreas Gampeace0dc12016-01-20 13:33:13 -0800728 continue;
729 }
Mathieu Chartier22752772018-10-18 14:18:59 -0700730
731 const bool is_startup_class =
732 profile_compilation_info_ != nullptr &&
733 profile_compilation_info_->ContainsClass(*dex_file, accessor.GetClassIdx());
734
Mathieu Chartier0d896bd2018-05-25 00:20:27 -0700735 for (const ClassAccessor::Method& method : accessor.GetMethods()) {
Mathieu Chartier22752772018-10-18 14:18:59 -0700736 const bool is_clinit = (method.GetAccessFlags() & kAccConstructor) != 0 &&
737 (method.GetAccessFlags() & kAccStatic) != 0;
738 const bool is_startup_clinit = is_startup_class && is_clinit;
739
Mathieu Chartiercd0f38f2018-10-15 09:44:35 -0700740 if (only_startup_strings &&
741 profile_compilation_info_ != nullptr &&
Mathieu Chartier22752772018-10-18 14:18:59 -0700742 (!profile_compilation_info_->GetMethodHotness(method.GetReference()).IsStartup() &&
743 !is_startup_clinit)) {
Mathieu Chartiercd0f38f2018-10-15 09:44:35 -0700744 continue;
745 }
746
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -0700747 // Resolve const-strings in the code. Done to have deterministic allocation behavior. Right
748 // now this is single-threaded for simplicity.
749 // TODO: Collect the relevant string indices in parallel, then allocate them sequentially
750 // in a stable order.
751 for (const DexInstructionPcPair& inst : method.GetInstructions()) {
752 switch (inst->Opcode()) {
753 case Instruction::CONST_STRING:
754 case Instruction::CONST_STRING_JUMBO: {
755 dex::StringIndex string_index((inst->Opcode() == Instruction::CONST_STRING)
756 ? inst->VRegB_21c()
757 : inst->VRegB_31c());
758 ObjPtr<mirror::String> string = class_linker->ResolveString(string_index, dex_cache);
759 CHECK(string != nullptr) << "Could not allocate a string when forcing determinism";
Mathieu Chartier22752772018-10-18 14:18:59 -0700760 ++num_instructions;
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -0700761 break;
762 }
Andreas Gampeace0dc12016-01-20 13:33:13 -0800763
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -0700764 default:
765 break;
766 }
767 }
Mathieu Chartier0d896bd2018-05-25 00:20:27 -0700768 }
Vladimir Marko175e7862018-03-27 09:03:13 +0000769 }
770 }
Mathieu Chartier22752772018-10-18 14:18:59 -0700771 VLOG(compiler) << "Resolved " << num_instructions << " const string instructions";
Vladimir Marko175e7862018-03-27 09:03:13 +0000772}
773
774// Initialize type check bit strings for check-cast and instance-of in the code. Done to have
775// deterministic allocation behavior. Right now this is single-threaded for simplicity.
776// TODO: Collect the relevant type indices in parallel, then process them sequentially in a
777// stable order.
778
779static void InitializeTypeCheckBitstrings(CompilerDriver* driver,
780 ClassLinker* class_linker,
781 Handle<mirror::DexCache> dex_cache,
782 const DexFile& dex_file,
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -0700783 const ClassAccessor::Method& method)
Vladimir Marko175e7862018-03-27 09:03:13 +0000784 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -0700785 for (const DexInstructionPcPair& inst : method.GetInstructions()) {
Vladimir Marko175e7862018-03-27 09:03:13 +0000786 switch (inst->Opcode()) {
787 case Instruction::CHECK_CAST:
788 case Instruction::INSTANCE_OF: {
789 dex::TypeIndex type_index(
790 (inst->Opcode() == Instruction::CHECK_CAST) ? inst->VRegB_21c() : inst->VRegC_22c());
791 const char* descriptor = dex_file.StringByTypeIdx(type_index);
792 // We currently do not use the bitstring type check for array or final (including
793 // primitive) classes. We may reconsider this in future if it's deemed to be beneficial.
794 // And we cannot use it for classes outside the boot image as we do not know the runtime
795 // value of their bitstring when compiling (it may not even get assigned at runtime).
Vladimir Markodc4bcce2018-06-21 16:15:42 +0100796 if (descriptor[0] == 'L' && driver->GetCompilerOptions().IsImageClass(descriptor)) {
Vladimir Marko175e7862018-03-27 09:03:13 +0000797 ObjPtr<mirror::Class> klass =
798 class_linker->LookupResolvedType(type_index,
799 dex_cache.Get(),
800 /* class_loader */ nullptr);
801 CHECK(klass != nullptr) << descriptor << " should have been previously resolved.";
802 // Now assign the bitstring if the class is not final. Keep this in sync with sharpening.
803 if (!klass->IsFinal()) {
804 MutexLock subtype_check_lock(Thread::Current(), *Locks::subtype_check_lock_);
805 SubtypeCheck<ObjPtr<mirror::Class>>::EnsureAssigned(klass);
806 }
Andreas Gampeace0dc12016-01-20 13:33:13 -0800807 }
Vladimir Marko175e7862018-03-27 09:03:13 +0000808 break;
809 }
810
811 default:
812 break;
813 }
814 }
815}
816
817static void InitializeTypeCheckBitstrings(CompilerDriver* driver,
818 const std::vector<const DexFile*>& dex_files,
819 TimingLogger* timings) {
820 ScopedObjectAccess soa(Thread::Current());
821 StackHandleScope<1> hs(soa.Self());
822 ClassLinker* const class_linker = Runtime::Current()->GetClassLinker();
823 MutableHandle<mirror::DexCache> dex_cache(hs.NewHandle<mirror::DexCache>(nullptr));
824
825 for (const DexFile* dex_file : dex_files) {
826 dex_cache.Assign(class_linker->FindDexCache(soa.Self(), *dex_file));
827 TimingLogger::ScopedTiming t("Initialize type check bitstrings", timings);
828
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -0700829 for (ClassAccessor accessor : dex_file->GetClasses()) {
830 if (!driver->IsClassToCompile(accessor.GetDescriptor())) {
Vladimir Marko175e7862018-03-27 09:03:13 +0000831 // Compilation is skipped, do not look for type checks in code of this class.
832 // FIXME: Make sure that inlining honors this. b/26687569
833 continue;
834 }
835
836 // Direct and virtual methods.
Mathieu Chartier0d896bd2018-05-25 00:20:27 -0700837 for (const ClassAccessor::Method& method : accessor.GetMethods()) {
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -0700838 InitializeTypeCheckBitstrings(driver, class_linker, dex_cache, *dex_file, method);
Mathieu Chartier0d896bd2018-05-25 00:20:27 -0700839 }
Andreas Gampeace0dc12016-01-20 13:33:13 -0800840 }
841 }
842}
843
844inline void CompilerDriver::CheckThreadPools() {
845 DCHECK(parallel_thread_pool_ != nullptr);
846 DCHECK(single_thread_pool_ != nullptr);
847}
848
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +0000849static void EnsureVerifiedOrVerifyAtRuntime(jobject jclass_loader,
850 const std::vector<const DexFile*>& dex_files) {
851 ScopedObjectAccess soa(Thread::Current());
852 StackHandleScope<2> hs(soa.Self());
853 Handle<mirror::ClassLoader> class_loader(
854 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader)));
855 MutableHandle<mirror::Class> cls(hs.NewHandle<mirror::Class>(nullptr));
856 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
857
858 for (const DexFile* dex_file : dex_files) {
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -0700859 for (ClassAccessor accessor : dex_file->GetClasses()) {
860 cls.Assign(class_linker->FindClass(soa.Self(), accessor.GetDescriptor(), class_loader));
Andreas Gampefa4333d2017-02-14 11:10:34 -0800861 if (cls == nullptr) {
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +0000862 soa.Self()->ClearException();
863 } else if (&cls->GetDexFile() == dex_file) {
Nicolas Geoffray7cc3ae52017-03-07 14:33:37 +0000864 DCHECK(cls->IsErroneous() || cls->IsVerified() || cls->ShouldVerifyAtRuntime())
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +0000865 << cls->PrettyClass()
866 << " " << cls->GetStatus();
867 }
868 }
869 }
870}
871
Andreas Gampeace0dc12016-01-20 13:33:13 -0800872void CompilerDriver::PreCompile(jobject class_loader,
873 const std::vector<const DexFile*>& dex_files,
874 TimingLogger* timings) {
875 CheckThreadPools();
Vladimir Marko213ee2d2018-06-22 11:56:34 +0100876
Vladimir Markodc4bcce2018-06-21 16:15:42 +0100877 VLOG(compiler) << "Before precompile " << GetMemoryUsageString(false);
878
Vladimir Marko213ee2d2018-06-22 11:56:34 +0100879 compiled_classes_.AddDexFiles(GetCompilerOptions().GetDexFilesForOatFile());
880 dex_to_dex_compiler_.SetDexFiles(GetCompilerOptions().GetDexFilesForOatFile());
881
Vladimir Markodc4bcce2018-06-21 16:15:42 +0100882 // Precompile:
883 // 1) Load image classes.
884 // 2) Resolve all classes.
885 // 3) For deterministic boot image, resolve strings for const-string instructions.
886 // 4) Attempt to verify all classes.
887 // 5) Attempt to initialize image classes, and trivially initialized classes.
888 // 6) Update the set of image classes.
889 // 7) For deterministic boot image, initialize bitstrings for type checking.
Andreas Gampeace0dc12016-01-20 13:33:13 -0800890
Brian Carlstrom7940e442013-07-12 13:46:57 -0700891 LoadImageClasses(timings);
Andreas Gampe8d295f82015-01-20 14:50:21 -0800892 VLOG(compiler) << "LoadImageClasses: " << GetMemoryUsageString(false);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700893
Nicolas Geoffray49cda062017-04-21 13:08:25 +0100894 if (compiler_options_->IsAnyCompilationEnabled()) {
Mathieu Chartier88b74b62017-07-16 17:08:19 -0700895 // Avoid adding the dex files in the case where we aren't going to add compiled methods.
896 // This reduces RAM usage for this case.
897 for (const DexFile* dex_file : dex_files) {
898 // Can be already inserted if the caller is CompileOne. This happens for gtests.
899 if (!compiled_methods_.HaveDexFile(dex_file)) {
Mathieu Chartierfc8b4222017-09-17 13:44:24 -0700900 compiled_methods_.AddDexFile(dex_file);
Mathieu Chartier88b74b62017-07-16 17:08:19 -0700901 }
902 }
Nicolas Geoffray49cda062017-04-21 13:08:25 +0100903 // Resolve eagerly to prepare for compilation.
Andreas Gampeace0dc12016-01-20 13:33:13 -0800904 Resolve(class_loader, dex_files, timings);
Mathieu Chartiere86deef2015-03-19 13:43:37 -0700905 VLOG(compiler) << "Resolve: " << GetMemoryUsageString(false);
906 }
907
Nicolas Geoffray60ca9492016-12-20 21:15:00 +0000908 if (compiler_options_->AssumeClassesAreVerified()) {
Mathieu Chartierab972ef2014-12-03 17:38:22 -0800909 VLOG(compiler) << "Verify none mode specified, skipping verification.";
Andreas Gampeace0dc12016-01-20 13:33:13 -0800910 SetVerified(class_loader, dex_files, timings);
Mathieu Chartiere86deef2015-03-19 13:43:37 -0700911 }
912
Nicolas Geoffray60ca9492016-12-20 21:15:00 +0000913 if (!compiler_options_->IsVerificationEnabled()) {
Jeff Hao4a200f52014-04-01 14:58:49 -0700914 return;
915 }
916
Vladimir Markoaad75c62016-10-03 08:46:48 +0000917 if (GetCompilerOptions().IsForceDeterminism() && GetCompilerOptions().IsBootImage()) {
Andreas Gampeace0dc12016-01-20 13:33:13 -0800918 // Resolve strings from const-string. Do this now to have a deterministic image.
Mathieu Chartiercd0f38f2018-10-15 09:44:35 -0700919 ResolveConstStrings(dex_files, /*only_startup_strings=*/ false, timings);
Andreas Gampeace0dc12016-01-20 13:33:13 -0800920 VLOG(compiler) << "Resolve const-strings: " << GetMemoryUsageString(false);
Mathieu Chartiercd0f38f2018-10-15 09:44:35 -0700921 } else if (GetCompilerOptions().ResolveStartupConstStrings()) {
922 ResolveConstStrings(dex_files, /*only_startup_strings=*/ true, timings);
Andreas Gampeace0dc12016-01-20 13:33:13 -0800923 }
924
Nicolas Geoffrayb0bbe8e2016-11-19 10:42:37 +0000925 Verify(class_loader, dex_files, timings);
Andreas Gampe8d295f82015-01-20 14:50:21 -0800926 VLOG(compiler) << "Verify: " << GetMemoryUsageString(false);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700927
Andreas Gampe6cf49e52015-03-05 13:08:45 -0800928 if (had_hard_verifier_failure_ && GetCompilerOptions().AbortOnHardVerifierFailure()) {
Andreas Gampefdfb4d42017-07-27 12:12:22 -0700929 // Avoid dumping threads. Even if we shut down the thread pools, there will still be three
930 // instances of this thread's stack.
931 LOG(FATAL_WITHOUT_ABORT) << "Had a hard failure verifying all classes, and was asked to abort "
932 << "in such situations. Please check the log.";
Andreas Gampe56c9b7c2018-02-27 18:49:26 -0800933 _exit(1);
Andreas Gampef39208f2017-10-19 15:06:59 -0700934 } else if (number_of_soft_verifier_failures_ > 0 &&
935 GetCompilerOptions().AbortOnSoftVerifierFailure()) {
936 LOG(FATAL_WITHOUT_ABORT) << "Had " << number_of_soft_verifier_failures_ << " soft failure(s) "
937 << "verifying all classes, and was asked to abort in such situations. "
938 << "Please check the log.";
Andreas Gampe56c9b7c2018-02-27 18:49:26 -0800939 _exit(1);
Andreas Gampe6cf49e52015-03-05 13:08:45 -0800940 }
941
Nicolas Geoffray49cda062017-04-21 13:08:25 +0100942 if (compiler_options_->IsAnyCompilationEnabled()) {
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +0000943 if (kIsDebugBuild) {
944 EnsureVerifiedOrVerifyAtRuntime(class_loader, dex_files);
945 }
Nicolas Geoffrayade72d62016-12-15 13:20:02 +0000946 InitializeClasses(class_loader, dex_files, timings);
947 VLOG(compiler) << "InitializeClasses: " << GetMemoryUsageString(false);
948 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700949
950 UpdateImageClasses(timings);
Andreas Gampe8d295f82015-01-20 14:50:21 -0800951 VLOG(compiler) << "UpdateImageClasses: " << GetMemoryUsageString(false);
Vladimir Marko175e7862018-03-27 09:03:13 +0000952
953 if (kBitstringSubtypeCheckEnabled &&
954 GetCompilerOptions().IsForceDeterminism() && GetCompilerOptions().IsBootImage()) {
955 // Initialize type check bit string used by check-cast and instanceof.
956 // Do this now to have a deterministic image.
957 // Note: This is done after UpdateImageClasses() at it relies on the image classes to be final.
958 InitializeTypeCheckBitstrings(this, dex_files, timings);
959 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700960}
961
Andreas Gampe4bf3ae92014-11-11 13:28:29 -0800962bool CompilerDriver::IsClassToCompile(const char* descriptor) const {
Andreas Gampeb1fcead2015-04-20 18:53:51 -0700963 if (classes_to_compile_ == nullptr) {
964 return true;
965 }
Vladimir Marko54159c62018-06-20 14:30:08 +0100966 return classes_to_compile_->find(StringPiece(descriptor)) != classes_to_compile_->end();
Andreas Gampe4bf3ae92014-11-11 13:28:29 -0800967}
968
Calin Juravle226501b2015-12-11 14:41:31 +0000969bool CompilerDriver::ShouldCompileBasedOnProfile(const MethodReference& method_ref) const {
Mathieu Chartier97ab5e32017-02-22 13:35:44 -0800970 // Profile compilation info may be null if no profile is passed.
Mathieu Chartierd0af56c2017-02-17 12:56:25 -0800971 if (!CompilerFilter::DependsOnProfile(compiler_options_->GetCompilerFilter())) {
972 // Use the compiler filter instead of the presence of profile_compilation_info_ since
973 // we may want to have full speed compilation along with profile based layout optimizations.
Calin Juravle226501b2015-12-11 14:41:31 +0000974 return true;
975 }
Mathieu Chartier97ab5e32017-02-22 13:35:44 -0800976 // If we are using a profile filter but do not have a profile compilation info, compile nothing.
977 if (profile_compilation_info_ == nullptr) {
978 return false;
979 }
Mathieu Chartier7b135c82017-06-05 12:54:01 -0700980 // Compile only hot methods, it is the profile saver's job to decide what startup methods to mark
981 // as hot.
Mathieu Chartierbbe3a5e2017-06-13 16:36:17 -0700982 bool result = profile_compilation_info_->GetMethodHotness(method_ref).IsHot();
Calin Juravle226501b2015-12-11 14:41:31 +0000983
984 if (kDebugProfileGuidedCompilation) {
985 LOG(INFO) << "[ProfileGuidedCompilation] "
Mathieu Chartierfc8b4222017-09-17 13:44:24 -0700986 << (result ? "Compiled" : "Skipped") << " method:" << method_ref.PrettyMethod(true);
Calin Juravle226501b2015-12-11 14:41:31 +0000987 }
988 return result;
989}
990
Mathieu Chartiere0671ce2015-07-28 17:23:28 -0700991class ResolveCatchBlockExceptionsClassVisitor : public ClassVisitor {
992 public:
Vladimir Marko8d6768d2017-03-14 10:13:21 +0000993 ResolveCatchBlockExceptionsClassVisitor() : classes_() {}
Mathieu Chartiere0671ce2015-07-28 17:23:28 -0700994
Roland Levillainf73caca2018-08-24 17:19:07 +0100995 bool operator()(ObjPtr<mirror::Class> c) override REQUIRES_SHARED(Locks::mutator_lock_) {
Vladimir Marko8d6768d2017-03-14 10:13:21 +0000996 classes_.push_back(c);
Mathieu Chartiere4275c02015-08-06 15:34:15 -0700997 return true;
998 }
999
Vladimir Marko8d6768d2017-03-14 10:13:21 +00001000 void FindExceptionTypesToResolve(
1001 std::set<std::pair<dex::TypeIndex, const DexFile*>>* exceptions_to_resolve)
Vladimir Markobfb80d22017-02-14 14:08:12 +00001002 REQUIRES_SHARED(Locks::mutator_lock_) {
Vladimir Marko8d6768d2017-03-14 10:13:21 +00001003 const auto pointer_size = Runtime::Current()->GetClassLinker()->GetImagePointerSize();
1004 for (ObjPtr<mirror::Class> klass : classes_) {
1005 for (ArtMethod& method : klass->GetMethods(pointer_size)) {
1006 FindExceptionTypesToResolveForMethod(&method, exceptions_to_resolve);
1007 }
1008 }
1009 }
1010
1011 private:
1012 void FindExceptionTypesToResolveForMethod(
1013 ArtMethod* method,
1014 std::set<std::pair<dex::TypeIndex, const DexFile*>>* exceptions_to_resolve)
1015 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartier808c7a52017-12-15 11:19:33 -08001016 if (method->GetCodeItem() == nullptr) {
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001017 return; // native or abstract method
Brian Carlstrom7940e442013-07-12 13:46:57 -07001018 }
David Sehr0225f8e2018-01-31 08:52:24 +00001019 CodeItemDataAccessor accessor(method->DexInstructionData());
Mathieu Chartier808c7a52017-12-15 11:19:33 -08001020 if (accessor.TriesSize() == 0) {
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001021 return; // nothing to process
1022 }
Mathieu Chartier808c7a52017-12-15 11:19:33 -08001023 const uint8_t* encoded_catch_handler_list = accessor.GetCatchHandlerData();
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001024 size_t num_encoded_catch_handlers = DecodeUnsignedLeb128(&encoded_catch_handler_list);
1025 for (size_t i = 0; i < num_encoded_catch_handlers; i++) {
1026 int32_t encoded_catch_handler_size = DecodeSignedLeb128(&encoded_catch_handler_list);
1027 bool has_catch_all = false;
1028 if (encoded_catch_handler_size <= 0) {
1029 encoded_catch_handler_size = -encoded_catch_handler_size;
1030 has_catch_all = true;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001031 }
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001032 for (int32_t j = 0; j < encoded_catch_handler_size; j++) {
Andreas Gampea5b09a62016-11-17 15:21:22 -08001033 dex::TypeIndex encoded_catch_handler_handlers_type_idx =
1034 dex::TypeIndex(DecodeUnsignedLeb128(&encoded_catch_handler_list));
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001035 // Add to set of types to resolve if not already in the dex cache resolved types
Vladimir Marko8d6768d2017-03-14 10:13:21 +00001036 if (!method->IsResolvedTypeIdx(encoded_catch_handler_handlers_type_idx)) {
1037 exceptions_to_resolve->emplace(encoded_catch_handler_handlers_type_idx,
1038 method->GetDexFile());
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001039 }
1040 // ignore address associated with catch handler
1041 DecodeUnsignedLeb128(&encoded_catch_handler_list);
1042 }
1043 if (has_catch_all) {
1044 // ignore catch all address
1045 DecodeUnsignedLeb128(&encoded_catch_handler_list);
1046 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001047 }
1048 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001049
Vladimir Marko8d6768d2017-03-14 10:13:21 +00001050 std::vector<ObjPtr<mirror::Class>> classes_;
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001051};
1052
1053class RecordImageClassesVisitor : public ClassVisitor {
1054 public:
Vladimir Marko54159c62018-06-20 14:30:08 +01001055 explicit RecordImageClassesVisitor(HashSet<std::string>* image_classes)
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001056 : image_classes_(image_classes) {}
1057
Roland Levillainbbc6e7e2018-08-24 16:58:47 +01001058 bool operator()(ObjPtr<mirror::Class> klass) override REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001059 std::string temp;
1060 image_classes_->insert(klass->GetDescriptor(&temp));
1061 return true;
1062 }
1063
1064 private:
Vladimir Marko54159c62018-06-20 14:30:08 +01001065 HashSet<std::string>* const image_classes_;
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001066};
Brian Carlstrom7940e442013-07-12 13:46:57 -07001067
1068// Make a list of descriptors for classes to include in the image
Mathieu Chartier90443472015-07-16 20:32:27 -07001069void CompilerDriver::LoadImageClasses(TimingLogger* timings) {
Kenny Rootd5185342014-05-13 14:47:05 -07001070 CHECK(timings != nullptr);
Vladimir Markoaad75c62016-10-03 08:46:48 +00001071 if (!GetCompilerOptions().IsBootImage()) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001072 return;
1073 }
1074
Mathieu Chartierf5997b42014-06-20 10:37:54 -07001075 TimingLogger::ScopedTiming t("LoadImageClasses", timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001076 // Make a first class to load all classes explicitly listed in the file
1077 Thread* self = Thread::Current();
1078 ScopedObjectAccess soa(self);
1079 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Vladimir Markodc4bcce2018-06-21 16:15:42 +01001080 CHECK(image_classes_ != nullptr);
Mathieu Chartier02e25112013-08-14 16:14:24 -07001081 for (auto it = image_classes_->begin(), end = image_classes_->end(); it != end;) {
Vladimir Markoe9c36b32013-11-21 15:49:16 +00001082 const std::string& descriptor(*it);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001083 StackHandleScope<1> hs(self);
1084 Handle<mirror::Class> klass(
1085 hs.NewHandle(class_linker->FindSystemClass(self, descriptor.c_str())));
Andreas Gampefa4333d2017-02-14 11:10:34 -08001086 if (klass == nullptr) {
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001087 VLOG(compiler) << "Failed to find class " << descriptor;
Vladimir Marko54159c62018-06-20 14:30:08 +01001088 it = image_classes_->erase(it);
Ian Rogersa436fde2013-08-27 23:34:06 -07001089 self->ClearException();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001090 } else {
1091 ++it;
1092 }
1093 }
1094
1095 // Resolve exception classes referenced by the loaded classes. The catch logic assumes
1096 // exceptions are resolved by the verifier when there is a catch block in an interested method.
1097 // Do this here so that exception classes appear to have been specified image classes.
Andreas Gampea5b09a62016-11-17 15:21:22 -08001098 std::set<std::pair<dex::TypeIndex, const DexFile*>> unresolved_exception_types;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001099 StackHandleScope<1> hs(self);
1100 Handle<mirror::Class> java_lang_Throwable(
1101 hs.NewHandle(class_linker->FindSystemClass(self, "Ljava/lang/Throwable;")));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001102 do {
1103 unresolved_exception_types.clear();
Vladimir Marko8d6768d2017-03-14 10:13:21 +00001104 {
1105 // Thread suspension is not allowed while ResolveCatchBlockExceptionsClassVisitor
1106 // is using a std::vector<ObjPtr<mirror::Class>>.
1107 ScopedAssertNoThreadSuspension ants(__FUNCTION__);
1108 ResolveCatchBlockExceptionsClassVisitor visitor;
1109 class_linker->VisitClasses(&visitor);
1110 visitor.FindExceptionTypesToResolve(&unresolved_exception_types);
1111 }
Andreas Gampea5b09a62016-11-17 15:21:22 -08001112 for (const auto& exception_type : unresolved_exception_types) {
1113 dex::TypeIndex exception_type_idx = exception_type.first;
Mathieu Chartier02e25112013-08-14 16:14:24 -07001114 const DexFile* dex_file = exception_type.second;
Vladimir Marko666ee3d2017-12-11 18:37:36 +00001115 StackHandleScope<1> hs2(self);
Mathieu Chartierf284d442016-06-02 11:48:30 -07001116 Handle<mirror::DexCache> dex_cache(hs2.NewHandle(class_linker->RegisterDexFile(*dex_file,
1117 nullptr)));
Vladimir Marko666ee3d2017-12-11 18:37:36 +00001118 ObjPtr<mirror::Class> klass =
Andreas Gampefa4333d2017-02-14 11:10:34 -08001119 (dex_cache != nullptr)
Vladimir Marko666ee3d2017-12-11 18:37:36 +00001120 ? class_linker->ResolveType(exception_type_idx,
Vladimir Markocd556b02017-02-03 11:47:34 +00001121 dex_cache,
1122 ScopedNullHandle<mirror::ClassLoader>())
Vladimir Marko666ee3d2017-12-11 18:37:36 +00001123 : nullptr;
Andreas Gampefa4333d2017-02-14 11:10:34 -08001124 if (klass == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001125 const DexFile::TypeId& type_id = dex_file->GetTypeId(exception_type_idx);
1126 const char* descriptor = dex_file->GetTypeDescriptor(type_id);
1127 LOG(FATAL) << "Failed to resolve class " << descriptor;
1128 }
Vladimir Marko666ee3d2017-12-11 18:37:36 +00001129 DCHECK(java_lang_Throwable->IsAssignableFrom(klass));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001130 }
1131 // Resolving exceptions may load classes that reference more exceptions, iterate until no
1132 // more are found
1133 } while (!unresolved_exception_types.empty());
1134
1135 // We walk the roots looking for classes so that we'll pick up the
1136 // above classes plus any classes them depend on such super
1137 // classes, interfaces, and the required ClassLinker roots.
Vladimir Markodc4bcce2018-06-21 16:15:42 +01001138 RecordImageClassesVisitor visitor(image_classes_);
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001139 class_linker->VisitClasses(&visitor);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001140
Vladimir Marko54159c62018-06-20 14:30:08 +01001141 CHECK(!image_classes_->empty());
Brian Carlstrom7940e442013-07-12 13:46:57 -07001142}
1143
Vladimir Marko19a4d372016-12-08 14:41:46 +00001144static void MaybeAddToImageClasses(Thread* self,
1145 ObjPtr<mirror::Class> klass,
Vladimir Marko54159c62018-06-20 14:30:08 +01001146 HashSet<std::string>* image_classes)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001147 REQUIRES_SHARED(Locks::mutator_lock_) {
Vladimir Marko19a4d372016-12-08 14:41:46 +00001148 DCHECK_EQ(self, Thread::Current());
Mathieu Chartierf8322842014-05-16 10:59:25 -07001149 StackHandleScope<1> hs(self);
Ian Rogers1ff3c982014-08-12 02:30:58 -07001150 std::string temp;
Andreas Gampe542451c2016-07-26 09:02:02 -07001151 const PointerSize pointer_size = Runtime::Current()->GetClassLinker()->GetImagePointerSize();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001152 while (!klass->IsObjectClass()) {
Ian Rogers1ff3c982014-08-12 02:30:58 -07001153 const char* descriptor = klass->GetDescriptor(&temp);
Vladimir Marko54159c62018-06-20 14:30:08 +01001154 if (image_classes->find(StringPiece(descriptor)) != image_classes->end()) {
1155 break; // Previously inserted.
Brian Carlstrom7940e442013-07-12 13:46:57 -07001156 }
Vladimir Marko54159c62018-06-20 14:30:08 +01001157 image_classes->insert(descriptor);
Ian Rogers1ff3c982014-08-12 02:30:58 -07001158 VLOG(compiler) << "Adding " << descriptor << " to image classes";
Vladimir Marko19a4d372016-12-08 14:41:46 +00001159 for (size_t i = 0, num_interfaces = klass->NumDirectInterfaces(); i != num_interfaces; ++i) {
1160 ObjPtr<mirror::Class> interface = mirror::Class::GetDirectInterface(self, klass, i);
1161 DCHECK(interface != nullptr);
1162 MaybeAddToImageClasses(self, interface, image_classes);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001163 }
Vladimir Marko19a4d372016-12-08 14:41:46 +00001164 for (auto& m : klass->GetVirtualMethods(pointer_size)) {
1165 MaybeAddToImageClasses(self, m.GetDeclaringClass(), image_classes);
Mathieu Chartiere401d142015-04-22 13:56:20 -07001166 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001167 if (klass->IsArrayClass()) {
Vladimir Marko19a4d372016-12-08 14:41:46 +00001168 MaybeAddToImageClasses(self, klass->GetComponentType(), image_classes);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001169 }
Mathieu Chartierf8322842014-05-16 10:59:25 -07001170 klass.Assign(klass->GetSuperClass());
Brian Carlstrom7940e442013-07-12 13:46:57 -07001171 }
1172}
1173
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001174// Keeps all the data for the update together. Also doubles as the reference visitor.
1175// Note: we can use object pointers because we suspend all threads.
1176class ClinitImageUpdate {
1177 public:
Mathieu Chartier31e88222016-10-14 18:43:19 -07001178 static ClinitImageUpdate* Create(VariableSizedHandleScope& hs,
Vladimir Marko54159c62018-06-20 14:30:08 +01001179 HashSet<std::string>* image_class_descriptors,
Mathieu Chartier31e88222016-10-14 18:43:19 -07001180 Thread* self,
1181 ClassLinker* linker) {
1182 std::unique_ptr<ClinitImageUpdate> res(new ClinitImageUpdate(hs,
1183 image_class_descriptors,
1184 self,
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001185 linker));
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001186 return res.release();
1187 }
1188
1189 ~ClinitImageUpdate() {
1190 // Allow others to suspend again.
1191 self_->EndAssertNoThreadSuspension(old_cause_);
1192 }
1193
1194 // Visitor for VisitReferences.
Mathieu Chartier31e88222016-10-14 18:43:19 -07001195 void operator()(ObjPtr<mirror::Object> object,
1196 MemberOffset field_offset,
1197 bool /* is_static */) const
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001198 REQUIRES_SHARED(Locks::mutator_lock_) {
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001199 mirror::Object* ref = object->GetFieldObject<mirror::Object>(field_offset);
1200 if (ref != nullptr) {
1201 VisitClinitClassesObject(ref);
1202 }
1203 }
1204
Roland Levillain5e8d5f02016-10-18 18:03:43 +01001205 // java.lang.ref.Reference visitor for VisitReferences.
Mathieu Chartier31e88222016-10-14 18:43:19 -07001206 void operator()(ObjPtr<mirror::Class> klass ATTRIBUTE_UNUSED,
1207 ObjPtr<mirror::Reference> ref ATTRIBUTE_UNUSED) const {}
Mathieu Chartierda7c6502015-07-23 16:01:26 -07001208
1209 // Ignore class native roots.
1210 void VisitRootIfNonNull(mirror::CompressedReference<mirror::Object>* root ATTRIBUTE_UNUSED)
1211 const {}
1212 void VisitRoot(mirror::CompressedReference<mirror::Object>* root ATTRIBUTE_UNUSED) const {}
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001213
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001214 void Walk() REQUIRES_SHARED(Locks::mutator_lock_) {
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001215 // Use the initial classes as roots for a search.
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001216 for (Handle<mirror::Class> klass_root : image_classes_) {
1217 VisitClinitClassesObject(klass_root.Get());
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001218 }
Vladimir Marko19a4d372016-12-08 14:41:46 +00001219 Thread* self = Thread::Current();
1220 ScopedAssertNoThreadSuspension ants(__FUNCTION__);
Mathieu Chartier31e88222016-10-14 18:43:19 -07001221 for (Handle<mirror::Class> h_klass : to_insert_) {
Vladimir Marko19a4d372016-12-08 14:41:46 +00001222 MaybeAddToImageClasses(self, h_klass.Get(), image_class_descriptors_);
Mathieu Chartier31e88222016-10-14 18:43:19 -07001223 }
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001224 }
1225
1226 private:
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001227 class FindImageClassesVisitor : public ClassVisitor {
1228 public:
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001229 explicit FindImageClassesVisitor(VariableSizedHandleScope& hs,
1230 ClinitImageUpdate* data)
1231 : data_(data),
1232 hs_(hs) {}
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001233
Roland Levillainbbc6e7e2018-08-24 16:58:47 +01001234 bool operator()(ObjPtr<mirror::Class> klass) override REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001235 std::string temp;
Vladimir Marko54159c62018-06-20 14:30:08 +01001236 StringPiece name(klass->GetDescriptor(&temp));
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001237 if (data_->image_class_descriptors_->find(name) != data_->image_class_descriptors_->end()) {
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001238 data_->image_classes_.push_back(hs_.NewHandle(klass));
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001239 } else {
1240 // Check whether it is initialized and has a clinit. They must be kept, too.
1241 if (klass->IsInitialized() && klass->FindClassInitializer(
1242 Runtime::Current()->GetClassLinker()->GetImagePointerSize()) != nullptr) {
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001243 data_->image_classes_.push_back(hs_.NewHandle(klass));
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001244 }
1245 }
1246 return true;
1247 }
1248
1249 private:
1250 ClinitImageUpdate* const data_;
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001251 VariableSizedHandleScope& hs_;
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001252 };
1253
Mathieu Chartier31e88222016-10-14 18:43:19 -07001254 ClinitImageUpdate(VariableSizedHandleScope& hs,
Vladimir Marko54159c62018-06-20 14:30:08 +01001255 HashSet<std::string>* image_class_descriptors,
Mathieu Chartier31e88222016-10-14 18:43:19 -07001256 Thread* self,
1257 ClassLinker* linker) REQUIRES_SHARED(Locks::mutator_lock_)
1258 : hs_(hs),
1259 image_class_descriptors_(image_class_descriptors),
1260 self_(self) {
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001261 CHECK(linker != nullptr);
1262 CHECK(image_class_descriptors != nullptr);
1263
1264 // Make sure nobody interferes with us.
1265 old_cause_ = self->StartAssertNoThreadSuspension("Boot image closure");
1266
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001267 // Find all the already-marked classes.
1268 WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001269 FindImageClassesVisitor visitor(hs_, this);
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001270 linker->VisitClasses(&visitor);
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001271 }
1272
1273 void VisitClinitClassesObject(mirror::Object* object) const
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001274 REQUIRES_SHARED(Locks::mutator_lock_) {
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001275 DCHECK(object != nullptr);
1276 if (marked_objects_.find(object) != marked_objects_.end()) {
1277 // Already processed.
1278 return;
1279 }
1280
1281 // Mark it.
1282 marked_objects_.insert(object);
1283
1284 if (object->IsClass()) {
Mathieu Chartier31e88222016-10-14 18:43:19 -07001285 // Add to the TODO list since MaybeAddToImageClasses may cause thread suspension. Thread
1286 // suspensionb is not safe to do in VisitObjects or VisitReferences.
1287 to_insert_.push_back(hs_.NewHandle(object->AsClass()));
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001288 } else {
1289 // Else visit the object's class.
1290 VisitClinitClassesObject(object->GetClass());
1291 }
1292
Mathieu Chartiere401d142015-04-22 13:56:20 -07001293 // If it is not a DexCache, visit all references.
Mathieu Chartier31e88222016-10-14 18:43:19 -07001294 if (!object->IsDexCache()) {
Mathieu Chartier059ef3d2015-08-18 13:54:21 -07001295 object->VisitReferences(*this, *this);
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001296 }
1297 }
1298
Mathieu Chartier31e88222016-10-14 18:43:19 -07001299 VariableSizedHandleScope& hs_;
1300 mutable std::vector<Handle<mirror::Class>> to_insert_;
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001301 mutable std::unordered_set<mirror::Object*> marked_objects_;
Vladimir Marko54159c62018-06-20 14:30:08 +01001302 HashSet<std::string>* const image_class_descriptors_;
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001303 std::vector<Handle<mirror::Class>> image_classes_;
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001304 Thread* const self_;
1305 const char* old_cause_;
1306
1307 DISALLOW_COPY_AND_ASSIGN(ClinitImageUpdate);
1308};
Brian Carlstrom7940e442013-07-12 13:46:57 -07001309
Ian Rogers3d504072014-03-01 09:16:49 -08001310void CompilerDriver::UpdateImageClasses(TimingLogger* timings) {
Vladimir Markoaad75c62016-10-03 08:46:48 +00001311 if (GetCompilerOptions().IsBootImage()) {
Mathieu Chartierf5997b42014-06-20 10:37:54 -07001312 TimingLogger::ScopedTiming t("UpdateImageClasses", timings);
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001313
Mathieu Chartier4f55e222015-09-04 13:26:21 -07001314 Runtime* runtime = Runtime::Current();
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001315
1316 // Suspend all threads.
Mathieu Chartier4f55e222015-09-04 13:26:21 -07001317 ScopedSuspendAll ssa(__FUNCTION__);
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001318
Mathieu Chartier31e88222016-10-14 18:43:19 -07001319 VariableSizedHandleScope hs(Thread::Current());
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001320 std::string error_msg;
Mathieu Chartier31e88222016-10-14 18:43:19 -07001321 std::unique_ptr<ClinitImageUpdate> update(ClinitImageUpdate::Create(hs,
Vladimir Markodc4bcce2018-06-21 16:15:42 +01001322 image_classes_,
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001323 Thread::Current(),
Mathieu Chartier31e88222016-10-14 18:43:19 -07001324 runtime->GetClassLinker()));
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001325
1326 // Do the marking.
1327 update->Walk();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001328 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001329}
1330
Vladimir Markobe0e5462014-02-26 11:24:15 +00001331void CompilerDriver::ProcessedInstanceField(bool resolved) {
1332 if (!resolved) {
1333 stats_->UnresolvedInstanceField();
1334 } else {
1335 stats_->ResolvedInstanceField();
1336 }
1337}
1338
1339void CompilerDriver::ProcessedStaticField(bool resolved, bool local) {
1340 if (!resolved) {
1341 stats_->UnresolvedStaticField();
1342 } else if (local) {
1343 stats_->ResolvedLocalStaticField();
1344 } else {
1345 stats_->ResolvedStaticField();
1346 }
1347}
1348
Mathieu Chartierc7853442015-03-27 14:35:38 -07001349ArtField* CompilerDriver::ComputeInstanceFieldInfo(uint32_t field_idx,
Vladimir Markoe11dd502017-12-08 14:09:45 +00001350 const DexCompilationUnit* mUnit,
1351 bool is_put,
Mathieu Chartierc7853442015-03-27 14:35:38 -07001352 const ScopedObjectAccess& soa) {
Vladimir Markobe0e5462014-02-26 11:24:15 +00001353 // Try to resolve the field and compiling method's class.
Mathieu Chartierc7853442015-03-27 14:35:38 -07001354 ArtField* resolved_field;
Vladimir Marko28e012a2017-12-07 11:22:59 +00001355 ObjPtr<mirror::Class> referrer_class;
Mathieu Chartier736b5602015-09-02 14:54:11 -07001356 Handle<mirror::DexCache> dex_cache(mUnit->GetDexCache());
Vladimir Markobe0e5462014-02-26 11:24:15 +00001357 {
Vladimir Markoe11dd502017-12-08 14:09:45 +00001358 Handle<mirror::ClassLoader> class_loader = mUnit->GetClassLoader();
1359 resolved_field = ResolveField(soa, dex_cache, class_loader, field_idx, /* is_static */ false);
Mathieu Chartierc7853442015-03-27 14:35:38 -07001360 referrer_class = resolved_field != nullptr
Vladimir Markoe11dd502017-12-08 14:09:45 +00001361 ? ResolveCompilingMethodsClass(soa, dex_cache, class_loader, mUnit) : nullptr;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001362 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001363 bool can_link = false;
Vladimir Markobe0e5462014-02-26 11:24:15 +00001364 if (resolved_field != nullptr && referrer_class != nullptr) {
Vladimir Markobe0e5462014-02-26 11:24:15 +00001365 std::pair<bool, bool> fast_path = IsFastInstanceField(
Mathieu Chartier736b5602015-09-02 14:54:11 -07001366 dex_cache.Get(), referrer_class, resolved_field, field_idx);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001367 can_link = is_put ? fast_path.second : fast_path.first;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001368 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001369 ProcessedInstanceField(can_link);
1370 return can_link ? resolved_field : nullptr;
1371}
1372
1373bool CompilerDriver::ComputeInstanceFieldInfo(uint32_t field_idx, const DexCompilationUnit* mUnit,
1374 bool is_put, MemberOffset* field_offset,
1375 bool* is_volatile) {
1376 ScopedObjectAccess soa(Thread::Current());
Mathieu Chartierc7853442015-03-27 14:35:38 -07001377 ArtField* resolved_field = ComputeInstanceFieldInfo(field_idx, mUnit, is_put, soa);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001378
Mathieu Chartierc7853442015-03-27 14:35:38 -07001379 if (resolved_field == nullptr) {
Vladimir Markobe0e5462014-02-26 11:24:15 +00001380 // Conservative defaults.
1381 *is_volatile = true;
1382 *field_offset = MemberOffset(static_cast<size_t>(-1));
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001383 return false;
1384 } else {
1385 *is_volatile = resolved_field->IsVolatile();
1386 *field_offset = resolved_field->GetOffset();
1387 return true;
Vladimir Markobe0e5462014-02-26 11:24:15 +00001388 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001389}
1390
Vladimir Marko2730db02014-01-27 11:15:17 +00001391const VerifiedMethod* CompilerDriver::GetVerifiedMethod(const DexFile* dex_file,
1392 uint32_t method_idx) const {
1393 MethodReference ref(dex_file, method_idx);
1394 return verification_results_->GetVerifiedMethod(ref);
1395}
1396
1397bool CompilerDriver::IsSafeCast(const DexCompilationUnit* mUnit, uint32_t dex_pc) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001398 if (!compiler_options_->IsVerificationEnabled()) {
1399 // If we didn't verify, every cast has to be treated as non-safe.
1400 return false;
1401 }
Vladimir Marko2730db02014-01-27 11:15:17 +00001402 DCHECK(mUnit->GetVerifiedMethod() != nullptr);
1403 bool result = mUnit->GetVerifiedMethod()->IsSafeCast(dex_pc);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001404 if (result) {
1405 stats_->SafeCast();
1406 } else {
1407 stats_->NotASafeCast();
1408 }
1409 return result;
1410}
1411
Mathieu Chartier90443472015-07-16 20:32:27 -07001412class CompilationVisitor {
1413 public:
1414 virtual ~CompilationVisitor() {}
1415 virtual void Visit(size_t index) = 0;
1416};
1417
Brian Carlstrom7940e442013-07-12 13:46:57 -07001418class ParallelCompilationManager {
1419 public:
Brian Carlstrom7940e442013-07-12 13:46:57 -07001420 ParallelCompilationManager(ClassLinker* class_linker,
1421 jobject class_loader,
1422 CompilerDriver* compiler,
1423 const DexFile* dex_file,
Andreas Gampede7b4362014-07-28 18:38:57 -07001424 const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -08001425 ThreadPool* thread_pool)
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001426 : index_(0),
1427 class_linker_(class_linker),
Brian Carlstrom7940e442013-07-12 13:46:57 -07001428 class_loader_(class_loader),
1429 compiler_(compiler),
1430 dex_file_(dex_file),
Andreas Gampede7b4362014-07-28 18:38:57 -07001431 dex_files_(dex_files),
Ian Rogers3d504072014-03-01 09:16:49 -08001432 thread_pool_(thread_pool) {}
Brian Carlstrom7940e442013-07-12 13:46:57 -07001433
1434 ClassLinker* GetClassLinker() const {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001435 CHECK(class_linker_ != nullptr);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001436 return class_linker_;
1437 }
1438
1439 jobject GetClassLoader() const {
1440 return class_loader_;
1441 }
1442
1443 CompilerDriver* GetCompiler() const {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001444 CHECK(compiler_ != nullptr);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001445 return compiler_;
1446 }
1447
1448 const DexFile* GetDexFile() const {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001449 CHECK(dex_file_ != nullptr);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001450 return dex_file_;
1451 }
1452
Andreas Gampede7b4362014-07-28 18:38:57 -07001453 const std::vector<const DexFile*>& GetDexFiles() const {
1454 return dex_files_;
1455 }
1456
Mathieu Chartier90443472015-07-16 20:32:27 -07001457 void ForAll(size_t begin, size_t end, CompilationVisitor* visitor, size_t work_units)
1458 REQUIRES(!*Locks::mutator_lock_) {
Andreas Gampe3c060ad2018-01-22 13:07:49 -08001459 ForAllLambda(begin, end, [visitor](size_t index) { visitor->Visit(index); }, work_units);
1460 }
1461
1462 template <typename Fn>
1463 void ForAllLambda(size_t begin, size_t end, Fn fn, size_t work_units)
1464 REQUIRES(!*Locks::mutator_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001465 Thread* self = Thread::Current();
1466 self->AssertNoPendingException();
1467 CHECK_GT(work_units, 0U);
1468
Orion Hodson88591fe2018-03-06 13:35:43 +00001469 index_.store(begin, std::memory_order_relaxed);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001470 for (size_t i = 0; i < work_units; ++i) {
Andreas Gampe3c060ad2018-01-22 13:07:49 -08001471 thread_pool_->AddTask(self, new ForAllClosureLambda<Fn>(this, end, fn));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001472 }
1473 thread_pool_->StartWorkers(self);
1474
1475 // Ensure we're suspended while we're blocked waiting for the other threads to finish (worker
1476 // thread destructor's called below perform join).
1477 CHECK_NE(self->GetState(), kRunnable);
1478
1479 // Wait for all the worker threads to finish.
1480 thread_pool_->Wait(self, true, false);
Andreas Gampeace0dc12016-01-20 13:33:13 -08001481
1482 // And stop the workers accepting jobs.
1483 thread_pool_->StopWorkers(self);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001484 }
1485
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001486 size_t NextIndex() {
Orion Hodson88591fe2018-03-06 13:35:43 +00001487 return index_.fetch_add(1, std::memory_order_seq_cst);
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001488 }
1489
Brian Carlstrom7940e442013-07-12 13:46:57 -07001490 private:
Andreas Gampe3c060ad2018-01-22 13:07:49 -08001491 template <typename Fn>
1492 class ForAllClosureLambda : public Task {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001493 public:
Andreas Gampe3c060ad2018-01-22 13:07:49 -08001494 ForAllClosureLambda(ParallelCompilationManager* manager, size_t end, Fn fn)
Brian Carlstrom7940e442013-07-12 13:46:57 -07001495 : manager_(manager),
Brian Carlstrom7940e442013-07-12 13:46:57 -07001496 end_(end),
Andreas Gampe3c060ad2018-01-22 13:07:49 -08001497 fn_(fn) {}
Brian Carlstrom7940e442013-07-12 13:46:57 -07001498
Roland Levillainbbc6e7e2018-08-24 16:58:47 +01001499 void Run(Thread* self) override {
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001500 while (true) {
1501 const size_t index = manager_->NextIndex();
1502 if (UNLIKELY(index >= end_)) {
1503 break;
1504 }
Andreas Gampe3c060ad2018-01-22 13:07:49 -08001505 fn_(index);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001506 self->AssertNoPendingException();
1507 }
1508 }
1509
Roland Levillainbbc6e7e2018-08-24 16:58:47 +01001510 void Finalize() override {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001511 delete this;
1512 }
Brian Carlstrom0cd7ec22013-07-17 23:40:20 -07001513
Brian Carlstrom7940e442013-07-12 13:46:57 -07001514 private:
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001515 ParallelCompilationManager* const manager_;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001516 const size_t end_;
Andreas Gampe3c060ad2018-01-22 13:07:49 -08001517 Fn fn_;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001518 };
1519
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001520 AtomicInteger index_;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001521 ClassLinker* const class_linker_;
1522 const jobject class_loader_;
1523 CompilerDriver* const compiler_;
1524 const DexFile* const dex_file_;
Andreas Gampede7b4362014-07-28 18:38:57 -07001525 const std::vector<const DexFile*>& dex_files_;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001526 ThreadPool* const thread_pool_;
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001527
1528 DISALLOW_COPY_AND_ASSIGN(ParallelCompilationManager);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001529};
1530
Jeff Hao0e49b422013-11-08 12:16:56 -08001531// A fast version of SkipClass above if the class pointer is available
1532// that avoids the expensive FindInClassPath search.
Vladimir Marko28e012a2017-12-07 11:22:59 +00001533static bool SkipClass(jobject class_loader, const DexFile& dex_file, ObjPtr<mirror::Class> klass)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001534 REQUIRES_SHARED(Locks::mutator_lock_) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001535 DCHECK(klass != nullptr);
Jeff Hao0e49b422013-11-08 12:16:56 -08001536 const DexFile& original_dex_file = *klass->GetDexCache()->GetDexFile();
1537 if (&dex_file != &original_dex_file) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001538 if (class_loader == nullptr) {
David Sehr709b0702016-10-13 09:12:37 -07001539 LOG(WARNING) << "Skipping class " << klass->PrettyDescriptor() << " from "
Jeff Hao0e49b422013-11-08 12:16:56 -08001540 << dex_file.GetLocation() << " previously found in "
1541 << original_dex_file.GetLocation();
1542 }
1543 return true;
1544 }
1545 return false;
1546}
1547
Mathieu Chartier70b63482014-06-27 17:19:04 -07001548static void CheckAndClearResolveException(Thread* self)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001549 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartier70b63482014-06-27 17:19:04 -07001550 CHECK(self->IsExceptionPending());
Nicolas Geoffray14691c52015-03-05 10:40:17 +00001551 mirror::Throwable* exception = self->GetException();
Ian Rogers1ff3c982014-08-12 02:30:58 -07001552 std::string temp;
1553 const char* descriptor = exception->GetClass()->GetDescriptor(&temp);
1554 const char* expected_exceptions[] = {
1555 "Ljava/lang/IllegalAccessError;",
1556 "Ljava/lang/IncompatibleClassChangeError;",
1557 "Ljava/lang/InstantiationError;",
Brian Carlstrom898fcb52014-08-25 23:07:30 -07001558 "Ljava/lang/LinkageError;",
Ian Rogers1ff3c982014-08-12 02:30:58 -07001559 "Ljava/lang/NoClassDefFoundError;",
1560 "Ljava/lang/NoSuchFieldError;",
1561 "Ljava/lang/NoSuchMethodError;"
1562 };
1563 bool found = false;
1564 for (size_t i = 0; (found == false) && (i < arraysize(expected_exceptions)); ++i) {
1565 if (strcmp(descriptor, expected_exceptions[i]) == 0) {
1566 found = true;
1567 }
1568 }
1569 if (!found) {
Brian Carlstrom898fcb52014-08-25 23:07:30 -07001570 LOG(FATAL) << "Unexpected exception " << exception->Dump();
Mathieu Chartier70b63482014-06-27 17:19:04 -07001571 }
1572 self->ClearException();
1573}
1574
Mathieu Chartierb5d38612016-04-07 10:52:52 -07001575bool CompilerDriver::RequiresConstructorBarrier(const DexFile& dex_file,
1576 uint16_t class_def_idx) const {
Mathieu Chartier18e26872018-06-04 17:19:02 -07001577 ClassAccessor accessor(dex_file, class_def_idx);
Mathieu Chartierb5d38612016-04-07 10:52:52 -07001578 // We require a constructor barrier if there are final instance fields.
Mathieu Chartier18e26872018-06-04 17:19:02 -07001579 for (const ClassAccessor::Field& field : accessor.GetInstanceFields()) {
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001580 if (field.IsFinal()) {
Mathieu Chartier18e26872018-06-04 17:19:02 -07001581 return true;
Mathieu Chartierb5d38612016-04-07 10:52:52 -07001582 }
Mathieu Chartier18e26872018-06-04 17:19:02 -07001583 }
1584 return false;
Mathieu Chartierb5d38612016-04-07 10:52:52 -07001585}
1586
Mathieu Chartier90443472015-07-16 20:32:27 -07001587class ResolveClassFieldsAndMethodsVisitor : public CompilationVisitor {
1588 public:
1589 explicit ResolveClassFieldsAndMethodsVisitor(const ParallelCompilationManager* manager)
1590 : manager_(manager) {}
Brian Carlstrom7940e442013-07-12 13:46:57 -07001591
Roland Levillainbbc6e7e2018-08-24 16:58:47 +01001592 void Visit(size_t class_def_index) override REQUIRES(!Locks::mutator_lock_) {
Andreas Gampe9b827ab2017-12-07 19:32:48 -08001593 ScopedTrace trace(__FUNCTION__);
Mathieu Chartier90443472015-07-16 20:32:27 -07001594 Thread* const self = Thread::Current();
1595 jobject jclass_loader = manager_->GetClassLoader();
1596 const DexFile& dex_file = *manager_->GetDexFile();
1597 ClassLinker* class_linker = manager_->GetClassLinker();
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001598
Mathieu Chartier90443472015-07-16 20:32:27 -07001599 // Method and Field are the worst. We can't resolve without either
1600 // context from the code use (to disambiguate virtual vs direct
1601 // method and instance vs static field) or from class
1602 // definitions. While the compiler will resolve what it can as it
1603 // needs it, here we try to resolve fields and methods used in class
1604 // definitions, since many of them many never be referenced by
1605 // generated code.
1606 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
1607 ScopedObjectAccess soa(self);
1608 StackHandleScope<2> hs(soa.Self());
1609 Handle<mirror::ClassLoader> class_loader(
Mathieu Chartier0795f232016-09-27 18:43:30 -07001610 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader)));
Mathieu Chartier673ed3d2015-08-28 14:56:43 -07001611 Handle<mirror::DexCache> dex_cache(hs.NewHandle(class_linker->FindDexCache(
Vladimir Markocd556b02017-02-03 11:47:34 +00001612 soa.Self(), dex_file)));
Mathieu Chartier90443472015-07-16 20:32:27 -07001613 // Resolve the class.
Vladimir Marko28e012a2017-12-07 11:22:59 +00001614 ObjPtr<mirror::Class> klass =
Vladimir Marko666ee3d2017-12-11 18:37:36 +00001615 class_linker->ResolveType(class_def.class_idx_, dex_cache, class_loader);
Mathieu Chartier90443472015-07-16 20:32:27 -07001616 bool resolve_fields_and_methods;
1617 if (klass == nullptr) {
1618 // Class couldn't be resolved, for example, super-class is in a different dex file. Don't
1619 // attempt to resolve methods and fields when there is no declaring class.
1620 CheckAndClearResolveException(soa.Self());
1621 resolve_fields_and_methods = false;
1622 } else {
1623 // We successfully resolved a class, should we skip it?
1624 if (SkipClass(jclass_loader, dex_file, klass)) {
1625 return;
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001626 }
Mathieu Chartier90443472015-07-16 20:32:27 -07001627 // We want to resolve the methods and fields eagerly.
1628 resolve_fields_and_methods = true;
Ian Rogers68b56852014-08-29 20:19:11 -07001629 }
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001630 // If an instance field is final then we need to have a barrier on the return, static final
1631 // fields are assigned within the lock held for class initialization.
1632 bool requires_constructor_barrier = false;
1633
Mathieu Chartier18e26872018-06-04 17:19:02 -07001634 ClassAccessor accessor(dex_file, class_def_index);
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001635 // Optionally resolve fields and methods and figure out if we need a constructor barrier.
1636 auto method_visitor = [&](const ClassAccessor::Method& method)
1637 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartier90443472015-07-16 20:32:27 -07001638 if (resolve_fields_and_methods) {
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001639 ArtMethod* resolved = class_linker->ResolveMethod<ClassLinker::ResolveMode::kNoChecks>(
1640 method.GetIndex(),
1641 dex_cache,
1642 class_loader,
1643 /* referrer */ nullptr,
1644 method.GetInvokeType(class_def.access_flags_));
1645 if (resolved == nullptr) {
1646 CheckAndClearResolveException(soa.Self());
Mathieu Chartier90443472015-07-16 20:32:27 -07001647 }
Mathieu Chartier90443472015-07-16 20:32:27 -07001648 }
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001649 };
1650 accessor.VisitFieldsAndMethods(
1651 // static fields
1652 [&](ClassAccessor::Field& field) REQUIRES_SHARED(Locks::mutator_lock_) {
1653 if (resolve_fields_and_methods) {
1654 ArtField* resolved = class_linker->ResolveField(
1655 field.GetIndex(), dex_cache, class_loader, /* is_static */ true);
1656 if (resolved == nullptr) {
1657 CheckAndClearResolveException(soa.Self());
1658 }
1659 }
1660 },
1661 // instance fields
1662 [&](ClassAccessor::Field& field) REQUIRES_SHARED(Locks::mutator_lock_) {
1663 if (field.IsFinal()) {
1664 // We require a constructor barrier if there are final instance fields.
1665 requires_constructor_barrier = true;
1666 }
1667 if (resolve_fields_and_methods) {
1668 ArtField* resolved = class_linker->ResolveField(
1669 field.GetIndex(), dex_cache, class_loader, /* is_static */ false);
1670 if (resolved == nullptr) {
1671 CheckAndClearResolveException(soa.Self());
1672 }
1673 }
1674 },
1675 /*direct methods*/ method_visitor,
1676 /*virtual methods*/ method_visitor);
Mathieu Chartierc4ae9162016-04-07 13:19:19 -07001677 manager_->GetCompiler()->SetRequiresConstructorBarrier(self,
1678 &dex_file,
1679 class_def_index,
1680 requires_constructor_barrier);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001681 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001682
Mathieu Chartier90443472015-07-16 20:32:27 -07001683 private:
1684 const ParallelCompilationManager* const manager_;
1685};
1686
1687class ResolveTypeVisitor : public CompilationVisitor {
1688 public:
1689 explicit ResolveTypeVisitor(const ParallelCompilationManager* manager) : manager_(manager) {
1690 }
Roland Levillainbbc6e7e2018-08-24 16:58:47 +01001691 void Visit(size_t type_idx) override REQUIRES(!Locks::mutator_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001692 // Class derived values are more complicated, they require the linker and loader.
Mathieu Chartier90443472015-07-16 20:32:27 -07001693 ScopedObjectAccess soa(Thread::Current());
1694 ClassLinker* class_linker = manager_->GetClassLinker();
1695 const DexFile& dex_file = *manager_->GetDexFile();
1696 StackHandleScope<2> hs(soa.Self());
Mathieu Chartier90443472015-07-16 20:32:27 -07001697 Handle<mirror::ClassLoader> class_loader(
Mathieu Chartier0795f232016-09-27 18:43:30 -07001698 hs.NewHandle(soa.Decode<mirror::ClassLoader>(manager_->GetClassLoader())));
Mathieu Chartierd57d4542015-10-14 10:55:30 -07001699 Handle<mirror::DexCache> dex_cache(hs.NewHandle(class_linker->RegisterDexFile(
1700 dex_file,
Mathieu Chartierf284d442016-06-02 11:48:30 -07001701 class_loader.Get())));
Andreas Gampefa4333d2017-02-14 11:10:34 -08001702 ObjPtr<mirror::Class> klass = (dex_cache != nullptr)
Vladimir Marko666ee3d2017-12-11 18:37:36 +00001703 ? class_linker->ResolveType(dex::TypeIndex(type_idx), dex_cache, class_loader)
Vladimir Markocd556b02017-02-03 11:47:34 +00001704 : nullptr;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001705
Mathieu Chartier90443472015-07-16 20:32:27 -07001706 if (klass == nullptr) {
1707 soa.Self()->AssertPendingException();
1708 mirror::Throwable* exception = soa.Self()->GetException();
1709 VLOG(compiler) << "Exception during type resolution: " << exception->Dump();
1710 if (exception->GetClass()->DescriptorEquals("Ljava/lang/OutOfMemoryError;")) {
1711 // There's little point continuing compilation if the heap is exhausted.
1712 LOG(FATAL) << "Out of memory during type resolution for compilation";
1713 }
1714 soa.Self()->ClearException();
Ian Rogersa436fde2013-08-27 23:34:06 -07001715 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001716 }
Mathieu Chartier90443472015-07-16 20:32:27 -07001717
1718 private:
1719 const ParallelCompilationManager* const manager_;
1720};
Brian Carlstrom7940e442013-07-12 13:46:57 -07001721
Andreas Gampeace0dc12016-01-20 13:33:13 -08001722void CompilerDriver::ResolveDexFile(jobject class_loader,
1723 const DexFile& dex_file,
Andreas Gampede7b4362014-07-28 18:38:57 -07001724 const std::vector<const DexFile*>& dex_files,
Andreas Gampeace0dc12016-01-20 13:33:13 -08001725 ThreadPool* thread_pool,
1726 size_t thread_count,
1727 TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001728 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
1729
1730 // TODO: we could resolve strings here, although the string table is largely filled with class
1731 // and method names.
1732
Andreas Gampede7b4362014-07-28 18:38:57 -07001733 ParallelCompilationManager context(class_linker, class_loader, this, &dex_file, dex_files,
1734 thread_pool);
Vladimir Markoaad75c62016-10-03 08:46:48 +00001735 if (GetCompilerOptions().IsBootImage()) {
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001736 // For images we resolve all types, such as array, whereas for applications just those with
1737 // classdefs are resolved by ResolveClassFieldsAndMethods.
Mathieu Chartierf5997b42014-06-20 10:37:54 -07001738 TimingLogger::ScopedTiming t("Resolve Types", timings);
Mathieu Chartier90443472015-07-16 20:32:27 -07001739 ResolveTypeVisitor visitor(&context);
Andreas Gampeace0dc12016-01-20 13:33:13 -08001740 context.ForAll(0, dex_file.NumTypeIds(), &visitor, thread_count);
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001741 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001742
Mathieu Chartierf5997b42014-06-20 10:37:54 -07001743 TimingLogger::ScopedTiming t("Resolve MethodsAndFields", timings);
Mathieu Chartier90443472015-07-16 20:32:27 -07001744 ResolveClassFieldsAndMethodsVisitor visitor(&context);
Andreas Gampeace0dc12016-01-20 13:33:13 -08001745 context.ForAll(0, dex_file.NumClassDefs(), &visitor, thread_count);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001746}
1747
Andreas Gampeace0dc12016-01-20 13:33:13 -08001748void CompilerDriver::SetVerified(jobject class_loader,
1749 const std::vector<const DexFile*>& dex_files,
1750 TimingLogger* timings) {
1751 // This can be run in parallel.
Mathieu Chartier90443472015-07-16 20:32:27 -07001752 for (const DexFile* dex_file : dex_files) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001753 CHECK(dex_file != nullptr);
Andreas Gampeace0dc12016-01-20 13:33:13 -08001754 SetVerifiedDexFile(class_loader,
1755 *dex_file,
1756 dex_files,
1757 parallel_thread_pool_.get(),
1758 parallel_thread_count_,
1759 timings);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001760 }
1761}
1762
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001763static void LoadAndUpdateStatus(const ClassAccessor& accessor,
Vladimir Marko2c64a832018-01-04 11:31:56 +00001764 ClassStatus status,
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001765 Handle<mirror::ClassLoader> class_loader,
1766 Thread* self)
1767 REQUIRES_SHARED(Locks::mutator_lock_) {
1768 StackHandleScope<1> hs(self);
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001769 const char* descriptor = accessor.GetDescriptor();
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001770 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
1771 Handle<mirror::Class> cls(hs.NewHandle<mirror::Class>(
1772 class_linker->FindClass(self, descriptor, class_loader)));
Andreas Gampefa4333d2017-02-14 11:10:34 -08001773 if (cls != nullptr) {
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001774 // Check that the class is resolved with the current dex file. We might get
1775 // a boot image class, or a class in a different dex file for multidex, and
1776 // we should not update the status in that case.
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001777 if (&cls->GetDexFile() == &accessor.GetDexFile()) {
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001778 ObjectLock<mirror::Class> lock(self, cls);
1779 mirror::Class::SetStatus(cls, status, self);
1780 }
1781 } else {
1782 DCHECK(self->IsExceptionPending());
1783 self->ClearException();
1784 }
1785}
1786
Nicolas Geoffray74981052017-01-16 17:54:09 +00001787bool CompilerDriver::FastVerify(jobject jclass_loader,
1788 const std::vector<const DexFile*>& dex_files,
1789 TimingLogger* timings) {
Nicolas Geoffrayb0bbe8e2016-11-19 10:42:37 +00001790 verifier::VerifierDeps* verifier_deps =
1791 Runtime::Current()->GetCompilerCallbacks()->GetVerifierDeps();
Mathieu Chartier72041a02017-07-14 18:23:25 -07001792 // If there exist VerifierDeps that aren't the ones we just created to output, use them to verify.
1793 if (verifier_deps == nullptr || verifier_deps->OutputOnly()) {
Nicolas Geoffray74981052017-01-16 17:54:09 +00001794 return false;
1795 }
1796 TimingLogger::ScopedTiming t("Fast Verify", timings);
1797 ScopedObjectAccess soa(Thread::Current());
1798 StackHandleScope<2> hs(soa.Self());
1799 Handle<mirror::ClassLoader> class_loader(
1800 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader)));
Nicolas Geoffray74981052017-01-16 17:54:09 +00001801 if (!verifier_deps->ValidateDependencies(class_loader, soa.Self())) {
1802 return false;
1803 }
1804
Nicolas Geoffray49cda062017-04-21 13:08:25 +01001805 bool compiler_only_verifies = !GetCompilerOptions().IsAnyCompilationEnabled();
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001806
Nicolas Geoffray74981052017-01-16 17:54:09 +00001807 // We successfully validated the dependencies, now update class status
1808 // of verified classes. Note that the dependencies also record which classes
1809 // could not be fully verified; we could try again, but that would hurt verification
1810 // time. So instead we assume these classes still need to be verified at
1811 // runtime.
1812 for (const DexFile* dex_file : dex_files) {
Mathieu Chartierbf755fe2017-08-01 13:42:56 -07001813 // Fetch the list of unverified classes.
1814 const std::set<dex::TypeIndex>& unverified_classes =
Nicolas Geoffray74981052017-01-16 17:54:09 +00001815 verifier_deps->GetUnverifiedClasses(*dex_file);
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001816 for (ClassAccessor accessor : dex_file->GetClasses()) {
1817 if (unverified_classes.find(accessor.GetClassIdx()) == unverified_classes.end()) {
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001818 if (compiler_only_verifies) {
Nicolas Geoffray74981052017-01-16 17:54:09 +00001819 // Just update the compiled_classes_ map. The compiler doesn't need to resolve
1820 // the type.
Mathieu Chartier18e26872018-06-04 17:19:02 -07001821 ClassReference ref(dex_file, accessor.GetClassDefIndex());
Mathieu Chartier2eabc612018-05-25 14:31:16 -07001822 const ClassStatus existing = ClassStatus::kNotReady;
Mathieu Chartier1a088d42017-07-18 11:43:57 -07001823 ClassStateTable::InsertResult result =
Vladimir Marko2c64a832018-01-04 11:31:56 +00001824 compiled_classes_.Insert(ref, existing, ClassStatus::kVerified);
Mathieu Chartier2eabc612018-05-25 14:31:16 -07001825 CHECK_EQ(result, ClassStateTable::kInsertResultSuccess) << ref.dex_file->GetLocation();
Nicolas Geoffray74981052017-01-16 17:54:09 +00001826 } else {
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001827 // Update the class status, so later compilation stages know they don't need to verify
Nicolas Geoffray74981052017-01-16 17:54:09 +00001828 // the class.
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001829 LoadAndUpdateStatus(accessor, ClassStatus::kVerified, class_loader, soa.Self());
Nicolas Geoffray74981052017-01-16 17:54:09 +00001830 // Create `VerifiedMethod`s for each methods, the compiler expects one for
1831 // quickening or compiling.
1832 // Note that this means:
1833 // - We're only going to compile methods that did verify.
1834 // - Quickening will not do checkcast ellision.
1835 // TODO(ngeoffray): Reconsider this once we refactor compiler filters.
Mathieu Chartier0d896bd2018-05-25 00:20:27 -07001836 for (const ClassAccessor::Method& method : accessor.GetMethods()) {
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001837 verification_results_->CreateVerifiedMethodFor(method.GetReference());
Mathieu Chartier0d896bd2018-05-25 00:20:27 -07001838 }
Nicolas Geoffray6bb7f1b2016-11-03 10:52:49 +00001839 }
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001840 } else if (!compiler_only_verifies) {
1841 // Make sure later compilation stages know they should not try to verify
1842 // this class again.
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001843 LoadAndUpdateStatus(accessor,
Vladimir Marko2c64a832018-01-04 11:31:56 +00001844 ClassStatus::kRetryVerificationAtRuntime,
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001845 class_loader,
1846 soa.Self());
Nicolas Geoffray6bb7f1b2016-11-03 10:52:49 +00001847 }
Nicolas Geoffray6bb7f1b2016-11-03 10:52:49 +00001848 }
1849 }
Nicolas Geoffray74981052017-01-16 17:54:09 +00001850 return true;
1851}
1852
1853void CompilerDriver::Verify(jobject jclass_loader,
1854 const std::vector<const DexFile*>& dex_files,
1855 TimingLogger* timings) {
1856 if (FastVerify(jclass_loader, dex_files, timings)) {
1857 return;
1858 }
Nicolas Geoffray6bb7f1b2016-11-03 10:52:49 +00001859
Nicolas Geoffrayb0bbe8e2016-11-19 10:42:37 +00001860 // If there is no existing `verifier_deps` (because of non-existing vdex), or
1861 // the existing `verifier_deps` is not valid anymore, create a new one for
Nicolas Geoffray6bb7f1b2016-11-03 10:52:49 +00001862 // non boot image compilation. The verifier will need it to record the new dependencies.
1863 // Then dex2oat can update the vdex file with these new dependencies.
1864 if (!GetCompilerOptions().IsBootImage()) {
Mathieu Chartier72041a02017-07-14 18:23:25 -07001865 // Dex2oat creates the verifier deps.
Nicolas Geoffray340dafa2016-11-18 16:03:10 +00001866 // Create the main VerifierDeps, and set it to this thread.
Mathieu Chartier72041a02017-07-14 18:23:25 -07001867 verifier::VerifierDeps* verifier_deps =
1868 Runtime::Current()->GetCompilerCallbacks()->GetVerifierDeps();
1869 CHECK(verifier_deps != nullptr);
Nicolas Geoffrayb0bbe8e2016-11-19 10:42:37 +00001870 Thread::Current()->SetVerifierDeps(verifier_deps);
Nicolas Geoffray340dafa2016-11-18 16:03:10 +00001871 // Create per-thread VerifierDeps to avoid contention on the main one.
1872 // We will merge them after verification.
1873 for (ThreadPoolWorker* worker : parallel_thread_pool_->GetWorkers()) {
Vladimir Marko213ee2d2018-06-22 11:56:34 +01001874 worker->GetThread()->SetVerifierDeps(
1875 new verifier::VerifierDeps(GetCompilerOptions().GetDexFilesForOatFile()));
Nicolas Geoffray340dafa2016-11-18 16:03:10 +00001876 }
Nicolas Geoffray6bb7f1b2016-11-03 10:52:49 +00001877 }
Nicolas Geoffray74981052017-01-16 17:54:09 +00001878
Nicolas Geoffray46847392017-04-28 14:56:39 +01001879 // Verification updates VerifierDeps and needs to run single-threaded to be deterministic.
1880 bool force_determinism = GetCompilerOptions().IsForceDeterminism();
1881 ThreadPool* verify_thread_pool =
1882 force_determinism ? single_thread_pool_.get() : parallel_thread_pool_.get();
1883 size_t verify_thread_count = force_determinism ? 1U : parallel_thread_count_;
Mathieu Chartier90443472015-07-16 20:32:27 -07001884 for (const DexFile* dex_file : dex_files) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001885 CHECK(dex_file != nullptr);
Nicolas Geoffray6bb7f1b2016-11-03 10:52:49 +00001886 VerifyDexFile(jclass_loader,
Andreas Gampeace0dc12016-01-20 13:33:13 -08001887 *dex_file,
1888 dex_files,
Nicolas Geoffray46847392017-04-28 14:56:39 +01001889 verify_thread_pool,
1890 verify_thread_count,
Andreas Gampeace0dc12016-01-20 13:33:13 -08001891 timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001892 }
Nicolas Geoffray340dafa2016-11-18 16:03:10 +00001893
1894 if (!GetCompilerOptions().IsBootImage()) {
Nicolas Geoffray340dafa2016-11-18 16:03:10 +00001895 // Merge all VerifierDeps into the main one.
Nicolas Geoffray74981052017-01-16 17:54:09 +00001896 verifier::VerifierDeps* verifier_deps = Thread::Current()->GetVerifierDeps();
Nicolas Geoffray340dafa2016-11-18 16:03:10 +00001897 for (ThreadPoolWorker* worker : parallel_thread_pool_->GetWorkers()) {
1898 verifier::VerifierDeps* thread_deps = worker->GetThread()->GetVerifierDeps();
1899 worker->GetThread()->SetVerifierDeps(nullptr);
Vladimir Marko213ee2d2018-06-22 11:56:34 +01001900 verifier_deps->MergeWith(*thread_deps, GetCompilerOptions().GetDexFilesForOatFile());
Nicolas Geoffray340dafa2016-11-18 16:03:10 +00001901 delete thread_deps;
1902 }
1903 Thread::Current()->SetVerifierDeps(nullptr);
1904 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001905}
1906
Mathieu Chartier90443472015-07-16 20:32:27 -07001907class VerifyClassVisitor : public CompilationVisitor {
1908 public:
Andreas Gampe5fd66d02016-09-12 20:22:19 -07001909 VerifyClassVisitor(const ParallelCompilationManager* manager, verifier::HardFailLogMode log_level)
Andreas Gampe6cc23ac2018-08-24 15:22:43 -07001910 : manager_(manager),
1911 log_level_(log_level),
1912 sdk_version_(Runtime::Current()->GetTargetSdkVersion()) {}
Brian Carlstrom7940e442013-07-12 13:46:57 -07001913
Roland Levillainf73caca2018-08-24 17:19:07 +01001914 void Visit(size_t class_def_index) REQUIRES(!Locks::mutator_lock_) override {
Andreas Gampe9b827ab2017-12-07 19:32:48 -08001915 ScopedTrace trace(__FUNCTION__);
Mathieu Chartier90443472015-07-16 20:32:27 -07001916 ScopedObjectAccess soa(Thread::Current());
1917 const DexFile& dex_file = *manager_->GetDexFile();
1918 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
1919 const char* descriptor = dex_file.GetClassDescriptor(class_def);
1920 ClassLinker* class_linker = manager_->GetClassLinker();
1921 jobject jclass_loader = manager_->GetClassLoader();
1922 StackHandleScope<3> hs(soa.Self());
1923 Handle<mirror::ClassLoader> class_loader(
Mathieu Chartier0795f232016-09-27 18:43:30 -07001924 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader)));
Mathieu Chartier90443472015-07-16 20:32:27 -07001925 Handle<mirror::Class> klass(
1926 hs.NewHandle(class_linker->FindClass(soa.Self(), descriptor, class_loader)));
Andreas Gampe6d7abbd2017-04-24 13:19:09 -07001927 verifier::FailureKind failure_kind;
Andreas Gampefa4333d2017-02-14 11:10:34 -08001928 if (klass == nullptr) {
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001929 CHECK(soa.Self()->IsExceptionPending());
1930 soa.Self()->ClearException();
Mathieu Chartier90443472015-07-16 20:32:27 -07001931
1932 /*
1933 * At compile time, we can still structurally verify the class even if FindClass fails.
1934 * This is to ensure the class is structurally sound for compilation. An unsound class
1935 * will be rejected by the verifier and later skipped during compilation in the compiler.
1936 */
Mathieu Chartier673ed3d2015-08-28 14:56:43 -07001937 Handle<mirror::DexCache> dex_cache(hs.NewHandle(class_linker->FindDexCache(
Vladimir Markocd556b02017-02-03 11:47:34 +00001938 soa.Self(), dex_file)));
Mathieu Chartier90443472015-07-16 20:32:27 -07001939 std::string error_msg;
Nicolas Geoffray08025182016-10-25 17:20:18 +01001940 failure_kind =
1941 verifier::MethodVerifier::VerifyClass(soa.Self(),
Andreas Gampeec6e6c12015-11-05 20:39:56 -08001942 &dex_file,
1943 dex_cache,
1944 class_loader,
David Brazdil15fc7292016-09-02 14:13:18 +01001945 class_def,
Andreas Gampe53e32d12015-12-09 21:03:23 -08001946 Runtime::Current()->GetCompilerCallbacks(),
Andreas Gampeec6e6c12015-11-05 20:39:56 -08001947 true /* allow soft failures */,
Andreas Gampe7fe30232016-03-25 16:58:00 -07001948 log_level_,
Andreas Gampe6cc23ac2018-08-24 15:22:43 -07001949 sdk_version_,
Nicolas Geoffray08025182016-10-25 17:20:18 +01001950 &error_msg);
Andreas Gampe6d7abbd2017-04-24 13:19:09 -07001951 if (failure_kind == verifier::FailureKind::kHardFailure) {
Mathieu Chartier90443472015-07-16 20:32:27 -07001952 LOG(ERROR) << "Verification failed on class " << PrettyDescriptor(descriptor)
1953 << " because: " << error_msg;
1954 manager_->GetCompiler()->SetHadHardVerifierFailure();
Andreas Gampef39208f2017-10-19 15:06:59 -07001955 } else if (failure_kind == verifier::FailureKind::kSoftFailure) {
1956 manager_->GetCompiler()->AddSoftVerifierFailure();
Nicolas Geoffray7cc3ae52017-03-07 14:33:37 +00001957 } else {
1958 // Force a soft failure for the VerifierDeps. This is a sanity measure, as
1959 // the vdex file already records that the class hasn't been resolved. It avoids
1960 // trying to do future verification optimizations when processing the vdex file.
Andreas Gampef39208f2017-10-19 15:06:59 -07001961 DCHECK(failure_kind == verifier::FailureKind::kNoFailure) << failure_kind;
Andreas Gampe6d7abbd2017-04-24 13:19:09 -07001962 failure_kind = verifier::FailureKind::kSoftFailure;
Mathieu Chartier90443472015-07-16 20:32:27 -07001963 }
Andreas Gampebb30d5d2018-04-23 09:59:25 -07001964 } else if (&klass->GetDexFile() != &dex_file) {
1965 // Skip a duplicate class (as the resolved class is from another, earlier dex file).
1966 return; // Do not update state.
Mathieu Chartier90443472015-07-16 20:32:27 -07001967 } else if (!SkipClass(jclass_loader, dex_file, klass.Get())) {
David Sehr709b0702016-10-13 09:12:37 -07001968 CHECK(klass->IsResolved()) << klass->PrettyClass();
Nicolas Geoffray08025182016-10-25 17:20:18 +01001969 failure_kind = class_linker->VerifyClass(soa.Self(), klass, log_level_);
Mathieu Chartier90443472015-07-16 20:32:27 -07001970
1971 if (klass->IsErroneous()) {
1972 // ClassLinker::VerifyClass throws, which isn't useful in the compiler.
1973 CHECK(soa.Self()->IsExceptionPending());
1974 soa.Self()->ClearException();
1975 manager_->GetCompiler()->SetHadHardVerifierFailure();
Andreas Gampef39208f2017-10-19 15:06:59 -07001976 } else if (failure_kind == verifier::FailureKind::kSoftFailure) {
1977 manager_->GetCompiler()->AddSoftVerifierFailure();
Mathieu Chartier90443472015-07-16 20:32:27 -07001978 }
1979
Nicolas Geoffray7cc3ae52017-03-07 14:33:37 +00001980 CHECK(klass->ShouldVerifyAtRuntime() || klass->IsVerified() || klass->IsErroneous())
David Sehr709b0702016-10-13 09:12:37 -07001981 << klass->PrettyDescriptor() << ": state=" << klass->GetStatus();
Mathieu Chartier90443472015-07-16 20:32:27 -07001982
Nicolas Geoffrayc7da1d62017-04-19 09:36:24 +01001983 // Class has a meaningful status for the compiler now, record it.
1984 ClassReference ref(manager_->GetDexFile(), class_def_index);
1985 manager_->GetCompiler()->RecordClassStatus(ref, klass->GetStatus());
1986
Andreas Gamped278cb42017-11-22 14:13:00 -08001987 // It is *very* problematic if there are resolution errors in the boot classpath.
1988 //
1989 // It is also bad if classes fail verification. For example, we rely on things working
1990 // OK without verification when the decryption dialog is brought up. It is thus highly
1991 // recommended to compile the boot classpath with
1992 // --abort-on-hard-verifier-error --abort-on-soft-verifier-error
1993 // which is the default build system configuration.
Narayan Kamathe3eae5e2016-10-27 11:47:30 +01001994 if (kIsDebugBuild) {
Orion Hodsonc5e0d3f2017-08-22 19:00:04 +01001995 if (manager_->GetCompiler()->GetCompilerOptions().IsBootImage()) {
Andreas Gamped278cb42017-11-22 14:13:00 -08001996 if (!klass->IsResolved() || klass->IsErroneous()) {
Andreas Gampe12fadcd2017-08-03 05:06:28 -07001997 LOG(FATAL) << "Boot classpath class " << klass->PrettyClass()
Andreas Gamped278cb42017-11-22 14:13:00 -08001998 << " failed to resolve/is erroneous: state= " << klass->GetStatus();
1999 UNREACHABLE();
Andreas Gampe12fadcd2017-08-03 05:06:28 -07002000 }
Narayan Kamathe3eae5e2016-10-27 11:47:30 +01002001 }
Nicolas Geoffray7cc3ae52017-03-07 14:33:37 +00002002 if (klass->IsVerified()) {
Andreas Gampe6d7abbd2017-04-24 13:19:09 -07002003 DCHECK_EQ(failure_kind, verifier::FailureKind::kNoFailure);
Nicolas Geoffray7cc3ae52017-03-07 14:33:37 +00002004 } else if (klass->ShouldVerifyAtRuntime()) {
Andreas Gampe6d7abbd2017-04-24 13:19:09 -07002005 DCHECK_EQ(failure_kind, verifier::FailureKind::kSoftFailure);
Nicolas Geoffray7cc3ae52017-03-07 14:33:37 +00002006 } else {
Andreas Gampe6d7abbd2017-04-24 13:19:09 -07002007 DCHECK_EQ(failure_kind, verifier::FailureKind::kHardFailure);
Nicolas Geoffray7cc3ae52017-03-07 14:33:37 +00002008 }
Narayan Kamathe3eae5e2016-10-27 11:47:30 +01002009 }
Nicolas Geoffray08025182016-10-25 17:20:18 +01002010 } else {
2011 // Make the skip a soft failure, essentially being considered as verify at runtime.
Andreas Gampe6d7abbd2017-04-24 13:19:09 -07002012 failure_kind = verifier::FailureKind::kSoftFailure;
Ian Rogerse6bb3b22013-08-19 21:51:45 -07002013 }
Nicolas Geoffray08025182016-10-25 17:20:18 +01002014 verifier::VerifierDeps::MaybeRecordVerificationStatus(
2015 dex_file, class_def.class_idx_, failure_kind);
Mathieu Chartier90443472015-07-16 20:32:27 -07002016 soa.Self()->AssertNoPendingException();
Brian Carlstrom7940e442013-07-12 13:46:57 -07002017 }
Mathieu Chartier90443472015-07-16 20:32:27 -07002018
2019 private:
2020 const ParallelCompilationManager* const manager_;
Andreas Gampe5fd66d02016-09-12 20:22:19 -07002021 const verifier::HardFailLogMode log_level_;
Andreas Gampe6cc23ac2018-08-24 15:22:43 -07002022 const uint32_t sdk_version_;
Mathieu Chartier90443472015-07-16 20:32:27 -07002023};
Brian Carlstrom7940e442013-07-12 13:46:57 -07002024
Andreas Gampeace0dc12016-01-20 13:33:13 -08002025void CompilerDriver::VerifyDexFile(jobject class_loader,
2026 const DexFile& dex_file,
Andreas Gampede7b4362014-07-28 18:38:57 -07002027 const std::vector<const DexFile*>& dex_files,
Andreas Gampeace0dc12016-01-20 13:33:13 -08002028 ThreadPool* thread_pool,
2029 size_t thread_count,
2030 TimingLogger* timings) {
Mathieu Chartierf5997b42014-06-20 10:37:54 -07002031 TimingLogger::ScopedTiming t("Verify Dex File", timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002032 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Andreas Gampede7b4362014-07-28 18:38:57 -07002033 ParallelCompilationManager context(class_linker, class_loader, this, &dex_file, dex_files,
2034 thread_pool);
Andreas Gampef39208f2017-10-19 15:06:59 -07002035 bool abort_on_verifier_failures = GetCompilerOptions().AbortOnHardVerifierFailure()
2036 || GetCompilerOptions().AbortOnSoftVerifierFailure();
2037 verifier::HardFailLogMode log_level = abort_on_verifier_failures
Andreas Gampe5fd66d02016-09-12 20:22:19 -07002038 ? verifier::HardFailLogMode::kLogInternalFatal
2039 : verifier::HardFailLogMode::kLogWarning;
Andreas Gampe7fe30232016-03-25 16:58:00 -07002040 VerifyClassVisitor visitor(&context, log_level);
Andreas Gampeace0dc12016-01-20 13:33:13 -08002041 context.ForAll(0, dex_file.NumClassDefs(), &visitor, thread_count);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002042}
2043
Mathieu Chartier90443472015-07-16 20:32:27 -07002044class SetVerifiedClassVisitor : public CompilationVisitor {
2045 public:
2046 explicit SetVerifiedClassVisitor(const ParallelCompilationManager* manager) : manager_(manager) {}
2047
Roland Levillainf73caca2018-08-24 17:19:07 +01002048 void Visit(size_t class_def_index) REQUIRES(!Locks::mutator_lock_) override {
Andreas Gampe9b827ab2017-12-07 19:32:48 -08002049 ScopedTrace trace(__FUNCTION__);
Mathieu Chartier90443472015-07-16 20:32:27 -07002050 ScopedObjectAccess soa(Thread::Current());
2051 const DexFile& dex_file = *manager_->GetDexFile();
2052 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
2053 const char* descriptor = dex_file.GetClassDescriptor(class_def);
2054 ClassLinker* class_linker = manager_->GetClassLinker();
2055 jobject jclass_loader = manager_->GetClassLoader();
2056 StackHandleScope<3> hs(soa.Self());
2057 Handle<mirror::ClassLoader> class_loader(
Mathieu Chartier0795f232016-09-27 18:43:30 -07002058 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader)));
Mathieu Chartier90443472015-07-16 20:32:27 -07002059 Handle<mirror::Class> klass(
2060 hs.NewHandle(class_linker->FindClass(soa.Self(), descriptor, class_loader)));
2061 // Class might have failed resolution. Then don't set it to verified.
Andreas Gampefa4333d2017-02-14 11:10:34 -08002062 if (klass != nullptr) {
Mathieu Chartier90443472015-07-16 20:32:27 -07002063 // Only do this if the class is resolved. If even resolution fails, quickening will go very,
2064 // very wrong.
Vladimir Marko72ab6842017-01-20 19:32:50 +00002065 if (klass->IsResolved() && !klass->IsErroneousResolved()) {
Vladimir Marko2c64a832018-01-04 11:31:56 +00002066 if (klass->GetStatus() < ClassStatus::kVerified) {
Mathieu Chartier90443472015-07-16 20:32:27 -07002067 ObjectLock<mirror::Class> lock(soa.Self(), klass);
2068 // Set class status to verified.
Vladimir Marko2c64a832018-01-04 11:31:56 +00002069 mirror::Class::SetStatus(klass, ClassStatus::kVerified, soa.Self());
Mathieu Chartier90443472015-07-16 20:32:27 -07002070 // Mark methods as pre-verified. If we don't do this, the interpreter will run with
2071 // access checks.
Vladimir Markoa0431112018-06-25 09:32:54 +01002072 InstructionSet instruction_set =
2073 manager_->GetCompiler()->GetCompilerOptions().GetInstructionSet();
2074 klass->SetSkipAccessChecksFlagOnAllMethods(GetInstructionSetPointerSize(instruction_set));
Igor Murashkindf707e42016-02-02 16:56:50 -08002075 klass->SetVerificationAttempted();
Mathieu Chartier90443472015-07-16 20:32:27 -07002076 }
2077 // Record the final class status if necessary.
2078 ClassReference ref(manager_->GetDexFile(), class_def_index);
2079 manager_->GetCompiler()->RecordClassStatus(ref, klass->GetStatus());
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002080 }
Mathieu Chartier90443472015-07-16 20:32:27 -07002081 } else {
2082 Thread* self = soa.Self();
2083 DCHECK(self->IsExceptionPending());
2084 self->ClearException();
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002085 }
2086 }
Mathieu Chartier90443472015-07-16 20:32:27 -07002087
2088 private:
2089 const ParallelCompilationManager* const manager_;
2090};
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002091
Andreas Gampeace0dc12016-01-20 13:33:13 -08002092void CompilerDriver::SetVerifiedDexFile(jobject class_loader,
2093 const DexFile& dex_file,
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002094 const std::vector<const DexFile*>& dex_files,
Andreas Gampeace0dc12016-01-20 13:33:13 -08002095 ThreadPool* thread_pool,
2096 size_t thread_count,
2097 TimingLogger* timings) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002098 TimingLogger::ScopedTiming t("Verify Dex File", timings);
Mathieu Chartier1a088d42017-07-18 11:43:57 -07002099 if (!compiled_classes_.HaveDexFile(&dex_file)) {
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002100 compiled_classes_.AddDexFile(&dex_file);
Mathieu Chartier1a088d42017-07-18 11:43:57 -07002101 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002102 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
2103 ParallelCompilationManager context(class_linker, class_loader, this, &dex_file, dex_files,
2104 thread_pool);
Mathieu Chartier90443472015-07-16 20:32:27 -07002105 SetVerifiedClassVisitor visitor(&context);
Andreas Gampeace0dc12016-01-20 13:33:13 -08002106 context.ForAll(0, dex_file.NumClassDefs(), &visitor, thread_count);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002107}
2108
Mathieu Chartier90443472015-07-16 20:32:27 -07002109class InitializeClassVisitor : public CompilationVisitor {
2110 public:
2111 explicit InitializeClassVisitor(const ParallelCompilationManager* manager) : manager_(manager) {}
Ian Rogersfc0e94b2013-09-23 23:51:32 -07002112
Roland Levillainbbc6e7e2018-08-24 16:58:47 +01002113 void Visit(size_t class_def_index) override {
Andreas Gampe9b827ab2017-12-07 19:32:48 -08002114 ScopedTrace trace(__FUNCTION__);
Mathieu Chartier90443472015-07-16 20:32:27 -07002115 jobject jclass_loader = manager_->GetClassLoader();
2116 const DexFile& dex_file = *manager_->GetDexFile();
2117 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
2118 const DexFile::TypeId& class_type_id = dex_file.GetTypeId(class_def.class_idx_);
2119 const char* descriptor = dex_file.StringDataByIdx(class_type_id.descriptor_idx_);
Jeff Hao0e49b422013-11-08 12:16:56 -08002120
Mathieu Chartier90443472015-07-16 20:32:27 -07002121 ScopedObjectAccess soa(Thread::Current());
2122 StackHandleScope<3> hs(soa.Self());
2123 Handle<mirror::ClassLoader> class_loader(
Mathieu Chartier0795f232016-09-27 18:43:30 -07002124 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader)));
Mathieu Chartier90443472015-07-16 20:32:27 -07002125 Handle<mirror::Class> klass(
2126 hs.NewHandle(manager_->GetClassLinker()->FindClass(soa.Self(), descriptor, class_loader)));
2127
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002128 if (klass != nullptr && !SkipClass(manager_->GetClassLoader(), dex_file, klass.Get())) {
2129 TryInitializeClass(klass, class_loader);
2130 }
2131 // Clear any class not found or verification exceptions.
2132 soa.Self()->ClearException();
2133 }
2134
2135 // A helper function for initializing klass.
2136 void TryInitializeClass(Handle<mirror::Class> klass, Handle<mirror::ClassLoader>& class_loader)
2137 REQUIRES_SHARED(Locks::mutator_lock_) {
2138 const DexFile& dex_file = klass->GetDexFile();
2139 const DexFile::ClassDef* class_def = klass->GetClassDef();
2140 const DexFile::TypeId& class_type_id = dex_file.GetTypeId(class_def->class_idx_);
2141 const char* descriptor = dex_file.StringDataByIdx(class_type_id.descriptor_idx_);
2142 ScopedObjectAccessUnchecked soa(Thread::Current());
2143 StackHandleScope<3> hs(soa.Self());
Mathieu Chartierdabeb3a2017-06-12 17:10:07 -07002144 const bool is_boot_image = manager_->GetCompiler()->GetCompilerOptions().IsBootImage();
Mathieu Chartier17498e52017-06-13 11:35:04 -07002145 const bool is_app_image = manager_->GetCompiler()->GetCompilerOptions().IsAppImage();
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002146
Vladimir Marko2c64a832018-01-04 11:31:56 +00002147 ClassStatus old_status = klass->GetStatus();
Mathieu Chartier1a088d42017-07-18 11:43:57 -07002148 // Don't initialize classes in boot space when compiling app image
2149 if (is_app_image && klass->IsBootStrapClassLoaded()) {
2150 // Also return early and don't store the class status in the recorded class status.
2151 return;
2152 }
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002153 // Only try to initialize classes that were successfully verified.
2154 if (klass->IsVerified()) {
2155 // Attempt to initialize the class but bail if we either need to initialize the super-class
2156 // or static fields.
Nicolas Geoffrayabadf022017-08-03 08:25:41 +00002157 manager_->GetClassLinker()->EnsureInitialized(soa.Self(), klass, false, false);
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002158 old_status = klass->GetStatus();
2159 if (!klass->IsInitialized()) {
2160 // We don't want non-trivial class initialization occurring on multiple threads due to
2161 // deadlock problems. For example, a parent class is initialized (holding its lock) that
2162 // refers to a sub-class in its static/class initializer causing it to try to acquire the
2163 // sub-class' lock. While on a second thread the sub-class is initialized (holding its lock)
2164 // after first initializing its parents, whose locks are acquired. This leads to a
2165 // parent-to-child and a child-to-parent lock ordering and consequent potential deadlock.
2166 // We need to use an ObjectLock due to potential suspension in the interpreting code. Rather
2167 // than use a special Object for the purpose we use the Class of java.lang.Class.
2168 Handle<mirror::Class> h_klass(hs.NewHandle(klass->GetClass()));
2169 ObjectLock<mirror::Class> lock(soa.Self(), h_klass);
2170 // Attempt to initialize allowing initialization of parent classes but still not static
2171 // fields.
Chang Xinge602b1c2017-06-30 11:55:01 -07002172 // Initialize dependencies first only for app image, to make TryInitialize recursive.
2173 bool is_superclass_initialized = !is_app_image ? true :
2174 InitializeDependencies(klass, class_loader, soa.Self());
2175 if (!is_app_image || (is_app_image && is_superclass_initialized)) {
Nicolas Geoffrayabadf022017-08-03 08:25:41 +00002176 manager_->GetClassLinker()->EnsureInitialized(soa.Self(), klass, false, true);
Chang Xinge602b1c2017-06-30 11:55:01 -07002177 }
2178 // Otherwise it's in app image but superclasses can't be initialized, no need to proceed.
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002179 old_status = klass->GetStatus();
Chang Xing70f689d2017-06-08 17:16:12 -07002180
Chris Wailes0c61be42018-09-26 17:27:34 -07002181 bool too_many_encoded_fields = !is_boot_image &&
2182 klass->NumStaticFields() > kMaxEncodedFields;
2183
Mathieu Chartierdabeb3a2017-06-12 17:10:07 -07002184 // If the class was not initialized, we can proceed to see if we can initialize static
Chang Xing70f689d2017-06-08 17:16:12 -07002185 // fields. Limit the max number of encoded fields.
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002186 if (!klass->IsInitialized() &&
Mathieu Chartier17498e52017-06-13 11:35:04 -07002187 (is_app_image || is_boot_image) &&
Chang Xinge602b1c2017-06-30 11:55:01 -07002188 is_superclass_initialized &&
Chang Xing70f689d2017-06-08 17:16:12 -07002189 !too_many_encoded_fields &&
Vladimir Markodc4bcce2018-06-21 16:15:42 +01002190 manager_->GetCompiler()->GetCompilerOptions().IsImageClass(descriptor)) {
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002191 bool can_init_static_fields = false;
Mathieu Chartierdabeb3a2017-06-12 17:10:07 -07002192 if (is_boot_image) {
Mathieu Chartier90443472015-07-16 20:32:27 -07002193 // We need to initialize static fields, we only do this for image classes that aren't
Mathieu Chartierdabeb3a2017-06-12 17:10:07 -07002194 // marked with the $NoPreloadHolder (which implies this should not be initialized
2195 // early).
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002196 can_init_static_fields = !StringPiece(descriptor).ends_with("$NoPreloadHolder;");
2197 } else {
Mathieu Chartier17498e52017-06-13 11:35:04 -07002198 CHECK(is_app_image);
Mathieu Chartierdabeb3a2017-06-12 17:10:07 -07002199 // The boot image case doesn't need to recursively initialize the dependencies with
2200 // special logic since the class linker already does this.
Mathieu Chartierdabeb3a2017-06-12 17:10:07 -07002201 can_init_static_fields =
Mathieu Chartier0933cc52018-03-23 14:25:08 -07002202 ClassLinker::kAppImageMayContainStrings &&
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002203 !soa.Self()->IsExceptionPending() &&
Nicolas Geoffrayabadf022017-08-03 08:25:41 +00002204 is_superclass_initialized &&
2205 NoClinitInDependency(klass, soa.Self(), &class_loader);
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002206 // TODO The checking for clinit can be removed since it's already
2207 // checked when init superclass. Currently keep it because it contains
2208 // processing of intern strings. Will be removed later when intern strings
2209 // and clinit are both initialized.
2210 }
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01002211
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002212 if (can_init_static_fields) {
2213 VLOG(compiler) << "Initializing: " << descriptor;
2214 // TODO multithreading support. We should ensure the current compilation thread has
2215 // exclusive access to the runtime and the transaction. To achieve this, we could use
2216 // a ReaderWriterMutex but we're holding the mutator lock so we fail mutex sanity
2217 // checks in Thread::AssertThreadSuspensionIsAllowable.
2218 Runtime* const runtime = Runtime::Current();
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002219 // Run the class initializer in transaction mode.
Chang Xing5a906fc2017-07-26 15:01:16 -07002220 runtime->EnterTransactionMode(is_app_image, klass.Get());
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002221 bool success = manager_->GetClassLinker()->EnsureInitialized(soa.Self(), klass, true,
2222 true);
2223 // TODO we detach transaction from runtime to indicate we quit the transactional
2224 // mode which prevents the GC from visiting objects modified during the transaction.
2225 // Ensure GC is not run so don't access freed objects when aborting transaction.
Andreas Gampe9e7078b2017-03-02 13:50:36 -08002226
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002227 {
2228 ScopedAssertNoThreadSuspension ants("Transaction end");
Chang Xing16d1dd82017-07-20 17:56:26 -07002229
2230 if (success) {
2231 runtime->ExitTransactionMode();
2232 DCHECK(!runtime->IsActiveTransaction());
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01002233
Chris Wailes0c61be42018-09-26 17:27:34 -07002234 if (is_boot_image) {
2235 // For boot image, we want to put the updated status in the oat class since we
2236 // can't reject the image anyways.
2237 old_status = klass->GetStatus();
2238 }
2239 } else {
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002240 CHECK(soa.Self()->IsExceptionPending());
2241 mirror::Throwable* exception = soa.Self()->GetException();
2242 VLOG(compiler) << "Initialization of " << descriptor << " aborted because of "
2243 << exception->Dump();
2244 std::ostream* file_log = manager_->GetCompiler()->
2245 GetCompilerOptions().GetInitFailureOutput();
2246 if (file_log != nullptr) {
2247 *file_log << descriptor << "\n";
2248 *file_log << exception->Dump() << "\n";
2249 }
2250 soa.Self()->ClearException();
Chang Xing605fe242017-07-20 15:57:21 -07002251 runtime->RollbackAllTransactions();
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002252 CHECK_EQ(old_status, klass->GetStatus()) << "Previous class status not restored";
2253 }
2254 }
2255
Nicolas Geoffrayabadf022017-08-03 08:25:41 +00002256 if (!success) {
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002257 // On failure, still intern strings of static fields and seen in <clinit>, as these
2258 // will be created in the zygote. This is separated from the transaction code just
2259 // above as we will allocate strings, so must be allowed to suspend.
2260 if (&klass->GetDexFile() == manager_->GetDexFile()) {
Andreas Gampe9e7078b2017-03-02 13:50:36 -08002261 InternStrings(klass, class_loader);
Mathieu Chartierdabeb3a2017-06-12 17:10:07 -07002262 } else {
2263 DCHECK(!is_boot_image) << "Boot image must have equal dex files";
Andreas Gampedbfe2542014-11-25 22:21:42 -08002264 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002265 }
2266 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002267 }
Jeff Hao0cb17282017-07-12 14:51:49 -07002268 // If the class still isn't initialized, at least try some checks that initialization
2269 // would do so they can be skipped at runtime.
2270 if (!klass->IsInitialized() &&
2271 manager_->GetClassLinker()->ValidateSuperClassDescriptors(klass)) {
Vladimir Marko2c64a832018-01-04 11:31:56 +00002272 old_status = ClassStatus::kSuperclassValidated;
Jeff Hao0cb17282017-07-12 14:51:49 -07002273 } else {
2274 soa.Self()->ClearException();
2275 }
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002276 soa.Self()->AssertNoPendingException();
Brian Carlstrom7940e442013-07-12 13:46:57 -07002277 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002278 }
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002279 // Record the final class status if necessary.
2280 ClassReference ref(&dex_file, klass->GetDexClassDefIndex());
2281 // Back up the status before doing initialization for static encoded fields,
2282 // because the static encoded branch wants to keep the status to uninitialized.
2283 manager_->GetCompiler()->RecordClassStatus(ref, old_status);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002284 }
Mathieu Chartier90443472015-07-16 20:32:27 -07002285
2286 private:
Andreas Gampe9e7078b2017-03-02 13:50:36 -08002287 void InternStrings(Handle<mirror::Class> klass, Handle<mirror::ClassLoader> class_loader)
2288 REQUIRES_SHARED(Locks::mutator_lock_) {
2289 DCHECK(manager_->GetCompiler()->GetCompilerOptions().IsBootImage());
2290 DCHECK(klass->IsVerified());
2291 DCHECK(!klass->IsInitialized());
2292
2293 StackHandleScope<1> hs(Thread::Current());
Vladimir Markoe11dd502017-12-08 14:09:45 +00002294 Handle<mirror::DexCache> dex_cache = hs.NewHandle(klass->GetDexCache());
Andreas Gampe9e7078b2017-03-02 13:50:36 -08002295 const DexFile::ClassDef* class_def = klass->GetClassDef();
2296 ClassLinker* class_linker = manager_->GetClassLinker();
2297
Andreas Gampe7bf90482017-03-02 16:41:35 -08002298 // Check encoded final field values for strings and intern.
Vladimir Markoe11dd502017-12-08 14:09:45 +00002299 annotations::RuntimeEncodedStaticFieldValueIterator value_it(dex_cache,
2300 class_loader,
Andreas Gampe9e7078b2017-03-02 13:50:36 -08002301 manager_->GetClassLinker(),
2302 *class_def);
2303 for ( ; value_it.HasNext(); value_it.Next()) {
2304 if (value_it.GetValueType() == annotations::RuntimeEncodedStaticFieldValueIterator::kString) {
2305 // Resolve the string. This will intern the string.
2306 art::ObjPtr<mirror::String> resolved = class_linker->ResolveString(
Vladimir Markoa64b52d2017-12-08 16:27:49 +00002307 dex::StringIndex(value_it.GetJavaValue().i), dex_cache);
Andreas Gampe9e7078b2017-03-02 13:50:36 -08002308 CHECK(resolved != nullptr);
2309 }
2310 }
Andreas Gampe7bf90482017-03-02 16:41:35 -08002311
2312 // Intern strings seen in <clinit>.
2313 ArtMethod* clinit = klass->FindClassInitializer(class_linker->GetImagePointerSize());
2314 if (clinit != nullptr) {
Mathieu Chartier73f21d42018-01-02 14:26:50 -08002315 for (const DexInstructionPcPair& inst : clinit->DexInstructions()) {
Mathieu Chartier2b2bef22017-10-26 17:10:19 -07002316 if (inst->Opcode() == Instruction::CONST_STRING) {
Andreas Gampe7bf90482017-03-02 16:41:35 -08002317 ObjPtr<mirror::String> s = class_linker->ResolveString(
Vladimir Markoa64b52d2017-12-08 16:27:49 +00002318 dex::StringIndex(inst->VRegB_21c()), dex_cache);
Andreas Gampe7bf90482017-03-02 16:41:35 -08002319 CHECK(s != nullptr);
Mathieu Chartier2b2bef22017-10-26 17:10:19 -07002320 } else if (inst->Opcode() == Instruction::CONST_STRING_JUMBO) {
Andreas Gampe7bf90482017-03-02 16:41:35 -08002321 ObjPtr<mirror::String> s = class_linker->ResolveString(
Vladimir Markoa64b52d2017-12-08 16:27:49 +00002322 dex::StringIndex(inst->VRegB_31c()), dex_cache);
Andreas Gampe7bf90482017-03-02 16:41:35 -08002323 CHECK(s != nullptr);
2324 }
Andreas Gampe7bf90482017-03-02 16:41:35 -08002325 }
2326 }
Andreas Gampe9e7078b2017-03-02 13:50:36 -08002327 }
2328
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002329 bool ResolveTypesOfMethods(Thread* self, ArtMethod* m)
2330 REQUIRES_SHARED(Locks::mutator_lock_) {
Vladimir Markob45528c2017-07-27 14:14:28 +01002331 // Return value of ResolveReturnType() is discarded because resolve will be done internally.
2332 ObjPtr<mirror::Class> rtn_type = m->ResolveReturnType();
Mathieu Chartier7a8bcfd2017-06-13 13:40:43 -07002333 if (rtn_type == nullptr) {
2334 self->ClearException();
2335 return false;
2336 }
2337 const DexFile::TypeList* types = m->GetParameterTypeList();
2338 if (types != nullptr) {
2339 for (uint32_t i = 0; i < types->Size(); ++i) {
2340 dex::TypeIndex param_type_idx = types->GetTypeItem(i).type_idx_;
Vladimir Markob45528c2017-07-27 14:14:28 +01002341 ObjPtr<mirror::Class> param_type = m->ResolveClassFromTypeIndex(param_type_idx);
Mathieu Chartier7a8bcfd2017-06-13 13:40:43 -07002342 if (param_type == nullptr) {
2343 self->ClearException();
2344 return false;
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002345 }
2346 }
Mathieu Chartier7a8bcfd2017-06-13 13:40:43 -07002347 }
2348 return true;
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002349 }
2350
2351 // Pre resolve types mentioned in all method signatures before start a transaction
2352 // since ResolveType doesn't work in transaction mode.
2353 bool PreResolveTypes(Thread* self, const Handle<mirror::Class>& klass)
2354 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartier7a8bcfd2017-06-13 13:40:43 -07002355 PointerSize pointer_size = manager_->GetClassLinker()->GetImagePointerSize();
2356 for (ArtMethod& m : klass->GetMethods(pointer_size)) {
2357 if (!ResolveTypesOfMethods(self, &m)) {
2358 return false;
2359 }
2360 }
2361 if (klass->IsInterface()) {
2362 return true;
2363 } else if (klass->HasSuperClass()) {
2364 StackHandleScope<1> hs(self);
2365 MutableHandle<mirror::Class> super_klass(hs.NewHandle<mirror::Class>(klass->GetSuperClass()));
2366 for (int i = super_klass->GetVTableLength() - 1; i >= 0; --i) {
2367 ArtMethod* m = klass->GetVTableEntry(i, pointer_size);
2368 ArtMethod* super_m = super_klass->GetVTableEntry(i, pointer_size);
2369 if (!ResolveTypesOfMethods(self, m) || !ResolveTypesOfMethods(self, super_m)) {
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002370 return false;
2371 }
2372 }
Mathieu Chartier7a8bcfd2017-06-13 13:40:43 -07002373 for (int32_t i = 0; i < klass->GetIfTableCount(); ++i) {
2374 super_klass.Assign(klass->GetIfTable()->GetInterface(i));
2375 if (klass->GetClassLoader() != super_klass->GetClassLoader()) {
2376 uint32_t num_methods = super_klass->NumVirtualMethods();
2377 for (uint32_t j = 0; j < num_methods; ++j) {
2378 ArtMethod* m = klass->GetIfTable()->GetMethodArray(i)->GetElementPtrSize<ArtMethod*>(
2379 j, pointer_size);
2380 ArtMethod* super_m = super_klass->GetVirtualMethod(j, pointer_size);
2381 if (!ResolveTypesOfMethods(self, m) || !ResolveTypesOfMethods(self, super_m)) {
2382 return false;
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002383 }
2384 }
2385 }
2386 }
Mathieu Chartier7a8bcfd2017-06-13 13:40:43 -07002387 }
2388 return true;
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002389 }
2390
2391 // Initialize the klass's dependencies recursively before initializing itself.
2392 // Checking for interfaces is also necessary since interfaces can contain
2393 // both default methods and static encoded fields.
2394 bool InitializeDependencies(const Handle<mirror::Class>& klass,
2395 Handle<mirror::ClassLoader> class_loader,
2396 Thread* self)
2397 REQUIRES_SHARED(Locks::mutator_lock_) {
2398 if (klass->HasSuperClass()) {
2399 ObjPtr<mirror::Class> super_class = klass->GetSuperClass();
2400 StackHandleScope<1> hs(self);
2401 Handle<mirror::Class> handle_scope_super(hs.NewHandle(super_class));
2402 if (!handle_scope_super->IsInitialized()) {
2403 this->TryInitializeClass(handle_scope_super, class_loader);
2404 if (!handle_scope_super->IsInitialized()) {
2405 return false;
2406 }
2407 }
2408 }
2409
2410 uint32_t num_if = klass->NumDirectInterfaces();
2411 for (size_t i = 0; i < num_if; i++) {
2412 ObjPtr<mirror::Class>
2413 interface = mirror::Class::GetDirectInterface(self, klass.Get(), i);
2414 StackHandleScope<1> hs(self);
2415 Handle<mirror::Class> handle_interface(hs.NewHandle(interface));
2416
2417 TryInitializeClass(handle_interface, class_loader);
2418
2419 if (!handle_interface->IsInitialized()) {
2420 return false;
2421 }
2422 }
2423
2424 return PreResolveTypes(self, klass);
2425 }
2426
2427 // In this phase the classes containing class initializers are ignored. Make sure no
2428 // clinit appears in kalss's super class chain and interfaces.
2429 bool NoClinitInDependency(const Handle<mirror::Class>& klass,
2430 Thread* self,
2431 Handle<mirror::ClassLoader>* class_loader)
2432 REQUIRES_SHARED(Locks::mutator_lock_) {
2433 ArtMethod* clinit =
2434 klass->FindClassInitializer(manager_->GetClassLinker()->GetImagePointerSize());
2435 if (clinit != nullptr) {
2436 VLOG(compiler) << klass->PrettyClass() << ' ' << clinit->PrettyMethod(true);
2437 return false;
2438 }
2439 if (klass->HasSuperClass()) {
2440 ObjPtr<mirror::Class> super_class = klass->GetSuperClass();
2441 StackHandleScope<1> hs(self);
2442 Handle<mirror::Class> handle_scope_super(hs.NewHandle(super_class));
2443 if (!NoClinitInDependency(handle_scope_super, self, class_loader)) {
2444 return false;
2445 }
2446 }
2447
2448 uint32_t num_if = klass->NumDirectInterfaces();
2449 for (size_t i = 0; i < num_if; i++) {
2450 ObjPtr<mirror::Class>
2451 interface = mirror::Class::GetDirectInterface(self, klass.Get(), i);
2452 StackHandleScope<1> hs(self);
2453 Handle<mirror::Class> handle_interface(hs.NewHandle(interface));
2454 if (!NoClinitInDependency(handle_interface, self, class_loader)) {
2455 return false;
2456 }
2457 }
2458
Chang Xingba17dbd2017-06-28 21:27:56 +00002459 return true;
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002460 }
2461
Mathieu Chartier90443472015-07-16 20:32:27 -07002462 const ParallelCompilationManager* const manager_;
2463};
Brian Carlstrom7940e442013-07-12 13:46:57 -07002464
Andreas Gampeace0dc12016-01-20 13:33:13 -08002465void CompilerDriver::InitializeClasses(jobject jni_class_loader,
2466 const DexFile& dex_file,
Andreas Gampede7b4362014-07-28 18:38:57 -07002467 const std::vector<const DexFile*>& dex_files,
Andreas Gampeace0dc12016-01-20 13:33:13 -08002468 TimingLogger* timings) {
Mathieu Chartierf5997b42014-06-20 10:37:54 -07002469 TimingLogger::ScopedTiming t("InitializeNoClinit", timings);
Andreas Gampeace0dc12016-01-20 13:33:13 -08002470
2471 // Initialization allocates objects and needs to run single-threaded to be deterministic.
2472 bool force_determinism = GetCompilerOptions().IsForceDeterminism();
2473 ThreadPool* init_thread_pool = force_determinism
2474 ? single_thread_pool_.get()
2475 : parallel_thread_pool_.get();
2476 size_t init_thread_count = force_determinism ? 1U : parallel_thread_count_;
2477
Brian Carlstrom7940e442013-07-12 13:46:57 -07002478 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Andreas Gampede7b4362014-07-28 18:38:57 -07002479 ParallelCompilationManager context(class_linker, jni_class_loader, this, &dex_file, dex_files,
Andreas Gampeace0dc12016-01-20 13:33:13 -08002480 init_thread_pool);
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002481
2482 if (GetCompilerOptions().IsBootImage() || GetCompilerOptions().IsAppImage()) {
2483 // Set the concurrency thread to 1 to support initialization for App Images since transaction
2484 // doesn't support multithreading now.
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01002485 // TODO: remove this when transactional mode supports multithreading.
Andreas Gampeace0dc12016-01-20 13:33:13 -08002486 init_thread_count = 1U;
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01002487 }
Mathieu Chartier90443472015-07-16 20:32:27 -07002488 InitializeClassVisitor visitor(&context);
Andreas Gampeace0dc12016-01-20 13:33:13 -08002489 context.ForAll(0, dex_file.NumClassDefs(), &visitor, init_thread_count);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002490}
2491
Mathieu Chartier91288d82016-04-28 09:44:54 -07002492class InitializeArrayClassesAndCreateConflictTablesVisitor : public ClassVisitor {
Mathieu Chartier085a0722016-04-01 17:33:31 -07002493 public:
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002494 explicit InitializeArrayClassesAndCreateConflictTablesVisitor(VariableSizedHandleScope& hs)
2495 : hs_(hs) {}
2496
Roland Levillainf73caca2018-08-24 17:19:07 +01002497 bool operator()(ObjPtr<mirror::Class> klass) override
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002498 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartier91288d82016-04-28 09:44:54 -07002499 if (Runtime::Current()->GetHeap()->ObjectIsInBootImageSpace(klass)) {
2500 return true;
2501 }
Mathieu Chartier085a0722016-04-01 17:33:31 -07002502 if (klass->IsArrayClass()) {
2503 StackHandleScope<1> hs(Thread::Current());
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002504 auto h_klass = hs.NewHandleWrapper(&klass);
2505 Runtime::Current()->GetClassLinker()->EnsureInitialized(hs.Self(), h_klass, true, true);
Mathieu Chartier085a0722016-04-01 17:33:31 -07002506 }
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002507 // Collect handles since there may be thread suspension in future EnsureInitialized.
2508 to_visit_.push_back(hs_.NewHandle(klass));
Nicolas Geoffray88f288e2016-06-29 08:17:52 +00002509 return true;
Nelli Kimbadee982016-05-13 13:08:53 +03002510 }
Artem Udovichenkoa62cb9b2016-06-30 09:18:25 +00002511
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002512 void FillAllIMTAndConflictTables() REQUIRES_SHARED(Locks::mutator_lock_) {
2513 for (Handle<mirror::Class> c : to_visit_) {
2514 // Create the conflict tables.
2515 FillIMTAndConflictTables(c.Get());
2516 }
2517 }
2518
Artem Udovichenkoa62cb9b2016-06-30 09:18:25 +00002519 private:
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002520 void FillIMTAndConflictTables(ObjPtr<mirror::Class> klass)
2521 REQUIRES_SHARED(Locks::mutator_lock_) {
Artem Udovichenkoa62cb9b2016-06-30 09:18:25 +00002522 if (!klass->ShouldHaveImt()) {
2523 return;
2524 }
2525 if (visited_classes_.find(klass) != visited_classes_.end()) {
2526 return;
2527 }
2528 if (klass->HasSuperClass()) {
2529 FillIMTAndConflictTables(klass->GetSuperClass());
2530 }
2531 if (!klass->IsTemp()) {
2532 Runtime::Current()->GetClassLinker()->FillIMTAndConflictTables(klass);
2533 }
2534 visited_classes_.insert(klass);
2535 }
2536
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002537 VariableSizedHandleScope& hs_;
2538 std::vector<Handle<mirror::Class>> to_visit_;
2539 std::unordered_set<ObjPtr<mirror::Class>, HashObjPtr> visited_classes_;
Mathieu Chartier085a0722016-04-01 17:33:31 -07002540};
2541
Brian Carlstrom7940e442013-07-12 13:46:57 -07002542void CompilerDriver::InitializeClasses(jobject class_loader,
2543 const std::vector<const DexFile*>& dex_files,
Andreas Gampeace0dc12016-01-20 13:33:13 -08002544 TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07002545 for (size_t i = 0; i != dex_files.size(); ++i) {
2546 const DexFile* dex_file = dex_files[i];
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002547 CHECK(dex_file != nullptr);
Andreas Gampeace0dc12016-01-20 13:33:13 -08002548 InitializeClasses(class_loader, *dex_file, dex_files, timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002549 }
Vladimir Markoaad75c62016-10-03 08:46:48 +00002550 if (GetCompilerOptions().IsBootImage() || GetCompilerOptions().IsAppImage()) {
Mathieu Chartier085a0722016-04-01 17:33:31 -07002551 // Make sure that we call EnsureIntiailized on all the array classes to call
2552 // SetVerificationAttempted so that the access flags are set. If we do not do this they get
2553 // changed at runtime resulting in more dirty image pages.
Mathieu Chartier91288d82016-04-28 09:44:54 -07002554 // Also create conflict tables.
2555 // Only useful if we are compiling an image (image_classes_ is not null).
Mathieu Chartier085a0722016-04-01 17:33:31 -07002556 ScopedObjectAccess soa(Thread::Current());
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002557 VariableSizedHandleScope hs(soa.Self());
2558 InitializeArrayClassesAndCreateConflictTablesVisitor visitor(hs);
Mathieu Chartier91288d82016-04-28 09:44:54 -07002559 Runtime::Current()->GetClassLinker()->VisitClassesWithoutClassesLock(&visitor);
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002560 visitor.FillAllIMTAndConflictTables();
Mathieu Chartier085a0722016-04-01 17:33:31 -07002561 }
Vladimir Markoaad75c62016-10-03 08:46:48 +00002562 if (GetCompilerOptions().IsBootImage()) {
Mathieu Chartier093ef212014-08-11 13:52:12 -07002563 // Prune garbage objects created during aborted transactions.
Roland Levillainaf290312018-02-27 20:02:17 +00002564 Runtime::Current()->GetHeap()->CollectGarbage(/* clear_soft_references */ true);
Mathieu Chartier093ef212014-08-11 13:52:12 -07002565 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002566}
2567
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002568template <typename CompileFn>
2569static void CompileDexFile(CompilerDriver* driver,
2570 jobject class_loader,
2571 const DexFile& dex_file,
2572 const std::vector<const DexFile*>& dex_files,
2573 ThreadPool* thread_pool,
2574 size_t thread_count,
2575 TimingLogger* timings,
2576 const char* timing_name,
2577 CompileFn compile_fn) {
2578 TimingLogger::ScopedTiming t(timing_name, timings);
2579 ParallelCompilationManager context(Runtime::Current()->GetClassLinker(),
2580 class_loader,
2581 driver,
2582 &dex_file,
2583 dex_files,
2584 thread_pool);
Vladimir Marko492a7fa2016-06-01 18:38:43 +01002585
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002586 auto compile = [&context, &compile_fn](size_t class_def_index) {
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002587 const DexFile& dex_file = *context.GetDexFile();
Andreas Gampe3e7f66b2018-09-06 10:08:18 -07002588 SCOPED_TRACE << "compile " << dex_file.GetLocation() << "@" << class_def_index;
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002589 ClassLinker* class_linker = context.GetClassLinker();
2590 jobject jclass_loader = context.GetClassLoader();
Mathieu Chartier90443472015-07-16 20:32:27 -07002591 ClassReference ref(&dex_file, class_def_index);
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07002592 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
Mathieu Chartier18e26872018-06-04 17:19:02 -07002593 ClassAccessor accessor(dex_file, class_def_index);
Mathieu Chartier90443472015-07-16 20:32:27 -07002594 // Skip compiling classes with generic verifier failures since they will still fail at runtime
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002595 if (context.GetCompiler()->GetVerificationResults()->IsClassRejected(ref)) {
Ian Rogers1ff3c982014-08-12 02:30:58 -07002596 return;
2597 }
Mathieu Chartier736b5602015-09-02 14:54:11 -07002598 // Use a scoped object access to perform to the quick SkipClass check.
Mathieu Chartier736b5602015-09-02 14:54:11 -07002599 ScopedObjectAccess soa(Thread::Current());
2600 StackHandleScope<3> hs(soa.Self());
2601 Handle<mirror::ClassLoader> class_loader(
Mathieu Chartier0795f232016-09-27 18:43:30 -07002602 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader)));
Mathieu Chartier736b5602015-09-02 14:54:11 -07002603 Handle<mirror::Class> klass(
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07002604 hs.NewHandle(class_linker->FindClass(soa.Self(), accessor.GetDescriptor(), class_loader)));
Mathieu Chartier736b5602015-09-02 14:54:11 -07002605 Handle<mirror::DexCache> dex_cache;
Andreas Gampefa4333d2017-02-14 11:10:34 -08002606 if (klass == nullptr) {
Mathieu Chartier736b5602015-09-02 14:54:11 -07002607 soa.Self()->AssertPendingException();
2608 soa.Self()->ClearException();
2609 dex_cache = hs.NewHandle(class_linker->FindDexCache(soa.Self(), dex_file));
2610 } else if (SkipClass(jclass_loader, dex_file, klass.Get())) {
2611 return;
Andreas Gampebb30d5d2018-04-23 09:59:25 -07002612 } else if (&klass->GetDexFile() != &dex_file) {
2613 // Skip a duplicate class (as the resolved class is from another, earlier dex file).
2614 return; // Do not update state.
Mathieu Chartier736b5602015-09-02 14:54:11 -07002615 } else {
2616 dex_cache = hs.NewHandle(klass->GetDexCache());
2617 }
2618
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07002619 // Avoid suspension if there are no methods to compile.
2620 if (accessor.NumDirectMethods() + accessor.NumVirtualMethods() == 0) {
Mathieu Chartier90443472015-07-16 20:32:27 -07002621 return;
Brian Carlstrom7940e442013-07-12 13:46:57 -07002622 }
Mathieu Chartier90443472015-07-16 20:32:27 -07002623
Mathieu Chartier736b5602015-09-02 14:54:11 -07002624 // Go to native so that we don't block GC during compilation.
Mathieu Chartierf1d666e2015-09-03 16:13:34 -07002625 ScopedThreadSuspension sts(soa.Self(), kNative);
Mathieu Chartier736b5602015-09-02 14:54:11 -07002626
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002627 CompilerDriver* const driver = context.GetCompiler();
Mathieu Chartier90443472015-07-16 20:32:27 -07002628
2629 // Can we run DEX-to-DEX compiler on this class ?
Mathieu Chartiera79efdb2018-01-18 16:31:01 -08002630 optimizer::DexToDexCompiler::CompilationLevel dex_to_dex_compilation_level =
Mathieu Chartier736b5602015-09-02 14:54:11 -07002631 GetDexToDexCompilationLevel(soa.Self(), *driver, jclass_loader, dex_file, class_def);
Andreas Gampe5eb0d382015-07-23 01:19:26 -07002632
Mathieu Chartier90443472015-07-16 20:32:27 -07002633
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07002634 const bool compilation_enabled = driver->IsClassToCompile(accessor.GetDescriptor());
Mathieu Chartier90443472015-07-16 20:32:27 -07002635
Mathieu Chartierb7c273c2017-11-10 18:07:56 -08002636 // Compile direct and virtual methods.
2637 int64_t previous_method_idx = -1;
Mathieu Chartier0d896bd2018-05-25 00:20:27 -07002638 for (const ClassAccessor::Method& method : accessor.GetMethods()) {
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07002639 const uint32_t method_idx = method.GetIndex();
Mathieu Chartierb7c273c2017-11-10 18:07:56 -08002640 if (method_idx == previous_method_idx) {
Mathieu Chartier90443472015-07-16 20:32:27 -07002641 // smali can create dex files with two encoded_methods sharing the same method_idx
2642 // http://code.google.com/p/smali/issues/detail?id=119
Mathieu Chartier0d896bd2018-05-25 00:20:27 -07002643 continue;
Mathieu Chartier90443472015-07-16 20:32:27 -07002644 }
Mathieu Chartierb7c273c2017-11-10 18:07:56 -08002645 previous_method_idx = method_idx;
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002646 compile_fn(soa.Self(),
2647 driver,
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07002648 method.GetCodeItem(),
2649 method.GetAccessFlags(),
2650 method.GetInvokeType(class_def.access_flags_),
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002651 class_def_index,
2652 method_idx,
2653 class_loader,
2654 dex_file,
2655 dex_to_dex_compilation_level,
2656 compilation_enabled,
2657 dex_cache);
Mathieu Chartier0d896bd2018-05-25 00:20:27 -07002658 }
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002659 };
2660 context.ForAllLambda(0, dex_file.NumClassDefs(), compile, thread_count);
2661}
2662
2663void CompilerDriver::Compile(jobject class_loader,
2664 const std::vector<const DexFile*>& dex_files,
2665 TimingLogger* timings) {
2666 if (kDebugProfileGuidedCompilation) {
2667 LOG(INFO) << "[ProfileGuidedCompilation] " <<
2668 ((profile_compilation_info_ == nullptr)
2669 ? "null"
Mathieu Chartier0573f852018-10-01 13:52:12 -07002670 : profile_compilation_info_->DumpInfo(dex_files));
Brian Carlstrom7940e442013-07-12 13:46:57 -07002671 }
Mathieu Chartier90443472015-07-16 20:32:27 -07002672
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002673 dex_to_dex_compiler_.ClearState();
2674 for (const DexFile* dex_file : dex_files) {
2675 CHECK(dex_file != nullptr);
2676 CompileDexFile(this,
2677 class_loader,
2678 *dex_file,
2679 dex_files,
2680 parallel_thread_pool_.get(),
2681 parallel_thread_count_,
2682 timings,
2683 "Compile Dex File Quick",
2684 CompileMethodQuick);
2685 const ArenaPool* const arena_pool = Runtime::Current()->GetArenaPool();
2686 const size_t arena_alloc = arena_pool->GetBytesAllocated();
2687 max_arena_alloc_ = std::max(arena_alloc, max_arena_alloc_);
2688 Runtime::Current()->ReclaimArenaPoolMemory();
2689 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002690
Mathieu Chartier279e3a32018-01-24 18:17:55 -08002691 if (dex_to_dex_compiler_.NumCodeItemsToQuicken(Thread::Current()) > 0u) {
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002692 // TODO: Not visit all of the dex files, its probably rare that only one would have quickened
2693 // methods though.
2694 for (const DexFile* dex_file : dex_files) {
2695 CompileDexFile(this,
2696 class_loader,
2697 *dex_file,
2698 dex_files,
2699 parallel_thread_pool_.get(),
2700 parallel_thread_count_,
2701 timings,
2702 "Compile Dex File Dex2Dex",
2703 CompileMethodDex2Dex);
2704 }
2705 dex_to_dex_compiler_.ClearState();
2706 }
2707
2708 VLOG(compiler) << "Compile: " << GetMemoryUsageString(false);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002709}
2710
Andreas Gampe5eb0d382015-07-23 01:19:26 -07002711void CompilerDriver::AddCompiledMethod(const MethodReference& method_ref,
Vladimir Marko8e524ad2018-07-13 10:27:43 +01002712 CompiledMethod* const compiled_method) {
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002713 DCHECK(GetCompiledMethod(method_ref) == nullptr) << method_ref.PrettyMethod();
2714 MethodTable::InsertResult result = compiled_methods_.Insert(method_ref,
2715 /*expected*/ nullptr,
2716 compiled_method);
Mathieu Chartieracab8d42016-11-23 13:45:58 -08002717 CHECK(result == MethodTable::kInsertResultSuccess);
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002718 DCHECK(GetCompiledMethod(method_ref) != nullptr) << method_ref.PrettyMethod();
Brian Carlstrom7940e442013-07-12 13:46:57 -07002719}
2720
Mathieu Chartier279e3a32018-01-24 18:17:55 -08002721CompiledMethod* CompilerDriver::RemoveCompiledMethod(const MethodReference& method_ref) {
2722 CompiledMethod* ret = nullptr;
2723 CHECK(compiled_methods_.Remove(method_ref, &ret));
2724 return ret;
2725}
2726
Vladimir Marko2c64a832018-01-04 11:31:56 +00002727bool CompilerDriver::GetCompiledClass(const ClassReference& ref, ClassStatus* status) const {
Andreas Gampebb846102017-05-11 21:03:35 -07002728 DCHECK(status != nullptr);
Mathieu Chartier1a088d42017-07-18 11:43:57 -07002729 // The table doesn't know if something wasn't inserted. For this case it will return
Vladimir Marko2c64a832018-01-04 11:31:56 +00002730 // ClassStatus::kNotReady. To handle this, just assume anything we didn't try to verify
2731 // is not compiled.
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002732 if (!compiled_classes_.Get(ref, status) ||
Vladimir Marko2c64a832018-01-04 11:31:56 +00002733 *status < ClassStatus::kRetryVerificationAtRuntime) {
Andreas Gampebb846102017-05-11 21:03:35 -07002734 return false;
Brian Carlstrom7940e442013-07-12 13:46:57 -07002735 }
Andreas Gampebb846102017-05-11 21:03:35 -07002736 return true;
Brian Carlstrom7940e442013-07-12 13:46:57 -07002737}
2738
Vladimir Marko2c64a832018-01-04 11:31:56 +00002739ClassStatus CompilerDriver::GetClassStatus(const ClassReference& ref) const {
2740 ClassStatus status = ClassStatus::kNotReady;
Nicolas Geoffray486dda02017-09-11 14:15:52 +01002741 if (!GetCompiledClass(ref, &status)) {
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002742 classpath_classes_.Get(ref, &status);
Nicolas Geoffray486dda02017-09-11 14:15:52 +01002743 }
2744 return status;
2745}
2746
Vladimir Marko2c64a832018-01-04 11:31:56 +00002747void CompilerDriver::RecordClassStatus(const ClassReference& ref, ClassStatus status) {
Nicolas Geoffrayade72d62016-12-15 13:20:02 +00002748 switch (status) {
Vladimir Marko2c64a832018-01-04 11:31:56 +00002749 case ClassStatus::kErrorResolved:
2750 case ClassStatus::kErrorUnresolved:
2751 case ClassStatus::kNotReady:
2752 case ClassStatus::kResolved:
2753 case ClassStatus::kRetryVerificationAtRuntime:
2754 case ClassStatus::kVerified:
2755 case ClassStatus::kSuperclassValidated:
2756 case ClassStatus::kInitialized:
Nicolas Geoffrayade72d62016-12-15 13:20:02 +00002757 break; // Expected states.
2758 default:
2759 LOG(FATAL) << "Unexpected class status for class "
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002760 << PrettyDescriptor(
2761 ref.dex_file->GetClassDescriptor(ref.dex_file->GetClassDef(ref.index)))
Nicolas Geoffrayade72d62016-12-15 13:20:02 +00002762 << " of " << status;
2763 }
2764
Mathieu Chartier1a088d42017-07-18 11:43:57 -07002765 ClassStateTable::InsertResult result;
Nicolas Geoffray486dda02017-09-11 14:15:52 +01002766 ClassStateTable* table = &compiled_classes_;
Mathieu Chartier1a088d42017-07-18 11:43:57 -07002767 do {
Vladimir Marko2c64a832018-01-04 11:31:56 +00002768 ClassStatus existing = ClassStatus::kNotReady;
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002769 if (!table->Get(ref, &existing)) {
Nicolas Geoffray486dda02017-09-11 14:15:52 +01002770 // A classpath class.
Mathieu Chartier010f5cc2017-07-24 15:53:46 -07002771 if (kIsDebugBuild) {
2772 // Check to make sure it's not a dex file for an oat file we are compiling since these
2773 // should always succeed. These do not include classes in for used libraries.
Vladimir Marko213ee2d2018-06-22 11:56:34 +01002774 for (const DexFile* dex_file : GetCompilerOptions().GetDexFilesForOatFile()) {
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002775 CHECK_NE(ref.dex_file, dex_file) << ref.dex_file->GetLocation();
Mathieu Chartier010f5cc2017-07-24 15:53:46 -07002776 }
2777 }
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002778 if (!classpath_classes_.HaveDexFile(ref.dex_file)) {
Nicolas Geoffray486dda02017-09-11 14:15:52 +01002779 // Boot classpath dex file.
2780 return;
2781 }
2782 table = &classpath_classes_;
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002783 table->Get(ref, &existing);
Mathieu Chartier010f5cc2017-07-24 15:53:46 -07002784 }
Mathieu Chartier1a088d42017-07-18 11:43:57 -07002785 if (existing >= status) {
2786 // Existing status is already better than we expect, break.
2787 break;
2788 }
Nicolas Geoffrayade72d62016-12-15 13:20:02 +00002789 // Update the status if we now have a greater one. This happens with vdex,
2790 // which records a class is verified, but does not resolve it.
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002791 result = table->Insert(ref, existing, status);
2792 CHECK(result != ClassStateTable::kInsertResultInvalidDexFile) << ref.dex_file->GetLocation();
Mathieu Chartier1a088d42017-07-18 11:43:57 -07002793 } while (result != ClassStateTable::kInsertResultSuccess);
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07002794}
2795
Brian Carlstrom7940e442013-07-12 13:46:57 -07002796CompiledMethod* CompilerDriver::GetCompiledMethod(MethodReference ref) const {
Mathieu Chartieracab8d42016-11-23 13:45:58 -08002797 CompiledMethod* compiled_method = nullptr;
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002798 compiled_methods_.Get(ref, &compiled_method);
Mathieu Chartieracab8d42016-11-23 13:45:58 -08002799 return compiled_method;
Brian Carlstrom7940e442013-07-12 13:46:57 -07002800}
2801
Calin Juravlef1c6d9e2015-04-13 18:42:21 +01002802bool CompilerDriver::IsMethodVerifiedWithoutFailures(uint32_t method_idx,
2803 uint16_t class_def_idx,
2804 const DexFile& dex_file) const {
2805 const VerifiedMethod* verified_method = GetVerifiedMethod(&dex_file, method_idx);
2806 if (verified_method != nullptr) {
2807 return !verified_method->HasVerificationFailures();
2808 }
2809
2810 // If we can't find verification metadata, check if this is a system class (we trust that system
2811 // classes have their methods verified). If it's not, be conservative and assume the method
2812 // has not been verified successfully.
2813
2814 // TODO: When compiling the boot image it should be safe to assume that everything is verified,
2815 // even if methods are not found in the verification cache.
2816 const char* descriptor = dex_file.GetClassDescriptor(dex_file.GetClassDef(class_def_idx));
2817 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
2818 Thread* self = Thread::Current();
2819 ScopedObjectAccess soa(self);
2820 bool is_system_class = class_linker->FindSystemClass(self, descriptor) != nullptr;
2821 if (!is_system_class) {
2822 self->ClearException();
2823 }
2824 return is_system_class;
2825}
2826
Mathieu Chartierc4ae9162016-04-07 13:19:19 -07002827void CompilerDriver::SetRequiresConstructorBarrier(Thread* self,
2828 const DexFile* dex_file,
2829 uint16_t class_def_index,
2830 bool requires) {
2831 WriterMutexLock mu(self, requires_constructor_barrier_lock_);
2832 requires_constructor_barrier_.emplace(ClassReference(dex_file, class_def_index), requires);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002833}
2834
Mathieu Chartier371bd832016-04-07 10:19:48 -07002835bool CompilerDriver::RequiresConstructorBarrier(Thread* self,
2836 const DexFile* dex_file,
Mathieu Chartierc4ae9162016-04-07 13:19:19 -07002837 uint16_t class_def_index) {
2838 ClassReference class_ref(dex_file, class_def_index);
2839 {
2840 ReaderMutexLock mu(self, requires_constructor_barrier_lock_);
2841 auto it = requires_constructor_barrier_.find(class_ref);
2842 if (it != requires_constructor_barrier_.end()) {
2843 return it->second;
2844 }
Mathieu Chartierb5d38612016-04-07 10:52:52 -07002845 }
Mathieu Chartierc4ae9162016-04-07 13:19:19 -07002846 WriterMutexLock mu(self, requires_constructor_barrier_lock_);
2847 const bool requires = RequiresConstructorBarrier(*dex_file, class_def_index);
2848 requires_constructor_barrier_.emplace(class_ref, requires);
2849 return requires;
Brian Carlstrom7940e442013-07-12 13:46:57 -07002850}
2851
Andreas Gampe8d295f82015-01-20 14:50:21 -08002852std::string CompilerDriver::GetMemoryUsageString(bool extended) const {
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002853 std::ostringstream oss;
Calin Juravle69158982016-03-16 11:53:41 +00002854 const gc::Heap* const heap = Runtime::Current()->GetHeap();
Anton Kirilovdd9473b2016-01-28 15:08:01 +00002855 const size_t java_alloc = heap->GetBytesAllocated();
Calin Juravle69158982016-03-16 11:53:41 +00002856 oss << "arena alloc=" << PrettySize(max_arena_alloc_) << " (" << max_arena_alloc_ << "B)";
Anton Kirilovdd9473b2016-01-28 15:08:01 +00002857 oss << " java alloc=" << PrettySize(java_alloc) << " (" << java_alloc << "B)";
Elliott Hughes7bf5a262015-04-02 20:55:07 -07002858#if defined(__BIONIC__) || defined(__GLIBC__)
Anton Kirilovdd9473b2016-01-28 15:08:01 +00002859 const struct mallinfo info = mallinfo();
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002860 const size_t allocated_space = static_cast<size_t>(info.uordblks);
2861 const size_t free_space = static_cast<size_t>(info.fordblks);
Anton Kirilovdd9473b2016-01-28 15:08:01 +00002862 oss << " native alloc=" << PrettySize(allocated_space) << " (" << allocated_space << "B)"
2863 << " free=" << PrettySize(free_space) << " (" << free_space << "B)";
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002864#endif
Vladimir Marko35831e82015-09-11 11:59:18 +01002865 compiled_method_storage_.DumpMemoryUsage(oss, extended);
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002866 return oss.str();
2867}
2868
Andreas Gampeace0dc12016-01-20 13:33:13 -08002869void CompilerDriver::InitializeThreadPools() {
2870 size_t parallel_count = parallel_thread_count_ > 0 ? parallel_thread_count_ - 1 : 0;
2871 parallel_thread_pool_.reset(
2872 new ThreadPool("Compiler driver thread pool", parallel_count));
2873 single_thread_pool_.reset(new ThreadPool("Single-threaded Compiler driver thread pool", 0));
2874}
2875
2876void CompilerDriver::FreeThreadPools() {
2877 parallel_thread_pool_.reset();
2878 single_thread_pool_.reset();
2879}
2880
Nicolas Geoffray486dda02017-09-11 14:15:52 +01002881void CompilerDriver::SetClasspathDexFiles(const std::vector<const DexFile*>& dex_files) {
2882 classpath_classes_.AddDexFiles(dex_files);
Mathieu Chartier72041a02017-07-14 18:23:25 -07002883}
2884
Brian Carlstrom7940e442013-07-12 13:46:57 -07002885} // namespace art