blob: ed4fb6f30fc2435561caa47b039be9f4f0493e7b [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 Markodc4bcce2018-06-21 16:15:42 +0100888 VLOG(compiler) << "Before precompile " << GetMemoryUsageString(false);
889
890 // Precompile:
891 // 1) Load image classes.
892 // 2) Resolve all classes.
893 // 3) For deterministic boot image, resolve strings for const-string instructions.
894 // 4) Attempt to verify all classes.
895 // 5) Attempt to initialize image classes, and trivially initialized classes.
896 // 6) Update the set of image classes.
897 // 7) For deterministic boot image, initialize bitstrings for type checking.
Andreas Gampeace0dc12016-01-20 13:33:13 -0800898
Brian Carlstrom7940e442013-07-12 13:46:57 -0700899 LoadImageClasses(timings);
Andreas Gampe8d295f82015-01-20 14:50:21 -0800900 VLOG(compiler) << "LoadImageClasses: " << GetMemoryUsageString(false);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700901
Nicolas Geoffray49cda062017-04-21 13:08:25 +0100902 if (compiler_options_->IsAnyCompilationEnabled()) {
Mathieu Chartier88b74b62017-07-16 17:08:19 -0700903 // Avoid adding the dex files in the case where we aren't going to add compiled methods.
904 // This reduces RAM usage for this case.
905 for (const DexFile* dex_file : dex_files) {
906 // Can be already inserted if the caller is CompileOne. This happens for gtests.
907 if (!compiled_methods_.HaveDexFile(dex_file)) {
Mathieu Chartierfc8b4222017-09-17 13:44:24 -0700908 compiled_methods_.AddDexFile(dex_file);
Mathieu Chartier88b74b62017-07-16 17:08:19 -0700909 }
910 }
Nicolas Geoffray49cda062017-04-21 13:08:25 +0100911 // Resolve eagerly to prepare for compilation.
Andreas Gampeace0dc12016-01-20 13:33:13 -0800912 Resolve(class_loader, dex_files, timings);
Mathieu Chartiere86deef2015-03-19 13:43:37 -0700913 VLOG(compiler) << "Resolve: " << GetMemoryUsageString(false);
914 }
915
Nicolas Geoffray60ca9492016-12-20 21:15:00 +0000916 if (compiler_options_->AssumeClassesAreVerified()) {
Mathieu Chartierab972ef2014-12-03 17:38:22 -0800917 VLOG(compiler) << "Verify none mode specified, skipping verification.";
Andreas Gampeace0dc12016-01-20 13:33:13 -0800918 SetVerified(class_loader, dex_files, timings);
Mathieu Chartiere86deef2015-03-19 13:43:37 -0700919 }
920
Nicolas Geoffray60ca9492016-12-20 21:15:00 +0000921 if (!compiler_options_->IsVerificationEnabled()) {
Jeff Hao4a200f52014-04-01 14:58:49 -0700922 return;
923 }
924
Vladimir Markoaad75c62016-10-03 08:46:48 +0000925 if (GetCompilerOptions().IsForceDeterminism() && GetCompilerOptions().IsBootImage()) {
Andreas Gampeace0dc12016-01-20 13:33:13 -0800926 // Resolve strings from const-string. Do this now to have a deterministic image.
927 ResolveConstStrings(this, dex_files, timings);
928 VLOG(compiler) << "Resolve const-strings: " << GetMemoryUsageString(false);
929 }
930
Nicolas Geoffrayb0bbe8e2016-11-19 10:42:37 +0000931 Verify(class_loader, dex_files, timings);
Andreas Gampe8d295f82015-01-20 14:50:21 -0800932 VLOG(compiler) << "Verify: " << GetMemoryUsageString(false);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700933
Andreas Gampe6cf49e52015-03-05 13:08:45 -0800934 if (had_hard_verifier_failure_ && GetCompilerOptions().AbortOnHardVerifierFailure()) {
Andreas Gampefdfb4d42017-07-27 12:12:22 -0700935 // Avoid dumping threads. Even if we shut down the thread pools, there will still be three
936 // instances of this thread's stack.
937 LOG(FATAL_WITHOUT_ABORT) << "Had a hard failure verifying all classes, and was asked to abort "
938 << "in such situations. Please check the log.";
Andreas Gampe56c9b7c2018-02-27 18:49:26 -0800939 _exit(1);
Andreas Gampef39208f2017-10-19 15:06:59 -0700940 } else if (number_of_soft_verifier_failures_ > 0 &&
941 GetCompilerOptions().AbortOnSoftVerifierFailure()) {
942 LOG(FATAL_WITHOUT_ABORT) << "Had " << number_of_soft_verifier_failures_ << " soft failure(s) "
943 << "verifying all classes, and was asked to abort in such situations. "
944 << "Please check the log.";
Andreas Gampe56c9b7c2018-02-27 18:49:26 -0800945 _exit(1);
Andreas Gampe6cf49e52015-03-05 13:08:45 -0800946 }
947
Nicolas Geoffray49cda062017-04-21 13:08:25 +0100948 if (compiler_options_->IsAnyCompilationEnabled()) {
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +0000949 if (kIsDebugBuild) {
950 EnsureVerifiedOrVerifyAtRuntime(class_loader, dex_files);
951 }
Nicolas Geoffrayade72d62016-12-15 13:20:02 +0000952 InitializeClasses(class_loader, dex_files, timings);
953 VLOG(compiler) << "InitializeClasses: " << GetMemoryUsageString(false);
954 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700955
956 UpdateImageClasses(timings);
Andreas Gampe8d295f82015-01-20 14:50:21 -0800957 VLOG(compiler) << "UpdateImageClasses: " << GetMemoryUsageString(false);
Vladimir Marko175e7862018-03-27 09:03:13 +0000958
959 if (kBitstringSubtypeCheckEnabled &&
960 GetCompilerOptions().IsForceDeterminism() && GetCompilerOptions().IsBootImage()) {
961 // Initialize type check bit string used by check-cast and instanceof.
962 // Do this now to have a deterministic image.
963 // Note: This is done after UpdateImageClasses() at it relies on the image classes to be final.
964 InitializeTypeCheckBitstrings(this, dex_files, timings);
965 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700966}
967
Andreas Gampe4bf3ae92014-11-11 13:28:29 -0800968bool CompilerDriver::IsClassToCompile(const char* descriptor) const {
Andreas Gampeb1fcead2015-04-20 18:53:51 -0700969 if (classes_to_compile_ == nullptr) {
970 return true;
971 }
Vladimir Marko54159c62018-06-20 14:30:08 +0100972 return classes_to_compile_->find(StringPiece(descriptor)) != classes_to_compile_->end();
Andreas Gampe4bf3ae92014-11-11 13:28:29 -0800973}
974
Calin Juravle226501b2015-12-11 14:41:31 +0000975bool CompilerDriver::ShouldCompileBasedOnProfile(const MethodReference& method_ref) const {
Mathieu Chartier97ab5e32017-02-22 13:35:44 -0800976 // Profile compilation info may be null if no profile is passed.
Mathieu Chartierd0af56c2017-02-17 12:56:25 -0800977 if (!CompilerFilter::DependsOnProfile(compiler_options_->GetCompilerFilter())) {
978 // Use the compiler filter instead of the presence of profile_compilation_info_ since
979 // we may want to have full speed compilation along with profile based layout optimizations.
Calin Juravle226501b2015-12-11 14:41:31 +0000980 return true;
981 }
Mathieu Chartier97ab5e32017-02-22 13:35:44 -0800982 // If we are using a profile filter but do not have a profile compilation info, compile nothing.
983 if (profile_compilation_info_ == nullptr) {
984 return false;
985 }
Mathieu Chartier7b135c82017-06-05 12:54:01 -0700986 // Compile only hot methods, it is the profile saver's job to decide what startup methods to mark
987 // as hot.
Mathieu Chartierbbe3a5e2017-06-13 16:36:17 -0700988 bool result = profile_compilation_info_->GetMethodHotness(method_ref).IsHot();
Calin Juravle226501b2015-12-11 14:41:31 +0000989
990 if (kDebugProfileGuidedCompilation) {
991 LOG(INFO) << "[ProfileGuidedCompilation] "
Mathieu Chartierfc8b4222017-09-17 13:44:24 -0700992 << (result ? "Compiled" : "Skipped") << " method:" << method_ref.PrettyMethod(true);
Calin Juravle226501b2015-12-11 14:41:31 +0000993 }
994 return result;
995}
996
Mathieu Chartiere0671ce2015-07-28 17:23:28 -0700997class ResolveCatchBlockExceptionsClassVisitor : public ClassVisitor {
998 public:
Vladimir Marko8d6768d2017-03-14 10:13:21 +0000999 ResolveCatchBlockExceptionsClassVisitor() : classes_() {}
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001000
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001001 virtual bool operator()(ObjPtr<mirror::Class> c) OVERRIDE REQUIRES_SHARED(Locks::mutator_lock_) {
Vladimir Marko8d6768d2017-03-14 10:13:21 +00001002 classes_.push_back(c);
Mathieu Chartiere4275c02015-08-06 15:34:15 -07001003 return true;
1004 }
1005
Vladimir Marko8d6768d2017-03-14 10:13:21 +00001006 void FindExceptionTypesToResolve(
1007 std::set<std::pair<dex::TypeIndex, const DexFile*>>* exceptions_to_resolve)
Vladimir Markobfb80d22017-02-14 14:08:12 +00001008 REQUIRES_SHARED(Locks::mutator_lock_) {
Vladimir Marko8d6768d2017-03-14 10:13:21 +00001009 const auto pointer_size = Runtime::Current()->GetClassLinker()->GetImagePointerSize();
1010 for (ObjPtr<mirror::Class> klass : classes_) {
1011 for (ArtMethod& method : klass->GetMethods(pointer_size)) {
1012 FindExceptionTypesToResolveForMethod(&method, exceptions_to_resolve);
1013 }
1014 }
1015 }
1016
1017 private:
1018 void FindExceptionTypesToResolveForMethod(
1019 ArtMethod* method,
1020 std::set<std::pair<dex::TypeIndex, const DexFile*>>* exceptions_to_resolve)
1021 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartier808c7a52017-12-15 11:19:33 -08001022 if (method->GetCodeItem() == nullptr) {
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001023 return; // native or abstract method
Brian Carlstrom7940e442013-07-12 13:46:57 -07001024 }
David Sehr0225f8e2018-01-31 08:52:24 +00001025 CodeItemDataAccessor accessor(method->DexInstructionData());
Mathieu Chartier808c7a52017-12-15 11:19:33 -08001026 if (accessor.TriesSize() == 0) {
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001027 return; // nothing to process
1028 }
Mathieu Chartier808c7a52017-12-15 11:19:33 -08001029 const uint8_t* encoded_catch_handler_list = accessor.GetCatchHandlerData();
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001030 size_t num_encoded_catch_handlers = DecodeUnsignedLeb128(&encoded_catch_handler_list);
1031 for (size_t i = 0; i < num_encoded_catch_handlers; i++) {
1032 int32_t encoded_catch_handler_size = DecodeSignedLeb128(&encoded_catch_handler_list);
1033 bool has_catch_all = false;
1034 if (encoded_catch_handler_size <= 0) {
1035 encoded_catch_handler_size = -encoded_catch_handler_size;
1036 has_catch_all = true;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001037 }
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001038 for (int32_t j = 0; j < encoded_catch_handler_size; j++) {
Andreas Gampea5b09a62016-11-17 15:21:22 -08001039 dex::TypeIndex encoded_catch_handler_handlers_type_idx =
1040 dex::TypeIndex(DecodeUnsignedLeb128(&encoded_catch_handler_list));
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001041 // Add to set of types to resolve if not already in the dex cache resolved types
Vladimir Marko8d6768d2017-03-14 10:13:21 +00001042 if (!method->IsResolvedTypeIdx(encoded_catch_handler_handlers_type_idx)) {
1043 exceptions_to_resolve->emplace(encoded_catch_handler_handlers_type_idx,
1044 method->GetDexFile());
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001045 }
1046 // ignore address associated with catch handler
1047 DecodeUnsignedLeb128(&encoded_catch_handler_list);
1048 }
1049 if (has_catch_all) {
1050 // ignore catch all address
1051 DecodeUnsignedLeb128(&encoded_catch_handler_list);
1052 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001053 }
1054 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001055
Vladimir Marko8d6768d2017-03-14 10:13:21 +00001056 std::vector<ObjPtr<mirror::Class>> classes_;
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001057};
1058
1059class RecordImageClassesVisitor : public ClassVisitor {
1060 public:
Vladimir Marko54159c62018-06-20 14:30:08 +01001061 explicit RecordImageClassesVisitor(HashSet<std::string>* image_classes)
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001062 : image_classes_(image_classes) {}
1063
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001064 bool operator()(ObjPtr<mirror::Class> klass) OVERRIDE REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001065 std::string temp;
1066 image_classes_->insert(klass->GetDescriptor(&temp));
1067 return true;
1068 }
1069
1070 private:
Vladimir Marko54159c62018-06-20 14:30:08 +01001071 HashSet<std::string>* const image_classes_;
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001072};
Brian Carlstrom7940e442013-07-12 13:46:57 -07001073
1074// Make a list of descriptors for classes to include in the image
Mathieu Chartier90443472015-07-16 20:32:27 -07001075void CompilerDriver::LoadImageClasses(TimingLogger* timings) {
Kenny Rootd5185342014-05-13 14:47:05 -07001076 CHECK(timings != nullptr);
Vladimir Markoaad75c62016-10-03 08:46:48 +00001077 if (!GetCompilerOptions().IsBootImage()) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001078 return;
1079 }
1080
Mathieu Chartierf5997b42014-06-20 10:37:54 -07001081 TimingLogger::ScopedTiming t("LoadImageClasses", timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001082 // Make a first class to load all classes explicitly listed in the file
1083 Thread* self = Thread::Current();
1084 ScopedObjectAccess soa(self);
1085 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Vladimir Markodc4bcce2018-06-21 16:15:42 +01001086 CHECK(image_classes_ != nullptr);
Mathieu Chartier02e25112013-08-14 16:14:24 -07001087 for (auto it = image_classes_->begin(), end = image_classes_->end(); it != end;) {
Vladimir Markoe9c36b32013-11-21 15:49:16 +00001088 const std::string& descriptor(*it);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001089 StackHandleScope<1> hs(self);
1090 Handle<mirror::Class> klass(
1091 hs.NewHandle(class_linker->FindSystemClass(self, descriptor.c_str())));
Andreas Gampefa4333d2017-02-14 11:10:34 -08001092 if (klass == nullptr) {
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001093 VLOG(compiler) << "Failed to find class " << descriptor;
Vladimir Marko54159c62018-06-20 14:30:08 +01001094 it = image_classes_->erase(it);
Ian Rogersa436fde2013-08-27 23:34:06 -07001095 self->ClearException();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001096 } else {
1097 ++it;
1098 }
1099 }
1100
1101 // Resolve exception classes referenced by the loaded classes. The catch logic assumes
1102 // exceptions are resolved by the verifier when there is a catch block in an interested method.
1103 // Do this here so that exception classes appear to have been specified image classes.
Andreas Gampea5b09a62016-11-17 15:21:22 -08001104 std::set<std::pair<dex::TypeIndex, const DexFile*>> unresolved_exception_types;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001105 StackHandleScope<1> hs(self);
1106 Handle<mirror::Class> java_lang_Throwable(
1107 hs.NewHandle(class_linker->FindSystemClass(self, "Ljava/lang/Throwable;")));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001108 do {
1109 unresolved_exception_types.clear();
Vladimir Marko8d6768d2017-03-14 10:13:21 +00001110 {
1111 // Thread suspension is not allowed while ResolveCatchBlockExceptionsClassVisitor
1112 // is using a std::vector<ObjPtr<mirror::Class>>.
1113 ScopedAssertNoThreadSuspension ants(__FUNCTION__);
1114 ResolveCatchBlockExceptionsClassVisitor visitor;
1115 class_linker->VisitClasses(&visitor);
1116 visitor.FindExceptionTypesToResolve(&unresolved_exception_types);
1117 }
Andreas Gampea5b09a62016-11-17 15:21:22 -08001118 for (const auto& exception_type : unresolved_exception_types) {
1119 dex::TypeIndex exception_type_idx = exception_type.first;
Mathieu Chartier02e25112013-08-14 16:14:24 -07001120 const DexFile* dex_file = exception_type.second;
Vladimir Marko666ee3d2017-12-11 18:37:36 +00001121 StackHandleScope<1> hs2(self);
Mathieu Chartierf284d442016-06-02 11:48:30 -07001122 Handle<mirror::DexCache> dex_cache(hs2.NewHandle(class_linker->RegisterDexFile(*dex_file,
1123 nullptr)));
Vladimir Marko666ee3d2017-12-11 18:37:36 +00001124 ObjPtr<mirror::Class> klass =
Andreas Gampefa4333d2017-02-14 11:10:34 -08001125 (dex_cache != nullptr)
Vladimir Marko666ee3d2017-12-11 18:37:36 +00001126 ? class_linker->ResolveType(exception_type_idx,
Vladimir Markocd556b02017-02-03 11:47:34 +00001127 dex_cache,
1128 ScopedNullHandle<mirror::ClassLoader>())
Vladimir Marko666ee3d2017-12-11 18:37:36 +00001129 : nullptr;
Andreas Gampefa4333d2017-02-14 11:10:34 -08001130 if (klass == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001131 const DexFile::TypeId& type_id = dex_file->GetTypeId(exception_type_idx);
1132 const char* descriptor = dex_file->GetTypeDescriptor(type_id);
1133 LOG(FATAL) << "Failed to resolve class " << descriptor;
1134 }
Vladimir Marko666ee3d2017-12-11 18:37:36 +00001135 DCHECK(java_lang_Throwable->IsAssignableFrom(klass));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001136 }
1137 // Resolving exceptions may load classes that reference more exceptions, iterate until no
1138 // more are found
1139 } while (!unresolved_exception_types.empty());
1140
1141 // We walk the roots looking for classes so that we'll pick up the
1142 // above classes plus any classes them depend on such super
1143 // classes, interfaces, and the required ClassLinker roots.
Vladimir Markodc4bcce2018-06-21 16:15:42 +01001144 RecordImageClassesVisitor visitor(image_classes_);
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001145 class_linker->VisitClasses(&visitor);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001146
Vladimir Marko54159c62018-06-20 14:30:08 +01001147 CHECK(!image_classes_->empty());
Brian Carlstrom7940e442013-07-12 13:46:57 -07001148}
1149
Vladimir Marko19a4d372016-12-08 14:41:46 +00001150static void MaybeAddToImageClasses(Thread* self,
1151 ObjPtr<mirror::Class> klass,
Vladimir Marko54159c62018-06-20 14:30:08 +01001152 HashSet<std::string>* image_classes)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001153 REQUIRES_SHARED(Locks::mutator_lock_) {
Vladimir Marko19a4d372016-12-08 14:41:46 +00001154 DCHECK_EQ(self, Thread::Current());
Mathieu Chartierf8322842014-05-16 10:59:25 -07001155 StackHandleScope<1> hs(self);
Ian Rogers1ff3c982014-08-12 02:30:58 -07001156 std::string temp;
Andreas Gampe542451c2016-07-26 09:02:02 -07001157 const PointerSize pointer_size = Runtime::Current()->GetClassLinker()->GetImagePointerSize();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001158 while (!klass->IsObjectClass()) {
Ian Rogers1ff3c982014-08-12 02:30:58 -07001159 const char* descriptor = klass->GetDescriptor(&temp);
Vladimir Marko54159c62018-06-20 14:30:08 +01001160 if (image_classes->find(StringPiece(descriptor)) != image_classes->end()) {
1161 break; // Previously inserted.
Brian Carlstrom7940e442013-07-12 13:46:57 -07001162 }
Vladimir Marko54159c62018-06-20 14:30:08 +01001163 image_classes->insert(descriptor);
Ian Rogers1ff3c982014-08-12 02:30:58 -07001164 VLOG(compiler) << "Adding " << descriptor << " to image classes";
Vladimir Marko19a4d372016-12-08 14:41:46 +00001165 for (size_t i = 0, num_interfaces = klass->NumDirectInterfaces(); i != num_interfaces; ++i) {
1166 ObjPtr<mirror::Class> interface = mirror::Class::GetDirectInterface(self, klass, i);
1167 DCHECK(interface != nullptr);
1168 MaybeAddToImageClasses(self, interface, image_classes);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001169 }
Vladimir Marko19a4d372016-12-08 14:41:46 +00001170 for (auto& m : klass->GetVirtualMethods(pointer_size)) {
1171 MaybeAddToImageClasses(self, m.GetDeclaringClass(), image_classes);
Mathieu Chartiere401d142015-04-22 13:56:20 -07001172 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001173 if (klass->IsArrayClass()) {
Vladimir Marko19a4d372016-12-08 14:41:46 +00001174 MaybeAddToImageClasses(self, klass->GetComponentType(), image_classes);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001175 }
Mathieu Chartierf8322842014-05-16 10:59:25 -07001176 klass.Assign(klass->GetSuperClass());
Brian Carlstrom7940e442013-07-12 13:46:57 -07001177 }
1178}
1179
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001180// Keeps all the data for the update together. Also doubles as the reference visitor.
1181// Note: we can use object pointers because we suspend all threads.
1182class ClinitImageUpdate {
1183 public:
Mathieu Chartier31e88222016-10-14 18:43:19 -07001184 static ClinitImageUpdate* Create(VariableSizedHandleScope& hs,
Vladimir Marko54159c62018-06-20 14:30:08 +01001185 HashSet<std::string>* image_class_descriptors,
Mathieu Chartier31e88222016-10-14 18:43:19 -07001186 Thread* self,
1187 ClassLinker* linker) {
1188 std::unique_ptr<ClinitImageUpdate> res(new ClinitImageUpdate(hs,
1189 image_class_descriptors,
1190 self,
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001191 linker));
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001192 return res.release();
1193 }
1194
1195 ~ClinitImageUpdate() {
1196 // Allow others to suspend again.
1197 self_->EndAssertNoThreadSuspension(old_cause_);
1198 }
1199
1200 // Visitor for VisitReferences.
Mathieu Chartier31e88222016-10-14 18:43:19 -07001201 void operator()(ObjPtr<mirror::Object> object,
1202 MemberOffset field_offset,
1203 bool /* is_static */) const
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001204 REQUIRES_SHARED(Locks::mutator_lock_) {
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001205 mirror::Object* ref = object->GetFieldObject<mirror::Object>(field_offset);
1206 if (ref != nullptr) {
1207 VisitClinitClassesObject(ref);
1208 }
1209 }
1210
Roland Levillain5e8d5f02016-10-18 18:03:43 +01001211 // java.lang.ref.Reference visitor for VisitReferences.
Mathieu Chartier31e88222016-10-14 18:43:19 -07001212 void operator()(ObjPtr<mirror::Class> klass ATTRIBUTE_UNUSED,
1213 ObjPtr<mirror::Reference> ref ATTRIBUTE_UNUSED) const {}
Mathieu Chartierda7c6502015-07-23 16:01:26 -07001214
1215 // Ignore class native roots.
1216 void VisitRootIfNonNull(mirror::CompressedReference<mirror::Object>* root ATTRIBUTE_UNUSED)
1217 const {}
1218 void VisitRoot(mirror::CompressedReference<mirror::Object>* root ATTRIBUTE_UNUSED) const {}
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001219
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001220 void Walk() REQUIRES_SHARED(Locks::mutator_lock_) {
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001221 // Use the initial classes as roots for a search.
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001222 for (Handle<mirror::Class> klass_root : image_classes_) {
1223 VisitClinitClassesObject(klass_root.Get());
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001224 }
Vladimir Marko19a4d372016-12-08 14:41:46 +00001225 Thread* self = Thread::Current();
1226 ScopedAssertNoThreadSuspension ants(__FUNCTION__);
Mathieu Chartier31e88222016-10-14 18:43:19 -07001227 for (Handle<mirror::Class> h_klass : to_insert_) {
Vladimir Marko19a4d372016-12-08 14:41:46 +00001228 MaybeAddToImageClasses(self, h_klass.Get(), image_class_descriptors_);
Mathieu Chartier31e88222016-10-14 18:43:19 -07001229 }
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001230 }
1231
1232 private:
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001233 class FindImageClassesVisitor : public ClassVisitor {
1234 public:
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001235 explicit FindImageClassesVisitor(VariableSizedHandleScope& hs,
1236 ClinitImageUpdate* data)
1237 : data_(data),
1238 hs_(hs) {}
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001239
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001240 bool operator()(ObjPtr<mirror::Class> klass) OVERRIDE REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001241 std::string temp;
Vladimir Marko54159c62018-06-20 14:30:08 +01001242 StringPiece name(klass->GetDescriptor(&temp));
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001243 if (data_->image_class_descriptors_->find(name) != data_->image_class_descriptors_->end()) {
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001244 data_->image_classes_.push_back(hs_.NewHandle(klass));
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001245 } else {
1246 // Check whether it is initialized and has a clinit. They must be kept, too.
1247 if (klass->IsInitialized() && klass->FindClassInitializer(
1248 Runtime::Current()->GetClassLinker()->GetImagePointerSize()) != nullptr) {
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001249 data_->image_classes_.push_back(hs_.NewHandle(klass));
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001250 }
1251 }
1252 return true;
1253 }
1254
1255 private:
1256 ClinitImageUpdate* const data_;
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001257 VariableSizedHandleScope& hs_;
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001258 };
1259
Mathieu Chartier31e88222016-10-14 18:43:19 -07001260 ClinitImageUpdate(VariableSizedHandleScope& hs,
Vladimir Marko54159c62018-06-20 14:30:08 +01001261 HashSet<std::string>* image_class_descriptors,
Mathieu Chartier31e88222016-10-14 18:43:19 -07001262 Thread* self,
1263 ClassLinker* linker) REQUIRES_SHARED(Locks::mutator_lock_)
1264 : hs_(hs),
1265 image_class_descriptors_(image_class_descriptors),
1266 self_(self) {
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001267 CHECK(linker != nullptr);
1268 CHECK(image_class_descriptors != nullptr);
1269
1270 // Make sure nobody interferes with us.
1271 old_cause_ = self->StartAssertNoThreadSuspension("Boot image closure");
1272
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001273 // Find all the already-marked classes.
1274 WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001275 FindImageClassesVisitor visitor(hs_, this);
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001276 linker->VisitClasses(&visitor);
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001277 }
1278
1279 void VisitClinitClassesObject(mirror::Object* object) const
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001280 REQUIRES_SHARED(Locks::mutator_lock_) {
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001281 DCHECK(object != nullptr);
1282 if (marked_objects_.find(object) != marked_objects_.end()) {
1283 // Already processed.
1284 return;
1285 }
1286
1287 // Mark it.
1288 marked_objects_.insert(object);
1289
1290 if (object->IsClass()) {
Mathieu Chartier31e88222016-10-14 18:43:19 -07001291 // Add to the TODO list since MaybeAddToImageClasses may cause thread suspension. Thread
1292 // suspensionb is not safe to do in VisitObjects or VisitReferences.
1293 to_insert_.push_back(hs_.NewHandle(object->AsClass()));
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001294 } else {
1295 // Else visit the object's class.
1296 VisitClinitClassesObject(object->GetClass());
1297 }
1298
Mathieu Chartiere401d142015-04-22 13:56:20 -07001299 // If it is not a DexCache, visit all references.
Mathieu Chartier31e88222016-10-14 18:43:19 -07001300 if (!object->IsDexCache()) {
Mathieu Chartier059ef3d2015-08-18 13:54:21 -07001301 object->VisitReferences(*this, *this);
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001302 }
1303 }
1304
Mathieu Chartier31e88222016-10-14 18:43:19 -07001305 VariableSizedHandleScope& hs_;
1306 mutable std::vector<Handle<mirror::Class>> to_insert_;
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001307 mutable std::unordered_set<mirror::Object*> marked_objects_;
Vladimir Marko54159c62018-06-20 14:30:08 +01001308 HashSet<std::string>* const image_class_descriptors_;
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001309 std::vector<Handle<mirror::Class>> image_classes_;
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001310 Thread* const self_;
1311 const char* old_cause_;
1312
1313 DISALLOW_COPY_AND_ASSIGN(ClinitImageUpdate);
1314};
Brian Carlstrom7940e442013-07-12 13:46:57 -07001315
Ian Rogers3d504072014-03-01 09:16:49 -08001316void CompilerDriver::UpdateImageClasses(TimingLogger* timings) {
Vladimir Markoaad75c62016-10-03 08:46:48 +00001317 if (GetCompilerOptions().IsBootImage()) {
Mathieu Chartierf5997b42014-06-20 10:37:54 -07001318 TimingLogger::ScopedTiming t("UpdateImageClasses", timings);
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001319
Mathieu Chartier4f55e222015-09-04 13:26:21 -07001320 Runtime* runtime = Runtime::Current();
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001321
1322 // Suspend all threads.
Mathieu Chartier4f55e222015-09-04 13:26:21 -07001323 ScopedSuspendAll ssa(__FUNCTION__);
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001324
Mathieu Chartier31e88222016-10-14 18:43:19 -07001325 VariableSizedHandleScope hs(Thread::Current());
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001326 std::string error_msg;
Mathieu Chartier31e88222016-10-14 18:43:19 -07001327 std::unique_ptr<ClinitImageUpdate> update(ClinitImageUpdate::Create(hs,
Vladimir Markodc4bcce2018-06-21 16:15:42 +01001328 image_classes_,
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001329 Thread::Current(),
Mathieu Chartier31e88222016-10-14 18:43:19 -07001330 runtime->GetClassLinker()));
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001331
1332 // Do the marking.
1333 update->Walk();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001334 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001335}
1336
Vladimir Marko07785bb2015-06-15 18:52:54 +01001337bool CompilerDriver::CanAssumeClassIsLoaded(mirror::Class* klass) {
1338 Runtime* runtime = Runtime::Current();
1339 if (!runtime->IsAotCompiler()) {
Calin Juravleffc87072016-04-20 14:22:09 +01001340 DCHECK(runtime->UseJitCompilation());
Vladimir Marko07785bb2015-06-15 18:52:54 +01001341 // Having the klass reference here implies that the klass is already loaded.
1342 return true;
1343 }
Vladimir Markoaad75c62016-10-03 08:46:48 +00001344 if (!GetCompilerOptions().IsBootImage()) {
Vladimir Marko07785bb2015-06-15 18:52:54 +01001345 // Assume loaded only if klass is in the boot image. App classes cannot be assumed
1346 // loaded because we don't even know what class loader will be used to load them.
1347 bool class_in_image = runtime->GetHeap()->FindSpaceFromObject(klass, false)->IsImageSpace();
1348 return class_in_image;
1349 }
1350 std::string temp;
1351 const char* descriptor = klass->GetDescriptor(&temp);
Vladimir Markodc4bcce2018-06-21 16:15:42 +01001352 return GetCompilerOptions().IsImageClass(descriptor);
Vladimir Marko07785bb2015-06-15 18:52:54 +01001353}
1354
Vladimir Marko8d6768d2017-03-14 10:13:21 +00001355bool CompilerDriver::CanAccessTypeWithoutChecks(ObjPtr<mirror::Class> referrer_class,
1356 ObjPtr<mirror::Class> resolved_class) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001357 if (resolved_class == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001358 stats_->TypeNeedsAccessCheck();
1359 return false; // Unknown class needs access checks.
1360 }
David Brazdil38f64d32016-01-18 17:13:41 +00001361 bool is_accessible = resolved_class->IsPublic(); // Public classes are always accessible.
1362 if (!is_accessible) {
David Brazdil38f64d32016-01-18 17:13:41 +00001363 if (referrer_class == nullptr) {
1364 stats_->TypeNeedsAccessCheck();
1365 return false; // Incomplete referrer knowledge needs access check.
1366 }
1367 // Perform access check, will return true if access is ok or false if we're going to have to
1368 // check this at runtime (for example for class loaders).
1369 is_accessible = referrer_class->CanAccess(resolved_class);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001370 }
David Brazdil38f64d32016-01-18 17:13:41 +00001371 if (is_accessible) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001372 stats_->TypeDoesntNeedAccessCheck();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001373 } else {
1374 stats_->TypeNeedsAccessCheck();
1375 }
David Brazdil38f64d32016-01-18 17:13:41 +00001376 return is_accessible;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001377}
1378
Vladimir Marko8d6768d2017-03-14 10:13:21 +00001379bool CompilerDriver::CanAccessInstantiableTypeWithoutChecks(ObjPtr<mirror::Class> referrer_class,
1380 ObjPtr<mirror::Class> resolved_class,
Mingyao Yangfb8464a2015-11-02 10:56:59 -08001381 bool* finalizable) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001382 if (resolved_class == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001383 stats_->TypeNeedsAccessCheck();
Mingyao Yangfb8464a2015-11-02 10:56:59 -08001384 // Be conservative.
1385 *finalizable = true;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001386 return false; // Unknown class needs access checks.
1387 }
Mingyao Yangfb8464a2015-11-02 10:56:59 -08001388 *finalizable = resolved_class->IsFinalizable();
David Brazdil38f64d32016-01-18 17:13:41 +00001389 bool is_accessible = resolved_class->IsPublic(); // Public classes are always accessible.
1390 if (!is_accessible) {
David Brazdil38f64d32016-01-18 17:13:41 +00001391 if (referrer_class == nullptr) {
1392 stats_->TypeNeedsAccessCheck();
1393 return false; // Incomplete referrer knowledge needs access check.
1394 }
1395 // Perform access and instantiable checks, will return true if access is ok or false if we're
1396 // going to have to check this at runtime (for example for class loaders).
1397 is_accessible = referrer_class->CanAccess(resolved_class);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001398 }
David Brazdil38f64d32016-01-18 17:13:41 +00001399 bool result = is_accessible && resolved_class->IsInstantiable();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001400 if (result) {
1401 stats_->TypeDoesntNeedAccessCheck();
1402 } else {
1403 stats_->TypeNeedsAccessCheck();
1404 }
1405 return result;
1406}
1407
Vladimir Markobe0e5462014-02-26 11:24:15 +00001408void CompilerDriver::ProcessedInstanceField(bool resolved) {
1409 if (!resolved) {
1410 stats_->UnresolvedInstanceField();
1411 } else {
1412 stats_->ResolvedInstanceField();
1413 }
1414}
1415
1416void CompilerDriver::ProcessedStaticField(bool resolved, bool local) {
1417 if (!resolved) {
1418 stats_->UnresolvedStaticField();
1419 } else if (local) {
1420 stats_->ResolvedLocalStaticField();
1421 } else {
1422 stats_->ResolvedStaticField();
1423 }
1424}
1425
Mathieu Chartierc7853442015-03-27 14:35:38 -07001426ArtField* CompilerDriver::ComputeInstanceFieldInfo(uint32_t field_idx,
Vladimir Markoe11dd502017-12-08 14:09:45 +00001427 const DexCompilationUnit* mUnit,
1428 bool is_put,
Mathieu Chartierc7853442015-03-27 14:35:38 -07001429 const ScopedObjectAccess& soa) {
Vladimir Markobe0e5462014-02-26 11:24:15 +00001430 // Try to resolve the field and compiling method's class.
Mathieu Chartierc7853442015-03-27 14:35:38 -07001431 ArtField* resolved_field;
Vladimir Marko28e012a2017-12-07 11:22:59 +00001432 ObjPtr<mirror::Class> referrer_class;
Mathieu Chartier736b5602015-09-02 14:54:11 -07001433 Handle<mirror::DexCache> dex_cache(mUnit->GetDexCache());
Vladimir Markobe0e5462014-02-26 11:24:15 +00001434 {
Vladimir Markoe11dd502017-12-08 14:09:45 +00001435 Handle<mirror::ClassLoader> class_loader = mUnit->GetClassLoader();
1436 resolved_field = ResolveField(soa, dex_cache, class_loader, field_idx, /* is_static */ false);
Mathieu Chartierc7853442015-03-27 14:35:38 -07001437 referrer_class = resolved_field != nullptr
Vladimir Markoe11dd502017-12-08 14:09:45 +00001438 ? ResolveCompilingMethodsClass(soa, dex_cache, class_loader, mUnit) : nullptr;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001439 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001440 bool can_link = false;
Vladimir Markobe0e5462014-02-26 11:24:15 +00001441 if (resolved_field != nullptr && referrer_class != nullptr) {
Vladimir Markobe0e5462014-02-26 11:24:15 +00001442 std::pair<bool, bool> fast_path = IsFastInstanceField(
Mathieu Chartier736b5602015-09-02 14:54:11 -07001443 dex_cache.Get(), referrer_class, resolved_field, field_idx);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001444 can_link = is_put ? fast_path.second : fast_path.first;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001445 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001446 ProcessedInstanceField(can_link);
1447 return can_link ? resolved_field : nullptr;
1448}
1449
1450bool CompilerDriver::ComputeInstanceFieldInfo(uint32_t field_idx, const DexCompilationUnit* mUnit,
1451 bool is_put, MemberOffset* field_offset,
1452 bool* is_volatile) {
1453 ScopedObjectAccess soa(Thread::Current());
Mathieu Chartierc7853442015-03-27 14:35:38 -07001454 ArtField* resolved_field = ComputeInstanceFieldInfo(field_idx, mUnit, is_put, soa);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001455
Mathieu Chartierc7853442015-03-27 14:35:38 -07001456 if (resolved_field == nullptr) {
Vladimir Markobe0e5462014-02-26 11:24:15 +00001457 // Conservative defaults.
1458 *is_volatile = true;
1459 *field_offset = MemberOffset(static_cast<size_t>(-1));
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001460 return false;
1461 } else {
1462 *is_volatile = resolved_field->IsVolatile();
1463 *field_offset = resolved_field->GetOffset();
1464 return true;
Vladimir Markobe0e5462014-02-26 11:24:15 +00001465 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001466}
1467
Vladimir Marko2730db02014-01-27 11:15:17 +00001468const VerifiedMethod* CompilerDriver::GetVerifiedMethod(const DexFile* dex_file,
1469 uint32_t method_idx) const {
1470 MethodReference ref(dex_file, method_idx);
1471 return verification_results_->GetVerifiedMethod(ref);
1472}
1473
1474bool CompilerDriver::IsSafeCast(const DexCompilationUnit* mUnit, uint32_t dex_pc) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001475 if (!compiler_options_->IsVerificationEnabled()) {
1476 // If we didn't verify, every cast has to be treated as non-safe.
1477 return false;
1478 }
Vladimir Marko2730db02014-01-27 11:15:17 +00001479 DCHECK(mUnit->GetVerifiedMethod() != nullptr);
1480 bool result = mUnit->GetVerifiedMethod()->IsSafeCast(dex_pc);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001481 if (result) {
1482 stats_->SafeCast();
1483 } else {
1484 stats_->NotASafeCast();
1485 }
1486 return result;
1487}
1488
Mathieu Chartier90443472015-07-16 20:32:27 -07001489class CompilationVisitor {
1490 public:
1491 virtual ~CompilationVisitor() {}
1492 virtual void Visit(size_t index) = 0;
1493};
1494
Brian Carlstrom7940e442013-07-12 13:46:57 -07001495class ParallelCompilationManager {
1496 public:
Brian Carlstrom7940e442013-07-12 13:46:57 -07001497 ParallelCompilationManager(ClassLinker* class_linker,
1498 jobject class_loader,
1499 CompilerDriver* compiler,
1500 const DexFile* dex_file,
Andreas Gampede7b4362014-07-28 18:38:57 -07001501 const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -08001502 ThreadPool* thread_pool)
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001503 : index_(0),
1504 class_linker_(class_linker),
Brian Carlstrom7940e442013-07-12 13:46:57 -07001505 class_loader_(class_loader),
1506 compiler_(compiler),
1507 dex_file_(dex_file),
Andreas Gampede7b4362014-07-28 18:38:57 -07001508 dex_files_(dex_files),
Ian Rogers3d504072014-03-01 09:16:49 -08001509 thread_pool_(thread_pool) {}
Brian Carlstrom7940e442013-07-12 13:46:57 -07001510
1511 ClassLinker* GetClassLinker() const {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001512 CHECK(class_linker_ != nullptr);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001513 return class_linker_;
1514 }
1515
1516 jobject GetClassLoader() const {
1517 return class_loader_;
1518 }
1519
1520 CompilerDriver* GetCompiler() const {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001521 CHECK(compiler_ != nullptr);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001522 return compiler_;
1523 }
1524
1525 const DexFile* GetDexFile() const {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001526 CHECK(dex_file_ != nullptr);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001527 return dex_file_;
1528 }
1529
Andreas Gampede7b4362014-07-28 18:38:57 -07001530 const std::vector<const DexFile*>& GetDexFiles() const {
1531 return dex_files_;
1532 }
1533
Mathieu Chartier90443472015-07-16 20:32:27 -07001534 void ForAll(size_t begin, size_t end, CompilationVisitor* visitor, size_t work_units)
1535 REQUIRES(!*Locks::mutator_lock_) {
Andreas Gampe3c060ad2018-01-22 13:07:49 -08001536 ForAllLambda(begin, end, [visitor](size_t index) { visitor->Visit(index); }, work_units);
1537 }
1538
1539 template <typename Fn>
1540 void ForAllLambda(size_t begin, size_t end, Fn fn, size_t work_units)
1541 REQUIRES(!*Locks::mutator_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001542 Thread* self = Thread::Current();
1543 self->AssertNoPendingException();
1544 CHECK_GT(work_units, 0U);
1545
Orion Hodson88591fe2018-03-06 13:35:43 +00001546 index_.store(begin, std::memory_order_relaxed);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001547 for (size_t i = 0; i < work_units; ++i) {
Andreas Gampe3c060ad2018-01-22 13:07:49 -08001548 thread_pool_->AddTask(self, new ForAllClosureLambda<Fn>(this, end, fn));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001549 }
1550 thread_pool_->StartWorkers(self);
1551
1552 // Ensure we're suspended while we're blocked waiting for the other threads to finish (worker
1553 // thread destructor's called below perform join).
1554 CHECK_NE(self->GetState(), kRunnable);
1555
1556 // Wait for all the worker threads to finish.
1557 thread_pool_->Wait(self, true, false);
Andreas Gampeace0dc12016-01-20 13:33:13 -08001558
1559 // And stop the workers accepting jobs.
1560 thread_pool_->StopWorkers(self);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001561 }
1562
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001563 size_t NextIndex() {
Orion Hodson88591fe2018-03-06 13:35:43 +00001564 return index_.fetch_add(1, std::memory_order_seq_cst);
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001565 }
1566
Brian Carlstrom7940e442013-07-12 13:46:57 -07001567 private:
Andreas Gampe3c060ad2018-01-22 13:07:49 -08001568 template <typename Fn>
1569 class ForAllClosureLambda : public Task {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001570 public:
Andreas Gampe3c060ad2018-01-22 13:07:49 -08001571 ForAllClosureLambda(ParallelCompilationManager* manager, size_t end, Fn fn)
Brian Carlstrom7940e442013-07-12 13:46:57 -07001572 : manager_(manager),
Brian Carlstrom7940e442013-07-12 13:46:57 -07001573 end_(end),
Andreas Gampe3c060ad2018-01-22 13:07:49 -08001574 fn_(fn) {}
Brian Carlstrom7940e442013-07-12 13:46:57 -07001575
Andreas Gampe3c060ad2018-01-22 13:07:49 -08001576 void Run(Thread* self) OVERRIDE {
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001577 while (true) {
1578 const size_t index = manager_->NextIndex();
1579 if (UNLIKELY(index >= end_)) {
1580 break;
1581 }
Andreas Gampe3c060ad2018-01-22 13:07:49 -08001582 fn_(index);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001583 self->AssertNoPendingException();
1584 }
1585 }
1586
Andreas Gampe3c060ad2018-01-22 13:07:49 -08001587 void Finalize() OVERRIDE {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001588 delete this;
1589 }
Brian Carlstrom0cd7ec22013-07-17 23:40:20 -07001590
Brian Carlstrom7940e442013-07-12 13:46:57 -07001591 private:
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001592 ParallelCompilationManager* const manager_;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001593 const size_t end_;
Andreas Gampe3c060ad2018-01-22 13:07:49 -08001594 Fn fn_;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001595 };
1596
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001597 AtomicInteger index_;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001598 ClassLinker* const class_linker_;
1599 const jobject class_loader_;
1600 CompilerDriver* const compiler_;
1601 const DexFile* const dex_file_;
Andreas Gampede7b4362014-07-28 18:38:57 -07001602 const std::vector<const DexFile*>& dex_files_;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001603 ThreadPool* const thread_pool_;
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001604
1605 DISALLOW_COPY_AND_ASSIGN(ParallelCompilationManager);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001606};
1607
Jeff Hao0e49b422013-11-08 12:16:56 -08001608// A fast version of SkipClass above if the class pointer is available
1609// that avoids the expensive FindInClassPath search.
Vladimir Marko28e012a2017-12-07 11:22:59 +00001610static bool SkipClass(jobject class_loader, const DexFile& dex_file, ObjPtr<mirror::Class> klass)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001611 REQUIRES_SHARED(Locks::mutator_lock_) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001612 DCHECK(klass != nullptr);
Jeff Hao0e49b422013-11-08 12:16:56 -08001613 const DexFile& original_dex_file = *klass->GetDexCache()->GetDexFile();
1614 if (&dex_file != &original_dex_file) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001615 if (class_loader == nullptr) {
David Sehr709b0702016-10-13 09:12:37 -07001616 LOG(WARNING) << "Skipping class " << klass->PrettyDescriptor() << " from "
Jeff Hao0e49b422013-11-08 12:16:56 -08001617 << dex_file.GetLocation() << " previously found in "
1618 << original_dex_file.GetLocation();
1619 }
1620 return true;
1621 }
1622 return false;
1623}
1624
Mathieu Chartier70b63482014-06-27 17:19:04 -07001625static void CheckAndClearResolveException(Thread* self)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001626 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartier70b63482014-06-27 17:19:04 -07001627 CHECK(self->IsExceptionPending());
Nicolas Geoffray14691c52015-03-05 10:40:17 +00001628 mirror::Throwable* exception = self->GetException();
Ian Rogers1ff3c982014-08-12 02:30:58 -07001629 std::string temp;
1630 const char* descriptor = exception->GetClass()->GetDescriptor(&temp);
1631 const char* expected_exceptions[] = {
1632 "Ljava/lang/IllegalAccessError;",
1633 "Ljava/lang/IncompatibleClassChangeError;",
1634 "Ljava/lang/InstantiationError;",
Brian Carlstrom898fcb52014-08-25 23:07:30 -07001635 "Ljava/lang/LinkageError;",
Ian Rogers1ff3c982014-08-12 02:30:58 -07001636 "Ljava/lang/NoClassDefFoundError;",
1637 "Ljava/lang/NoSuchFieldError;",
1638 "Ljava/lang/NoSuchMethodError;"
1639 };
1640 bool found = false;
1641 for (size_t i = 0; (found == false) && (i < arraysize(expected_exceptions)); ++i) {
1642 if (strcmp(descriptor, expected_exceptions[i]) == 0) {
1643 found = true;
1644 }
1645 }
1646 if (!found) {
Brian Carlstrom898fcb52014-08-25 23:07:30 -07001647 LOG(FATAL) << "Unexpected exception " << exception->Dump();
Mathieu Chartier70b63482014-06-27 17:19:04 -07001648 }
1649 self->ClearException();
1650}
1651
Mathieu Chartierb5d38612016-04-07 10:52:52 -07001652bool CompilerDriver::RequiresConstructorBarrier(const DexFile& dex_file,
1653 uint16_t class_def_idx) const {
Mathieu Chartier18e26872018-06-04 17:19:02 -07001654 ClassAccessor accessor(dex_file, class_def_idx);
Mathieu Chartierb5d38612016-04-07 10:52:52 -07001655 // We require a constructor barrier if there are final instance fields.
Mathieu Chartier18e26872018-06-04 17:19:02 -07001656 for (const ClassAccessor::Field& field : accessor.GetInstanceFields()) {
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001657 if (field.IsFinal()) {
Mathieu Chartier18e26872018-06-04 17:19:02 -07001658 return true;
Mathieu Chartierb5d38612016-04-07 10:52:52 -07001659 }
Mathieu Chartier18e26872018-06-04 17:19:02 -07001660 }
1661 return false;
Mathieu Chartierb5d38612016-04-07 10:52:52 -07001662}
1663
Mathieu Chartier90443472015-07-16 20:32:27 -07001664class ResolveClassFieldsAndMethodsVisitor : public CompilationVisitor {
1665 public:
1666 explicit ResolveClassFieldsAndMethodsVisitor(const ParallelCompilationManager* manager)
1667 : manager_(manager) {}
Brian Carlstrom7940e442013-07-12 13:46:57 -07001668
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001669 void Visit(size_t class_def_index) OVERRIDE REQUIRES(!Locks::mutator_lock_) {
Andreas Gampe9b827ab2017-12-07 19:32:48 -08001670 ScopedTrace trace(__FUNCTION__);
Mathieu Chartier90443472015-07-16 20:32:27 -07001671 Thread* const self = Thread::Current();
1672 jobject jclass_loader = manager_->GetClassLoader();
1673 const DexFile& dex_file = *manager_->GetDexFile();
1674 ClassLinker* class_linker = manager_->GetClassLinker();
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001675
Mathieu Chartier90443472015-07-16 20:32:27 -07001676 // Method and Field are the worst. We can't resolve without either
1677 // context from the code use (to disambiguate virtual vs direct
1678 // method and instance vs static field) or from class
1679 // definitions. While the compiler will resolve what it can as it
1680 // needs it, here we try to resolve fields and methods used in class
1681 // definitions, since many of them many never be referenced by
1682 // generated code.
1683 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
1684 ScopedObjectAccess soa(self);
1685 StackHandleScope<2> hs(soa.Self());
1686 Handle<mirror::ClassLoader> class_loader(
Mathieu Chartier0795f232016-09-27 18:43:30 -07001687 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader)));
Mathieu Chartier673ed3d2015-08-28 14:56:43 -07001688 Handle<mirror::DexCache> dex_cache(hs.NewHandle(class_linker->FindDexCache(
Vladimir Markocd556b02017-02-03 11:47:34 +00001689 soa.Self(), dex_file)));
Mathieu Chartier90443472015-07-16 20:32:27 -07001690 // Resolve the class.
Vladimir Marko28e012a2017-12-07 11:22:59 +00001691 ObjPtr<mirror::Class> klass =
Vladimir Marko666ee3d2017-12-11 18:37:36 +00001692 class_linker->ResolveType(class_def.class_idx_, dex_cache, class_loader);
Mathieu Chartier90443472015-07-16 20:32:27 -07001693 bool resolve_fields_and_methods;
1694 if (klass == nullptr) {
1695 // Class couldn't be resolved, for example, super-class is in a different dex file. Don't
1696 // attempt to resolve methods and fields when there is no declaring class.
1697 CheckAndClearResolveException(soa.Self());
1698 resolve_fields_and_methods = false;
1699 } else {
1700 // We successfully resolved a class, should we skip it?
1701 if (SkipClass(jclass_loader, dex_file, klass)) {
1702 return;
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001703 }
Mathieu Chartier90443472015-07-16 20:32:27 -07001704 // We want to resolve the methods and fields eagerly.
1705 resolve_fields_and_methods = true;
Ian Rogers68b56852014-08-29 20:19:11 -07001706 }
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001707 // If an instance field is final then we need to have a barrier on the return, static final
1708 // fields are assigned within the lock held for class initialization.
1709 bool requires_constructor_barrier = false;
1710
Mathieu Chartier18e26872018-06-04 17:19:02 -07001711 ClassAccessor accessor(dex_file, class_def_index);
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001712 // Optionally resolve fields and methods and figure out if we need a constructor barrier.
1713 auto method_visitor = [&](const ClassAccessor::Method& method)
1714 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartier90443472015-07-16 20:32:27 -07001715 if (resolve_fields_and_methods) {
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001716 ArtMethod* resolved = class_linker->ResolveMethod<ClassLinker::ResolveMode::kNoChecks>(
1717 method.GetIndex(),
1718 dex_cache,
1719 class_loader,
1720 /* referrer */ nullptr,
1721 method.GetInvokeType(class_def.access_flags_));
1722 if (resolved == nullptr) {
1723 CheckAndClearResolveException(soa.Self());
Mathieu Chartier90443472015-07-16 20:32:27 -07001724 }
Mathieu Chartier90443472015-07-16 20:32:27 -07001725 }
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001726 };
1727 accessor.VisitFieldsAndMethods(
1728 // static fields
1729 [&](ClassAccessor::Field& field) REQUIRES_SHARED(Locks::mutator_lock_) {
1730 if (resolve_fields_and_methods) {
1731 ArtField* resolved = class_linker->ResolveField(
1732 field.GetIndex(), dex_cache, class_loader, /* is_static */ true);
1733 if (resolved == nullptr) {
1734 CheckAndClearResolveException(soa.Self());
1735 }
1736 }
1737 },
1738 // instance fields
1739 [&](ClassAccessor::Field& field) REQUIRES_SHARED(Locks::mutator_lock_) {
1740 if (field.IsFinal()) {
1741 // We require a constructor barrier if there are final instance fields.
1742 requires_constructor_barrier = true;
1743 }
1744 if (resolve_fields_and_methods) {
1745 ArtField* resolved = class_linker->ResolveField(
1746 field.GetIndex(), dex_cache, class_loader, /* is_static */ false);
1747 if (resolved == nullptr) {
1748 CheckAndClearResolveException(soa.Self());
1749 }
1750 }
1751 },
1752 /*direct methods*/ method_visitor,
1753 /*virtual methods*/ method_visitor);
Mathieu Chartierc4ae9162016-04-07 13:19:19 -07001754 manager_->GetCompiler()->SetRequiresConstructorBarrier(self,
1755 &dex_file,
1756 class_def_index,
1757 requires_constructor_barrier);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001758 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001759
Mathieu Chartier90443472015-07-16 20:32:27 -07001760 private:
1761 const ParallelCompilationManager* const manager_;
1762};
1763
1764class ResolveTypeVisitor : public CompilationVisitor {
1765 public:
1766 explicit ResolveTypeVisitor(const ParallelCompilationManager* manager) : manager_(manager) {
1767 }
Andreas Gampea5b09a62016-11-17 15:21:22 -08001768 void Visit(size_t type_idx) OVERRIDE REQUIRES(!Locks::mutator_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001769 // Class derived values are more complicated, they require the linker and loader.
Mathieu Chartier90443472015-07-16 20:32:27 -07001770 ScopedObjectAccess soa(Thread::Current());
1771 ClassLinker* class_linker = manager_->GetClassLinker();
1772 const DexFile& dex_file = *manager_->GetDexFile();
1773 StackHandleScope<2> hs(soa.Self());
Mathieu Chartier90443472015-07-16 20:32:27 -07001774 Handle<mirror::ClassLoader> class_loader(
Mathieu Chartier0795f232016-09-27 18:43:30 -07001775 hs.NewHandle(soa.Decode<mirror::ClassLoader>(manager_->GetClassLoader())));
Mathieu Chartierd57d4542015-10-14 10:55:30 -07001776 Handle<mirror::DexCache> dex_cache(hs.NewHandle(class_linker->RegisterDexFile(
1777 dex_file,
Mathieu Chartierf284d442016-06-02 11:48:30 -07001778 class_loader.Get())));
Andreas Gampefa4333d2017-02-14 11:10:34 -08001779 ObjPtr<mirror::Class> klass = (dex_cache != nullptr)
Vladimir Marko666ee3d2017-12-11 18:37:36 +00001780 ? class_linker->ResolveType(dex::TypeIndex(type_idx), dex_cache, class_loader)
Vladimir Markocd556b02017-02-03 11:47:34 +00001781 : nullptr;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001782
Mathieu Chartier90443472015-07-16 20:32:27 -07001783 if (klass == nullptr) {
1784 soa.Self()->AssertPendingException();
1785 mirror::Throwable* exception = soa.Self()->GetException();
1786 VLOG(compiler) << "Exception during type resolution: " << exception->Dump();
1787 if (exception->GetClass()->DescriptorEquals("Ljava/lang/OutOfMemoryError;")) {
1788 // There's little point continuing compilation if the heap is exhausted.
1789 LOG(FATAL) << "Out of memory during type resolution for compilation";
1790 }
1791 soa.Self()->ClearException();
Ian Rogersa436fde2013-08-27 23:34:06 -07001792 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001793 }
Mathieu Chartier90443472015-07-16 20:32:27 -07001794
1795 private:
1796 const ParallelCompilationManager* const manager_;
1797};
Brian Carlstrom7940e442013-07-12 13:46:57 -07001798
Andreas Gampeace0dc12016-01-20 13:33:13 -08001799void CompilerDriver::ResolveDexFile(jobject class_loader,
1800 const DexFile& dex_file,
Andreas Gampede7b4362014-07-28 18:38:57 -07001801 const std::vector<const DexFile*>& dex_files,
Andreas Gampeace0dc12016-01-20 13:33:13 -08001802 ThreadPool* thread_pool,
1803 size_t thread_count,
1804 TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001805 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
1806
1807 // TODO: we could resolve strings here, although the string table is largely filled with class
1808 // and method names.
1809
Andreas Gampede7b4362014-07-28 18:38:57 -07001810 ParallelCompilationManager context(class_linker, class_loader, this, &dex_file, dex_files,
1811 thread_pool);
Vladimir Markoaad75c62016-10-03 08:46:48 +00001812 if (GetCompilerOptions().IsBootImage()) {
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001813 // For images we resolve all types, such as array, whereas for applications just those with
1814 // classdefs are resolved by ResolveClassFieldsAndMethods.
Mathieu Chartierf5997b42014-06-20 10:37:54 -07001815 TimingLogger::ScopedTiming t("Resolve Types", timings);
Mathieu Chartier90443472015-07-16 20:32:27 -07001816 ResolveTypeVisitor visitor(&context);
Andreas Gampeace0dc12016-01-20 13:33:13 -08001817 context.ForAll(0, dex_file.NumTypeIds(), &visitor, thread_count);
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001818 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001819
Mathieu Chartierf5997b42014-06-20 10:37:54 -07001820 TimingLogger::ScopedTiming t("Resolve MethodsAndFields", timings);
Mathieu Chartier90443472015-07-16 20:32:27 -07001821 ResolveClassFieldsAndMethodsVisitor visitor(&context);
Andreas Gampeace0dc12016-01-20 13:33:13 -08001822 context.ForAll(0, dex_file.NumClassDefs(), &visitor, thread_count);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001823}
1824
Andreas Gampeace0dc12016-01-20 13:33:13 -08001825void CompilerDriver::SetVerified(jobject class_loader,
1826 const std::vector<const DexFile*>& dex_files,
1827 TimingLogger* timings) {
1828 // This can be run in parallel.
Mathieu Chartier90443472015-07-16 20:32:27 -07001829 for (const DexFile* dex_file : dex_files) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001830 CHECK(dex_file != nullptr);
Andreas Gampeace0dc12016-01-20 13:33:13 -08001831 SetVerifiedDexFile(class_loader,
1832 *dex_file,
1833 dex_files,
1834 parallel_thread_pool_.get(),
1835 parallel_thread_count_,
1836 timings);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001837 }
1838}
1839
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001840static void LoadAndUpdateStatus(const ClassAccessor& accessor,
Vladimir Marko2c64a832018-01-04 11:31:56 +00001841 ClassStatus status,
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001842 Handle<mirror::ClassLoader> class_loader,
1843 Thread* self)
1844 REQUIRES_SHARED(Locks::mutator_lock_) {
1845 StackHandleScope<1> hs(self);
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001846 const char* descriptor = accessor.GetDescriptor();
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001847 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
1848 Handle<mirror::Class> cls(hs.NewHandle<mirror::Class>(
1849 class_linker->FindClass(self, descriptor, class_loader)));
Andreas Gampefa4333d2017-02-14 11:10:34 -08001850 if (cls != nullptr) {
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001851 // Check that the class is resolved with the current dex file. We might get
1852 // a boot image class, or a class in a different dex file for multidex, and
1853 // we should not update the status in that case.
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001854 if (&cls->GetDexFile() == &accessor.GetDexFile()) {
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001855 ObjectLock<mirror::Class> lock(self, cls);
1856 mirror::Class::SetStatus(cls, status, self);
1857 }
1858 } else {
1859 DCHECK(self->IsExceptionPending());
1860 self->ClearException();
1861 }
1862}
1863
Nicolas Geoffray74981052017-01-16 17:54:09 +00001864bool CompilerDriver::FastVerify(jobject jclass_loader,
1865 const std::vector<const DexFile*>& dex_files,
1866 TimingLogger* timings) {
Nicolas Geoffrayb0bbe8e2016-11-19 10:42:37 +00001867 verifier::VerifierDeps* verifier_deps =
1868 Runtime::Current()->GetCompilerCallbacks()->GetVerifierDeps();
Mathieu Chartier72041a02017-07-14 18:23:25 -07001869 // If there exist VerifierDeps that aren't the ones we just created to output, use them to verify.
1870 if (verifier_deps == nullptr || verifier_deps->OutputOnly()) {
Nicolas Geoffray74981052017-01-16 17:54:09 +00001871 return false;
1872 }
1873 TimingLogger::ScopedTiming t("Fast Verify", timings);
1874 ScopedObjectAccess soa(Thread::Current());
1875 StackHandleScope<2> hs(soa.Self());
1876 Handle<mirror::ClassLoader> class_loader(
1877 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader)));
Nicolas Geoffray74981052017-01-16 17:54:09 +00001878 if (!verifier_deps->ValidateDependencies(class_loader, soa.Self())) {
1879 return false;
1880 }
1881
Nicolas Geoffray49cda062017-04-21 13:08:25 +01001882 bool compiler_only_verifies = !GetCompilerOptions().IsAnyCompilationEnabled();
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001883
Nicolas Geoffray74981052017-01-16 17:54:09 +00001884 // We successfully validated the dependencies, now update class status
1885 // of verified classes. Note that the dependencies also record which classes
1886 // could not be fully verified; we could try again, but that would hurt verification
1887 // time. So instead we assume these classes still need to be verified at
1888 // runtime.
1889 for (const DexFile* dex_file : dex_files) {
Mathieu Chartierbf755fe2017-08-01 13:42:56 -07001890 // Fetch the list of unverified classes.
1891 const std::set<dex::TypeIndex>& unverified_classes =
Nicolas Geoffray74981052017-01-16 17:54:09 +00001892 verifier_deps->GetUnverifiedClasses(*dex_file);
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001893 for (ClassAccessor accessor : dex_file->GetClasses()) {
1894 if (unverified_classes.find(accessor.GetClassIdx()) == unverified_classes.end()) {
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001895 if (compiler_only_verifies) {
Nicolas Geoffray74981052017-01-16 17:54:09 +00001896 // Just update the compiled_classes_ map. The compiler doesn't need to resolve
1897 // the type.
Mathieu Chartier18e26872018-06-04 17:19:02 -07001898 ClassReference ref(dex_file, accessor.GetClassDefIndex());
Mathieu Chartier2eabc612018-05-25 14:31:16 -07001899 const ClassStatus existing = ClassStatus::kNotReady;
Mathieu Chartier1a088d42017-07-18 11:43:57 -07001900 ClassStateTable::InsertResult result =
Vladimir Marko2c64a832018-01-04 11:31:56 +00001901 compiled_classes_.Insert(ref, existing, ClassStatus::kVerified);
Mathieu Chartier2eabc612018-05-25 14:31:16 -07001902 CHECK_EQ(result, ClassStateTable::kInsertResultSuccess) << ref.dex_file->GetLocation();
Nicolas Geoffray74981052017-01-16 17:54:09 +00001903 } else {
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001904 // Update the class status, so later compilation stages know they don't need to verify
Nicolas Geoffray74981052017-01-16 17:54:09 +00001905 // the class.
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001906 LoadAndUpdateStatus(accessor, ClassStatus::kVerified, class_loader, soa.Self());
Nicolas Geoffray74981052017-01-16 17:54:09 +00001907 // Create `VerifiedMethod`s for each methods, the compiler expects one for
1908 // quickening or compiling.
1909 // Note that this means:
1910 // - We're only going to compile methods that did verify.
1911 // - Quickening will not do checkcast ellision.
1912 // TODO(ngeoffray): Reconsider this once we refactor compiler filters.
Mathieu Chartier0d896bd2018-05-25 00:20:27 -07001913 for (const ClassAccessor::Method& method : accessor.GetMethods()) {
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001914 verification_results_->CreateVerifiedMethodFor(method.GetReference());
Mathieu Chartier0d896bd2018-05-25 00:20:27 -07001915 }
Nicolas Geoffray6bb7f1b2016-11-03 10:52:49 +00001916 }
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001917 } else if (!compiler_only_verifies) {
1918 // Make sure later compilation stages know they should not try to verify
1919 // this class again.
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001920 LoadAndUpdateStatus(accessor,
Vladimir Marko2c64a832018-01-04 11:31:56 +00001921 ClassStatus::kRetryVerificationAtRuntime,
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001922 class_loader,
1923 soa.Self());
Nicolas Geoffray6bb7f1b2016-11-03 10:52:49 +00001924 }
Nicolas Geoffray6bb7f1b2016-11-03 10:52:49 +00001925 }
1926 }
Nicolas Geoffray74981052017-01-16 17:54:09 +00001927 return true;
1928}
1929
1930void CompilerDriver::Verify(jobject jclass_loader,
1931 const std::vector<const DexFile*>& dex_files,
1932 TimingLogger* timings) {
1933 if (FastVerify(jclass_loader, dex_files, timings)) {
1934 return;
1935 }
Nicolas Geoffray6bb7f1b2016-11-03 10:52:49 +00001936
Nicolas Geoffrayb0bbe8e2016-11-19 10:42:37 +00001937 // If there is no existing `verifier_deps` (because of non-existing vdex), or
1938 // the existing `verifier_deps` is not valid anymore, create a new one for
Nicolas Geoffray6bb7f1b2016-11-03 10:52:49 +00001939 // non boot image compilation. The verifier will need it to record the new dependencies.
1940 // Then dex2oat can update the vdex file with these new dependencies.
1941 if (!GetCompilerOptions().IsBootImage()) {
Mathieu Chartier72041a02017-07-14 18:23:25 -07001942 // Dex2oat creates the verifier deps.
Nicolas Geoffray340dafa2016-11-18 16:03:10 +00001943 // Create the main VerifierDeps, and set it to this thread.
Mathieu Chartier72041a02017-07-14 18:23:25 -07001944 verifier::VerifierDeps* verifier_deps =
1945 Runtime::Current()->GetCompilerCallbacks()->GetVerifierDeps();
1946 CHECK(verifier_deps != nullptr);
Nicolas Geoffrayb0bbe8e2016-11-19 10:42:37 +00001947 Thread::Current()->SetVerifierDeps(verifier_deps);
Nicolas Geoffray340dafa2016-11-18 16:03:10 +00001948 // Create per-thread VerifierDeps to avoid contention on the main one.
1949 // We will merge them after verification.
1950 for (ThreadPoolWorker* worker : parallel_thread_pool_->GetWorkers()) {
Mathieu Chartier72041a02017-07-14 18:23:25 -07001951 worker->GetThread()->SetVerifierDeps(new verifier::VerifierDeps(dex_files_for_oat_file_));
Nicolas Geoffray340dafa2016-11-18 16:03:10 +00001952 }
Nicolas Geoffray6bb7f1b2016-11-03 10:52:49 +00001953 }
Nicolas Geoffray74981052017-01-16 17:54:09 +00001954
Nicolas Geoffray46847392017-04-28 14:56:39 +01001955 // Verification updates VerifierDeps and needs to run single-threaded to be deterministic.
1956 bool force_determinism = GetCompilerOptions().IsForceDeterminism();
1957 ThreadPool* verify_thread_pool =
1958 force_determinism ? single_thread_pool_.get() : parallel_thread_pool_.get();
1959 size_t verify_thread_count = force_determinism ? 1U : parallel_thread_count_;
Mathieu Chartier90443472015-07-16 20:32:27 -07001960 for (const DexFile* dex_file : dex_files) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001961 CHECK(dex_file != nullptr);
Nicolas Geoffray6bb7f1b2016-11-03 10:52:49 +00001962 VerifyDexFile(jclass_loader,
Andreas Gampeace0dc12016-01-20 13:33:13 -08001963 *dex_file,
1964 dex_files,
Nicolas Geoffray46847392017-04-28 14:56:39 +01001965 verify_thread_pool,
1966 verify_thread_count,
Andreas Gampeace0dc12016-01-20 13:33:13 -08001967 timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001968 }
Nicolas Geoffray340dafa2016-11-18 16:03:10 +00001969
1970 if (!GetCompilerOptions().IsBootImage()) {
Nicolas Geoffray340dafa2016-11-18 16:03:10 +00001971 // Merge all VerifierDeps into the main one.
Nicolas Geoffray74981052017-01-16 17:54:09 +00001972 verifier::VerifierDeps* verifier_deps = Thread::Current()->GetVerifierDeps();
Nicolas Geoffray340dafa2016-11-18 16:03:10 +00001973 for (ThreadPoolWorker* worker : parallel_thread_pool_->GetWorkers()) {
1974 verifier::VerifierDeps* thread_deps = worker->GetThread()->GetVerifierDeps();
1975 worker->GetThread()->SetVerifierDeps(nullptr);
Mathieu Chartier72041a02017-07-14 18:23:25 -07001976 verifier_deps->MergeWith(*thread_deps, dex_files_for_oat_file_);
Nicolas Geoffray340dafa2016-11-18 16:03:10 +00001977 delete thread_deps;
1978 }
1979 Thread::Current()->SetVerifierDeps(nullptr);
1980 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001981}
1982
Mathieu Chartier90443472015-07-16 20:32:27 -07001983class VerifyClassVisitor : public CompilationVisitor {
1984 public:
Andreas Gampe5fd66d02016-09-12 20:22:19 -07001985 VerifyClassVisitor(const ParallelCompilationManager* manager, verifier::HardFailLogMode log_level)
Andreas Gampe7fe30232016-03-25 16:58:00 -07001986 : manager_(manager), log_level_(log_level) {}
Brian Carlstrom7940e442013-07-12 13:46:57 -07001987
Mathieu Chartier90443472015-07-16 20:32:27 -07001988 virtual void Visit(size_t class_def_index) REQUIRES(!Locks::mutator_lock_) OVERRIDE {
Andreas Gampe9b827ab2017-12-07 19:32:48 -08001989 ScopedTrace trace(__FUNCTION__);
Mathieu Chartier90443472015-07-16 20:32:27 -07001990 ScopedObjectAccess soa(Thread::Current());
1991 const DexFile& dex_file = *manager_->GetDexFile();
1992 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
1993 const char* descriptor = dex_file.GetClassDescriptor(class_def);
1994 ClassLinker* class_linker = manager_->GetClassLinker();
1995 jobject jclass_loader = manager_->GetClassLoader();
1996 StackHandleScope<3> hs(soa.Self());
1997 Handle<mirror::ClassLoader> class_loader(
Mathieu Chartier0795f232016-09-27 18:43:30 -07001998 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader)));
Mathieu Chartier90443472015-07-16 20:32:27 -07001999 Handle<mirror::Class> klass(
2000 hs.NewHandle(class_linker->FindClass(soa.Self(), descriptor, class_loader)));
Andreas Gampe6d7abbd2017-04-24 13:19:09 -07002001 verifier::FailureKind failure_kind;
Andreas Gampefa4333d2017-02-14 11:10:34 -08002002 if (klass == nullptr) {
Ian Rogerse6bb3b22013-08-19 21:51:45 -07002003 CHECK(soa.Self()->IsExceptionPending());
2004 soa.Self()->ClearException();
Mathieu Chartier90443472015-07-16 20:32:27 -07002005
2006 /*
2007 * At compile time, we can still structurally verify the class even if FindClass fails.
2008 * This is to ensure the class is structurally sound for compilation. An unsound class
2009 * will be rejected by the verifier and later skipped during compilation in the compiler.
2010 */
Mathieu Chartier673ed3d2015-08-28 14:56:43 -07002011 Handle<mirror::DexCache> dex_cache(hs.NewHandle(class_linker->FindDexCache(
Vladimir Markocd556b02017-02-03 11:47:34 +00002012 soa.Self(), dex_file)));
Mathieu Chartier90443472015-07-16 20:32:27 -07002013 std::string error_msg;
Nicolas Geoffray08025182016-10-25 17:20:18 +01002014 failure_kind =
2015 verifier::MethodVerifier::VerifyClass(soa.Self(),
Andreas Gampeec6e6c12015-11-05 20:39:56 -08002016 &dex_file,
2017 dex_cache,
2018 class_loader,
David Brazdil15fc7292016-09-02 14:13:18 +01002019 class_def,
Andreas Gampe53e32d12015-12-09 21:03:23 -08002020 Runtime::Current()->GetCompilerCallbacks(),
Andreas Gampeec6e6c12015-11-05 20:39:56 -08002021 true /* allow soft failures */,
Andreas Gampe7fe30232016-03-25 16:58:00 -07002022 log_level_,
Nicolas Geoffray08025182016-10-25 17:20:18 +01002023 &error_msg);
Andreas Gampe6d7abbd2017-04-24 13:19:09 -07002024 if (failure_kind == verifier::FailureKind::kHardFailure) {
Mathieu Chartier90443472015-07-16 20:32:27 -07002025 LOG(ERROR) << "Verification failed on class " << PrettyDescriptor(descriptor)
2026 << " because: " << error_msg;
2027 manager_->GetCompiler()->SetHadHardVerifierFailure();
Andreas Gampef39208f2017-10-19 15:06:59 -07002028 } else if (failure_kind == verifier::FailureKind::kSoftFailure) {
2029 manager_->GetCompiler()->AddSoftVerifierFailure();
Nicolas Geoffray7cc3ae52017-03-07 14:33:37 +00002030 } else {
2031 // Force a soft failure for the VerifierDeps. This is a sanity measure, as
2032 // the vdex file already records that the class hasn't been resolved. It avoids
2033 // trying to do future verification optimizations when processing the vdex file.
Andreas Gampef39208f2017-10-19 15:06:59 -07002034 DCHECK(failure_kind == verifier::FailureKind::kNoFailure) << failure_kind;
Andreas Gampe6d7abbd2017-04-24 13:19:09 -07002035 failure_kind = verifier::FailureKind::kSoftFailure;
Mathieu Chartier90443472015-07-16 20:32:27 -07002036 }
Andreas Gampebb30d5d2018-04-23 09:59:25 -07002037 } else if (&klass->GetDexFile() != &dex_file) {
2038 // Skip a duplicate class (as the resolved class is from another, earlier dex file).
2039 return; // Do not update state.
Mathieu Chartier90443472015-07-16 20:32:27 -07002040 } else if (!SkipClass(jclass_loader, dex_file, klass.Get())) {
David Sehr709b0702016-10-13 09:12:37 -07002041 CHECK(klass->IsResolved()) << klass->PrettyClass();
Nicolas Geoffray08025182016-10-25 17:20:18 +01002042 failure_kind = class_linker->VerifyClass(soa.Self(), klass, log_level_);
Mathieu Chartier90443472015-07-16 20:32:27 -07002043
2044 if (klass->IsErroneous()) {
2045 // ClassLinker::VerifyClass throws, which isn't useful in the compiler.
2046 CHECK(soa.Self()->IsExceptionPending());
2047 soa.Self()->ClearException();
2048 manager_->GetCompiler()->SetHadHardVerifierFailure();
Andreas Gampef39208f2017-10-19 15:06:59 -07002049 } else if (failure_kind == verifier::FailureKind::kSoftFailure) {
2050 manager_->GetCompiler()->AddSoftVerifierFailure();
Mathieu Chartier90443472015-07-16 20:32:27 -07002051 }
2052
Nicolas Geoffray7cc3ae52017-03-07 14:33:37 +00002053 CHECK(klass->ShouldVerifyAtRuntime() || klass->IsVerified() || klass->IsErroneous())
David Sehr709b0702016-10-13 09:12:37 -07002054 << klass->PrettyDescriptor() << ": state=" << klass->GetStatus();
Mathieu Chartier90443472015-07-16 20:32:27 -07002055
Nicolas Geoffrayc7da1d62017-04-19 09:36:24 +01002056 // Class has a meaningful status for the compiler now, record it.
2057 ClassReference ref(manager_->GetDexFile(), class_def_index);
2058 manager_->GetCompiler()->RecordClassStatus(ref, klass->GetStatus());
2059
Andreas Gamped278cb42017-11-22 14:13:00 -08002060 // It is *very* problematic if there are resolution errors in the boot classpath.
2061 //
2062 // It is also bad if classes fail verification. For example, we rely on things working
2063 // OK without verification when the decryption dialog is brought up. It is thus highly
2064 // recommended to compile the boot classpath with
2065 // --abort-on-hard-verifier-error --abort-on-soft-verifier-error
2066 // which is the default build system configuration.
Narayan Kamathe3eae5e2016-10-27 11:47:30 +01002067 if (kIsDebugBuild) {
Orion Hodsonc5e0d3f2017-08-22 19:00:04 +01002068 if (manager_->GetCompiler()->GetCompilerOptions().IsBootImage()) {
Andreas Gamped278cb42017-11-22 14:13:00 -08002069 if (!klass->IsResolved() || klass->IsErroneous()) {
Andreas Gampe12fadcd2017-08-03 05:06:28 -07002070 LOG(FATAL) << "Boot classpath class " << klass->PrettyClass()
Andreas Gamped278cb42017-11-22 14:13:00 -08002071 << " failed to resolve/is erroneous: state= " << klass->GetStatus();
2072 UNREACHABLE();
Andreas Gampe12fadcd2017-08-03 05:06:28 -07002073 }
Narayan Kamathe3eae5e2016-10-27 11:47:30 +01002074 }
Nicolas Geoffray7cc3ae52017-03-07 14:33:37 +00002075 if (klass->IsVerified()) {
Andreas Gampe6d7abbd2017-04-24 13:19:09 -07002076 DCHECK_EQ(failure_kind, verifier::FailureKind::kNoFailure);
Nicolas Geoffray7cc3ae52017-03-07 14:33:37 +00002077 } else if (klass->ShouldVerifyAtRuntime()) {
Andreas Gampe6d7abbd2017-04-24 13:19:09 -07002078 DCHECK_EQ(failure_kind, verifier::FailureKind::kSoftFailure);
Nicolas Geoffray7cc3ae52017-03-07 14:33:37 +00002079 } else {
Andreas Gampe6d7abbd2017-04-24 13:19:09 -07002080 DCHECK_EQ(failure_kind, verifier::FailureKind::kHardFailure);
Nicolas Geoffray7cc3ae52017-03-07 14:33:37 +00002081 }
Narayan Kamathe3eae5e2016-10-27 11:47:30 +01002082 }
Nicolas Geoffray08025182016-10-25 17:20:18 +01002083 } else {
2084 // Make the skip a soft failure, essentially being considered as verify at runtime.
Andreas Gampe6d7abbd2017-04-24 13:19:09 -07002085 failure_kind = verifier::FailureKind::kSoftFailure;
Ian Rogerse6bb3b22013-08-19 21:51:45 -07002086 }
Nicolas Geoffray08025182016-10-25 17:20:18 +01002087 verifier::VerifierDeps::MaybeRecordVerificationStatus(
2088 dex_file, class_def.class_idx_, failure_kind);
Mathieu Chartier90443472015-07-16 20:32:27 -07002089 soa.Self()->AssertNoPendingException();
Brian Carlstrom7940e442013-07-12 13:46:57 -07002090 }
Mathieu Chartier90443472015-07-16 20:32:27 -07002091
2092 private:
2093 const ParallelCompilationManager* const manager_;
Andreas Gampe5fd66d02016-09-12 20:22:19 -07002094 const verifier::HardFailLogMode log_level_;
Mathieu Chartier90443472015-07-16 20:32:27 -07002095};
Brian Carlstrom7940e442013-07-12 13:46:57 -07002096
Andreas Gampeace0dc12016-01-20 13:33:13 -08002097void CompilerDriver::VerifyDexFile(jobject class_loader,
2098 const DexFile& dex_file,
Andreas Gampede7b4362014-07-28 18:38:57 -07002099 const std::vector<const DexFile*>& dex_files,
Andreas Gampeace0dc12016-01-20 13:33:13 -08002100 ThreadPool* thread_pool,
2101 size_t thread_count,
2102 TimingLogger* timings) {
Mathieu Chartierf5997b42014-06-20 10:37:54 -07002103 TimingLogger::ScopedTiming t("Verify Dex File", timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002104 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Andreas Gampede7b4362014-07-28 18:38:57 -07002105 ParallelCompilationManager context(class_linker, class_loader, this, &dex_file, dex_files,
2106 thread_pool);
Andreas Gampef39208f2017-10-19 15:06:59 -07002107 bool abort_on_verifier_failures = GetCompilerOptions().AbortOnHardVerifierFailure()
2108 || GetCompilerOptions().AbortOnSoftVerifierFailure();
2109 verifier::HardFailLogMode log_level = abort_on_verifier_failures
Andreas Gampe5fd66d02016-09-12 20:22:19 -07002110 ? verifier::HardFailLogMode::kLogInternalFatal
2111 : verifier::HardFailLogMode::kLogWarning;
Andreas Gampe7fe30232016-03-25 16:58:00 -07002112 VerifyClassVisitor visitor(&context, log_level);
Andreas Gampeace0dc12016-01-20 13:33:13 -08002113 context.ForAll(0, dex_file.NumClassDefs(), &visitor, thread_count);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002114}
2115
Mathieu Chartier90443472015-07-16 20:32:27 -07002116class SetVerifiedClassVisitor : public CompilationVisitor {
2117 public:
2118 explicit SetVerifiedClassVisitor(const ParallelCompilationManager* manager) : manager_(manager) {}
2119
2120 virtual void Visit(size_t class_def_index) REQUIRES(!Locks::mutator_lock_) OVERRIDE {
Andreas Gampe9b827ab2017-12-07 19:32:48 -08002121 ScopedTrace trace(__FUNCTION__);
Mathieu Chartier90443472015-07-16 20:32:27 -07002122 ScopedObjectAccess soa(Thread::Current());
2123 const DexFile& dex_file = *manager_->GetDexFile();
2124 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
2125 const char* descriptor = dex_file.GetClassDescriptor(class_def);
2126 ClassLinker* class_linker = manager_->GetClassLinker();
2127 jobject jclass_loader = manager_->GetClassLoader();
2128 StackHandleScope<3> hs(soa.Self());
2129 Handle<mirror::ClassLoader> class_loader(
Mathieu Chartier0795f232016-09-27 18:43:30 -07002130 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader)));
Mathieu Chartier90443472015-07-16 20:32:27 -07002131 Handle<mirror::Class> klass(
2132 hs.NewHandle(class_linker->FindClass(soa.Self(), descriptor, class_loader)));
2133 // Class might have failed resolution. Then don't set it to verified.
Andreas Gampefa4333d2017-02-14 11:10:34 -08002134 if (klass != nullptr) {
Mathieu Chartier90443472015-07-16 20:32:27 -07002135 // Only do this if the class is resolved. If even resolution fails, quickening will go very,
2136 // very wrong.
Vladimir Marko72ab6842017-01-20 19:32:50 +00002137 if (klass->IsResolved() && !klass->IsErroneousResolved()) {
Vladimir Marko2c64a832018-01-04 11:31:56 +00002138 if (klass->GetStatus() < ClassStatus::kVerified) {
Mathieu Chartier90443472015-07-16 20:32:27 -07002139 ObjectLock<mirror::Class> lock(soa.Self(), klass);
2140 // Set class status to verified.
Vladimir Marko2c64a832018-01-04 11:31:56 +00002141 mirror::Class::SetStatus(klass, ClassStatus::kVerified, soa.Self());
Mathieu Chartier90443472015-07-16 20:32:27 -07002142 // Mark methods as pre-verified. If we don't do this, the interpreter will run with
2143 // access checks.
Igor Murashkindf707e42016-02-02 16:56:50 -08002144 klass->SetSkipAccessChecksFlagOnAllMethods(
Mathieu Chartier90443472015-07-16 20:32:27 -07002145 GetInstructionSetPointerSize(manager_->GetCompiler()->GetInstructionSet()));
Igor Murashkindf707e42016-02-02 16:56:50 -08002146 klass->SetVerificationAttempted();
Mathieu Chartier90443472015-07-16 20:32:27 -07002147 }
2148 // Record the final class status if necessary.
2149 ClassReference ref(manager_->GetDexFile(), class_def_index);
2150 manager_->GetCompiler()->RecordClassStatus(ref, klass->GetStatus());
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002151 }
Mathieu Chartier90443472015-07-16 20:32:27 -07002152 } else {
2153 Thread* self = soa.Self();
2154 DCHECK(self->IsExceptionPending());
2155 self->ClearException();
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002156 }
2157 }
Mathieu Chartier90443472015-07-16 20:32:27 -07002158
2159 private:
2160 const ParallelCompilationManager* const manager_;
2161};
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002162
Andreas Gampeace0dc12016-01-20 13:33:13 -08002163void CompilerDriver::SetVerifiedDexFile(jobject class_loader,
2164 const DexFile& dex_file,
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002165 const std::vector<const DexFile*>& dex_files,
Andreas Gampeace0dc12016-01-20 13:33:13 -08002166 ThreadPool* thread_pool,
2167 size_t thread_count,
2168 TimingLogger* timings) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002169 TimingLogger::ScopedTiming t("Verify Dex File", timings);
Mathieu Chartier1a088d42017-07-18 11:43:57 -07002170 if (!compiled_classes_.HaveDexFile(&dex_file)) {
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002171 compiled_classes_.AddDexFile(&dex_file);
Mathieu Chartier1a088d42017-07-18 11:43:57 -07002172 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002173 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
2174 ParallelCompilationManager context(class_linker, class_loader, this, &dex_file, dex_files,
2175 thread_pool);
Mathieu Chartier90443472015-07-16 20:32:27 -07002176 SetVerifiedClassVisitor visitor(&context);
Andreas Gampeace0dc12016-01-20 13:33:13 -08002177 context.ForAll(0, dex_file.NumClassDefs(), &visitor, thread_count);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002178}
2179
Mathieu Chartier90443472015-07-16 20:32:27 -07002180class InitializeClassVisitor : public CompilationVisitor {
2181 public:
2182 explicit InitializeClassVisitor(const ParallelCompilationManager* manager) : manager_(manager) {}
Ian Rogersfc0e94b2013-09-23 23:51:32 -07002183
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002184 void Visit(size_t class_def_index) OVERRIDE {
Andreas Gampe9b827ab2017-12-07 19:32:48 -08002185 ScopedTrace trace(__FUNCTION__);
Mathieu Chartier90443472015-07-16 20:32:27 -07002186 jobject jclass_loader = manager_->GetClassLoader();
2187 const DexFile& dex_file = *manager_->GetDexFile();
2188 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
2189 const DexFile::TypeId& class_type_id = dex_file.GetTypeId(class_def.class_idx_);
2190 const char* descriptor = dex_file.StringDataByIdx(class_type_id.descriptor_idx_);
Jeff Hao0e49b422013-11-08 12:16:56 -08002191
Mathieu Chartier90443472015-07-16 20:32:27 -07002192 ScopedObjectAccess soa(Thread::Current());
2193 StackHandleScope<3> hs(soa.Self());
2194 Handle<mirror::ClassLoader> class_loader(
Mathieu Chartier0795f232016-09-27 18:43:30 -07002195 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader)));
Mathieu Chartier90443472015-07-16 20:32:27 -07002196 Handle<mirror::Class> klass(
2197 hs.NewHandle(manager_->GetClassLinker()->FindClass(soa.Self(), descriptor, class_loader)));
2198
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002199 if (klass != nullptr && !SkipClass(manager_->GetClassLoader(), dex_file, klass.Get())) {
2200 TryInitializeClass(klass, class_loader);
2201 }
2202 // Clear any class not found or verification exceptions.
2203 soa.Self()->ClearException();
2204 }
2205
2206 // A helper function for initializing klass.
2207 void TryInitializeClass(Handle<mirror::Class> klass, Handle<mirror::ClassLoader>& class_loader)
2208 REQUIRES_SHARED(Locks::mutator_lock_) {
2209 const DexFile& dex_file = klass->GetDexFile();
2210 const DexFile::ClassDef* class_def = klass->GetClassDef();
2211 const DexFile::TypeId& class_type_id = dex_file.GetTypeId(class_def->class_idx_);
2212 const char* descriptor = dex_file.StringDataByIdx(class_type_id.descriptor_idx_);
2213 ScopedObjectAccessUnchecked soa(Thread::Current());
2214 StackHandleScope<3> hs(soa.Self());
Mathieu Chartierdabeb3a2017-06-12 17:10:07 -07002215 const bool is_boot_image = manager_->GetCompiler()->GetCompilerOptions().IsBootImage();
Mathieu Chartier17498e52017-06-13 11:35:04 -07002216 const bool is_app_image = manager_->GetCompiler()->GetCompilerOptions().IsAppImage();
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002217
Vladimir Marko2c64a832018-01-04 11:31:56 +00002218 ClassStatus old_status = klass->GetStatus();
Mathieu Chartier1a088d42017-07-18 11:43:57 -07002219 // Don't initialize classes in boot space when compiling app image
2220 if (is_app_image && klass->IsBootStrapClassLoaded()) {
2221 // Also return early and don't store the class status in the recorded class status.
2222 return;
2223 }
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002224 // Only try to initialize classes that were successfully verified.
2225 if (klass->IsVerified()) {
2226 // Attempt to initialize the class but bail if we either need to initialize the super-class
2227 // or static fields.
Nicolas Geoffrayabadf022017-08-03 08:25:41 +00002228 manager_->GetClassLinker()->EnsureInitialized(soa.Self(), klass, false, false);
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002229 old_status = klass->GetStatus();
2230 if (!klass->IsInitialized()) {
2231 // We don't want non-trivial class initialization occurring on multiple threads due to
2232 // deadlock problems. For example, a parent class is initialized (holding its lock) that
2233 // refers to a sub-class in its static/class initializer causing it to try to acquire the
2234 // sub-class' lock. While on a second thread the sub-class is initialized (holding its lock)
2235 // after first initializing its parents, whose locks are acquired. This leads to a
2236 // parent-to-child and a child-to-parent lock ordering and consequent potential deadlock.
2237 // We need to use an ObjectLock due to potential suspension in the interpreting code. Rather
2238 // than use a special Object for the purpose we use the Class of java.lang.Class.
2239 Handle<mirror::Class> h_klass(hs.NewHandle(klass->GetClass()));
2240 ObjectLock<mirror::Class> lock(soa.Self(), h_klass);
2241 // Attempt to initialize allowing initialization of parent classes but still not static
2242 // fields.
Chang Xinge602b1c2017-06-30 11:55:01 -07002243 // Initialize dependencies first only for app image, to make TryInitialize recursive.
2244 bool is_superclass_initialized = !is_app_image ? true :
2245 InitializeDependencies(klass, class_loader, soa.Self());
2246 if (!is_app_image || (is_app_image && is_superclass_initialized)) {
Nicolas Geoffrayabadf022017-08-03 08:25:41 +00002247 manager_->GetClassLinker()->EnsureInitialized(soa.Self(), klass, false, true);
Chang Xinge602b1c2017-06-30 11:55:01 -07002248 }
2249 // Otherwise it's in app image but superclasses can't be initialized, no need to proceed.
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002250 old_status = klass->GetStatus();
Chang Xing70f689d2017-06-08 17:16:12 -07002251
2252 bool too_many_encoded_fields = false;
2253 if (!is_boot_image && klass->NumStaticFields() > kMaxEncodedFields) {
2254 too_many_encoded_fields = true;
2255 }
Mathieu Chartierdabeb3a2017-06-12 17:10:07 -07002256 // If the class was not initialized, we can proceed to see if we can initialize static
Chang Xing70f689d2017-06-08 17:16:12 -07002257 // fields. Limit the max number of encoded fields.
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002258 if (!klass->IsInitialized() &&
Mathieu Chartier17498e52017-06-13 11:35:04 -07002259 (is_app_image || is_boot_image) &&
Chang Xinge602b1c2017-06-30 11:55:01 -07002260 is_superclass_initialized &&
Chang Xing70f689d2017-06-08 17:16:12 -07002261 !too_many_encoded_fields &&
Vladimir Markodc4bcce2018-06-21 16:15:42 +01002262 manager_->GetCompiler()->GetCompilerOptions().IsImageClass(descriptor)) {
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002263 bool can_init_static_fields = false;
Mathieu Chartierdabeb3a2017-06-12 17:10:07 -07002264 if (is_boot_image) {
Mathieu Chartier90443472015-07-16 20:32:27 -07002265 // We need to initialize static fields, we only do this for image classes that aren't
Mathieu Chartierdabeb3a2017-06-12 17:10:07 -07002266 // marked with the $NoPreloadHolder (which implies this should not be initialized
2267 // early).
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002268 can_init_static_fields = !StringPiece(descriptor).ends_with("$NoPreloadHolder;");
2269 } else {
Mathieu Chartier17498e52017-06-13 11:35:04 -07002270 CHECK(is_app_image);
Mathieu Chartierdabeb3a2017-06-12 17:10:07 -07002271 // The boot image case doesn't need to recursively initialize the dependencies with
2272 // special logic since the class linker already does this.
Mathieu Chartierdabeb3a2017-06-12 17:10:07 -07002273 can_init_static_fields =
Mathieu Chartier0933cc52018-03-23 14:25:08 -07002274 ClassLinker::kAppImageMayContainStrings &&
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002275 !soa.Self()->IsExceptionPending() &&
Nicolas Geoffrayabadf022017-08-03 08:25:41 +00002276 is_superclass_initialized &&
2277 NoClinitInDependency(klass, soa.Self(), &class_loader);
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002278 // TODO The checking for clinit can be removed since it's already
2279 // checked when init superclass. Currently keep it because it contains
2280 // processing of intern strings. Will be removed later when intern strings
2281 // and clinit are both initialized.
2282 }
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01002283
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002284 if (can_init_static_fields) {
2285 VLOG(compiler) << "Initializing: " << descriptor;
2286 // TODO multithreading support. We should ensure the current compilation thread has
2287 // exclusive access to the runtime and the transaction. To achieve this, we could use
2288 // a ReaderWriterMutex but we're holding the mutator lock so we fail mutex sanity
2289 // checks in Thread::AssertThreadSuspensionIsAllowable.
2290 Runtime* const runtime = Runtime::Current();
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002291 // Run the class initializer in transaction mode.
Chang Xing5a906fc2017-07-26 15:01:16 -07002292 runtime->EnterTransactionMode(is_app_image, klass.Get());
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002293 bool success = manager_->GetClassLinker()->EnsureInitialized(soa.Self(), klass, true,
2294 true);
2295 // TODO we detach transaction from runtime to indicate we quit the transactional
2296 // mode which prevents the GC from visiting objects modified during the transaction.
2297 // Ensure GC is not run so don't access freed objects when aborting transaction.
Andreas Gampe9e7078b2017-03-02 13:50:36 -08002298
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002299 {
2300 ScopedAssertNoThreadSuspension ants("Transaction end");
Chang Xing16d1dd82017-07-20 17:56:26 -07002301
2302 if (success) {
2303 runtime->ExitTransactionMode();
2304 DCHECK(!runtime->IsActiveTransaction());
2305 }
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01002306
Mathieu Chartier90443472015-07-16 20:32:27 -07002307 if (!success) {
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002308 CHECK(soa.Self()->IsExceptionPending());
2309 mirror::Throwable* exception = soa.Self()->GetException();
2310 VLOG(compiler) << "Initialization of " << descriptor << " aborted because of "
2311 << exception->Dump();
2312 std::ostream* file_log = manager_->GetCompiler()->
2313 GetCompilerOptions().GetInitFailureOutput();
2314 if (file_log != nullptr) {
2315 *file_log << descriptor << "\n";
2316 *file_log << exception->Dump() << "\n";
2317 }
2318 soa.Self()->ClearException();
Chang Xing605fe242017-07-20 15:57:21 -07002319 runtime->RollbackAllTransactions();
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002320 CHECK_EQ(old_status, klass->GetStatus()) << "Previous class status not restored";
Mathieu Chartierdabeb3a2017-06-12 17:10:07 -07002321 } else if (is_boot_image) {
2322 // For boot image, we want to put the updated status in the oat class since we can't
2323 // reject the image anyways.
2324 old_status = klass->GetStatus();
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002325 }
2326 }
2327
Nicolas Geoffrayabadf022017-08-03 08:25:41 +00002328 if (!success) {
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002329 // On failure, still intern strings of static fields and seen in <clinit>, as these
2330 // will be created in the zygote. This is separated from the transaction code just
2331 // above as we will allocate strings, so must be allowed to suspend.
2332 if (&klass->GetDexFile() == manager_->GetDexFile()) {
Andreas Gampe9e7078b2017-03-02 13:50:36 -08002333 InternStrings(klass, class_loader);
Mathieu Chartierdabeb3a2017-06-12 17:10:07 -07002334 } else {
2335 DCHECK(!is_boot_image) << "Boot image must have equal dex files";
Andreas Gampedbfe2542014-11-25 22:21:42 -08002336 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002337 }
2338 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002339 }
Jeff Hao0cb17282017-07-12 14:51:49 -07002340 // If the class still isn't initialized, at least try some checks that initialization
2341 // would do so they can be skipped at runtime.
2342 if (!klass->IsInitialized() &&
2343 manager_->GetClassLinker()->ValidateSuperClassDescriptors(klass)) {
Vladimir Marko2c64a832018-01-04 11:31:56 +00002344 old_status = ClassStatus::kSuperclassValidated;
Jeff Hao0cb17282017-07-12 14:51:49 -07002345 } else {
2346 soa.Self()->ClearException();
2347 }
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002348 soa.Self()->AssertNoPendingException();
Brian Carlstrom7940e442013-07-12 13:46:57 -07002349 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002350 }
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002351 // Record the final class status if necessary.
2352 ClassReference ref(&dex_file, klass->GetDexClassDefIndex());
2353 // Back up the status before doing initialization for static encoded fields,
2354 // because the static encoded branch wants to keep the status to uninitialized.
2355 manager_->GetCompiler()->RecordClassStatus(ref, old_status);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002356 }
Mathieu Chartier90443472015-07-16 20:32:27 -07002357
2358 private:
Andreas Gampe9e7078b2017-03-02 13:50:36 -08002359 void InternStrings(Handle<mirror::Class> klass, Handle<mirror::ClassLoader> class_loader)
2360 REQUIRES_SHARED(Locks::mutator_lock_) {
2361 DCHECK(manager_->GetCompiler()->GetCompilerOptions().IsBootImage());
2362 DCHECK(klass->IsVerified());
2363 DCHECK(!klass->IsInitialized());
2364
2365 StackHandleScope<1> hs(Thread::Current());
Vladimir Markoe11dd502017-12-08 14:09:45 +00002366 Handle<mirror::DexCache> dex_cache = hs.NewHandle(klass->GetDexCache());
Andreas Gampe9e7078b2017-03-02 13:50:36 -08002367 const DexFile::ClassDef* class_def = klass->GetClassDef();
2368 ClassLinker* class_linker = manager_->GetClassLinker();
2369
Andreas Gampe7bf90482017-03-02 16:41:35 -08002370 // Check encoded final field values for strings and intern.
Vladimir Markoe11dd502017-12-08 14:09:45 +00002371 annotations::RuntimeEncodedStaticFieldValueIterator value_it(dex_cache,
2372 class_loader,
Andreas Gampe9e7078b2017-03-02 13:50:36 -08002373 manager_->GetClassLinker(),
2374 *class_def);
2375 for ( ; value_it.HasNext(); value_it.Next()) {
2376 if (value_it.GetValueType() == annotations::RuntimeEncodedStaticFieldValueIterator::kString) {
2377 // Resolve the string. This will intern the string.
2378 art::ObjPtr<mirror::String> resolved = class_linker->ResolveString(
Vladimir Markoa64b52d2017-12-08 16:27:49 +00002379 dex::StringIndex(value_it.GetJavaValue().i), dex_cache);
Andreas Gampe9e7078b2017-03-02 13:50:36 -08002380 CHECK(resolved != nullptr);
2381 }
2382 }
Andreas Gampe7bf90482017-03-02 16:41:35 -08002383
2384 // Intern strings seen in <clinit>.
2385 ArtMethod* clinit = klass->FindClassInitializer(class_linker->GetImagePointerSize());
2386 if (clinit != nullptr) {
Mathieu Chartier73f21d42018-01-02 14:26:50 -08002387 for (const DexInstructionPcPair& inst : clinit->DexInstructions()) {
Mathieu Chartier2b2bef22017-10-26 17:10:19 -07002388 if (inst->Opcode() == Instruction::CONST_STRING) {
Andreas Gampe7bf90482017-03-02 16:41:35 -08002389 ObjPtr<mirror::String> s = class_linker->ResolveString(
Vladimir Markoa64b52d2017-12-08 16:27:49 +00002390 dex::StringIndex(inst->VRegB_21c()), dex_cache);
Andreas Gampe7bf90482017-03-02 16:41:35 -08002391 CHECK(s != nullptr);
Mathieu Chartier2b2bef22017-10-26 17:10:19 -07002392 } else if (inst->Opcode() == Instruction::CONST_STRING_JUMBO) {
Andreas Gampe7bf90482017-03-02 16:41:35 -08002393 ObjPtr<mirror::String> s = class_linker->ResolveString(
Vladimir Markoa64b52d2017-12-08 16:27:49 +00002394 dex::StringIndex(inst->VRegB_31c()), dex_cache);
Andreas Gampe7bf90482017-03-02 16:41:35 -08002395 CHECK(s != nullptr);
2396 }
Andreas Gampe7bf90482017-03-02 16:41:35 -08002397 }
2398 }
Andreas Gampe9e7078b2017-03-02 13:50:36 -08002399 }
2400
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002401 bool ResolveTypesOfMethods(Thread* self, ArtMethod* m)
2402 REQUIRES_SHARED(Locks::mutator_lock_) {
Vladimir Markob45528c2017-07-27 14:14:28 +01002403 // Return value of ResolveReturnType() is discarded because resolve will be done internally.
2404 ObjPtr<mirror::Class> rtn_type = m->ResolveReturnType();
Mathieu Chartier7a8bcfd2017-06-13 13:40:43 -07002405 if (rtn_type == nullptr) {
2406 self->ClearException();
2407 return false;
2408 }
2409 const DexFile::TypeList* types = m->GetParameterTypeList();
2410 if (types != nullptr) {
2411 for (uint32_t i = 0; i < types->Size(); ++i) {
2412 dex::TypeIndex param_type_idx = types->GetTypeItem(i).type_idx_;
Vladimir Markob45528c2017-07-27 14:14:28 +01002413 ObjPtr<mirror::Class> param_type = m->ResolveClassFromTypeIndex(param_type_idx);
Mathieu Chartier7a8bcfd2017-06-13 13:40:43 -07002414 if (param_type == nullptr) {
2415 self->ClearException();
2416 return false;
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002417 }
2418 }
Mathieu Chartier7a8bcfd2017-06-13 13:40:43 -07002419 }
2420 return true;
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002421 }
2422
2423 // Pre resolve types mentioned in all method signatures before start a transaction
2424 // since ResolveType doesn't work in transaction mode.
2425 bool PreResolveTypes(Thread* self, const Handle<mirror::Class>& klass)
2426 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartier7a8bcfd2017-06-13 13:40:43 -07002427 PointerSize pointer_size = manager_->GetClassLinker()->GetImagePointerSize();
2428 for (ArtMethod& m : klass->GetMethods(pointer_size)) {
2429 if (!ResolveTypesOfMethods(self, &m)) {
2430 return false;
2431 }
2432 }
2433 if (klass->IsInterface()) {
2434 return true;
2435 } else if (klass->HasSuperClass()) {
2436 StackHandleScope<1> hs(self);
2437 MutableHandle<mirror::Class> super_klass(hs.NewHandle<mirror::Class>(klass->GetSuperClass()));
2438 for (int i = super_klass->GetVTableLength() - 1; i >= 0; --i) {
2439 ArtMethod* m = klass->GetVTableEntry(i, pointer_size);
2440 ArtMethod* super_m = super_klass->GetVTableEntry(i, pointer_size);
2441 if (!ResolveTypesOfMethods(self, m) || !ResolveTypesOfMethods(self, super_m)) {
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002442 return false;
2443 }
2444 }
Mathieu Chartier7a8bcfd2017-06-13 13:40:43 -07002445 for (int32_t i = 0; i < klass->GetIfTableCount(); ++i) {
2446 super_klass.Assign(klass->GetIfTable()->GetInterface(i));
2447 if (klass->GetClassLoader() != super_klass->GetClassLoader()) {
2448 uint32_t num_methods = super_klass->NumVirtualMethods();
2449 for (uint32_t j = 0; j < num_methods; ++j) {
2450 ArtMethod* m = klass->GetIfTable()->GetMethodArray(i)->GetElementPtrSize<ArtMethod*>(
2451 j, pointer_size);
2452 ArtMethod* super_m = super_klass->GetVirtualMethod(j, pointer_size);
2453 if (!ResolveTypesOfMethods(self, m) || !ResolveTypesOfMethods(self, super_m)) {
2454 return false;
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002455 }
2456 }
2457 }
2458 }
Mathieu Chartier7a8bcfd2017-06-13 13:40:43 -07002459 }
2460 return true;
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002461 }
2462
2463 // Initialize the klass's dependencies recursively before initializing itself.
2464 // Checking for interfaces is also necessary since interfaces can contain
2465 // both default methods and static encoded fields.
2466 bool InitializeDependencies(const Handle<mirror::Class>& klass,
2467 Handle<mirror::ClassLoader> class_loader,
2468 Thread* self)
2469 REQUIRES_SHARED(Locks::mutator_lock_) {
2470 if (klass->HasSuperClass()) {
2471 ObjPtr<mirror::Class> super_class = klass->GetSuperClass();
2472 StackHandleScope<1> hs(self);
2473 Handle<mirror::Class> handle_scope_super(hs.NewHandle(super_class));
2474 if (!handle_scope_super->IsInitialized()) {
2475 this->TryInitializeClass(handle_scope_super, class_loader);
2476 if (!handle_scope_super->IsInitialized()) {
2477 return false;
2478 }
2479 }
2480 }
2481
2482 uint32_t num_if = klass->NumDirectInterfaces();
2483 for (size_t i = 0; i < num_if; i++) {
2484 ObjPtr<mirror::Class>
2485 interface = mirror::Class::GetDirectInterface(self, klass.Get(), i);
2486 StackHandleScope<1> hs(self);
2487 Handle<mirror::Class> handle_interface(hs.NewHandle(interface));
2488
2489 TryInitializeClass(handle_interface, class_loader);
2490
2491 if (!handle_interface->IsInitialized()) {
2492 return false;
2493 }
2494 }
2495
2496 return PreResolveTypes(self, klass);
2497 }
2498
2499 // In this phase the classes containing class initializers are ignored. Make sure no
2500 // clinit appears in kalss's super class chain and interfaces.
2501 bool NoClinitInDependency(const Handle<mirror::Class>& klass,
2502 Thread* self,
2503 Handle<mirror::ClassLoader>* class_loader)
2504 REQUIRES_SHARED(Locks::mutator_lock_) {
2505 ArtMethod* clinit =
2506 klass->FindClassInitializer(manager_->GetClassLinker()->GetImagePointerSize());
2507 if (clinit != nullptr) {
2508 VLOG(compiler) << klass->PrettyClass() << ' ' << clinit->PrettyMethod(true);
2509 return false;
2510 }
2511 if (klass->HasSuperClass()) {
2512 ObjPtr<mirror::Class> super_class = klass->GetSuperClass();
2513 StackHandleScope<1> hs(self);
2514 Handle<mirror::Class> handle_scope_super(hs.NewHandle(super_class));
2515 if (!NoClinitInDependency(handle_scope_super, self, class_loader)) {
2516 return false;
2517 }
2518 }
2519
2520 uint32_t num_if = klass->NumDirectInterfaces();
2521 for (size_t i = 0; i < num_if; i++) {
2522 ObjPtr<mirror::Class>
2523 interface = mirror::Class::GetDirectInterface(self, klass.Get(), i);
2524 StackHandleScope<1> hs(self);
2525 Handle<mirror::Class> handle_interface(hs.NewHandle(interface));
2526 if (!NoClinitInDependency(handle_interface, self, class_loader)) {
2527 return false;
2528 }
2529 }
2530
Chang Xingba17dbd2017-06-28 21:27:56 +00002531 return true;
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002532 }
2533
Mathieu Chartier90443472015-07-16 20:32:27 -07002534 const ParallelCompilationManager* const manager_;
2535};
Brian Carlstrom7940e442013-07-12 13:46:57 -07002536
Andreas Gampeace0dc12016-01-20 13:33:13 -08002537void CompilerDriver::InitializeClasses(jobject jni_class_loader,
2538 const DexFile& dex_file,
Andreas Gampede7b4362014-07-28 18:38:57 -07002539 const std::vector<const DexFile*>& dex_files,
Andreas Gampeace0dc12016-01-20 13:33:13 -08002540 TimingLogger* timings) {
Mathieu Chartierf5997b42014-06-20 10:37:54 -07002541 TimingLogger::ScopedTiming t("InitializeNoClinit", timings);
Andreas Gampeace0dc12016-01-20 13:33:13 -08002542
2543 // Initialization allocates objects and needs to run single-threaded to be deterministic.
2544 bool force_determinism = GetCompilerOptions().IsForceDeterminism();
2545 ThreadPool* init_thread_pool = force_determinism
2546 ? single_thread_pool_.get()
2547 : parallel_thread_pool_.get();
2548 size_t init_thread_count = force_determinism ? 1U : parallel_thread_count_;
2549
Brian Carlstrom7940e442013-07-12 13:46:57 -07002550 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Andreas Gampede7b4362014-07-28 18:38:57 -07002551 ParallelCompilationManager context(class_linker, jni_class_loader, this, &dex_file, dex_files,
Andreas Gampeace0dc12016-01-20 13:33:13 -08002552 init_thread_pool);
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002553
2554 if (GetCompilerOptions().IsBootImage() || GetCompilerOptions().IsAppImage()) {
2555 // Set the concurrency thread to 1 to support initialization for App Images since transaction
2556 // doesn't support multithreading now.
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01002557 // TODO: remove this when transactional mode supports multithreading.
Andreas Gampeace0dc12016-01-20 13:33:13 -08002558 init_thread_count = 1U;
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01002559 }
Mathieu Chartier90443472015-07-16 20:32:27 -07002560 InitializeClassVisitor visitor(&context);
Andreas Gampeace0dc12016-01-20 13:33:13 -08002561 context.ForAll(0, dex_file.NumClassDefs(), &visitor, init_thread_count);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002562}
2563
Mathieu Chartier91288d82016-04-28 09:44:54 -07002564class InitializeArrayClassesAndCreateConflictTablesVisitor : public ClassVisitor {
Mathieu Chartier085a0722016-04-01 17:33:31 -07002565 public:
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002566 explicit InitializeArrayClassesAndCreateConflictTablesVisitor(VariableSizedHandleScope& hs)
2567 : hs_(hs) {}
2568
2569 virtual bool operator()(ObjPtr<mirror::Class> klass) OVERRIDE
2570 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartier91288d82016-04-28 09:44:54 -07002571 if (Runtime::Current()->GetHeap()->ObjectIsInBootImageSpace(klass)) {
2572 return true;
2573 }
Mathieu Chartier085a0722016-04-01 17:33:31 -07002574 if (klass->IsArrayClass()) {
2575 StackHandleScope<1> hs(Thread::Current());
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002576 auto h_klass = hs.NewHandleWrapper(&klass);
2577 Runtime::Current()->GetClassLinker()->EnsureInitialized(hs.Self(), h_klass, true, true);
Mathieu Chartier085a0722016-04-01 17:33:31 -07002578 }
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002579 // Collect handles since there may be thread suspension in future EnsureInitialized.
2580 to_visit_.push_back(hs_.NewHandle(klass));
Nicolas Geoffray88f288e2016-06-29 08:17:52 +00002581 return true;
Nelli Kimbadee982016-05-13 13:08:53 +03002582 }
Artem Udovichenkoa62cb9b2016-06-30 09:18:25 +00002583
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002584 void FillAllIMTAndConflictTables() REQUIRES_SHARED(Locks::mutator_lock_) {
2585 for (Handle<mirror::Class> c : to_visit_) {
2586 // Create the conflict tables.
2587 FillIMTAndConflictTables(c.Get());
2588 }
2589 }
2590
Artem Udovichenkoa62cb9b2016-06-30 09:18:25 +00002591 private:
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002592 void FillIMTAndConflictTables(ObjPtr<mirror::Class> klass)
2593 REQUIRES_SHARED(Locks::mutator_lock_) {
Artem Udovichenkoa62cb9b2016-06-30 09:18:25 +00002594 if (!klass->ShouldHaveImt()) {
2595 return;
2596 }
2597 if (visited_classes_.find(klass) != visited_classes_.end()) {
2598 return;
2599 }
2600 if (klass->HasSuperClass()) {
2601 FillIMTAndConflictTables(klass->GetSuperClass());
2602 }
2603 if (!klass->IsTemp()) {
2604 Runtime::Current()->GetClassLinker()->FillIMTAndConflictTables(klass);
2605 }
2606 visited_classes_.insert(klass);
2607 }
2608
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002609 VariableSizedHandleScope& hs_;
2610 std::vector<Handle<mirror::Class>> to_visit_;
2611 std::unordered_set<ObjPtr<mirror::Class>, HashObjPtr> visited_classes_;
Mathieu Chartier085a0722016-04-01 17:33:31 -07002612};
2613
Brian Carlstrom7940e442013-07-12 13:46:57 -07002614void CompilerDriver::InitializeClasses(jobject class_loader,
2615 const std::vector<const DexFile*>& dex_files,
Andreas Gampeace0dc12016-01-20 13:33:13 -08002616 TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07002617 for (size_t i = 0; i != dex_files.size(); ++i) {
2618 const DexFile* dex_file = dex_files[i];
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002619 CHECK(dex_file != nullptr);
Andreas Gampeace0dc12016-01-20 13:33:13 -08002620 InitializeClasses(class_loader, *dex_file, dex_files, timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002621 }
Vladimir Markoaad75c62016-10-03 08:46:48 +00002622 if (GetCompilerOptions().IsBootImage() || GetCompilerOptions().IsAppImage()) {
Mathieu Chartier085a0722016-04-01 17:33:31 -07002623 // Make sure that we call EnsureIntiailized on all the array classes to call
2624 // SetVerificationAttempted so that the access flags are set. If we do not do this they get
2625 // changed at runtime resulting in more dirty image pages.
Mathieu Chartier91288d82016-04-28 09:44:54 -07002626 // Also create conflict tables.
2627 // Only useful if we are compiling an image (image_classes_ is not null).
Mathieu Chartier085a0722016-04-01 17:33:31 -07002628 ScopedObjectAccess soa(Thread::Current());
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002629 VariableSizedHandleScope hs(soa.Self());
2630 InitializeArrayClassesAndCreateConflictTablesVisitor visitor(hs);
Mathieu Chartier91288d82016-04-28 09:44:54 -07002631 Runtime::Current()->GetClassLinker()->VisitClassesWithoutClassesLock(&visitor);
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002632 visitor.FillAllIMTAndConflictTables();
Mathieu Chartier085a0722016-04-01 17:33:31 -07002633 }
Vladimir Markoaad75c62016-10-03 08:46:48 +00002634 if (GetCompilerOptions().IsBootImage()) {
Mathieu Chartier093ef212014-08-11 13:52:12 -07002635 // Prune garbage objects created during aborted transactions.
Roland Levillainaf290312018-02-27 20:02:17 +00002636 Runtime::Current()->GetHeap()->CollectGarbage(/* clear_soft_references */ true);
Mathieu Chartier093ef212014-08-11 13:52:12 -07002637 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002638}
2639
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002640template <typename CompileFn>
2641static void CompileDexFile(CompilerDriver* driver,
2642 jobject class_loader,
2643 const DexFile& dex_file,
2644 const std::vector<const DexFile*>& dex_files,
2645 ThreadPool* thread_pool,
2646 size_t thread_count,
2647 TimingLogger* timings,
2648 const char* timing_name,
2649 CompileFn compile_fn) {
2650 TimingLogger::ScopedTiming t(timing_name, timings);
2651 ParallelCompilationManager context(Runtime::Current()->GetClassLinker(),
2652 class_loader,
2653 driver,
2654 &dex_file,
2655 dex_files,
2656 thread_pool);
Vladimir Marko492a7fa2016-06-01 18:38:43 +01002657
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002658 auto compile = [&context, &compile_fn](size_t class_def_index) {
Andreas Gampe9b827ab2017-12-07 19:32:48 -08002659 ScopedTrace trace(__FUNCTION__);
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002660 const DexFile& dex_file = *context.GetDexFile();
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002661 ClassLinker* class_linker = context.GetClassLinker();
2662 jobject jclass_loader = context.GetClassLoader();
Mathieu Chartier90443472015-07-16 20:32:27 -07002663 ClassReference ref(&dex_file, class_def_index);
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07002664 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
Mathieu Chartier18e26872018-06-04 17:19:02 -07002665 ClassAccessor accessor(dex_file, class_def_index);
Mathieu Chartier90443472015-07-16 20:32:27 -07002666 // Skip compiling classes with generic verifier failures since they will still fail at runtime
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002667 if (context.GetCompiler()->GetVerificationResults()->IsClassRejected(ref)) {
Ian Rogers1ff3c982014-08-12 02:30:58 -07002668 return;
2669 }
Mathieu Chartier736b5602015-09-02 14:54:11 -07002670 // Use a scoped object access to perform to the quick SkipClass check.
Mathieu Chartier736b5602015-09-02 14:54:11 -07002671 ScopedObjectAccess soa(Thread::Current());
2672 StackHandleScope<3> hs(soa.Self());
2673 Handle<mirror::ClassLoader> class_loader(
Mathieu Chartier0795f232016-09-27 18:43:30 -07002674 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader)));
Mathieu Chartier736b5602015-09-02 14:54:11 -07002675 Handle<mirror::Class> klass(
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07002676 hs.NewHandle(class_linker->FindClass(soa.Self(), accessor.GetDescriptor(), class_loader)));
Mathieu Chartier736b5602015-09-02 14:54:11 -07002677 Handle<mirror::DexCache> dex_cache;
Andreas Gampefa4333d2017-02-14 11:10:34 -08002678 if (klass == nullptr) {
Mathieu Chartier736b5602015-09-02 14:54:11 -07002679 soa.Self()->AssertPendingException();
2680 soa.Self()->ClearException();
2681 dex_cache = hs.NewHandle(class_linker->FindDexCache(soa.Self(), dex_file));
2682 } else if (SkipClass(jclass_loader, dex_file, klass.Get())) {
2683 return;
Andreas Gampebb30d5d2018-04-23 09:59:25 -07002684 } else if (&klass->GetDexFile() != &dex_file) {
2685 // Skip a duplicate class (as the resolved class is from another, earlier dex file).
2686 return; // Do not update state.
Mathieu Chartier736b5602015-09-02 14:54:11 -07002687 } else {
2688 dex_cache = hs.NewHandle(klass->GetDexCache());
2689 }
2690
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07002691 // Avoid suspension if there are no methods to compile.
2692 if (accessor.NumDirectMethods() + accessor.NumVirtualMethods() == 0) {
Mathieu Chartier90443472015-07-16 20:32:27 -07002693 return;
Brian Carlstrom7940e442013-07-12 13:46:57 -07002694 }
Mathieu Chartier90443472015-07-16 20:32:27 -07002695
Mathieu Chartier736b5602015-09-02 14:54:11 -07002696 // Go to native so that we don't block GC during compilation.
Mathieu Chartierf1d666e2015-09-03 16:13:34 -07002697 ScopedThreadSuspension sts(soa.Self(), kNative);
Mathieu Chartier736b5602015-09-02 14:54:11 -07002698
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002699 CompilerDriver* const driver = context.GetCompiler();
Mathieu Chartier90443472015-07-16 20:32:27 -07002700
2701 // Can we run DEX-to-DEX compiler on this class ?
Mathieu Chartiera79efdb2018-01-18 16:31:01 -08002702 optimizer::DexToDexCompiler::CompilationLevel dex_to_dex_compilation_level =
Mathieu Chartier736b5602015-09-02 14:54:11 -07002703 GetDexToDexCompilationLevel(soa.Self(), *driver, jclass_loader, dex_file, class_def);
Andreas Gampe5eb0d382015-07-23 01:19:26 -07002704
Mathieu Chartier90443472015-07-16 20:32:27 -07002705
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07002706 const bool compilation_enabled = driver->IsClassToCompile(accessor.GetDescriptor());
Mathieu Chartier90443472015-07-16 20:32:27 -07002707
Mathieu Chartierb7c273c2017-11-10 18:07:56 -08002708 // Compile direct and virtual methods.
2709 int64_t previous_method_idx = -1;
Mathieu Chartier0d896bd2018-05-25 00:20:27 -07002710 for (const ClassAccessor::Method& method : accessor.GetMethods()) {
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07002711 const uint32_t method_idx = method.GetIndex();
Mathieu Chartierb7c273c2017-11-10 18:07:56 -08002712 if (method_idx == previous_method_idx) {
Mathieu Chartier90443472015-07-16 20:32:27 -07002713 // smali can create dex files with two encoded_methods sharing the same method_idx
2714 // http://code.google.com/p/smali/issues/detail?id=119
Mathieu Chartier0d896bd2018-05-25 00:20:27 -07002715 continue;
Mathieu Chartier90443472015-07-16 20:32:27 -07002716 }
Mathieu Chartierb7c273c2017-11-10 18:07:56 -08002717 previous_method_idx = method_idx;
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002718 compile_fn(soa.Self(),
2719 driver,
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07002720 method.GetCodeItem(),
2721 method.GetAccessFlags(),
2722 method.GetInvokeType(class_def.access_flags_),
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002723 class_def_index,
2724 method_idx,
2725 class_loader,
2726 dex_file,
2727 dex_to_dex_compilation_level,
2728 compilation_enabled,
2729 dex_cache);
Mathieu Chartier0d896bd2018-05-25 00:20:27 -07002730 }
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002731 };
2732 context.ForAllLambda(0, dex_file.NumClassDefs(), compile, thread_count);
2733}
2734
2735void CompilerDriver::Compile(jobject class_loader,
2736 const std::vector<const DexFile*>& dex_files,
2737 TimingLogger* timings) {
2738 if (kDebugProfileGuidedCompilation) {
2739 LOG(INFO) << "[ProfileGuidedCompilation] " <<
2740 ((profile_compilation_info_ == nullptr)
2741 ? "null"
2742 : profile_compilation_info_->DumpInfo(&dex_files));
Brian Carlstrom7940e442013-07-12 13:46:57 -07002743 }
Mathieu Chartier90443472015-07-16 20:32:27 -07002744
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002745 dex_to_dex_compiler_.ClearState();
2746 for (const DexFile* dex_file : dex_files) {
2747 CHECK(dex_file != nullptr);
2748 CompileDexFile(this,
2749 class_loader,
2750 *dex_file,
2751 dex_files,
2752 parallel_thread_pool_.get(),
2753 parallel_thread_count_,
2754 timings,
2755 "Compile Dex File Quick",
2756 CompileMethodQuick);
2757 const ArenaPool* const arena_pool = Runtime::Current()->GetArenaPool();
2758 const size_t arena_alloc = arena_pool->GetBytesAllocated();
2759 max_arena_alloc_ = std::max(arena_alloc, max_arena_alloc_);
2760 Runtime::Current()->ReclaimArenaPoolMemory();
2761 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002762
Mathieu Chartier279e3a32018-01-24 18:17:55 -08002763 if (dex_to_dex_compiler_.NumCodeItemsToQuicken(Thread::Current()) > 0u) {
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002764 // TODO: Not visit all of the dex files, its probably rare that only one would have quickened
2765 // methods though.
2766 for (const DexFile* dex_file : dex_files) {
2767 CompileDexFile(this,
2768 class_loader,
2769 *dex_file,
2770 dex_files,
2771 parallel_thread_pool_.get(),
2772 parallel_thread_count_,
2773 timings,
2774 "Compile Dex File Dex2Dex",
2775 CompileMethodDex2Dex);
2776 }
2777 dex_to_dex_compiler_.ClearState();
2778 }
2779
2780 VLOG(compiler) << "Compile: " << GetMemoryUsageString(false);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002781}
2782
Andreas Gampe5eb0d382015-07-23 01:19:26 -07002783void CompilerDriver::AddCompiledMethod(const MethodReference& method_ref,
2784 CompiledMethod* const compiled_method,
2785 size_t non_relative_linker_patch_count) {
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002786 DCHECK(GetCompiledMethod(method_ref) == nullptr) << method_ref.PrettyMethod();
2787 MethodTable::InsertResult result = compiled_methods_.Insert(method_ref,
2788 /*expected*/ nullptr,
2789 compiled_method);
Mathieu Chartieracab8d42016-11-23 13:45:58 -08002790 CHECK(result == MethodTable::kInsertResultSuccess);
Orion Hodson88591fe2018-03-06 13:35:43 +00002791 non_relative_linker_patch_count_.fetch_add(non_relative_linker_patch_count,
2792 std::memory_order_relaxed);
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002793 DCHECK(GetCompiledMethod(method_ref) != nullptr) << method_ref.PrettyMethod();
Brian Carlstrom7940e442013-07-12 13:46:57 -07002794}
2795
Mathieu Chartier279e3a32018-01-24 18:17:55 -08002796CompiledMethod* CompilerDriver::RemoveCompiledMethod(const MethodReference& method_ref) {
2797 CompiledMethod* ret = nullptr;
2798 CHECK(compiled_methods_.Remove(method_ref, &ret));
2799 return ret;
2800}
2801
Vladimir Marko2c64a832018-01-04 11:31:56 +00002802bool CompilerDriver::GetCompiledClass(const ClassReference& ref, ClassStatus* status) const {
Andreas Gampebb846102017-05-11 21:03:35 -07002803 DCHECK(status != nullptr);
Mathieu Chartier1a088d42017-07-18 11:43:57 -07002804 // The table doesn't know if something wasn't inserted. For this case it will return
Vladimir Marko2c64a832018-01-04 11:31:56 +00002805 // ClassStatus::kNotReady. To handle this, just assume anything we didn't try to verify
2806 // is not compiled.
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002807 if (!compiled_classes_.Get(ref, status) ||
Vladimir Marko2c64a832018-01-04 11:31:56 +00002808 *status < ClassStatus::kRetryVerificationAtRuntime) {
Andreas Gampebb846102017-05-11 21:03:35 -07002809 return false;
Brian Carlstrom7940e442013-07-12 13:46:57 -07002810 }
Andreas Gampebb846102017-05-11 21:03:35 -07002811 return true;
Brian Carlstrom7940e442013-07-12 13:46:57 -07002812}
2813
Vladimir Marko2c64a832018-01-04 11:31:56 +00002814ClassStatus CompilerDriver::GetClassStatus(const ClassReference& ref) const {
2815 ClassStatus status = ClassStatus::kNotReady;
Nicolas Geoffray486dda02017-09-11 14:15:52 +01002816 if (!GetCompiledClass(ref, &status)) {
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002817 classpath_classes_.Get(ref, &status);
Nicolas Geoffray486dda02017-09-11 14:15:52 +01002818 }
2819 return status;
2820}
2821
Vladimir Marko2c64a832018-01-04 11:31:56 +00002822void CompilerDriver::RecordClassStatus(const ClassReference& ref, ClassStatus status) {
Nicolas Geoffrayade72d62016-12-15 13:20:02 +00002823 switch (status) {
Vladimir Marko2c64a832018-01-04 11:31:56 +00002824 case ClassStatus::kErrorResolved:
2825 case ClassStatus::kErrorUnresolved:
2826 case ClassStatus::kNotReady:
2827 case ClassStatus::kResolved:
2828 case ClassStatus::kRetryVerificationAtRuntime:
2829 case ClassStatus::kVerified:
2830 case ClassStatus::kSuperclassValidated:
2831 case ClassStatus::kInitialized:
Nicolas Geoffrayade72d62016-12-15 13:20:02 +00002832 break; // Expected states.
2833 default:
2834 LOG(FATAL) << "Unexpected class status for class "
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002835 << PrettyDescriptor(
2836 ref.dex_file->GetClassDescriptor(ref.dex_file->GetClassDef(ref.index)))
Nicolas Geoffrayade72d62016-12-15 13:20:02 +00002837 << " of " << status;
2838 }
2839
Mathieu Chartier1a088d42017-07-18 11:43:57 -07002840 ClassStateTable::InsertResult result;
Nicolas Geoffray486dda02017-09-11 14:15:52 +01002841 ClassStateTable* table = &compiled_classes_;
Mathieu Chartier1a088d42017-07-18 11:43:57 -07002842 do {
Vladimir Marko2c64a832018-01-04 11:31:56 +00002843 ClassStatus existing = ClassStatus::kNotReady;
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002844 if (!table->Get(ref, &existing)) {
Nicolas Geoffray486dda02017-09-11 14:15:52 +01002845 // A classpath class.
Mathieu Chartier010f5cc2017-07-24 15:53:46 -07002846 if (kIsDebugBuild) {
2847 // Check to make sure it's not a dex file for an oat file we are compiling since these
2848 // should always succeed. These do not include classes in for used libraries.
Mathieu Chartier72041a02017-07-14 18:23:25 -07002849 for (const DexFile* dex_file : GetDexFilesForOatFile()) {
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002850 CHECK_NE(ref.dex_file, dex_file) << ref.dex_file->GetLocation();
Mathieu Chartier010f5cc2017-07-24 15:53:46 -07002851 }
2852 }
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002853 if (!classpath_classes_.HaveDexFile(ref.dex_file)) {
Nicolas Geoffray486dda02017-09-11 14:15:52 +01002854 // Boot classpath dex file.
2855 return;
2856 }
2857 table = &classpath_classes_;
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002858 table->Get(ref, &existing);
Mathieu Chartier010f5cc2017-07-24 15:53:46 -07002859 }
Mathieu Chartier1a088d42017-07-18 11:43:57 -07002860 if (existing >= status) {
2861 // Existing status is already better than we expect, break.
2862 break;
2863 }
Nicolas Geoffrayade72d62016-12-15 13:20:02 +00002864 // Update the status if we now have a greater one. This happens with vdex,
2865 // which records a class is verified, but does not resolve it.
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002866 result = table->Insert(ref, existing, status);
2867 CHECK(result != ClassStateTable::kInsertResultInvalidDexFile) << ref.dex_file->GetLocation();
Mathieu Chartier1a088d42017-07-18 11:43:57 -07002868 } while (result != ClassStateTable::kInsertResultSuccess);
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07002869}
2870
Brian Carlstrom7940e442013-07-12 13:46:57 -07002871CompiledMethod* CompilerDriver::GetCompiledMethod(MethodReference ref) const {
Mathieu Chartieracab8d42016-11-23 13:45:58 -08002872 CompiledMethod* compiled_method = nullptr;
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002873 compiled_methods_.Get(ref, &compiled_method);
Mathieu Chartieracab8d42016-11-23 13:45:58 -08002874 return compiled_method;
Brian Carlstrom7940e442013-07-12 13:46:57 -07002875}
2876
Calin Juravlef1c6d9e2015-04-13 18:42:21 +01002877bool CompilerDriver::IsMethodVerifiedWithoutFailures(uint32_t method_idx,
2878 uint16_t class_def_idx,
2879 const DexFile& dex_file) const {
2880 const VerifiedMethod* verified_method = GetVerifiedMethod(&dex_file, method_idx);
2881 if (verified_method != nullptr) {
2882 return !verified_method->HasVerificationFailures();
2883 }
2884
2885 // If we can't find verification metadata, check if this is a system class (we trust that system
2886 // classes have their methods verified). If it's not, be conservative and assume the method
2887 // has not been verified successfully.
2888
2889 // TODO: When compiling the boot image it should be safe to assume that everything is verified,
2890 // even if methods are not found in the verification cache.
2891 const char* descriptor = dex_file.GetClassDescriptor(dex_file.GetClassDef(class_def_idx));
2892 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
2893 Thread* self = Thread::Current();
2894 ScopedObjectAccess soa(self);
2895 bool is_system_class = class_linker->FindSystemClass(self, descriptor) != nullptr;
2896 if (!is_system_class) {
2897 self->ClearException();
2898 }
2899 return is_system_class;
2900}
2901
Vladimir Markof4da6752014-08-01 19:04:18 +01002902size_t CompilerDriver::GetNonRelativeLinkerPatchCount() const {
Orion Hodson88591fe2018-03-06 13:35:43 +00002903 return non_relative_linker_patch_count_.load(std::memory_order_relaxed);
Vladimir Markof4da6752014-08-01 19:04:18 +01002904}
2905
Mathieu Chartierc4ae9162016-04-07 13:19:19 -07002906void CompilerDriver::SetRequiresConstructorBarrier(Thread* self,
2907 const DexFile* dex_file,
2908 uint16_t class_def_index,
2909 bool requires) {
2910 WriterMutexLock mu(self, requires_constructor_barrier_lock_);
2911 requires_constructor_barrier_.emplace(ClassReference(dex_file, class_def_index), requires);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002912}
2913
Mathieu Chartier371bd832016-04-07 10:19:48 -07002914bool CompilerDriver::RequiresConstructorBarrier(Thread* self,
2915 const DexFile* dex_file,
Mathieu Chartierc4ae9162016-04-07 13:19:19 -07002916 uint16_t class_def_index) {
2917 ClassReference class_ref(dex_file, class_def_index);
2918 {
2919 ReaderMutexLock mu(self, requires_constructor_barrier_lock_);
2920 auto it = requires_constructor_barrier_.find(class_ref);
2921 if (it != requires_constructor_barrier_.end()) {
2922 return it->second;
2923 }
Mathieu Chartierb5d38612016-04-07 10:52:52 -07002924 }
Mathieu Chartierc4ae9162016-04-07 13:19:19 -07002925 WriterMutexLock mu(self, requires_constructor_barrier_lock_);
2926 const bool requires = RequiresConstructorBarrier(*dex_file, class_def_index);
2927 requires_constructor_barrier_.emplace(class_ref, requires);
2928 return requires;
Brian Carlstrom7940e442013-07-12 13:46:57 -07002929}
2930
Andreas Gampe8d295f82015-01-20 14:50:21 -08002931std::string CompilerDriver::GetMemoryUsageString(bool extended) const {
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002932 std::ostringstream oss;
Calin Juravle69158982016-03-16 11:53:41 +00002933 const gc::Heap* const heap = Runtime::Current()->GetHeap();
Anton Kirilovdd9473b2016-01-28 15:08:01 +00002934 const size_t java_alloc = heap->GetBytesAllocated();
Calin Juravle69158982016-03-16 11:53:41 +00002935 oss << "arena alloc=" << PrettySize(max_arena_alloc_) << " (" << max_arena_alloc_ << "B)";
Anton Kirilovdd9473b2016-01-28 15:08:01 +00002936 oss << " java alloc=" << PrettySize(java_alloc) << " (" << java_alloc << "B)";
Elliott Hughes7bf5a262015-04-02 20:55:07 -07002937#if defined(__BIONIC__) || defined(__GLIBC__)
Anton Kirilovdd9473b2016-01-28 15:08:01 +00002938 const struct mallinfo info = mallinfo();
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002939 const size_t allocated_space = static_cast<size_t>(info.uordblks);
2940 const size_t free_space = static_cast<size_t>(info.fordblks);
Anton Kirilovdd9473b2016-01-28 15:08:01 +00002941 oss << " native alloc=" << PrettySize(allocated_space) << " (" << allocated_space << "B)"
2942 << " free=" << PrettySize(free_space) << " (" << free_space << "B)";
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002943#endif
Vladimir Marko35831e82015-09-11 11:59:18 +01002944 compiled_method_storage_.DumpMemoryUsage(oss, extended);
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002945 return oss.str();
2946}
2947
Jeff Haodcdc85b2015-12-04 14:06:18 -08002948bool CompilerDriver::MayInlineInternal(const DexFile* inlined_from,
2949 const DexFile* inlined_into) const {
2950 // We're not allowed to inline across dex files if we're the no-inline-from dex file.
2951 if (inlined_from != inlined_into &&
Vladimir Markodc4bcce2018-06-21 16:15:42 +01002952 ContainsElement(compiler_options_->GetNoInlineFromDexFile(), inlined_from)) {
Jeff Haodcdc85b2015-12-04 14:06:18 -08002953 return false;
2954 }
2955
2956 return true;
2957}
2958
Andreas Gampeace0dc12016-01-20 13:33:13 -08002959void CompilerDriver::InitializeThreadPools() {
2960 size_t parallel_count = parallel_thread_count_ > 0 ? parallel_thread_count_ - 1 : 0;
2961 parallel_thread_pool_.reset(
2962 new ThreadPool("Compiler driver thread pool", parallel_count));
2963 single_thread_pool_.reset(new ThreadPool("Single-threaded Compiler driver thread pool", 0));
2964}
2965
2966void CompilerDriver::FreeThreadPools() {
2967 parallel_thread_pool_.reset();
2968 single_thread_pool_.reset();
2969}
2970
Mathieu Chartier72041a02017-07-14 18:23:25 -07002971void CompilerDriver::SetDexFilesForOatFile(const std::vector<const DexFile*>& dex_files) {
2972 dex_files_for_oat_file_ = dex_files;
Nicolas Geoffray486dda02017-09-11 14:15:52 +01002973 compiled_classes_.AddDexFiles(dex_files);
Mathieu Chartier279e3a32018-01-24 18:17:55 -08002974 dex_to_dex_compiler_.SetDexFiles(dex_files);
Nicolas Geoffray486dda02017-09-11 14:15:52 +01002975}
2976
2977void CompilerDriver::SetClasspathDexFiles(const std::vector<const DexFile*>& dex_files) {
2978 classpath_classes_.AddDexFiles(dex_files);
Mathieu Chartier72041a02017-07-14 18:23:25 -07002979}
2980
Brian Carlstrom7940e442013-07-12 13:46:57 -07002981} // namespace art