blob: 66a8a57b36bb802a782f5861b3e61da279a88752 [file] [log] [blame]
Brian Carlstrom7940e442013-07-12 13:46:57 -07001/*
2 * Copyright (C) 2011 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include "compiler_driver.h"
18
Andreas Gampe8cf9cb32017-07-19 09:28:38 -070019#include <unistd.h>
Andreas Gampeb0f370e2014-09-25 22:51:40 -070020#include <unordered_set>
Anwar Ghuloum67f99412013-08-12 14:19:48 -070021#include <vector>
Brian Carlstrom7940e442013-07-12 13:46:57 -070022
Mathieu Chartierab972ef2014-12-03 17:38:22 -080023#ifndef __APPLE__
24#include <malloc.h> // For mallinfo
25#endif
26
Narayan Kamathe3eae5e2016-10-27 11:47:30 +010027#include "android-base/strings.h"
28
Mathieu Chartierc7853442015-03-27 14:35:38 -070029#include "art_field-inl.h"
Mathieu Chartiere401d142015-04-22 13:56:20 -070030#include "art_method-inl.h"
Andreas Gampef0446e92017-05-16 13:51:57 -070031#include "base/arena_allocator.h"
David Brazdild9c90372016-09-14 16:53:55 +010032#include "base/array_ref.h"
Vladimir Marko492a7fa2016-06-01 18:38:43 +010033#include "base/bit_vector.h"
Andreas Gampe542451c2016-07-26 09:02:02 -070034#include "base/enums.h"
Andreas Gampe170331f2017-12-07 18:41:03 -080035#include "base/logging.h" // For VLOG
Brian Carlstrom7940e442013-07-12 13:46:57 -070036#include "base/stl_util.h"
Mathieu Chartier32ce2ad2016-03-04 14:58:03 -080037#include "base/systrace.h"
Vladimir Marko80afd022015-05-19 18:08:00 +010038#include "base/time_utils.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070039#include "base/timing_logger.h"
Vladimir Marko3481ba22015-04-13 12:22:36 +010040#include "class_linker-inl.h"
Vladimir Markod8dbc8d2017-09-20 13:37:47 +010041#include "compiled_method-inl.h"
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +000042#include "compiler.h"
Nicolas Geoffray6bb7f1b2016-11-03 10:52:49 +000043#include "compiler_callbacks.h"
Vladimir Markobe0e5462014-02-26 11:24:15 +000044#include "compiler_driver-inl.h"
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -070045#include "dex/class_accessor-inl.h"
David Sehrb2ec9f52018-02-21 13:20:31 -080046#include "dex/descriptors_names.h"
David Sehr9e734c72018-01-04 17:56:19 -080047#include "dex/dex_file-inl.h"
48#include "dex/dex_file_annotations.h"
49#include "dex/dex_instruction-inl.h"
Andreas Gampe5eb0d382015-07-23 01:19:26 -070050#include "dex/dex_to_dex_compiler.h"
Vladimir Markoc7f83202014-01-24 17:55:18 +000051#include "dex/verification_results.h"
Vladimir Marko2730db02014-01-27 11:15:17 +000052#include "dex/verified_method.h"
Steven Morelande431e272017-07-18 16:53:49 -070053#include "dex_compilation_unit.h"
Mark Mendellae9fd932014-02-10 16:14:35 -080054#include "driver/compiler_options.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070055#include "gc/accounting/card_table-inl.h"
56#include "gc/accounting/heap_bitmap.h"
Mathieu Chartiere401d142015-04-22 13:56:20 -070057#include "gc/space/image_space.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070058#include "gc/space/space.h"
Steven Morelande431e272017-07-18 16:53:49 -070059#include "handle_scope-inl.h"
60#include "intrinsics_enum.h"
Vladimir Markoa3ad0cd2018-05-04 10:06:38 +010061#include "jni/jni_internal.h"
Vladimir Markod8dbc8d2017-09-20 13:37:47 +010062#include "linker/linker_patch.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070063#include "mirror/class-inl.h"
Steven Morelande431e272017-07-18 16:53:49 -070064#include "mirror/class_loader.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070065#include "mirror/dex_cache-inl.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070066#include "mirror/object-inl.h"
Andreas Gampec6ea7d02017-02-01 16:46:28 -080067#include "mirror/object-refvisitor-inl.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070068#include "mirror/object_array-inl.h"
69#include "mirror/throwable.h"
Steven Morelande431e272017-07-18 16:53:49 -070070#include "object_lock.h"
David Sehr82d046e2018-04-23 08:14:19 -070071#include "profile/profile_compilation_info.h"
Steven Morelande431e272017-07-18 16:53:49 -070072#include "runtime.h"
Orion Hodson26ef34c2017-11-01 13:32:41 +000073#include "runtime_intrinsics.h"
Mathieu Chartier0795f232016-09-27 18:43:30 -070074#include "scoped_thread_state_change-inl.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070075#include "thread.h"
Andreas Gampeb0f370e2014-09-25 22:51:40 -070076#include "thread_list.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070077#include "thread_pool.h"
Ian Rogers848871b2013-08-05 10:56:33 -070078#include "trampolines/trampoline_compiler.h"
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +010079#include "transaction.h"
Mathieu Chartier93764b82017-07-17 14:51:53 -070080#include "utils/atomic_dex_ref_map-inl.h"
Vladimir Marko20f85592015-03-19 10:07:02 +000081#include "utils/dex_cache_arrays_layout-inl.h"
Andreas Gampee21dc3d2014-12-08 16:59:43 -080082#include "utils/swap_space.h"
Nicolas Geoffrayb0bbe8e2016-11-19 10:42:37 +000083#include "vdex_file.h"
Vladimir Marko2bc47802014-02-10 09:43:07 +000084#include "verifier/method_verifier-inl.h"
Steven Morelande431e272017-07-18 16:53:49 -070085#include "verifier/method_verifier.h"
Nicolas Geoffray08025182016-10-25 17:20:18 +010086#include "verifier/verifier_deps.h"
Andreas Gampe6d7abbd2017-04-24 13:19:09 -070087#include "verifier/verifier_enums.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070088
Brian Carlstrom7940e442013-07-12 13:46:57 -070089namespace art {
90
Mathieu Chartier8e219ae2014-08-19 14:29:46 -070091static constexpr bool kTimeCompileMethod = !kIsDebugBuild;
92
Calin Juravle226501b2015-12-11 14:41:31 +000093// Print additional info during profile guided compilation.
94static constexpr bool kDebugProfileGuidedCompilation = false;
95
Chang Xing70f689d2017-06-08 17:16:12 -070096// Max encoded fields allowed for initializing app image. Hardcode the number for now
97// because 5000 should be large enough.
98static constexpr uint32_t kMaxEncodedFields = 5000;
99
Brian Carlstrom7940e442013-07-12 13:46:57 -0700100static double Percentage(size_t x, size_t y) {
101 return 100.0 * (static_cast<double>(x)) / (static_cast<double>(x + y));
102}
103
104static void DumpStat(size_t x, size_t y, const char* str) {
105 if (x == 0 && y == 0) {
106 return;
107 }
Ian Rogerse732ef12013-10-09 15:22:24 -0700108 LOG(INFO) << Percentage(x, y) << "% of " << str << " for " << (x + y) << " cases";
Brian Carlstrom7940e442013-07-12 13:46:57 -0700109}
110
Vladimir Markof096aad2014-01-23 15:51:58 +0000111class CompilerDriver::AOTCompilationStats {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700112 public:
113 AOTCompilationStats()
114 : stats_lock_("AOT compilation statistics lock"),
Brian Carlstrom7940e442013-07-12 13:46:57 -0700115 resolved_types_(0), unresolved_types_(0),
116 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_types_, unresolved_types_, "types resolved");
131 DumpStat(resolved_instance_fields_, unresolved_instance_fields_, "instance fields resolved");
132 DumpStat(resolved_local_static_fields_ + resolved_static_fields_, unresolved_static_fields_,
133 "static fields resolved");
134 DumpStat(resolved_local_static_fields_, resolved_static_fields_ + unresolved_static_fields_,
135 "static fields local to a class");
136 DumpStat(safe_casts_, not_safe_casts_, "check-casts removed based on type information");
137 // Note, the code below subtracts the stat value so that when added to the stat value we have
138 // 100% of samples. TODO: clean this up.
139 DumpStat(type_based_devirtualization_,
140 resolved_methods_[kVirtual] + unresolved_methods_[kVirtual] +
141 resolved_methods_[kInterface] + unresolved_methods_[kInterface] -
142 type_based_devirtualization_,
143 "virtual/interface calls made direct based on type information");
144
145 for (size_t i = 0; i <= kMaxInvokeType; i++) {
146 std::ostringstream oss;
147 oss << static_cast<InvokeType>(i) << " methods were AOT resolved";
148 DumpStat(resolved_methods_[i], unresolved_methods_[i], oss.str().c_str());
149 if (virtual_made_direct_[i] > 0) {
150 std::ostringstream oss2;
151 oss2 << static_cast<InvokeType>(i) << " methods made direct";
152 DumpStat(virtual_made_direct_[i],
153 resolved_methods_[i] + unresolved_methods_[i] - virtual_made_direct_[i],
154 oss2.str().c_str());
155 }
156 if (direct_calls_to_boot_[i] > 0) {
157 std::ostringstream oss2;
158 oss2 << static_cast<InvokeType>(i) << " method calls are direct into boot";
159 DumpStat(direct_calls_to_boot_[i],
160 resolved_methods_[i] + unresolved_methods_[i] - direct_calls_to_boot_[i],
161 oss2.str().c_str());
162 }
163 if (direct_methods_to_boot_[i] > 0) {
164 std::ostringstream oss2;
165 oss2 << static_cast<InvokeType>(i) << " method calls have methods in boot";
166 DumpStat(direct_methods_to_boot_[i],
167 resolved_methods_[i] + unresolved_methods_[i] - direct_methods_to_boot_[i],
168 oss2.str().c_str());
169 }
170 }
171 }
172
173// Allow lossy statistics in non-debug builds.
174#ifndef NDEBUG
175#define STATS_LOCK() MutexLock mu(Thread::Current(), stats_lock_)
176#else
177#define STATS_LOCK()
178#endif
179
Mathieu Chartier90443472015-07-16 20:32:27 -0700180 void TypeDoesntNeedAccessCheck() REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700181 STATS_LOCK();
182 resolved_types_++;
183 }
184
Mathieu Chartier90443472015-07-16 20:32:27 -0700185 void TypeNeedsAccessCheck() REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700186 STATS_LOCK();
187 unresolved_types_++;
188 }
189
Mathieu Chartier90443472015-07-16 20:32:27 -0700190 void ResolvedInstanceField() REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700191 STATS_LOCK();
192 resolved_instance_fields_++;
193 }
194
Mathieu Chartier90443472015-07-16 20:32:27 -0700195 void UnresolvedInstanceField() REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700196 STATS_LOCK();
197 unresolved_instance_fields_++;
198 }
199
Mathieu Chartier90443472015-07-16 20:32:27 -0700200 void ResolvedLocalStaticField() REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700201 STATS_LOCK();
202 resolved_local_static_fields_++;
203 }
204
Mathieu Chartier90443472015-07-16 20:32:27 -0700205 void ResolvedStaticField() REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700206 STATS_LOCK();
207 resolved_static_fields_++;
208 }
209
Mathieu Chartier90443472015-07-16 20:32:27 -0700210 void UnresolvedStaticField() REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700211 STATS_LOCK();
212 unresolved_static_fields_++;
213 }
214
215 // Indicate that type information from the verifier led to devirtualization.
Mathieu Chartier90443472015-07-16 20:32:27 -0700216 void PreciseTypeDevirtualization() REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700217 STATS_LOCK();
218 type_based_devirtualization_++;
219 }
220
Brian Carlstrom7940e442013-07-12 13:46:57 -0700221 // A check-cast could be eliminated due to verifier type analysis.
Mathieu Chartier90443472015-07-16 20:32:27 -0700222 void SafeCast() REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700223 STATS_LOCK();
224 safe_casts_++;
225 }
226
227 // A check-cast couldn't be eliminated due to verifier type analysis.
Mathieu Chartier90443472015-07-16 20:32:27 -0700228 void NotASafeCast() REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700229 STATS_LOCK();
230 not_safe_casts_++;
231 }
232
233 private:
234 Mutex stats_lock_;
235
Brian Carlstrom7940e442013-07-12 13:46:57 -0700236 size_t resolved_types_;
237 size_t unresolved_types_;
238
239 size_t resolved_instance_fields_;
240 size_t unresolved_instance_fields_;
241
242 size_t resolved_local_static_fields_;
243 size_t resolved_static_fields_;
244 size_t unresolved_static_fields_;
245 // Type based devirtualization for invoke interface and virtual.
246 size_t type_based_devirtualization_;
247
248 size_t resolved_methods_[kMaxInvokeType + 1];
249 size_t unresolved_methods_[kMaxInvokeType + 1];
250 size_t virtual_made_direct_[kMaxInvokeType + 1];
251 size_t direct_calls_to_boot_[kMaxInvokeType + 1];
252 size_t direct_methods_to_boot_[kMaxInvokeType + 1];
253
254 size_t safe_casts_;
255 size_t not_safe_casts_;
256
257 DISALLOW_COPY_AND_ASSIGN(AOTCompilationStats);
258};
259
Jeff Haodcdc85b2015-12-04 14:06:18 -0800260CompilerDriver::CompilerDriver(
261 const CompilerOptions* compiler_options,
262 VerificationResults* verification_results,
Jeff Haodcdc85b2015-12-04 14:06:18 -0800263 Compiler::Kind compiler_kind,
264 InstructionSet instruction_set,
265 const InstructionSetFeatures* instruction_set_features,
Vladimir Markodc4bcce2018-06-21 16:15:42 +0100266 HashSet<std::string>* image_classes,
Vladimir Marko944da602016-02-19 12:27:55 +0000267 size_t thread_count,
Vladimir Marko944da602016-02-19 12:27:55 +0000268 int swap_fd,
Calin Juravle998c2162015-12-21 15:39:33 +0200269 const ProfileCompilationInfo* profile_compilation_info)
Calin Juravle226501b2015-12-11 14:41:31 +0000270 : compiler_options_(compiler_options),
Brian Carlstrom6449c622014-02-10 23:48:36 -0800271 verification_results_(verification_results),
Ian Rogers72d32622014-05-06 16:20:11 -0700272 compiler_(Compiler::Create(this, compiler_kind)),
Jeff Hao48699fb2015-04-06 14:21:37 -0700273 compiler_kind_(compiler_kind),
Vladimir Marko33bff252017-11-01 14:35:42 +0000274 instruction_set_(
275 instruction_set == InstructionSet::kArm ? InstructionSet::kThumb2 : instruction_set),
Dave Allison70202782013-10-22 17:52:19 -0700276 instruction_set_features_(instruction_set_features),
Mathieu Chartierc4ae9162016-04-07 13:19:19 -0700277 requires_constructor_barrier_lock_("constructor barrier lock"),
Vladimir Markof4da6752014-08-01 19:04:18 +0100278 non_relative_linker_patch_count_(0u),
Vladimir Marko54159c62018-06-20 14:30:08 +0100279 image_classes_(std::move(image_classes)),
Andreas Gampef39208f2017-10-19 15:06:59 -0700280 number_of_soft_verifier_failures_(0),
Andreas Gampe6cf49e52015-03-05 13:08:45 -0800281 had_hard_verifier_failure_(false),
Andreas Gampeace0dc12016-01-20 13:33:13 -0800282 parallel_thread_count_(thread_count),
Brian Carlstrom7940e442013-07-12 13:46:57 -0700283 stats_(new AOTCompilationStats),
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700284 compiler_context_(nullptr),
Alexey Frunze19f6c692016-11-30 19:19:55 -0800285 support_boot_image_fixup_(true),
Calin Juravle998c2162015-12-21 15:39:33 +0200286 compiled_method_storage_(swap_fd),
Calin Juravle69158982016-03-16 11:53:41 +0000287 profile_compilation_info_(profile_compilation_info),
Vladimir Marko492a7fa2016-06-01 18:38:43 +0100288 max_arena_alloc_(0),
Mathieu Chartiera79efdb2018-01-18 16:31:01 -0800289 dex_to_dex_compiler_(this) {
Brian Carlstrom6449c622014-02-10 23:48:36 -0800290 DCHECK(compiler_options_ != nullptr);
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700291
Ian Rogers72d32622014-05-06 16:20:11 -0700292 compiler_->Init();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700293
Vladimir Markoaad75c62016-10-03 08:46:48 +0000294 if (GetCompilerOptions().IsBootImage()) {
Vladimir Markodc4bcce2018-06-21 16:15:42 +0100295 CHECK(image_classes_ != nullptr) << "Expected image classes for boot image";
Mathieu Chartierc5dd3192015-12-09 16:38:30 -0800296 }
Andreas Gampecac31ad2017-11-06 20:01:17 -0800297
298 compiled_method_storage_.SetDedupeEnabled(compiler_options_->DeduplicateCode());
Brian Carlstrom7940e442013-07-12 13:46:57 -0700299}
300
301CompilerDriver::~CompilerDriver() {
Mathieu Chartier93764b82017-07-17 14:51:53 -0700302 compiled_methods_.Visit([this](const DexFileReference& ref ATTRIBUTE_UNUSED,
Mathieu Chartieracab8d42016-11-23 13:45:58 -0800303 CompiledMethod* method) {
304 if (method != nullptr) {
305 CompiledMethod::ReleaseSwapAllocatedCompiledMethod(this, method);
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800306 }
Mathieu Chartieracab8d42016-11-23 13:45:58 -0800307 });
Ian Rogers72d32622014-05-06 16:20:11 -0700308 compiler_->UnInit();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700309}
310
Vladimir Marko35831e82015-09-11 11:59:18 +0100311
Ian Rogersdd7624d2014-03-14 17:43:00 -0700312#define CREATE_TRAMPOLINE(type, abi, offset) \
Andreas Gampeaf13ad92014-04-11 12:07:48 -0700313 if (Is64BitInstructionSet(instruction_set_)) { \
Ian Rogersdd7624d2014-03-14 17:43:00 -0700314 return CreateTrampoline64(instruction_set_, abi, \
Andreas Gampe542451c2016-07-26 09:02:02 -0700315 type ## _ENTRYPOINT_OFFSET(PointerSize::k64, offset)); \
Ian Rogersdd7624d2014-03-14 17:43:00 -0700316 } else { \
317 return CreateTrampoline32(instruction_set_, abi, \
Andreas Gampe542451c2016-07-26 09:02:02 -0700318 type ## _ENTRYPOINT_OFFSET(PointerSize::k32, offset)); \
Ian Rogersdd7624d2014-03-14 17:43:00 -0700319 }
320
Vladimir Marko93205e32016-04-13 11:59:46 +0100321std::unique_ptr<const std::vector<uint8_t>> CompilerDriver::CreateJniDlsymLookup() const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700322 CREATE_TRAMPOLINE(JNI, kJniAbi, pDlsymLookup)
Ian Rogers848871b2013-08-05 10:56:33 -0700323}
324
Vladimir Marko93205e32016-04-13 11:59:46 +0100325std::unique_ptr<const std::vector<uint8_t>> CompilerDriver::CreateQuickGenericJniTrampoline()
326 const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700327 CREATE_TRAMPOLINE(QUICK, kQuickAbi, pQuickGenericJniTrampoline)
Andreas Gampe2da88232014-02-27 12:26:20 -0800328}
329
Vladimir Marko93205e32016-04-13 11:59:46 +0100330std::unique_ptr<const std::vector<uint8_t>> CompilerDriver::CreateQuickImtConflictTrampoline()
331 const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700332 CREATE_TRAMPOLINE(QUICK, kQuickAbi, pQuickImtConflictTrampoline)
Jeff Hao88474b42013-10-23 16:24:40 -0700333}
334
Vladimir Marko93205e32016-04-13 11:59:46 +0100335std::unique_ptr<const std::vector<uint8_t>> CompilerDriver::CreateQuickResolutionTrampoline()
336 const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700337 CREATE_TRAMPOLINE(QUICK, kQuickAbi, pQuickResolutionTrampoline)
Brian Carlstrom7940e442013-07-12 13:46:57 -0700338}
339
Vladimir Marko93205e32016-04-13 11:59:46 +0100340std::unique_ptr<const std::vector<uint8_t>> CompilerDriver::CreateQuickToInterpreterBridge()
341 const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700342 CREATE_TRAMPOLINE(QUICK, kQuickAbi, pQuickToInterpreterBridge)
Brian Carlstrom7940e442013-07-12 13:46:57 -0700343}
Ian Rogersdd7624d2014-03-14 17:43:00 -0700344#undef CREATE_TRAMPOLINE
Brian Carlstrom7940e442013-07-12 13:46:57 -0700345
346void CompilerDriver::CompileAll(jobject class_loader,
Brian Carlstrom45602482013-07-21 22:07:55 -0700347 const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -0800348 TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700349 DCHECK(!Runtime::Current()->IsStarted());
Andreas Gampeace0dc12016-01-20 13:33:13 -0800350
351 InitializeThreadPools();
352
Nicolas Geoffrayb0bbe8e2016-11-19 10:42:37 +0000353 PreCompile(class_loader, dex_files, timings);
Vladimir Markoaad75c62016-10-03 08:46:48 +0000354 if (GetCompilerOptions().IsBootImage()) {
Nicolas Geoffray762869d2016-07-15 15:28:35 +0100355 // We don't need to setup the intrinsics for non boot image compilation, as
356 // those compilations will pick up a boot image that have the ArtMethod already
357 // set with the intrinsics flag.
Orion Hodson26ef34c2017-11-01 13:32:41 +0000358 InitializeIntrinsics();
Nicolas Geoffray762869d2016-07-15 15:28:35 +0100359 }
Andreas Gampe740667a2015-09-15 17:55:06 -0700360 // Compile:
361 // 1) Compile all classes and methods enabled for compilation. May fall back to dex-to-dex
362 // compilation.
Nicolas Geoffray49cda062017-04-21 13:08:25 +0100363 if (GetCompilerOptions().IsAnyCompilationEnabled()) {
Andreas Gampeace0dc12016-01-20 13:33:13 -0800364 Compile(class_loader, dex_files, timings);
Andreas Gampe740667a2015-09-15 17:55:06 -0700365 }
Nicolas Geoffray2d8801f2017-11-28 15:50:07 +0000366 if (GetCompilerOptions().GetDumpStats()) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700367 stats_->Dump();
368 }
Andreas Gampeace0dc12016-01-20 13:33:13 -0800369
370 FreeThreadPools();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700371}
372
Mathieu Chartiera79efdb2018-01-18 16:31:01 -0800373static optimizer::DexToDexCompiler::CompilationLevel GetDexToDexCompilationLevel(
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700374 Thread* self, const CompilerDriver& driver, Handle<mirror::ClassLoader> class_loader,
375 const DexFile& dex_file, const DexFile::ClassDef& class_def)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700376 REQUIRES_SHARED(Locks::mutator_lock_) {
Nicolas Geoffrayf3075272018-01-08 12:41:19 +0000377 // When the dex file is uncompressed in the APK, we do not generate a copy in the .vdex
378 // file. As a result, dex2oat will map the dex file read-only, and we only need to check
379 // that to know if we can do quickening.
380 if (dex_file.GetContainer() != nullptr && dex_file.GetContainer()->IsReadOnly()) {
381 return optimizer::DexToDexCompiler::CompilationLevel::kDontDexToDexCompile;
382 }
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800383 auto* const runtime = Runtime::Current();
Nicolas Geoffray49cda062017-04-21 13:08:25 +0100384 DCHECK(driver.GetCompilerOptions().IsQuickeningCompilationEnabled());
Brian Carlstrom7940e442013-07-12 13:46:57 -0700385 const char* descriptor = dex_file.GetClassDescriptor(class_def);
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800386 ClassLinker* class_linker = runtime->GetClassLinker();
Vladimir Markoa8bba7d2018-05-30 15:18:48 +0100387 ObjPtr<mirror::Class> klass = class_linker->FindClass(self, descriptor, class_loader);
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700388 if (klass == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700389 CHECK(self->IsExceptionPending());
390 self->ClearException();
Mathieu Chartiera79efdb2018-01-18 16:31:01 -0800391 return optimizer::DexToDexCompiler::CompilationLevel::kDontDexToDexCompile;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700392 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700393 // DexToDex at the kOptimize level may introduce quickened opcodes, which replace symbolic
394 // references with actual offsets. We cannot re-verify such instructions.
395 //
396 // We store the verification information in the class status in the oat file, which the linker
397 // can validate (checksums) and use to skip load-time verification. It is thus safe to
398 // optimize when a class has been fully verified before.
Mathieu Chartiera79efdb2018-01-18 16:31:01 -0800399 optimizer::DexToDexCompiler::CompilationLevel max_level =
400 optimizer::DexToDexCompiler::CompilationLevel::kOptimize;
Alex Lighte40dd382017-01-25 17:44:53 -0800401 if (driver.GetCompilerOptions().GetDebuggable()) {
402 // We are debuggable so definitions of classes might be changed. We don't want to do any
403 // optimizations that could break that.
Mathieu Chartiera79efdb2018-01-18 16:31:01 -0800404 max_level = optimizer::DexToDexCompiler::CompilationLevel::kDontDexToDexCompile;
Alex Lighte40dd382017-01-25 17:44:53 -0800405 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700406 if (klass->IsVerified()) {
Sebastien Hertz75021222013-07-16 18:34:50 +0200407 // Class is verified so we can enable DEX-to-DEX compilation for performance.
Alex Lighte40dd382017-01-25 17:44:53 -0800408 return max_level;
Sebastien Hertz75021222013-07-16 18:34:50 +0200409 } else {
Andreas Gampe1a4bc7f2017-03-27 14:57:30 -0700410 // Class verification has failed: do not run DEX-to-DEX optimizations.
Mathieu Chartiera79efdb2018-01-18 16:31:01 -0800411 return optimizer::DexToDexCompiler::CompilationLevel::kDontDexToDexCompile;
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700412 }
413}
414
Mathieu Chartiera79efdb2018-01-18 16:31:01 -0800415static optimizer::DexToDexCompiler::CompilationLevel GetDexToDexCompilationLevel(
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700416 Thread* self,
417 const CompilerDriver& driver,
418 jobject jclass_loader,
419 const DexFile& dex_file,
420 const DexFile::ClassDef& class_def) {
421 ScopedObjectAccess soa(self);
422 StackHandleScope<1> hs(soa.Self());
423 Handle<mirror::ClassLoader> class_loader(
Mathieu Chartier0795f232016-09-27 18:43:30 -0700424 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader)));
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700425 return GetDexToDexCompilationLevel(self, driver, class_loader, dex_file, class_def);
426}
427
428// Does the runtime for the InstructionSet provide an implementation returned by
429// GetQuickGenericJniStub allowing down calls that aren't compiled using a JNI compiler?
430static bool InstructionSetHasGenericJniStub(InstructionSet isa) {
431 switch (isa) {
Vladimir Marko33bff252017-11-01 14:35:42 +0000432 case InstructionSet::kArm:
433 case InstructionSet::kArm64:
434 case InstructionSet::kThumb2:
435 case InstructionSet::kMips:
436 case InstructionSet::kMips64:
437 case InstructionSet::kX86:
438 case InstructionSet::kX86_64: return true;
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700439 default: return false;
440 }
441}
442
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800443template <typename CompileFn>
444static void CompileMethodHarness(
445 Thread* self,
446 CompilerDriver* driver,
447 const DexFile::CodeItem* code_item,
448 uint32_t access_flags,
449 InvokeType invoke_type,
450 uint16_t class_def_idx,
451 uint32_t method_idx,
452 Handle<mirror::ClassLoader> class_loader,
453 const DexFile& dex_file,
454 optimizer::DexToDexCompiler::CompilationLevel dex_to_dex_compilation_level,
455 bool compilation_enabled,
456 Handle<mirror::DexCache> dex_cache,
457 CompileFn compile_fn) {
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700458 DCHECK(driver != nullptr);
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800459 CompiledMethod* compiled_method;
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700460 uint64_t start_ns = kTimeCompileMethod ? NanoTime() : 0;
461 MethodReference method_ref(&dex_file, method_idx);
462
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800463 compiled_method = compile_fn(self,
464 driver,
465 code_item,
466 access_flags,
467 invoke_type,
468 class_def_idx,
469 method_idx,
470 class_loader,
471 dex_file,
472 dex_to_dex_compilation_level,
473 compilation_enabled,
474 dex_cache);
Igor Murashkin9d4b6da2016-07-29 09:51:58 -0700475
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700476 if (kTimeCompileMethod) {
477 uint64_t duration_ns = NanoTime() - start_ns;
478 if (duration_ns > MsToNs(driver->GetCompiler()->GetMaximumCompilationTimeBeforeWarning())) {
David Sehr709b0702016-10-13 09:12:37 -0700479 LOG(WARNING) << "Compilation of " << dex_file.PrettyMethod(method_idx)
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700480 << " took " << PrettyDuration(duration_ns);
481 }
482 }
483
484 if (compiled_method != nullptr) {
485 // Count non-relative linker patches.
486 size_t non_relative_linker_patch_count = 0u;
Vladimir Markod8dbc8d2017-09-20 13:37:47 +0100487 for (const linker::LinkerPatch& patch : compiled_method->GetPatches()) {
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700488 if (!patch.IsPcRelative()) {
489 ++non_relative_linker_patch_count;
490 }
491 }
492 bool compile_pic = driver->GetCompilerOptions().GetCompilePic(); // Off by default
493 // When compiling with PIC, there should be zero non-relative linker patches
494 CHECK(!compile_pic || non_relative_linker_patch_count == 0u);
495
496 driver->AddCompiledMethod(method_ref, compiled_method, non_relative_linker_patch_count);
497 }
498
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700499 if (self->IsExceptionPending()) {
500 ScopedObjectAccess soa(self);
David Sehr709b0702016-10-13 09:12:37 -0700501 LOG(FATAL) << "Unexpected exception compiling: " << dex_file.PrettyMethod(method_idx) << "\n"
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700502 << self->GetException()->Dump();
Sebastien Hertz75021222013-07-16 18:34:50 +0200503 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700504}
505
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800506static void CompileMethodDex2Dex(
507 Thread* self,
508 CompilerDriver* driver,
509 const DexFile::CodeItem* code_item,
510 uint32_t access_flags,
511 InvokeType invoke_type,
512 uint16_t class_def_idx,
513 uint32_t method_idx,
514 Handle<mirror::ClassLoader> class_loader,
515 const DexFile& dex_file,
516 optimizer::DexToDexCompiler::CompilationLevel dex_to_dex_compilation_level,
517 bool compilation_enabled,
518 Handle<mirror::DexCache> dex_cache) {
519 auto dex_2_dex_fn = [](Thread* self ATTRIBUTE_UNUSED,
520 CompilerDriver* driver,
521 const DexFile::CodeItem* code_item,
522 uint32_t access_flags,
523 InvokeType invoke_type,
524 uint16_t class_def_idx,
525 uint32_t method_idx,
526 Handle<mirror::ClassLoader> class_loader,
527 const DexFile& dex_file,
528 optimizer::DexToDexCompiler::CompilationLevel dex_to_dex_compilation_level,
529 bool compilation_enabled ATTRIBUTE_UNUSED,
530 Handle<mirror::DexCache> dex_cache ATTRIBUTE_UNUSED) -> CompiledMethod* {
531 DCHECK(driver != nullptr);
532 MethodReference method_ref(&dex_file, method_idx);
533
534 optimizer::DexToDexCompiler* const compiler = &driver->GetDexToDexCompiler();
535
536 if (compiler->ShouldCompileMethod(method_ref)) {
537 VerificationResults* results = driver->GetVerificationResults();
538 DCHECK(results != nullptr);
539 const VerifiedMethod* verified_method = results->GetVerifiedMethod(method_ref);
540 // Do not optimize if a VerifiedMethod is missing. SafeCast elision,
541 // for example, relies on it.
542 return compiler->CompileMethod(
543 code_item,
544 access_flags,
545 invoke_type,
546 class_def_idx,
547 method_idx,
548 class_loader,
549 dex_file,
550 (verified_method != nullptr)
551 ? dex_to_dex_compilation_level
552 : optimizer::DexToDexCompiler::CompilationLevel::kDontDexToDexCompile);
553 }
554 return nullptr;
555 };
556 CompileMethodHarness(self,
557 driver,
558 code_item,
559 access_flags,
560 invoke_type,
561 class_def_idx,
562 method_idx,
563 class_loader,
564 dex_file,
565 dex_to_dex_compilation_level,
566 compilation_enabled,
567 dex_cache,
568 dex_2_dex_fn);
569}
570
571static void CompileMethodQuick(
572 Thread* self,
573 CompilerDriver* driver,
574 const DexFile::CodeItem* code_item,
575 uint32_t access_flags,
576 InvokeType invoke_type,
577 uint16_t class_def_idx,
578 uint32_t method_idx,
579 Handle<mirror::ClassLoader> class_loader,
580 const DexFile& dex_file,
581 optimizer::DexToDexCompiler::CompilationLevel dex_to_dex_compilation_level,
582 bool compilation_enabled,
583 Handle<mirror::DexCache> dex_cache) {
584 auto quick_fn = [](
585 Thread* self,
586 CompilerDriver* driver,
587 const DexFile::CodeItem* code_item,
588 uint32_t access_flags,
589 InvokeType invoke_type,
590 uint16_t class_def_idx,
591 uint32_t method_idx,
592 Handle<mirror::ClassLoader> class_loader,
593 const DexFile& dex_file,
594 optimizer::DexToDexCompiler::CompilationLevel dex_to_dex_compilation_level,
595 bool compilation_enabled,
596 Handle<mirror::DexCache> dex_cache) {
597 DCHECK(driver != nullptr);
598 CompiledMethod* compiled_method = nullptr;
599 MethodReference method_ref(&dex_file, method_idx);
600
601 if ((access_flags & kAccNative) != 0) {
602 // Are we extracting only and have support for generic JNI down calls?
603 if (!driver->GetCompilerOptions().IsJniCompilationEnabled() &&
604 InstructionSetHasGenericJniStub(driver->GetInstructionSet())) {
605 // Leaving this empty will trigger the generic JNI version
606 } else {
607 // Query any JNI optimization annotations such as @FastNative or @CriticalNative.
608 access_flags |= annotations::GetNativeMethodAnnotationAccessFlags(
609 dex_file, dex_file.GetClassDef(class_def_idx), method_idx);
610
611 compiled_method = driver->GetCompiler()->JniCompile(
612 access_flags, method_idx, dex_file, dex_cache);
613 CHECK(compiled_method != nullptr);
614 }
615 } else if ((access_flags & kAccAbstract) != 0) {
616 // Abstract methods don't have code.
617 } else {
618 VerificationResults* results = driver->GetVerificationResults();
619 DCHECK(results != nullptr);
620 const VerifiedMethod* verified_method = results->GetVerifiedMethod(method_ref);
621 bool compile = compilation_enabled &&
622 // Basic checks, e.g., not <clinit>.
623 results->IsCandidateForCompilation(method_ref, access_flags) &&
624 // Did not fail to create VerifiedMethod metadata.
625 verified_method != nullptr &&
626 // Do not have failures that should punt to the interpreter.
627 !verified_method->HasRuntimeThrow() &&
628 (verified_method->GetEncounteredVerificationFailures() &
629 (verifier::VERIFY_ERROR_FORCE_INTERPRETER | verifier::VERIFY_ERROR_LOCKING)) == 0 &&
630 // Is eligable for compilation by methods-to-compile filter.
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800631 driver->ShouldCompileBasedOnProfile(method_ref);
632
633 if (compile) {
634 // NOTE: if compiler declines to compile this method, it will return null.
635 compiled_method = driver->GetCompiler()->Compile(code_item,
636 access_flags,
637 invoke_type,
638 class_def_idx,
639 method_idx,
640 class_loader,
641 dex_file,
642 dex_cache);
643 }
644 if (compiled_method == nullptr &&
645 dex_to_dex_compilation_level !=
646 optimizer::DexToDexCompiler::CompilationLevel::kDontDexToDexCompile) {
647 DCHECK(!Runtime::Current()->UseJitCompilation());
648 // TODO: add a command-line option to disable DEX-to-DEX compilation ?
Mathieu Chartier279e3a32018-01-24 18:17:55 -0800649 driver->GetDexToDexCompiler().MarkForCompilation(self, method_ref);
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800650 }
651 }
652 return compiled_method;
653 };
654 CompileMethodHarness(self,
655 driver,
656 code_item,
657 access_flags,
658 invoke_type,
659 class_def_idx,
660 method_idx,
661 class_loader,
662 dex_file,
663 dex_to_dex_compilation_level,
664 compilation_enabled,
665 dex_cache,
666 quick_fn);
667}
668
Vladimir Markodc4bcce2018-06-21 16:15:42 +0100669// Compile a single Method. (For testing only.)
670void CompilerDriver::CompileOne(Thread* self,
671 jobject class_loader,
672 const DexFile& dex_file,
673 uint16_t class_def_idx,
674 uint32_t method_idx,
675 uint32_t access_flags,
676 InvokeType invoke_type,
677 const DexFile::CodeItem* code_item,
678 Handle<mirror::DexCache> dex_cache,
679 Handle<mirror::ClassLoader> h_class_loader) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700680 // Can we run DEX-to-DEX compiler on this class ?
Mathieu Chartiera79efdb2018-01-18 16:31:01 -0800681 optimizer::DexToDexCompiler::CompilationLevel dex_to_dex_compilation_level =
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700682 GetDexToDexCompilationLevel(self,
683 *this,
Vladimir Markodc4bcce2018-06-21 16:15:42 +0100684 class_loader,
685 dex_file,
686 dex_file.GetClassDef(class_def_idx));
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700687
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800688 CompileMethodQuick(self,
689 this,
690 code_item,
691 access_flags,
692 invoke_type,
693 class_def_idx,
694 method_idx,
Vladimir Markodc4bcce2018-06-21 16:15:42 +0100695 h_class_loader,
696 dex_file,
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800697 dex_to_dex_compilation_level,
698 true,
699 dex_cache);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700700
Mathieu Chartier279e3a32018-01-24 18:17:55 -0800701 const size_t num_methods = dex_to_dex_compiler_.NumCodeItemsToQuicken(self);
Mathieu Chartiera79efdb2018-01-18 16:31:01 -0800702 if (num_methods != 0) {
703 DCHECK_EQ(num_methods, 1u);
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800704 CompileMethodDex2Dex(self,
705 this,
706 code_item,
707 access_flags,
708 invoke_type,
709 class_def_idx,
710 method_idx,
Vladimir Markodc4bcce2018-06-21 16:15:42 +0100711 h_class_loader,
712 dex_file,
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800713 dex_to_dex_compilation_level,
714 true,
715 dex_cache);
Mathieu Chartiera79efdb2018-01-18 16:31:01 -0800716 dex_to_dex_compiler_.ClearState();
Vladimir Marko492a7fa2016-06-01 18:38:43 +0100717 }
Mathieu Chartier2535abe2015-02-17 10:38:49 -0800718}
719
Andreas Gampeace0dc12016-01-20 13:33:13 -0800720void CompilerDriver::Resolve(jobject class_loader,
721 const std::vector<const DexFile*>& dex_files,
722 TimingLogger* timings) {
723 // Resolution allocates classes and needs to run single-threaded to be deterministic.
724 bool force_determinism = GetCompilerOptions().IsForceDeterminism();
725 ThreadPool* resolve_thread_pool = force_determinism
726 ? single_thread_pool_.get()
727 : parallel_thread_pool_.get();
728 size_t resolve_thread_count = force_determinism ? 1U : parallel_thread_count_;
729
Brian Carlstrom7940e442013-07-12 13:46:57 -0700730 for (size_t i = 0; i != dex_files.size(); ++i) {
731 const DexFile* dex_file = dex_files[i];
Kenny Rootd5185342014-05-13 14:47:05 -0700732 CHECK(dex_file != nullptr);
Andreas Gampeace0dc12016-01-20 13:33:13 -0800733 ResolveDexFile(class_loader,
734 *dex_file,
735 dex_files,
736 resolve_thread_pool,
737 resolve_thread_count,
738 timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700739 }
740}
741
Andreas Gampeace0dc12016-01-20 13:33:13 -0800742static void ResolveConstStrings(CompilerDriver* driver,
743 const std::vector<const DexFile*>& dex_files,
744 TimingLogger* timings) {
Nicolas Geoffray571d2342016-10-12 13:03:15 +0000745 ScopedObjectAccess soa(Thread::Current());
746 StackHandleScope<1> hs(soa.Self());
747 ClassLinker* const class_linker = Runtime::Current()->GetClassLinker();
748 MutableHandle<mirror::DexCache> dex_cache(hs.NewHandle<mirror::DexCache>(nullptr));
749
Andreas Gampeace0dc12016-01-20 13:33:13 -0800750 for (const DexFile* dex_file : dex_files) {
Vladimir Markocd556b02017-02-03 11:47:34 +0000751 dex_cache.Assign(class_linker->FindDexCache(soa.Self(), *dex_file));
Andreas Gampeace0dc12016-01-20 13:33:13 -0800752 TimingLogger::ScopedTiming t("Resolve const-string Strings", timings);
753
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -0700754 for (ClassAccessor accessor : dex_file->GetClasses()) {
755 if (!driver->IsClassToCompile(accessor.GetDescriptor())) {
Andreas Gampeace0dc12016-01-20 13:33:13 -0800756 // Compilation is skipped, do not resolve const-string in code of this class.
Vladimir Marko175e7862018-03-27 09:03:13 +0000757 // FIXME: Make sure that inlining honors this. b/26687569
Andreas Gampeace0dc12016-01-20 13:33:13 -0800758 continue;
759 }
Mathieu Chartier0d896bd2018-05-25 00:20:27 -0700760 for (const ClassAccessor::Method& method : accessor.GetMethods()) {
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -0700761 // Resolve const-strings in the code. Done to have deterministic allocation behavior. Right
762 // now this is single-threaded for simplicity.
763 // TODO: Collect the relevant string indices in parallel, then allocate them sequentially
764 // in a stable order.
765 for (const DexInstructionPcPair& inst : method.GetInstructions()) {
766 switch (inst->Opcode()) {
767 case Instruction::CONST_STRING:
768 case Instruction::CONST_STRING_JUMBO: {
769 dex::StringIndex string_index((inst->Opcode() == Instruction::CONST_STRING)
770 ? inst->VRegB_21c()
771 : inst->VRegB_31c());
772 ObjPtr<mirror::String> string = class_linker->ResolveString(string_index, dex_cache);
773 CHECK(string != nullptr) << "Could not allocate a string when forcing determinism";
774 break;
775 }
Andreas Gampeace0dc12016-01-20 13:33:13 -0800776
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -0700777 default:
778 break;
779 }
780 }
Mathieu Chartier0d896bd2018-05-25 00:20:27 -0700781 }
Vladimir Marko175e7862018-03-27 09:03:13 +0000782 }
783 }
784}
785
786// Initialize type check bit strings for check-cast and instance-of in the code. Done to have
787// deterministic allocation behavior. Right now this is single-threaded for simplicity.
788// TODO: Collect the relevant type indices in parallel, then process them sequentially in a
789// stable order.
790
791static void InitializeTypeCheckBitstrings(CompilerDriver* driver,
792 ClassLinker* class_linker,
793 Handle<mirror::DexCache> dex_cache,
794 const DexFile& dex_file,
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -0700795 const ClassAccessor::Method& method)
Vladimir Marko175e7862018-03-27 09:03:13 +0000796 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -0700797 for (const DexInstructionPcPair& inst : method.GetInstructions()) {
Vladimir Marko175e7862018-03-27 09:03:13 +0000798 switch (inst->Opcode()) {
799 case Instruction::CHECK_CAST:
800 case Instruction::INSTANCE_OF: {
801 dex::TypeIndex type_index(
802 (inst->Opcode() == Instruction::CHECK_CAST) ? inst->VRegB_21c() : inst->VRegC_22c());
803 const char* descriptor = dex_file.StringByTypeIdx(type_index);
804 // We currently do not use the bitstring type check for array or final (including
805 // primitive) classes. We may reconsider this in future if it's deemed to be beneficial.
806 // And we cannot use it for classes outside the boot image as we do not know the runtime
807 // value of their bitstring when compiling (it may not even get assigned at runtime).
Vladimir Markodc4bcce2018-06-21 16:15:42 +0100808 if (descriptor[0] == 'L' && driver->GetCompilerOptions().IsImageClass(descriptor)) {
Vladimir Marko175e7862018-03-27 09:03:13 +0000809 ObjPtr<mirror::Class> klass =
810 class_linker->LookupResolvedType(type_index,
811 dex_cache.Get(),
812 /* class_loader */ nullptr);
813 CHECK(klass != nullptr) << descriptor << " should have been previously resolved.";
814 // Now assign the bitstring if the class is not final. Keep this in sync with sharpening.
815 if (!klass->IsFinal()) {
816 MutexLock subtype_check_lock(Thread::Current(), *Locks::subtype_check_lock_);
817 SubtypeCheck<ObjPtr<mirror::Class>>::EnsureAssigned(klass);
818 }
Andreas Gampeace0dc12016-01-20 13:33:13 -0800819 }
Vladimir Marko175e7862018-03-27 09:03:13 +0000820 break;
821 }
822
823 default:
824 break;
825 }
826 }
827}
828
829static void InitializeTypeCheckBitstrings(CompilerDriver* driver,
830 const std::vector<const DexFile*>& dex_files,
831 TimingLogger* timings) {
832 ScopedObjectAccess soa(Thread::Current());
833 StackHandleScope<1> hs(soa.Self());
834 ClassLinker* const class_linker = Runtime::Current()->GetClassLinker();
835 MutableHandle<mirror::DexCache> dex_cache(hs.NewHandle<mirror::DexCache>(nullptr));
836
837 for (const DexFile* dex_file : dex_files) {
838 dex_cache.Assign(class_linker->FindDexCache(soa.Self(), *dex_file));
839 TimingLogger::ScopedTiming t("Initialize type check bitstrings", timings);
840
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -0700841 for (ClassAccessor accessor : dex_file->GetClasses()) {
842 if (!driver->IsClassToCompile(accessor.GetDescriptor())) {
Vladimir Marko175e7862018-03-27 09:03:13 +0000843 // Compilation is skipped, do not look for type checks in code of this class.
844 // FIXME: Make sure that inlining honors this. b/26687569
845 continue;
846 }
847
848 // Direct and virtual methods.
Mathieu Chartier0d896bd2018-05-25 00:20:27 -0700849 for (const ClassAccessor::Method& method : accessor.GetMethods()) {
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -0700850 InitializeTypeCheckBitstrings(driver, class_linker, dex_cache, *dex_file, method);
Mathieu Chartier0d896bd2018-05-25 00:20:27 -0700851 }
Andreas Gampeace0dc12016-01-20 13:33:13 -0800852 }
853 }
854}
855
856inline void CompilerDriver::CheckThreadPools() {
857 DCHECK(parallel_thread_pool_ != nullptr);
858 DCHECK(single_thread_pool_ != nullptr);
859}
860
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +0000861static void EnsureVerifiedOrVerifyAtRuntime(jobject jclass_loader,
862 const std::vector<const DexFile*>& dex_files) {
863 ScopedObjectAccess soa(Thread::Current());
864 StackHandleScope<2> hs(soa.Self());
865 Handle<mirror::ClassLoader> class_loader(
866 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader)));
867 MutableHandle<mirror::Class> cls(hs.NewHandle<mirror::Class>(nullptr));
868 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
869
870 for (const DexFile* dex_file : dex_files) {
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -0700871 for (ClassAccessor accessor : dex_file->GetClasses()) {
872 cls.Assign(class_linker->FindClass(soa.Self(), accessor.GetDescriptor(), class_loader));
Andreas Gampefa4333d2017-02-14 11:10:34 -0800873 if (cls == nullptr) {
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +0000874 soa.Self()->ClearException();
875 } else if (&cls->GetDexFile() == dex_file) {
Nicolas Geoffray7cc3ae52017-03-07 14:33:37 +0000876 DCHECK(cls->IsErroneous() || cls->IsVerified() || cls->ShouldVerifyAtRuntime())
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +0000877 << cls->PrettyClass()
878 << " " << cls->GetStatus();
879 }
880 }
881 }
882}
883
Andreas Gampeace0dc12016-01-20 13:33:13 -0800884void CompilerDriver::PreCompile(jobject class_loader,
885 const std::vector<const DexFile*>& dex_files,
886 TimingLogger* timings) {
887 CheckThreadPools();
Vladimir Marko213ee2d2018-06-22 11:56:34 +0100888
Vladimir Markodc4bcce2018-06-21 16:15:42 +0100889 VLOG(compiler) << "Before precompile " << GetMemoryUsageString(false);
890
Vladimir Marko213ee2d2018-06-22 11:56:34 +0100891 compiled_classes_.AddDexFiles(GetCompilerOptions().GetDexFilesForOatFile());
892 dex_to_dex_compiler_.SetDexFiles(GetCompilerOptions().GetDexFilesForOatFile());
893
Vladimir Markodc4bcce2018-06-21 16:15:42 +0100894 // Precompile:
895 // 1) Load image classes.
896 // 2) Resolve all classes.
897 // 3) For deterministic boot image, resolve strings for const-string instructions.
898 // 4) Attempt to verify all classes.
899 // 5) Attempt to initialize image classes, and trivially initialized classes.
900 // 6) Update the set of image classes.
901 // 7) For deterministic boot image, initialize bitstrings for type checking.
Andreas Gampeace0dc12016-01-20 13:33:13 -0800902
Brian Carlstrom7940e442013-07-12 13:46:57 -0700903 LoadImageClasses(timings);
Andreas Gampe8d295f82015-01-20 14:50:21 -0800904 VLOG(compiler) << "LoadImageClasses: " << GetMemoryUsageString(false);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700905
Nicolas Geoffray49cda062017-04-21 13:08:25 +0100906 if (compiler_options_->IsAnyCompilationEnabled()) {
Mathieu Chartier88b74b62017-07-16 17:08:19 -0700907 // Avoid adding the dex files in the case where we aren't going to add compiled methods.
908 // This reduces RAM usage for this case.
909 for (const DexFile* dex_file : dex_files) {
910 // Can be already inserted if the caller is CompileOne. This happens for gtests.
911 if (!compiled_methods_.HaveDexFile(dex_file)) {
Mathieu Chartierfc8b4222017-09-17 13:44:24 -0700912 compiled_methods_.AddDexFile(dex_file);
Mathieu Chartier88b74b62017-07-16 17:08:19 -0700913 }
914 }
Nicolas Geoffray49cda062017-04-21 13:08:25 +0100915 // Resolve eagerly to prepare for compilation.
Andreas Gampeace0dc12016-01-20 13:33:13 -0800916 Resolve(class_loader, dex_files, timings);
Mathieu Chartiere86deef2015-03-19 13:43:37 -0700917 VLOG(compiler) << "Resolve: " << GetMemoryUsageString(false);
918 }
919
Nicolas Geoffray60ca9492016-12-20 21:15:00 +0000920 if (compiler_options_->AssumeClassesAreVerified()) {
Mathieu Chartierab972ef2014-12-03 17:38:22 -0800921 VLOG(compiler) << "Verify none mode specified, skipping verification.";
Andreas Gampeace0dc12016-01-20 13:33:13 -0800922 SetVerified(class_loader, dex_files, timings);
Mathieu Chartiere86deef2015-03-19 13:43:37 -0700923 }
924
Nicolas Geoffray60ca9492016-12-20 21:15:00 +0000925 if (!compiler_options_->IsVerificationEnabled()) {
Jeff Hao4a200f52014-04-01 14:58:49 -0700926 return;
927 }
928
Vladimir Markoaad75c62016-10-03 08:46:48 +0000929 if (GetCompilerOptions().IsForceDeterminism() && GetCompilerOptions().IsBootImage()) {
Andreas Gampeace0dc12016-01-20 13:33:13 -0800930 // Resolve strings from const-string. Do this now to have a deterministic image.
931 ResolveConstStrings(this, dex_files, timings);
932 VLOG(compiler) << "Resolve const-strings: " << GetMemoryUsageString(false);
933 }
934
Nicolas Geoffrayb0bbe8e2016-11-19 10:42:37 +0000935 Verify(class_loader, dex_files, timings);
Andreas Gampe8d295f82015-01-20 14:50:21 -0800936 VLOG(compiler) << "Verify: " << GetMemoryUsageString(false);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700937
Andreas Gampe6cf49e52015-03-05 13:08:45 -0800938 if (had_hard_verifier_failure_ && GetCompilerOptions().AbortOnHardVerifierFailure()) {
Andreas Gampefdfb4d42017-07-27 12:12:22 -0700939 // Avoid dumping threads. Even if we shut down the thread pools, there will still be three
940 // instances of this thread's stack.
941 LOG(FATAL_WITHOUT_ABORT) << "Had a hard failure verifying all classes, and was asked to abort "
942 << "in such situations. Please check the log.";
Andreas Gampe56c9b7c2018-02-27 18:49:26 -0800943 _exit(1);
Andreas Gampef39208f2017-10-19 15:06:59 -0700944 } else if (number_of_soft_verifier_failures_ > 0 &&
945 GetCompilerOptions().AbortOnSoftVerifierFailure()) {
946 LOG(FATAL_WITHOUT_ABORT) << "Had " << number_of_soft_verifier_failures_ << " soft failure(s) "
947 << "verifying all classes, and was asked to abort in such situations. "
948 << "Please check the log.";
Andreas Gampe56c9b7c2018-02-27 18:49:26 -0800949 _exit(1);
Andreas Gampe6cf49e52015-03-05 13:08:45 -0800950 }
951
Nicolas Geoffray49cda062017-04-21 13:08:25 +0100952 if (compiler_options_->IsAnyCompilationEnabled()) {
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +0000953 if (kIsDebugBuild) {
954 EnsureVerifiedOrVerifyAtRuntime(class_loader, dex_files);
955 }
Nicolas Geoffrayade72d62016-12-15 13:20:02 +0000956 InitializeClasses(class_loader, dex_files, timings);
957 VLOG(compiler) << "InitializeClasses: " << GetMemoryUsageString(false);
958 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700959
960 UpdateImageClasses(timings);
Andreas Gampe8d295f82015-01-20 14:50:21 -0800961 VLOG(compiler) << "UpdateImageClasses: " << GetMemoryUsageString(false);
Vladimir Marko175e7862018-03-27 09:03:13 +0000962
963 if (kBitstringSubtypeCheckEnabled &&
964 GetCompilerOptions().IsForceDeterminism() && GetCompilerOptions().IsBootImage()) {
965 // Initialize type check bit string used by check-cast and instanceof.
966 // Do this now to have a deterministic image.
967 // Note: This is done after UpdateImageClasses() at it relies on the image classes to be final.
968 InitializeTypeCheckBitstrings(this, dex_files, timings);
969 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700970}
971
Andreas Gampe4bf3ae92014-11-11 13:28:29 -0800972bool CompilerDriver::IsClassToCompile(const char* descriptor) const {
Andreas Gampeb1fcead2015-04-20 18:53:51 -0700973 if (classes_to_compile_ == nullptr) {
974 return true;
975 }
Vladimir Marko54159c62018-06-20 14:30:08 +0100976 return classes_to_compile_->find(StringPiece(descriptor)) != classes_to_compile_->end();
Andreas Gampe4bf3ae92014-11-11 13:28:29 -0800977}
978
Calin Juravle226501b2015-12-11 14:41:31 +0000979bool CompilerDriver::ShouldCompileBasedOnProfile(const MethodReference& method_ref) const {
Mathieu Chartier97ab5e32017-02-22 13:35:44 -0800980 // Profile compilation info may be null if no profile is passed.
Mathieu Chartierd0af56c2017-02-17 12:56:25 -0800981 if (!CompilerFilter::DependsOnProfile(compiler_options_->GetCompilerFilter())) {
982 // Use the compiler filter instead of the presence of profile_compilation_info_ since
983 // we may want to have full speed compilation along with profile based layout optimizations.
Calin Juravle226501b2015-12-11 14:41:31 +0000984 return true;
985 }
Mathieu Chartier97ab5e32017-02-22 13:35:44 -0800986 // If we are using a profile filter but do not have a profile compilation info, compile nothing.
987 if (profile_compilation_info_ == nullptr) {
988 return false;
989 }
Mathieu Chartier7b135c82017-06-05 12:54:01 -0700990 // Compile only hot methods, it is the profile saver's job to decide what startup methods to mark
991 // as hot.
Mathieu Chartierbbe3a5e2017-06-13 16:36:17 -0700992 bool result = profile_compilation_info_->GetMethodHotness(method_ref).IsHot();
Calin Juravle226501b2015-12-11 14:41:31 +0000993
994 if (kDebugProfileGuidedCompilation) {
995 LOG(INFO) << "[ProfileGuidedCompilation] "
Mathieu Chartierfc8b4222017-09-17 13:44:24 -0700996 << (result ? "Compiled" : "Skipped") << " method:" << method_ref.PrettyMethod(true);
Calin Juravle226501b2015-12-11 14:41:31 +0000997 }
998 return result;
999}
1000
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001001class ResolveCatchBlockExceptionsClassVisitor : public ClassVisitor {
1002 public:
Vladimir Marko8d6768d2017-03-14 10:13:21 +00001003 ResolveCatchBlockExceptionsClassVisitor() : classes_() {}
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001004
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001005 virtual bool operator()(ObjPtr<mirror::Class> c) OVERRIDE REQUIRES_SHARED(Locks::mutator_lock_) {
Vladimir Marko8d6768d2017-03-14 10:13:21 +00001006 classes_.push_back(c);
Mathieu Chartiere4275c02015-08-06 15:34:15 -07001007 return true;
1008 }
1009
Vladimir Marko8d6768d2017-03-14 10:13:21 +00001010 void FindExceptionTypesToResolve(
1011 std::set<std::pair<dex::TypeIndex, const DexFile*>>* exceptions_to_resolve)
Vladimir Markobfb80d22017-02-14 14:08:12 +00001012 REQUIRES_SHARED(Locks::mutator_lock_) {
Vladimir Marko8d6768d2017-03-14 10:13:21 +00001013 const auto pointer_size = Runtime::Current()->GetClassLinker()->GetImagePointerSize();
1014 for (ObjPtr<mirror::Class> klass : classes_) {
1015 for (ArtMethod& method : klass->GetMethods(pointer_size)) {
1016 FindExceptionTypesToResolveForMethod(&method, exceptions_to_resolve);
1017 }
1018 }
1019 }
1020
1021 private:
1022 void FindExceptionTypesToResolveForMethod(
1023 ArtMethod* method,
1024 std::set<std::pair<dex::TypeIndex, const DexFile*>>* exceptions_to_resolve)
1025 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartier808c7a52017-12-15 11:19:33 -08001026 if (method->GetCodeItem() == nullptr) {
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001027 return; // native or abstract method
Brian Carlstrom7940e442013-07-12 13:46:57 -07001028 }
David Sehr0225f8e2018-01-31 08:52:24 +00001029 CodeItemDataAccessor accessor(method->DexInstructionData());
Mathieu Chartier808c7a52017-12-15 11:19:33 -08001030 if (accessor.TriesSize() == 0) {
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001031 return; // nothing to process
1032 }
Mathieu Chartier808c7a52017-12-15 11:19:33 -08001033 const uint8_t* encoded_catch_handler_list = accessor.GetCatchHandlerData();
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001034 size_t num_encoded_catch_handlers = DecodeUnsignedLeb128(&encoded_catch_handler_list);
1035 for (size_t i = 0; i < num_encoded_catch_handlers; i++) {
1036 int32_t encoded_catch_handler_size = DecodeSignedLeb128(&encoded_catch_handler_list);
1037 bool has_catch_all = false;
1038 if (encoded_catch_handler_size <= 0) {
1039 encoded_catch_handler_size = -encoded_catch_handler_size;
1040 has_catch_all = true;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001041 }
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001042 for (int32_t j = 0; j < encoded_catch_handler_size; j++) {
Andreas Gampea5b09a62016-11-17 15:21:22 -08001043 dex::TypeIndex encoded_catch_handler_handlers_type_idx =
1044 dex::TypeIndex(DecodeUnsignedLeb128(&encoded_catch_handler_list));
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001045 // Add to set of types to resolve if not already in the dex cache resolved types
Vladimir Marko8d6768d2017-03-14 10:13:21 +00001046 if (!method->IsResolvedTypeIdx(encoded_catch_handler_handlers_type_idx)) {
1047 exceptions_to_resolve->emplace(encoded_catch_handler_handlers_type_idx,
1048 method->GetDexFile());
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001049 }
1050 // ignore address associated with catch handler
1051 DecodeUnsignedLeb128(&encoded_catch_handler_list);
1052 }
1053 if (has_catch_all) {
1054 // ignore catch all address
1055 DecodeUnsignedLeb128(&encoded_catch_handler_list);
1056 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001057 }
1058 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001059
Vladimir Marko8d6768d2017-03-14 10:13:21 +00001060 std::vector<ObjPtr<mirror::Class>> classes_;
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001061};
1062
1063class RecordImageClassesVisitor : public ClassVisitor {
1064 public:
Vladimir Marko54159c62018-06-20 14:30:08 +01001065 explicit RecordImageClassesVisitor(HashSet<std::string>* image_classes)
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001066 : image_classes_(image_classes) {}
1067
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001068 bool operator()(ObjPtr<mirror::Class> klass) OVERRIDE REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001069 std::string temp;
1070 image_classes_->insert(klass->GetDescriptor(&temp));
1071 return true;
1072 }
1073
1074 private:
Vladimir Marko54159c62018-06-20 14:30:08 +01001075 HashSet<std::string>* const image_classes_;
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001076};
Brian Carlstrom7940e442013-07-12 13:46:57 -07001077
1078// Make a list of descriptors for classes to include in the image
Mathieu Chartier90443472015-07-16 20:32:27 -07001079void CompilerDriver::LoadImageClasses(TimingLogger* timings) {
Kenny Rootd5185342014-05-13 14:47:05 -07001080 CHECK(timings != nullptr);
Vladimir Markoaad75c62016-10-03 08:46:48 +00001081 if (!GetCompilerOptions().IsBootImage()) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001082 return;
1083 }
1084
Mathieu Chartierf5997b42014-06-20 10:37:54 -07001085 TimingLogger::ScopedTiming t("LoadImageClasses", timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001086 // Make a first class to load all classes explicitly listed in the file
1087 Thread* self = Thread::Current();
1088 ScopedObjectAccess soa(self);
1089 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Vladimir Markodc4bcce2018-06-21 16:15:42 +01001090 CHECK(image_classes_ != nullptr);
Mathieu Chartier02e25112013-08-14 16:14:24 -07001091 for (auto it = image_classes_->begin(), end = image_classes_->end(); it != end;) {
Vladimir Markoe9c36b32013-11-21 15:49:16 +00001092 const std::string& descriptor(*it);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001093 StackHandleScope<1> hs(self);
1094 Handle<mirror::Class> klass(
1095 hs.NewHandle(class_linker->FindSystemClass(self, descriptor.c_str())));
Andreas Gampefa4333d2017-02-14 11:10:34 -08001096 if (klass == nullptr) {
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001097 VLOG(compiler) << "Failed to find class " << descriptor;
Vladimir Marko54159c62018-06-20 14:30:08 +01001098 it = image_classes_->erase(it);
Ian Rogersa436fde2013-08-27 23:34:06 -07001099 self->ClearException();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001100 } else {
1101 ++it;
1102 }
1103 }
1104
1105 // Resolve exception classes referenced by the loaded classes. The catch logic assumes
1106 // exceptions are resolved by the verifier when there is a catch block in an interested method.
1107 // Do this here so that exception classes appear to have been specified image classes.
Andreas Gampea5b09a62016-11-17 15:21:22 -08001108 std::set<std::pair<dex::TypeIndex, const DexFile*>> unresolved_exception_types;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001109 StackHandleScope<1> hs(self);
1110 Handle<mirror::Class> java_lang_Throwable(
1111 hs.NewHandle(class_linker->FindSystemClass(self, "Ljava/lang/Throwable;")));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001112 do {
1113 unresolved_exception_types.clear();
Vladimir Marko8d6768d2017-03-14 10:13:21 +00001114 {
1115 // Thread suspension is not allowed while ResolveCatchBlockExceptionsClassVisitor
1116 // is using a std::vector<ObjPtr<mirror::Class>>.
1117 ScopedAssertNoThreadSuspension ants(__FUNCTION__);
1118 ResolveCatchBlockExceptionsClassVisitor visitor;
1119 class_linker->VisitClasses(&visitor);
1120 visitor.FindExceptionTypesToResolve(&unresolved_exception_types);
1121 }
Andreas Gampea5b09a62016-11-17 15:21:22 -08001122 for (const auto& exception_type : unresolved_exception_types) {
1123 dex::TypeIndex exception_type_idx = exception_type.first;
Mathieu Chartier02e25112013-08-14 16:14:24 -07001124 const DexFile* dex_file = exception_type.second;
Vladimir Marko666ee3d2017-12-11 18:37:36 +00001125 StackHandleScope<1> hs2(self);
Mathieu Chartierf284d442016-06-02 11:48:30 -07001126 Handle<mirror::DexCache> dex_cache(hs2.NewHandle(class_linker->RegisterDexFile(*dex_file,
1127 nullptr)));
Vladimir Marko666ee3d2017-12-11 18:37:36 +00001128 ObjPtr<mirror::Class> klass =
Andreas Gampefa4333d2017-02-14 11:10:34 -08001129 (dex_cache != nullptr)
Vladimir Marko666ee3d2017-12-11 18:37:36 +00001130 ? class_linker->ResolveType(exception_type_idx,
Vladimir Markocd556b02017-02-03 11:47:34 +00001131 dex_cache,
1132 ScopedNullHandle<mirror::ClassLoader>())
Vladimir Marko666ee3d2017-12-11 18:37:36 +00001133 : nullptr;
Andreas Gampefa4333d2017-02-14 11:10:34 -08001134 if (klass == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001135 const DexFile::TypeId& type_id = dex_file->GetTypeId(exception_type_idx);
1136 const char* descriptor = dex_file->GetTypeDescriptor(type_id);
1137 LOG(FATAL) << "Failed to resolve class " << descriptor;
1138 }
Vladimir Marko666ee3d2017-12-11 18:37:36 +00001139 DCHECK(java_lang_Throwable->IsAssignableFrom(klass));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001140 }
1141 // Resolving exceptions may load classes that reference more exceptions, iterate until no
1142 // more are found
1143 } while (!unresolved_exception_types.empty());
1144
1145 // We walk the roots looking for classes so that we'll pick up the
1146 // above classes plus any classes them depend on such super
1147 // classes, interfaces, and the required ClassLinker roots.
Vladimir Markodc4bcce2018-06-21 16:15:42 +01001148 RecordImageClassesVisitor visitor(image_classes_);
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001149 class_linker->VisitClasses(&visitor);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001150
Vladimir Marko54159c62018-06-20 14:30:08 +01001151 CHECK(!image_classes_->empty());
Brian Carlstrom7940e442013-07-12 13:46:57 -07001152}
1153
Vladimir Marko19a4d372016-12-08 14:41:46 +00001154static void MaybeAddToImageClasses(Thread* self,
1155 ObjPtr<mirror::Class> klass,
Vladimir Marko54159c62018-06-20 14:30:08 +01001156 HashSet<std::string>* image_classes)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001157 REQUIRES_SHARED(Locks::mutator_lock_) {
Vladimir Marko19a4d372016-12-08 14:41:46 +00001158 DCHECK_EQ(self, Thread::Current());
Mathieu Chartierf8322842014-05-16 10:59:25 -07001159 StackHandleScope<1> hs(self);
Ian Rogers1ff3c982014-08-12 02:30:58 -07001160 std::string temp;
Andreas Gampe542451c2016-07-26 09:02:02 -07001161 const PointerSize pointer_size = Runtime::Current()->GetClassLinker()->GetImagePointerSize();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001162 while (!klass->IsObjectClass()) {
Ian Rogers1ff3c982014-08-12 02:30:58 -07001163 const char* descriptor = klass->GetDescriptor(&temp);
Vladimir Marko54159c62018-06-20 14:30:08 +01001164 if (image_classes->find(StringPiece(descriptor)) != image_classes->end()) {
1165 break; // Previously inserted.
Brian Carlstrom7940e442013-07-12 13:46:57 -07001166 }
Vladimir Marko54159c62018-06-20 14:30:08 +01001167 image_classes->insert(descriptor);
Ian Rogers1ff3c982014-08-12 02:30:58 -07001168 VLOG(compiler) << "Adding " << descriptor << " to image classes";
Vladimir Marko19a4d372016-12-08 14:41:46 +00001169 for (size_t i = 0, num_interfaces = klass->NumDirectInterfaces(); i != num_interfaces; ++i) {
1170 ObjPtr<mirror::Class> interface = mirror::Class::GetDirectInterface(self, klass, i);
1171 DCHECK(interface != nullptr);
1172 MaybeAddToImageClasses(self, interface, image_classes);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001173 }
Vladimir Marko19a4d372016-12-08 14:41:46 +00001174 for (auto& m : klass->GetVirtualMethods(pointer_size)) {
1175 MaybeAddToImageClasses(self, m.GetDeclaringClass(), image_classes);
Mathieu Chartiere401d142015-04-22 13:56:20 -07001176 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001177 if (klass->IsArrayClass()) {
Vladimir Marko19a4d372016-12-08 14:41:46 +00001178 MaybeAddToImageClasses(self, klass->GetComponentType(), image_classes);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001179 }
Mathieu Chartierf8322842014-05-16 10:59:25 -07001180 klass.Assign(klass->GetSuperClass());
Brian Carlstrom7940e442013-07-12 13:46:57 -07001181 }
1182}
1183
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001184// Keeps all the data for the update together. Also doubles as the reference visitor.
1185// Note: we can use object pointers because we suspend all threads.
1186class ClinitImageUpdate {
1187 public:
Mathieu Chartier31e88222016-10-14 18:43:19 -07001188 static ClinitImageUpdate* Create(VariableSizedHandleScope& hs,
Vladimir Marko54159c62018-06-20 14:30:08 +01001189 HashSet<std::string>* image_class_descriptors,
Mathieu Chartier31e88222016-10-14 18:43:19 -07001190 Thread* self,
1191 ClassLinker* linker) {
1192 std::unique_ptr<ClinitImageUpdate> res(new ClinitImageUpdate(hs,
1193 image_class_descriptors,
1194 self,
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001195 linker));
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001196 return res.release();
1197 }
1198
1199 ~ClinitImageUpdate() {
1200 // Allow others to suspend again.
1201 self_->EndAssertNoThreadSuspension(old_cause_);
1202 }
1203
1204 // Visitor for VisitReferences.
Mathieu Chartier31e88222016-10-14 18:43:19 -07001205 void operator()(ObjPtr<mirror::Object> object,
1206 MemberOffset field_offset,
1207 bool /* is_static */) const
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001208 REQUIRES_SHARED(Locks::mutator_lock_) {
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001209 mirror::Object* ref = object->GetFieldObject<mirror::Object>(field_offset);
1210 if (ref != nullptr) {
1211 VisitClinitClassesObject(ref);
1212 }
1213 }
1214
Roland Levillain5e8d5f02016-10-18 18:03:43 +01001215 // java.lang.ref.Reference visitor for VisitReferences.
Mathieu Chartier31e88222016-10-14 18:43:19 -07001216 void operator()(ObjPtr<mirror::Class> klass ATTRIBUTE_UNUSED,
1217 ObjPtr<mirror::Reference> ref ATTRIBUTE_UNUSED) const {}
Mathieu Chartierda7c6502015-07-23 16:01:26 -07001218
1219 // Ignore class native roots.
1220 void VisitRootIfNonNull(mirror::CompressedReference<mirror::Object>* root ATTRIBUTE_UNUSED)
1221 const {}
1222 void VisitRoot(mirror::CompressedReference<mirror::Object>* root ATTRIBUTE_UNUSED) const {}
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001223
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001224 void Walk() REQUIRES_SHARED(Locks::mutator_lock_) {
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001225 // Use the initial classes as roots for a search.
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001226 for (Handle<mirror::Class> klass_root : image_classes_) {
1227 VisitClinitClassesObject(klass_root.Get());
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001228 }
Vladimir Marko19a4d372016-12-08 14:41:46 +00001229 Thread* self = Thread::Current();
1230 ScopedAssertNoThreadSuspension ants(__FUNCTION__);
Mathieu Chartier31e88222016-10-14 18:43:19 -07001231 for (Handle<mirror::Class> h_klass : to_insert_) {
Vladimir Marko19a4d372016-12-08 14:41:46 +00001232 MaybeAddToImageClasses(self, h_klass.Get(), image_class_descriptors_);
Mathieu Chartier31e88222016-10-14 18:43:19 -07001233 }
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001234 }
1235
1236 private:
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001237 class FindImageClassesVisitor : public ClassVisitor {
1238 public:
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001239 explicit FindImageClassesVisitor(VariableSizedHandleScope& hs,
1240 ClinitImageUpdate* data)
1241 : data_(data),
1242 hs_(hs) {}
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001243
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001244 bool operator()(ObjPtr<mirror::Class> klass) OVERRIDE REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001245 std::string temp;
Vladimir Marko54159c62018-06-20 14:30:08 +01001246 StringPiece name(klass->GetDescriptor(&temp));
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001247 if (data_->image_class_descriptors_->find(name) != data_->image_class_descriptors_->end()) {
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001248 data_->image_classes_.push_back(hs_.NewHandle(klass));
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001249 } else {
1250 // Check whether it is initialized and has a clinit. They must be kept, too.
1251 if (klass->IsInitialized() && klass->FindClassInitializer(
1252 Runtime::Current()->GetClassLinker()->GetImagePointerSize()) != nullptr) {
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001253 data_->image_classes_.push_back(hs_.NewHandle(klass));
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001254 }
1255 }
1256 return true;
1257 }
1258
1259 private:
1260 ClinitImageUpdate* const data_;
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001261 VariableSizedHandleScope& hs_;
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001262 };
1263
Mathieu Chartier31e88222016-10-14 18:43:19 -07001264 ClinitImageUpdate(VariableSizedHandleScope& hs,
Vladimir Marko54159c62018-06-20 14:30:08 +01001265 HashSet<std::string>* image_class_descriptors,
Mathieu Chartier31e88222016-10-14 18:43:19 -07001266 Thread* self,
1267 ClassLinker* linker) REQUIRES_SHARED(Locks::mutator_lock_)
1268 : hs_(hs),
1269 image_class_descriptors_(image_class_descriptors),
1270 self_(self) {
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001271 CHECK(linker != nullptr);
1272 CHECK(image_class_descriptors != nullptr);
1273
1274 // Make sure nobody interferes with us.
1275 old_cause_ = self->StartAssertNoThreadSuspension("Boot image closure");
1276
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001277 // Find all the already-marked classes.
1278 WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001279 FindImageClassesVisitor visitor(hs_, this);
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001280 linker->VisitClasses(&visitor);
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001281 }
1282
1283 void VisitClinitClassesObject(mirror::Object* object) const
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001284 REQUIRES_SHARED(Locks::mutator_lock_) {
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001285 DCHECK(object != nullptr);
1286 if (marked_objects_.find(object) != marked_objects_.end()) {
1287 // Already processed.
1288 return;
1289 }
1290
1291 // Mark it.
1292 marked_objects_.insert(object);
1293
1294 if (object->IsClass()) {
Mathieu Chartier31e88222016-10-14 18:43:19 -07001295 // Add to the TODO list since MaybeAddToImageClasses may cause thread suspension. Thread
1296 // suspensionb is not safe to do in VisitObjects or VisitReferences.
1297 to_insert_.push_back(hs_.NewHandle(object->AsClass()));
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001298 } else {
1299 // Else visit the object's class.
1300 VisitClinitClassesObject(object->GetClass());
1301 }
1302
Mathieu Chartiere401d142015-04-22 13:56:20 -07001303 // If it is not a DexCache, visit all references.
Mathieu Chartier31e88222016-10-14 18:43:19 -07001304 if (!object->IsDexCache()) {
Mathieu Chartier059ef3d2015-08-18 13:54:21 -07001305 object->VisitReferences(*this, *this);
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001306 }
1307 }
1308
Mathieu Chartier31e88222016-10-14 18:43:19 -07001309 VariableSizedHandleScope& hs_;
1310 mutable std::vector<Handle<mirror::Class>> to_insert_;
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001311 mutable std::unordered_set<mirror::Object*> marked_objects_;
Vladimir Marko54159c62018-06-20 14:30:08 +01001312 HashSet<std::string>* const image_class_descriptors_;
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001313 std::vector<Handle<mirror::Class>> image_classes_;
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001314 Thread* const self_;
1315 const char* old_cause_;
1316
1317 DISALLOW_COPY_AND_ASSIGN(ClinitImageUpdate);
1318};
Brian Carlstrom7940e442013-07-12 13:46:57 -07001319
Ian Rogers3d504072014-03-01 09:16:49 -08001320void CompilerDriver::UpdateImageClasses(TimingLogger* timings) {
Vladimir Markoaad75c62016-10-03 08:46:48 +00001321 if (GetCompilerOptions().IsBootImage()) {
Mathieu Chartierf5997b42014-06-20 10:37:54 -07001322 TimingLogger::ScopedTiming t("UpdateImageClasses", timings);
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001323
Mathieu Chartier4f55e222015-09-04 13:26:21 -07001324 Runtime* runtime = Runtime::Current();
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001325
1326 // Suspend all threads.
Mathieu Chartier4f55e222015-09-04 13:26:21 -07001327 ScopedSuspendAll ssa(__FUNCTION__);
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001328
Mathieu Chartier31e88222016-10-14 18:43:19 -07001329 VariableSizedHandleScope hs(Thread::Current());
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001330 std::string error_msg;
Mathieu Chartier31e88222016-10-14 18:43:19 -07001331 std::unique_ptr<ClinitImageUpdate> update(ClinitImageUpdate::Create(hs,
Vladimir Markodc4bcce2018-06-21 16:15:42 +01001332 image_classes_,
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001333 Thread::Current(),
Mathieu Chartier31e88222016-10-14 18:43:19 -07001334 runtime->GetClassLinker()));
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001335
1336 // Do the marking.
1337 update->Walk();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001338 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001339}
1340
Vladimir Marko07785bb2015-06-15 18:52:54 +01001341bool CompilerDriver::CanAssumeClassIsLoaded(mirror::Class* klass) {
1342 Runtime* runtime = Runtime::Current();
1343 if (!runtime->IsAotCompiler()) {
Calin Juravleffc87072016-04-20 14:22:09 +01001344 DCHECK(runtime->UseJitCompilation());
Vladimir Marko07785bb2015-06-15 18:52:54 +01001345 // Having the klass reference here implies that the klass is already loaded.
1346 return true;
1347 }
Vladimir Markoaad75c62016-10-03 08:46:48 +00001348 if (!GetCompilerOptions().IsBootImage()) {
Vladimir Marko07785bb2015-06-15 18:52:54 +01001349 // Assume loaded only if klass is in the boot image. App classes cannot be assumed
1350 // loaded because we don't even know what class loader will be used to load them.
1351 bool class_in_image = runtime->GetHeap()->FindSpaceFromObject(klass, false)->IsImageSpace();
1352 return class_in_image;
1353 }
1354 std::string temp;
1355 const char* descriptor = klass->GetDescriptor(&temp);
Vladimir Markodc4bcce2018-06-21 16:15:42 +01001356 return GetCompilerOptions().IsImageClass(descriptor);
Vladimir Marko07785bb2015-06-15 18:52:54 +01001357}
1358
Vladimir Marko8d6768d2017-03-14 10:13:21 +00001359bool CompilerDriver::CanAccessTypeWithoutChecks(ObjPtr<mirror::Class> referrer_class,
1360 ObjPtr<mirror::Class> resolved_class) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001361 if (resolved_class == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001362 stats_->TypeNeedsAccessCheck();
1363 return false; // Unknown class needs access checks.
1364 }
David Brazdil38f64d32016-01-18 17:13:41 +00001365 bool is_accessible = resolved_class->IsPublic(); // Public classes are always accessible.
1366 if (!is_accessible) {
David Brazdil38f64d32016-01-18 17:13:41 +00001367 if (referrer_class == nullptr) {
1368 stats_->TypeNeedsAccessCheck();
1369 return false; // Incomplete referrer knowledge needs access check.
1370 }
1371 // Perform access check, will return true if access is ok or false if we're going to have to
1372 // check this at runtime (for example for class loaders).
1373 is_accessible = referrer_class->CanAccess(resolved_class);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001374 }
David Brazdil38f64d32016-01-18 17:13:41 +00001375 if (is_accessible) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001376 stats_->TypeDoesntNeedAccessCheck();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001377 } else {
1378 stats_->TypeNeedsAccessCheck();
1379 }
David Brazdil38f64d32016-01-18 17:13:41 +00001380 return is_accessible;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001381}
1382
Vladimir Marko8d6768d2017-03-14 10:13:21 +00001383bool CompilerDriver::CanAccessInstantiableTypeWithoutChecks(ObjPtr<mirror::Class> referrer_class,
1384 ObjPtr<mirror::Class> resolved_class,
Mingyao Yangfb8464a2015-11-02 10:56:59 -08001385 bool* finalizable) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001386 if (resolved_class == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001387 stats_->TypeNeedsAccessCheck();
Mingyao Yangfb8464a2015-11-02 10:56:59 -08001388 // Be conservative.
1389 *finalizable = true;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001390 return false; // Unknown class needs access checks.
1391 }
Mingyao Yangfb8464a2015-11-02 10:56:59 -08001392 *finalizable = resolved_class->IsFinalizable();
David Brazdil38f64d32016-01-18 17:13:41 +00001393 bool is_accessible = resolved_class->IsPublic(); // Public classes are always accessible.
1394 if (!is_accessible) {
David Brazdil38f64d32016-01-18 17:13:41 +00001395 if (referrer_class == nullptr) {
1396 stats_->TypeNeedsAccessCheck();
1397 return false; // Incomplete referrer knowledge needs access check.
1398 }
1399 // Perform access and instantiable checks, will return true if access is ok or false if we're
1400 // going to have to check this at runtime (for example for class loaders).
1401 is_accessible = referrer_class->CanAccess(resolved_class);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001402 }
David Brazdil38f64d32016-01-18 17:13:41 +00001403 bool result = is_accessible && resolved_class->IsInstantiable();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001404 if (result) {
1405 stats_->TypeDoesntNeedAccessCheck();
1406 } else {
1407 stats_->TypeNeedsAccessCheck();
1408 }
1409 return result;
1410}
1411
Vladimir Markobe0e5462014-02-26 11:24:15 +00001412void CompilerDriver::ProcessedInstanceField(bool resolved) {
1413 if (!resolved) {
1414 stats_->UnresolvedInstanceField();
1415 } else {
1416 stats_->ResolvedInstanceField();
1417 }
1418}
1419
1420void CompilerDriver::ProcessedStaticField(bool resolved, bool local) {
1421 if (!resolved) {
1422 stats_->UnresolvedStaticField();
1423 } else if (local) {
1424 stats_->ResolvedLocalStaticField();
1425 } else {
1426 stats_->ResolvedStaticField();
1427 }
1428}
1429
Mathieu Chartierc7853442015-03-27 14:35:38 -07001430ArtField* CompilerDriver::ComputeInstanceFieldInfo(uint32_t field_idx,
Vladimir Markoe11dd502017-12-08 14:09:45 +00001431 const DexCompilationUnit* mUnit,
1432 bool is_put,
Mathieu Chartierc7853442015-03-27 14:35:38 -07001433 const ScopedObjectAccess& soa) {
Vladimir Markobe0e5462014-02-26 11:24:15 +00001434 // Try to resolve the field and compiling method's class.
Mathieu Chartierc7853442015-03-27 14:35:38 -07001435 ArtField* resolved_field;
Vladimir Marko28e012a2017-12-07 11:22:59 +00001436 ObjPtr<mirror::Class> referrer_class;
Mathieu Chartier736b5602015-09-02 14:54:11 -07001437 Handle<mirror::DexCache> dex_cache(mUnit->GetDexCache());
Vladimir Markobe0e5462014-02-26 11:24:15 +00001438 {
Vladimir Markoe11dd502017-12-08 14:09:45 +00001439 Handle<mirror::ClassLoader> class_loader = mUnit->GetClassLoader();
1440 resolved_field = ResolveField(soa, dex_cache, class_loader, field_idx, /* is_static */ false);
Mathieu Chartierc7853442015-03-27 14:35:38 -07001441 referrer_class = resolved_field != nullptr
Vladimir Markoe11dd502017-12-08 14:09:45 +00001442 ? ResolveCompilingMethodsClass(soa, dex_cache, class_loader, mUnit) : nullptr;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001443 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001444 bool can_link = false;
Vladimir Markobe0e5462014-02-26 11:24:15 +00001445 if (resolved_field != nullptr && referrer_class != nullptr) {
Vladimir Markobe0e5462014-02-26 11:24:15 +00001446 std::pair<bool, bool> fast_path = IsFastInstanceField(
Mathieu Chartier736b5602015-09-02 14:54:11 -07001447 dex_cache.Get(), referrer_class, resolved_field, field_idx);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001448 can_link = is_put ? fast_path.second : fast_path.first;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001449 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001450 ProcessedInstanceField(can_link);
1451 return can_link ? resolved_field : nullptr;
1452}
1453
1454bool CompilerDriver::ComputeInstanceFieldInfo(uint32_t field_idx, const DexCompilationUnit* mUnit,
1455 bool is_put, MemberOffset* field_offset,
1456 bool* is_volatile) {
1457 ScopedObjectAccess soa(Thread::Current());
Mathieu Chartierc7853442015-03-27 14:35:38 -07001458 ArtField* resolved_field = ComputeInstanceFieldInfo(field_idx, mUnit, is_put, soa);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001459
Mathieu Chartierc7853442015-03-27 14:35:38 -07001460 if (resolved_field == nullptr) {
Vladimir Markobe0e5462014-02-26 11:24:15 +00001461 // Conservative defaults.
1462 *is_volatile = true;
1463 *field_offset = MemberOffset(static_cast<size_t>(-1));
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001464 return false;
1465 } else {
1466 *is_volatile = resolved_field->IsVolatile();
1467 *field_offset = resolved_field->GetOffset();
1468 return true;
Vladimir Markobe0e5462014-02-26 11:24:15 +00001469 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001470}
1471
Vladimir Marko2730db02014-01-27 11:15:17 +00001472const VerifiedMethod* CompilerDriver::GetVerifiedMethod(const DexFile* dex_file,
1473 uint32_t method_idx) const {
1474 MethodReference ref(dex_file, method_idx);
1475 return verification_results_->GetVerifiedMethod(ref);
1476}
1477
1478bool CompilerDriver::IsSafeCast(const DexCompilationUnit* mUnit, uint32_t dex_pc) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001479 if (!compiler_options_->IsVerificationEnabled()) {
1480 // If we didn't verify, every cast has to be treated as non-safe.
1481 return false;
1482 }
Vladimir Marko2730db02014-01-27 11:15:17 +00001483 DCHECK(mUnit->GetVerifiedMethod() != nullptr);
1484 bool result = mUnit->GetVerifiedMethod()->IsSafeCast(dex_pc);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001485 if (result) {
1486 stats_->SafeCast();
1487 } else {
1488 stats_->NotASafeCast();
1489 }
1490 return result;
1491}
1492
Mathieu Chartier90443472015-07-16 20:32:27 -07001493class CompilationVisitor {
1494 public:
1495 virtual ~CompilationVisitor() {}
1496 virtual void Visit(size_t index) = 0;
1497};
1498
Brian Carlstrom7940e442013-07-12 13:46:57 -07001499class ParallelCompilationManager {
1500 public:
Brian Carlstrom7940e442013-07-12 13:46:57 -07001501 ParallelCompilationManager(ClassLinker* class_linker,
1502 jobject class_loader,
1503 CompilerDriver* compiler,
1504 const DexFile* dex_file,
Andreas Gampede7b4362014-07-28 18:38:57 -07001505 const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -08001506 ThreadPool* thread_pool)
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001507 : index_(0),
1508 class_linker_(class_linker),
Brian Carlstrom7940e442013-07-12 13:46:57 -07001509 class_loader_(class_loader),
1510 compiler_(compiler),
1511 dex_file_(dex_file),
Andreas Gampede7b4362014-07-28 18:38:57 -07001512 dex_files_(dex_files),
Ian Rogers3d504072014-03-01 09:16:49 -08001513 thread_pool_(thread_pool) {}
Brian Carlstrom7940e442013-07-12 13:46:57 -07001514
1515 ClassLinker* GetClassLinker() const {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001516 CHECK(class_linker_ != nullptr);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001517 return class_linker_;
1518 }
1519
1520 jobject GetClassLoader() const {
1521 return class_loader_;
1522 }
1523
1524 CompilerDriver* GetCompiler() const {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001525 CHECK(compiler_ != nullptr);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001526 return compiler_;
1527 }
1528
1529 const DexFile* GetDexFile() const {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001530 CHECK(dex_file_ != nullptr);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001531 return dex_file_;
1532 }
1533
Andreas Gampede7b4362014-07-28 18:38:57 -07001534 const std::vector<const DexFile*>& GetDexFiles() const {
1535 return dex_files_;
1536 }
1537
Mathieu Chartier90443472015-07-16 20:32:27 -07001538 void ForAll(size_t begin, size_t end, CompilationVisitor* visitor, size_t work_units)
1539 REQUIRES(!*Locks::mutator_lock_) {
Andreas Gampe3c060ad2018-01-22 13:07:49 -08001540 ForAllLambda(begin, end, [visitor](size_t index) { visitor->Visit(index); }, work_units);
1541 }
1542
1543 template <typename Fn>
1544 void ForAllLambda(size_t begin, size_t end, Fn fn, size_t work_units)
1545 REQUIRES(!*Locks::mutator_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001546 Thread* self = Thread::Current();
1547 self->AssertNoPendingException();
1548 CHECK_GT(work_units, 0U);
1549
Orion Hodson88591fe2018-03-06 13:35:43 +00001550 index_.store(begin, std::memory_order_relaxed);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001551 for (size_t i = 0; i < work_units; ++i) {
Andreas Gampe3c060ad2018-01-22 13:07:49 -08001552 thread_pool_->AddTask(self, new ForAllClosureLambda<Fn>(this, end, fn));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001553 }
1554 thread_pool_->StartWorkers(self);
1555
1556 // Ensure we're suspended while we're blocked waiting for the other threads to finish (worker
1557 // thread destructor's called below perform join).
1558 CHECK_NE(self->GetState(), kRunnable);
1559
1560 // Wait for all the worker threads to finish.
1561 thread_pool_->Wait(self, true, false);
Andreas Gampeace0dc12016-01-20 13:33:13 -08001562
1563 // And stop the workers accepting jobs.
1564 thread_pool_->StopWorkers(self);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001565 }
1566
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001567 size_t NextIndex() {
Orion Hodson88591fe2018-03-06 13:35:43 +00001568 return index_.fetch_add(1, std::memory_order_seq_cst);
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001569 }
1570
Brian Carlstrom7940e442013-07-12 13:46:57 -07001571 private:
Andreas Gampe3c060ad2018-01-22 13:07:49 -08001572 template <typename Fn>
1573 class ForAllClosureLambda : public Task {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001574 public:
Andreas Gampe3c060ad2018-01-22 13:07:49 -08001575 ForAllClosureLambda(ParallelCompilationManager* manager, size_t end, Fn fn)
Brian Carlstrom7940e442013-07-12 13:46:57 -07001576 : manager_(manager),
Brian Carlstrom7940e442013-07-12 13:46:57 -07001577 end_(end),
Andreas Gampe3c060ad2018-01-22 13:07:49 -08001578 fn_(fn) {}
Brian Carlstrom7940e442013-07-12 13:46:57 -07001579
Andreas Gampe3c060ad2018-01-22 13:07:49 -08001580 void Run(Thread* self) OVERRIDE {
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001581 while (true) {
1582 const size_t index = manager_->NextIndex();
1583 if (UNLIKELY(index >= end_)) {
1584 break;
1585 }
Andreas Gampe3c060ad2018-01-22 13:07:49 -08001586 fn_(index);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001587 self->AssertNoPendingException();
1588 }
1589 }
1590
Andreas Gampe3c060ad2018-01-22 13:07:49 -08001591 void Finalize() OVERRIDE {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001592 delete this;
1593 }
Brian Carlstrom0cd7ec22013-07-17 23:40:20 -07001594
Brian Carlstrom7940e442013-07-12 13:46:57 -07001595 private:
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001596 ParallelCompilationManager* const manager_;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001597 const size_t end_;
Andreas Gampe3c060ad2018-01-22 13:07:49 -08001598 Fn fn_;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001599 };
1600
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001601 AtomicInteger index_;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001602 ClassLinker* const class_linker_;
1603 const jobject class_loader_;
1604 CompilerDriver* const compiler_;
1605 const DexFile* const dex_file_;
Andreas Gampede7b4362014-07-28 18:38:57 -07001606 const std::vector<const DexFile*>& dex_files_;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001607 ThreadPool* const thread_pool_;
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001608
1609 DISALLOW_COPY_AND_ASSIGN(ParallelCompilationManager);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001610};
1611
Jeff Hao0e49b422013-11-08 12:16:56 -08001612// A fast version of SkipClass above if the class pointer is available
1613// that avoids the expensive FindInClassPath search.
Vladimir Marko28e012a2017-12-07 11:22:59 +00001614static bool SkipClass(jobject class_loader, const DexFile& dex_file, ObjPtr<mirror::Class> klass)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001615 REQUIRES_SHARED(Locks::mutator_lock_) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001616 DCHECK(klass != nullptr);
Jeff Hao0e49b422013-11-08 12:16:56 -08001617 const DexFile& original_dex_file = *klass->GetDexCache()->GetDexFile();
1618 if (&dex_file != &original_dex_file) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001619 if (class_loader == nullptr) {
David Sehr709b0702016-10-13 09:12:37 -07001620 LOG(WARNING) << "Skipping class " << klass->PrettyDescriptor() << " from "
Jeff Hao0e49b422013-11-08 12:16:56 -08001621 << dex_file.GetLocation() << " previously found in "
1622 << original_dex_file.GetLocation();
1623 }
1624 return true;
1625 }
1626 return false;
1627}
1628
Mathieu Chartier70b63482014-06-27 17:19:04 -07001629static void CheckAndClearResolveException(Thread* self)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001630 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartier70b63482014-06-27 17:19:04 -07001631 CHECK(self->IsExceptionPending());
Nicolas Geoffray14691c52015-03-05 10:40:17 +00001632 mirror::Throwable* exception = self->GetException();
Ian Rogers1ff3c982014-08-12 02:30:58 -07001633 std::string temp;
1634 const char* descriptor = exception->GetClass()->GetDescriptor(&temp);
1635 const char* expected_exceptions[] = {
1636 "Ljava/lang/IllegalAccessError;",
1637 "Ljava/lang/IncompatibleClassChangeError;",
1638 "Ljava/lang/InstantiationError;",
Brian Carlstrom898fcb52014-08-25 23:07:30 -07001639 "Ljava/lang/LinkageError;",
Ian Rogers1ff3c982014-08-12 02:30:58 -07001640 "Ljava/lang/NoClassDefFoundError;",
1641 "Ljava/lang/NoSuchFieldError;",
1642 "Ljava/lang/NoSuchMethodError;"
1643 };
1644 bool found = false;
1645 for (size_t i = 0; (found == false) && (i < arraysize(expected_exceptions)); ++i) {
1646 if (strcmp(descriptor, expected_exceptions[i]) == 0) {
1647 found = true;
1648 }
1649 }
1650 if (!found) {
Brian Carlstrom898fcb52014-08-25 23:07:30 -07001651 LOG(FATAL) << "Unexpected exception " << exception->Dump();
Mathieu Chartier70b63482014-06-27 17:19:04 -07001652 }
1653 self->ClearException();
1654}
1655
Mathieu Chartierb5d38612016-04-07 10:52:52 -07001656bool CompilerDriver::RequiresConstructorBarrier(const DexFile& dex_file,
1657 uint16_t class_def_idx) const {
Mathieu Chartier18e26872018-06-04 17:19:02 -07001658 ClassAccessor accessor(dex_file, class_def_idx);
Mathieu Chartierb5d38612016-04-07 10:52:52 -07001659 // We require a constructor barrier if there are final instance fields.
Mathieu Chartier18e26872018-06-04 17:19:02 -07001660 for (const ClassAccessor::Field& field : accessor.GetInstanceFields()) {
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001661 if (field.IsFinal()) {
Mathieu Chartier18e26872018-06-04 17:19:02 -07001662 return true;
Mathieu Chartierb5d38612016-04-07 10:52:52 -07001663 }
Mathieu Chartier18e26872018-06-04 17:19:02 -07001664 }
1665 return false;
Mathieu Chartierb5d38612016-04-07 10:52:52 -07001666}
1667
Mathieu Chartier90443472015-07-16 20:32:27 -07001668class ResolveClassFieldsAndMethodsVisitor : public CompilationVisitor {
1669 public:
1670 explicit ResolveClassFieldsAndMethodsVisitor(const ParallelCompilationManager* manager)
1671 : manager_(manager) {}
Brian Carlstrom7940e442013-07-12 13:46:57 -07001672
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001673 void Visit(size_t class_def_index) OVERRIDE REQUIRES(!Locks::mutator_lock_) {
Andreas Gampe9b827ab2017-12-07 19:32:48 -08001674 ScopedTrace trace(__FUNCTION__);
Mathieu Chartier90443472015-07-16 20:32:27 -07001675 Thread* const self = Thread::Current();
1676 jobject jclass_loader = manager_->GetClassLoader();
1677 const DexFile& dex_file = *manager_->GetDexFile();
1678 ClassLinker* class_linker = manager_->GetClassLinker();
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001679
Mathieu Chartier90443472015-07-16 20:32:27 -07001680 // Method and Field are the worst. We can't resolve without either
1681 // context from the code use (to disambiguate virtual vs direct
1682 // method and instance vs static field) or from class
1683 // definitions. While the compiler will resolve what it can as it
1684 // needs it, here we try to resolve fields and methods used in class
1685 // definitions, since many of them many never be referenced by
1686 // generated code.
1687 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
1688 ScopedObjectAccess soa(self);
1689 StackHandleScope<2> hs(soa.Self());
1690 Handle<mirror::ClassLoader> class_loader(
Mathieu Chartier0795f232016-09-27 18:43:30 -07001691 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader)));
Mathieu Chartier673ed3d2015-08-28 14:56:43 -07001692 Handle<mirror::DexCache> dex_cache(hs.NewHandle(class_linker->FindDexCache(
Vladimir Markocd556b02017-02-03 11:47:34 +00001693 soa.Self(), dex_file)));
Mathieu Chartier90443472015-07-16 20:32:27 -07001694 // Resolve the class.
Vladimir Marko28e012a2017-12-07 11:22:59 +00001695 ObjPtr<mirror::Class> klass =
Vladimir Marko666ee3d2017-12-11 18:37:36 +00001696 class_linker->ResolveType(class_def.class_idx_, dex_cache, class_loader);
Mathieu Chartier90443472015-07-16 20:32:27 -07001697 bool resolve_fields_and_methods;
1698 if (klass == nullptr) {
1699 // Class couldn't be resolved, for example, super-class is in a different dex file. Don't
1700 // attempt to resolve methods and fields when there is no declaring class.
1701 CheckAndClearResolveException(soa.Self());
1702 resolve_fields_and_methods = false;
1703 } else {
1704 // We successfully resolved a class, should we skip it?
1705 if (SkipClass(jclass_loader, dex_file, klass)) {
1706 return;
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001707 }
Mathieu Chartier90443472015-07-16 20:32:27 -07001708 // We want to resolve the methods and fields eagerly.
1709 resolve_fields_and_methods = true;
Ian Rogers68b56852014-08-29 20:19:11 -07001710 }
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001711 // If an instance field is final then we need to have a barrier on the return, static final
1712 // fields are assigned within the lock held for class initialization.
1713 bool requires_constructor_barrier = false;
1714
Mathieu Chartier18e26872018-06-04 17:19:02 -07001715 ClassAccessor accessor(dex_file, class_def_index);
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001716 // Optionally resolve fields and methods and figure out if we need a constructor barrier.
1717 auto method_visitor = [&](const ClassAccessor::Method& method)
1718 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartier90443472015-07-16 20:32:27 -07001719 if (resolve_fields_and_methods) {
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001720 ArtMethod* resolved = class_linker->ResolveMethod<ClassLinker::ResolveMode::kNoChecks>(
1721 method.GetIndex(),
1722 dex_cache,
1723 class_loader,
1724 /* referrer */ nullptr,
1725 method.GetInvokeType(class_def.access_flags_));
1726 if (resolved == nullptr) {
1727 CheckAndClearResolveException(soa.Self());
Mathieu Chartier90443472015-07-16 20:32:27 -07001728 }
Mathieu Chartier90443472015-07-16 20:32:27 -07001729 }
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001730 };
1731 accessor.VisitFieldsAndMethods(
1732 // static fields
1733 [&](ClassAccessor::Field& field) REQUIRES_SHARED(Locks::mutator_lock_) {
1734 if (resolve_fields_and_methods) {
1735 ArtField* resolved = class_linker->ResolveField(
1736 field.GetIndex(), dex_cache, class_loader, /* is_static */ true);
1737 if (resolved == nullptr) {
1738 CheckAndClearResolveException(soa.Self());
1739 }
1740 }
1741 },
1742 // instance fields
1743 [&](ClassAccessor::Field& field) REQUIRES_SHARED(Locks::mutator_lock_) {
1744 if (field.IsFinal()) {
1745 // We require a constructor barrier if there are final instance fields.
1746 requires_constructor_barrier = true;
1747 }
1748 if (resolve_fields_and_methods) {
1749 ArtField* resolved = class_linker->ResolveField(
1750 field.GetIndex(), dex_cache, class_loader, /* is_static */ false);
1751 if (resolved == nullptr) {
1752 CheckAndClearResolveException(soa.Self());
1753 }
1754 }
1755 },
1756 /*direct methods*/ method_visitor,
1757 /*virtual methods*/ method_visitor);
Mathieu Chartierc4ae9162016-04-07 13:19:19 -07001758 manager_->GetCompiler()->SetRequiresConstructorBarrier(self,
1759 &dex_file,
1760 class_def_index,
1761 requires_constructor_barrier);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001762 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001763
Mathieu Chartier90443472015-07-16 20:32:27 -07001764 private:
1765 const ParallelCompilationManager* const manager_;
1766};
1767
1768class ResolveTypeVisitor : public CompilationVisitor {
1769 public:
1770 explicit ResolveTypeVisitor(const ParallelCompilationManager* manager) : manager_(manager) {
1771 }
Andreas Gampea5b09a62016-11-17 15:21:22 -08001772 void Visit(size_t type_idx) OVERRIDE REQUIRES(!Locks::mutator_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001773 // Class derived values are more complicated, they require the linker and loader.
Mathieu Chartier90443472015-07-16 20:32:27 -07001774 ScopedObjectAccess soa(Thread::Current());
1775 ClassLinker* class_linker = manager_->GetClassLinker();
1776 const DexFile& dex_file = *manager_->GetDexFile();
1777 StackHandleScope<2> hs(soa.Self());
Mathieu Chartier90443472015-07-16 20:32:27 -07001778 Handle<mirror::ClassLoader> class_loader(
Mathieu Chartier0795f232016-09-27 18:43:30 -07001779 hs.NewHandle(soa.Decode<mirror::ClassLoader>(manager_->GetClassLoader())));
Mathieu Chartierd57d4542015-10-14 10:55:30 -07001780 Handle<mirror::DexCache> dex_cache(hs.NewHandle(class_linker->RegisterDexFile(
1781 dex_file,
Mathieu Chartierf284d442016-06-02 11:48:30 -07001782 class_loader.Get())));
Andreas Gampefa4333d2017-02-14 11:10:34 -08001783 ObjPtr<mirror::Class> klass = (dex_cache != nullptr)
Vladimir Marko666ee3d2017-12-11 18:37:36 +00001784 ? class_linker->ResolveType(dex::TypeIndex(type_idx), dex_cache, class_loader)
Vladimir Markocd556b02017-02-03 11:47:34 +00001785 : nullptr;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001786
Mathieu Chartier90443472015-07-16 20:32:27 -07001787 if (klass == nullptr) {
1788 soa.Self()->AssertPendingException();
1789 mirror::Throwable* exception = soa.Self()->GetException();
1790 VLOG(compiler) << "Exception during type resolution: " << exception->Dump();
1791 if (exception->GetClass()->DescriptorEquals("Ljava/lang/OutOfMemoryError;")) {
1792 // There's little point continuing compilation if the heap is exhausted.
1793 LOG(FATAL) << "Out of memory during type resolution for compilation";
1794 }
1795 soa.Self()->ClearException();
Ian Rogersa436fde2013-08-27 23:34:06 -07001796 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001797 }
Mathieu Chartier90443472015-07-16 20:32:27 -07001798
1799 private:
1800 const ParallelCompilationManager* const manager_;
1801};
Brian Carlstrom7940e442013-07-12 13:46:57 -07001802
Andreas Gampeace0dc12016-01-20 13:33:13 -08001803void CompilerDriver::ResolveDexFile(jobject class_loader,
1804 const DexFile& dex_file,
Andreas Gampede7b4362014-07-28 18:38:57 -07001805 const std::vector<const DexFile*>& dex_files,
Andreas Gampeace0dc12016-01-20 13:33:13 -08001806 ThreadPool* thread_pool,
1807 size_t thread_count,
1808 TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001809 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
1810
1811 // TODO: we could resolve strings here, although the string table is largely filled with class
1812 // and method names.
1813
Andreas Gampede7b4362014-07-28 18:38:57 -07001814 ParallelCompilationManager context(class_linker, class_loader, this, &dex_file, dex_files,
1815 thread_pool);
Vladimir Markoaad75c62016-10-03 08:46:48 +00001816 if (GetCompilerOptions().IsBootImage()) {
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001817 // For images we resolve all types, such as array, whereas for applications just those with
1818 // classdefs are resolved by ResolveClassFieldsAndMethods.
Mathieu Chartierf5997b42014-06-20 10:37:54 -07001819 TimingLogger::ScopedTiming t("Resolve Types", timings);
Mathieu Chartier90443472015-07-16 20:32:27 -07001820 ResolveTypeVisitor visitor(&context);
Andreas Gampeace0dc12016-01-20 13:33:13 -08001821 context.ForAll(0, dex_file.NumTypeIds(), &visitor, thread_count);
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001822 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001823
Mathieu Chartierf5997b42014-06-20 10:37:54 -07001824 TimingLogger::ScopedTiming t("Resolve MethodsAndFields", timings);
Mathieu Chartier90443472015-07-16 20:32:27 -07001825 ResolveClassFieldsAndMethodsVisitor visitor(&context);
Andreas Gampeace0dc12016-01-20 13:33:13 -08001826 context.ForAll(0, dex_file.NumClassDefs(), &visitor, thread_count);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001827}
1828
Andreas Gampeace0dc12016-01-20 13:33:13 -08001829void CompilerDriver::SetVerified(jobject class_loader,
1830 const std::vector<const DexFile*>& dex_files,
1831 TimingLogger* timings) {
1832 // This can be run in parallel.
Mathieu Chartier90443472015-07-16 20:32:27 -07001833 for (const DexFile* dex_file : dex_files) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001834 CHECK(dex_file != nullptr);
Andreas Gampeace0dc12016-01-20 13:33:13 -08001835 SetVerifiedDexFile(class_loader,
1836 *dex_file,
1837 dex_files,
1838 parallel_thread_pool_.get(),
1839 parallel_thread_count_,
1840 timings);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001841 }
1842}
1843
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001844static void LoadAndUpdateStatus(const ClassAccessor& accessor,
Vladimir Marko2c64a832018-01-04 11:31:56 +00001845 ClassStatus status,
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001846 Handle<mirror::ClassLoader> class_loader,
1847 Thread* self)
1848 REQUIRES_SHARED(Locks::mutator_lock_) {
1849 StackHandleScope<1> hs(self);
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001850 const char* descriptor = accessor.GetDescriptor();
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001851 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
1852 Handle<mirror::Class> cls(hs.NewHandle<mirror::Class>(
1853 class_linker->FindClass(self, descriptor, class_loader)));
Andreas Gampefa4333d2017-02-14 11:10:34 -08001854 if (cls != nullptr) {
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001855 // Check that the class is resolved with the current dex file. We might get
1856 // a boot image class, or a class in a different dex file for multidex, and
1857 // we should not update the status in that case.
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001858 if (&cls->GetDexFile() == &accessor.GetDexFile()) {
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001859 ObjectLock<mirror::Class> lock(self, cls);
1860 mirror::Class::SetStatus(cls, status, self);
1861 }
1862 } else {
1863 DCHECK(self->IsExceptionPending());
1864 self->ClearException();
1865 }
1866}
1867
Nicolas Geoffray74981052017-01-16 17:54:09 +00001868bool CompilerDriver::FastVerify(jobject jclass_loader,
1869 const std::vector<const DexFile*>& dex_files,
1870 TimingLogger* timings) {
Nicolas Geoffrayb0bbe8e2016-11-19 10:42:37 +00001871 verifier::VerifierDeps* verifier_deps =
1872 Runtime::Current()->GetCompilerCallbacks()->GetVerifierDeps();
Mathieu Chartier72041a02017-07-14 18:23:25 -07001873 // If there exist VerifierDeps that aren't the ones we just created to output, use them to verify.
1874 if (verifier_deps == nullptr || verifier_deps->OutputOnly()) {
Nicolas Geoffray74981052017-01-16 17:54:09 +00001875 return false;
1876 }
1877 TimingLogger::ScopedTiming t("Fast Verify", timings);
1878 ScopedObjectAccess soa(Thread::Current());
1879 StackHandleScope<2> hs(soa.Self());
1880 Handle<mirror::ClassLoader> class_loader(
1881 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader)));
Nicolas Geoffray74981052017-01-16 17:54:09 +00001882 if (!verifier_deps->ValidateDependencies(class_loader, soa.Self())) {
1883 return false;
1884 }
1885
Nicolas Geoffray49cda062017-04-21 13:08:25 +01001886 bool compiler_only_verifies = !GetCompilerOptions().IsAnyCompilationEnabled();
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001887
Nicolas Geoffray74981052017-01-16 17:54:09 +00001888 // We successfully validated the dependencies, now update class status
1889 // of verified classes. Note that the dependencies also record which classes
1890 // could not be fully verified; we could try again, but that would hurt verification
1891 // time. So instead we assume these classes still need to be verified at
1892 // runtime.
1893 for (const DexFile* dex_file : dex_files) {
Mathieu Chartierbf755fe2017-08-01 13:42:56 -07001894 // Fetch the list of unverified classes.
1895 const std::set<dex::TypeIndex>& unverified_classes =
Nicolas Geoffray74981052017-01-16 17:54:09 +00001896 verifier_deps->GetUnverifiedClasses(*dex_file);
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001897 for (ClassAccessor accessor : dex_file->GetClasses()) {
1898 if (unverified_classes.find(accessor.GetClassIdx()) == unverified_classes.end()) {
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001899 if (compiler_only_verifies) {
Nicolas Geoffray74981052017-01-16 17:54:09 +00001900 // Just update the compiled_classes_ map. The compiler doesn't need to resolve
1901 // the type.
Mathieu Chartier18e26872018-06-04 17:19:02 -07001902 ClassReference ref(dex_file, accessor.GetClassDefIndex());
Mathieu Chartier2eabc612018-05-25 14:31:16 -07001903 const ClassStatus existing = ClassStatus::kNotReady;
Mathieu Chartier1a088d42017-07-18 11:43:57 -07001904 ClassStateTable::InsertResult result =
Vladimir Marko2c64a832018-01-04 11:31:56 +00001905 compiled_classes_.Insert(ref, existing, ClassStatus::kVerified);
Mathieu Chartier2eabc612018-05-25 14:31:16 -07001906 CHECK_EQ(result, ClassStateTable::kInsertResultSuccess) << ref.dex_file->GetLocation();
Nicolas Geoffray74981052017-01-16 17:54:09 +00001907 } else {
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001908 // Update the class status, so later compilation stages know they don't need to verify
Nicolas Geoffray74981052017-01-16 17:54:09 +00001909 // the class.
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001910 LoadAndUpdateStatus(accessor, ClassStatus::kVerified, class_loader, soa.Self());
Nicolas Geoffray74981052017-01-16 17:54:09 +00001911 // Create `VerifiedMethod`s for each methods, the compiler expects one for
1912 // quickening or compiling.
1913 // Note that this means:
1914 // - We're only going to compile methods that did verify.
1915 // - Quickening will not do checkcast ellision.
1916 // TODO(ngeoffray): Reconsider this once we refactor compiler filters.
Mathieu Chartier0d896bd2018-05-25 00:20:27 -07001917 for (const ClassAccessor::Method& method : accessor.GetMethods()) {
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001918 verification_results_->CreateVerifiedMethodFor(method.GetReference());
Mathieu Chartier0d896bd2018-05-25 00:20:27 -07001919 }
Nicolas Geoffray6bb7f1b2016-11-03 10:52:49 +00001920 }
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001921 } else if (!compiler_only_verifies) {
1922 // Make sure later compilation stages know they should not try to verify
1923 // this class again.
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001924 LoadAndUpdateStatus(accessor,
Vladimir Marko2c64a832018-01-04 11:31:56 +00001925 ClassStatus::kRetryVerificationAtRuntime,
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001926 class_loader,
1927 soa.Self());
Nicolas Geoffray6bb7f1b2016-11-03 10:52:49 +00001928 }
Nicolas Geoffray6bb7f1b2016-11-03 10:52:49 +00001929 }
1930 }
Nicolas Geoffray74981052017-01-16 17:54:09 +00001931 return true;
1932}
1933
1934void CompilerDriver::Verify(jobject jclass_loader,
1935 const std::vector<const DexFile*>& dex_files,
1936 TimingLogger* timings) {
1937 if (FastVerify(jclass_loader, dex_files, timings)) {
1938 return;
1939 }
Nicolas Geoffray6bb7f1b2016-11-03 10:52:49 +00001940
Nicolas Geoffrayb0bbe8e2016-11-19 10:42:37 +00001941 // If there is no existing `verifier_deps` (because of non-existing vdex), or
1942 // the existing `verifier_deps` is not valid anymore, create a new one for
Nicolas Geoffray6bb7f1b2016-11-03 10:52:49 +00001943 // non boot image compilation. The verifier will need it to record the new dependencies.
1944 // Then dex2oat can update the vdex file with these new dependencies.
1945 if (!GetCompilerOptions().IsBootImage()) {
Mathieu Chartier72041a02017-07-14 18:23:25 -07001946 // Dex2oat creates the verifier deps.
Nicolas Geoffray340dafa2016-11-18 16:03:10 +00001947 // Create the main VerifierDeps, and set it to this thread.
Mathieu Chartier72041a02017-07-14 18:23:25 -07001948 verifier::VerifierDeps* verifier_deps =
1949 Runtime::Current()->GetCompilerCallbacks()->GetVerifierDeps();
1950 CHECK(verifier_deps != nullptr);
Nicolas Geoffrayb0bbe8e2016-11-19 10:42:37 +00001951 Thread::Current()->SetVerifierDeps(verifier_deps);
Nicolas Geoffray340dafa2016-11-18 16:03:10 +00001952 // Create per-thread VerifierDeps to avoid contention on the main one.
1953 // We will merge them after verification.
1954 for (ThreadPoolWorker* worker : parallel_thread_pool_->GetWorkers()) {
Vladimir Marko213ee2d2018-06-22 11:56:34 +01001955 worker->GetThread()->SetVerifierDeps(
1956 new verifier::VerifierDeps(GetCompilerOptions().GetDexFilesForOatFile()));
Nicolas Geoffray340dafa2016-11-18 16:03:10 +00001957 }
Nicolas Geoffray6bb7f1b2016-11-03 10:52:49 +00001958 }
Nicolas Geoffray74981052017-01-16 17:54:09 +00001959
Nicolas Geoffray46847392017-04-28 14:56:39 +01001960 // Verification updates VerifierDeps and needs to run single-threaded to be deterministic.
1961 bool force_determinism = GetCompilerOptions().IsForceDeterminism();
1962 ThreadPool* verify_thread_pool =
1963 force_determinism ? single_thread_pool_.get() : parallel_thread_pool_.get();
1964 size_t verify_thread_count = force_determinism ? 1U : parallel_thread_count_;
Mathieu Chartier90443472015-07-16 20:32:27 -07001965 for (const DexFile* dex_file : dex_files) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001966 CHECK(dex_file != nullptr);
Nicolas Geoffray6bb7f1b2016-11-03 10:52:49 +00001967 VerifyDexFile(jclass_loader,
Andreas Gampeace0dc12016-01-20 13:33:13 -08001968 *dex_file,
1969 dex_files,
Nicolas Geoffray46847392017-04-28 14:56:39 +01001970 verify_thread_pool,
1971 verify_thread_count,
Andreas Gampeace0dc12016-01-20 13:33:13 -08001972 timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001973 }
Nicolas Geoffray340dafa2016-11-18 16:03:10 +00001974
1975 if (!GetCompilerOptions().IsBootImage()) {
Nicolas Geoffray340dafa2016-11-18 16:03:10 +00001976 // Merge all VerifierDeps into the main one.
Nicolas Geoffray74981052017-01-16 17:54:09 +00001977 verifier::VerifierDeps* verifier_deps = Thread::Current()->GetVerifierDeps();
Nicolas Geoffray340dafa2016-11-18 16:03:10 +00001978 for (ThreadPoolWorker* worker : parallel_thread_pool_->GetWorkers()) {
1979 verifier::VerifierDeps* thread_deps = worker->GetThread()->GetVerifierDeps();
1980 worker->GetThread()->SetVerifierDeps(nullptr);
Vladimir Marko213ee2d2018-06-22 11:56:34 +01001981 verifier_deps->MergeWith(*thread_deps, GetCompilerOptions().GetDexFilesForOatFile());
Nicolas Geoffray340dafa2016-11-18 16:03:10 +00001982 delete thread_deps;
1983 }
1984 Thread::Current()->SetVerifierDeps(nullptr);
1985 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001986}
1987
Mathieu Chartier90443472015-07-16 20:32:27 -07001988class VerifyClassVisitor : public CompilationVisitor {
1989 public:
Andreas Gampe5fd66d02016-09-12 20:22:19 -07001990 VerifyClassVisitor(const ParallelCompilationManager* manager, verifier::HardFailLogMode log_level)
Andreas Gampe7fe30232016-03-25 16:58:00 -07001991 : manager_(manager), log_level_(log_level) {}
Brian Carlstrom7940e442013-07-12 13:46:57 -07001992
Mathieu Chartier90443472015-07-16 20:32:27 -07001993 virtual void Visit(size_t class_def_index) REQUIRES(!Locks::mutator_lock_) OVERRIDE {
Andreas Gampe9b827ab2017-12-07 19:32:48 -08001994 ScopedTrace trace(__FUNCTION__);
Mathieu Chartier90443472015-07-16 20:32:27 -07001995 ScopedObjectAccess soa(Thread::Current());
1996 const DexFile& dex_file = *manager_->GetDexFile();
1997 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
1998 const char* descriptor = dex_file.GetClassDescriptor(class_def);
1999 ClassLinker* class_linker = manager_->GetClassLinker();
2000 jobject jclass_loader = manager_->GetClassLoader();
2001 StackHandleScope<3> hs(soa.Self());
2002 Handle<mirror::ClassLoader> class_loader(
Mathieu Chartier0795f232016-09-27 18:43:30 -07002003 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader)));
Mathieu Chartier90443472015-07-16 20:32:27 -07002004 Handle<mirror::Class> klass(
2005 hs.NewHandle(class_linker->FindClass(soa.Self(), descriptor, class_loader)));
Andreas Gampe6d7abbd2017-04-24 13:19:09 -07002006 verifier::FailureKind failure_kind;
Andreas Gampefa4333d2017-02-14 11:10:34 -08002007 if (klass == nullptr) {
Ian Rogerse6bb3b22013-08-19 21:51:45 -07002008 CHECK(soa.Self()->IsExceptionPending());
2009 soa.Self()->ClearException();
Mathieu Chartier90443472015-07-16 20:32:27 -07002010
2011 /*
2012 * At compile time, we can still structurally verify the class even if FindClass fails.
2013 * This is to ensure the class is structurally sound for compilation. An unsound class
2014 * will be rejected by the verifier and later skipped during compilation in the compiler.
2015 */
Mathieu Chartier673ed3d2015-08-28 14:56:43 -07002016 Handle<mirror::DexCache> dex_cache(hs.NewHandle(class_linker->FindDexCache(
Vladimir Markocd556b02017-02-03 11:47:34 +00002017 soa.Self(), dex_file)));
Mathieu Chartier90443472015-07-16 20:32:27 -07002018 std::string error_msg;
Nicolas Geoffray08025182016-10-25 17:20:18 +01002019 failure_kind =
2020 verifier::MethodVerifier::VerifyClass(soa.Self(),
Andreas Gampeec6e6c12015-11-05 20:39:56 -08002021 &dex_file,
2022 dex_cache,
2023 class_loader,
David Brazdil15fc7292016-09-02 14:13:18 +01002024 class_def,
Andreas Gampe53e32d12015-12-09 21:03:23 -08002025 Runtime::Current()->GetCompilerCallbacks(),
Andreas Gampeec6e6c12015-11-05 20:39:56 -08002026 true /* allow soft failures */,
Andreas Gampe7fe30232016-03-25 16:58:00 -07002027 log_level_,
Nicolas Geoffray08025182016-10-25 17:20:18 +01002028 &error_msg);
Andreas Gampe6d7abbd2017-04-24 13:19:09 -07002029 if (failure_kind == verifier::FailureKind::kHardFailure) {
Mathieu Chartier90443472015-07-16 20:32:27 -07002030 LOG(ERROR) << "Verification failed on class " << PrettyDescriptor(descriptor)
2031 << " because: " << error_msg;
2032 manager_->GetCompiler()->SetHadHardVerifierFailure();
Andreas Gampef39208f2017-10-19 15:06:59 -07002033 } else if (failure_kind == verifier::FailureKind::kSoftFailure) {
2034 manager_->GetCompiler()->AddSoftVerifierFailure();
Nicolas Geoffray7cc3ae52017-03-07 14:33:37 +00002035 } else {
2036 // Force a soft failure for the VerifierDeps. This is a sanity measure, as
2037 // the vdex file already records that the class hasn't been resolved. It avoids
2038 // trying to do future verification optimizations when processing the vdex file.
Andreas Gampef39208f2017-10-19 15:06:59 -07002039 DCHECK(failure_kind == verifier::FailureKind::kNoFailure) << failure_kind;
Andreas Gampe6d7abbd2017-04-24 13:19:09 -07002040 failure_kind = verifier::FailureKind::kSoftFailure;
Mathieu Chartier90443472015-07-16 20:32:27 -07002041 }
Andreas Gampebb30d5d2018-04-23 09:59:25 -07002042 } else if (&klass->GetDexFile() != &dex_file) {
2043 // Skip a duplicate class (as the resolved class is from another, earlier dex file).
2044 return; // Do not update state.
Mathieu Chartier90443472015-07-16 20:32:27 -07002045 } else if (!SkipClass(jclass_loader, dex_file, klass.Get())) {
David Sehr709b0702016-10-13 09:12:37 -07002046 CHECK(klass->IsResolved()) << klass->PrettyClass();
Nicolas Geoffray08025182016-10-25 17:20:18 +01002047 failure_kind = class_linker->VerifyClass(soa.Self(), klass, log_level_);
Mathieu Chartier90443472015-07-16 20:32:27 -07002048
2049 if (klass->IsErroneous()) {
2050 // ClassLinker::VerifyClass throws, which isn't useful in the compiler.
2051 CHECK(soa.Self()->IsExceptionPending());
2052 soa.Self()->ClearException();
2053 manager_->GetCompiler()->SetHadHardVerifierFailure();
Andreas Gampef39208f2017-10-19 15:06:59 -07002054 } else if (failure_kind == verifier::FailureKind::kSoftFailure) {
2055 manager_->GetCompiler()->AddSoftVerifierFailure();
Mathieu Chartier90443472015-07-16 20:32:27 -07002056 }
2057
Nicolas Geoffray7cc3ae52017-03-07 14:33:37 +00002058 CHECK(klass->ShouldVerifyAtRuntime() || klass->IsVerified() || klass->IsErroneous())
David Sehr709b0702016-10-13 09:12:37 -07002059 << klass->PrettyDescriptor() << ": state=" << klass->GetStatus();
Mathieu Chartier90443472015-07-16 20:32:27 -07002060
Nicolas Geoffrayc7da1d62017-04-19 09:36:24 +01002061 // Class has a meaningful status for the compiler now, record it.
2062 ClassReference ref(manager_->GetDexFile(), class_def_index);
2063 manager_->GetCompiler()->RecordClassStatus(ref, klass->GetStatus());
2064
Andreas Gamped278cb42017-11-22 14:13:00 -08002065 // It is *very* problematic if there are resolution errors in the boot classpath.
2066 //
2067 // It is also bad if classes fail verification. For example, we rely on things working
2068 // OK without verification when the decryption dialog is brought up. It is thus highly
2069 // recommended to compile the boot classpath with
2070 // --abort-on-hard-verifier-error --abort-on-soft-verifier-error
2071 // which is the default build system configuration.
Narayan Kamathe3eae5e2016-10-27 11:47:30 +01002072 if (kIsDebugBuild) {
Orion Hodsonc5e0d3f2017-08-22 19:00:04 +01002073 if (manager_->GetCompiler()->GetCompilerOptions().IsBootImage()) {
Andreas Gamped278cb42017-11-22 14:13:00 -08002074 if (!klass->IsResolved() || klass->IsErroneous()) {
Andreas Gampe12fadcd2017-08-03 05:06:28 -07002075 LOG(FATAL) << "Boot classpath class " << klass->PrettyClass()
Andreas Gamped278cb42017-11-22 14:13:00 -08002076 << " failed to resolve/is erroneous: state= " << klass->GetStatus();
2077 UNREACHABLE();
Andreas Gampe12fadcd2017-08-03 05:06:28 -07002078 }
Narayan Kamathe3eae5e2016-10-27 11:47:30 +01002079 }
Nicolas Geoffray7cc3ae52017-03-07 14:33:37 +00002080 if (klass->IsVerified()) {
Andreas Gampe6d7abbd2017-04-24 13:19:09 -07002081 DCHECK_EQ(failure_kind, verifier::FailureKind::kNoFailure);
Nicolas Geoffray7cc3ae52017-03-07 14:33:37 +00002082 } else if (klass->ShouldVerifyAtRuntime()) {
Andreas Gampe6d7abbd2017-04-24 13:19:09 -07002083 DCHECK_EQ(failure_kind, verifier::FailureKind::kSoftFailure);
Nicolas Geoffray7cc3ae52017-03-07 14:33:37 +00002084 } else {
Andreas Gampe6d7abbd2017-04-24 13:19:09 -07002085 DCHECK_EQ(failure_kind, verifier::FailureKind::kHardFailure);
Nicolas Geoffray7cc3ae52017-03-07 14:33:37 +00002086 }
Narayan Kamathe3eae5e2016-10-27 11:47:30 +01002087 }
Nicolas Geoffray08025182016-10-25 17:20:18 +01002088 } else {
2089 // Make the skip a soft failure, essentially being considered as verify at runtime.
Andreas Gampe6d7abbd2017-04-24 13:19:09 -07002090 failure_kind = verifier::FailureKind::kSoftFailure;
Ian Rogerse6bb3b22013-08-19 21:51:45 -07002091 }
Nicolas Geoffray08025182016-10-25 17:20:18 +01002092 verifier::VerifierDeps::MaybeRecordVerificationStatus(
2093 dex_file, class_def.class_idx_, failure_kind);
Mathieu Chartier90443472015-07-16 20:32:27 -07002094 soa.Self()->AssertNoPendingException();
Brian Carlstrom7940e442013-07-12 13:46:57 -07002095 }
Mathieu Chartier90443472015-07-16 20:32:27 -07002096
2097 private:
2098 const ParallelCompilationManager* const manager_;
Andreas Gampe5fd66d02016-09-12 20:22:19 -07002099 const verifier::HardFailLogMode log_level_;
Mathieu Chartier90443472015-07-16 20:32:27 -07002100};
Brian Carlstrom7940e442013-07-12 13:46:57 -07002101
Andreas Gampeace0dc12016-01-20 13:33:13 -08002102void CompilerDriver::VerifyDexFile(jobject class_loader,
2103 const DexFile& dex_file,
Andreas Gampede7b4362014-07-28 18:38:57 -07002104 const std::vector<const DexFile*>& dex_files,
Andreas Gampeace0dc12016-01-20 13:33:13 -08002105 ThreadPool* thread_pool,
2106 size_t thread_count,
2107 TimingLogger* timings) {
Mathieu Chartierf5997b42014-06-20 10:37:54 -07002108 TimingLogger::ScopedTiming t("Verify Dex File", timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002109 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Andreas Gampede7b4362014-07-28 18:38:57 -07002110 ParallelCompilationManager context(class_linker, class_loader, this, &dex_file, dex_files,
2111 thread_pool);
Andreas Gampef39208f2017-10-19 15:06:59 -07002112 bool abort_on_verifier_failures = GetCompilerOptions().AbortOnHardVerifierFailure()
2113 || GetCompilerOptions().AbortOnSoftVerifierFailure();
2114 verifier::HardFailLogMode log_level = abort_on_verifier_failures
Andreas Gampe5fd66d02016-09-12 20:22:19 -07002115 ? verifier::HardFailLogMode::kLogInternalFatal
2116 : verifier::HardFailLogMode::kLogWarning;
Andreas Gampe7fe30232016-03-25 16:58:00 -07002117 VerifyClassVisitor visitor(&context, log_level);
Andreas Gampeace0dc12016-01-20 13:33:13 -08002118 context.ForAll(0, dex_file.NumClassDefs(), &visitor, thread_count);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002119}
2120
Mathieu Chartier90443472015-07-16 20:32:27 -07002121class SetVerifiedClassVisitor : public CompilationVisitor {
2122 public:
2123 explicit SetVerifiedClassVisitor(const ParallelCompilationManager* manager) : manager_(manager) {}
2124
2125 virtual void Visit(size_t class_def_index) REQUIRES(!Locks::mutator_lock_) OVERRIDE {
Andreas Gampe9b827ab2017-12-07 19:32:48 -08002126 ScopedTrace trace(__FUNCTION__);
Mathieu Chartier90443472015-07-16 20:32:27 -07002127 ScopedObjectAccess soa(Thread::Current());
2128 const DexFile& dex_file = *manager_->GetDexFile();
2129 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
2130 const char* descriptor = dex_file.GetClassDescriptor(class_def);
2131 ClassLinker* class_linker = manager_->GetClassLinker();
2132 jobject jclass_loader = manager_->GetClassLoader();
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(class_linker->FindClass(soa.Self(), descriptor, class_loader)));
2138 // Class might have failed resolution. Then don't set it to verified.
Andreas Gampefa4333d2017-02-14 11:10:34 -08002139 if (klass != nullptr) {
Mathieu Chartier90443472015-07-16 20:32:27 -07002140 // Only do this if the class is resolved. If even resolution fails, quickening will go very,
2141 // very wrong.
Vladimir Marko72ab6842017-01-20 19:32:50 +00002142 if (klass->IsResolved() && !klass->IsErroneousResolved()) {
Vladimir Marko2c64a832018-01-04 11:31:56 +00002143 if (klass->GetStatus() < ClassStatus::kVerified) {
Mathieu Chartier90443472015-07-16 20:32:27 -07002144 ObjectLock<mirror::Class> lock(soa.Self(), klass);
2145 // Set class status to verified.
Vladimir Marko2c64a832018-01-04 11:31:56 +00002146 mirror::Class::SetStatus(klass, ClassStatus::kVerified, soa.Self());
Mathieu Chartier90443472015-07-16 20:32:27 -07002147 // Mark methods as pre-verified. If we don't do this, the interpreter will run with
2148 // access checks.
Igor Murashkindf707e42016-02-02 16:56:50 -08002149 klass->SetSkipAccessChecksFlagOnAllMethods(
Mathieu Chartier90443472015-07-16 20:32:27 -07002150 GetInstructionSetPointerSize(manager_->GetCompiler()->GetInstructionSet()));
Igor Murashkindf707e42016-02-02 16:56:50 -08002151 klass->SetVerificationAttempted();
Mathieu Chartier90443472015-07-16 20:32:27 -07002152 }
2153 // Record the final class status if necessary.
2154 ClassReference ref(manager_->GetDexFile(), class_def_index);
2155 manager_->GetCompiler()->RecordClassStatus(ref, klass->GetStatus());
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002156 }
Mathieu Chartier90443472015-07-16 20:32:27 -07002157 } else {
2158 Thread* self = soa.Self();
2159 DCHECK(self->IsExceptionPending());
2160 self->ClearException();
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002161 }
2162 }
Mathieu Chartier90443472015-07-16 20:32:27 -07002163
2164 private:
2165 const ParallelCompilationManager* const manager_;
2166};
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002167
Andreas Gampeace0dc12016-01-20 13:33:13 -08002168void CompilerDriver::SetVerifiedDexFile(jobject class_loader,
2169 const DexFile& dex_file,
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002170 const std::vector<const DexFile*>& dex_files,
Andreas Gampeace0dc12016-01-20 13:33:13 -08002171 ThreadPool* thread_pool,
2172 size_t thread_count,
2173 TimingLogger* timings) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002174 TimingLogger::ScopedTiming t("Verify Dex File", timings);
Mathieu Chartier1a088d42017-07-18 11:43:57 -07002175 if (!compiled_classes_.HaveDexFile(&dex_file)) {
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002176 compiled_classes_.AddDexFile(&dex_file);
Mathieu Chartier1a088d42017-07-18 11:43:57 -07002177 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002178 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
2179 ParallelCompilationManager context(class_linker, class_loader, this, &dex_file, dex_files,
2180 thread_pool);
Mathieu Chartier90443472015-07-16 20:32:27 -07002181 SetVerifiedClassVisitor visitor(&context);
Andreas Gampeace0dc12016-01-20 13:33:13 -08002182 context.ForAll(0, dex_file.NumClassDefs(), &visitor, thread_count);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002183}
2184
Mathieu Chartier90443472015-07-16 20:32:27 -07002185class InitializeClassVisitor : public CompilationVisitor {
2186 public:
2187 explicit InitializeClassVisitor(const ParallelCompilationManager* manager) : manager_(manager) {}
Ian Rogersfc0e94b2013-09-23 23:51:32 -07002188
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002189 void Visit(size_t class_def_index) OVERRIDE {
Andreas Gampe9b827ab2017-12-07 19:32:48 -08002190 ScopedTrace trace(__FUNCTION__);
Mathieu Chartier90443472015-07-16 20:32:27 -07002191 jobject jclass_loader = manager_->GetClassLoader();
2192 const DexFile& dex_file = *manager_->GetDexFile();
2193 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
2194 const DexFile::TypeId& class_type_id = dex_file.GetTypeId(class_def.class_idx_);
2195 const char* descriptor = dex_file.StringDataByIdx(class_type_id.descriptor_idx_);
Jeff Hao0e49b422013-11-08 12:16:56 -08002196
Mathieu Chartier90443472015-07-16 20:32:27 -07002197 ScopedObjectAccess soa(Thread::Current());
2198 StackHandleScope<3> hs(soa.Self());
2199 Handle<mirror::ClassLoader> class_loader(
Mathieu Chartier0795f232016-09-27 18:43:30 -07002200 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader)));
Mathieu Chartier90443472015-07-16 20:32:27 -07002201 Handle<mirror::Class> klass(
2202 hs.NewHandle(manager_->GetClassLinker()->FindClass(soa.Self(), descriptor, class_loader)));
2203
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002204 if (klass != nullptr && !SkipClass(manager_->GetClassLoader(), dex_file, klass.Get())) {
2205 TryInitializeClass(klass, class_loader);
2206 }
2207 // Clear any class not found or verification exceptions.
2208 soa.Self()->ClearException();
2209 }
2210
2211 // A helper function for initializing klass.
2212 void TryInitializeClass(Handle<mirror::Class> klass, Handle<mirror::ClassLoader>& class_loader)
2213 REQUIRES_SHARED(Locks::mutator_lock_) {
2214 const DexFile& dex_file = klass->GetDexFile();
2215 const DexFile::ClassDef* class_def = klass->GetClassDef();
2216 const DexFile::TypeId& class_type_id = dex_file.GetTypeId(class_def->class_idx_);
2217 const char* descriptor = dex_file.StringDataByIdx(class_type_id.descriptor_idx_);
2218 ScopedObjectAccessUnchecked soa(Thread::Current());
2219 StackHandleScope<3> hs(soa.Self());
Mathieu Chartierdabeb3a2017-06-12 17:10:07 -07002220 const bool is_boot_image = manager_->GetCompiler()->GetCompilerOptions().IsBootImage();
Mathieu Chartier17498e52017-06-13 11:35:04 -07002221 const bool is_app_image = manager_->GetCompiler()->GetCompilerOptions().IsAppImage();
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002222
Vladimir Marko2c64a832018-01-04 11:31:56 +00002223 ClassStatus old_status = klass->GetStatus();
Mathieu Chartier1a088d42017-07-18 11:43:57 -07002224 // Don't initialize classes in boot space when compiling app image
2225 if (is_app_image && klass->IsBootStrapClassLoaded()) {
2226 // Also return early and don't store the class status in the recorded class status.
2227 return;
2228 }
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002229 // Only try to initialize classes that were successfully verified.
2230 if (klass->IsVerified()) {
2231 // Attempt to initialize the class but bail if we either need to initialize the super-class
2232 // or static fields.
Nicolas Geoffrayabadf022017-08-03 08:25:41 +00002233 manager_->GetClassLinker()->EnsureInitialized(soa.Self(), klass, false, false);
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002234 old_status = klass->GetStatus();
2235 if (!klass->IsInitialized()) {
2236 // We don't want non-trivial class initialization occurring on multiple threads due to
2237 // deadlock problems. For example, a parent class is initialized (holding its lock) that
2238 // refers to a sub-class in its static/class initializer causing it to try to acquire the
2239 // sub-class' lock. While on a second thread the sub-class is initialized (holding its lock)
2240 // after first initializing its parents, whose locks are acquired. This leads to a
2241 // parent-to-child and a child-to-parent lock ordering and consequent potential deadlock.
2242 // We need to use an ObjectLock due to potential suspension in the interpreting code. Rather
2243 // than use a special Object for the purpose we use the Class of java.lang.Class.
2244 Handle<mirror::Class> h_klass(hs.NewHandle(klass->GetClass()));
2245 ObjectLock<mirror::Class> lock(soa.Self(), h_klass);
2246 // Attempt to initialize allowing initialization of parent classes but still not static
2247 // fields.
Chang Xinge602b1c2017-06-30 11:55:01 -07002248 // Initialize dependencies first only for app image, to make TryInitialize recursive.
2249 bool is_superclass_initialized = !is_app_image ? true :
2250 InitializeDependencies(klass, class_loader, soa.Self());
2251 if (!is_app_image || (is_app_image && is_superclass_initialized)) {
Nicolas Geoffrayabadf022017-08-03 08:25:41 +00002252 manager_->GetClassLinker()->EnsureInitialized(soa.Self(), klass, false, true);
Chang Xinge602b1c2017-06-30 11:55:01 -07002253 }
2254 // Otherwise it's in app image but superclasses can't be initialized, no need to proceed.
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002255 old_status = klass->GetStatus();
Chang Xing70f689d2017-06-08 17:16:12 -07002256
2257 bool too_many_encoded_fields = false;
2258 if (!is_boot_image && klass->NumStaticFields() > kMaxEncodedFields) {
2259 too_many_encoded_fields = true;
2260 }
Mathieu Chartierdabeb3a2017-06-12 17:10:07 -07002261 // If the class was not initialized, we can proceed to see if we can initialize static
Chang Xing70f689d2017-06-08 17:16:12 -07002262 // fields. Limit the max number of encoded fields.
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002263 if (!klass->IsInitialized() &&
Mathieu Chartier17498e52017-06-13 11:35:04 -07002264 (is_app_image || is_boot_image) &&
Chang Xinge602b1c2017-06-30 11:55:01 -07002265 is_superclass_initialized &&
Chang Xing70f689d2017-06-08 17:16:12 -07002266 !too_many_encoded_fields &&
Vladimir Markodc4bcce2018-06-21 16:15:42 +01002267 manager_->GetCompiler()->GetCompilerOptions().IsImageClass(descriptor)) {
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002268 bool can_init_static_fields = false;
Mathieu Chartierdabeb3a2017-06-12 17:10:07 -07002269 if (is_boot_image) {
Mathieu Chartier90443472015-07-16 20:32:27 -07002270 // We need to initialize static fields, we only do this for image classes that aren't
Mathieu Chartierdabeb3a2017-06-12 17:10:07 -07002271 // marked with the $NoPreloadHolder (which implies this should not be initialized
2272 // early).
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002273 can_init_static_fields = !StringPiece(descriptor).ends_with("$NoPreloadHolder;");
2274 } else {
Mathieu Chartier17498e52017-06-13 11:35:04 -07002275 CHECK(is_app_image);
Mathieu Chartierdabeb3a2017-06-12 17:10:07 -07002276 // The boot image case doesn't need to recursively initialize the dependencies with
2277 // special logic since the class linker already does this.
Mathieu Chartierdabeb3a2017-06-12 17:10:07 -07002278 can_init_static_fields =
Mathieu Chartier0933cc52018-03-23 14:25:08 -07002279 ClassLinker::kAppImageMayContainStrings &&
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002280 !soa.Self()->IsExceptionPending() &&
Nicolas Geoffrayabadf022017-08-03 08:25:41 +00002281 is_superclass_initialized &&
2282 NoClinitInDependency(klass, soa.Self(), &class_loader);
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002283 // TODO The checking for clinit can be removed since it's already
2284 // checked when init superclass. Currently keep it because it contains
2285 // processing of intern strings. Will be removed later when intern strings
2286 // and clinit are both initialized.
2287 }
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01002288
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002289 if (can_init_static_fields) {
2290 VLOG(compiler) << "Initializing: " << descriptor;
2291 // TODO multithreading support. We should ensure the current compilation thread has
2292 // exclusive access to the runtime and the transaction. To achieve this, we could use
2293 // a ReaderWriterMutex but we're holding the mutator lock so we fail mutex sanity
2294 // checks in Thread::AssertThreadSuspensionIsAllowable.
2295 Runtime* const runtime = Runtime::Current();
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002296 // Run the class initializer in transaction mode.
Chang Xing5a906fc2017-07-26 15:01:16 -07002297 runtime->EnterTransactionMode(is_app_image, klass.Get());
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002298 bool success = manager_->GetClassLinker()->EnsureInitialized(soa.Self(), klass, true,
2299 true);
2300 // TODO we detach transaction from runtime to indicate we quit the transactional
2301 // mode which prevents the GC from visiting objects modified during the transaction.
2302 // Ensure GC is not run so don't access freed objects when aborting transaction.
Andreas Gampe9e7078b2017-03-02 13:50:36 -08002303
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002304 {
2305 ScopedAssertNoThreadSuspension ants("Transaction end");
Chang Xing16d1dd82017-07-20 17:56:26 -07002306
2307 if (success) {
2308 runtime->ExitTransactionMode();
2309 DCHECK(!runtime->IsActiveTransaction());
2310 }
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01002311
Mathieu Chartier90443472015-07-16 20:32:27 -07002312 if (!success) {
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002313 CHECK(soa.Self()->IsExceptionPending());
2314 mirror::Throwable* exception = soa.Self()->GetException();
2315 VLOG(compiler) << "Initialization of " << descriptor << " aborted because of "
2316 << exception->Dump();
2317 std::ostream* file_log = manager_->GetCompiler()->
2318 GetCompilerOptions().GetInitFailureOutput();
2319 if (file_log != nullptr) {
2320 *file_log << descriptor << "\n";
2321 *file_log << exception->Dump() << "\n";
2322 }
2323 soa.Self()->ClearException();
Chang Xing605fe242017-07-20 15:57:21 -07002324 runtime->RollbackAllTransactions();
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002325 CHECK_EQ(old_status, klass->GetStatus()) << "Previous class status not restored";
Mathieu Chartierdabeb3a2017-06-12 17:10:07 -07002326 } else if (is_boot_image) {
2327 // For boot image, we want to put the updated status in the oat class since we can't
2328 // reject the image anyways.
2329 old_status = klass->GetStatus();
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002330 }
2331 }
2332
Nicolas Geoffrayabadf022017-08-03 08:25:41 +00002333 if (!success) {
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002334 // On failure, still intern strings of static fields and seen in <clinit>, as these
2335 // will be created in the zygote. This is separated from the transaction code just
2336 // above as we will allocate strings, so must be allowed to suspend.
2337 if (&klass->GetDexFile() == manager_->GetDexFile()) {
Andreas Gampe9e7078b2017-03-02 13:50:36 -08002338 InternStrings(klass, class_loader);
Mathieu Chartierdabeb3a2017-06-12 17:10:07 -07002339 } else {
2340 DCHECK(!is_boot_image) << "Boot image must have equal dex files";
Andreas Gampedbfe2542014-11-25 22:21:42 -08002341 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002342 }
2343 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002344 }
Jeff Hao0cb17282017-07-12 14:51:49 -07002345 // If the class still isn't initialized, at least try some checks that initialization
2346 // would do so they can be skipped at runtime.
2347 if (!klass->IsInitialized() &&
2348 manager_->GetClassLinker()->ValidateSuperClassDescriptors(klass)) {
Vladimir Marko2c64a832018-01-04 11:31:56 +00002349 old_status = ClassStatus::kSuperclassValidated;
Jeff Hao0cb17282017-07-12 14:51:49 -07002350 } else {
2351 soa.Self()->ClearException();
2352 }
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002353 soa.Self()->AssertNoPendingException();
Brian Carlstrom7940e442013-07-12 13:46:57 -07002354 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002355 }
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002356 // Record the final class status if necessary.
2357 ClassReference ref(&dex_file, klass->GetDexClassDefIndex());
2358 // Back up the status before doing initialization for static encoded fields,
2359 // because the static encoded branch wants to keep the status to uninitialized.
2360 manager_->GetCompiler()->RecordClassStatus(ref, old_status);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002361 }
Mathieu Chartier90443472015-07-16 20:32:27 -07002362
2363 private:
Andreas Gampe9e7078b2017-03-02 13:50:36 -08002364 void InternStrings(Handle<mirror::Class> klass, Handle<mirror::ClassLoader> class_loader)
2365 REQUIRES_SHARED(Locks::mutator_lock_) {
2366 DCHECK(manager_->GetCompiler()->GetCompilerOptions().IsBootImage());
2367 DCHECK(klass->IsVerified());
2368 DCHECK(!klass->IsInitialized());
2369
2370 StackHandleScope<1> hs(Thread::Current());
Vladimir Markoe11dd502017-12-08 14:09:45 +00002371 Handle<mirror::DexCache> dex_cache = hs.NewHandle(klass->GetDexCache());
Andreas Gampe9e7078b2017-03-02 13:50:36 -08002372 const DexFile::ClassDef* class_def = klass->GetClassDef();
2373 ClassLinker* class_linker = manager_->GetClassLinker();
2374
Andreas Gampe7bf90482017-03-02 16:41:35 -08002375 // Check encoded final field values for strings and intern.
Vladimir Markoe11dd502017-12-08 14:09:45 +00002376 annotations::RuntimeEncodedStaticFieldValueIterator value_it(dex_cache,
2377 class_loader,
Andreas Gampe9e7078b2017-03-02 13:50:36 -08002378 manager_->GetClassLinker(),
2379 *class_def);
2380 for ( ; value_it.HasNext(); value_it.Next()) {
2381 if (value_it.GetValueType() == annotations::RuntimeEncodedStaticFieldValueIterator::kString) {
2382 // Resolve the string. This will intern the string.
2383 art::ObjPtr<mirror::String> resolved = class_linker->ResolveString(
Vladimir Markoa64b52d2017-12-08 16:27:49 +00002384 dex::StringIndex(value_it.GetJavaValue().i), dex_cache);
Andreas Gampe9e7078b2017-03-02 13:50:36 -08002385 CHECK(resolved != nullptr);
2386 }
2387 }
Andreas Gampe7bf90482017-03-02 16:41:35 -08002388
2389 // Intern strings seen in <clinit>.
2390 ArtMethod* clinit = klass->FindClassInitializer(class_linker->GetImagePointerSize());
2391 if (clinit != nullptr) {
Mathieu Chartier73f21d42018-01-02 14:26:50 -08002392 for (const DexInstructionPcPair& inst : clinit->DexInstructions()) {
Mathieu Chartier2b2bef22017-10-26 17:10:19 -07002393 if (inst->Opcode() == Instruction::CONST_STRING) {
Andreas Gampe7bf90482017-03-02 16:41:35 -08002394 ObjPtr<mirror::String> s = class_linker->ResolveString(
Vladimir Markoa64b52d2017-12-08 16:27:49 +00002395 dex::StringIndex(inst->VRegB_21c()), dex_cache);
Andreas Gampe7bf90482017-03-02 16:41:35 -08002396 CHECK(s != nullptr);
Mathieu Chartier2b2bef22017-10-26 17:10:19 -07002397 } else if (inst->Opcode() == Instruction::CONST_STRING_JUMBO) {
Andreas Gampe7bf90482017-03-02 16:41:35 -08002398 ObjPtr<mirror::String> s = class_linker->ResolveString(
Vladimir Markoa64b52d2017-12-08 16:27:49 +00002399 dex::StringIndex(inst->VRegB_31c()), dex_cache);
Andreas Gampe7bf90482017-03-02 16:41:35 -08002400 CHECK(s != nullptr);
2401 }
Andreas Gampe7bf90482017-03-02 16:41:35 -08002402 }
2403 }
Andreas Gampe9e7078b2017-03-02 13:50:36 -08002404 }
2405
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002406 bool ResolveTypesOfMethods(Thread* self, ArtMethod* m)
2407 REQUIRES_SHARED(Locks::mutator_lock_) {
Vladimir Markob45528c2017-07-27 14:14:28 +01002408 // Return value of ResolveReturnType() is discarded because resolve will be done internally.
2409 ObjPtr<mirror::Class> rtn_type = m->ResolveReturnType();
Mathieu Chartier7a8bcfd2017-06-13 13:40:43 -07002410 if (rtn_type == nullptr) {
2411 self->ClearException();
2412 return false;
2413 }
2414 const DexFile::TypeList* types = m->GetParameterTypeList();
2415 if (types != nullptr) {
2416 for (uint32_t i = 0; i < types->Size(); ++i) {
2417 dex::TypeIndex param_type_idx = types->GetTypeItem(i).type_idx_;
Vladimir Markob45528c2017-07-27 14:14:28 +01002418 ObjPtr<mirror::Class> param_type = m->ResolveClassFromTypeIndex(param_type_idx);
Mathieu Chartier7a8bcfd2017-06-13 13:40:43 -07002419 if (param_type == nullptr) {
2420 self->ClearException();
2421 return false;
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002422 }
2423 }
Mathieu Chartier7a8bcfd2017-06-13 13:40:43 -07002424 }
2425 return true;
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002426 }
2427
2428 // Pre resolve types mentioned in all method signatures before start a transaction
2429 // since ResolveType doesn't work in transaction mode.
2430 bool PreResolveTypes(Thread* self, const Handle<mirror::Class>& klass)
2431 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartier7a8bcfd2017-06-13 13:40:43 -07002432 PointerSize pointer_size = manager_->GetClassLinker()->GetImagePointerSize();
2433 for (ArtMethod& m : klass->GetMethods(pointer_size)) {
2434 if (!ResolveTypesOfMethods(self, &m)) {
2435 return false;
2436 }
2437 }
2438 if (klass->IsInterface()) {
2439 return true;
2440 } else if (klass->HasSuperClass()) {
2441 StackHandleScope<1> hs(self);
2442 MutableHandle<mirror::Class> super_klass(hs.NewHandle<mirror::Class>(klass->GetSuperClass()));
2443 for (int i = super_klass->GetVTableLength() - 1; i >= 0; --i) {
2444 ArtMethod* m = klass->GetVTableEntry(i, pointer_size);
2445 ArtMethod* super_m = super_klass->GetVTableEntry(i, pointer_size);
2446 if (!ResolveTypesOfMethods(self, m) || !ResolveTypesOfMethods(self, super_m)) {
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002447 return false;
2448 }
2449 }
Mathieu Chartier7a8bcfd2017-06-13 13:40:43 -07002450 for (int32_t i = 0; i < klass->GetIfTableCount(); ++i) {
2451 super_klass.Assign(klass->GetIfTable()->GetInterface(i));
2452 if (klass->GetClassLoader() != super_klass->GetClassLoader()) {
2453 uint32_t num_methods = super_klass->NumVirtualMethods();
2454 for (uint32_t j = 0; j < num_methods; ++j) {
2455 ArtMethod* m = klass->GetIfTable()->GetMethodArray(i)->GetElementPtrSize<ArtMethod*>(
2456 j, pointer_size);
2457 ArtMethod* super_m = super_klass->GetVirtualMethod(j, pointer_size);
2458 if (!ResolveTypesOfMethods(self, m) || !ResolveTypesOfMethods(self, super_m)) {
2459 return false;
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002460 }
2461 }
2462 }
2463 }
Mathieu Chartier7a8bcfd2017-06-13 13:40:43 -07002464 }
2465 return true;
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002466 }
2467
2468 // Initialize the klass's dependencies recursively before initializing itself.
2469 // Checking for interfaces is also necessary since interfaces can contain
2470 // both default methods and static encoded fields.
2471 bool InitializeDependencies(const Handle<mirror::Class>& klass,
2472 Handle<mirror::ClassLoader> class_loader,
2473 Thread* self)
2474 REQUIRES_SHARED(Locks::mutator_lock_) {
2475 if (klass->HasSuperClass()) {
2476 ObjPtr<mirror::Class> super_class = klass->GetSuperClass();
2477 StackHandleScope<1> hs(self);
2478 Handle<mirror::Class> handle_scope_super(hs.NewHandle(super_class));
2479 if (!handle_scope_super->IsInitialized()) {
2480 this->TryInitializeClass(handle_scope_super, class_loader);
2481 if (!handle_scope_super->IsInitialized()) {
2482 return false;
2483 }
2484 }
2485 }
2486
2487 uint32_t num_if = klass->NumDirectInterfaces();
2488 for (size_t i = 0; i < num_if; i++) {
2489 ObjPtr<mirror::Class>
2490 interface = mirror::Class::GetDirectInterface(self, klass.Get(), i);
2491 StackHandleScope<1> hs(self);
2492 Handle<mirror::Class> handle_interface(hs.NewHandle(interface));
2493
2494 TryInitializeClass(handle_interface, class_loader);
2495
2496 if (!handle_interface->IsInitialized()) {
2497 return false;
2498 }
2499 }
2500
2501 return PreResolveTypes(self, klass);
2502 }
2503
2504 // In this phase the classes containing class initializers are ignored. Make sure no
2505 // clinit appears in kalss's super class chain and interfaces.
2506 bool NoClinitInDependency(const Handle<mirror::Class>& klass,
2507 Thread* self,
2508 Handle<mirror::ClassLoader>* class_loader)
2509 REQUIRES_SHARED(Locks::mutator_lock_) {
2510 ArtMethod* clinit =
2511 klass->FindClassInitializer(manager_->GetClassLinker()->GetImagePointerSize());
2512 if (clinit != nullptr) {
2513 VLOG(compiler) << klass->PrettyClass() << ' ' << clinit->PrettyMethod(true);
2514 return false;
2515 }
2516 if (klass->HasSuperClass()) {
2517 ObjPtr<mirror::Class> super_class = klass->GetSuperClass();
2518 StackHandleScope<1> hs(self);
2519 Handle<mirror::Class> handle_scope_super(hs.NewHandle(super_class));
2520 if (!NoClinitInDependency(handle_scope_super, self, class_loader)) {
2521 return false;
2522 }
2523 }
2524
2525 uint32_t num_if = klass->NumDirectInterfaces();
2526 for (size_t i = 0; i < num_if; i++) {
2527 ObjPtr<mirror::Class>
2528 interface = mirror::Class::GetDirectInterface(self, klass.Get(), i);
2529 StackHandleScope<1> hs(self);
2530 Handle<mirror::Class> handle_interface(hs.NewHandle(interface));
2531 if (!NoClinitInDependency(handle_interface, self, class_loader)) {
2532 return false;
2533 }
2534 }
2535
Chang Xingba17dbd2017-06-28 21:27:56 +00002536 return true;
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002537 }
2538
Mathieu Chartier90443472015-07-16 20:32:27 -07002539 const ParallelCompilationManager* const manager_;
2540};
Brian Carlstrom7940e442013-07-12 13:46:57 -07002541
Andreas Gampeace0dc12016-01-20 13:33:13 -08002542void CompilerDriver::InitializeClasses(jobject jni_class_loader,
2543 const DexFile& dex_file,
Andreas Gampede7b4362014-07-28 18:38:57 -07002544 const std::vector<const DexFile*>& dex_files,
Andreas Gampeace0dc12016-01-20 13:33:13 -08002545 TimingLogger* timings) {
Mathieu Chartierf5997b42014-06-20 10:37:54 -07002546 TimingLogger::ScopedTiming t("InitializeNoClinit", timings);
Andreas Gampeace0dc12016-01-20 13:33:13 -08002547
2548 // Initialization allocates objects and needs to run single-threaded to be deterministic.
2549 bool force_determinism = GetCompilerOptions().IsForceDeterminism();
2550 ThreadPool* init_thread_pool = force_determinism
2551 ? single_thread_pool_.get()
2552 : parallel_thread_pool_.get();
2553 size_t init_thread_count = force_determinism ? 1U : parallel_thread_count_;
2554
Brian Carlstrom7940e442013-07-12 13:46:57 -07002555 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Andreas Gampede7b4362014-07-28 18:38:57 -07002556 ParallelCompilationManager context(class_linker, jni_class_loader, this, &dex_file, dex_files,
Andreas Gampeace0dc12016-01-20 13:33:13 -08002557 init_thread_pool);
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002558
2559 if (GetCompilerOptions().IsBootImage() || GetCompilerOptions().IsAppImage()) {
2560 // Set the concurrency thread to 1 to support initialization for App Images since transaction
2561 // doesn't support multithreading now.
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01002562 // TODO: remove this when transactional mode supports multithreading.
Andreas Gampeace0dc12016-01-20 13:33:13 -08002563 init_thread_count = 1U;
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01002564 }
Mathieu Chartier90443472015-07-16 20:32:27 -07002565 InitializeClassVisitor visitor(&context);
Andreas Gampeace0dc12016-01-20 13:33:13 -08002566 context.ForAll(0, dex_file.NumClassDefs(), &visitor, init_thread_count);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002567}
2568
Mathieu Chartier91288d82016-04-28 09:44:54 -07002569class InitializeArrayClassesAndCreateConflictTablesVisitor : public ClassVisitor {
Mathieu Chartier085a0722016-04-01 17:33:31 -07002570 public:
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002571 explicit InitializeArrayClassesAndCreateConflictTablesVisitor(VariableSizedHandleScope& hs)
2572 : hs_(hs) {}
2573
2574 virtual bool operator()(ObjPtr<mirror::Class> klass) OVERRIDE
2575 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartier91288d82016-04-28 09:44:54 -07002576 if (Runtime::Current()->GetHeap()->ObjectIsInBootImageSpace(klass)) {
2577 return true;
2578 }
Mathieu Chartier085a0722016-04-01 17:33:31 -07002579 if (klass->IsArrayClass()) {
2580 StackHandleScope<1> hs(Thread::Current());
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002581 auto h_klass = hs.NewHandleWrapper(&klass);
2582 Runtime::Current()->GetClassLinker()->EnsureInitialized(hs.Self(), h_klass, true, true);
Mathieu Chartier085a0722016-04-01 17:33:31 -07002583 }
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002584 // Collect handles since there may be thread suspension in future EnsureInitialized.
2585 to_visit_.push_back(hs_.NewHandle(klass));
Nicolas Geoffray88f288e2016-06-29 08:17:52 +00002586 return true;
Nelli Kimbadee982016-05-13 13:08:53 +03002587 }
Artem Udovichenkoa62cb9b2016-06-30 09:18:25 +00002588
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002589 void FillAllIMTAndConflictTables() REQUIRES_SHARED(Locks::mutator_lock_) {
2590 for (Handle<mirror::Class> c : to_visit_) {
2591 // Create the conflict tables.
2592 FillIMTAndConflictTables(c.Get());
2593 }
2594 }
2595
Artem Udovichenkoa62cb9b2016-06-30 09:18:25 +00002596 private:
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002597 void FillIMTAndConflictTables(ObjPtr<mirror::Class> klass)
2598 REQUIRES_SHARED(Locks::mutator_lock_) {
Artem Udovichenkoa62cb9b2016-06-30 09:18:25 +00002599 if (!klass->ShouldHaveImt()) {
2600 return;
2601 }
2602 if (visited_classes_.find(klass) != visited_classes_.end()) {
2603 return;
2604 }
2605 if (klass->HasSuperClass()) {
2606 FillIMTAndConflictTables(klass->GetSuperClass());
2607 }
2608 if (!klass->IsTemp()) {
2609 Runtime::Current()->GetClassLinker()->FillIMTAndConflictTables(klass);
2610 }
2611 visited_classes_.insert(klass);
2612 }
2613
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002614 VariableSizedHandleScope& hs_;
2615 std::vector<Handle<mirror::Class>> to_visit_;
2616 std::unordered_set<ObjPtr<mirror::Class>, HashObjPtr> visited_classes_;
Mathieu Chartier085a0722016-04-01 17:33:31 -07002617};
2618
Brian Carlstrom7940e442013-07-12 13:46:57 -07002619void CompilerDriver::InitializeClasses(jobject class_loader,
2620 const std::vector<const DexFile*>& dex_files,
Andreas Gampeace0dc12016-01-20 13:33:13 -08002621 TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07002622 for (size_t i = 0; i != dex_files.size(); ++i) {
2623 const DexFile* dex_file = dex_files[i];
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002624 CHECK(dex_file != nullptr);
Andreas Gampeace0dc12016-01-20 13:33:13 -08002625 InitializeClasses(class_loader, *dex_file, dex_files, timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002626 }
Vladimir Markoaad75c62016-10-03 08:46:48 +00002627 if (GetCompilerOptions().IsBootImage() || GetCompilerOptions().IsAppImage()) {
Mathieu Chartier085a0722016-04-01 17:33:31 -07002628 // Make sure that we call EnsureIntiailized on all the array classes to call
2629 // SetVerificationAttempted so that the access flags are set. If we do not do this they get
2630 // changed at runtime resulting in more dirty image pages.
Mathieu Chartier91288d82016-04-28 09:44:54 -07002631 // Also create conflict tables.
2632 // Only useful if we are compiling an image (image_classes_ is not null).
Mathieu Chartier085a0722016-04-01 17:33:31 -07002633 ScopedObjectAccess soa(Thread::Current());
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002634 VariableSizedHandleScope hs(soa.Self());
2635 InitializeArrayClassesAndCreateConflictTablesVisitor visitor(hs);
Mathieu Chartier91288d82016-04-28 09:44:54 -07002636 Runtime::Current()->GetClassLinker()->VisitClassesWithoutClassesLock(&visitor);
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002637 visitor.FillAllIMTAndConflictTables();
Mathieu Chartier085a0722016-04-01 17:33:31 -07002638 }
Vladimir Markoaad75c62016-10-03 08:46:48 +00002639 if (GetCompilerOptions().IsBootImage()) {
Mathieu Chartier093ef212014-08-11 13:52:12 -07002640 // Prune garbage objects created during aborted transactions.
Roland Levillainaf290312018-02-27 20:02:17 +00002641 Runtime::Current()->GetHeap()->CollectGarbage(/* clear_soft_references */ true);
Mathieu Chartier093ef212014-08-11 13:52:12 -07002642 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002643}
2644
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002645template <typename CompileFn>
2646static void CompileDexFile(CompilerDriver* driver,
2647 jobject class_loader,
2648 const DexFile& dex_file,
2649 const std::vector<const DexFile*>& dex_files,
2650 ThreadPool* thread_pool,
2651 size_t thread_count,
2652 TimingLogger* timings,
2653 const char* timing_name,
2654 CompileFn compile_fn) {
2655 TimingLogger::ScopedTiming t(timing_name, timings);
2656 ParallelCompilationManager context(Runtime::Current()->GetClassLinker(),
2657 class_loader,
2658 driver,
2659 &dex_file,
2660 dex_files,
2661 thread_pool);
Vladimir Marko492a7fa2016-06-01 18:38:43 +01002662
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002663 auto compile = [&context, &compile_fn](size_t class_def_index) {
Andreas Gampe9b827ab2017-12-07 19:32:48 -08002664 ScopedTrace trace(__FUNCTION__);
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002665 const DexFile& dex_file = *context.GetDexFile();
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002666 ClassLinker* class_linker = context.GetClassLinker();
2667 jobject jclass_loader = context.GetClassLoader();
Mathieu Chartier90443472015-07-16 20:32:27 -07002668 ClassReference ref(&dex_file, class_def_index);
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07002669 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
Mathieu Chartier18e26872018-06-04 17:19:02 -07002670 ClassAccessor accessor(dex_file, class_def_index);
Mathieu Chartier90443472015-07-16 20:32:27 -07002671 // Skip compiling classes with generic verifier failures since they will still fail at runtime
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002672 if (context.GetCompiler()->GetVerificationResults()->IsClassRejected(ref)) {
Ian Rogers1ff3c982014-08-12 02:30:58 -07002673 return;
2674 }
Mathieu Chartier736b5602015-09-02 14:54:11 -07002675 // Use a scoped object access to perform to the quick SkipClass check.
Mathieu Chartier736b5602015-09-02 14:54:11 -07002676 ScopedObjectAccess soa(Thread::Current());
2677 StackHandleScope<3> hs(soa.Self());
2678 Handle<mirror::ClassLoader> class_loader(
Mathieu Chartier0795f232016-09-27 18:43:30 -07002679 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader)));
Mathieu Chartier736b5602015-09-02 14:54:11 -07002680 Handle<mirror::Class> klass(
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07002681 hs.NewHandle(class_linker->FindClass(soa.Self(), accessor.GetDescriptor(), class_loader)));
Mathieu Chartier736b5602015-09-02 14:54:11 -07002682 Handle<mirror::DexCache> dex_cache;
Andreas Gampefa4333d2017-02-14 11:10:34 -08002683 if (klass == nullptr) {
Mathieu Chartier736b5602015-09-02 14:54:11 -07002684 soa.Self()->AssertPendingException();
2685 soa.Self()->ClearException();
2686 dex_cache = hs.NewHandle(class_linker->FindDexCache(soa.Self(), dex_file));
2687 } else if (SkipClass(jclass_loader, dex_file, klass.Get())) {
2688 return;
Andreas Gampebb30d5d2018-04-23 09:59:25 -07002689 } else if (&klass->GetDexFile() != &dex_file) {
2690 // Skip a duplicate class (as the resolved class is from another, earlier dex file).
2691 return; // Do not update state.
Mathieu Chartier736b5602015-09-02 14:54:11 -07002692 } else {
2693 dex_cache = hs.NewHandle(klass->GetDexCache());
2694 }
2695
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07002696 // Avoid suspension if there are no methods to compile.
2697 if (accessor.NumDirectMethods() + accessor.NumVirtualMethods() == 0) {
Mathieu Chartier90443472015-07-16 20:32:27 -07002698 return;
Brian Carlstrom7940e442013-07-12 13:46:57 -07002699 }
Mathieu Chartier90443472015-07-16 20:32:27 -07002700
Mathieu Chartier736b5602015-09-02 14:54:11 -07002701 // Go to native so that we don't block GC during compilation.
Mathieu Chartierf1d666e2015-09-03 16:13:34 -07002702 ScopedThreadSuspension sts(soa.Self(), kNative);
Mathieu Chartier736b5602015-09-02 14:54:11 -07002703
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002704 CompilerDriver* const driver = context.GetCompiler();
Mathieu Chartier90443472015-07-16 20:32:27 -07002705
2706 // Can we run DEX-to-DEX compiler on this class ?
Mathieu Chartiera79efdb2018-01-18 16:31:01 -08002707 optimizer::DexToDexCompiler::CompilationLevel dex_to_dex_compilation_level =
Mathieu Chartier736b5602015-09-02 14:54:11 -07002708 GetDexToDexCompilationLevel(soa.Self(), *driver, jclass_loader, dex_file, class_def);
Andreas Gampe5eb0d382015-07-23 01:19:26 -07002709
Mathieu Chartier90443472015-07-16 20:32:27 -07002710
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07002711 const bool compilation_enabled = driver->IsClassToCompile(accessor.GetDescriptor());
Mathieu Chartier90443472015-07-16 20:32:27 -07002712
Mathieu Chartierb7c273c2017-11-10 18:07:56 -08002713 // Compile direct and virtual methods.
2714 int64_t previous_method_idx = -1;
Mathieu Chartier0d896bd2018-05-25 00:20:27 -07002715 for (const ClassAccessor::Method& method : accessor.GetMethods()) {
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07002716 const uint32_t method_idx = method.GetIndex();
Mathieu Chartierb7c273c2017-11-10 18:07:56 -08002717 if (method_idx == previous_method_idx) {
Mathieu Chartier90443472015-07-16 20:32:27 -07002718 // smali can create dex files with two encoded_methods sharing the same method_idx
2719 // http://code.google.com/p/smali/issues/detail?id=119
Mathieu Chartier0d896bd2018-05-25 00:20:27 -07002720 continue;
Mathieu Chartier90443472015-07-16 20:32:27 -07002721 }
Mathieu Chartierb7c273c2017-11-10 18:07:56 -08002722 previous_method_idx = method_idx;
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002723 compile_fn(soa.Self(),
2724 driver,
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07002725 method.GetCodeItem(),
2726 method.GetAccessFlags(),
2727 method.GetInvokeType(class_def.access_flags_),
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002728 class_def_index,
2729 method_idx,
2730 class_loader,
2731 dex_file,
2732 dex_to_dex_compilation_level,
2733 compilation_enabled,
2734 dex_cache);
Mathieu Chartier0d896bd2018-05-25 00:20:27 -07002735 }
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002736 };
2737 context.ForAllLambda(0, dex_file.NumClassDefs(), compile, thread_count);
2738}
2739
2740void CompilerDriver::Compile(jobject class_loader,
2741 const std::vector<const DexFile*>& dex_files,
2742 TimingLogger* timings) {
2743 if (kDebugProfileGuidedCompilation) {
2744 LOG(INFO) << "[ProfileGuidedCompilation] " <<
2745 ((profile_compilation_info_ == nullptr)
2746 ? "null"
2747 : profile_compilation_info_->DumpInfo(&dex_files));
Brian Carlstrom7940e442013-07-12 13:46:57 -07002748 }
Mathieu Chartier90443472015-07-16 20:32:27 -07002749
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002750 dex_to_dex_compiler_.ClearState();
2751 for (const DexFile* dex_file : dex_files) {
2752 CHECK(dex_file != nullptr);
2753 CompileDexFile(this,
2754 class_loader,
2755 *dex_file,
2756 dex_files,
2757 parallel_thread_pool_.get(),
2758 parallel_thread_count_,
2759 timings,
2760 "Compile Dex File Quick",
2761 CompileMethodQuick);
2762 const ArenaPool* const arena_pool = Runtime::Current()->GetArenaPool();
2763 const size_t arena_alloc = arena_pool->GetBytesAllocated();
2764 max_arena_alloc_ = std::max(arena_alloc, max_arena_alloc_);
2765 Runtime::Current()->ReclaimArenaPoolMemory();
2766 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002767
Mathieu Chartier279e3a32018-01-24 18:17:55 -08002768 if (dex_to_dex_compiler_.NumCodeItemsToQuicken(Thread::Current()) > 0u) {
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002769 // TODO: Not visit all of the dex files, its probably rare that only one would have quickened
2770 // methods though.
2771 for (const DexFile* dex_file : dex_files) {
2772 CompileDexFile(this,
2773 class_loader,
2774 *dex_file,
2775 dex_files,
2776 parallel_thread_pool_.get(),
2777 parallel_thread_count_,
2778 timings,
2779 "Compile Dex File Dex2Dex",
2780 CompileMethodDex2Dex);
2781 }
2782 dex_to_dex_compiler_.ClearState();
2783 }
2784
2785 VLOG(compiler) << "Compile: " << GetMemoryUsageString(false);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002786}
2787
Andreas Gampe5eb0d382015-07-23 01:19:26 -07002788void CompilerDriver::AddCompiledMethod(const MethodReference& method_ref,
2789 CompiledMethod* const compiled_method,
2790 size_t non_relative_linker_patch_count) {
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002791 DCHECK(GetCompiledMethod(method_ref) == nullptr) << method_ref.PrettyMethod();
2792 MethodTable::InsertResult result = compiled_methods_.Insert(method_ref,
2793 /*expected*/ nullptr,
2794 compiled_method);
Mathieu Chartieracab8d42016-11-23 13:45:58 -08002795 CHECK(result == MethodTable::kInsertResultSuccess);
Orion Hodson88591fe2018-03-06 13:35:43 +00002796 non_relative_linker_patch_count_.fetch_add(non_relative_linker_patch_count,
2797 std::memory_order_relaxed);
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002798 DCHECK(GetCompiledMethod(method_ref) != nullptr) << method_ref.PrettyMethod();
Brian Carlstrom7940e442013-07-12 13:46:57 -07002799}
2800
Mathieu Chartier279e3a32018-01-24 18:17:55 -08002801CompiledMethod* CompilerDriver::RemoveCompiledMethod(const MethodReference& method_ref) {
2802 CompiledMethod* ret = nullptr;
2803 CHECK(compiled_methods_.Remove(method_ref, &ret));
2804 return ret;
2805}
2806
Vladimir Marko2c64a832018-01-04 11:31:56 +00002807bool CompilerDriver::GetCompiledClass(const ClassReference& ref, ClassStatus* status) const {
Andreas Gampebb846102017-05-11 21:03:35 -07002808 DCHECK(status != nullptr);
Mathieu Chartier1a088d42017-07-18 11:43:57 -07002809 // The table doesn't know if something wasn't inserted. For this case it will return
Vladimir Marko2c64a832018-01-04 11:31:56 +00002810 // ClassStatus::kNotReady. To handle this, just assume anything we didn't try to verify
2811 // is not compiled.
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002812 if (!compiled_classes_.Get(ref, status) ||
Vladimir Marko2c64a832018-01-04 11:31:56 +00002813 *status < ClassStatus::kRetryVerificationAtRuntime) {
Andreas Gampebb846102017-05-11 21:03:35 -07002814 return false;
Brian Carlstrom7940e442013-07-12 13:46:57 -07002815 }
Andreas Gampebb846102017-05-11 21:03:35 -07002816 return true;
Brian Carlstrom7940e442013-07-12 13:46:57 -07002817}
2818
Vladimir Marko2c64a832018-01-04 11:31:56 +00002819ClassStatus CompilerDriver::GetClassStatus(const ClassReference& ref) const {
2820 ClassStatus status = ClassStatus::kNotReady;
Nicolas Geoffray486dda02017-09-11 14:15:52 +01002821 if (!GetCompiledClass(ref, &status)) {
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002822 classpath_classes_.Get(ref, &status);
Nicolas Geoffray486dda02017-09-11 14:15:52 +01002823 }
2824 return status;
2825}
2826
Vladimir Marko2c64a832018-01-04 11:31:56 +00002827void CompilerDriver::RecordClassStatus(const ClassReference& ref, ClassStatus status) {
Nicolas Geoffrayade72d62016-12-15 13:20:02 +00002828 switch (status) {
Vladimir Marko2c64a832018-01-04 11:31:56 +00002829 case ClassStatus::kErrorResolved:
2830 case ClassStatus::kErrorUnresolved:
2831 case ClassStatus::kNotReady:
2832 case ClassStatus::kResolved:
2833 case ClassStatus::kRetryVerificationAtRuntime:
2834 case ClassStatus::kVerified:
2835 case ClassStatus::kSuperclassValidated:
2836 case ClassStatus::kInitialized:
Nicolas Geoffrayade72d62016-12-15 13:20:02 +00002837 break; // Expected states.
2838 default:
2839 LOG(FATAL) << "Unexpected class status for class "
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002840 << PrettyDescriptor(
2841 ref.dex_file->GetClassDescriptor(ref.dex_file->GetClassDef(ref.index)))
Nicolas Geoffrayade72d62016-12-15 13:20:02 +00002842 << " of " << status;
2843 }
2844
Mathieu Chartier1a088d42017-07-18 11:43:57 -07002845 ClassStateTable::InsertResult result;
Nicolas Geoffray486dda02017-09-11 14:15:52 +01002846 ClassStateTable* table = &compiled_classes_;
Mathieu Chartier1a088d42017-07-18 11:43:57 -07002847 do {
Vladimir Marko2c64a832018-01-04 11:31:56 +00002848 ClassStatus existing = ClassStatus::kNotReady;
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002849 if (!table->Get(ref, &existing)) {
Nicolas Geoffray486dda02017-09-11 14:15:52 +01002850 // A classpath class.
Mathieu Chartier010f5cc2017-07-24 15:53:46 -07002851 if (kIsDebugBuild) {
2852 // Check to make sure it's not a dex file for an oat file we are compiling since these
2853 // should always succeed. These do not include classes in for used libraries.
Vladimir Marko213ee2d2018-06-22 11:56:34 +01002854 for (const DexFile* dex_file : GetCompilerOptions().GetDexFilesForOatFile()) {
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002855 CHECK_NE(ref.dex_file, dex_file) << ref.dex_file->GetLocation();
Mathieu Chartier010f5cc2017-07-24 15:53:46 -07002856 }
2857 }
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002858 if (!classpath_classes_.HaveDexFile(ref.dex_file)) {
Nicolas Geoffray486dda02017-09-11 14:15:52 +01002859 // Boot classpath dex file.
2860 return;
2861 }
2862 table = &classpath_classes_;
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002863 table->Get(ref, &existing);
Mathieu Chartier010f5cc2017-07-24 15:53:46 -07002864 }
Mathieu Chartier1a088d42017-07-18 11:43:57 -07002865 if (existing >= status) {
2866 // Existing status is already better than we expect, break.
2867 break;
2868 }
Nicolas Geoffrayade72d62016-12-15 13:20:02 +00002869 // Update the status if we now have a greater one. This happens with vdex,
2870 // which records a class is verified, but does not resolve it.
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002871 result = table->Insert(ref, existing, status);
2872 CHECK(result != ClassStateTable::kInsertResultInvalidDexFile) << ref.dex_file->GetLocation();
Mathieu Chartier1a088d42017-07-18 11:43:57 -07002873 } while (result != ClassStateTable::kInsertResultSuccess);
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07002874}
2875
Brian Carlstrom7940e442013-07-12 13:46:57 -07002876CompiledMethod* CompilerDriver::GetCompiledMethod(MethodReference ref) const {
Mathieu Chartieracab8d42016-11-23 13:45:58 -08002877 CompiledMethod* compiled_method = nullptr;
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002878 compiled_methods_.Get(ref, &compiled_method);
Mathieu Chartieracab8d42016-11-23 13:45:58 -08002879 return compiled_method;
Brian Carlstrom7940e442013-07-12 13:46:57 -07002880}
2881
Calin Juravlef1c6d9e2015-04-13 18:42:21 +01002882bool CompilerDriver::IsMethodVerifiedWithoutFailures(uint32_t method_idx,
2883 uint16_t class_def_idx,
2884 const DexFile& dex_file) const {
2885 const VerifiedMethod* verified_method = GetVerifiedMethod(&dex_file, method_idx);
2886 if (verified_method != nullptr) {
2887 return !verified_method->HasVerificationFailures();
2888 }
2889
2890 // If we can't find verification metadata, check if this is a system class (we trust that system
2891 // classes have their methods verified). If it's not, be conservative and assume the method
2892 // has not been verified successfully.
2893
2894 // TODO: When compiling the boot image it should be safe to assume that everything is verified,
2895 // even if methods are not found in the verification cache.
2896 const char* descriptor = dex_file.GetClassDescriptor(dex_file.GetClassDef(class_def_idx));
2897 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
2898 Thread* self = Thread::Current();
2899 ScopedObjectAccess soa(self);
2900 bool is_system_class = class_linker->FindSystemClass(self, descriptor) != nullptr;
2901 if (!is_system_class) {
2902 self->ClearException();
2903 }
2904 return is_system_class;
2905}
2906
Vladimir Markof4da6752014-08-01 19:04:18 +01002907size_t CompilerDriver::GetNonRelativeLinkerPatchCount() const {
Orion Hodson88591fe2018-03-06 13:35:43 +00002908 return non_relative_linker_patch_count_.load(std::memory_order_relaxed);
Vladimir Markof4da6752014-08-01 19:04:18 +01002909}
2910
Mathieu Chartierc4ae9162016-04-07 13:19:19 -07002911void CompilerDriver::SetRequiresConstructorBarrier(Thread* self,
2912 const DexFile* dex_file,
2913 uint16_t class_def_index,
2914 bool requires) {
2915 WriterMutexLock mu(self, requires_constructor_barrier_lock_);
2916 requires_constructor_barrier_.emplace(ClassReference(dex_file, class_def_index), requires);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002917}
2918
Mathieu Chartier371bd832016-04-07 10:19:48 -07002919bool CompilerDriver::RequiresConstructorBarrier(Thread* self,
2920 const DexFile* dex_file,
Mathieu Chartierc4ae9162016-04-07 13:19:19 -07002921 uint16_t class_def_index) {
2922 ClassReference class_ref(dex_file, class_def_index);
2923 {
2924 ReaderMutexLock mu(self, requires_constructor_barrier_lock_);
2925 auto it = requires_constructor_barrier_.find(class_ref);
2926 if (it != requires_constructor_barrier_.end()) {
2927 return it->second;
2928 }
Mathieu Chartierb5d38612016-04-07 10:52:52 -07002929 }
Mathieu Chartierc4ae9162016-04-07 13:19:19 -07002930 WriterMutexLock mu(self, requires_constructor_barrier_lock_);
2931 const bool requires = RequiresConstructorBarrier(*dex_file, class_def_index);
2932 requires_constructor_barrier_.emplace(class_ref, requires);
2933 return requires;
Brian Carlstrom7940e442013-07-12 13:46:57 -07002934}
2935
Andreas Gampe8d295f82015-01-20 14:50:21 -08002936std::string CompilerDriver::GetMemoryUsageString(bool extended) const {
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002937 std::ostringstream oss;
Calin Juravle69158982016-03-16 11:53:41 +00002938 const gc::Heap* const heap = Runtime::Current()->GetHeap();
Anton Kirilovdd9473b2016-01-28 15:08:01 +00002939 const size_t java_alloc = heap->GetBytesAllocated();
Calin Juravle69158982016-03-16 11:53:41 +00002940 oss << "arena alloc=" << PrettySize(max_arena_alloc_) << " (" << max_arena_alloc_ << "B)";
Anton Kirilovdd9473b2016-01-28 15:08:01 +00002941 oss << " java alloc=" << PrettySize(java_alloc) << " (" << java_alloc << "B)";
Elliott Hughes7bf5a262015-04-02 20:55:07 -07002942#if defined(__BIONIC__) || defined(__GLIBC__)
Anton Kirilovdd9473b2016-01-28 15:08:01 +00002943 const struct mallinfo info = mallinfo();
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002944 const size_t allocated_space = static_cast<size_t>(info.uordblks);
2945 const size_t free_space = static_cast<size_t>(info.fordblks);
Anton Kirilovdd9473b2016-01-28 15:08:01 +00002946 oss << " native alloc=" << PrettySize(allocated_space) << " (" << allocated_space << "B)"
2947 << " free=" << PrettySize(free_space) << " (" << free_space << "B)";
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002948#endif
Vladimir Marko35831e82015-09-11 11:59:18 +01002949 compiled_method_storage_.DumpMemoryUsage(oss, extended);
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002950 return oss.str();
2951}
2952
Andreas Gampeace0dc12016-01-20 13:33:13 -08002953void CompilerDriver::InitializeThreadPools() {
2954 size_t parallel_count = parallel_thread_count_ > 0 ? parallel_thread_count_ - 1 : 0;
2955 parallel_thread_pool_.reset(
2956 new ThreadPool("Compiler driver thread pool", parallel_count));
2957 single_thread_pool_.reset(new ThreadPool("Single-threaded Compiler driver thread pool", 0));
2958}
2959
2960void CompilerDriver::FreeThreadPools() {
2961 parallel_thread_pool_.reset();
2962 single_thread_pool_.reset();
2963}
2964
Nicolas Geoffray486dda02017-09-11 14:15:52 +01002965void CompilerDriver::SetClasspathDexFiles(const std::vector<const DexFile*>& dex_files) {
2966 classpath_classes_.AddDexFiles(dex_files);
Mathieu Chartier72041a02017-07-14 18:23:25 -07002967}
2968
Brian Carlstrom7940e442013-07-12 13:46:57 -07002969} // namespace art