blob: 408cde2c302130fb65b17f8d64ec7a9a19905a4f [file] [log] [blame]
Brian Carlstrom7940e442013-07-12 13:46:57 -07001/*
2 * Copyright (C) 2011 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include "compiler_driver.h"
18
Andreas Gampe8cf9cb32017-07-19 09:28:38 -070019#include <unistd.h>
Andreas Gampeb0f370e2014-09-25 22:51:40 -070020#include <unordered_set>
Anwar Ghuloum67f99412013-08-12 14:19:48 -070021#include <vector>
Brian Carlstrom7940e442013-07-12 13:46:57 -070022
Mathieu Chartierab972ef2014-12-03 17:38:22 -080023#ifndef __APPLE__
24#include <malloc.h> // For mallinfo
25#endif
26
Andreas Gampe5c803112018-04-13 17:28:34 -070027#include "android-base/logging.h"
Narayan Kamathe3eae5e2016-10-27 11:47:30 +010028#include "android-base/strings.h"
29
Mathieu Chartierc7853442015-03-27 14:35:38 -070030#include "art_field-inl.h"
Mathieu Chartiere401d142015-04-22 13:56:20 -070031#include "art_method-inl.h"
Andreas Gampef0446e92017-05-16 13:51:57 -070032#include "base/arena_allocator.h"
David Brazdild9c90372016-09-14 16:53:55 +010033#include "base/array_ref.h"
Vladimir Marko492a7fa2016-06-01 18:38:43 +010034#include "base/bit_vector.h"
Andreas Gampe542451c2016-07-26 09:02:02 -070035#include "base/enums.h"
Andreas Gampe170331f2017-12-07 18:41:03 -080036#include "base/logging.h" // For VLOG
Brian Carlstrom7940e442013-07-12 13:46:57 -070037#include "base/stl_util.h"
Mathieu Chartier32ce2ad2016-03-04 14:58:03 -080038#include "base/systrace.h"
Vladimir Marko80afd022015-05-19 18:08:00 +010039#include "base/time_utils.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070040#include "base/timing_logger.h"
Vladimir Marko3481ba22015-04-13 12:22:36 +010041#include "class_linker-inl.h"
Vladimir Markod8dbc8d2017-09-20 13:37:47 +010042#include "compiled_method-inl.h"
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +000043#include "compiler.h"
Nicolas Geoffray6bb7f1b2016-11-03 10:52:49 +000044#include "compiler_callbacks.h"
Vladimir Markobe0e5462014-02-26 11:24:15 +000045#include "compiler_driver-inl.h"
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -070046#include "dex/class_accessor-inl.h"
David Sehrb2ec9f52018-02-21 13:20:31 -080047#include "dex/descriptors_names.h"
David Sehr9e734c72018-01-04 17:56:19 -080048#include "dex/dex_file-inl.h"
49#include "dex/dex_file_annotations.h"
50#include "dex/dex_instruction-inl.h"
Andreas Gampe5eb0d382015-07-23 01:19:26 -070051#include "dex/dex_to_dex_compiler.h"
Vladimir Markoc7f83202014-01-24 17:55:18 +000052#include "dex/verification_results.h"
Vladimir Marko2730db02014-01-27 11:15:17 +000053#include "dex/verified_method.h"
Steven Morelande431e272017-07-18 16:53:49 -070054#include "dex_compilation_unit.h"
Mark Mendellae9fd932014-02-10 16:14:35 -080055#include "driver/compiler_options.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070056#include "gc/accounting/card_table-inl.h"
57#include "gc/accounting/heap_bitmap.h"
Mathieu Chartiere401d142015-04-22 13:56:20 -070058#include "gc/space/image_space.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070059#include "gc/space/space.h"
Steven Morelande431e272017-07-18 16:53:49 -070060#include "handle_scope-inl.h"
61#include "intrinsics_enum.h"
Vladimir Markoa3ad0cd2018-05-04 10:06:38 +010062#include "jni/jni_internal.h"
Vladimir Markod8dbc8d2017-09-20 13:37:47 +010063#include "linker/linker_patch.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070064#include "mirror/class-inl.h"
Steven Morelande431e272017-07-18 16:53:49 -070065#include "mirror/class_loader.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070066#include "mirror/dex_cache-inl.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070067#include "mirror/object-inl.h"
Andreas Gampec6ea7d02017-02-01 16:46:28 -080068#include "mirror/object-refvisitor-inl.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070069#include "mirror/object_array-inl.h"
70#include "mirror/throwable.h"
Steven Morelande431e272017-07-18 16:53:49 -070071#include "object_lock.h"
David Sehr82d046e2018-04-23 08:14:19 -070072#include "profile/profile_compilation_info.h"
Steven Morelande431e272017-07-18 16:53:49 -070073#include "runtime.h"
Orion Hodson26ef34c2017-11-01 13:32:41 +000074#include "runtime_intrinsics.h"
Mathieu Chartier0795f232016-09-27 18:43:30 -070075#include "scoped_thread_state_change-inl.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070076#include "thread.h"
Andreas Gampeb0f370e2014-09-25 22:51:40 -070077#include "thread_list.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070078#include "thread_pool.h"
Ian Rogers848871b2013-08-05 10:56:33 -070079#include "trampolines/trampoline_compiler.h"
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +010080#include "transaction.h"
Mathieu Chartier93764b82017-07-17 14:51:53 -070081#include "utils/atomic_dex_ref_map-inl.h"
Vladimir Marko20f85592015-03-19 10:07:02 +000082#include "utils/dex_cache_arrays_layout-inl.h"
Andreas Gampee21dc3d2014-12-08 16:59:43 -080083#include "utils/swap_space.h"
Nicolas Geoffrayb0bbe8e2016-11-19 10:42:37 +000084#include "vdex_file.h"
Vladimir Marko2bc47802014-02-10 09:43:07 +000085#include "verifier/method_verifier-inl.h"
Steven Morelande431e272017-07-18 16:53:49 -070086#include "verifier/method_verifier.h"
Nicolas Geoffray08025182016-10-25 17:20:18 +010087#include "verifier/verifier_deps.h"
Andreas Gampe6d7abbd2017-04-24 13:19:09 -070088#include "verifier/verifier_enums.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070089
Brian Carlstrom7940e442013-07-12 13:46:57 -070090namespace art {
91
Mathieu Chartier8e219ae2014-08-19 14:29:46 -070092static constexpr bool kTimeCompileMethod = !kIsDebugBuild;
93
Calin Juravle226501b2015-12-11 14:41:31 +000094// Print additional info during profile guided compilation.
95static constexpr bool kDebugProfileGuidedCompilation = false;
96
Chang Xing70f689d2017-06-08 17:16:12 -070097// Max encoded fields allowed for initializing app image. Hardcode the number for now
98// because 5000 should be large enough.
99static constexpr uint32_t kMaxEncodedFields = 5000;
100
Brian Carlstrom7940e442013-07-12 13:46:57 -0700101static double Percentage(size_t x, size_t y) {
102 return 100.0 * (static_cast<double>(x)) / (static_cast<double>(x + y));
103}
104
105static void DumpStat(size_t x, size_t y, const char* str) {
106 if (x == 0 && y == 0) {
107 return;
108 }
Ian Rogerse732ef12013-10-09 15:22:24 -0700109 LOG(INFO) << Percentage(x, y) << "% of " << str << " for " << (x + y) << " cases";
Brian Carlstrom7940e442013-07-12 13:46:57 -0700110}
111
Vladimir Markof096aad2014-01-23 15:51:58 +0000112class CompilerDriver::AOTCompilationStats {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700113 public:
114 AOTCompilationStats()
115 : stats_lock_("AOT compilation statistics lock"),
Brian Carlstrom7940e442013-07-12 13:46:57 -0700116 resolved_instance_fields_(0), unresolved_instance_fields_(0),
117 resolved_local_static_fields_(0), resolved_static_fields_(0), unresolved_static_fields_(0),
118 type_based_devirtualization_(0),
119 safe_casts_(0), not_safe_casts_(0) {
120 for (size_t i = 0; i <= kMaxInvokeType; i++) {
121 resolved_methods_[i] = 0;
122 unresolved_methods_[i] = 0;
123 virtual_made_direct_[i] = 0;
124 direct_calls_to_boot_[i] = 0;
125 direct_methods_to_boot_[i] = 0;
126 }
127 }
128
129 void Dump() {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700130 DumpStat(resolved_instance_fields_, unresolved_instance_fields_, "instance fields resolved");
131 DumpStat(resolved_local_static_fields_ + resolved_static_fields_, unresolved_static_fields_,
132 "static fields resolved");
133 DumpStat(resolved_local_static_fields_, resolved_static_fields_ + unresolved_static_fields_,
134 "static fields local to a class");
135 DumpStat(safe_casts_, not_safe_casts_, "check-casts removed based on type information");
136 // Note, the code below subtracts the stat value so that when added to the stat value we have
137 // 100% of samples. TODO: clean this up.
138 DumpStat(type_based_devirtualization_,
139 resolved_methods_[kVirtual] + unresolved_methods_[kVirtual] +
140 resolved_methods_[kInterface] + unresolved_methods_[kInterface] -
141 type_based_devirtualization_,
142 "virtual/interface calls made direct based on type information");
143
144 for (size_t i = 0; i <= kMaxInvokeType; i++) {
145 std::ostringstream oss;
146 oss << static_cast<InvokeType>(i) << " methods were AOT resolved";
147 DumpStat(resolved_methods_[i], unresolved_methods_[i], oss.str().c_str());
148 if (virtual_made_direct_[i] > 0) {
149 std::ostringstream oss2;
150 oss2 << static_cast<InvokeType>(i) << " methods made direct";
151 DumpStat(virtual_made_direct_[i],
152 resolved_methods_[i] + unresolved_methods_[i] - virtual_made_direct_[i],
153 oss2.str().c_str());
154 }
155 if (direct_calls_to_boot_[i] > 0) {
156 std::ostringstream oss2;
157 oss2 << static_cast<InvokeType>(i) << " method calls are direct into boot";
158 DumpStat(direct_calls_to_boot_[i],
159 resolved_methods_[i] + unresolved_methods_[i] - direct_calls_to_boot_[i],
160 oss2.str().c_str());
161 }
162 if (direct_methods_to_boot_[i] > 0) {
163 std::ostringstream oss2;
164 oss2 << static_cast<InvokeType>(i) << " method calls have methods in boot";
165 DumpStat(direct_methods_to_boot_[i],
166 resolved_methods_[i] + unresolved_methods_[i] - direct_methods_to_boot_[i],
167 oss2.str().c_str());
168 }
169 }
170 }
171
172// Allow lossy statistics in non-debug builds.
173#ifndef NDEBUG
174#define STATS_LOCK() MutexLock mu(Thread::Current(), stats_lock_)
175#else
176#define STATS_LOCK()
177#endif
178
Mathieu Chartier90443472015-07-16 20:32:27 -0700179 void ResolvedInstanceField() REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700180 STATS_LOCK();
181 resolved_instance_fields_++;
182 }
183
Mathieu Chartier90443472015-07-16 20:32:27 -0700184 void UnresolvedInstanceField() REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700185 STATS_LOCK();
186 unresolved_instance_fields_++;
187 }
188
Mathieu Chartier90443472015-07-16 20:32:27 -0700189 void ResolvedLocalStaticField() REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700190 STATS_LOCK();
191 resolved_local_static_fields_++;
192 }
193
Mathieu Chartier90443472015-07-16 20:32:27 -0700194 void ResolvedStaticField() REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700195 STATS_LOCK();
196 resolved_static_fields_++;
197 }
198
Mathieu Chartier90443472015-07-16 20:32:27 -0700199 void UnresolvedStaticField() REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700200 STATS_LOCK();
201 unresolved_static_fields_++;
202 }
203
204 // Indicate that type information from the verifier led to devirtualization.
Mathieu Chartier90443472015-07-16 20:32:27 -0700205 void PreciseTypeDevirtualization() REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700206 STATS_LOCK();
207 type_based_devirtualization_++;
208 }
209
Brian Carlstrom7940e442013-07-12 13:46:57 -0700210 // A check-cast could be eliminated due to verifier type analysis.
Mathieu Chartier90443472015-07-16 20:32:27 -0700211 void SafeCast() REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700212 STATS_LOCK();
213 safe_casts_++;
214 }
215
216 // A check-cast couldn't be eliminated due to verifier type analysis.
Mathieu Chartier90443472015-07-16 20:32:27 -0700217 void NotASafeCast() REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700218 STATS_LOCK();
219 not_safe_casts_++;
220 }
221
222 private:
223 Mutex stats_lock_;
224
Brian Carlstrom7940e442013-07-12 13:46:57 -0700225 size_t resolved_instance_fields_;
226 size_t unresolved_instance_fields_;
227
228 size_t resolved_local_static_fields_;
229 size_t resolved_static_fields_;
230 size_t unresolved_static_fields_;
231 // Type based devirtualization for invoke interface and virtual.
232 size_t type_based_devirtualization_;
233
234 size_t resolved_methods_[kMaxInvokeType + 1];
235 size_t unresolved_methods_[kMaxInvokeType + 1];
236 size_t virtual_made_direct_[kMaxInvokeType + 1];
237 size_t direct_calls_to_boot_[kMaxInvokeType + 1];
238 size_t direct_methods_to_boot_[kMaxInvokeType + 1];
239
240 size_t safe_casts_;
241 size_t not_safe_casts_;
242
243 DISALLOW_COPY_AND_ASSIGN(AOTCompilationStats);
244};
245
Jeff Haodcdc85b2015-12-04 14:06:18 -0800246CompilerDriver::CompilerDriver(
247 const CompilerOptions* compiler_options,
248 VerificationResults* verification_results,
Jeff Haodcdc85b2015-12-04 14:06:18 -0800249 Compiler::Kind compiler_kind,
Vladimir Markodc4bcce2018-06-21 16:15:42 +0100250 HashSet<std::string>* image_classes,
Vladimir Marko944da602016-02-19 12:27:55 +0000251 size_t thread_count,
Vladimir Marko944da602016-02-19 12:27:55 +0000252 int swap_fd,
Calin Juravle998c2162015-12-21 15:39:33 +0200253 const ProfileCompilationInfo* profile_compilation_info)
Calin Juravle226501b2015-12-11 14:41:31 +0000254 : compiler_options_(compiler_options),
Brian Carlstrom6449c622014-02-10 23:48:36 -0800255 verification_results_(verification_results),
Ian Rogers72d32622014-05-06 16:20:11 -0700256 compiler_(Compiler::Create(this, compiler_kind)),
Jeff Hao48699fb2015-04-06 14:21:37 -0700257 compiler_kind_(compiler_kind),
Mathieu Chartierc4ae9162016-04-07 13:19:19 -0700258 requires_constructor_barrier_lock_("constructor barrier lock"),
Vladimir Marko54159c62018-06-20 14:30:08 +0100259 image_classes_(std::move(image_classes)),
Andreas Gampef39208f2017-10-19 15:06:59 -0700260 number_of_soft_verifier_failures_(0),
Andreas Gampe6cf49e52015-03-05 13:08:45 -0800261 had_hard_verifier_failure_(false),
Andreas Gampeace0dc12016-01-20 13:33:13 -0800262 parallel_thread_count_(thread_count),
Brian Carlstrom7940e442013-07-12 13:46:57 -0700263 stats_(new AOTCompilationStats),
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700264 compiler_context_(nullptr),
Calin Juravle998c2162015-12-21 15:39:33 +0200265 compiled_method_storage_(swap_fd),
Calin Juravle69158982016-03-16 11:53:41 +0000266 profile_compilation_info_(profile_compilation_info),
Vladimir Marko492a7fa2016-06-01 18:38:43 +0100267 max_arena_alloc_(0),
Mathieu Chartiera79efdb2018-01-18 16:31:01 -0800268 dex_to_dex_compiler_(this) {
Brian Carlstrom6449c622014-02-10 23:48:36 -0800269 DCHECK(compiler_options_ != nullptr);
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700270
Ian Rogers72d32622014-05-06 16:20:11 -0700271 compiler_->Init();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700272
Vladimir Markoaad75c62016-10-03 08:46:48 +0000273 if (GetCompilerOptions().IsBootImage()) {
Vladimir Markodc4bcce2018-06-21 16:15:42 +0100274 CHECK(image_classes_ != nullptr) << "Expected image classes for boot image";
Mathieu Chartierc5dd3192015-12-09 16:38:30 -0800275 }
Andreas Gampecac31ad2017-11-06 20:01:17 -0800276
277 compiled_method_storage_.SetDedupeEnabled(compiler_options_->DeduplicateCode());
Brian Carlstrom7940e442013-07-12 13:46:57 -0700278}
279
280CompilerDriver::~CompilerDriver() {
Mathieu Chartier93764b82017-07-17 14:51:53 -0700281 compiled_methods_.Visit([this](const DexFileReference& ref ATTRIBUTE_UNUSED,
Mathieu Chartieracab8d42016-11-23 13:45:58 -0800282 CompiledMethod* method) {
283 if (method != nullptr) {
284 CompiledMethod::ReleaseSwapAllocatedCompiledMethod(this, method);
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800285 }
Mathieu Chartieracab8d42016-11-23 13:45:58 -0800286 });
Ian Rogers72d32622014-05-06 16:20:11 -0700287 compiler_->UnInit();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700288}
289
Vladimir Marko35831e82015-09-11 11:59:18 +0100290
Vladimir Markoa0431112018-06-25 09:32:54 +0100291#define CREATE_TRAMPOLINE(type, abi, offset) \
292 if (Is64BitInstructionSet(GetCompilerOptions().GetInstructionSet())) { \
293 return CreateTrampoline64(GetCompilerOptions().GetInstructionSet(), \
294 abi, \
295 type ## _ENTRYPOINT_OFFSET(PointerSize::k64, offset)); \
296 } else { \
297 return CreateTrampoline32(GetCompilerOptions().GetInstructionSet(), \
298 abi, \
299 type ## _ENTRYPOINT_OFFSET(PointerSize::k32, offset)); \
Ian Rogersdd7624d2014-03-14 17:43:00 -0700300 }
301
Vladimir Marko93205e32016-04-13 11:59:46 +0100302std::unique_ptr<const std::vector<uint8_t>> CompilerDriver::CreateJniDlsymLookup() const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700303 CREATE_TRAMPOLINE(JNI, kJniAbi, pDlsymLookup)
Ian Rogers848871b2013-08-05 10:56:33 -0700304}
305
Vladimir Marko93205e32016-04-13 11:59:46 +0100306std::unique_ptr<const std::vector<uint8_t>> CompilerDriver::CreateQuickGenericJniTrampoline()
307 const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700308 CREATE_TRAMPOLINE(QUICK, kQuickAbi, pQuickGenericJniTrampoline)
Andreas Gampe2da88232014-02-27 12:26:20 -0800309}
310
Vladimir Marko93205e32016-04-13 11:59:46 +0100311std::unique_ptr<const std::vector<uint8_t>> CompilerDriver::CreateQuickImtConflictTrampoline()
312 const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700313 CREATE_TRAMPOLINE(QUICK, kQuickAbi, pQuickImtConflictTrampoline)
Jeff Hao88474b42013-10-23 16:24:40 -0700314}
315
Vladimir Marko93205e32016-04-13 11:59:46 +0100316std::unique_ptr<const std::vector<uint8_t>> CompilerDriver::CreateQuickResolutionTrampoline()
317 const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700318 CREATE_TRAMPOLINE(QUICK, kQuickAbi, pQuickResolutionTrampoline)
Brian Carlstrom7940e442013-07-12 13:46:57 -0700319}
320
Vladimir Marko93205e32016-04-13 11:59:46 +0100321std::unique_ptr<const std::vector<uint8_t>> CompilerDriver::CreateQuickToInterpreterBridge()
322 const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700323 CREATE_TRAMPOLINE(QUICK, kQuickAbi, pQuickToInterpreterBridge)
Brian Carlstrom7940e442013-07-12 13:46:57 -0700324}
Ian Rogersdd7624d2014-03-14 17:43:00 -0700325#undef CREATE_TRAMPOLINE
Brian Carlstrom7940e442013-07-12 13:46:57 -0700326
327void CompilerDriver::CompileAll(jobject class_loader,
Brian Carlstrom45602482013-07-21 22:07:55 -0700328 const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -0800329 TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700330 DCHECK(!Runtime::Current()->IsStarted());
Andreas Gampeace0dc12016-01-20 13:33:13 -0800331
332 InitializeThreadPools();
333
Nicolas Geoffrayb0bbe8e2016-11-19 10:42:37 +0000334 PreCompile(class_loader, dex_files, timings);
Vladimir Markoaad75c62016-10-03 08:46:48 +0000335 if (GetCompilerOptions().IsBootImage()) {
Nicolas Geoffray762869d2016-07-15 15:28:35 +0100336 // We don't need to setup the intrinsics for non boot image compilation, as
337 // those compilations will pick up a boot image that have the ArtMethod already
338 // set with the intrinsics flag.
Orion Hodson26ef34c2017-11-01 13:32:41 +0000339 InitializeIntrinsics();
Nicolas Geoffray762869d2016-07-15 15:28:35 +0100340 }
Andreas Gampe740667a2015-09-15 17:55:06 -0700341 // Compile:
342 // 1) Compile all classes and methods enabled for compilation. May fall back to dex-to-dex
343 // compilation.
Nicolas Geoffray49cda062017-04-21 13:08:25 +0100344 if (GetCompilerOptions().IsAnyCompilationEnabled()) {
Andreas Gampeace0dc12016-01-20 13:33:13 -0800345 Compile(class_loader, dex_files, timings);
Andreas Gampe740667a2015-09-15 17:55:06 -0700346 }
Nicolas Geoffray2d8801f2017-11-28 15:50:07 +0000347 if (GetCompilerOptions().GetDumpStats()) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700348 stats_->Dump();
349 }
Andreas Gampeace0dc12016-01-20 13:33:13 -0800350
351 FreeThreadPools();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700352}
353
Mathieu Chartiera79efdb2018-01-18 16:31:01 -0800354static optimizer::DexToDexCompiler::CompilationLevel GetDexToDexCompilationLevel(
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700355 Thread* self, const CompilerDriver& driver, Handle<mirror::ClassLoader> class_loader,
356 const DexFile& dex_file, const DexFile::ClassDef& class_def)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700357 REQUIRES_SHARED(Locks::mutator_lock_) {
Nicolas Geoffrayf3075272018-01-08 12:41:19 +0000358 // When the dex file is uncompressed in the APK, we do not generate a copy in the .vdex
359 // file. As a result, dex2oat will map the dex file read-only, and we only need to check
360 // that to know if we can do quickening.
361 if (dex_file.GetContainer() != nullptr && dex_file.GetContainer()->IsReadOnly()) {
362 return optimizer::DexToDexCompiler::CompilationLevel::kDontDexToDexCompile;
363 }
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800364 auto* const runtime = Runtime::Current();
Nicolas Geoffray49cda062017-04-21 13:08:25 +0100365 DCHECK(driver.GetCompilerOptions().IsQuickeningCompilationEnabled());
Brian Carlstrom7940e442013-07-12 13:46:57 -0700366 const char* descriptor = dex_file.GetClassDescriptor(class_def);
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800367 ClassLinker* class_linker = runtime->GetClassLinker();
Vladimir Markoa8bba7d2018-05-30 15:18:48 +0100368 ObjPtr<mirror::Class> klass = class_linker->FindClass(self, descriptor, class_loader);
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700369 if (klass == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700370 CHECK(self->IsExceptionPending());
371 self->ClearException();
Mathieu Chartiera79efdb2018-01-18 16:31:01 -0800372 return optimizer::DexToDexCompiler::CompilationLevel::kDontDexToDexCompile;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700373 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700374 // DexToDex at the kOptimize level may introduce quickened opcodes, which replace symbolic
375 // references with actual offsets. We cannot re-verify such instructions.
376 //
377 // We store the verification information in the class status in the oat file, which the linker
378 // can validate (checksums) and use to skip load-time verification. It is thus safe to
379 // optimize when a class has been fully verified before.
Mathieu Chartiera79efdb2018-01-18 16:31:01 -0800380 optimizer::DexToDexCompiler::CompilationLevel max_level =
381 optimizer::DexToDexCompiler::CompilationLevel::kOptimize;
Alex Lighte40dd382017-01-25 17:44:53 -0800382 if (driver.GetCompilerOptions().GetDebuggable()) {
383 // We are debuggable so definitions of classes might be changed. We don't want to do any
384 // optimizations that could break that.
Mathieu Chartiera79efdb2018-01-18 16:31:01 -0800385 max_level = optimizer::DexToDexCompiler::CompilationLevel::kDontDexToDexCompile;
Alex Lighte40dd382017-01-25 17:44:53 -0800386 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700387 if (klass->IsVerified()) {
Sebastien Hertz75021222013-07-16 18:34:50 +0200388 // Class is verified so we can enable DEX-to-DEX compilation for performance.
Alex Lighte40dd382017-01-25 17:44:53 -0800389 return max_level;
Sebastien Hertz75021222013-07-16 18:34:50 +0200390 } else {
Andreas Gampe1a4bc7f2017-03-27 14:57:30 -0700391 // Class verification has failed: do not run DEX-to-DEX optimizations.
Mathieu Chartiera79efdb2018-01-18 16:31:01 -0800392 return optimizer::DexToDexCompiler::CompilationLevel::kDontDexToDexCompile;
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700393 }
394}
395
Mathieu Chartiera79efdb2018-01-18 16:31:01 -0800396static optimizer::DexToDexCompiler::CompilationLevel GetDexToDexCompilationLevel(
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700397 Thread* self,
398 const CompilerDriver& driver,
399 jobject jclass_loader,
400 const DexFile& dex_file,
401 const DexFile::ClassDef& class_def) {
402 ScopedObjectAccess soa(self);
403 StackHandleScope<1> hs(soa.Self());
404 Handle<mirror::ClassLoader> class_loader(
Mathieu Chartier0795f232016-09-27 18:43:30 -0700405 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader)));
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700406 return GetDexToDexCompilationLevel(self, driver, class_loader, dex_file, class_def);
407}
408
409// Does the runtime for the InstructionSet provide an implementation returned by
410// GetQuickGenericJniStub allowing down calls that aren't compiled using a JNI compiler?
411static bool InstructionSetHasGenericJniStub(InstructionSet isa) {
412 switch (isa) {
Vladimir Marko33bff252017-11-01 14:35:42 +0000413 case InstructionSet::kArm:
414 case InstructionSet::kArm64:
415 case InstructionSet::kThumb2:
416 case InstructionSet::kMips:
417 case InstructionSet::kMips64:
418 case InstructionSet::kX86:
419 case InstructionSet::kX86_64: return true;
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700420 default: return false;
421 }
422}
423
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800424template <typename CompileFn>
425static void CompileMethodHarness(
426 Thread* self,
427 CompilerDriver* driver,
428 const DexFile::CodeItem* code_item,
429 uint32_t access_flags,
430 InvokeType invoke_type,
431 uint16_t class_def_idx,
432 uint32_t method_idx,
433 Handle<mirror::ClassLoader> class_loader,
434 const DexFile& dex_file,
435 optimizer::DexToDexCompiler::CompilationLevel dex_to_dex_compilation_level,
436 bool compilation_enabled,
437 Handle<mirror::DexCache> dex_cache,
438 CompileFn compile_fn) {
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700439 DCHECK(driver != nullptr);
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800440 CompiledMethod* compiled_method;
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700441 uint64_t start_ns = kTimeCompileMethod ? NanoTime() : 0;
442 MethodReference method_ref(&dex_file, method_idx);
443
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800444 compiled_method = compile_fn(self,
445 driver,
446 code_item,
447 access_flags,
448 invoke_type,
449 class_def_idx,
450 method_idx,
451 class_loader,
452 dex_file,
453 dex_to_dex_compilation_level,
454 compilation_enabled,
455 dex_cache);
Igor Murashkin9d4b6da2016-07-29 09:51:58 -0700456
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700457 if (kTimeCompileMethod) {
458 uint64_t duration_ns = NanoTime() - start_ns;
459 if (duration_ns > MsToNs(driver->GetCompiler()->GetMaximumCompilationTimeBeforeWarning())) {
David Sehr709b0702016-10-13 09:12:37 -0700460 LOG(WARNING) << "Compilation of " << dex_file.PrettyMethod(method_idx)
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700461 << " took " << PrettyDuration(duration_ns);
462 }
463 }
464
465 if (compiled_method != nullptr) {
Vladimir Marko8e524ad2018-07-13 10:27:43 +0100466 driver->AddCompiledMethod(method_ref, compiled_method);
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700467 }
468
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700469 if (self->IsExceptionPending()) {
470 ScopedObjectAccess soa(self);
David Sehr709b0702016-10-13 09:12:37 -0700471 LOG(FATAL) << "Unexpected exception compiling: " << dex_file.PrettyMethod(method_idx) << "\n"
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700472 << self->GetException()->Dump();
Sebastien Hertz75021222013-07-16 18:34:50 +0200473 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700474}
475
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800476static void CompileMethodDex2Dex(
477 Thread* self,
478 CompilerDriver* driver,
479 const DexFile::CodeItem* code_item,
480 uint32_t access_flags,
481 InvokeType invoke_type,
482 uint16_t class_def_idx,
483 uint32_t method_idx,
484 Handle<mirror::ClassLoader> class_loader,
485 const DexFile& dex_file,
486 optimizer::DexToDexCompiler::CompilationLevel dex_to_dex_compilation_level,
487 bool compilation_enabled,
488 Handle<mirror::DexCache> dex_cache) {
489 auto dex_2_dex_fn = [](Thread* self ATTRIBUTE_UNUSED,
490 CompilerDriver* driver,
491 const DexFile::CodeItem* code_item,
492 uint32_t access_flags,
493 InvokeType invoke_type,
494 uint16_t class_def_idx,
495 uint32_t method_idx,
496 Handle<mirror::ClassLoader> class_loader,
497 const DexFile& dex_file,
498 optimizer::DexToDexCompiler::CompilationLevel dex_to_dex_compilation_level,
499 bool compilation_enabled ATTRIBUTE_UNUSED,
500 Handle<mirror::DexCache> dex_cache ATTRIBUTE_UNUSED) -> CompiledMethod* {
501 DCHECK(driver != nullptr);
502 MethodReference method_ref(&dex_file, method_idx);
503
504 optimizer::DexToDexCompiler* const compiler = &driver->GetDexToDexCompiler();
505
506 if (compiler->ShouldCompileMethod(method_ref)) {
507 VerificationResults* results = driver->GetVerificationResults();
508 DCHECK(results != nullptr);
509 const VerifiedMethod* verified_method = results->GetVerifiedMethod(method_ref);
510 // Do not optimize if a VerifiedMethod is missing. SafeCast elision,
511 // for example, relies on it.
512 return compiler->CompileMethod(
513 code_item,
514 access_flags,
515 invoke_type,
516 class_def_idx,
517 method_idx,
518 class_loader,
519 dex_file,
520 (verified_method != nullptr)
521 ? dex_to_dex_compilation_level
522 : optimizer::DexToDexCompiler::CompilationLevel::kDontDexToDexCompile);
523 }
524 return nullptr;
525 };
526 CompileMethodHarness(self,
527 driver,
528 code_item,
529 access_flags,
530 invoke_type,
531 class_def_idx,
532 method_idx,
533 class_loader,
534 dex_file,
535 dex_to_dex_compilation_level,
536 compilation_enabled,
537 dex_cache,
538 dex_2_dex_fn);
539}
540
541static void CompileMethodQuick(
542 Thread* self,
543 CompilerDriver* driver,
544 const DexFile::CodeItem* code_item,
545 uint32_t access_flags,
546 InvokeType invoke_type,
547 uint16_t class_def_idx,
548 uint32_t method_idx,
549 Handle<mirror::ClassLoader> class_loader,
550 const DexFile& dex_file,
551 optimizer::DexToDexCompiler::CompilationLevel dex_to_dex_compilation_level,
552 bool compilation_enabled,
553 Handle<mirror::DexCache> dex_cache) {
554 auto quick_fn = [](
555 Thread* self,
556 CompilerDriver* driver,
557 const DexFile::CodeItem* code_item,
558 uint32_t access_flags,
559 InvokeType invoke_type,
560 uint16_t class_def_idx,
561 uint32_t method_idx,
562 Handle<mirror::ClassLoader> class_loader,
563 const DexFile& dex_file,
564 optimizer::DexToDexCompiler::CompilationLevel dex_to_dex_compilation_level,
565 bool compilation_enabled,
566 Handle<mirror::DexCache> dex_cache) {
567 DCHECK(driver != nullptr);
568 CompiledMethod* compiled_method = nullptr;
569 MethodReference method_ref(&dex_file, method_idx);
570
571 if ((access_flags & kAccNative) != 0) {
572 // Are we extracting only and have support for generic JNI down calls?
573 if (!driver->GetCompilerOptions().IsJniCompilationEnabled() &&
Vladimir Markoa0431112018-06-25 09:32:54 +0100574 InstructionSetHasGenericJniStub(driver->GetCompilerOptions().GetInstructionSet())) {
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800575 // Leaving this empty will trigger the generic JNI version
576 } else {
577 // Query any JNI optimization annotations such as @FastNative or @CriticalNative.
578 access_flags |= annotations::GetNativeMethodAnnotationAccessFlags(
579 dex_file, dex_file.GetClassDef(class_def_idx), method_idx);
580
581 compiled_method = driver->GetCompiler()->JniCompile(
582 access_flags, method_idx, dex_file, dex_cache);
583 CHECK(compiled_method != nullptr);
584 }
585 } else if ((access_flags & kAccAbstract) != 0) {
586 // Abstract methods don't have code.
587 } else {
588 VerificationResults* results = driver->GetVerificationResults();
589 DCHECK(results != nullptr);
590 const VerifiedMethod* verified_method = results->GetVerifiedMethod(method_ref);
591 bool compile = compilation_enabled &&
592 // Basic checks, e.g., not <clinit>.
593 results->IsCandidateForCompilation(method_ref, access_flags) &&
594 // Did not fail to create VerifiedMethod metadata.
595 verified_method != nullptr &&
596 // Do not have failures that should punt to the interpreter.
597 !verified_method->HasRuntimeThrow() &&
598 (verified_method->GetEncounteredVerificationFailures() &
599 (verifier::VERIFY_ERROR_FORCE_INTERPRETER | verifier::VERIFY_ERROR_LOCKING)) == 0 &&
600 // Is eligable for compilation by methods-to-compile filter.
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800601 driver->ShouldCompileBasedOnProfile(method_ref);
602
603 if (compile) {
604 // NOTE: if compiler declines to compile this method, it will return null.
605 compiled_method = driver->GetCompiler()->Compile(code_item,
606 access_flags,
607 invoke_type,
608 class_def_idx,
609 method_idx,
610 class_loader,
611 dex_file,
612 dex_cache);
Andreas Gampe5c803112018-04-13 17:28:34 -0700613 ProfileMethodsCheck check_type =
614 driver->GetCompilerOptions().CheckProfiledMethodsCompiled();
615 if (UNLIKELY(check_type != ProfileMethodsCheck::kNone)) {
616 bool violation = driver->ShouldCompileBasedOnProfile(method_ref) &&
617 (compiled_method == nullptr);
618 if (violation) {
619 std::ostringstream oss;
620 oss << "Failed to compile "
621 << method_ref.dex_file->PrettyMethod(method_ref.index)
622 << "[" << method_ref.dex_file->GetLocation() << "]"
623 << " as expected by profile";
624 switch (check_type) {
625 case ProfileMethodsCheck::kNone:
626 break;
627 case ProfileMethodsCheck::kLog:
628 LOG(ERROR) << oss.str();
629 break;
630 case ProfileMethodsCheck::kAbort:
631 LOG(FATAL_WITHOUT_ABORT) << oss.str();
632 _exit(1);
633 }
634 }
635 }
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800636 }
637 if (compiled_method == nullptr &&
638 dex_to_dex_compilation_level !=
639 optimizer::DexToDexCompiler::CompilationLevel::kDontDexToDexCompile) {
640 DCHECK(!Runtime::Current()->UseJitCompilation());
641 // TODO: add a command-line option to disable DEX-to-DEX compilation ?
Mathieu Chartier279e3a32018-01-24 18:17:55 -0800642 driver->GetDexToDexCompiler().MarkForCompilation(self, method_ref);
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800643 }
644 }
645 return compiled_method;
646 };
647 CompileMethodHarness(self,
648 driver,
649 code_item,
650 access_flags,
651 invoke_type,
652 class_def_idx,
653 method_idx,
654 class_loader,
655 dex_file,
656 dex_to_dex_compilation_level,
657 compilation_enabled,
658 dex_cache,
659 quick_fn);
660}
661
Vladimir Markodc4bcce2018-06-21 16:15:42 +0100662// Compile a single Method. (For testing only.)
663void CompilerDriver::CompileOne(Thread* self,
664 jobject class_loader,
665 const DexFile& dex_file,
666 uint16_t class_def_idx,
667 uint32_t method_idx,
668 uint32_t access_flags,
669 InvokeType invoke_type,
670 const DexFile::CodeItem* code_item,
671 Handle<mirror::DexCache> dex_cache,
672 Handle<mirror::ClassLoader> h_class_loader) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700673 // Can we run DEX-to-DEX compiler on this class ?
Mathieu Chartiera79efdb2018-01-18 16:31:01 -0800674 optimizer::DexToDexCompiler::CompilationLevel dex_to_dex_compilation_level =
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700675 GetDexToDexCompilationLevel(self,
676 *this,
Vladimir Markodc4bcce2018-06-21 16:15:42 +0100677 class_loader,
678 dex_file,
679 dex_file.GetClassDef(class_def_idx));
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700680
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800681 CompileMethodQuick(self,
682 this,
683 code_item,
684 access_flags,
685 invoke_type,
686 class_def_idx,
687 method_idx,
Vladimir Markodc4bcce2018-06-21 16:15:42 +0100688 h_class_loader,
689 dex_file,
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800690 dex_to_dex_compilation_level,
691 true,
692 dex_cache);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700693
Mathieu Chartier279e3a32018-01-24 18:17:55 -0800694 const size_t num_methods = dex_to_dex_compiler_.NumCodeItemsToQuicken(self);
Mathieu Chartiera79efdb2018-01-18 16:31:01 -0800695 if (num_methods != 0) {
696 DCHECK_EQ(num_methods, 1u);
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800697 CompileMethodDex2Dex(self,
698 this,
699 code_item,
700 access_flags,
701 invoke_type,
702 class_def_idx,
703 method_idx,
Vladimir Markodc4bcce2018-06-21 16:15:42 +0100704 h_class_loader,
705 dex_file,
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800706 dex_to_dex_compilation_level,
707 true,
708 dex_cache);
Mathieu Chartiera79efdb2018-01-18 16:31:01 -0800709 dex_to_dex_compiler_.ClearState();
Vladimir Marko492a7fa2016-06-01 18:38:43 +0100710 }
Mathieu Chartier2535abe2015-02-17 10:38:49 -0800711}
712
Andreas Gampeace0dc12016-01-20 13:33:13 -0800713void CompilerDriver::Resolve(jobject class_loader,
714 const std::vector<const DexFile*>& dex_files,
715 TimingLogger* timings) {
716 // Resolution allocates classes and needs to run single-threaded to be deterministic.
717 bool force_determinism = GetCompilerOptions().IsForceDeterminism();
718 ThreadPool* resolve_thread_pool = force_determinism
719 ? single_thread_pool_.get()
720 : parallel_thread_pool_.get();
721 size_t resolve_thread_count = force_determinism ? 1U : parallel_thread_count_;
722
Brian Carlstrom7940e442013-07-12 13:46:57 -0700723 for (size_t i = 0; i != dex_files.size(); ++i) {
724 const DexFile* dex_file = dex_files[i];
Kenny Rootd5185342014-05-13 14:47:05 -0700725 CHECK(dex_file != nullptr);
Andreas Gampeace0dc12016-01-20 13:33:13 -0800726 ResolveDexFile(class_loader,
727 *dex_file,
728 dex_files,
729 resolve_thread_pool,
730 resolve_thread_count,
731 timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700732 }
733}
734
Mathieu Chartiercd0f38f2018-10-15 09:44:35 -0700735void CompilerDriver::ResolveConstStrings(const std::vector<const DexFile*>& dex_files,
736 bool only_startup_strings,
737 TimingLogger* timings) {
Nicolas Geoffray571d2342016-10-12 13:03:15 +0000738 ScopedObjectAccess soa(Thread::Current());
739 StackHandleScope<1> hs(soa.Self());
740 ClassLinker* const class_linker = Runtime::Current()->GetClassLinker();
741 MutableHandle<mirror::DexCache> dex_cache(hs.NewHandle<mirror::DexCache>(nullptr));
742
Andreas Gampeace0dc12016-01-20 13:33:13 -0800743 for (const DexFile* dex_file : dex_files) {
Vladimir Markocd556b02017-02-03 11:47:34 +0000744 dex_cache.Assign(class_linker->FindDexCache(soa.Self(), *dex_file));
Andreas Gampeace0dc12016-01-20 13:33:13 -0800745 TimingLogger::ScopedTiming t("Resolve const-string Strings", timings);
746
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -0700747 for (ClassAccessor accessor : dex_file->GetClasses()) {
Mathieu Chartiercd0f38f2018-10-15 09:44:35 -0700748 if (!IsClassToCompile(accessor.GetDescriptor())) {
Andreas Gampeace0dc12016-01-20 13:33:13 -0800749 // Compilation is skipped, do not resolve const-string in code of this class.
Vladimir Marko175e7862018-03-27 09:03:13 +0000750 // FIXME: Make sure that inlining honors this. b/26687569
Andreas Gampeace0dc12016-01-20 13:33:13 -0800751 continue;
752 }
Mathieu Chartier0d896bd2018-05-25 00:20:27 -0700753 for (const ClassAccessor::Method& method : accessor.GetMethods()) {
Mathieu Chartiercd0f38f2018-10-15 09:44:35 -0700754 if (only_startup_strings &&
755 profile_compilation_info_ != nullptr &&
756 !profile_compilation_info_->GetMethodHotness(method.GetReference()).IsStartup()) {
757 continue;
758 }
759
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -0700760 // Resolve const-strings in the code. Done to have deterministic allocation behavior. Right
761 // now this is single-threaded for simplicity.
762 // TODO: Collect the relevant string indices in parallel, then allocate them sequentially
763 // in a stable order.
764 for (const DexInstructionPcPair& inst : method.GetInstructions()) {
765 switch (inst->Opcode()) {
766 case Instruction::CONST_STRING:
767 case Instruction::CONST_STRING_JUMBO: {
768 dex::StringIndex string_index((inst->Opcode() == Instruction::CONST_STRING)
769 ? inst->VRegB_21c()
770 : inst->VRegB_31c());
771 ObjPtr<mirror::String> string = class_linker->ResolveString(string_index, dex_cache);
772 CHECK(string != nullptr) << "Could not allocate a string when forcing determinism";
773 break;
774 }
Andreas Gampeace0dc12016-01-20 13:33:13 -0800775
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -0700776 default:
777 break;
778 }
779 }
Mathieu Chartier0d896bd2018-05-25 00:20:27 -0700780 }
Vladimir Marko175e7862018-03-27 09:03:13 +0000781 }
782 }
783}
784
785// Initialize type check bit strings for check-cast and instance-of in the code. Done to have
786// deterministic allocation behavior. Right now this is single-threaded for simplicity.
787// TODO: Collect the relevant type indices in parallel, then process them sequentially in a
788// stable order.
789
790static void InitializeTypeCheckBitstrings(CompilerDriver* driver,
791 ClassLinker* class_linker,
792 Handle<mirror::DexCache> dex_cache,
793 const DexFile& dex_file,
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -0700794 const ClassAccessor::Method& method)
Vladimir Marko175e7862018-03-27 09:03:13 +0000795 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -0700796 for (const DexInstructionPcPair& inst : method.GetInstructions()) {
Vladimir Marko175e7862018-03-27 09:03:13 +0000797 switch (inst->Opcode()) {
798 case Instruction::CHECK_CAST:
799 case Instruction::INSTANCE_OF: {
800 dex::TypeIndex type_index(
801 (inst->Opcode() == Instruction::CHECK_CAST) ? inst->VRegB_21c() : inst->VRegC_22c());
802 const char* descriptor = dex_file.StringByTypeIdx(type_index);
803 // We currently do not use the bitstring type check for array or final (including
804 // primitive) classes. We may reconsider this in future if it's deemed to be beneficial.
805 // And we cannot use it for classes outside the boot image as we do not know the runtime
806 // value of their bitstring when compiling (it may not even get assigned at runtime).
Vladimir Markodc4bcce2018-06-21 16:15:42 +0100807 if (descriptor[0] == 'L' && driver->GetCompilerOptions().IsImageClass(descriptor)) {
Vladimir Marko175e7862018-03-27 09:03:13 +0000808 ObjPtr<mirror::Class> klass =
809 class_linker->LookupResolvedType(type_index,
810 dex_cache.Get(),
811 /* class_loader */ nullptr);
812 CHECK(klass != nullptr) << descriptor << " should have been previously resolved.";
813 // Now assign the bitstring if the class is not final. Keep this in sync with sharpening.
814 if (!klass->IsFinal()) {
815 MutexLock subtype_check_lock(Thread::Current(), *Locks::subtype_check_lock_);
816 SubtypeCheck<ObjPtr<mirror::Class>>::EnsureAssigned(klass);
817 }
Andreas Gampeace0dc12016-01-20 13:33:13 -0800818 }
Vladimir Marko175e7862018-03-27 09:03:13 +0000819 break;
820 }
821
822 default:
823 break;
824 }
825 }
826}
827
828static void InitializeTypeCheckBitstrings(CompilerDriver* driver,
829 const std::vector<const DexFile*>& dex_files,
830 TimingLogger* timings) {
831 ScopedObjectAccess soa(Thread::Current());
832 StackHandleScope<1> hs(soa.Self());
833 ClassLinker* const class_linker = Runtime::Current()->GetClassLinker();
834 MutableHandle<mirror::DexCache> dex_cache(hs.NewHandle<mirror::DexCache>(nullptr));
835
836 for (const DexFile* dex_file : dex_files) {
837 dex_cache.Assign(class_linker->FindDexCache(soa.Self(), *dex_file));
838 TimingLogger::ScopedTiming t("Initialize type check bitstrings", timings);
839
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -0700840 for (ClassAccessor accessor : dex_file->GetClasses()) {
841 if (!driver->IsClassToCompile(accessor.GetDescriptor())) {
Vladimir Marko175e7862018-03-27 09:03:13 +0000842 // Compilation is skipped, do not look for type checks in code of this class.
843 // FIXME: Make sure that inlining honors this. b/26687569
844 continue;
845 }
846
847 // Direct and virtual methods.
Mathieu Chartier0d896bd2018-05-25 00:20:27 -0700848 for (const ClassAccessor::Method& method : accessor.GetMethods()) {
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -0700849 InitializeTypeCheckBitstrings(driver, class_linker, dex_cache, *dex_file, method);
Mathieu Chartier0d896bd2018-05-25 00:20:27 -0700850 }
Andreas Gampeace0dc12016-01-20 13:33:13 -0800851 }
852 }
853}
854
855inline void CompilerDriver::CheckThreadPools() {
856 DCHECK(parallel_thread_pool_ != nullptr);
857 DCHECK(single_thread_pool_ != nullptr);
858}
859
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +0000860static void EnsureVerifiedOrVerifyAtRuntime(jobject jclass_loader,
861 const std::vector<const DexFile*>& dex_files) {
862 ScopedObjectAccess soa(Thread::Current());
863 StackHandleScope<2> hs(soa.Self());
864 Handle<mirror::ClassLoader> class_loader(
865 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader)));
866 MutableHandle<mirror::Class> cls(hs.NewHandle<mirror::Class>(nullptr));
867 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
868
869 for (const DexFile* dex_file : dex_files) {
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -0700870 for (ClassAccessor accessor : dex_file->GetClasses()) {
871 cls.Assign(class_linker->FindClass(soa.Self(), accessor.GetDescriptor(), class_loader));
Andreas Gampefa4333d2017-02-14 11:10:34 -0800872 if (cls == nullptr) {
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +0000873 soa.Self()->ClearException();
874 } else if (&cls->GetDexFile() == dex_file) {
Nicolas Geoffray7cc3ae52017-03-07 14:33:37 +0000875 DCHECK(cls->IsErroneous() || cls->IsVerified() || cls->ShouldVerifyAtRuntime())
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +0000876 << cls->PrettyClass()
877 << " " << cls->GetStatus();
878 }
879 }
880 }
881}
882
Andreas Gampeace0dc12016-01-20 13:33:13 -0800883void CompilerDriver::PreCompile(jobject class_loader,
884 const std::vector<const DexFile*>& dex_files,
885 TimingLogger* timings) {
886 CheckThreadPools();
Vladimir Marko213ee2d2018-06-22 11:56:34 +0100887
Vladimir Markodc4bcce2018-06-21 16:15:42 +0100888 VLOG(compiler) << "Before precompile " << GetMemoryUsageString(false);
889
Vladimir Marko213ee2d2018-06-22 11:56:34 +0100890 compiled_classes_.AddDexFiles(GetCompilerOptions().GetDexFilesForOatFile());
891 dex_to_dex_compiler_.SetDexFiles(GetCompilerOptions().GetDexFilesForOatFile());
892
Vladimir Markodc4bcce2018-06-21 16:15:42 +0100893 // Precompile:
894 // 1) Load image classes.
895 // 2) Resolve all classes.
896 // 3) For deterministic boot image, resolve strings for const-string instructions.
897 // 4) Attempt to verify all classes.
898 // 5) Attempt to initialize image classes, and trivially initialized classes.
899 // 6) Update the set of image classes.
900 // 7) For deterministic boot image, initialize bitstrings for type checking.
Andreas Gampeace0dc12016-01-20 13:33:13 -0800901
Brian Carlstrom7940e442013-07-12 13:46:57 -0700902 LoadImageClasses(timings);
Andreas Gampe8d295f82015-01-20 14:50:21 -0800903 VLOG(compiler) << "LoadImageClasses: " << GetMemoryUsageString(false);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700904
Nicolas Geoffray49cda062017-04-21 13:08:25 +0100905 if (compiler_options_->IsAnyCompilationEnabled()) {
Mathieu Chartier88b74b62017-07-16 17:08:19 -0700906 // Avoid adding the dex files in the case where we aren't going to add compiled methods.
907 // This reduces RAM usage for this case.
908 for (const DexFile* dex_file : dex_files) {
909 // Can be already inserted if the caller is CompileOne. This happens for gtests.
910 if (!compiled_methods_.HaveDexFile(dex_file)) {
Mathieu Chartierfc8b4222017-09-17 13:44:24 -0700911 compiled_methods_.AddDexFile(dex_file);
Mathieu Chartier88b74b62017-07-16 17:08:19 -0700912 }
913 }
Nicolas Geoffray49cda062017-04-21 13:08:25 +0100914 // Resolve eagerly to prepare for compilation.
Andreas Gampeace0dc12016-01-20 13:33:13 -0800915 Resolve(class_loader, dex_files, timings);
Mathieu Chartiere86deef2015-03-19 13:43:37 -0700916 VLOG(compiler) << "Resolve: " << GetMemoryUsageString(false);
917 }
918
Nicolas Geoffray60ca9492016-12-20 21:15:00 +0000919 if (compiler_options_->AssumeClassesAreVerified()) {
Mathieu Chartierab972ef2014-12-03 17:38:22 -0800920 VLOG(compiler) << "Verify none mode specified, skipping verification.";
Andreas Gampeace0dc12016-01-20 13:33:13 -0800921 SetVerified(class_loader, dex_files, timings);
Mathieu Chartiere86deef2015-03-19 13:43:37 -0700922 }
923
Nicolas Geoffray60ca9492016-12-20 21:15:00 +0000924 if (!compiler_options_->IsVerificationEnabled()) {
Jeff Hao4a200f52014-04-01 14:58:49 -0700925 return;
926 }
927
Vladimir Markoaad75c62016-10-03 08:46:48 +0000928 if (GetCompilerOptions().IsForceDeterminism() && GetCompilerOptions().IsBootImage()) {
Andreas Gampeace0dc12016-01-20 13:33:13 -0800929 // Resolve strings from const-string. Do this now to have a deterministic image.
Mathieu Chartiercd0f38f2018-10-15 09:44:35 -0700930 ResolveConstStrings(dex_files, /*only_startup_strings=*/ false, timings);
Andreas Gampeace0dc12016-01-20 13:33:13 -0800931 VLOG(compiler) << "Resolve const-strings: " << GetMemoryUsageString(false);
Mathieu Chartiercd0f38f2018-10-15 09:44:35 -0700932 } else if (GetCompilerOptions().ResolveStartupConstStrings()) {
933 ResolveConstStrings(dex_files, /*only_startup_strings=*/ true, timings);
Andreas Gampeace0dc12016-01-20 13:33:13 -0800934 }
935
Nicolas Geoffrayb0bbe8e2016-11-19 10:42:37 +0000936 Verify(class_loader, dex_files, timings);
Andreas Gampe8d295f82015-01-20 14:50:21 -0800937 VLOG(compiler) << "Verify: " << GetMemoryUsageString(false);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700938
Andreas Gampe6cf49e52015-03-05 13:08:45 -0800939 if (had_hard_verifier_failure_ && GetCompilerOptions().AbortOnHardVerifierFailure()) {
Andreas Gampefdfb4d42017-07-27 12:12:22 -0700940 // Avoid dumping threads. Even if we shut down the thread pools, there will still be three
941 // instances of this thread's stack.
942 LOG(FATAL_WITHOUT_ABORT) << "Had a hard failure verifying all classes, and was asked to abort "
943 << "in such situations. Please check the log.";
Andreas Gampe56c9b7c2018-02-27 18:49:26 -0800944 _exit(1);
Andreas Gampef39208f2017-10-19 15:06:59 -0700945 } else if (number_of_soft_verifier_failures_ > 0 &&
946 GetCompilerOptions().AbortOnSoftVerifierFailure()) {
947 LOG(FATAL_WITHOUT_ABORT) << "Had " << number_of_soft_verifier_failures_ << " soft failure(s) "
948 << "verifying all classes, and was asked to abort in such situations. "
949 << "Please check the log.";
Andreas Gampe56c9b7c2018-02-27 18:49:26 -0800950 _exit(1);
Andreas Gampe6cf49e52015-03-05 13:08:45 -0800951 }
952
Nicolas Geoffray49cda062017-04-21 13:08:25 +0100953 if (compiler_options_->IsAnyCompilationEnabled()) {
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +0000954 if (kIsDebugBuild) {
955 EnsureVerifiedOrVerifyAtRuntime(class_loader, dex_files);
956 }
Nicolas Geoffrayade72d62016-12-15 13:20:02 +0000957 InitializeClasses(class_loader, dex_files, timings);
958 VLOG(compiler) << "InitializeClasses: " << GetMemoryUsageString(false);
959 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700960
961 UpdateImageClasses(timings);
Andreas Gampe8d295f82015-01-20 14:50:21 -0800962 VLOG(compiler) << "UpdateImageClasses: " << GetMemoryUsageString(false);
Vladimir Marko175e7862018-03-27 09:03:13 +0000963
964 if (kBitstringSubtypeCheckEnabled &&
965 GetCompilerOptions().IsForceDeterminism() && GetCompilerOptions().IsBootImage()) {
966 // Initialize type check bit string used by check-cast and instanceof.
967 // Do this now to have a deterministic image.
968 // Note: This is done after UpdateImageClasses() at it relies on the image classes to be final.
969 InitializeTypeCheckBitstrings(this, dex_files, timings);
970 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700971}
972
Andreas Gampe4bf3ae92014-11-11 13:28:29 -0800973bool CompilerDriver::IsClassToCompile(const char* descriptor) const {
Andreas Gampeb1fcead2015-04-20 18:53:51 -0700974 if (classes_to_compile_ == nullptr) {
975 return true;
976 }
Vladimir Marko54159c62018-06-20 14:30:08 +0100977 return classes_to_compile_->find(StringPiece(descriptor)) != classes_to_compile_->end();
Andreas Gampe4bf3ae92014-11-11 13:28:29 -0800978}
979
Calin Juravle226501b2015-12-11 14:41:31 +0000980bool CompilerDriver::ShouldCompileBasedOnProfile(const MethodReference& method_ref) const {
Mathieu Chartier97ab5e32017-02-22 13:35:44 -0800981 // Profile compilation info may be null if no profile is passed.
Mathieu Chartierd0af56c2017-02-17 12:56:25 -0800982 if (!CompilerFilter::DependsOnProfile(compiler_options_->GetCompilerFilter())) {
983 // Use the compiler filter instead of the presence of profile_compilation_info_ since
984 // we may want to have full speed compilation along with profile based layout optimizations.
Calin Juravle226501b2015-12-11 14:41:31 +0000985 return true;
986 }
Mathieu Chartier97ab5e32017-02-22 13:35:44 -0800987 // If we are using a profile filter but do not have a profile compilation info, compile nothing.
988 if (profile_compilation_info_ == nullptr) {
989 return false;
990 }
Mathieu Chartier7b135c82017-06-05 12:54:01 -0700991 // Compile only hot methods, it is the profile saver's job to decide what startup methods to mark
992 // as hot.
Mathieu Chartierbbe3a5e2017-06-13 16:36:17 -0700993 bool result = profile_compilation_info_->GetMethodHotness(method_ref).IsHot();
Calin Juravle226501b2015-12-11 14:41:31 +0000994
995 if (kDebugProfileGuidedCompilation) {
996 LOG(INFO) << "[ProfileGuidedCompilation] "
Mathieu Chartierfc8b4222017-09-17 13:44:24 -0700997 << (result ? "Compiled" : "Skipped") << " method:" << method_ref.PrettyMethod(true);
Calin Juravle226501b2015-12-11 14:41:31 +0000998 }
999 return result;
1000}
1001
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001002class ResolveCatchBlockExceptionsClassVisitor : public ClassVisitor {
1003 public:
Vladimir Marko8d6768d2017-03-14 10:13:21 +00001004 ResolveCatchBlockExceptionsClassVisitor() : classes_() {}
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001005
Roland Levillainf73caca2018-08-24 17:19:07 +01001006 bool operator()(ObjPtr<mirror::Class> c) override REQUIRES_SHARED(Locks::mutator_lock_) {
Vladimir Marko8d6768d2017-03-14 10:13:21 +00001007 classes_.push_back(c);
Mathieu Chartiere4275c02015-08-06 15:34:15 -07001008 return true;
1009 }
1010
Vladimir Marko8d6768d2017-03-14 10:13:21 +00001011 void FindExceptionTypesToResolve(
1012 std::set<std::pair<dex::TypeIndex, const DexFile*>>* exceptions_to_resolve)
Vladimir Markobfb80d22017-02-14 14:08:12 +00001013 REQUIRES_SHARED(Locks::mutator_lock_) {
Vladimir Marko8d6768d2017-03-14 10:13:21 +00001014 const auto pointer_size = Runtime::Current()->GetClassLinker()->GetImagePointerSize();
1015 for (ObjPtr<mirror::Class> klass : classes_) {
1016 for (ArtMethod& method : klass->GetMethods(pointer_size)) {
1017 FindExceptionTypesToResolveForMethod(&method, exceptions_to_resolve);
1018 }
1019 }
1020 }
1021
1022 private:
1023 void FindExceptionTypesToResolveForMethod(
1024 ArtMethod* method,
1025 std::set<std::pair<dex::TypeIndex, const DexFile*>>* exceptions_to_resolve)
1026 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartier808c7a52017-12-15 11:19:33 -08001027 if (method->GetCodeItem() == nullptr) {
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001028 return; // native or abstract method
Brian Carlstrom7940e442013-07-12 13:46:57 -07001029 }
David Sehr0225f8e2018-01-31 08:52:24 +00001030 CodeItemDataAccessor accessor(method->DexInstructionData());
Mathieu Chartier808c7a52017-12-15 11:19:33 -08001031 if (accessor.TriesSize() == 0) {
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001032 return; // nothing to process
1033 }
Mathieu Chartier808c7a52017-12-15 11:19:33 -08001034 const uint8_t* encoded_catch_handler_list = accessor.GetCatchHandlerData();
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001035 size_t num_encoded_catch_handlers = DecodeUnsignedLeb128(&encoded_catch_handler_list);
1036 for (size_t i = 0; i < num_encoded_catch_handlers; i++) {
1037 int32_t encoded_catch_handler_size = DecodeSignedLeb128(&encoded_catch_handler_list);
1038 bool has_catch_all = false;
1039 if (encoded_catch_handler_size <= 0) {
1040 encoded_catch_handler_size = -encoded_catch_handler_size;
1041 has_catch_all = true;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001042 }
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001043 for (int32_t j = 0; j < encoded_catch_handler_size; j++) {
Andreas Gampea5b09a62016-11-17 15:21:22 -08001044 dex::TypeIndex encoded_catch_handler_handlers_type_idx =
1045 dex::TypeIndex(DecodeUnsignedLeb128(&encoded_catch_handler_list));
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001046 // Add to set of types to resolve if not already in the dex cache resolved types
Vladimir Marko8d6768d2017-03-14 10:13:21 +00001047 if (!method->IsResolvedTypeIdx(encoded_catch_handler_handlers_type_idx)) {
1048 exceptions_to_resolve->emplace(encoded_catch_handler_handlers_type_idx,
1049 method->GetDexFile());
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001050 }
1051 // ignore address associated with catch handler
1052 DecodeUnsignedLeb128(&encoded_catch_handler_list);
1053 }
1054 if (has_catch_all) {
1055 // ignore catch all address
1056 DecodeUnsignedLeb128(&encoded_catch_handler_list);
1057 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001058 }
1059 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001060
Vladimir Marko8d6768d2017-03-14 10:13:21 +00001061 std::vector<ObjPtr<mirror::Class>> classes_;
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001062};
1063
1064class RecordImageClassesVisitor : public ClassVisitor {
1065 public:
Vladimir Marko54159c62018-06-20 14:30:08 +01001066 explicit RecordImageClassesVisitor(HashSet<std::string>* image_classes)
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001067 : image_classes_(image_classes) {}
1068
Roland Levillainbbc6e7e2018-08-24 16:58:47 +01001069 bool operator()(ObjPtr<mirror::Class> klass) override REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001070 std::string temp;
1071 image_classes_->insert(klass->GetDescriptor(&temp));
1072 return true;
1073 }
1074
1075 private:
Vladimir Marko54159c62018-06-20 14:30:08 +01001076 HashSet<std::string>* const image_classes_;
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001077};
Brian Carlstrom7940e442013-07-12 13:46:57 -07001078
1079// Make a list of descriptors for classes to include in the image
Mathieu Chartier90443472015-07-16 20:32:27 -07001080void CompilerDriver::LoadImageClasses(TimingLogger* timings) {
Kenny Rootd5185342014-05-13 14:47:05 -07001081 CHECK(timings != nullptr);
Vladimir Markoaad75c62016-10-03 08:46:48 +00001082 if (!GetCompilerOptions().IsBootImage()) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001083 return;
1084 }
1085
Mathieu Chartierf5997b42014-06-20 10:37:54 -07001086 TimingLogger::ScopedTiming t("LoadImageClasses", timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001087 // Make a first class to load all classes explicitly listed in the file
1088 Thread* self = Thread::Current();
1089 ScopedObjectAccess soa(self);
1090 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Vladimir Markodc4bcce2018-06-21 16:15:42 +01001091 CHECK(image_classes_ != nullptr);
Mathieu Chartier02e25112013-08-14 16:14:24 -07001092 for (auto it = image_classes_->begin(), end = image_classes_->end(); it != end;) {
Vladimir Markoe9c36b32013-11-21 15:49:16 +00001093 const std::string& descriptor(*it);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001094 StackHandleScope<1> hs(self);
1095 Handle<mirror::Class> klass(
1096 hs.NewHandle(class_linker->FindSystemClass(self, descriptor.c_str())));
Andreas Gampefa4333d2017-02-14 11:10:34 -08001097 if (klass == nullptr) {
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001098 VLOG(compiler) << "Failed to find class " << descriptor;
Vladimir Marko54159c62018-06-20 14:30:08 +01001099 it = image_classes_->erase(it);
Ian Rogersa436fde2013-08-27 23:34:06 -07001100 self->ClearException();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001101 } else {
1102 ++it;
1103 }
1104 }
1105
1106 // Resolve exception classes referenced by the loaded classes. The catch logic assumes
1107 // exceptions are resolved by the verifier when there is a catch block in an interested method.
1108 // Do this here so that exception classes appear to have been specified image classes.
Andreas Gampea5b09a62016-11-17 15:21:22 -08001109 std::set<std::pair<dex::TypeIndex, const DexFile*>> unresolved_exception_types;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001110 StackHandleScope<1> hs(self);
1111 Handle<mirror::Class> java_lang_Throwable(
1112 hs.NewHandle(class_linker->FindSystemClass(self, "Ljava/lang/Throwable;")));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001113 do {
1114 unresolved_exception_types.clear();
Vladimir Marko8d6768d2017-03-14 10:13:21 +00001115 {
1116 // Thread suspension is not allowed while ResolveCatchBlockExceptionsClassVisitor
1117 // is using a std::vector<ObjPtr<mirror::Class>>.
1118 ScopedAssertNoThreadSuspension ants(__FUNCTION__);
1119 ResolveCatchBlockExceptionsClassVisitor visitor;
1120 class_linker->VisitClasses(&visitor);
1121 visitor.FindExceptionTypesToResolve(&unresolved_exception_types);
1122 }
Andreas Gampea5b09a62016-11-17 15:21:22 -08001123 for (const auto& exception_type : unresolved_exception_types) {
1124 dex::TypeIndex exception_type_idx = exception_type.first;
Mathieu Chartier02e25112013-08-14 16:14:24 -07001125 const DexFile* dex_file = exception_type.second;
Vladimir Marko666ee3d2017-12-11 18:37:36 +00001126 StackHandleScope<1> hs2(self);
Mathieu Chartierf284d442016-06-02 11:48:30 -07001127 Handle<mirror::DexCache> dex_cache(hs2.NewHandle(class_linker->RegisterDexFile(*dex_file,
1128 nullptr)));
Vladimir Marko666ee3d2017-12-11 18:37:36 +00001129 ObjPtr<mirror::Class> klass =
Andreas Gampefa4333d2017-02-14 11:10:34 -08001130 (dex_cache != nullptr)
Vladimir Marko666ee3d2017-12-11 18:37:36 +00001131 ? class_linker->ResolveType(exception_type_idx,
Vladimir Markocd556b02017-02-03 11:47:34 +00001132 dex_cache,
1133 ScopedNullHandle<mirror::ClassLoader>())
Vladimir Marko666ee3d2017-12-11 18:37:36 +00001134 : nullptr;
Andreas Gampefa4333d2017-02-14 11:10:34 -08001135 if (klass == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001136 const DexFile::TypeId& type_id = dex_file->GetTypeId(exception_type_idx);
1137 const char* descriptor = dex_file->GetTypeDescriptor(type_id);
1138 LOG(FATAL) << "Failed to resolve class " << descriptor;
1139 }
Vladimir Marko666ee3d2017-12-11 18:37:36 +00001140 DCHECK(java_lang_Throwable->IsAssignableFrom(klass));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001141 }
1142 // Resolving exceptions may load classes that reference more exceptions, iterate until no
1143 // more are found
1144 } while (!unresolved_exception_types.empty());
1145
1146 // We walk the roots looking for classes so that we'll pick up the
1147 // above classes plus any classes them depend on such super
1148 // classes, interfaces, and the required ClassLinker roots.
Vladimir Markodc4bcce2018-06-21 16:15:42 +01001149 RecordImageClassesVisitor visitor(image_classes_);
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001150 class_linker->VisitClasses(&visitor);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001151
Vladimir Marko54159c62018-06-20 14:30:08 +01001152 CHECK(!image_classes_->empty());
Brian Carlstrom7940e442013-07-12 13:46:57 -07001153}
1154
Vladimir Marko19a4d372016-12-08 14:41:46 +00001155static void MaybeAddToImageClasses(Thread* self,
1156 ObjPtr<mirror::Class> klass,
Vladimir Marko54159c62018-06-20 14:30:08 +01001157 HashSet<std::string>* image_classes)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001158 REQUIRES_SHARED(Locks::mutator_lock_) {
Vladimir Marko19a4d372016-12-08 14:41:46 +00001159 DCHECK_EQ(self, Thread::Current());
Mathieu Chartierf8322842014-05-16 10:59:25 -07001160 StackHandleScope<1> hs(self);
Ian Rogers1ff3c982014-08-12 02:30:58 -07001161 std::string temp;
Andreas Gampe542451c2016-07-26 09:02:02 -07001162 const PointerSize pointer_size = Runtime::Current()->GetClassLinker()->GetImagePointerSize();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001163 while (!klass->IsObjectClass()) {
Ian Rogers1ff3c982014-08-12 02:30:58 -07001164 const char* descriptor = klass->GetDescriptor(&temp);
Vladimir Marko54159c62018-06-20 14:30:08 +01001165 if (image_classes->find(StringPiece(descriptor)) != image_classes->end()) {
1166 break; // Previously inserted.
Brian Carlstrom7940e442013-07-12 13:46:57 -07001167 }
Vladimir Marko54159c62018-06-20 14:30:08 +01001168 image_classes->insert(descriptor);
Ian Rogers1ff3c982014-08-12 02:30:58 -07001169 VLOG(compiler) << "Adding " << descriptor << " to image classes";
Vladimir Marko19a4d372016-12-08 14:41:46 +00001170 for (size_t i = 0, num_interfaces = klass->NumDirectInterfaces(); i != num_interfaces; ++i) {
1171 ObjPtr<mirror::Class> interface = mirror::Class::GetDirectInterface(self, klass, i);
1172 DCHECK(interface != nullptr);
1173 MaybeAddToImageClasses(self, interface, image_classes);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001174 }
Vladimir Marko19a4d372016-12-08 14:41:46 +00001175 for (auto& m : klass->GetVirtualMethods(pointer_size)) {
1176 MaybeAddToImageClasses(self, m.GetDeclaringClass(), image_classes);
Mathieu Chartiere401d142015-04-22 13:56:20 -07001177 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001178 if (klass->IsArrayClass()) {
Vladimir Marko19a4d372016-12-08 14:41:46 +00001179 MaybeAddToImageClasses(self, klass->GetComponentType(), image_classes);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001180 }
Mathieu Chartierf8322842014-05-16 10:59:25 -07001181 klass.Assign(klass->GetSuperClass());
Brian Carlstrom7940e442013-07-12 13:46:57 -07001182 }
1183}
1184
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001185// Keeps all the data for the update together. Also doubles as the reference visitor.
1186// Note: we can use object pointers because we suspend all threads.
1187class ClinitImageUpdate {
1188 public:
Mathieu Chartier31e88222016-10-14 18:43:19 -07001189 static ClinitImageUpdate* Create(VariableSizedHandleScope& hs,
Vladimir Marko54159c62018-06-20 14:30:08 +01001190 HashSet<std::string>* image_class_descriptors,
Mathieu Chartier31e88222016-10-14 18:43:19 -07001191 Thread* self,
1192 ClassLinker* linker) {
1193 std::unique_ptr<ClinitImageUpdate> res(new ClinitImageUpdate(hs,
1194 image_class_descriptors,
1195 self,
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001196 linker));
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001197 return res.release();
1198 }
1199
1200 ~ClinitImageUpdate() {
1201 // Allow others to suspend again.
1202 self_->EndAssertNoThreadSuspension(old_cause_);
1203 }
1204
1205 // Visitor for VisitReferences.
Mathieu Chartier31e88222016-10-14 18:43:19 -07001206 void operator()(ObjPtr<mirror::Object> object,
1207 MemberOffset field_offset,
1208 bool /* is_static */) const
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001209 REQUIRES_SHARED(Locks::mutator_lock_) {
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001210 mirror::Object* ref = object->GetFieldObject<mirror::Object>(field_offset);
1211 if (ref != nullptr) {
1212 VisitClinitClassesObject(ref);
1213 }
1214 }
1215
Roland Levillain5e8d5f02016-10-18 18:03:43 +01001216 // java.lang.ref.Reference visitor for VisitReferences.
Mathieu Chartier31e88222016-10-14 18:43:19 -07001217 void operator()(ObjPtr<mirror::Class> klass ATTRIBUTE_UNUSED,
1218 ObjPtr<mirror::Reference> ref ATTRIBUTE_UNUSED) const {}
Mathieu Chartierda7c6502015-07-23 16:01:26 -07001219
1220 // Ignore class native roots.
1221 void VisitRootIfNonNull(mirror::CompressedReference<mirror::Object>* root ATTRIBUTE_UNUSED)
1222 const {}
1223 void VisitRoot(mirror::CompressedReference<mirror::Object>* root ATTRIBUTE_UNUSED) const {}
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001224
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001225 void Walk() REQUIRES_SHARED(Locks::mutator_lock_) {
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001226 // Use the initial classes as roots for a search.
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001227 for (Handle<mirror::Class> klass_root : image_classes_) {
1228 VisitClinitClassesObject(klass_root.Get());
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001229 }
Vladimir Marko19a4d372016-12-08 14:41:46 +00001230 Thread* self = Thread::Current();
1231 ScopedAssertNoThreadSuspension ants(__FUNCTION__);
Mathieu Chartier31e88222016-10-14 18:43:19 -07001232 for (Handle<mirror::Class> h_klass : to_insert_) {
Vladimir Marko19a4d372016-12-08 14:41:46 +00001233 MaybeAddToImageClasses(self, h_klass.Get(), image_class_descriptors_);
Mathieu Chartier31e88222016-10-14 18:43:19 -07001234 }
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001235 }
1236
1237 private:
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001238 class FindImageClassesVisitor : public ClassVisitor {
1239 public:
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001240 explicit FindImageClassesVisitor(VariableSizedHandleScope& hs,
1241 ClinitImageUpdate* data)
1242 : data_(data),
1243 hs_(hs) {}
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001244
Roland Levillainbbc6e7e2018-08-24 16:58:47 +01001245 bool operator()(ObjPtr<mirror::Class> klass) override REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001246 std::string temp;
Vladimir Marko54159c62018-06-20 14:30:08 +01001247 StringPiece name(klass->GetDescriptor(&temp));
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001248 if (data_->image_class_descriptors_->find(name) != data_->image_class_descriptors_->end()) {
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001249 data_->image_classes_.push_back(hs_.NewHandle(klass));
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001250 } else {
1251 // Check whether it is initialized and has a clinit. They must be kept, too.
1252 if (klass->IsInitialized() && klass->FindClassInitializer(
1253 Runtime::Current()->GetClassLinker()->GetImagePointerSize()) != nullptr) {
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001254 data_->image_classes_.push_back(hs_.NewHandle(klass));
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001255 }
1256 }
1257 return true;
1258 }
1259
1260 private:
1261 ClinitImageUpdate* const data_;
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001262 VariableSizedHandleScope& hs_;
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001263 };
1264
Mathieu Chartier31e88222016-10-14 18:43:19 -07001265 ClinitImageUpdate(VariableSizedHandleScope& hs,
Vladimir Marko54159c62018-06-20 14:30:08 +01001266 HashSet<std::string>* image_class_descriptors,
Mathieu Chartier31e88222016-10-14 18:43:19 -07001267 Thread* self,
1268 ClassLinker* linker) REQUIRES_SHARED(Locks::mutator_lock_)
1269 : hs_(hs),
1270 image_class_descriptors_(image_class_descriptors),
1271 self_(self) {
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001272 CHECK(linker != nullptr);
1273 CHECK(image_class_descriptors != nullptr);
1274
1275 // Make sure nobody interferes with us.
1276 old_cause_ = self->StartAssertNoThreadSuspension("Boot image closure");
1277
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001278 // Find all the already-marked classes.
1279 WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001280 FindImageClassesVisitor visitor(hs_, this);
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001281 linker->VisitClasses(&visitor);
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001282 }
1283
1284 void VisitClinitClassesObject(mirror::Object* object) const
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001285 REQUIRES_SHARED(Locks::mutator_lock_) {
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001286 DCHECK(object != nullptr);
1287 if (marked_objects_.find(object) != marked_objects_.end()) {
1288 // Already processed.
1289 return;
1290 }
1291
1292 // Mark it.
1293 marked_objects_.insert(object);
1294
1295 if (object->IsClass()) {
Mathieu Chartier31e88222016-10-14 18:43:19 -07001296 // Add to the TODO list since MaybeAddToImageClasses may cause thread suspension. Thread
1297 // suspensionb is not safe to do in VisitObjects or VisitReferences.
1298 to_insert_.push_back(hs_.NewHandle(object->AsClass()));
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001299 } else {
1300 // Else visit the object's class.
1301 VisitClinitClassesObject(object->GetClass());
1302 }
1303
Mathieu Chartiere401d142015-04-22 13:56:20 -07001304 // If it is not a DexCache, visit all references.
Mathieu Chartier31e88222016-10-14 18:43:19 -07001305 if (!object->IsDexCache()) {
Mathieu Chartier059ef3d2015-08-18 13:54:21 -07001306 object->VisitReferences(*this, *this);
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001307 }
1308 }
1309
Mathieu Chartier31e88222016-10-14 18:43:19 -07001310 VariableSizedHandleScope& hs_;
1311 mutable std::vector<Handle<mirror::Class>> to_insert_;
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001312 mutable std::unordered_set<mirror::Object*> marked_objects_;
Vladimir Marko54159c62018-06-20 14:30:08 +01001313 HashSet<std::string>* const image_class_descriptors_;
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001314 std::vector<Handle<mirror::Class>> image_classes_;
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001315 Thread* const self_;
1316 const char* old_cause_;
1317
1318 DISALLOW_COPY_AND_ASSIGN(ClinitImageUpdate);
1319};
Brian Carlstrom7940e442013-07-12 13:46:57 -07001320
Ian Rogers3d504072014-03-01 09:16:49 -08001321void CompilerDriver::UpdateImageClasses(TimingLogger* timings) {
Vladimir Markoaad75c62016-10-03 08:46:48 +00001322 if (GetCompilerOptions().IsBootImage()) {
Mathieu Chartierf5997b42014-06-20 10:37:54 -07001323 TimingLogger::ScopedTiming t("UpdateImageClasses", timings);
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001324
Mathieu Chartier4f55e222015-09-04 13:26:21 -07001325 Runtime* runtime = Runtime::Current();
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001326
1327 // Suspend all threads.
Mathieu Chartier4f55e222015-09-04 13:26:21 -07001328 ScopedSuspendAll ssa(__FUNCTION__);
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001329
Mathieu Chartier31e88222016-10-14 18:43:19 -07001330 VariableSizedHandleScope hs(Thread::Current());
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001331 std::string error_msg;
Mathieu Chartier31e88222016-10-14 18:43:19 -07001332 std::unique_ptr<ClinitImageUpdate> update(ClinitImageUpdate::Create(hs,
Vladimir Markodc4bcce2018-06-21 16:15:42 +01001333 image_classes_,
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001334 Thread::Current(),
Mathieu Chartier31e88222016-10-14 18:43:19 -07001335 runtime->GetClassLinker()));
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001336
1337 // Do the marking.
1338 update->Walk();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001339 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001340}
1341
Vladimir Markobe0e5462014-02-26 11:24:15 +00001342void CompilerDriver::ProcessedInstanceField(bool resolved) {
1343 if (!resolved) {
1344 stats_->UnresolvedInstanceField();
1345 } else {
1346 stats_->ResolvedInstanceField();
1347 }
1348}
1349
1350void CompilerDriver::ProcessedStaticField(bool resolved, bool local) {
1351 if (!resolved) {
1352 stats_->UnresolvedStaticField();
1353 } else if (local) {
1354 stats_->ResolvedLocalStaticField();
1355 } else {
1356 stats_->ResolvedStaticField();
1357 }
1358}
1359
Mathieu Chartierc7853442015-03-27 14:35:38 -07001360ArtField* CompilerDriver::ComputeInstanceFieldInfo(uint32_t field_idx,
Vladimir Markoe11dd502017-12-08 14:09:45 +00001361 const DexCompilationUnit* mUnit,
1362 bool is_put,
Mathieu Chartierc7853442015-03-27 14:35:38 -07001363 const ScopedObjectAccess& soa) {
Vladimir Markobe0e5462014-02-26 11:24:15 +00001364 // Try to resolve the field and compiling method's class.
Mathieu Chartierc7853442015-03-27 14:35:38 -07001365 ArtField* resolved_field;
Vladimir Marko28e012a2017-12-07 11:22:59 +00001366 ObjPtr<mirror::Class> referrer_class;
Mathieu Chartier736b5602015-09-02 14:54:11 -07001367 Handle<mirror::DexCache> dex_cache(mUnit->GetDexCache());
Vladimir Markobe0e5462014-02-26 11:24:15 +00001368 {
Vladimir Markoe11dd502017-12-08 14:09:45 +00001369 Handle<mirror::ClassLoader> class_loader = mUnit->GetClassLoader();
1370 resolved_field = ResolveField(soa, dex_cache, class_loader, field_idx, /* is_static */ false);
Mathieu Chartierc7853442015-03-27 14:35:38 -07001371 referrer_class = resolved_field != nullptr
Vladimir Markoe11dd502017-12-08 14:09:45 +00001372 ? ResolveCompilingMethodsClass(soa, dex_cache, class_loader, mUnit) : nullptr;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001373 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001374 bool can_link = false;
Vladimir Markobe0e5462014-02-26 11:24:15 +00001375 if (resolved_field != nullptr && referrer_class != nullptr) {
Vladimir Markobe0e5462014-02-26 11:24:15 +00001376 std::pair<bool, bool> fast_path = IsFastInstanceField(
Mathieu Chartier736b5602015-09-02 14:54:11 -07001377 dex_cache.Get(), referrer_class, resolved_field, field_idx);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001378 can_link = is_put ? fast_path.second : fast_path.first;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001379 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001380 ProcessedInstanceField(can_link);
1381 return can_link ? resolved_field : nullptr;
1382}
1383
1384bool CompilerDriver::ComputeInstanceFieldInfo(uint32_t field_idx, const DexCompilationUnit* mUnit,
1385 bool is_put, MemberOffset* field_offset,
1386 bool* is_volatile) {
1387 ScopedObjectAccess soa(Thread::Current());
Mathieu Chartierc7853442015-03-27 14:35:38 -07001388 ArtField* resolved_field = ComputeInstanceFieldInfo(field_idx, mUnit, is_put, soa);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001389
Mathieu Chartierc7853442015-03-27 14:35:38 -07001390 if (resolved_field == nullptr) {
Vladimir Markobe0e5462014-02-26 11:24:15 +00001391 // Conservative defaults.
1392 *is_volatile = true;
1393 *field_offset = MemberOffset(static_cast<size_t>(-1));
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001394 return false;
1395 } else {
1396 *is_volatile = resolved_field->IsVolatile();
1397 *field_offset = resolved_field->GetOffset();
1398 return true;
Vladimir Markobe0e5462014-02-26 11:24:15 +00001399 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001400}
1401
Vladimir Marko2730db02014-01-27 11:15:17 +00001402const VerifiedMethod* CompilerDriver::GetVerifiedMethod(const DexFile* dex_file,
1403 uint32_t method_idx) const {
1404 MethodReference ref(dex_file, method_idx);
1405 return verification_results_->GetVerifiedMethod(ref);
1406}
1407
1408bool CompilerDriver::IsSafeCast(const DexCompilationUnit* mUnit, uint32_t dex_pc) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001409 if (!compiler_options_->IsVerificationEnabled()) {
1410 // If we didn't verify, every cast has to be treated as non-safe.
1411 return false;
1412 }
Vladimir Marko2730db02014-01-27 11:15:17 +00001413 DCHECK(mUnit->GetVerifiedMethod() != nullptr);
1414 bool result = mUnit->GetVerifiedMethod()->IsSafeCast(dex_pc);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001415 if (result) {
1416 stats_->SafeCast();
1417 } else {
1418 stats_->NotASafeCast();
1419 }
1420 return result;
1421}
1422
Mathieu Chartier90443472015-07-16 20:32:27 -07001423class CompilationVisitor {
1424 public:
1425 virtual ~CompilationVisitor() {}
1426 virtual void Visit(size_t index) = 0;
1427};
1428
Brian Carlstrom7940e442013-07-12 13:46:57 -07001429class ParallelCompilationManager {
1430 public:
Brian Carlstrom7940e442013-07-12 13:46:57 -07001431 ParallelCompilationManager(ClassLinker* class_linker,
1432 jobject class_loader,
1433 CompilerDriver* compiler,
1434 const DexFile* dex_file,
Andreas Gampede7b4362014-07-28 18:38:57 -07001435 const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -08001436 ThreadPool* thread_pool)
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001437 : index_(0),
1438 class_linker_(class_linker),
Brian Carlstrom7940e442013-07-12 13:46:57 -07001439 class_loader_(class_loader),
1440 compiler_(compiler),
1441 dex_file_(dex_file),
Andreas Gampede7b4362014-07-28 18:38:57 -07001442 dex_files_(dex_files),
Ian Rogers3d504072014-03-01 09:16:49 -08001443 thread_pool_(thread_pool) {}
Brian Carlstrom7940e442013-07-12 13:46:57 -07001444
1445 ClassLinker* GetClassLinker() const {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001446 CHECK(class_linker_ != nullptr);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001447 return class_linker_;
1448 }
1449
1450 jobject GetClassLoader() const {
1451 return class_loader_;
1452 }
1453
1454 CompilerDriver* GetCompiler() const {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001455 CHECK(compiler_ != nullptr);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001456 return compiler_;
1457 }
1458
1459 const DexFile* GetDexFile() const {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001460 CHECK(dex_file_ != nullptr);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001461 return dex_file_;
1462 }
1463
Andreas Gampede7b4362014-07-28 18:38:57 -07001464 const std::vector<const DexFile*>& GetDexFiles() const {
1465 return dex_files_;
1466 }
1467
Mathieu Chartier90443472015-07-16 20:32:27 -07001468 void ForAll(size_t begin, size_t end, CompilationVisitor* visitor, size_t work_units)
1469 REQUIRES(!*Locks::mutator_lock_) {
Andreas Gampe3c060ad2018-01-22 13:07:49 -08001470 ForAllLambda(begin, end, [visitor](size_t index) { visitor->Visit(index); }, work_units);
1471 }
1472
1473 template <typename Fn>
1474 void ForAllLambda(size_t begin, size_t end, Fn fn, size_t work_units)
1475 REQUIRES(!*Locks::mutator_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001476 Thread* self = Thread::Current();
1477 self->AssertNoPendingException();
1478 CHECK_GT(work_units, 0U);
1479
Orion Hodson88591fe2018-03-06 13:35:43 +00001480 index_.store(begin, std::memory_order_relaxed);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001481 for (size_t i = 0; i < work_units; ++i) {
Andreas Gampe3c060ad2018-01-22 13:07:49 -08001482 thread_pool_->AddTask(self, new ForAllClosureLambda<Fn>(this, end, fn));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001483 }
1484 thread_pool_->StartWorkers(self);
1485
1486 // Ensure we're suspended while we're blocked waiting for the other threads to finish (worker
1487 // thread destructor's called below perform join).
1488 CHECK_NE(self->GetState(), kRunnable);
1489
1490 // Wait for all the worker threads to finish.
1491 thread_pool_->Wait(self, true, false);
Andreas Gampeace0dc12016-01-20 13:33:13 -08001492
1493 // And stop the workers accepting jobs.
1494 thread_pool_->StopWorkers(self);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001495 }
1496
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001497 size_t NextIndex() {
Orion Hodson88591fe2018-03-06 13:35:43 +00001498 return index_.fetch_add(1, std::memory_order_seq_cst);
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001499 }
1500
Brian Carlstrom7940e442013-07-12 13:46:57 -07001501 private:
Andreas Gampe3c060ad2018-01-22 13:07:49 -08001502 template <typename Fn>
1503 class ForAllClosureLambda : public Task {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001504 public:
Andreas Gampe3c060ad2018-01-22 13:07:49 -08001505 ForAllClosureLambda(ParallelCompilationManager* manager, size_t end, Fn fn)
Brian Carlstrom7940e442013-07-12 13:46:57 -07001506 : manager_(manager),
Brian Carlstrom7940e442013-07-12 13:46:57 -07001507 end_(end),
Andreas Gampe3c060ad2018-01-22 13:07:49 -08001508 fn_(fn) {}
Brian Carlstrom7940e442013-07-12 13:46:57 -07001509
Roland Levillainbbc6e7e2018-08-24 16:58:47 +01001510 void Run(Thread* self) override {
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001511 while (true) {
1512 const size_t index = manager_->NextIndex();
1513 if (UNLIKELY(index >= end_)) {
1514 break;
1515 }
Andreas Gampe3c060ad2018-01-22 13:07:49 -08001516 fn_(index);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001517 self->AssertNoPendingException();
1518 }
1519 }
1520
Roland Levillainbbc6e7e2018-08-24 16:58:47 +01001521 void Finalize() override {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001522 delete this;
1523 }
Brian Carlstrom0cd7ec22013-07-17 23:40:20 -07001524
Brian Carlstrom7940e442013-07-12 13:46:57 -07001525 private:
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001526 ParallelCompilationManager* const manager_;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001527 const size_t end_;
Andreas Gampe3c060ad2018-01-22 13:07:49 -08001528 Fn fn_;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001529 };
1530
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001531 AtomicInteger index_;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001532 ClassLinker* const class_linker_;
1533 const jobject class_loader_;
1534 CompilerDriver* const compiler_;
1535 const DexFile* const dex_file_;
Andreas Gampede7b4362014-07-28 18:38:57 -07001536 const std::vector<const DexFile*>& dex_files_;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001537 ThreadPool* const thread_pool_;
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001538
1539 DISALLOW_COPY_AND_ASSIGN(ParallelCompilationManager);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001540};
1541
Jeff Hao0e49b422013-11-08 12:16:56 -08001542// A fast version of SkipClass above if the class pointer is available
1543// that avoids the expensive FindInClassPath search.
Vladimir Marko28e012a2017-12-07 11:22:59 +00001544static bool SkipClass(jobject class_loader, const DexFile& dex_file, ObjPtr<mirror::Class> klass)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001545 REQUIRES_SHARED(Locks::mutator_lock_) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001546 DCHECK(klass != nullptr);
Jeff Hao0e49b422013-11-08 12:16:56 -08001547 const DexFile& original_dex_file = *klass->GetDexCache()->GetDexFile();
1548 if (&dex_file != &original_dex_file) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001549 if (class_loader == nullptr) {
David Sehr709b0702016-10-13 09:12:37 -07001550 LOG(WARNING) << "Skipping class " << klass->PrettyDescriptor() << " from "
Jeff Hao0e49b422013-11-08 12:16:56 -08001551 << dex_file.GetLocation() << " previously found in "
1552 << original_dex_file.GetLocation();
1553 }
1554 return true;
1555 }
1556 return false;
1557}
1558
Mathieu Chartier70b63482014-06-27 17:19:04 -07001559static void CheckAndClearResolveException(Thread* self)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001560 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartier70b63482014-06-27 17:19:04 -07001561 CHECK(self->IsExceptionPending());
Nicolas Geoffray14691c52015-03-05 10:40:17 +00001562 mirror::Throwable* exception = self->GetException();
Ian Rogers1ff3c982014-08-12 02:30:58 -07001563 std::string temp;
1564 const char* descriptor = exception->GetClass()->GetDescriptor(&temp);
1565 const char* expected_exceptions[] = {
1566 "Ljava/lang/IllegalAccessError;",
1567 "Ljava/lang/IncompatibleClassChangeError;",
1568 "Ljava/lang/InstantiationError;",
Brian Carlstrom898fcb52014-08-25 23:07:30 -07001569 "Ljava/lang/LinkageError;",
Ian Rogers1ff3c982014-08-12 02:30:58 -07001570 "Ljava/lang/NoClassDefFoundError;",
1571 "Ljava/lang/NoSuchFieldError;",
1572 "Ljava/lang/NoSuchMethodError;"
1573 };
1574 bool found = false;
1575 for (size_t i = 0; (found == false) && (i < arraysize(expected_exceptions)); ++i) {
1576 if (strcmp(descriptor, expected_exceptions[i]) == 0) {
1577 found = true;
1578 }
1579 }
1580 if (!found) {
Brian Carlstrom898fcb52014-08-25 23:07:30 -07001581 LOG(FATAL) << "Unexpected exception " << exception->Dump();
Mathieu Chartier70b63482014-06-27 17:19:04 -07001582 }
1583 self->ClearException();
1584}
1585
Mathieu Chartierb5d38612016-04-07 10:52:52 -07001586bool CompilerDriver::RequiresConstructorBarrier(const DexFile& dex_file,
1587 uint16_t class_def_idx) const {
Mathieu Chartier18e26872018-06-04 17:19:02 -07001588 ClassAccessor accessor(dex_file, class_def_idx);
Mathieu Chartierb5d38612016-04-07 10:52:52 -07001589 // We require a constructor barrier if there are final instance fields.
Mathieu Chartier18e26872018-06-04 17:19:02 -07001590 for (const ClassAccessor::Field& field : accessor.GetInstanceFields()) {
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001591 if (field.IsFinal()) {
Mathieu Chartier18e26872018-06-04 17:19:02 -07001592 return true;
Mathieu Chartierb5d38612016-04-07 10:52:52 -07001593 }
Mathieu Chartier18e26872018-06-04 17:19:02 -07001594 }
1595 return false;
Mathieu Chartierb5d38612016-04-07 10:52:52 -07001596}
1597
Mathieu Chartier90443472015-07-16 20:32:27 -07001598class ResolveClassFieldsAndMethodsVisitor : public CompilationVisitor {
1599 public:
1600 explicit ResolveClassFieldsAndMethodsVisitor(const ParallelCompilationManager* manager)
1601 : manager_(manager) {}
Brian Carlstrom7940e442013-07-12 13:46:57 -07001602
Roland Levillainbbc6e7e2018-08-24 16:58:47 +01001603 void Visit(size_t class_def_index) override REQUIRES(!Locks::mutator_lock_) {
Andreas Gampe9b827ab2017-12-07 19:32:48 -08001604 ScopedTrace trace(__FUNCTION__);
Mathieu Chartier90443472015-07-16 20:32:27 -07001605 Thread* const self = Thread::Current();
1606 jobject jclass_loader = manager_->GetClassLoader();
1607 const DexFile& dex_file = *manager_->GetDexFile();
1608 ClassLinker* class_linker = manager_->GetClassLinker();
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001609
Mathieu Chartier90443472015-07-16 20:32:27 -07001610 // Method and Field are the worst. We can't resolve without either
1611 // context from the code use (to disambiguate virtual vs direct
1612 // method and instance vs static field) or from class
1613 // definitions. While the compiler will resolve what it can as it
1614 // needs it, here we try to resolve fields and methods used in class
1615 // definitions, since many of them many never be referenced by
1616 // generated code.
1617 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
1618 ScopedObjectAccess soa(self);
1619 StackHandleScope<2> hs(soa.Self());
1620 Handle<mirror::ClassLoader> class_loader(
Mathieu Chartier0795f232016-09-27 18:43:30 -07001621 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader)));
Mathieu Chartier673ed3d2015-08-28 14:56:43 -07001622 Handle<mirror::DexCache> dex_cache(hs.NewHandle(class_linker->FindDexCache(
Vladimir Markocd556b02017-02-03 11:47:34 +00001623 soa.Self(), dex_file)));
Mathieu Chartier90443472015-07-16 20:32:27 -07001624 // Resolve the class.
Vladimir Marko28e012a2017-12-07 11:22:59 +00001625 ObjPtr<mirror::Class> klass =
Vladimir Marko666ee3d2017-12-11 18:37:36 +00001626 class_linker->ResolveType(class_def.class_idx_, dex_cache, class_loader);
Mathieu Chartier90443472015-07-16 20:32:27 -07001627 bool resolve_fields_and_methods;
1628 if (klass == nullptr) {
1629 // Class couldn't be resolved, for example, super-class is in a different dex file. Don't
1630 // attempt to resolve methods and fields when there is no declaring class.
1631 CheckAndClearResolveException(soa.Self());
1632 resolve_fields_and_methods = false;
1633 } else {
1634 // We successfully resolved a class, should we skip it?
1635 if (SkipClass(jclass_loader, dex_file, klass)) {
1636 return;
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001637 }
Mathieu Chartier90443472015-07-16 20:32:27 -07001638 // We want to resolve the methods and fields eagerly.
1639 resolve_fields_and_methods = true;
Ian Rogers68b56852014-08-29 20:19:11 -07001640 }
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001641 // If an instance field is final then we need to have a barrier on the return, static final
1642 // fields are assigned within the lock held for class initialization.
1643 bool requires_constructor_barrier = false;
1644
Mathieu Chartier18e26872018-06-04 17:19:02 -07001645 ClassAccessor accessor(dex_file, class_def_index);
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001646 // Optionally resolve fields and methods and figure out if we need a constructor barrier.
1647 auto method_visitor = [&](const ClassAccessor::Method& method)
1648 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartier90443472015-07-16 20:32:27 -07001649 if (resolve_fields_and_methods) {
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001650 ArtMethod* resolved = class_linker->ResolveMethod<ClassLinker::ResolveMode::kNoChecks>(
1651 method.GetIndex(),
1652 dex_cache,
1653 class_loader,
1654 /* referrer */ nullptr,
1655 method.GetInvokeType(class_def.access_flags_));
1656 if (resolved == nullptr) {
1657 CheckAndClearResolveException(soa.Self());
Mathieu Chartier90443472015-07-16 20:32:27 -07001658 }
Mathieu Chartier90443472015-07-16 20:32:27 -07001659 }
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001660 };
1661 accessor.VisitFieldsAndMethods(
1662 // static fields
1663 [&](ClassAccessor::Field& field) REQUIRES_SHARED(Locks::mutator_lock_) {
1664 if (resolve_fields_and_methods) {
1665 ArtField* resolved = class_linker->ResolveField(
1666 field.GetIndex(), dex_cache, class_loader, /* is_static */ true);
1667 if (resolved == nullptr) {
1668 CheckAndClearResolveException(soa.Self());
1669 }
1670 }
1671 },
1672 // instance fields
1673 [&](ClassAccessor::Field& field) REQUIRES_SHARED(Locks::mutator_lock_) {
1674 if (field.IsFinal()) {
1675 // We require a constructor barrier if there are final instance fields.
1676 requires_constructor_barrier = true;
1677 }
1678 if (resolve_fields_and_methods) {
1679 ArtField* resolved = class_linker->ResolveField(
1680 field.GetIndex(), dex_cache, class_loader, /* is_static */ false);
1681 if (resolved == nullptr) {
1682 CheckAndClearResolveException(soa.Self());
1683 }
1684 }
1685 },
1686 /*direct methods*/ method_visitor,
1687 /*virtual methods*/ method_visitor);
Mathieu Chartierc4ae9162016-04-07 13:19:19 -07001688 manager_->GetCompiler()->SetRequiresConstructorBarrier(self,
1689 &dex_file,
1690 class_def_index,
1691 requires_constructor_barrier);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001692 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001693
Mathieu Chartier90443472015-07-16 20:32:27 -07001694 private:
1695 const ParallelCompilationManager* const manager_;
1696};
1697
1698class ResolveTypeVisitor : public CompilationVisitor {
1699 public:
1700 explicit ResolveTypeVisitor(const ParallelCompilationManager* manager) : manager_(manager) {
1701 }
Roland Levillainbbc6e7e2018-08-24 16:58:47 +01001702 void Visit(size_t type_idx) override REQUIRES(!Locks::mutator_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001703 // Class derived values are more complicated, they require the linker and loader.
Mathieu Chartier90443472015-07-16 20:32:27 -07001704 ScopedObjectAccess soa(Thread::Current());
1705 ClassLinker* class_linker = manager_->GetClassLinker();
1706 const DexFile& dex_file = *manager_->GetDexFile();
1707 StackHandleScope<2> hs(soa.Self());
Mathieu Chartier90443472015-07-16 20:32:27 -07001708 Handle<mirror::ClassLoader> class_loader(
Mathieu Chartier0795f232016-09-27 18:43:30 -07001709 hs.NewHandle(soa.Decode<mirror::ClassLoader>(manager_->GetClassLoader())));
Mathieu Chartierd57d4542015-10-14 10:55:30 -07001710 Handle<mirror::DexCache> dex_cache(hs.NewHandle(class_linker->RegisterDexFile(
1711 dex_file,
Mathieu Chartierf284d442016-06-02 11:48:30 -07001712 class_loader.Get())));
Andreas Gampefa4333d2017-02-14 11:10:34 -08001713 ObjPtr<mirror::Class> klass = (dex_cache != nullptr)
Vladimir Marko666ee3d2017-12-11 18:37:36 +00001714 ? class_linker->ResolveType(dex::TypeIndex(type_idx), dex_cache, class_loader)
Vladimir Markocd556b02017-02-03 11:47:34 +00001715 : nullptr;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001716
Mathieu Chartier90443472015-07-16 20:32:27 -07001717 if (klass == nullptr) {
1718 soa.Self()->AssertPendingException();
1719 mirror::Throwable* exception = soa.Self()->GetException();
1720 VLOG(compiler) << "Exception during type resolution: " << exception->Dump();
1721 if (exception->GetClass()->DescriptorEquals("Ljava/lang/OutOfMemoryError;")) {
1722 // There's little point continuing compilation if the heap is exhausted.
1723 LOG(FATAL) << "Out of memory during type resolution for compilation";
1724 }
1725 soa.Self()->ClearException();
Ian Rogersa436fde2013-08-27 23:34:06 -07001726 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001727 }
Mathieu Chartier90443472015-07-16 20:32:27 -07001728
1729 private:
1730 const ParallelCompilationManager* const manager_;
1731};
Brian Carlstrom7940e442013-07-12 13:46:57 -07001732
Andreas Gampeace0dc12016-01-20 13:33:13 -08001733void CompilerDriver::ResolveDexFile(jobject class_loader,
1734 const DexFile& dex_file,
Andreas Gampede7b4362014-07-28 18:38:57 -07001735 const std::vector<const DexFile*>& dex_files,
Andreas Gampeace0dc12016-01-20 13:33:13 -08001736 ThreadPool* thread_pool,
1737 size_t thread_count,
1738 TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001739 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
1740
1741 // TODO: we could resolve strings here, although the string table is largely filled with class
1742 // and method names.
1743
Andreas Gampede7b4362014-07-28 18:38:57 -07001744 ParallelCompilationManager context(class_linker, class_loader, this, &dex_file, dex_files,
1745 thread_pool);
Vladimir Markoaad75c62016-10-03 08:46:48 +00001746 if (GetCompilerOptions().IsBootImage()) {
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001747 // For images we resolve all types, such as array, whereas for applications just those with
1748 // classdefs are resolved by ResolveClassFieldsAndMethods.
Mathieu Chartierf5997b42014-06-20 10:37:54 -07001749 TimingLogger::ScopedTiming t("Resolve Types", timings);
Mathieu Chartier90443472015-07-16 20:32:27 -07001750 ResolveTypeVisitor visitor(&context);
Andreas Gampeace0dc12016-01-20 13:33:13 -08001751 context.ForAll(0, dex_file.NumTypeIds(), &visitor, thread_count);
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001752 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001753
Mathieu Chartierf5997b42014-06-20 10:37:54 -07001754 TimingLogger::ScopedTiming t("Resolve MethodsAndFields", timings);
Mathieu Chartier90443472015-07-16 20:32:27 -07001755 ResolveClassFieldsAndMethodsVisitor visitor(&context);
Andreas Gampeace0dc12016-01-20 13:33:13 -08001756 context.ForAll(0, dex_file.NumClassDefs(), &visitor, thread_count);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001757}
1758
Andreas Gampeace0dc12016-01-20 13:33:13 -08001759void CompilerDriver::SetVerified(jobject class_loader,
1760 const std::vector<const DexFile*>& dex_files,
1761 TimingLogger* timings) {
1762 // This can be run in parallel.
Mathieu Chartier90443472015-07-16 20:32:27 -07001763 for (const DexFile* dex_file : dex_files) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001764 CHECK(dex_file != nullptr);
Andreas Gampeace0dc12016-01-20 13:33:13 -08001765 SetVerifiedDexFile(class_loader,
1766 *dex_file,
1767 dex_files,
1768 parallel_thread_pool_.get(),
1769 parallel_thread_count_,
1770 timings);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001771 }
1772}
1773
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001774static void LoadAndUpdateStatus(const ClassAccessor& accessor,
Vladimir Marko2c64a832018-01-04 11:31:56 +00001775 ClassStatus status,
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001776 Handle<mirror::ClassLoader> class_loader,
1777 Thread* self)
1778 REQUIRES_SHARED(Locks::mutator_lock_) {
1779 StackHandleScope<1> hs(self);
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001780 const char* descriptor = accessor.GetDescriptor();
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001781 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
1782 Handle<mirror::Class> cls(hs.NewHandle<mirror::Class>(
1783 class_linker->FindClass(self, descriptor, class_loader)));
Andreas Gampefa4333d2017-02-14 11:10:34 -08001784 if (cls != nullptr) {
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001785 // Check that the class is resolved with the current dex file. We might get
1786 // a boot image class, or a class in a different dex file for multidex, and
1787 // we should not update the status in that case.
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001788 if (&cls->GetDexFile() == &accessor.GetDexFile()) {
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001789 ObjectLock<mirror::Class> lock(self, cls);
1790 mirror::Class::SetStatus(cls, status, self);
1791 }
1792 } else {
1793 DCHECK(self->IsExceptionPending());
1794 self->ClearException();
1795 }
1796}
1797
Nicolas Geoffray74981052017-01-16 17:54:09 +00001798bool CompilerDriver::FastVerify(jobject jclass_loader,
1799 const std::vector<const DexFile*>& dex_files,
1800 TimingLogger* timings) {
Nicolas Geoffrayb0bbe8e2016-11-19 10:42:37 +00001801 verifier::VerifierDeps* verifier_deps =
1802 Runtime::Current()->GetCompilerCallbacks()->GetVerifierDeps();
Mathieu Chartier72041a02017-07-14 18:23:25 -07001803 // If there exist VerifierDeps that aren't the ones we just created to output, use them to verify.
1804 if (verifier_deps == nullptr || verifier_deps->OutputOnly()) {
Nicolas Geoffray74981052017-01-16 17:54:09 +00001805 return false;
1806 }
1807 TimingLogger::ScopedTiming t("Fast Verify", timings);
1808 ScopedObjectAccess soa(Thread::Current());
1809 StackHandleScope<2> hs(soa.Self());
1810 Handle<mirror::ClassLoader> class_loader(
1811 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader)));
Nicolas Geoffray74981052017-01-16 17:54:09 +00001812 if (!verifier_deps->ValidateDependencies(class_loader, soa.Self())) {
1813 return false;
1814 }
1815
Nicolas Geoffray49cda062017-04-21 13:08:25 +01001816 bool compiler_only_verifies = !GetCompilerOptions().IsAnyCompilationEnabled();
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001817
Nicolas Geoffray74981052017-01-16 17:54:09 +00001818 // We successfully validated the dependencies, now update class status
1819 // of verified classes. Note that the dependencies also record which classes
1820 // could not be fully verified; we could try again, but that would hurt verification
1821 // time. So instead we assume these classes still need to be verified at
1822 // runtime.
1823 for (const DexFile* dex_file : dex_files) {
Mathieu Chartierbf755fe2017-08-01 13:42:56 -07001824 // Fetch the list of unverified classes.
1825 const std::set<dex::TypeIndex>& unverified_classes =
Nicolas Geoffray74981052017-01-16 17:54:09 +00001826 verifier_deps->GetUnverifiedClasses(*dex_file);
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001827 for (ClassAccessor accessor : dex_file->GetClasses()) {
1828 if (unverified_classes.find(accessor.GetClassIdx()) == unverified_classes.end()) {
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001829 if (compiler_only_verifies) {
Nicolas Geoffray74981052017-01-16 17:54:09 +00001830 // Just update the compiled_classes_ map. The compiler doesn't need to resolve
1831 // the type.
Mathieu Chartier18e26872018-06-04 17:19:02 -07001832 ClassReference ref(dex_file, accessor.GetClassDefIndex());
Mathieu Chartier2eabc612018-05-25 14:31:16 -07001833 const ClassStatus existing = ClassStatus::kNotReady;
Mathieu Chartier1a088d42017-07-18 11:43:57 -07001834 ClassStateTable::InsertResult result =
Vladimir Marko2c64a832018-01-04 11:31:56 +00001835 compiled_classes_.Insert(ref, existing, ClassStatus::kVerified);
Mathieu Chartier2eabc612018-05-25 14:31:16 -07001836 CHECK_EQ(result, ClassStateTable::kInsertResultSuccess) << ref.dex_file->GetLocation();
Nicolas Geoffray74981052017-01-16 17:54:09 +00001837 } else {
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001838 // Update the class status, so later compilation stages know they don't need to verify
Nicolas Geoffray74981052017-01-16 17:54:09 +00001839 // the class.
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001840 LoadAndUpdateStatus(accessor, ClassStatus::kVerified, class_loader, soa.Self());
Nicolas Geoffray74981052017-01-16 17:54:09 +00001841 // Create `VerifiedMethod`s for each methods, the compiler expects one for
1842 // quickening or compiling.
1843 // Note that this means:
1844 // - We're only going to compile methods that did verify.
1845 // - Quickening will not do checkcast ellision.
1846 // TODO(ngeoffray): Reconsider this once we refactor compiler filters.
Mathieu Chartier0d896bd2018-05-25 00:20:27 -07001847 for (const ClassAccessor::Method& method : accessor.GetMethods()) {
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001848 verification_results_->CreateVerifiedMethodFor(method.GetReference());
Mathieu Chartier0d896bd2018-05-25 00:20:27 -07001849 }
Nicolas Geoffray6bb7f1b2016-11-03 10:52:49 +00001850 }
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001851 } else if (!compiler_only_verifies) {
1852 // Make sure later compilation stages know they should not try to verify
1853 // this class again.
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001854 LoadAndUpdateStatus(accessor,
Vladimir Marko2c64a832018-01-04 11:31:56 +00001855 ClassStatus::kRetryVerificationAtRuntime,
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001856 class_loader,
1857 soa.Self());
Nicolas Geoffray6bb7f1b2016-11-03 10:52:49 +00001858 }
Nicolas Geoffray6bb7f1b2016-11-03 10:52:49 +00001859 }
1860 }
Nicolas Geoffray74981052017-01-16 17:54:09 +00001861 return true;
1862}
1863
1864void CompilerDriver::Verify(jobject jclass_loader,
1865 const std::vector<const DexFile*>& dex_files,
1866 TimingLogger* timings) {
1867 if (FastVerify(jclass_loader, dex_files, timings)) {
1868 return;
1869 }
Nicolas Geoffray6bb7f1b2016-11-03 10:52:49 +00001870
Nicolas Geoffrayb0bbe8e2016-11-19 10:42:37 +00001871 // If there is no existing `verifier_deps` (because of non-existing vdex), or
1872 // the existing `verifier_deps` is not valid anymore, create a new one for
Nicolas Geoffray6bb7f1b2016-11-03 10:52:49 +00001873 // non boot image compilation. The verifier will need it to record the new dependencies.
1874 // Then dex2oat can update the vdex file with these new dependencies.
1875 if (!GetCompilerOptions().IsBootImage()) {
Mathieu Chartier72041a02017-07-14 18:23:25 -07001876 // Dex2oat creates the verifier deps.
Nicolas Geoffray340dafa2016-11-18 16:03:10 +00001877 // Create the main VerifierDeps, and set it to this thread.
Mathieu Chartier72041a02017-07-14 18:23:25 -07001878 verifier::VerifierDeps* verifier_deps =
1879 Runtime::Current()->GetCompilerCallbacks()->GetVerifierDeps();
1880 CHECK(verifier_deps != nullptr);
Nicolas Geoffrayb0bbe8e2016-11-19 10:42:37 +00001881 Thread::Current()->SetVerifierDeps(verifier_deps);
Nicolas Geoffray340dafa2016-11-18 16:03:10 +00001882 // Create per-thread VerifierDeps to avoid contention on the main one.
1883 // We will merge them after verification.
1884 for (ThreadPoolWorker* worker : parallel_thread_pool_->GetWorkers()) {
Vladimir Marko213ee2d2018-06-22 11:56:34 +01001885 worker->GetThread()->SetVerifierDeps(
1886 new verifier::VerifierDeps(GetCompilerOptions().GetDexFilesForOatFile()));
Nicolas Geoffray340dafa2016-11-18 16:03:10 +00001887 }
Nicolas Geoffray6bb7f1b2016-11-03 10:52:49 +00001888 }
Nicolas Geoffray74981052017-01-16 17:54:09 +00001889
Nicolas Geoffray46847392017-04-28 14:56:39 +01001890 // Verification updates VerifierDeps and needs to run single-threaded to be deterministic.
1891 bool force_determinism = GetCompilerOptions().IsForceDeterminism();
1892 ThreadPool* verify_thread_pool =
1893 force_determinism ? single_thread_pool_.get() : parallel_thread_pool_.get();
1894 size_t verify_thread_count = force_determinism ? 1U : parallel_thread_count_;
Mathieu Chartier90443472015-07-16 20:32:27 -07001895 for (const DexFile* dex_file : dex_files) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001896 CHECK(dex_file != nullptr);
Nicolas Geoffray6bb7f1b2016-11-03 10:52:49 +00001897 VerifyDexFile(jclass_loader,
Andreas Gampeace0dc12016-01-20 13:33:13 -08001898 *dex_file,
1899 dex_files,
Nicolas Geoffray46847392017-04-28 14:56:39 +01001900 verify_thread_pool,
1901 verify_thread_count,
Andreas Gampeace0dc12016-01-20 13:33:13 -08001902 timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001903 }
Nicolas Geoffray340dafa2016-11-18 16:03:10 +00001904
1905 if (!GetCompilerOptions().IsBootImage()) {
Nicolas Geoffray340dafa2016-11-18 16:03:10 +00001906 // Merge all VerifierDeps into the main one.
Nicolas Geoffray74981052017-01-16 17:54:09 +00001907 verifier::VerifierDeps* verifier_deps = Thread::Current()->GetVerifierDeps();
Nicolas Geoffray340dafa2016-11-18 16:03:10 +00001908 for (ThreadPoolWorker* worker : parallel_thread_pool_->GetWorkers()) {
1909 verifier::VerifierDeps* thread_deps = worker->GetThread()->GetVerifierDeps();
1910 worker->GetThread()->SetVerifierDeps(nullptr);
Vladimir Marko213ee2d2018-06-22 11:56:34 +01001911 verifier_deps->MergeWith(*thread_deps, GetCompilerOptions().GetDexFilesForOatFile());
Nicolas Geoffray340dafa2016-11-18 16:03:10 +00001912 delete thread_deps;
1913 }
1914 Thread::Current()->SetVerifierDeps(nullptr);
1915 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001916}
1917
Mathieu Chartier90443472015-07-16 20:32:27 -07001918class VerifyClassVisitor : public CompilationVisitor {
1919 public:
Andreas Gampe5fd66d02016-09-12 20:22:19 -07001920 VerifyClassVisitor(const ParallelCompilationManager* manager, verifier::HardFailLogMode log_level)
Andreas Gampe6cc23ac2018-08-24 15:22:43 -07001921 : manager_(manager),
1922 log_level_(log_level),
1923 sdk_version_(Runtime::Current()->GetTargetSdkVersion()) {}
Brian Carlstrom7940e442013-07-12 13:46:57 -07001924
Roland Levillainf73caca2018-08-24 17:19:07 +01001925 void Visit(size_t class_def_index) REQUIRES(!Locks::mutator_lock_) override {
Andreas Gampe9b827ab2017-12-07 19:32:48 -08001926 ScopedTrace trace(__FUNCTION__);
Mathieu Chartier90443472015-07-16 20:32:27 -07001927 ScopedObjectAccess soa(Thread::Current());
1928 const DexFile& dex_file = *manager_->GetDexFile();
1929 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
1930 const char* descriptor = dex_file.GetClassDescriptor(class_def);
1931 ClassLinker* class_linker = manager_->GetClassLinker();
1932 jobject jclass_loader = manager_->GetClassLoader();
1933 StackHandleScope<3> hs(soa.Self());
1934 Handle<mirror::ClassLoader> class_loader(
Mathieu Chartier0795f232016-09-27 18:43:30 -07001935 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader)));
Mathieu Chartier90443472015-07-16 20:32:27 -07001936 Handle<mirror::Class> klass(
1937 hs.NewHandle(class_linker->FindClass(soa.Self(), descriptor, class_loader)));
Andreas Gampe6d7abbd2017-04-24 13:19:09 -07001938 verifier::FailureKind failure_kind;
Andreas Gampefa4333d2017-02-14 11:10:34 -08001939 if (klass == nullptr) {
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001940 CHECK(soa.Self()->IsExceptionPending());
1941 soa.Self()->ClearException();
Mathieu Chartier90443472015-07-16 20:32:27 -07001942
1943 /*
1944 * At compile time, we can still structurally verify the class even if FindClass fails.
1945 * This is to ensure the class is structurally sound for compilation. An unsound class
1946 * will be rejected by the verifier and later skipped during compilation in the compiler.
1947 */
Mathieu Chartier673ed3d2015-08-28 14:56:43 -07001948 Handle<mirror::DexCache> dex_cache(hs.NewHandle(class_linker->FindDexCache(
Vladimir Markocd556b02017-02-03 11:47:34 +00001949 soa.Self(), dex_file)));
Mathieu Chartier90443472015-07-16 20:32:27 -07001950 std::string error_msg;
Nicolas Geoffray08025182016-10-25 17:20:18 +01001951 failure_kind =
1952 verifier::MethodVerifier::VerifyClass(soa.Self(),
Andreas Gampeec6e6c12015-11-05 20:39:56 -08001953 &dex_file,
1954 dex_cache,
1955 class_loader,
David Brazdil15fc7292016-09-02 14:13:18 +01001956 class_def,
Andreas Gampe53e32d12015-12-09 21:03:23 -08001957 Runtime::Current()->GetCompilerCallbacks(),
Andreas Gampeec6e6c12015-11-05 20:39:56 -08001958 true /* allow soft failures */,
Andreas Gampe7fe30232016-03-25 16:58:00 -07001959 log_level_,
Andreas Gampe6cc23ac2018-08-24 15:22:43 -07001960 sdk_version_,
Nicolas Geoffray08025182016-10-25 17:20:18 +01001961 &error_msg);
Andreas Gampe6d7abbd2017-04-24 13:19:09 -07001962 if (failure_kind == verifier::FailureKind::kHardFailure) {
Mathieu Chartier90443472015-07-16 20:32:27 -07001963 LOG(ERROR) << "Verification failed on class " << PrettyDescriptor(descriptor)
1964 << " because: " << error_msg;
1965 manager_->GetCompiler()->SetHadHardVerifierFailure();
Andreas Gampef39208f2017-10-19 15:06:59 -07001966 } else if (failure_kind == verifier::FailureKind::kSoftFailure) {
1967 manager_->GetCompiler()->AddSoftVerifierFailure();
Nicolas Geoffray7cc3ae52017-03-07 14:33:37 +00001968 } else {
1969 // Force a soft failure for the VerifierDeps. This is a sanity measure, as
1970 // the vdex file already records that the class hasn't been resolved. It avoids
1971 // trying to do future verification optimizations when processing the vdex file.
Andreas Gampef39208f2017-10-19 15:06:59 -07001972 DCHECK(failure_kind == verifier::FailureKind::kNoFailure) << failure_kind;
Andreas Gampe6d7abbd2017-04-24 13:19:09 -07001973 failure_kind = verifier::FailureKind::kSoftFailure;
Mathieu Chartier90443472015-07-16 20:32:27 -07001974 }
Andreas Gampebb30d5d2018-04-23 09:59:25 -07001975 } else if (&klass->GetDexFile() != &dex_file) {
1976 // Skip a duplicate class (as the resolved class is from another, earlier dex file).
1977 return; // Do not update state.
Mathieu Chartier90443472015-07-16 20:32:27 -07001978 } else if (!SkipClass(jclass_loader, dex_file, klass.Get())) {
David Sehr709b0702016-10-13 09:12:37 -07001979 CHECK(klass->IsResolved()) << klass->PrettyClass();
Nicolas Geoffray08025182016-10-25 17:20:18 +01001980 failure_kind = class_linker->VerifyClass(soa.Self(), klass, log_level_);
Mathieu Chartier90443472015-07-16 20:32:27 -07001981
1982 if (klass->IsErroneous()) {
1983 // ClassLinker::VerifyClass throws, which isn't useful in the compiler.
1984 CHECK(soa.Self()->IsExceptionPending());
1985 soa.Self()->ClearException();
1986 manager_->GetCompiler()->SetHadHardVerifierFailure();
Andreas Gampef39208f2017-10-19 15:06:59 -07001987 } else if (failure_kind == verifier::FailureKind::kSoftFailure) {
1988 manager_->GetCompiler()->AddSoftVerifierFailure();
Mathieu Chartier90443472015-07-16 20:32:27 -07001989 }
1990
Nicolas Geoffray7cc3ae52017-03-07 14:33:37 +00001991 CHECK(klass->ShouldVerifyAtRuntime() || klass->IsVerified() || klass->IsErroneous())
David Sehr709b0702016-10-13 09:12:37 -07001992 << klass->PrettyDescriptor() << ": state=" << klass->GetStatus();
Mathieu Chartier90443472015-07-16 20:32:27 -07001993
Nicolas Geoffrayc7da1d62017-04-19 09:36:24 +01001994 // Class has a meaningful status for the compiler now, record it.
1995 ClassReference ref(manager_->GetDexFile(), class_def_index);
1996 manager_->GetCompiler()->RecordClassStatus(ref, klass->GetStatus());
1997
Andreas Gamped278cb42017-11-22 14:13:00 -08001998 // It is *very* problematic if there are resolution errors in the boot classpath.
1999 //
2000 // It is also bad if classes fail verification. For example, we rely on things working
2001 // OK without verification when the decryption dialog is brought up. It is thus highly
2002 // recommended to compile the boot classpath with
2003 // --abort-on-hard-verifier-error --abort-on-soft-verifier-error
2004 // which is the default build system configuration.
Narayan Kamathe3eae5e2016-10-27 11:47:30 +01002005 if (kIsDebugBuild) {
Orion Hodsonc5e0d3f2017-08-22 19:00:04 +01002006 if (manager_->GetCompiler()->GetCompilerOptions().IsBootImage()) {
Andreas Gamped278cb42017-11-22 14:13:00 -08002007 if (!klass->IsResolved() || klass->IsErroneous()) {
Andreas Gampe12fadcd2017-08-03 05:06:28 -07002008 LOG(FATAL) << "Boot classpath class " << klass->PrettyClass()
Andreas Gamped278cb42017-11-22 14:13:00 -08002009 << " failed to resolve/is erroneous: state= " << klass->GetStatus();
2010 UNREACHABLE();
Andreas Gampe12fadcd2017-08-03 05:06:28 -07002011 }
Narayan Kamathe3eae5e2016-10-27 11:47:30 +01002012 }
Nicolas Geoffray7cc3ae52017-03-07 14:33:37 +00002013 if (klass->IsVerified()) {
Andreas Gampe6d7abbd2017-04-24 13:19:09 -07002014 DCHECK_EQ(failure_kind, verifier::FailureKind::kNoFailure);
Nicolas Geoffray7cc3ae52017-03-07 14:33:37 +00002015 } else if (klass->ShouldVerifyAtRuntime()) {
Andreas Gampe6d7abbd2017-04-24 13:19:09 -07002016 DCHECK_EQ(failure_kind, verifier::FailureKind::kSoftFailure);
Nicolas Geoffray7cc3ae52017-03-07 14:33:37 +00002017 } else {
Andreas Gampe6d7abbd2017-04-24 13:19:09 -07002018 DCHECK_EQ(failure_kind, verifier::FailureKind::kHardFailure);
Nicolas Geoffray7cc3ae52017-03-07 14:33:37 +00002019 }
Narayan Kamathe3eae5e2016-10-27 11:47:30 +01002020 }
Nicolas Geoffray08025182016-10-25 17:20:18 +01002021 } else {
2022 // Make the skip a soft failure, essentially being considered as verify at runtime.
Andreas Gampe6d7abbd2017-04-24 13:19:09 -07002023 failure_kind = verifier::FailureKind::kSoftFailure;
Ian Rogerse6bb3b22013-08-19 21:51:45 -07002024 }
Nicolas Geoffray08025182016-10-25 17:20:18 +01002025 verifier::VerifierDeps::MaybeRecordVerificationStatus(
2026 dex_file, class_def.class_idx_, failure_kind);
Mathieu Chartier90443472015-07-16 20:32:27 -07002027 soa.Self()->AssertNoPendingException();
Brian Carlstrom7940e442013-07-12 13:46:57 -07002028 }
Mathieu Chartier90443472015-07-16 20:32:27 -07002029
2030 private:
2031 const ParallelCompilationManager* const manager_;
Andreas Gampe5fd66d02016-09-12 20:22:19 -07002032 const verifier::HardFailLogMode log_level_;
Andreas Gampe6cc23ac2018-08-24 15:22:43 -07002033 const uint32_t sdk_version_;
Mathieu Chartier90443472015-07-16 20:32:27 -07002034};
Brian Carlstrom7940e442013-07-12 13:46:57 -07002035
Andreas Gampeace0dc12016-01-20 13:33:13 -08002036void CompilerDriver::VerifyDexFile(jobject class_loader,
2037 const DexFile& dex_file,
Andreas Gampede7b4362014-07-28 18:38:57 -07002038 const std::vector<const DexFile*>& dex_files,
Andreas Gampeace0dc12016-01-20 13:33:13 -08002039 ThreadPool* thread_pool,
2040 size_t thread_count,
2041 TimingLogger* timings) {
Mathieu Chartierf5997b42014-06-20 10:37:54 -07002042 TimingLogger::ScopedTiming t("Verify Dex File", timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002043 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Andreas Gampede7b4362014-07-28 18:38:57 -07002044 ParallelCompilationManager context(class_linker, class_loader, this, &dex_file, dex_files,
2045 thread_pool);
Andreas Gampef39208f2017-10-19 15:06:59 -07002046 bool abort_on_verifier_failures = GetCompilerOptions().AbortOnHardVerifierFailure()
2047 || GetCompilerOptions().AbortOnSoftVerifierFailure();
2048 verifier::HardFailLogMode log_level = abort_on_verifier_failures
Andreas Gampe5fd66d02016-09-12 20:22:19 -07002049 ? verifier::HardFailLogMode::kLogInternalFatal
2050 : verifier::HardFailLogMode::kLogWarning;
Andreas Gampe7fe30232016-03-25 16:58:00 -07002051 VerifyClassVisitor visitor(&context, log_level);
Andreas Gampeace0dc12016-01-20 13:33:13 -08002052 context.ForAll(0, dex_file.NumClassDefs(), &visitor, thread_count);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002053}
2054
Mathieu Chartier90443472015-07-16 20:32:27 -07002055class SetVerifiedClassVisitor : public CompilationVisitor {
2056 public:
2057 explicit SetVerifiedClassVisitor(const ParallelCompilationManager* manager) : manager_(manager) {}
2058
Roland Levillainf73caca2018-08-24 17:19:07 +01002059 void Visit(size_t class_def_index) REQUIRES(!Locks::mutator_lock_) override {
Andreas Gampe9b827ab2017-12-07 19:32:48 -08002060 ScopedTrace trace(__FUNCTION__);
Mathieu Chartier90443472015-07-16 20:32:27 -07002061 ScopedObjectAccess soa(Thread::Current());
2062 const DexFile& dex_file = *manager_->GetDexFile();
2063 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
2064 const char* descriptor = dex_file.GetClassDescriptor(class_def);
2065 ClassLinker* class_linker = manager_->GetClassLinker();
2066 jobject jclass_loader = manager_->GetClassLoader();
2067 StackHandleScope<3> hs(soa.Self());
2068 Handle<mirror::ClassLoader> class_loader(
Mathieu Chartier0795f232016-09-27 18:43:30 -07002069 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader)));
Mathieu Chartier90443472015-07-16 20:32:27 -07002070 Handle<mirror::Class> klass(
2071 hs.NewHandle(class_linker->FindClass(soa.Self(), descriptor, class_loader)));
2072 // Class might have failed resolution. Then don't set it to verified.
Andreas Gampefa4333d2017-02-14 11:10:34 -08002073 if (klass != nullptr) {
Mathieu Chartier90443472015-07-16 20:32:27 -07002074 // Only do this if the class is resolved. If even resolution fails, quickening will go very,
2075 // very wrong.
Vladimir Marko72ab6842017-01-20 19:32:50 +00002076 if (klass->IsResolved() && !klass->IsErroneousResolved()) {
Vladimir Marko2c64a832018-01-04 11:31:56 +00002077 if (klass->GetStatus() < ClassStatus::kVerified) {
Mathieu Chartier90443472015-07-16 20:32:27 -07002078 ObjectLock<mirror::Class> lock(soa.Self(), klass);
2079 // Set class status to verified.
Vladimir Marko2c64a832018-01-04 11:31:56 +00002080 mirror::Class::SetStatus(klass, ClassStatus::kVerified, soa.Self());
Mathieu Chartier90443472015-07-16 20:32:27 -07002081 // Mark methods as pre-verified. If we don't do this, the interpreter will run with
2082 // access checks.
Vladimir Markoa0431112018-06-25 09:32:54 +01002083 InstructionSet instruction_set =
2084 manager_->GetCompiler()->GetCompilerOptions().GetInstructionSet();
2085 klass->SetSkipAccessChecksFlagOnAllMethods(GetInstructionSetPointerSize(instruction_set));
Igor Murashkindf707e42016-02-02 16:56:50 -08002086 klass->SetVerificationAttempted();
Mathieu Chartier90443472015-07-16 20:32:27 -07002087 }
2088 // Record the final class status if necessary.
2089 ClassReference ref(manager_->GetDexFile(), class_def_index);
2090 manager_->GetCompiler()->RecordClassStatus(ref, klass->GetStatus());
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002091 }
Mathieu Chartier90443472015-07-16 20:32:27 -07002092 } else {
2093 Thread* self = soa.Self();
2094 DCHECK(self->IsExceptionPending());
2095 self->ClearException();
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002096 }
2097 }
Mathieu Chartier90443472015-07-16 20:32:27 -07002098
2099 private:
2100 const ParallelCompilationManager* const manager_;
2101};
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002102
Andreas Gampeace0dc12016-01-20 13:33:13 -08002103void CompilerDriver::SetVerifiedDexFile(jobject class_loader,
2104 const DexFile& dex_file,
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002105 const std::vector<const DexFile*>& dex_files,
Andreas Gampeace0dc12016-01-20 13:33:13 -08002106 ThreadPool* thread_pool,
2107 size_t thread_count,
2108 TimingLogger* timings) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002109 TimingLogger::ScopedTiming t("Verify Dex File", timings);
Mathieu Chartier1a088d42017-07-18 11:43:57 -07002110 if (!compiled_classes_.HaveDexFile(&dex_file)) {
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002111 compiled_classes_.AddDexFile(&dex_file);
Mathieu Chartier1a088d42017-07-18 11:43:57 -07002112 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002113 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
2114 ParallelCompilationManager context(class_linker, class_loader, this, &dex_file, dex_files,
2115 thread_pool);
Mathieu Chartier90443472015-07-16 20:32:27 -07002116 SetVerifiedClassVisitor visitor(&context);
Andreas Gampeace0dc12016-01-20 13:33:13 -08002117 context.ForAll(0, dex_file.NumClassDefs(), &visitor, thread_count);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002118}
2119
Mathieu Chartier90443472015-07-16 20:32:27 -07002120class InitializeClassVisitor : public CompilationVisitor {
2121 public:
2122 explicit InitializeClassVisitor(const ParallelCompilationManager* manager) : manager_(manager) {}
Ian Rogersfc0e94b2013-09-23 23:51:32 -07002123
Roland Levillainbbc6e7e2018-08-24 16:58:47 +01002124 void Visit(size_t class_def_index) override {
Andreas Gampe9b827ab2017-12-07 19:32:48 -08002125 ScopedTrace trace(__FUNCTION__);
Mathieu Chartier90443472015-07-16 20:32:27 -07002126 jobject jclass_loader = manager_->GetClassLoader();
2127 const DexFile& dex_file = *manager_->GetDexFile();
2128 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
2129 const DexFile::TypeId& class_type_id = dex_file.GetTypeId(class_def.class_idx_);
2130 const char* descriptor = dex_file.StringDataByIdx(class_type_id.descriptor_idx_);
Jeff Hao0e49b422013-11-08 12:16:56 -08002131
Mathieu Chartier90443472015-07-16 20:32:27 -07002132 ScopedObjectAccess soa(Thread::Current());
2133 StackHandleScope<3> hs(soa.Self());
2134 Handle<mirror::ClassLoader> class_loader(
Mathieu Chartier0795f232016-09-27 18:43:30 -07002135 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader)));
Mathieu Chartier90443472015-07-16 20:32:27 -07002136 Handle<mirror::Class> klass(
2137 hs.NewHandle(manager_->GetClassLinker()->FindClass(soa.Self(), descriptor, class_loader)));
2138
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002139 if (klass != nullptr && !SkipClass(manager_->GetClassLoader(), dex_file, klass.Get())) {
2140 TryInitializeClass(klass, class_loader);
2141 }
2142 // Clear any class not found or verification exceptions.
2143 soa.Self()->ClearException();
2144 }
2145
2146 // A helper function for initializing klass.
2147 void TryInitializeClass(Handle<mirror::Class> klass, Handle<mirror::ClassLoader>& class_loader)
2148 REQUIRES_SHARED(Locks::mutator_lock_) {
2149 const DexFile& dex_file = klass->GetDexFile();
2150 const DexFile::ClassDef* class_def = klass->GetClassDef();
2151 const DexFile::TypeId& class_type_id = dex_file.GetTypeId(class_def->class_idx_);
2152 const char* descriptor = dex_file.StringDataByIdx(class_type_id.descriptor_idx_);
2153 ScopedObjectAccessUnchecked soa(Thread::Current());
2154 StackHandleScope<3> hs(soa.Self());
Mathieu Chartierdabeb3a2017-06-12 17:10:07 -07002155 const bool is_boot_image = manager_->GetCompiler()->GetCompilerOptions().IsBootImage();
Mathieu Chartier17498e52017-06-13 11:35:04 -07002156 const bool is_app_image = manager_->GetCompiler()->GetCompilerOptions().IsAppImage();
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002157
Vladimir Marko2c64a832018-01-04 11:31:56 +00002158 ClassStatus old_status = klass->GetStatus();
Mathieu Chartier1a088d42017-07-18 11:43:57 -07002159 // Don't initialize classes in boot space when compiling app image
2160 if (is_app_image && klass->IsBootStrapClassLoaded()) {
2161 // Also return early and don't store the class status in the recorded class status.
2162 return;
2163 }
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002164 // Only try to initialize classes that were successfully verified.
2165 if (klass->IsVerified()) {
2166 // Attempt to initialize the class but bail if we either need to initialize the super-class
2167 // or static fields.
Nicolas Geoffrayabadf022017-08-03 08:25:41 +00002168 manager_->GetClassLinker()->EnsureInitialized(soa.Self(), klass, false, false);
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002169 old_status = klass->GetStatus();
2170 if (!klass->IsInitialized()) {
2171 // We don't want non-trivial class initialization occurring on multiple threads due to
2172 // deadlock problems. For example, a parent class is initialized (holding its lock) that
2173 // refers to a sub-class in its static/class initializer causing it to try to acquire the
2174 // sub-class' lock. While on a second thread the sub-class is initialized (holding its lock)
2175 // after first initializing its parents, whose locks are acquired. This leads to a
2176 // parent-to-child and a child-to-parent lock ordering and consequent potential deadlock.
2177 // We need to use an ObjectLock due to potential suspension in the interpreting code. Rather
2178 // than use a special Object for the purpose we use the Class of java.lang.Class.
2179 Handle<mirror::Class> h_klass(hs.NewHandle(klass->GetClass()));
2180 ObjectLock<mirror::Class> lock(soa.Self(), h_klass);
2181 // Attempt to initialize allowing initialization of parent classes but still not static
2182 // fields.
Chang Xinge602b1c2017-06-30 11:55:01 -07002183 // Initialize dependencies first only for app image, to make TryInitialize recursive.
2184 bool is_superclass_initialized = !is_app_image ? true :
2185 InitializeDependencies(klass, class_loader, soa.Self());
2186 if (!is_app_image || (is_app_image && is_superclass_initialized)) {
Nicolas Geoffrayabadf022017-08-03 08:25:41 +00002187 manager_->GetClassLinker()->EnsureInitialized(soa.Self(), klass, false, true);
Chang Xinge602b1c2017-06-30 11:55:01 -07002188 }
2189 // Otherwise it's in app image but superclasses can't be initialized, no need to proceed.
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002190 old_status = klass->GetStatus();
Chang Xing70f689d2017-06-08 17:16:12 -07002191
Chris Wailes0c61be42018-09-26 17:27:34 -07002192 bool too_many_encoded_fields = !is_boot_image &&
2193 klass->NumStaticFields() > kMaxEncodedFields;
2194
Mathieu Chartierdabeb3a2017-06-12 17:10:07 -07002195 // If the class was not initialized, we can proceed to see if we can initialize static
Chang Xing70f689d2017-06-08 17:16:12 -07002196 // fields. Limit the max number of encoded fields.
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002197 if (!klass->IsInitialized() &&
Mathieu Chartier17498e52017-06-13 11:35:04 -07002198 (is_app_image || is_boot_image) &&
Chang Xinge602b1c2017-06-30 11:55:01 -07002199 is_superclass_initialized &&
Chang Xing70f689d2017-06-08 17:16:12 -07002200 !too_many_encoded_fields &&
Vladimir Markodc4bcce2018-06-21 16:15:42 +01002201 manager_->GetCompiler()->GetCompilerOptions().IsImageClass(descriptor)) {
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002202 bool can_init_static_fields = false;
Mathieu Chartierdabeb3a2017-06-12 17:10:07 -07002203 if (is_boot_image) {
Mathieu Chartier90443472015-07-16 20:32:27 -07002204 // We need to initialize static fields, we only do this for image classes that aren't
Mathieu Chartierdabeb3a2017-06-12 17:10:07 -07002205 // marked with the $NoPreloadHolder (which implies this should not be initialized
2206 // early).
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002207 can_init_static_fields = !StringPiece(descriptor).ends_with("$NoPreloadHolder;");
2208 } else {
Mathieu Chartier17498e52017-06-13 11:35:04 -07002209 CHECK(is_app_image);
Mathieu Chartierdabeb3a2017-06-12 17:10:07 -07002210 // The boot image case doesn't need to recursively initialize the dependencies with
2211 // special logic since the class linker already does this.
Mathieu Chartierdabeb3a2017-06-12 17:10:07 -07002212 can_init_static_fields =
Mathieu Chartier0933cc52018-03-23 14:25:08 -07002213 ClassLinker::kAppImageMayContainStrings &&
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002214 !soa.Self()->IsExceptionPending() &&
Nicolas Geoffrayabadf022017-08-03 08:25:41 +00002215 is_superclass_initialized &&
2216 NoClinitInDependency(klass, soa.Self(), &class_loader);
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002217 // TODO The checking for clinit can be removed since it's already
2218 // checked when init superclass. Currently keep it because it contains
2219 // processing of intern strings. Will be removed later when intern strings
2220 // and clinit are both initialized.
2221 }
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01002222
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002223 if (can_init_static_fields) {
2224 VLOG(compiler) << "Initializing: " << descriptor;
2225 // TODO multithreading support. We should ensure the current compilation thread has
2226 // exclusive access to the runtime and the transaction. To achieve this, we could use
2227 // a ReaderWriterMutex but we're holding the mutator lock so we fail mutex sanity
2228 // checks in Thread::AssertThreadSuspensionIsAllowable.
2229 Runtime* const runtime = Runtime::Current();
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002230 // Run the class initializer in transaction mode.
Chang Xing5a906fc2017-07-26 15:01:16 -07002231 runtime->EnterTransactionMode(is_app_image, klass.Get());
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002232 bool success = manager_->GetClassLinker()->EnsureInitialized(soa.Self(), klass, true,
2233 true);
2234 // TODO we detach transaction from runtime to indicate we quit the transactional
2235 // mode which prevents the GC from visiting objects modified during the transaction.
2236 // Ensure GC is not run so don't access freed objects when aborting transaction.
Andreas Gampe9e7078b2017-03-02 13:50:36 -08002237
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002238 {
2239 ScopedAssertNoThreadSuspension ants("Transaction end");
Chang Xing16d1dd82017-07-20 17:56:26 -07002240
2241 if (success) {
2242 runtime->ExitTransactionMode();
2243 DCHECK(!runtime->IsActiveTransaction());
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01002244
Chris Wailes0c61be42018-09-26 17:27:34 -07002245 if (is_boot_image) {
2246 // For boot image, we want to put the updated status in the oat class since we
2247 // can't reject the image anyways.
2248 old_status = klass->GetStatus();
2249 }
2250 } else {
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002251 CHECK(soa.Self()->IsExceptionPending());
2252 mirror::Throwable* exception = soa.Self()->GetException();
2253 VLOG(compiler) << "Initialization of " << descriptor << " aborted because of "
2254 << exception->Dump();
2255 std::ostream* file_log = manager_->GetCompiler()->
2256 GetCompilerOptions().GetInitFailureOutput();
2257 if (file_log != nullptr) {
2258 *file_log << descriptor << "\n";
2259 *file_log << exception->Dump() << "\n";
2260 }
2261 soa.Self()->ClearException();
Chang Xing605fe242017-07-20 15:57:21 -07002262 runtime->RollbackAllTransactions();
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002263 CHECK_EQ(old_status, klass->GetStatus()) << "Previous class status not restored";
2264 }
2265 }
2266
Nicolas Geoffrayabadf022017-08-03 08:25:41 +00002267 if (!success) {
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002268 // On failure, still intern strings of static fields and seen in <clinit>, as these
2269 // will be created in the zygote. This is separated from the transaction code just
2270 // above as we will allocate strings, so must be allowed to suspend.
2271 if (&klass->GetDexFile() == manager_->GetDexFile()) {
Andreas Gampe9e7078b2017-03-02 13:50:36 -08002272 InternStrings(klass, class_loader);
Mathieu Chartierdabeb3a2017-06-12 17:10:07 -07002273 } else {
2274 DCHECK(!is_boot_image) << "Boot image must have equal dex files";
Andreas Gampedbfe2542014-11-25 22:21:42 -08002275 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002276 }
2277 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002278 }
Jeff Hao0cb17282017-07-12 14:51:49 -07002279 // If the class still isn't initialized, at least try some checks that initialization
2280 // would do so they can be skipped at runtime.
2281 if (!klass->IsInitialized() &&
2282 manager_->GetClassLinker()->ValidateSuperClassDescriptors(klass)) {
Vladimir Marko2c64a832018-01-04 11:31:56 +00002283 old_status = ClassStatus::kSuperclassValidated;
Jeff Hao0cb17282017-07-12 14:51:49 -07002284 } else {
2285 soa.Self()->ClearException();
2286 }
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002287 soa.Self()->AssertNoPendingException();
Brian Carlstrom7940e442013-07-12 13:46:57 -07002288 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002289 }
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002290 // Record the final class status if necessary.
2291 ClassReference ref(&dex_file, klass->GetDexClassDefIndex());
2292 // Back up the status before doing initialization for static encoded fields,
2293 // because the static encoded branch wants to keep the status to uninitialized.
2294 manager_->GetCompiler()->RecordClassStatus(ref, old_status);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002295 }
Mathieu Chartier90443472015-07-16 20:32:27 -07002296
2297 private:
Andreas Gampe9e7078b2017-03-02 13:50:36 -08002298 void InternStrings(Handle<mirror::Class> klass, Handle<mirror::ClassLoader> class_loader)
2299 REQUIRES_SHARED(Locks::mutator_lock_) {
2300 DCHECK(manager_->GetCompiler()->GetCompilerOptions().IsBootImage());
2301 DCHECK(klass->IsVerified());
2302 DCHECK(!klass->IsInitialized());
2303
2304 StackHandleScope<1> hs(Thread::Current());
Vladimir Markoe11dd502017-12-08 14:09:45 +00002305 Handle<mirror::DexCache> dex_cache = hs.NewHandle(klass->GetDexCache());
Andreas Gampe9e7078b2017-03-02 13:50:36 -08002306 const DexFile::ClassDef* class_def = klass->GetClassDef();
2307 ClassLinker* class_linker = manager_->GetClassLinker();
2308
Andreas Gampe7bf90482017-03-02 16:41:35 -08002309 // Check encoded final field values for strings and intern.
Vladimir Markoe11dd502017-12-08 14:09:45 +00002310 annotations::RuntimeEncodedStaticFieldValueIterator value_it(dex_cache,
2311 class_loader,
Andreas Gampe9e7078b2017-03-02 13:50:36 -08002312 manager_->GetClassLinker(),
2313 *class_def);
2314 for ( ; value_it.HasNext(); value_it.Next()) {
2315 if (value_it.GetValueType() == annotations::RuntimeEncodedStaticFieldValueIterator::kString) {
2316 // Resolve the string. This will intern the string.
2317 art::ObjPtr<mirror::String> resolved = class_linker->ResolveString(
Vladimir Markoa64b52d2017-12-08 16:27:49 +00002318 dex::StringIndex(value_it.GetJavaValue().i), dex_cache);
Andreas Gampe9e7078b2017-03-02 13:50:36 -08002319 CHECK(resolved != nullptr);
2320 }
2321 }
Andreas Gampe7bf90482017-03-02 16:41:35 -08002322
2323 // Intern strings seen in <clinit>.
2324 ArtMethod* clinit = klass->FindClassInitializer(class_linker->GetImagePointerSize());
2325 if (clinit != nullptr) {
Mathieu Chartier73f21d42018-01-02 14:26:50 -08002326 for (const DexInstructionPcPair& inst : clinit->DexInstructions()) {
Mathieu Chartier2b2bef22017-10-26 17:10:19 -07002327 if (inst->Opcode() == Instruction::CONST_STRING) {
Andreas Gampe7bf90482017-03-02 16:41:35 -08002328 ObjPtr<mirror::String> s = class_linker->ResolveString(
Vladimir Markoa64b52d2017-12-08 16:27:49 +00002329 dex::StringIndex(inst->VRegB_21c()), dex_cache);
Andreas Gampe7bf90482017-03-02 16:41:35 -08002330 CHECK(s != nullptr);
Mathieu Chartier2b2bef22017-10-26 17:10:19 -07002331 } else if (inst->Opcode() == Instruction::CONST_STRING_JUMBO) {
Andreas Gampe7bf90482017-03-02 16:41:35 -08002332 ObjPtr<mirror::String> s = class_linker->ResolveString(
Vladimir Markoa64b52d2017-12-08 16:27:49 +00002333 dex::StringIndex(inst->VRegB_31c()), dex_cache);
Andreas Gampe7bf90482017-03-02 16:41:35 -08002334 CHECK(s != nullptr);
2335 }
Andreas Gampe7bf90482017-03-02 16:41:35 -08002336 }
2337 }
Andreas Gampe9e7078b2017-03-02 13:50:36 -08002338 }
2339
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002340 bool ResolveTypesOfMethods(Thread* self, ArtMethod* m)
2341 REQUIRES_SHARED(Locks::mutator_lock_) {
Vladimir Markob45528c2017-07-27 14:14:28 +01002342 // Return value of ResolveReturnType() is discarded because resolve will be done internally.
2343 ObjPtr<mirror::Class> rtn_type = m->ResolveReturnType();
Mathieu Chartier7a8bcfd2017-06-13 13:40:43 -07002344 if (rtn_type == nullptr) {
2345 self->ClearException();
2346 return false;
2347 }
2348 const DexFile::TypeList* types = m->GetParameterTypeList();
2349 if (types != nullptr) {
2350 for (uint32_t i = 0; i < types->Size(); ++i) {
2351 dex::TypeIndex param_type_idx = types->GetTypeItem(i).type_idx_;
Vladimir Markob45528c2017-07-27 14:14:28 +01002352 ObjPtr<mirror::Class> param_type = m->ResolveClassFromTypeIndex(param_type_idx);
Mathieu Chartier7a8bcfd2017-06-13 13:40:43 -07002353 if (param_type == nullptr) {
2354 self->ClearException();
2355 return false;
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002356 }
2357 }
Mathieu Chartier7a8bcfd2017-06-13 13:40:43 -07002358 }
2359 return true;
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002360 }
2361
2362 // Pre resolve types mentioned in all method signatures before start a transaction
2363 // since ResolveType doesn't work in transaction mode.
2364 bool PreResolveTypes(Thread* self, const Handle<mirror::Class>& klass)
2365 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartier7a8bcfd2017-06-13 13:40:43 -07002366 PointerSize pointer_size = manager_->GetClassLinker()->GetImagePointerSize();
2367 for (ArtMethod& m : klass->GetMethods(pointer_size)) {
2368 if (!ResolveTypesOfMethods(self, &m)) {
2369 return false;
2370 }
2371 }
2372 if (klass->IsInterface()) {
2373 return true;
2374 } else if (klass->HasSuperClass()) {
2375 StackHandleScope<1> hs(self);
2376 MutableHandle<mirror::Class> super_klass(hs.NewHandle<mirror::Class>(klass->GetSuperClass()));
2377 for (int i = super_klass->GetVTableLength() - 1; i >= 0; --i) {
2378 ArtMethod* m = klass->GetVTableEntry(i, pointer_size);
2379 ArtMethod* super_m = super_klass->GetVTableEntry(i, pointer_size);
2380 if (!ResolveTypesOfMethods(self, m) || !ResolveTypesOfMethods(self, super_m)) {
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002381 return false;
2382 }
2383 }
Mathieu Chartier7a8bcfd2017-06-13 13:40:43 -07002384 for (int32_t i = 0; i < klass->GetIfTableCount(); ++i) {
2385 super_klass.Assign(klass->GetIfTable()->GetInterface(i));
2386 if (klass->GetClassLoader() != super_klass->GetClassLoader()) {
2387 uint32_t num_methods = super_klass->NumVirtualMethods();
2388 for (uint32_t j = 0; j < num_methods; ++j) {
2389 ArtMethod* m = klass->GetIfTable()->GetMethodArray(i)->GetElementPtrSize<ArtMethod*>(
2390 j, pointer_size);
2391 ArtMethod* super_m = super_klass->GetVirtualMethod(j, pointer_size);
2392 if (!ResolveTypesOfMethods(self, m) || !ResolveTypesOfMethods(self, super_m)) {
2393 return false;
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002394 }
2395 }
2396 }
2397 }
Mathieu Chartier7a8bcfd2017-06-13 13:40:43 -07002398 }
2399 return true;
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002400 }
2401
2402 // Initialize the klass's dependencies recursively before initializing itself.
2403 // Checking for interfaces is also necessary since interfaces can contain
2404 // both default methods and static encoded fields.
2405 bool InitializeDependencies(const Handle<mirror::Class>& klass,
2406 Handle<mirror::ClassLoader> class_loader,
2407 Thread* self)
2408 REQUIRES_SHARED(Locks::mutator_lock_) {
2409 if (klass->HasSuperClass()) {
2410 ObjPtr<mirror::Class> super_class = klass->GetSuperClass();
2411 StackHandleScope<1> hs(self);
2412 Handle<mirror::Class> handle_scope_super(hs.NewHandle(super_class));
2413 if (!handle_scope_super->IsInitialized()) {
2414 this->TryInitializeClass(handle_scope_super, class_loader);
2415 if (!handle_scope_super->IsInitialized()) {
2416 return false;
2417 }
2418 }
2419 }
2420
2421 uint32_t num_if = klass->NumDirectInterfaces();
2422 for (size_t i = 0; i < num_if; i++) {
2423 ObjPtr<mirror::Class>
2424 interface = mirror::Class::GetDirectInterface(self, klass.Get(), i);
2425 StackHandleScope<1> hs(self);
2426 Handle<mirror::Class> handle_interface(hs.NewHandle(interface));
2427
2428 TryInitializeClass(handle_interface, class_loader);
2429
2430 if (!handle_interface->IsInitialized()) {
2431 return false;
2432 }
2433 }
2434
2435 return PreResolveTypes(self, klass);
2436 }
2437
2438 // In this phase the classes containing class initializers are ignored. Make sure no
2439 // clinit appears in kalss's super class chain and interfaces.
2440 bool NoClinitInDependency(const Handle<mirror::Class>& klass,
2441 Thread* self,
2442 Handle<mirror::ClassLoader>* class_loader)
2443 REQUIRES_SHARED(Locks::mutator_lock_) {
2444 ArtMethod* clinit =
2445 klass->FindClassInitializer(manager_->GetClassLinker()->GetImagePointerSize());
2446 if (clinit != nullptr) {
2447 VLOG(compiler) << klass->PrettyClass() << ' ' << clinit->PrettyMethod(true);
2448 return false;
2449 }
2450 if (klass->HasSuperClass()) {
2451 ObjPtr<mirror::Class> super_class = klass->GetSuperClass();
2452 StackHandleScope<1> hs(self);
2453 Handle<mirror::Class> handle_scope_super(hs.NewHandle(super_class));
2454 if (!NoClinitInDependency(handle_scope_super, self, class_loader)) {
2455 return false;
2456 }
2457 }
2458
2459 uint32_t num_if = klass->NumDirectInterfaces();
2460 for (size_t i = 0; i < num_if; i++) {
2461 ObjPtr<mirror::Class>
2462 interface = mirror::Class::GetDirectInterface(self, klass.Get(), i);
2463 StackHandleScope<1> hs(self);
2464 Handle<mirror::Class> handle_interface(hs.NewHandle(interface));
2465 if (!NoClinitInDependency(handle_interface, self, class_loader)) {
2466 return false;
2467 }
2468 }
2469
Chang Xingba17dbd2017-06-28 21:27:56 +00002470 return true;
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002471 }
2472
Mathieu Chartier90443472015-07-16 20:32:27 -07002473 const ParallelCompilationManager* const manager_;
2474};
Brian Carlstrom7940e442013-07-12 13:46:57 -07002475
Andreas Gampeace0dc12016-01-20 13:33:13 -08002476void CompilerDriver::InitializeClasses(jobject jni_class_loader,
2477 const DexFile& dex_file,
Andreas Gampede7b4362014-07-28 18:38:57 -07002478 const std::vector<const DexFile*>& dex_files,
Andreas Gampeace0dc12016-01-20 13:33:13 -08002479 TimingLogger* timings) {
Mathieu Chartierf5997b42014-06-20 10:37:54 -07002480 TimingLogger::ScopedTiming t("InitializeNoClinit", timings);
Andreas Gampeace0dc12016-01-20 13:33:13 -08002481
2482 // Initialization allocates objects and needs to run single-threaded to be deterministic.
2483 bool force_determinism = GetCompilerOptions().IsForceDeterminism();
2484 ThreadPool* init_thread_pool = force_determinism
2485 ? single_thread_pool_.get()
2486 : parallel_thread_pool_.get();
2487 size_t init_thread_count = force_determinism ? 1U : parallel_thread_count_;
2488
Brian Carlstrom7940e442013-07-12 13:46:57 -07002489 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Andreas Gampede7b4362014-07-28 18:38:57 -07002490 ParallelCompilationManager context(class_linker, jni_class_loader, this, &dex_file, dex_files,
Andreas Gampeace0dc12016-01-20 13:33:13 -08002491 init_thread_pool);
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002492
2493 if (GetCompilerOptions().IsBootImage() || GetCompilerOptions().IsAppImage()) {
2494 // Set the concurrency thread to 1 to support initialization for App Images since transaction
2495 // doesn't support multithreading now.
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01002496 // TODO: remove this when transactional mode supports multithreading.
Andreas Gampeace0dc12016-01-20 13:33:13 -08002497 init_thread_count = 1U;
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01002498 }
Mathieu Chartier90443472015-07-16 20:32:27 -07002499 InitializeClassVisitor visitor(&context);
Andreas Gampeace0dc12016-01-20 13:33:13 -08002500 context.ForAll(0, dex_file.NumClassDefs(), &visitor, init_thread_count);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002501}
2502
Mathieu Chartier91288d82016-04-28 09:44:54 -07002503class InitializeArrayClassesAndCreateConflictTablesVisitor : public ClassVisitor {
Mathieu Chartier085a0722016-04-01 17:33:31 -07002504 public:
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002505 explicit InitializeArrayClassesAndCreateConflictTablesVisitor(VariableSizedHandleScope& hs)
2506 : hs_(hs) {}
2507
Roland Levillainf73caca2018-08-24 17:19:07 +01002508 bool operator()(ObjPtr<mirror::Class> klass) override
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002509 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartier91288d82016-04-28 09:44:54 -07002510 if (Runtime::Current()->GetHeap()->ObjectIsInBootImageSpace(klass)) {
2511 return true;
2512 }
Mathieu Chartier085a0722016-04-01 17:33:31 -07002513 if (klass->IsArrayClass()) {
2514 StackHandleScope<1> hs(Thread::Current());
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002515 auto h_klass = hs.NewHandleWrapper(&klass);
2516 Runtime::Current()->GetClassLinker()->EnsureInitialized(hs.Self(), h_klass, true, true);
Mathieu Chartier085a0722016-04-01 17:33:31 -07002517 }
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002518 // Collect handles since there may be thread suspension in future EnsureInitialized.
2519 to_visit_.push_back(hs_.NewHandle(klass));
Nicolas Geoffray88f288e2016-06-29 08:17:52 +00002520 return true;
Nelli Kimbadee982016-05-13 13:08:53 +03002521 }
Artem Udovichenkoa62cb9b2016-06-30 09:18:25 +00002522
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002523 void FillAllIMTAndConflictTables() REQUIRES_SHARED(Locks::mutator_lock_) {
2524 for (Handle<mirror::Class> c : to_visit_) {
2525 // Create the conflict tables.
2526 FillIMTAndConflictTables(c.Get());
2527 }
2528 }
2529
Artem Udovichenkoa62cb9b2016-06-30 09:18:25 +00002530 private:
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002531 void FillIMTAndConflictTables(ObjPtr<mirror::Class> klass)
2532 REQUIRES_SHARED(Locks::mutator_lock_) {
Artem Udovichenkoa62cb9b2016-06-30 09:18:25 +00002533 if (!klass->ShouldHaveImt()) {
2534 return;
2535 }
2536 if (visited_classes_.find(klass) != visited_classes_.end()) {
2537 return;
2538 }
2539 if (klass->HasSuperClass()) {
2540 FillIMTAndConflictTables(klass->GetSuperClass());
2541 }
2542 if (!klass->IsTemp()) {
2543 Runtime::Current()->GetClassLinker()->FillIMTAndConflictTables(klass);
2544 }
2545 visited_classes_.insert(klass);
2546 }
2547
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002548 VariableSizedHandleScope& hs_;
2549 std::vector<Handle<mirror::Class>> to_visit_;
2550 std::unordered_set<ObjPtr<mirror::Class>, HashObjPtr> visited_classes_;
Mathieu Chartier085a0722016-04-01 17:33:31 -07002551};
2552
Brian Carlstrom7940e442013-07-12 13:46:57 -07002553void CompilerDriver::InitializeClasses(jobject class_loader,
2554 const std::vector<const DexFile*>& dex_files,
Andreas Gampeace0dc12016-01-20 13:33:13 -08002555 TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07002556 for (size_t i = 0; i != dex_files.size(); ++i) {
2557 const DexFile* dex_file = dex_files[i];
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002558 CHECK(dex_file != nullptr);
Andreas Gampeace0dc12016-01-20 13:33:13 -08002559 InitializeClasses(class_loader, *dex_file, dex_files, timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002560 }
Vladimir Markoaad75c62016-10-03 08:46:48 +00002561 if (GetCompilerOptions().IsBootImage() || GetCompilerOptions().IsAppImage()) {
Mathieu Chartier085a0722016-04-01 17:33:31 -07002562 // Make sure that we call EnsureIntiailized on all the array classes to call
2563 // SetVerificationAttempted so that the access flags are set. If we do not do this they get
2564 // changed at runtime resulting in more dirty image pages.
Mathieu Chartier91288d82016-04-28 09:44:54 -07002565 // Also create conflict tables.
2566 // Only useful if we are compiling an image (image_classes_ is not null).
Mathieu Chartier085a0722016-04-01 17:33:31 -07002567 ScopedObjectAccess soa(Thread::Current());
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002568 VariableSizedHandleScope hs(soa.Self());
2569 InitializeArrayClassesAndCreateConflictTablesVisitor visitor(hs);
Mathieu Chartier91288d82016-04-28 09:44:54 -07002570 Runtime::Current()->GetClassLinker()->VisitClassesWithoutClassesLock(&visitor);
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002571 visitor.FillAllIMTAndConflictTables();
Mathieu Chartier085a0722016-04-01 17:33:31 -07002572 }
Vladimir Markoaad75c62016-10-03 08:46:48 +00002573 if (GetCompilerOptions().IsBootImage()) {
Mathieu Chartier093ef212014-08-11 13:52:12 -07002574 // Prune garbage objects created during aborted transactions.
Roland Levillainaf290312018-02-27 20:02:17 +00002575 Runtime::Current()->GetHeap()->CollectGarbage(/* clear_soft_references */ true);
Mathieu Chartier093ef212014-08-11 13:52:12 -07002576 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002577}
2578
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002579template <typename CompileFn>
2580static void CompileDexFile(CompilerDriver* driver,
2581 jobject class_loader,
2582 const DexFile& dex_file,
2583 const std::vector<const DexFile*>& dex_files,
2584 ThreadPool* thread_pool,
2585 size_t thread_count,
2586 TimingLogger* timings,
2587 const char* timing_name,
2588 CompileFn compile_fn) {
2589 TimingLogger::ScopedTiming t(timing_name, timings);
2590 ParallelCompilationManager context(Runtime::Current()->GetClassLinker(),
2591 class_loader,
2592 driver,
2593 &dex_file,
2594 dex_files,
2595 thread_pool);
Vladimir Marko492a7fa2016-06-01 18:38:43 +01002596
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002597 auto compile = [&context, &compile_fn](size_t class_def_index) {
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002598 const DexFile& dex_file = *context.GetDexFile();
Andreas Gampe3e7f66b2018-09-06 10:08:18 -07002599 SCOPED_TRACE << "compile " << dex_file.GetLocation() << "@" << class_def_index;
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002600 ClassLinker* class_linker = context.GetClassLinker();
2601 jobject jclass_loader = context.GetClassLoader();
Mathieu Chartier90443472015-07-16 20:32:27 -07002602 ClassReference ref(&dex_file, class_def_index);
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07002603 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
Mathieu Chartier18e26872018-06-04 17:19:02 -07002604 ClassAccessor accessor(dex_file, class_def_index);
Mathieu Chartier90443472015-07-16 20:32:27 -07002605 // Skip compiling classes with generic verifier failures since they will still fail at runtime
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002606 if (context.GetCompiler()->GetVerificationResults()->IsClassRejected(ref)) {
Ian Rogers1ff3c982014-08-12 02:30:58 -07002607 return;
2608 }
Mathieu Chartier736b5602015-09-02 14:54:11 -07002609 // Use a scoped object access to perform to the quick SkipClass check.
Mathieu Chartier736b5602015-09-02 14:54:11 -07002610 ScopedObjectAccess soa(Thread::Current());
2611 StackHandleScope<3> hs(soa.Self());
2612 Handle<mirror::ClassLoader> class_loader(
Mathieu Chartier0795f232016-09-27 18:43:30 -07002613 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader)));
Mathieu Chartier736b5602015-09-02 14:54:11 -07002614 Handle<mirror::Class> klass(
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07002615 hs.NewHandle(class_linker->FindClass(soa.Self(), accessor.GetDescriptor(), class_loader)));
Mathieu Chartier736b5602015-09-02 14:54:11 -07002616 Handle<mirror::DexCache> dex_cache;
Andreas Gampefa4333d2017-02-14 11:10:34 -08002617 if (klass == nullptr) {
Mathieu Chartier736b5602015-09-02 14:54:11 -07002618 soa.Self()->AssertPendingException();
2619 soa.Self()->ClearException();
2620 dex_cache = hs.NewHandle(class_linker->FindDexCache(soa.Self(), dex_file));
2621 } else if (SkipClass(jclass_loader, dex_file, klass.Get())) {
2622 return;
Andreas Gampebb30d5d2018-04-23 09:59:25 -07002623 } else if (&klass->GetDexFile() != &dex_file) {
2624 // Skip a duplicate class (as the resolved class is from another, earlier dex file).
2625 return; // Do not update state.
Mathieu Chartier736b5602015-09-02 14:54:11 -07002626 } else {
2627 dex_cache = hs.NewHandle(klass->GetDexCache());
2628 }
2629
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07002630 // Avoid suspension if there are no methods to compile.
2631 if (accessor.NumDirectMethods() + accessor.NumVirtualMethods() == 0) {
Mathieu Chartier90443472015-07-16 20:32:27 -07002632 return;
Brian Carlstrom7940e442013-07-12 13:46:57 -07002633 }
Mathieu Chartier90443472015-07-16 20:32:27 -07002634
Mathieu Chartier736b5602015-09-02 14:54:11 -07002635 // Go to native so that we don't block GC during compilation.
Mathieu Chartierf1d666e2015-09-03 16:13:34 -07002636 ScopedThreadSuspension sts(soa.Self(), kNative);
Mathieu Chartier736b5602015-09-02 14:54:11 -07002637
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002638 CompilerDriver* const driver = context.GetCompiler();
Mathieu Chartier90443472015-07-16 20:32:27 -07002639
2640 // Can we run DEX-to-DEX compiler on this class ?
Mathieu Chartiera79efdb2018-01-18 16:31:01 -08002641 optimizer::DexToDexCompiler::CompilationLevel dex_to_dex_compilation_level =
Mathieu Chartier736b5602015-09-02 14:54:11 -07002642 GetDexToDexCompilationLevel(soa.Self(), *driver, jclass_loader, dex_file, class_def);
Andreas Gampe5eb0d382015-07-23 01:19:26 -07002643
Mathieu Chartier90443472015-07-16 20:32:27 -07002644
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07002645 const bool compilation_enabled = driver->IsClassToCompile(accessor.GetDescriptor());
Mathieu Chartier90443472015-07-16 20:32:27 -07002646
Mathieu Chartierb7c273c2017-11-10 18:07:56 -08002647 // Compile direct and virtual methods.
2648 int64_t previous_method_idx = -1;
Mathieu Chartier0d896bd2018-05-25 00:20:27 -07002649 for (const ClassAccessor::Method& method : accessor.GetMethods()) {
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07002650 const uint32_t method_idx = method.GetIndex();
Mathieu Chartierb7c273c2017-11-10 18:07:56 -08002651 if (method_idx == previous_method_idx) {
Mathieu Chartier90443472015-07-16 20:32:27 -07002652 // smali can create dex files with two encoded_methods sharing the same method_idx
2653 // http://code.google.com/p/smali/issues/detail?id=119
Mathieu Chartier0d896bd2018-05-25 00:20:27 -07002654 continue;
Mathieu Chartier90443472015-07-16 20:32:27 -07002655 }
Mathieu Chartierb7c273c2017-11-10 18:07:56 -08002656 previous_method_idx = method_idx;
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002657 compile_fn(soa.Self(),
2658 driver,
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07002659 method.GetCodeItem(),
2660 method.GetAccessFlags(),
2661 method.GetInvokeType(class_def.access_flags_),
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002662 class_def_index,
2663 method_idx,
2664 class_loader,
2665 dex_file,
2666 dex_to_dex_compilation_level,
2667 compilation_enabled,
2668 dex_cache);
Mathieu Chartier0d896bd2018-05-25 00:20:27 -07002669 }
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002670 };
2671 context.ForAllLambda(0, dex_file.NumClassDefs(), compile, thread_count);
2672}
2673
2674void CompilerDriver::Compile(jobject class_loader,
2675 const std::vector<const DexFile*>& dex_files,
2676 TimingLogger* timings) {
2677 if (kDebugProfileGuidedCompilation) {
2678 LOG(INFO) << "[ProfileGuidedCompilation] " <<
2679 ((profile_compilation_info_ == nullptr)
2680 ? "null"
Mathieu Chartier0573f852018-10-01 13:52:12 -07002681 : profile_compilation_info_->DumpInfo(dex_files));
Brian Carlstrom7940e442013-07-12 13:46:57 -07002682 }
Mathieu Chartier90443472015-07-16 20:32:27 -07002683
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002684 dex_to_dex_compiler_.ClearState();
2685 for (const DexFile* dex_file : dex_files) {
2686 CHECK(dex_file != nullptr);
2687 CompileDexFile(this,
2688 class_loader,
2689 *dex_file,
2690 dex_files,
2691 parallel_thread_pool_.get(),
2692 parallel_thread_count_,
2693 timings,
2694 "Compile Dex File Quick",
2695 CompileMethodQuick);
2696 const ArenaPool* const arena_pool = Runtime::Current()->GetArenaPool();
2697 const size_t arena_alloc = arena_pool->GetBytesAllocated();
2698 max_arena_alloc_ = std::max(arena_alloc, max_arena_alloc_);
2699 Runtime::Current()->ReclaimArenaPoolMemory();
2700 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002701
Mathieu Chartier279e3a32018-01-24 18:17:55 -08002702 if (dex_to_dex_compiler_.NumCodeItemsToQuicken(Thread::Current()) > 0u) {
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002703 // TODO: Not visit all of the dex files, its probably rare that only one would have quickened
2704 // methods though.
2705 for (const DexFile* dex_file : dex_files) {
2706 CompileDexFile(this,
2707 class_loader,
2708 *dex_file,
2709 dex_files,
2710 parallel_thread_pool_.get(),
2711 parallel_thread_count_,
2712 timings,
2713 "Compile Dex File Dex2Dex",
2714 CompileMethodDex2Dex);
2715 }
2716 dex_to_dex_compiler_.ClearState();
2717 }
2718
2719 VLOG(compiler) << "Compile: " << GetMemoryUsageString(false);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002720}
2721
Andreas Gampe5eb0d382015-07-23 01:19:26 -07002722void CompilerDriver::AddCompiledMethod(const MethodReference& method_ref,
Vladimir Marko8e524ad2018-07-13 10:27:43 +01002723 CompiledMethod* const compiled_method) {
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002724 DCHECK(GetCompiledMethod(method_ref) == nullptr) << method_ref.PrettyMethod();
2725 MethodTable::InsertResult result = compiled_methods_.Insert(method_ref,
2726 /*expected*/ nullptr,
2727 compiled_method);
Mathieu Chartieracab8d42016-11-23 13:45:58 -08002728 CHECK(result == MethodTable::kInsertResultSuccess);
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002729 DCHECK(GetCompiledMethod(method_ref) != nullptr) << method_ref.PrettyMethod();
Brian Carlstrom7940e442013-07-12 13:46:57 -07002730}
2731
Mathieu Chartier279e3a32018-01-24 18:17:55 -08002732CompiledMethod* CompilerDriver::RemoveCompiledMethod(const MethodReference& method_ref) {
2733 CompiledMethod* ret = nullptr;
2734 CHECK(compiled_methods_.Remove(method_ref, &ret));
2735 return ret;
2736}
2737
Vladimir Marko2c64a832018-01-04 11:31:56 +00002738bool CompilerDriver::GetCompiledClass(const ClassReference& ref, ClassStatus* status) const {
Andreas Gampebb846102017-05-11 21:03:35 -07002739 DCHECK(status != nullptr);
Mathieu Chartier1a088d42017-07-18 11:43:57 -07002740 // The table doesn't know if something wasn't inserted. For this case it will return
Vladimir Marko2c64a832018-01-04 11:31:56 +00002741 // ClassStatus::kNotReady. To handle this, just assume anything we didn't try to verify
2742 // is not compiled.
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002743 if (!compiled_classes_.Get(ref, status) ||
Vladimir Marko2c64a832018-01-04 11:31:56 +00002744 *status < ClassStatus::kRetryVerificationAtRuntime) {
Andreas Gampebb846102017-05-11 21:03:35 -07002745 return false;
Brian Carlstrom7940e442013-07-12 13:46:57 -07002746 }
Andreas Gampebb846102017-05-11 21:03:35 -07002747 return true;
Brian Carlstrom7940e442013-07-12 13:46:57 -07002748}
2749
Vladimir Marko2c64a832018-01-04 11:31:56 +00002750ClassStatus CompilerDriver::GetClassStatus(const ClassReference& ref) const {
2751 ClassStatus status = ClassStatus::kNotReady;
Nicolas Geoffray486dda02017-09-11 14:15:52 +01002752 if (!GetCompiledClass(ref, &status)) {
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002753 classpath_classes_.Get(ref, &status);
Nicolas Geoffray486dda02017-09-11 14:15:52 +01002754 }
2755 return status;
2756}
2757
Vladimir Marko2c64a832018-01-04 11:31:56 +00002758void CompilerDriver::RecordClassStatus(const ClassReference& ref, ClassStatus status) {
Nicolas Geoffrayade72d62016-12-15 13:20:02 +00002759 switch (status) {
Vladimir Marko2c64a832018-01-04 11:31:56 +00002760 case ClassStatus::kErrorResolved:
2761 case ClassStatus::kErrorUnresolved:
2762 case ClassStatus::kNotReady:
2763 case ClassStatus::kResolved:
2764 case ClassStatus::kRetryVerificationAtRuntime:
2765 case ClassStatus::kVerified:
2766 case ClassStatus::kSuperclassValidated:
2767 case ClassStatus::kInitialized:
Nicolas Geoffrayade72d62016-12-15 13:20:02 +00002768 break; // Expected states.
2769 default:
2770 LOG(FATAL) << "Unexpected class status for class "
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002771 << PrettyDescriptor(
2772 ref.dex_file->GetClassDescriptor(ref.dex_file->GetClassDef(ref.index)))
Nicolas Geoffrayade72d62016-12-15 13:20:02 +00002773 << " of " << status;
2774 }
2775
Mathieu Chartier1a088d42017-07-18 11:43:57 -07002776 ClassStateTable::InsertResult result;
Nicolas Geoffray486dda02017-09-11 14:15:52 +01002777 ClassStateTable* table = &compiled_classes_;
Mathieu Chartier1a088d42017-07-18 11:43:57 -07002778 do {
Vladimir Marko2c64a832018-01-04 11:31:56 +00002779 ClassStatus existing = ClassStatus::kNotReady;
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002780 if (!table->Get(ref, &existing)) {
Nicolas Geoffray486dda02017-09-11 14:15:52 +01002781 // A classpath class.
Mathieu Chartier010f5cc2017-07-24 15:53:46 -07002782 if (kIsDebugBuild) {
2783 // Check to make sure it's not a dex file for an oat file we are compiling since these
2784 // should always succeed. These do not include classes in for used libraries.
Vladimir Marko213ee2d2018-06-22 11:56:34 +01002785 for (const DexFile* dex_file : GetCompilerOptions().GetDexFilesForOatFile()) {
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002786 CHECK_NE(ref.dex_file, dex_file) << ref.dex_file->GetLocation();
Mathieu Chartier010f5cc2017-07-24 15:53:46 -07002787 }
2788 }
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002789 if (!classpath_classes_.HaveDexFile(ref.dex_file)) {
Nicolas Geoffray486dda02017-09-11 14:15:52 +01002790 // Boot classpath dex file.
2791 return;
2792 }
2793 table = &classpath_classes_;
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002794 table->Get(ref, &existing);
Mathieu Chartier010f5cc2017-07-24 15:53:46 -07002795 }
Mathieu Chartier1a088d42017-07-18 11:43:57 -07002796 if (existing >= status) {
2797 // Existing status is already better than we expect, break.
2798 break;
2799 }
Nicolas Geoffrayade72d62016-12-15 13:20:02 +00002800 // Update the status if we now have a greater one. This happens with vdex,
2801 // which records a class is verified, but does not resolve it.
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002802 result = table->Insert(ref, existing, status);
2803 CHECK(result != ClassStateTable::kInsertResultInvalidDexFile) << ref.dex_file->GetLocation();
Mathieu Chartier1a088d42017-07-18 11:43:57 -07002804 } while (result != ClassStateTable::kInsertResultSuccess);
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07002805}
2806
Brian Carlstrom7940e442013-07-12 13:46:57 -07002807CompiledMethod* CompilerDriver::GetCompiledMethod(MethodReference ref) const {
Mathieu Chartieracab8d42016-11-23 13:45:58 -08002808 CompiledMethod* compiled_method = nullptr;
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002809 compiled_methods_.Get(ref, &compiled_method);
Mathieu Chartieracab8d42016-11-23 13:45:58 -08002810 return compiled_method;
Brian Carlstrom7940e442013-07-12 13:46:57 -07002811}
2812
Calin Juravlef1c6d9e2015-04-13 18:42:21 +01002813bool CompilerDriver::IsMethodVerifiedWithoutFailures(uint32_t method_idx,
2814 uint16_t class_def_idx,
2815 const DexFile& dex_file) const {
2816 const VerifiedMethod* verified_method = GetVerifiedMethod(&dex_file, method_idx);
2817 if (verified_method != nullptr) {
2818 return !verified_method->HasVerificationFailures();
2819 }
2820
2821 // If we can't find verification metadata, check if this is a system class (we trust that system
2822 // classes have their methods verified). If it's not, be conservative and assume the method
2823 // has not been verified successfully.
2824
2825 // TODO: When compiling the boot image it should be safe to assume that everything is verified,
2826 // even if methods are not found in the verification cache.
2827 const char* descriptor = dex_file.GetClassDescriptor(dex_file.GetClassDef(class_def_idx));
2828 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
2829 Thread* self = Thread::Current();
2830 ScopedObjectAccess soa(self);
2831 bool is_system_class = class_linker->FindSystemClass(self, descriptor) != nullptr;
2832 if (!is_system_class) {
2833 self->ClearException();
2834 }
2835 return is_system_class;
2836}
2837
Mathieu Chartierc4ae9162016-04-07 13:19:19 -07002838void CompilerDriver::SetRequiresConstructorBarrier(Thread* self,
2839 const DexFile* dex_file,
2840 uint16_t class_def_index,
2841 bool requires) {
2842 WriterMutexLock mu(self, requires_constructor_barrier_lock_);
2843 requires_constructor_barrier_.emplace(ClassReference(dex_file, class_def_index), requires);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002844}
2845
Mathieu Chartier371bd832016-04-07 10:19:48 -07002846bool CompilerDriver::RequiresConstructorBarrier(Thread* self,
2847 const DexFile* dex_file,
Mathieu Chartierc4ae9162016-04-07 13:19:19 -07002848 uint16_t class_def_index) {
2849 ClassReference class_ref(dex_file, class_def_index);
2850 {
2851 ReaderMutexLock mu(self, requires_constructor_barrier_lock_);
2852 auto it = requires_constructor_barrier_.find(class_ref);
2853 if (it != requires_constructor_barrier_.end()) {
2854 return it->second;
2855 }
Mathieu Chartierb5d38612016-04-07 10:52:52 -07002856 }
Mathieu Chartierc4ae9162016-04-07 13:19:19 -07002857 WriterMutexLock mu(self, requires_constructor_barrier_lock_);
2858 const bool requires = RequiresConstructorBarrier(*dex_file, class_def_index);
2859 requires_constructor_barrier_.emplace(class_ref, requires);
2860 return requires;
Brian Carlstrom7940e442013-07-12 13:46:57 -07002861}
2862
Andreas Gampe8d295f82015-01-20 14:50:21 -08002863std::string CompilerDriver::GetMemoryUsageString(bool extended) const {
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002864 std::ostringstream oss;
Calin Juravle69158982016-03-16 11:53:41 +00002865 const gc::Heap* const heap = Runtime::Current()->GetHeap();
Anton Kirilovdd9473b2016-01-28 15:08:01 +00002866 const size_t java_alloc = heap->GetBytesAllocated();
Calin Juravle69158982016-03-16 11:53:41 +00002867 oss << "arena alloc=" << PrettySize(max_arena_alloc_) << " (" << max_arena_alloc_ << "B)";
Anton Kirilovdd9473b2016-01-28 15:08:01 +00002868 oss << " java alloc=" << PrettySize(java_alloc) << " (" << java_alloc << "B)";
Elliott Hughes7bf5a262015-04-02 20:55:07 -07002869#if defined(__BIONIC__) || defined(__GLIBC__)
Anton Kirilovdd9473b2016-01-28 15:08:01 +00002870 const struct mallinfo info = mallinfo();
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002871 const size_t allocated_space = static_cast<size_t>(info.uordblks);
2872 const size_t free_space = static_cast<size_t>(info.fordblks);
Anton Kirilovdd9473b2016-01-28 15:08:01 +00002873 oss << " native alloc=" << PrettySize(allocated_space) << " (" << allocated_space << "B)"
2874 << " free=" << PrettySize(free_space) << " (" << free_space << "B)";
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002875#endif
Vladimir Marko35831e82015-09-11 11:59:18 +01002876 compiled_method_storage_.DumpMemoryUsage(oss, extended);
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002877 return oss.str();
2878}
2879
Andreas Gampeace0dc12016-01-20 13:33:13 -08002880void CompilerDriver::InitializeThreadPools() {
2881 size_t parallel_count = parallel_thread_count_ > 0 ? parallel_thread_count_ - 1 : 0;
2882 parallel_thread_pool_.reset(
2883 new ThreadPool("Compiler driver thread pool", parallel_count));
2884 single_thread_pool_.reset(new ThreadPool("Single-threaded Compiler driver thread pool", 0));
2885}
2886
2887void CompilerDriver::FreeThreadPools() {
2888 parallel_thread_pool_.reset();
2889 single_thread_pool_.reset();
2890}
2891
Nicolas Geoffray486dda02017-09-11 14:15:52 +01002892void CompilerDriver::SetClasspathDexFiles(const std::vector<const DexFile*>& dex_files) {
2893 classpath_classes_.AddDexFiles(dex_files);
Mathieu Chartier72041a02017-07-14 18:23:25 -07002894}
2895
Brian Carlstrom7940e442013-07-12 13:46:57 -07002896} // namespace art