blob: decb330f3b67c140fb840cfae3461957f29d4e94 [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 "nativehelper/ScopedLocalRef.h"
71#include "object_lock.h"
David Sehr82d046e2018-04-23 08:14:19 -070072#include "profile/profile_compilation_info.h"
Steven Morelande431e272017-07-18 16:53:49 -070073#include "runtime.h"
Orion Hodson26ef34c2017-11-01 13:32:41 +000074#include "runtime_intrinsics.h"
Mathieu Chartier0795f232016-09-27 18:43:30 -070075#include "scoped_thread_state_change-inl.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070076#include "thread.h"
Andreas Gampeb0f370e2014-09-25 22:51:40 -070077#include "thread_list.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070078#include "thread_pool.h"
Ian Rogers848871b2013-08-05 10:56:33 -070079#include "trampolines/trampoline_compiler.h"
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +010080#include "transaction.h"
Mathieu Chartier93764b82017-07-17 14:51:53 -070081#include "utils/atomic_dex_ref_map-inl.h"
Vladimir Marko20f85592015-03-19 10:07:02 +000082#include "utils/dex_cache_arrays_layout-inl.h"
Andreas Gampee21dc3d2014-12-08 16:59:43 -080083#include "utils/swap_space.h"
Nicolas Geoffrayb0bbe8e2016-11-19 10:42:37 +000084#include "vdex_file.h"
Vladimir Marko2bc47802014-02-10 09:43:07 +000085#include "verifier/method_verifier-inl.h"
Steven Morelande431e272017-07-18 16:53:49 -070086#include "verifier/method_verifier.h"
Nicolas Geoffray08025182016-10-25 17:20:18 +010087#include "verifier/verifier_deps.h"
Andreas Gampe6d7abbd2017-04-24 13:19:09 -070088#include "verifier/verifier_enums.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070089
Brian Carlstrom7940e442013-07-12 13:46:57 -070090namespace art {
91
Mathieu Chartier8e219ae2014-08-19 14:29:46 -070092static constexpr bool kTimeCompileMethod = !kIsDebugBuild;
93
Calin Juravle226501b2015-12-11 14:41:31 +000094// Print additional info during profile guided compilation.
95static constexpr bool kDebugProfileGuidedCompilation = false;
96
Chang Xing70f689d2017-06-08 17:16:12 -070097// Max encoded fields allowed for initializing app image. Hardcode the number for now
98// because 5000 should be large enough.
99static constexpr uint32_t kMaxEncodedFields = 5000;
100
Brian Carlstrom7940e442013-07-12 13:46:57 -0700101static double Percentage(size_t x, size_t y) {
102 return 100.0 * (static_cast<double>(x)) / (static_cast<double>(x + y));
103}
104
105static void DumpStat(size_t x, size_t y, const char* str) {
106 if (x == 0 && y == 0) {
107 return;
108 }
Ian Rogerse732ef12013-10-09 15:22:24 -0700109 LOG(INFO) << Percentage(x, y) << "% of " << str << " for " << (x + y) << " cases";
Brian Carlstrom7940e442013-07-12 13:46:57 -0700110}
111
Vladimir Markof096aad2014-01-23 15:51:58 +0000112class CompilerDriver::AOTCompilationStats {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700113 public:
114 AOTCompilationStats()
115 : stats_lock_("AOT compilation statistics lock"),
Brian Carlstrom7940e442013-07-12 13:46:57 -0700116 resolved_types_(0), unresolved_types_(0),
117 resolved_instance_fields_(0), unresolved_instance_fields_(0),
118 resolved_local_static_fields_(0), resolved_static_fields_(0), unresolved_static_fields_(0),
119 type_based_devirtualization_(0),
120 safe_casts_(0), not_safe_casts_(0) {
121 for (size_t i = 0; i <= kMaxInvokeType; i++) {
122 resolved_methods_[i] = 0;
123 unresolved_methods_[i] = 0;
124 virtual_made_direct_[i] = 0;
125 direct_calls_to_boot_[i] = 0;
126 direct_methods_to_boot_[i] = 0;
127 }
128 }
129
130 void Dump() {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700131 DumpStat(resolved_types_, unresolved_types_, "types resolved");
132 DumpStat(resolved_instance_fields_, unresolved_instance_fields_, "instance fields resolved");
133 DumpStat(resolved_local_static_fields_ + resolved_static_fields_, unresolved_static_fields_,
134 "static fields resolved");
135 DumpStat(resolved_local_static_fields_, resolved_static_fields_ + unresolved_static_fields_,
136 "static fields local to a class");
137 DumpStat(safe_casts_, not_safe_casts_, "check-casts removed based on type information");
138 // Note, the code below subtracts the stat value so that when added to the stat value we have
139 // 100% of samples. TODO: clean this up.
140 DumpStat(type_based_devirtualization_,
141 resolved_methods_[kVirtual] + unresolved_methods_[kVirtual] +
142 resolved_methods_[kInterface] + unresolved_methods_[kInterface] -
143 type_based_devirtualization_,
144 "virtual/interface calls made direct based on type information");
145
146 for (size_t i = 0; i <= kMaxInvokeType; i++) {
147 std::ostringstream oss;
148 oss << static_cast<InvokeType>(i) << " methods were AOT resolved";
149 DumpStat(resolved_methods_[i], unresolved_methods_[i], oss.str().c_str());
150 if (virtual_made_direct_[i] > 0) {
151 std::ostringstream oss2;
152 oss2 << static_cast<InvokeType>(i) << " methods made direct";
153 DumpStat(virtual_made_direct_[i],
154 resolved_methods_[i] + unresolved_methods_[i] - virtual_made_direct_[i],
155 oss2.str().c_str());
156 }
157 if (direct_calls_to_boot_[i] > 0) {
158 std::ostringstream oss2;
159 oss2 << static_cast<InvokeType>(i) << " method calls are direct into boot";
160 DumpStat(direct_calls_to_boot_[i],
161 resolved_methods_[i] + unresolved_methods_[i] - direct_calls_to_boot_[i],
162 oss2.str().c_str());
163 }
164 if (direct_methods_to_boot_[i] > 0) {
165 std::ostringstream oss2;
166 oss2 << static_cast<InvokeType>(i) << " method calls have methods in boot";
167 DumpStat(direct_methods_to_boot_[i],
168 resolved_methods_[i] + unresolved_methods_[i] - direct_methods_to_boot_[i],
169 oss2.str().c_str());
170 }
171 }
172 }
173
174// Allow lossy statistics in non-debug builds.
175#ifndef NDEBUG
176#define STATS_LOCK() MutexLock mu(Thread::Current(), stats_lock_)
177#else
178#define STATS_LOCK()
179#endif
180
Mathieu Chartier90443472015-07-16 20:32:27 -0700181 void TypeDoesntNeedAccessCheck() REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700182 STATS_LOCK();
183 resolved_types_++;
184 }
185
Mathieu Chartier90443472015-07-16 20:32:27 -0700186 void TypeNeedsAccessCheck() REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700187 STATS_LOCK();
188 unresolved_types_++;
189 }
190
Mathieu Chartier90443472015-07-16 20:32:27 -0700191 void ResolvedInstanceField() REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700192 STATS_LOCK();
193 resolved_instance_fields_++;
194 }
195
Mathieu Chartier90443472015-07-16 20:32:27 -0700196 void UnresolvedInstanceField() REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700197 STATS_LOCK();
198 unresolved_instance_fields_++;
199 }
200
Mathieu Chartier90443472015-07-16 20:32:27 -0700201 void ResolvedLocalStaticField() REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700202 STATS_LOCK();
203 resolved_local_static_fields_++;
204 }
205
Mathieu Chartier90443472015-07-16 20:32:27 -0700206 void ResolvedStaticField() REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700207 STATS_LOCK();
208 resolved_static_fields_++;
209 }
210
Mathieu Chartier90443472015-07-16 20:32:27 -0700211 void UnresolvedStaticField() REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700212 STATS_LOCK();
213 unresolved_static_fields_++;
214 }
215
216 // Indicate that type information from the verifier led to devirtualization.
Mathieu Chartier90443472015-07-16 20:32:27 -0700217 void PreciseTypeDevirtualization() REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700218 STATS_LOCK();
219 type_based_devirtualization_++;
220 }
221
Brian Carlstrom7940e442013-07-12 13:46:57 -0700222 // A check-cast could be eliminated due to verifier type analysis.
Mathieu Chartier90443472015-07-16 20:32:27 -0700223 void SafeCast() REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700224 STATS_LOCK();
225 safe_casts_++;
226 }
227
228 // A check-cast couldn't be eliminated due to verifier type analysis.
Mathieu Chartier90443472015-07-16 20:32:27 -0700229 void NotASafeCast() REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700230 STATS_LOCK();
231 not_safe_casts_++;
232 }
233
234 private:
235 Mutex stats_lock_;
236
Brian Carlstrom7940e442013-07-12 13:46:57 -0700237 size_t resolved_types_;
238 size_t unresolved_types_;
239
240 size_t resolved_instance_fields_;
241 size_t unresolved_instance_fields_;
242
243 size_t resolved_local_static_fields_;
244 size_t resolved_static_fields_;
245 size_t unresolved_static_fields_;
246 // Type based devirtualization for invoke interface and virtual.
247 size_t type_based_devirtualization_;
248
249 size_t resolved_methods_[kMaxInvokeType + 1];
250 size_t unresolved_methods_[kMaxInvokeType + 1];
251 size_t virtual_made_direct_[kMaxInvokeType + 1];
252 size_t direct_calls_to_boot_[kMaxInvokeType + 1];
253 size_t direct_methods_to_boot_[kMaxInvokeType + 1];
254
255 size_t safe_casts_;
256 size_t not_safe_casts_;
257
258 DISALLOW_COPY_AND_ASSIGN(AOTCompilationStats);
259};
260
Jeff Haodcdc85b2015-12-04 14:06:18 -0800261CompilerDriver::CompilerDriver(
262 const CompilerOptions* compiler_options,
263 VerificationResults* verification_results,
Jeff Haodcdc85b2015-12-04 14:06:18 -0800264 Compiler::Kind compiler_kind,
265 InstructionSet instruction_set,
266 const InstructionSetFeatures* instruction_set_features,
Vladimir Marko944da602016-02-19 12:27:55 +0000267 std::unordered_set<std::string>* image_classes,
Vladimir Marko944da602016-02-19 12:27:55 +0000268 size_t thread_count,
Vladimir Marko944da602016-02-19 12:27:55 +0000269 int swap_fd,
Calin Juravle998c2162015-12-21 15:39:33 +0200270 const ProfileCompilationInfo* profile_compilation_info)
Calin Juravle226501b2015-12-11 14:41:31 +0000271 : compiler_options_(compiler_options),
Brian Carlstrom6449c622014-02-10 23:48:36 -0800272 verification_results_(verification_results),
Ian Rogers72d32622014-05-06 16:20:11 -0700273 compiler_(Compiler::Create(this, compiler_kind)),
Jeff Hao48699fb2015-04-06 14:21:37 -0700274 compiler_kind_(compiler_kind),
Vladimir Marko33bff252017-11-01 14:35:42 +0000275 instruction_set_(
276 instruction_set == InstructionSet::kArm ? InstructionSet::kThumb2 : instruction_set),
Dave Allison70202782013-10-22 17:52:19 -0700277 instruction_set_features_(instruction_set_features),
Mathieu Chartierc4ae9162016-04-07 13:19:19 -0700278 requires_constructor_barrier_lock_("constructor barrier lock"),
Vladimir Markof4da6752014-08-01 19:04:18 +0100279 non_relative_linker_patch_count_(0u),
Brian Carlstrom7940e442013-07-12 13:46:57 -0700280 image_classes_(image_classes),
Andreas Gampef39208f2017-10-19 15:06:59 -0700281 number_of_soft_verifier_failures_(0),
Andreas Gampe6cf49e52015-03-05 13:08:45 -0800282 had_hard_verifier_failure_(false),
Andreas Gampeace0dc12016-01-20 13:33:13 -0800283 parallel_thread_count_(thread_count),
Brian Carlstrom7940e442013-07-12 13:46:57 -0700284 stats_(new AOTCompilationStats),
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700285 compiler_context_(nullptr),
Alexey Frunze19f6c692016-11-30 19:19:55 -0800286 support_boot_image_fixup_(true),
Calin Juravle998c2162015-12-21 15:39:33 +0200287 compiled_method_storage_(swap_fd),
Calin Juravle69158982016-03-16 11:53:41 +0000288 profile_compilation_info_(profile_compilation_info),
Vladimir Marko492a7fa2016-06-01 18:38:43 +0100289 max_arena_alloc_(0),
Mathieu Chartiera79efdb2018-01-18 16:31:01 -0800290 dex_to_dex_compiler_(this) {
Brian Carlstrom6449c622014-02-10 23:48:36 -0800291 DCHECK(compiler_options_ != nullptr);
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700292
Ian Rogers72d32622014-05-06 16:20:11 -0700293 compiler_->Init();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700294
Vladimir Markoaad75c62016-10-03 08:46:48 +0000295 if (GetCompilerOptions().IsBootImage()) {
Mathieu Chartierc5dd3192015-12-09 16:38:30 -0800296 CHECK(image_classes_.get() != nullptr) << "Expected image classes for boot image";
297 }
Andreas Gampecac31ad2017-11-06 20:01:17 -0800298
299 compiled_method_storage_.SetDedupeEnabled(compiler_options_->DeduplicateCode());
Brian Carlstrom7940e442013-07-12 13:46:57 -0700300}
301
302CompilerDriver::~CompilerDriver() {
Mathieu Chartier93764b82017-07-17 14:51:53 -0700303 compiled_methods_.Visit([this](const DexFileReference& ref ATTRIBUTE_UNUSED,
Mathieu Chartieracab8d42016-11-23 13:45:58 -0800304 CompiledMethod* method) {
305 if (method != nullptr) {
306 CompiledMethod::ReleaseSwapAllocatedCompiledMethod(this, method);
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800307 }
Mathieu Chartieracab8d42016-11-23 13:45:58 -0800308 });
Ian Rogers72d32622014-05-06 16:20:11 -0700309 compiler_->UnInit();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700310}
311
Vladimir Marko35831e82015-09-11 11:59:18 +0100312
Ian Rogersdd7624d2014-03-14 17:43:00 -0700313#define CREATE_TRAMPOLINE(type, abi, offset) \
Andreas Gampeaf13ad92014-04-11 12:07:48 -0700314 if (Is64BitInstructionSet(instruction_set_)) { \
Ian Rogersdd7624d2014-03-14 17:43:00 -0700315 return CreateTrampoline64(instruction_set_, abi, \
Andreas Gampe542451c2016-07-26 09:02:02 -0700316 type ## _ENTRYPOINT_OFFSET(PointerSize::k64, offset)); \
Ian Rogersdd7624d2014-03-14 17:43:00 -0700317 } else { \
318 return CreateTrampoline32(instruction_set_, abi, \
Andreas Gampe542451c2016-07-26 09:02:02 -0700319 type ## _ENTRYPOINT_OFFSET(PointerSize::k32, offset)); \
Ian Rogersdd7624d2014-03-14 17:43:00 -0700320 }
321
Vladimir Marko93205e32016-04-13 11:59:46 +0100322std::unique_ptr<const std::vector<uint8_t>> CompilerDriver::CreateJniDlsymLookup() const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700323 CREATE_TRAMPOLINE(JNI, kJniAbi, pDlsymLookup)
Ian Rogers848871b2013-08-05 10:56:33 -0700324}
325
Vladimir Marko93205e32016-04-13 11:59:46 +0100326std::unique_ptr<const std::vector<uint8_t>> CompilerDriver::CreateQuickGenericJniTrampoline()
327 const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700328 CREATE_TRAMPOLINE(QUICK, kQuickAbi, pQuickGenericJniTrampoline)
Andreas Gampe2da88232014-02-27 12:26:20 -0800329}
330
Vladimir Marko93205e32016-04-13 11:59:46 +0100331std::unique_ptr<const std::vector<uint8_t>> CompilerDriver::CreateQuickImtConflictTrampoline()
332 const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700333 CREATE_TRAMPOLINE(QUICK, kQuickAbi, pQuickImtConflictTrampoline)
Jeff Hao88474b42013-10-23 16:24:40 -0700334}
335
Vladimir Marko93205e32016-04-13 11:59:46 +0100336std::unique_ptr<const std::vector<uint8_t>> CompilerDriver::CreateQuickResolutionTrampoline()
337 const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700338 CREATE_TRAMPOLINE(QUICK, kQuickAbi, pQuickResolutionTrampoline)
Brian Carlstrom7940e442013-07-12 13:46:57 -0700339}
340
Vladimir Marko93205e32016-04-13 11:59:46 +0100341std::unique_ptr<const std::vector<uint8_t>> CompilerDriver::CreateQuickToInterpreterBridge()
342 const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700343 CREATE_TRAMPOLINE(QUICK, kQuickAbi, pQuickToInterpreterBridge)
Brian Carlstrom7940e442013-07-12 13:46:57 -0700344}
Ian Rogersdd7624d2014-03-14 17:43:00 -0700345#undef CREATE_TRAMPOLINE
Brian Carlstrom7940e442013-07-12 13:46:57 -0700346
347void CompilerDriver::CompileAll(jobject class_loader,
Brian Carlstrom45602482013-07-21 22:07:55 -0700348 const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -0800349 TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700350 DCHECK(!Runtime::Current()->IsStarted());
Andreas Gampeace0dc12016-01-20 13:33:13 -0800351
352 InitializeThreadPools();
353
Andreas Gampe8d295f82015-01-20 14:50:21 -0800354 VLOG(compiler) << "Before precompile " << GetMemoryUsageString(false);
Andreas Gampe740667a2015-09-15 17:55:06 -0700355 // Precompile:
356 // 1) Load image classes
357 // 2) Resolve all classes
358 // 3) Attempt to verify all classes
359 // 4) Attempt to initialize image classes, and trivially initialized classes
Nicolas Geoffrayb0bbe8e2016-11-19 10:42:37 +0000360 PreCompile(class_loader, dex_files, timings);
Vladimir Markoaad75c62016-10-03 08:46:48 +0000361 if (GetCompilerOptions().IsBootImage()) {
Nicolas Geoffray762869d2016-07-15 15:28:35 +0100362 // We don't need to setup the intrinsics for non boot image compilation, as
363 // those compilations will pick up a boot image that have the ArtMethod already
364 // set with the intrinsics flag.
Orion Hodson26ef34c2017-11-01 13:32:41 +0000365 InitializeIntrinsics();
Nicolas Geoffray762869d2016-07-15 15:28:35 +0100366 }
Andreas Gampe740667a2015-09-15 17:55:06 -0700367 // Compile:
368 // 1) Compile all classes and methods enabled for compilation. May fall back to dex-to-dex
369 // compilation.
Nicolas Geoffray49cda062017-04-21 13:08:25 +0100370 if (GetCompilerOptions().IsAnyCompilationEnabled()) {
Andreas Gampeace0dc12016-01-20 13:33:13 -0800371 Compile(class_loader, dex_files, timings);
Andreas Gampe740667a2015-09-15 17:55:06 -0700372 }
Nicolas Geoffray2d8801f2017-11-28 15:50:07 +0000373 if (GetCompilerOptions().GetDumpStats()) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700374 stats_->Dump();
375 }
Andreas Gampeace0dc12016-01-20 13:33:13 -0800376
377 FreeThreadPools();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700378}
379
Mathieu Chartiera79efdb2018-01-18 16:31:01 -0800380static optimizer::DexToDexCompiler::CompilationLevel GetDexToDexCompilationLevel(
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700381 Thread* self, const CompilerDriver& driver, Handle<mirror::ClassLoader> class_loader,
382 const DexFile& dex_file, const DexFile::ClassDef& class_def)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700383 REQUIRES_SHARED(Locks::mutator_lock_) {
Nicolas Geoffrayf3075272018-01-08 12:41:19 +0000384 // When the dex file is uncompressed in the APK, we do not generate a copy in the .vdex
385 // file. As a result, dex2oat will map the dex file read-only, and we only need to check
386 // that to know if we can do quickening.
387 if (dex_file.GetContainer() != nullptr && dex_file.GetContainer()->IsReadOnly()) {
388 return optimizer::DexToDexCompiler::CompilationLevel::kDontDexToDexCompile;
389 }
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800390 auto* const runtime = Runtime::Current();
Nicolas Geoffray49cda062017-04-21 13:08:25 +0100391 DCHECK(driver.GetCompilerOptions().IsQuickeningCompilationEnabled());
Brian Carlstrom7940e442013-07-12 13:46:57 -0700392 const char* descriptor = dex_file.GetClassDescriptor(class_def);
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800393 ClassLinker* class_linker = runtime->GetClassLinker();
Ian Rogers98379392014-02-24 16:53:16 -0800394 mirror::Class* klass = class_linker->FindClass(self, descriptor, class_loader);
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700395 if (klass == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700396 CHECK(self->IsExceptionPending());
397 self->ClearException();
Mathieu Chartiera79efdb2018-01-18 16:31:01 -0800398 return optimizer::DexToDexCompiler::CompilationLevel::kDontDexToDexCompile;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700399 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700400 // DexToDex at the kOptimize level may introduce quickened opcodes, which replace symbolic
401 // references with actual offsets. We cannot re-verify such instructions.
402 //
403 // We store the verification information in the class status in the oat file, which the linker
404 // can validate (checksums) and use to skip load-time verification. It is thus safe to
405 // optimize when a class has been fully verified before.
Mathieu Chartiera79efdb2018-01-18 16:31:01 -0800406 optimizer::DexToDexCompiler::CompilationLevel max_level =
407 optimizer::DexToDexCompiler::CompilationLevel::kOptimize;
Alex Lighte40dd382017-01-25 17:44:53 -0800408 if (driver.GetCompilerOptions().GetDebuggable()) {
409 // We are debuggable so definitions of classes might be changed. We don't want to do any
410 // optimizations that could break that.
Mathieu Chartiera79efdb2018-01-18 16:31:01 -0800411 max_level = optimizer::DexToDexCompiler::CompilationLevel::kDontDexToDexCompile;
Alex Lighte40dd382017-01-25 17:44:53 -0800412 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700413 if (klass->IsVerified()) {
Sebastien Hertz75021222013-07-16 18:34:50 +0200414 // Class is verified so we can enable DEX-to-DEX compilation for performance.
Alex Lighte40dd382017-01-25 17:44:53 -0800415 return max_level;
Sebastien Hertz75021222013-07-16 18:34:50 +0200416 } else {
Andreas Gampe1a4bc7f2017-03-27 14:57:30 -0700417 // Class verification has failed: do not run DEX-to-DEX optimizations.
Mathieu Chartiera79efdb2018-01-18 16:31:01 -0800418 return optimizer::DexToDexCompiler::CompilationLevel::kDontDexToDexCompile;
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700419 }
420}
421
Mathieu Chartiera79efdb2018-01-18 16:31:01 -0800422static optimizer::DexToDexCompiler::CompilationLevel GetDexToDexCompilationLevel(
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700423 Thread* self,
424 const CompilerDriver& driver,
425 jobject jclass_loader,
426 const DexFile& dex_file,
427 const DexFile::ClassDef& class_def) {
428 ScopedObjectAccess soa(self);
429 StackHandleScope<1> hs(soa.Self());
430 Handle<mirror::ClassLoader> class_loader(
Mathieu Chartier0795f232016-09-27 18:43:30 -0700431 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader)));
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700432 return GetDexToDexCompilationLevel(self, driver, class_loader, dex_file, class_def);
433}
434
435// Does the runtime for the InstructionSet provide an implementation returned by
436// GetQuickGenericJniStub allowing down calls that aren't compiled using a JNI compiler?
437static bool InstructionSetHasGenericJniStub(InstructionSet isa) {
438 switch (isa) {
Vladimir Marko33bff252017-11-01 14:35:42 +0000439 case InstructionSet::kArm:
440 case InstructionSet::kArm64:
441 case InstructionSet::kThumb2:
442 case InstructionSet::kMips:
443 case InstructionSet::kMips64:
444 case InstructionSet::kX86:
445 case InstructionSet::kX86_64: return true;
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700446 default: return false;
447 }
448}
449
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800450template <typename CompileFn>
451static void CompileMethodHarness(
452 Thread* self,
453 CompilerDriver* driver,
454 const DexFile::CodeItem* code_item,
455 uint32_t access_flags,
456 InvokeType invoke_type,
457 uint16_t class_def_idx,
458 uint32_t method_idx,
459 Handle<mirror::ClassLoader> class_loader,
460 const DexFile& dex_file,
461 optimizer::DexToDexCompiler::CompilationLevel dex_to_dex_compilation_level,
462 bool compilation_enabled,
463 Handle<mirror::DexCache> dex_cache,
464 CompileFn compile_fn) {
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700465 DCHECK(driver != nullptr);
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800466 CompiledMethod* compiled_method;
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700467 uint64_t start_ns = kTimeCompileMethod ? NanoTime() : 0;
468 MethodReference method_ref(&dex_file, method_idx);
469
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800470 compiled_method = compile_fn(self,
471 driver,
472 code_item,
473 access_flags,
474 invoke_type,
475 class_def_idx,
476 method_idx,
477 class_loader,
478 dex_file,
479 dex_to_dex_compilation_level,
480 compilation_enabled,
481 dex_cache);
Igor Murashkin9d4b6da2016-07-29 09:51:58 -0700482
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700483 if (kTimeCompileMethod) {
484 uint64_t duration_ns = NanoTime() - start_ns;
485 if (duration_ns > MsToNs(driver->GetCompiler()->GetMaximumCompilationTimeBeforeWarning())) {
David Sehr709b0702016-10-13 09:12:37 -0700486 LOG(WARNING) << "Compilation of " << dex_file.PrettyMethod(method_idx)
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700487 << " took " << PrettyDuration(duration_ns);
488 }
489 }
490
491 if (compiled_method != nullptr) {
492 // Count non-relative linker patches.
493 size_t non_relative_linker_patch_count = 0u;
Vladimir Markod8dbc8d2017-09-20 13:37:47 +0100494 for (const linker::LinkerPatch& patch : compiled_method->GetPatches()) {
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700495 if (!patch.IsPcRelative()) {
496 ++non_relative_linker_patch_count;
497 }
498 }
499 bool compile_pic = driver->GetCompilerOptions().GetCompilePic(); // Off by default
500 // When compiling with PIC, there should be zero non-relative linker patches
501 CHECK(!compile_pic || non_relative_linker_patch_count == 0u);
502
503 driver->AddCompiledMethod(method_ref, compiled_method, non_relative_linker_patch_count);
504 }
505
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700506 if (self->IsExceptionPending()) {
507 ScopedObjectAccess soa(self);
David Sehr709b0702016-10-13 09:12:37 -0700508 LOG(FATAL) << "Unexpected exception compiling: " << dex_file.PrettyMethod(method_idx) << "\n"
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700509 << self->GetException()->Dump();
Sebastien Hertz75021222013-07-16 18:34:50 +0200510 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700511}
512
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800513static void CompileMethodDex2Dex(
514 Thread* self,
515 CompilerDriver* driver,
516 const DexFile::CodeItem* code_item,
517 uint32_t access_flags,
518 InvokeType invoke_type,
519 uint16_t class_def_idx,
520 uint32_t method_idx,
521 Handle<mirror::ClassLoader> class_loader,
522 const DexFile& dex_file,
523 optimizer::DexToDexCompiler::CompilationLevel dex_to_dex_compilation_level,
524 bool compilation_enabled,
525 Handle<mirror::DexCache> dex_cache) {
526 auto dex_2_dex_fn = [](Thread* self ATTRIBUTE_UNUSED,
527 CompilerDriver* driver,
528 const DexFile::CodeItem* code_item,
529 uint32_t access_flags,
530 InvokeType invoke_type,
531 uint16_t class_def_idx,
532 uint32_t method_idx,
533 Handle<mirror::ClassLoader> class_loader,
534 const DexFile& dex_file,
535 optimizer::DexToDexCompiler::CompilationLevel dex_to_dex_compilation_level,
536 bool compilation_enabled ATTRIBUTE_UNUSED,
537 Handle<mirror::DexCache> dex_cache ATTRIBUTE_UNUSED) -> CompiledMethod* {
538 DCHECK(driver != nullptr);
539 MethodReference method_ref(&dex_file, method_idx);
540
541 optimizer::DexToDexCompiler* const compiler = &driver->GetDexToDexCompiler();
542
543 if (compiler->ShouldCompileMethod(method_ref)) {
544 VerificationResults* results = driver->GetVerificationResults();
545 DCHECK(results != nullptr);
546 const VerifiedMethod* verified_method = results->GetVerifiedMethod(method_ref);
547 // Do not optimize if a VerifiedMethod is missing. SafeCast elision,
548 // for example, relies on it.
549 return compiler->CompileMethod(
550 code_item,
551 access_flags,
552 invoke_type,
553 class_def_idx,
554 method_idx,
555 class_loader,
556 dex_file,
557 (verified_method != nullptr)
558 ? dex_to_dex_compilation_level
559 : optimizer::DexToDexCompiler::CompilationLevel::kDontDexToDexCompile);
560 }
561 return nullptr;
562 };
563 CompileMethodHarness(self,
564 driver,
565 code_item,
566 access_flags,
567 invoke_type,
568 class_def_idx,
569 method_idx,
570 class_loader,
571 dex_file,
572 dex_to_dex_compilation_level,
573 compilation_enabled,
574 dex_cache,
575 dex_2_dex_fn);
576}
577
578static void CompileMethodQuick(
579 Thread* self,
580 CompilerDriver* driver,
581 const DexFile::CodeItem* code_item,
582 uint32_t access_flags,
583 InvokeType invoke_type,
584 uint16_t class_def_idx,
585 uint32_t method_idx,
586 Handle<mirror::ClassLoader> class_loader,
587 const DexFile& dex_file,
588 optimizer::DexToDexCompiler::CompilationLevel dex_to_dex_compilation_level,
589 bool compilation_enabled,
590 Handle<mirror::DexCache> dex_cache) {
591 auto quick_fn = [](
592 Thread* self,
593 CompilerDriver* driver,
594 const DexFile::CodeItem* code_item,
595 uint32_t access_flags,
596 InvokeType invoke_type,
597 uint16_t class_def_idx,
598 uint32_t method_idx,
599 Handle<mirror::ClassLoader> class_loader,
600 const DexFile& dex_file,
601 optimizer::DexToDexCompiler::CompilationLevel dex_to_dex_compilation_level,
602 bool compilation_enabled,
603 Handle<mirror::DexCache> dex_cache) {
604 DCHECK(driver != nullptr);
605 CompiledMethod* compiled_method = nullptr;
606 MethodReference method_ref(&dex_file, method_idx);
607
608 if ((access_flags & kAccNative) != 0) {
609 // Are we extracting only and have support for generic JNI down calls?
610 if (!driver->GetCompilerOptions().IsJniCompilationEnabled() &&
611 InstructionSetHasGenericJniStub(driver->GetInstructionSet())) {
612 // Leaving this empty will trigger the generic JNI version
613 } else {
614 // Query any JNI optimization annotations such as @FastNative or @CriticalNative.
615 access_flags |= annotations::GetNativeMethodAnnotationAccessFlags(
616 dex_file, dex_file.GetClassDef(class_def_idx), method_idx);
617
618 compiled_method = driver->GetCompiler()->JniCompile(
619 access_flags, method_idx, dex_file, dex_cache);
620 CHECK(compiled_method != nullptr);
621 }
622 } else if ((access_flags & kAccAbstract) != 0) {
623 // Abstract methods don't have code.
624 } else {
625 VerificationResults* results = driver->GetVerificationResults();
626 DCHECK(results != nullptr);
627 const VerifiedMethod* verified_method = results->GetVerifiedMethod(method_ref);
628 bool compile = compilation_enabled &&
629 // Basic checks, e.g., not <clinit>.
630 results->IsCandidateForCompilation(method_ref, access_flags) &&
631 // Did not fail to create VerifiedMethod metadata.
632 verified_method != nullptr &&
633 // Do not have failures that should punt to the interpreter.
634 !verified_method->HasRuntimeThrow() &&
635 (verified_method->GetEncounteredVerificationFailures() &
636 (verifier::VERIFY_ERROR_FORCE_INTERPRETER | verifier::VERIFY_ERROR_LOCKING)) == 0 &&
637 // Is eligable for compilation by methods-to-compile filter.
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800638 driver->ShouldCompileBasedOnProfile(method_ref);
639
640 if (compile) {
641 // NOTE: if compiler declines to compile this method, it will return null.
642 compiled_method = driver->GetCompiler()->Compile(code_item,
643 access_flags,
644 invoke_type,
645 class_def_idx,
646 method_idx,
647 class_loader,
648 dex_file,
649 dex_cache);
650 }
651 if (compiled_method == nullptr &&
652 dex_to_dex_compilation_level !=
653 optimizer::DexToDexCompiler::CompilationLevel::kDontDexToDexCompile) {
654 DCHECK(!Runtime::Current()->UseJitCompilation());
655 // TODO: add a command-line option to disable DEX-to-DEX compilation ?
Mathieu Chartier279e3a32018-01-24 18:17:55 -0800656 driver->GetDexToDexCompiler().MarkForCompilation(self, method_ref);
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800657 }
658 }
659 return compiled_method;
660 };
661 CompileMethodHarness(self,
662 driver,
663 code_item,
664 access_flags,
665 invoke_type,
666 class_def_idx,
667 method_idx,
668 class_loader,
669 dex_file,
670 dex_to_dex_compilation_level,
671 compilation_enabled,
672 dex_cache,
673 quick_fn);
674}
675
Mathieu Chartiere401d142015-04-22 13:56:20 -0700676void CompilerDriver::CompileOne(Thread* self, ArtMethod* method, TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700677 DCHECK(!Runtime::Current()->IsStarted());
Brian Carlstrom7940e442013-07-12 13:46:57 -0700678 jobject jclass_loader;
679 const DexFile* dex_file;
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700680 uint16_t class_def_idx;
Ian Rogersef7d42f2014-01-06 12:55:46 -0800681 uint32_t method_idx = method->GetDexMethodIndex();
682 uint32_t access_flags = method->GetAccessFlags();
683 InvokeType invoke_type = method->GetInvokeType();
Vladimir Marko8d6768d2017-03-14 10:13:21 +0000684 StackHandleScope<2> hs(self);
Mathieu Chartier736b5602015-09-02 14:54:11 -0700685 Handle<mirror::DexCache> dex_cache(hs.NewHandle(method->GetDexCache()));
Vladimir Marko8d6768d2017-03-14 10:13:21 +0000686 Handle<mirror::ClassLoader> class_loader(
687 hs.NewHandle(method->GetDeclaringClass()->GetClassLoader()));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700688 {
689 ScopedObjectAccessUnchecked soa(self);
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800690 ScopedLocalRef<jobject> local_class_loader(
Vladimir Marko8d6768d2017-03-14 10:13:21 +0000691 soa.Env(), soa.AddLocalReference<jobject>(class_loader.Get()));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700692 jclass_loader = soa.Env()->NewGlobalRef(local_class_loader.get());
693 // Find the dex_file
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700694 dex_file = method->GetDexFile();
695 class_def_idx = method->GetClassDefIndex();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700696 }
Ian Rogersef7d42f2014-01-06 12:55:46 -0800697 const DexFile::CodeItem* code_item = dex_file->GetCodeItem(method->GetCodeItemOffset());
Mathieu Chartier736b5602015-09-02 14:54:11 -0700698
699 // Go to native so that we don't block GC during compilation.
Mathieu Chartierf1d666e2015-09-03 16:13:34 -0700700 ScopedThreadSuspension sts(self, kNative);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700701
702 std::vector<const DexFile*> dex_files;
703 dex_files.push_back(dex_file);
704
Andreas Gampeace0dc12016-01-20 13:33:13 -0800705 InitializeThreadPools();
706
Nicolas Geoffrayb0bbe8e2016-11-19 10:42:37 +0000707 PreCompile(jclass_loader, dex_files, timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700708
Brian Carlstrom7940e442013-07-12 13:46:57 -0700709 // Can we run DEX-to-DEX compiler on this class ?
Mathieu Chartiera79efdb2018-01-18 16:31:01 -0800710 optimizer::DexToDexCompiler::CompilationLevel dex_to_dex_compilation_level =
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700711 GetDexToDexCompilationLevel(self,
712 *this,
713 jclass_loader,
714 *dex_file,
715 dex_file->GetClassDef(class_def_idx));
716
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800717 CompileMethodQuick(self,
718 this,
719 code_item,
720 access_flags,
721 invoke_type,
722 class_def_idx,
723 method_idx,
724 class_loader,
725 *dex_file,
726 dex_to_dex_compilation_level,
727 true,
728 dex_cache);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700729
Mathieu Chartier279e3a32018-01-24 18:17:55 -0800730 const size_t num_methods = dex_to_dex_compiler_.NumCodeItemsToQuicken(self);
Mathieu Chartiera79efdb2018-01-18 16:31:01 -0800731 if (num_methods != 0) {
732 DCHECK_EQ(num_methods, 1u);
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800733 CompileMethodDex2Dex(self,
734 this,
735 code_item,
736 access_flags,
737 invoke_type,
738 class_def_idx,
739 method_idx,
740 class_loader,
741 *dex_file,
742 dex_to_dex_compilation_level,
743 true,
744 dex_cache);
Mathieu Chartiera79efdb2018-01-18 16:31:01 -0800745 dex_to_dex_compiler_.ClearState();
Vladimir Marko492a7fa2016-06-01 18:38:43 +0100746 }
747
Andreas Gampeace0dc12016-01-20 13:33:13 -0800748 FreeThreadPools();
749
Brian Carlstrom7940e442013-07-12 13:46:57 -0700750 self->GetJniEnv()->DeleteGlobalRef(jclass_loader);
Mathieu Chartier2535abe2015-02-17 10:38:49 -0800751}
752
Andreas Gampeace0dc12016-01-20 13:33:13 -0800753void CompilerDriver::Resolve(jobject class_loader,
754 const std::vector<const DexFile*>& dex_files,
755 TimingLogger* timings) {
756 // Resolution allocates classes and needs to run single-threaded to be deterministic.
757 bool force_determinism = GetCompilerOptions().IsForceDeterminism();
758 ThreadPool* resolve_thread_pool = force_determinism
759 ? single_thread_pool_.get()
760 : parallel_thread_pool_.get();
761 size_t resolve_thread_count = force_determinism ? 1U : parallel_thread_count_;
762
Brian Carlstrom7940e442013-07-12 13:46:57 -0700763 for (size_t i = 0; i != dex_files.size(); ++i) {
764 const DexFile* dex_file = dex_files[i];
Kenny Rootd5185342014-05-13 14:47:05 -0700765 CHECK(dex_file != nullptr);
Andreas Gampeace0dc12016-01-20 13:33:13 -0800766 ResolveDexFile(class_loader,
767 *dex_file,
768 dex_files,
769 resolve_thread_pool,
770 resolve_thread_count,
771 timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700772 }
773}
774
Andreas Gampeace0dc12016-01-20 13:33:13 -0800775static void ResolveConstStrings(CompilerDriver* driver,
776 const std::vector<const DexFile*>& dex_files,
777 TimingLogger* timings) {
Nicolas Geoffray571d2342016-10-12 13:03:15 +0000778 ScopedObjectAccess soa(Thread::Current());
779 StackHandleScope<1> hs(soa.Self());
780 ClassLinker* const class_linker = Runtime::Current()->GetClassLinker();
781 MutableHandle<mirror::DexCache> dex_cache(hs.NewHandle<mirror::DexCache>(nullptr));
782
Andreas Gampeace0dc12016-01-20 13:33:13 -0800783 for (const DexFile* dex_file : dex_files) {
Vladimir Markocd556b02017-02-03 11:47:34 +0000784 dex_cache.Assign(class_linker->FindDexCache(soa.Self(), *dex_file));
Andreas Gampeace0dc12016-01-20 13:33:13 -0800785 TimingLogger::ScopedTiming t("Resolve const-string Strings", timings);
786
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -0700787 for (ClassAccessor accessor : dex_file->GetClasses()) {
788 if (!driver->IsClassToCompile(accessor.GetDescriptor())) {
Andreas Gampeace0dc12016-01-20 13:33:13 -0800789 // Compilation is skipped, do not resolve const-string in code of this class.
Vladimir Marko175e7862018-03-27 09:03:13 +0000790 // FIXME: Make sure that inlining honors this. b/26687569
Andreas Gampeace0dc12016-01-20 13:33:13 -0800791 continue;
792 }
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -0700793 accessor.VisitMethods([&](const ClassAccessor::Method& method)
794 REQUIRES_SHARED(Locks::mutator_lock_) {
795 // Resolve const-strings in the code. Done to have deterministic allocation behavior. Right
796 // now this is single-threaded for simplicity.
797 // TODO: Collect the relevant string indices in parallel, then allocate them sequentially
798 // in a stable order.
799 for (const DexInstructionPcPair& inst : method.GetInstructions()) {
800 switch (inst->Opcode()) {
801 case Instruction::CONST_STRING:
802 case Instruction::CONST_STRING_JUMBO: {
803 dex::StringIndex string_index((inst->Opcode() == Instruction::CONST_STRING)
804 ? inst->VRegB_21c()
805 : inst->VRegB_31c());
806 ObjPtr<mirror::String> string = class_linker->ResolveString(string_index, dex_cache);
807 CHECK(string != nullptr) << "Could not allocate a string when forcing determinism";
808 break;
809 }
Andreas Gampeace0dc12016-01-20 13:33:13 -0800810
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -0700811 default:
812 break;
813 }
814 }
815 });
Vladimir Marko175e7862018-03-27 09:03:13 +0000816 }
817 }
818}
819
820// Initialize type check bit strings for check-cast and instance-of in the code. Done to have
821// deterministic allocation behavior. Right now this is single-threaded for simplicity.
822// TODO: Collect the relevant type indices in parallel, then process them sequentially in a
823// stable order.
824
825static void InitializeTypeCheckBitstrings(CompilerDriver* driver,
826 ClassLinker* class_linker,
827 Handle<mirror::DexCache> dex_cache,
828 const DexFile& dex_file,
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -0700829 const ClassAccessor::Method& method)
Vladimir Marko175e7862018-03-27 09:03:13 +0000830 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -0700831 for (const DexInstructionPcPair& inst : method.GetInstructions()) {
Vladimir Marko175e7862018-03-27 09:03:13 +0000832 switch (inst->Opcode()) {
833 case Instruction::CHECK_CAST:
834 case Instruction::INSTANCE_OF: {
835 dex::TypeIndex type_index(
836 (inst->Opcode() == Instruction::CHECK_CAST) ? inst->VRegB_21c() : inst->VRegC_22c());
837 const char* descriptor = dex_file.StringByTypeIdx(type_index);
838 // We currently do not use the bitstring type check for array or final (including
839 // primitive) classes. We may reconsider this in future if it's deemed to be beneficial.
840 // And we cannot use it for classes outside the boot image as we do not know the runtime
841 // value of their bitstring when compiling (it may not even get assigned at runtime).
842 if (descriptor[0] == 'L' && driver->IsImageClass(descriptor)) {
843 ObjPtr<mirror::Class> klass =
844 class_linker->LookupResolvedType(type_index,
845 dex_cache.Get(),
846 /* class_loader */ nullptr);
847 CHECK(klass != nullptr) << descriptor << " should have been previously resolved.";
848 // Now assign the bitstring if the class is not final. Keep this in sync with sharpening.
849 if (!klass->IsFinal()) {
850 MutexLock subtype_check_lock(Thread::Current(), *Locks::subtype_check_lock_);
851 SubtypeCheck<ObjPtr<mirror::Class>>::EnsureAssigned(klass);
852 }
Andreas Gampeace0dc12016-01-20 13:33:13 -0800853 }
Vladimir Marko175e7862018-03-27 09:03:13 +0000854 break;
855 }
856
857 default:
858 break;
859 }
860 }
861}
862
863static void InitializeTypeCheckBitstrings(CompilerDriver* driver,
864 const std::vector<const DexFile*>& dex_files,
865 TimingLogger* timings) {
866 ScopedObjectAccess soa(Thread::Current());
867 StackHandleScope<1> hs(soa.Self());
868 ClassLinker* const class_linker = Runtime::Current()->GetClassLinker();
869 MutableHandle<mirror::DexCache> dex_cache(hs.NewHandle<mirror::DexCache>(nullptr));
870
871 for (const DexFile* dex_file : dex_files) {
872 dex_cache.Assign(class_linker->FindDexCache(soa.Self(), *dex_file));
873 TimingLogger::ScopedTiming t("Initialize type check bitstrings", timings);
874
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -0700875 for (ClassAccessor accessor : dex_file->GetClasses()) {
876 if (!driver->IsClassToCompile(accessor.GetDescriptor())) {
Vladimir Marko175e7862018-03-27 09:03:13 +0000877 // Compilation is skipped, do not look for type checks in code of this class.
878 // FIXME: Make sure that inlining honors this. b/26687569
879 continue;
880 }
881
882 // Direct and virtual methods.
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -0700883 accessor.VisitMethods([&](const ClassAccessor::Method& method)
884 REQUIRES_SHARED(Locks::mutator_lock_) {
885 InitializeTypeCheckBitstrings(driver, class_linker, dex_cache, *dex_file, method);
886 });
Andreas Gampeace0dc12016-01-20 13:33:13 -0800887 }
888 }
889}
890
891inline void CompilerDriver::CheckThreadPools() {
892 DCHECK(parallel_thread_pool_ != nullptr);
893 DCHECK(single_thread_pool_ != nullptr);
894}
895
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +0000896static void EnsureVerifiedOrVerifyAtRuntime(jobject jclass_loader,
897 const std::vector<const DexFile*>& dex_files) {
898 ScopedObjectAccess soa(Thread::Current());
899 StackHandleScope<2> hs(soa.Self());
900 Handle<mirror::ClassLoader> class_loader(
901 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader)));
902 MutableHandle<mirror::Class> cls(hs.NewHandle<mirror::Class>(nullptr));
903 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
904
905 for (const DexFile* dex_file : dex_files) {
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -0700906 for (ClassAccessor accessor : dex_file->GetClasses()) {
907 cls.Assign(class_linker->FindClass(soa.Self(), accessor.GetDescriptor(), class_loader));
Andreas Gampefa4333d2017-02-14 11:10:34 -0800908 if (cls == nullptr) {
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +0000909 soa.Self()->ClearException();
910 } else if (&cls->GetDexFile() == dex_file) {
Nicolas Geoffray7cc3ae52017-03-07 14:33:37 +0000911 DCHECK(cls->IsErroneous() || cls->IsVerified() || cls->ShouldVerifyAtRuntime())
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +0000912 << cls->PrettyClass()
913 << " " << cls->GetStatus();
914 }
915 }
916 }
917}
918
Andreas Gampeace0dc12016-01-20 13:33:13 -0800919void CompilerDriver::PreCompile(jobject class_loader,
920 const std::vector<const DexFile*>& dex_files,
921 TimingLogger* timings) {
922 CheckThreadPools();
923
Brian Carlstrom7940e442013-07-12 13:46:57 -0700924 LoadImageClasses(timings);
Andreas Gampe8d295f82015-01-20 14:50:21 -0800925 VLOG(compiler) << "LoadImageClasses: " << GetMemoryUsageString(false);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700926
Nicolas Geoffray49cda062017-04-21 13:08:25 +0100927 if (compiler_options_->IsAnyCompilationEnabled()) {
Mathieu Chartier88b74b62017-07-16 17:08:19 -0700928 // Avoid adding the dex files in the case where we aren't going to add compiled methods.
929 // This reduces RAM usage for this case.
930 for (const DexFile* dex_file : dex_files) {
931 // Can be already inserted if the caller is CompileOne. This happens for gtests.
932 if (!compiled_methods_.HaveDexFile(dex_file)) {
Mathieu Chartierfc8b4222017-09-17 13:44:24 -0700933 compiled_methods_.AddDexFile(dex_file);
Mathieu Chartier88b74b62017-07-16 17:08:19 -0700934 }
935 }
Nicolas Geoffray49cda062017-04-21 13:08:25 +0100936 // Resolve eagerly to prepare for compilation.
Andreas Gampeace0dc12016-01-20 13:33:13 -0800937 Resolve(class_loader, dex_files, timings);
Mathieu Chartiere86deef2015-03-19 13:43:37 -0700938 VLOG(compiler) << "Resolve: " << GetMemoryUsageString(false);
939 }
940
Nicolas Geoffray60ca9492016-12-20 21:15:00 +0000941 if (compiler_options_->AssumeClassesAreVerified()) {
Mathieu Chartierab972ef2014-12-03 17:38:22 -0800942 VLOG(compiler) << "Verify none mode specified, skipping verification.";
Andreas Gampeace0dc12016-01-20 13:33:13 -0800943 SetVerified(class_loader, dex_files, timings);
Mathieu Chartiere86deef2015-03-19 13:43:37 -0700944 }
945
Nicolas Geoffray60ca9492016-12-20 21:15:00 +0000946 if (!compiler_options_->IsVerificationEnabled()) {
Jeff Hao4a200f52014-04-01 14:58:49 -0700947 return;
948 }
949
Vladimir Markoaad75c62016-10-03 08:46:48 +0000950 if (GetCompilerOptions().IsForceDeterminism() && GetCompilerOptions().IsBootImage()) {
Andreas Gampeace0dc12016-01-20 13:33:13 -0800951 // Resolve strings from const-string. Do this now to have a deterministic image.
952 ResolveConstStrings(this, dex_files, timings);
953 VLOG(compiler) << "Resolve const-strings: " << GetMemoryUsageString(false);
954 }
955
Nicolas Geoffrayb0bbe8e2016-11-19 10:42:37 +0000956 Verify(class_loader, dex_files, timings);
Andreas Gampe8d295f82015-01-20 14:50:21 -0800957 VLOG(compiler) << "Verify: " << GetMemoryUsageString(false);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700958
Andreas Gampe6cf49e52015-03-05 13:08:45 -0800959 if (had_hard_verifier_failure_ && GetCompilerOptions().AbortOnHardVerifierFailure()) {
Andreas Gampefdfb4d42017-07-27 12:12:22 -0700960 // Avoid dumping threads. Even if we shut down the thread pools, there will still be three
961 // instances of this thread's stack.
962 LOG(FATAL_WITHOUT_ABORT) << "Had a hard failure verifying all classes, and was asked to abort "
963 << "in such situations. Please check the log.";
Andreas Gampe56c9b7c2018-02-27 18:49:26 -0800964 _exit(1);
Andreas Gampef39208f2017-10-19 15:06:59 -0700965 } else if (number_of_soft_verifier_failures_ > 0 &&
966 GetCompilerOptions().AbortOnSoftVerifierFailure()) {
967 LOG(FATAL_WITHOUT_ABORT) << "Had " << number_of_soft_verifier_failures_ << " soft failure(s) "
968 << "verifying all classes, and was asked to abort in such situations. "
969 << "Please check the log.";
Andreas Gampe56c9b7c2018-02-27 18:49:26 -0800970 _exit(1);
Andreas Gampe6cf49e52015-03-05 13:08:45 -0800971 }
972
Nicolas Geoffray49cda062017-04-21 13:08:25 +0100973 if (compiler_options_->IsAnyCompilationEnabled()) {
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +0000974 if (kIsDebugBuild) {
975 EnsureVerifiedOrVerifyAtRuntime(class_loader, dex_files);
976 }
Nicolas Geoffrayade72d62016-12-15 13:20:02 +0000977 InitializeClasses(class_loader, dex_files, timings);
978 VLOG(compiler) << "InitializeClasses: " << GetMemoryUsageString(false);
979 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700980
981 UpdateImageClasses(timings);
Andreas Gampe8d295f82015-01-20 14:50:21 -0800982 VLOG(compiler) << "UpdateImageClasses: " << GetMemoryUsageString(false);
Vladimir Marko175e7862018-03-27 09:03:13 +0000983
984 if (kBitstringSubtypeCheckEnabled &&
985 GetCompilerOptions().IsForceDeterminism() && GetCompilerOptions().IsBootImage()) {
986 // Initialize type check bit string used by check-cast and instanceof.
987 // Do this now to have a deterministic image.
988 // Note: This is done after UpdateImageClasses() at it relies on the image classes to be final.
989 InitializeTypeCheckBitstrings(this, dex_files, timings);
990 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700991}
992
Ian Rogersdfb325e2013-10-30 01:00:44 -0700993bool CompilerDriver::IsImageClass(const char* descriptor) const {
Mathieu Chartierc5dd3192015-12-09 16:38:30 -0800994 if (image_classes_ != nullptr) {
995 // If we have a set of image classes, use those.
Ian Rogersdfb325e2013-10-30 01:00:44 -0700996 return image_classes_->find(descriptor) != image_classes_->end();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700997 }
Mathieu Chartierc5dd3192015-12-09 16:38:30 -0800998 // No set of image classes, assume we include all the classes.
999 // NOTE: Currently only reachable from InitImageMethodVisitor for the app image case.
Vladimir Markoaad75c62016-10-03 08:46:48 +00001000 return !GetCompilerOptions().IsBootImage();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001001}
1002
Andreas Gampe4bf3ae92014-11-11 13:28:29 -08001003bool CompilerDriver::IsClassToCompile(const char* descriptor) const {
Andreas Gampeb1fcead2015-04-20 18:53:51 -07001004 if (classes_to_compile_ == nullptr) {
1005 return true;
1006 }
1007 return classes_to_compile_->find(descriptor) != classes_to_compile_->end();
Andreas Gampe4bf3ae92014-11-11 13:28:29 -08001008}
1009
Calin Juravle226501b2015-12-11 14:41:31 +00001010bool CompilerDriver::ShouldCompileBasedOnProfile(const MethodReference& method_ref) const {
Mathieu Chartier97ab5e32017-02-22 13:35:44 -08001011 // Profile compilation info may be null if no profile is passed.
Mathieu Chartierd0af56c2017-02-17 12:56:25 -08001012 if (!CompilerFilter::DependsOnProfile(compiler_options_->GetCompilerFilter())) {
1013 // Use the compiler filter instead of the presence of profile_compilation_info_ since
1014 // we may want to have full speed compilation along with profile based layout optimizations.
Calin Juravle226501b2015-12-11 14:41:31 +00001015 return true;
1016 }
Mathieu Chartier97ab5e32017-02-22 13:35:44 -08001017 // If we are using a profile filter but do not have a profile compilation info, compile nothing.
1018 if (profile_compilation_info_ == nullptr) {
1019 return false;
1020 }
Mathieu Chartier7b135c82017-06-05 12:54:01 -07001021 // Compile only hot methods, it is the profile saver's job to decide what startup methods to mark
1022 // as hot.
Mathieu Chartierbbe3a5e2017-06-13 16:36:17 -07001023 bool result = profile_compilation_info_->GetMethodHotness(method_ref).IsHot();
Calin Juravle226501b2015-12-11 14:41:31 +00001024
1025 if (kDebugProfileGuidedCompilation) {
1026 LOG(INFO) << "[ProfileGuidedCompilation] "
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07001027 << (result ? "Compiled" : "Skipped") << " method:" << method_ref.PrettyMethod(true);
Calin Juravle226501b2015-12-11 14:41:31 +00001028 }
1029 return result;
1030}
1031
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001032class ResolveCatchBlockExceptionsClassVisitor : public ClassVisitor {
1033 public:
Vladimir Marko8d6768d2017-03-14 10:13:21 +00001034 ResolveCatchBlockExceptionsClassVisitor() : classes_() {}
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001035
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001036 virtual bool operator()(ObjPtr<mirror::Class> c) OVERRIDE REQUIRES_SHARED(Locks::mutator_lock_) {
Vladimir Marko8d6768d2017-03-14 10:13:21 +00001037 classes_.push_back(c);
Mathieu Chartiere4275c02015-08-06 15:34:15 -07001038 return true;
1039 }
1040
Vladimir Marko8d6768d2017-03-14 10:13:21 +00001041 void FindExceptionTypesToResolve(
1042 std::set<std::pair<dex::TypeIndex, const DexFile*>>* exceptions_to_resolve)
Vladimir Markobfb80d22017-02-14 14:08:12 +00001043 REQUIRES_SHARED(Locks::mutator_lock_) {
Vladimir Marko8d6768d2017-03-14 10:13:21 +00001044 const auto pointer_size = Runtime::Current()->GetClassLinker()->GetImagePointerSize();
1045 for (ObjPtr<mirror::Class> klass : classes_) {
1046 for (ArtMethod& method : klass->GetMethods(pointer_size)) {
1047 FindExceptionTypesToResolveForMethod(&method, exceptions_to_resolve);
1048 }
1049 }
1050 }
1051
1052 private:
1053 void FindExceptionTypesToResolveForMethod(
1054 ArtMethod* method,
1055 std::set<std::pair<dex::TypeIndex, const DexFile*>>* exceptions_to_resolve)
1056 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartier808c7a52017-12-15 11:19:33 -08001057 if (method->GetCodeItem() == nullptr) {
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001058 return; // native or abstract method
Brian Carlstrom7940e442013-07-12 13:46:57 -07001059 }
David Sehr0225f8e2018-01-31 08:52:24 +00001060 CodeItemDataAccessor accessor(method->DexInstructionData());
Mathieu Chartier808c7a52017-12-15 11:19:33 -08001061 if (accessor.TriesSize() == 0) {
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001062 return; // nothing to process
1063 }
Mathieu Chartier808c7a52017-12-15 11:19:33 -08001064 const uint8_t* encoded_catch_handler_list = accessor.GetCatchHandlerData();
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001065 size_t num_encoded_catch_handlers = DecodeUnsignedLeb128(&encoded_catch_handler_list);
1066 for (size_t i = 0; i < num_encoded_catch_handlers; i++) {
1067 int32_t encoded_catch_handler_size = DecodeSignedLeb128(&encoded_catch_handler_list);
1068 bool has_catch_all = false;
1069 if (encoded_catch_handler_size <= 0) {
1070 encoded_catch_handler_size = -encoded_catch_handler_size;
1071 has_catch_all = true;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001072 }
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001073 for (int32_t j = 0; j < encoded_catch_handler_size; j++) {
Andreas Gampea5b09a62016-11-17 15:21:22 -08001074 dex::TypeIndex encoded_catch_handler_handlers_type_idx =
1075 dex::TypeIndex(DecodeUnsignedLeb128(&encoded_catch_handler_list));
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001076 // Add to set of types to resolve if not already in the dex cache resolved types
Vladimir Marko8d6768d2017-03-14 10:13:21 +00001077 if (!method->IsResolvedTypeIdx(encoded_catch_handler_handlers_type_idx)) {
1078 exceptions_to_resolve->emplace(encoded_catch_handler_handlers_type_idx,
1079 method->GetDexFile());
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001080 }
1081 // ignore address associated with catch handler
1082 DecodeUnsignedLeb128(&encoded_catch_handler_list);
1083 }
1084 if (has_catch_all) {
1085 // ignore catch all address
1086 DecodeUnsignedLeb128(&encoded_catch_handler_list);
1087 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001088 }
1089 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001090
Vladimir Marko8d6768d2017-03-14 10:13:21 +00001091 std::vector<ObjPtr<mirror::Class>> classes_;
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001092};
1093
1094class RecordImageClassesVisitor : public ClassVisitor {
1095 public:
1096 explicit RecordImageClassesVisitor(std::unordered_set<std::string>* image_classes)
1097 : image_classes_(image_classes) {}
1098
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001099 bool operator()(ObjPtr<mirror::Class> klass) OVERRIDE REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001100 std::string temp;
1101 image_classes_->insert(klass->GetDescriptor(&temp));
1102 return true;
1103 }
1104
1105 private:
1106 std::unordered_set<std::string>* const image_classes_;
1107};
Brian Carlstrom7940e442013-07-12 13:46:57 -07001108
1109// Make a list of descriptors for classes to include in the image
Mathieu Chartier90443472015-07-16 20:32:27 -07001110void CompilerDriver::LoadImageClasses(TimingLogger* timings) {
Kenny Rootd5185342014-05-13 14:47:05 -07001111 CHECK(timings != nullptr);
Vladimir Markoaad75c62016-10-03 08:46:48 +00001112 if (!GetCompilerOptions().IsBootImage()) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001113 return;
1114 }
1115
Mathieu Chartierf5997b42014-06-20 10:37:54 -07001116 TimingLogger::ScopedTiming t("LoadImageClasses", timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001117 // Make a first class to load all classes explicitly listed in the file
1118 Thread* self = Thread::Current();
1119 ScopedObjectAccess soa(self);
1120 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Kenny Rootd5185342014-05-13 14:47:05 -07001121 CHECK(image_classes_.get() != nullptr);
Mathieu Chartier02e25112013-08-14 16:14:24 -07001122 for (auto it = image_classes_->begin(), end = image_classes_->end(); it != end;) {
Vladimir Markoe9c36b32013-11-21 15:49:16 +00001123 const std::string& descriptor(*it);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001124 StackHandleScope<1> hs(self);
1125 Handle<mirror::Class> klass(
1126 hs.NewHandle(class_linker->FindSystemClass(self, descriptor.c_str())));
Andreas Gampefa4333d2017-02-14 11:10:34 -08001127 if (klass == nullptr) {
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001128 VLOG(compiler) << "Failed to find class " << descriptor;
Vladimir Markoe9c36b32013-11-21 15:49:16 +00001129 image_classes_->erase(it++);
Ian Rogersa436fde2013-08-27 23:34:06 -07001130 self->ClearException();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001131 } else {
1132 ++it;
1133 }
1134 }
1135
1136 // Resolve exception classes referenced by the loaded classes. The catch logic assumes
1137 // exceptions are resolved by the verifier when there is a catch block in an interested method.
1138 // Do this here so that exception classes appear to have been specified image classes.
Andreas Gampea5b09a62016-11-17 15:21:22 -08001139 std::set<std::pair<dex::TypeIndex, const DexFile*>> unresolved_exception_types;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001140 StackHandleScope<1> hs(self);
1141 Handle<mirror::Class> java_lang_Throwable(
1142 hs.NewHandle(class_linker->FindSystemClass(self, "Ljava/lang/Throwable;")));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001143 do {
1144 unresolved_exception_types.clear();
Vladimir Marko8d6768d2017-03-14 10:13:21 +00001145 {
1146 // Thread suspension is not allowed while ResolveCatchBlockExceptionsClassVisitor
1147 // is using a std::vector<ObjPtr<mirror::Class>>.
1148 ScopedAssertNoThreadSuspension ants(__FUNCTION__);
1149 ResolveCatchBlockExceptionsClassVisitor visitor;
1150 class_linker->VisitClasses(&visitor);
1151 visitor.FindExceptionTypesToResolve(&unresolved_exception_types);
1152 }
Andreas Gampea5b09a62016-11-17 15:21:22 -08001153 for (const auto& exception_type : unresolved_exception_types) {
1154 dex::TypeIndex exception_type_idx = exception_type.first;
Mathieu Chartier02e25112013-08-14 16:14:24 -07001155 const DexFile* dex_file = exception_type.second;
Vladimir Marko666ee3d2017-12-11 18:37:36 +00001156 StackHandleScope<1> hs2(self);
Mathieu Chartierf284d442016-06-02 11:48:30 -07001157 Handle<mirror::DexCache> dex_cache(hs2.NewHandle(class_linker->RegisterDexFile(*dex_file,
1158 nullptr)));
Vladimir Marko666ee3d2017-12-11 18:37:36 +00001159 ObjPtr<mirror::Class> klass =
Andreas Gampefa4333d2017-02-14 11:10:34 -08001160 (dex_cache != nullptr)
Vladimir Marko666ee3d2017-12-11 18:37:36 +00001161 ? class_linker->ResolveType(exception_type_idx,
Vladimir Markocd556b02017-02-03 11:47:34 +00001162 dex_cache,
1163 ScopedNullHandle<mirror::ClassLoader>())
Vladimir Marko666ee3d2017-12-11 18:37:36 +00001164 : nullptr;
Andreas Gampefa4333d2017-02-14 11:10:34 -08001165 if (klass == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001166 const DexFile::TypeId& type_id = dex_file->GetTypeId(exception_type_idx);
1167 const char* descriptor = dex_file->GetTypeDescriptor(type_id);
1168 LOG(FATAL) << "Failed to resolve class " << descriptor;
1169 }
Vladimir Marko666ee3d2017-12-11 18:37:36 +00001170 DCHECK(java_lang_Throwable->IsAssignableFrom(klass));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001171 }
1172 // Resolving exceptions may load classes that reference more exceptions, iterate until no
1173 // more are found
1174 } while (!unresolved_exception_types.empty());
1175
1176 // We walk the roots looking for classes so that we'll pick up the
1177 // above classes plus any classes them depend on such super
1178 // classes, interfaces, and the required ClassLinker roots.
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001179 RecordImageClassesVisitor visitor(image_classes_.get());
1180 class_linker->VisitClasses(&visitor);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001181
1182 CHECK_NE(image_classes_->size(), 0U);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001183}
1184
Vladimir Marko19a4d372016-12-08 14:41:46 +00001185static void MaybeAddToImageClasses(Thread* self,
1186 ObjPtr<mirror::Class> klass,
Andreas Gampeb1fcead2015-04-20 18:53:51 -07001187 std::unordered_set<std::string>* image_classes)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001188 REQUIRES_SHARED(Locks::mutator_lock_) {
Vladimir Marko19a4d372016-12-08 14:41:46 +00001189 DCHECK_EQ(self, Thread::Current());
Mathieu Chartierf8322842014-05-16 10:59:25 -07001190 StackHandleScope<1> hs(self);
Ian Rogers1ff3c982014-08-12 02:30:58 -07001191 std::string temp;
Andreas Gampe542451c2016-07-26 09:02:02 -07001192 const PointerSize pointer_size = Runtime::Current()->GetClassLinker()->GetImagePointerSize();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001193 while (!klass->IsObjectClass()) {
Ian Rogers1ff3c982014-08-12 02:30:58 -07001194 const char* descriptor = klass->GetDescriptor(&temp);
Andreas Gampeb1fcead2015-04-20 18:53:51 -07001195 std::pair<std::unordered_set<std::string>::iterator, bool> result =
1196 image_classes->insert(descriptor);
Ian Rogers1ff3c982014-08-12 02:30:58 -07001197 if (!result.second) { // Previously inserted.
1198 break;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001199 }
Ian Rogers1ff3c982014-08-12 02:30:58 -07001200 VLOG(compiler) << "Adding " << descriptor << " to image classes";
Vladimir Marko19a4d372016-12-08 14:41:46 +00001201 for (size_t i = 0, num_interfaces = klass->NumDirectInterfaces(); i != num_interfaces; ++i) {
1202 ObjPtr<mirror::Class> interface = mirror::Class::GetDirectInterface(self, klass, i);
1203 DCHECK(interface != nullptr);
1204 MaybeAddToImageClasses(self, interface, image_classes);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001205 }
Vladimir Marko19a4d372016-12-08 14:41:46 +00001206 for (auto& m : klass->GetVirtualMethods(pointer_size)) {
1207 MaybeAddToImageClasses(self, m.GetDeclaringClass(), image_classes);
Mathieu Chartiere401d142015-04-22 13:56:20 -07001208 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001209 if (klass->IsArrayClass()) {
Vladimir Marko19a4d372016-12-08 14:41:46 +00001210 MaybeAddToImageClasses(self, klass->GetComponentType(), image_classes);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001211 }
Mathieu Chartierf8322842014-05-16 10:59:25 -07001212 klass.Assign(klass->GetSuperClass());
Brian Carlstrom7940e442013-07-12 13:46:57 -07001213 }
1214}
1215
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001216// Keeps all the data for the update together. Also doubles as the reference visitor.
1217// Note: we can use object pointers because we suspend all threads.
1218class ClinitImageUpdate {
1219 public:
Mathieu Chartier31e88222016-10-14 18:43:19 -07001220 static ClinitImageUpdate* Create(VariableSizedHandleScope& hs,
1221 std::unordered_set<std::string>* image_class_descriptors,
1222 Thread* self,
1223 ClassLinker* linker) {
1224 std::unique_ptr<ClinitImageUpdate> res(new ClinitImageUpdate(hs,
1225 image_class_descriptors,
1226 self,
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001227 linker));
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001228 return res.release();
1229 }
1230
1231 ~ClinitImageUpdate() {
1232 // Allow others to suspend again.
1233 self_->EndAssertNoThreadSuspension(old_cause_);
1234 }
1235
1236 // Visitor for VisitReferences.
Mathieu Chartier31e88222016-10-14 18:43:19 -07001237 void operator()(ObjPtr<mirror::Object> object,
1238 MemberOffset field_offset,
1239 bool /* is_static */) const
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001240 REQUIRES_SHARED(Locks::mutator_lock_) {
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001241 mirror::Object* ref = object->GetFieldObject<mirror::Object>(field_offset);
1242 if (ref != nullptr) {
1243 VisitClinitClassesObject(ref);
1244 }
1245 }
1246
Roland Levillain5e8d5f02016-10-18 18:03:43 +01001247 // java.lang.ref.Reference visitor for VisitReferences.
Mathieu Chartier31e88222016-10-14 18:43:19 -07001248 void operator()(ObjPtr<mirror::Class> klass ATTRIBUTE_UNUSED,
1249 ObjPtr<mirror::Reference> ref ATTRIBUTE_UNUSED) const {}
Mathieu Chartierda7c6502015-07-23 16:01:26 -07001250
1251 // Ignore class native roots.
1252 void VisitRootIfNonNull(mirror::CompressedReference<mirror::Object>* root ATTRIBUTE_UNUSED)
1253 const {}
1254 void VisitRoot(mirror::CompressedReference<mirror::Object>* root ATTRIBUTE_UNUSED) const {}
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001255
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001256 void Walk() REQUIRES_SHARED(Locks::mutator_lock_) {
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001257 // Use the initial classes as roots for a search.
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001258 for (Handle<mirror::Class> klass_root : image_classes_) {
1259 VisitClinitClassesObject(klass_root.Get());
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001260 }
Vladimir Marko19a4d372016-12-08 14:41:46 +00001261 Thread* self = Thread::Current();
1262 ScopedAssertNoThreadSuspension ants(__FUNCTION__);
Mathieu Chartier31e88222016-10-14 18:43:19 -07001263 for (Handle<mirror::Class> h_klass : to_insert_) {
Vladimir Marko19a4d372016-12-08 14:41:46 +00001264 MaybeAddToImageClasses(self, h_klass.Get(), image_class_descriptors_);
Mathieu Chartier31e88222016-10-14 18:43:19 -07001265 }
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001266 }
1267
1268 private:
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001269 class FindImageClassesVisitor : public ClassVisitor {
1270 public:
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001271 explicit FindImageClassesVisitor(VariableSizedHandleScope& hs,
1272 ClinitImageUpdate* data)
1273 : data_(data),
1274 hs_(hs) {}
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001275
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001276 bool operator()(ObjPtr<mirror::Class> klass) OVERRIDE REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001277 std::string temp;
1278 const char* name = klass->GetDescriptor(&temp);
1279 if (data_->image_class_descriptors_->find(name) != data_->image_class_descriptors_->end()) {
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001280 data_->image_classes_.push_back(hs_.NewHandle(klass));
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001281 } else {
1282 // Check whether it is initialized and has a clinit. They must be kept, too.
1283 if (klass->IsInitialized() && klass->FindClassInitializer(
1284 Runtime::Current()->GetClassLinker()->GetImagePointerSize()) != nullptr) {
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001285 data_->image_classes_.push_back(hs_.NewHandle(klass));
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001286 }
1287 }
1288 return true;
1289 }
1290
1291 private:
1292 ClinitImageUpdate* const data_;
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001293 VariableSizedHandleScope& hs_;
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001294 };
1295
Mathieu Chartier31e88222016-10-14 18:43:19 -07001296 ClinitImageUpdate(VariableSizedHandleScope& hs,
1297 std::unordered_set<std::string>* image_class_descriptors,
1298 Thread* self,
1299 ClassLinker* linker) REQUIRES_SHARED(Locks::mutator_lock_)
1300 : hs_(hs),
1301 image_class_descriptors_(image_class_descriptors),
1302 self_(self) {
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001303 CHECK(linker != nullptr);
1304 CHECK(image_class_descriptors != nullptr);
1305
1306 // Make sure nobody interferes with us.
1307 old_cause_ = self->StartAssertNoThreadSuspension("Boot image closure");
1308
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001309 // Find all the already-marked classes.
1310 WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001311 FindImageClassesVisitor visitor(hs_, this);
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001312 linker->VisitClasses(&visitor);
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001313 }
1314
1315 void VisitClinitClassesObject(mirror::Object* object) const
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001316 REQUIRES_SHARED(Locks::mutator_lock_) {
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001317 DCHECK(object != nullptr);
1318 if (marked_objects_.find(object) != marked_objects_.end()) {
1319 // Already processed.
1320 return;
1321 }
1322
1323 // Mark it.
1324 marked_objects_.insert(object);
1325
1326 if (object->IsClass()) {
Mathieu Chartier31e88222016-10-14 18:43:19 -07001327 // Add to the TODO list since MaybeAddToImageClasses may cause thread suspension. Thread
1328 // suspensionb is not safe to do in VisitObjects or VisitReferences.
1329 to_insert_.push_back(hs_.NewHandle(object->AsClass()));
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001330 } else {
1331 // Else visit the object's class.
1332 VisitClinitClassesObject(object->GetClass());
1333 }
1334
Mathieu Chartiere401d142015-04-22 13:56:20 -07001335 // If it is not a DexCache, visit all references.
Mathieu Chartier31e88222016-10-14 18:43:19 -07001336 if (!object->IsDexCache()) {
Mathieu Chartier059ef3d2015-08-18 13:54:21 -07001337 object->VisitReferences(*this, *this);
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001338 }
1339 }
1340
Mathieu Chartier31e88222016-10-14 18:43:19 -07001341 VariableSizedHandleScope& hs_;
1342 mutable std::vector<Handle<mirror::Class>> to_insert_;
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001343 mutable std::unordered_set<mirror::Object*> marked_objects_;
Andreas Gampeb1fcead2015-04-20 18:53:51 -07001344 std::unordered_set<std::string>* const image_class_descriptors_;
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001345 std::vector<Handle<mirror::Class>> image_classes_;
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001346 Thread* const self_;
1347 const char* old_cause_;
1348
1349 DISALLOW_COPY_AND_ASSIGN(ClinitImageUpdate);
1350};
Brian Carlstrom7940e442013-07-12 13:46:57 -07001351
Ian Rogers3d504072014-03-01 09:16:49 -08001352void CompilerDriver::UpdateImageClasses(TimingLogger* timings) {
Vladimir Markoaad75c62016-10-03 08:46:48 +00001353 if (GetCompilerOptions().IsBootImage()) {
Mathieu Chartierf5997b42014-06-20 10:37:54 -07001354 TimingLogger::ScopedTiming t("UpdateImageClasses", timings);
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001355
Mathieu Chartier4f55e222015-09-04 13:26:21 -07001356 Runtime* runtime = Runtime::Current();
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001357
1358 // Suspend all threads.
Mathieu Chartier4f55e222015-09-04 13:26:21 -07001359 ScopedSuspendAll ssa(__FUNCTION__);
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001360
Mathieu Chartier31e88222016-10-14 18:43:19 -07001361 VariableSizedHandleScope hs(Thread::Current());
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001362 std::string error_msg;
Mathieu Chartier31e88222016-10-14 18:43:19 -07001363 std::unique_ptr<ClinitImageUpdate> update(ClinitImageUpdate::Create(hs,
1364 image_classes_.get(),
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001365 Thread::Current(),
Mathieu Chartier31e88222016-10-14 18:43:19 -07001366 runtime->GetClassLinker()));
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001367
1368 // Do the marking.
1369 update->Walk();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001370 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001371}
1372
Vladimir Marko07785bb2015-06-15 18:52:54 +01001373bool CompilerDriver::CanAssumeClassIsLoaded(mirror::Class* klass) {
1374 Runtime* runtime = Runtime::Current();
1375 if (!runtime->IsAotCompiler()) {
Calin Juravleffc87072016-04-20 14:22:09 +01001376 DCHECK(runtime->UseJitCompilation());
Vladimir Marko07785bb2015-06-15 18:52:54 +01001377 // Having the klass reference here implies that the klass is already loaded.
1378 return true;
1379 }
Vladimir Markoaad75c62016-10-03 08:46:48 +00001380 if (!GetCompilerOptions().IsBootImage()) {
Vladimir Marko07785bb2015-06-15 18:52:54 +01001381 // Assume loaded only if klass is in the boot image. App classes cannot be assumed
1382 // loaded because we don't even know what class loader will be used to load them.
1383 bool class_in_image = runtime->GetHeap()->FindSpaceFromObject(klass, false)->IsImageSpace();
1384 return class_in_image;
1385 }
1386 std::string temp;
1387 const char* descriptor = klass->GetDescriptor(&temp);
1388 return IsImageClass(descriptor);
1389}
1390
Vladimir Marko8d6768d2017-03-14 10:13:21 +00001391bool CompilerDriver::CanAccessTypeWithoutChecks(ObjPtr<mirror::Class> referrer_class,
1392 ObjPtr<mirror::Class> resolved_class) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001393 if (resolved_class == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001394 stats_->TypeNeedsAccessCheck();
1395 return false; // Unknown class needs access checks.
1396 }
David Brazdil38f64d32016-01-18 17:13:41 +00001397 bool is_accessible = resolved_class->IsPublic(); // Public classes are always accessible.
1398 if (!is_accessible) {
David Brazdil38f64d32016-01-18 17:13:41 +00001399 if (referrer_class == nullptr) {
1400 stats_->TypeNeedsAccessCheck();
1401 return false; // Incomplete referrer knowledge needs access check.
1402 }
1403 // Perform access check, will return true if access is ok or false if we're going to have to
1404 // check this at runtime (for example for class loaders).
1405 is_accessible = referrer_class->CanAccess(resolved_class);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001406 }
David Brazdil38f64d32016-01-18 17:13:41 +00001407 if (is_accessible) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001408 stats_->TypeDoesntNeedAccessCheck();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001409 } else {
1410 stats_->TypeNeedsAccessCheck();
1411 }
David Brazdil38f64d32016-01-18 17:13:41 +00001412 return is_accessible;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001413}
1414
Vladimir Marko8d6768d2017-03-14 10:13:21 +00001415bool CompilerDriver::CanAccessInstantiableTypeWithoutChecks(ObjPtr<mirror::Class> referrer_class,
1416 ObjPtr<mirror::Class> resolved_class,
Mingyao Yangfb8464a2015-11-02 10:56:59 -08001417 bool* finalizable) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001418 if (resolved_class == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001419 stats_->TypeNeedsAccessCheck();
Mingyao Yangfb8464a2015-11-02 10:56:59 -08001420 // Be conservative.
1421 *finalizable = true;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001422 return false; // Unknown class needs access checks.
1423 }
Mingyao Yangfb8464a2015-11-02 10:56:59 -08001424 *finalizable = resolved_class->IsFinalizable();
David Brazdil38f64d32016-01-18 17:13:41 +00001425 bool is_accessible = resolved_class->IsPublic(); // Public classes are always accessible.
1426 if (!is_accessible) {
David Brazdil38f64d32016-01-18 17:13:41 +00001427 if (referrer_class == nullptr) {
1428 stats_->TypeNeedsAccessCheck();
1429 return false; // Incomplete referrer knowledge needs access check.
1430 }
1431 // Perform access and instantiable checks, will return true if access is ok or false if we're
1432 // going to have to check this at runtime (for example for class loaders).
1433 is_accessible = referrer_class->CanAccess(resolved_class);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001434 }
David Brazdil38f64d32016-01-18 17:13:41 +00001435 bool result = is_accessible && resolved_class->IsInstantiable();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001436 if (result) {
1437 stats_->TypeDoesntNeedAccessCheck();
1438 } else {
1439 stats_->TypeNeedsAccessCheck();
1440 }
1441 return result;
1442}
1443
Vladimir Markobe0e5462014-02-26 11:24:15 +00001444void CompilerDriver::ProcessedInstanceField(bool resolved) {
1445 if (!resolved) {
1446 stats_->UnresolvedInstanceField();
1447 } else {
1448 stats_->ResolvedInstanceField();
1449 }
1450}
1451
1452void CompilerDriver::ProcessedStaticField(bool resolved, bool local) {
1453 if (!resolved) {
1454 stats_->UnresolvedStaticField();
1455 } else if (local) {
1456 stats_->ResolvedLocalStaticField();
1457 } else {
1458 stats_->ResolvedStaticField();
1459 }
1460}
1461
Mathieu Chartierc7853442015-03-27 14:35:38 -07001462ArtField* CompilerDriver::ComputeInstanceFieldInfo(uint32_t field_idx,
Vladimir Markoe11dd502017-12-08 14:09:45 +00001463 const DexCompilationUnit* mUnit,
1464 bool is_put,
Mathieu Chartierc7853442015-03-27 14:35:38 -07001465 const ScopedObjectAccess& soa) {
Vladimir Markobe0e5462014-02-26 11:24:15 +00001466 // Try to resolve the field and compiling method's class.
Mathieu Chartierc7853442015-03-27 14:35:38 -07001467 ArtField* resolved_field;
Vladimir Marko28e012a2017-12-07 11:22:59 +00001468 ObjPtr<mirror::Class> referrer_class;
Mathieu Chartier736b5602015-09-02 14:54:11 -07001469 Handle<mirror::DexCache> dex_cache(mUnit->GetDexCache());
Vladimir Markobe0e5462014-02-26 11:24:15 +00001470 {
Vladimir Markoe11dd502017-12-08 14:09:45 +00001471 Handle<mirror::ClassLoader> class_loader = mUnit->GetClassLoader();
1472 resolved_field = ResolveField(soa, dex_cache, class_loader, field_idx, /* is_static */ false);
Mathieu Chartierc7853442015-03-27 14:35:38 -07001473 referrer_class = resolved_field != nullptr
Vladimir Markoe11dd502017-12-08 14:09:45 +00001474 ? ResolveCompilingMethodsClass(soa, dex_cache, class_loader, mUnit) : nullptr;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001475 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001476 bool can_link = false;
Vladimir Markobe0e5462014-02-26 11:24:15 +00001477 if (resolved_field != nullptr && referrer_class != nullptr) {
Vladimir Markobe0e5462014-02-26 11:24:15 +00001478 std::pair<bool, bool> fast_path = IsFastInstanceField(
Mathieu Chartier736b5602015-09-02 14:54:11 -07001479 dex_cache.Get(), referrer_class, resolved_field, field_idx);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001480 can_link = is_put ? fast_path.second : fast_path.first;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001481 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001482 ProcessedInstanceField(can_link);
1483 return can_link ? resolved_field : nullptr;
1484}
1485
1486bool CompilerDriver::ComputeInstanceFieldInfo(uint32_t field_idx, const DexCompilationUnit* mUnit,
1487 bool is_put, MemberOffset* field_offset,
1488 bool* is_volatile) {
1489 ScopedObjectAccess soa(Thread::Current());
Mathieu Chartierc7853442015-03-27 14:35:38 -07001490 ArtField* resolved_field = ComputeInstanceFieldInfo(field_idx, mUnit, is_put, soa);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001491
Mathieu Chartierc7853442015-03-27 14:35:38 -07001492 if (resolved_field == nullptr) {
Vladimir Markobe0e5462014-02-26 11:24:15 +00001493 // Conservative defaults.
1494 *is_volatile = true;
1495 *field_offset = MemberOffset(static_cast<size_t>(-1));
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001496 return false;
1497 } else {
1498 *is_volatile = resolved_field->IsVolatile();
1499 *field_offset = resolved_field->GetOffset();
1500 return true;
Vladimir Markobe0e5462014-02-26 11:24:15 +00001501 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001502}
1503
Vladimir Marko2730db02014-01-27 11:15:17 +00001504const VerifiedMethod* CompilerDriver::GetVerifiedMethod(const DexFile* dex_file,
1505 uint32_t method_idx) const {
1506 MethodReference ref(dex_file, method_idx);
1507 return verification_results_->GetVerifiedMethod(ref);
1508}
1509
1510bool CompilerDriver::IsSafeCast(const DexCompilationUnit* mUnit, uint32_t dex_pc) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001511 if (!compiler_options_->IsVerificationEnabled()) {
1512 // If we didn't verify, every cast has to be treated as non-safe.
1513 return false;
1514 }
Vladimir Marko2730db02014-01-27 11:15:17 +00001515 DCHECK(mUnit->GetVerifiedMethod() != nullptr);
1516 bool result = mUnit->GetVerifiedMethod()->IsSafeCast(dex_pc);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001517 if (result) {
1518 stats_->SafeCast();
1519 } else {
1520 stats_->NotASafeCast();
1521 }
1522 return result;
1523}
1524
Mathieu Chartier90443472015-07-16 20:32:27 -07001525class CompilationVisitor {
1526 public:
1527 virtual ~CompilationVisitor() {}
1528 virtual void Visit(size_t index) = 0;
1529};
1530
Brian Carlstrom7940e442013-07-12 13:46:57 -07001531class ParallelCompilationManager {
1532 public:
Brian Carlstrom7940e442013-07-12 13:46:57 -07001533 ParallelCompilationManager(ClassLinker* class_linker,
1534 jobject class_loader,
1535 CompilerDriver* compiler,
1536 const DexFile* dex_file,
Andreas Gampede7b4362014-07-28 18:38:57 -07001537 const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -08001538 ThreadPool* thread_pool)
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001539 : index_(0),
1540 class_linker_(class_linker),
Brian Carlstrom7940e442013-07-12 13:46:57 -07001541 class_loader_(class_loader),
1542 compiler_(compiler),
1543 dex_file_(dex_file),
Andreas Gampede7b4362014-07-28 18:38:57 -07001544 dex_files_(dex_files),
Ian Rogers3d504072014-03-01 09:16:49 -08001545 thread_pool_(thread_pool) {}
Brian Carlstrom7940e442013-07-12 13:46:57 -07001546
1547 ClassLinker* GetClassLinker() const {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001548 CHECK(class_linker_ != nullptr);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001549 return class_linker_;
1550 }
1551
1552 jobject GetClassLoader() const {
1553 return class_loader_;
1554 }
1555
1556 CompilerDriver* GetCompiler() const {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001557 CHECK(compiler_ != nullptr);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001558 return compiler_;
1559 }
1560
1561 const DexFile* GetDexFile() const {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001562 CHECK(dex_file_ != nullptr);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001563 return dex_file_;
1564 }
1565
Andreas Gampede7b4362014-07-28 18:38:57 -07001566 const std::vector<const DexFile*>& GetDexFiles() const {
1567 return dex_files_;
1568 }
1569
Mathieu Chartier90443472015-07-16 20:32:27 -07001570 void ForAll(size_t begin, size_t end, CompilationVisitor* visitor, size_t work_units)
1571 REQUIRES(!*Locks::mutator_lock_) {
Andreas Gampe3c060ad2018-01-22 13:07:49 -08001572 ForAllLambda(begin, end, [visitor](size_t index) { visitor->Visit(index); }, work_units);
1573 }
1574
1575 template <typename Fn>
1576 void ForAllLambda(size_t begin, size_t end, Fn fn, size_t work_units)
1577 REQUIRES(!*Locks::mutator_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001578 Thread* self = Thread::Current();
1579 self->AssertNoPendingException();
1580 CHECK_GT(work_units, 0U);
1581
Orion Hodson88591fe2018-03-06 13:35:43 +00001582 index_.store(begin, std::memory_order_relaxed);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001583 for (size_t i = 0; i < work_units; ++i) {
Andreas Gampe3c060ad2018-01-22 13:07:49 -08001584 thread_pool_->AddTask(self, new ForAllClosureLambda<Fn>(this, end, fn));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001585 }
1586 thread_pool_->StartWorkers(self);
1587
1588 // Ensure we're suspended while we're blocked waiting for the other threads to finish (worker
1589 // thread destructor's called below perform join).
1590 CHECK_NE(self->GetState(), kRunnable);
1591
1592 // Wait for all the worker threads to finish.
1593 thread_pool_->Wait(self, true, false);
Andreas Gampeace0dc12016-01-20 13:33:13 -08001594
1595 // And stop the workers accepting jobs.
1596 thread_pool_->StopWorkers(self);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001597 }
1598
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001599 size_t NextIndex() {
Orion Hodson88591fe2018-03-06 13:35:43 +00001600 return index_.fetch_add(1, std::memory_order_seq_cst);
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001601 }
1602
Brian Carlstrom7940e442013-07-12 13:46:57 -07001603 private:
Andreas Gampe3c060ad2018-01-22 13:07:49 -08001604 template <typename Fn>
1605 class ForAllClosureLambda : public Task {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001606 public:
Andreas Gampe3c060ad2018-01-22 13:07:49 -08001607 ForAllClosureLambda(ParallelCompilationManager* manager, size_t end, Fn fn)
Brian Carlstrom7940e442013-07-12 13:46:57 -07001608 : manager_(manager),
Brian Carlstrom7940e442013-07-12 13:46:57 -07001609 end_(end),
Andreas Gampe3c060ad2018-01-22 13:07:49 -08001610 fn_(fn) {}
Brian Carlstrom7940e442013-07-12 13:46:57 -07001611
Andreas Gampe3c060ad2018-01-22 13:07:49 -08001612 void Run(Thread* self) OVERRIDE {
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001613 while (true) {
1614 const size_t index = manager_->NextIndex();
1615 if (UNLIKELY(index >= end_)) {
1616 break;
1617 }
Andreas Gampe3c060ad2018-01-22 13:07:49 -08001618 fn_(index);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001619 self->AssertNoPendingException();
1620 }
1621 }
1622
Andreas Gampe3c060ad2018-01-22 13:07:49 -08001623 void Finalize() OVERRIDE {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001624 delete this;
1625 }
Brian Carlstrom0cd7ec22013-07-17 23:40:20 -07001626
Brian Carlstrom7940e442013-07-12 13:46:57 -07001627 private:
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001628 ParallelCompilationManager* const manager_;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001629 const size_t end_;
Andreas Gampe3c060ad2018-01-22 13:07:49 -08001630 Fn fn_;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001631 };
1632
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001633 AtomicInteger index_;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001634 ClassLinker* const class_linker_;
1635 const jobject class_loader_;
1636 CompilerDriver* const compiler_;
1637 const DexFile* const dex_file_;
Andreas Gampede7b4362014-07-28 18:38:57 -07001638 const std::vector<const DexFile*>& dex_files_;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001639 ThreadPool* const thread_pool_;
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001640
1641 DISALLOW_COPY_AND_ASSIGN(ParallelCompilationManager);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001642};
1643
Jeff Hao0e49b422013-11-08 12:16:56 -08001644// A fast version of SkipClass above if the class pointer is available
1645// that avoids the expensive FindInClassPath search.
Vladimir Marko28e012a2017-12-07 11:22:59 +00001646static bool SkipClass(jobject class_loader, const DexFile& dex_file, ObjPtr<mirror::Class> klass)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001647 REQUIRES_SHARED(Locks::mutator_lock_) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001648 DCHECK(klass != nullptr);
Jeff Hao0e49b422013-11-08 12:16:56 -08001649 const DexFile& original_dex_file = *klass->GetDexCache()->GetDexFile();
1650 if (&dex_file != &original_dex_file) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001651 if (class_loader == nullptr) {
David Sehr709b0702016-10-13 09:12:37 -07001652 LOG(WARNING) << "Skipping class " << klass->PrettyDescriptor() << " from "
Jeff Hao0e49b422013-11-08 12:16:56 -08001653 << dex_file.GetLocation() << " previously found in "
1654 << original_dex_file.GetLocation();
1655 }
1656 return true;
1657 }
1658 return false;
1659}
1660
Mathieu Chartier70b63482014-06-27 17:19:04 -07001661static void CheckAndClearResolveException(Thread* self)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001662 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartier70b63482014-06-27 17:19:04 -07001663 CHECK(self->IsExceptionPending());
Nicolas Geoffray14691c52015-03-05 10:40:17 +00001664 mirror::Throwable* exception = self->GetException();
Ian Rogers1ff3c982014-08-12 02:30:58 -07001665 std::string temp;
1666 const char* descriptor = exception->GetClass()->GetDescriptor(&temp);
1667 const char* expected_exceptions[] = {
1668 "Ljava/lang/IllegalAccessError;",
1669 "Ljava/lang/IncompatibleClassChangeError;",
1670 "Ljava/lang/InstantiationError;",
Brian Carlstrom898fcb52014-08-25 23:07:30 -07001671 "Ljava/lang/LinkageError;",
Ian Rogers1ff3c982014-08-12 02:30:58 -07001672 "Ljava/lang/NoClassDefFoundError;",
1673 "Ljava/lang/NoSuchFieldError;",
1674 "Ljava/lang/NoSuchMethodError;"
1675 };
1676 bool found = false;
1677 for (size_t i = 0; (found == false) && (i < arraysize(expected_exceptions)); ++i) {
1678 if (strcmp(descriptor, expected_exceptions[i]) == 0) {
1679 found = true;
1680 }
1681 }
1682 if (!found) {
Brian Carlstrom898fcb52014-08-25 23:07:30 -07001683 LOG(FATAL) << "Unexpected exception " << exception->Dump();
Mathieu Chartier70b63482014-06-27 17:19:04 -07001684 }
1685 self->ClearException();
1686}
1687
Mathieu Chartierb5d38612016-04-07 10:52:52 -07001688bool CompilerDriver::RequiresConstructorBarrier(const DexFile& dex_file,
1689 uint16_t class_def_idx) const {
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001690 ClassAccessor accessor(dex_file, dex_file.GetClassDef(class_def_idx));
1691 bool has_is_final = false;
Mathieu Chartierb5d38612016-04-07 10:52:52 -07001692 // We require a constructor barrier if there are final instance fields.
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001693 accessor.VisitFields(/*static*/ VoidFunctor(),
1694 [&](const ClassAccessor::Field& field) {
1695 if (field.IsFinal()) {
1696 has_is_final = true;
Mathieu Chartierb5d38612016-04-07 10:52:52 -07001697 }
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001698 });
1699 return has_is_final;
Mathieu Chartierb5d38612016-04-07 10:52:52 -07001700}
1701
Mathieu Chartier90443472015-07-16 20:32:27 -07001702class ResolveClassFieldsAndMethodsVisitor : public CompilationVisitor {
1703 public:
1704 explicit ResolveClassFieldsAndMethodsVisitor(const ParallelCompilationManager* manager)
1705 : manager_(manager) {}
Brian Carlstrom7940e442013-07-12 13:46:57 -07001706
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001707 void Visit(size_t class_def_index) OVERRIDE REQUIRES(!Locks::mutator_lock_) {
Andreas Gampe9b827ab2017-12-07 19:32:48 -08001708 ScopedTrace trace(__FUNCTION__);
Mathieu Chartier90443472015-07-16 20:32:27 -07001709 Thread* const self = Thread::Current();
1710 jobject jclass_loader = manager_->GetClassLoader();
1711 const DexFile& dex_file = *manager_->GetDexFile();
1712 ClassLinker* class_linker = manager_->GetClassLinker();
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001713
Mathieu Chartier90443472015-07-16 20:32:27 -07001714 // Method and Field are the worst. We can't resolve without either
1715 // context from the code use (to disambiguate virtual vs direct
1716 // method and instance vs static field) or from class
1717 // definitions. While the compiler will resolve what it can as it
1718 // needs it, here we try to resolve fields and methods used in class
1719 // definitions, since many of them many never be referenced by
1720 // generated code.
1721 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
1722 ScopedObjectAccess soa(self);
1723 StackHandleScope<2> hs(soa.Self());
1724 Handle<mirror::ClassLoader> class_loader(
Mathieu Chartier0795f232016-09-27 18:43:30 -07001725 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader)));
Mathieu Chartier673ed3d2015-08-28 14:56:43 -07001726 Handle<mirror::DexCache> dex_cache(hs.NewHandle(class_linker->FindDexCache(
Vladimir Markocd556b02017-02-03 11:47:34 +00001727 soa.Self(), dex_file)));
Mathieu Chartier90443472015-07-16 20:32:27 -07001728 // Resolve the class.
Vladimir Marko28e012a2017-12-07 11:22:59 +00001729 ObjPtr<mirror::Class> klass =
Vladimir Marko666ee3d2017-12-11 18:37:36 +00001730 class_linker->ResolveType(class_def.class_idx_, dex_cache, class_loader);
Mathieu Chartier90443472015-07-16 20:32:27 -07001731 bool resolve_fields_and_methods;
1732 if (klass == nullptr) {
1733 // Class couldn't be resolved, for example, super-class is in a different dex file. Don't
1734 // attempt to resolve methods and fields when there is no declaring class.
1735 CheckAndClearResolveException(soa.Self());
1736 resolve_fields_and_methods = false;
1737 } else {
1738 // We successfully resolved a class, should we skip it?
1739 if (SkipClass(jclass_loader, dex_file, klass)) {
1740 return;
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001741 }
Mathieu Chartier90443472015-07-16 20:32:27 -07001742 // We want to resolve the methods and fields eagerly.
1743 resolve_fields_and_methods = true;
Ian Rogers68b56852014-08-29 20:19:11 -07001744 }
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001745 // If an instance field is final then we need to have a barrier on the return, static final
1746 // fields are assigned within the lock held for class initialization.
1747 bool requires_constructor_barrier = false;
1748
1749 ClassAccessor accessor(dex_file, class_def);
1750 // Optionally resolve fields and methods and figure out if we need a constructor barrier.
1751 auto method_visitor = [&](const ClassAccessor::Method& method)
1752 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartier90443472015-07-16 20:32:27 -07001753 if (resolve_fields_and_methods) {
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001754 ArtMethod* resolved = class_linker->ResolveMethod<ClassLinker::ResolveMode::kNoChecks>(
1755 method.GetIndex(),
1756 dex_cache,
1757 class_loader,
1758 /* referrer */ nullptr,
1759 method.GetInvokeType(class_def.access_flags_));
1760 if (resolved == nullptr) {
1761 CheckAndClearResolveException(soa.Self());
Mathieu Chartier90443472015-07-16 20:32:27 -07001762 }
Mathieu Chartier90443472015-07-16 20:32:27 -07001763 }
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001764 };
1765 accessor.VisitFieldsAndMethods(
1766 // static fields
1767 [&](ClassAccessor::Field& field) REQUIRES_SHARED(Locks::mutator_lock_) {
1768 if (resolve_fields_and_methods) {
1769 ArtField* resolved = class_linker->ResolveField(
1770 field.GetIndex(), dex_cache, class_loader, /* is_static */ true);
1771 if (resolved == nullptr) {
1772 CheckAndClearResolveException(soa.Self());
1773 }
1774 }
1775 },
1776 // instance fields
1777 [&](ClassAccessor::Field& field) REQUIRES_SHARED(Locks::mutator_lock_) {
1778 if (field.IsFinal()) {
1779 // We require a constructor barrier if there are final instance fields.
1780 requires_constructor_barrier = true;
1781 }
1782 if (resolve_fields_and_methods) {
1783 ArtField* resolved = class_linker->ResolveField(
1784 field.GetIndex(), dex_cache, class_loader, /* is_static */ false);
1785 if (resolved == nullptr) {
1786 CheckAndClearResolveException(soa.Self());
1787 }
1788 }
1789 },
1790 /*direct methods*/ method_visitor,
1791 /*virtual methods*/ method_visitor);
Mathieu Chartierc4ae9162016-04-07 13:19:19 -07001792 manager_->GetCompiler()->SetRequiresConstructorBarrier(self,
1793 &dex_file,
1794 class_def_index,
1795 requires_constructor_barrier);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001796 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001797
Mathieu Chartier90443472015-07-16 20:32:27 -07001798 private:
1799 const ParallelCompilationManager* const manager_;
1800};
1801
1802class ResolveTypeVisitor : public CompilationVisitor {
1803 public:
1804 explicit ResolveTypeVisitor(const ParallelCompilationManager* manager) : manager_(manager) {
1805 }
Andreas Gampea5b09a62016-11-17 15:21:22 -08001806 void Visit(size_t type_idx) OVERRIDE REQUIRES(!Locks::mutator_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001807 // Class derived values are more complicated, they require the linker and loader.
Mathieu Chartier90443472015-07-16 20:32:27 -07001808 ScopedObjectAccess soa(Thread::Current());
1809 ClassLinker* class_linker = manager_->GetClassLinker();
1810 const DexFile& dex_file = *manager_->GetDexFile();
1811 StackHandleScope<2> hs(soa.Self());
Mathieu Chartier90443472015-07-16 20:32:27 -07001812 Handle<mirror::ClassLoader> class_loader(
Mathieu Chartier0795f232016-09-27 18:43:30 -07001813 hs.NewHandle(soa.Decode<mirror::ClassLoader>(manager_->GetClassLoader())));
Mathieu Chartierd57d4542015-10-14 10:55:30 -07001814 Handle<mirror::DexCache> dex_cache(hs.NewHandle(class_linker->RegisterDexFile(
1815 dex_file,
Mathieu Chartierf284d442016-06-02 11:48:30 -07001816 class_loader.Get())));
Andreas Gampefa4333d2017-02-14 11:10:34 -08001817 ObjPtr<mirror::Class> klass = (dex_cache != nullptr)
Vladimir Marko666ee3d2017-12-11 18:37:36 +00001818 ? class_linker->ResolveType(dex::TypeIndex(type_idx), dex_cache, class_loader)
Vladimir Markocd556b02017-02-03 11:47:34 +00001819 : nullptr;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001820
Mathieu Chartier90443472015-07-16 20:32:27 -07001821 if (klass == nullptr) {
1822 soa.Self()->AssertPendingException();
1823 mirror::Throwable* exception = soa.Self()->GetException();
1824 VLOG(compiler) << "Exception during type resolution: " << exception->Dump();
1825 if (exception->GetClass()->DescriptorEquals("Ljava/lang/OutOfMemoryError;")) {
1826 // There's little point continuing compilation if the heap is exhausted.
1827 LOG(FATAL) << "Out of memory during type resolution for compilation";
1828 }
1829 soa.Self()->ClearException();
Ian Rogersa436fde2013-08-27 23:34:06 -07001830 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001831 }
Mathieu Chartier90443472015-07-16 20:32:27 -07001832
1833 private:
1834 const ParallelCompilationManager* const manager_;
1835};
Brian Carlstrom7940e442013-07-12 13:46:57 -07001836
Andreas Gampeace0dc12016-01-20 13:33:13 -08001837void CompilerDriver::ResolveDexFile(jobject class_loader,
1838 const DexFile& dex_file,
Andreas Gampede7b4362014-07-28 18:38:57 -07001839 const std::vector<const DexFile*>& dex_files,
Andreas Gampeace0dc12016-01-20 13:33:13 -08001840 ThreadPool* thread_pool,
1841 size_t thread_count,
1842 TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001843 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
1844
1845 // TODO: we could resolve strings here, although the string table is largely filled with class
1846 // and method names.
1847
Andreas Gampede7b4362014-07-28 18:38:57 -07001848 ParallelCompilationManager context(class_linker, class_loader, this, &dex_file, dex_files,
1849 thread_pool);
Vladimir Markoaad75c62016-10-03 08:46:48 +00001850 if (GetCompilerOptions().IsBootImage()) {
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001851 // For images we resolve all types, such as array, whereas for applications just those with
1852 // classdefs are resolved by ResolveClassFieldsAndMethods.
Mathieu Chartierf5997b42014-06-20 10:37:54 -07001853 TimingLogger::ScopedTiming t("Resolve Types", timings);
Mathieu Chartier90443472015-07-16 20:32:27 -07001854 ResolveTypeVisitor visitor(&context);
Andreas Gampeace0dc12016-01-20 13:33:13 -08001855 context.ForAll(0, dex_file.NumTypeIds(), &visitor, thread_count);
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001856 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001857
Mathieu Chartierf5997b42014-06-20 10:37:54 -07001858 TimingLogger::ScopedTiming t("Resolve MethodsAndFields", timings);
Mathieu Chartier90443472015-07-16 20:32:27 -07001859 ResolveClassFieldsAndMethodsVisitor visitor(&context);
Andreas Gampeace0dc12016-01-20 13:33:13 -08001860 context.ForAll(0, dex_file.NumClassDefs(), &visitor, thread_count);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001861}
1862
Andreas Gampeace0dc12016-01-20 13:33:13 -08001863void CompilerDriver::SetVerified(jobject class_loader,
1864 const std::vector<const DexFile*>& dex_files,
1865 TimingLogger* timings) {
1866 // This can be run in parallel.
Mathieu Chartier90443472015-07-16 20:32:27 -07001867 for (const DexFile* dex_file : dex_files) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001868 CHECK(dex_file != nullptr);
Andreas Gampeace0dc12016-01-20 13:33:13 -08001869 SetVerifiedDexFile(class_loader,
1870 *dex_file,
1871 dex_files,
1872 parallel_thread_pool_.get(),
1873 parallel_thread_count_,
1874 timings);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001875 }
1876}
1877
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001878static void LoadAndUpdateStatus(const ClassAccessor& accessor,
Vladimir Marko2c64a832018-01-04 11:31:56 +00001879 ClassStatus status,
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001880 Handle<mirror::ClassLoader> class_loader,
1881 Thread* self)
1882 REQUIRES_SHARED(Locks::mutator_lock_) {
1883 StackHandleScope<1> hs(self);
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001884 const char* descriptor = accessor.GetDescriptor();
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001885 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
1886 Handle<mirror::Class> cls(hs.NewHandle<mirror::Class>(
1887 class_linker->FindClass(self, descriptor, class_loader)));
Andreas Gampefa4333d2017-02-14 11:10:34 -08001888 if (cls != nullptr) {
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001889 // Check that the class is resolved with the current dex file. We might get
1890 // a boot image class, or a class in a different dex file for multidex, and
1891 // we should not update the status in that case.
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001892 if (&cls->GetDexFile() == &accessor.GetDexFile()) {
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001893 ObjectLock<mirror::Class> lock(self, cls);
1894 mirror::Class::SetStatus(cls, status, self);
1895 }
1896 } else {
1897 DCHECK(self->IsExceptionPending());
1898 self->ClearException();
1899 }
1900}
1901
Nicolas Geoffray74981052017-01-16 17:54:09 +00001902bool CompilerDriver::FastVerify(jobject jclass_loader,
1903 const std::vector<const DexFile*>& dex_files,
1904 TimingLogger* timings) {
Nicolas Geoffrayb0bbe8e2016-11-19 10:42:37 +00001905 verifier::VerifierDeps* verifier_deps =
1906 Runtime::Current()->GetCompilerCallbacks()->GetVerifierDeps();
Mathieu Chartier72041a02017-07-14 18:23:25 -07001907 // If there exist VerifierDeps that aren't the ones we just created to output, use them to verify.
1908 if (verifier_deps == nullptr || verifier_deps->OutputOnly()) {
Nicolas Geoffray74981052017-01-16 17:54:09 +00001909 return false;
1910 }
1911 TimingLogger::ScopedTiming t("Fast Verify", timings);
1912 ScopedObjectAccess soa(Thread::Current());
1913 StackHandleScope<2> hs(soa.Self());
1914 Handle<mirror::ClassLoader> class_loader(
1915 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader)));
Nicolas Geoffray74981052017-01-16 17:54:09 +00001916 if (!verifier_deps->ValidateDependencies(class_loader, soa.Self())) {
1917 return false;
1918 }
1919
Nicolas Geoffray49cda062017-04-21 13:08:25 +01001920 bool compiler_only_verifies = !GetCompilerOptions().IsAnyCompilationEnabled();
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001921
Nicolas Geoffray74981052017-01-16 17:54:09 +00001922 // We successfully validated the dependencies, now update class status
1923 // of verified classes. Note that the dependencies also record which classes
1924 // could not be fully verified; we could try again, but that would hurt verification
1925 // time. So instead we assume these classes still need to be verified at
1926 // runtime.
1927 for (const DexFile* dex_file : dex_files) {
Mathieu Chartierbf755fe2017-08-01 13:42:56 -07001928 // Fetch the list of unverified classes.
1929 const std::set<dex::TypeIndex>& unverified_classes =
Nicolas Geoffray74981052017-01-16 17:54:09 +00001930 verifier_deps->GetUnverifiedClasses(*dex_file);
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001931 uint32_t class_def_idx = 0u;
1932 for (ClassAccessor accessor : dex_file->GetClasses()) {
1933 if (unverified_classes.find(accessor.GetClassIdx()) == unverified_classes.end()) {
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001934 if (compiler_only_verifies) {
Nicolas Geoffray74981052017-01-16 17:54:09 +00001935 // Just update the compiled_classes_ map. The compiler doesn't need to resolve
1936 // the type.
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001937 ClassReference ref(dex_file, class_def_idx);
Mathieu Chartier2eabc612018-05-25 14:31:16 -07001938 const ClassStatus existing = ClassStatus::kNotReady;
Mathieu Chartier1a088d42017-07-18 11:43:57 -07001939 ClassStateTable::InsertResult result =
Vladimir Marko2c64a832018-01-04 11:31:56 +00001940 compiled_classes_.Insert(ref, existing, ClassStatus::kVerified);
Mathieu Chartier2eabc612018-05-25 14:31:16 -07001941 CHECK_EQ(result, ClassStateTable::kInsertResultSuccess) << ref.dex_file->GetLocation();
Nicolas Geoffray74981052017-01-16 17:54:09 +00001942 } else {
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001943 // Update the class status, so later compilation stages know they don't need to verify
Nicolas Geoffray74981052017-01-16 17:54:09 +00001944 // the class.
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001945 LoadAndUpdateStatus(accessor, ClassStatus::kVerified, class_loader, soa.Self());
Nicolas Geoffray74981052017-01-16 17:54:09 +00001946 // Create `VerifiedMethod`s for each methods, the compiler expects one for
1947 // quickening or compiling.
1948 // Note that this means:
1949 // - We're only going to compile methods that did verify.
1950 // - Quickening will not do checkcast ellision.
1951 // TODO(ngeoffray): Reconsider this once we refactor compiler filters.
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001952 accessor.VisitMethods([&](const ClassAccessor::Method& method) {
1953 verification_results_->CreateVerifiedMethodFor(method.GetReference());
1954 });
Nicolas Geoffray6bb7f1b2016-11-03 10:52:49 +00001955 }
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001956 } else if (!compiler_only_verifies) {
1957 // Make sure later compilation stages know they should not try to verify
1958 // this class again.
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001959 LoadAndUpdateStatus(accessor,
Vladimir Marko2c64a832018-01-04 11:31:56 +00001960 ClassStatus::kRetryVerificationAtRuntime,
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001961 class_loader,
1962 soa.Self());
Nicolas Geoffray6bb7f1b2016-11-03 10:52:49 +00001963 }
Mathieu Chartier2eabc612018-05-25 14:31:16 -07001964 ++class_def_idx;
Nicolas Geoffray6bb7f1b2016-11-03 10:52:49 +00001965 }
1966 }
Nicolas Geoffray74981052017-01-16 17:54:09 +00001967 return true;
1968}
1969
1970void CompilerDriver::Verify(jobject jclass_loader,
1971 const std::vector<const DexFile*>& dex_files,
1972 TimingLogger* timings) {
1973 if (FastVerify(jclass_loader, dex_files, timings)) {
1974 return;
1975 }
Nicolas Geoffray6bb7f1b2016-11-03 10:52:49 +00001976
Nicolas Geoffrayb0bbe8e2016-11-19 10:42:37 +00001977 // If there is no existing `verifier_deps` (because of non-existing vdex), or
1978 // the existing `verifier_deps` is not valid anymore, create a new one for
Nicolas Geoffray6bb7f1b2016-11-03 10:52:49 +00001979 // non boot image compilation. The verifier will need it to record the new dependencies.
1980 // Then dex2oat can update the vdex file with these new dependencies.
1981 if (!GetCompilerOptions().IsBootImage()) {
Mathieu Chartier72041a02017-07-14 18:23:25 -07001982 // Dex2oat creates the verifier deps.
Nicolas Geoffray340dafa2016-11-18 16:03:10 +00001983 // Create the main VerifierDeps, and set it to this thread.
Mathieu Chartier72041a02017-07-14 18:23:25 -07001984 verifier::VerifierDeps* verifier_deps =
1985 Runtime::Current()->GetCompilerCallbacks()->GetVerifierDeps();
1986 CHECK(verifier_deps != nullptr);
Nicolas Geoffrayb0bbe8e2016-11-19 10:42:37 +00001987 Thread::Current()->SetVerifierDeps(verifier_deps);
Nicolas Geoffray340dafa2016-11-18 16:03:10 +00001988 // Create per-thread VerifierDeps to avoid contention on the main one.
1989 // We will merge them after verification.
1990 for (ThreadPoolWorker* worker : parallel_thread_pool_->GetWorkers()) {
Mathieu Chartier72041a02017-07-14 18:23:25 -07001991 worker->GetThread()->SetVerifierDeps(new verifier::VerifierDeps(dex_files_for_oat_file_));
Nicolas Geoffray340dafa2016-11-18 16:03:10 +00001992 }
Nicolas Geoffray6bb7f1b2016-11-03 10:52:49 +00001993 }
Nicolas Geoffray74981052017-01-16 17:54:09 +00001994
Nicolas Geoffray46847392017-04-28 14:56:39 +01001995 // Verification updates VerifierDeps and needs to run single-threaded to be deterministic.
1996 bool force_determinism = GetCompilerOptions().IsForceDeterminism();
1997 ThreadPool* verify_thread_pool =
1998 force_determinism ? single_thread_pool_.get() : parallel_thread_pool_.get();
1999 size_t verify_thread_count = force_determinism ? 1U : parallel_thread_count_;
Mathieu Chartier90443472015-07-16 20:32:27 -07002000 for (const DexFile* dex_file : dex_files) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002001 CHECK(dex_file != nullptr);
Nicolas Geoffray6bb7f1b2016-11-03 10:52:49 +00002002 VerifyDexFile(jclass_loader,
Andreas Gampeace0dc12016-01-20 13:33:13 -08002003 *dex_file,
2004 dex_files,
Nicolas Geoffray46847392017-04-28 14:56:39 +01002005 verify_thread_pool,
2006 verify_thread_count,
Andreas Gampeace0dc12016-01-20 13:33:13 -08002007 timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002008 }
Nicolas Geoffray340dafa2016-11-18 16:03:10 +00002009
2010 if (!GetCompilerOptions().IsBootImage()) {
Nicolas Geoffray340dafa2016-11-18 16:03:10 +00002011 // Merge all VerifierDeps into the main one.
Nicolas Geoffray74981052017-01-16 17:54:09 +00002012 verifier::VerifierDeps* verifier_deps = Thread::Current()->GetVerifierDeps();
Nicolas Geoffray340dafa2016-11-18 16:03:10 +00002013 for (ThreadPoolWorker* worker : parallel_thread_pool_->GetWorkers()) {
2014 verifier::VerifierDeps* thread_deps = worker->GetThread()->GetVerifierDeps();
2015 worker->GetThread()->SetVerifierDeps(nullptr);
Mathieu Chartier72041a02017-07-14 18:23:25 -07002016 verifier_deps->MergeWith(*thread_deps, dex_files_for_oat_file_);
Nicolas Geoffray340dafa2016-11-18 16:03:10 +00002017 delete thread_deps;
2018 }
2019 Thread::Current()->SetVerifierDeps(nullptr);
2020 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002021}
2022
Mathieu Chartier90443472015-07-16 20:32:27 -07002023class VerifyClassVisitor : public CompilationVisitor {
2024 public:
Andreas Gampe5fd66d02016-09-12 20:22:19 -07002025 VerifyClassVisitor(const ParallelCompilationManager* manager, verifier::HardFailLogMode log_level)
Andreas Gampe7fe30232016-03-25 16:58:00 -07002026 : manager_(manager), log_level_(log_level) {}
Brian Carlstrom7940e442013-07-12 13:46:57 -07002027
Mathieu Chartier90443472015-07-16 20:32:27 -07002028 virtual void Visit(size_t class_def_index) REQUIRES(!Locks::mutator_lock_) OVERRIDE {
Andreas Gampe9b827ab2017-12-07 19:32:48 -08002029 ScopedTrace trace(__FUNCTION__);
Mathieu Chartier90443472015-07-16 20:32:27 -07002030 ScopedObjectAccess soa(Thread::Current());
2031 const DexFile& dex_file = *manager_->GetDexFile();
2032 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
2033 const char* descriptor = dex_file.GetClassDescriptor(class_def);
2034 ClassLinker* class_linker = manager_->GetClassLinker();
2035 jobject jclass_loader = manager_->GetClassLoader();
2036 StackHandleScope<3> hs(soa.Self());
2037 Handle<mirror::ClassLoader> class_loader(
Mathieu Chartier0795f232016-09-27 18:43:30 -07002038 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader)));
Mathieu Chartier90443472015-07-16 20:32:27 -07002039 Handle<mirror::Class> klass(
2040 hs.NewHandle(class_linker->FindClass(soa.Self(), descriptor, class_loader)));
Andreas Gampe6d7abbd2017-04-24 13:19:09 -07002041 verifier::FailureKind failure_kind;
Andreas Gampefa4333d2017-02-14 11:10:34 -08002042 if (klass == nullptr) {
Ian Rogerse6bb3b22013-08-19 21:51:45 -07002043 CHECK(soa.Self()->IsExceptionPending());
2044 soa.Self()->ClearException();
Mathieu Chartier90443472015-07-16 20:32:27 -07002045
2046 /*
2047 * At compile time, we can still structurally verify the class even if FindClass fails.
2048 * This is to ensure the class is structurally sound for compilation. An unsound class
2049 * will be rejected by the verifier and later skipped during compilation in the compiler.
2050 */
Mathieu Chartier673ed3d2015-08-28 14:56:43 -07002051 Handle<mirror::DexCache> dex_cache(hs.NewHandle(class_linker->FindDexCache(
Vladimir Markocd556b02017-02-03 11:47:34 +00002052 soa.Self(), dex_file)));
Mathieu Chartier90443472015-07-16 20:32:27 -07002053 std::string error_msg;
Nicolas Geoffray08025182016-10-25 17:20:18 +01002054 failure_kind =
2055 verifier::MethodVerifier::VerifyClass(soa.Self(),
Andreas Gampeec6e6c12015-11-05 20:39:56 -08002056 &dex_file,
2057 dex_cache,
2058 class_loader,
David Brazdil15fc7292016-09-02 14:13:18 +01002059 class_def,
Andreas Gampe53e32d12015-12-09 21:03:23 -08002060 Runtime::Current()->GetCompilerCallbacks(),
Andreas Gampeec6e6c12015-11-05 20:39:56 -08002061 true /* allow soft failures */,
Andreas Gampe7fe30232016-03-25 16:58:00 -07002062 log_level_,
Nicolas Geoffray08025182016-10-25 17:20:18 +01002063 &error_msg);
Andreas Gampe6d7abbd2017-04-24 13:19:09 -07002064 if (failure_kind == verifier::FailureKind::kHardFailure) {
Mathieu Chartier90443472015-07-16 20:32:27 -07002065 LOG(ERROR) << "Verification failed on class " << PrettyDescriptor(descriptor)
2066 << " because: " << error_msg;
2067 manager_->GetCompiler()->SetHadHardVerifierFailure();
Andreas Gampef39208f2017-10-19 15:06:59 -07002068 } else if (failure_kind == verifier::FailureKind::kSoftFailure) {
2069 manager_->GetCompiler()->AddSoftVerifierFailure();
Nicolas Geoffray7cc3ae52017-03-07 14:33:37 +00002070 } else {
2071 // Force a soft failure for the VerifierDeps. This is a sanity measure, as
2072 // the vdex file already records that the class hasn't been resolved. It avoids
2073 // trying to do future verification optimizations when processing the vdex file.
Andreas Gampef39208f2017-10-19 15:06:59 -07002074 DCHECK(failure_kind == verifier::FailureKind::kNoFailure) << failure_kind;
Andreas Gampe6d7abbd2017-04-24 13:19:09 -07002075 failure_kind = verifier::FailureKind::kSoftFailure;
Mathieu Chartier90443472015-07-16 20:32:27 -07002076 }
Andreas Gampebb30d5d2018-04-23 09:59:25 -07002077 } else if (&klass->GetDexFile() != &dex_file) {
2078 // Skip a duplicate class (as the resolved class is from another, earlier dex file).
2079 return; // Do not update state.
Mathieu Chartier90443472015-07-16 20:32:27 -07002080 } else if (!SkipClass(jclass_loader, dex_file, klass.Get())) {
David Sehr709b0702016-10-13 09:12:37 -07002081 CHECK(klass->IsResolved()) << klass->PrettyClass();
Nicolas Geoffray08025182016-10-25 17:20:18 +01002082 failure_kind = class_linker->VerifyClass(soa.Self(), klass, log_level_);
Mathieu Chartier90443472015-07-16 20:32:27 -07002083
2084 if (klass->IsErroneous()) {
2085 // ClassLinker::VerifyClass throws, which isn't useful in the compiler.
2086 CHECK(soa.Self()->IsExceptionPending());
2087 soa.Self()->ClearException();
2088 manager_->GetCompiler()->SetHadHardVerifierFailure();
Andreas Gampef39208f2017-10-19 15:06:59 -07002089 } else if (failure_kind == verifier::FailureKind::kSoftFailure) {
2090 manager_->GetCompiler()->AddSoftVerifierFailure();
Mathieu Chartier90443472015-07-16 20:32:27 -07002091 }
2092
Nicolas Geoffray7cc3ae52017-03-07 14:33:37 +00002093 CHECK(klass->ShouldVerifyAtRuntime() || klass->IsVerified() || klass->IsErroneous())
David Sehr709b0702016-10-13 09:12:37 -07002094 << klass->PrettyDescriptor() << ": state=" << klass->GetStatus();
Mathieu Chartier90443472015-07-16 20:32:27 -07002095
Nicolas Geoffrayc7da1d62017-04-19 09:36:24 +01002096 // Class has a meaningful status for the compiler now, record it.
2097 ClassReference ref(manager_->GetDexFile(), class_def_index);
2098 manager_->GetCompiler()->RecordClassStatus(ref, klass->GetStatus());
2099
Andreas Gamped278cb42017-11-22 14:13:00 -08002100 // It is *very* problematic if there are resolution errors in the boot classpath.
2101 //
2102 // It is also bad if classes fail verification. For example, we rely on things working
2103 // OK without verification when the decryption dialog is brought up. It is thus highly
2104 // recommended to compile the boot classpath with
2105 // --abort-on-hard-verifier-error --abort-on-soft-verifier-error
2106 // which is the default build system configuration.
Narayan Kamathe3eae5e2016-10-27 11:47:30 +01002107 if (kIsDebugBuild) {
Orion Hodsonc5e0d3f2017-08-22 19:00:04 +01002108 if (manager_->GetCompiler()->GetCompilerOptions().IsBootImage()) {
Andreas Gamped278cb42017-11-22 14:13:00 -08002109 if (!klass->IsResolved() || klass->IsErroneous()) {
Andreas Gampe12fadcd2017-08-03 05:06:28 -07002110 LOG(FATAL) << "Boot classpath class " << klass->PrettyClass()
Andreas Gamped278cb42017-11-22 14:13:00 -08002111 << " failed to resolve/is erroneous: state= " << klass->GetStatus();
2112 UNREACHABLE();
Andreas Gampe12fadcd2017-08-03 05:06:28 -07002113 }
Narayan Kamathe3eae5e2016-10-27 11:47:30 +01002114 }
Nicolas Geoffray7cc3ae52017-03-07 14:33:37 +00002115 if (klass->IsVerified()) {
Andreas Gampe6d7abbd2017-04-24 13:19:09 -07002116 DCHECK_EQ(failure_kind, verifier::FailureKind::kNoFailure);
Nicolas Geoffray7cc3ae52017-03-07 14:33:37 +00002117 } else if (klass->ShouldVerifyAtRuntime()) {
Andreas Gampe6d7abbd2017-04-24 13:19:09 -07002118 DCHECK_EQ(failure_kind, verifier::FailureKind::kSoftFailure);
Nicolas Geoffray7cc3ae52017-03-07 14:33:37 +00002119 } else {
Andreas Gampe6d7abbd2017-04-24 13:19:09 -07002120 DCHECK_EQ(failure_kind, verifier::FailureKind::kHardFailure);
Nicolas Geoffray7cc3ae52017-03-07 14:33:37 +00002121 }
Narayan Kamathe3eae5e2016-10-27 11:47:30 +01002122 }
Nicolas Geoffray08025182016-10-25 17:20:18 +01002123 } else {
2124 // Make the skip a soft failure, essentially being considered as verify at runtime.
Andreas Gampe6d7abbd2017-04-24 13:19:09 -07002125 failure_kind = verifier::FailureKind::kSoftFailure;
Ian Rogerse6bb3b22013-08-19 21:51:45 -07002126 }
Nicolas Geoffray08025182016-10-25 17:20:18 +01002127 verifier::VerifierDeps::MaybeRecordVerificationStatus(
2128 dex_file, class_def.class_idx_, failure_kind);
Mathieu Chartier90443472015-07-16 20:32:27 -07002129 soa.Self()->AssertNoPendingException();
Brian Carlstrom7940e442013-07-12 13:46:57 -07002130 }
Mathieu Chartier90443472015-07-16 20:32:27 -07002131
2132 private:
2133 const ParallelCompilationManager* const manager_;
Andreas Gampe5fd66d02016-09-12 20:22:19 -07002134 const verifier::HardFailLogMode log_level_;
Mathieu Chartier90443472015-07-16 20:32:27 -07002135};
Brian Carlstrom7940e442013-07-12 13:46:57 -07002136
Andreas Gampeace0dc12016-01-20 13:33:13 -08002137void CompilerDriver::VerifyDexFile(jobject class_loader,
2138 const DexFile& dex_file,
Andreas Gampede7b4362014-07-28 18:38:57 -07002139 const std::vector<const DexFile*>& dex_files,
Andreas Gampeace0dc12016-01-20 13:33:13 -08002140 ThreadPool* thread_pool,
2141 size_t thread_count,
2142 TimingLogger* timings) {
Mathieu Chartierf5997b42014-06-20 10:37:54 -07002143 TimingLogger::ScopedTiming t("Verify Dex File", timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002144 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Andreas Gampede7b4362014-07-28 18:38:57 -07002145 ParallelCompilationManager context(class_linker, class_loader, this, &dex_file, dex_files,
2146 thread_pool);
Andreas Gampef39208f2017-10-19 15:06:59 -07002147 bool abort_on_verifier_failures = GetCompilerOptions().AbortOnHardVerifierFailure()
2148 || GetCompilerOptions().AbortOnSoftVerifierFailure();
2149 verifier::HardFailLogMode log_level = abort_on_verifier_failures
Andreas Gampe5fd66d02016-09-12 20:22:19 -07002150 ? verifier::HardFailLogMode::kLogInternalFatal
2151 : verifier::HardFailLogMode::kLogWarning;
Andreas Gampe7fe30232016-03-25 16:58:00 -07002152 VerifyClassVisitor visitor(&context, log_level);
Andreas Gampeace0dc12016-01-20 13:33:13 -08002153 context.ForAll(0, dex_file.NumClassDefs(), &visitor, thread_count);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002154}
2155
Mathieu Chartier90443472015-07-16 20:32:27 -07002156class SetVerifiedClassVisitor : public CompilationVisitor {
2157 public:
2158 explicit SetVerifiedClassVisitor(const ParallelCompilationManager* manager) : manager_(manager) {}
2159
2160 virtual void Visit(size_t class_def_index) REQUIRES(!Locks::mutator_lock_) OVERRIDE {
Andreas Gampe9b827ab2017-12-07 19:32:48 -08002161 ScopedTrace trace(__FUNCTION__);
Mathieu Chartier90443472015-07-16 20:32:27 -07002162 ScopedObjectAccess soa(Thread::Current());
2163 const DexFile& dex_file = *manager_->GetDexFile();
2164 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
2165 const char* descriptor = dex_file.GetClassDescriptor(class_def);
2166 ClassLinker* class_linker = manager_->GetClassLinker();
2167 jobject jclass_loader = manager_->GetClassLoader();
2168 StackHandleScope<3> hs(soa.Self());
2169 Handle<mirror::ClassLoader> class_loader(
Mathieu Chartier0795f232016-09-27 18:43:30 -07002170 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader)));
Mathieu Chartier90443472015-07-16 20:32:27 -07002171 Handle<mirror::Class> klass(
2172 hs.NewHandle(class_linker->FindClass(soa.Self(), descriptor, class_loader)));
2173 // Class might have failed resolution. Then don't set it to verified.
Andreas Gampefa4333d2017-02-14 11:10:34 -08002174 if (klass != nullptr) {
Mathieu Chartier90443472015-07-16 20:32:27 -07002175 // Only do this if the class is resolved. If even resolution fails, quickening will go very,
2176 // very wrong.
Vladimir Marko72ab6842017-01-20 19:32:50 +00002177 if (klass->IsResolved() && !klass->IsErroneousResolved()) {
Vladimir Marko2c64a832018-01-04 11:31:56 +00002178 if (klass->GetStatus() < ClassStatus::kVerified) {
Mathieu Chartier90443472015-07-16 20:32:27 -07002179 ObjectLock<mirror::Class> lock(soa.Self(), klass);
2180 // Set class status to verified.
Vladimir Marko2c64a832018-01-04 11:31:56 +00002181 mirror::Class::SetStatus(klass, ClassStatus::kVerified, soa.Self());
Mathieu Chartier90443472015-07-16 20:32:27 -07002182 // Mark methods as pre-verified. If we don't do this, the interpreter will run with
2183 // access checks.
Igor Murashkindf707e42016-02-02 16:56:50 -08002184 klass->SetSkipAccessChecksFlagOnAllMethods(
Mathieu Chartier90443472015-07-16 20:32:27 -07002185 GetInstructionSetPointerSize(manager_->GetCompiler()->GetInstructionSet()));
Igor Murashkindf707e42016-02-02 16:56:50 -08002186 klass->SetVerificationAttempted();
Mathieu Chartier90443472015-07-16 20:32:27 -07002187 }
2188 // Record the final class status if necessary.
2189 ClassReference ref(manager_->GetDexFile(), class_def_index);
2190 manager_->GetCompiler()->RecordClassStatus(ref, klass->GetStatus());
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002191 }
Mathieu Chartier90443472015-07-16 20:32:27 -07002192 } else {
2193 Thread* self = soa.Self();
2194 DCHECK(self->IsExceptionPending());
2195 self->ClearException();
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002196 }
2197 }
Mathieu Chartier90443472015-07-16 20:32:27 -07002198
2199 private:
2200 const ParallelCompilationManager* const manager_;
2201};
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002202
Andreas Gampeace0dc12016-01-20 13:33:13 -08002203void CompilerDriver::SetVerifiedDexFile(jobject class_loader,
2204 const DexFile& dex_file,
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002205 const std::vector<const DexFile*>& dex_files,
Andreas Gampeace0dc12016-01-20 13:33:13 -08002206 ThreadPool* thread_pool,
2207 size_t thread_count,
2208 TimingLogger* timings) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002209 TimingLogger::ScopedTiming t("Verify Dex File", timings);
Mathieu Chartier1a088d42017-07-18 11:43:57 -07002210 if (!compiled_classes_.HaveDexFile(&dex_file)) {
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002211 compiled_classes_.AddDexFile(&dex_file);
Mathieu Chartier1a088d42017-07-18 11:43:57 -07002212 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002213 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
2214 ParallelCompilationManager context(class_linker, class_loader, this, &dex_file, dex_files,
2215 thread_pool);
Mathieu Chartier90443472015-07-16 20:32:27 -07002216 SetVerifiedClassVisitor visitor(&context);
Andreas Gampeace0dc12016-01-20 13:33:13 -08002217 context.ForAll(0, dex_file.NumClassDefs(), &visitor, thread_count);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002218}
2219
Mathieu Chartier90443472015-07-16 20:32:27 -07002220class InitializeClassVisitor : public CompilationVisitor {
2221 public:
2222 explicit InitializeClassVisitor(const ParallelCompilationManager* manager) : manager_(manager) {}
Ian Rogersfc0e94b2013-09-23 23:51:32 -07002223
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002224 void Visit(size_t class_def_index) OVERRIDE {
Andreas Gampe9b827ab2017-12-07 19:32:48 -08002225 ScopedTrace trace(__FUNCTION__);
Mathieu Chartier90443472015-07-16 20:32:27 -07002226 jobject jclass_loader = manager_->GetClassLoader();
2227 const DexFile& dex_file = *manager_->GetDexFile();
2228 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
2229 const DexFile::TypeId& class_type_id = dex_file.GetTypeId(class_def.class_idx_);
2230 const char* descriptor = dex_file.StringDataByIdx(class_type_id.descriptor_idx_);
Jeff Hao0e49b422013-11-08 12:16:56 -08002231
Mathieu Chartier90443472015-07-16 20:32:27 -07002232 ScopedObjectAccess soa(Thread::Current());
2233 StackHandleScope<3> hs(soa.Self());
2234 Handle<mirror::ClassLoader> class_loader(
Mathieu Chartier0795f232016-09-27 18:43:30 -07002235 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader)));
Mathieu Chartier90443472015-07-16 20:32:27 -07002236 Handle<mirror::Class> klass(
2237 hs.NewHandle(manager_->GetClassLinker()->FindClass(soa.Self(), descriptor, class_loader)));
2238
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002239 if (klass != nullptr && !SkipClass(manager_->GetClassLoader(), dex_file, klass.Get())) {
2240 TryInitializeClass(klass, class_loader);
2241 }
2242 // Clear any class not found or verification exceptions.
2243 soa.Self()->ClearException();
2244 }
2245
2246 // A helper function for initializing klass.
2247 void TryInitializeClass(Handle<mirror::Class> klass, Handle<mirror::ClassLoader>& class_loader)
2248 REQUIRES_SHARED(Locks::mutator_lock_) {
2249 const DexFile& dex_file = klass->GetDexFile();
2250 const DexFile::ClassDef* class_def = klass->GetClassDef();
2251 const DexFile::TypeId& class_type_id = dex_file.GetTypeId(class_def->class_idx_);
2252 const char* descriptor = dex_file.StringDataByIdx(class_type_id.descriptor_idx_);
2253 ScopedObjectAccessUnchecked soa(Thread::Current());
2254 StackHandleScope<3> hs(soa.Self());
Mathieu Chartierdabeb3a2017-06-12 17:10:07 -07002255 const bool is_boot_image = manager_->GetCompiler()->GetCompilerOptions().IsBootImage();
Mathieu Chartier17498e52017-06-13 11:35:04 -07002256 const bool is_app_image = manager_->GetCompiler()->GetCompilerOptions().IsAppImage();
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002257
Vladimir Marko2c64a832018-01-04 11:31:56 +00002258 ClassStatus old_status = klass->GetStatus();
Mathieu Chartier1a088d42017-07-18 11:43:57 -07002259 // Don't initialize classes in boot space when compiling app image
2260 if (is_app_image && klass->IsBootStrapClassLoaded()) {
2261 // Also return early and don't store the class status in the recorded class status.
2262 return;
2263 }
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002264 // Only try to initialize classes that were successfully verified.
2265 if (klass->IsVerified()) {
2266 // Attempt to initialize the class but bail if we either need to initialize the super-class
2267 // or static fields.
Nicolas Geoffrayabadf022017-08-03 08:25:41 +00002268 manager_->GetClassLinker()->EnsureInitialized(soa.Self(), klass, false, false);
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002269 old_status = klass->GetStatus();
2270 if (!klass->IsInitialized()) {
2271 // We don't want non-trivial class initialization occurring on multiple threads due to
2272 // deadlock problems. For example, a parent class is initialized (holding its lock) that
2273 // refers to a sub-class in its static/class initializer causing it to try to acquire the
2274 // sub-class' lock. While on a second thread the sub-class is initialized (holding its lock)
2275 // after first initializing its parents, whose locks are acquired. This leads to a
2276 // parent-to-child and a child-to-parent lock ordering and consequent potential deadlock.
2277 // We need to use an ObjectLock due to potential suspension in the interpreting code. Rather
2278 // than use a special Object for the purpose we use the Class of java.lang.Class.
2279 Handle<mirror::Class> h_klass(hs.NewHandle(klass->GetClass()));
2280 ObjectLock<mirror::Class> lock(soa.Self(), h_klass);
2281 // Attempt to initialize allowing initialization of parent classes but still not static
2282 // fields.
Chang Xinge602b1c2017-06-30 11:55:01 -07002283 // Initialize dependencies first only for app image, to make TryInitialize recursive.
2284 bool is_superclass_initialized = !is_app_image ? true :
2285 InitializeDependencies(klass, class_loader, soa.Self());
2286 if (!is_app_image || (is_app_image && is_superclass_initialized)) {
Nicolas Geoffrayabadf022017-08-03 08:25:41 +00002287 manager_->GetClassLinker()->EnsureInitialized(soa.Self(), klass, false, true);
Chang Xinge602b1c2017-06-30 11:55:01 -07002288 }
2289 // Otherwise it's in app image but superclasses can't be initialized, no need to proceed.
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002290 old_status = klass->GetStatus();
Chang Xing70f689d2017-06-08 17:16:12 -07002291
2292 bool too_many_encoded_fields = false;
2293 if (!is_boot_image && klass->NumStaticFields() > kMaxEncodedFields) {
2294 too_many_encoded_fields = true;
2295 }
Mathieu Chartierdabeb3a2017-06-12 17:10:07 -07002296 // If the class was not initialized, we can proceed to see if we can initialize static
Chang Xing70f689d2017-06-08 17:16:12 -07002297 // fields. Limit the max number of encoded fields.
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002298 if (!klass->IsInitialized() &&
Mathieu Chartier17498e52017-06-13 11:35:04 -07002299 (is_app_image || is_boot_image) &&
Chang Xinge602b1c2017-06-30 11:55:01 -07002300 is_superclass_initialized &&
Chang Xing70f689d2017-06-08 17:16:12 -07002301 !too_many_encoded_fields &&
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002302 manager_->GetCompiler()->IsImageClass(descriptor)) {
2303 bool can_init_static_fields = false;
Mathieu Chartierdabeb3a2017-06-12 17:10:07 -07002304 if (is_boot_image) {
Mathieu Chartier90443472015-07-16 20:32:27 -07002305 // We need to initialize static fields, we only do this for image classes that aren't
Mathieu Chartierdabeb3a2017-06-12 17:10:07 -07002306 // marked with the $NoPreloadHolder (which implies this should not be initialized
2307 // early).
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002308 can_init_static_fields = !StringPiece(descriptor).ends_with("$NoPreloadHolder;");
2309 } else {
Mathieu Chartier17498e52017-06-13 11:35:04 -07002310 CHECK(is_app_image);
Mathieu Chartierdabeb3a2017-06-12 17:10:07 -07002311 // The boot image case doesn't need to recursively initialize the dependencies with
2312 // special logic since the class linker already does this.
Mathieu Chartierdabeb3a2017-06-12 17:10:07 -07002313 can_init_static_fields =
Mathieu Chartier0933cc52018-03-23 14:25:08 -07002314 ClassLinker::kAppImageMayContainStrings &&
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002315 !soa.Self()->IsExceptionPending() &&
Nicolas Geoffrayabadf022017-08-03 08:25:41 +00002316 is_superclass_initialized &&
2317 NoClinitInDependency(klass, soa.Self(), &class_loader);
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002318 // TODO The checking for clinit can be removed since it's already
2319 // checked when init superclass. Currently keep it because it contains
2320 // processing of intern strings. Will be removed later when intern strings
2321 // and clinit are both initialized.
2322 }
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01002323
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002324 if (can_init_static_fields) {
2325 VLOG(compiler) << "Initializing: " << descriptor;
2326 // TODO multithreading support. We should ensure the current compilation thread has
2327 // exclusive access to the runtime and the transaction. To achieve this, we could use
2328 // a ReaderWriterMutex but we're holding the mutator lock so we fail mutex sanity
2329 // checks in Thread::AssertThreadSuspensionIsAllowable.
2330 Runtime* const runtime = Runtime::Current();
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002331 // Run the class initializer in transaction mode.
Chang Xing5a906fc2017-07-26 15:01:16 -07002332 runtime->EnterTransactionMode(is_app_image, klass.Get());
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002333 bool success = manager_->GetClassLinker()->EnsureInitialized(soa.Self(), klass, true,
2334 true);
2335 // TODO we detach transaction from runtime to indicate we quit the transactional
2336 // mode which prevents the GC from visiting objects modified during the transaction.
2337 // Ensure GC is not run so don't access freed objects when aborting transaction.
Andreas Gampe9e7078b2017-03-02 13:50:36 -08002338
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002339 {
2340 ScopedAssertNoThreadSuspension ants("Transaction end");
Chang Xing16d1dd82017-07-20 17:56:26 -07002341
2342 if (success) {
2343 runtime->ExitTransactionMode();
2344 DCHECK(!runtime->IsActiveTransaction());
2345 }
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01002346
Mathieu Chartier90443472015-07-16 20:32:27 -07002347 if (!success) {
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002348 CHECK(soa.Self()->IsExceptionPending());
2349 mirror::Throwable* exception = soa.Self()->GetException();
2350 VLOG(compiler) << "Initialization of " << descriptor << " aborted because of "
2351 << exception->Dump();
2352 std::ostream* file_log = manager_->GetCompiler()->
2353 GetCompilerOptions().GetInitFailureOutput();
2354 if (file_log != nullptr) {
2355 *file_log << descriptor << "\n";
2356 *file_log << exception->Dump() << "\n";
2357 }
2358 soa.Self()->ClearException();
Chang Xing605fe242017-07-20 15:57:21 -07002359 runtime->RollbackAllTransactions();
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002360 CHECK_EQ(old_status, klass->GetStatus()) << "Previous class status not restored";
Mathieu Chartierdabeb3a2017-06-12 17:10:07 -07002361 } else if (is_boot_image) {
2362 // For boot image, we want to put the updated status in the oat class since we can't
2363 // reject the image anyways.
2364 old_status = klass->GetStatus();
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002365 }
2366 }
2367
Nicolas Geoffrayabadf022017-08-03 08:25:41 +00002368 if (!success) {
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002369 // On failure, still intern strings of static fields and seen in <clinit>, as these
2370 // will be created in the zygote. This is separated from the transaction code just
2371 // above as we will allocate strings, so must be allowed to suspend.
2372 if (&klass->GetDexFile() == manager_->GetDexFile()) {
Andreas Gampe9e7078b2017-03-02 13:50:36 -08002373 InternStrings(klass, class_loader);
Mathieu Chartierdabeb3a2017-06-12 17:10:07 -07002374 } else {
2375 DCHECK(!is_boot_image) << "Boot image must have equal dex files";
Andreas Gampedbfe2542014-11-25 22:21:42 -08002376 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002377 }
2378 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002379 }
Jeff Hao0cb17282017-07-12 14:51:49 -07002380 // If the class still isn't initialized, at least try some checks that initialization
2381 // would do so they can be skipped at runtime.
2382 if (!klass->IsInitialized() &&
2383 manager_->GetClassLinker()->ValidateSuperClassDescriptors(klass)) {
Vladimir Marko2c64a832018-01-04 11:31:56 +00002384 old_status = ClassStatus::kSuperclassValidated;
Jeff Hao0cb17282017-07-12 14:51:49 -07002385 } else {
2386 soa.Self()->ClearException();
2387 }
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002388 soa.Self()->AssertNoPendingException();
Brian Carlstrom7940e442013-07-12 13:46:57 -07002389 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002390 }
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002391 // Record the final class status if necessary.
2392 ClassReference ref(&dex_file, klass->GetDexClassDefIndex());
2393 // Back up the status before doing initialization for static encoded fields,
2394 // because the static encoded branch wants to keep the status to uninitialized.
2395 manager_->GetCompiler()->RecordClassStatus(ref, old_status);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002396 }
Mathieu Chartier90443472015-07-16 20:32:27 -07002397
2398 private:
Andreas Gampe9e7078b2017-03-02 13:50:36 -08002399 void InternStrings(Handle<mirror::Class> klass, Handle<mirror::ClassLoader> class_loader)
2400 REQUIRES_SHARED(Locks::mutator_lock_) {
2401 DCHECK(manager_->GetCompiler()->GetCompilerOptions().IsBootImage());
2402 DCHECK(klass->IsVerified());
2403 DCHECK(!klass->IsInitialized());
2404
2405 StackHandleScope<1> hs(Thread::Current());
Vladimir Markoe11dd502017-12-08 14:09:45 +00002406 Handle<mirror::DexCache> dex_cache = hs.NewHandle(klass->GetDexCache());
Andreas Gampe9e7078b2017-03-02 13:50:36 -08002407 const DexFile::ClassDef* class_def = klass->GetClassDef();
2408 ClassLinker* class_linker = manager_->GetClassLinker();
2409
Andreas Gampe7bf90482017-03-02 16:41:35 -08002410 // Check encoded final field values for strings and intern.
Vladimir Markoe11dd502017-12-08 14:09:45 +00002411 annotations::RuntimeEncodedStaticFieldValueIterator value_it(dex_cache,
2412 class_loader,
Andreas Gampe9e7078b2017-03-02 13:50:36 -08002413 manager_->GetClassLinker(),
2414 *class_def);
2415 for ( ; value_it.HasNext(); value_it.Next()) {
2416 if (value_it.GetValueType() == annotations::RuntimeEncodedStaticFieldValueIterator::kString) {
2417 // Resolve the string. This will intern the string.
2418 art::ObjPtr<mirror::String> resolved = class_linker->ResolveString(
Vladimir Markoa64b52d2017-12-08 16:27:49 +00002419 dex::StringIndex(value_it.GetJavaValue().i), dex_cache);
Andreas Gampe9e7078b2017-03-02 13:50:36 -08002420 CHECK(resolved != nullptr);
2421 }
2422 }
Andreas Gampe7bf90482017-03-02 16:41:35 -08002423
2424 // Intern strings seen in <clinit>.
2425 ArtMethod* clinit = klass->FindClassInitializer(class_linker->GetImagePointerSize());
2426 if (clinit != nullptr) {
Mathieu Chartier73f21d42018-01-02 14:26:50 -08002427 for (const DexInstructionPcPair& inst : clinit->DexInstructions()) {
Mathieu Chartier2b2bef22017-10-26 17:10:19 -07002428 if (inst->Opcode() == Instruction::CONST_STRING) {
Andreas Gampe7bf90482017-03-02 16:41:35 -08002429 ObjPtr<mirror::String> s = class_linker->ResolveString(
Vladimir Markoa64b52d2017-12-08 16:27:49 +00002430 dex::StringIndex(inst->VRegB_21c()), dex_cache);
Andreas Gampe7bf90482017-03-02 16:41:35 -08002431 CHECK(s != nullptr);
Mathieu Chartier2b2bef22017-10-26 17:10:19 -07002432 } else if (inst->Opcode() == Instruction::CONST_STRING_JUMBO) {
Andreas Gampe7bf90482017-03-02 16:41:35 -08002433 ObjPtr<mirror::String> s = class_linker->ResolveString(
Vladimir Markoa64b52d2017-12-08 16:27:49 +00002434 dex::StringIndex(inst->VRegB_31c()), dex_cache);
Andreas Gampe7bf90482017-03-02 16:41:35 -08002435 CHECK(s != nullptr);
2436 }
Andreas Gampe7bf90482017-03-02 16:41:35 -08002437 }
2438 }
Andreas Gampe9e7078b2017-03-02 13:50:36 -08002439 }
2440
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002441 bool ResolveTypesOfMethods(Thread* self, ArtMethod* m)
2442 REQUIRES_SHARED(Locks::mutator_lock_) {
Vladimir Markob45528c2017-07-27 14:14:28 +01002443 // Return value of ResolveReturnType() is discarded because resolve will be done internally.
2444 ObjPtr<mirror::Class> rtn_type = m->ResolveReturnType();
Mathieu Chartier7a8bcfd2017-06-13 13:40:43 -07002445 if (rtn_type == nullptr) {
2446 self->ClearException();
2447 return false;
2448 }
2449 const DexFile::TypeList* types = m->GetParameterTypeList();
2450 if (types != nullptr) {
2451 for (uint32_t i = 0; i < types->Size(); ++i) {
2452 dex::TypeIndex param_type_idx = types->GetTypeItem(i).type_idx_;
Vladimir Markob45528c2017-07-27 14:14:28 +01002453 ObjPtr<mirror::Class> param_type = m->ResolveClassFromTypeIndex(param_type_idx);
Mathieu Chartier7a8bcfd2017-06-13 13:40:43 -07002454 if (param_type == nullptr) {
2455 self->ClearException();
2456 return false;
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002457 }
2458 }
Mathieu Chartier7a8bcfd2017-06-13 13:40:43 -07002459 }
2460 return true;
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002461 }
2462
2463 // Pre resolve types mentioned in all method signatures before start a transaction
2464 // since ResolveType doesn't work in transaction mode.
2465 bool PreResolveTypes(Thread* self, const Handle<mirror::Class>& klass)
2466 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartier7a8bcfd2017-06-13 13:40:43 -07002467 PointerSize pointer_size = manager_->GetClassLinker()->GetImagePointerSize();
2468 for (ArtMethod& m : klass->GetMethods(pointer_size)) {
2469 if (!ResolveTypesOfMethods(self, &m)) {
2470 return false;
2471 }
2472 }
2473 if (klass->IsInterface()) {
2474 return true;
2475 } else if (klass->HasSuperClass()) {
2476 StackHandleScope<1> hs(self);
2477 MutableHandle<mirror::Class> super_klass(hs.NewHandle<mirror::Class>(klass->GetSuperClass()));
2478 for (int i = super_klass->GetVTableLength() - 1; i >= 0; --i) {
2479 ArtMethod* m = klass->GetVTableEntry(i, pointer_size);
2480 ArtMethod* super_m = super_klass->GetVTableEntry(i, pointer_size);
2481 if (!ResolveTypesOfMethods(self, m) || !ResolveTypesOfMethods(self, super_m)) {
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002482 return false;
2483 }
2484 }
Mathieu Chartier7a8bcfd2017-06-13 13:40:43 -07002485 for (int32_t i = 0; i < klass->GetIfTableCount(); ++i) {
2486 super_klass.Assign(klass->GetIfTable()->GetInterface(i));
2487 if (klass->GetClassLoader() != super_klass->GetClassLoader()) {
2488 uint32_t num_methods = super_klass->NumVirtualMethods();
2489 for (uint32_t j = 0; j < num_methods; ++j) {
2490 ArtMethod* m = klass->GetIfTable()->GetMethodArray(i)->GetElementPtrSize<ArtMethod*>(
2491 j, pointer_size);
2492 ArtMethod* super_m = super_klass->GetVirtualMethod(j, pointer_size);
2493 if (!ResolveTypesOfMethods(self, m) || !ResolveTypesOfMethods(self, super_m)) {
2494 return false;
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002495 }
2496 }
2497 }
2498 }
Mathieu Chartier7a8bcfd2017-06-13 13:40:43 -07002499 }
2500 return true;
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002501 }
2502
2503 // Initialize the klass's dependencies recursively before initializing itself.
2504 // Checking for interfaces is also necessary since interfaces can contain
2505 // both default methods and static encoded fields.
2506 bool InitializeDependencies(const Handle<mirror::Class>& klass,
2507 Handle<mirror::ClassLoader> class_loader,
2508 Thread* self)
2509 REQUIRES_SHARED(Locks::mutator_lock_) {
2510 if (klass->HasSuperClass()) {
2511 ObjPtr<mirror::Class> super_class = klass->GetSuperClass();
2512 StackHandleScope<1> hs(self);
2513 Handle<mirror::Class> handle_scope_super(hs.NewHandle(super_class));
2514 if (!handle_scope_super->IsInitialized()) {
2515 this->TryInitializeClass(handle_scope_super, class_loader);
2516 if (!handle_scope_super->IsInitialized()) {
2517 return false;
2518 }
2519 }
2520 }
2521
2522 uint32_t num_if = klass->NumDirectInterfaces();
2523 for (size_t i = 0; i < num_if; i++) {
2524 ObjPtr<mirror::Class>
2525 interface = mirror::Class::GetDirectInterface(self, klass.Get(), i);
2526 StackHandleScope<1> hs(self);
2527 Handle<mirror::Class> handle_interface(hs.NewHandle(interface));
2528
2529 TryInitializeClass(handle_interface, class_loader);
2530
2531 if (!handle_interface->IsInitialized()) {
2532 return false;
2533 }
2534 }
2535
2536 return PreResolveTypes(self, klass);
2537 }
2538
2539 // In this phase the classes containing class initializers are ignored. Make sure no
2540 // clinit appears in kalss's super class chain and interfaces.
2541 bool NoClinitInDependency(const Handle<mirror::Class>& klass,
2542 Thread* self,
2543 Handle<mirror::ClassLoader>* class_loader)
2544 REQUIRES_SHARED(Locks::mutator_lock_) {
2545 ArtMethod* clinit =
2546 klass->FindClassInitializer(manager_->GetClassLinker()->GetImagePointerSize());
2547 if (clinit != nullptr) {
2548 VLOG(compiler) << klass->PrettyClass() << ' ' << clinit->PrettyMethod(true);
2549 return false;
2550 }
2551 if (klass->HasSuperClass()) {
2552 ObjPtr<mirror::Class> super_class = klass->GetSuperClass();
2553 StackHandleScope<1> hs(self);
2554 Handle<mirror::Class> handle_scope_super(hs.NewHandle(super_class));
2555 if (!NoClinitInDependency(handle_scope_super, self, class_loader)) {
2556 return false;
2557 }
2558 }
2559
2560 uint32_t num_if = klass->NumDirectInterfaces();
2561 for (size_t i = 0; i < num_if; i++) {
2562 ObjPtr<mirror::Class>
2563 interface = mirror::Class::GetDirectInterface(self, klass.Get(), i);
2564 StackHandleScope<1> hs(self);
2565 Handle<mirror::Class> handle_interface(hs.NewHandle(interface));
2566 if (!NoClinitInDependency(handle_interface, self, class_loader)) {
2567 return false;
2568 }
2569 }
2570
Chang Xingba17dbd2017-06-28 21:27:56 +00002571 return true;
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002572 }
2573
Mathieu Chartier90443472015-07-16 20:32:27 -07002574 const ParallelCompilationManager* const manager_;
2575};
Brian Carlstrom7940e442013-07-12 13:46:57 -07002576
Andreas Gampeace0dc12016-01-20 13:33:13 -08002577void CompilerDriver::InitializeClasses(jobject jni_class_loader,
2578 const DexFile& dex_file,
Andreas Gampede7b4362014-07-28 18:38:57 -07002579 const std::vector<const DexFile*>& dex_files,
Andreas Gampeace0dc12016-01-20 13:33:13 -08002580 TimingLogger* timings) {
Mathieu Chartierf5997b42014-06-20 10:37:54 -07002581 TimingLogger::ScopedTiming t("InitializeNoClinit", timings);
Andreas Gampeace0dc12016-01-20 13:33:13 -08002582
2583 // Initialization allocates objects and needs to run single-threaded to be deterministic.
2584 bool force_determinism = GetCompilerOptions().IsForceDeterminism();
2585 ThreadPool* init_thread_pool = force_determinism
2586 ? single_thread_pool_.get()
2587 : parallel_thread_pool_.get();
2588 size_t init_thread_count = force_determinism ? 1U : parallel_thread_count_;
2589
Brian Carlstrom7940e442013-07-12 13:46:57 -07002590 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Andreas Gampede7b4362014-07-28 18:38:57 -07002591 ParallelCompilationManager context(class_linker, jni_class_loader, this, &dex_file, dex_files,
Andreas Gampeace0dc12016-01-20 13:33:13 -08002592 init_thread_pool);
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002593
2594 if (GetCompilerOptions().IsBootImage() || GetCompilerOptions().IsAppImage()) {
2595 // Set the concurrency thread to 1 to support initialization for App Images since transaction
2596 // doesn't support multithreading now.
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01002597 // TODO: remove this when transactional mode supports multithreading.
Andreas Gampeace0dc12016-01-20 13:33:13 -08002598 init_thread_count = 1U;
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01002599 }
Mathieu Chartier90443472015-07-16 20:32:27 -07002600 InitializeClassVisitor visitor(&context);
Andreas Gampeace0dc12016-01-20 13:33:13 -08002601 context.ForAll(0, dex_file.NumClassDefs(), &visitor, init_thread_count);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002602}
2603
Mathieu Chartier91288d82016-04-28 09:44:54 -07002604class InitializeArrayClassesAndCreateConflictTablesVisitor : public ClassVisitor {
Mathieu Chartier085a0722016-04-01 17:33:31 -07002605 public:
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002606 explicit InitializeArrayClassesAndCreateConflictTablesVisitor(VariableSizedHandleScope& hs)
2607 : hs_(hs) {}
2608
2609 virtual bool operator()(ObjPtr<mirror::Class> klass) OVERRIDE
2610 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartier91288d82016-04-28 09:44:54 -07002611 if (Runtime::Current()->GetHeap()->ObjectIsInBootImageSpace(klass)) {
2612 return true;
2613 }
Mathieu Chartier085a0722016-04-01 17:33:31 -07002614 if (klass->IsArrayClass()) {
2615 StackHandleScope<1> hs(Thread::Current());
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002616 auto h_klass = hs.NewHandleWrapper(&klass);
2617 Runtime::Current()->GetClassLinker()->EnsureInitialized(hs.Self(), h_klass, true, true);
Mathieu Chartier085a0722016-04-01 17:33:31 -07002618 }
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002619 // Collect handles since there may be thread suspension in future EnsureInitialized.
2620 to_visit_.push_back(hs_.NewHandle(klass));
Nicolas Geoffray88f288e2016-06-29 08:17:52 +00002621 return true;
Nelli Kimbadee982016-05-13 13:08:53 +03002622 }
Artem Udovichenkoa62cb9b2016-06-30 09:18:25 +00002623
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002624 void FillAllIMTAndConflictTables() REQUIRES_SHARED(Locks::mutator_lock_) {
2625 for (Handle<mirror::Class> c : to_visit_) {
2626 // Create the conflict tables.
2627 FillIMTAndConflictTables(c.Get());
2628 }
2629 }
2630
Artem Udovichenkoa62cb9b2016-06-30 09:18:25 +00002631 private:
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002632 void FillIMTAndConflictTables(ObjPtr<mirror::Class> klass)
2633 REQUIRES_SHARED(Locks::mutator_lock_) {
Artem Udovichenkoa62cb9b2016-06-30 09:18:25 +00002634 if (!klass->ShouldHaveImt()) {
2635 return;
2636 }
2637 if (visited_classes_.find(klass) != visited_classes_.end()) {
2638 return;
2639 }
2640 if (klass->HasSuperClass()) {
2641 FillIMTAndConflictTables(klass->GetSuperClass());
2642 }
2643 if (!klass->IsTemp()) {
2644 Runtime::Current()->GetClassLinker()->FillIMTAndConflictTables(klass);
2645 }
2646 visited_classes_.insert(klass);
2647 }
2648
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002649 VariableSizedHandleScope& hs_;
2650 std::vector<Handle<mirror::Class>> to_visit_;
2651 std::unordered_set<ObjPtr<mirror::Class>, HashObjPtr> visited_classes_;
Mathieu Chartier085a0722016-04-01 17:33:31 -07002652};
2653
Brian Carlstrom7940e442013-07-12 13:46:57 -07002654void CompilerDriver::InitializeClasses(jobject class_loader,
2655 const std::vector<const DexFile*>& dex_files,
Andreas Gampeace0dc12016-01-20 13:33:13 -08002656 TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07002657 for (size_t i = 0; i != dex_files.size(); ++i) {
2658 const DexFile* dex_file = dex_files[i];
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002659 CHECK(dex_file != nullptr);
Andreas Gampeace0dc12016-01-20 13:33:13 -08002660 InitializeClasses(class_loader, *dex_file, dex_files, timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002661 }
Vladimir Markoaad75c62016-10-03 08:46:48 +00002662 if (GetCompilerOptions().IsBootImage() || GetCompilerOptions().IsAppImage()) {
Mathieu Chartier085a0722016-04-01 17:33:31 -07002663 // Make sure that we call EnsureIntiailized on all the array classes to call
2664 // SetVerificationAttempted so that the access flags are set. If we do not do this they get
2665 // changed at runtime resulting in more dirty image pages.
Mathieu Chartier91288d82016-04-28 09:44:54 -07002666 // Also create conflict tables.
2667 // Only useful if we are compiling an image (image_classes_ is not null).
Mathieu Chartier085a0722016-04-01 17:33:31 -07002668 ScopedObjectAccess soa(Thread::Current());
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002669 VariableSizedHandleScope hs(soa.Self());
2670 InitializeArrayClassesAndCreateConflictTablesVisitor visitor(hs);
Mathieu Chartier91288d82016-04-28 09:44:54 -07002671 Runtime::Current()->GetClassLinker()->VisitClassesWithoutClassesLock(&visitor);
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002672 visitor.FillAllIMTAndConflictTables();
Mathieu Chartier085a0722016-04-01 17:33:31 -07002673 }
Vladimir Markoaad75c62016-10-03 08:46:48 +00002674 if (GetCompilerOptions().IsBootImage()) {
Mathieu Chartier093ef212014-08-11 13:52:12 -07002675 // Prune garbage objects created during aborted transactions.
Roland Levillainaf290312018-02-27 20:02:17 +00002676 Runtime::Current()->GetHeap()->CollectGarbage(/* clear_soft_references */ true);
Mathieu Chartier093ef212014-08-11 13:52:12 -07002677 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002678}
2679
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002680template <typename CompileFn>
2681static void CompileDexFile(CompilerDriver* driver,
2682 jobject class_loader,
2683 const DexFile& dex_file,
2684 const std::vector<const DexFile*>& dex_files,
2685 ThreadPool* thread_pool,
2686 size_t thread_count,
2687 TimingLogger* timings,
2688 const char* timing_name,
2689 CompileFn compile_fn) {
2690 TimingLogger::ScopedTiming t(timing_name, timings);
2691 ParallelCompilationManager context(Runtime::Current()->GetClassLinker(),
2692 class_loader,
2693 driver,
2694 &dex_file,
2695 dex_files,
2696 thread_pool);
Vladimir Marko492a7fa2016-06-01 18:38:43 +01002697
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002698 auto compile = [&context, &compile_fn](size_t class_def_index) {
Andreas Gampe9b827ab2017-12-07 19:32:48 -08002699 ScopedTrace trace(__FUNCTION__);
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002700 const DexFile& dex_file = *context.GetDexFile();
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002701 ClassLinker* class_linker = context.GetClassLinker();
2702 jobject jclass_loader = context.GetClassLoader();
Mathieu Chartier90443472015-07-16 20:32:27 -07002703 ClassReference ref(&dex_file, class_def_index);
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07002704 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
2705 ClassAccessor accessor(dex_file, class_def);
Mathieu Chartier90443472015-07-16 20:32:27 -07002706 // Skip compiling classes with generic verifier failures since they will still fail at runtime
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002707 if (context.GetCompiler()->GetVerificationResults()->IsClassRejected(ref)) {
Ian Rogers1ff3c982014-08-12 02:30:58 -07002708 return;
2709 }
Mathieu Chartier736b5602015-09-02 14:54:11 -07002710 // Use a scoped object access to perform to the quick SkipClass check.
Mathieu Chartier736b5602015-09-02 14:54:11 -07002711 ScopedObjectAccess soa(Thread::Current());
2712 StackHandleScope<3> hs(soa.Self());
2713 Handle<mirror::ClassLoader> class_loader(
Mathieu Chartier0795f232016-09-27 18:43:30 -07002714 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader)));
Mathieu Chartier736b5602015-09-02 14:54:11 -07002715 Handle<mirror::Class> klass(
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07002716 hs.NewHandle(class_linker->FindClass(soa.Self(), accessor.GetDescriptor(), class_loader)));
Mathieu Chartier736b5602015-09-02 14:54:11 -07002717 Handle<mirror::DexCache> dex_cache;
Andreas Gampefa4333d2017-02-14 11:10:34 -08002718 if (klass == nullptr) {
Mathieu Chartier736b5602015-09-02 14:54:11 -07002719 soa.Self()->AssertPendingException();
2720 soa.Self()->ClearException();
2721 dex_cache = hs.NewHandle(class_linker->FindDexCache(soa.Self(), dex_file));
2722 } else if (SkipClass(jclass_loader, dex_file, klass.Get())) {
2723 return;
Andreas Gampebb30d5d2018-04-23 09:59:25 -07002724 } else if (&klass->GetDexFile() != &dex_file) {
2725 // Skip a duplicate class (as the resolved class is from another, earlier dex file).
2726 return; // Do not update state.
Mathieu Chartier736b5602015-09-02 14:54:11 -07002727 } else {
2728 dex_cache = hs.NewHandle(klass->GetDexCache());
2729 }
2730
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07002731 // Avoid suspension if there are no methods to compile.
2732 if (accessor.NumDirectMethods() + accessor.NumVirtualMethods() == 0) {
Mathieu Chartier90443472015-07-16 20:32:27 -07002733 return;
Brian Carlstrom7940e442013-07-12 13:46:57 -07002734 }
Mathieu Chartier90443472015-07-16 20:32:27 -07002735
Mathieu Chartier736b5602015-09-02 14:54:11 -07002736 // Go to native so that we don't block GC during compilation.
Mathieu Chartierf1d666e2015-09-03 16:13:34 -07002737 ScopedThreadSuspension sts(soa.Self(), kNative);
Mathieu Chartier736b5602015-09-02 14:54:11 -07002738
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002739 CompilerDriver* const driver = context.GetCompiler();
Mathieu Chartier90443472015-07-16 20:32:27 -07002740
2741 // Can we run DEX-to-DEX compiler on this class ?
Mathieu Chartiera79efdb2018-01-18 16:31:01 -08002742 optimizer::DexToDexCompiler::CompilationLevel dex_to_dex_compilation_level =
Mathieu Chartier736b5602015-09-02 14:54:11 -07002743 GetDexToDexCompilationLevel(soa.Self(), *driver, jclass_loader, dex_file, class_def);
Andreas Gampe5eb0d382015-07-23 01:19:26 -07002744
Mathieu Chartier90443472015-07-16 20:32:27 -07002745
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07002746 const bool compilation_enabled = driver->IsClassToCompile(accessor.GetDescriptor());
Mathieu Chartier90443472015-07-16 20:32:27 -07002747
Mathieu Chartierb7c273c2017-11-10 18:07:56 -08002748 // Compile direct and virtual methods.
2749 int64_t previous_method_idx = -1;
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07002750 accessor.VisitMethods([&](const ClassAccessor::Method& method) {
2751 const uint32_t method_idx = method.GetIndex();
Mathieu Chartierb7c273c2017-11-10 18:07:56 -08002752 if (method_idx == previous_method_idx) {
Mathieu Chartier90443472015-07-16 20:32:27 -07002753 // smali can create dex files with two encoded_methods sharing the same method_idx
2754 // http://code.google.com/p/smali/issues/detail?id=119
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07002755 return;
Mathieu Chartier90443472015-07-16 20:32:27 -07002756 }
Mathieu Chartierb7c273c2017-11-10 18:07:56 -08002757 previous_method_idx = method_idx;
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002758 compile_fn(soa.Self(),
2759 driver,
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07002760 method.GetCodeItem(),
2761 method.GetAccessFlags(),
2762 method.GetInvokeType(class_def.access_flags_),
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002763 class_def_index,
2764 method_idx,
2765 class_loader,
2766 dex_file,
2767 dex_to_dex_compilation_level,
2768 compilation_enabled,
2769 dex_cache);
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07002770 });
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002771 };
2772 context.ForAllLambda(0, dex_file.NumClassDefs(), compile, thread_count);
2773}
2774
2775void CompilerDriver::Compile(jobject class_loader,
2776 const std::vector<const DexFile*>& dex_files,
2777 TimingLogger* timings) {
2778 if (kDebugProfileGuidedCompilation) {
2779 LOG(INFO) << "[ProfileGuidedCompilation] " <<
2780 ((profile_compilation_info_ == nullptr)
2781 ? "null"
2782 : profile_compilation_info_->DumpInfo(&dex_files));
Brian Carlstrom7940e442013-07-12 13:46:57 -07002783 }
Mathieu Chartier90443472015-07-16 20:32:27 -07002784
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002785 dex_to_dex_compiler_.ClearState();
2786 for (const DexFile* dex_file : dex_files) {
2787 CHECK(dex_file != nullptr);
2788 CompileDexFile(this,
2789 class_loader,
2790 *dex_file,
2791 dex_files,
2792 parallel_thread_pool_.get(),
2793 parallel_thread_count_,
2794 timings,
2795 "Compile Dex File Quick",
2796 CompileMethodQuick);
2797 const ArenaPool* const arena_pool = Runtime::Current()->GetArenaPool();
2798 const size_t arena_alloc = arena_pool->GetBytesAllocated();
2799 max_arena_alloc_ = std::max(arena_alloc, max_arena_alloc_);
2800 Runtime::Current()->ReclaimArenaPoolMemory();
2801 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002802
Mathieu Chartier279e3a32018-01-24 18:17:55 -08002803 if (dex_to_dex_compiler_.NumCodeItemsToQuicken(Thread::Current()) > 0u) {
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002804 // TODO: Not visit all of the dex files, its probably rare that only one would have quickened
2805 // methods though.
2806 for (const DexFile* dex_file : dex_files) {
2807 CompileDexFile(this,
2808 class_loader,
2809 *dex_file,
2810 dex_files,
2811 parallel_thread_pool_.get(),
2812 parallel_thread_count_,
2813 timings,
2814 "Compile Dex File Dex2Dex",
2815 CompileMethodDex2Dex);
2816 }
2817 dex_to_dex_compiler_.ClearState();
2818 }
2819
2820 VLOG(compiler) << "Compile: " << GetMemoryUsageString(false);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002821}
2822
Andreas Gampe5eb0d382015-07-23 01:19:26 -07002823void CompilerDriver::AddCompiledMethod(const MethodReference& method_ref,
2824 CompiledMethod* const compiled_method,
2825 size_t non_relative_linker_patch_count) {
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002826 DCHECK(GetCompiledMethod(method_ref) == nullptr) << method_ref.PrettyMethod();
2827 MethodTable::InsertResult result = compiled_methods_.Insert(method_ref,
2828 /*expected*/ nullptr,
2829 compiled_method);
Mathieu Chartieracab8d42016-11-23 13:45:58 -08002830 CHECK(result == MethodTable::kInsertResultSuccess);
Orion Hodson88591fe2018-03-06 13:35:43 +00002831 non_relative_linker_patch_count_.fetch_add(non_relative_linker_patch_count,
2832 std::memory_order_relaxed);
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002833 DCHECK(GetCompiledMethod(method_ref) != nullptr) << method_ref.PrettyMethod();
Brian Carlstrom7940e442013-07-12 13:46:57 -07002834}
2835
Mathieu Chartier279e3a32018-01-24 18:17:55 -08002836CompiledMethod* CompilerDriver::RemoveCompiledMethod(const MethodReference& method_ref) {
2837 CompiledMethod* ret = nullptr;
2838 CHECK(compiled_methods_.Remove(method_ref, &ret));
2839 return ret;
2840}
2841
Vladimir Marko2c64a832018-01-04 11:31:56 +00002842bool CompilerDriver::GetCompiledClass(const ClassReference& ref, ClassStatus* status) const {
Andreas Gampebb846102017-05-11 21:03:35 -07002843 DCHECK(status != nullptr);
Mathieu Chartier1a088d42017-07-18 11:43:57 -07002844 // The table doesn't know if something wasn't inserted. For this case it will return
Vladimir Marko2c64a832018-01-04 11:31:56 +00002845 // ClassStatus::kNotReady. To handle this, just assume anything we didn't try to verify
2846 // is not compiled.
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002847 if (!compiled_classes_.Get(ref, status) ||
Vladimir Marko2c64a832018-01-04 11:31:56 +00002848 *status < ClassStatus::kRetryVerificationAtRuntime) {
Andreas Gampebb846102017-05-11 21:03:35 -07002849 return false;
Brian Carlstrom7940e442013-07-12 13:46:57 -07002850 }
Andreas Gampebb846102017-05-11 21:03:35 -07002851 return true;
Brian Carlstrom7940e442013-07-12 13:46:57 -07002852}
2853
Vladimir Marko2c64a832018-01-04 11:31:56 +00002854ClassStatus CompilerDriver::GetClassStatus(const ClassReference& ref) const {
2855 ClassStatus status = ClassStatus::kNotReady;
Nicolas Geoffray486dda02017-09-11 14:15:52 +01002856 if (!GetCompiledClass(ref, &status)) {
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002857 classpath_classes_.Get(ref, &status);
Nicolas Geoffray486dda02017-09-11 14:15:52 +01002858 }
2859 return status;
2860}
2861
Vladimir Marko2c64a832018-01-04 11:31:56 +00002862void CompilerDriver::RecordClassStatus(const ClassReference& ref, ClassStatus status) {
Nicolas Geoffrayade72d62016-12-15 13:20:02 +00002863 switch (status) {
Vladimir Marko2c64a832018-01-04 11:31:56 +00002864 case ClassStatus::kErrorResolved:
2865 case ClassStatus::kErrorUnresolved:
2866 case ClassStatus::kNotReady:
2867 case ClassStatus::kResolved:
2868 case ClassStatus::kRetryVerificationAtRuntime:
2869 case ClassStatus::kVerified:
2870 case ClassStatus::kSuperclassValidated:
2871 case ClassStatus::kInitialized:
Nicolas Geoffrayade72d62016-12-15 13:20:02 +00002872 break; // Expected states.
2873 default:
2874 LOG(FATAL) << "Unexpected class status for class "
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002875 << PrettyDescriptor(
2876 ref.dex_file->GetClassDescriptor(ref.dex_file->GetClassDef(ref.index)))
Nicolas Geoffrayade72d62016-12-15 13:20:02 +00002877 << " of " << status;
2878 }
2879
Mathieu Chartier1a088d42017-07-18 11:43:57 -07002880 ClassStateTable::InsertResult result;
Nicolas Geoffray486dda02017-09-11 14:15:52 +01002881 ClassStateTable* table = &compiled_classes_;
Mathieu Chartier1a088d42017-07-18 11:43:57 -07002882 do {
Vladimir Marko2c64a832018-01-04 11:31:56 +00002883 ClassStatus existing = ClassStatus::kNotReady;
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002884 if (!table->Get(ref, &existing)) {
Nicolas Geoffray486dda02017-09-11 14:15:52 +01002885 // A classpath class.
Mathieu Chartier010f5cc2017-07-24 15:53:46 -07002886 if (kIsDebugBuild) {
2887 // Check to make sure it's not a dex file for an oat file we are compiling since these
2888 // should always succeed. These do not include classes in for used libraries.
Mathieu Chartier72041a02017-07-14 18:23:25 -07002889 for (const DexFile* dex_file : GetDexFilesForOatFile()) {
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002890 CHECK_NE(ref.dex_file, dex_file) << ref.dex_file->GetLocation();
Mathieu Chartier010f5cc2017-07-24 15:53:46 -07002891 }
2892 }
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002893 if (!classpath_classes_.HaveDexFile(ref.dex_file)) {
Nicolas Geoffray486dda02017-09-11 14:15:52 +01002894 // Boot classpath dex file.
2895 return;
2896 }
2897 table = &classpath_classes_;
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002898 table->Get(ref, &existing);
Mathieu Chartier010f5cc2017-07-24 15:53:46 -07002899 }
Mathieu Chartier1a088d42017-07-18 11:43:57 -07002900 if (existing >= status) {
2901 // Existing status is already better than we expect, break.
2902 break;
2903 }
Nicolas Geoffrayade72d62016-12-15 13:20:02 +00002904 // Update the status if we now have a greater one. This happens with vdex,
2905 // which records a class is verified, but does not resolve it.
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002906 result = table->Insert(ref, existing, status);
2907 CHECK(result != ClassStateTable::kInsertResultInvalidDexFile) << ref.dex_file->GetLocation();
Mathieu Chartier1a088d42017-07-18 11:43:57 -07002908 } while (result != ClassStateTable::kInsertResultSuccess);
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07002909}
2910
Brian Carlstrom7940e442013-07-12 13:46:57 -07002911CompiledMethod* CompilerDriver::GetCompiledMethod(MethodReference ref) const {
Mathieu Chartieracab8d42016-11-23 13:45:58 -08002912 CompiledMethod* compiled_method = nullptr;
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002913 compiled_methods_.Get(ref, &compiled_method);
Mathieu Chartieracab8d42016-11-23 13:45:58 -08002914 return compiled_method;
Brian Carlstrom7940e442013-07-12 13:46:57 -07002915}
2916
Calin Juravlef1c6d9e2015-04-13 18:42:21 +01002917bool CompilerDriver::IsMethodVerifiedWithoutFailures(uint32_t method_idx,
2918 uint16_t class_def_idx,
2919 const DexFile& dex_file) const {
2920 const VerifiedMethod* verified_method = GetVerifiedMethod(&dex_file, method_idx);
2921 if (verified_method != nullptr) {
2922 return !verified_method->HasVerificationFailures();
2923 }
2924
2925 // If we can't find verification metadata, check if this is a system class (we trust that system
2926 // classes have their methods verified). If it's not, be conservative and assume the method
2927 // has not been verified successfully.
2928
2929 // TODO: When compiling the boot image it should be safe to assume that everything is verified,
2930 // even if methods are not found in the verification cache.
2931 const char* descriptor = dex_file.GetClassDescriptor(dex_file.GetClassDef(class_def_idx));
2932 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
2933 Thread* self = Thread::Current();
2934 ScopedObjectAccess soa(self);
2935 bool is_system_class = class_linker->FindSystemClass(self, descriptor) != nullptr;
2936 if (!is_system_class) {
2937 self->ClearException();
2938 }
2939 return is_system_class;
2940}
2941
Vladimir Markof4da6752014-08-01 19:04:18 +01002942size_t CompilerDriver::GetNonRelativeLinkerPatchCount() const {
Orion Hodson88591fe2018-03-06 13:35:43 +00002943 return non_relative_linker_patch_count_.load(std::memory_order_relaxed);
Vladimir Markof4da6752014-08-01 19:04:18 +01002944}
2945
Mathieu Chartierc4ae9162016-04-07 13:19:19 -07002946void CompilerDriver::SetRequiresConstructorBarrier(Thread* self,
2947 const DexFile* dex_file,
2948 uint16_t class_def_index,
2949 bool requires) {
2950 WriterMutexLock mu(self, requires_constructor_barrier_lock_);
2951 requires_constructor_barrier_.emplace(ClassReference(dex_file, class_def_index), requires);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002952}
2953
Mathieu Chartier371bd832016-04-07 10:19:48 -07002954bool CompilerDriver::RequiresConstructorBarrier(Thread* self,
2955 const DexFile* dex_file,
Mathieu Chartierc4ae9162016-04-07 13:19:19 -07002956 uint16_t class_def_index) {
2957 ClassReference class_ref(dex_file, class_def_index);
2958 {
2959 ReaderMutexLock mu(self, requires_constructor_barrier_lock_);
2960 auto it = requires_constructor_barrier_.find(class_ref);
2961 if (it != requires_constructor_barrier_.end()) {
2962 return it->second;
2963 }
Mathieu Chartierb5d38612016-04-07 10:52:52 -07002964 }
Mathieu Chartierc4ae9162016-04-07 13:19:19 -07002965 WriterMutexLock mu(self, requires_constructor_barrier_lock_);
2966 const bool requires = RequiresConstructorBarrier(*dex_file, class_def_index);
2967 requires_constructor_barrier_.emplace(class_ref, requires);
2968 return requires;
Brian Carlstrom7940e442013-07-12 13:46:57 -07002969}
2970
Andreas Gampe8d295f82015-01-20 14:50:21 -08002971std::string CompilerDriver::GetMemoryUsageString(bool extended) const {
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002972 std::ostringstream oss;
Calin Juravle69158982016-03-16 11:53:41 +00002973 const gc::Heap* const heap = Runtime::Current()->GetHeap();
Anton Kirilovdd9473b2016-01-28 15:08:01 +00002974 const size_t java_alloc = heap->GetBytesAllocated();
Calin Juravle69158982016-03-16 11:53:41 +00002975 oss << "arena alloc=" << PrettySize(max_arena_alloc_) << " (" << max_arena_alloc_ << "B)";
Anton Kirilovdd9473b2016-01-28 15:08:01 +00002976 oss << " java alloc=" << PrettySize(java_alloc) << " (" << java_alloc << "B)";
Elliott Hughes7bf5a262015-04-02 20:55:07 -07002977#if defined(__BIONIC__) || defined(__GLIBC__)
Anton Kirilovdd9473b2016-01-28 15:08:01 +00002978 const struct mallinfo info = mallinfo();
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002979 const size_t allocated_space = static_cast<size_t>(info.uordblks);
2980 const size_t free_space = static_cast<size_t>(info.fordblks);
Anton Kirilovdd9473b2016-01-28 15:08:01 +00002981 oss << " native alloc=" << PrettySize(allocated_space) << " (" << allocated_space << "B)"
2982 << " free=" << PrettySize(free_space) << " (" << free_space << "B)";
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002983#endif
Vladimir Marko35831e82015-09-11 11:59:18 +01002984 compiled_method_storage_.DumpMemoryUsage(oss, extended);
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002985 return oss.str();
2986}
2987
Jeff Haodcdc85b2015-12-04 14:06:18 -08002988bool CompilerDriver::MayInlineInternal(const DexFile* inlined_from,
2989 const DexFile* inlined_into) const {
2990 // We're not allowed to inline across dex files if we're the no-inline-from dex file.
2991 if (inlined_from != inlined_into &&
Vladimir Marko47496c22016-01-27 16:15:08 +00002992 compiler_options_->GetNoInlineFromDexFile() != nullptr &&
2993 ContainsElement(*compiler_options_->GetNoInlineFromDexFile(), inlined_from)) {
Jeff Haodcdc85b2015-12-04 14:06:18 -08002994 return false;
2995 }
2996
2997 return true;
2998}
2999
Andreas Gampeace0dc12016-01-20 13:33:13 -08003000void CompilerDriver::InitializeThreadPools() {
3001 size_t parallel_count = parallel_thread_count_ > 0 ? parallel_thread_count_ - 1 : 0;
3002 parallel_thread_pool_.reset(
3003 new ThreadPool("Compiler driver thread pool", parallel_count));
3004 single_thread_pool_.reset(new ThreadPool("Single-threaded Compiler driver thread pool", 0));
3005}
3006
3007void CompilerDriver::FreeThreadPools() {
3008 parallel_thread_pool_.reset();
3009 single_thread_pool_.reset();
3010}
3011
Mathieu Chartier72041a02017-07-14 18:23:25 -07003012void CompilerDriver::SetDexFilesForOatFile(const std::vector<const DexFile*>& dex_files) {
3013 dex_files_for_oat_file_ = dex_files;
Nicolas Geoffray486dda02017-09-11 14:15:52 +01003014 compiled_classes_.AddDexFiles(dex_files);
Mathieu Chartier279e3a32018-01-24 18:17:55 -08003015 dex_to_dex_compiler_.SetDexFiles(dex_files);
Nicolas Geoffray486dda02017-09-11 14:15:52 +01003016}
3017
3018void CompilerDriver::SetClasspathDexFiles(const std::vector<const DexFile*>& dex_files) {
3019 classpath_classes_.AddDexFiles(dex_files);
Mathieu Chartier72041a02017-07-14 18:23:25 -07003020}
3021
Brian Carlstrom7940e442013-07-12 13:46:57 -07003022} // namespace art