blob: 7c13894a2c9cc9e40e0a6e1fcf0ede9586c8d5a0 [file] [log] [blame]
Brian Carlstrom7940e442013-07-12 13:46:57 -07001/*
2 * Copyright (C) 2011 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include "compiler_driver.h"
18
Andreas Gampe8cf9cb32017-07-19 09:28:38 -070019#include <unistd.h>
Andreas Gampeb0f370e2014-09-25 22:51:40 -070020#include <unordered_set>
Anwar Ghuloum67f99412013-08-12 14:19:48 -070021#include <vector>
Brian Carlstrom7940e442013-07-12 13:46:57 -070022
Mathieu Chartierab972ef2014-12-03 17:38:22 -080023#ifndef __APPLE__
24#include <malloc.h> // For mallinfo
25#endif
26
Narayan Kamathe3eae5e2016-10-27 11:47:30 +010027#include "android-base/strings.h"
28
Mathieu Chartierc7853442015-03-27 14:35:38 -070029#include "art_field-inl.h"
Mathieu Chartiere401d142015-04-22 13:56:20 -070030#include "art_method-inl.h"
Andreas Gampef0446e92017-05-16 13:51:57 -070031#include "base/arena_allocator.h"
David Brazdild9c90372016-09-14 16:53:55 +010032#include "base/array_ref.h"
Vladimir Marko492a7fa2016-06-01 18:38:43 +010033#include "base/bit_vector.h"
Andreas Gampe542451c2016-07-26 09:02:02 -070034#include "base/enums.h"
Andreas Gampe170331f2017-12-07 18:41:03 -080035#include "base/logging.h" // For VLOG
Brian Carlstrom7940e442013-07-12 13:46:57 -070036#include "base/stl_util.h"
Mathieu Chartier32ce2ad2016-03-04 14:58:03 -080037#include "base/systrace.h"
Vladimir Marko80afd022015-05-19 18:08:00 +010038#include "base/time_utils.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070039#include "base/timing_logger.h"
Vladimir Marko3481ba22015-04-13 12:22:36 +010040#include "class_linker-inl.h"
Vladimir Markod8dbc8d2017-09-20 13:37:47 +010041#include "compiled_method-inl.h"
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +000042#include "compiler.h"
Nicolas Geoffray6bb7f1b2016-11-03 10:52:49 +000043#include "compiler_callbacks.h"
Vladimir Markobe0e5462014-02-26 11:24:15 +000044#include "compiler_driver-inl.h"
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -070045#include "dex/class_accessor-inl.h"
David Sehrb2ec9f52018-02-21 13:20:31 -080046#include "dex/descriptors_names.h"
David Sehr9e734c72018-01-04 17:56:19 -080047#include "dex/dex_file-inl.h"
48#include "dex/dex_file_annotations.h"
49#include "dex/dex_instruction-inl.h"
Andreas Gampe5eb0d382015-07-23 01:19:26 -070050#include "dex/dex_to_dex_compiler.h"
Vladimir Markoc7f83202014-01-24 17:55:18 +000051#include "dex/verification_results.h"
Vladimir Marko2730db02014-01-27 11:15:17 +000052#include "dex/verified_method.h"
Steven Morelande431e272017-07-18 16:53:49 -070053#include "dex_compilation_unit.h"
Mark Mendellae9fd932014-02-10 16:14:35 -080054#include "driver/compiler_options.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070055#include "gc/accounting/card_table-inl.h"
56#include "gc/accounting/heap_bitmap.h"
Mathieu Chartiere401d142015-04-22 13:56:20 -070057#include "gc/space/image_space.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070058#include "gc/space/space.h"
Steven Morelande431e272017-07-18 16:53:49 -070059#include "handle_scope-inl.h"
60#include "intrinsics_enum.h"
Vladimir Markoa3ad0cd2018-05-04 10:06:38 +010061#include "jni/jni_internal.h"
Vladimir Markod8dbc8d2017-09-20 13:37:47 +010062#include "linker/linker_patch.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070063#include "mirror/class-inl.h"
Steven Morelande431e272017-07-18 16:53:49 -070064#include "mirror/class_loader.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070065#include "mirror/dex_cache-inl.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070066#include "mirror/object-inl.h"
Andreas Gampec6ea7d02017-02-01 16:46:28 -080067#include "mirror/object-refvisitor-inl.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070068#include "mirror/object_array-inl.h"
69#include "mirror/throwable.h"
Steven Morelande431e272017-07-18 16:53:49 -070070#include "object_lock.h"
David Sehr82d046e2018-04-23 08:14:19 -070071#include "profile/profile_compilation_info.h"
Steven Morelande431e272017-07-18 16:53:49 -070072#include "runtime.h"
Orion Hodson26ef34c2017-11-01 13:32:41 +000073#include "runtime_intrinsics.h"
Mathieu Chartier0795f232016-09-27 18:43:30 -070074#include "scoped_thread_state_change-inl.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070075#include "thread.h"
Andreas Gampeb0f370e2014-09-25 22:51:40 -070076#include "thread_list.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070077#include "thread_pool.h"
Ian Rogers848871b2013-08-05 10:56:33 -070078#include "trampolines/trampoline_compiler.h"
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +010079#include "transaction.h"
Mathieu Chartier93764b82017-07-17 14:51:53 -070080#include "utils/atomic_dex_ref_map-inl.h"
Vladimir Marko20f85592015-03-19 10:07:02 +000081#include "utils/dex_cache_arrays_layout-inl.h"
Andreas Gampee21dc3d2014-12-08 16:59:43 -080082#include "utils/swap_space.h"
Nicolas Geoffrayb0bbe8e2016-11-19 10:42:37 +000083#include "vdex_file.h"
Vladimir Marko2bc47802014-02-10 09:43:07 +000084#include "verifier/method_verifier-inl.h"
Steven Morelande431e272017-07-18 16:53:49 -070085#include "verifier/method_verifier.h"
Nicolas Geoffray08025182016-10-25 17:20:18 +010086#include "verifier/verifier_deps.h"
Andreas Gampe6d7abbd2017-04-24 13:19:09 -070087#include "verifier/verifier_enums.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070088
Brian Carlstrom7940e442013-07-12 13:46:57 -070089namespace art {
90
Mathieu Chartier8e219ae2014-08-19 14:29:46 -070091static constexpr bool kTimeCompileMethod = !kIsDebugBuild;
92
Calin Juravle226501b2015-12-11 14:41:31 +000093// Print additional info during profile guided compilation.
94static constexpr bool kDebugProfileGuidedCompilation = false;
95
Chang Xing70f689d2017-06-08 17:16:12 -070096// Max encoded fields allowed for initializing app image. Hardcode the number for now
97// because 5000 should be large enough.
98static constexpr uint32_t kMaxEncodedFields = 5000;
99
Brian Carlstrom7940e442013-07-12 13:46:57 -0700100static double Percentage(size_t x, size_t y) {
101 return 100.0 * (static_cast<double>(x)) / (static_cast<double>(x + y));
102}
103
104static void DumpStat(size_t x, size_t y, const char* str) {
105 if (x == 0 && y == 0) {
106 return;
107 }
Ian Rogerse732ef12013-10-09 15:22:24 -0700108 LOG(INFO) << Percentage(x, y) << "% of " << str << " for " << (x + y) << " cases";
Brian Carlstrom7940e442013-07-12 13:46:57 -0700109}
110
Vladimir Markof096aad2014-01-23 15:51:58 +0000111class CompilerDriver::AOTCompilationStats {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700112 public:
113 AOTCompilationStats()
114 : stats_lock_("AOT compilation statistics lock"),
Brian Carlstrom7940e442013-07-12 13:46:57 -0700115 resolved_types_(0), unresolved_types_(0),
116 resolved_instance_fields_(0), unresolved_instance_fields_(0),
117 resolved_local_static_fields_(0), resolved_static_fields_(0), unresolved_static_fields_(0),
118 type_based_devirtualization_(0),
119 safe_casts_(0), not_safe_casts_(0) {
120 for (size_t i = 0; i <= kMaxInvokeType; i++) {
121 resolved_methods_[i] = 0;
122 unresolved_methods_[i] = 0;
123 virtual_made_direct_[i] = 0;
124 direct_calls_to_boot_[i] = 0;
125 direct_methods_to_boot_[i] = 0;
126 }
127 }
128
129 void Dump() {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700130 DumpStat(resolved_types_, unresolved_types_, "types resolved");
131 DumpStat(resolved_instance_fields_, unresolved_instance_fields_, "instance fields resolved");
132 DumpStat(resolved_local_static_fields_ + resolved_static_fields_, unresolved_static_fields_,
133 "static fields resolved");
134 DumpStat(resolved_local_static_fields_, resolved_static_fields_ + unresolved_static_fields_,
135 "static fields local to a class");
136 DumpStat(safe_casts_, not_safe_casts_, "check-casts removed based on type information");
137 // Note, the code below subtracts the stat value so that when added to the stat value we have
138 // 100% of samples. TODO: clean this up.
139 DumpStat(type_based_devirtualization_,
140 resolved_methods_[kVirtual] + unresolved_methods_[kVirtual] +
141 resolved_methods_[kInterface] + unresolved_methods_[kInterface] -
142 type_based_devirtualization_,
143 "virtual/interface calls made direct based on type information");
144
145 for (size_t i = 0; i <= kMaxInvokeType; i++) {
146 std::ostringstream oss;
147 oss << static_cast<InvokeType>(i) << " methods were AOT resolved";
148 DumpStat(resolved_methods_[i], unresolved_methods_[i], oss.str().c_str());
149 if (virtual_made_direct_[i] > 0) {
150 std::ostringstream oss2;
151 oss2 << static_cast<InvokeType>(i) << " methods made direct";
152 DumpStat(virtual_made_direct_[i],
153 resolved_methods_[i] + unresolved_methods_[i] - virtual_made_direct_[i],
154 oss2.str().c_str());
155 }
156 if (direct_calls_to_boot_[i] > 0) {
157 std::ostringstream oss2;
158 oss2 << static_cast<InvokeType>(i) << " method calls are direct into boot";
159 DumpStat(direct_calls_to_boot_[i],
160 resolved_methods_[i] + unresolved_methods_[i] - direct_calls_to_boot_[i],
161 oss2.str().c_str());
162 }
163 if (direct_methods_to_boot_[i] > 0) {
164 std::ostringstream oss2;
165 oss2 << static_cast<InvokeType>(i) << " method calls have methods in boot";
166 DumpStat(direct_methods_to_boot_[i],
167 resolved_methods_[i] + unresolved_methods_[i] - direct_methods_to_boot_[i],
168 oss2.str().c_str());
169 }
170 }
171 }
172
173// Allow lossy statistics in non-debug builds.
174#ifndef NDEBUG
175#define STATS_LOCK() MutexLock mu(Thread::Current(), stats_lock_)
176#else
177#define STATS_LOCK()
178#endif
179
Mathieu Chartier90443472015-07-16 20:32:27 -0700180 void TypeDoesntNeedAccessCheck() REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700181 STATS_LOCK();
182 resolved_types_++;
183 }
184
Mathieu Chartier90443472015-07-16 20:32:27 -0700185 void TypeNeedsAccessCheck() REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700186 STATS_LOCK();
187 unresolved_types_++;
188 }
189
Mathieu Chartier90443472015-07-16 20:32:27 -0700190 void ResolvedInstanceField() REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700191 STATS_LOCK();
192 resolved_instance_fields_++;
193 }
194
Mathieu Chartier90443472015-07-16 20:32:27 -0700195 void UnresolvedInstanceField() REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700196 STATS_LOCK();
197 unresolved_instance_fields_++;
198 }
199
Mathieu Chartier90443472015-07-16 20:32:27 -0700200 void ResolvedLocalStaticField() REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700201 STATS_LOCK();
202 resolved_local_static_fields_++;
203 }
204
Mathieu Chartier90443472015-07-16 20:32:27 -0700205 void ResolvedStaticField() REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700206 STATS_LOCK();
207 resolved_static_fields_++;
208 }
209
Mathieu Chartier90443472015-07-16 20:32:27 -0700210 void UnresolvedStaticField() REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700211 STATS_LOCK();
212 unresolved_static_fields_++;
213 }
214
215 // Indicate that type information from the verifier led to devirtualization.
Mathieu Chartier90443472015-07-16 20:32:27 -0700216 void PreciseTypeDevirtualization() REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700217 STATS_LOCK();
218 type_based_devirtualization_++;
219 }
220
Brian Carlstrom7940e442013-07-12 13:46:57 -0700221 // A check-cast could be eliminated due to verifier type analysis.
Mathieu Chartier90443472015-07-16 20:32:27 -0700222 void SafeCast() REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700223 STATS_LOCK();
224 safe_casts_++;
225 }
226
227 // A check-cast couldn't be eliminated due to verifier type analysis.
Mathieu Chartier90443472015-07-16 20:32:27 -0700228 void NotASafeCast() REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700229 STATS_LOCK();
230 not_safe_casts_++;
231 }
232
233 private:
234 Mutex stats_lock_;
235
Brian Carlstrom7940e442013-07-12 13:46:57 -0700236 size_t resolved_types_;
237 size_t unresolved_types_;
238
239 size_t resolved_instance_fields_;
240 size_t unresolved_instance_fields_;
241
242 size_t resolved_local_static_fields_;
243 size_t resolved_static_fields_;
244 size_t unresolved_static_fields_;
245 // Type based devirtualization for invoke interface and virtual.
246 size_t type_based_devirtualization_;
247
248 size_t resolved_methods_[kMaxInvokeType + 1];
249 size_t unresolved_methods_[kMaxInvokeType + 1];
250 size_t virtual_made_direct_[kMaxInvokeType + 1];
251 size_t direct_calls_to_boot_[kMaxInvokeType + 1];
252 size_t direct_methods_to_boot_[kMaxInvokeType + 1];
253
254 size_t safe_casts_;
255 size_t not_safe_casts_;
256
257 DISALLOW_COPY_AND_ASSIGN(AOTCompilationStats);
258};
259
Jeff Haodcdc85b2015-12-04 14:06:18 -0800260CompilerDriver::CompilerDriver(
261 const CompilerOptions* compiler_options,
262 VerificationResults* verification_results,
Jeff Haodcdc85b2015-12-04 14:06:18 -0800263 Compiler::Kind compiler_kind,
Vladimir Markodc4bcce2018-06-21 16:15:42 +0100264 HashSet<std::string>* image_classes,
Vladimir Marko944da602016-02-19 12:27:55 +0000265 size_t thread_count,
Vladimir Marko944da602016-02-19 12:27:55 +0000266 int swap_fd,
Calin Juravle998c2162015-12-21 15:39:33 +0200267 const ProfileCompilationInfo* profile_compilation_info)
Calin Juravle226501b2015-12-11 14:41:31 +0000268 : compiler_options_(compiler_options),
Brian Carlstrom6449c622014-02-10 23:48:36 -0800269 verification_results_(verification_results),
Ian Rogers72d32622014-05-06 16:20:11 -0700270 compiler_(Compiler::Create(this, compiler_kind)),
Jeff Hao48699fb2015-04-06 14:21:37 -0700271 compiler_kind_(compiler_kind),
Mathieu Chartierc4ae9162016-04-07 13:19:19 -0700272 requires_constructor_barrier_lock_("constructor barrier lock"),
Vladimir Markof4da6752014-08-01 19:04:18 +0100273 non_relative_linker_patch_count_(0u),
Vladimir Marko54159c62018-06-20 14:30:08 +0100274 image_classes_(std::move(image_classes)),
Andreas Gampef39208f2017-10-19 15:06:59 -0700275 number_of_soft_verifier_failures_(0),
Andreas Gampe6cf49e52015-03-05 13:08:45 -0800276 had_hard_verifier_failure_(false),
Andreas Gampeace0dc12016-01-20 13:33:13 -0800277 parallel_thread_count_(thread_count),
Brian Carlstrom7940e442013-07-12 13:46:57 -0700278 stats_(new AOTCompilationStats),
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700279 compiler_context_(nullptr),
Alexey Frunze19f6c692016-11-30 19:19:55 -0800280 support_boot_image_fixup_(true),
Calin Juravle998c2162015-12-21 15:39:33 +0200281 compiled_method_storage_(swap_fd),
Calin Juravle69158982016-03-16 11:53:41 +0000282 profile_compilation_info_(profile_compilation_info),
Vladimir Marko492a7fa2016-06-01 18:38:43 +0100283 max_arena_alloc_(0),
Mathieu Chartiera79efdb2018-01-18 16:31:01 -0800284 dex_to_dex_compiler_(this) {
Brian Carlstrom6449c622014-02-10 23:48:36 -0800285 DCHECK(compiler_options_ != nullptr);
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700286
Ian Rogers72d32622014-05-06 16:20:11 -0700287 compiler_->Init();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700288
Vladimir Markoaad75c62016-10-03 08:46:48 +0000289 if (GetCompilerOptions().IsBootImage()) {
Vladimir Markodc4bcce2018-06-21 16:15:42 +0100290 CHECK(image_classes_ != nullptr) << "Expected image classes for boot image";
Mathieu Chartierc5dd3192015-12-09 16:38:30 -0800291 }
Andreas Gampecac31ad2017-11-06 20:01:17 -0800292
293 compiled_method_storage_.SetDedupeEnabled(compiler_options_->DeduplicateCode());
Brian Carlstrom7940e442013-07-12 13:46:57 -0700294}
295
296CompilerDriver::~CompilerDriver() {
Mathieu Chartier93764b82017-07-17 14:51:53 -0700297 compiled_methods_.Visit([this](const DexFileReference& ref ATTRIBUTE_UNUSED,
Mathieu Chartieracab8d42016-11-23 13:45:58 -0800298 CompiledMethod* method) {
299 if (method != nullptr) {
300 CompiledMethod::ReleaseSwapAllocatedCompiledMethod(this, method);
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800301 }
Mathieu Chartieracab8d42016-11-23 13:45:58 -0800302 });
Ian Rogers72d32622014-05-06 16:20:11 -0700303 compiler_->UnInit();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700304}
305
Vladimir Marko35831e82015-09-11 11:59:18 +0100306
Vladimir Markoa0431112018-06-25 09:32:54 +0100307#define CREATE_TRAMPOLINE(type, abi, offset) \
308 if (Is64BitInstructionSet(GetCompilerOptions().GetInstructionSet())) { \
309 return CreateTrampoline64(GetCompilerOptions().GetInstructionSet(), \
310 abi, \
311 type ## _ENTRYPOINT_OFFSET(PointerSize::k64, offset)); \
312 } else { \
313 return CreateTrampoline32(GetCompilerOptions().GetInstructionSet(), \
314 abi, \
315 type ## _ENTRYPOINT_OFFSET(PointerSize::k32, offset)); \
Ian Rogersdd7624d2014-03-14 17:43:00 -0700316 }
317
Vladimir Marko93205e32016-04-13 11:59:46 +0100318std::unique_ptr<const std::vector<uint8_t>> CompilerDriver::CreateJniDlsymLookup() const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700319 CREATE_TRAMPOLINE(JNI, kJniAbi, pDlsymLookup)
Ian Rogers848871b2013-08-05 10:56:33 -0700320}
321
Vladimir Marko93205e32016-04-13 11:59:46 +0100322std::unique_ptr<const std::vector<uint8_t>> CompilerDriver::CreateQuickGenericJniTrampoline()
323 const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700324 CREATE_TRAMPOLINE(QUICK, kQuickAbi, pQuickGenericJniTrampoline)
Andreas Gampe2da88232014-02-27 12:26:20 -0800325}
326
Vladimir Marko93205e32016-04-13 11:59:46 +0100327std::unique_ptr<const std::vector<uint8_t>> CompilerDriver::CreateQuickImtConflictTrampoline()
328 const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700329 CREATE_TRAMPOLINE(QUICK, kQuickAbi, pQuickImtConflictTrampoline)
Jeff Hao88474b42013-10-23 16:24:40 -0700330}
331
Vladimir Marko93205e32016-04-13 11:59:46 +0100332std::unique_ptr<const std::vector<uint8_t>> CompilerDriver::CreateQuickResolutionTrampoline()
333 const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700334 CREATE_TRAMPOLINE(QUICK, kQuickAbi, pQuickResolutionTrampoline)
Brian Carlstrom7940e442013-07-12 13:46:57 -0700335}
336
Vladimir Marko93205e32016-04-13 11:59:46 +0100337std::unique_ptr<const std::vector<uint8_t>> CompilerDriver::CreateQuickToInterpreterBridge()
338 const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700339 CREATE_TRAMPOLINE(QUICK, kQuickAbi, pQuickToInterpreterBridge)
Brian Carlstrom7940e442013-07-12 13:46:57 -0700340}
Ian Rogersdd7624d2014-03-14 17:43:00 -0700341#undef CREATE_TRAMPOLINE
Brian Carlstrom7940e442013-07-12 13:46:57 -0700342
343void CompilerDriver::CompileAll(jobject class_loader,
Brian Carlstrom45602482013-07-21 22:07:55 -0700344 const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -0800345 TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700346 DCHECK(!Runtime::Current()->IsStarted());
Andreas Gampeace0dc12016-01-20 13:33:13 -0800347
348 InitializeThreadPools();
349
Nicolas Geoffrayb0bbe8e2016-11-19 10:42:37 +0000350 PreCompile(class_loader, dex_files, timings);
Vladimir Markoaad75c62016-10-03 08:46:48 +0000351 if (GetCompilerOptions().IsBootImage()) {
Nicolas Geoffray762869d2016-07-15 15:28:35 +0100352 // We don't need to setup the intrinsics for non boot image compilation, as
353 // those compilations will pick up a boot image that have the ArtMethod already
354 // set with the intrinsics flag.
Orion Hodson26ef34c2017-11-01 13:32:41 +0000355 InitializeIntrinsics();
Nicolas Geoffray762869d2016-07-15 15:28:35 +0100356 }
Andreas Gampe740667a2015-09-15 17:55:06 -0700357 // Compile:
358 // 1) Compile all classes and methods enabled for compilation. May fall back to dex-to-dex
359 // compilation.
Nicolas Geoffray49cda062017-04-21 13:08:25 +0100360 if (GetCompilerOptions().IsAnyCompilationEnabled()) {
Andreas Gampeace0dc12016-01-20 13:33:13 -0800361 Compile(class_loader, dex_files, timings);
Andreas Gampe740667a2015-09-15 17:55:06 -0700362 }
Nicolas Geoffray2d8801f2017-11-28 15:50:07 +0000363 if (GetCompilerOptions().GetDumpStats()) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700364 stats_->Dump();
365 }
Andreas Gampeace0dc12016-01-20 13:33:13 -0800366
367 FreeThreadPools();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700368}
369
Mathieu Chartiera79efdb2018-01-18 16:31:01 -0800370static optimizer::DexToDexCompiler::CompilationLevel GetDexToDexCompilationLevel(
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700371 Thread* self, const CompilerDriver& driver, Handle<mirror::ClassLoader> class_loader,
372 const DexFile& dex_file, const DexFile::ClassDef& class_def)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700373 REQUIRES_SHARED(Locks::mutator_lock_) {
Nicolas Geoffrayf3075272018-01-08 12:41:19 +0000374 // When the dex file is uncompressed in the APK, we do not generate a copy in the .vdex
375 // file. As a result, dex2oat will map the dex file read-only, and we only need to check
376 // that to know if we can do quickening.
377 if (dex_file.GetContainer() != nullptr && dex_file.GetContainer()->IsReadOnly()) {
378 return optimizer::DexToDexCompiler::CompilationLevel::kDontDexToDexCompile;
379 }
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800380 auto* const runtime = Runtime::Current();
Nicolas Geoffray49cda062017-04-21 13:08:25 +0100381 DCHECK(driver.GetCompilerOptions().IsQuickeningCompilationEnabled());
Brian Carlstrom7940e442013-07-12 13:46:57 -0700382 const char* descriptor = dex_file.GetClassDescriptor(class_def);
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800383 ClassLinker* class_linker = runtime->GetClassLinker();
Vladimir Markoa8bba7d2018-05-30 15:18:48 +0100384 ObjPtr<mirror::Class> klass = class_linker->FindClass(self, descriptor, class_loader);
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700385 if (klass == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700386 CHECK(self->IsExceptionPending());
387 self->ClearException();
Mathieu Chartiera79efdb2018-01-18 16:31:01 -0800388 return optimizer::DexToDexCompiler::CompilationLevel::kDontDexToDexCompile;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700389 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700390 // DexToDex at the kOptimize level may introduce quickened opcodes, which replace symbolic
391 // references with actual offsets. We cannot re-verify such instructions.
392 //
393 // We store the verification information in the class status in the oat file, which the linker
394 // can validate (checksums) and use to skip load-time verification. It is thus safe to
395 // optimize when a class has been fully verified before.
Mathieu Chartiera79efdb2018-01-18 16:31:01 -0800396 optimizer::DexToDexCompiler::CompilationLevel max_level =
397 optimizer::DexToDexCompiler::CompilationLevel::kOptimize;
Alex Lighte40dd382017-01-25 17:44:53 -0800398 if (driver.GetCompilerOptions().GetDebuggable()) {
399 // We are debuggable so definitions of classes might be changed. We don't want to do any
400 // optimizations that could break that.
Mathieu Chartiera79efdb2018-01-18 16:31:01 -0800401 max_level = optimizer::DexToDexCompiler::CompilationLevel::kDontDexToDexCompile;
Alex Lighte40dd382017-01-25 17:44:53 -0800402 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700403 if (klass->IsVerified()) {
Sebastien Hertz75021222013-07-16 18:34:50 +0200404 // Class is verified so we can enable DEX-to-DEX compilation for performance.
Alex Lighte40dd382017-01-25 17:44:53 -0800405 return max_level;
Sebastien Hertz75021222013-07-16 18:34:50 +0200406 } else {
Andreas Gampe1a4bc7f2017-03-27 14:57:30 -0700407 // Class verification has failed: do not run DEX-to-DEX optimizations.
Mathieu Chartiera79efdb2018-01-18 16:31:01 -0800408 return optimizer::DexToDexCompiler::CompilationLevel::kDontDexToDexCompile;
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700409 }
410}
411
Mathieu Chartiera79efdb2018-01-18 16:31:01 -0800412static optimizer::DexToDexCompiler::CompilationLevel GetDexToDexCompilationLevel(
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700413 Thread* self,
414 const CompilerDriver& driver,
415 jobject jclass_loader,
416 const DexFile& dex_file,
417 const DexFile::ClassDef& class_def) {
418 ScopedObjectAccess soa(self);
419 StackHandleScope<1> hs(soa.Self());
420 Handle<mirror::ClassLoader> class_loader(
Mathieu Chartier0795f232016-09-27 18:43:30 -0700421 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader)));
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700422 return GetDexToDexCompilationLevel(self, driver, class_loader, dex_file, class_def);
423}
424
425// Does the runtime for the InstructionSet provide an implementation returned by
426// GetQuickGenericJniStub allowing down calls that aren't compiled using a JNI compiler?
427static bool InstructionSetHasGenericJniStub(InstructionSet isa) {
428 switch (isa) {
Vladimir Marko33bff252017-11-01 14:35:42 +0000429 case InstructionSet::kArm:
430 case InstructionSet::kArm64:
431 case InstructionSet::kThumb2:
432 case InstructionSet::kMips:
433 case InstructionSet::kMips64:
434 case InstructionSet::kX86:
435 case InstructionSet::kX86_64: return true;
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700436 default: return false;
437 }
438}
439
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800440template <typename CompileFn>
441static void CompileMethodHarness(
442 Thread* self,
443 CompilerDriver* driver,
444 const DexFile::CodeItem* code_item,
445 uint32_t access_flags,
446 InvokeType invoke_type,
447 uint16_t class_def_idx,
448 uint32_t method_idx,
449 Handle<mirror::ClassLoader> class_loader,
450 const DexFile& dex_file,
451 optimizer::DexToDexCompiler::CompilationLevel dex_to_dex_compilation_level,
452 bool compilation_enabled,
453 Handle<mirror::DexCache> dex_cache,
454 CompileFn compile_fn) {
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700455 DCHECK(driver != nullptr);
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800456 CompiledMethod* compiled_method;
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700457 uint64_t start_ns = kTimeCompileMethod ? NanoTime() : 0;
458 MethodReference method_ref(&dex_file, method_idx);
459
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800460 compiled_method = compile_fn(self,
461 driver,
462 code_item,
463 access_flags,
464 invoke_type,
465 class_def_idx,
466 method_idx,
467 class_loader,
468 dex_file,
469 dex_to_dex_compilation_level,
470 compilation_enabled,
471 dex_cache);
Igor Murashkin9d4b6da2016-07-29 09:51:58 -0700472
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700473 if (kTimeCompileMethod) {
474 uint64_t duration_ns = NanoTime() - start_ns;
475 if (duration_ns > MsToNs(driver->GetCompiler()->GetMaximumCompilationTimeBeforeWarning())) {
David Sehr709b0702016-10-13 09:12:37 -0700476 LOG(WARNING) << "Compilation of " << dex_file.PrettyMethod(method_idx)
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700477 << " took " << PrettyDuration(duration_ns);
478 }
479 }
480
481 if (compiled_method != nullptr) {
482 // Count non-relative linker patches.
483 size_t non_relative_linker_patch_count = 0u;
Vladimir Markod8dbc8d2017-09-20 13:37:47 +0100484 for (const linker::LinkerPatch& patch : compiled_method->GetPatches()) {
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700485 if (!patch.IsPcRelative()) {
486 ++non_relative_linker_patch_count;
487 }
488 }
489 bool compile_pic = driver->GetCompilerOptions().GetCompilePic(); // Off by default
490 // When compiling with PIC, there should be zero non-relative linker patches
491 CHECK(!compile_pic || non_relative_linker_patch_count == 0u);
492
493 driver->AddCompiledMethod(method_ref, compiled_method, non_relative_linker_patch_count);
494 }
495
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700496 if (self->IsExceptionPending()) {
497 ScopedObjectAccess soa(self);
David Sehr709b0702016-10-13 09:12:37 -0700498 LOG(FATAL) << "Unexpected exception compiling: " << dex_file.PrettyMethod(method_idx) << "\n"
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700499 << self->GetException()->Dump();
Sebastien Hertz75021222013-07-16 18:34:50 +0200500 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700501}
502
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800503static void CompileMethodDex2Dex(
504 Thread* self,
505 CompilerDriver* driver,
506 const DexFile::CodeItem* code_item,
507 uint32_t access_flags,
508 InvokeType invoke_type,
509 uint16_t class_def_idx,
510 uint32_t method_idx,
511 Handle<mirror::ClassLoader> class_loader,
512 const DexFile& dex_file,
513 optimizer::DexToDexCompiler::CompilationLevel dex_to_dex_compilation_level,
514 bool compilation_enabled,
515 Handle<mirror::DexCache> dex_cache) {
516 auto dex_2_dex_fn = [](Thread* self ATTRIBUTE_UNUSED,
517 CompilerDriver* driver,
518 const DexFile::CodeItem* code_item,
519 uint32_t access_flags,
520 InvokeType invoke_type,
521 uint16_t class_def_idx,
522 uint32_t method_idx,
523 Handle<mirror::ClassLoader> class_loader,
524 const DexFile& dex_file,
525 optimizer::DexToDexCompiler::CompilationLevel dex_to_dex_compilation_level,
526 bool compilation_enabled ATTRIBUTE_UNUSED,
527 Handle<mirror::DexCache> dex_cache ATTRIBUTE_UNUSED) -> CompiledMethod* {
528 DCHECK(driver != nullptr);
529 MethodReference method_ref(&dex_file, method_idx);
530
531 optimizer::DexToDexCompiler* const compiler = &driver->GetDexToDexCompiler();
532
533 if (compiler->ShouldCompileMethod(method_ref)) {
534 VerificationResults* results = driver->GetVerificationResults();
535 DCHECK(results != nullptr);
536 const VerifiedMethod* verified_method = results->GetVerifiedMethod(method_ref);
537 // Do not optimize if a VerifiedMethod is missing. SafeCast elision,
538 // for example, relies on it.
539 return compiler->CompileMethod(
540 code_item,
541 access_flags,
542 invoke_type,
543 class_def_idx,
544 method_idx,
545 class_loader,
546 dex_file,
547 (verified_method != nullptr)
548 ? dex_to_dex_compilation_level
549 : optimizer::DexToDexCompiler::CompilationLevel::kDontDexToDexCompile);
550 }
551 return nullptr;
552 };
553 CompileMethodHarness(self,
554 driver,
555 code_item,
556 access_flags,
557 invoke_type,
558 class_def_idx,
559 method_idx,
560 class_loader,
561 dex_file,
562 dex_to_dex_compilation_level,
563 compilation_enabled,
564 dex_cache,
565 dex_2_dex_fn);
566}
567
568static void CompileMethodQuick(
569 Thread* self,
570 CompilerDriver* driver,
571 const DexFile::CodeItem* code_item,
572 uint32_t access_flags,
573 InvokeType invoke_type,
574 uint16_t class_def_idx,
575 uint32_t method_idx,
576 Handle<mirror::ClassLoader> class_loader,
577 const DexFile& dex_file,
578 optimizer::DexToDexCompiler::CompilationLevel dex_to_dex_compilation_level,
579 bool compilation_enabled,
580 Handle<mirror::DexCache> dex_cache) {
581 auto quick_fn = [](
582 Thread* self,
583 CompilerDriver* driver,
584 const DexFile::CodeItem* code_item,
585 uint32_t access_flags,
586 InvokeType invoke_type,
587 uint16_t class_def_idx,
588 uint32_t method_idx,
589 Handle<mirror::ClassLoader> class_loader,
590 const DexFile& dex_file,
591 optimizer::DexToDexCompiler::CompilationLevel dex_to_dex_compilation_level,
592 bool compilation_enabled,
593 Handle<mirror::DexCache> dex_cache) {
594 DCHECK(driver != nullptr);
595 CompiledMethod* compiled_method = nullptr;
596 MethodReference method_ref(&dex_file, method_idx);
597
598 if ((access_flags & kAccNative) != 0) {
599 // Are we extracting only and have support for generic JNI down calls?
600 if (!driver->GetCompilerOptions().IsJniCompilationEnabled() &&
Vladimir Markoa0431112018-06-25 09:32:54 +0100601 InstructionSetHasGenericJniStub(driver->GetCompilerOptions().GetInstructionSet())) {
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800602 // Leaving this empty will trigger the generic JNI version
603 } else {
604 // Query any JNI optimization annotations such as @FastNative or @CriticalNative.
605 access_flags |= annotations::GetNativeMethodAnnotationAccessFlags(
606 dex_file, dex_file.GetClassDef(class_def_idx), method_idx);
607
608 compiled_method = driver->GetCompiler()->JniCompile(
609 access_flags, method_idx, dex_file, dex_cache);
610 CHECK(compiled_method != nullptr);
611 }
612 } else if ((access_flags & kAccAbstract) != 0) {
613 // Abstract methods don't have code.
614 } else {
615 VerificationResults* results = driver->GetVerificationResults();
616 DCHECK(results != nullptr);
617 const VerifiedMethod* verified_method = results->GetVerifiedMethod(method_ref);
618 bool compile = compilation_enabled &&
619 // Basic checks, e.g., not <clinit>.
620 results->IsCandidateForCompilation(method_ref, access_flags) &&
621 // Did not fail to create VerifiedMethod metadata.
622 verified_method != nullptr &&
623 // Do not have failures that should punt to the interpreter.
624 !verified_method->HasRuntimeThrow() &&
625 (verified_method->GetEncounteredVerificationFailures() &
626 (verifier::VERIFY_ERROR_FORCE_INTERPRETER | verifier::VERIFY_ERROR_LOCKING)) == 0 &&
627 // Is eligable for compilation by methods-to-compile filter.
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800628 driver->ShouldCompileBasedOnProfile(method_ref);
629
630 if (compile) {
631 // NOTE: if compiler declines to compile this method, it will return null.
632 compiled_method = driver->GetCompiler()->Compile(code_item,
633 access_flags,
634 invoke_type,
635 class_def_idx,
636 method_idx,
637 class_loader,
638 dex_file,
639 dex_cache);
640 }
641 if (compiled_method == nullptr &&
642 dex_to_dex_compilation_level !=
643 optimizer::DexToDexCompiler::CompilationLevel::kDontDexToDexCompile) {
644 DCHECK(!Runtime::Current()->UseJitCompilation());
645 // TODO: add a command-line option to disable DEX-to-DEX compilation ?
Mathieu Chartier279e3a32018-01-24 18:17:55 -0800646 driver->GetDexToDexCompiler().MarkForCompilation(self, method_ref);
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800647 }
648 }
649 return compiled_method;
650 };
651 CompileMethodHarness(self,
652 driver,
653 code_item,
654 access_flags,
655 invoke_type,
656 class_def_idx,
657 method_idx,
658 class_loader,
659 dex_file,
660 dex_to_dex_compilation_level,
661 compilation_enabled,
662 dex_cache,
663 quick_fn);
664}
665
Vladimir Markodc4bcce2018-06-21 16:15:42 +0100666// Compile a single Method. (For testing only.)
667void CompilerDriver::CompileOne(Thread* self,
668 jobject class_loader,
669 const DexFile& dex_file,
670 uint16_t class_def_idx,
671 uint32_t method_idx,
672 uint32_t access_flags,
673 InvokeType invoke_type,
674 const DexFile::CodeItem* code_item,
675 Handle<mirror::DexCache> dex_cache,
676 Handle<mirror::ClassLoader> h_class_loader) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700677 // Can we run DEX-to-DEX compiler on this class ?
Mathieu Chartiera79efdb2018-01-18 16:31:01 -0800678 optimizer::DexToDexCompiler::CompilationLevel dex_to_dex_compilation_level =
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700679 GetDexToDexCompilationLevel(self,
680 *this,
Vladimir Markodc4bcce2018-06-21 16:15:42 +0100681 class_loader,
682 dex_file,
683 dex_file.GetClassDef(class_def_idx));
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700684
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800685 CompileMethodQuick(self,
686 this,
687 code_item,
688 access_flags,
689 invoke_type,
690 class_def_idx,
691 method_idx,
Vladimir Markodc4bcce2018-06-21 16:15:42 +0100692 h_class_loader,
693 dex_file,
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800694 dex_to_dex_compilation_level,
695 true,
696 dex_cache);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700697
Mathieu Chartier279e3a32018-01-24 18:17:55 -0800698 const size_t num_methods = dex_to_dex_compiler_.NumCodeItemsToQuicken(self);
Mathieu Chartiera79efdb2018-01-18 16:31:01 -0800699 if (num_methods != 0) {
700 DCHECK_EQ(num_methods, 1u);
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800701 CompileMethodDex2Dex(self,
702 this,
703 code_item,
704 access_flags,
705 invoke_type,
706 class_def_idx,
707 method_idx,
Vladimir Markodc4bcce2018-06-21 16:15:42 +0100708 h_class_loader,
709 dex_file,
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800710 dex_to_dex_compilation_level,
711 true,
712 dex_cache);
Mathieu Chartiera79efdb2018-01-18 16:31:01 -0800713 dex_to_dex_compiler_.ClearState();
Vladimir Marko492a7fa2016-06-01 18:38:43 +0100714 }
Mathieu Chartier2535abe2015-02-17 10:38:49 -0800715}
716
Andreas Gampeace0dc12016-01-20 13:33:13 -0800717void CompilerDriver::Resolve(jobject class_loader,
718 const std::vector<const DexFile*>& dex_files,
719 TimingLogger* timings) {
720 // Resolution allocates classes and needs to run single-threaded to be deterministic.
721 bool force_determinism = GetCompilerOptions().IsForceDeterminism();
722 ThreadPool* resolve_thread_pool = force_determinism
723 ? single_thread_pool_.get()
724 : parallel_thread_pool_.get();
725 size_t resolve_thread_count = force_determinism ? 1U : parallel_thread_count_;
726
Brian Carlstrom7940e442013-07-12 13:46:57 -0700727 for (size_t i = 0; i != dex_files.size(); ++i) {
728 const DexFile* dex_file = dex_files[i];
Kenny Rootd5185342014-05-13 14:47:05 -0700729 CHECK(dex_file != nullptr);
Andreas Gampeace0dc12016-01-20 13:33:13 -0800730 ResolveDexFile(class_loader,
731 *dex_file,
732 dex_files,
733 resolve_thread_pool,
734 resolve_thread_count,
735 timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700736 }
737}
738
Andreas Gampeace0dc12016-01-20 13:33:13 -0800739static void ResolveConstStrings(CompilerDriver* driver,
740 const std::vector<const DexFile*>& dex_files,
741 TimingLogger* timings) {
Nicolas Geoffray571d2342016-10-12 13:03:15 +0000742 ScopedObjectAccess soa(Thread::Current());
743 StackHandleScope<1> hs(soa.Self());
744 ClassLinker* const class_linker = Runtime::Current()->GetClassLinker();
745 MutableHandle<mirror::DexCache> dex_cache(hs.NewHandle<mirror::DexCache>(nullptr));
746
Andreas Gampeace0dc12016-01-20 13:33:13 -0800747 for (const DexFile* dex_file : dex_files) {
Vladimir Markocd556b02017-02-03 11:47:34 +0000748 dex_cache.Assign(class_linker->FindDexCache(soa.Self(), *dex_file));
Andreas Gampeace0dc12016-01-20 13:33:13 -0800749 TimingLogger::ScopedTiming t("Resolve const-string Strings", timings);
750
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -0700751 for (ClassAccessor accessor : dex_file->GetClasses()) {
752 if (!driver->IsClassToCompile(accessor.GetDescriptor())) {
Andreas Gampeace0dc12016-01-20 13:33:13 -0800753 // Compilation is skipped, do not resolve const-string in code of this class.
Vladimir Marko175e7862018-03-27 09:03:13 +0000754 // FIXME: Make sure that inlining honors this. b/26687569
Andreas Gampeace0dc12016-01-20 13:33:13 -0800755 continue;
756 }
Mathieu Chartier0d896bd2018-05-25 00:20:27 -0700757 for (const ClassAccessor::Method& method : accessor.GetMethods()) {
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -0700758 // Resolve const-strings in the code. Done to have deterministic allocation behavior. Right
759 // now this is single-threaded for simplicity.
760 // TODO: Collect the relevant string indices in parallel, then allocate them sequentially
761 // in a stable order.
762 for (const DexInstructionPcPair& inst : method.GetInstructions()) {
763 switch (inst->Opcode()) {
764 case Instruction::CONST_STRING:
765 case Instruction::CONST_STRING_JUMBO: {
766 dex::StringIndex string_index((inst->Opcode() == Instruction::CONST_STRING)
767 ? inst->VRegB_21c()
768 : inst->VRegB_31c());
769 ObjPtr<mirror::String> string = class_linker->ResolveString(string_index, dex_cache);
770 CHECK(string != nullptr) << "Could not allocate a string when forcing determinism";
771 break;
772 }
Andreas Gampeace0dc12016-01-20 13:33:13 -0800773
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -0700774 default:
775 break;
776 }
777 }
Mathieu Chartier0d896bd2018-05-25 00:20:27 -0700778 }
Vladimir Marko175e7862018-03-27 09:03:13 +0000779 }
780 }
781}
782
783// Initialize type check bit strings for check-cast and instance-of in the code. Done to have
784// deterministic allocation behavior. Right now this is single-threaded for simplicity.
785// TODO: Collect the relevant type indices in parallel, then process them sequentially in a
786// stable order.
787
788static void InitializeTypeCheckBitstrings(CompilerDriver* driver,
789 ClassLinker* class_linker,
790 Handle<mirror::DexCache> dex_cache,
791 const DexFile& dex_file,
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -0700792 const ClassAccessor::Method& method)
Vladimir Marko175e7862018-03-27 09:03:13 +0000793 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -0700794 for (const DexInstructionPcPair& inst : method.GetInstructions()) {
Vladimir Marko175e7862018-03-27 09:03:13 +0000795 switch (inst->Opcode()) {
796 case Instruction::CHECK_CAST:
797 case Instruction::INSTANCE_OF: {
798 dex::TypeIndex type_index(
799 (inst->Opcode() == Instruction::CHECK_CAST) ? inst->VRegB_21c() : inst->VRegC_22c());
800 const char* descriptor = dex_file.StringByTypeIdx(type_index);
801 // We currently do not use the bitstring type check for array or final (including
802 // primitive) classes. We may reconsider this in future if it's deemed to be beneficial.
803 // And we cannot use it for classes outside the boot image as we do not know the runtime
804 // value of their bitstring when compiling (it may not even get assigned at runtime).
Vladimir Markodc4bcce2018-06-21 16:15:42 +0100805 if (descriptor[0] == 'L' && driver->GetCompilerOptions().IsImageClass(descriptor)) {
Vladimir Marko175e7862018-03-27 09:03:13 +0000806 ObjPtr<mirror::Class> klass =
807 class_linker->LookupResolvedType(type_index,
808 dex_cache.Get(),
809 /* class_loader */ nullptr);
810 CHECK(klass != nullptr) << descriptor << " should have been previously resolved.";
811 // Now assign the bitstring if the class is not final. Keep this in sync with sharpening.
812 if (!klass->IsFinal()) {
813 MutexLock subtype_check_lock(Thread::Current(), *Locks::subtype_check_lock_);
814 SubtypeCheck<ObjPtr<mirror::Class>>::EnsureAssigned(klass);
815 }
Andreas Gampeace0dc12016-01-20 13:33:13 -0800816 }
Vladimir Marko175e7862018-03-27 09:03:13 +0000817 break;
818 }
819
820 default:
821 break;
822 }
823 }
824}
825
826static void InitializeTypeCheckBitstrings(CompilerDriver* driver,
827 const std::vector<const DexFile*>& dex_files,
828 TimingLogger* timings) {
829 ScopedObjectAccess soa(Thread::Current());
830 StackHandleScope<1> hs(soa.Self());
831 ClassLinker* const class_linker = Runtime::Current()->GetClassLinker();
832 MutableHandle<mirror::DexCache> dex_cache(hs.NewHandle<mirror::DexCache>(nullptr));
833
834 for (const DexFile* dex_file : dex_files) {
835 dex_cache.Assign(class_linker->FindDexCache(soa.Self(), *dex_file));
836 TimingLogger::ScopedTiming t("Initialize type check bitstrings", timings);
837
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -0700838 for (ClassAccessor accessor : dex_file->GetClasses()) {
839 if (!driver->IsClassToCompile(accessor.GetDescriptor())) {
Vladimir Marko175e7862018-03-27 09:03:13 +0000840 // Compilation is skipped, do not look for type checks in code of this class.
841 // FIXME: Make sure that inlining honors this. b/26687569
842 continue;
843 }
844
845 // Direct and virtual methods.
Mathieu Chartier0d896bd2018-05-25 00:20:27 -0700846 for (const ClassAccessor::Method& method : accessor.GetMethods()) {
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -0700847 InitializeTypeCheckBitstrings(driver, class_linker, dex_cache, *dex_file, method);
Mathieu Chartier0d896bd2018-05-25 00:20:27 -0700848 }
Andreas Gampeace0dc12016-01-20 13:33:13 -0800849 }
850 }
851}
852
853inline void CompilerDriver::CheckThreadPools() {
854 DCHECK(parallel_thread_pool_ != nullptr);
855 DCHECK(single_thread_pool_ != nullptr);
856}
857
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +0000858static void EnsureVerifiedOrVerifyAtRuntime(jobject jclass_loader,
859 const std::vector<const DexFile*>& dex_files) {
860 ScopedObjectAccess soa(Thread::Current());
861 StackHandleScope<2> hs(soa.Self());
862 Handle<mirror::ClassLoader> class_loader(
863 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader)));
864 MutableHandle<mirror::Class> cls(hs.NewHandle<mirror::Class>(nullptr));
865 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
866
867 for (const DexFile* dex_file : dex_files) {
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -0700868 for (ClassAccessor accessor : dex_file->GetClasses()) {
869 cls.Assign(class_linker->FindClass(soa.Self(), accessor.GetDescriptor(), class_loader));
Andreas Gampefa4333d2017-02-14 11:10:34 -0800870 if (cls == nullptr) {
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +0000871 soa.Self()->ClearException();
872 } else if (&cls->GetDexFile() == dex_file) {
Nicolas Geoffray7cc3ae52017-03-07 14:33:37 +0000873 DCHECK(cls->IsErroneous() || cls->IsVerified() || cls->ShouldVerifyAtRuntime())
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +0000874 << cls->PrettyClass()
875 << " " << cls->GetStatus();
876 }
877 }
878 }
879}
880
Andreas Gampeace0dc12016-01-20 13:33:13 -0800881void CompilerDriver::PreCompile(jobject class_loader,
882 const std::vector<const DexFile*>& dex_files,
883 TimingLogger* timings) {
884 CheckThreadPools();
Vladimir Marko213ee2d2018-06-22 11:56:34 +0100885
Vladimir Markodc4bcce2018-06-21 16:15:42 +0100886 VLOG(compiler) << "Before precompile " << GetMemoryUsageString(false);
887
Vladimir Marko213ee2d2018-06-22 11:56:34 +0100888 compiled_classes_.AddDexFiles(GetCompilerOptions().GetDexFilesForOatFile());
889 dex_to_dex_compiler_.SetDexFiles(GetCompilerOptions().GetDexFilesForOatFile());
890
Vladimir Markodc4bcce2018-06-21 16:15:42 +0100891 // Precompile:
892 // 1) Load image classes.
893 // 2) Resolve all classes.
894 // 3) For deterministic boot image, resolve strings for const-string instructions.
895 // 4) Attempt to verify all classes.
896 // 5) Attempt to initialize image classes, and trivially initialized classes.
897 // 6) Update the set of image classes.
898 // 7) For deterministic boot image, initialize bitstrings for type checking.
Andreas Gampeace0dc12016-01-20 13:33:13 -0800899
Brian Carlstrom7940e442013-07-12 13:46:57 -0700900 LoadImageClasses(timings);
Andreas Gampe8d295f82015-01-20 14:50:21 -0800901 VLOG(compiler) << "LoadImageClasses: " << GetMemoryUsageString(false);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700902
Nicolas Geoffray49cda062017-04-21 13:08:25 +0100903 if (compiler_options_->IsAnyCompilationEnabled()) {
Mathieu Chartier88b74b62017-07-16 17:08:19 -0700904 // Avoid adding the dex files in the case where we aren't going to add compiled methods.
905 // This reduces RAM usage for this case.
906 for (const DexFile* dex_file : dex_files) {
907 // Can be already inserted if the caller is CompileOne. This happens for gtests.
908 if (!compiled_methods_.HaveDexFile(dex_file)) {
Mathieu Chartierfc8b4222017-09-17 13:44:24 -0700909 compiled_methods_.AddDexFile(dex_file);
Mathieu Chartier88b74b62017-07-16 17:08:19 -0700910 }
911 }
Nicolas Geoffray49cda062017-04-21 13:08:25 +0100912 // Resolve eagerly to prepare for compilation.
Andreas Gampeace0dc12016-01-20 13:33:13 -0800913 Resolve(class_loader, dex_files, timings);
Mathieu Chartiere86deef2015-03-19 13:43:37 -0700914 VLOG(compiler) << "Resolve: " << GetMemoryUsageString(false);
915 }
916
Nicolas Geoffray60ca9492016-12-20 21:15:00 +0000917 if (compiler_options_->AssumeClassesAreVerified()) {
Mathieu Chartierab972ef2014-12-03 17:38:22 -0800918 VLOG(compiler) << "Verify none mode specified, skipping verification.";
Andreas Gampeace0dc12016-01-20 13:33:13 -0800919 SetVerified(class_loader, dex_files, timings);
Mathieu Chartiere86deef2015-03-19 13:43:37 -0700920 }
921
Nicolas Geoffray60ca9492016-12-20 21:15:00 +0000922 if (!compiler_options_->IsVerificationEnabled()) {
Jeff Hao4a200f52014-04-01 14:58:49 -0700923 return;
924 }
925
Vladimir Markoaad75c62016-10-03 08:46:48 +0000926 if (GetCompilerOptions().IsForceDeterminism() && GetCompilerOptions().IsBootImage()) {
Andreas Gampeace0dc12016-01-20 13:33:13 -0800927 // Resolve strings from const-string. Do this now to have a deterministic image.
928 ResolveConstStrings(this, dex_files, timings);
929 VLOG(compiler) << "Resolve const-strings: " << GetMemoryUsageString(false);
930 }
931
Nicolas Geoffrayb0bbe8e2016-11-19 10:42:37 +0000932 Verify(class_loader, dex_files, timings);
Andreas Gampe8d295f82015-01-20 14:50:21 -0800933 VLOG(compiler) << "Verify: " << GetMemoryUsageString(false);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700934
Andreas Gampe6cf49e52015-03-05 13:08:45 -0800935 if (had_hard_verifier_failure_ && GetCompilerOptions().AbortOnHardVerifierFailure()) {
Andreas Gampefdfb4d42017-07-27 12:12:22 -0700936 // Avoid dumping threads. Even if we shut down the thread pools, there will still be three
937 // instances of this thread's stack.
938 LOG(FATAL_WITHOUT_ABORT) << "Had a hard failure verifying all classes, and was asked to abort "
939 << "in such situations. Please check the log.";
Andreas Gampe56c9b7c2018-02-27 18:49:26 -0800940 _exit(1);
Andreas Gampef39208f2017-10-19 15:06:59 -0700941 } else if (number_of_soft_verifier_failures_ > 0 &&
942 GetCompilerOptions().AbortOnSoftVerifierFailure()) {
943 LOG(FATAL_WITHOUT_ABORT) << "Had " << number_of_soft_verifier_failures_ << " soft failure(s) "
944 << "verifying all classes, and was asked to abort in such situations. "
945 << "Please check the log.";
Andreas Gampe56c9b7c2018-02-27 18:49:26 -0800946 _exit(1);
Andreas Gampe6cf49e52015-03-05 13:08:45 -0800947 }
948
Nicolas Geoffray49cda062017-04-21 13:08:25 +0100949 if (compiler_options_->IsAnyCompilationEnabled()) {
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +0000950 if (kIsDebugBuild) {
951 EnsureVerifiedOrVerifyAtRuntime(class_loader, dex_files);
952 }
Nicolas Geoffrayade72d62016-12-15 13:20:02 +0000953 InitializeClasses(class_loader, dex_files, timings);
954 VLOG(compiler) << "InitializeClasses: " << GetMemoryUsageString(false);
955 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700956
957 UpdateImageClasses(timings);
Andreas Gampe8d295f82015-01-20 14:50:21 -0800958 VLOG(compiler) << "UpdateImageClasses: " << GetMemoryUsageString(false);
Vladimir Marko175e7862018-03-27 09:03:13 +0000959
960 if (kBitstringSubtypeCheckEnabled &&
961 GetCompilerOptions().IsForceDeterminism() && GetCompilerOptions().IsBootImage()) {
962 // Initialize type check bit string used by check-cast and instanceof.
963 // Do this now to have a deterministic image.
964 // Note: This is done after UpdateImageClasses() at it relies on the image classes to be final.
965 InitializeTypeCheckBitstrings(this, dex_files, timings);
966 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700967}
968
Andreas Gampe4bf3ae92014-11-11 13:28:29 -0800969bool CompilerDriver::IsClassToCompile(const char* descriptor) const {
Andreas Gampeb1fcead2015-04-20 18:53:51 -0700970 if (classes_to_compile_ == nullptr) {
971 return true;
972 }
Vladimir Marko54159c62018-06-20 14:30:08 +0100973 return classes_to_compile_->find(StringPiece(descriptor)) != classes_to_compile_->end();
Andreas Gampe4bf3ae92014-11-11 13:28:29 -0800974}
975
Calin Juravle226501b2015-12-11 14:41:31 +0000976bool CompilerDriver::ShouldCompileBasedOnProfile(const MethodReference& method_ref) const {
Mathieu Chartier97ab5e32017-02-22 13:35:44 -0800977 // Profile compilation info may be null if no profile is passed.
Mathieu Chartierd0af56c2017-02-17 12:56:25 -0800978 if (!CompilerFilter::DependsOnProfile(compiler_options_->GetCompilerFilter())) {
979 // Use the compiler filter instead of the presence of profile_compilation_info_ since
980 // we may want to have full speed compilation along with profile based layout optimizations.
Calin Juravle226501b2015-12-11 14:41:31 +0000981 return true;
982 }
Mathieu Chartier97ab5e32017-02-22 13:35:44 -0800983 // If we are using a profile filter but do not have a profile compilation info, compile nothing.
984 if (profile_compilation_info_ == nullptr) {
985 return false;
986 }
Mathieu Chartier7b135c82017-06-05 12:54:01 -0700987 // Compile only hot methods, it is the profile saver's job to decide what startup methods to mark
988 // as hot.
Mathieu Chartierbbe3a5e2017-06-13 16:36:17 -0700989 bool result = profile_compilation_info_->GetMethodHotness(method_ref).IsHot();
Calin Juravle226501b2015-12-11 14:41:31 +0000990
991 if (kDebugProfileGuidedCompilation) {
992 LOG(INFO) << "[ProfileGuidedCompilation] "
Mathieu Chartierfc8b4222017-09-17 13:44:24 -0700993 << (result ? "Compiled" : "Skipped") << " method:" << method_ref.PrettyMethod(true);
Calin Juravle226501b2015-12-11 14:41:31 +0000994 }
995 return result;
996}
997
Mathieu Chartiere0671ce2015-07-28 17:23:28 -0700998class ResolveCatchBlockExceptionsClassVisitor : public ClassVisitor {
999 public:
Vladimir Marko8d6768d2017-03-14 10:13:21 +00001000 ResolveCatchBlockExceptionsClassVisitor() : classes_() {}
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001001
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001002 virtual bool operator()(ObjPtr<mirror::Class> c) OVERRIDE REQUIRES_SHARED(Locks::mutator_lock_) {
Vladimir Marko8d6768d2017-03-14 10:13:21 +00001003 classes_.push_back(c);
Mathieu Chartiere4275c02015-08-06 15:34:15 -07001004 return true;
1005 }
1006
Vladimir Marko8d6768d2017-03-14 10:13:21 +00001007 void FindExceptionTypesToResolve(
1008 std::set<std::pair<dex::TypeIndex, const DexFile*>>* exceptions_to_resolve)
Vladimir Markobfb80d22017-02-14 14:08:12 +00001009 REQUIRES_SHARED(Locks::mutator_lock_) {
Vladimir Marko8d6768d2017-03-14 10:13:21 +00001010 const auto pointer_size = Runtime::Current()->GetClassLinker()->GetImagePointerSize();
1011 for (ObjPtr<mirror::Class> klass : classes_) {
1012 for (ArtMethod& method : klass->GetMethods(pointer_size)) {
1013 FindExceptionTypesToResolveForMethod(&method, exceptions_to_resolve);
1014 }
1015 }
1016 }
1017
1018 private:
1019 void FindExceptionTypesToResolveForMethod(
1020 ArtMethod* method,
1021 std::set<std::pair<dex::TypeIndex, const DexFile*>>* exceptions_to_resolve)
1022 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartier808c7a52017-12-15 11:19:33 -08001023 if (method->GetCodeItem() == nullptr) {
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001024 return; // native or abstract method
Brian Carlstrom7940e442013-07-12 13:46:57 -07001025 }
David Sehr0225f8e2018-01-31 08:52:24 +00001026 CodeItemDataAccessor accessor(method->DexInstructionData());
Mathieu Chartier808c7a52017-12-15 11:19:33 -08001027 if (accessor.TriesSize() == 0) {
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001028 return; // nothing to process
1029 }
Mathieu Chartier808c7a52017-12-15 11:19:33 -08001030 const uint8_t* encoded_catch_handler_list = accessor.GetCatchHandlerData();
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001031 size_t num_encoded_catch_handlers = DecodeUnsignedLeb128(&encoded_catch_handler_list);
1032 for (size_t i = 0; i < num_encoded_catch_handlers; i++) {
1033 int32_t encoded_catch_handler_size = DecodeSignedLeb128(&encoded_catch_handler_list);
1034 bool has_catch_all = false;
1035 if (encoded_catch_handler_size <= 0) {
1036 encoded_catch_handler_size = -encoded_catch_handler_size;
1037 has_catch_all = true;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001038 }
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001039 for (int32_t j = 0; j < encoded_catch_handler_size; j++) {
Andreas Gampea5b09a62016-11-17 15:21:22 -08001040 dex::TypeIndex encoded_catch_handler_handlers_type_idx =
1041 dex::TypeIndex(DecodeUnsignedLeb128(&encoded_catch_handler_list));
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001042 // Add to set of types to resolve if not already in the dex cache resolved types
Vladimir Marko8d6768d2017-03-14 10:13:21 +00001043 if (!method->IsResolvedTypeIdx(encoded_catch_handler_handlers_type_idx)) {
1044 exceptions_to_resolve->emplace(encoded_catch_handler_handlers_type_idx,
1045 method->GetDexFile());
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001046 }
1047 // ignore address associated with catch handler
1048 DecodeUnsignedLeb128(&encoded_catch_handler_list);
1049 }
1050 if (has_catch_all) {
1051 // ignore catch all address
1052 DecodeUnsignedLeb128(&encoded_catch_handler_list);
1053 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001054 }
1055 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001056
Vladimir Marko8d6768d2017-03-14 10:13:21 +00001057 std::vector<ObjPtr<mirror::Class>> classes_;
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001058};
1059
1060class RecordImageClassesVisitor : public ClassVisitor {
1061 public:
Vladimir Marko54159c62018-06-20 14:30:08 +01001062 explicit RecordImageClassesVisitor(HashSet<std::string>* image_classes)
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001063 : image_classes_(image_classes) {}
1064
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001065 bool operator()(ObjPtr<mirror::Class> klass) OVERRIDE REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001066 std::string temp;
1067 image_classes_->insert(klass->GetDescriptor(&temp));
1068 return true;
1069 }
1070
1071 private:
Vladimir Marko54159c62018-06-20 14:30:08 +01001072 HashSet<std::string>* const image_classes_;
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001073};
Brian Carlstrom7940e442013-07-12 13:46:57 -07001074
1075// Make a list of descriptors for classes to include in the image
Mathieu Chartier90443472015-07-16 20:32:27 -07001076void CompilerDriver::LoadImageClasses(TimingLogger* timings) {
Kenny Rootd5185342014-05-13 14:47:05 -07001077 CHECK(timings != nullptr);
Vladimir Markoaad75c62016-10-03 08:46:48 +00001078 if (!GetCompilerOptions().IsBootImage()) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001079 return;
1080 }
1081
Mathieu Chartierf5997b42014-06-20 10:37:54 -07001082 TimingLogger::ScopedTiming t("LoadImageClasses", timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001083 // Make a first class to load all classes explicitly listed in the file
1084 Thread* self = Thread::Current();
1085 ScopedObjectAccess soa(self);
1086 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Vladimir Markodc4bcce2018-06-21 16:15:42 +01001087 CHECK(image_classes_ != nullptr);
Mathieu Chartier02e25112013-08-14 16:14:24 -07001088 for (auto it = image_classes_->begin(), end = image_classes_->end(); it != end;) {
Vladimir Markoe9c36b32013-11-21 15:49:16 +00001089 const std::string& descriptor(*it);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001090 StackHandleScope<1> hs(self);
1091 Handle<mirror::Class> klass(
1092 hs.NewHandle(class_linker->FindSystemClass(self, descriptor.c_str())));
Andreas Gampefa4333d2017-02-14 11:10:34 -08001093 if (klass == nullptr) {
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001094 VLOG(compiler) << "Failed to find class " << descriptor;
Vladimir Marko54159c62018-06-20 14:30:08 +01001095 it = image_classes_->erase(it);
Ian Rogersa436fde2013-08-27 23:34:06 -07001096 self->ClearException();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001097 } else {
1098 ++it;
1099 }
1100 }
1101
1102 // Resolve exception classes referenced by the loaded classes. The catch logic assumes
1103 // exceptions are resolved by the verifier when there is a catch block in an interested method.
1104 // Do this here so that exception classes appear to have been specified image classes.
Andreas Gampea5b09a62016-11-17 15:21:22 -08001105 std::set<std::pair<dex::TypeIndex, const DexFile*>> unresolved_exception_types;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001106 StackHandleScope<1> hs(self);
1107 Handle<mirror::Class> java_lang_Throwable(
1108 hs.NewHandle(class_linker->FindSystemClass(self, "Ljava/lang/Throwable;")));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001109 do {
1110 unresolved_exception_types.clear();
Vladimir Marko8d6768d2017-03-14 10:13:21 +00001111 {
1112 // Thread suspension is not allowed while ResolveCatchBlockExceptionsClassVisitor
1113 // is using a std::vector<ObjPtr<mirror::Class>>.
1114 ScopedAssertNoThreadSuspension ants(__FUNCTION__);
1115 ResolveCatchBlockExceptionsClassVisitor visitor;
1116 class_linker->VisitClasses(&visitor);
1117 visitor.FindExceptionTypesToResolve(&unresolved_exception_types);
1118 }
Andreas Gampea5b09a62016-11-17 15:21:22 -08001119 for (const auto& exception_type : unresolved_exception_types) {
1120 dex::TypeIndex exception_type_idx = exception_type.first;
Mathieu Chartier02e25112013-08-14 16:14:24 -07001121 const DexFile* dex_file = exception_type.second;
Vladimir Marko666ee3d2017-12-11 18:37:36 +00001122 StackHandleScope<1> hs2(self);
Mathieu Chartierf284d442016-06-02 11:48:30 -07001123 Handle<mirror::DexCache> dex_cache(hs2.NewHandle(class_linker->RegisterDexFile(*dex_file,
1124 nullptr)));
Vladimir Marko666ee3d2017-12-11 18:37:36 +00001125 ObjPtr<mirror::Class> klass =
Andreas Gampefa4333d2017-02-14 11:10:34 -08001126 (dex_cache != nullptr)
Vladimir Marko666ee3d2017-12-11 18:37:36 +00001127 ? class_linker->ResolveType(exception_type_idx,
Vladimir Markocd556b02017-02-03 11:47:34 +00001128 dex_cache,
1129 ScopedNullHandle<mirror::ClassLoader>())
Vladimir Marko666ee3d2017-12-11 18:37:36 +00001130 : nullptr;
Andreas Gampefa4333d2017-02-14 11:10:34 -08001131 if (klass == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001132 const DexFile::TypeId& type_id = dex_file->GetTypeId(exception_type_idx);
1133 const char* descriptor = dex_file->GetTypeDescriptor(type_id);
1134 LOG(FATAL) << "Failed to resolve class " << descriptor;
1135 }
Vladimir Marko666ee3d2017-12-11 18:37:36 +00001136 DCHECK(java_lang_Throwable->IsAssignableFrom(klass));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001137 }
1138 // Resolving exceptions may load classes that reference more exceptions, iterate until no
1139 // more are found
1140 } while (!unresolved_exception_types.empty());
1141
1142 // We walk the roots looking for classes so that we'll pick up the
1143 // above classes plus any classes them depend on such super
1144 // classes, interfaces, and the required ClassLinker roots.
Vladimir Markodc4bcce2018-06-21 16:15:42 +01001145 RecordImageClassesVisitor visitor(image_classes_);
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001146 class_linker->VisitClasses(&visitor);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001147
Vladimir Marko54159c62018-06-20 14:30:08 +01001148 CHECK(!image_classes_->empty());
Brian Carlstrom7940e442013-07-12 13:46:57 -07001149}
1150
Vladimir Marko19a4d372016-12-08 14:41:46 +00001151static void MaybeAddToImageClasses(Thread* self,
1152 ObjPtr<mirror::Class> klass,
Vladimir Marko54159c62018-06-20 14:30:08 +01001153 HashSet<std::string>* image_classes)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001154 REQUIRES_SHARED(Locks::mutator_lock_) {
Vladimir Marko19a4d372016-12-08 14:41:46 +00001155 DCHECK_EQ(self, Thread::Current());
Mathieu Chartierf8322842014-05-16 10:59:25 -07001156 StackHandleScope<1> hs(self);
Ian Rogers1ff3c982014-08-12 02:30:58 -07001157 std::string temp;
Andreas Gampe542451c2016-07-26 09:02:02 -07001158 const PointerSize pointer_size = Runtime::Current()->GetClassLinker()->GetImagePointerSize();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001159 while (!klass->IsObjectClass()) {
Ian Rogers1ff3c982014-08-12 02:30:58 -07001160 const char* descriptor = klass->GetDescriptor(&temp);
Vladimir Marko54159c62018-06-20 14:30:08 +01001161 if (image_classes->find(StringPiece(descriptor)) != image_classes->end()) {
1162 break; // Previously inserted.
Brian Carlstrom7940e442013-07-12 13:46:57 -07001163 }
Vladimir Marko54159c62018-06-20 14:30:08 +01001164 image_classes->insert(descriptor);
Ian Rogers1ff3c982014-08-12 02:30:58 -07001165 VLOG(compiler) << "Adding " << descriptor << " to image classes";
Vladimir Marko19a4d372016-12-08 14:41:46 +00001166 for (size_t i = 0, num_interfaces = klass->NumDirectInterfaces(); i != num_interfaces; ++i) {
1167 ObjPtr<mirror::Class> interface = mirror::Class::GetDirectInterface(self, klass, i);
1168 DCHECK(interface != nullptr);
1169 MaybeAddToImageClasses(self, interface, image_classes);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001170 }
Vladimir Marko19a4d372016-12-08 14:41:46 +00001171 for (auto& m : klass->GetVirtualMethods(pointer_size)) {
1172 MaybeAddToImageClasses(self, m.GetDeclaringClass(), image_classes);
Mathieu Chartiere401d142015-04-22 13:56:20 -07001173 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001174 if (klass->IsArrayClass()) {
Vladimir Marko19a4d372016-12-08 14:41:46 +00001175 MaybeAddToImageClasses(self, klass->GetComponentType(), image_classes);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001176 }
Mathieu Chartierf8322842014-05-16 10:59:25 -07001177 klass.Assign(klass->GetSuperClass());
Brian Carlstrom7940e442013-07-12 13:46:57 -07001178 }
1179}
1180
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001181// Keeps all the data for the update together. Also doubles as the reference visitor.
1182// Note: we can use object pointers because we suspend all threads.
1183class ClinitImageUpdate {
1184 public:
Mathieu Chartier31e88222016-10-14 18:43:19 -07001185 static ClinitImageUpdate* Create(VariableSizedHandleScope& hs,
Vladimir Marko54159c62018-06-20 14:30:08 +01001186 HashSet<std::string>* image_class_descriptors,
Mathieu Chartier31e88222016-10-14 18:43:19 -07001187 Thread* self,
1188 ClassLinker* linker) {
1189 std::unique_ptr<ClinitImageUpdate> res(new ClinitImageUpdate(hs,
1190 image_class_descriptors,
1191 self,
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001192 linker));
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001193 return res.release();
1194 }
1195
1196 ~ClinitImageUpdate() {
1197 // Allow others to suspend again.
1198 self_->EndAssertNoThreadSuspension(old_cause_);
1199 }
1200
1201 // Visitor for VisitReferences.
Mathieu Chartier31e88222016-10-14 18:43:19 -07001202 void operator()(ObjPtr<mirror::Object> object,
1203 MemberOffset field_offset,
1204 bool /* is_static */) const
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001205 REQUIRES_SHARED(Locks::mutator_lock_) {
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001206 mirror::Object* ref = object->GetFieldObject<mirror::Object>(field_offset);
1207 if (ref != nullptr) {
1208 VisitClinitClassesObject(ref);
1209 }
1210 }
1211
Roland Levillain5e8d5f02016-10-18 18:03:43 +01001212 // java.lang.ref.Reference visitor for VisitReferences.
Mathieu Chartier31e88222016-10-14 18:43:19 -07001213 void operator()(ObjPtr<mirror::Class> klass ATTRIBUTE_UNUSED,
1214 ObjPtr<mirror::Reference> ref ATTRIBUTE_UNUSED) const {}
Mathieu Chartierda7c6502015-07-23 16:01:26 -07001215
1216 // Ignore class native roots.
1217 void VisitRootIfNonNull(mirror::CompressedReference<mirror::Object>* root ATTRIBUTE_UNUSED)
1218 const {}
1219 void VisitRoot(mirror::CompressedReference<mirror::Object>* root ATTRIBUTE_UNUSED) const {}
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001220
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001221 void Walk() REQUIRES_SHARED(Locks::mutator_lock_) {
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001222 // Use the initial classes as roots for a search.
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001223 for (Handle<mirror::Class> klass_root : image_classes_) {
1224 VisitClinitClassesObject(klass_root.Get());
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001225 }
Vladimir Marko19a4d372016-12-08 14:41:46 +00001226 Thread* self = Thread::Current();
1227 ScopedAssertNoThreadSuspension ants(__FUNCTION__);
Mathieu Chartier31e88222016-10-14 18:43:19 -07001228 for (Handle<mirror::Class> h_klass : to_insert_) {
Vladimir Marko19a4d372016-12-08 14:41:46 +00001229 MaybeAddToImageClasses(self, h_klass.Get(), image_class_descriptors_);
Mathieu Chartier31e88222016-10-14 18:43:19 -07001230 }
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001231 }
1232
1233 private:
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001234 class FindImageClassesVisitor : public ClassVisitor {
1235 public:
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001236 explicit FindImageClassesVisitor(VariableSizedHandleScope& hs,
1237 ClinitImageUpdate* data)
1238 : data_(data),
1239 hs_(hs) {}
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001240
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001241 bool operator()(ObjPtr<mirror::Class> klass) OVERRIDE REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001242 std::string temp;
Vladimir Marko54159c62018-06-20 14:30:08 +01001243 StringPiece name(klass->GetDescriptor(&temp));
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001244 if (data_->image_class_descriptors_->find(name) != data_->image_class_descriptors_->end()) {
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001245 data_->image_classes_.push_back(hs_.NewHandle(klass));
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001246 } else {
1247 // Check whether it is initialized and has a clinit. They must be kept, too.
1248 if (klass->IsInitialized() && klass->FindClassInitializer(
1249 Runtime::Current()->GetClassLinker()->GetImagePointerSize()) != nullptr) {
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001250 data_->image_classes_.push_back(hs_.NewHandle(klass));
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001251 }
1252 }
1253 return true;
1254 }
1255
1256 private:
1257 ClinitImageUpdate* const data_;
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001258 VariableSizedHandleScope& hs_;
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001259 };
1260
Mathieu Chartier31e88222016-10-14 18:43:19 -07001261 ClinitImageUpdate(VariableSizedHandleScope& hs,
Vladimir Marko54159c62018-06-20 14:30:08 +01001262 HashSet<std::string>* image_class_descriptors,
Mathieu Chartier31e88222016-10-14 18:43:19 -07001263 Thread* self,
1264 ClassLinker* linker) REQUIRES_SHARED(Locks::mutator_lock_)
1265 : hs_(hs),
1266 image_class_descriptors_(image_class_descriptors),
1267 self_(self) {
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001268 CHECK(linker != nullptr);
1269 CHECK(image_class_descriptors != nullptr);
1270
1271 // Make sure nobody interferes with us.
1272 old_cause_ = self->StartAssertNoThreadSuspension("Boot image closure");
1273
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001274 // Find all the already-marked classes.
1275 WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001276 FindImageClassesVisitor visitor(hs_, this);
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001277 linker->VisitClasses(&visitor);
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001278 }
1279
1280 void VisitClinitClassesObject(mirror::Object* object) const
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001281 REQUIRES_SHARED(Locks::mutator_lock_) {
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001282 DCHECK(object != nullptr);
1283 if (marked_objects_.find(object) != marked_objects_.end()) {
1284 // Already processed.
1285 return;
1286 }
1287
1288 // Mark it.
1289 marked_objects_.insert(object);
1290
1291 if (object->IsClass()) {
Mathieu Chartier31e88222016-10-14 18:43:19 -07001292 // Add to the TODO list since MaybeAddToImageClasses may cause thread suspension. Thread
1293 // suspensionb is not safe to do in VisitObjects or VisitReferences.
1294 to_insert_.push_back(hs_.NewHandle(object->AsClass()));
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001295 } else {
1296 // Else visit the object's class.
1297 VisitClinitClassesObject(object->GetClass());
1298 }
1299
Mathieu Chartiere401d142015-04-22 13:56:20 -07001300 // If it is not a DexCache, visit all references.
Mathieu Chartier31e88222016-10-14 18:43:19 -07001301 if (!object->IsDexCache()) {
Mathieu Chartier059ef3d2015-08-18 13:54:21 -07001302 object->VisitReferences(*this, *this);
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001303 }
1304 }
1305
Mathieu Chartier31e88222016-10-14 18:43:19 -07001306 VariableSizedHandleScope& hs_;
1307 mutable std::vector<Handle<mirror::Class>> to_insert_;
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001308 mutable std::unordered_set<mirror::Object*> marked_objects_;
Vladimir Marko54159c62018-06-20 14:30:08 +01001309 HashSet<std::string>* const image_class_descriptors_;
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001310 std::vector<Handle<mirror::Class>> image_classes_;
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001311 Thread* const self_;
1312 const char* old_cause_;
1313
1314 DISALLOW_COPY_AND_ASSIGN(ClinitImageUpdate);
1315};
Brian Carlstrom7940e442013-07-12 13:46:57 -07001316
Ian Rogers3d504072014-03-01 09:16:49 -08001317void CompilerDriver::UpdateImageClasses(TimingLogger* timings) {
Vladimir Markoaad75c62016-10-03 08:46:48 +00001318 if (GetCompilerOptions().IsBootImage()) {
Mathieu Chartierf5997b42014-06-20 10:37:54 -07001319 TimingLogger::ScopedTiming t("UpdateImageClasses", timings);
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001320
Mathieu Chartier4f55e222015-09-04 13:26:21 -07001321 Runtime* runtime = Runtime::Current();
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001322
1323 // Suspend all threads.
Mathieu Chartier4f55e222015-09-04 13:26:21 -07001324 ScopedSuspendAll ssa(__FUNCTION__);
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001325
Mathieu Chartier31e88222016-10-14 18:43:19 -07001326 VariableSizedHandleScope hs(Thread::Current());
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001327 std::string error_msg;
Mathieu Chartier31e88222016-10-14 18:43:19 -07001328 std::unique_ptr<ClinitImageUpdate> update(ClinitImageUpdate::Create(hs,
Vladimir Markodc4bcce2018-06-21 16:15:42 +01001329 image_classes_,
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001330 Thread::Current(),
Mathieu Chartier31e88222016-10-14 18:43:19 -07001331 runtime->GetClassLinker()));
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001332
1333 // Do the marking.
1334 update->Walk();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001335 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001336}
1337
Vladimir Marko07785bb2015-06-15 18:52:54 +01001338bool CompilerDriver::CanAssumeClassIsLoaded(mirror::Class* klass) {
1339 Runtime* runtime = Runtime::Current();
1340 if (!runtime->IsAotCompiler()) {
Calin Juravleffc87072016-04-20 14:22:09 +01001341 DCHECK(runtime->UseJitCompilation());
Vladimir Marko07785bb2015-06-15 18:52:54 +01001342 // Having the klass reference here implies that the klass is already loaded.
1343 return true;
1344 }
Vladimir Markoaad75c62016-10-03 08:46:48 +00001345 if (!GetCompilerOptions().IsBootImage()) {
Vladimir Marko07785bb2015-06-15 18:52:54 +01001346 // Assume loaded only if klass is in the boot image. App classes cannot be assumed
1347 // loaded because we don't even know what class loader will be used to load them.
1348 bool class_in_image = runtime->GetHeap()->FindSpaceFromObject(klass, false)->IsImageSpace();
1349 return class_in_image;
1350 }
1351 std::string temp;
1352 const char* descriptor = klass->GetDescriptor(&temp);
Vladimir Markodc4bcce2018-06-21 16:15:42 +01001353 return GetCompilerOptions().IsImageClass(descriptor);
Vladimir Marko07785bb2015-06-15 18:52:54 +01001354}
1355
Vladimir Marko8d6768d2017-03-14 10:13:21 +00001356bool CompilerDriver::CanAccessTypeWithoutChecks(ObjPtr<mirror::Class> referrer_class,
1357 ObjPtr<mirror::Class> resolved_class) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001358 if (resolved_class == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001359 stats_->TypeNeedsAccessCheck();
1360 return false; // Unknown class needs access checks.
1361 }
David Brazdil38f64d32016-01-18 17:13:41 +00001362 bool is_accessible = resolved_class->IsPublic(); // Public classes are always accessible.
1363 if (!is_accessible) {
David Brazdil38f64d32016-01-18 17:13:41 +00001364 if (referrer_class == nullptr) {
1365 stats_->TypeNeedsAccessCheck();
1366 return false; // Incomplete referrer knowledge needs access check.
1367 }
1368 // Perform access check, will return true if access is ok or false if we're going to have to
1369 // check this at runtime (for example for class loaders).
1370 is_accessible = referrer_class->CanAccess(resolved_class);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001371 }
David Brazdil38f64d32016-01-18 17:13:41 +00001372 if (is_accessible) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001373 stats_->TypeDoesntNeedAccessCheck();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001374 } else {
1375 stats_->TypeNeedsAccessCheck();
1376 }
David Brazdil38f64d32016-01-18 17:13:41 +00001377 return is_accessible;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001378}
1379
Vladimir Marko8d6768d2017-03-14 10:13:21 +00001380bool CompilerDriver::CanAccessInstantiableTypeWithoutChecks(ObjPtr<mirror::Class> referrer_class,
1381 ObjPtr<mirror::Class> resolved_class,
Mingyao Yangfb8464a2015-11-02 10:56:59 -08001382 bool* finalizable) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001383 if (resolved_class == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001384 stats_->TypeNeedsAccessCheck();
Mingyao Yangfb8464a2015-11-02 10:56:59 -08001385 // Be conservative.
1386 *finalizable = true;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001387 return false; // Unknown class needs access checks.
1388 }
Mingyao Yangfb8464a2015-11-02 10:56:59 -08001389 *finalizable = resolved_class->IsFinalizable();
David Brazdil38f64d32016-01-18 17:13:41 +00001390 bool is_accessible = resolved_class->IsPublic(); // Public classes are always accessible.
1391 if (!is_accessible) {
David Brazdil38f64d32016-01-18 17:13:41 +00001392 if (referrer_class == nullptr) {
1393 stats_->TypeNeedsAccessCheck();
1394 return false; // Incomplete referrer knowledge needs access check.
1395 }
1396 // Perform access and instantiable checks, will return true if access is ok or false if we're
1397 // going to have to check this at runtime (for example for class loaders).
1398 is_accessible = referrer_class->CanAccess(resolved_class);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001399 }
David Brazdil38f64d32016-01-18 17:13:41 +00001400 bool result = is_accessible && resolved_class->IsInstantiable();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001401 if (result) {
1402 stats_->TypeDoesntNeedAccessCheck();
1403 } else {
1404 stats_->TypeNeedsAccessCheck();
1405 }
1406 return result;
1407}
1408
Vladimir Markobe0e5462014-02-26 11:24:15 +00001409void CompilerDriver::ProcessedInstanceField(bool resolved) {
1410 if (!resolved) {
1411 stats_->UnresolvedInstanceField();
1412 } else {
1413 stats_->ResolvedInstanceField();
1414 }
1415}
1416
1417void CompilerDriver::ProcessedStaticField(bool resolved, bool local) {
1418 if (!resolved) {
1419 stats_->UnresolvedStaticField();
1420 } else if (local) {
1421 stats_->ResolvedLocalStaticField();
1422 } else {
1423 stats_->ResolvedStaticField();
1424 }
1425}
1426
Mathieu Chartierc7853442015-03-27 14:35:38 -07001427ArtField* CompilerDriver::ComputeInstanceFieldInfo(uint32_t field_idx,
Vladimir Markoe11dd502017-12-08 14:09:45 +00001428 const DexCompilationUnit* mUnit,
1429 bool is_put,
Mathieu Chartierc7853442015-03-27 14:35:38 -07001430 const ScopedObjectAccess& soa) {
Vladimir Markobe0e5462014-02-26 11:24:15 +00001431 // Try to resolve the field and compiling method's class.
Mathieu Chartierc7853442015-03-27 14:35:38 -07001432 ArtField* resolved_field;
Vladimir Marko28e012a2017-12-07 11:22:59 +00001433 ObjPtr<mirror::Class> referrer_class;
Mathieu Chartier736b5602015-09-02 14:54:11 -07001434 Handle<mirror::DexCache> dex_cache(mUnit->GetDexCache());
Vladimir Markobe0e5462014-02-26 11:24:15 +00001435 {
Vladimir Markoe11dd502017-12-08 14:09:45 +00001436 Handle<mirror::ClassLoader> class_loader = mUnit->GetClassLoader();
1437 resolved_field = ResolveField(soa, dex_cache, class_loader, field_idx, /* is_static */ false);
Mathieu Chartierc7853442015-03-27 14:35:38 -07001438 referrer_class = resolved_field != nullptr
Vladimir Markoe11dd502017-12-08 14:09:45 +00001439 ? ResolveCompilingMethodsClass(soa, dex_cache, class_loader, mUnit) : nullptr;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001440 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001441 bool can_link = false;
Vladimir Markobe0e5462014-02-26 11:24:15 +00001442 if (resolved_field != nullptr && referrer_class != nullptr) {
Vladimir Markobe0e5462014-02-26 11:24:15 +00001443 std::pair<bool, bool> fast_path = IsFastInstanceField(
Mathieu Chartier736b5602015-09-02 14:54:11 -07001444 dex_cache.Get(), referrer_class, resolved_field, field_idx);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001445 can_link = is_put ? fast_path.second : fast_path.first;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001446 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001447 ProcessedInstanceField(can_link);
1448 return can_link ? resolved_field : nullptr;
1449}
1450
1451bool CompilerDriver::ComputeInstanceFieldInfo(uint32_t field_idx, const DexCompilationUnit* mUnit,
1452 bool is_put, MemberOffset* field_offset,
1453 bool* is_volatile) {
1454 ScopedObjectAccess soa(Thread::Current());
Mathieu Chartierc7853442015-03-27 14:35:38 -07001455 ArtField* resolved_field = ComputeInstanceFieldInfo(field_idx, mUnit, is_put, soa);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001456
Mathieu Chartierc7853442015-03-27 14:35:38 -07001457 if (resolved_field == nullptr) {
Vladimir Markobe0e5462014-02-26 11:24:15 +00001458 // Conservative defaults.
1459 *is_volatile = true;
1460 *field_offset = MemberOffset(static_cast<size_t>(-1));
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001461 return false;
1462 } else {
1463 *is_volatile = resolved_field->IsVolatile();
1464 *field_offset = resolved_field->GetOffset();
1465 return true;
Vladimir Markobe0e5462014-02-26 11:24:15 +00001466 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001467}
1468
Vladimir Marko2730db02014-01-27 11:15:17 +00001469const VerifiedMethod* CompilerDriver::GetVerifiedMethod(const DexFile* dex_file,
1470 uint32_t method_idx) const {
1471 MethodReference ref(dex_file, method_idx);
1472 return verification_results_->GetVerifiedMethod(ref);
1473}
1474
1475bool CompilerDriver::IsSafeCast(const DexCompilationUnit* mUnit, uint32_t dex_pc) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001476 if (!compiler_options_->IsVerificationEnabled()) {
1477 // If we didn't verify, every cast has to be treated as non-safe.
1478 return false;
1479 }
Vladimir Marko2730db02014-01-27 11:15:17 +00001480 DCHECK(mUnit->GetVerifiedMethod() != nullptr);
1481 bool result = mUnit->GetVerifiedMethod()->IsSafeCast(dex_pc);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001482 if (result) {
1483 stats_->SafeCast();
1484 } else {
1485 stats_->NotASafeCast();
1486 }
1487 return result;
1488}
1489
Mathieu Chartier90443472015-07-16 20:32:27 -07001490class CompilationVisitor {
1491 public:
1492 virtual ~CompilationVisitor() {}
1493 virtual void Visit(size_t index) = 0;
1494};
1495
Brian Carlstrom7940e442013-07-12 13:46:57 -07001496class ParallelCompilationManager {
1497 public:
Brian Carlstrom7940e442013-07-12 13:46:57 -07001498 ParallelCompilationManager(ClassLinker* class_linker,
1499 jobject class_loader,
1500 CompilerDriver* compiler,
1501 const DexFile* dex_file,
Andreas Gampede7b4362014-07-28 18:38:57 -07001502 const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -08001503 ThreadPool* thread_pool)
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001504 : index_(0),
1505 class_linker_(class_linker),
Brian Carlstrom7940e442013-07-12 13:46:57 -07001506 class_loader_(class_loader),
1507 compiler_(compiler),
1508 dex_file_(dex_file),
Andreas Gampede7b4362014-07-28 18:38:57 -07001509 dex_files_(dex_files),
Ian Rogers3d504072014-03-01 09:16:49 -08001510 thread_pool_(thread_pool) {}
Brian Carlstrom7940e442013-07-12 13:46:57 -07001511
1512 ClassLinker* GetClassLinker() const {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001513 CHECK(class_linker_ != nullptr);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001514 return class_linker_;
1515 }
1516
1517 jobject GetClassLoader() const {
1518 return class_loader_;
1519 }
1520
1521 CompilerDriver* GetCompiler() const {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001522 CHECK(compiler_ != nullptr);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001523 return compiler_;
1524 }
1525
1526 const DexFile* GetDexFile() const {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001527 CHECK(dex_file_ != nullptr);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001528 return dex_file_;
1529 }
1530
Andreas Gampede7b4362014-07-28 18:38:57 -07001531 const std::vector<const DexFile*>& GetDexFiles() const {
1532 return dex_files_;
1533 }
1534
Mathieu Chartier90443472015-07-16 20:32:27 -07001535 void ForAll(size_t begin, size_t end, CompilationVisitor* visitor, size_t work_units)
1536 REQUIRES(!*Locks::mutator_lock_) {
Andreas Gampe3c060ad2018-01-22 13:07:49 -08001537 ForAllLambda(begin, end, [visitor](size_t index) { visitor->Visit(index); }, work_units);
1538 }
1539
1540 template <typename Fn>
1541 void ForAllLambda(size_t begin, size_t end, Fn fn, size_t work_units)
1542 REQUIRES(!*Locks::mutator_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001543 Thread* self = Thread::Current();
1544 self->AssertNoPendingException();
1545 CHECK_GT(work_units, 0U);
1546
Orion Hodson88591fe2018-03-06 13:35:43 +00001547 index_.store(begin, std::memory_order_relaxed);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001548 for (size_t i = 0; i < work_units; ++i) {
Andreas Gampe3c060ad2018-01-22 13:07:49 -08001549 thread_pool_->AddTask(self, new ForAllClosureLambda<Fn>(this, end, fn));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001550 }
1551 thread_pool_->StartWorkers(self);
1552
1553 // Ensure we're suspended while we're blocked waiting for the other threads to finish (worker
1554 // thread destructor's called below perform join).
1555 CHECK_NE(self->GetState(), kRunnable);
1556
1557 // Wait for all the worker threads to finish.
1558 thread_pool_->Wait(self, true, false);
Andreas Gampeace0dc12016-01-20 13:33:13 -08001559
1560 // And stop the workers accepting jobs.
1561 thread_pool_->StopWorkers(self);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001562 }
1563
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001564 size_t NextIndex() {
Orion Hodson88591fe2018-03-06 13:35:43 +00001565 return index_.fetch_add(1, std::memory_order_seq_cst);
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001566 }
1567
Brian Carlstrom7940e442013-07-12 13:46:57 -07001568 private:
Andreas Gampe3c060ad2018-01-22 13:07:49 -08001569 template <typename Fn>
1570 class ForAllClosureLambda : public Task {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001571 public:
Andreas Gampe3c060ad2018-01-22 13:07:49 -08001572 ForAllClosureLambda(ParallelCompilationManager* manager, size_t end, Fn fn)
Brian Carlstrom7940e442013-07-12 13:46:57 -07001573 : manager_(manager),
Brian Carlstrom7940e442013-07-12 13:46:57 -07001574 end_(end),
Andreas Gampe3c060ad2018-01-22 13:07:49 -08001575 fn_(fn) {}
Brian Carlstrom7940e442013-07-12 13:46:57 -07001576
Andreas Gampe3c060ad2018-01-22 13:07:49 -08001577 void Run(Thread* self) OVERRIDE {
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001578 while (true) {
1579 const size_t index = manager_->NextIndex();
1580 if (UNLIKELY(index >= end_)) {
1581 break;
1582 }
Andreas Gampe3c060ad2018-01-22 13:07:49 -08001583 fn_(index);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001584 self->AssertNoPendingException();
1585 }
1586 }
1587
Andreas Gampe3c060ad2018-01-22 13:07:49 -08001588 void Finalize() OVERRIDE {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001589 delete this;
1590 }
Brian Carlstrom0cd7ec22013-07-17 23:40:20 -07001591
Brian Carlstrom7940e442013-07-12 13:46:57 -07001592 private:
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001593 ParallelCompilationManager* const manager_;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001594 const size_t end_;
Andreas Gampe3c060ad2018-01-22 13:07:49 -08001595 Fn fn_;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001596 };
1597
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001598 AtomicInteger index_;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001599 ClassLinker* const class_linker_;
1600 const jobject class_loader_;
1601 CompilerDriver* const compiler_;
1602 const DexFile* const dex_file_;
Andreas Gampede7b4362014-07-28 18:38:57 -07001603 const std::vector<const DexFile*>& dex_files_;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001604 ThreadPool* const thread_pool_;
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001605
1606 DISALLOW_COPY_AND_ASSIGN(ParallelCompilationManager);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001607};
1608
Jeff Hao0e49b422013-11-08 12:16:56 -08001609// A fast version of SkipClass above if the class pointer is available
1610// that avoids the expensive FindInClassPath search.
Vladimir Marko28e012a2017-12-07 11:22:59 +00001611static bool SkipClass(jobject class_loader, const DexFile& dex_file, ObjPtr<mirror::Class> klass)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001612 REQUIRES_SHARED(Locks::mutator_lock_) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001613 DCHECK(klass != nullptr);
Jeff Hao0e49b422013-11-08 12:16:56 -08001614 const DexFile& original_dex_file = *klass->GetDexCache()->GetDexFile();
1615 if (&dex_file != &original_dex_file) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001616 if (class_loader == nullptr) {
David Sehr709b0702016-10-13 09:12:37 -07001617 LOG(WARNING) << "Skipping class " << klass->PrettyDescriptor() << " from "
Jeff Hao0e49b422013-11-08 12:16:56 -08001618 << dex_file.GetLocation() << " previously found in "
1619 << original_dex_file.GetLocation();
1620 }
1621 return true;
1622 }
1623 return false;
1624}
1625
Mathieu Chartier70b63482014-06-27 17:19:04 -07001626static void CheckAndClearResolveException(Thread* self)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001627 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartier70b63482014-06-27 17:19:04 -07001628 CHECK(self->IsExceptionPending());
Nicolas Geoffray14691c52015-03-05 10:40:17 +00001629 mirror::Throwable* exception = self->GetException();
Ian Rogers1ff3c982014-08-12 02:30:58 -07001630 std::string temp;
1631 const char* descriptor = exception->GetClass()->GetDescriptor(&temp);
1632 const char* expected_exceptions[] = {
1633 "Ljava/lang/IllegalAccessError;",
1634 "Ljava/lang/IncompatibleClassChangeError;",
1635 "Ljava/lang/InstantiationError;",
Brian Carlstrom898fcb52014-08-25 23:07:30 -07001636 "Ljava/lang/LinkageError;",
Ian Rogers1ff3c982014-08-12 02:30:58 -07001637 "Ljava/lang/NoClassDefFoundError;",
1638 "Ljava/lang/NoSuchFieldError;",
1639 "Ljava/lang/NoSuchMethodError;"
1640 };
1641 bool found = false;
1642 for (size_t i = 0; (found == false) && (i < arraysize(expected_exceptions)); ++i) {
1643 if (strcmp(descriptor, expected_exceptions[i]) == 0) {
1644 found = true;
1645 }
1646 }
1647 if (!found) {
Brian Carlstrom898fcb52014-08-25 23:07:30 -07001648 LOG(FATAL) << "Unexpected exception " << exception->Dump();
Mathieu Chartier70b63482014-06-27 17:19:04 -07001649 }
1650 self->ClearException();
1651}
1652
Mathieu Chartierb5d38612016-04-07 10:52:52 -07001653bool CompilerDriver::RequiresConstructorBarrier(const DexFile& dex_file,
1654 uint16_t class_def_idx) const {
Mathieu Chartier18e26872018-06-04 17:19:02 -07001655 ClassAccessor accessor(dex_file, class_def_idx);
Mathieu Chartierb5d38612016-04-07 10:52:52 -07001656 // We require a constructor barrier if there are final instance fields.
Mathieu Chartier18e26872018-06-04 17:19:02 -07001657 for (const ClassAccessor::Field& field : accessor.GetInstanceFields()) {
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001658 if (field.IsFinal()) {
Mathieu Chartier18e26872018-06-04 17:19:02 -07001659 return true;
Mathieu Chartierb5d38612016-04-07 10:52:52 -07001660 }
Mathieu Chartier18e26872018-06-04 17:19:02 -07001661 }
1662 return false;
Mathieu Chartierb5d38612016-04-07 10:52:52 -07001663}
1664
Mathieu Chartier90443472015-07-16 20:32:27 -07001665class ResolveClassFieldsAndMethodsVisitor : public CompilationVisitor {
1666 public:
1667 explicit ResolveClassFieldsAndMethodsVisitor(const ParallelCompilationManager* manager)
1668 : manager_(manager) {}
Brian Carlstrom7940e442013-07-12 13:46:57 -07001669
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001670 void Visit(size_t class_def_index) OVERRIDE REQUIRES(!Locks::mutator_lock_) {
Andreas Gampe9b827ab2017-12-07 19:32:48 -08001671 ScopedTrace trace(__FUNCTION__);
Mathieu Chartier90443472015-07-16 20:32:27 -07001672 Thread* const self = Thread::Current();
1673 jobject jclass_loader = manager_->GetClassLoader();
1674 const DexFile& dex_file = *manager_->GetDexFile();
1675 ClassLinker* class_linker = manager_->GetClassLinker();
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001676
Mathieu Chartier90443472015-07-16 20:32:27 -07001677 // Method and Field are the worst. We can't resolve without either
1678 // context from the code use (to disambiguate virtual vs direct
1679 // method and instance vs static field) or from class
1680 // definitions. While the compiler will resolve what it can as it
1681 // needs it, here we try to resolve fields and methods used in class
1682 // definitions, since many of them many never be referenced by
1683 // generated code.
1684 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
1685 ScopedObjectAccess soa(self);
1686 StackHandleScope<2> hs(soa.Self());
1687 Handle<mirror::ClassLoader> class_loader(
Mathieu Chartier0795f232016-09-27 18:43:30 -07001688 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader)));
Mathieu Chartier673ed3d2015-08-28 14:56:43 -07001689 Handle<mirror::DexCache> dex_cache(hs.NewHandle(class_linker->FindDexCache(
Vladimir Markocd556b02017-02-03 11:47:34 +00001690 soa.Self(), dex_file)));
Mathieu Chartier90443472015-07-16 20:32:27 -07001691 // Resolve the class.
Vladimir Marko28e012a2017-12-07 11:22:59 +00001692 ObjPtr<mirror::Class> klass =
Vladimir Marko666ee3d2017-12-11 18:37:36 +00001693 class_linker->ResolveType(class_def.class_idx_, dex_cache, class_loader);
Mathieu Chartier90443472015-07-16 20:32:27 -07001694 bool resolve_fields_and_methods;
1695 if (klass == nullptr) {
1696 // Class couldn't be resolved, for example, super-class is in a different dex file. Don't
1697 // attempt to resolve methods and fields when there is no declaring class.
1698 CheckAndClearResolveException(soa.Self());
1699 resolve_fields_and_methods = false;
1700 } else {
1701 // We successfully resolved a class, should we skip it?
1702 if (SkipClass(jclass_loader, dex_file, klass)) {
1703 return;
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001704 }
Mathieu Chartier90443472015-07-16 20:32:27 -07001705 // We want to resolve the methods and fields eagerly.
1706 resolve_fields_and_methods = true;
Ian Rogers68b56852014-08-29 20:19:11 -07001707 }
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001708 // If an instance field is final then we need to have a barrier on the return, static final
1709 // fields are assigned within the lock held for class initialization.
1710 bool requires_constructor_barrier = false;
1711
Mathieu Chartier18e26872018-06-04 17:19:02 -07001712 ClassAccessor accessor(dex_file, class_def_index);
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001713 // Optionally resolve fields and methods and figure out if we need a constructor barrier.
1714 auto method_visitor = [&](const ClassAccessor::Method& method)
1715 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartier90443472015-07-16 20:32:27 -07001716 if (resolve_fields_and_methods) {
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001717 ArtMethod* resolved = class_linker->ResolveMethod<ClassLinker::ResolveMode::kNoChecks>(
1718 method.GetIndex(),
1719 dex_cache,
1720 class_loader,
1721 /* referrer */ nullptr,
1722 method.GetInvokeType(class_def.access_flags_));
1723 if (resolved == nullptr) {
1724 CheckAndClearResolveException(soa.Self());
Mathieu Chartier90443472015-07-16 20:32:27 -07001725 }
Mathieu Chartier90443472015-07-16 20:32:27 -07001726 }
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001727 };
1728 accessor.VisitFieldsAndMethods(
1729 // static fields
1730 [&](ClassAccessor::Field& field) REQUIRES_SHARED(Locks::mutator_lock_) {
1731 if (resolve_fields_and_methods) {
1732 ArtField* resolved = class_linker->ResolveField(
1733 field.GetIndex(), dex_cache, class_loader, /* is_static */ true);
1734 if (resolved == nullptr) {
1735 CheckAndClearResolveException(soa.Self());
1736 }
1737 }
1738 },
1739 // instance fields
1740 [&](ClassAccessor::Field& field) REQUIRES_SHARED(Locks::mutator_lock_) {
1741 if (field.IsFinal()) {
1742 // We require a constructor barrier if there are final instance fields.
1743 requires_constructor_barrier = true;
1744 }
1745 if (resolve_fields_and_methods) {
1746 ArtField* resolved = class_linker->ResolveField(
1747 field.GetIndex(), dex_cache, class_loader, /* is_static */ false);
1748 if (resolved == nullptr) {
1749 CheckAndClearResolveException(soa.Self());
1750 }
1751 }
1752 },
1753 /*direct methods*/ method_visitor,
1754 /*virtual methods*/ method_visitor);
Mathieu Chartierc4ae9162016-04-07 13:19:19 -07001755 manager_->GetCompiler()->SetRequiresConstructorBarrier(self,
1756 &dex_file,
1757 class_def_index,
1758 requires_constructor_barrier);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001759 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001760
Mathieu Chartier90443472015-07-16 20:32:27 -07001761 private:
1762 const ParallelCompilationManager* const manager_;
1763};
1764
1765class ResolveTypeVisitor : public CompilationVisitor {
1766 public:
1767 explicit ResolveTypeVisitor(const ParallelCompilationManager* manager) : manager_(manager) {
1768 }
Andreas Gampea5b09a62016-11-17 15:21:22 -08001769 void Visit(size_t type_idx) OVERRIDE REQUIRES(!Locks::mutator_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001770 // Class derived values are more complicated, they require the linker and loader.
Mathieu Chartier90443472015-07-16 20:32:27 -07001771 ScopedObjectAccess soa(Thread::Current());
1772 ClassLinker* class_linker = manager_->GetClassLinker();
1773 const DexFile& dex_file = *manager_->GetDexFile();
1774 StackHandleScope<2> hs(soa.Self());
Mathieu Chartier90443472015-07-16 20:32:27 -07001775 Handle<mirror::ClassLoader> class_loader(
Mathieu Chartier0795f232016-09-27 18:43:30 -07001776 hs.NewHandle(soa.Decode<mirror::ClassLoader>(manager_->GetClassLoader())));
Mathieu Chartierd57d4542015-10-14 10:55:30 -07001777 Handle<mirror::DexCache> dex_cache(hs.NewHandle(class_linker->RegisterDexFile(
1778 dex_file,
Mathieu Chartierf284d442016-06-02 11:48:30 -07001779 class_loader.Get())));
Andreas Gampefa4333d2017-02-14 11:10:34 -08001780 ObjPtr<mirror::Class> klass = (dex_cache != nullptr)
Vladimir Marko666ee3d2017-12-11 18:37:36 +00001781 ? class_linker->ResolveType(dex::TypeIndex(type_idx), dex_cache, class_loader)
Vladimir Markocd556b02017-02-03 11:47:34 +00001782 : nullptr;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001783
Mathieu Chartier90443472015-07-16 20:32:27 -07001784 if (klass == nullptr) {
1785 soa.Self()->AssertPendingException();
1786 mirror::Throwable* exception = soa.Self()->GetException();
1787 VLOG(compiler) << "Exception during type resolution: " << exception->Dump();
1788 if (exception->GetClass()->DescriptorEquals("Ljava/lang/OutOfMemoryError;")) {
1789 // There's little point continuing compilation if the heap is exhausted.
1790 LOG(FATAL) << "Out of memory during type resolution for compilation";
1791 }
1792 soa.Self()->ClearException();
Ian Rogersa436fde2013-08-27 23:34:06 -07001793 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001794 }
Mathieu Chartier90443472015-07-16 20:32:27 -07001795
1796 private:
1797 const ParallelCompilationManager* const manager_;
1798};
Brian Carlstrom7940e442013-07-12 13:46:57 -07001799
Andreas Gampeace0dc12016-01-20 13:33:13 -08001800void CompilerDriver::ResolveDexFile(jobject class_loader,
1801 const DexFile& dex_file,
Andreas Gampede7b4362014-07-28 18:38:57 -07001802 const std::vector<const DexFile*>& dex_files,
Andreas Gampeace0dc12016-01-20 13:33:13 -08001803 ThreadPool* thread_pool,
1804 size_t thread_count,
1805 TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001806 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
1807
1808 // TODO: we could resolve strings here, although the string table is largely filled with class
1809 // and method names.
1810
Andreas Gampede7b4362014-07-28 18:38:57 -07001811 ParallelCompilationManager context(class_linker, class_loader, this, &dex_file, dex_files,
1812 thread_pool);
Vladimir Markoaad75c62016-10-03 08:46:48 +00001813 if (GetCompilerOptions().IsBootImage()) {
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001814 // For images we resolve all types, such as array, whereas for applications just those with
1815 // classdefs are resolved by ResolveClassFieldsAndMethods.
Mathieu Chartierf5997b42014-06-20 10:37:54 -07001816 TimingLogger::ScopedTiming t("Resolve Types", timings);
Mathieu Chartier90443472015-07-16 20:32:27 -07001817 ResolveTypeVisitor visitor(&context);
Andreas Gampeace0dc12016-01-20 13:33:13 -08001818 context.ForAll(0, dex_file.NumTypeIds(), &visitor, thread_count);
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001819 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001820
Mathieu Chartierf5997b42014-06-20 10:37:54 -07001821 TimingLogger::ScopedTiming t("Resolve MethodsAndFields", timings);
Mathieu Chartier90443472015-07-16 20:32:27 -07001822 ResolveClassFieldsAndMethodsVisitor visitor(&context);
Andreas Gampeace0dc12016-01-20 13:33:13 -08001823 context.ForAll(0, dex_file.NumClassDefs(), &visitor, thread_count);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001824}
1825
Andreas Gampeace0dc12016-01-20 13:33:13 -08001826void CompilerDriver::SetVerified(jobject class_loader,
1827 const std::vector<const DexFile*>& dex_files,
1828 TimingLogger* timings) {
1829 // This can be run in parallel.
Mathieu Chartier90443472015-07-16 20:32:27 -07001830 for (const DexFile* dex_file : dex_files) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001831 CHECK(dex_file != nullptr);
Andreas Gampeace0dc12016-01-20 13:33:13 -08001832 SetVerifiedDexFile(class_loader,
1833 *dex_file,
1834 dex_files,
1835 parallel_thread_pool_.get(),
1836 parallel_thread_count_,
1837 timings);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001838 }
1839}
1840
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001841static void LoadAndUpdateStatus(const ClassAccessor& accessor,
Vladimir Marko2c64a832018-01-04 11:31:56 +00001842 ClassStatus status,
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001843 Handle<mirror::ClassLoader> class_loader,
1844 Thread* self)
1845 REQUIRES_SHARED(Locks::mutator_lock_) {
1846 StackHandleScope<1> hs(self);
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001847 const char* descriptor = accessor.GetDescriptor();
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001848 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
1849 Handle<mirror::Class> cls(hs.NewHandle<mirror::Class>(
1850 class_linker->FindClass(self, descriptor, class_loader)));
Andreas Gampefa4333d2017-02-14 11:10:34 -08001851 if (cls != nullptr) {
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001852 // Check that the class is resolved with the current dex file. We might get
1853 // a boot image class, or a class in a different dex file for multidex, and
1854 // we should not update the status in that case.
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001855 if (&cls->GetDexFile() == &accessor.GetDexFile()) {
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001856 ObjectLock<mirror::Class> lock(self, cls);
1857 mirror::Class::SetStatus(cls, status, self);
1858 }
1859 } else {
1860 DCHECK(self->IsExceptionPending());
1861 self->ClearException();
1862 }
1863}
1864
Nicolas Geoffray74981052017-01-16 17:54:09 +00001865bool CompilerDriver::FastVerify(jobject jclass_loader,
1866 const std::vector<const DexFile*>& dex_files,
1867 TimingLogger* timings) {
Nicolas Geoffrayb0bbe8e2016-11-19 10:42:37 +00001868 verifier::VerifierDeps* verifier_deps =
1869 Runtime::Current()->GetCompilerCallbacks()->GetVerifierDeps();
Mathieu Chartier72041a02017-07-14 18:23:25 -07001870 // If there exist VerifierDeps that aren't the ones we just created to output, use them to verify.
1871 if (verifier_deps == nullptr || verifier_deps->OutputOnly()) {
Nicolas Geoffray74981052017-01-16 17:54:09 +00001872 return false;
1873 }
1874 TimingLogger::ScopedTiming t("Fast Verify", timings);
1875 ScopedObjectAccess soa(Thread::Current());
1876 StackHandleScope<2> hs(soa.Self());
1877 Handle<mirror::ClassLoader> class_loader(
1878 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader)));
Nicolas Geoffray74981052017-01-16 17:54:09 +00001879 if (!verifier_deps->ValidateDependencies(class_loader, soa.Self())) {
1880 return false;
1881 }
1882
Nicolas Geoffray49cda062017-04-21 13:08:25 +01001883 bool compiler_only_verifies = !GetCompilerOptions().IsAnyCompilationEnabled();
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001884
Nicolas Geoffray74981052017-01-16 17:54:09 +00001885 // We successfully validated the dependencies, now update class status
1886 // of verified classes. Note that the dependencies also record which classes
1887 // could not be fully verified; we could try again, but that would hurt verification
1888 // time. So instead we assume these classes still need to be verified at
1889 // runtime.
1890 for (const DexFile* dex_file : dex_files) {
Mathieu Chartierbf755fe2017-08-01 13:42:56 -07001891 // Fetch the list of unverified classes.
1892 const std::set<dex::TypeIndex>& unverified_classes =
Nicolas Geoffray74981052017-01-16 17:54:09 +00001893 verifier_deps->GetUnverifiedClasses(*dex_file);
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001894 for (ClassAccessor accessor : dex_file->GetClasses()) {
1895 if (unverified_classes.find(accessor.GetClassIdx()) == unverified_classes.end()) {
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001896 if (compiler_only_verifies) {
Nicolas Geoffray74981052017-01-16 17:54:09 +00001897 // Just update the compiled_classes_ map. The compiler doesn't need to resolve
1898 // the type.
Mathieu Chartier18e26872018-06-04 17:19:02 -07001899 ClassReference ref(dex_file, accessor.GetClassDefIndex());
Mathieu Chartier2eabc612018-05-25 14:31:16 -07001900 const ClassStatus existing = ClassStatus::kNotReady;
Mathieu Chartier1a088d42017-07-18 11:43:57 -07001901 ClassStateTable::InsertResult result =
Vladimir Marko2c64a832018-01-04 11:31:56 +00001902 compiled_classes_.Insert(ref, existing, ClassStatus::kVerified);
Mathieu Chartier2eabc612018-05-25 14:31:16 -07001903 CHECK_EQ(result, ClassStateTable::kInsertResultSuccess) << ref.dex_file->GetLocation();
Nicolas Geoffray74981052017-01-16 17:54:09 +00001904 } else {
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001905 // Update the class status, so later compilation stages know they don't need to verify
Nicolas Geoffray74981052017-01-16 17:54:09 +00001906 // the class.
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001907 LoadAndUpdateStatus(accessor, ClassStatus::kVerified, class_loader, soa.Self());
Nicolas Geoffray74981052017-01-16 17:54:09 +00001908 // Create `VerifiedMethod`s for each methods, the compiler expects one for
1909 // quickening or compiling.
1910 // Note that this means:
1911 // - We're only going to compile methods that did verify.
1912 // - Quickening will not do checkcast ellision.
1913 // TODO(ngeoffray): Reconsider this once we refactor compiler filters.
Mathieu Chartier0d896bd2018-05-25 00:20:27 -07001914 for (const ClassAccessor::Method& method : accessor.GetMethods()) {
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001915 verification_results_->CreateVerifiedMethodFor(method.GetReference());
Mathieu Chartier0d896bd2018-05-25 00:20:27 -07001916 }
Nicolas Geoffray6bb7f1b2016-11-03 10:52:49 +00001917 }
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001918 } else if (!compiler_only_verifies) {
1919 // Make sure later compilation stages know they should not try to verify
1920 // this class again.
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001921 LoadAndUpdateStatus(accessor,
Vladimir Marko2c64a832018-01-04 11:31:56 +00001922 ClassStatus::kRetryVerificationAtRuntime,
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001923 class_loader,
1924 soa.Self());
Nicolas Geoffray6bb7f1b2016-11-03 10:52:49 +00001925 }
Nicolas Geoffray6bb7f1b2016-11-03 10:52:49 +00001926 }
1927 }
Nicolas Geoffray74981052017-01-16 17:54:09 +00001928 return true;
1929}
1930
1931void CompilerDriver::Verify(jobject jclass_loader,
1932 const std::vector<const DexFile*>& dex_files,
1933 TimingLogger* timings) {
1934 if (FastVerify(jclass_loader, dex_files, timings)) {
1935 return;
1936 }
Nicolas Geoffray6bb7f1b2016-11-03 10:52:49 +00001937
Nicolas Geoffrayb0bbe8e2016-11-19 10:42:37 +00001938 // If there is no existing `verifier_deps` (because of non-existing vdex), or
1939 // the existing `verifier_deps` is not valid anymore, create a new one for
Nicolas Geoffray6bb7f1b2016-11-03 10:52:49 +00001940 // non boot image compilation. The verifier will need it to record the new dependencies.
1941 // Then dex2oat can update the vdex file with these new dependencies.
1942 if (!GetCompilerOptions().IsBootImage()) {
Mathieu Chartier72041a02017-07-14 18:23:25 -07001943 // Dex2oat creates the verifier deps.
Nicolas Geoffray340dafa2016-11-18 16:03:10 +00001944 // Create the main VerifierDeps, and set it to this thread.
Mathieu Chartier72041a02017-07-14 18:23:25 -07001945 verifier::VerifierDeps* verifier_deps =
1946 Runtime::Current()->GetCompilerCallbacks()->GetVerifierDeps();
1947 CHECK(verifier_deps != nullptr);
Nicolas Geoffrayb0bbe8e2016-11-19 10:42:37 +00001948 Thread::Current()->SetVerifierDeps(verifier_deps);
Nicolas Geoffray340dafa2016-11-18 16:03:10 +00001949 // Create per-thread VerifierDeps to avoid contention on the main one.
1950 // We will merge them after verification.
1951 for (ThreadPoolWorker* worker : parallel_thread_pool_->GetWorkers()) {
Vladimir Marko213ee2d2018-06-22 11:56:34 +01001952 worker->GetThread()->SetVerifierDeps(
1953 new verifier::VerifierDeps(GetCompilerOptions().GetDexFilesForOatFile()));
Nicolas Geoffray340dafa2016-11-18 16:03:10 +00001954 }
Nicolas Geoffray6bb7f1b2016-11-03 10:52:49 +00001955 }
Nicolas Geoffray74981052017-01-16 17:54:09 +00001956
Nicolas Geoffray46847392017-04-28 14:56:39 +01001957 // Verification updates VerifierDeps and needs to run single-threaded to be deterministic.
1958 bool force_determinism = GetCompilerOptions().IsForceDeterminism();
1959 ThreadPool* verify_thread_pool =
1960 force_determinism ? single_thread_pool_.get() : parallel_thread_pool_.get();
1961 size_t verify_thread_count = force_determinism ? 1U : parallel_thread_count_;
Mathieu Chartier90443472015-07-16 20:32:27 -07001962 for (const DexFile* dex_file : dex_files) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001963 CHECK(dex_file != nullptr);
Nicolas Geoffray6bb7f1b2016-11-03 10:52:49 +00001964 VerifyDexFile(jclass_loader,
Andreas Gampeace0dc12016-01-20 13:33:13 -08001965 *dex_file,
1966 dex_files,
Nicolas Geoffray46847392017-04-28 14:56:39 +01001967 verify_thread_pool,
1968 verify_thread_count,
Andreas Gampeace0dc12016-01-20 13:33:13 -08001969 timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001970 }
Nicolas Geoffray340dafa2016-11-18 16:03:10 +00001971
1972 if (!GetCompilerOptions().IsBootImage()) {
Nicolas Geoffray340dafa2016-11-18 16:03:10 +00001973 // Merge all VerifierDeps into the main one.
Nicolas Geoffray74981052017-01-16 17:54:09 +00001974 verifier::VerifierDeps* verifier_deps = Thread::Current()->GetVerifierDeps();
Nicolas Geoffray340dafa2016-11-18 16:03:10 +00001975 for (ThreadPoolWorker* worker : parallel_thread_pool_->GetWorkers()) {
1976 verifier::VerifierDeps* thread_deps = worker->GetThread()->GetVerifierDeps();
1977 worker->GetThread()->SetVerifierDeps(nullptr);
Vladimir Marko213ee2d2018-06-22 11:56:34 +01001978 verifier_deps->MergeWith(*thread_deps, GetCompilerOptions().GetDexFilesForOatFile());
Nicolas Geoffray340dafa2016-11-18 16:03:10 +00001979 delete thread_deps;
1980 }
1981 Thread::Current()->SetVerifierDeps(nullptr);
1982 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001983}
1984
Mathieu Chartier90443472015-07-16 20:32:27 -07001985class VerifyClassVisitor : public CompilationVisitor {
1986 public:
Andreas Gampe5fd66d02016-09-12 20:22:19 -07001987 VerifyClassVisitor(const ParallelCompilationManager* manager, verifier::HardFailLogMode log_level)
Andreas Gampe7fe30232016-03-25 16:58:00 -07001988 : manager_(manager), log_level_(log_level) {}
Brian Carlstrom7940e442013-07-12 13:46:57 -07001989
Mathieu Chartier90443472015-07-16 20:32:27 -07001990 virtual void Visit(size_t class_def_index) REQUIRES(!Locks::mutator_lock_) OVERRIDE {
Andreas Gampe9b827ab2017-12-07 19:32:48 -08001991 ScopedTrace trace(__FUNCTION__);
Mathieu Chartier90443472015-07-16 20:32:27 -07001992 ScopedObjectAccess soa(Thread::Current());
1993 const DexFile& dex_file = *manager_->GetDexFile();
1994 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
1995 const char* descriptor = dex_file.GetClassDescriptor(class_def);
1996 ClassLinker* class_linker = manager_->GetClassLinker();
1997 jobject jclass_loader = manager_->GetClassLoader();
1998 StackHandleScope<3> hs(soa.Self());
1999 Handle<mirror::ClassLoader> class_loader(
Mathieu Chartier0795f232016-09-27 18:43:30 -07002000 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader)));
Mathieu Chartier90443472015-07-16 20:32:27 -07002001 Handle<mirror::Class> klass(
2002 hs.NewHandle(class_linker->FindClass(soa.Self(), descriptor, class_loader)));
Andreas Gampe6d7abbd2017-04-24 13:19:09 -07002003 verifier::FailureKind failure_kind;
Andreas Gampefa4333d2017-02-14 11:10:34 -08002004 if (klass == nullptr) {
Ian Rogerse6bb3b22013-08-19 21:51:45 -07002005 CHECK(soa.Self()->IsExceptionPending());
2006 soa.Self()->ClearException();
Mathieu Chartier90443472015-07-16 20:32:27 -07002007
2008 /*
2009 * At compile time, we can still structurally verify the class even if FindClass fails.
2010 * This is to ensure the class is structurally sound for compilation. An unsound class
2011 * will be rejected by the verifier and later skipped during compilation in the compiler.
2012 */
Mathieu Chartier673ed3d2015-08-28 14:56:43 -07002013 Handle<mirror::DexCache> dex_cache(hs.NewHandle(class_linker->FindDexCache(
Vladimir Markocd556b02017-02-03 11:47:34 +00002014 soa.Self(), dex_file)));
Mathieu Chartier90443472015-07-16 20:32:27 -07002015 std::string error_msg;
Nicolas Geoffray08025182016-10-25 17:20:18 +01002016 failure_kind =
2017 verifier::MethodVerifier::VerifyClass(soa.Self(),
Andreas Gampeec6e6c12015-11-05 20:39:56 -08002018 &dex_file,
2019 dex_cache,
2020 class_loader,
David Brazdil15fc7292016-09-02 14:13:18 +01002021 class_def,
Andreas Gampe53e32d12015-12-09 21:03:23 -08002022 Runtime::Current()->GetCompilerCallbacks(),
Andreas Gampeec6e6c12015-11-05 20:39:56 -08002023 true /* allow soft failures */,
Andreas Gampe7fe30232016-03-25 16:58:00 -07002024 log_level_,
Nicolas Geoffray08025182016-10-25 17:20:18 +01002025 &error_msg);
Andreas Gampe6d7abbd2017-04-24 13:19:09 -07002026 if (failure_kind == verifier::FailureKind::kHardFailure) {
Mathieu Chartier90443472015-07-16 20:32:27 -07002027 LOG(ERROR) << "Verification failed on class " << PrettyDescriptor(descriptor)
2028 << " because: " << error_msg;
2029 manager_->GetCompiler()->SetHadHardVerifierFailure();
Andreas Gampef39208f2017-10-19 15:06:59 -07002030 } else if (failure_kind == verifier::FailureKind::kSoftFailure) {
2031 manager_->GetCompiler()->AddSoftVerifierFailure();
Nicolas Geoffray7cc3ae52017-03-07 14:33:37 +00002032 } else {
2033 // Force a soft failure for the VerifierDeps. This is a sanity measure, as
2034 // the vdex file already records that the class hasn't been resolved. It avoids
2035 // trying to do future verification optimizations when processing the vdex file.
Andreas Gampef39208f2017-10-19 15:06:59 -07002036 DCHECK(failure_kind == verifier::FailureKind::kNoFailure) << failure_kind;
Andreas Gampe6d7abbd2017-04-24 13:19:09 -07002037 failure_kind = verifier::FailureKind::kSoftFailure;
Mathieu Chartier90443472015-07-16 20:32:27 -07002038 }
Andreas Gampebb30d5d2018-04-23 09:59:25 -07002039 } else if (&klass->GetDexFile() != &dex_file) {
2040 // Skip a duplicate class (as the resolved class is from another, earlier dex file).
2041 return; // Do not update state.
Mathieu Chartier90443472015-07-16 20:32:27 -07002042 } else if (!SkipClass(jclass_loader, dex_file, klass.Get())) {
David Sehr709b0702016-10-13 09:12:37 -07002043 CHECK(klass->IsResolved()) << klass->PrettyClass();
Nicolas Geoffray08025182016-10-25 17:20:18 +01002044 failure_kind = class_linker->VerifyClass(soa.Self(), klass, log_level_);
Mathieu Chartier90443472015-07-16 20:32:27 -07002045
2046 if (klass->IsErroneous()) {
2047 // ClassLinker::VerifyClass throws, which isn't useful in the compiler.
2048 CHECK(soa.Self()->IsExceptionPending());
2049 soa.Self()->ClearException();
2050 manager_->GetCompiler()->SetHadHardVerifierFailure();
Andreas Gampef39208f2017-10-19 15:06:59 -07002051 } else if (failure_kind == verifier::FailureKind::kSoftFailure) {
2052 manager_->GetCompiler()->AddSoftVerifierFailure();
Mathieu Chartier90443472015-07-16 20:32:27 -07002053 }
2054
Nicolas Geoffray7cc3ae52017-03-07 14:33:37 +00002055 CHECK(klass->ShouldVerifyAtRuntime() || klass->IsVerified() || klass->IsErroneous())
David Sehr709b0702016-10-13 09:12:37 -07002056 << klass->PrettyDescriptor() << ": state=" << klass->GetStatus();
Mathieu Chartier90443472015-07-16 20:32:27 -07002057
Nicolas Geoffrayc7da1d62017-04-19 09:36:24 +01002058 // Class has a meaningful status for the compiler now, record it.
2059 ClassReference ref(manager_->GetDexFile(), class_def_index);
2060 manager_->GetCompiler()->RecordClassStatus(ref, klass->GetStatus());
2061
Andreas Gamped278cb42017-11-22 14:13:00 -08002062 // It is *very* problematic if there are resolution errors in the boot classpath.
2063 //
2064 // It is also bad if classes fail verification. For example, we rely on things working
2065 // OK without verification when the decryption dialog is brought up. It is thus highly
2066 // recommended to compile the boot classpath with
2067 // --abort-on-hard-verifier-error --abort-on-soft-verifier-error
2068 // which is the default build system configuration.
Narayan Kamathe3eae5e2016-10-27 11:47:30 +01002069 if (kIsDebugBuild) {
Orion Hodsonc5e0d3f2017-08-22 19:00:04 +01002070 if (manager_->GetCompiler()->GetCompilerOptions().IsBootImage()) {
Andreas Gamped278cb42017-11-22 14:13:00 -08002071 if (!klass->IsResolved() || klass->IsErroneous()) {
Andreas Gampe12fadcd2017-08-03 05:06:28 -07002072 LOG(FATAL) << "Boot classpath class " << klass->PrettyClass()
Andreas Gamped278cb42017-11-22 14:13:00 -08002073 << " failed to resolve/is erroneous: state= " << klass->GetStatus();
2074 UNREACHABLE();
Andreas Gampe12fadcd2017-08-03 05:06:28 -07002075 }
Narayan Kamathe3eae5e2016-10-27 11:47:30 +01002076 }
Nicolas Geoffray7cc3ae52017-03-07 14:33:37 +00002077 if (klass->IsVerified()) {
Andreas Gampe6d7abbd2017-04-24 13:19:09 -07002078 DCHECK_EQ(failure_kind, verifier::FailureKind::kNoFailure);
Nicolas Geoffray7cc3ae52017-03-07 14:33:37 +00002079 } else if (klass->ShouldVerifyAtRuntime()) {
Andreas Gampe6d7abbd2017-04-24 13:19:09 -07002080 DCHECK_EQ(failure_kind, verifier::FailureKind::kSoftFailure);
Nicolas Geoffray7cc3ae52017-03-07 14:33:37 +00002081 } else {
Andreas Gampe6d7abbd2017-04-24 13:19:09 -07002082 DCHECK_EQ(failure_kind, verifier::FailureKind::kHardFailure);
Nicolas Geoffray7cc3ae52017-03-07 14:33:37 +00002083 }
Narayan Kamathe3eae5e2016-10-27 11:47:30 +01002084 }
Nicolas Geoffray08025182016-10-25 17:20:18 +01002085 } else {
2086 // Make the skip a soft failure, essentially being considered as verify at runtime.
Andreas Gampe6d7abbd2017-04-24 13:19:09 -07002087 failure_kind = verifier::FailureKind::kSoftFailure;
Ian Rogerse6bb3b22013-08-19 21:51:45 -07002088 }
Nicolas Geoffray08025182016-10-25 17:20:18 +01002089 verifier::VerifierDeps::MaybeRecordVerificationStatus(
2090 dex_file, class_def.class_idx_, failure_kind);
Mathieu Chartier90443472015-07-16 20:32:27 -07002091 soa.Self()->AssertNoPendingException();
Brian Carlstrom7940e442013-07-12 13:46:57 -07002092 }
Mathieu Chartier90443472015-07-16 20:32:27 -07002093
2094 private:
2095 const ParallelCompilationManager* const manager_;
Andreas Gampe5fd66d02016-09-12 20:22:19 -07002096 const verifier::HardFailLogMode log_level_;
Mathieu Chartier90443472015-07-16 20:32:27 -07002097};
Brian Carlstrom7940e442013-07-12 13:46:57 -07002098
Andreas Gampeace0dc12016-01-20 13:33:13 -08002099void CompilerDriver::VerifyDexFile(jobject class_loader,
2100 const DexFile& dex_file,
Andreas Gampede7b4362014-07-28 18:38:57 -07002101 const std::vector<const DexFile*>& dex_files,
Andreas Gampeace0dc12016-01-20 13:33:13 -08002102 ThreadPool* thread_pool,
2103 size_t thread_count,
2104 TimingLogger* timings) {
Mathieu Chartierf5997b42014-06-20 10:37:54 -07002105 TimingLogger::ScopedTiming t("Verify Dex File", timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002106 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Andreas Gampede7b4362014-07-28 18:38:57 -07002107 ParallelCompilationManager context(class_linker, class_loader, this, &dex_file, dex_files,
2108 thread_pool);
Andreas Gampef39208f2017-10-19 15:06:59 -07002109 bool abort_on_verifier_failures = GetCompilerOptions().AbortOnHardVerifierFailure()
2110 || GetCompilerOptions().AbortOnSoftVerifierFailure();
2111 verifier::HardFailLogMode log_level = abort_on_verifier_failures
Andreas Gampe5fd66d02016-09-12 20:22:19 -07002112 ? verifier::HardFailLogMode::kLogInternalFatal
2113 : verifier::HardFailLogMode::kLogWarning;
Andreas Gampe7fe30232016-03-25 16:58:00 -07002114 VerifyClassVisitor visitor(&context, log_level);
Andreas Gampeace0dc12016-01-20 13:33:13 -08002115 context.ForAll(0, dex_file.NumClassDefs(), &visitor, thread_count);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002116}
2117
Mathieu Chartier90443472015-07-16 20:32:27 -07002118class SetVerifiedClassVisitor : public CompilationVisitor {
2119 public:
2120 explicit SetVerifiedClassVisitor(const ParallelCompilationManager* manager) : manager_(manager) {}
2121
2122 virtual void Visit(size_t class_def_index) REQUIRES(!Locks::mutator_lock_) OVERRIDE {
Andreas Gampe9b827ab2017-12-07 19:32:48 -08002123 ScopedTrace trace(__FUNCTION__);
Mathieu Chartier90443472015-07-16 20:32:27 -07002124 ScopedObjectAccess soa(Thread::Current());
2125 const DexFile& dex_file = *manager_->GetDexFile();
2126 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
2127 const char* descriptor = dex_file.GetClassDescriptor(class_def);
2128 ClassLinker* class_linker = manager_->GetClassLinker();
2129 jobject jclass_loader = manager_->GetClassLoader();
2130 StackHandleScope<3> hs(soa.Self());
2131 Handle<mirror::ClassLoader> class_loader(
Mathieu Chartier0795f232016-09-27 18:43:30 -07002132 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader)));
Mathieu Chartier90443472015-07-16 20:32:27 -07002133 Handle<mirror::Class> klass(
2134 hs.NewHandle(class_linker->FindClass(soa.Self(), descriptor, class_loader)));
2135 // Class might have failed resolution. Then don't set it to verified.
Andreas Gampefa4333d2017-02-14 11:10:34 -08002136 if (klass != nullptr) {
Mathieu Chartier90443472015-07-16 20:32:27 -07002137 // Only do this if the class is resolved. If even resolution fails, quickening will go very,
2138 // very wrong.
Vladimir Marko72ab6842017-01-20 19:32:50 +00002139 if (klass->IsResolved() && !klass->IsErroneousResolved()) {
Vladimir Marko2c64a832018-01-04 11:31:56 +00002140 if (klass->GetStatus() < ClassStatus::kVerified) {
Mathieu Chartier90443472015-07-16 20:32:27 -07002141 ObjectLock<mirror::Class> lock(soa.Self(), klass);
2142 // Set class status to verified.
Vladimir Marko2c64a832018-01-04 11:31:56 +00002143 mirror::Class::SetStatus(klass, ClassStatus::kVerified, soa.Self());
Mathieu Chartier90443472015-07-16 20:32:27 -07002144 // Mark methods as pre-verified. If we don't do this, the interpreter will run with
2145 // access checks.
Vladimir Markoa0431112018-06-25 09:32:54 +01002146 InstructionSet instruction_set =
2147 manager_->GetCompiler()->GetCompilerOptions().GetInstructionSet();
2148 klass->SetSkipAccessChecksFlagOnAllMethods(GetInstructionSetPointerSize(instruction_set));
Igor Murashkindf707e42016-02-02 16:56:50 -08002149 klass->SetVerificationAttempted();
Mathieu Chartier90443472015-07-16 20:32:27 -07002150 }
2151 // Record the final class status if necessary.
2152 ClassReference ref(manager_->GetDexFile(), class_def_index);
2153 manager_->GetCompiler()->RecordClassStatus(ref, klass->GetStatus());
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002154 }
Mathieu Chartier90443472015-07-16 20:32:27 -07002155 } else {
2156 Thread* self = soa.Self();
2157 DCHECK(self->IsExceptionPending());
2158 self->ClearException();
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002159 }
2160 }
Mathieu Chartier90443472015-07-16 20:32:27 -07002161
2162 private:
2163 const ParallelCompilationManager* const manager_;
2164};
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002165
Andreas Gampeace0dc12016-01-20 13:33:13 -08002166void CompilerDriver::SetVerifiedDexFile(jobject class_loader,
2167 const DexFile& dex_file,
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002168 const std::vector<const DexFile*>& dex_files,
Andreas Gampeace0dc12016-01-20 13:33:13 -08002169 ThreadPool* thread_pool,
2170 size_t thread_count,
2171 TimingLogger* timings) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002172 TimingLogger::ScopedTiming t("Verify Dex File", timings);
Mathieu Chartier1a088d42017-07-18 11:43:57 -07002173 if (!compiled_classes_.HaveDexFile(&dex_file)) {
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002174 compiled_classes_.AddDexFile(&dex_file);
Mathieu Chartier1a088d42017-07-18 11:43:57 -07002175 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002176 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
2177 ParallelCompilationManager context(class_linker, class_loader, this, &dex_file, dex_files,
2178 thread_pool);
Mathieu Chartier90443472015-07-16 20:32:27 -07002179 SetVerifiedClassVisitor visitor(&context);
Andreas Gampeace0dc12016-01-20 13:33:13 -08002180 context.ForAll(0, dex_file.NumClassDefs(), &visitor, thread_count);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002181}
2182
Mathieu Chartier90443472015-07-16 20:32:27 -07002183class InitializeClassVisitor : public CompilationVisitor {
2184 public:
2185 explicit InitializeClassVisitor(const ParallelCompilationManager* manager) : manager_(manager) {}
Ian Rogersfc0e94b2013-09-23 23:51:32 -07002186
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002187 void Visit(size_t class_def_index) OVERRIDE {
Andreas Gampe9b827ab2017-12-07 19:32:48 -08002188 ScopedTrace trace(__FUNCTION__);
Mathieu Chartier90443472015-07-16 20:32:27 -07002189 jobject jclass_loader = manager_->GetClassLoader();
2190 const DexFile& dex_file = *manager_->GetDexFile();
2191 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
2192 const DexFile::TypeId& class_type_id = dex_file.GetTypeId(class_def.class_idx_);
2193 const char* descriptor = dex_file.StringDataByIdx(class_type_id.descriptor_idx_);
Jeff Hao0e49b422013-11-08 12:16:56 -08002194
Mathieu Chartier90443472015-07-16 20:32:27 -07002195 ScopedObjectAccess soa(Thread::Current());
2196 StackHandleScope<3> hs(soa.Self());
2197 Handle<mirror::ClassLoader> class_loader(
Mathieu Chartier0795f232016-09-27 18:43:30 -07002198 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader)));
Mathieu Chartier90443472015-07-16 20:32:27 -07002199 Handle<mirror::Class> klass(
2200 hs.NewHandle(manager_->GetClassLinker()->FindClass(soa.Self(), descriptor, class_loader)));
2201
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002202 if (klass != nullptr && !SkipClass(manager_->GetClassLoader(), dex_file, klass.Get())) {
2203 TryInitializeClass(klass, class_loader);
2204 }
2205 // Clear any class not found or verification exceptions.
2206 soa.Self()->ClearException();
2207 }
2208
2209 // A helper function for initializing klass.
2210 void TryInitializeClass(Handle<mirror::Class> klass, Handle<mirror::ClassLoader>& class_loader)
2211 REQUIRES_SHARED(Locks::mutator_lock_) {
2212 const DexFile& dex_file = klass->GetDexFile();
2213 const DexFile::ClassDef* class_def = klass->GetClassDef();
2214 const DexFile::TypeId& class_type_id = dex_file.GetTypeId(class_def->class_idx_);
2215 const char* descriptor = dex_file.StringDataByIdx(class_type_id.descriptor_idx_);
2216 ScopedObjectAccessUnchecked soa(Thread::Current());
2217 StackHandleScope<3> hs(soa.Self());
Mathieu Chartierdabeb3a2017-06-12 17:10:07 -07002218 const bool is_boot_image = manager_->GetCompiler()->GetCompilerOptions().IsBootImage();
Mathieu Chartier17498e52017-06-13 11:35:04 -07002219 const bool is_app_image = manager_->GetCompiler()->GetCompilerOptions().IsAppImage();
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002220
Vladimir Marko2c64a832018-01-04 11:31:56 +00002221 ClassStatus old_status = klass->GetStatus();
Mathieu Chartier1a088d42017-07-18 11:43:57 -07002222 // Don't initialize classes in boot space when compiling app image
2223 if (is_app_image && klass->IsBootStrapClassLoaded()) {
2224 // Also return early and don't store the class status in the recorded class status.
2225 return;
2226 }
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002227 // Only try to initialize classes that were successfully verified.
2228 if (klass->IsVerified()) {
2229 // Attempt to initialize the class but bail if we either need to initialize the super-class
2230 // or static fields.
Nicolas Geoffrayabadf022017-08-03 08:25:41 +00002231 manager_->GetClassLinker()->EnsureInitialized(soa.Self(), klass, false, false);
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002232 old_status = klass->GetStatus();
2233 if (!klass->IsInitialized()) {
2234 // We don't want non-trivial class initialization occurring on multiple threads due to
2235 // deadlock problems. For example, a parent class is initialized (holding its lock) that
2236 // refers to a sub-class in its static/class initializer causing it to try to acquire the
2237 // sub-class' lock. While on a second thread the sub-class is initialized (holding its lock)
2238 // after first initializing its parents, whose locks are acquired. This leads to a
2239 // parent-to-child and a child-to-parent lock ordering and consequent potential deadlock.
2240 // We need to use an ObjectLock due to potential suspension in the interpreting code. Rather
2241 // than use a special Object for the purpose we use the Class of java.lang.Class.
2242 Handle<mirror::Class> h_klass(hs.NewHandle(klass->GetClass()));
2243 ObjectLock<mirror::Class> lock(soa.Self(), h_klass);
2244 // Attempt to initialize allowing initialization of parent classes but still not static
2245 // fields.
Chang Xinge602b1c2017-06-30 11:55:01 -07002246 // Initialize dependencies first only for app image, to make TryInitialize recursive.
2247 bool is_superclass_initialized = !is_app_image ? true :
2248 InitializeDependencies(klass, class_loader, soa.Self());
2249 if (!is_app_image || (is_app_image && is_superclass_initialized)) {
Nicolas Geoffrayabadf022017-08-03 08:25:41 +00002250 manager_->GetClassLinker()->EnsureInitialized(soa.Self(), klass, false, true);
Chang Xinge602b1c2017-06-30 11:55:01 -07002251 }
2252 // Otherwise it's in app image but superclasses can't be initialized, no need to proceed.
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002253 old_status = klass->GetStatus();
Chang Xing70f689d2017-06-08 17:16:12 -07002254
2255 bool too_many_encoded_fields = false;
2256 if (!is_boot_image && klass->NumStaticFields() > kMaxEncodedFields) {
2257 too_many_encoded_fields = true;
2258 }
Mathieu Chartierdabeb3a2017-06-12 17:10:07 -07002259 // If the class was not initialized, we can proceed to see if we can initialize static
Chang Xing70f689d2017-06-08 17:16:12 -07002260 // fields. Limit the max number of encoded fields.
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002261 if (!klass->IsInitialized() &&
Mathieu Chartier17498e52017-06-13 11:35:04 -07002262 (is_app_image || is_boot_image) &&
Chang Xinge602b1c2017-06-30 11:55:01 -07002263 is_superclass_initialized &&
Chang Xing70f689d2017-06-08 17:16:12 -07002264 !too_many_encoded_fields &&
Vladimir Markodc4bcce2018-06-21 16:15:42 +01002265 manager_->GetCompiler()->GetCompilerOptions().IsImageClass(descriptor)) {
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002266 bool can_init_static_fields = false;
Mathieu Chartierdabeb3a2017-06-12 17:10:07 -07002267 if (is_boot_image) {
Mathieu Chartier90443472015-07-16 20:32:27 -07002268 // We need to initialize static fields, we only do this for image classes that aren't
Mathieu Chartierdabeb3a2017-06-12 17:10:07 -07002269 // marked with the $NoPreloadHolder (which implies this should not be initialized
2270 // early).
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002271 can_init_static_fields = !StringPiece(descriptor).ends_with("$NoPreloadHolder;");
2272 } else {
Mathieu Chartier17498e52017-06-13 11:35:04 -07002273 CHECK(is_app_image);
Mathieu Chartierdabeb3a2017-06-12 17:10:07 -07002274 // The boot image case doesn't need to recursively initialize the dependencies with
2275 // special logic since the class linker already does this.
Mathieu Chartierdabeb3a2017-06-12 17:10:07 -07002276 can_init_static_fields =
Mathieu Chartier0933cc52018-03-23 14:25:08 -07002277 ClassLinker::kAppImageMayContainStrings &&
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002278 !soa.Self()->IsExceptionPending() &&
Nicolas Geoffrayabadf022017-08-03 08:25:41 +00002279 is_superclass_initialized &&
2280 NoClinitInDependency(klass, soa.Self(), &class_loader);
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002281 // TODO The checking for clinit can be removed since it's already
2282 // checked when init superclass. Currently keep it because it contains
2283 // processing of intern strings. Will be removed later when intern strings
2284 // and clinit are both initialized.
2285 }
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01002286
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002287 if (can_init_static_fields) {
2288 VLOG(compiler) << "Initializing: " << descriptor;
2289 // TODO multithreading support. We should ensure the current compilation thread has
2290 // exclusive access to the runtime and the transaction. To achieve this, we could use
2291 // a ReaderWriterMutex but we're holding the mutator lock so we fail mutex sanity
2292 // checks in Thread::AssertThreadSuspensionIsAllowable.
2293 Runtime* const runtime = Runtime::Current();
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002294 // Run the class initializer in transaction mode.
Chang Xing5a906fc2017-07-26 15:01:16 -07002295 runtime->EnterTransactionMode(is_app_image, klass.Get());
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002296 bool success = manager_->GetClassLinker()->EnsureInitialized(soa.Self(), klass, true,
2297 true);
2298 // TODO we detach transaction from runtime to indicate we quit the transactional
2299 // mode which prevents the GC from visiting objects modified during the transaction.
2300 // Ensure GC is not run so don't access freed objects when aborting transaction.
Andreas Gampe9e7078b2017-03-02 13:50:36 -08002301
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002302 {
2303 ScopedAssertNoThreadSuspension ants("Transaction end");
Chang Xing16d1dd82017-07-20 17:56:26 -07002304
2305 if (success) {
2306 runtime->ExitTransactionMode();
2307 DCHECK(!runtime->IsActiveTransaction());
2308 }
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01002309
Mathieu Chartier90443472015-07-16 20:32:27 -07002310 if (!success) {
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002311 CHECK(soa.Self()->IsExceptionPending());
2312 mirror::Throwable* exception = soa.Self()->GetException();
2313 VLOG(compiler) << "Initialization of " << descriptor << " aborted because of "
2314 << exception->Dump();
2315 std::ostream* file_log = manager_->GetCompiler()->
2316 GetCompilerOptions().GetInitFailureOutput();
2317 if (file_log != nullptr) {
2318 *file_log << descriptor << "\n";
2319 *file_log << exception->Dump() << "\n";
2320 }
2321 soa.Self()->ClearException();
Chang Xing605fe242017-07-20 15:57:21 -07002322 runtime->RollbackAllTransactions();
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002323 CHECK_EQ(old_status, klass->GetStatus()) << "Previous class status not restored";
Mathieu Chartierdabeb3a2017-06-12 17:10:07 -07002324 } else if (is_boot_image) {
2325 // For boot image, we want to put the updated status in the oat class since we can't
2326 // reject the image anyways.
2327 old_status = klass->GetStatus();
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002328 }
2329 }
2330
Nicolas Geoffrayabadf022017-08-03 08:25:41 +00002331 if (!success) {
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002332 // On failure, still intern strings of static fields and seen in <clinit>, as these
2333 // will be created in the zygote. This is separated from the transaction code just
2334 // above as we will allocate strings, so must be allowed to suspend.
2335 if (&klass->GetDexFile() == manager_->GetDexFile()) {
Andreas Gampe9e7078b2017-03-02 13:50:36 -08002336 InternStrings(klass, class_loader);
Mathieu Chartierdabeb3a2017-06-12 17:10:07 -07002337 } else {
2338 DCHECK(!is_boot_image) << "Boot image must have equal dex files";
Andreas Gampedbfe2542014-11-25 22:21:42 -08002339 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002340 }
2341 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002342 }
Jeff Hao0cb17282017-07-12 14:51:49 -07002343 // If the class still isn't initialized, at least try some checks that initialization
2344 // would do so they can be skipped at runtime.
2345 if (!klass->IsInitialized() &&
2346 manager_->GetClassLinker()->ValidateSuperClassDescriptors(klass)) {
Vladimir Marko2c64a832018-01-04 11:31:56 +00002347 old_status = ClassStatus::kSuperclassValidated;
Jeff Hao0cb17282017-07-12 14:51:49 -07002348 } else {
2349 soa.Self()->ClearException();
2350 }
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002351 soa.Self()->AssertNoPendingException();
Brian Carlstrom7940e442013-07-12 13:46:57 -07002352 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002353 }
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002354 // Record the final class status if necessary.
2355 ClassReference ref(&dex_file, klass->GetDexClassDefIndex());
2356 // Back up the status before doing initialization for static encoded fields,
2357 // because the static encoded branch wants to keep the status to uninitialized.
2358 manager_->GetCompiler()->RecordClassStatus(ref, old_status);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002359 }
Mathieu Chartier90443472015-07-16 20:32:27 -07002360
2361 private:
Andreas Gampe9e7078b2017-03-02 13:50:36 -08002362 void InternStrings(Handle<mirror::Class> klass, Handle<mirror::ClassLoader> class_loader)
2363 REQUIRES_SHARED(Locks::mutator_lock_) {
2364 DCHECK(manager_->GetCompiler()->GetCompilerOptions().IsBootImage());
2365 DCHECK(klass->IsVerified());
2366 DCHECK(!klass->IsInitialized());
2367
2368 StackHandleScope<1> hs(Thread::Current());
Vladimir Markoe11dd502017-12-08 14:09:45 +00002369 Handle<mirror::DexCache> dex_cache = hs.NewHandle(klass->GetDexCache());
Andreas Gampe9e7078b2017-03-02 13:50:36 -08002370 const DexFile::ClassDef* class_def = klass->GetClassDef();
2371 ClassLinker* class_linker = manager_->GetClassLinker();
2372
Andreas Gampe7bf90482017-03-02 16:41:35 -08002373 // Check encoded final field values for strings and intern.
Vladimir Markoe11dd502017-12-08 14:09:45 +00002374 annotations::RuntimeEncodedStaticFieldValueIterator value_it(dex_cache,
2375 class_loader,
Andreas Gampe9e7078b2017-03-02 13:50:36 -08002376 manager_->GetClassLinker(),
2377 *class_def);
2378 for ( ; value_it.HasNext(); value_it.Next()) {
2379 if (value_it.GetValueType() == annotations::RuntimeEncodedStaticFieldValueIterator::kString) {
2380 // Resolve the string. This will intern the string.
2381 art::ObjPtr<mirror::String> resolved = class_linker->ResolveString(
Vladimir Markoa64b52d2017-12-08 16:27:49 +00002382 dex::StringIndex(value_it.GetJavaValue().i), dex_cache);
Andreas Gampe9e7078b2017-03-02 13:50:36 -08002383 CHECK(resolved != nullptr);
2384 }
2385 }
Andreas Gampe7bf90482017-03-02 16:41:35 -08002386
2387 // Intern strings seen in <clinit>.
2388 ArtMethod* clinit = klass->FindClassInitializer(class_linker->GetImagePointerSize());
2389 if (clinit != nullptr) {
Mathieu Chartier73f21d42018-01-02 14:26:50 -08002390 for (const DexInstructionPcPair& inst : clinit->DexInstructions()) {
Mathieu Chartier2b2bef22017-10-26 17:10:19 -07002391 if (inst->Opcode() == Instruction::CONST_STRING) {
Andreas Gampe7bf90482017-03-02 16:41:35 -08002392 ObjPtr<mirror::String> s = class_linker->ResolveString(
Vladimir Markoa64b52d2017-12-08 16:27:49 +00002393 dex::StringIndex(inst->VRegB_21c()), dex_cache);
Andreas Gampe7bf90482017-03-02 16:41:35 -08002394 CHECK(s != nullptr);
Mathieu Chartier2b2bef22017-10-26 17:10:19 -07002395 } else if (inst->Opcode() == Instruction::CONST_STRING_JUMBO) {
Andreas Gampe7bf90482017-03-02 16:41:35 -08002396 ObjPtr<mirror::String> s = class_linker->ResolveString(
Vladimir Markoa64b52d2017-12-08 16:27:49 +00002397 dex::StringIndex(inst->VRegB_31c()), dex_cache);
Andreas Gampe7bf90482017-03-02 16:41:35 -08002398 CHECK(s != nullptr);
2399 }
Andreas Gampe7bf90482017-03-02 16:41:35 -08002400 }
2401 }
Andreas Gampe9e7078b2017-03-02 13:50:36 -08002402 }
2403
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002404 bool ResolveTypesOfMethods(Thread* self, ArtMethod* m)
2405 REQUIRES_SHARED(Locks::mutator_lock_) {
Vladimir Markob45528c2017-07-27 14:14:28 +01002406 // Return value of ResolveReturnType() is discarded because resolve will be done internally.
2407 ObjPtr<mirror::Class> rtn_type = m->ResolveReturnType();
Mathieu Chartier7a8bcfd2017-06-13 13:40:43 -07002408 if (rtn_type == nullptr) {
2409 self->ClearException();
2410 return false;
2411 }
2412 const DexFile::TypeList* types = m->GetParameterTypeList();
2413 if (types != nullptr) {
2414 for (uint32_t i = 0; i < types->Size(); ++i) {
2415 dex::TypeIndex param_type_idx = types->GetTypeItem(i).type_idx_;
Vladimir Markob45528c2017-07-27 14:14:28 +01002416 ObjPtr<mirror::Class> param_type = m->ResolveClassFromTypeIndex(param_type_idx);
Mathieu Chartier7a8bcfd2017-06-13 13:40:43 -07002417 if (param_type == nullptr) {
2418 self->ClearException();
2419 return false;
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002420 }
2421 }
Mathieu Chartier7a8bcfd2017-06-13 13:40:43 -07002422 }
2423 return true;
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002424 }
2425
2426 // Pre resolve types mentioned in all method signatures before start a transaction
2427 // since ResolveType doesn't work in transaction mode.
2428 bool PreResolveTypes(Thread* self, const Handle<mirror::Class>& klass)
2429 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartier7a8bcfd2017-06-13 13:40:43 -07002430 PointerSize pointer_size = manager_->GetClassLinker()->GetImagePointerSize();
2431 for (ArtMethod& m : klass->GetMethods(pointer_size)) {
2432 if (!ResolveTypesOfMethods(self, &m)) {
2433 return false;
2434 }
2435 }
2436 if (klass->IsInterface()) {
2437 return true;
2438 } else if (klass->HasSuperClass()) {
2439 StackHandleScope<1> hs(self);
2440 MutableHandle<mirror::Class> super_klass(hs.NewHandle<mirror::Class>(klass->GetSuperClass()));
2441 for (int i = super_klass->GetVTableLength() - 1; i >= 0; --i) {
2442 ArtMethod* m = klass->GetVTableEntry(i, pointer_size);
2443 ArtMethod* super_m = super_klass->GetVTableEntry(i, pointer_size);
2444 if (!ResolveTypesOfMethods(self, m) || !ResolveTypesOfMethods(self, super_m)) {
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002445 return false;
2446 }
2447 }
Mathieu Chartier7a8bcfd2017-06-13 13:40:43 -07002448 for (int32_t i = 0; i < klass->GetIfTableCount(); ++i) {
2449 super_klass.Assign(klass->GetIfTable()->GetInterface(i));
2450 if (klass->GetClassLoader() != super_klass->GetClassLoader()) {
2451 uint32_t num_methods = super_klass->NumVirtualMethods();
2452 for (uint32_t j = 0; j < num_methods; ++j) {
2453 ArtMethod* m = klass->GetIfTable()->GetMethodArray(i)->GetElementPtrSize<ArtMethod*>(
2454 j, pointer_size);
2455 ArtMethod* super_m = super_klass->GetVirtualMethod(j, pointer_size);
2456 if (!ResolveTypesOfMethods(self, m) || !ResolveTypesOfMethods(self, super_m)) {
2457 return false;
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002458 }
2459 }
2460 }
2461 }
Mathieu Chartier7a8bcfd2017-06-13 13:40:43 -07002462 }
2463 return true;
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002464 }
2465
2466 // Initialize the klass's dependencies recursively before initializing itself.
2467 // Checking for interfaces is also necessary since interfaces can contain
2468 // both default methods and static encoded fields.
2469 bool InitializeDependencies(const Handle<mirror::Class>& klass,
2470 Handle<mirror::ClassLoader> class_loader,
2471 Thread* self)
2472 REQUIRES_SHARED(Locks::mutator_lock_) {
2473 if (klass->HasSuperClass()) {
2474 ObjPtr<mirror::Class> super_class = klass->GetSuperClass();
2475 StackHandleScope<1> hs(self);
2476 Handle<mirror::Class> handle_scope_super(hs.NewHandle(super_class));
2477 if (!handle_scope_super->IsInitialized()) {
2478 this->TryInitializeClass(handle_scope_super, class_loader);
2479 if (!handle_scope_super->IsInitialized()) {
2480 return false;
2481 }
2482 }
2483 }
2484
2485 uint32_t num_if = klass->NumDirectInterfaces();
2486 for (size_t i = 0; i < num_if; i++) {
2487 ObjPtr<mirror::Class>
2488 interface = mirror::Class::GetDirectInterface(self, klass.Get(), i);
2489 StackHandleScope<1> hs(self);
2490 Handle<mirror::Class> handle_interface(hs.NewHandle(interface));
2491
2492 TryInitializeClass(handle_interface, class_loader);
2493
2494 if (!handle_interface->IsInitialized()) {
2495 return false;
2496 }
2497 }
2498
2499 return PreResolveTypes(self, klass);
2500 }
2501
2502 // In this phase the classes containing class initializers are ignored. Make sure no
2503 // clinit appears in kalss's super class chain and interfaces.
2504 bool NoClinitInDependency(const Handle<mirror::Class>& klass,
2505 Thread* self,
2506 Handle<mirror::ClassLoader>* class_loader)
2507 REQUIRES_SHARED(Locks::mutator_lock_) {
2508 ArtMethod* clinit =
2509 klass->FindClassInitializer(manager_->GetClassLinker()->GetImagePointerSize());
2510 if (clinit != nullptr) {
2511 VLOG(compiler) << klass->PrettyClass() << ' ' << clinit->PrettyMethod(true);
2512 return false;
2513 }
2514 if (klass->HasSuperClass()) {
2515 ObjPtr<mirror::Class> super_class = klass->GetSuperClass();
2516 StackHandleScope<1> hs(self);
2517 Handle<mirror::Class> handle_scope_super(hs.NewHandle(super_class));
2518 if (!NoClinitInDependency(handle_scope_super, self, class_loader)) {
2519 return false;
2520 }
2521 }
2522
2523 uint32_t num_if = klass->NumDirectInterfaces();
2524 for (size_t i = 0; i < num_if; i++) {
2525 ObjPtr<mirror::Class>
2526 interface = mirror::Class::GetDirectInterface(self, klass.Get(), i);
2527 StackHandleScope<1> hs(self);
2528 Handle<mirror::Class> handle_interface(hs.NewHandle(interface));
2529 if (!NoClinitInDependency(handle_interface, self, class_loader)) {
2530 return false;
2531 }
2532 }
2533
Chang Xingba17dbd2017-06-28 21:27:56 +00002534 return true;
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002535 }
2536
Mathieu Chartier90443472015-07-16 20:32:27 -07002537 const ParallelCompilationManager* const manager_;
2538};
Brian Carlstrom7940e442013-07-12 13:46:57 -07002539
Andreas Gampeace0dc12016-01-20 13:33:13 -08002540void CompilerDriver::InitializeClasses(jobject jni_class_loader,
2541 const DexFile& dex_file,
Andreas Gampede7b4362014-07-28 18:38:57 -07002542 const std::vector<const DexFile*>& dex_files,
Andreas Gampeace0dc12016-01-20 13:33:13 -08002543 TimingLogger* timings) {
Mathieu Chartierf5997b42014-06-20 10:37:54 -07002544 TimingLogger::ScopedTiming t("InitializeNoClinit", timings);
Andreas Gampeace0dc12016-01-20 13:33:13 -08002545
2546 // Initialization allocates objects and needs to run single-threaded to be deterministic.
2547 bool force_determinism = GetCompilerOptions().IsForceDeterminism();
2548 ThreadPool* init_thread_pool = force_determinism
2549 ? single_thread_pool_.get()
2550 : parallel_thread_pool_.get();
2551 size_t init_thread_count = force_determinism ? 1U : parallel_thread_count_;
2552
Brian Carlstrom7940e442013-07-12 13:46:57 -07002553 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Andreas Gampede7b4362014-07-28 18:38:57 -07002554 ParallelCompilationManager context(class_linker, jni_class_loader, this, &dex_file, dex_files,
Andreas Gampeace0dc12016-01-20 13:33:13 -08002555 init_thread_pool);
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002556
2557 if (GetCompilerOptions().IsBootImage() || GetCompilerOptions().IsAppImage()) {
2558 // Set the concurrency thread to 1 to support initialization for App Images since transaction
2559 // doesn't support multithreading now.
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01002560 // TODO: remove this when transactional mode supports multithreading.
Andreas Gampeace0dc12016-01-20 13:33:13 -08002561 init_thread_count = 1U;
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01002562 }
Mathieu Chartier90443472015-07-16 20:32:27 -07002563 InitializeClassVisitor visitor(&context);
Andreas Gampeace0dc12016-01-20 13:33:13 -08002564 context.ForAll(0, dex_file.NumClassDefs(), &visitor, init_thread_count);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002565}
2566
Mathieu Chartier91288d82016-04-28 09:44:54 -07002567class InitializeArrayClassesAndCreateConflictTablesVisitor : public ClassVisitor {
Mathieu Chartier085a0722016-04-01 17:33:31 -07002568 public:
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002569 explicit InitializeArrayClassesAndCreateConflictTablesVisitor(VariableSizedHandleScope& hs)
2570 : hs_(hs) {}
2571
2572 virtual bool operator()(ObjPtr<mirror::Class> klass) OVERRIDE
2573 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartier91288d82016-04-28 09:44:54 -07002574 if (Runtime::Current()->GetHeap()->ObjectIsInBootImageSpace(klass)) {
2575 return true;
2576 }
Mathieu Chartier085a0722016-04-01 17:33:31 -07002577 if (klass->IsArrayClass()) {
2578 StackHandleScope<1> hs(Thread::Current());
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002579 auto h_klass = hs.NewHandleWrapper(&klass);
2580 Runtime::Current()->GetClassLinker()->EnsureInitialized(hs.Self(), h_klass, true, true);
Mathieu Chartier085a0722016-04-01 17:33:31 -07002581 }
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002582 // Collect handles since there may be thread suspension in future EnsureInitialized.
2583 to_visit_.push_back(hs_.NewHandle(klass));
Nicolas Geoffray88f288e2016-06-29 08:17:52 +00002584 return true;
Nelli Kimbadee982016-05-13 13:08:53 +03002585 }
Artem Udovichenkoa62cb9b2016-06-30 09:18:25 +00002586
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002587 void FillAllIMTAndConflictTables() REQUIRES_SHARED(Locks::mutator_lock_) {
2588 for (Handle<mirror::Class> c : to_visit_) {
2589 // Create the conflict tables.
2590 FillIMTAndConflictTables(c.Get());
2591 }
2592 }
2593
Artem Udovichenkoa62cb9b2016-06-30 09:18:25 +00002594 private:
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002595 void FillIMTAndConflictTables(ObjPtr<mirror::Class> klass)
2596 REQUIRES_SHARED(Locks::mutator_lock_) {
Artem Udovichenkoa62cb9b2016-06-30 09:18:25 +00002597 if (!klass->ShouldHaveImt()) {
2598 return;
2599 }
2600 if (visited_classes_.find(klass) != visited_classes_.end()) {
2601 return;
2602 }
2603 if (klass->HasSuperClass()) {
2604 FillIMTAndConflictTables(klass->GetSuperClass());
2605 }
2606 if (!klass->IsTemp()) {
2607 Runtime::Current()->GetClassLinker()->FillIMTAndConflictTables(klass);
2608 }
2609 visited_classes_.insert(klass);
2610 }
2611
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002612 VariableSizedHandleScope& hs_;
2613 std::vector<Handle<mirror::Class>> to_visit_;
2614 std::unordered_set<ObjPtr<mirror::Class>, HashObjPtr> visited_classes_;
Mathieu Chartier085a0722016-04-01 17:33:31 -07002615};
2616
Brian Carlstrom7940e442013-07-12 13:46:57 -07002617void CompilerDriver::InitializeClasses(jobject class_loader,
2618 const std::vector<const DexFile*>& dex_files,
Andreas Gampeace0dc12016-01-20 13:33:13 -08002619 TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07002620 for (size_t i = 0; i != dex_files.size(); ++i) {
2621 const DexFile* dex_file = dex_files[i];
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002622 CHECK(dex_file != nullptr);
Andreas Gampeace0dc12016-01-20 13:33:13 -08002623 InitializeClasses(class_loader, *dex_file, dex_files, timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002624 }
Vladimir Markoaad75c62016-10-03 08:46:48 +00002625 if (GetCompilerOptions().IsBootImage() || GetCompilerOptions().IsAppImage()) {
Mathieu Chartier085a0722016-04-01 17:33:31 -07002626 // Make sure that we call EnsureIntiailized on all the array classes to call
2627 // SetVerificationAttempted so that the access flags are set. If we do not do this they get
2628 // changed at runtime resulting in more dirty image pages.
Mathieu Chartier91288d82016-04-28 09:44:54 -07002629 // Also create conflict tables.
2630 // Only useful if we are compiling an image (image_classes_ is not null).
Mathieu Chartier085a0722016-04-01 17:33:31 -07002631 ScopedObjectAccess soa(Thread::Current());
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002632 VariableSizedHandleScope hs(soa.Self());
2633 InitializeArrayClassesAndCreateConflictTablesVisitor visitor(hs);
Mathieu Chartier91288d82016-04-28 09:44:54 -07002634 Runtime::Current()->GetClassLinker()->VisitClassesWithoutClassesLock(&visitor);
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002635 visitor.FillAllIMTAndConflictTables();
Mathieu Chartier085a0722016-04-01 17:33:31 -07002636 }
Vladimir Markoaad75c62016-10-03 08:46:48 +00002637 if (GetCompilerOptions().IsBootImage()) {
Mathieu Chartier093ef212014-08-11 13:52:12 -07002638 // Prune garbage objects created during aborted transactions.
Roland Levillainaf290312018-02-27 20:02:17 +00002639 Runtime::Current()->GetHeap()->CollectGarbage(/* clear_soft_references */ true);
Mathieu Chartier093ef212014-08-11 13:52:12 -07002640 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002641}
2642
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002643template <typename CompileFn>
2644static void CompileDexFile(CompilerDriver* driver,
2645 jobject class_loader,
2646 const DexFile& dex_file,
2647 const std::vector<const DexFile*>& dex_files,
2648 ThreadPool* thread_pool,
2649 size_t thread_count,
2650 TimingLogger* timings,
2651 const char* timing_name,
2652 CompileFn compile_fn) {
2653 TimingLogger::ScopedTiming t(timing_name, timings);
2654 ParallelCompilationManager context(Runtime::Current()->GetClassLinker(),
2655 class_loader,
2656 driver,
2657 &dex_file,
2658 dex_files,
2659 thread_pool);
Vladimir Marko492a7fa2016-06-01 18:38:43 +01002660
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002661 auto compile = [&context, &compile_fn](size_t class_def_index) {
Andreas Gampe9b827ab2017-12-07 19:32:48 -08002662 ScopedTrace trace(__FUNCTION__);
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002663 const DexFile& dex_file = *context.GetDexFile();
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002664 ClassLinker* class_linker = context.GetClassLinker();
2665 jobject jclass_loader = context.GetClassLoader();
Mathieu Chartier90443472015-07-16 20:32:27 -07002666 ClassReference ref(&dex_file, class_def_index);
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07002667 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
Mathieu Chartier18e26872018-06-04 17:19:02 -07002668 ClassAccessor accessor(dex_file, class_def_index);
Mathieu Chartier90443472015-07-16 20:32:27 -07002669 // Skip compiling classes with generic verifier failures since they will still fail at runtime
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002670 if (context.GetCompiler()->GetVerificationResults()->IsClassRejected(ref)) {
Ian Rogers1ff3c982014-08-12 02:30:58 -07002671 return;
2672 }
Mathieu Chartier736b5602015-09-02 14:54:11 -07002673 // Use a scoped object access to perform to the quick SkipClass check.
Mathieu Chartier736b5602015-09-02 14:54:11 -07002674 ScopedObjectAccess soa(Thread::Current());
2675 StackHandleScope<3> hs(soa.Self());
2676 Handle<mirror::ClassLoader> class_loader(
Mathieu Chartier0795f232016-09-27 18:43:30 -07002677 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader)));
Mathieu Chartier736b5602015-09-02 14:54:11 -07002678 Handle<mirror::Class> klass(
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07002679 hs.NewHandle(class_linker->FindClass(soa.Self(), accessor.GetDescriptor(), class_loader)));
Mathieu Chartier736b5602015-09-02 14:54:11 -07002680 Handle<mirror::DexCache> dex_cache;
Andreas Gampefa4333d2017-02-14 11:10:34 -08002681 if (klass == nullptr) {
Mathieu Chartier736b5602015-09-02 14:54:11 -07002682 soa.Self()->AssertPendingException();
2683 soa.Self()->ClearException();
2684 dex_cache = hs.NewHandle(class_linker->FindDexCache(soa.Self(), dex_file));
2685 } else if (SkipClass(jclass_loader, dex_file, klass.Get())) {
2686 return;
Andreas Gampebb30d5d2018-04-23 09:59:25 -07002687 } else if (&klass->GetDexFile() != &dex_file) {
2688 // Skip a duplicate class (as the resolved class is from another, earlier dex file).
2689 return; // Do not update state.
Mathieu Chartier736b5602015-09-02 14:54:11 -07002690 } else {
2691 dex_cache = hs.NewHandle(klass->GetDexCache());
2692 }
2693
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07002694 // Avoid suspension if there are no methods to compile.
2695 if (accessor.NumDirectMethods() + accessor.NumVirtualMethods() == 0) {
Mathieu Chartier90443472015-07-16 20:32:27 -07002696 return;
Brian Carlstrom7940e442013-07-12 13:46:57 -07002697 }
Mathieu Chartier90443472015-07-16 20:32:27 -07002698
Mathieu Chartier736b5602015-09-02 14:54:11 -07002699 // Go to native so that we don't block GC during compilation.
Mathieu Chartierf1d666e2015-09-03 16:13:34 -07002700 ScopedThreadSuspension sts(soa.Self(), kNative);
Mathieu Chartier736b5602015-09-02 14:54:11 -07002701
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002702 CompilerDriver* const driver = context.GetCompiler();
Mathieu Chartier90443472015-07-16 20:32:27 -07002703
2704 // Can we run DEX-to-DEX compiler on this class ?
Mathieu Chartiera79efdb2018-01-18 16:31:01 -08002705 optimizer::DexToDexCompiler::CompilationLevel dex_to_dex_compilation_level =
Mathieu Chartier736b5602015-09-02 14:54:11 -07002706 GetDexToDexCompilationLevel(soa.Self(), *driver, jclass_loader, dex_file, class_def);
Andreas Gampe5eb0d382015-07-23 01:19:26 -07002707
Mathieu Chartier90443472015-07-16 20:32:27 -07002708
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07002709 const bool compilation_enabled = driver->IsClassToCompile(accessor.GetDescriptor());
Mathieu Chartier90443472015-07-16 20:32:27 -07002710
Mathieu Chartierb7c273c2017-11-10 18:07:56 -08002711 // Compile direct and virtual methods.
2712 int64_t previous_method_idx = -1;
Mathieu Chartier0d896bd2018-05-25 00:20:27 -07002713 for (const ClassAccessor::Method& method : accessor.GetMethods()) {
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07002714 const uint32_t method_idx = method.GetIndex();
Mathieu Chartierb7c273c2017-11-10 18:07:56 -08002715 if (method_idx == previous_method_idx) {
Mathieu Chartier90443472015-07-16 20:32:27 -07002716 // smali can create dex files with two encoded_methods sharing the same method_idx
2717 // http://code.google.com/p/smali/issues/detail?id=119
Mathieu Chartier0d896bd2018-05-25 00:20:27 -07002718 continue;
Mathieu Chartier90443472015-07-16 20:32:27 -07002719 }
Mathieu Chartierb7c273c2017-11-10 18:07:56 -08002720 previous_method_idx = method_idx;
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002721 compile_fn(soa.Self(),
2722 driver,
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07002723 method.GetCodeItem(),
2724 method.GetAccessFlags(),
2725 method.GetInvokeType(class_def.access_flags_),
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002726 class_def_index,
2727 method_idx,
2728 class_loader,
2729 dex_file,
2730 dex_to_dex_compilation_level,
2731 compilation_enabled,
2732 dex_cache);
Mathieu Chartier0d896bd2018-05-25 00:20:27 -07002733 }
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002734 };
2735 context.ForAllLambda(0, dex_file.NumClassDefs(), compile, thread_count);
2736}
2737
2738void CompilerDriver::Compile(jobject class_loader,
2739 const std::vector<const DexFile*>& dex_files,
2740 TimingLogger* timings) {
2741 if (kDebugProfileGuidedCompilation) {
2742 LOG(INFO) << "[ProfileGuidedCompilation] " <<
2743 ((profile_compilation_info_ == nullptr)
2744 ? "null"
2745 : profile_compilation_info_->DumpInfo(&dex_files));
Brian Carlstrom7940e442013-07-12 13:46:57 -07002746 }
Mathieu Chartier90443472015-07-16 20:32:27 -07002747
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002748 dex_to_dex_compiler_.ClearState();
2749 for (const DexFile* dex_file : dex_files) {
2750 CHECK(dex_file != nullptr);
2751 CompileDexFile(this,
2752 class_loader,
2753 *dex_file,
2754 dex_files,
2755 parallel_thread_pool_.get(),
2756 parallel_thread_count_,
2757 timings,
2758 "Compile Dex File Quick",
2759 CompileMethodQuick);
2760 const ArenaPool* const arena_pool = Runtime::Current()->GetArenaPool();
2761 const size_t arena_alloc = arena_pool->GetBytesAllocated();
2762 max_arena_alloc_ = std::max(arena_alloc, max_arena_alloc_);
2763 Runtime::Current()->ReclaimArenaPoolMemory();
2764 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002765
Mathieu Chartier279e3a32018-01-24 18:17:55 -08002766 if (dex_to_dex_compiler_.NumCodeItemsToQuicken(Thread::Current()) > 0u) {
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002767 // TODO: Not visit all of the dex files, its probably rare that only one would have quickened
2768 // methods though.
2769 for (const DexFile* dex_file : dex_files) {
2770 CompileDexFile(this,
2771 class_loader,
2772 *dex_file,
2773 dex_files,
2774 parallel_thread_pool_.get(),
2775 parallel_thread_count_,
2776 timings,
2777 "Compile Dex File Dex2Dex",
2778 CompileMethodDex2Dex);
2779 }
2780 dex_to_dex_compiler_.ClearState();
2781 }
2782
2783 VLOG(compiler) << "Compile: " << GetMemoryUsageString(false);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002784}
2785
Andreas Gampe5eb0d382015-07-23 01:19:26 -07002786void CompilerDriver::AddCompiledMethod(const MethodReference& method_ref,
2787 CompiledMethod* const compiled_method,
2788 size_t non_relative_linker_patch_count) {
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002789 DCHECK(GetCompiledMethod(method_ref) == nullptr) << method_ref.PrettyMethod();
2790 MethodTable::InsertResult result = compiled_methods_.Insert(method_ref,
2791 /*expected*/ nullptr,
2792 compiled_method);
Mathieu Chartieracab8d42016-11-23 13:45:58 -08002793 CHECK(result == MethodTable::kInsertResultSuccess);
Orion Hodson88591fe2018-03-06 13:35:43 +00002794 non_relative_linker_patch_count_.fetch_add(non_relative_linker_patch_count,
2795 std::memory_order_relaxed);
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002796 DCHECK(GetCompiledMethod(method_ref) != nullptr) << method_ref.PrettyMethod();
Brian Carlstrom7940e442013-07-12 13:46:57 -07002797}
2798
Mathieu Chartier279e3a32018-01-24 18:17:55 -08002799CompiledMethod* CompilerDriver::RemoveCompiledMethod(const MethodReference& method_ref) {
2800 CompiledMethod* ret = nullptr;
2801 CHECK(compiled_methods_.Remove(method_ref, &ret));
2802 return ret;
2803}
2804
Vladimir Marko2c64a832018-01-04 11:31:56 +00002805bool CompilerDriver::GetCompiledClass(const ClassReference& ref, ClassStatus* status) const {
Andreas Gampebb846102017-05-11 21:03:35 -07002806 DCHECK(status != nullptr);
Mathieu Chartier1a088d42017-07-18 11:43:57 -07002807 // The table doesn't know if something wasn't inserted. For this case it will return
Vladimir Marko2c64a832018-01-04 11:31:56 +00002808 // ClassStatus::kNotReady. To handle this, just assume anything we didn't try to verify
2809 // is not compiled.
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002810 if (!compiled_classes_.Get(ref, status) ||
Vladimir Marko2c64a832018-01-04 11:31:56 +00002811 *status < ClassStatus::kRetryVerificationAtRuntime) {
Andreas Gampebb846102017-05-11 21:03:35 -07002812 return false;
Brian Carlstrom7940e442013-07-12 13:46:57 -07002813 }
Andreas Gampebb846102017-05-11 21:03:35 -07002814 return true;
Brian Carlstrom7940e442013-07-12 13:46:57 -07002815}
2816
Vladimir Marko2c64a832018-01-04 11:31:56 +00002817ClassStatus CompilerDriver::GetClassStatus(const ClassReference& ref) const {
2818 ClassStatus status = ClassStatus::kNotReady;
Nicolas Geoffray486dda02017-09-11 14:15:52 +01002819 if (!GetCompiledClass(ref, &status)) {
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002820 classpath_classes_.Get(ref, &status);
Nicolas Geoffray486dda02017-09-11 14:15:52 +01002821 }
2822 return status;
2823}
2824
Vladimir Marko2c64a832018-01-04 11:31:56 +00002825void CompilerDriver::RecordClassStatus(const ClassReference& ref, ClassStatus status) {
Nicolas Geoffrayade72d62016-12-15 13:20:02 +00002826 switch (status) {
Vladimir Marko2c64a832018-01-04 11:31:56 +00002827 case ClassStatus::kErrorResolved:
2828 case ClassStatus::kErrorUnresolved:
2829 case ClassStatus::kNotReady:
2830 case ClassStatus::kResolved:
2831 case ClassStatus::kRetryVerificationAtRuntime:
2832 case ClassStatus::kVerified:
2833 case ClassStatus::kSuperclassValidated:
2834 case ClassStatus::kInitialized:
Nicolas Geoffrayade72d62016-12-15 13:20:02 +00002835 break; // Expected states.
2836 default:
2837 LOG(FATAL) << "Unexpected class status for class "
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002838 << PrettyDescriptor(
2839 ref.dex_file->GetClassDescriptor(ref.dex_file->GetClassDef(ref.index)))
Nicolas Geoffrayade72d62016-12-15 13:20:02 +00002840 << " of " << status;
2841 }
2842
Mathieu Chartier1a088d42017-07-18 11:43:57 -07002843 ClassStateTable::InsertResult result;
Nicolas Geoffray486dda02017-09-11 14:15:52 +01002844 ClassStateTable* table = &compiled_classes_;
Mathieu Chartier1a088d42017-07-18 11:43:57 -07002845 do {
Vladimir Marko2c64a832018-01-04 11:31:56 +00002846 ClassStatus existing = ClassStatus::kNotReady;
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002847 if (!table->Get(ref, &existing)) {
Nicolas Geoffray486dda02017-09-11 14:15:52 +01002848 // A classpath class.
Mathieu Chartier010f5cc2017-07-24 15:53:46 -07002849 if (kIsDebugBuild) {
2850 // Check to make sure it's not a dex file for an oat file we are compiling since these
2851 // should always succeed. These do not include classes in for used libraries.
Vladimir Marko213ee2d2018-06-22 11:56:34 +01002852 for (const DexFile* dex_file : GetCompilerOptions().GetDexFilesForOatFile()) {
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002853 CHECK_NE(ref.dex_file, dex_file) << ref.dex_file->GetLocation();
Mathieu Chartier010f5cc2017-07-24 15:53:46 -07002854 }
2855 }
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002856 if (!classpath_classes_.HaveDexFile(ref.dex_file)) {
Nicolas Geoffray486dda02017-09-11 14:15:52 +01002857 // Boot classpath dex file.
2858 return;
2859 }
2860 table = &classpath_classes_;
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002861 table->Get(ref, &existing);
Mathieu Chartier010f5cc2017-07-24 15:53:46 -07002862 }
Mathieu Chartier1a088d42017-07-18 11:43:57 -07002863 if (existing >= status) {
2864 // Existing status is already better than we expect, break.
2865 break;
2866 }
Nicolas Geoffrayade72d62016-12-15 13:20:02 +00002867 // Update the status if we now have a greater one. This happens with vdex,
2868 // which records a class is verified, but does not resolve it.
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002869 result = table->Insert(ref, existing, status);
2870 CHECK(result != ClassStateTable::kInsertResultInvalidDexFile) << ref.dex_file->GetLocation();
Mathieu Chartier1a088d42017-07-18 11:43:57 -07002871 } while (result != ClassStateTable::kInsertResultSuccess);
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07002872}
2873
Brian Carlstrom7940e442013-07-12 13:46:57 -07002874CompiledMethod* CompilerDriver::GetCompiledMethod(MethodReference ref) const {
Mathieu Chartieracab8d42016-11-23 13:45:58 -08002875 CompiledMethod* compiled_method = nullptr;
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002876 compiled_methods_.Get(ref, &compiled_method);
Mathieu Chartieracab8d42016-11-23 13:45:58 -08002877 return compiled_method;
Brian Carlstrom7940e442013-07-12 13:46:57 -07002878}
2879
Calin Juravlef1c6d9e2015-04-13 18:42:21 +01002880bool CompilerDriver::IsMethodVerifiedWithoutFailures(uint32_t method_idx,
2881 uint16_t class_def_idx,
2882 const DexFile& dex_file) const {
2883 const VerifiedMethod* verified_method = GetVerifiedMethod(&dex_file, method_idx);
2884 if (verified_method != nullptr) {
2885 return !verified_method->HasVerificationFailures();
2886 }
2887
2888 // If we can't find verification metadata, check if this is a system class (we trust that system
2889 // classes have their methods verified). If it's not, be conservative and assume the method
2890 // has not been verified successfully.
2891
2892 // TODO: When compiling the boot image it should be safe to assume that everything is verified,
2893 // even if methods are not found in the verification cache.
2894 const char* descriptor = dex_file.GetClassDescriptor(dex_file.GetClassDef(class_def_idx));
2895 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
2896 Thread* self = Thread::Current();
2897 ScopedObjectAccess soa(self);
2898 bool is_system_class = class_linker->FindSystemClass(self, descriptor) != nullptr;
2899 if (!is_system_class) {
2900 self->ClearException();
2901 }
2902 return is_system_class;
2903}
2904
Vladimir Markof4da6752014-08-01 19:04:18 +01002905size_t CompilerDriver::GetNonRelativeLinkerPatchCount() const {
Orion Hodson88591fe2018-03-06 13:35:43 +00002906 return non_relative_linker_patch_count_.load(std::memory_order_relaxed);
Vladimir Markof4da6752014-08-01 19:04:18 +01002907}
2908
Mathieu Chartierc4ae9162016-04-07 13:19:19 -07002909void CompilerDriver::SetRequiresConstructorBarrier(Thread* self,
2910 const DexFile* dex_file,
2911 uint16_t class_def_index,
2912 bool requires) {
2913 WriterMutexLock mu(self, requires_constructor_barrier_lock_);
2914 requires_constructor_barrier_.emplace(ClassReference(dex_file, class_def_index), requires);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002915}
2916
Mathieu Chartier371bd832016-04-07 10:19:48 -07002917bool CompilerDriver::RequiresConstructorBarrier(Thread* self,
2918 const DexFile* dex_file,
Mathieu Chartierc4ae9162016-04-07 13:19:19 -07002919 uint16_t class_def_index) {
2920 ClassReference class_ref(dex_file, class_def_index);
2921 {
2922 ReaderMutexLock mu(self, requires_constructor_barrier_lock_);
2923 auto it = requires_constructor_barrier_.find(class_ref);
2924 if (it != requires_constructor_barrier_.end()) {
2925 return it->second;
2926 }
Mathieu Chartierb5d38612016-04-07 10:52:52 -07002927 }
Mathieu Chartierc4ae9162016-04-07 13:19:19 -07002928 WriterMutexLock mu(self, requires_constructor_barrier_lock_);
2929 const bool requires = RequiresConstructorBarrier(*dex_file, class_def_index);
2930 requires_constructor_barrier_.emplace(class_ref, requires);
2931 return requires;
Brian Carlstrom7940e442013-07-12 13:46:57 -07002932}
2933
Andreas Gampe8d295f82015-01-20 14:50:21 -08002934std::string CompilerDriver::GetMemoryUsageString(bool extended) const {
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002935 std::ostringstream oss;
Calin Juravle69158982016-03-16 11:53:41 +00002936 const gc::Heap* const heap = Runtime::Current()->GetHeap();
Anton Kirilovdd9473b2016-01-28 15:08:01 +00002937 const size_t java_alloc = heap->GetBytesAllocated();
Calin Juravle69158982016-03-16 11:53:41 +00002938 oss << "arena alloc=" << PrettySize(max_arena_alloc_) << " (" << max_arena_alloc_ << "B)";
Anton Kirilovdd9473b2016-01-28 15:08:01 +00002939 oss << " java alloc=" << PrettySize(java_alloc) << " (" << java_alloc << "B)";
Elliott Hughes7bf5a262015-04-02 20:55:07 -07002940#if defined(__BIONIC__) || defined(__GLIBC__)
Anton Kirilovdd9473b2016-01-28 15:08:01 +00002941 const struct mallinfo info = mallinfo();
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002942 const size_t allocated_space = static_cast<size_t>(info.uordblks);
2943 const size_t free_space = static_cast<size_t>(info.fordblks);
Anton Kirilovdd9473b2016-01-28 15:08:01 +00002944 oss << " native alloc=" << PrettySize(allocated_space) << " (" << allocated_space << "B)"
2945 << " free=" << PrettySize(free_space) << " (" << free_space << "B)";
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002946#endif
Vladimir Marko35831e82015-09-11 11:59:18 +01002947 compiled_method_storage_.DumpMemoryUsage(oss, extended);
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002948 return oss.str();
2949}
2950
Andreas Gampeace0dc12016-01-20 13:33:13 -08002951void CompilerDriver::InitializeThreadPools() {
2952 size_t parallel_count = parallel_thread_count_ > 0 ? parallel_thread_count_ - 1 : 0;
2953 parallel_thread_pool_.reset(
2954 new ThreadPool("Compiler driver thread pool", parallel_count));
2955 single_thread_pool_.reset(new ThreadPool("Single-threaded Compiler driver thread pool", 0));
2956}
2957
2958void CompilerDriver::FreeThreadPools() {
2959 parallel_thread_pool_.reset();
2960 single_thread_pool_.reset();
2961}
2962
Nicolas Geoffray486dda02017-09-11 14:15:52 +01002963void CompilerDriver::SetClasspathDexFiles(const std::vector<const DexFile*>& dex_files) {
2964 classpath_classes_.AddDexFiles(dex_files);
Mathieu Chartier72041a02017-07-14 18:23:25 -07002965}
2966
Brian Carlstrom7940e442013-07-12 13:46:57 -07002967} // namespace art