blob: 0d0a7f2b6aafc7ad33964aef5b0ace713fab1c87 [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 Marko1a2a5cd2018-11-07 15:39:48 +0000251 int swap_fd)
Calin Juravle226501b2015-12-11 14:41:31 +0000252 : compiler_options_(compiler_options),
Brian Carlstrom6449c622014-02-10 23:48:36 -0800253 verification_results_(verification_results),
Ian Rogers72d32622014-05-06 16:20:11 -0700254 compiler_(Compiler::Create(this, compiler_kind)),
Jeff Hao48699fb2015-04-06 14:21:37 -0700255 compiler_kind_(compiler_kind),
Vladimir Marko54159c62018-06-20 14:30:08 +0100256 image_classes_(std::move(image_classes)),
Andreas Gampef39208f2017-10-19 15:06:59 -0700257 number_of_soft_verifier_failures_(0),
Andreas Gampe6cf49e52015-03-05 13:08:45 -0800258 had_hard_verifier_failure_(false),
Andreas Gampeace0dc12016-01-20 13:33:13 -0800259 parallel_thread_count_(thread_count),
Brian Carlstrom7940e442013-07-12 13:46:57 -0700260 stats_(new AOTCompilationStats),
Calin Juravle998c2162015-12-21 15:39:33 +0200261 compiled_method_storage_(swap_fd),
Vladimir Marko492a7fa2016-06-01 18:38:43 +0100262 max_arena_alloc_(0),
Mathieu Chartiera79efdb2018-01-18 16:31:01 -0800263 dex_to_dex_compiler_(this) {
Brian Carlstrom6449c622014-02-10 23:48:36 -0800264 DCHECK(compiler_options_ != nullptr);
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700265
Ian Rogers72d32622014-05-06 16:20:11 -0700266 compiler_->Init();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700267
Vladimir Markoaad75c62016-10-03 08:46:48 +0000268 if (GetCompilerOptions().IsBootImage()) {
Vladimir Markodc4bcce2018-06-21 16:15:42 +0100269 CHECK(image_classes_ != nullptr) << "Expected image classes for boot image";
Mathieu Chartierc5dd3192015-12-09 16:38:30 -0800270 }
Andreas Gampecac31ad2017-11-06 20:01:17 -0800271
272 compiled_method_storage_.SetDedupeEnabled(compiler_options_->DeduplicateCode());
Brian Carlstrom7940e442013-07-12 13:46:57 -0700273}
274
275CompilerDriver::~CompilerDriver() {
Mathieu Chartier93764b82017-07-17 14:51:53 -0700276 compiled_methods_.Visit([this](const DexFileReference& ref ATTRIBUTE_UNUSED,
Mathieu Chartieracab8d42016-11-23 13:45:58 -0800277 CompiledMethod* method) {
278 if (method != nullptr) {
279 CompiledMethod::ReleaseSwapAllocatedCompiledMethod(this, method);
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800280 }
Mathieu Chartieracab8d42016-11-23 13:45:58 -0800281 });
Ian Rogers72d32622014-05-06 16:20:11 -0700282 compiler_->UnInit();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700283}
284
Vladimir Marko35831e82015-09-11 11:59:18 +0100285
Vladimir Markoa0431112018-06-25 09:32:54 +0100286#define CREATE_TRAMPOLINE(type, abi, offset) \
287 if (Is64BitInstructionSet(GetCompilerOptions().GetInstructionSet())) { \
288 return CreateTrampoline64(GetCompilerOptions().GetInstructionSet(), \
289 abi, \
290 type ## _ENTRYPOINT_OFFSET(PointerSize::k64, offset)); \
291 } else { \
292 return CreateTrampoline32(GetCompilerOptions().GetInstructionSet(), \
293 abi, \
294 type ## _ENTRYPOINT_OFFSET(PointerSize::k32, offset)); \
Ian Rogersdd7624d2014-03-14 17:43:00 -0700295 }
296
Vladimir Marko93205e32016-04-13 11:59:46 +0100297std::unique_ptr<const std::vector<uint8_t>> CompilerDriver::CreateJniDlsymLookup() const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700298 CREATE_TRAMPOLINE(JNI, kJniAbi, pDlsymLookup)
Ian Rogers848871b2013-08-05 10:56:33 -0700299}
300
Vladimir Marko93205e32016-04-13 11:59:46 +0100301std::unique_ptr<const std::vector<uint8_t>> CompilerDriver::CreateQuickGenericJniTrampoline()
302 const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700303 CREATE_TRAMPOLINE(QUICK, kQuickAbi, pQuickGenericJniTrampoline)
Andreas Gampe2da88232014-02-27 12:26:20 -0800304}
305
Vladimir Marko93205e32016-04-13 11:59:46 +0100306std::unique_ptr<const std::vector<uint8_t>> CompilerDriver::CreateQuickImtConflictTrampoline()
307 const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700308 CREATE_TRAMPOLINE(QUICK, kQuickAbi, pQuickImtConflictTrampoline)
Jeff Hao88474b42013-10-23 16:24:40 -0700309}
310
Vladimir Marko93205e32016-04-13 11:59:46 +0100311std::unique_ptr<const std::vector<uint8_t>> CompilerDriver::CreateQuickResolutionTrampoline()
312 const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700313 CREATE_TRAMPOLINE(QUICK, kQuickAbi, pQuickResolutionTrampoline)
Brian Carlstrom7940e442013-07-12 13:46:57 -0700314}
315
Vladimir Marko93205e32016-04-13 11:59:46 +0100316std::unique_ptr<const std::vector<uint8_t>> CompilerDriver::CreateQuickToInterpreterBridge()
317 const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700318 CREATE_TRAMPOLINE(QUICK, kQuickAbi, pQuickToInterpreterBridge)
Brian Carlstrom7940e442013-07-12 13:46:57 -0700319}
Ian Rogersdd7624d2014-03-14 17:43:00 -0700320#undef CREATE_TRAMPOLINE
Brian Carlstrom7940e442013-07-12 13:46:57 -0700321
322void CompilerDriver::CompileAll(jobject class_loader,
Brian Carlstrom45602482013-07-21 22:07:55 -0700323 const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -0800324 TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700325 DCHECK(!Runtime::Current()->IsStarted());
Andreas Gampeace0dc12016-01-20 13:33:13 -0800326
327 InitializeThreadPools();
328
Nicolas Geoffrayb0bbe8e2016-11-19 10:42:37 +0000329 PreCompile(class_loader, dex_files, timings);
Vladimir Markoaad75c62016-10-03 08:46:48 +0000330 if (GetCompilerOptions().IsBootImage()) {
Nicolas Geoffray762869d2016-07-15 15:28:35 +0100331 // We don't need to setup the intrinsics for non boot image compilation, as
332 // those compilations will pick up a boot image that have the ArtMethod already
333 // set with the intrinsics flag.
Orion Hodson26ef34c2017-11-01 13:32:41 +0000334 InitializeIntrinsics();
Nicolas Geoffray762869d2016-07-15 15:28:35 +0100335 }
Andreas Gampe740667a2015-09-15 17:55:06 -0700336 // Compile:
337 // 1) Compile all classes and methods enabled for compilation. May fall back to dex-to-dex
338 // compilation.
Nicolas Geoffray49cda062017-04-21 13:08:25 +0100339 if (GetCompilerOptions().IsAnyCompilationEnabled()) {
Andreas Gampeace0dc12016-01-20 13:33:13 -0800340 Compile(class_loader, dex_files, timings);
Andreas Gampe740667a2015-09-15 17:55:06 -0700341 }
Nicolas Geoffray2d8801f2017-11-28 15:50:07 +0000342 if (GetCompilerOptions().GetDumpStats()) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700343 stats_->Dump();
344 }
Andreas Gampeace0dc12016-01-20 13:33:13 -0800345
346 FreeThreadPools();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700347}
348
Mathieu Chartiera79efdb2018-01-18 16:31:01 -0800349static optimizer::DexToDexCompiler::CompilationLevel GetDexToDexCompilationLevel(
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700350 Thread* self, const CompilerDriver& driver, Handle<mirror::ClassLoader> class_loader,
351 const DexFile& dex_file, const DexFile::ClassDef& class_def)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700352 REQUIRES_SHARED(Locks::mutator_lock_) {
Nicolas Geoffrayf3075272018-01-08 12:41:19 +0000353 // When the dex file is uncompressed in the APK, we do not generate a copy in the .vdex
354 // file. As a result, dex2oat will map the dex file read-only, and we only need to check
355 // that to know if we can do quickening.
356 if (dex_file.GetContainer() != nullptr && dex_file.GetContainer()->IsReadOnly()) {
357 return optimizer::DexToDexCompiler::CompilationLevel::kDontDexToDexCompile;
358 }
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800359 auto* const runtime = Runtime::Current();
Nicolas Geoffray49cda062017-04-21 13:08:25 +0100360 DCHECK(driver.GetCompilerOptions().IsQuickeningCompilationEnabled());
Brian Carlstrom7940e442013-07-12 13:46:57 -0700361 const char* descriptor = dex_file.GetClassDescriptor(class_def);
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800362 ClassLinker* class_linker = runtime->GetClassLinker();
Vladimir Markoa8bba7d2018-05-30 15:18:48 +0100363 ObjPtr<mirror::Class> klass = class_linker->FindClass(self, descriptor, class_loader);
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700364 if (klass == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700365 CHECK(self->IsExceptionPending());
366 self->ClearException();
Mathieu Chartiera79efdb2018-01-18 16:31:01 -0800367 return optimizer::DexToDexCompiler::CompilationLevel::kDontDexToDexCompile;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700368 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700369 // DexToDex at the kOptimize level may introduce quickened opcodes, which replace symbolic
370 // references with actual offsets. We cannot re-verify such instructions.
371 //
372 // We store the verification information in the class status in the oat file, which the linker
373 // can validate (checksums) and use to skip load-time verification. It is thus safe to
374 // optimize when a class has been fully verified before.
Mathieu Chartiera79efdb2018-01-18 16:31:01 -0800375 optimizer::DexToDexCompiler::CompilationLevel max_level =
376 optimizer::DexToDexCompiler::CompilationLevel::kOptimize;
Alex Lighte40dd382017-01-25 17:44:53 -0800377 if (driver.GetCompilerOptions().GetDebuggable()) {
378 // We are debuggable so definitions of classes might be changed. We don't want to do any
379 // optimizations that could break that.
Mathieu Chartiera79efdb2018-01-18 16:31:01 -0800380 max_level = optimizer::DexToDexCompiler::CompilationLevel::kDontDexToDexCompile;
Alex Lighte40dd382017-01-25 17:44:53 -0800381 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700382 if (klass->IsVerified()) {
Sebastien Hertz75021222013-07-16 18:34:50 +0200383 // Class is verified so we can enable DEX-to-DEX compilation for performance.
Alex Lighte40dd382017-01-25 17:44:53 -0800384 return max_level;
Sebastien Hertz75021222013-07-16 18:34:50 +0200385 } else {
Andreas Gampe1a4bc7f2017-03-27 14:57:30 -0700386 // Class verification has failed: do not run DEX-to-DEX optimizations.
Mathieu Chartiera79efdb2018-01-18 16:31:01 -0800387 return optimizer::DexToDexCompiler::CompilationLevel::kDontDexToDexCompile;
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700388 }
389}
390
Mathieu Chartiera79efdb2018-01-18 16:31:01 -0800391static optimizer::DexToDexCompiler::CompilationLevel GetDexToDexCompilationLevel(
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700392 Thread* self,
393 const CompilerDriver& driver,
394 jobject jclass_loader,
395 const DexFile& dex_file,
396 const DexFile::ClassDef& class_def) {
397 ScopedObjectAccess soa(self);
398 StackHandleScope<1> hs(soa.Self());
399 Handle<mirror::ClassLoader> class_loader(
Mathieu Chartier0795f232016-09-27 18:43:30 -0700400 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader)));
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700401 return GetDexToDexCompilationLevel(self, driver, class_loader, dex_file, class_def);
402}
403
404// Does the runtime for the InstructionSet provide an implementation returned by
405// GetQuickGenericJniStub allowing down calls that aren't compiled using a JNI compiler?
406static bool InstructionSetHasGenericJniStub(InstructionSet isa) {
407 switch (isa) {
Vladimir Marko33bff252017-11-01 14:35:42 +0000408 case InstructionSet::kArm:
409 case InstructionSet::kArm64:
410 case InstructionSet::kThumb2:
411 case InstructionSet::kMips:
412 case InstructionSet::kMips64:
413 case InstructionSet::kX86:
414 case InstructionSet::kX86_64: return true;
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700415 default: return false;
416 }
417}
418
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800419template <typename CompileFn>
420static void CompileMethodHarness(
421 Thread* self,
422 CompilerDriver* driver,
423 const DexFile::CodeItem* code_item,
424 uint32_t access_flags,
425 InvokeType invoke_type,
426 uint16_t class_def_idx,
427 uint32_t method_idx,
428 Handle<mirror::ClassLoader> class_loader,
429 const DexFile& dex_file,
430 optimizer::DexToDexCompiler::CompilationLevel dex_to_dex_compilation_level,
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800431 Handle<mirror::DexCache> dex_cache,
432 CompileFn compile_fn) {
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700433 DCHECK(driver != nullptr);
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800434 CompiledMethod* compiled_method;
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700435 uint64_t start_ns = kTimeCompileMethod ? NanoTime() : 0;
436 MethodReference method_ref(&dex_file, method_idx);
437
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800438 compiled_method = compile_fn(self,
439 driver,
440 code_item,
441 access_flags,
442 invoke_type,
443 class_def_idx,
444 method_idx,
445 class_loader,
446 dex_file,
447 dex_to_dex_compilation_level,
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800448 dex_cache);
Igor Murashkin9d4b6da2016-07-29 09:51:58 -0700449
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700450 if (kTimeCompileMethod) {
451 uint64_t duration_ns = NanoTime() - start_ns;
452 if (duration_ns > MsToNs(driver->GetCompiler()->GetMaximumCompilationTimeBeforeWarning())) {
David Sehr709b0702016-10-13 09:12:37 -0700453 LOG(WARNING) << "Compilation of " << dex_file.PrettyMethod(method_idx)
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700454 << " took " << PrettyDuration(duration_ns);
455 }
456 }
457
458 if (compiled_method != nullptr) {
Vladimir Marko8e524ad2018-07-13 10:27:43 +0100459 driver->AddCompiledMethod(method_ref, compiled_method);
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700460 }
461
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700462 if (self->IsExceptionPending()) {
463 ScopedObjectAccess soa(self);
David Sehr709b0702016-10-13 09:12:37 -0700464 LOG(FATAL) << "Unexpected exception compiling: " << dex_file.PrettyMethod(method_idx) << "\n"
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700465 << self->GetException()->Dump();
Sebastien Hertz75021222013-07-16 18:34:50 +0200466 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700467}
468
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800469static void CompileMethodDex2Dex(
470 Thread* self,
471 CompilerDriver* driver,
472 const DexFile::CodeItem* code_item,
473 uint32_t access_flags,
474 InvokeType invoke_type,
475 uint16_t class_def_idx,
476 uint32_t method_idx,
477 Handle<mirror::ClassLoader> class_loader,
478 const DexFile& dex_file,
479 optimizer::DexToDexCompiler::CompilationLevel dex_to_dex_compilation_level,
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800480 Handle<mirror::DexCache> dex_cache) {
481 auto dex_2_dex_fn = [](Thread* self ATTRIBUTE_UNUSED,
482 CompilerDriver* driver,
483 const DexFile::CodeItem* code_item,
484 uint32_t access_flags,
485 InvokeType invoke_type,
486 uint16_t class_def_idx,
487 uint32_t method_idx,
488 Handle<mirror::ClassLoader> class_loader,
489 const DexFile& dex_file,
490 optimizer::DexToDexCompiler::CompilationLevel dex_to_dex_compilation_level,
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800491 Handle<mirror::DexCache> dex_cache ATTRIBUTE_UNUSED) -> CompiledMethod* {
492 DCHECK(driver != nullptr);
493 MethodReference method_ref(&dex_file, method_idx);
494
495 optimizer::DexToDexCompiler* const compiler = &driver->GetDexToDexCompiler();
496
497 if (compiler->ShouldCompileMethod(method_ref)) {
498 VerificationResults* results = driver->GetVerificationResults();
499 DCHECK(results != nullptr);
500 const VerifiedMethod* verified_method = results->GetVerifiedMethod(method_ref);
501 // Do not optimize if a VerifiedMethod is missing. SafeCast elision,
502 // for example, relies on it.
503 return compiler->CompileMethod(
504 code_item,
505 access_flags,
506 invoke_type,
507 class_def_idx,
508 method_idx,
509 class_loader,
510 dex_file,
511 (verified_method != nullptr)
512 ? dex_to_dex_compilation_level
513 : optimizer::DexToDexCompiler::CompilationLevel::kDontDexToDexCompile);
514 }
515 return nullptr;
516 };
517 CompileMethodHarness(self,
518 driver,
519 code_item,
520 access_flags,
521 invoke_type,
522 class_def_idx,
523 method_idx,
524 class_loader,
525 dex_file,
526 dex_to_dex_compilation_level,
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800527 dex_cache,
528 dex_2_dex_fn);
529}
530
531static void CompileMethodQuick(
532 Thread* self,
533 CompilerDriver* driver,
534 const DexFile::CodeItem* code_item,
535 uint32_t access_flags,
536 InvokeType invoke_type,
537 uint16_t class_def_idx,
538 uint32_t method_idx,
539 Handle<mirror::ClassLoader> class_loader,
540 const DexFile& dex_file,
541 optimizer::DexToDexCompiler::CompilationLevel dex_to_dex_compilation_level,
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800542 Handle<mirror::DexCache> dex_cache) {
543 auto quick_fn = [](
544 Thread* self,
545 CompilerDriver* driver,
546 const DexFile::CodeItem* code_item,
547 uint32_t access_flags,
548 InvokeType invoke_type,
549 uint16_t class_def_idx,
550 uint32_t method_idx,
551 Handle<mirror::ClassLoader> class_loader,
552 const DexFile& dex_file,
553 optimizer::DexToDexCompiler::CompilationLevel dex_to_dex_compilation_level,
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800554 Handle<mirror::DexCache> dex_cache) {
555 DCHECK(driver != nullptr);
556 CompiledMethod* compiled_method = nullptr;
557 MethodReference method_ref(&dex_file, method_idx);
558
559 if ((access_flags & kAccNative) != 0) {
560 // Are we extracting only and have support for generic JNI down calls?
561 if (!driver->GetCompilerOptions().IsJniCompilationEnabled() &&
Vladimir Markoa0431112018-06-25 09:32:54 +0100562 InstructionSetHasGenericJniStub(driver->GetCompilerOptions().GetInstructionSet())) {
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800563 // Leaving this empty will trigger the generic JNI version
564 } else {
565 // Query any JNI optimization annotations such as @FastNative or @CriticalNative.
566 access_flags |= annotations::GetNativeMethodAnnotationAccessFlags(
567 dex_file, dex_file.GetClassDef(class_def_idx), method_idx);
568
569 compiled_method = driver->GetCompiler()->JniCompile(
570 access_flags, method_idx, dex_file, dex_cache);
571 CHECK(compiled_method != nullptr);
572 }
573 } else if ((access_flags & kAccAbstract) != 0) {
574 // Abstract methods don't have code.
575 } else {
576 VerificationResults* results = driver->GetVerificationResults();
577 DCHECK(results != nullptr);
578 const VerifiedMethod* verified_method = results->GetVerifiedMethod(method_ref);
Mathieu Chartiera297b552018-11-07 11:41:01 -0800579 bool compile =
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800580 // Basic checks, e.g., not <clinit>.
581 results->IsCandidateForCompilation(method_ref, access_flags) &&
582 // Did not fail to create VerifiedMethod metadata.
583 verified_method != nullptr &&
584 // Do not have failures that should punt to the interpreter.
585 !verified_method->HasRuntimeThrow() &&
586 (verified_method->GetEncounteredVerificationFailures() &
587 (verifier::VERIFY_ERROR_FORCE_INTERPRETER | verifier::VERIFY_ERROR_LOCKING)) == 0 &&
588 // Is eligable for compilation by methods-to-compile filter.
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800589 driver->ShouldCompileBasedOnProfile(method_ref);
590
591 if (compile) {
592 // NOTE: if compiler declines to compile this method, it will return null.
593 compiled_method = driver->GetCompiler()->Compile(code_item,
594 access_flags,
595 invoke_type,
596 class_def_idx,
597 method_idx,
598 class_loader,
599 dex_file,
600 dex_cache);
601 }
602 if (compiled_method == nullptr &&
603 dex_to_dex_compilation_level !=
604 optimizer::DexToDexCompiler::CompilationLevel::kDontDexToDexCompile) {
605 DCHECK(!Runtime::Current()->UseJitCompilation());
606 // TODO: add a command-line option to disable DEX-to-DEX compilation ?
Mathieu Chartier279e3a32018-01-24 18:17:55 -0800607 driver->GetDexToDexCompiler().MarkForCompilation(self, method_ref);
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800608 }
609 }
610 return compiled_method;
611 };
612 CompileMethodHarness(self,
613 driver,
614 code_item,
615 access_flags,
616 invoke_type,
617 class_def_idx,
618 method_idx,
619 class_loader,
620 dex_file,
621 dex_to_dex_compilation_level,
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800622 dex_cache,
623 quick_fn);
624}
625
Vladimir Markodc4bcce2018-06-21 16:15:42 +0100626// Compile a single Method. (For testing only.)
627void CompilerDriver::CompileOne(Thread* self,
628 jobject class_loader,
629 const DexFile& dex_file,
630 uint16_t class_def_idx,
631 uint32_t method_idx,
632 uint32_t access_flags,
633 InvokeType invoke_type,
634 const DexFile::CodeItem* code_item,
635 Handle<mirror::DexCache> dex_cache,
636 Handle<mirror::ClassLoader> h_class_loader) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700637 // Can we run DEX-to-DEX compiler on this class ?
Mathieu Chartiera79efdb2018-01-18 16:31:01 -0800638 optimizer::DexToDexCompiler::CompilationLevel dex_to_dex_compilation_level =
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700639 GetDexToDexCompilationLevel(self,
640 *this,
Vladimir Markodc4bcce2018-06-21 16:15:42 +0100641 class_loader,
642 dex_file,
643 dex_file.GetClassDef(class_def_idx));
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700644
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800645 CompileMethodQuick(self,
646 this,
647 code_item,
648 access_flags,
649 invoke_type,
650 class_def_idx,
651 method_idx,
Vladimir Markodc4bcce2018-06-21 16:15:42 +0100652 h_class_loader,
653 dex_file,
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800654 dex_to_dex_compilation_level,
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800655 dex_cache);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700656
Mathieu Chartier279e3a32018-01-24 18:17:55 -0800657 const size_t num_methods = dex_to_dex_compiler_.NumCodeItemsToQuicken(self);
Mathieu Chartiera79efdb2018-01-18 16:31:01 -0800658 if (num_methods != 0) {
659 DCHECK_EQ(num_methods, 1u);
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800660 CompileMethodDex2Dex(self,
661 this,
662 code_item,
663 access_flags,
664 invoke_type,
665 class_def_idx,
666 method_idx,
Vladimir Markodc4bcce2018-06-21 16:15:42 +0100667 h_class_loader,
668 dex_file,
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800669 dex_to_dex_compilation_level,
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800670 dex_cache);
Mathieu Chartiera79efdb2018-01-18 16:31:01 -0800671 dex_to_dex_compiler_.ClearState();
Vladimir Marko492a7fa2016-06-01 18:38:43 +0100672 }
Mathieu Chartier2535abe2015-02-17 10:38:49 -0800673}
674
Andreas Gampeace0dc12016-01-20 13:33:13 -0800675void CompilerDriver::Resolve(jobject class_loader,
676 const std::vector<const DexFile*>& dex_files,
677 TimingLogger* timings) {
678 // Resolution allocates classes and needs to run single-threaded to be deterministic.
679 bool force_determinism = GetCompilerOptions().IsForceDeterminism();
680 ThreadPool* resolve_thread_pool = force_determinism
681 ? single_thread_pool_.get()
682 : parallel_thread_pool_.get();
683 size_t resolve_thread_count = force_determinism ? 1U : parallel_thread_count_;
684
Brian Carlstrom7940e442013-07-12 13:46:57 -0700685 for (size_t i = 0; i != dex_files.size(); ++i) {
686 const DexFile* dex_file = dex_files[i];
Kenny Rootd5185342014-05-13 14:47:05 -0700687 CHECK(dex_file != nullptr);
Andreas Gampeace0dc12016-01-20 13:33:13 -0800688 ResolveDexFile(class_loader,
689 *dex_file,
690 dex_files,
691 resolve_thread_pool,
692 resolve_thread_count,
693 timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700694 }
695}
696
Mathieu Chartiercd0f38f2018-10-15 09:44:35 -0700697void CompilerDriver::ResolveConstStrings(const std::vector<const DexFile*>& dex_files,
698 bool only_startup_strings,
699 TimingLogger* timings) {
Nicolas Geoffray571d2342016-10-12 13:03:15 +0000700 ScopedObjectAccess soa(Thread::Current());
701 StackHandleScope<1> hs(soa.Self());
702 ClassLinker* const class_linker = Runtime::Current()->GetClassLinker();
703 MutableHandle<mirror::DexCache> dex_cache(hs.NewHandle<mirror::DexCache>(nullptr));
Mathieu Chartier22752772018-10-18 14:18:59 -0700704 size_t num_instructions = 0u;
Nicolas Geoffray571d2342016-10-12 13:03:15 +0000705
Andreas Gampeace0dc12016-01-20 13:33:13 -0800706 for (const DexFile* dex_file : dex_files) {
Vladimir Markocd556b02017-02-03 11:47:34 +0000707 dex_cache.Assign(class_linker->FindDexCache(soa.Self(), *dex_file));
Mathieu Chartier1ca718e2018-10-23 12:55:34 -0700708 if (only_startup_strings) {
709 // When resolving startup strings, create the preresolved strings array.
710 dex_cache->AddPreResolvedStringsArray();
711 }
Andreas Gampeace0dc12016-01-20 13:33:13 -0800712 TimingLogger::ScopedTiming t("Resolve const-string Strings", timings);
713
Mathieu Chartiera297b552018-11-07 11:41:01 -0800714 // TODO: Implement a profile-based filter for the boot image. See b/76145463.
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -0700715 for (ClassAccessor accessor : dex_file->GetClasses()) {
Vladimir Marko1a2a5cd2018-11-07 15:39:48 +0000716 const ProfileCompilationInfo* profile_compilation_info =
717 GetCompilerOptions().GetProfileCompilationInfo();
Mathieu Chartiera297b552018-11-07 11:41:01 -0800718
Mathieu Chartier22752772018-10-18 14:18:59 -0700719 const bool is_startup_class =
Vladimir Marko1a2a5cd2018-11-07 15:39:48 +0000720 profile_compilation_info != nullptr &&
721 profile_compilation_info->ContainsClass(*dex_file, accessor.GetClassIdx());
Mathieu Chartier22752772018-10-18 14:18:59 -0700722
Mathieu Chartier0d896bd2018-05-25 00:20:27 -0700723 for (const ClassAccessor::Method& method : accessor.GetMethods()) {
Mathieu Chartier22752772018-10-18 14:18:59 -0700724 const bool is_clinit = (method.GetAccessFlags() & kAccConstructor) != 0 &&
725 (method.GetAccessFlags() & kAccStatic) != 0;
726 const bool is_startup_clinit = is_startup_class && is_clinit;
727
Mathieu Chartiercd0f38f2018-10-15 09:44:35 -0700728 if (only_startup_strings &&
Vladimir Marko1a2a5cd2018-11-07 15:39:48 +0000729 profile_compilation_info != nullptr &&
730 (!profile_compilation_info->GetMethodHotness(method.GetReference()).IsStartup() &&
Mathieu Chartier22752772018-10-18 14:18:59 -0700731 !is_startup_clinit)) {
Mathieu Chartiercd0f38f2018-10-15 09:44:35 -0700732 continue;
733 }
734
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -0700735 // Resolve const-strings in the code. Done to have deterministic allocation behavior. Right
736 // now this is single-threaded for simplicity.
737 // TODO: Collect the relevant string indices in parallel, then allocate them sequentially
738 // in a stable order.
739 for (const DexInstructionPcPair& inst : method.GetInstructions()) {
740 switch (inst->Opcode()) {
741 case Instruction::CONST_STRING:
742 case Instruction::CONST_STRING_JUMBO: {
743 dex::StringIndex string_index((inst->Opcode() == Instruction::CONST_STRING)
744 ? inst->VRegB_21c()
745 : inst->VRegB_31c());
746 ObjPtr<mirror::String> string = class_linker->ResolveString(string_index, dex_cache);
747 CHECK(string != nullptr) << "Could not allocate a string when forcing determinism";
Mathieu Chartier1ca718e2018-10-23 12:55:34 -0700748 if (only_startup_strings) {
749 dex_cache->GetPreResolvedStrings()[string_index.index_] =
750 GcRoot<mirror::String>(string);
751 }
Mathieu Chartier22752772018-10-18 14:18:59 -0700752 ++num_instructions;
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -0700753 break;
754 }
Andreas Gampeace0dc12016-01-20 13:33:13 -0800755
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -0700756 default:
757 break;
758 }
759 }
Mathieu Chartier0d896bd2018-05-25 00:20:27 -0700760 }
Vladimir Marko175e7862018-03-27 09:03:13 +0000761 }
762 }
Mathieu Chartier22752772018-10-18 14:18:59 -0700763 VLOG(compiler) << "Resolved " << num_instructions << " const string instructions";
Vladimir Marko175e7862018-03-27 09:03:13 +0000764}
765
766// Initialize type check bit strings for check-cast and instance-of in the code. Done to have
767// deterministic allocation behavior. Right now this is single-threaded for simplicity.
768// TODO: Collect the relevant type indices in parallel, then process them sequentially in a
769// stable order.
770
771static void InitializeTypeCheckBitstrings(CompilerDriver* driver,
772 ClassLinker* class_linker,
773 Handle<mirror::DexCache> dex_cache,
774 const DexFile& dex_file,
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -0700775 const ClassAccessor::Method& method)
Vladimir Marko175e7862018-03-27 09:03:13 +0000776 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -0700777 for (const DexInstructionPcPair& inst : method.GetInstructions()) {
Vladimir Marko175e7862018-03-27 09:03:13 +0000778 switch (inst->Opcode()) {
779 case Instruction::CHECK_CAST:
780 case Instruction::INSTANCE_OF: {
781 dex::TypeIndex type_index(
782 (inst->Opcode() == Instruction::CHECK_CAST) ? inst->VRegB_21c() : inst->VRegC_22c());
783 const char* descriptor = dex_file.StringByTypeIdx(type_index);
784 // We currently do not use the bitstring type check for array or final (including
785 // primitive) classes. We may reconsider this in future if it's deemed to be beneficial.
786 // And we cannot use it for classes outside the boot image as we do not know the runtime
787 // value of their bitstring when compiling (it may not even get assigned at runtime).
Vladimir Markodc4bcce2018-06-21 16:15:42 +0100788 if (descriptor[0] == 'L' && driver->GetCompilerOptions().IsImageClass(descriptor)) {
Vladimir Marko175e7862018-03-27 09:03:13 +0000789 ObjPtr<mirror::Class> klass =
790 class_linker->LookupResolvedType(type_index,
791 dex_cache.Get(),
792 /* class_loader */ nullptr);
793 CHECK(klass != nullptr) << descriptor << " should have been previously resolved.";
794 // Now assign the bitstring if the class is not final. Keep this in sync with sharpening.
795 if (!klass->IsFinal()) {
796 MutexLock subtype_check_lock(Thread::Current(), *Locks::subtype_check_lock_);
797 SubtypeCheck<ObjPtr<mirror::Class>>::EnsureAssigned(klass);
798 }
Andreas Gampeace0dc12016-01-20 13:33:13 -0800799 }
Vladimir Marko175e7862018-03-27 09:03:13 +0000800 break;
801 }
802
803 default:
804 break;
805 }
806 }
807}
808
809static void InitializeTypeCheckBitstrings(CompilerDriver* driver,
810 const std::vector<const DexFile*>& dex_files,
811 TimingLogger* timings) {
812 ScopedObjectAccess soa(Thread::Current());
813 StackHandleScope<1> hs(soa.Self());
814 ClassLinker* const class_linker = Runtime::Current()->GetClassLinker();
815 MutableHandle<mirror::DexCache> dex_cache(hs.NewHandle<mirror::DexCache>(nullptr));
816
817 for (const DexFile* dex_file : dex_files) {
818 dex_cache.Assign(class_linker->FindDexCache(soa.Self(), *dex_file));
819 TimingLogger::ScopedTiming t("Initialize type check bitstrings", timings);
820
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -0700821 for (ClassAccessor accessor : dex_file->GetClasses()) {
Vladimir Marko175e7862018-03-27 09:03:13 +0000822 // Direct and virtual methods.
Mathieu Chartier0d896bd2018-05-25 00:20:27 -0700823 for (const ClassAccessor::Method& method : accessor.GetMethods()) {
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -0700824 InitializeTypeCheckBitstrings(driver, class_linker, dex_cache, *dex_file, method);
Mathieu Chartier0d896bd2018-05-25 00:20:27 -0700825 }
Andreas Gampeace0dc12016-01-20 13:33:13 -0800826 }
827 }
828}
829
830inline void CompilerDriver::CheckThreadPools() {
831 DCHECK(parallel_thread_pool_ != nullptr);
832 DCHECK(single_thread_pool_ != nullptr);
833}
834
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +0000835static void EnsureVerifiedOrVerifyAtRuntime(jobject jclass_loader,
836 const std::vector<const DexFile*>& dex_files) {
837 ScopedObjectAccess soa(Thread::Current());
838 StackHandleScope<2> hs(soa.Self());
839 Handle<mirror::ClassLoader> class_loader(
840 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader)));
841 MutableHandle<mirror::Class> cls(hs.NewHandle<mirror::Class>(nullptr));
842 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
843
844 for (const DexFile* dex_file : dex_files) {
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -0700845 for (ClassAccessor accessor : dex_file->GetClasses()) {
846 cls.Assign(class_linker->FindClass(soa.Self(), accessor.GetDescriptor(), class_loader));
Andreas Gampefa4333d2017-02-14 11:10:34 -0800847 if (cls == nullptr) {
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +0000848 soa.Self()->ClearException();
849 } else if (&cls->GetDexFile() == dex_file) {
Nicolas Geoffray7cc3ae52017-03-07 14:33:37 +0000850 DCHECK(cls->IsErroneous() || cls->IsVerified() || cls->ShouldVerifyAtRuntime())
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +0000851 << cls->PrettyClass()
852 << " " << cls->GetStatus();
853 }
854 }
855 }
856}
857
Andreas Gampeace0dc12016-01-20 13:33:13 -0800858void CompilerDriver::PreCompile(jobject class_loader,
859 const std::vector<const DexFile*>& dex_files,
860 TimingLogger* timings) {
861 CheckThreadPools();
Vladimir Marko213ee2d2018-06-22 11:56:34 +0100862
Vladimir Markodc4bcce2018-06-21 16:15:42 +0100863 VLOG(compiler) << "Before precompile " << GetMemoryUsageString(false);
864
Vladimir Marko213ee2d2018-06-22 11:56:34 +0100865 compiled_classes_.AddDexFiles(GetCompilerOptions().GetDexFilesForOatFile());
866 dex_to_dex_compiler_.SetDexFiles(GetCompilerOptions().GetDexFilesForOatFile());
867
Vladimir Markodc4bcce2018-06-21 16:15:42 +0100868 // Precompile:
869 // 1) Load image classes.
870 // 2) Resolve all classes.
871 // 3) For deterministic boot image, resolve strings for const-string instructions.
872 // 4) Attempt to verify all classes.
873 // 5) Attempt to initialize image classes, and trivially initialized classes.
874 // 6) Update the set of image classes.
875 // 7) For deterministic boot image, initialize bitstrings for type checking.
Andreas Gampeace0dc12016-01-20 13:33:13 -0800876
Brian Carlstrom7940e442013-07-12 13:46:57 -0700877 LoadImageClasses(timings);
Andreas Gampe8d295f82015-01-20 14:50:21 -0800878 VLOG(compiler) << "LoadImageClasses: " << GetMemoryUsageString(false);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700879
Nicolas Geoffray49cda062017-04-21 13:08:25 +0100880 if (compiler_options_->IsAnyCompilationEnabled()) {
Mathieu Chartier88b74b62017-07-16 17:08:19 -0700881 // Avoid adding the dex files in the case where we aren't going to add compiled methods.
882 // This reduces RAM usage for this case.
883 for (const DexFile* dex_file : dex_files) {
884 // Can be already inserted if the caller is CompileOne. This happens for gtests.
885 if (!compiled_methods_.HaveDexFile(dex_file)) {
Mathieu Chartierfc8b4222017-09-17 13:44:24 -0700886 compiled_methods_.AddDexFile(dex_file);
Mathieu Chartier88b74b62017-07-16 17:08:19 -0700887 }
888 }
Nicolas Geoffray49cda062017-04-21 13:08:25 +0100889 // Resolve eagerly to prepare for compilation.
Andreas Gampeace0dc12016-01-20 13:33:13 -0800890 Resolve(class_loader, dex_files, timings);
Mathieu Chartiere86deef2015-03-19 13:43:37 -0700891 VLOG(compiler) << "Resolve: " << GetMemoryUsageString(false);
892 }
893
Nicolas Geoffray60ca9492016-12-20 21:15:00 +0000894 if (compiler_options_->AssumeClassesAreVerified()) {
Mathieu Chartierab972ef2014-12-03 17:38:22 -0800895 VLOG(compiler) << "Verify none mode specified, skipping verification.";
Andreas Gampeace0dc12016-01-20 13:33:13 -0800896 SetVerified(class_loader, dex_files, timings);
Mathieu Chartiere86deef2015-03-19 13:43:37 -0700897 }
898
Nicolas Geoffray60ca9492016-12-20 21:15:00 +0000899 if (!compiler_options_->IsVerificationEnabled()) {
Jeff Hao4a200f52014-04-01 14:58:49 -0700900 return;
901 }
902
Vladimir Markoaad75c62016-10-03 08:46:48 +0000903 if (GetCompilerOptions().IsForceDeterminism() && GetCompilerOptions().IsBootImage()) {
Andreas Gampeace0dc12016-01-20 13:33:13 -0800904 // Resolve strings from const-string. Do this now to have a deterministic image.
Mathieu Chartiercd0f38f2018-10-15 09:44:35 -0700905 ResolveConstStrings(dex_files, /*only_startup_strings=*/ false, timings);
Andreas Gampeace0dc12016-01-20 13:33:13 -0800906 VLOG(compiler) << "Resolve const-strings: " << GetMemoryUsageString(false);
Mathieu Chartiercd0f38f2018-10-15 09:44:35 -0700907 } else if (GetCompilerOptions().ResolveStartupConstStrings()) {
908 ResolveConstStrings(dex_files, /*only_startup_strings=*/ true, timings);
Andreas Gampeace0dc12016-01-20 13:33:13 -0800909 }
910
Nicolas Geoffrayb0bbe8e2016-11-19 10:42:37 +0000911 Verify(class_loader, dex_files, timings);
Andreas Gampe8d295f82015-01-20 14:50:21 -0800912 VLOG(compiler) << "Verify: " << GetMemoryUsageString(false);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700913
Andreas Gampe6cf49e52015-03-05 13:08:45 -0800914 if (had_hard_verifier_failure_ && GetCompilerOptions().AbortOnHardVerifierFailure()) {
Andreas Gampefdfb4d42017-07-27 12:12:22 -0700915 // Avoid dumping threads. Even if we shut down the thread pools, there will still be three
916 // instances of this thread's stack.
917 LOG(FATAL_WITHOUT_ABORT) << "Had a hard failure verifying all classes, and was asked to abort "
918 << "in such situations. Please check the log.";
Andreas Gampe56c9b7c2018-02-27 18:49:26 -0800919 _exit(1);
Andreas Gampef39208f2017-10-19 15:06:59 -0700920 } else if (number_of_soft_verifier_failures_ > 0 &&
921 GetCompilerOptions().AbortOnSoftVerifierFailure()) {
922 LOG(FATAL_WITHOUT_ABORT) << "Had " << number_of_soft_verifier_failures_ << " soft failure(s) "
923 << "verifying all classes, and was asked to abort in such situations. "
924 << "Please check the log.";
Andreas Gampe56c9b7c2018-02-27 18:49:26 -0800925 _exit(1);
Andreas Gampe6cf49e52015-03-05 13:08:45 -0800926 }
927
Nicolas Geoffray49cda062017-04-21 13:08:25 +0100928 if (compiler_options_->IsAnyCompilationEnabled()) {
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +0000929 if (kIsDebugBuild) {
930 EnsureVerifiedOrVerifyAtRuntime(class_loader, dex_files);
931 }
Nicolas Geoffrayade72d62016-12-15 13:20:02 +0000932 InitializeClasses(class_loader, dex_files, timings);
933 VLOG(compiler) << "InitializeClasses: " << GetMemoryUsageString(false);
934 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700935
936 UpdateImageClasses(timings);
Andreas Gampe8d295f82015-01-20 14:50:21 -0800937 VLOG(compiler) << "UpdateImageClasses: " << GetMemoryUsageString(false);
Vladimir Marko175e7862018-03-27 09:03:13 +0000938
939 if (kBitstringSubtypeCheckEnabled &&
940 GetCompilerOptions().IsForceDeterminism() && GetCompilerOptions().IsBootImage()) {
941 // Initialize type check bit string used by check-cast and instanceof.
942 // Do this now to have a deterministic image.
943 // Note: This is done after UpdateImageClasses() at it relies on the image classes to be final.
944 InitializeTypeCheckBitstrings(this, dex_files, timings);
945 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700946}
947
Calin Juravle226501b2015-12-11 14:41:31 +0000948bool CompilerDriver::ShouldCompileBasedOnProfile(const MethodReference& method_ref) const {
Mathieu Chartier97ab5e32017-02-22 13:35:44 -0800949 // Profile compilation info may be null if no profile is passed.
Mathieu Chartierd0af56c2017-02-17 12:56:25 -0800950 if (!CompilerFilter::DependsOnProfile(compiler_options_->GetCompilerFilter())) {
951 // Use the compiler filter instead of the presence of profile_compilation_info_ since
952 // we may want to have full speed compilation along with profile based layout optimizations.
Calin Juravle226501b2015-12-11 14:41:31 +0000953 return true;
954 }
Mathieu Chartier97ab5e32017-02-22 13:35:44 -0800955 // If we are using a profile filter but do not have a profile compilation info, compile nothing.
Vladimir Marko1a2a5cd2018-11-07 15:39:48 +0000956 const ProfileCompilationInfo* profile_compilation_info =
957 GetCompilerOptions().GetProfileCompilationInfo();
958 if (profile_compilation_info == nullptr) {
Mathieu Chartier97ab5e32017-02-22 13:35:44 -0800959 return false;
960 }
Mathieu Chartier7b135c82017-06-05 12:54:01 -0700961 // Compile only hot methods, it is the profile saver's job to decide what startup methods to mark
962 // as hot.
Vladimir Marko1a2a5cd2018-11-07 15:39:48 +0000963 bool result = profile_compilation_info->GetMethodHotness(method_ref).IsHot();
Calin Juravle226501b2015-12-11 14:41:31 +0000964
965 if (kDebugProfileGuidedCompilation) {
966 LOG(INFO) << "[ProfileGuidedCompilation] "
Mathieu Chartierfc8b4222017-09-17 13:44:24 -0700967 << (result ? "Compiled" : "Skipped") << " method:" << method_ref.PrettyMethod(true);
Calin Juravle226501b2015-12-11 14:41:31 +0000968 }
969 return result;
970}
971
Mathieu Chartiere0671ce2015-07-28 17:23:28 -0700972class ResolveCatchBlockExceptionsClassVisitor : public ClassVisitor {
973 public:
Vladimir Marko8d6768d2017-03-14 10:13:21 +0000974 ResolveCatchBlockExceptionsClassVisitor() : classes_() {}
Mathieu Chartiere0671ce2015-07-28 17:23:28 -0700975
Roland Levillainf73caca2018-08-24 17:19:07 +0100976 bool operator()(ObjPtr<mirror::Class> c) override REQUIRES_SHARED(Locks::mutator_lock_) {
Vladimir Marko8d6768d2017-03-14 10:13:21 +0000977 classes_.push_back(c);
Mathieu Chartiere4275c02015-08-06 15:34:15 -0700978 return true;
979 }
980
Vladimir Marko8d6768d2017-03-14 10:13:21 +0000981 void FindExceptionTypesToResolve(
982 std::set<std::pair<dex::TypeIndex, const DexFile*>>* exceptions_to_resolve)
Vladimir Markobfb80d22017-02-14 14:08:12 +0000983 REQUIRES_SHARED(Locks::mutator_lock_) {
Vladimir Marko8d6768d2017-03-14 10:13:21 +0000984 const auto pointer_size = Runtime::Current()->GetClassLinker()->GetImagePointerSize();
985 for (ObjPtr<mirror::Class> klass : classes_) {
986 for (ArtMethod& method : klass->GetMethods(pointer_size)) {
987 FindExceptionTypesToResolveForMethod(&method, exceptions_to_resolve);
988 }
989 }
990 }
991
992 private:
993 void FindExceptionTypesToResolveForMethod(
994 ArtMethod* method,
995 std::set<std::pair<dex::TypeIndex, const DexFile*>>* exceptions_to_resolve)
996 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartier808c7a52017-12-15 11:19:33 -0800997 if (method->GetCodeItem() == nullptr) {
Mathieu Chartiere0671ce2015-07-28 17:23:28 -0700998 return; // native or abstract method
Brian Carlstrom7940e442013-07-12 13:46:57 -0700999 }
David Sehr0225f8e2018-01-31 08:52:24 +00001000 CodeItemDataAccessor accessor(method->DexInstructionData());
Mathieu Chartier808c7a52017-12-15 11:19:33 -08001001 if (accessor.TriesSize() == 0) {
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001002 return; // nothing to process
1003 }
Mathieu Chartier808c7a52017-12-15 11:19:33 -08001004 const uint8_t* encoded_catch_handler_list = accessor.GetCatchHandlerData();
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001005 size_t num_encoded_catch_handlers = DecodeUnsignedLeb128(&encoded_catch_handler_list);
1006 for (size_t i = 0; i < num_encoded_catch_handlers; i++) {
1007 int32_t encoded_catch_handler_size = DecodeSignedLeb128(&encoded_catch_handler_list);
1008 bool has_catch_all = false;
1009 if (encoded_catch_handler_size <= 0) {
1010 encoded_catch_handler_size = -encoded_catch_handler_size;
1011 has_catch_all = true;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001012 }
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001013 for (int32_t j = 0; j < encoded_catch_handler_size; j++) {
Andreas Gampea5b09a62016-11-17 15:21:22 -08001014 dex::TypeIndex encoded_catch_handler_handlers_type_idx =
1015 dex::TypeIndex(DecodeUnsignedLeb128(&encoded_catch_handler_list));
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001016 // Add to set of types to resolve if not already in the dex cache resolved types
Vladimir Marko8d6768d2017-03-14 10:13:21 +00001017 if (!method->IsResolvedTypeIdx(encoded_catch_handler_handlers_type_idx)) {
1018 exceptions_to_resolve->emplace(encoded_catch_handler_handlers_type_idx,
1019 method->GetDexFile());
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001020 }
1021 // ignore address associated with catch handler
1022 DecodeUnsignedLeb128(&encoded_catch_handler_list);
1023 }
1024 if (has_catch_all) {
1025 // ignore catch all address
1026 DecodeUnsignedLeb128(&encoded_catch_handler_list);
1027 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001028 }
1029 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001030
Vladimir Marko8d6768d2017-03-14 10:13:21 +00001031 std::vector<ObjPtr<mirror::Class>> classes_;
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001032};
1033
1034class RecordImageClassesVisitor : public ClassVisitor {
1035 public:
Vladimir Marko54159c62018-06-20 14:30:08 +01001036 explicit RecordImageClassesVisitor(HashSet<std::string>* image_classes)
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001037 : image_classes_(image_classes) {}
1038
Roland Levillainbbc6e7e2018-08-24 16:58:47 +01001039 bool operator()(ObjPtr<mirror::Class> klass) override REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001040 std::string temp;
1041 image_classes_->insert(klass->GetDescriptor(&temp));
1042 return true;
1043 }
1044
1045 private:
Vladimir Marko54159c62018-06-20 14:30:08 +01001046 HashSet<std::string>* const image_classes_;
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001047};
Brian Carlstrom7940e442013-07-12 13:46:57 -07001048
1049// Make a list of descriptors for classes to include in the image
Mathieu Chartier90443472015-07-16 20:32:27 -07001050void CompilerDriver::LoadImageClasses(TimingLogger* timings) {
Kenny Rootd5185342014-05-13 14:47:05 -07001051 CHECK(timings != nullptr);
Vladimir Markoaad75c62016-10-03 08:46:48 +00001052 if (!GetCompilerOptions().IsBootImage()) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001053 return;
1054 }
1055
Mathieu Chartierf5997b42014-06-20 10:37:54 -07001056 TimingLogger::ScopedTiming t("LoadImageClasses", timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001057 // Make a first class to load all classes explicitly listed in the file
1058 Thread* self = Thread::Current();
1059 ScopedObjectAccess soa(self);
1060 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Vladimir Markodc4bcce2018-06-21 16:15:42 +01001061 CHECK(image_classes_ != nullptr);
Mathieu Chartier02e25112013-08-14 16:14:24 -07001062 for (auto it = image_classes_->begin(), end = image_classes_->end(); it != end;) {
Vladimir Markoe9c36b32013-11-21 15:49:16 +00001063 const std::string& descriptor(*it);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001064 StackHandleScope<1> hs(self);
1065 Handle<mirror::Class> klass(
1066 hs.NewHandle(class_linker->FindSystemClass(self, descriptor.c_str())));
Andreas Gampefa4333d2017-02-14 11:10:34 -08001067 if (klass == nullptr) {
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001068 VLOG(compiler) << "Failed to find class " << descriptor;
Vladimir Marko54159c62018-06-20 14:30:08 +01001069 it = image_classes_->erase(it);
Ian Rogersa436fde2013-08-27 23:34:06 -07001070 self->ClearException();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001071 } else {
1072 ++it;
1073 }
1074 }
1075
1076 // Resolve exception classes referenced by the loaded classes. The catch logic assumes
1077 // exceptions are resolved by the verifier when there is a catch block in an interested method.
1078 // Do this here so that exception classes appear to have been specified image classes.
Andreas Gampea5b09a62016-11-17 15:21:22 -08001079 std::set<std::pair<dex::TypeIndex, const DexFile*>> unresolved_exception_types;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001080 StackHandleScope<1> hs(self);
1081 Handle<mirror::Class> java_lang_Throwable(
1082 hs.NewHandle(class_linker->FindSystemClass(self, "Ljava/lang/Throwable;")));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001083 do {
1084 unresolved_exception_types.clear();
Vladimir Marko8d6768d2017-03-14 10:13:21 +00001085 {
1086 // Thread suspension is not allowed while ResolveCatchBlockExceptionsClassVisitor
1087 // is using a std::vector<ObjPtr<mirror::Class>>.
1088 ScopedAssertNoThreadSuspension ants(__FUNCTION__);
1089 ResolveCatchBlockExceptionsClassVisitor visitor;
1090 class_linker->VisitClasses(&visitor);
1091 visitor.FindExceptionTypesToResolve(&unresolved_exception_types);
1092 }
Andreas Gampea5b09a62016-11-17 15:21:22 -08001093 for (const auto& exception_type : unresolved_exception_types) {
1094 dex::TypeIndex exception_type_idx = exception_type.first;
Mathieu Chartier02e25112013-08-14 16:14:24 -07001095 const DexFile* dex_file = exception_type.second;
Vladimir Marko666ee3d2017-12-11 18:37:36 +00001096 StackHandleScope<1> hs2(self);
Mathieu Chartierf284d442016-06-02 11:48:30 -07001097 Handle<mirror::DexCache> dex_cache(hs2.NewHandle(class_linker->RegisterDexFile(*dex_file,
1098 nullptr)));
Vladimir Marko666ee3d2017-12-11 18:37:36 +00001099 ObjPtr<mirror::Class> klass =
Andreas Gampefa4333d2017-02-14 11:10:34 -08001100 (dex_cache != nullptr)
Vladimir Marko666ee3d2017-12-11 18:37:36 +00001101 ? class_linker->ResolveType(exception_type_idx,
Vladimir Markocd556b02017-02-03 11:47:34 +00001102 dex_cache,
1103 ScopedNullHandle<mirror::ClassLoader>())
Vladimir Marko666ee3d2017-12-11 18:37:36 +00001104 : nullptr;
Andreas Gampefa4333d2017-02-14 11:10:34 -08001105 if (klass == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001106 const DexFile::TypeId& type_id = dex_file->GetTypeId(exception_type_idx);
1107 const char* descriptor = dex_file->GetTypeDescriptor(type_id);
1108 LOG(FATAL) << "Failed to resolve class " << descriptor;
1109 }
Vladimir Marko666ee3d2017-12-11 18:37:36 +00001110 DCHECK(java_lang_Throwable->IsAssignableFrom(klass));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001111 }
1112 // Resolving exceptions may load classes that reference more exceptions, iterate until no
1113 // more are found
1114 } while (!unresolved_exception_types.empty());
1115
1116 // We walk the roots looking for classes so that we'll pick up the
1117 // above classes plus any classes them depend on such super
1118 // classes, interfaces, and the required ClassLinker roots.
Vladimir Markodc4bcce2018-06-21 16:15:42 +01001119 RecordImageClassesVisitor visitor(image_classes_);
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001120 class_linker->VisitClasses(&visitor);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001121
Vladimir Marko54159c62018-06-20 14:30:08 +01001122 CHECK(!image_classes_->empty());
Brian Carlstrom7940e442013-07-12 13:46:57 -07001123}
1124
Vladimir Marko19a4d372016-12-08 14:41:46 +00001125static void MaybeAddToImageClasses(Thread* self,
1126 ObjPtr<mirror::Class> klass,
Vladimir Marko54159c62018-06-20 14:30:08 +01001127 HashSet<std::string>* image_classes)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001128 REQUIRES_SHARED(Locks::mutator_lock_) {
Vladimir Marko19a4d372016-12-08 14:41:46 +00001129 DCHECK_EQ(self, Thread::Current());
Mathieu Chartierf8322842014-05-16 10:59:25 -07001130 StackHandleScope<1> hs(self);
Ian Rogers1ff3c982014-08-12 02:30:58 -07001131 std::string temp;
Andreas Gampe542451c2016-07-26 09:02:02 -07001132 const PointerSize pointer_size = Runtime::Current()->GetClassLinker()->GetImagePointerSize();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001133 while (!klass->IsObjectClass()) {
Ian Rogers1ff3c982014-08-12 02:30:58 -07001134 const char* descriptor = klass->GetDescriptor(&temp);
Vladimir Marko54159c62018-06-20 14:30:08 +01001135 if (image_classes->find(StringPiece(descriptor)) != image_classes->end()) {
1136 break; // Previously inserted.
Brian Carlstrom7940e442013-07-12 13:46:57 -07001137 }
Vladimir Marko54159c62018-06-20 14:30:08 +01001138 image_classes->insert(descriptor);
Ian Rogers1ff3c982014-08-12 02:30:58 -07001139 VLOG(compiler) << "Adding " << descriptor << " to image classes";
Vladimir Marko19a4d372016-12-08 14:41:46 +00001140 for (size_t i = 0, num_interfaces = klass->NumDirectInterfaces(); i != num_interfaces; ++i) {
1141 ObjPtr<mirror::Class> interface = mirror::Class::GetDirectInterface(self, klass, i);
1142 DCHECK(interface != nullptr);
1143 MaybeAddToImageClasses(self, interface, image_classes);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001144 }
Vladimir Marko19a4d372016-12-08 14:41:46 +00001145 for (auto& m : klass->GetVirtualMethods(pointer_size)) {
1146 MaybeAddToImageClasses(self, m.GetDeclaringClass(), image_classes);
Mathieu Chartiere401d142015-04-22 13:56:20 -07001147 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001148 if (klass->IsArrayClass()) {
Vladimir Marko19a4d372016-12-08 14:41:46 +00001149 MaybeAddToImageClasses(self, klass->GetComponentType(), image_classes);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001150 }
Andreas Gampe98104992018-10-16 12:49:47 -07001151 klass = klass->GetSuperClass();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001152 }
1153}
1154
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001155// Keeps all the data for the update together. Also doubles as the reference visitor.
1156// Note: we can use object pointers because we suspend all threads.
1157class ClinitImageUpdate {
1158 public:
Mathieu Chartier31e88222016-10-14 18:43:19 -07001159 static ClinitImageUpdate* Create(VariableSizedHandleScope& hs,
Vladimir Marko54159c62018-06-20 14:30:08 +01001160 HashSet<std::string>* image_class_descriptors,
Mathieu Chartier31e88222016-10-14 18:43:19 -07001161 Thread* self,
1162 ClassLinker* linker) {
1163 std::unique_ptr<ClinitImageUpdate> res(new ClinitImageUpdate(hs,
1164 image_class_descriptors,
1165 self,
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001166 linker));
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001167 return res.release();
1168 }
1169
1170 ~ClinitImageUpdate() {
1171 // Allow others to suspend again.
1172 self_->EndAssertNoThreadSuspension(old_cause_);
1173 }
1174
1175 // Visitor for VisitReferences.
Mathieu Chartier31e88222016-10-14 18:43:19 -07001176 void operator()(ObjPtr<mirror::Object> object,
1177 MemberOffset field_offset,
1178 bool /* is_static */) const
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001179 REQUIRES_SHARED(Locks::mutator_lock_) {
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001180 mirror::Object* ref = object->GetFieldObject<mirror::Object>(field_offset);
1181 if (ref != nullptr) {
1182 VisitClinitClassesObject(ref);
1183 }
1184 }
1185
Roland Levillain5e8d5f02016-10-18 18:03:43 +01001186 // java.lang.ref.Reference visitor for VisitReferences.
Mathieu Chartier31e88222016-10-14 18:43:19 -07001187 void operator()(ObjPtr<mirror::Class> klass ATTRIBUTE_UNUSED,
1188 ObjPtr<mirror::Reference> ref ATTRIBUTE_UNUSED) const {}
Mathieu Chartierda7c6502015-07-23 16:01:26 -07001189
1190 // Ignore class native roots.
1191 void VisitRootIfNonNull(mirror::CompressedReference<mirror::Object>* root ATTRIBUTE_UNUSED)
1192 const {}
1193 void VisitRoot(mirror::CompressedReference<mirror::Object>* root ATTRIBUTE_UNUSED) const {}
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001194
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001195 void Walk() REQUIRES_SHARED(Locks::mutator_lock_) {
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001196 // Use the initial classes as roots for a search.
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001197 for (Handle<mirror::Class> klass_root : image_classes_) {
1198 VisitClinitClassesObject(klass_root.Get());
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001199 }
Vladimir Marko19a4d372016-12-08 14:41:46 +00001200 Thread* self = Thread::Current();
1201 ScopedAssertNoThreadSuspension ants(__FUNCTION__);
Mathieu Chartier31e88222016-10-14 18:43:19 -07001202 for (Handle<mirror::Class> h_klass : to_insert_) {
Vladimir Marko19a4d372016-12-08 14:41:46 +00001203 MaybeAddToImageClasses(self, h_klass.Get(), image_class_descriptors_);
Mathieu Chartier31e88222016-10-14 18:43:19 -07001204 }
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001205 }
1206
1207 private:
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001208 class FindImageClassesVisitor : public ClassVisitor {
1209 public:
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001210 explicit FindImageClassesVisitor(VariableSizedHandleScope& hs,
1211 ClinitImageUpdate* data)
1212 : data_(data),
1213 hs_(hs) {}
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001214
Roland Levillainbbc6e7e2018-08-24 16:58:47 +01001215 bool operator()(ObjPtr<mirror::Class> klass) override REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001216 std::string temp;
Vladimir Marko54159c62018-06-20 14:30:08 +01001217 StringPiece name(klass->GetDescriptor(&temp));
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001218 if (data_->image_class_descriptors_->find(name) != data_->image_class_descriptors_->end()) {
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001219 data_->image_classes_.push_back(hs_.NewHandle(klass));
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001220 } else {
1221 // Check whether it is initialized and has a clinit. They must be kept, too.
1222 if (klass->IsInitialized() && klass->FindClassInitializer(
1223 Runtime::Current()->GetClassLinker()->GetImagePointerSize()) != nullptr) {
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001224 data_->image_classes_.push_back(hs_.NewHandle(klass));
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001225 }
1226 }
1227 return true;
1228 }
1229
1230 private:
1231 ClinitImageUpdate* const data_;
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001232 VariableSizedHandleScope& hs_;
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001233 };
1234
Mathieu Chartier31e88222016-10-14 18:43:19 -07001235 ClinitImageUpdate(VariableSizedHandleScope& hs,
Vladimir Marko54159c62018-06-20 14:30:08 +01001236 HashSet<std::string>* image_class_descriptors,
Mathieu Chartier31e88222016-10-14 18:43:19 -07001237 Thread* self,
1238 ClassLinker* linker) REQUIRES_SHARED(Locks::mutator_lock_)
1239 : hs_(hs),
1240 image_class_descriptors_(image_class_descriptors),
1241 self_(self) {
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001242 CHECK(linker != nullptr);
1243 CHECK(image_class_descriptors != nullptr);
1244
1245 // Make sure nobody interferes with us.
1246 old_cause_ = self->StartAssertNoThreadSuspension("Boot image closure");
1247
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001248 // Find all the already-marked classes.
1249 WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001250 FindImageClassesVisitor visitor(hs_, this);
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001251 linker->VisitClasses(&visitor);
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001252 }
1253
1254 void VisitClinitClassesObject(mirror::Object* object) const
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001255 REQUIRES_SHARED(Locks::mutator_lock_) {
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001256 DCHECK(object != nullptr);
1257 if (marked_objects_.find(object) != marked_objects_.end()) {
1258 // Already processed.
1259 return;
1260 }
1261
1262 // Mark it.
1263 marked_objects_.insert(object);
1264
1265 if (object->IsClass()) {
Mathieu Chartier31e88222016-10-14 18:43:19 -07001266 // Add to the TODO list since MaybeAddToImageClasses may cause thread suspension. Thread
1267 // suspensionb is not safe to do in VisitObjects or VisitReferences.
1268 to_insert_.push_back(hs_.NewHandle(object->AsClass()));
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001269 } else {
1270 // Else visit the object's class.
1271 VisitClinitClassesObject(object->GetClass());
1272 }
1273
Mathieu Chartiere401d142015-04-22 13:56:20 -07001274 // If it is not a DexCache, visit all references.
Mathieu Chartier31e88222016-10-14 18:43:19 -07001275 if (!object->IsDexCache()) {
Mathieu Chartier059ef3d2015-08-18 13:54:21 -07001276 object->VisitReferences(*this, *this);
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001277 }
1278 }
1279
Mathieu Chartier31e88222016-10-14 18:43:19 -07001280 VariableSizedHandleScope& hs_;
1281 mutable std::vector<Handle<mirror::Class>> to_insert_;
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001282 mutable std::unordered_set<mirror::Object*> marked_objects_;
Vladimir Marko54159c62018-06-20 14:30:08 +01001283 HashSet<std::string>* const image_class_descriptors_;
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001284 std::vector<Handle<mirror::Class>> image_classes_;
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001285 Thread* const self_;
1286 const char* old_cause_;
1287
1288 DISALLOW_COPY_AND_ASSIGN(ClinitImageUpdate);
1289};
Brian Carlstrom7940e442013-07-12 13:46:57 -07001290
Ian Rogers3d504072014-03-01 09:16:49 -08001291void CompilerDriver::UpdateImageClasses(TimingLogger* timings) {
Vladimir Markoaad75c62016-10-03 08:46:48 +00001292 if (GetCompilerOptions().IsBootImage()) {
Mathieu Chartierf5997b42014-06-20 10:37:54 -07001293 TimingLogger::ScopedTiming t("UpdateImageClasses", timings);
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001294
Mathieu Chartier4f55e222015-09-04 13:26:21 -07001295 Runtime* runtime = Runtime::Current();
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001296
1297 // Suspend all threads.
Mathieu Chartier4f55e222015-09-04 13:26:21 -07001298 ScopedSuspendAll ssa(__FUNCTION__);
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001299
Mathieu Chartier31e88222016-10-14 18:43:19 -07001300 VariableSizedHandleScope hs(Thread::Current());
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001301 std::string error_msg;
Mathieu Chartier31e88222016-10-14 18:43:19 -07001302 std::unique_ptr<ClinitImageUpdate> update(ClinitImageUpdate::Create(hs,
Vladimir Markodc4bcce2018-06-21 16:15:42 +01001303 image_classes_,
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001304 Thread::Current(),
Mathieu Chartier31e88222016-10-14 18:43:19 -07001305 runtime->GetClassLinker()));
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001306
1307 // Do the marking.
1308 update->Walk();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001309 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001310}
1311
Vladimir Markobe0e5462014-02-26 11:24:15 +00001312void CompilerDriver::ProcessedInstanceField(bool resolved) {
1313 if (!resolved) {
1314 stats_->UnresolvedInstanceField();
1315 } else {
1316 stats_->ResolvedInstanceField();
1317 }
1318}
1319
1320void CompilerDriver::ProcessedStaticField(bool resolved, bool local) {
1321 if (!resolved) {
1322 stats_->UnresolvedStaticField();
1323 } else if (local) {
1324 stats_->ResolvedLocalStaticField();
1325 } else {
1326 stats_->ResolvedStaticField();
1327 }
1328}
1329
Mathieu Chartierc7853442015-03-27 14:35:38 -07001330ArtField* CompilerDriver::ComputeInstanceFieldInfo(uint32_t field_idx,
Vladimir Markoe11dd502017-12-08 14:09:45 +00001331 const DexCompilationUnit* mUnit,
1332 bool is_put,
Mathieu Chartierc7853442015-03-27 14:35:38 -07001333 const ScopedObjectAccess& soa) {
Vladimir Markobe0e5462014-02-26 11:24:15 +00001334 // Try to resolve the field and compiling method's class.
Mathieu Chartierc7853442015-03-27 14:35:38 -07001335 ArtField* resolved_field;
Vladimir Marko28e012a2017-12-07 11:22:59 +00001336 ObjPtr<mirror::Class> referrer_class;
Mathieu Chartier736b5602015-09-02 14:54:11 -07001337 Handle<mirror::DexCache> dex_cache(mUnit->GetDexCache());
Vladimir Markobe0e5462014-02-26 11:24:15 +00001338 {
Vladimir Markoe11dd502017-12-08 14:09:45 +00001339 Handle<mirror::ClassLoader> class_loader = mUnit->GetClassLoader();
1340 resolved_field = ResolveField(soa, dex_cache, class_loader, field_idx, /* is_static */ false);
Mathieu Chartierc7853442015-03-27 14:35:38 -07001341 referrer_class = resolved_field != nullptr
Vladimir Markoe11dd502017-12-08 14:09:45 +00001342 ? ResolveCompilingMethodsClass(soa, dex_cache, class_loader, mUnit) : nullptr;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001343 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001344 bool can_link = false;
Vladimir Markobe0e5462014-02-26 11:24:15 +00001345 if (resolved_field != nullptr && referrer_class != nullptr) {
Vladimir Markobe0e5462014-02-26 11:24:15 +00001346 std::pair<bool, bool> fast_path = IsFastInstanceField(
Mathieu Chartier736b5602015-09-02 14:54:11 -07001347 dex_cache.Get(), referrer_class, resolved_field, field_idx);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001348 can_link = is_put ? fast_path.second : fast_path.first;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001349 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001350 ProcessedInstanceField(can_link);
1351 return can_link ? resolved_field : nullptr;
1352}
1353
1354bool CompilerDriver::ComputeInstanceFieldInfo(uint32_t field_idx, const DexCompilationUnit* mUnit,
1355 bool is_put, MemberOffset* field_offset,
1356 bool* is_volatile) {
1357 ScopedObjectAccess soa(Thread::Current());
Mathieu Chartierc7853442015-03-27 14:35:38 -07001358 ArtField* resolved_field = ComputeInstanceFieldInfo(field_idx, mUnit, is_put, soa);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001359
Mathieu Chartierc7853442015-03-27 14:35:38 -07001360 if (resolved_field == nullptr) {
Vladimir Markobe0e5462014-02-26 11:24:15 +00001361 // Conservative defaults.
1362 *is_volatile = true;
1363 *field_offset = MemberOffset(static_cast<size_t>(-1));
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001364 return false;
1365 } else {
1366 *is_volatile = resolved_field->IsVolatile();
1367 *field_offset = resolved_field->GetOffset();
1368 return true;
Vladimir Markobe0e5462014-02-26 11:24:15 +00001369 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001370}
1371
Vladimir Marko2730db02014-01-27 11:15:17 +00001372const VerifiedMethod* CompilerDriver::GetVerifiedMethod(const DexFile* dex_file,
1373 uint32_t method_idx) const {
1374 MethodReference ref(dex_file, method_idx);
1375 return verification_results_->GetVerifiedMethod(ref);
1376}
1377
1378bool CompilerDriver::IsSafeCast(const DexCompilationUnit* mUnit, uint32_t dex_pc) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001379 if (!compiler_options_->IsVerificationEnabled()) {
1380 // If we didn't verify, every cast has to be treated as non-safe.
1381 return false;
1382 }
Vladimir Marko2730db02014-01-27 11:15:17 +00001383 DCHECK(mUnit->GetVerifiedMethod() != nullptr);
1384 bool result = mUnit->GetVerifiedMethod()->IsSafeCast(dex_pc);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001385 if (result) {
1386 stats_->SafeCast();
1387 } else {
1388 stats_->NotASafeCast();
1389 }
1390 return result;
1391}
1392
Mathieu Chartier90443472015-07-16 20:32:27 -07001393class CompilationVisitor {
1394 public:
1395 virtual ~CompilationVisitor() {}
1396 virtual void Visit(size_t index) = 0;
1397};
1398
Brian Carlstrom7940e442013-07-12 13:46:57 -07001399class ParallelCompilationManager {
1400 public:
Brian Carlstrom7940e442013-07-12 13:46:57 -07001401 ParallelCompilationManager(ClassLinker* class_linker,
1402 jobject class_loader,
1403 CompilerDriver* compiler,
1404 const DexFile* dex_file,
Andreas Gampede7b4362014-07-28 18:38:57 -07001405 const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -08001406 ThreadPool* thread_pool)
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001407 : index_(0),
1408 class_linker_(class_linker),
Brian Carlstrom7940e442013-07-12 13:46:57 -07001409 class_loader_(class_loader),
1410 compiler_(compiler),
1411 dex_file_(dex_file),
Andreas Gampede7b4362014-07-28 18:38:57 -07001412 dex_files_(dex_files),
Ian Rogers3d504072014-03-01 09:16:49 -08001413 thread_pool_(thread_pool) {}
Brian Carlstrom7940e442013-07-12 13:46:57 -07001414
1415 ClassLinker* GetClassLinker() const {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001416 CHECK(class_linker_ != nullptr);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001417 return class_linker_;
1418 }
1419
1420 jobject GetClassLoader() const {
1421 return class_loader_;
1422 }
1423
1424 CompilerDriver* GetCompiler() const {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001425 CHECK(compiler_ != nullptr);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001426 return compiler_;
1427 }
1428
1429 const DexFile* GetDexFile() const {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001430 CHECK(dex_file_ != nullptr);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001431 return dex_file_;
1432 }
1433
Andreas Gampede7b4362014-07-28 18:38:57 -07001434 const std::vector<const DexFile*>& GetDexFiles() const {
1435 return dex_files_;
1436 }
1437
Mathieu Chartier90443472015-07-16 20:32:27 -07001438 void ForAll(size_t begin, size_t end, CompilationVisitor* visitor, size_t work_units)
1439 REQUIRES(!*Locks::mutator_lock_) {
Andreas Gampe3c060ad2018-01-22 13:07:49 -08001440 ForAllLambda(begin, end, [visitor](size_t index) { visitor->Visit(index); }, work_units);
1441 }
1442
1443 template <typename Fn>
1444 void ForAllLambda(size_t begin, size_t end, Fn fn, size_t work_units)
1445 REQUIRES(!*Locks::mutator_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001446 Thread* self = Thread::Current();
1447 self->AssertNoPendingException();
1448 CHECK_GT(work_units, 0U);
1449
Orion Hodson88591fe2018-03-06 13:35:43 +00001450 index_.store(begin, std::memory_order_relaxed);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001451 for (size_t i = 0; i < work_units; ++i) {
Andreas Gampe3c060ad2018-01-22 13:07:49 -08001452 thread_pool_->AddTask(self, new ForAllClosureLambda<Fn>(this, end, fn));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001453 }
1454 thread_pool_->StartWorkers(self);
1455
1456 // Ensure we're suspended while we're blocked waiting for the other threads to finish (worker
1457 // thread destructor's called below perform join).
1458 CHECK_NE(self->GetState(), kRunnable);
1459
1460 // Wait for all the worker threads to finish.
1461 thread_pool_->Wait(self, true, false);
Andreas Gampeace0dc12016-01-20 13:33:13 -08001462
1463 // And stop the workers accepting jobs.
1464 thread_pool_->StopWorkers(self);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001465 }
1466
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001467 size_t NextIndex() {
Orion Hodson88591fe2018-03-06 13:35:43 +00001468 return index_.fetch_add(1, std::memory_order_seq_cst);
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001469 }
1470
Brian Carlstrom7940e442013-07-12 13:46:57 -07001471 private:
Andreas Gampe3c060ad2018-01-22 13:07:49 -08001472 template <typename Fn>
1473 class ForAllClosureLambda : public Task {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001474 public:
Andreas Gampe3c060ad2018-01-22 13:07:49 -08001475 ForAllClosureLambda(ParallelCompilationManager* manager, size_t end, Fn fn)
Brian Carlstrom7940e442013-07-12 13:46:57 -07001476 : manager_(manager),
Brian Carlstrom7940e442013-07-12 13:46:57 -07001477 end_(end),
Andreas Gampe3c060ad2018-01-22 13:07:49 -08001478 fn_(fn) {}
Brian Carlstrom7940e442013-07-12 13:46:57 -07001479
Roland Levillainbbc6e7e2018-08-24 16:58:47 +01001480 void Run(Thread* self) override {
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001481 while (true) {
1482 const size_t index = manager_->NextIndex();
1483 if (UNLIKELY(index >= end_)) {
1484 break;
1485 }
Andreas Gampe3c060ad2018-01-22 13:07:49 -08001486 fn_(index);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001487 self->AssertNoPendingException();
1488 }
1489 }
1490
Roland Levillainbbc6e7e2018-08-24 16:58:47 +01001491 void Finalize() override {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001492 delete this;
1493 }
Brian Carlstrom0cd7ec22013-07-17 23:40:20 -07001494
Brian Carlstrom7940e442013-07-12 13:46:57 -07001495 private:
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001496 ParallelCompilationManager* const manager_;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001497 const size_t end_;
Andreas Gampe3c060ad2018-01-22 13:07:49 -08001498 Fn fn_;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001499 };
1500
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001501 AtomicInteger index_;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001502 ClassLinker* const class_linker_;
1503 const jobject class_loader_;
1504 CompilerDriver* const compiler_;
1505 const DexFile* const dex_file_;
Andreas Gampede7b4362014-07-28 18:38:57 -07001506 const std::vector<const DexFile*>& dex_files_;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001507 ThreadPool* const thread_pool_;
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001508
1509 DISALLOW_COPY_AND_ASSIGN(ParallelCompilationManager);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001510};
1511
Jeff Hao0e49b422013-11-08 12:16:56 -08001512// A fast version of SkipClass above if the class pointer is available
1513// that avoids the expensive FindInClassPath search.
Vladimir Marko28e012a2017-12-07 11:22:59 +00001514static bool SkipClass(jobject class_loader, const DexFile& dex_file, ObjPtr<mirror::Class> klass)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001515 REQUIRES_SHARED(Locks::mutator_lock_) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001516 DCHECK(klass != nullptr);
Jeff Hao0e49b422013-11-08 12:16:56 -08001517 const DexFile& original_dex_file = *klass->GetDexCache()->GetDexFile();
1518 if (&dex_file != &original_dex_file) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001519 if (class_loader == nullptr) {
David Sehr709b0702016-10-13 09:12:37 -07001520 LOG(WARNING) << "Skipping class " << klass->PrettyDescriptor() << " from "
Jeff Hao0e49b422013-11-08 12:16:56 -08001521 << dex_file.GetLocation() << " previously found in "
1522 << original_dex_file.GetLocation();
1523 }
1524 return true;
1525 }
1526 return false;
1527}
1528
Mathieu Chartier70b63482014-06-27 17:19:04 -07001529static void CheckAndClearResolveException(Thread* self)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001530 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartier70b63482014-06-27 17:19:04 -07001531 CHECK(self->IsExceptionPending());
Nicolas Geoffray14691c52015-03-05 10:40:17 +00001532 mirror::Throwable* exception = self->GetException();
Ian Rogers1ff3c982014-08-12 02:30:58 -07001533 std::string temp;
1534 const char* descriptor = exception->GetClass()->GetDescriptor(&temp);
1535 const char* expected_exceptions[] = {
1536 "Ljava/lang/IllegalAccessError;",
1537 "Ljava/lang/IncompatibleClassChangeError;",
1538 "Ljava/lang/InstantiationError;",
Brian Carlstrom898fcb52014-08-25 23:07:30 -07001539 "Ljava/lang/LinkageError;",
Ian Rogers1ff3c982014-08-12 02:30:58 -07001540 "Ljava/lang/NoClassDefFoundError;",
1541 "Ljava/lang/NoSuchFieldError;",
1542 "Ljava/lang/NoSuchMethodError;"
1543 };
1544 bool found = false;
1545 for (size_t i = 0; (found == false) && (i < arraysize(expected_exceptions)); ++i) {
1546 if (strcmp(descriptor, expected_exceptions[i]) == 0) {
1547 found = true;
1548 }
1549 }
1550 if (!found) {
Brian Carlstrom898fcb52014-08-25 23:07:30 -07001551 LOG(FATAL) << "Unexpected exception " << exception->Dump();
Mathieu Chartier70b63482014-06-27 17:19:04 -07001552 }
1553 self->ClearException();
1554}
1555
Mathieu Chartier90443472015-07-16 20:32:27 -07001556class ResolveClassFieldsAndMethodsVisitor : public CompilationVisitor {
1557 public:
1558 explicit ResolveClassFieldsAndMethodsVisitor(const ParallelCompilationManager* manager)
1559 : manager_(manager) {}
Brian Carlstrom7940e442013-07-12 13:46:57 -07001560
Roland Levillainbbc6e7e2018-08-24 16:58:47 +01001561 void Visit(size_t class_def_index) override REQUIRES(!Locks::mutator_lock_) {
Andreas Gampe9b827ab2017-12-07 19:32:48 -08001562 ScopedTrace trace(__FUNCTION__);
Mathieu Chartier90443472015-07-16 20:32:27 -07001563 Thread* const self = Thread::Current();
1564 jobject jclass_loader = manager_->GetClassLoader();
1565 const DexFile& dex_file = *manager_->GetDexFile();
1566 ClassLinker* class_linker = manager_->GetClassLinker();
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001567
Mathieu Chartier90443472015-07-16 20:32:27 -07001568 // Method and Field are the worst. We can't resolve without either
1569 // context from the code use (to disambiguate virtual vs direct
1570 // method and instance vs static field) or from class
1571 // definitions. While the compiler will resolve what it can as it
1572 // needs it, here we try to resolve fields and methods used in class
1573 // definitions, since many of them many never be referenced by
1574 // generated code.
1575 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
1576 ScopedObjectAccess soa(self);
1577 StackHandleScope<2> hs(soa.Self());
1578 Handle<mirror::ClassLoader> class_loader(
Mathieu Chartier0795f232016-09-27 18:43:30 -07001579 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader)));
Mathieu Chartier673ed3d2015-08-28 14:56:43 -07001580 Handle<mirror::DexCache> dex_cache(hs.NewHandle(class_linker->FindDexCache(
Vladimir Markocd556b02017-02-03 11:47:34 +00001581 soa.Self(), dex_file)));
Mathieu Chartier90443472015-07-16 20:32:27 -07001582 // Resolve the class.
Vladimir Marko28e012a2017-12-07 11:22:59 +00001583 ObjPtr<mirror::Class> klass =
Vladimir Marko666ee3d2017-12-11 18:37:36 +00001584 class_linker->ResolveType(class_def.class_idx_, dex_cache, class_loader);
Mathieu Chartier90443472015-07-16 20:32:27 -07001585 bool resolve_fields_and_methods;
1586 if (klass == nullptr) {
1587 // Class couldn't be resolved, for example, super-class is in a different dex file. Don't
1588 // attempt to resolve methods and fields when there is no declaring class.
1589 CheckAndClearResolveException(soa.Self());
1590 resolve_fields_and_methods = false;
1591 } else {
1592 // We successfully resolved a class, should we skip it?
1593 if (SkipClass(jclass_loader, dex_file, klass)) {
1594 return;
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001595 }
Mathieu Chartier90443472015-07-16 20:32:27 -07001596 // We want to resolve the methods and fields eagerly.
1597 resolve_fields_and_methods = true;
Ian Rogers68b56852014-08-29 20:19:11 -07001598 }
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001599
Vladimir Markoc1c34522018-10-31 13:56:49 +00001600 if (resolve_fields_and_methods) {
1601 ClassAccessor accessor(dex_file, class_def_index);
1602 // Optionally resolve fields and methods and figure out if we need a constructor barrier.
1603 auto method_visitor = [&](const ClassAccessor::Method& method)
1604 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001605 ArtMethod* resolved = class_linker->ResolveMethod<ClassLinker::ResolveMode::kNoChecks>(
1606 method.GetIndex(),
1607 dex_cache,
1608 class_loader,
Vladimir Markoc1c34522018-10-31 13:56:49 +00001609 /*referrer=*/ nullptr,
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001610 method.GetInvokeType(class_def.access_flags_));
1611 if (resolved == nullptr) {
1612 CheckAndClearResolveException(soa.Self());
Mathieu Chartier90443472015-07-16 20:32:27 -07001613 }
Vladimir Markoc1c34522018-10-31 13:56:49 +00001614 };
1615 accessor.VisitFieldsAndMethods(
1616 // static fields
1617 [&](ClassAccessor::Field& field) REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001618 ArtField* resolved = class_linker->ResolveField(
Vladimir Markoc1c34522018-10-31 13:56:49 +00001619 field.GetIndex(), dex_cache, class_loader, /*is_static=*/ true);
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001620 if (resolved == nullptr) {
1621 CheckAndClearResolveException(soa.Self());
1622 }
Vladimir Markoc1c34522018-10-31 13:56:49 +00001623 },
1624 // instance fields
1625 [&](ClassAccessor::Field& field) REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001626 ArtField* resolved = class_linker->ResolveField(
Vladimir Markoc1c34522018-10-31 13:56:49 +00001627 field.GetIndex(), dex_cache, class_loader, /*is_static=*/ false);
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001628 if (resolved == nullptr) {
1629 CheckAndClearResolveException(soa.Self());
1630 }
Vladimir Markoc1c34522018-10-31 13:56:49 +00001631 },
1632 /*direct_method_visitor=*/ method_visitor,
1633 /*virtual_method_visitor=*/ method_visitor);
1634 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001635 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001636
Mathieu Chartier90443472015-07-16 20:32:27 -07001637 private:
1638 const ParallelCompilationManager* const manager_;
1639};
1640
1641class ResolveTypeVisitor : public CompilationVisitor {
1642 public:
1643 explicit ResolveTypeVisitor(const ParallelCompilationManager* manager) : manager_(manager) {
1644 }
Roland Levillainbbc6e7e2018-08-24 16:58:47 +01001645 void Visit(size_t type_idx) override REQUIRES(!Locks::mutator_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001646 // Class derived values are more complicated, they require the linker and loader.
Mathieu Chartier90443472015-07-16 20:32:27 -07001647 ScopedObjectAccess soa(Thread::Current());
1648 ClassLinker* class_linker = manager_->GetClassLinker();
1649 const DexFile& dex_file = *manager_->GetDexFile();
1650 StackHandleScope<2> hs(soa.Self());
Mathieu Chartier90443472015-07-16 20:32:27 -07001651 Handle<mirror::ClassLoader> class_loader(
Mathieu Chartier0795f232016-09-27 18:43:30 -07001652 hs.NewHandle(soa.Decode<mirror::ClassLoader>(manager_->GetClassLoader())));
Mathieu Chartierd57d4542015-10-14 10:55:30 -07001653 Handle<mirror::DexCache> dex_cache(hs.NewHandle(class_linker->RegisterDexFile(
1654 dex_file,
Mathieu Chartierf284d442016-06-02 11:48:30 -07001655 class_loader.Get())));
Andreas Gampefa4333d2017-02-14 11:10:34 -08001656 ObjPtr<mirror::Class> klass = (dex_cache != nullptr)
Vladimir Marko666ee3d2017-12-11 18:37:36 +00001657 ? class_linker->ResolveType(dex::TypeIndex(type_idx), dex_cache, class_loader)
Vladimir Markocd556b02017-02-03 11:47:34 +00001658 : nullptr;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001659
Mathieu Chartier90443472015-07-16 20:32:27 -07001660 if (klass == nullptr) {
1661 soa.Self()->AssertPendingException();
1662 mirror::Throwable* exception = soa.Self()->GetException();
1663 VLOG(compiler) << "Exception during type resolution: " << exception->Dump();
1664 if (exception->GetClass()->DescriptorEquals("Ljava/lang/OutOfMemoryError;")) {
1665 // There's little point continuing compilation if the heap is exhausted.
1666 LOG(FATAL) << "Out of memory during type resolution for compilation";
1667 }
1668 soa.Self()->ClearException();
Ian Rogersa436fde2013-08-27 23:34:06 -07001669 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001670 }
Mathieu Chartier90443472015-07-16 20:32:27 -07001671
1672 private:
1673 const ParallelCompilationManager* const manager_;
1674};
Brian Carlstrom7940e442013-07-12 13:46:57 -07001675
Andreas Gampeace0dc12016-01-20 13:33:13 -08001676void CompilerDriver::ResolveDexFile(jobject class_loader,
1677 const DexFile& dex_file,
Andreas Gampede7b4362014-07-28 18:38:57 -07001678 const std::vector<const DexFile*>& dex_files,
Andreas Gampeace0dc12016-01-20 13:33:13 -08001679 ThreadPool* thread_pool,
1680 size_t thread_count,
1681 TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001682 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
1683
1684 // TODO: we could resolve strings here, although the string table is largely filled with class
1685 // and method names.
1686
Andreas Gampede7b4362014-07-28 18:38:57 -07001687 ParallelCompilationManager context(class_linker, class_loader, this, &dex_file, dex_files,
1688 thread_pool);
Vladimir Markoaad75c62016-10-03 08:46:48 +00001689 if (GetCompilerOptions().IsBootImage()) {
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001690 // For images we resolve all types, such as array, whereas for applications just those with
1691 // classdefs are resolved by ResolveClassFieldsAndMethods.
Mathieu Chartierf5997b42014-06-20 10:37:54 -07001692 TimingLogger::ScopedTiming t("Resolve Types", timings);
Mathieu Chartier90443472015-07-16 20:32:27 -07001693 ResolveTypeVisitor visitor(&context);
Andreas Gampeace0dc12016-01-20 13:33:13 -08001694 context.ForAll(0, dex_file.NumTypeIds(), &visitor, thread_count);
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001695 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001696
Mathieu Chartierf5997b42014-06-20 10:37:54 -07001697 TimingLogger::ScopedTiming t("Resolve MethodsAndFields", timings);
Mathieu Chartier90443472015-07-16 20:32:27 -07001698 ResolveClassFieldsAndMethodsVisitor visitor(&context);
Andreas Gampeace0dc12016-01-20 13:33:13 -08001699 context.ForAll(0, dex_file.NumClassDefs(), &visitor, thread_count);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001700}
1701
Andreas Gampeace0dc12016-01-20 13:33:13 -08001702void CompilerDriver::SetVerified(jobject class_loader,
1703 const std::vector<const DexFile*>& dex_files,
1704 TimingLogger* timings) {
1705 // This can be run in parallel.
Mathieu Chartier90443472015-07-16 20:32:27 -07001706 for (const DexFile* dex_file : dex_files) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001707 CHECK(dex_file != nullptr);
Andreas Gampeace0dc12016-01-20 13:33:13 -08001708 SetVerifiedDexFile(class_loader,
1709 *dex_file,
1710 dex_files,
1711 parallel_thread_pool_.get(),
1712 parallel_thread_count_,
1713 timings);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001714 }
1715}
1716
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001717static void LoadAndUpdateStatus(const ClassAccessor& accessor,
Vladimir Marko2c64a832018-01-04 11:31:56 +00001718 ClassStatus status,
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001719 Handle<mirror::ClassLoader> class_loader,
1720 Thread* self)
1721 REQUIRES_SHARED(Locks::mutator_lock_) {
1722 StackHandleScope<1> hs(self);
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001723 const char* descriptor = accessor.GetDescriptor();
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001724 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
1725 Handle<mirror::Class> cls(hs.NewHandle<mirror::Class>(
1726 class_linker->FindClass(self, descriptor, class_loader)));
Andreas Gampefa4333d2017-02-14 11:10:34 -08001727 if (cls != nullptr) {
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001728 // Check that the class is resolved with the current dex file. We might get
1729 // a boot image class, or a class in a different dex file for multidex, and
1730 // we should not update the status in that case.
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001731 if (&cls->GetDexFile() == &accessor.GetDexFile()) {
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001732 ObjectLock<mirror::Class> lock(self, cls);
1733 mirror::Class::SetStatus(cls, status, self);
1734 }
1735 } else {
1736 DCHECK(self->IsExceptionPending());
1737 self->ClearException();
1738 }
1739}
1740
Nicolas Geoffray74981052017-01-16 17:54:09 +00001741bool CompilerDriver::FastVerify(jobject jclass_loader,
1742 const std::vector<const DexFile*>& dex_files,
1743 TimingLogger* timings) {
Nicolas Geoffrayb0bbe8e2016-11-19 10:42:37 +00001744 verifier::VerifierDeps* verifier_deps =
1745 Runtime::Current()->GetCompilerCallbacks()->GetVerifierDeps();
Mathieu Chartier72041a02017-07-14 18:23:25 -07001746 // If there exist VerifierDeps that aren't the ones we just created to output, use them to verify.
1747 if (verifier_deps == nullptr || verifier_deps->OutputOnly()) {
Nicolas Geoffray74981052017-01-16 17:54:09 +00001748 return false;
1749 }
1750 TimingLogger::ScopedTiming t("Fast Verify", timings);
1751 ScopedObjectAccess soa(Thread::Current());
1752 StackHandleScope<2> hs(soa.Self());
1753 Handle<mirror::ClassLoader> class_loader(
1754 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader)));
Nicolas Geoffray74981052017-01-16 17:54:09 +00001755 if (!verifier_deps->ValidateDependencies(class_loader, soa.Self())) {
1756 return false;
1757 }
1758
Nicolas Geoffray49cda062017-04-21 13:08:25 +01001759 bool compiler_only_verifies = !GetCompilerOptions().IsAnyCompilationEnabled();
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001760
Nicolas Geoffray74981052017-01-16 17:54:09 +00001761 // We successfully validated the dependencies, now update class status
1762 // of verified classes. Note that the dependencies also record which classes
1763 // could not be fully verified; we could try again, but that would hurt verification
1764 // time. So instead we assume these classes still need to be verified at
1765 // runtime.
1766 for (const DexFile* dex_file : dex_files) {
Mathieu Chartierbf755fe2017-08-01 13:42:56 -07001767 // Fetch the list of unverified classes.
1768 const std::set<dex::TypeIndex>& unverified_classes =
Nicolas Geoffray74981052017-01-16 17:54:09 +00001769 verifier_deps->GetUnverifiedClasses(*dex_file);
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001770 for (ClassAccessor accessor : dex_file->GetClasses()) {
1771 if (unverified_classes.find(accessor.GetClassIdx()) == unverified_classes.end()) {
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001772 if (compiler_only_verifies) {
Nicolas Geoffray74981052017-01-16 17:54:09 +00001773 // Just update the compiled_classes_ map. The compiler doesn't need to resolve
1774 // the type.
Mathieu Chartier18e26872018-06-04 17:19:02 -07001775 ClassReference ref(dex_file, accessor.GetClassDefIndex());
Mathieu Chartier2eabc612018-05-25 14:31:16 -07001776 const ClassStatus existing = ClassStatus::kNotReady;
Mathieu Chartier1a088d42017-07-18 11:43:57 -07001777 ClassStateTable::InsertResult result =
Vladimir Marko2c64a832018-01-04 11:31:56 +00001778 compiled_classes_.Insert(ref, existing, ClassStatus::kVerified);
Mathieu Chartier2eabc612018-05-25 14:31:16 -07001779 CHECK_EQ(result, ClassStateTable::kInsertResultSuccess) << ref.dex_file->GetLocation();
Nicolas Geoffray74981052017-01-16 17:54:09 +00001780 } else {
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001781 // Update the class status, so later compilation stages know they don't need to verify
Nicolas Geoffray74981052017-01-16 17:54:09 +00001782 // the class.
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001783 LoadAndUpdateStatus(accessor, ClassStatus::kVerified, class_loader, soa.Self());
Nicolas Geoffray74981052017-01-16 17:54:09 +00001784 // Create `VerifiedMethod`s for each methods, the compiler expects one for
1785 // quickening or compiling.
1786 // Note that this means:
1787 // - We're only going to compile methods that did verify.
1788 // - Quickening will not do checkcast ellision.
1789 // TODO(ngeoffray): Reconsider this once we refactor compiler filters.
Mathieu Chartier0d896bd2018-05-25 00:20:27 -07001790 for (const ClassAccessor::Method& method : accessor.GetMethods()) {
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001791 verification_results_->CreateVerifiedMethodFor(method.GetReference());
Mathieu Chartier0d896bd2018-05-25 00:20:27 -07001792 }
Nicolas Geoffray6bb7f1b2016-11-03 10:52:49 +00001793 }
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001794 } else if (!compiler_only_verifies) {
1795 // Make sure later compilation stages know they should not try to verify
1796 // this class again.
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001797 LoadAndUpdateStatus(accessor,
Vladimir Marko2c64a832018-01-04 11:31:56 +00001798 ClassStatus::kRetryVerificationAtRuntime,
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001799 class_loader,
1800 soa.Self());
Nicolas Geoffray6bb7f1b2016-11-03 10:52:49 +00001801 }
Nicolas Geoffray6bb7f1b2016-11-03 10:52:49 +00001802 }
1803 }
Nicolas Geoffray74981052017-01-16 17:54:09 +00001804 return true;
1805}
1806
1807void CompilerDriver::Verify(jobject jclass_loader,
1808 const std::vector<const DexFile*>& dex_files,
1809 TimingLogger* timings) {
1810 if (FastVerify(jclass_loader, dex_files, timings)) {
1811 return;
1812 }
Nicolas Geoffray6bb7f1b2016-11-03 10:52:49 +00001813
Nicolas Geoffrayb0bbe8e2016-11-19 10:42:37 +00001814 // If there is no existing `verifier_deps` (because of non-existing vdex), or
1815 // the existing `verifier_deps` is not valid anymore, create a new one for
Nicolas Geoffray6bb7f1b2016-11-03 10:52:49 +00001816 // non boot image compilation. The verifier will need it to record the new dependencies.
1817 // Then dex2oat can update the vdex file with these new dependencies.
1818 if (!GetCompilerOptions().IsBootImage()) {
Mathieu Chartier72041a02017-07-14 18:23:25 -07001819 // Dex2oat creates the verifier deps.
Nicolas Geoffray340dafa2016-11-18 16:03:10 +00001820 // Create the main VerifierDeps, and set it to this thread.
Mathieu Chartier72041a02017-07-14 18:23:25 -07001821 verifier::VerifierDeps* verifier_deps =
1822 Runtime::Current()->GetCompilerCallbacks()->GetVerifierDeps();
1823 CHECK(verifier_deps != nullptr);
Nicolas Geoffrayb0bbe8e2016-11-19 10:42:37 +00001824 Thread::Current()->SetVerifierDeps(verifier_deps);
Nicolas Geoffray340dafa2016-11-18 16:03:10 +00001825 // Create per-thread VerifierDeps to avoid contention on the main one.
1826 // We will merge them after verification.
1827 for (ThreadPoolWorker* worker : parallel_thread_pool_->GetWorkers()) {
Vladimir Marko213ee2d2018-06-22 11:56:34 +01001828 worker->GetThread()->SetVerifierDeps(
1829 new verifier::VerifierDeps(GetCompilerOptions().GetDexFilesForOatFile()));
Nicolas Geoffray340dafa2016-11-18 16:03:10 +00001830 }
Nicolas Geoffray6bb7f1b2016-11-03 10:52:49 +00001831 }
Nicolas Geoffray74981052017-01-16 17:54:09 +00001832
Nicolas Geoffray46847392017-04-28 14:56:39 +01001833 // Verification updates VerifierDeps and needs to run single-threaded to be deterministic.
1834 bool force_determinism = GetCompilerOptions().IsForceDeterminism();
1835 ThreadPool* verify_thread_pool =
1836 force_determinism ? single_thread_pool_.get() : parallel_thread_pool_.get();
1837 size_t verify_thread_count = force_determinism ? 1U : parallel_thread_count_;
Mathieu Chartier90443472015-07-16 20:32:27 -07001838 for (const DexFile* dex_file : dex_files) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001839 CHECK(dex_file != nullptr);
Nicolas Geoffray6bb7f1b2016-11-03 10:52:49 +00001840 VerifyDexFile(jclass_loader,
Andreas Gampeace0dc12016-01-20 13:33:13 -08001841 *dex_file,
1842 dex_files,
Nicolas Geoffray46847392017-04-28 14:56:39 +01001843 verify_thread_pool,
1844 verify_thread_count,
Andreas Gampeace0dc12016-01-20 13:33:13 -08001845 timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001846 }
Nicolas Geoffray340dafa2016-11-18 16:03:10 +00001847
1848 if (!GetCompilerOptions().IsBootImage()) {
Nicolas Geoffray340dafa2016-11-18 16:03:10 +00001849 // Merge all VerifierDeps into the main one.
Nicolas Geoffray74981052017-01-16 17:54:09 +00001850 verifier::VerifierDeps* verifier_deps = Thread::Current()->GetVerifierDeps();
Nicolas Geoffray340dafa2016-11-18 16:03:10 +00001851 for (ThreadPoolWorker* worker : parallel_thread_pool_->GetWorkers()) {
1852 verifier::VerifierDeps* thread_deps = worker->GetThread()->GetVerifierDeps();
1853 worker->GetThread()->SetVerifierDeps(nullptr);
Vladimir Marko213ee2d2018-06-22 11:56:34 +01001854 verifier_deps->MergeWith(*thread_deps, GetCompilerOptions().GetDexFilesForOatFile());
Nicolas Geoffray340dafa2016-11-18 16:03:10 +00001855 delete thread_deps;
1856 }
1857 Thread::Current()->SetVerifierDeps(nullptr);
1858 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001859}
1860
Mathieu Chartier90443472015-07-16 20:32:27 -07001861class VerifyClassVisitor : public CompilationVisitor {
1862 public:
Andreas Gampe5fd66d02016-09-12 20:22:19 -07001863 VerifyClassVisitor(const ParallelCompilationManager* manager, verifier::HardFailLogMode log_level)
Andreas Gampe6cc23ac2018-08-24 15:22:43 -07001864 : manager_(manager),
1865 log_level_(log_level),
1866 sdk_version_(Runtime::Current()->GetTargetSdkVersion()) {}
Brian Carlstrom7940e442013-07-12 13:46:57 -07001867
Roland Levillainf73caca2018-08-24 17:19:07 +01001868 void Visit(size_t class_def_index) REQUIRES(!Locks::mutator_lock_) override {
Andreas Gampe9b827ab2017-12-07 19:32:48 -08001869 ScopedTrace trace(__FUNCTION__);
Mathieu Chartier90443472015-07-16 20:32:27 -07001870 ScopedObjectAccess soa(Thread::Current());
1871 const DexFile& dex_file = *manager_->GetDexFile();
1872 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
1873 const char* descriptor = dex_file.GetClassDescriptor(class_def);
1874 ClassLinker* class_linker = manager_->GetClassLinker();
1875 jobject jclass_loader = manager_->GetClassLoader();
1876 StackHandleScope<3> hs(soa.Self());
1877 Handle<mirror::ClassLoader> class_loader(
Mathieu Chartier0795f232016-09-27 18:43:30 -07001878 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader)));
Mathieu Chartier90443472015-07-16 20:32:27 -07001879 Handle<mirror::Class> klass(
1880 hs.NewHandle(class_linker->FindClass(soa.Self(), descriptor, class_loader)));
Andreas Gampe6d7abbd2017-04-24 13:19:09 -07001881 verifier::FailureKind failure_kind;
Andreas Gampefa4333d2017-02-14 11:10:34 -08001882 if (klass == nullptr) {
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001883 CHECK(soa.Self()->IsExceptionPending());
1884 soa.Self()->ClearException();
Mathieu Chartier90443472015-07-16 20:32:27 -07001885
1886 /*
1887 * At compile time, we can still structurally verify the class even if FindClass fails.
1888 * This is to ensure the class is structurally sound for compilation. An unsound class
1889 * will be rejected by the verifier and later skipped during compilation in the compiler.
1890 */
Mathieu Chartier673ed3d2015-08-28 14:56:43 -07001891 Handle<mirror::DexCache> dex_cache(hs.NewHandle(class_linker->FindDexCache(
Vladimir Markocd556b02017-02-03 11:47:34 +00001892 soa.Self(), dex_file)));
Mathieu Chartier90443472015-07-16 20:32:27 -07001893 std::string error_msg;
Nicolas Geoffray08025182016-10-25 17:20:18 +01001894 failure_kind =
1895 verifier::MethodVerifier::VerifyClass(soa.Self(),
Andreas Gampeec6e6c12015-11-05 20:39:56 -08001896 &dex_file,
1897 dex_cache,
1898 class_loader,
David Brazdil15fc7292016-09-02 14:13:18 +01001899 class_def,
Andreas Gampe53e32d12015-12-09 21:03:23 -08001900 Runtime::Current()->GetCompilerCallbacks(),
Andreas Gampeec6e6c12015-11-05 20:39:56 -08001901 true /* allow soft failures */,
Andreas Gampe7fe30232016-03-25 16:58:00 -07001902 log_level_,
Andreas Gampe6cc23ac2018-08-24 15:22:43 -07001903 sdk_version_,
Nicolas Geoffray08025182016-10-25 17:20:18 +01001904 &error_msg);
Andreas Gampe6d7abbd2017-04-24 13:19:09 -07001905 if (failure_kind == verifier::FailureKind::kHardFailure) {
Mathieu Chartier90443472015-07-16 20:32:27 -07001906 LOG(ERROR) << "Verification failed on class " << PrettyDescriptor(descriptor)
1907 << " because: " << error_msg;
1908 manager_->GetCompiler()->SetHadHardVerifierFailure();
Andreas Gampef39208f2017-10-19 15:06:59 -07001909 } else if (failure_kind == verifier::FailureKind::kSoftFailure) {
1910 manager_->GetCompiler()->AddSoftVerifierFailure();
Nicolas Geoffray7cc3ae52017-03-07 14:33:37 +00001911 } else {
1912 // Force a soft failure for the VerifierDeps. This is a sanity measure, as
1913 // the vdex file already records that the class hasn't been resolved. It avoids
1914 // trying to do future verification optimizations when processing the vdex file.
Andreas Gampef39208f2017-10-19 15:06:59 -07001915 DCHECK(failure_kind == verifier::FailureKind::kNoFailure) << failure_kind;
Andreas Gampe6d7abbd2017-04-24 13:19:09 -07001916 failure_kind = verifier::FailureKind::kSoftFailure;
Mathieu Chartier90443472015-07-16 20:32:27 -07001917 }
Andreas Gampebb30d5d2018-04-23 09:59:25 -07001918 } else if (&klass->GetDexFile() != &dex_file) {
1919 // Skip a duplicate class (as the resolved class is from another, earlier dex file).
1920 return; // Do not update state.
Mathieu Chartier90443472015-07-16 20:32:27 -07001921 } else if (!SkipClass(jclass_loader, dex_file, klass.Get())) {
David Sehr709b0702016-10-13 09:12:37 -07001922 CHECK(klass->IsResolved()) << klass->PrettyClass();
Nicolas Geoffray08025182016-10-25 17:20:18 +01001923 failure_kind = class_linker->VerifyClass(soa.Self(), klass, log_level_);
Mathieu Chartier90443472015-07-16 20:32:27 -07001924
1925 if (klass->IsErroneous()) {
1926 // ClassLinker::VerifyClass throws, which isn't useful in the compiler.
1927 CHECK(soa.Self()->IsExceptionPending());
1928 soa.Self()->ClearException();
1929 manager_->GetCompiler()->SetHadHardVerifierFailure();
Andreas Gampef39208f2017-10-19 15:06:59 -07001930 } else if (failure_kind == verifier::FailureKind::kSoftFailure) {
1931 manager_->GetCompiler()->AddSoftVerifierFailure();
Mathieu Chartier90443472015-07-16 20:32:27 -07001932 }
1933
Nicolas Geoffray7cc3ae52017-03-07 14:33:37 +00001934 CHECK(klass->ShouldVerifyAtRuntime() || klass->IsVerified() || klass->IsErroneous())
David Sehr709b0702016-10-13 09:12:37 -07001935 << klass->PrettyDescriptor() << ": state=" << klass->GetStatus();
Mathieu Chartier90443472015-07-16 20:32:27 -07001936
Nicolas Geoffrayc7da1d62017-04-19 09:36:24 +01001937 // Class has a meaningful status for the compiler now, record it.
1938 ClassReference ref(manager_->GetDexFile(), class_def_index);
1939 manager_->GetCompiler()->RecordClassStatus(ref, klass->GetStatus());
1940
Andreas Gamped278cb42017-11-22 14:13:00 -08001941 // It is *very* problematic if there are resolution errors in the boot classpath.
1942 //
1943 // It is also bad if classes fail verification. For example, we rely on things working
1944 // OK without verification when the decryption dialog is brought up. It is thus highly
1945 // recommended to compile the boot classpath with
1946 // --abort-on-hard-verifier-error --abort-on-soft-verifier-error
1947 // which is the default build system configuration.
Narayan Kamathe3eae5e2016-10-27 11:47:30 +01001948 if (kIsDebugBuild) {
Orion Hodsonc5e0d3f2017-08-22 19:00:04 +01001949 if (manager_->GetCompiler()->GetCompilerOptions().IsBootImage()) {
Andreas Gamped278cb42017-11-22 14:13:00 -08001950 if (!klass->IsResolved() || klass->IsErroneous()) {
Andreas Gampe12fadcd2017-08-03 05:06:28 -07001951 LOG(FATAL) << "Boot classpath class " << klass->PrettyClass()
Andreas Gamped278cb42017-11-22 14:13:00 -08001952 << " failed to resolve/is erroneous: state= " << klass->GetStatus();
1953 UNREACHABLE();
Andreas Gampe12fadcd2017-08-03 05:06:28 -07001954 }
Narayan Kamathe3eae5e2016-10-27 11:47:30 +01001955 }
Nicolas Geoffray7cc3ae52017-03-07 14:33:37 +00001956 if (klass->IsVerified()) {
Andreas Gampe6d7abbd2017-04-24 13:19:09 -07001957 DCHECK_EQ(failure_kind, verifier::FailureKind::kNoFailure);
Nicolas Geoffray7cc3ae52017-03-07 14:33:37 +00001958 } else if (klass->ShouldVerifyAtRuntime()) {
Andreas Gampe6d7abbd2017-04-24 13:19:09 -07001959 DCHECK_EQ(failure_kind, verifier::FailureKind::kSoftFailure);
Nicolas Geoffray7cc3ae52017-03-07 14:33:37 +00001960 } else {
Andreas Gampe6d7abbd2017-04-24 13:19:09 -07001961 DCHECK_EQ(failure_kind, verifier::FailureKind::kHardFailure);
Nicolas Geoffray7cc3ae52017-03-07 14:33:37 +00001962 }
Narayan Kamathe3eae5e2016-10-27 11:47:30 +01001963 }
Nicolas Geoffray08025182016-10-25 17:20:18 +01001964 } else {
1965 // Make the skip a soft failure, essentially being considered as verify at runtime.
Andreas Gampe6d7abbd2017-04-24 13:19:09 -07001966 failure_kind = verifier::FailureKind::kSoftFailure;
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001967 }
Nicolas Geoffray08025182016-10-25 17:20:18 +01001968 verifier::VerifierDeps::MaybeRecordVerificationStatus(
1969 dex_file, class_def.class_idx_, failure_kind);
Mathieu Chartier90443472015-07-16 20:32:27 -07001970 soa.Self()->AssertNoPendingException();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001971 }
Mathieu Chartier90443472015-07-16 20:32:27 -07001972
1973 private:
1974 const ParallelCompilationManager* const manager_;
Andreas Gampe5fd66d02016-09-12 20:22:19 -07001975 const verifier::HardFailLogMode log_level_;
Andreas Gampe6cc23ac2018-08-24 15:22:43 -07001976 const uint32_t sdk_version_;
Mathieu Chartier90443472015-07-16 20:32:27 -07001977};
Brian Carlstrom7940e442013-07-12 13:46:57 -07001978
Andreas Gampeace0dc12016-01-20 13:33:13 -08001979void CompilerDriver::VerifyDexFile(jobject class_loader,
1980 const DexFile& dex_file,
Andreas Gampede7b4362014-07-28 18:38:57 -07001981 const std::vector<const DexFile*>& dex_files,
Andreas Gampeace0dc12016-01-20 13:33:13 -08001982 ThreadPool* thread_pool,
1983 size_t thread_count,
1984 TimingLogger* timings) {
Mathieu Chartierf5997b42014-06-20 10:37:54 -07001985 TimingLogger::ScopedTiming t("Verify Dex File", timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001986 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Andreas Gampede7b4362014-07-28 18:38:57 -07001987 ParallelCompilationManager context(class_linker, class_loader, this, &dex_file, dex_files,
1988 thread_pool);
Andreas Gampef39208f2017-10-19 15:06:59 -07001989 bool abort_on_verifier_failures = GetCompilerOptions().AbortOnHardVerifierFailure()
1990 || GetCompilerOptions().AbortOnSoftVerifierFailure();
1991 verifier::HardFailLogMode log_level = abort_on_verifier_failures
Andreas Gampe5fd66d02016-09-12 20:22:19 -07001992 ? verifier::HardFailLogMode::kLogInternalFatal
1993 : verifier::HardFailLogMode::kLogWarning;
Andreas Gampe7fe30232016-03-25 16:58:00 -07001994 VerifyClassVisitor visitor(&context, log_level);
Andreas Gampeace0dc12016-01-20 13:33:13 -08001995 context.ForAll(0, dex_file.NumClassDefs(), &visitor, thread_count);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001996}
1997
Mathieu Chartier90443472015-07-16 20:32:27 -07001998class SetVerifiedClassVisitor : public CompilationVisitor {
1999 public:
2000 explicit SetVerifiedClassVisitor(const ParallelCompilationManager* manager) : manager_(manager) {}
2001
Roland Levillainf73caca2018-08-24 17:19:07 +01002002 void Visit(size_t class_def_index) REQUIRES(!Locks::mutator_lock_) override {
Andreas Gampe9b827ab2017-12-07 19:32:48 -08002003 ScopedTrace trace(__FUNCTION__);
Mathieu Chartier90443472015-07-16 20:32:27 -07002004 ScopedObjectAccess soa(Thread::Current());
2005 const DexFile& dex_file = *manager_->GetDexFile();
2006 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
2007 const char* descriptor = dex_file.GetClassDescriptor(class_def);
2008 ClassLinker* class_linker = manager_->GetClassLinker();
2009 jobject jclass_loader = manager_->GetClassLoader();
2010 StackHandleScope<3> hs(soa.Self());
2011 Handle<mirror::ClassLoader> class_loader(
Mathieu Chartier0795f232016-09-27 18:43:30 -07002012 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader)));
Mathieu Chartier90443472015-07-16 20:32:27 -07002013 Handle<mirror::Class> klass(
2014 hs.NewHandle(class_linker->FindClass(soa.Self(), descriptor, class_loader)));
2015 // Class might have failed resolution. Then don't set it to verified.
Andreas Gampefa4333d2017-02-14 11:10:34 -08002016 if (klass != nullptr) {
Mathieu Chartier90443472015-07-16 20:32:27 -07002017 // Only do this if the class is resolved. If even resolution fails, quickening will go very,
2018 // very wrong.
Vladimir Marko72ab6842017-01-20 19:32:50 +00002019 if (klass->IsResolved() && !klass->IsErroneousResolved()) {
Vladimir Marko2c64a832018-01-04 11:31:56 +00002020 if (klass->GetStatus() < ClassStatus::kVerified) {
Mathieu Chartier90443472015-07-16 20:32:27 -07002021 ObjectLock<mirror::Class> lock(soa.Self(), klass);
2022 // Set class status to verified.
Vladimir Marko2c64a832018-01-04 11:31:56 +00002023 mirror::Class::SetStatus(klass, ClassStatus::kVerified, soa.Self());
Mathieu Chartier90443472015-07-16 20:32:27 -07002024 // Mark methods as pre-verified. If we don't do this, the interpreter will run with
2025 // access checks.
Vladimir Markoa0431112018-06-25 09:32:54 +01002026 InstructionSet instruction_set =
2027 manager_->GetCompiler()->GetCompilerOptions().GetInstructionSet();
2028 klass->SetSkipAccessChecksFlagOnAllMethods(GetInstructionSetPointerSize(instruction_set));
Igor Murashkindf707e42016-02-02 16:56:50 -08002029 klass->SetVerificationAttempted();
Mathieu Chartier90443472015-07-16 20:32:27 -07002030 }
2031 // Record the final class status if necessary.
2032 ClassReference ref(manager_->GetDexFile(), class_def_index);
2033 manager_->GetCompiler()->RecordClassStatus(ref, klass->GetStatus());
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002034 }
Mathieu Chartier90443472015-07-16 20:32:27 -07002035 } else {
2036 Thread* self = soa.Self();
2037 DCHECK(self->IsExceptionPending());
2038 self->ClearException();
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002039 }
2040 }
Mathieu Chartier90443472015-07-16 20:32:27 -07002041
2042 private:
2043 const ParallelCompilationManager* const manager_;
2044};
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002045
Andreas Gampeace0dc12016-01-20 13:33:13 -08002046void CompilerDriver::SetVerifiedDexFile(jobject class_loader,
2047 const DexFile& dex_file,
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002048 const std::vector<const DexFile*>& dex_files,
Andreas Gampeace0dc12016-01-20 13:33:13 -08002049 ThreadPool* thread_pool,
2050 size_t thread_count,
2051 TimingLogger* timings) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002052 TimingLogger::ScopedTiming t("Verify Dex File", timings);
Mathieu Chartier1a088d42017-07-18 11:43:57 -07002053 if (!compiled_classes_.HaveDexFile(&dex_file)) {
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002054 compiled_classes_.AddDexFile(&dex_file);
Mathieu Chartier1a088d42017-07-18 11:43:57 -07002055 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002056 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
2057 ParallelCompilationManager context(class_linker, class_loader, this, &dex_file, dex_files,
2058 thread_pool);
Mathieu Chartier90443472015-07-16 20:32:27 -07002059 SetVerifiedClassVisitor visitor(&context);
Andreas Gampeace0dc12016-01-20 13:33:13 -08002060 context.ForAll(0, dex_file.NumClassDefs(), &visitor, thread_count);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002061}
2062
Mathieu Chartier90443472015-07-16 20:32:27 -07002063class InitializeClassVisitor : public CompilationVisitor {
2064 public:
2065 explicit InitializeClassVisitor(const ParallelCompilationManager* manager) : manager_(manager) {}
Ian Rogersfc0e94b2013-09-23 23:51:32 -07002066
Roland Levillainbbc6e7e2018-08-24 16:58:47 +01002067 void Visit(size_t class_def_index) override {
Andreas Gampe9b827ab2017-12-07 19:32:48 -08002068 ScopedTrace trace(__FUNCTION__);
Mathieu Chartier90443472015-07-16 20:32:27 -07002069 jobject jclass_loader = manager_->GetClassLoader();
2070 const DexFile& dex_file = *manager_->GetDexFile();
2071 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
2072 const DexFile::TypeId& class_type_id = dex_file.GetTypeId(class_def.class_idx_);
2073 const char* descriptor = dex_file.StringDataByIdx(class_type_id.descriptor_idx_);
Jeff Hao0e49b422013-11-08 12:16:56 -08002074
Mathieu Chartier90443472015-07-16 20:32:27 -07002075 ScopedObjectAccess soa(Thread::Current());
2076 StackHandleScope<3> hs(soa.Self());
2077 Handle<mirror::ClassLoader> class_loader(
Mathieu Chartier0795f232016-09-27 18:43:30 -07002078 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader)));
Mathieu Chartier90443472015-07-16 20:32:27 -07002079 Handle<mirror::Class> klass(
2080 hs.NewHandle(manager_->GetClassLinker()->FindClass(soa.Self(), descriptor, class_loader)));
2081
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002082 if (klass != nullptr && !SkipClass(manager_->GetClassLoader(), dex_file, klass.Get())) {
2083 TryInitializeClass(klass, class_loader);
2084 }
2085 // Clear any class not found or verification exceptions.
2086 soa.Self()->ClearException();
2087 }
2088
2089 // A helper function for initializing klass.
2090 void TryInitializeClass(Handle<mirror::Class> klass, Handle<mirror::ClassLoader>& class_loader)
2091 REQUIRES_SHARED(Locks::mutator_lock_) {
2092 const DexFile& dex_file = klass->GetDexFile();
2093 const DexFile::ClassDef* class_def = klass->GetClassDef();
2094 const DexFile::TypeId& class_type_id = dex_file.GetTypeId(class_def->class_idx_);
2095 const char* descriptor = dex_file.StringDataByIdx(class_type_id.descriptor_idx_);
2096 ScopedObjectAccessUnchecked soa(Thread::Current());
2097 StackHandleScope<3> hs(soa.Self());
Mathieu Chartierdabeb3a2017-06-12 17:10:07 -07002098 const bool is_boot_image = manager_->GetCompiler()->GetCompilerOptions().IsBootImage();
Mathieu Chartier17498e52017-06-13 11:35:04 -07002099 const bool is_app_image = manager_->GetCompiler()->GetCompilerOptions().IsAppImage();
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002100
Vladimir Marko2c64a832018-01-04 11:31:56 +00002101 ClassStatus old_status = klass->GetStatus();
Mathieu Chartier1a088d42017-07-18 11:43:57 -07002102 // Don't initialize classes in boot space when compiling app image
2103 if (is_app_image && klass->IsBootStrapClassLoaded()) {
2104 // Also return early and don't store the class status in the recorded class status.
2105 return;
2106 }
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002107 // Only try to initialize classes that were successfully verified.
2108 if (klass->IsVerified()) {
2109 // Attempt to initialize the class but bail if we either need to initialize the super-class
2110 // or static fields.
Nicolas Geoffrayabadf022017-08-03 08:25:41 +00002111 manager_->GetClassLinker()->EnsureInitialized(soa.Self(), klass, false, false);
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002112 old_status = klass->GetStatus();
2113 if (!klass->IsInitialized()) {
2114 // We don't want non-trivial class initialization occurring on multiple threads due to
2115 // deadlock problems. For example, a parent class is initialized (holding its lock) that
2116 // refers to a sub-class in its static/class initializer causing it to try to acquire the
2117 // sub-class' lock. While on a second thread the sub-class is initialized (holding its lock)
2118 // after first initializing its parents, whose locks are acquired. This leads to a
2119 // parent-to-child and a child-to-parent lock ordering and consequent potential deadlock.
2120 // We need to use an ObjectLock due to potential suspension in the interpreting code. Rather
2121 // than use a special Object for the purpose we use the Class of java.lang.Class.
2122 Handle<mirror::Class> h_klass(hs.NewHandle(klass->GetClass()));
2123 ObjectLock<mirror::Class> lock(soa.Self(), h_klass);
2124 // Attempt to initialize allowing initialization of parent classes but still not static
2125 // fields.
Chang Xinge602b1c2017-06-30 11:55:01 -07002126 // Initialize dependencies first only for app image, to make TryInitialize recursive.
2127 bool is_superclass_initialized = !is_app_image ? true :
2128 InitializeDependencies(klass, class_loader, soa.Self());
2129 if (!is_app_image || (is_app_image && is_superclass_initialized)) {
Nicolas Geoffrayabadf022017-08-03 08:25:41 +00002130 manager_->GetClassLinker()->EnsureInitialized(soa.Self(), klass, false, true);
Chang Xinge602b1c2017-06-30 11:55:01 -07002131 }
2132 // Otherwise it's in app image but superclasses can't be initialized, no need to proceed.
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002133 old_status = klass->GetStatus();
Chang Xing70f689d2017-06-08 17:16:12 -07002134
Chris Wailes0c61be42018-09-26 17:27:34 -07002135 bool too_many_encoded_fields = !is_boot_image &&
2136 klass->NumStaticFields() > kMaxEncodedFields;
2137
Mathieu Chartierdabeb3a2017-06-12 17:10:07 -07002138 // If the class was not initialized, we can proceed to see if we can initialize static
Chang Xing70f689d2017-06-08 17:16:12 -07002139 // fields. Limit the max number of encoded fields.
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002140 if (!klass->IsInitialized() &&
Mathieu Chartier17498e52017-06-13 11:35:04 -07002141 (is_app_image || is_boot_image) &&
Chang Xinge602b1c2017-06-30 11:55:01 -07002142 is_superclass_initialized &&
Chang Xing70f689d2017-06-08 17:16:12 -07002143 !too_many_encoded_fields &&
Vladimir Markodc4bcce2018-06-21 16:15:42 +01002144 manager_->GetCompiler()->GetCompilerOptions().IsImageClass(descriptor)) {
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002145 bool can_init_static_fields = false;
Mathieu Chartierdabeb3a2017-06-12 17:10:07 -07002146 if (is_boot_image) {
Mathieu Chartier90443472015-07-16 20:32:27 -07002147 // We need to initialize static fields, we only do this for image classes that aren't
Mathieu Chartierdabeb3a2017-06-12 17:10:07 -07002148 // marked with the $NoPreloadHolder (which implies this should not be initialized
2149 // early).
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002150 can_init_static_fields = !StringPiece(descriptor).ends_with("$NoPreloadHolder;");
2151 } else {
Mathieu Chartier17498e52017-06-13 11:35:04 -07002152 CHECK(is_app_image);
Mathieu Chartierdabeb3a2017-06-12 17:10:07 -07002153 // The boot image case doesn't need to recursively initialize the dependencies with
2154 // special logic since the class linker already does this.
Mathieu Chartierdabeb3a2017-06-12 17:10:07 -07002155 can_init_static_fields =
Mathieu Chartier0933cc52018-03-23 14:25:08 -07002156 ClassLinker::kAppImageMayContainStrings &&
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002157 !soa.Self()->IsExceptionPending() &&
Nicolas Geoffrayabadf022017-08-03 08:25:41 +00002158 is_superclass_initialized &&
2159 NoClinitInDependency(klass, soa.Self(), &class_loader);
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002160 // TODO The checking for clinit can be removed since it's already
2161 // checked when init superclass. Currently keep it because it contains
2162 // processing of intern strings. Will be removed later when intern strings
2163 // and clinit are both initialized.
2164 }
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01002165
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002166 if (can_init_static_fields) {
2167 VLOG(compiler) << "Initializing: " << descriptor;
2168 // TODO multithreading support. We should ensure the current compilation thread has
2169 // exclusive access to the runtime and the transaction. To achieve this, we could use
2170 // a ReaderWriterMutex but we're holding the mutator lock so we fail mutex sanity
2171 // checks in Thread::AssertThreadSuspensionIsAllowable.
2172 Runtime* const runtime = Runtime::Current();
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002173 // Run the class initializer in transaction mode.
Chang Xing5a906fc2017-07-26 15:01:16 -07002174 runtime->EnterTransactionMode(is_app_image, klass.Get());
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002175 bool success = manager_->GetClassLinker()->EnsureInitialized(soa.Self(), klass, true,
2176 true);
2177 // TODO we detach transaction from runtime to indicate we quit the transactional
2178 // mode which prevents the GC from visiting objects modified during the transaction.
2179 // Ensure GC is not run so don't access freed objects when aborting transaction.
Andreas Gampe9e7078b2017-03-02 13:50:36 -08002180
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002181 {
2182 ScopedAssertNoThreadSuspension ants("Transaction end");
Chang Xing16d1dd82017-07-20 17:56:26 -07002183
2184 if (success) {
2185 runtime->ExitTransactionMode();
2186 DCHECK(!runtime->IsActiveTransaction());
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01002187
Chris Wailes0c61be42018-09-26 17:27:34 -07002188 if (is_boot_image) {
2189 // For boot image, we want to put the updated status in the oat class since we
2190 // can't reject the image anyways.
2191 old_status = klass->GetStatus();
2192 }
2193 } else {
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002194 CHECK(soa.Self()->IsExceptionPending());
2195 mirror::Throwable* exception = soa.Self()->GetException();
2196 VLOG(compiler) << "Initialization of " << descriptor << " aborted because of "
2197 << exception->Dump();
2198 std::ostream* file_log = manager_->GetCompiler()->
2199 GetCompilerOptions().GetInitFailureOutput();
2200 if (file_log != nullptr) {
2201 *file_log << descriptor << "\n";
2202 *file_log << exception->Dump() << "\n";
2203 }
2204 soa.Self()->ClearException();
Chang Xing605fe242017-07-20 15:57:21 -07002205 runtime->RollbackAllTransactions();
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002206 CHECK_EQ(old_status, klass->GetStatus()) << "Previous class status not restored";
2207 }
2208 }
2209
Nicolas Geoffrayabadf022017-08-03 08:25:41 +00002210 if (!success) {
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002211 // On failure, still intern strings of static fields and seen in <clinit>, as these
2212 // will be created in the zygote. This is separated from the transaction code just
2213 // above as we will allocate strings, so must be allowed to suspend.
2214 if (&klass->GetDexFile() == manager_->GetDexFile()) {
Andreas Gampe9e7078b2017-03-02 13:50:36 -08002215 InternStrings(klass, class_loader);
Mathieu Chartierdabeb3a2017-06-12 17:10:07 -07002216 } else {
2217 DCHECK(!is_boot_image) << "Boot image must have equal dex files";
Andreas Gampedbfe2542014-11-25 22:21:42 -08002218 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002219 }
2220 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002221 }
Jeff Hao0cb17282017-07-12 14:51:49 -07002222 // If the class still isn't initialized, at least try some checks that initialization
2223 // would do so they can be skipped at runtime.
2224 if (!klass->IsInitialized() &&
2225 manager_->GetClassLinker()->ValidateSuperClassDescriptors(klass)) {
Vladimir Marko2c64a832018-01-04 11:31:56 +00002226 old_status = ClassStatus::kSuperclassValidated;
Jeff Hao0cb17282017-07-12 14:51:49 -07002227 } else {
2228 soa.Self()->ClearException();
2229 }
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002230 soa.Self()->AssertNoPendingException();
Brian Carlstrom7940e442013-07-12 13:46:57 -07002231 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002232 }
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002233 // Record the final class status if necessary.
2234 ClassReference ref(&dex_file, klass->GetDexClassDefIndex());
2235 // Back up the status before doing initialization for static encoded fields,
2236 // because the static encoded branch wants to keep the status to uninitialized.
2237 manager_->GetCompiler()->RecordClassStatus(ref, old_status);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002238 }
Mathieu Chartier90443472015-07-16 20:32:27 -07002239
2240 private:
Andreas Gampe9e7078b2017-03-02 13:50:36 -08002241 void InternStrings(Handle<mirror::Class> klass, Handle<mirror::ClassLoader> class_loader)
2242 REQUIRES_SHARED(Locks::mutator_lock_) {
2243 DCHECK(manager_->GetCompiler()->GetCompilerOptions().IsBootImage());
2244 DCHECK(klass->IsVerified());
2245 DCHECK(!klass->IsInitialized());
2246
2247 StackHandleScope<1> hs(Thread::Current());
Vladimir Markoe11dd502017-12-08 14:09:45 +00002248 Handle<mirror::DexCache> dex_cache = hs.NewHandle(klass->GetDexCache());
Andreas Gampe9e7078b2017-03-02 13:50:36 -08002249 const DexFile::ClassDef* class_def = klass->GetClassDef();
2250 ClassLinker* class_linker = manager_->GetClassLinker();
2251
Andreas Gampe7bf90482017-03-02 16:41:35 -08002252 // Check encoded final field values for strings and intern.
Vladimir Markoe11dd502017-12-08 14:09:45 +00002253 annotations::RuntimeEncodedStaticFieldValueIterator value_it(dex_cache,
2254 class_loader,
Andreas Gampe9e7078b2017-03-02 13:50:36 -08002255 manager_->GetClassLinker(),
2256 *class_def);
2257 for ( ; value_it.HasNext(); value_it.Next()) {
2258 if (value_it.GetValueType() == annotations::RuntimeEncodedStaticFieldValueIterator::kString) {
2259 // Resolve the string. This will intern the string.
2260 art::ObjPtr<mirror::String> resolved = class_linker->ResolveString(
Vladimir Markoa64b52d2017-12-08 16:27:49 +00002261 dex::StringIndex(value_it.GetJavaValue().i), dex_cache);
Andreas Gampe9e7078b2017-03-02 13:50:36 -08002262 CHECK(resolved != nullptr);
2263 }
2264 }
Andreas Gampe7bf90482017-03-02 16:41:35 -08002265
2266 // Intern strings seen in <clinit>.
2267 ArtMethod* clinit = klass->FindClassInitializer(class_linker->GetImagePointerSize());
2268 if (clinit != nullptr) {
Mathieu Chartier73f21d42018-01-02 14:26:50 -08002269 for (const DexInstructionPcPair& inst : clinit->DexInstructions()) {
Mathieu Chartier2b2bef22017-10-26 17:10:19 -07002270 if (inst->Opcode() == Instruction::CONST_STRING) {
Andreas Gampe7bf90482017-03-02 16:41:35 -08002271 ObjPtr<mirror::String> s = class_linker->ResolveString(
Vladimir Markoa64b52d2017-12-08 16:27:49 +00002272 dex::StringIndex(inst->VRegB_21c()), dex_cache);
Andreas Gampe7bf90482017-03-02 16:41:35 -08002273 CHECK(s != nullptr);
Mathieu Chartier2b2bef22017-10-26 17:10:19 -07002274 } else if (inst->Opcode() == Instruction::CONST_STRING_JUMBO) {
Andreas Gampe7bf90482017-03-02 16:41:35 -08002275 ObjPtr<mirror::String> s = class_linker->ResolveString(
Vladimir Markoa64b52d2017-12-08 16:27:49 +00002276 dex::StringIndex(inst->VRegB_31c()), dex_cache);
Andreas Gampe7bf90482017-03-02 16:41:35 -08002277 CHECK(s != nullptr);
2278 }
Andreas Gampe7bf90482017-03-02 16:41:35 -08002279 }
2280 }
Andreas Gampe9e7078b2017-03-02 13:50:36 -08002281 }
2282
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002283 bool ResolveTypesOfMethods(Thread* self, ArtMethod* m)
2284 REQUIRES_SHARED(Locks::mutator_lock_) {
Vladimir Markob45528c2017-07-27 14:14:28 +01002285 // Return value of ResolveReturnType() is discarded because resolve will be done internally.
2286 ObjPtr<mirror::Class> rtn_type = m->ResolveReturnType();
Mathieu Chartier7a8bcfd2017-06-13 13:40:43 -07002287 if (rtn_type == nullptr) {
2288 self->ClearException();
2289 return false;
2290 }
2291 const DexFile::TypeList* types = m->GetParameterTypeList();
2292 if (types != nullptr) {
2293 for (uint32_t i = 0; i < types->Size(); ++i) {
2294 dex::TypeIndex param_type_idx = types->GetTypeItem(i).type_idx_;
Vladimir Markob45528c2017-07-27 14:14:28 +01002295 ObjPtr<mirror::Class> param_type = m->ResolveClassFromTypeIndex(param_type_idx);
Mathieu Chartier7a8bcfd2017-06-13 13:40:43 -07002296 if (param_type == nullptr) {
2297 self->ClearException();
2298 return false;
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002299 }
2300 }
Mathieu Chartier7a8bcfd2017-06-13 13:40:43 -07002301 }
2302 return true;
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002303 }
2304
2305 // Pre resolve types mentioned in all method signatures before start a transaction
2306 // since ResolveType doesn't work in transaction mode.
2307 bool PreResolveTypes(Thread* self, const Handle<mirror::Class>& klass)
2308 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartier7a8bcfd2017-06-13 13:40:43 -07002309 PointerSize pointer_size = manager_->GetClassLinker()->GetImagePointerSize();
2310 for (ArtMethod& m : klass->GetMethods(pointer_size)) {
2311 if (!ResolveTypesOfMethods(self, &m)) {
2312 return false;
2313 }
2314 }
2315 if (klass->IsInterface()) {
2316 return true;
2317 } else if (klass->HasSuperClass()) {
2318 StackHandleScope<1> hs(self);
2319 MutableHandle<mirror::Class> super_klass(hs.NewHandle<mirror::Class>(klass->GetSuperClass()));
2320 for (int i = super_klass->GetVTableLength() - 1; i >= 0; --i) {
2321 ArtMethod* m = klass->GetVTableEntry(i, pointer_size);
2322 ArtMethod* super_m = super_klass->GetVTableEntry(i, pointer_size);
2323 if (!ResolveTypesOfMethods(self, m) || !ResolveTypesOfMethods(self, super_m)) {
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002324 return false;
2325 }
2326 }
Mathieu Chartier7a8bcfd2017-06-13 13:40:43 -07002327 for (int32_t i = 0; i < klass->GetIfTableCount(); ++i) {
2328 super_klass.Assign(klass->GetIfTable()->GetInterface(i));
2329 if (klass->GetClassLoader() != super_klass->GetClassLoader()) {
2330 uint32_t num_methods = super_klass->NumVirtualMethods();
2331 for (uint32_t j = 0; j < num_methods; ++j) {
2332 ArtMethod* m = klass->GetIfTable()->GetMethodArray(i)->GetElementPtrSize<ArtMethod*>(
2333 j, pointer_size);
2334 ArtMethod* super_m = super_klass->GetVirtualMethod(j, pointer_size);
2335 if (!ResolveTypesOfMethods(self, m) || !ResolveTypesOfMethods(self, super_m)) {
2336 return false;
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002337 }
2338 }
2339 }
2340 }
Mathieu Chartier7a8bcfd2017-06-13 13:40:43 -07002341 }
2342 return true;
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002343 }
2344
2345 // Initialize the klass's dependencies recursively before initializing itself.
2346 // Checking for interfaces is also necessary since interfaces can contain
2347 // both default methods and static encoded fields.
2348 bool InitializeDependencies(const Handle<mirror::Class>& klass,
2349 Handle<mirror::ClassLoader> class_loader,
2350 Thread* self)
2351 REQUIRES_SHARED(Locks::mutator_lock_) {
2352 if (klass->HasSuperClass()) {
2353 ObjPtr<mirror::Class> super_class = klass->GetSuperClass();
2354 StackHandleScope<1> hs(self);
2355 Handle<mirror::Class> handle_scope_super(hs.NewHandle(super_class));
2356 if (!handle_scope_super->IsInitialized()) {
2357 this->TryInitializeClass(handle_scope_super, class_loader);
2358 if (!handle_scope_super->IsInitialized()) {
2359 return false;
2360 }
2361 }
2362 }
2363
2364 uint32_t num_if = klass->NumDirectInterfaces();
2365 for (size_t i = 0; i < num_if; i++) {
2366 ObjPtr<mirror::Class>
2367 interface = mirror::Class::GetDirectInterface(self, klass.Get(), i);
2368 StackHandleScope<1> hs(self);
2369 Handle<mirror::Class> handle_interface(hs.NewHandle(interface));
2370
2371 TryInitializeClass(handle_interface, class_loader);
2372
2373 if (!handle_interface->IsInitialized()) {
2374 return false;
2375 }
2376 }
2377
2378 return PreResolveTypes(self, klass);
2379 }
2380
2381 // In this phase the classes containing class initializers are ignored. Make sure no
2382 // clinit appears in kalss's super class chain and interfaces.
2383 bool NoClinitInDependency(const Handle<mirror::Class>& klass,
2384 Thread* self,
2385 Handle<mirror::ClassLoader>* class_loader)
2386 REQUIRES_SHARED(Locks::mutator_lock_) {
2387 ArtMethod* clinit =
2388 klass->FindClassInitializer(manager_->GetClassLinker()->GetImagePointerSize());
2389 if (clinit != nullptr) {
2390 VLOG(compiler) << klass->PrettyClass() << ' ' << clinit->PrettyMethod(true);
2391 return false;
2392 }
2393 if (klass->HasSuperClass()) {
2394 ObjPtr<mirror::Class> super_class = klass->GetSuperClass();
2395 StackHandleScope<1> hs(self);
2396 Handle<mirror::Class> handle_scope_super(hs.NewHandle(super_class));
2397 if (!NoClinitInDependency(handle_scope_super, self, class_loader)) {
2398 return false;
2399 }
2400 }
2401
2402 uint32_t num_if = klass->NumDirectInterfaces();
2403 for (size_t i = 0; i < num_if; i++) {
2404 ObjPtr<mirror::Class>
2405 interface = mirror::Class::GetDirectInterface(self, klass.Get(), i);
2406 StackHandleScope<1> hs(self);
2407 Handle<mirror::Class> handle_interface(hs.NewHandle(interface));
2408 if (!NoClinitInDependency(handle_interface, self, class_loader)) {
2409 return false;
2410 }
2411 }
2412
Chang Xingba17dbd2017-06-28 21:27:56 +00002413 return true;
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002414 }
2415
Mathieu Chartier90443472015-07-16 20:32:27 -07002416 const ParallelCompilationManager* const manager_;
2417};
Brian Carlstrom7940e442013-07-12 13:46:57 -07002418
Andreas Gampeace0dc12016-01-20 13:33:13 -08002419void CompilerDriver::InitializeClasses(jobject jni_class_loader,
2420 const DexFile& dex_file,
Andreas Gampede7b4362014-07-28 18:38:57 -07002421 const std::vector<const DexFile*>& dex_files,
Andreas Gampeace0dc12016-01-20 13:33:13 -08002422 TimingLogger* timings) {
Mathieu Chartierf5997b42014-06-20 10:37:54 -07002423 TimingLogger::ScopedTiming t("InitializeNoClinit", timings);
Andreas Gampeace0dc12016-01-20 13:33:13 -08002424
2425 // Initialization allocates objects and needs to run single-threaded to be deterministic.
2426 bool force_determinism = GetCompilerOptions().IsForceDeterminism();
2427 ThreadPool* init_thread_pool = force_determinism
2428 ? single_thread_pool_.get()
2429 : parallel_thread_pool_.get();
2430 size_t init_thread_count = force_determinism ? 1U : parallel_thread_count_;
2431
Brian Carlstrom7940e442013-07-12 13:46:57 -07002432 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Andreas Gampede7b4362014-07-28 18:38:57 -07002433 ParallelCompilationManager context(class_linker, jni_class_loader, this, &dex_file, dex_files,
Andreas Gampeace0dc12016-01-20 13:33:13 -08002434 init_thread_pool);
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002435
2436 if (GetCompilerOptions().IsBootImage() || GetCompilerOptions().IsAppImage()) {
2437 // Set the concurrency thread to 1 to support initialization for App Images since transaction
2438 // doesn't support multithreading now.
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01002439 // TODO: remove this when transactional mode supports multithreading.
Andreas Gampeace0dc12016-01-20 13:33:13 -08002440 init_thread_count = 1U;
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01002441 }
Mathieu Chartier90443472015-07-16 20:32:27 -07002442 InitializeClassVisitor visitor(&context);
Andreas Gampeace0dc12016-01-20 13:33:13 -08002443 context.ForAll(0, dex_file.NumClassDefs(), &visitor, init_thread_count);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002444}
2445
Mathieu Chartier91288d82016-04-28 09:44:54 -07002446class InitializeArrayClassesAndCreateConflictTablesVisitor : public ClassVisitor {
Mathieu Chartier085a0722016-04-01 17:33:31 -07002447 public:
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002448 explicit InitializeArrayClassesAndCreateConflictTablesVisitor(VariableSizedHandleScope& hs)
2449 : hs_(hs) {}
2450
Roland Levillainf73caca2018-08-24 17:19:07 +01002451 bool operator()(ObjPtr<mirror::Class> klass) override
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002452 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartier91288d82016-04-28 09:44:54 -07002453 if (Runtime::Current()->GetHeap()->ObjectIsInBootImageSpace(klass)) {
2454 return true;
2455 }
Mathieu Chartier085a0722016-04-01 17:33:31 -07002456 if (klass->IsArrayClass()) {
2457 StackHandleScope<1> hs(Thread::Current());
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002458 auto h_klass = hs.NewHandleWrapper(&klass);
2459 Runtime::Current()->GetClassLinker()->EnsureInitialized(hs.Self(), h_klass, true, true);
Mathieu Chartier085a0722016-04-01 17:33:31 -07002460 }
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002461 // Collect handles since there may be thread suspension in future EnsureInitialized.
2462 to_visit_.push_back(hs_.NewHandle(klass));
Nicolas Geoffray88f288e2016-06-29 08:17:52 +00002463 return true;
Nelli Kimbadee982016-05-13 13:08:53 +03002464 }
Artem Udovichenkoa62cb9b2016-06-30 09:18:25 +00002465
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002466 void FillAllIMTAndConflictTables() REQUIRES_SHARED(Locks::mutator_lock_) {
2467 for (Handle<mirror::Class> c : to_visit_) {
2468 // Create the conflict tables.
2469 FillIMTAndConflictTables(c.Get());
2470 }
2471 }
2472
Artem Udovichenkoa62cb9b2016-06-30 09:18:25 +00002473 private:
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002474 void FillIMTAndConflictTables(ObjPtr<mirror::Class> klass)
2475 REQUIRES_SHARED(Locks::mutator_lock_) {
Artem Udovichenkoa62cb9b2016-06-30 09:18:25 +00002476 if (!klass->ShouldHaveImt()) {
2477 return;
2478 }
2479 if (visited_classes_.find(klass) != visited_classes_.end()) {
2480 return;
2481 }
2482 if (klass->HasSuperClass()) {
2483 FillIMTAndConflictTables(klass->GetSuperClass());
2484 }
2485 if (!klass->IsTemp()) {
2486 Runtime::Current()->GetClassLinker()->FillIMTAndConflictTables(klass);
2487 }
2488 visited_classes_.insert(klass);
2489 }
2490
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002491 VariableSizedHandleScope& hs_;
2492 std::vector<Handle<mirror::Class>> to_visit_;
2493 std::unordered_set<ObjPtr<mirror::Class>, HashObjPtr> visited_classes_;
Mathieu Chartier085a0722016-04-01 17:33:31 -07002494};
2495
Brian Carlstrom7940e442013-07-12 13:46:57 -07002496void CompilerDriver::InitializeClasses(jobject class_loader,
2497 const std::vector<const DexFile*>& dex_files,
Andreas Gampeace0dc12016-01-20 13:33:13 -08002498 TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07002499 for (size_t i = 0; i != dex_files.size(); ++i) {
2500 const DexFile* dex_file = dex_files[i];
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002501 CHECK(dex_file != nullptr);
Andreas Gampeace0dc12016-01-20 13:33:13 -08002502 InitializeClasses(class_loader, *dex_file, dex_files, timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002503 }
Vladimir Markoaad75c62016-10-03 08:46:48 +00002504 if (GetCompilerOptions().IsBootImage() || GetCompilerOptions().IsAppImage()) {
Mathieu Chartier085a0722016-04-01 17:33:31 -07002505 // Make sure that we call EnsureIntiailized on all the array classes to call
2506 // SetVerificationAttempted so that the access flags are set. If we do not do this they get
2507 // changed at runtime resulting in more dirty image pages.
Mathieu Chartier91288d82016-04-28 09:44:54 -07002508 // Also create conflict tables.
2509 // Only useful if we are compiling an image (image_classes_ is not null).
Mathieu Chartier085a0722016-04-01 17:33:31 -07002510 ScopedObjectAccess soa(Thread::Current());
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002511 VariableSizedHandleScope hs(soa.Self());
2512 InitializeArrayClassesAndCreateConflictTablesVisitor visitor(hs);
Mathieu Chartier91288d82016-04-28 09:44:54 -07002513 Runtime::Current()->GetClassLinker()->VisitClassesWithoutClassesLock(&visitor);
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002514 visitor.FillAllIMTAndConflictTables();
Mathieu Chartier085a0722016-04-01 17:33:31 -07002515 }
Vladimir Markoaad75c62016-10-03 08:46:48 +00002516 if (GetCompilerOptions().IsBootImage()) {
Mathieu Chartier093ef212014-08-11 13:52:12 -07002517 // Prune garbage objects created during aborted transactions.
Roland Levillainaf290312018-02-27 20:02:17 +00002518 Runtime::Current()->GetHeap()->CollectGarbage(/* clear_soft_references */ true);
Mathieu Chartier093ef212014-08-11 13:52:12 -07002519 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002520}
2521
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002522template <typename CompileFn>
2523static void CompileDexFile(CompilerDriver* driver,
2524 jobject class_loader,
2525 const DexFile& dex_file,
2526 const std::vector<const DexFile*>& dex_files,
2527 ThreadPool* thread_pool,
2528 size_t thread_count,
2529 TimingLogger* timings,
2530 const char* timing_name,
2531 CompileFn compile_fn) {
2532 TimingLogger::ScopedTiming t(timing_name, timings);
2533 ParallelCompilationManager context(Runtime::Current()->GetClassLinker(),
2534 class_loader,
2535 driver,
2536 &dex_file,
2537 dex_files,
2538 thread_pool);
Vladimir Marko492a7fa2016-06-01 18:38:43 +01002539
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002540 auto compile = [&context, &compile_fn](size_t class_def_index) {
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002541 const DexFile& dex_file = *context.GetDexFile();
Andreas Gampe3e7f66b2018-09-06 10:08:18 -07002542 SCOPED_TRACE << "compile " << dex_file.GetLocation() << "@" << class_def_index;
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002543 ClassLinker* class_linker = context.GetClassLinker();
2544 jobject jclass_loader = context.GetClassLoader();
Mathieu Chartier90443472015-07-16 20:32:27 -07002545 ClassReference ref(&dex_file, class_def_index);
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07002546 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
Mathieu Chartier18e26872018-06-04 17:19:02 -07002547 ClassAccessor accessor(dex_file, class_def_index);
Mathieu Chartier90443472015-07-16 20:32:27 -07002548 // Skip compiling classes with generic verifier failures since they will still fail at runtime
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002549 if (context.GetCompiler()->GetVerificationResults()->IsClassRejected(ref)) {
Ian Rogers1ff3c982014-08-12 02:30:58 -07002550 return;
2551 }
Mathieu Chartier736b5602015-09-02 14:54:11 -07002552 // Use a scoped object access to perform to the quick SkipClass check.
Mathieu Chartier736b5602015-09-02 14:54:11 -07002553 ScopedObjectAccess soa(Thread::Current());
2554 StackHandleScope<3> hs(soa.Self());
2555 Handle<mirror::ClassLoader> class_loader(
Mathieu Chartier0795f232016-09-27 18:43:30 -07002556 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader)));
Mathieu Chartier736b5602015-09-02 14:54:11 -07002557 Handle<mirror::Class> klass(
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07002558 hs.NewHandle(class_linker->FindClass(soa.Self(), accessor.GetDescriptor(), class_loader)));
Mathieu Chartier736b5602015-09-02 14:54:11 -07002559 Handle<mirror::DexCache> dex_cache;
Andreas Gampefa4333d2017-02-14 11:10:34 -08002560 if (klass == nullptr) {
Mathieu Chartier736b5602015-09-02 14:54:11 -07002561 soa.Self()->AssertPendingException();
2562 soa.Self()->ClearException();
2563 dex_cache = hs.NewHandle(class_linker->FindDexCache(soa.Self(), dex_file));
2564 } else if (SkipClass(jclass_loader, dex_file, klass.Get())) {
2565 return;
Andreas Gampebb30d5d2018-04-23 09:59:25 -07002566 } else if (&klass->GetDexFile() != &dex_file) {
2567 // Skip a duplicate class (as the resolved class is from another, earlier dex file).
2568 return; // Do not update state.
Mathieu Chartier736b5602015-09-02 14:54:11 -07002569 } else {
2570 dex_cache = hs.NewHandle(klass->GetDexCache());
2571 }
2572
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07002573 // Avoid suspension if there are no methods to compile.
2574 if (accessor.NumDirectMethods() + accessor.NumVirtualMethods() == 0) {
Mathieu Chartier90443472015-07-16 20:32:27 -07002575 return;
Brian Carlstrom7940e442013-07-12 13:46:57 -07002576 }
Mathieu Chartier90443472015-07-16 20:32:27 -07002577
Mathieu Chartier736b5602015-09-02 14:54:11 -07002578 // Go to native so that we don't block GC during compilation.
Mathieu Chartierf1d666e2015-09-03 16:13:34 -07002579 ScopedThreadSuspension sts(soa.Self(), kNative);
Mathieu Chartier736b5602015-09-02 14:54:11 -07002580
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002581 CompilerDriver* const driver = context.GetCompiler();
Mathieu Chartier90443472015-07-16 20:32:27 -07002582
2583 // Can we run DEX-to-DEX compiler on this class ?
Mathieu Chartiera79efdb2018-01-18 16:31:01 -08002584 optimizer::DexToDexCompiler::CompilationLevel dex_to_dex_compilation_level =
Mathieu Chartier736b5602015-09-02 14:54:11 -07002585 GetDexToDexCompilationLevel(soa.Self(), *driver, jclass_loader, dex_file, class_def);
Andreas Gampe5eb0d382015-07-23 01:19:26 -07002586
Mathieu Chartierb7c273c2017-11-10 18:07:56 -08002587 // Compile direct and virtual methods.
2588 int64_t previous_method_idx = -1;
Mathieu Chartier0d896bd2018-05-25 00:20:27 -07002589 for (const ClassAccessor::Method& method : accessor.GetMethods()) {
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07002590 const uint32_t method_idx = method.GetIndex();
Mathieu Chartierb7c273c2017-11-10 18:07:56 -08002591 if (method_idx == previous_method_idx) {
Mathieu Chartier90443472015-07-16 20:32:27 -07002592 // smali can create dex files with two encoded_methods sharing the same method_idx
2593 // http://code.google.com/p/smali/issues/detail?id=119
Mathieu Chartier0d896bd2018-05-25 00:20:27 -07002594 continue;
Mathieu Chartier90443472015-07-16 20:32:27 -07002595 }
Mathieu Chartierb7c273c2017-11-10 18:07:56 -08002596 previous_method_idx = method_idx;
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002597 compile_fn(soa.Self(),
2598 driver,
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07002599 method.GetCodeItem(),
2600 method.GetAccessFlags(),
2601 method.GetInvokeType(class_def.access_flags_),
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002602 class_def_index,
2603 method_idx,
2604 class_loader,
2605 dex_file,
2606 dex_to_dex_compilation_level,
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002607 dex_cache);
Mathieu Chartier0d896bd2018-05-25 00:20:27 -07002608 }
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002609 };
2610 context.ForAllLambda(0, dex_file.NumClassDefs(), compile, thread_count);
2611}
2612
2613void CompilerDriver::Compile(jobject class_loader,
2614 const std::vector<const DexFile*>& dex_files,
2615 TimingLogger* timings) {
2616 if (kDebugProfileGuidedCompilation) {
Vladimir Marko1a2a5cd2018-11-07 15:39:48 +00002617 const ProfileCompilationInfo* profile_compilation_info =
2618 GetCompilerOptions().GetProfileCompilationInfo();
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002619 LOG(INFO) << "[ProfileGuidedCompilation] " <<
Vladimir Marko1a2a5cd2018-11-07 15:39:48 +00002620 ((profile_compilation_info == nullptr)
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002621 ? "null"
Vladimir Marko1a2a5cd2018-11-07 15:39:48 +00002622 : profile_compilation_info->DumpInfo(dex_files));
Brian Carlstrom7940e442013-07-12 13:46:57 -07002623 }
Mathieu Chartier90443472015-07-16 20:32:27 -07002624
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002625 dex_to_dex_compiler_.ClearState();
2626 for (const DexFile* dex_file : dex_files) {
2627 CHECK(dex_file != nullptr);
2628 CompileDexFile(this,
2629 class_loader,
2630 *dex_file,
2631 dex_files,
2632 parallel_thread_pool_.get(),
2633 parallel_thread_count_,
2634 timings,
2635 "Compile Dex File Quick",
2636 CompileMethodQuick);
2637 const ArenaPool* const arena_pool = Runtime::Current()->GetArenaPool();
2638 const size_t arena_alloc = arena_pool->GetBytesAllocated();
2639 max_arena_alloc_ = std::max(arena_alloc, max_arena_alloc_);
2640 Runtime::Current()->ReclaimArenaPoolMemory();
2641 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002642
Mathieu Chartier279e3a32018-01-24 18:17:55 -08002643 if (dex_to_dex_compiler_.NumCodeItemsToQuicken(Thread::Current()) > 0u) {
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002644 // TODO: Not visit all of the dex files, its probably rare that only one would have quickened
2645 // methods though.
2646 for (const DexFile* dex_file : dex_files) {
2647 CompileDexFile(this,
2648 class_loader,
2649 *dex_file,
2650 dex_files,
2651 parallel_thread_pool_.get(),
2652 parallel_thread_count_,
2653 timings,
2654 "Compile Dex File Dex2Dex",
2655 CompileMethodDex2Dex);
2656 }
2657 dex_to_dex_compiler_.ClearState();
2658 }
2659
2660 VLOG(compiler) << "Compile: " << GetMemoryUsageString(false);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002661}
2662
Andreas Gampe5eb0d382015-07-23 01:19:26 -07002663void CompilerDriver::AddCompiledMethod(const MethodReference& method_ref,
Vladimir Marko8e524ad2018-07-13 10:27:43 +01002664 CompiledMethod* const compiled_method) {
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002665 DCHECK(GetCompiledMethod(method_ref) == nullptr) << method_ref.PrettyMethod();
2666 MethodTable::InsertResult result = compiled_methods_.Insert(method_ref,
2667 /*expected*/ nullptr,
2668 compiled_method);
Mathieu Chartieracab8d42016-11-23 13:45:58 -08002669 CHECK(result == MethodTable::kInsertResultSuccess);
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002670 DCHECK(GetCompiledMethod(method_ref) != nullptr) << method_ref.PrettyMethod();
Brian Carlstrom7940e442013-07-12 13:46:57 -07002671}
2672
Mathieu Chartier279e3a32018-01-24 18:17:55 -08002673CompiledMethod* CompilerDriver::RemoveCompiledMethod(const MethodReference& method_ref) {
2674 CompiledMethod* ret = nullptr;
2675 CHECK(compiled_methods_.Remove(method_ref, &ret));
2676 return ret;
2677}
2678
Vladimir Marko2c64a832018-01-04 11:31:56 +00002679bool CompilerDriver::GetCompiledClass(const ClassReference& ref, ClassStatus* status) const {
Andreas Gampebb846102017-05-11 21:03:35 -07002680 DCHECK(status != nullptr);
Mathieu Chartier1a088d42017-07-18 11:43:57 -07002681 // The table doesn't know if something wasn't inserted. For this case it will return
Vladimir Marko2c64a832018-01-04 11:31:56 +00002682 // ClassStatus::kNotReady. To handle this, just assume anything we didn't try to verify
2683 // is not compiled.
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002684 if (!compiled_classes_.Get(ref, status) ||
Vladimir Marko2c64a832018-01-04 11:31:56 +00002685 *status < ClassStatus::kRetryVerificationAtRuntime) {
Andreas Gampebb846102017-05-11 21:03:35 -07002686 return false;
Brian Carlstrom7940e442013-07-12 13:46:57 -07002687 }
Andreas Gampebb846102017-05-11 21:03:35 -07002688 return true;
Brian Carlstrom7940e442013-07-12 13:46:57 -07002689}
2690
Vladimir Marko2c64a832018-01-04 11:31:56 +00002691ClassStatus CompilerDriver::GetClassStatus(const ClassReference& ref) const {
2692 ClassStatus status = ClassStatus::kNotReady;
Nicolas Geoffray486dda02017-09-11 14:15:52 +01002693 if (!GetCompiledClass(ref, &status)) {
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002694 classpath_classes_.Get(ref, &status);
Nicolas Geoffray486dda02017-09-11 14:15:52 +01002695 }
2696 return status;
2697}
2698
Vladimir Marko2c64a832018-01-04 11:31:56 +00002699void CompilerDriver::RecordClassStatus(const ClassReference& ref, ClassStatus status) {
Nicolas Geoffrayade72d62016-12-15 13:20:02 +00002700 switch (status) {
Vladimir Marko2c64a832018-01-04 11:31:56 +00002701 case ClassStatus::kErrorResolved:
2702 case ClassStatus::kErrorUnresolved:
2703 case ClassStatus::kNotReady:
2704 case ClassStatus::kResolved:
2705 case ClassStatus::kRetryVerificationAtRuntime:
2706 case ClassStatus::kVerified:
2707 case ClassStatus::kSuperclassValidated:
2708 case ClassStatus::kInitialized:
Nicolas Geoffrayade72d62016-12-15 13:20:02 +00002709 break; // Expected states.
2710 default:
2711 LOG(FATAL) << "Unexpected class status for class "
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002712 << PrettyDescriptor(
2713 ref.dex_file->GetClassDescriptor(ref.dex_file->GetClassDef(ref.index)))
Nicolas Geoffrayade72d62016-12-15 13:20:02 +00002714 << " of " << status;
2715 }
2716
Mathieu Chartier1a088d42017-07-18 11:43:57 -07002717 ClassStateTable::InsertResult result;
Nicolas Geoffray486dda02017-09-11 14:15:52 +01002718 ClassStateTable* table = &compiled_classes_;
Mathieu Chartier1a088d42017-07-18 11:43:57 -07002719 do {
Vladimir Marko2c64a832018-01-04 11:31:56 +00002720 ClassStatus existing = ClassStatus::kNotReady;
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002721 if (!table->Get(ref, &existing)) {
Nicolas Geoffray486dda02017-09-11 14:15:52 +01002722 // A classpath class.
Mathieu Chartier010f5cc2017-07-24 15:53:46 -07002723 if (kIsDebugBuild) {
2724 // Check to make sure it's not a dex file for an oat file we are compiling since these
2725 // should always succeed. These do not include classes in for used libraries.
Vladimir Marko213ee2d2018-06-22 11:56:34 +01002726 for (const DexFile* dex_file : GetCompilerOptions().GetDexFilesForOatFile()) {
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002727 CHECK_NE(ref.dex_file, dex_file) << ref.dex_file->GetLocation();
Mathieu Chartier010f5cc2017-07-24 15:53:46 -07002728 }
2729 }
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002730 if (!classpath_classes_.HaveDexFile(ref.dex_file)) {
Nicolas Geoffray486dda02017-09-11 14:15:52 +01002731 // Boot classpath dex file.
2732 return;
2733 }
2734 table = &classpath_classes_;
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002735 table->Get(ref, &existing);
Mathieu Chartier010f5cc2017-07-24 15:53:46 -07002736 }
Mathieu Chartier1a088d42017-07-18 11:43:57 -07002737 if (existing >= status) {
2738 // Existing status is already better than we expect, break.
2739 break;
2740 }
Nicolas Geoffrayade72d62016-12-15 13:20:02 +00002741 // Update the status if we now have a greater one. This happens with vdex,
2742 // which records a class is verified, but does not resolve it.
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002743 result = table->Insert(ref, existing, status);
2744 CHECK(result != ClassStateTable::kInsertResultInvalidDexFile) << ref.dex_file->GetLocation();
Mathieu Chartier1a088d42017-07-18 11:43:57 -07002745 } while (result != ClassStateTable::kInsertResultSuccess);
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07002746}
2747
Brian Carlstrom7940e442013-07-12 13:46:57 -07002748CompiledMethod* CompilerDriver::GetCompiledMethod(MethodReference ref) const {
Mathieu Chartieracab8d42016-11-23 13:45:58 -08002749 CompiledMethod* compiled_method = nullptr;
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002750 compiled_methods_.Get(ref, &compiled_method);
Mathieu Chartieracab8d42016-11-23 13:45:58 -08002751 return compiled_method;
Brian Carlstrom7940e442013-07-12 13:46:57 -07002752}
2753
Calin Juravlef1c6d9e2015-04-13 18:42:21 +01002754bool CompilerDriver::IsMethodVerifiedWithoutFailures(uint32_t method_idx,
2755 uint16_t class_def_idx,
2756 const DexFile& dex_file) const {
2757 const VerifiedMethod* verified_method = GetVerifiedMethod(&dex_file, method_idx);
2758 if (verified_method != nullptr) {
2759 return !verified_method->HasVerificationFailures();
2760 }
2761
2762 // If we can't find verification metadata, check if this is a system class (we trust that system
2763 // classes have their methods verified). If it's not, be conservative and assume the method
2764 // has not been verified successfully.
2765
2766 // TODO: When compiling the boot image it should be safe to assume that everything is verified,
2767 // even if methods are not found in the verification cache.
2768 const char* descriptor = dex_file.GetClassDescriptor(dex_file.GetClassDef(class_def_idx));
2769 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
2770 Thread* self = Thread::Current();
2771 ScopedObjectAccess soa(self);
2772 bool is_system_class = class_linker->FindSystemClass(self, descriptor) != nullptr;
2773 if (!is_system_class) {
2774 self->ClearException();
2775 }
2776 return is_system_class;
2777}
2778
Andreas Gampe8d295f82015-01-20 14:50:21 -08002779std::string CompilerDriver::GetMemoryUsageString(bool extended) const {
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002780 std::ostringstream oss;
Calin Juravle69158982016-03-16 11:53:41 +00002781 const gc::Heap* const heap = Runtime::Current()->GetHeap();
Anton Kirilovdd9473b2016-01-28 15:08:01 +00002782 const size_t java_alloc = heap->GetBytesAllocated();
Calin Juravle69158982016-03-16 11:53:41 +00002783 oss << "arena alloc=" << PrettySize(max_arena_alloc_) << " (" << max_arena_alloc_ << "B)";
Anton Kirilovdd9473b2016-01-28 15:08:01 +00002784 oss << " java alloc=" << PrettySize(java_alloc) << " (" << java_alloc << "B)";
Elliott Hughes7bf5a262015-04-02 20:55:07 -07002785#if defined(__BIONIC__) || defined(__GLIBC__)
Anton Kirilovdd9473b2016-01-28 15:08:01 +00002786 const struct mallinfo info = mallinfo();
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002787 const size_t allocated_space = static_cast<size_t>(info.uordblks);
2788 const size_t free_space = static_cast<size_t>(info.fordblks);
Anton Kirilovdd9473b2016-01-28 15:08:01 +00002789 oss << " native alloc=" << PrettySize(allocated_space) << " (" << allocated_space << "B)"
2790 << " free=" << PrettySize(free_space) << " (" << free_space << "B)";
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002791#endif
Vladimir Marko35831e82015-09-11 11:59:18 +01002792 compiled_method_storage_.DumpMemoryUsage(oss, extended);
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002793 return oss.str();
2794}
2795
Andreas Gampeace0dc12016-01-20 13:33:13 -08002796void CompilerDriver::InitializeThreadPools() {
2797 size_t parallel_count = parallel_thread_count_ > 0 ? parallel_thread_count_ - 1 : 0;
2798 parallel_thread_pool_.reset(
2799 new ThreadPool("Compiler driver thread pool", parallel_count));
2800 single_thread_pool_.reset(new ThreadPool("Single-threaded Compiler driver thread pool", 0));
2801}
2802
2803void CompilerDriver::FreeThreadPools() {
2804 parallel_thread_pool_.reset();
2805 single_thread_pool_.reset();
2806}
2807
Nicolas Geoffray486dda02017-09-11 14:15:52 +01002808void CompilerDriver::SetClasspathDexFiles(const std::vector<const DexFile*>& dex_files) {
2809 classpath_classes_.AddDexFiles(dex_files);
Mathieu Chartier72041a02017-07-14 18:23:25 -07002810}
2811
Brian Carlstrom7940e442013-07-12 13:46:57 -07002812} // namespace art