blob: 67cabef641a60c59ac4a15c97b170cb44ea498e2 [file] [log] [blame]
Brian Carlstrom7940e442013-07-12 13:46:57 -07001/*
2 * Copyright (C) 2011 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include "compiler_driver.h"
18
Andreas Gampe8cf9cb32017-07-19 09:28:38 -070019#include <unistd.h>
Andreas Gampeb0f370e2014-09-25 22:51:40 -070020#include <unordered_set>
Anwar Ghuloum67f99412013-08-12 14:19:48 -070021#include <vector>
Brian Carlstrom7940e442013-07-12 13:46:57 -070022
Mathieu Chartierab972ef2014-12-03 17:38:22 -080023#ifndef __APPLE__
24#include <malloc.h> // For mallinfo
25#endif
26
Andreas Gampe5c803112018-04-13 17:28:34 -070027#include "android-base/logging.h"
Narayan Kamathe3eae5e2016-10-27 11:47:30 +010028#include "android-base/strings.h"
29
Mathieu Chartierc7853442015-03-27 14:35:38 -070030#include "art_field-inl.h"
Mathieu Chartiere401d142015-04-22 13:56:20 -070031#include "art_method-inl.h"
Andreas Gampef0446e92017-05-16 13:51:57 -070032#include "base/arena_allocator.h"
David Brazdild9c90372016-09-14 16:53:55 +010033#include "base/array_ref.h"
Vladimir Marko492a7fa2016-06-01 18:38:43 +010034#include "base/bit_vector.h"
Andreas Gampe542451c2016-07-26 09:02:02 -070035#include "base/enums.h"
Andreas Gampe170331f2017-12-07 18:41:03 -080036#include "base/logging.h" // For VLOG
Brian Carlstrom7940e442013-07-12 13:46:57 -070037#include "base/stl_util.h"
Mathieu Chartier32ce2ad2016-03-04 14:58:03 -080038#include "base/systrace.h"
Vladimir Marko80afd022015-05-19 18:08:00 +010039#include "base/time_utils.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070040#include "base/timing_logger.h"
Vladimir Marko3481ba22015-04-13 12:22:36 +010041#include "class_linker-inl.h"
Vladimir Markod8dbc8d2017-09-20 13:37:47 +010042#include "compiled_method-inl.h"
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +000043#include "compiler.h"
Nicolas Geoffray6bb7f1b2016-11-03 10:52:49 +000044#include "compiler_callbacks.h"
Vladimir Markobe0e5462014-02-26 11:24:15 +000045#include "compiler_driver-inl.h"
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -070046#include "dex/class_accessor-inl.h"
David Sehrb2ec9f52018-02-21 13:20:31 -080047#include "dex/descriptors_names.h"
David Sehr9e734c72018-01-04 17:56:19 -080048#include "dex/dex_file-inl.h"
49#include "dex/dex_file_annotations.h"
50#include "dex/dex_instruction-inl.h"
Andreas Gampe5eb0d382015-07-23 01:19:26 -070051#include "dex/dex_to_dex_compiler.h"
Vladimir Markoc7f83202014-01-24 17:55:18 +000052#include "dex/verification_results.h"
Vladimir Marko2730db02014-01-27 11:15:17 +000053#include "dex/verified_method.h"
Steven Morelande431e272017-07-18 16:53:49 -070054#include "dex_compilation_unit.h"
Mark Mendellae9fd932014-02-10 16:14:35 -080055#include "driver/compiler_options.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070056#include "gc/accounting/card_table-inl.h"
57#include "gc/accounting/heap_bitmap.h"
Mathieu Chartiere401d142015-04-22 13:56:20 -070058#include "gc/space/image_space.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070059#include "gc/space/space.h"
Steven Morelande431e272017-07-18 16:53:49 -070060#include "handle_scope-inl.h"
61#include "intrinsics_enum.h"
Vladimir Markoa3ad0cd2018-05-04 10:06:38 +010062#include "jni/jni_internal.h"
Vladimir Markod8dbc8d2017-09-20 13:37:47 +010063#include "linker/linker_patch.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070064#include "mirror/class-inl.h"
Steven Morelande431e272017-07-18 16:53:49 -070065#include "mirror/class_loader.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070066#include "mirror/dex_cache-inl.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070067#include "mirror/object-inl.h"
Andreas Gampec6ea7d02017-02-01 16:46:28 -080068#include "mirror/object-refvisitor-inl.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070069#include "mirror/object_array-inl.h"
70#include "mirror/throwable.h"
Steven Morelande431e272017-07-18 16:53:49 -070071#include "object_lock.h"
David Sehr82d046e2018-04-23 08:14:19 -070072#include "profile/profile_compilation_info.h"
Steven Morelande431e272017-07-18 16:53:49 -070073#include "runtime.h"
Orion Hodson26ef34c2017-11-01 13:32:41 +000074#include "runtime_intrinsics.h"
Mathieu Chartier0795f232016-09-27 18:43:30 -070075#include "scoped_thread_state_change-inl.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070076#include "thread.h"
Andreas Gampeb0f370e2014-09-25 22:51:40 -070077#include "thread_list.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070078#include "thread_pool.h"
Ian Rogers848871b2013-08-05 10:56:33 -070079#include "trampolines/trampoline_compiler.h"
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +010080#include "transaction.h"
Mathieu Chartier93764b82017-07-17 14:51:53 -070081#include "utils/atomic_dex_ref_map-inl.h"
Vladimir Marko20f85592015-03-19 10:07:02 +000082#include "utils/dex_cache_arrays_layout-inl.h"
Andreas Gampee21dc3d2014-12-08 16:59:43 -080083#include "utils/swap_space.h"
Nicolas Geoffrayb0bbe8e2016-11-19 10:42:37 +000084#include "vdex_file.h"
Vladimir Marko2bc47802014-02-10 09:43:07 +000085#include "verifier/method_verifier-inl.h"
Steven Morelande431e272017-07-18 16:53:49 -070086#include "verifier/method_verifier.h"
Nicolas Geoffray08025182016-10-25 17:20:18 +010087#include "verifier/verifier_deps.h"
Andreas Gampe6d7abbd2017-04-24 13:19:09 -070088#include "verifier/verifier_enums.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070089
Brian Carlstrom7940e442013-07-12 13:46:57 -070090namespace art {
91
Mathieu Chartier8e219ae2014-08-19 14:29:46 -070092static constexpr bool kTimeCompileMethod = !kIsDebugBuild;
93
Calin Juravle226501b2015-12-11 14:41:31 +000094// Print additional info during profile guided compilation.
95static constexpr bool kDebugProfileGuidedCompilation = false;
96
Chang Xing70f689d2017-06-08 17:16:12 -070097// Max encoded fields allowed for initializing app image. Hardcode the number for now
98// because 5000 should be large enough.
99static constexpr uint32_t kMaxEncodedFields = 5000;
100
Brian Carlstrom7940e442013-07-12 13:46:57 -0700101static double Percentage(size_t x, size_t y) {
102 return 100.0 * (static_cast<double>(x)) / (static_cast<double>(x + y));
103}
104
105static void DumpStat(size_t x, size_t y, const char* str) {
106 if (x == 0 && y == 0) {
107 return;
108 }
Ian Rogerse732ef12013-10-09 15:22:24 -0700109 LOG(INFO) << Percentage(x, y) << "% of " << str << " for " << (x + y) << " cases";
Brian Carlstrom7940e442013-07-12 13:46:57 -0700110}
111
Vladimir Markof096aad2014-01-23 15:51:58 +0000112class CompilerDriver::AOTCompilationStats {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700113 public:
114 AOTCompilationStats()
115 : stats_lock_("AOT compilation statistics lock"),
Brian Carlstrom7940e442013-07-12 13:46:57 -0700116 resolved_instance_fields_(0), unresolved_instance_fields_(0),
117 resolved_local_static_fields_(0), resolved_static_fields_(0), unresolved_static_fields_(0),
118 type_based_devirtualization_(0),
119 safe_casts_(0), not_safe_casts_(0) {
120 for (size_t i = 0; i <= kMaxInvokeType; i++) {
121 resolved_methods_[i] = 0;
122 unresolved_methods_[i] = 0;
123 virtual_made_direct_[i] = 0;
124 direct_calls_to_boot_[i] = 0;
125 direct_methods_to_boot_[i] = 0;
126 }
127 }
128
129 void Dump() {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700130 DumpStat(resolved_instance_fields_, unresolved_instance_fields_, "instance fields resolved");
131 DumpStat(resolved_local_static_fields_ + resolved_static_fields_, unresolved_static_fields_,
132 "static fields resolved");
133 DumpStat(resolved_local_static_fields_, resolved_static_fields_ + unresolved_static_fields_,
134 "static fields local to a class");
135 DumpStat(safe_casts_, not_safe_casts_, "check-casts removed based on type information");
136 // Note, the code below subtracts the stat value so that when added to the stat value we have
137 // 100% of samples. TODO: clean this up.
138 DumpStat(type_based_devirtualization_,
139 resolved_methods_[kVirtual] + unresolved_methods_[kVirtual] +
140 resolved_methods_[kInterface] + unresolved_methods_[kInterface] -
141 type_based_devirtualization_,
142 "virtual/interface calls made direct based on type information");
143
144 for (size_t i = 0; i <= kMaxInvokeType; i++) {
145 std::ostringstream oss;
146 oss << static_cast<InvokeType>(i) << " methods were AOT resolved";
147 DumpStat(resolved_methods_[i], unresolved_methods_[i], oss.str().c_str());
148 if (virtual_made_direct_[i] > 0) {
149 std::ostringstream oss2;
150 oss2 << static_cast<InvokeType>(i) << " methods made direct";
151 DumpStat(virtual_made_direct_[i],
152 resolved_methods_[i] + unresolved_methods_[i] - virtual_made_direct_[i],
153 oss2.str().c_str());
154 }
155 if (direct_calls_to_boot_[i] > 0) {
156 std::ostringstream oss2;
157 oss2 << static_cast<InvokeType>(i) << " method calls are direct into boot";
158 DumpStat(direct_calls_to_boot_[i],
159 resolved_methods_[i] + unresolved_methods_[i] - direct_calls_to_boot_[i],
160 oss2.str().c_str());
161 }
162 if (direct_methods_to_boot_[i] > 0) {
163 std::ostringstream oss2;
164 oss2 << static_cast<InvokeType>(i) << " method calls have methods in boot";
165 DumpStat(direct_methods_to_boot_[i],
166 resolved_methods_[i] + unresolved_methods_[i] - direct_methods_to_boot_[i],
167 oss2.str().c_str());
168 }
169 }
170 }
171
172// Allow lossy statistics in non-debug builds.
173#ifndef NDEBUG
174#define STATS_LOCK() MutexLock mu(Thread::Current(), stats_lock_)
175#else
176#define STATS_LOCK()
177#endif
178
Mathieu Chartier90443472015-07-16 20:32:27 -0700179 void ResolvedInstanceField() REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700180 STATS_LOCK();
181 resolved_instance_fields_++;
182 }
183
Mathieu Chartier90443472015-07-16 20:32:27 -0700184 void UnresolvedInstanceField() REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700185 STATS_LOCK();
186 unresolved_instance_fields_++;
187 }
188
Mathieu Chartier90443472015-07-16 20:32:27 -0700189 void ResolvedLocalStaticField() REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700190 STATS_LOCK();
191 resolved_local_static_fields_++;
192 }
193
Mathieu Chartier90443472015-07-16 20:32:27 -0700194 void ResolvedStaticField() REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700195 STATS_LOCK();
196 resolved_static_fields_++;
197 }
198
Mathieu Chartier90443472015-07-16 20:32:27 -0700199 void UnresolvedStaticField() REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700200 STATS_LOCK();
201 unresolved_static_fields_++;
202 }
203
204 // Indicate that type information from the verifier led to devirtualization.
Mathieu Chartier90443472015-07-16 20:32:27 -0700205 void PreciseTypeDevirtualization() REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700206 STATS_LOCK();
207 type_based_devirtualization_++;
208 }
209
Brian Carlstrom7940e442013-07-12 13:46:57 -0700210 // A check-cast could be eliminated due to verifier type analysis.
Mathieu Chartier90443472015-07-16 20:32:27 -0700211 void SafeCast() REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700212 STATS_LOCK();
213 safe_casts_++;
214 }
215
216 // A check-cast couldn't be eliminated due to verifier type analysis.
Mathieu Chartier90443472015-07-16 20:32:27 -0700217 void NotASafeCast() REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700218 STATS_LOCK();
219 not_safe_casts_++;
220 }
221
222 private:
223 Mutex stats_lock_;
224
Brian Carlstrom7940e442013-07-12 13:46:57 -0700225 size_t resolved_instance_fields_;
226 size_t unresolved_instance_fields_;
227
228 size_t resolved_local_static_fields_;
229 size_t resolved_static_fields_;
230 size_t unresolved_static_fields_;
231 // Type based devirtualization for invoke interface and virtual.
232 size_t type_based_devirtualization_;
233
234 size_t resolved_methods_[kMaxInvokeType + 1];
235 size_t unresolved_methods_[kMaxInvokeType + 1];
236 size_t virtual_made_direct_[kMaxInvokeType + 1];
237 size_t direct_calls_to_boot_[kMaxInvokeType + 1];
238 size_t direct_methods_to_boot_[kMaxInvokeType + 1];
239
240 size_t safe_casts_;
241 size_t not_safe_casts_;
242
243 DISALLOW_COPY_AND_ASSIGN(AOTCompilationStats);
244};
245
Jeff Haodcdc85b2015-12-04 14:06:18 -0800246CompilerDriver::CompilerDriver(
247 const CompilerOptions* compiler_options,
248 VerificationResults* verification_results,
Jeff Haodcdc85b2015-12-04 14:06:18 -0800249 Compiler::Kind compiler_kind,
Vladimir Markodc4bcce2018-06-21 16:15:42 +0100250 HashSet<std::string>* image_classes,
Vladimir Marko944da602016-02-19 12:27:55 +0000251 size_t thread_count,
Vladimir Marko1a2a5cd2018-11-07 15:39:48 +0000252 int swap_fd)
Calin Juravle226501b2015-12-11 14:41:31 +0000253 : compiler_options_(compiler_options),
Brian Carlstrom6449c622014-02-10 23:48:36 -0800254 verification_results_(verification_results),
Ian Rogers72d32622014-05-06 16:20:11 -0700255 compiler_(Compiler::Create(this, compiler_kind)),
Jeff Hao48699fb2015-04-06 14:21:37 -0700256 compiler_kind_(compiler_kind),
Vladimir Marko54159c62018-06-20 14:30:08 +0100257 image_classes_(std::move(image_classes)),
Andreas Gampef39208f2017-10-19 15:06:59 -0700258 number_of_soft_verifier_failures_(0),
Andreas Gampe6cf49e52015-03-05 13:08:45 -0800259 had_hard_verifier_failure_(false),
Andreas Gampeace0dc12016-01-20 13:33:13 -0800260 parallel_thread_count_(thread_count),
Brian Carlstrom7940e442013-07-12 13:46:57 -0700261 stats_(new AOTCompilationStats),
Calin Juravle998c2162015-12-21 15:39:33 +0200262 compiled_method_storage_(swap_fd),
Vladimir Marko492a7fa2016-06-01 18:38:43 +0100263 max_arena_alloc_(0),
Mathieu Chartiera79efdb2018-01-18 16:31:01 -0800264 dex_to_dex_compiler_(this) {
Brian Carlstrom6449c622014-02-10 23:48:36 -0800265 DCHECK(compiler_options_ != nullptr);
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700266
Ian Rogers72d32622014-05-06 16:20:11 -0700267 compiler_->Init();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700268
Vladimir Markoaad75c62016-10-03 08:46:48 +0000269 if (GetCompilerOptions().IsBootImage()) {
Vladimir Markodc4bcce2018-06-21 16:15:42 +0100270 CHECK(image_classes_ != nullptr) << "Expected image classes for boot image";
Mathieu Chartierc5dd3192015-12-09 16:38:30 -0800271 }
Andreas Gampecac31ad2017-11-06 20:01:17 -0800272
273 compiled_method_storage_.SetDedupeEnabled(compiler_options_->DeduplicateCode());
Brian Carlstrom7940e442013-07-12 13:46:57 -0700274}
275
276CompilerDriver::~CompilerDriver() {
Mathieu Chartier93764b82017-07-17 14:51:53 -0700277 compiled_methods_.Visit([this](const DexFileReference& ref ATTRIBUTE_UNUSED,
Mathieu Chartieracab8d42016-11-23 13:45:58 -0800278 CompiledMethod* method) {
279 if (method != nullptr) {
Vladimir Marko33f7c8a2018-11-19 10:22:01 +0000280 CompiledMethod::ReleaseSwapAllocatedCompiledMethod(GetCompiledMethodStorage(), method);
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800281 }
Mathieu Chartieracab8d42016-11-23 13:45:58 -0800282 });
Ian Rogers72d32622014-05-06 16:20:11 -0700283 compiler_->UnInit();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700284}
285
Vladimir Marko35831e82015-09-11 11:59:18 +0100286
Vladimir Markoa0431112018-06-25 09:32:54 +0100287#define CREATE_TRAMPOLINE(type, abi, offset) \
288 if (Is64BitInstructionSet(GetCompilerOptions().GetInstructionSet())) { \
289 return CreateTrampoline64(GetCompilerOptions().GetInstructionSet(), \
290 abi, \
291 type ## _ENTRYPOINT_OFFSET(PointerSize::k64, offset)); \
292 } else { \
293 return CreateTrampoline32(GetCompilerOptions().GetInstructionSet(), \
294 abi, \
295 type ## _ENTRYPOINT_OFFSET(PointerSize::k32, offset)); \
Ian Rogersdd7624d2014-03-14 17:43:00 -0700296 }
297
Vladimir Marko93205e32016-04-13 11:59:46 +0100298std::unique_ptr<const std::vector<uint8_t>> CompilerDriver::CreateJniDlsymLookup() const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700299 CREATE_TRAMPOLINE(JNI, kJniAbi, pDlsymLookup)
Ian Rogers848871b2013-08-05 10:56:33 -0700300}
301
Vladimir Marko93205e32016-04-13 11:59:46 +0100302std::unique_ptr<const std::vector<uint8_t>> CompilerDriver::CreateQuickGenericJniTrampoline()
303 const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700304 CREATE_TRAMPOLINE(QUICK, kQuickAbi, pQuickGenericJniTrampoline)
Andreas Gampe2da88232014-02-27 12:26:20 -0800305}
306
Vladimir Marko93205e32016-04-13 11:59:46 +0100307std::unique_ptr<const std::vector<uint8_t>> CompilerDriver::CreateQuickImtConflictTrampoline()
308 const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700309 CREATE_TRAMPOLINE(QUICK, kQuickAbi, pQuickImtConflictTrampoline)
Jeff Hao88474b42013-10-23 16:24:40 -0700310}
311
Vladimir Marko93205e32016-04-13 11:59:46 +0100312std::unique_ptr<const std::vector<uint8_t>> CompilerDriver::CreateQuickResolutionTrampoline()
313 const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700314 CREATE_TRAMPOLINE(QUICK, kQuickAbi, pQuickResolutionTrampoline)
Brian Carlstrom7940e442013-07-12 13:46:57 -0700315}
316
Vladimir Marko93205e32016-04-13 11:59:46 +0100317std::unique_ptr<const std::vector<uint8_t>> CompilerDriver::CreateQuickToInterpreterBridge()
318 const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700319 CREATE_TRAMPOLINE(QUICK, kQuickAbi, pQuickToInterpreterBridge)
Brian Carlstrom7940e442013-07-12 13:46:57 -0700320}
Ian Rogersdd7624d2014-03-14 17:43:00 -0700321#undef CREATE_TRAMPOLINE
Brian Carlstrom7940e442013-07-12 13:46:57 -0700322
323void CompilerDriver::CompileAll(jobject class_loader,
Brian Carlstrom45602482013-07-21 22:07:55 -0700324 const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -0800325 TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700326 DCHECK(!Runtime::Current()->IsStarted());
Andreas Gampeace0dc12016-01-20 13:33:13 -0800327
328 InitializeThreadPools();
329
Nicolas Geoffrayb0bbe8e2016-11-19 10:42:37 +0000330 PreCompile(class_loader, dex_files, timings);
Vladimir Markoaad75c62016-10-03 08:46:48 +0000331 if (GetCompilerOptions().IsBootImage()) {
Nicolas Geoffray762869d2016-07-15 15:28:35 +0100332 // We don't need to setup the intrinsics for non boot image compilation, as
333 // those compilations will pick up a boot image that have the ArtMethod already
334 // set with the intrinsics flag.
Orion Hodson26ef34c2017-11-01 13:32:41 +0000335 InitializeIntrinsics();
Nicolas Geoffray762869d2016-07-15 15:28:35 +0100336 }
Andreas Gampe740667a2015-09-15 17:55:06 -0700337 // Compile:
338 // 1) Compile all classes and methods enabled for compilation. May fall back to dex-to-dex
339 // compilation.
Nicolas Geoffray49cda062017-04-21 13:08:25 +0100340 if (GetCompilerOptions().IsAnyCompilationEnabled()) {
Andreas Gampeace0dc12016-01-20 13:33:13 -0800341 Compile(class_loader, dex_files, timings);
Andreas Gampe740667a2015-09-15 17:55:06 -0700342 }
Nicolas Geoffray2d8801f2017-11-28 15:50:07 +0000343 if (GetCompilerOptions().GetDumpStats()) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700344 stats_->Dump();
345 }
Andreas Gampeace0dc12016-01-20 13:33:13 -0800346
347 FreeThreadPools();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700348}
349
Mathieu Chartiera79efdb2018-01-18 16:31:01 -0800350static optimizer::DexToDexCompiler::CompilationLevel GetDexToDexCompilationLevel(
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700351 Thread* self, const CompilerDriver& driver, Handle<mirror::ClassLoader> class_loader,
352 const DexFile& dex_file, const DexFile::ClassDef& class_def)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700353 REQUIRES_SHARED(Locks::mutator_lock_) {
Nicolas Geoffrayf3075272018-01-08 12:41:19 +0000354 // When the dex file is uncompressed in the APK, we do not generate a copy in the .vdex
355 // file. As a result, dex2oat will map the dex file read-only, and we only need to check
356 // that to know if we can do quickening.
357 if (dex_file.GetContainer() != nullptr && dex_file.GetContainer()->IsReadOnly()) {
358 return optimizer::DexToDexCompiler::CompilationLevel::kDontDexToDexCompile;
359 }
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800360 auto* const runtime = Runtime::Current();
Nicolas Geoffray49cda062017-04-21 13:08:25 +0100361 DCHECK(driver.GetCompilerOptions().IsQuickeningCompilationEnabled());
Brian Carlstrom7940e442013-07-12 13:46:57 -0700362 const char* descriptor = dex_file.GetClassDescriptor(class_def);
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800363 ClassLinker* class_linker = runtime->GetClassLinker();
Vladimir Markoa8bba7d2018-05-30 15:18:48 +0100364 ObjPtr<mirror::Class> klass = class_linker->FindClass(self, descriptor, class_loader);
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700365 if (klass == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700366 CHECK(self->IsExceptionPending());
367 self->ClearException();
Mathieu Chartiera79efdb2018-01-18 16:31:01 -0800368 return optimizer::DexToDexCompiler::CompilationLevel::kDontDexToDexCompile;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700369 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700370 // DexToDex at the kOptimize level may introduce quickened opcodes, which replace symbolic
371 // references with actual offsets. We cannot re-verify such instructions.
372 //
373 // We store the verification information in the class status in the oat file, which the linker
374 // can validate (checksums) and use to skip load-time verification. It is thus safe to
375 // optimize when a class has been fully verified before.
Mathieu Chartiera79efdb2018-01-18 16:31:01 -0800376 optimizer::DexToDexCompiler::CompilationLevel max_level =
377 optimizer::DexToDexCompiler::CompilationLevel::kOptimize;
Alex Lighte40dd382017-01-25 17:44:53 -0800378 if (driver.GetCompilerOptions().GetDebuggable()) {
379 // We are debuggable so definitions of classes might be changed. We don't want to do any
380 // optimizations that could break that.
Mathieu Chartiera79efdb2018-01-18 16:31:01 -0800381 max_level = optimizer::DexToDexCompiler::CompilationLevel::kDontDexToDexCompile;
Alex Lighte40dd382017-01-25 17:44:53 -0800382 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700383 if (klass->IsVerified()) {
Sebastien Hertz75021222013-07-16 18:34:50 +0200384 // Class is verified so we can enable DEX-to-DEX compilation for performance.
Alex Lighte40dd382017-01-25 17:44:53 -0800385 return max_level;
Sebastien Hertz75021222013-07-16 18:34:50 +0200386 } else {
Andreas Gampe1a4bc7f2017-03-27 14:57:30 -0700387 // Class verification has failed: do not run DEX-to-DEX optimizations.
Mathieu Chartiera79efdb2018-01-18 16:31:01 -0800388 return optimizer::DexToDexCompiler::CompilationLevel::kDontDexToDexCompile;
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700389 }
390}
391
Mathieu Chartiera79efdb2018-01-18 16:31:01 -0800392static optimizer::DexToDexCompiler::CompilationLevel GetDexToDexCompilationLevel(
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700393 Thread* self,
394 const CompilerDriver& driver,
395 jobject jclass_loader,
396 const DexFile& dex_file,
397 const DexFile::ClassDef& class_def) {
398 ScopedObjectAccess soa(self);
399 StackHandleScope<1> hs(soa.Self());
400 Handle<mirror::ClassLoader> class_loader(
Mathieu Chartier0795f232016-09-27 18:43:30 -0700401 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader)));
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700402 return GetDexToDexCompilationLevel(self, driver, class_loader, dex_file, class_def);
403}
404
405// Does the runtime for the InstructionSet provide an implementation returned by
406// GetQuickGenericJniStub allowing down calls that aren't compiled using a JNI compiler?
407static bool InstructionSetHasGenericJniStub(InstructionSet isa) {
408 switch (isa) {
Vladimir Marko33bff252017-11-01 14:35:42 +0000409 case InstructionSet::kArm:
410 case InstructionSet::kArm64:
411 case InstructionSet::kThumb2:
412 case InstructionSet::kMips:
413 case InstructionSet::kMips64:
414 case InstructionSet::kX86:
415 case InstructionSet::kX86_64: return true;
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700416 default: return false;
417 }
418}
419
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800420template <typename CompileFn>
421static void CompileMethodHarness(
422 Thread* self,
423 CompilerDriver* driver,
424 const DexFile::CodeItem* code_item,
425 uint32_t access_flags,
426 InvokeType invoke_type,
427 uint16_t class_def_idx,
428 uint32_t method_idx,
429 Handle<mirror::ClassLoader> class_loader,
430 const DexFile& dex_file,
431 optimizer::DexToDexCompiler::CompilationLevel dex_to_dex_compilation_level,
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800432 Handle<mirror::DexCache> dex_cache,
433 CompileFn compile_fn) {
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700434 DCHECK(driver != nullptr);
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800435 CompiledMethod* compiled_method;
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700436 uint64_t start_ns = kTimeCompileMethod ? NanoTime() : 0;
437 MethodReference method_ref(&dex_file, method_idx);
438
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800439 compiled_method = compile_fn(self,
440 driver,
441 code_item,
442 access_flags,
443 invoke_type,
444 class_def_idx,
445 method_idx,
446 class_loader,
447 dex_file,
448 dex_to_dex_compilation_level,
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800449 dex_cache);
Igor Murashkin9d4b6da2016-07-29 09:51:58 -0700450
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700451 if (kTimeCompileMethod) {
452 uint64_t duration_ns = NanoTime() - start_ns;
453 if (duration_ns > MsToNs(driver->GetCompiler()->GetMaximumCompilationTimeBeforeWarning())) {
David Sehr709b0702016-10-13 09:12:37 -0700454 LOG(WARNING) << "Compilation of " << dex_file.PrettyMethod(method_idx)
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700455 << " took " << PrettyDuration(duration_ns);
456 }
457 }
458
459 if (compiled_method != nullptr) {
Vladimir Marko8e524ad2018-07-13 10:27:43 +0100460 driver->AddCompiledMethod(method_ref, compiled_method);
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700461 }
462
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700463 if (self->IsExceptionPending()) {
464 ScopedObjectAccess soa(self);
David Sehr709b0702016-10-13 09:12:37 -0700465 LOG(FATAL) << "Unexpected exception compiling: " << dex_file.PrettyMethod(method_idx) << "\n"
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700466 << self->GetException()->Dump();
Sebastien Hertz75021222013-07-16 18:34:50 +0200467 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700468}
469
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800470static void CompileMethodDex2Dex(
471 Thread* self,
472 CompilerDriver* driver,
473 const DexFile::CodeItem* code_item,
474 uint32_t access_flags,
475 InvokeType invoke_type,
476 uint16_t class_def_idx,
477 uint32_t method_idx,
478 Handle<mirror::ClassLoader> class_loader,
479 const DexFile& dex_file,
480 optimizer::DexToDexCompiler::CompilationLevel dex_to_dex_compilation_level,
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800481 Handle<mirror::DexCache> dex_cache) {
482 auto dex_2_dex_fn = [](Thread* self ATTRIBUTE_UNUSED,
483 CompilerDriver* driver,
484 const DexFile::CodeItem* code_item,
485 uint32_t access_flags,
486 InvokeType invoke_type,
487 uint16_t class_def_idx,
488 uint32_t method_idx,
489 Handle<mirror::ClassLoader> class_loader,
490 const DexFile& dex_file,
491 optimizer::DexToDexCompiler::CompilationLevel dex_to_dex_compilation_level,
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800492 Handle<mirror::DexCache> dex_cache ATTRIBUTE_UNUSED) -> CompiledMethod* {
493 DCHECK(driver != nullptr);
494 MethodReference method_ref(&dex_file, method_idx);
495
496 optimizer::DexToDexCompiler* const compiler = &driver->GetDexToDexCompiler();
497
498 if (compiler->ShouldCompileMethod(method_ref)) {
499 VerificationResults* results = driver->GetVerificationResults();
500 DCHECK(results != nullptr);
501 const VerifiedMethod* verified_method = results->GetVerifiedMethod(method_ref);
502 // Do not optimize if a VerifiedMethod is missing. SafeCast elision,
503 // for example, relies on it.
504 return compiler->CompileMethod(
505 code_item,
506 access_flags,
507 invoke_type,
508 class_def_idx,
509 method_idx,
510 class_loader,
511 dex_file,
512 (verified_method != nullptr)
513 ? dex_to_dex_compilation_level
514 : optimizer::DexToDexCompiler::CompilationLevel::kDontDexToDexCompile);
515 }
516 return nullptr;
517 };
518 CompileMethodHarness(self,
519 driver,
520 code_item,
521 access_flags,
522 invoke_type,
523 class_def_idx,
524 method_idx,
525 class_loader,
526 dex_file,
527 dex_to_dex_compilation_level,
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800528 dex_cache,
529 dex_2_dex_fn);
530}
531
532static void CompileMethodQuick(
533 Thread* self,
534 CompilerDriver* driver,
535 const DexFile::CodeItem* code_item,
536 uint32_t access_flags,
537 InvokeType invoke_type,
538 uint16_t class_def_idx,
539 uint32_t method_idx,
540 Handle<mirror::ClassLoader> class_loader,
541 const DexFile& dex_file,
542 optimizer::DexToDexCompiler::CompilationLevel dex_to_dex_compilation_level,
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800543 Handle<mirror::DexCache> dex_cache) {
544 auto quick_fn = [](
545 Thread* self,
546 CompilerDriver* driver,
547 const DexFile::CodeItem* code_item,
548 uint32_t access_flags,
549 InvokeType invoke_type,
550 uint16_t class_def_idx,
551 uint32_t method_idx,
552 Handle<mirror::ClassLoader> class_loader,
553 const DexFile& dex_file,
554 optimizer::DexToDexCompiler::CompilationLevel dex_to_dex_compilation_level,
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800555 Handle<mirror::DexCache> dex_cache) {
556 DCHECK(driver != nullptr);
557 CompiledMethod* compiled_method = nullptr;
558 MethodReference method_ref(&dex_file, method_idx);
559
560 if ((access_flags & kAccNative) != 0) {
561 // Are we extracting only and have support for generic JNI down calls?
562 if (!driver->GetCompilerOptions().IsJniCompilationEnabled() &&
Vladimir Markoa0431112018-06-25 09:32:54 +0100563 InstructionSetHasGenericJniStub(driver->GetCompilerOptions().GetInstructionSet())) {
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800564 // Leaving this empty will trigger the generic JNI version
565 } else {
566 // Query any JNI optimization annotations such as @FastNative or @CriticalNative.
567 access_flags |= annotations::GetNativeMethodAnnotationAccessFlags(
568 dex_file, dex_file.GetClassDef(class_def_idx), method_idx);
569
570 compiled_method = driver->GetCompiler()->JniCompile(
571 access_flags, method_idx, dex_file, dex_cache);
572 CHECK(compiled_method != nullptr);
573 }
574 } else if ((access_flags & kAccAbstract) != 0) {
575 // Abstract methods don't have code.
576 } else {
577 VerificationResults* results = driver->GetVerificationResults();
578 DCHECK(results != nullptr);
579 const VerifiedMethod* verified_method = results->GetVerifiedMethod(method_ref);
Mathieu Chartiera297b552018-11-07 11:41:01 -0800580 bool compile =
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800581 // Basic checks, e.g., not <clinit>.
582 results->IsCandidateForCompilation(method_ref, access_flags) &&
583 // Did not fail to create VerifiedMethod metadata.
584 verified_method != nullptr &&
585 // Do not have failures that should punt to the interpreter.
586 !verified_method->HasRuntimeThrow() &&
587 (verified_method->GetEncounteredVerificationFailures() &
588 (verifier::VERIFY_ERROR_FORCE_INTERPRETER | verifier::VERIFY_ERROR_LOCKING)) == 0 &&
589 // Is eligable for compilation by methods-to-compile filter.
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800590 driver->ShouldCompileBasedOnProfile(method_ref);
591
592 if (compile) {
593 // NOTE: if compiler declines to compile this method, it will return null.
594 compiled_method = driver->GetCompiler()->Compile(code_item,
595 access_flags,
596 invoke_type,
597 class_def_idx,
598 method_idx,
599 class_loader,
600 dex_file,
601 dex_cache);
Andreas Gampe5c803112018-04-13 17:28:34 -0700602 ProfileMethodsCheck check_type =
603 driver->GetCompilerOptions().CheckProfiledMethodsCompiled();
604 if (UNLIKELY(check_type != ProfileMethodsCheck::kNone)) {
605 bool violation = driver->ShouldCompileBasedOnProfile(method_ref) &&
606 (compiled_method == nullptr);
607 if (violation) {
608 std::ostringstream oss;
609 oss << "Failed to compile "
610 << method_ref.dex_file->PrettyMethod(method_ref.index)
611 << "[" << method_ref.dex_file->GetLocation() << "]"
612 << " as expected by profile";
613 switch (check_type) {
614 case ProfileMethodsCheck::kNone:
615 break;
616 case ProfileMethodsCheck::kLog:
617 LOG(ERROR) << oss.str();
618 break;
619 case ProfileMethodsCheck::kAbort:
620 LOG(FATAL_WITHOUT_ABORT) << oss.str();
621 _exit(1);
622 }
623 }
624 }
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800625 }
626 if (compiled_method == nullptr &&
627 dex_to_dex_compilation_level !=
628 optimizer::DexToDexCompiler::CompilationLevel::kDontDexToDexCompile) {
629 DCHECK(!Runtime::Current()->UseJitCompilation());
630 // TODO: add a command-line option to disable DEX-to-DEX compilation ?
Mathieu Chartier279e3a32018-01-24 18:17:55 -0800631 driver->GetDexToDexCompiler().MarkForCompilation(self, method_ref);
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800632 }
633 }
634 return compiled_method;
635 };
636 CompileMethodHarness(self,
637 driver,
638 code_item,
639 access_flags,
640 invoke_type,
641 class_def_idx,
642 method_idx,
643 class_loader,
644 dex_file,
645 dex_to_dex_compilation_level,
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800646 dex_cache,
647 quick_fn);
648}
649
Vladimir Markodc4bcce2018-06-21 16:15:42 +0100650// Compile a single Method. (For testing only.)
651void CompilerDriver::CompileOne(Thread* self,
652 jobject class_loader,
653 const DexFile& dex_file,
654 uint16_t class_def_idx,
655 uint32_t method_idx,
656 uint32_t access_flags,
657 InvokeType invoke_type,
658 const DexFile::CodeItem* code_item,
659 Handle<mirror::DexCache> dex_cache,
660 Handle<mirror::ClassLoader> h_class_loader) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700661 // Can we run DEX-to-DEX compiler on this class ?
Mathieu Chartiera79efdb2018-01-18 16:31:01 -0800662 optimizer::DexToDexCompiler::CompilationLevel dex_to_dex_compilation_level =
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700663 GetDexToDexCompilationLevel(self,
664 *this,
Vladimir Markodc4bcce2018-06-21 16:15:42 +0100665 class_loader,
666 dex_file,
667 dex_file.GetClassDef(class_def_idx));
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700668
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800669 CompileMethodQuick(self,
670 this,
671 code_item,
672 access_flags,
673 invoke_type,
674 class_def_idx,
675 method_idx,
Vladimir Markodc4bcce2018-06-21 16:15:42 +0100676 h_class_loader,
677 dex_file,
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800678 dex_to_dex_compilation_level,
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800679 dex_cache);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700680
Mathieu Chartier279e3a32018-01-24 18:17:55 -0800681 const size_t num_methods = dex_to_dex_compiler_.NumCodeItemsToQuicken(self);
Mathieu Chartiera79efdb2018-01-18 16:31:01 -0800682 if (num_methods != 0) {
683 DCHECK_EQ(num_methods, 1u);
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800684 CompileMethodDex2Dex(self,
685 this,
686 code_item,
687 access_flags,
688 invoke_type,
689 class_def_idx,
690 method_idx,
Vladimir Markodc4bcce2018-06-21 16:15:42 +0100691 h_class_loader,
692 dex_file,
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800693 dex_to_dex_compilation_level,
Andreas Gampe3c060ad2018-01-22 13:07:49 -0800694 dex_cache);
Mathieu Chartiera79efdb2018-01-18 16:31:01 -0800695 dex_to_dex_compiler_.ClearState();
Vladimir Marko492a7fa2016-06-01 18:38:43 +0100696 }
Mathieu Chartier2535abe2015-02-17 10:38:49 -0800697}
698
Andreas Gampeace0dc12016-01-20 13:33:13 -0800699void CompilerDriver::Resolve(jobject class_loader,
700 const std::vector<const DexFile*>& dex_files,
701 TimingLogger* timings) {
702 // Resolution allocates classes and needs to run single-threaded to be deterministic.
703 bool force_determinism = GetCompilerOptions().IsForceDeterminism();
704 ThreadPool* resolve_thread_pool = force_determinism
705 ? single_thread_pool_.get()
706 : parallel_thread_pool_.get();
707 size_t resolve_thread_count = force_determinism ? 1U : parallel_thread_count_;
708
Brian Carlstrom7940e442013-07-12 13:46:57 -0700709 for (size_t i = 0; i != dex_files.size(); ++i) {
710 const DexFile* dex_file = dex_files[i];
Kenny Rootd5185342014-05-13 14:47:05 -0700711 CHECK(dex_file != nullptr);
Andreas Gampeace0dc12016-01-20 13:33:13 -0800712 ResolveDexFile(class_loader,
713 *dex_file,
714 dex_files,
715 resolve_thread_pool,
716 resolve_thread_count,
717 timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700718 }
719}
720
Mathieu Chartiercd0f38f2018-10-15 09:44:35 -0700721void CompilerDriver::ResolveConstStrings(const std::vector<const DexFile*>& dex_files,
722 bool only_startup_strings,
723 TimingLogger* timings) {
Nicolas Geoffray571d2342016-10-12 13:03:15 +0000724 ScopedObjectAccess soa(Thread::Current());
725 StackHandleScope<1> hs(soa.Self());
726 ClassLinker* const class_linker = Runtime::Current()->GetClassLinker();
727 MutableHandle<mirror::DexCache> dex_cache(hs.NewHandle<mirror::DexCache>(nullptr));
Mathieu Chartier22752772018-10-18 14:18:59 -0700728 size_t num_instructions = 0u;
Nicolas Geoffray571d2342016-10-12 13:03:15 +0000729
Andreas Gampeace0dc12016-01-20 13:33:13 -0800730 for (const DexFile* dex_file : dex_files) {
Vladimir Markocd556b02017-02-03 11:47:34 +0000731 dex_cache.Assign(class_linker->FindDexCache(soa.Self(), *dex_file));
Mathieu Chartier1ca718e2018-10-23 12:55:34 -0700732 if (only_startup_strings) {
733 // When resolving startup strings, create the preresolved strings array.
734 dex_cache->AddPreResolvedStringsArray();
735 }
Andreas Gampeace0dc12016-01-20 13:33:13 -0800736 TimingLogger::ScopedTiming t("Resolve const-string Strings", timings);
737
Mathieu Chartiera297b552018-11-07 11:41:01 -0800738 // TODO: Implement a profile-based filter for the boot image. See b/76145463.
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -0700739 for (ClassAccessor accessor : dex_file->GetClasses()) {
Vladimir Marko1a2a5cd2018-11-07 15:39:48 +0000740 const ProfileCompilationInfo* profile_compilation_info =
741 GetCompilerOptions().GetProfileCompilationInfo();
Mathieu Chartiera297b552018-11-07 11:41:01 -0800742
Mathieu Chartier22752772018-10-18 14:18:59 -0700743 const bool is_startup_class =
Vladimir Marko1a2a5cd2018-11-07 15:39:48 +0000744 profile_compilation_info != nullptr &&
745 profile_compilation_info->ContainsClass(*dex_file, accessor.GetClassIdx());
Mathieu Chartier22752772018-10-18 14:18:59 -0700746
Mathieu Chartier0d896bd2018-05-25 00:20:27 -0700747 for (const ClassAccessor::Method& method : accessor.GetMethods()) {
Mathieu Chartier22752772018-10-18 14:18:59 -0700748 const bool is_clinit = (method.GetAccessFlags() & kAccConstructor) != 0 &&
749 (method.GetAccessFlags() & kAccStatic) != 0;
750 const bool is_startup_clinit = is_startup_class && is_clinit;
751
Mathieu Chartiercd0f38f2018-10-15 09:44:35 -0700752 if (only_startup_strings &&
Vladimir Marko1a2a5cd2018-11-07 15:39:48 +0000753 profile_compilation_info != nullptr &&
754 (!profile_compilation_info->GetMethodHotness(method.GetReference()).IsStartup() &&
Mathieu Chartier22752772018-10-18 14:18:59 -0700755 !is_startup_clinit)) {
Mathieu Chartiercd0f38f2018-10-15 09:44:35 -0700756 continue;
757 }
758
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -0700759 // Resolve const-strings in the code. Done to have deterministic allocation behavior. Right
760 // now this is single-threaded for simplicity.
761 // TODO: Collect the relevant string indices in parallel, then allocate them sequentially
762 // in a stable order.
763 for (const DexInstructionPcPair& inst : method.GetInstructions()) {
764 switch (inst->Opcode()) {
765 case Instruction::CONST_STRING:
766 case Instruction::CONST_STRING_JUMBO: {
767 dex::StringIndex string_index((inst->Opcode() == Instruction::CONST_STRING)
768 ? inst->VRegB_21c()
769 : inst->VRegB_31c());
770 ObjPtr<mirror::String> string = class_linker->ResolveString(string_index, dex_cache);
771 CHECK(string != nullptr) << "Could not allocate a string when forcing determinism";
Mathieu Chartier1ca718e2018-10-23 12:55:34 -0700772 if (only_startup_strings) {
773 dex_cache->GetPreResolvedStrings()[string_index.index_] =
774 GcRoot<mirror::String>(string);
775 }
Mathieu Chartier22752772018-10-18 14:18:59 -0700776 ++num_instructions;
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -0700777 break;
778 }
Andreas Gampeace0dc12016-01-20 13:33:13 -0800779
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -0700780 default:
781 break;
782 }
783 }
Mathieu Chartier0d896bd2018-05-25 00:20:27 -0700784 }
Vladimir Marko175e7862018-03-27 09:03:13 +0000785 }
786 }
Mathieu Chartier22752772018-10-18 14:18:59 -0700787 VLOG(compiler) << "Resolved " << num_instructions << " const string instructions";
Vladimir Marko175e7862018-03-27 09:03:13 +0000788}
789
790// Initialize type check bit strings for check-cast and instance-of in the code. Done to have
791// deterministic allocation behavior. Right now this is single-threaded for simplicity.
792// TODO: Collect the relevant type indices in parallel, then process them sequentially in a
793// stable order.
794
795static void InitializeTypeCheckBitstrings(CompilerDriver* driver,
796 ClassLinker* class_linker,
797 Handle<mirror::DexCache> dex_cache,
798 const DexFile& dex_file,
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -0700799 const ClassAccessor::Method& method)
Vladimir Marko175e7862018-03-27 09:03:13 +0000800 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -0700801 for (const DexInstructionPcPair& inst : method.GetInstructions()) {
Vladimir Marko175e7862018-03-27 09:03:13 +0000802 switch (inst->Opcode()) {
803 case Instruction::CHECK_CAST:
804 case Instruction::INSTANCE_OF: {
805 dex::TypeIndex type_index(
806 (inst->Opcode() == Instruction::CHECK_CAST) ? inst->VRegB_21c() : inst->VRegC_22c());
807 const char* descriptor = dex_file.StringByTypeIdx(type_index);
808 // We currently do not use the bitstring type check for array or final (including
809 // primitive) classes. We may reconsider this in future if it's deemed to be beneficial.
810 // And we cannot use it for classes outside the boot image as we do not know the runtime
811 // value of their bitstring when compiling (it may not even get assigned at runtime).
Vladimir Markodc4bcce2018-06-21 16:15:42 +0100812 if (descriptor[0] == 'L' && driver->GetCompilerOptions().IsImageClass(descriptor)) {
Vladimir Marko175e7862018-03-27 09:03:13 +0000813 ObjPtr<mirror::Class> klass =
814 class_linker->LookupResolvedType(type_index,
815 dex_cache.Get(),
816 /* class_loader */ nullptr);
817 CHECK(klass != nullptr) << descriptor << " should have been previously resolved.";
818 // Now assign the bitstring if the class is not final. Keep this in sync with sharpening.
819 if (!klass->IsFinal()) {
820 MutexLock subtype_check_lock(Thread::Current(), *Locks::subtype_check_lock_);
821 SubtypeCheck<ObjPtr<mirror::Class>>::EnsureAssigned(klass);
822 }
Andreas Gampeace0dc12016-01-20 13:33:13 -0800823 }
Vladimir Marko175e7862018-03-27 09:03:13 +0000824 break;
825 }
826
827 default:
828 break;
829 }
830 }
831}
832
833static void InitializeTypeCheckBitstrings(CompilerDriver* driver,
834 const std::vector<const DexFile*>& dex_files,
835 TimingLogger* timings) {
836 ScopedObjectAccess soa(Thread::Current());
837 StackHandleScope<1> hs(soa.Self());
838 ClassLinker* const class_linker = Runtime::Current()->GetClassLinker();
839 MutableHandle<mirror::DexCache> dex_cache(hs.NewHandle<mirror::DexCache>(nullptr));
840
841 for (const DexFile* dex_file : dex_files) {
842 dex_cache.Assign(class_linker->FindDexCache(soa.Self(), *dex_file));
843 TimingLogger::ScopedTiming t("Initialize type check bitstrings", timings);
844
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -0700845 for (ClassAccessor accessor : dex_file->GetClasses()) {
Vladimir Marko175e7862018-03-27 09:03:13 +0000846 // Direct and virtual methods.
Mathieu Chartier0d896bd2018-05-25 00:20:27 -0700847 for (const ClassAccessor::Method& method : accessor.GetMethods()) {
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -0700848 InitializeTypeCheckBitstrings(driver, class_linker, dex_cache, *dex_file, method);
Mathieu Chartier0d896bd2018-05-25 00:20:27 -0700849 }
Andreas Gampeace0dc12016-01-20 13:33:13 -0800850 }
851 }
852}
853
854inline void CompilerDriver::CheckThreadPools() {
855 DCHECK(parallel_thread_pool_ != nullptr);
856 DCHECK(single_thread_pool_ != nullptr);
857}
858
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +0000859static void EnsureVerifiedOrVerifyAtRuntime(jobject jclass_loader,
860 const std::vector<const DexFile*>& dex_files) {
861 ScopedObjectAccess soa(Thread::Current());
862 StackHandleScope<2> hs(soa.Self());
863 Handle<mirror::ClassLoader> class_loader(
864 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader)));
865 MutableHandle<mirror::Class> cls(hs.NewHandle<mirror::Class>(nullptr));
866 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
867
868 for (const DexFile* dex_file : dex_files) {
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -0700869 for (ClassAccessor accessor : dex_file->GetClasses()) {
870 cls.Assign(class_linker->FindClass(soa.Self(), accessor.GetDescriptor(), class_loader));
Andreas Gampefa4333d2017-02-14 11:10:34 -0800871 if (cls == nullptr) {
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +0000872 soa.Self()->ClearException();
873 } else if (&cls->GetDexFile() == dex_file) {
Nicolas Geoffray7cc3ae52017-03-07 14:33:37 +0000874 DCHECK(cls->IsErroneous() || cls->IsVerified() || cls->ShouldVerifyAtRuntime())
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +0000875 << cls->PrettyClass()
876 << " " << cls->GetStatus();
877 }
878 }
879 }
880}
881
Andreas Gampeace0dc12016-01-20 13:33:13 -0800882void CompilerDriver::PreCompile(jobject class_loader,
883 const std::vector<const DexFile*>& dex_files,
884 TimingLogger* timings) {
885 CheckThreadPools();
Vladimir Marko213ee2d2018-06-22 11:56:34 +0100886
Vladimir Markodc4bcce2018-06-21 16:15:42 +0100887 VLOG(compiler) << "Before precompile " << GetMemoryUsageString(false);
888
Vladimir Marko213ee2d2018-06-22 11:56:34 +0100889 compiled_classes_.AddDexFiles(GetCompilerOptions().GetDexFilesForOatFile());
890 dex_to_dex_compiler_.SetDexFiles(GetCompilerOptions().GetDexFilesForOatFile());
891
Vladimir Markodc4bcce2018-06-21 16:15:42 +0100892 // Precompile:
893 // 1) Load image classes.
894 // 2) Resolve all classes.
895 // 3) For deterministic boot image, resolve strings for const-string instructions.
896 // 4) Attempt to verify all classes.
897 // 5) Attempt to initialize image classes, and trivially initialized classes.
898 // 6) Update the set of image classes.
899 // 7) For deterministic boot image, initialize bitstrings for type checking.
Andreas Gampeace0dc12016-01-20 13:33:13 -0800900
Brian Carlstrom7940e442013-07-12 13:46:57 -0700901 LoadImageClasses(timings);
Andreas Gampe8d295f82015-01-20 14:50:21 -0800902 VLOG(compiler) << "LoadImageClasses: " << GetMemoryUsageString(false);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700903
Nicolas Geoffray49cda062017-04-21 13:08:25 +0100904 if (compiler_options_->IsAnyCompilationEnabled()) {
Mathieu Chartier88b74b62017-07-16 17:08:19 -0700905 // Avoid adding the dex files in the case where we aren't going to add compiled methods.
906 // This reduces RAM usage for this case.
907 for (const DexFile* dex_file : dex_files) {
908 // Can be already inserted if the caller is CompileOne. This happens for gtests.
909 if (!compiled_methods_.HaveDexFile(dex_file)) {
Mathieu Chartierfc8b4222017-09-17 13:44:24 -0700910 compiled_methods_.AddDexFile(dex_file);
Mathieu Chartier88b74b62017-07-16 17:08:19 -0700911 }
912 }
Nicolas Geoffray49cda062017-04-21 13:08:25 +0100913 // Resolve eagerly to prepare for compilation.
Andreas Gampeace0dc12016-01-20 13:33:13 -0800914 Resolve(class_loader, dex_files, timings);
Mathieu Chartiere86deef2015-03-19 13:43:37 -0700915 VLOG(compiler) << "Resolve: " << GetMemoryUsageString(false);
916 }
917
Nicolas Geoffray60ca9492016-12-20 21:15:00 +0000918 if (compiler_options_->AssumeClassesAreVerified()) {
Mathieu Chartierab972ef2014-12-03 17:38:22 -0800919 VLOG(compiler) << "Verify none mode specified, skipping verification.";
Andreas Gampeace0dc12016-01-20 13:33:13 -0800920 SetVerified(class_loader, dex_files, timings);
Mathieu Chartiere86deef2015-03-19 13:43:37 -0700921 }
922
Nicolas Geoffray60ca9492016-12-20 21:15:00 +0000923 if (!compiler_options_->IsVerificationEnabled()) {
Jeff Hao4a200f52014-04-01 14:58:49 -0700924 return;
925 }
926
Vladimir Markoaad75c62016-10-03 08:46:48 +0000927 if (GetCompilerOptions().IsForceDeterminism() && GetCompilerOptions().IsBootImage()) {
Andreas Gampeace0dc12016-01-20 13:33:13 -0800928 // Resolve strings from const-string. Do this now to have a deterministic image.
Mathieu Chartiercd0f38f2018-10-15 09:44:35 -0700929 ResolveConstStrings(dex_files, /*only_startup_strings=*/ false, timings);
Andreas Gampeace0dc12016-01-20 13:33:13 -0800930 VLOG(compiler) << "Resolve const-strings: " << GetMemoryUsageString(false);
Mathieu Chartiercd0f38f2018-10-15 09:44:35 -0700931 } else if (GetCompilerOptions().ResolveStartupConstStrings()) {
932 ResolveConstStrings(dex_files, /*only_startup_strings=*/ true, timings);
Andreas Gampeace0dc12016-01-20 13:33:13 -0800933 }
934
Nicolas Geoffrayb0bbe8e2016-11-19 10:42:37 +0000935 Verify(class_loader, dex_files, timings);
Andreas Gampe8d295f82015-01-20 14:50:21 -0800936 VLOG(compiler) << "Verify: " << GetMemoryUsageString(false);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700937
Andreas Gampe6cf49e52015-03-05 13:08:45 -0800938 if (had_hard_verifier_failure_ && GetCompilerOptions().AbortOnHardVerifierFailure()) {
Andreas Gampefdfb4d42017-07-27 12:12:22 -0700939 // Avoid dumping threads. Even if we shut down the thread pools, there will still be three
940 // instances of this thread's stack.
941 LOG(FATAL_WITHOUT_ABORT) << "Had a hard failure verifying all classes, and was asked to abort "
942 << "in such situations. Please check the log.";
Andreas Gampe56c9b7c2018-02-27 18:49:26 -0800943 _exit(1);
Andreas Gampef39208f2017-10-19 15:06:59 -0700944 } else if (number_of_soft_verifier_failures_ > 0 &&
945 GetCompilerOptions().AbortOnSoftVerifierFailure()) {
946 LOG(FATAL_WITHOUT_ABORT) << "Had " << number_of_soft_verifier_failures_ << " soft failure(s) "
947 << "verifying all classes, and was asked to abort in such situations. "
948 << "Please check the log.";
Andreas Gampe56c9b7c2018-02-27 18:49:26 -0800949 _exit(1);
Andreas Gampe6cf49e52015-03-05 13:08:45 -0800950 }
951
Nicolas Geoffray49cda062017-04-21 13:08:25 +0100952 if (compiler_options_->IsAnyCompilationEnabled()) {
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +0000953 if (kIsDebugBuild) {
954 EnsureVerifiedOrVerifyAtRuntime(class_loader, dex_files);
955 }
Nicolas Geoffrayade72d62016-12-15 13:20:02 +0000956 InitializeClasses(class_loader, dex_files, timings);
957 VLOG(compiler) << "InitializeClasses: " << GetMemoryUsageString(false);
958 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700959
960 UpdateImageClasses(timings);
Andreas Gampe8d295f82015-01-20 14:50:21 -0800961 VLOG(compiler) << "UpdateImageClasses: " << GetMemoryUsageString(false);
Vladimir Marko175e7862018-03-27 09:03:13 +0000962
963 if (kBitstringSubtypeCheckEnabled &&
964 GetCompilerOptions().IsForceDeterminism() && GetCompilerOptions().IsBootImage()) {
965 // Initialize type check bit string used by check-cast and instanceof.
966 // Do this now to have a deterministic image.
967 // Note: This is done after UpdateImageClasses() at it relies on the image classes to be final.
968 InitializeTypeCheckBitstrings(this, dex_files, timings);
969 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700970}
971
Calin Juravle226501b2015-12-11 14:41:31 +0000972bool CompilerDriver::ShouldCompileBasedOnProfile(const MethodReference& method_ref) const {
Mathieu Chartier97ab5e32017-02-22 13:35:44 -0800973 // Profile compilation info may be null if no profile is passed.
Mathieu Chartierd0af56c2017-02-17 12:56:25 -0800974 if (!CompilerFilter::DependsOnProfile(compiler_options_->GetCompilerFilter())) {
975 // Use the compiler filter instead of the presence of profile_compilation_info_ since
976 // we may want to have full speed compilation along with profile based layout optimizations.
Calin Juravle226501b2015-12-11 14:41:31 +0000977 return true;
978 }
Mathieu Chartier97ab5e32017-02-22 13:35:44 -0800979 // If we are using a profile filter but do not have a profile compilation info, compile nothing.
Vladimir Marko1a2a5cd2018-11-07 15:39:48 +0000980 const ProfileCompilationInfo* profile_compilation_info =
981 GetCompilerOptions().GetProfileCompilationInfo();
982 if (profile_compilation_info == nullptr) {
Mathieu Chartier97ab5e32017-02-22 13:35:44 -0800983 return false;
984 }
Mathieu Chartier7b135c82017-06-05 12:54:01 -0700985 // Compile only hot methods, it is the profile saver's job to decide what startup methods to mark
986 // as hot.
Vladimir Marko1a2a5cd2018-11-07 15:39:48 +0000987 bool result = profile_compilation_info->GetMethodHotness(method_ref).IsHot();
Calin Juravle226501b2015-12-11 14:41:31 +0000988
989 if (kDebugProfileGuidedCompilation) {
990 LOG(INFO) << "[ProfileGuidedCompilation] "
Mathieu Chartierfc8b4222017-09-17 13:44:24 -0700991 << (result ? "Compiled" : "Skipped") << " method:" << method_ref.PrettyMethod(true);
Calin Juravle226501b2015-12-11 14:41:31 +0000992 }
993 return result;
994}
995
Mathieu Chartiere0671ce2015-07-28 17:23:28 -0700996class ResolveCatchBlockExceptionsClassVisitor : public ClassVisitor {
997 public:
Vladimir Marko8d6768d2017-03-14 10:13:21 +0000998 ResolveCatchBlockExceptionsClassVisitor() : classes_() {}
Mathieu Chartiere0671ce2015-07-28 17:23:28 -0700999
Roland Levillainf73caca2018-08-24 17:19:07 +01001000 bool operator()(ObjPtr<mirror::Class> c) override REQUIRES_SHARED(Locks::mutator_lock_) {
Vladimir Marko8d6768d2017-03-14 10:13:21 +00001001 classes_.push_back(c);
Mathieu Chartiere4275c02015-08-06 15:34:15 -07001002 return true;
1003 }
1004
Vladimir Marko8d6768d2017-03-14 10:13:21 +00001005 void FindExceptionTypesToResolve(
1006 std::set<std::pair<dex::TypeIndex, const DexFile*>>* exceptions_to_resolve)
Vladimir Markobfb80d22017-02-14 14:08:12 +00001007 REQUIRES_SHARED(Locks::mutator_lock_) {
Vladimir Marko8d6768d2017-03-14 10:13:21 +00001008 const auto pointer_size = Runtime::Current()->GetClassLinker()->GetImagePointerSize();
1009 for (ObjPtr<mirror::Class> klass : classes_) {
1010 for (ArtMethod& method : klass->GetMethods(pointer_size)) {
1011 FindExceptionTypesToResolveForMethod(&method, exceptions_to_resolve);
1012 }
1013 }
1014 }
1015
1016 private:
1017 void FindExceptionTypesToResolveForMethod(
1018 ArtMethod* method,
1019 std::set<std::pair<dex::TypeIndex, const DexFile*>>* exceptions_to_resolve)
1020 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartier808c7a52017-12-15 11:19:33 -08001021 if (method->GetCodeItem() == nullptr) {
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001022 return; // native or abstract method
Brian Carlstrom7940e442013-07-12 13:46:57 -07001023 }
David Sehr0225f8e2018-01-31 08:52:24 +00001024 CodeItemDataAccessor accessor(method->DexInstructionData());
Mathieu Chartier808c7a52017-12-15 11:19:33 -08001025 if (accessor.TriesSize() == 0) {
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001026 return; // nothing to process
1027 }
Mathieu Chartier808c7a52017-12-15 11:19:33 -08001028 const uint8_t* encoded_catch_handler_list = accessor.GetCatchHandlerData();
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001029 size_t num_encoded_catch_handlers = DecodeUnsignedLeb128(&encoded_catch_handler_list);
1030 for (size_t i = 0; i < num_encoded_catch_handlers; i++) {
1031 int32_t encoded_catch_handler_size = DecodeSignedLeb128(&encoded_catch_handler_list);
1032 bool has_catch_all = false;
1033 if (encoded_catch_handler_size <= 0) {
1034 encoded_catch_handler_size = -encoded_catch_handler_size;
1035 has_catch_all = true;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001036 }
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001037 for (int32_t j = 0; j < encoded_catch_handler_size; j++) {
Andreas Gampea5b09a62016-11-17 15:21:22 -08001038 dex::TypeIndex encoded_catch_handler_handlers_type_idx =
1039 dex::TypeIndex(DecodeUnsignedLeb128(&encoded_catch_handler_list));
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001040 // Add to set of types to resolve if not already in the dex cache resolved types
Vladimir Marko8d6768d2017-03-14 10:13:21 +00001041 if (!method->IsResolvedTypeIdx(encoded_catch_handler_handlers_type_idx)) {
1042 exceptions_to_resolve->emplace(encoded_catch_handler_handlers_type_idx,
1043 method->GetDexFile());
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001044 }
1045 // ignore address associated with catch handler
1046 DecodeUnsignedLeb128(&encoded_catch_handler_list);
1047 }
1048 if (has_catch_all) {
1049 // ignore catch all address
1050 DecodeUnsignedLeb128(&encoded_catch_handler_list);
1051 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001052 }
1053 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001054
Vladimir Marko8d6768d2017-03-14 10:13:21 +00001055 std::vector<ObjPtr<mirror::Class>> classes_;
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001056};
1057
1058class RecordImageClassesVisitor : public ClassVisitor {
1059 public:
Vladimir Marko54159c62018-06-20 14:30:08 +01001060 explicit RecordImageClassesVisitor(HashSet<std::string>* image_classes)
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001061 : image_classes_(image_classes) {}
1062
Roland Levillainbbc6e7e2018-08-24 16:58:47 +01001063 bool operator()(ObjPtr<mirror::Class> klass) override REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001064 std::string temp;
1065 image_classes_->insert(klass->GetDescriptor(&temp));
1066 return true;
1067 }
1068
1069 private:
Vladimir Marko54159c62018-06-20 14:30:08 +01001070 HashSet<std::string>* const image_classes_;
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001071};
Brian Carlstrom7940e442013-07-12 13:46:57 -07001072
1073// Make a list of descriptors for classes to include in the image
Mathieu Chartier90443472015-07-16 20:32:27 -07001074void CompilerDriver::LoadImageClasses(TimingLogger* timings) {
Kenny Rootd5185342014-05-13 14:47:05 -07001075 CHECK(timings != nullptr);
Vladimir Markoaad75c62016-10-03 08:46:48 +00001076 if (!GetCompilerOptions().IsBootImage()) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001077 return;
1078 }
1079
Mathieu Chartierf5997b42014-06-20 10:37:54 -07001080 TimingLogger::ScopedTiming t("LoadImageClasses", timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001081 // Make a first class to load all classes explicitly listed in the file
1082 Thread* self = Thread::Current();
1083 ScopedObjectAccess soa(self);
1084 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Vladimir Markodc4bcce2018-06-21 16:15:42 +01001085 CHECK(image_classes_ != nullptr);
Mathieu Chartier02e25112013-08-14 16:14:24 -07001086 for (auto it = image_classes_->begin(), end = image_classes_->end(); it != end;) {
Vladimir Markoe9c36b32013-11-21 15:49:16 +00001087 const std::string& descriptor(*it);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001088 StackHandleScope<1> hs(self);
1089 Handle<mirror::Class> klass(
1090 hs.NewHandle(class_linker->FindSystemClass(self, descriptor.c_str())));
Andreas Gampefa4333d2017-02-14 11:10:34 -08001091 if (klass == nullptr) {
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001092 VLOG(compiler) << "Failed to find class " << descriptor;
Vladimir Marko54159c62018-06-20 14:30:08 +01001093 it = image_classes_->erase(it);
Ian Rogersa436fde2013-08-27 23:34:06 -07001094 self->ClearException();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001095 } else {
1096 ++it;
1097 }
1098 }
1099
1100 // Resolve exception classes referenced by the loaded classes. The catch logic assumes
1101 // exceptions are resolved by the verifier when there is a catch block in an interested method.
1102 // Do this here so that exception classes appear to have been specified image classes.
Andreas Gampea5b09a62016-11-17 15:21:22 -08001103 std::set<std::pair<dex::TypeIndex, const DexFile*>> unresolved_exception_types;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001104 StackHandleScope<1> hs(self);
1105 Handle<mirror::Class> java_lang_Throwable(
1106 hs.NewHandle(class_linker->FindSystemClass(self, "Ljava/lang/Throwable;")));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001107 do {
1108 unresolved_exception_types.clear();
Vladimir Marko8d6768d2017-03-14 10:13:21 +00001109 {
1110 // Thread suspension is not allowed while ResolveCatchBlockExceptionsClassVisitor
1111 // is using a std::vector<ObjPtr<mirror::Class>>.
1112 ScopedAssertNoThreadSuspension ants(__FUNCTION__);
1113 ResolveCatchBlockExceptionsClassVisitor visitor;
1114 class_linker->VisitClasses(&visitor);
1115 visitor.FindExceptionTypesToResolve(&unresolved_exception_types);
1116 }
Andreas Gampea5b09a62016-11-17 15:21:22 -08001117 for (const auto& exception_type : unresolved_exception_types) {
1118 dex::TypeIndex exception_type_idx = exception_type.first;
Mathieu Chartier02e25112013-08-14 16:14:24 -07001119 const DexFile* dex_file = exception_type.second;
Vladimir Marko666ee3d2017-12-11 18:37:36 +00001120 StackHandleScope<1> hs2(self);
Mathieu Chartierf284d442016-06-02 11:48:30 -07001121 Handle<mirror::DexCache> dex_cache(hs2.NewHandle(class_linker->RegisterDexFile(*dex_file,
1122 nullptr)));
Vladimir Marko666ee3d2017-12-11 18:37:36 +00001123 ObjPtr<mirror::Class> klass =
Andreas Gampefa4333d2017-02-14 11:10:34 -08001124 (dex_cache != nullptr)
Vladimir Marko666ee3d2017-12-11 18:37:36 +00001125 ? class_linker->ResolveType(exception_type_idx,
Vladimir Markocd556b02017-02-03 11:47:34 +00001126 dex_cache,
1127 ScopedNullHandle<mirror::ClassLoader>())
Vladimir Marko666ee3d2017-12-11 18:37:36 +00001128 : nullptr;
Andreas Gampefa4333d2017-02-14 11:10:34 -08001129 if (klass == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001130 const DexFile::TypeId& type_id = dex_file->GetTypeId(exception_type_idx);
1131 const char* descriptor = dex_file->GetTypeDescriptor(type_id);
1132 LOG(FATAL) << "Failed to resolve class " << descriptor;
1133 }
Vladimir Marko666ee3d2017-12-11 18:37:36 +00001134 DCHECK(java_lang_Throwable->IsAssignableFrom(klass));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001135 }
1136 // Resolving exceptions may load classes that reference more exceptions, iterate until no
1137 // more are found
1138 } while (!unresolved_exception_types.empty());
1139
1140 // We walk the roots looking for classes so that we'll pick up the
1141 // above classes plus any classes them depend on such super
1142 // classes, interfaces, and the required ClassLinker roots.
Vladimir Markodc4bcce2018-06-21 16:15:42 +01001143 RecordImageClassesVisitor visitor(image_classes_);
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001144 class_linker->VisitClasses(&visitor);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001145
Vladimir Marko54159c62018-06-20 14:30:08 +01001146 CHECK(!image_classes_->empty());
Brian Carlstrom7940e442013-07-12 13:46:57 -07001147}
1148
Vladimir Marko19a4d372016-12-08 14:41:46 +00001149static void MaybeAddToImageClasses(Thread* self,
1150 ObjPtr<mirror::Class> klass,
Vladimir Marko54159c62018-06-20 14:30:08 +01001151 HashSet<std::string>* image_classes)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001152 REQUIRES_SHARED(Locks::mutator_lock_) {
Vladimir Marko19a4d372016-12-08 14:41:46 +00001153 DCHECK_EQ(self, Thread::Current());
Mathieu Chartierf8322842014-05-16 10:59:25 -07001154 StackHandleScope<1> hs(self);
Ian Rogers1ff3c982014-08-12 02:30:58 -07001155 std::string temp;
Andreas Gampe542451c2016-07-26 09:02:02 -07001156 const PointerSize pointer_size = Runtime::Current()->GetClassLinker()->GetImagePointerSize();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001157 while (!klass->IsObjectClass()) {
Ian Rogers1ff3c982014-08-12 02:30:58 -07001158 const char* descriptor = klass->GetDescriptor(&temp);
Vladimir Marko54159c62018-06-20 14:30:08 +01001159 if (image_classes->find(StringPiece(descriptor)) != image_classes->end()) {
1160 break; // Previously inserted.
Brian Carlstrom7940e442013-07-12 13:46:57 -07001161 }
Vladimir Marko54159c62018-06-20 14:30:08 +01001162 image_classes->insert(descriptor);
Ian Rogers1ff3c982014-08-12 02:30:58 -07001163 VLOG(compiler) << "Adding " << descriptor << " to image classes";
Vladimir Marko19a4d372016-12-08 14:41:46 +00001164 for (size_t i = 0, num_interfaces = klass->NumDirectInterfaces(); i != num_interfaces; ++i) {
1165 ObjPtr<mirror::Class> interface = mirror::Class::GetDirectInterface(self, klass, i);
1166 DCHECK(interface != nullptr);
1167 MaybeAddToImageClasses(self, interface, image_classes);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001168 }
Vladimir Marko19a4d372016-12-08 14:41:46 +00001169 for (auto& m : klass->GetVirtualMethods(pointer_size)) {
1170 MaybeAddToImageClasses(self, m.GetDeclaringClass(), image_classes);
Mathieu Chartiere401d142015-04-22 13:56:20 -07001171 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001172 if (klass->IsArrayClass()) {
Vladimir Marko19a4d372016-12-08 14:41:46 +00001173 MaybeAddToImageClasses(self, klass->GetComponentType(), image_classes);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001174 }
Andreas Gampe98104992018-10-16 12:49:47 -07001175 klass = klass->GetSuperClass();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001176 }
1177}
1178
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001179// Keeps all the data for the update together. Also doubles as the reference visitor.
1180// Note: we can use object pointers because we suspend all threads.
1181class ClinitImageUpdate {
1182 public:
Mathieu Chartier31e88222016-10-14 18:43:19 -07001183 static ClinitImageUpdate* Create(VariableSizedHandleScope& hs,
Vladimir Marko54159c62018-06-20 14:30:08 +01001184 HashSet<std::string>* image_class_descriptors,
Mathieu Chartier31e88222016-10-14 18:43:19 -07001185 Thread* self,
1186 ClassLinker* linker) {
1187 std::unique_ptr<ClinitImageUpdate> res(new ClinitImageUpdate(hs,
1188 image_class_descriptors,
1189 self,
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001190 linker));
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001191 return res.release();
1192 }
1193
1194 ~ClinitImageUpdate() {
1195 // Allow others to suspend again.
1196 self_->EndAssertNoThreadSuspension(old_cause_);
1197 }
1198
1199 // Visitor for VisitReferences.
Mathieu Chartier31e88222016-10-14 18:43:19 -07001200 void operator()(ObjPtr<mirror::Object> object,
1201 MemberOffset field_offset,
1202 bool /* is_static */) const
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001203 REQUIRES_SHARED(Locks::mutator_lock_) {
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001204 mirror::Object* ref = object->GetFieldObject<mirror::Object>(field_offset);
1205 if (ref != nullptr) {
1206 VisitClinitClassesObject(ref);
1207 }
1208 }
1209
Roland Levillain5e8d5f02016-10-18 18:03:43 +01001210 // java.lang.ref.Reference visitor for VisitReferences.
Mathieu Chartier31e88222016-10-14 18:43:19 -07001211 void operator()(ObjPtr<mirror::Class> klass ATTRIBUTE_UNUSED,
1212 ObjPtr<mirror::Reference> ref ATTRIBUTE_UNUSED) const {}
Mathieu Chartierda7c6502015-07-23 16:01:26 -07001213
1214 // Ignore class native roots.
1215 void VisitRootIfNonNull(mirror::CompressedReference<mirror::Object>* root ATTRIBUTE_UNUSED)
1216 const {}
1217 void VisitRoot(mirror::CompressedReference<mirror::Object>* root ATTRIBUTE_UNUSED) const {}
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001218
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001219 void Walk() REQUIRES_SHARED(Locks::mutator_lock_) {
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001220 // Use the initial classes as roots for a search.
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001221 for (Handle<mirror::Class> klass_root : image_classes_) {
1222 VisitClinitClassesObject(klass_root.Get());
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001223 }
Vladimir Marko19a4d372016-12-08 14:41:46 +00001224 Thread* self = Thread::Current();
1225 ScopedAssertNoThreadSuspension ants(__FUNCTION__);
Mathieu Chartier31e88222016-10-14 18:43:19 -07001226 for (Handle<mirror::Class> h_klass : to_insert_) {
Vladimir Marko19a4d372016-12-08 14:41:46 +00001227 MaybeAddToImageClasses(self, h_klass.Get(), image_class_descriptors_);
Mathieu Chartier31e88222016-10-14 18:43:19 -07001228 }
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001229 }
1230
1231 private:
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001232 class FindImageClassesVisitor : public ClassVisitor {
1233 public:
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001234 explicit FindImageClassesVisitor(VariableSizedHandleScope& hs,
1235 ClinitImageUpdate* data)
1236 : data_(data),
1237 hs_(hs) {}
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001238
Roland Levillainbbc6e7e2018-08-24 16:58:47 +01001239 bool operator()(ObjPtr<mirror::Class> klass) override REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001240 std::string temp;
Vladimir Marko54159c62018-06-20 14:30:08 +01001241 StringPiece name(klass->GetDescriptor(&temp));
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001242 if (data_->image_class_descriptors_->find(name) != data_->image_class_descriptors_->end()) {
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001243 data_->image_classes_.push_back(hs_.NewHandle(klass));
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001244 } else {
1245 // Check whether it is initialized and has a clinit. They must be kept, too.
1246 if (klass->IsInitialized() && klass->FindClassInitializer(
1247 Runtime::Current()->GetClassLinker()->GetImagePointerSize()) != nullptr) {
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001248 data_->image_classes_.push_back(hs_.NewHandle(klass));
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001249 }
1250 }
1251 return true;
1252 }
1253
1254 private:
1255 ClinitImageUpdate* const data_;
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001256 VariableSizedHandleScope& hs_;
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001257 };
1258
Mathieu Chartier31e88222016-10-14 18:43:19 -07001259 ClinitImageUpdate(VariableSizedHandleScope& hs,
Vladimir Marko54159c62018-06-20 14:30:08 +01001260 HashSet<std::string>* image_class_descriptors,
Mathieu Chartier31e88222016-10-14 18:43:19 -07001261 Thread* self,
1262 ClassLinker* linker) REQUIRES_SHARED(Locks::mutator_lock_)
1263 : hs_(hs),
1264 image_class_descriptors_(image_class_descriptors),
1265 self_(self) {
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001266 CHECK(linker != nullptr);
1267 CHECK(image_class_descriptors != nullptr);
1268
1269 // Make sure nobody interferes with us.
1270 old_cause_ = self->StartAssertNoThreadSuspension("Boot image closure");
1271
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001272 // Find all the already-marked classes.
1273 WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001274 FindImageClassesVisitor visitor(hs_, this);
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001275 linker->VisitClasses(&visitor);
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001276 }
1277
1278 void VisitClinitClassesObject(mirror::Object* object) const
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001279 REQUIRES_SHARED(Locks::mutator_lock_) {
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001280 DCHECK(object != nullptr);
1281 if (marked_objects_.find(object) != marked_objects_.end()) {
1282 // Already processed.
1283 return;
1284 }
1285
1286 // Mark it.
1287 marked_objects_.insert(object);
1288
1289 if (object->IsClass()) {
Mathieu Chartier31e88222016-10-14 18:43:19 -07001290 // Add to the TODO list since MaybeAddToImageClasses may cause thread suspension. Thread
1291 // suspensionb is not safe to do in VisitObjects or VisitReferences.
1292 to_insert_.push_back(hs_.NewHandle(object->AsClass()));
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001293 } else {
1294 // Else visit the object's class.
1295 VisitClinitClassesObject(object->GetClass());
1296 }
1297
Mathieu Chartiere401d142015-04-22 13:56:20 -07001298 // If it is not a DexCache, visit all references.
Mathieu Chartier31e88222016-10-14 18:43:19 -07001299 if (!object->IsDexCache()) {
Mathieu Chartier059ef3d2015-08-18 13:54:21 -07001300 object->VisitReferences(*this, *this);
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001301 }
1302 }
1303
Mathieu Chartier31e88222016-10-14 18:43:19 -07001304 VariableSizedHandleScope& hs_;
1305 mutable std::vector<Handle<mirror::Class>> to_insert_;
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001306 mutable std::unordered_set<mirror::Object*> marked_objects_;
Vladimir Marko54159c62018-06-20 14:30:08 +01001307 HashSet<std::string>* const image_class_descriptors_;
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001308 std::vector<Handle<mirror::Class>> image_classes_;
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001309 Thread* const self_;
1310 const char* old_cause_;
1311
1312 DISALLOW_COPY_AND_ASSIGN(ClinitImageUpdate);
1313};
Brian Carlstrom7940e442013-07-12 13:46:57 -07001314
Ian Rogers3d504072014-03-01 09:16:49 -08001315void CompilerDriver::UpdateImageClasses(TimingLogger* timings) {
Vladimir Markoaad75c62016-10-03 08:46:48 +00001316 if (GetCompilerOptions().IsBootImage()) {
Mathieu Chartierf5997b42014-06-20 10:37:54 -07001317 TimingLogger::ScopedTiming t("UpdateImageClasses", timings);
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001318
Mathieu Chartier4f55e222015-09-04 13:26:21 -07001319 Runtime* runtime = Runtime::Current();
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001320
1321 // Suspend all threads.
Mathieu Chartier4f55e222015-09-04 13:26:21 -07001322 ScopedSuspendAll ssa(__FUNCTION__);
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001323
Mathieu Chartier31e88222016-10-14 18:43:19 -07001324 VariableSizedHandleScope hs(Thread::Current());
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001325 std::string error_msg;
Mathieu Chartier31e88222016-10-14 18:43:19 -07001326 std::unique_ptr<ClinitImageUpdate> update(ClinitImageUpdate::Create(hs,
Vladimir Markodc4bcce2018-06-21 16:15:42 +01001327 image_classes_,
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001328 Thread::Current(),
Mathieu Chartier31e88222016-10-14 18:43:19 -07001329 runtime->GetClassLinker()));
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001330
1331 // Do the marking.
1332 update->Walk();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001333 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001334}
1335
Vladimir Markobe0e5462014-02-26 11:24:15 +00001336void CompilerDriver::ProcessedInstanceField(bool resolved) {
1337 if (!resolved) {
1338 stats_->UnresolvedInstanceField();
1339 } else {
1340 stats_->ResolvedInstanceField();
1341 }
1342}
1343
1344void CompilerDriver::ProcessedStaticField(bool resolved, bool local) {
1345 if (!resolved) {
1346 stats_->UnresolvedStaticField();
1347 } else if (local) {
1348 stats_->ResolvedLocalStaticField();
1349 } else {
1350 stats_->ResolvedStaticField();
1351 }
1352}
1353
Mathieu Chartierc7853442015-03-27 14:35:38 -07001354ArtField* CompilerDriver::ComputeInstanceFieldInfo(uint32_t field_idx,
Vladimir Markoe11dd502017-12-08 14:09:45 +00001355 const DexCompilationUnit* mUnit,
1356 bool is_put,
Mathieu Chartierc7853442015-03-27 14:35:38 -07001357 const ScopedObjectAccess& soa) {
Vladimir Markobe0e5462014-02-26 11:24:15 +00001358 // Try to resolve the field and compiling method's class.
Mathieu Chartierc7853442015-03-27 14:35:38 -07001359 ArtField* resolved_field;
Vladimir Marko28e012a2017-12-07 11:22:59 +00001360 ObjPtr<mirror::Class> referrer_class;
Mathieu Chartier736b5602015-09-02 14:54:11 -07001361 Handle<mirror::DexCache> dex_cache(mUnit->GetDexCache());
Vladimir Markobe0e5462014-02-26 11:24:15 +00001362 {
Vladimir Markoe11dd502017-12-08 14:09:45 +00001363 Handle<mirror::ClassLoader> class_loader = mUnit->GetClassLoader();
1364 resolved_field = ResolveField(soa, dex_cache, class_loader, field_idx, /* is_static */ false);
Mathieu Chartierc7853442015-03-27 14:35:38 -07001365 referrer_class = resolved_field != nullptr
Vladimir Markoe11dd502017-12-08 14:09:45 +00001366 ? ResolveCompilingMethodsClass(soa, dex_cache, class_loader, mUnit) : nullptr;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001367 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001368 bool can_link = false;
Vladimir Markobe0e5462014-02-26 11:24:15 +00001369 if (resolved_field != nullptr && referrer_class != nullptr) {
Vladimir Markobe0e5462014-02-26 11:24:15 +00001370 std::pair<bool, bool> fast_path = IsFastInstanceField(
Mathieu Chartier736b5602015-09-02 14:54:11 -07001371 dex_cache.Get(), referrer_class, resolved_field, field_idx);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001372 can_link = is_put ? fast_path.second : fast_path.first;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001373 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001374 ProcessedInstanceField(can_link);
1375 return can_link ? resolved_field : nullptr;
1376}
1377
1378bool CompilerDriver::ComputeInstanceFieldInfo(uint32_t field_idx, const DexCompilationUnit* mUnit,
1379 bool is_put, MemberOffset* field_offset,
1380 bool* is_volatile) {
1381 ScopedObjectAccess soa(Thread::Current());
Mathieu Chartierc7853442015-03-27 14:35:38 -07001382 ArtField* resolved_field = ComputeInstanceFieldInfo(field_idx, mUnit, is_put, soa);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001383
Mathieu Chartierc7853442015-03-27 14:35:38 -07001384 if (resolved_field == nullptr) {
Vladimir Markobe0e5462014-02-26 11:24:15 +00001385 // Conservative defaults.
1386 *is_volatile = true;
1387 *field_offset = MemberOffset(static_cast<size_t>(-1));
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001388 return false;
1389 } else {
1390 *is_volatile = resolved_field->IsVolatile();
1391 *field_offset = resolved_field->GetOffset();
1392 return true;
Vladimir Markobe0e5462014-02-26 11:24:15 +00001393 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001394}
1395
Vladimir Marko2730db02014-01-27 11:15:17 +00001396const VerifiedMethod* CompilerDriver::GetVerifiedMethod(const DexFile* dex_file,
1397 uint32_t method_idx) const {
1398 MethodReference ref(dex_file, method_idx);
1399 return verification_results_->GetVerifiedMethod(ref);
1400}
1401
1402bool CompilerDriver::IsSafeCast(const DexCompilationUnit* mUnit, uint32_t dex_pc) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001403 if (!compiler_options_->IsVerificationEnabled()) {
1404 // If we didn't verify, every cast has to be treated as non-safe.
1405 return false;
1406 }
Vladimir Marko2730db02014-01-27 11:15:17 +00001407 DCHECK(mUnit->GetVerifiedMethod() != nullptr);
1408 bool result = mUnit->GetVerifiedMethod()->IsSafeCast(dex_pc);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001409 if (result) {
1410 stats_->SafeCast();
1411 } else {
1412 stats_->NotASafeCast();
1413 }
1414 return result;
1415}
1416
Mathieu Chartier90443472015-07-16 20:32:27 -07001417class CompilationVisitor {
1418 public:
1419 virtual ~CompilationVisitor() {}
1420 virtual void Visit(size_t index) = 0;
1421};
1422
Brian Carlstrom7940e442013-07-12 13:46:57 -07001423class ParallelCompilationManager {
1424 public:
Brian Carlstrom7940e442013-07-12 13:46:57 -07001425 ParallelCompilationManager(ClassLinker* class_linker,
1426 jobject class_loader,
1427 CompilerDriver* compiler,
1428 const DexFile* dex_file,
Andreas Gampede7b4362014-07-28 18:38:57 -07001429 const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -08001430 ThreadPool* thread_pool)
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001431 : index_(0),
1432 class_linker_(class_linker),
Brian Carlstrom7940e442013-07-12 13:46:57 -07001433 class_loader_(class_loader),
1434 compiler_(compiler),
1435 dex_file_(dex_file),
Andreas Gampede7b4362014-07-28 18:38:57 -07001436 dex_files_(dex_files),
Ian Rogers3d504072014-03-01 09:16:49 -08001437 thread_pool_(thread_pool) {}
Brian Carlstrom7940e442013-07-12 13:46:57 -07001438
1439 ClassLinker* GetClassLinker() const {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001440 CHECK(class_linker_ != nullptr);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001441 return class_linker_;
1442 }
1443
1444 jobject GetClassLoader() const {
1445 return class_loader_;
1446 }
1447
1448 CompilerDriver* GetCompiler() const {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001449 CHECK(compiler_ != nullptr);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001450 return compiler_;
1451 }
1452
1453 const DexFile* GetDexFile() const {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001454 CHECK(dex_file_ != nullptr);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001455 return dex_file_;
1456 }
1457
Andreas Gampede7b4362014-07-28 18:38:57 -07001458 const std::vector<const DexFile*>& GetDexFiles() const {
1459 return dex_files_;
1460 }
1461
Mathieu Chartier90443472015-07-16 20:32:27 -07001462 void ForAll(size_t begin, size_t end, CompilationVisitor* visitor, size_t work_units)
1463 REQUIRES(!*Locks::mutator_lock_) {
Andreas Gampe3c060ad2018-01-22 13:07:49 -08001464 ForAllLambda(begin, end, [visitor](size_t index) { visitor->Visit(index); }, work_units);
1465 }
1466
1467 template <typename Fn>
1468 void ForAllLambda(size_t begin, size_t end, Fn fn, size_t work_units)
1469 REQUIRES(!*Locks::mutator_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001470 Thread* self = Thread::Current();
1471 self->AssertNoPendingException();
1472 CHECK_GT(work_units, 0U);
1473
Orion Hodson88591fe2018-03-06 13:35:43 +00001474 index_.store(begin, std::memory_order_relaxed);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001475 for (size_t i = 0; i < work_units; ++i) {
Andreas Gampe3c060ad2018-01-22 13:07:49 -08001476 thread_pool_->AddTask(self, new ForAllClosureLambda<Fn>(this, end, fn));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001477 }
1478 thread_pool_->StartWorkers(self);
1479
1480 // Ensure we're suspended while we're blocked waiting for the other threads to finish (worker
1481 // thread destructor's called below perform join).
1482 CHECK_NE(self->GetState(), kRunnable);
1483
1484 // Wait for all the worker threads to finish.
1485 thread_pool_->Wait(self, true, false);
Andreas Gampeace0dc12016-01-20 13:33:13 -08001486
1487 // And stop the workers accepting jobs.
1488 thread_pool_->StopWorkers(self);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001489 }
1490
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001491 size_t NextIndex() {
Orion Hodson88591fe2018-03-06 13:35:43 +00001492 return index_.fetch_add(1, std::memory_order_seq_cst);
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001493 }
1494
Brian Carlstrom7940e442013-07-12 13:46:57 -07001495 private:
Andreas Gampe3c060ad2018-01-22 13:07:49 -08001496 template <typename Fn>
1497 class ForAllClosureLambda : public Task {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001498 public:
Andreas Gampe3c060ad2018-01-22 13:07:49 -08001499 ForAllClosureLambda(ParallelCompilationManager* manager, size_t end, Fn fn)
Brian Carlstrom7940e442013-07-12 13:46:57 -07001500 : manager_(manager),
Brian Carlstrom7940e442013-07-12 13:46:57 -07001501 end_(end),
Andreas Gampe3c060ad2018-01-22 13:07:49 -08001502 fn_(fn) {}
Brian Carlstrom7940e442013-07-12 13:46:57 -07001503
Roland Levillainbbc6e7e2018-08-24 16:58:47 +01001504 void Run(Thread* self) override {
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001505 while (true) {
1506 const size_t index = manager_->NextIndex();
1507 if (UNLIKELY(index >= end_)) {
1508 break;
1509 }
Andreas Gampe3c060ad2018-01-22 13:07:49 -08001510 fn_(index);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001511 self->AssertNoPendingException();
1512 }
1513 }
1514
Roland Levillainbbc6e7e2018-08-24 16:58:47 +01001515 void Finalize() override {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001516 delete this;
1517 }
Brian Carlstrom0cd7ec22013-07-17 23:40:20 -07001518
Brian Carlstrom7940e442013-07-12 13:46:57 -07001519 private:
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001520 ParallelCompilationManager* const manager_;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001521 const size_t end_;
Andreas Gampe3c060ad2018-01-22 13:07:49 -08001522 Fn fn_;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001523 };
1524
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001525 AtomicInteger index_;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001526 ClassLinker* const class_linker_;
1527 const jobject class_loader_;
1528 CompilerDriver* const compiler_;
1529 const DexFile* const dex_file_;
Andreas Gampede7b4362014-07-28 18:38:57 -07001530 const std::vector<const DexFile*>& dex_files_;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001531 ThreadPool* const thread_pool_;
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001532
1533 DISALLOW_COPY_AND_ASSIGN(ParallelCompilationManager);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001534};
1535
Jeff Hao0e49b422013-11-08 12:16:56 -08001536// A fast version of SkipClass above if the class pointer is available
1537// that avoids the expensive FindInClassPath search.
Vladimir Marko28e012a2017-12-07 11:22:59 +00001538static bool SkipClass(jobject class_loader, const DexFile& dex_file, ObjPtr<mirror::Class> klass)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001539 REQUIRES_SHARED(Locks::mutator_lock_) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001540 DCHECK(klass != nullptr);
Jeff Hao0e49b422013-11-08 12:16:56 -08001541 const DexFile& original_dex_file = *klass->GetDexCache()->GetDexFile();
1542 if (&dex_file != &original_dex_file) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001543 if (class_loader == nullptr) {
David Sehr709b0702016-10-13 09:12:37 -07001544 LOG(WARNING) << "Skipping class " << klass->PrettyDescriptor() << " from "
Jeff Hao0e49b422013-11-08 12:16:56 -08001545 << dex_file.GetLocation() << " previously found in "
1546 << original_dex_file.GetLocation();
1547 }
1548 return true;
1549 }
1550 return false;
1551}
1552
Mathieu Chartier70b63482014-06-27 17:19:04 -07001553static void CheckAndClearResolveException(Thread* self)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001554 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartier70b63482014-06-27 17:19:04 -07001555 CHECK(self->IsExceptionPending());
Nicolas Geoffray14691c52015-03-05 10:40:17 +00001556 mirror::Throwable* exception = self->GetException();
Ian Rogers1ff3c982014-08-12 02:30:58 -07001557 std::string temp;
1558 const char* descriptor = exception->GetClass()->GetDescriptor(&temp);
1559 const char* expected_exceptions[] = {
1560 "Ljava/lang/IllegalAccessError;",
1561 "Ljava/lang/IncompatibleClassChangeError;",
1562 "Ljava/lang/InstantiationError;",
Brian Carlstrom898fcb52014-08-25 23:07:30 -07001563 "Ljava/lang/LinkageError;",
Ian Rogers1ff3c982014-08-12 02:30:58 -07001564 "Ljava/lang/NoClassDefFoundError;",
1565 "Ljava/lang/NoSuchFieldError;",
1566 "Ljava/lang/NoSuchMethodError;"
1567 };
1568 bool found = false;
1569 for (size_t i = 0; (found == false) && (i < arraysize(expected_exceptions)); ++i) {
1570 if (strcmp(descriptor, expected_exceptions[i]) == 0) {
1571 found = true;
1572 }
1573 }
1574 if (!found) {
Brian Carlstrom898fcb52014-08-25 23:07:30 -07001575 LOG(FATAL) << "Unexpected exception " << exception->Dump();
Mathieu Chartier70b63482014-06-27 17:19:04 -07001576 }
1577 self->ClearException();
1578}
1579
Mathieu Chartier90443472015-07-16 20:32:27 -07001580class ResolveClassFieldsAndMethodsVisitor : public CompilationVisitor {
1581 public:
1582 explicit ResolveClassFieldsAndMethodsVisitor(const ParallelCompilationManager* manager)
1583 : manager_(manager) {}
Brian Carlstrom7940e442013-07-12 13:46:57 -07001584
Roland Levillainbbc6e7e2018-08-24 16:58:47 +01001585 void Visit(size_t class_def_index) override REQUIRES(!Locks::mutator_lock_) {
Andreas Gampe9b827ab2017-12-07 19:32:48 -08001586 ScopedTrace trace(__FUNCTION__);
Mathieu Chartier90443472015-07-16 20:32:27 -07001587 Thread* const self = Thread::Current();
1588 jobject jclass_loader = manager_->GetClassLoader();
1589 const DexFile& dex_file = *manager_->GetDexFile();
1590 ClassLinker* class_linker = manager_->GetClassLinker();
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001591
Mathieu Chartier90443472015-07-16 20:32:27 -07001592 // Method and Field are the worst. We can't resolve without either
1593 // context from the code use (to disambiguate virtual vs direct
1594 // method and instance vs static field) or from class
1595 // definitions. While the compiler will resolve what it can as it
1596 // needs it, here we try to resolve fields and methods used in class
1597 // definitions, since many of them many never be referenced by
1598 // generated code.
1599 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
1600 ScopedObjectAccess soa(self);
1601 StackHandleScope<2> hs(soa.Self());
1602 Handle<mirror::ClassLoader> class_loader(
Mathieu Chartier0795f232016-09-27 18:43:30 -07001603 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader)));
Mathieu Chartier673ed3d2015-08-28 14:56:43 -07001604 Handle<mirror::DexCache> dex_cache(hs.NewHandle(class_linker->FindDexCache(
Vladimir Markocd556b02017-02-03 11:47:34 +00001605 soa.Self(), dex_file)));
Mathieu Chartier90443472015-07-16 20:32:27 -07001606 // Resolve the class.
Vladimir Marko28e012a2017-12-07 11:22:59 +00001607 ObjPtr<mirror::Class> klass =
Vladimir Marko666ee3d2017-12-11 18:37:36 +00001608 class_linker->ResolveType(class_def.class_idx_, dex_cache, class_loader);
Mathieu Chartier90443472015-07-16 20:32:27 -07001609 bool resolve_fields_and_methods;
1610 if (klass == nullptr) {
1611 // Class couldn't be resolved, for example, super-class is in a different dex file. Don't
1612 // attempt to resolve methods and fields when there is no declaring class.
1613 CheckAndClearResolveException(soa.Self());
1614 resolve_fields_and_methods = false;
1615 } else {
1616 // We successfully resolved a class, should we skip it?
1617 if (SkipClass(jclass_loader, dex_file, klass)) {
1618 return;
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001619 }
Mathieu Chartier90443472015-07-16 20:32:27 -07001620 // We want to resolve the methods and fields eagerly.
1621 resolve_fields_and_methods = true;
Ian Rogers68b56852014-08-29 20:19:11 -07001622 }
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001623
Vladimir Markoc1c34522018-10-31 13:56:49 +00001624 if (resolve_fields_and_methods) {
1625 ClassAccessor accessor(dex_file, class_def_index);
1626 // Optionally resolve fields and methods and figure out if we need a constructor barrier.
1627 auto method_visitor = [&](const ClassAccessor::Method& method)
1628 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001629 ArtMethod* resolved = class_linker->ResolveMethod<ClassLinker::ResolveMode::kNoChecks>(
1630 method.GetIndex(),
1631 dex_cache,
1632 class_loader,
Vladimir Markoc1c34522018-10-31 13:56:49 +00001633 /*referrer=*/ nullptr,
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001634 method.GetInvokeType(class_def.access_flags_));
1635 if (resolved == nullptr) {
1636 CheckAndClearResolveException(soa.Self());
Mathieu Chartier90443472015-07-16 20:32:27 -07001637 }
Vladimir Markoc1c34522018-10-31 13:56:49 +00001638 };
1639 accessor.VisitFieldsAndMethods(
1640 // static fields
1641 [&](ClassAccessor::Field& field) REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001642 ArtField* resolved = class_linker->ResolveField(
Vladimir Markoc1c34522018-10-31 13:56:49 +00001643 field.GetIndex(), dex_cache, class_loader, /*is_static=*/ true);
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001644 if (resolved == nullptr) {
1645 CheckAndClearResolveException(soa.Self());
1646 }
Vladimir Markoc1c34522018-10-31 13:56:49 +00001647 },
1648 // instance fields
1649 [&](ClassAccessor::Field& field) REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001650 ArtField* resolved = class_linker->ResolveField(
Vladimir Markoc1c34522018-10-31 13:56:49 +00001651 field.GetIndex(), dex_cache, class_loader, /*is_static=*/ false);
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001652 if (resolved == nullptr) {
1653 CheckAndClearResolveException(soa.Self());
1654 }
Vladimir Markoc1c34522018-10-31 13:56:49 +00001655 },
1656 /*direct_method_visitor=*/ method_visitor,
1657 /*virtual_method_visitor=*/ method_visitor);
1658 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001659 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001660
Mathieu Chartier90443472015-07-16 20:32:27 -07001661 private:
1662 const ParallelCompilationManager* const manager_;
1663};
1664
1665class ResolveTypeVisitor : public CompilationVisitor {
1666 public:
1667 explicit ResolveTypeVisitor(const ParallelCompilationManager* manager) : manager_(manager) {
1668 }
Roland Levillainbbc6e7e2018-08-24 16:58:47 +01001669 void Visit(size_t type_idx) override REQUIRES(!Locks::mutator_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001670 // Class derived values are more complicated, they require the linker and loader.
Mathieu Chartier90443472015-07-16 20:32:27 -07001671 ScopedObjectAccess soa(Thread::Current());
1672 ClassLinker* class_linker = manager_->GetClassLinker();
1673 const DexFile& dex_file = *manager_->GetDexFile();
1674 StackHandleScope<2> hs(soa.Self());
Mathieu Chartier90443472015-07-16 20:32:27 -07001675 Handle<mirror::ClassLoader> class_loader(
Mathieu Chartier0795f232016-09-27 18:43:30 -07001676 hs.NewHandle(soa.Decode<mirror::ClassLoader>(manager_->GetClassLoader())));
Mathieu Chartierd57d4542015-10-14 10:55:30 -07001677 Handle<mirror::DexCache> dex_cache(hs.NewHandle(class_linker->RegisterDexFile(
1678 dex_file,
Mathieu Chartierf284d442016-06-02 11:48:30 -07001679 class_loader.Get())));
Andreas Gampefa4333d2017-02-14 11:10:34 -08001680 ObjPtr<mirror::Class> klass = (dex_cache != nullptr)
Vladimir Marko666ee3d2017-12-11 18:37:36 +00001681 ? class_linker->ResolveType(dex::TypeIndex(type_idx), dex_cache, class_loader)
Vladimir Markocd556b02017-02-03 11:47:34 +00001682 : nullptr;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001683
Mathieu Chartier90443472015-07-16 20:32:27 -07001684 if (klass == nullptr) {
1685 soa.Self()->AssertPendingException();
1686 mirror::Throwable* exception = soa.Self()->GetException();
1687 VLOG(compiler) << "Exception during type resolution: " << exception->Dump();
1688 if (exception->GetClass()->DescriptorEquals("Ljava/lang/OutOfMemoryError;")) {
1689 // There's little point continuing compilation if the heap is exhausted.
1690 LOG(FATAL) << "Out of memory during type resolution for compilation";
1691 }
1692 soa.Self()->ClearException();
Ian Rogersa436fde2013-08-27 23:34:06 -07001693 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001694 }
Mathieu Chartier90443472015-07-16 20:32:27 -07001695
1696 private:
1697 const ParallelCompilationManager* const manager_;
1698};
Brian Carlstrom7940e442013-07-12 13:46:57 -07001699
Andreas Gampeace0dc12016-01-20 13:33:13 -08001700void CompilerDriver::ResolveDexFile(jobject class_loader,
1701 const DexFile& dex_file,
Andreas Gampede7b4362014-07-28 18:38:57 -07001702 const std::vector<const DexFile*>& dex_files,
Andreas Gampeace0dc12016-01-20 13:33:13 -08001703 ThreadPool* thread_pool,
1704 size_t thread_count,
1705 TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001706 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
1707
1708 // TODO: we could resolve strings here, although the string table is largely filled with class
1709 // and method names.
1710
Andreas Gampede7b4362014-07-28 18:38:57 -07001711 ParallelCompilationManager context(class_linker, class_loader, this, &dex_file, dex_files,
1712 thread_pool);
Vladimir Markoaad75c62016-10-03 08:46:48 +00001713 if (GetCompilerOptions().IsBootImage()) {
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001714 // For images we resolve all types, such as array, whereas for applications just those with
1715 // classdefs are resolved by ResolveClassFieldsAndMethods.
Mathieu Chartierf5997b42014-06-20 10:37:54 -07001716 TimingLogger::ScopedTiming t("Resolve Types", timings);
Mathieu Chartier90443472015-07-16 20:32:27 -07001717 ResolveTypeVisitor visitor(&context);
Andreas Gampeace0dc12016-01-20 13:33:13 -08001718 context.ForAll(0, dex_file.NumTypeIds(), &visitor, thread_count);
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001719 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001720
Mathieu Chartierf5997b42014-06-20 10:37:54 -07001721 TimingLogger::ScopedTiming t("Resolve MethodsAndFields", timings);
Mathieu Chartier90443472015-07-16 20:32:27 -07001722 ResolveClassFieldsAndMethodsVisitor visitor(&context);
Andreas Gampeace0dc12016-01-20 13:33:13 -08001723 context.ForAll(0, dex_file.NumClassDefs(), &visitor, thread_count);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001724}
1725
Andreas Gampeace0dc12016-01-20 13:33:13 -08001726void CompilerDriver::SetVerified(jobject class_loader,
1727 const std::vector<const DexFile*>& dex_files,
1728 TimingLogger* timings) {
1729 // This can be run in parallel.
Mathieu Chartier90443472015-07-16 20:32:27 -07001730 for (const DexFile* dex_file : dex_files) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001731 CHECK(dex_file != nullptr);
Andreas Gampeace0dc12016-01-20 13:33:13 -08001732 SetVerifiedDexFile(class_loader,
1733 *dex_file,
1734 dex_files,
1735 parallel_thread_pool_.get(),
1736 parallel_thread_count_,
1737 timings);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001738 }
1739}
1740
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001741static void LoadAndUpdateStatus(const ClassAccessor& accessor,
Vladimir Marko2c64a832018-01-04 11:31:56 +00001742 ClassStatus status,
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001743 Handle<mirror::ClassLoader> class_loader,
1744 Thread* self)
1745 REQUIRES_SHARED(Locks::mutator_lock_) {
1746 StackHandleScope<1> hs(self);
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001747 const char* descriptor = accessor.GetDescriptor();
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001748 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
1749 Handle<mirror::Class> cls(hs.NewHandle<mirror::Class>(
1750 class_linker->FindClass(self, descriptor, class_loader)));
Andreas Gampefa4333d2017-02-14 11:10:34 -08001751 if (cls != nullptr) {
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001752 // Check that the class is resolved with the current dex file. We might get
1753 // a boot image class, or a class in a different dex file for multidex, and
1754 // we should not update the status in that case.
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001755 if (&cls->GetDexFile() == &accessor.GetDexFile()) {
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001756 ObjectLock<mirror::Class> lock(self, cls);
1757 mirror::Class::SetStatus(cls, status, self);
1758 }
1759 } else {
1760 DCHECK(self->IsExceptionPending());
1761 self->ClearException();
1762 }
1763}
1764
Nicolas Geoffray74981052017-01-16 17:54:09 +00001765bool CompilerDriver::FastVerify(jobject jclass_loader,
1766 const std::vector<const DexFile*>& dex_files,
1767 TimingLogger* timings) {
Nicolas Geoffrayb0bbe8e2016-11-19 10:42:37 +00001768 verifier::VerifierDeps* verifier_deps =
1769 Runtime::Current()->GetCompilerCallbacks()->GetVerifierDeps();
Mathieu Chartier72041a02017-07-14 18:23:25 -07001770 // If there exist VerifierDeps that aren't the ones we just created to output, use them to verify.
1771 if (verifier_deps == nullptr || verifier_deps->OutputOnly()) {
Nicolas Geoffray74981052017-01-16 17:54:09 +00001772 return false;
1773 }
1774 TimingLogger::ScopedTiming t("Fast Verify", timings);
1775 ScopedObjectAccess soa(Thread::Current());
1776 StackHandleScope<2> hs(soa.Self());
1777 Handle<mirror::ClassLoader> class_loader(
1778 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader)));
Nicolas Geoffray74981052017-01-16 17:54:09 +00001779 if (!verifier_deps->ValidateDependencies(class_loader, soa.Self())) {
1780 return false;
1781 }
1782
Nicolas Geoffray49cda062017-04-21 13:08:25 +01001783 bool compiler_only_verifies = !GetCompilerOptions().IsAnyCompilationEnabled();
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001784
Nicolas Geoffray74981052017-01-16 17:54:09 +00001785 // We successfully validated the dependencies, now update class status
1786 // of verified classes. Note that the dependencies also record which classes
1787 // could not be fully verified; we could try again, but that would hurt verification
1788 // time. So instead we assume these classes still need to be verified at
1789 // runtime.
1790 for (const DexFile* dex_file : dex_files) {
Mathieu Chartierbf755fe2017-08-01 13:42:56 -07001791 // Fetch the list of unverified classes.
1792 const std::set<dex::TypeIndex>& unverified_classes =
Nicolas Geoffray74981052017-01-16 17:54:09 +00001793 verifier_deps->GetUnverifiedClasses(*dex_file);
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001794 for (ClassAccessor accessor : dex_file->GetClasses()) {
1795 if (unverified_classes.find(accessor.GetClassIdx()) == unverified_classes.end()) {
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001796 if (compiler_only_verifies) {
Nicolas Geoffray74981052017-01-16 17:54:09 +00001797 // Just update the compiled_classes_ map. The compiler doesn't need to resolve
1798 // the type.
Mathieu Chartier18e26872018-06-04 17:19:02 -07001799 ClassReference ref(dex_file, accessor.GetClassDefIndex());
Mathieu Chartier2eabc612018-05-25 14:31:16 -07001800 const ClassStatus existing = ClassStatus::kNotReady;
Mathieu Chartier1a088d42017-07-18 11:43:57 -07001801 ClassStateTable::InsertResult result =
Vladimir Marko2c64a832018-01-04 11:31:56 +00001802 compiled_classes_.Insert(ref, existing, ClassStatus::kVerified);
Mathieu Chartier2eabc612018-05-25 14:31:16 -07001803 CHECK_EQ(result, ClassStateTable::kInsertResultSuccess) << ref.dex_file->GetLocation();
Nicolas Geoffray74981052017-01-16 17:54:09 +00001804 } else {
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001805 // Update the class status, so later compilation stages know they don't need to verify
Nicolas Geoffray74981052017-01-16 17:54:09 +00001806 // the class.
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001807 LoadAndUpdateStatus(accessor, ClassStatus::kVerified, class_loader, soa.Self());
Nicolas Geoffray74981052017-01-16 17:54:09 +00001808 // Create `VerifiedMethod`s for each methods, the compiler expects one for
1809 // quickening or compiling.
1810 // Note that this means:
1811 // - We're only going to compile methods that did verify.
1812 // - Quickening will not do checkcast ellision.
1813 // TODO(ngeoffray): Reconsider this once we refactor compiler filters.
Mathieu Chartier0d896bd2018-05-25 00:20:27 -07001814 for (const ClassAccessor::Method& method : accessor.GetMethods()) {
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001815 verification_results_->CreateVerifiedMethodFor(method.GetReference());
Mathieu Chartier0d896bd2018-05-25 00:20:27 -07001816 }
Nicolas Geoffray6bb7f1b2016-11-03 10:52:49 +00001817 }
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001818 } else if (!compiler_only_verifies) {
1819 // Make sure later compilation stages know they should not try to verify
1820 // this class again.
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07001821 LoadAndUpdateStatus(accessor,
Vladimir Marko2c64a832018-01-04 11:31:56 +00001822 ClassStatus::kRetryVerificationAtRuntime,
Nicolas Geoffray0a27fd02017-01-25 16:18:54 +00001823 class_loader,
1824 soa.Self());
Nicolas Geoffray6bb7f1b2016-11-03 10:52:49 +00001825 }
Nicolas Geoffray6bb7f1b2016-11-03 10:52:49 +00001826 }
1827 }
Nicolas Geoffray74981052017-01-16 17:54:09 +00001828 return true;
1829}
1830
1831void CompilerDriver::Verify(jobject jclass_loader,
1832 const std::vector<const DexFile*>& dex_files,
1833 TimingLogger* timings) {
1834 if (FastVerify(jclass_loader, dex_files, timings)) {
1835 return;
1836 }
Nicolas Geoffray6bb7f1b2016-11-03 10:52:49 +00001837
Nicolas Geoffrayb0bbe8e2016-11-19 10:42:37 +00001838 // If there is no existing `verifier_deps` (because of non-existing vdex), or
1839 // the existing `verifier_deps` is not valid anymore, create a new one for
Nicolas Geoffray6bb7f1b2016-11-03 10:52:49 +00001840 // non boot image compilation. The verifier will need it to record the new dependencies.
1841 // Then dex2oat can update the vdex file with these new dependencies.
1842 if (!GetCompilerOptions().IsBootImage()) {
Mathieu Chartier72041a02017-07-14 18:23:25 -07001843 // Dex2oat creates the verifier deps.
Nicolas Geoffray340dafa2016-11-18 16:03:10 +00001844 // Create the main VerifierDeps, and set it to this thread.
Mathieu Chartier72041a02017-07-14 18:23:25 -07001845 verifier::VerifierDeps* verifier_deps =
1846 Runtime::Current()->GetCompilerCallbacks()->GetVerifierDeps();
1847 CHECK(verifier_deps != nullptr);
Nicolas Geoffrayb0bbe8e2016-11-19 10:42:37 +00001848 Thread::Current()->SetVerifierDeps(verifier_deps);
Nicolas Geoffray340dafa2016-11-18 16:03:10 +00001849 // Create per-thread VerifierDeps to avoid contention on the main one.
1850 // We will merge them after verification.
1851 for (ThreadPoolWorker* worker : parallel_thread_pool_->GetWorkers()) {
Vladimir Marko213ee2d2018-06-22 11:56:34 +01001852 worker->GetThread()->SetVerifierDeps(
1853 new verifier::VerifierDeps(GetCompilerOptions().GetDexFilesForOatFile()));
Nicolas Geoffray340dafa2016-11-18 16:03:10 +00001854 }
Nicolas Geoffray6bb7f1b2016-11-03 10:52:49 +00001855 }
Nicolas Geoffray74981052017-01-16 17:54:09 +00001856
Nicolas Geoffray46847392017-04-28 14:56:39 +01001857 // Verification updates VerifierDeps and needs to run single-threaded to be deterministic.
1858 bool force_determinism = GetCompilerOptions().IsForceDeterminism();
1859 ThreadPool* verify_thread_pool =
1860 force_determinism ? single_thread_pool_.get() : parallel_thread_pool_.get();
1861 size_t verify_thread_count = force_determinism ? 1U : parallel_thread_count_;
Mathieu Chartier90443472015-07-16 20:32:27 -07001862 for (const DexFile* dex_file : dex_files) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001863 CHECK(dex_file != nullptr);
Nicolas Geoffray6bb7f1b2016-11-03 10:52:49 +00001864 VerifyDexFile(jclass_loader,
Andreas Gampeace0dc12016-01-20 13:33:13 -08001865 *dex_file,
1866 dex_files,
Nicolas Geoffray46847392017-04-28 14:56:39 +01001867 verify_thread_pool,
1868 verify_thread_count,
Andreas Gampeace0dc12016-01-20 13:33:13 -08001869 timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001870 }
Nicolas Geoffray340dafa2016-11-18 16:03:10 +00001871
1872 if (!GetCompilerOptions().IsBootImage()) {
Nicolas Geoffray340dafa2016-11-18 16:03:10 +00001873 // Merge all VerifierDeps into the main one.
Nicolas Geoffray74981052017-01-16 17:54:09 +00001874 verifier::VerifierDeps* verifier_deps = Thread::Current()->GetVerifierDeps();
Nicolas Geoffray340dafa2016-11-18 16:03:10 +00001875 for (ThreadPoolWorker* worker : parallel_thread_pool_->GetWorkers()) {
1876 verifier::VerifierDeps* thread_deps = worker->GetThread()->GetVerifierDeps();
1877 worker->GetThread()->SetVerifierDeps(nullptr);
Vladimir Marko213ee2d2018-06-22 11:56:34 +01001878 verifier_deps->MergeWith(*thread_deps, GetCompilerOptions().GetDexFilesForOatFile());
Nicolas Geoffray340dafa2016-11-18 16:03:10 +00001879 delete thread_deps;
1880 }
1881 Thread::Current()->SetVerifierDeps(nullptr);
1882 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001883}
1884
Mathieu Chartier90443472015-07-16 20:32:27 -07001885class VerifyClassVisitor : public CompilationVisitor {
1886 public:
Andreas Gampe5fd66d02016-09-12 20:22:19 -07001887 VerifyClassVisitor(const ParallelCompilationManager* manager, verifier::HardFailLogMode log_level)
Andreas Gampe6cc23ac2018-08-24 15:22:43 -07001888 : manager_(manager),
1889 log_level_(log_level),
1890 sdk_version_(Runtime::Current()->GetTargetSdkVersion()) {}
Brian Carlstrom7940e442013-07-12 13:46:57 -07001891
Roland Levillainf73caca2018-08-24 17:19:07 +01001892 void Visit(size_t class_def_index) REQUIRES(!Locks::mutator_lock_) override {
Andreas Gampe9b827ab2017-12-07 19:32:48 -08001893 ScopedTrace trace(__FUNCTION__);
Mathieu Chartier90443472015-07-16 20:32:27 -07001894 ScopedObjectAccess soa(Thread::Current());
1895 const DexFile& dex_file = *manager_->GetDexFile();
1896 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
1897 const char* descriptor = dex_file.GetClassDescriptor(class_def);
1898 ClassLinker* class_linker = manager_->GetClassLinker();
1899 jobject jclass_loader = manager_->GetClassLoader();
1900 StackHandleScope<3> hs(soa.Self());
1901 Handle<mirror::ClassLoader> class_loader(
Mathieu Chartier0795f232016-09-27 18:43:30 -07001902 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader)));
Mathieu Chartier90443472015-07-16 20:32:27 -07001903 Handle<mirror::Class> klass(
1904 hs.NewHandle(class_linker->FindClass(soa.Self(), descriptor, class_loader)));
Andreas Gampe6d7abbd2017-04-24 13:19:09 -07001905 verifier::FailureKind failure_kind;
Andreas Gampefa4333d2017-02-14 11:10:34 -08001906 if (klass == nullptr) {
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001907 CHECK(soa.Self()->IsExceptionPending());
1908 soa.Self()->ClearException();
Mathieu Chartier90443472015-07-16 20:32:27 -07001909
1910 /*
1911 * At compile time, we can still structurally verify the class even if FindClass fails.
1912 * This is to ensure the class is structurally sound for compilation. An unsound class
1913 * will be rejected by the verifier and later skipped during compilation in the compiler.
1914 */
Mathieu Chartier673ed3d2015-08-28 14:56:43 -07001915 Handle<mirror::DexCache> dex_cache(hs.NewHandle(class_linker->FindDexCache(
Vladimir Markocd556b02017-02-03 11:47:34 +00001916 soa.Self(), dex_file)));
Mathieu Chartier90443472015-07-16 20:32:27 -07001917 std::string error_msg;
Nicolas Geoffray08025182016-10-25 17:20:18 +01001918 failure_kind =
1919 verifier::MethodVerifier::VerifyClass(soa.Self(),
Andreas Gampeec6e6c12015-11-05 20:39:56 -08001920 &dex_file,
1921 dex_cache,
1922 class_loader,
David Brazdil15fc7292016-09-02 14:13:18 +01001923 class_def,
Andreas Gampe53e32d12015-12-09 21:03:23 -08001924 Runtime::Current()->GetCompilerCallbacks(),
Andreas Gampeec6e6c12015-11-05 20:39:56 -08001925 true /* allow soft failures */,
Andreas Gampe7fe30232016-03-25 16:58:00 -07001926 log_level_,
Andreas Gampe6cc23ac2018-08-24 15:22:43 -07001927 sdk_version_,
Nicolas Geoffray08025182016-10-25 17:20:18 +01001928 &error_msg);
Andreas Gampe6d7abbd2017-04-24 13:19:09 -07001929 if (failure_kind == verifier::FailureKind::kHardFailure) {
Mathieu Chartier90443472015-07-16 20:32:27 -07001930 LOG(ERROR) << "Verification failed on class " << PrettyDescriptor(descriptor)
1931 << " because: " << error_msg;
1932 manager_->GetCompiler()->SetHadHardVerifierFailure();
Andreas Gampef39208f2017-10-19 15:06:59 -07001933 } else if (failure_kind == verifier::FailureKind::kSoftFailure) {
1934 manager_->GetCompiler()->AddSoftVerifierFailure();
Nicolas Geoffray7cc3ae52017-03-07 14:33:37 +00001935 } else {
1936 // Force a soft failure for the VerifierDeps. This is a sanity measure, as
1937 // the vdex file already records that the class hasn't been resolved. It avoids
1938 // trying to do future verification optimizations when processing the vdex file.
Andreas Gampef39208f2017-10-19 15:06:59 -07001939 DCHECK(failure_kind == verifier::FailureKind::kNoFailure) << failure_kind;
Andreas Gampe6d7abbd2017-04-24 13:19:09 -07001940 failure_kind = verifier::FailureKind::kSoftFailure;
Mathieu Chartier90443472015-07-16 20:32:27 -07001941 }
Andreas Gampebb30d5d2018-04-23 09:59:25 -07001942 } else if (&klass->GetDexFile() != &dex_file) {
1943 // Skip a duplicate class (as the resolved class is from another, earlier dex file).
1944 return; // Do not update state.
Mathieu Chartier90443472015-07-16 20:32:27 -07001945 } else if (!SkipClass(jclass_loader, dex_file, klass.Get())) {
David Sehr709b0702016-10-13 09:12:37 -07001946 CHECK(klass->IsResolved()) << klass->PrettyClass();
Nicolas Geoffray08025182016-10-25 17:20:18 +01001947 failure_kind = class_linker->VerifyClass(soa.Self(), klass, log_level_);
Mathieu Chartier90443472015-07-16 20:32:27 -07001948
1949 if (klass->IsErroneous()) {
1950 // ClassLinker::VerifyClass throws, which isn't useful in the compiler.
1951 CHECK(soa.Self()->IsExceptionPending());
1952 soa.Self()->ClearException();
1953 manager_->GetCompiler()->SetHadHardVerifierFailure();
Andreas Gampef39208f2017-10-19 15:06:59 -07001954 } else if (failure_kind == verifier::FailureKind::kSoftFailure) {
1955 manager_->GetCompiler()->AddSoftVerifierFailure();
Mathieu Chartier90443472015-07-16 20:32:27 -07001956 }
1957
Nicolas Geoffray7cc3ae52017-03-07 14:33:37 +00001958 CHECK(klass->ShouldVerifyAtRuntime() || klass->IsVerified() || klass->IsErroneous())
David Sehr709b0702016-10-13 09:12:37 -07001959 << klass->PrettyDescriptor() << ": state=" << klass->GetStatus();
Mathieu Chartier90443472015-07-16 20:32:27 -07001960
Nicolas Geoffrayc7da1d62017-04-19 09:36:24 +01001961 // Class has a meaningful status for the compiler now, record it.
1962 ClassReference ref(manager_->GetDexFile(), class_def_index);
1963 manager_->GetCompiler()->RecordClassStatus(ref, klass->GetStatus());
1964
Andreas Gamped278cb42017-11-22 14:13:00 -08001965 // It is *very* problematic if there are resolution errors in the boot classpath.
1966 //
1967 // It is also bad if classes fail verification. For example, we rely on things working
1968 // OK without verification when the decryption dialog is brought up. It is thus highly
1969 // recommended to compile the boot classpath with
1970 // --abort-on-hard-verifier-error --abort-on-soft-verifier-error
1971 // which is the default build system configuration.
Narayan Kamathe3eae5e2016-10-27 11:47:30 +01001972 if (kIsDebugBuild) {
Orion Hodsonc5e0d3f2017-08-22 19:00:04 +01001973 if (manager_->GetCompiler()->GetCompilerOptions().IsBootImage()) {
Andreas Gamped278cb42017-11-22 14:13:00 -08001974 if (!klass->IsResolved() || klass->IsErroneous()) {
Andreas Gampe12fadcd2017-08-03 05:06:28 -07001975 LOG(FATAL) << "Boot classpath class " << klass->PrettyClass()
Andreas Gamped278cb42017-11-22 14:13:00 -08001976 << " failed to resolve/is erroneous: state= " << klass->GetStatus();
1977 UNREACHABLE();
Andreas Gampe12fadcd2017-08-03 05:06:28 -07001978 }
Narayan Kamathe3eae5e2016-10-27 11:47:30 +01001979 }
Nicolas Geoffray7cc3ae52017-03-07 14:33:37 +00001980 if (klass->IsVerified()) {
Andreas Gampe6d7abbd2017-04-24 13:19:09 -07001981 DCHECK_EQ(failure_kind, verifier::FailureKind::kNoFailure);
Nicolas Geoffray7cc3ae52017-03-07 14:33:37 +00001982 } else if (klass->ShouldVerifyAtRuntime()) {
Andreas Gampe6d7abbd2017-04-24 13:19:09 -07001983 DCHECK_EQ(failure_kind, verifier::FailureKind::kSoftFailure);
Nicolas Geoffray7cc3ae52017-03-07 14:33:37 +00001984 } else {
Andreas Gampe6d7abbd2017-04-24 13:19:09 -07001985 DCHECK_EQ(failure_kind, verifier::FailureKind::kHardFailure);
Nicolas Geoffray7cc3ae52017-03-07 14:33:37 +00001986 }
Narayan Kamathe3eae5e2016-10-27 11:47:30 +01001987 }
Nicolas Geoffray08025182016-10-25 17:20:18 +01001988 } else {
1989 // Make the skip a soft failure, essentially being considered as verify at runtime.
Andreas Gampe6d7abbd2017-04-24 13:19:09 -07001990 failure_kind = verifier::FailureKind::kSoftFailure;
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001991 }
Nicolas Geoffray08025182016-10-25 17:20:18 +01001992 verifier::VerifierDeps::MaybeRecordVerificationStatus(
1993 dex_file, class_def.class_idx_, failure_kind);
Mathieu Chartier90443472015-07-16 20:32:27 -07001994 soa.Self()->AssertNoPendingException();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001995 }
Mathieu Chartier90443472015-07-16 20:32:27 -07001996
1997 private:
1998 const ParallelCompilationManager* const manager_;
Andreas Gampe5fd66d02016-09-12 20:22:19 -07001999 const verifier::HardFailLogMode log_level_;
Andreas Gampe6cc23ac2018-08-24 15:22:43 -07002000 const uint32_t sdk_version_;
Mathieu Chartier90443472015-07-16 20:32:27 -07002001};
Brian Carlstrom7940e442013-07-12 13:46:57 -07002002
Andreas Gampeace0dc12016-01-20 13:33:13 -08002003void CompilerDriver::VerifyDexFile(jobject class_loader,
2004 const DexFile& dex_file,
Andreas Gampede7b4362014-07-28 18:38:57 -07002005 const std::vector<const DexFile*>& dex_files,
Andreas Gampeace0dc12016-01-20 13:33:13 -08002006 ThreadPool* thread_pool,
2007 size_t thread_count,
2008 TimingLogger* timings) {
Mathieu Chartierf5997b42014-06-20 10:37:54 -07002009 TimingLogger::ScopedTiming t("Verify Dex File", timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002010 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Andreas Gampede7b4362014-07-28 18:38:57 -07002011 ParallelCompilationManager context(class_linker, class_loader, this, &dex_file, dex_files,
2012 thread_pool);
Andreas Gampef39208f2017-10-19 15:06:59 -07002013 bool abort_on_verifier_failures = GetCompilerOptions().AbortOnHardVerifierFailure()
2014 || GetCompilerOptions().AbortOnSoftVerifierFailure();
2015 verifier::HardFailLogMode log_level = abort_on_verifier_failures
Andreas Gampe5fd66d02016-09-12 20:22:19 -07002016 ? verifier::HardFailLogMode::kLogInternalFatal
2017 : verifier::HardFailLogMode::kLogWarning;
Andreas Gampe7fe30232016-03-25 16:58:00 -07002018 VerifyClassVisitor visitor(&context, log_level);
Andreas Gampeace0dc12016-01-20 13:33:13 -08002019 context.ForAll(0, dex_file.NumClassDefs(), &visitor, thread_count);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002020}
2021
Mathieu Chartier90443472015-07-16 20:32:27 -07002022class SetVerifiedClassVisitor : public CompilationVisitor {
2023 public:
2024 explicit SetVerifiedClassVisitor(const ParallelCompilationManager* manager) : manager_(manager) {}
2025
Roland Levillainf73caca2018-08-24 17:19:07 +01002026 void Visit(size_t class_def_index) REQUIRES(!Locks::mutator_lock_) override {
Andreas Gampe9b827ab2017-12-07 19:32:48 -08002027 ScopedTrace trace(__FUNCTION__);
Mathieu Chartier90443472015-07-16 20:32:27 -07002028 ScopedObjectAccess soa(Thread::Current());
2029 const DexFile& dex_file = *manager_->GetDexFile();
2030 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
2031 const char* descriptor = dex_file.GetClassDescriptor(class_def);
2032 ClassLinker* class_linker = manager_->GetClassLinker();
2033 jobject jclass_loader = manager_->GetClassLoader();
2034 StackHandleScope<3> hs(soa.Self());
2035 Handle<mirror::ClassLoader> class_loader(
Mathieu Chartier0795f232016-09-27 18:43:30 -07002036 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader)));
Mathieu Chartier90443472015-07-16 20:32:27 -07002037 Handle<mirror::Class> klass(
2038 hs.NewHandle(class_linker->FindClass(soa.Self(), descriptor, class_loader)));
2039 // Class might have failed resolution. Then don't set it to verified.
Andreas Gampefa4333d2017-02-14 11:10:34 -08002040 if (klass != nullptr) {
Mathieu Chartier90443472015-07-16 20:32:27 -07002041 // Only do this if the class is resolved. If even resolution fails, quickening will go very,
2042 // very wrong.
Vladimir Marko72ab6842017-01-20 19:32:50 +00002043 if (klass->IsResolved() && !klass->IsErroneousResolved()) {
Vladimir Marko2c64a832018-01-04 11:31:56 +00002044 if (klass->GetStatus() < ClassStatus::kVerified) {
Mathieu Chartier90443472015-07-16 20:32:27 -07002045 ObjectLock<mirror::Class> lock(soa.Self(), klass);
2046 // Set class status to verified.
Vladimir Marko2c64a832018-01-04 11:31:56 +00002047 mirror::Class::SetStatus(klass, ClassStatus::kVerified, soa.Self());
Mathieu Chartier90443472015-07-16 20:32:27 -07002048 // Mark methods as pre-verified. If we don't do this, the interpreter will run with
2049 // access checks.
Vladimir Markoa0431112018-06-25 09:32:54 +01002050 InstructionSet instruction_set =
2051 manager_->GetCompiler()->GetCompilerOptions().GetInstructionSet();
2052 klass->SetSkipAccessChecksFlagOnAllMethods(GetInstructionSetPointerSize(instruction_set));
Igor Murashkindf707e42016-02-02 16:56:50 -08002053 klass->SetVerificationAttempted();
Mathieu Chartier90443472015-07-16 20:32:27 -07002054 }
2055 // Record the final class status if necessary.
2056 ClassReference ref(manager_->GetDexFile(), class_def_index);
2057 manager_->GetCompiler()->RecordClassStatus(ref, klass->GetStatus());
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002058 }
Mathieu Chartier90443472015-07-16 20:32:27 -07002059 } else {
2060 Thread* self = soa.Self();
2061 DCHECK(self->IsExceptionPending());
2062 self->ClearException();
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002063 }
2064 }
Mathieu Chartier90443472015-07-16 20:32:27 -07002065
2066 private:
2067 const ParallelCompilationManager* const manager_;
2068};
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002069
Andreas Gampeace0dc12016-01-20 13:33:13 -08002070void CompilerDriver::SetVerifiedDexFile(jobject class_loader,
2071 const DexFile& dex_file,
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002072 const std::vector<const DexFile*>& dex_files,
Andreas Gampeace0dc12016-01-20 13:33:13 -08002073 ThreadPool* thread_pool,
2074 size_t thread_count,
2075 TimingLogger* timings) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002076 TimingLogger::ScopedTiming t("Verify Dex File", timings);
Mathieu Chartier1a088d42017-07-18 11:43:57 -07002077 if (!compiled_classes_.HaveDexFile(&dex_file)) {
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002078 compiled_classes_.AddDexFile(&dex_file);
Mathieu Chartier1a088d42017-07-18 11:43:57 -07002079 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002080 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
2081 ParallelCompilationManager context(class_linker, class_loader, this, &dex_file, dex_files,
2082 thread_pool);
Mathieu Chartier90443472015-07-16 20:32:27 -07002083 SetVerifiedClassVisitor visitor(&context);
Andreas Gampeace0dc12016-01-20 13:33:13 -08002084 context.ForAll(0, dex_file.NumClassDefs(), &visitor, thread_count);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002085}
2086
Mathieu Chartier90443472015-07-16 20:32:27 -07002087class InitializeClassVisitor : public CompilationVisitor {
2088 public:
2089 explicit InitializeClassVisitor(const ParallelCompilationManager* manager) : manager_(manager) {}
Ian Rogersfc0e94b2013-09-23 23:51:32 -07002090
Roland Levillainbbc6e7e2018-08-24 16:58:47 +01002091 void Visit(size_t class_def_index) override {
Andreas Gampe9b827ab2017-12-07 19:32:48 -08002092 ScopedTrace trace(__FUNCTION__);
Mathieu Chartier90443472015-07-16 20:32:27 -07002093 jobject jclass_loader = manager_->GetClassLoader();
2094 const DexFile& dex_file = *manager_->GetDexFile();
2095 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
2096 const DexFile::TypeId& class_type_id = dex_file.GetTypeId(class_def.class_idx_);
2097 const char* descriptor = dex_file.StringDataByIdx(class_type_id.descriptor_idx_);
Jeff Hao0e49b422013-11-08 12:16:56 -08002098
Mathieu Chartier90443472015-07-16 20:32:27 -07002099 ScopedObjectAccess soa(Thread::Current());
2100 StackHandleScope<3> hs(soa.Self());
2101 Handle<mirror::ClassLoader> class_loader(
Mathieu Chartier0795f232016-09-27 18:43:30 -07002102 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader)));
Mathieu Chartier90443472015-07-16 20:32:27 -07002103 Handle<mirror::Class> klass(
2104 hs.NewHandle(manager_->GetClassLinker()->FindClass(soa.Self(), descriptor, class_loader)));
2105
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002106 if (klass != nullptr && !SkipClass(manager_->GetClassLoader(), dex_file, klass.Get())) {
2107 TryInitializeClass(klass, class_loader);
2108 }
2109 // Clear any class not found or verification exceptions.
2110 soa.Self()->ClearException();
2111 }
2112
2113 // A helper function for initializing klass.
2114 void TryInitializeClass(Handle<mirror::Class> klass, Handle<mirror::ClassLoader>& class_loader)
2115 REQUIRES_SHARED(Locks::mutator_lock_) {
2116 const DexFile& dex_file = klass->GetDexFile();
2117 const DexFile::ClassDef* class_def = klass->GetClassDef();
2118 const DexFile::TypeId& class_type_id = dex_file.GetTypeId(class_def->class_idx_);
2119 const char* descriptor = dex_file.StringDataByIdx(class_type_id.descriptor_idx_);
2120 ScopedObjectAccessUnchecked soa(Thread::Current());
2121 StackHandleScope<3> hs(soa.Self());
Mathieu Chartierdabeb3a2017-06-12 17:10:07 -07002122 const bool is_boot_image = manager_->GetCompiler()->GetCompilerOptions().IsBootImage();
Mathieu Chartier17498e52017-06-13 11:35:04 -07002123 const bool is_app_image = manager_->GetCompiler()->GetCompilerOptions().IsAppImage();
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002124
Vladimir Marko2c64a832018-01-04 11:31:56 +00002125 ClassStatus old_status = klass->GetStatus();
Mathieu Chartier1a088d42017-07-18 11:43:57 -07002126 // Don't initialize classes in boot space when compiling app image
2127 if (is_app_image && klass->IsBootStrapClassLoaded()) {
2128 // Also return early and don't store the class status in the recorded class status.
2129 return;
2130 }
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002131 // Only try to initialize classes that were successfully verified.
2132 if (klass->IsVerified()) {
2133 // Attempt to initialize the class but bail if we either need to initialize the super-class
2134 // or static fields.
Nicolas Geoffrayabadf022017-08-03 08:25:41 +00002135 manager_->GetClassLinker()->EnsureInitialized(soa.Self(), klass, false, false);
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002136 old_status = klass->GetStatus();
2137 if (!klass->IsInitialized()) {
2138 // We don't want non-trivial class initialization occurring on multiple threads due to
2139 // deadlock problems. For example, a parent class is initialized (holding its lock) that
2140 // refers to a sub-class in its static/class initializer causing it to try to acquire the
2141 // sub-class' lock. While on a second thread the sub-class is initialized (holding its lock)
2142 // after first initializing its parents, whose locks are acquired. This leads to a
2143 // parent-to-child and a child-to-parent lock ordering and consequent potential deadlock.
2144 // We need to use an ObjectLock due to potential suspension in the interpreting code. Rather
2145 // than use a special Object for the purpose we use the Class of java.lang.Class.
2146 Handle<mirror::Class> h_klass(hs.NewHandle(klass->GetClass()));
2147 ObjectLock<mirror::Class> lock(soa.Self(), h_klass);
2148 // Attempt to initialize allowing initialization of parent classes but still not static
2149 // fields.
Chang Xinge602b1c2017-06-30 11:55:01 -07002150 // Initialize dependencies first only for app image, to make TryInitialize recursive.
2151 bool is_superclass_initialized = !is_app_image ? true :
2152 InitializeDependencies(klass, class_loader, soa.Self());
2153 if (!is_app_image || (is_app_image && is_superclass_initialized)) {
Nicolas Geoffrayabadf022017-08-03 08:25:41 +00002154 manager_->GetClassLinker()->EnsureInitialized(soa.Self(), klass, false, true);
Chang Xinge602b1c2017-06-30 11:55:01 -07002155 }
2156 // Otherwise it's in app image but superclasses can't be initialized, no need to proceed.
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002157 old_status = klass->GetStatus();
Chang Xing70f689d2017-06-08 17:16:12 -07002158
Chris Wailes0c61be42018-09-26 17:27:34 -07002159 bool too_many_encoded_fields = !is_boot_image &&
2160 klass->NumStaticFields() > kMaxEncodedFields;
2161
Mathieu Chartierdabeb3a2017-06-12 17:10:07 -07002162 // If the class was not initialized, we can proceed to see if we can initialize static
Chang Xing70f689d2017-06-08 17:16:12 -07002163 // fields. Limit the max number of encoded fields.
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002164 if (!klass->IsInitialized() &&
Mathieu Chartier17498e52017-06-13 11:35:04 -07002165 (is_app_image || is_boot_image) &&
Chang Xinge602b1c2017-06-30 11:55:01 -07002166 is_superclass_initialized &&
Chang Xing70f689d2017-06-08 17:16:12 -07002167 !too_many_encoded_fields &&
Vladimir Markodc4bcce2018-06-21 16:15:42 +01002168 manager_->GetCompiler()->GetCompilerOptions().IsImageClass(descriptor)) {
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002169 bool can_init_static_fields = false;
Mathieu Chartierdabeb3a2017-06-12 17:10:07 -07002170 if (is_boot_image) {
Mathieu Chartier90443472015-07-16 20:32:27 -07002171 // We need to initialize static fields, we only do this for image classes that aren't
Mathieu Chartierdabeb3a2017-06-12 17:10:07 -07002172 // marked with the $NoPreloadHolder (which implies this should not be initialized
2173 // early).
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002174 can_init_static_fields = !StringPiece(descriptor).ends_with("$NoPreloadHolder;");
2175 } else {
Mathieu Chartier17498e52017-06-13 11:35:04 -07002176 CHECK(is_app_image);
Mathieu Chartierdabeb3a2017-06-12 17:10:07 -07002177 // The boot image case doesn't need to recursively initialize the dependencies with
2178 // special logic since the class linker already does this.
Mathieu Chartierdabeb3a2017-06-12 17:10:07 -07002179 can_init_static_fields =
Mathieu Chartier0933cc52018-03-23 14:25:08 -07002180 ClassLinker::kAppImageMayContainStrings &&
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002181 !soa.Self()->IsExceptionPending() &&
Nicolas Geoffrayabadf022017-08-03 08:25:41 +00002182 is_superclass_initialized &&
2183 NoClinitInDependency(klass, soa.Self(), &class_loader);
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002184 // TODO The checking for clinit can be removed since it's already
2185 // checked when init superclass. Currently keep it because it contains
2186 // processing of intern strings. Will be removed later when intern strings
2187 // and clinit are both initialized.
2188 }
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01002189
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002190 if (can_init_static_fields) {
2191 VLOG(compiler) << "Initializing: " << descriptor;
2192 // TODO multithreading support. We should ensure the current compilation thread has
2193 // exclusive access to the runtime and the transaction. To achieve this, we could use
2194 // a ReaderWriterMutex but we're holding the mutator lock so we fail mutex sanity
2195 // checks in Thread::AssertThreadSuspensionIsAllowable.
2196 Runtime* const runtime = Runtime::Current();
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002197 // Run the class initializer in transaction mode.
Chang Xing5a906fc2017-07-26 15:01:16 -07002198 runtime->EnterTransactionMode(is_app_image, klass.Get());
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002199 bool success = manager_->GetClassLinker()->EnsureInitialized(soa.Self(), klass, true,
2200 true);
2201 // TODO we detach transaction from runtime to indicate we quit the transactional
2202 // mode which prevents the GC from visiting objects modified during the transaction.
2203 // Ensure GC is not run so don't access freed objects when aborting transaction.
Andreas Gampe9e7078b2017-03-02 13:50:36 -08002204
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002205 {
2206 ScopedAssertNoThreadSuspension ants("Transaction end");
Chang Xing16d1dd82017-07-20 17:56:26 -07002207
2208 if (success) {
2209 runtime->ExitTransactionMode();
2210 DCHECK(!runtime->IsActiveTransaction());
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01002211
Chris Wailes0c61be42018-09-26 17:27:34 -07002212 if (is_boot_image) {
2213 // For boot image, we want to put the updated status in the oat class since we
2214 // can't reject the image anyways.
2215 old_status = klass->GetStatus();
2216 }
2217 } else {
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002218 CHECK(soa.Self()->IsExceptionPending());
2219 mirror::Throwable* exception = soa.Self()->GetException();
2220 VLOG(compiler) << "Initialization of " << descriptor << " aborted because of "
2221 << exception->Dump();
2222 std::ostream* file_log = manager_->GetCompiler()->
2223 GetCompilerOptions().GetInitFailureOutput();
2224 if (file_log != nullptr) {
2225 *file_log << descriptor << "\n";
2226 *file_log << exception->Dump() << "\n";
2227 }
2228 soa.Self()->ClearException();
Chang Xing605fe242017-07-20 15:57:21 -07002229 runtime->RollbackAllTransactions();
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002230 CHECK_EQ(old_status, klass->GetStatus()) << "Previous class status not restored";
2231 }
2232 }
2233
Nicolas Geoffrayabadf022017-08-03 08:25:41 +00002234 if (!success) {
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002235 // On failure, still intern strings of static fields and seen in <clinit>, as these
2236 // will be created in the zygote. This is separated from the transaction code just
2237 // above as we will allocate strings, so must be allowed to suspend.
2238 if (&klass->GetDexFile() == manager_->GetDexFile()) {
Andreas Gampe9e7078b2017-03-02 13:50:36 -08002239 InternStrings(klass, class_loader);
Mathieu Chartierdabeb3a2017-06-12 17:10:07 -07002240 } else {
2241 DCHECK(!is_boot_image) << "Boot image must have equal dex files";
Andreas Gampedbfe2542014-11-25 22:21:42 -08002242 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002243 }
2244 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002245 }
Jeff Hao0cb17282017-07-12 14:51:49 -07002246 // If the class still isn't initialized, at least try some checks that initialization
2247 // would do so they can be skipped at runtime.
2248 if (!klass->IsInitialized() &&
2249 manager_->GetClassLinker()->ValidateSuperClassDescriptors(klass)) {
Vladimir Marko2c64a832018-01-04 11:31:56 +00002250 old_status = ClassStatus::kSuperclassValidated;
Jeff Hao0cb17282017-07-12 14:51:49 -07002251 } else {
2252 soa.Self()->ClearException();
2253 }
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002254 soa.Self()->AssertNoPendingException();
Brian Carlstrom7940e442013-07-12 13:46:57 -07002255 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002256 }
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002257 // Record the final class status if necessary.
2258 ClassReference ref(&dex_file, klass->GetDexClassDefIndex());
2259 // Back up the status before doing initialization for static encoded fields,
2260 // because the static encoded branch wants to keep the status to uninitialized.
2261 manager_->GetCompiler()->RecordClassStatus(ref, old_status);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002262 }
Mathieu Chartier90443472015-07-16 20:32:27 -07002263
2264 private:
Andreas Gampe9e7078b2017-03-02 13:50:36 -08002265 void InternStrings(Handle<mirror::Class> klass, Handle<mirror::ClassLoader> class_loader)
2266 REQUIRES_SHARED(Locks::mutator_lock_) {
2267 DCHECK(manager_->GetCompiler()->GetCompilerOptions().IsBootImage());
2268 DCHECK(klass->IsVerified());
2269 DCHECK(!klass->IsInitialized());
2270
2271 StackHandleScope<1> hs(Thread::Current());
Vladimir Markoe11dd502017-12-08 14:09:45 +00002272 Handle<mirror::DexCache> dex_cache = hs.NewHandle(klass->GetDexCache());
Andreas Gampe9e7078b2017-03-02 13:50:36 -08002273 const DexFile::ClassDef* class_def = klass->GetClassDef();
2274 ClassLinker* class_linker = manager_->GetClassLinker();
2275
Andreas Gampe7bf90482017-03-02 16:41:35 -08002276 // Check encoded final field values for strings and intern.
Vladimir Markoe11dd502017-12-08 14:09:45 +00002277 annotations::RuntimeEncodedStaticFieldValueIterator value_it(dex_cache,
2278 class_loader,
Andreas Gampe9e7078b2017-03-02 13:50:36 -08002279 manager_->GetClassLinker(),
2280 *class_def);
2281 for ( ; value_it.HasNext(); value_it.Next()) {
2282 if (value_it.GetValueType() == annotations::RuntimeEncodedStaticFieldValueIterator::kString) {
2283 // Resolve the string. This will intern the string.
2284 art::ObjPtr<mirror::String> resolved = class_linker->ResolveString(
Vladimir Markoa64b52d2017-12-08 16:27:49 +00002285 dex::StringIndex(value_it.GetJavaValue().i), dex_cache);
Andreas Gampe9e7078b2017-03-02 13:50:36 -08002286 CHECK(resolved != nullptr);
2287 }
2288 }
Andreas Gampe7bf90482017-03-02 16:41:35 -08002289
2290 // Intern strings seen in <clinit>.
2291 ArtMethod* clinit = klass->FindClassInitializer(class_linker->GetImagePointerSize());
2292 if (clinit != nullptr) {
Mathieu Chartier73f21d42018-01-02 14:26:50 -08002293 for (const DexInstructionPcPair& inst : clinit->DexInstructions()) {
Mathieu Chartier2b2bef22017-10-26 17:10:19 -07002294 if (inst->Opcode() == Instruction::CONST_STRING) {
Andreas Gampe7bf90482017-03-02 16:41:35 -08002295 ObjPtr<mirror::String> s = class_linker->ResolveString(
Vladimir Markoa64b52d2017-12-08 16:27:49 +00002296 dex::StringIndex(inst->VRegB_21c()), dex_cache);
Andreas Gampe7bf90482017-03-02 16:41:35 -08002297 CHECK(s != nullptr);
Mathieu Chartier2b2bef22017-10-26 17:10:19 -07002298 } else if (inst->Opcode() == Instruction::CONST_STRING_JUMBO) {
Andreas Gampe7bf90482017-03-02 16:41:35 -08002299 ObjPtr<mirror::String> s = class_linker->ResolveString(
Vladimir Markoa64b52d2017-12-08 16:27:49 +00002300 dex::StringIndex(inst->VRegB_31c()), dex_cache);
Andreas Gampe7bf90482017-03-02 16:41:35 -08002301 CHECK(s != nullptr);
2302 }
Andreas Gampe7bf90482017-03-02 16:41:35 -08002303 }
2304 }
Andreas Gampe9e7078b2017-03-02 13:50:36 -08002305 }
2306
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002307 bool ResolveTypesOfMethods(Thread* self, ArtMethod* m)
2308 REQUIRES_SHARED(Locks::mutator_lock_) {
Vladimir Markob45528c2017-07-27 14:14:28 +01002309 // Return value of ResolveReturnType() is discarded because resolve will be done internally.
2310 ObjPtr<mirror::Class> rtn_type = m->ResolveReturnType();
Mathieu Chartier7a8bcfd2017-06-13 13:40:43 -07002311 if (rtn_type == nullptr) {
2312 self->ClearException();
2313 return false;
2314 }
2315 const DexFile::TypeList* types = m->GetParameterTypeList();
2316 if (types != nullptr) {
2317 for (uint32_t i = 0; i < types->Size(); ++i) {
2318 dex::TypeIndex param_type_idx = types->GetTypeItem(i).type_idx_;
Vladimir Markob45528c2017-07-27 14:14:28 +01002319 ObjPtr<mirror::Class> param_type = m->ResolveClassFromTypeIndex(param_type_idx);
Mathieu Chartier7a8bcfd2017-06-13 13:40:43 -07002320 if (param_type == nullptr) {
2321 self->ClearException();
2322 return false;
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002323 }
2324 }
Mathieu Chartier7a8bcfd2017-06-13 13:40:43 -07002325 }
2326 return true;
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002327 }
2328
2329 // Pre resolve types mentioned in all method signatures before start a transaction
2330 // since ResolveType doesn't work in transaction mode.
2331 bool PreResolveTypes(Thread* self, const Handle<mirror::Class>& klass)
2332 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartier7a8bcfd2017-06-13 13:40:43 -07002333 PointerSize pointer_size = manager_->GetClassLinker()->GetImagePointerSize();
2334 for (ArtMethod& m : klass->GetMethods(pointer_size)) {
2335 if (!ResolveTypesOfMethods(self, &m)) {
2336 return false;
2337 }
2338 }
2339 if (klass->IsInterface()) {
2340 return true;
2341 } else if (klass->HasSuperClass()) {
2342 StackHandleScope<1> hs(self);
2343 MutableHandle<mirror::Class> super_klass(hs.NewHandle<mirror::Class>(klass->GetSuperClass()));
2344 for (int i = super_klass->GetVTableLength() - 1; i >= 0; --i) {
2345 ArtMethod* m = klass->GetVTableEntry(i, pointer_size);
2346 ArtMethod* super_m = super_klass->GetVTableEntry(i, pointer_size);
2347 if (!ResolveTypesOfMethods(self, m) || !ResolveTypesOfMethods(self, super_m)) {
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002348 return false;
2349 }
2350 }
Mathieu Chartier7a8bcfd2017-06-13 13:40:43 -07002351 for (int32_t i = 0; i < klass->GetIfTableCount(); ++i) {
2352 super_klass.Assign(klass->GetIfTable()->GetInterface(i));
2353 if (klass->GetClassLoader() != super_klass->GetClassLoader()) {
2354 uint32_t num_methods = super_klass->NumVirtualMethods();
2355 for (uint32_t j = 0; j < num_methods; ++j) {
2356 ArtMethod* m = klass->GetIfTable()->GetMethodArray(i)->GetElementPtrSize<ArtMethod*>(
2357 j, pointer_size);
2358 ArtMethod* super_m = super_klass->GetVirtualMethod(j, pointer_size);
2359 if (!ResolveTypesOfMethods(self, m) || !ResolveTypesOfMethods(self, super_m)) {
2360 return false;
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002361 }
2362 }
2363 }
2364 }
Mathieu Chartier7a8bcfd2017-06-13 13:40:43 -07002365 }
2366 return true;
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002367 }
2368
2369 // Initialize the klass's dependencies recursively before initializing itself.
2370 // Checking for interfaces is also necessary since interfaces can contain
2371 // both default methods and static encoded fields.
2372 bool InitializeDependencies(const Handle<mirror::Class>& klass,
2373 Handle<mirror::ClassLoader> class_loader,
2374 Thread* self)
2375 REQUIRES_SHARED(Locks::mutator_lock_) {
2376 if (klass->HasSuperClass()) {
2377 ObjPtr<mirror::Class> super_class = klass->GetSuperClass();
2378 StackHandleScope<1> hs(self);
2379 Handle<mirror::Class> handle_scope_super(hs.NewHandle(super_class));
2380 if (!handle_scope_super->IsInitialized()) {
2381 this->TryInitializeClass(handle_scope_super, class_loader);
2382 if (!handle_scope_super->IsInitialized()) {
2383 return false;
2384 }
2385 }
2386 }
2387
2388 uint32_t num_if = klass->NumDirectInterfaces();
2389 for (size_t i = 0; i < num_if; i++) {
2390 ObjPtr<mirror::Class>
2391 interface = mirror::Class::GetDirectInterface(self, klass.Get(), i);
2392 StackHandleScope<1> hs(self);
2393 Handle<mirror::Class> handle_interface(hs.NewHandle(interface));
2394
2395 TryInitializeClass(handle_interface, class_loader);
2396
2397 if (!handle_interface->IsInitialized()) {
2398 return false;
2399 }
2400 }
2401
2402 return PreResolveTypes(self, klass);
2403 }
2404
2405 // In this phase the classes containing class initializers are ignored. Make sure no
2406 // clinit appears in kalss's super class chain and interfaces.
2407 bool NoClinitInDependency(const Handle<mirror::Class>& klass,
2408 Thread* self,
2409 Handle<mirror::ClassLoader>* class_loader)
2410 REQUIRES_SHARED(Locks::mutator_lock_) {
2411 ArtMethod* clinit =
2412 klass->FindClassInitializer(manager_->GetClassLinker()->GetImagePointerSize());
2413 if (clinit != nullptr) {
2414 VLOG(compiler) << klass->PrettyClass() << ' ' << clinit->PrettyMethod(true);
2415 return false;
2416 }
2417 if (klass->HasSuperClass()) {
2418 ObjPtr<mirror::Class> super_class = klass->GetSuperClass();
2419 StackHandleScope<1> hs(self);
2420 Handle<mirror::Class> handle_scope_super(hs.NewHandle(super_class));
2421 if (!NoClinitInDependency(handle_scope_super, self, class_loader)) {
2422 return false;
2423 }
2424 }
2425
2426 uint32_t num_if = klass->NumDirectInterfaces();
2427 for (size_t i = 0; i < num_if; i++) {
2428 ObjPtr<mirror::Class>
2429 interface = mirror::Class::GetDirectInterface(self, klass.Get(), i);
2430 StackHandleScope<1> hs(self);
2431 Handle<mirror::Class> handle_interface(hs.NewHandle(interface));
2432 if (!NoClinitInDependency(handle_interface, self, class_loader)) {
2433 return false;
2434 }
2435 }
2436
Chang Xingba17dbd2017-06-28 21:27:56 +00002437 return true;
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002438 }
2439
Mathieu Chartier90443472015-07-16 20:32:27 -07002440 const ParallelCompilationManager* const manager_;
2441};
Brian Carlstrom7940e442013-07-12 13:46:57 -07002442
Andreas Gampeace0dc12016-01-20 13:33:13 -08002443void CompilerDriver::InitializeClasses(jobject jni_class_loader,
2444 const DexFile& dex_file,
Andreas Gampede7b4362014-07-28 18:38:57 -07002445 const std::vector<const DexFile*>& dex_files,
Andreas Gampeace0dc12016-01-20 13:33:13 -08002446 TimingLogger* timings) {
Mathieu Chartierf5997b42014-06-20 10:37:54 -07002447 TimingLogger::ScopedTiming t("InitializeNoClinit", timings);
Andreas Gampeace0dc12016-01-20 13:33:13 -08002448
2449 // Initialization allocates objects and needs to run single-threaded to be deterministic.
2450 bool force_determinism = GetCompilerOptions().IsForceDeterminism();
2451 ThreadPool* init_thread_pool = force_determinism
2452 ? single_thread_pool_.get()
2453 : parallel_thread_pool_.get();
2454 size_t init_thread_count = force_determinism ? 1U : parallel_thread_count_;
2455
Brian Carlstrom7940e442013-07-12 13:46:57 -07002456 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Andreas Gampede7b4362014-07-28 18:38:57 -07002457 ParallelCompilationManager context(class_linker, jni_class_loader, this, &dex_file, dex_files,
Andreas Gampeace0dc12016-01-20 13:33:13 -08002458 init_thread_pool);
Mathieu Chartierf1dd69a2017-06-08 23:30:15 +00002459
2460 if (GetCompilerOptions().IsBootImage() || GetCompilerOptions().IsAppImage()) {
2461 // Set the concurrency thread to 1 to support initialization for App Images since transaction
2462 // doesn't support multithreading now.
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01002463 // TODO: remove this when transactional mode supports multithreading.
Andreas Gampeace0dc12016-01-20 13:33:13 -08002464 init_thread_count = 1U;
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01002465 }
Mathieu Chartier90443472015-07-16 20:32:27 -07002466 InitializeClassVisitor visitor(&context);
Andreas Gampeace0dc12016-01-20 13:33:13 -08002467 context.ForAll(0, dex_file.NumClassDefs(), &visitor, init_thread_count);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002468}
2469
Mathieu Chartier91288d82016-04-28 09:44:54 -07002470class InitializeArrayClassesAndCreateConflictTablesVisitor : public ClassVisitor {
Mathieu Chartier085a0722016-04-01 17:33:31 -07002471 public:
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002472 explicit InitializeArrayClassesAndCreateConflictTablesVisitor(VariableSizedHandleScope& hs)
2473 : hs_(hs) {}
2474
Roland Levillainf73caca2018-08-24 17:19:07 +01002475 bool operator()(ObjPtr<mirror::Class> klass) override
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002476 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartier91288d82016-04-28 09:44:54 -07002477 if (Runtime::Current()->GetHeap()->ObjectIsInBootImageSpace(klass)) {
2478 return true;
2479 }
Mathieu Chartier085a0722016-04-01 17:33:31 -07002480 if (klass->IsArrayClass()) {
2481 StackHandleScope<1> hs(Thread::Current());
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002482 auto h_klass = hs.NewHandleWrapper(&klass);
2483 Runtime::Current()->GetClassLinker()->EnsureInitialized(hs.Self(), h_klass, true, true);
Mathieu Chartier085a0722016-04-01 17:33:31 -07002484 }
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002485 // Collect handles since there may be thread suspension in future EnsureInitialized.
2486 to_visit_.push_back(hs_.NewHandle(klass));
Nicolas Geoffray88f288e2016-06-29 08:17:52 +00002487 return true;
Nelli Kimbadee982016-05-13 13:08:53 +03002488 }
Artem Udovichenkoa62cb9b2016-06-30 09:18:25 +00002489
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002490 void FillAllIMTAndConflictTables() REQUIRES_SHARED(Locks::mutator_lock_) {
2491 for (Handle<mirror::Class> c : to_visit_) {
2492 // Create the conflict tables.
2493 FillIMTAndConflictTables(c.Get());
2494 }
2495 }
2496
Artem Udovichenkoa62cb9b2016-06-30 09:18:25 +00002497 private:
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002498 void FillIMTAndConflictTables(ObjPtr<mirror::Class> klass)
2499 REQUIRES_SHARED(Locks::mutator_lock_) {
Artem Udovichenkoa62cb9b2016-06-30 09:18:25 +00002500 if (!klass->ShouldHaveImt()) {
2501 return;
2502 }
2503 if (visited_classes_.find(klass) != visited_classes_.end()) {
2504 return;
2505 }
2506 if (klass->HasSuperClass()) {
2507 FillIMTAndConflictTables(klass->GetSuperClass());
2508 }
2509 if (!klass->IsTemp()) {
2510 Runtime::Current()->GetClassLinker()->FillIMTAndConflictTables(klass);
2511 }
2512 visited_classes_.insert(klass);
2513 }
2514
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002515 VariableSizedHandleScope& hs_;
2516 std::vector<Handle<mirror::Class>> to_visit_;
2517 std::unordered_set<ObjPtr<mirror::Class>, HashObjPtr> visited_classes_;
Mathieu Chartier085a0722016-04-01 17:33:31 -07002518};
2519
Brian Carlstrom7940e442013-07-12 13:46:57 -07002520void CompilerDriver::InitializeClasses(jobject class_loader,
2521 const std::vector<const DexFile*>& dex_files,
Andreas Gampeace0dc12016-01-20 13:33:13 -08002522 TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07002523 for (size_t i = 0; i != dex_files.size(); ++i) {
2524 const DexFile* dex_file = dex_files[i];
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002525 CHECK(dex_file != nullptr);
Andreas Gampeace0dc12016-01-20 13:33:13 -08002526 InitializeClasses(class_loader, *dex_file, dex_files, timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002527 }
Vladimir Markoaad75c62016-10-03 08:46:48 +00002528 if (GetCompilerOptions().IsBootImage() || GetCompilerOptions().IsAppImage()) {
Mathieu Chartier085a0722016-04-01 17:33:31 -07002529 // Make sure that we call EnsureIntiailized on all the array classes to call
2530 // SetVerificationAttempted so that the access flags are set. If we do not do this they get
2531 // changed at runtime resulting in more dirty image pages.
Mathieu Chartier91288d82016-04-28 09:44:54 -07002532 // Also create conflict tables.
2533 // Only useful if we are compiling an image (image_classes_ is not null).
Mathieu Chartier085a0722016-04-01 17:33:31 -07002534 ScopedObjectAccess soa(Thread::Current());
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002535 VariableSizedHandleScope hs(soa.Self());
2536 InitializeArrayClassesAndCreateConflictTablesVisitor visitor(hs);
Mathieu Chartier91288d82016-04-28 09:44:54 -07002537 Runtime::Current()->GetClassLinker()->VisitClassesWithoutClassesLock(&visitor);
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002538 visitor.FillAllIMTAndConflictTables();
Mathieu Chartier085a0722016-04-01 17:33:31 -07002539 }
Vladimir Markoaad75c62016-10-03 08:46:48 +00002540 if (GetCompilerOptions().IsBootImage()) {
Mathieu Chartier093ef212014-08-11 13:52:12 -07002541 // Prune garbage objects created during aborted transactions.
Roland Levillainaf290312018-02-27 20:02:17 +00002542 Runtime::Current()->GetHeap()->CollectGarbage(/* clear_soft_references */ true);
Mathieu Chartier093ef212014-08-11 13:52:12 -07002543 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002544}
2545
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002546template <typename CompileFn>
2547static void CompileDexFile(CompilerDriver* driver,
2548 jobject class_loader,
2549 const DexFile& dex_file,
2550 const std::vector<const DexFile*>& dex_files,
2551 ThreadPool* thread_pool,
2552 size_t thread_count,
2553 TimingLogger* timings,
2554 const char* timing_name,
2555 CompileFn compile_fn) {
2556 TimingLogger::ScopedTiming t(timing_name, timings);
2557 ParallelCompilationManager context(Runtime::Current()->GetClassLinker(),
2558 class_loader,
2559 driver,
2560 &dex_file,
2561 dex_files,
2562 thread_pool);
Vladimir Marko492a7fa2016-06-01 18:38:43 +01002563
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002564 auto compile = [&context, &compile_fn](size_t class_def_index) {
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002565 const DexFile& dex_file = *context.GetDexFile();
Andreas Gampe3e7f66b2018-09-06 10:08:18 -07002566 SCOPED_TRACE << "compile " << dex_file.GetLocation() << "@" << class_def_index;
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002567 ClassLinker* class_linker = context.GetClassLinker();
2568 jobject jclass_loader = context.GetClassLoader();
Mathieu Chartier90443472015-07-16 20:32:27 -07002569 ClassReference ref(&dex_file, class_def_index);
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07002570 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
Mathieu Chartier18e26872018-06-04 17:19:02 -07002571 ClassAccessor accessor(dex_file, class_def_index);
Mathieu Chartier90443472015-07-16 20:32:27 -07002572 // Skip compiling classes with generic verifier failures since they will still fail at runtime
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002573 if (context.GetCompiler()->GetVerificationResults()->IsClassRejected(ref)) {
Ian Rogers1ff3c982014-08-12 02:30:58 -07002574 return;
2575 }
Mathieu Chartier736b5602015-09-02 14:54:11 -07002576 // Use a scoped object access to perform to the quick SkipClass check.
Mathieu Chartier736b5602015-09-02 14:54:11 -07002577 ScopedObjectAccess soa(Thread::Current());
2578 StackHandleScope<3> hs(soa.Self());
2579 Handle<mirror::ClassLoader> class_loader(
Mathieu Chartier0795f232016-09-27 18:43:30 -07002580 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader)));
Mathieu Chartier736b5602015-09-02 14:54:11 -07002581 Handle<mirror::Class> klass(
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07002582 hs.NewHandle(class_linker->FindClass(soa.Self(), accessor.GetDescriptor(), class_loader)));
Mathieu Chartier736b5602015-09-02 14:54:11 -07002583 Handle<mirror::DexCache> dex_cache;
Andreas Gampefa4333d2017-02-14 11:10:34 -08002584 if (klass == nullptr) {
Mathieu Chartier736b5602015-09-02 14:54:11 -07002585 soa.Self()->AssertPendingException();
2586 soa.Self()->ClearException();
2587 dex_cache = hs.NewHandle(class_linker->FindDexCache(soa.Self(), dex_file));
2588 } else if (SkipClass(jclass_loader, dex_file, klass.Get())) {
2589 return;
Andreas Gampebb30d5d2018-04-23 09:59:25 -07002590 } else if (&klass->GetDexFile() != &dex_file) {
2591 // Skip a duplicate class (as the resolved class is from another, earlier dex file).
2592 return; // Do not update state.
Mathieu Chartier736b5602015-09-02 14:54:11 -07002593 } else {
2594 dex_cache = hs.NewHandle(klass->GetDexCache());
2595 }
2596
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07002597 // Avoid suspension if there are no methods to compile.
2598 if (accessor.NumDirectMethods() + accessor.NumVirtualMethods() == 0) {
Mathieu Chartier90443472015-07-16 20:32:27 -07002599 return;
Brian Carlstrom7940e442013-07-12 13:46:57 -07002600 }
Mathieu Chartier90443472015-07-16 20:32:27 -07002601
Mathieu Chartier736b5602015-09-02 14:54:11 -07002602 // Go to native so that we don't block GC during compilation.
Mathieu Chartierf1d666e2015-09-03 16:13:34 -07002603 ScopedThreadSuspension sts(soa.Self(), kNative);
Mathieu Chartier736b5602015-09-02 14:54:11 -07002604
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002605 CompilerDriver* const driver = context.GetCompiler();
Mathieu Chartier90443472015-07-16 20:32:27 -07002606
2607 // Can we run DEX-to-DEX compiler on this class ?
Mathieu Chartiera79efdb2018-01-18 16:31:01 -08002608 optimizer::DexToDexCompiler::CompilationLevel dex_to_dex_compilation_level =
Mathieu Chartier736b5602015-09-02 14:54:11 -07002609 GetDexToDexCompilationLevel(soa.Self(), *driver, jclass_loader, dex_file, class_def);
Andreas Gampe5eb0d382015-07-23 01:19:26 -07002610
Mathieu Chartierb7c273c2017-11-10 18:07:56 -08002611 // Compile direct and virtual methods.
2612 int64_t previous_method_idx = -1;
Mathieu Chartier0d896bd2018-05-25 00:20:27 -07002613 for (const ClassAccessor::Method& method : accessor.GetMethods()) {
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07002614 const uint32_t method_idx = method.GetIndex();
Mathieu Chartierb7c273c2017-11-10 18:07:56 -08002615 if (method_idx == previous_method_idx) {
Mathieu Chartier90443472015-07-16 20:32:27 -07002616 // smali can create dex files with two encoded_methods sharing the same method_idx
2617 // http://code.google.com/p/smali/issues/detail?id=119
Mathieu Chartier0d896bd2018-05-25 00:20:27 -07002618 continue;
Mathieu Chartier90443472015-07-16 20:32:27 -07002619 }
Mathieu Chartierb7c273c2017-11-10 18:07:56 -08002620 previous_method_idx = method_idx;
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002621 compile_fn(soa.Self(),
2622 driver,
Mathieu Chartierc8c8d5f2018-05-22 11:56:14 -07002623 method.GetCodeItem(),
2624 method.GetAccessFlags(),
2625 method.GetInvokeType(class_def.access_flags_),
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002626 class_def_index,
2627 method_idx,
2628 class_loader,
2629 dex_file,
2630 dex_to_dex_compilation_level,
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002631 dex_cache);
Mathieu Chartier0d896bd2018-05-25 00:20:27 -07002632 }
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002633 };
2634 context.ForAllLambda(0, dex_file.NumClassDefs(), compile, thread_count);
2635}
2636
2637void CompilerDriver::Compile(jobject class_loader,
2638 const std::vector<const DexFile*>& dex_files,
2639 TimingLogger* timings) {
2640 if (kDebugProfileGuidedCompilation) {
Vladimir Marko1a2a5cd2018-11-07 15:39:48 +00002641 const ProfileCompilationInfo* profile_compilation_info =
2642 GetCompilerOptions().GetProfileCompilationInfo();
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002643 LOG(INFO) << "[ProfileGuidedCompilation] " <<
Vladimir Marko1a2a5cd2018-11-07 15:39:48 +00002644 ((profile_compilation_info == nullptr)
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002645 ? "null"
Vladimir Marko1a2a5cd2018-11-07 15:39:48 +00002646 : profile_compilation_info->DumpInfo(dex_files));
Brian Carlstrom7940e442013-07-12 13:46:57 -07002647 }
Mathieu Chartier90443472015-07-16 20:32:27 -07002648
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002649 dex_to_dex_compiler_.ClearState();
2650 for (const DexFile* dex_file : dex_files) {
2651 CHECK(dex_file != nullptr);
2652 CompileDexFile(this,
2653 class_loader,
2654 *dex_file,
2655 dex_files,
2656 parallel_thread_pool_.get(),
2657 parallel_thread_count_,
2658 timings,
2659 "Compile Dex File Quick",
2660 CompileMethodQuick);
2661 const ArenaPool* const arena_pool = Runtime::Current()->GetArenaPool();
2662 const size_t arena_alloc = arena_pool->GetBytesAllocated();
2663 max_arena_alloc_ = std::max(arena_alloc, max_arena_alloc_);
2664 Runtime::Current()->ReclaimArenaPoolMemory();
2665 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002666
Mathieu Chartier279e3a32018-01-24 18:17:55 -08002667 if (dex_to_dex_compiler_.NumCodeItemsToQuicken(Thread::Current()) > 0u) {
Andreas Gampe3c060ad2018-01-22 13:07:49 -08002668 // TODO: Not visit all of the dex files, its probably rare that only one would have quickened
2669 // methods though.
2670 for (const DexFile* dex_file : dex_files) {
2671 CompileDexFile(this,
2672 class_loader,
2673 *dex_file,
2674 dex_files,
2675 parallel_thread_pool_.get(),
2676 parallel_thread_count_,
2677 timings,
2678 "Compile Dex File Dex2Dex",
2679 CompileMethodDex2Dex);
2680 }
2681 dex_to_dex_compiler_.ClearState();
2682 }
2683
2684 VLOG(compiler) << "Compile: " << GetMemoryUsageString(false);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002685}
2686
Andreas Gampe5eb0d382015-07-23 01:19:26 -07002687void CompilerDriver::AddCompiledMethod(const MethodReference& method_ref,
Vladimir Marko8e524ad2018-07-13 10:27:43 +01002688 CompiledMethod* const compiled_method) {
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002689 DCHECK(GetCompiledMethod(method_ref) == nullptr) << method_ref.PrettyMethod();
2690 MethodTable::InsertResult result = compiled_methods_.Insert(method_ref,
2691 /*expected*/ nullptr,
2692 compiled_method);
Mathieu Chartieracab8d42016-11-23 13:45:58 -08002693 CHECK(result == MethodTable::kInsertResultSuccess);
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002694 DCHECK(GetCompiledMethod(method_ref) != nullptr) << method_ref.PrettyMethod();
Brian Carlstrom7940e442013-07-12 13:46:57 -07002695}
2696
Mathieu Chartier279e3a32018-01-24 18:17:55 -08002697CompiledMethod* CompilerDriver::RemoveCompiledMethod(const MethodReference& method_ref) {
2698 CompiledMethod* ret = nullptr;
2699 CHECK(compiled_methods_.Remove(method_ref, &ret));
2700 return ret;
2701}
2702
Vladimir Marko2c64a832018-01-04 11:31:56 +00002703bool CompilerDriver::GetCompiledClass(const ClassReference& ref, ClassStatus* status) const {
Andreas Gampebb846102017-05-11 21:03:35 -07002704 DCHECK(status != nullptr);
Mathieu Chartier1a088d42017-07-18 11:43:57 -07002705 // The table doesn't know if something wasn't inserted. For this case it will return
Vladimir Marko2c64a832018-01-04 11:31:56 +00002706 // ClassStatus::kNotReady. To handle this, just assume anything we didn't try to verify
2707 // is not compiled.
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002708 if (!compiled_classes_.Get(ref, status) ||
Vladimir Marko2c64a832018-01-04 11:31:56 +00002709 *status < ClassStatus::kRetryVerificationAtRuntime) {
Andreas Gampebb846102017-05-11 21:03:35 -07002710 return false;
Brian Carlstrom7940e442013-07-12 13:46:57 -07002711 }
Andreas Gampebb846102017-05-11 21:03:35 -07002712 return true;
Brian Carlstrom7940e442013-07-12 13:46:57 -07002713}
2714
Vladimir Marko2c64a832018-01-04 11:31:56 +00002715ClassStatus CompilerDriver::GetClassStatus(const ClassReference& ref) const {
2716 ClassStatus status = ClassStatus::kNotReady;
Nicolas Geoffray486dda02017-09-11 14:15:52 +01002717 if (!GetCompiledClass(ref, &status)) {
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002718 classpath_classes_.Get(ref, &status);
Nicolas Geoffray486dda02017-09-11 14:15:52 +01002719 }
2720 return status;
2721}
2722
Vladimir Marko2c64a832018-01-04 11:31:56 +00002723void CompilerDriver::RecordClassStatus(const ClassReference& ref, ClassStatus status) {
Nicolas Geoffrayade72d62016-12-15 13:20:02 +00002724 switch (status) {
Vladimir Marko2c64a832018-01-04 11:31:56 +00002725 case ClassStatus::kErrorResolved:
2726 case ClassStatus::kErrorUnresolved:
2727 case ClassStatus::kNotReady:
2728 case ClassStatus::kResolved:
2729 case ClassStatus::kRetryVerificationAtRuntime:
2730 case ClassStatus::kVerified:
2731 case ClassStatus::kSuperclassValidated:
2732 case ClassStatus::kInitialized:
Nicolas Geoffrayade72d62016-12-15 13:20:02 +00002733 break; // Expected states.
2734 default:
2735 LOG(FATAL) << "Unexpected class status for class "
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002736 << PrettyDescriptor(
2737 ref.dex_file->GetClassDescriptor(ref.dex_file->GetClassDef(ref.index)))
Nicolas Geoffrayade72d62016-12-15 13:20:02 +00002738 << " of " << status;
2739 }
2740
Mathieu Chartier1a088d42017-07-18 11:43:57 -07002741 ClassStateTable::InsertResult result;
Nicolas Geoffray486dda02017-09-11 14:15:52 +01002742 ClassStateTable* table = &compiled_classes_;
Mathieu Chartier1a088d42017-07-18 11:43:57 -07002743 do {
Vladimir Marko2c64a832018-01-04 11:31:56 +00002744 ClassStatus existing = ClassStatus::kNotReady;
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002745 if (!table->Get(ref, &existing)) {
Nicolas Geoffray486dda02017-09-11 14:15:52 +01002746 // A classpath class.
Mathieu Chartier010f5cc2017-07-24 15:53:46 -07002747 if (kIsDebugBuild) {
2748 // Check to make sure it's not a dex file for an oat file we are compiling since these
2749 // should always succeed. These do not include classes in for used libraries.
Vladimir Marko213ee2d2018-06-22 11:56:34 +01002750 for (const DexFile* dex_file : GetCompilerOptions().GetDexFilesForOatFile()) {
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002751 CHECK_NE(ref.dex_file, dex_file) << ref.dex_file->GetLocation();
Mathieu Chartier010f5cc2017-07-24 15:53:46 -07002752 }
2753 }
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002754 if (!classpath_classes_.HaveDexFile(ref.dex_file)) {
Nicolas Geoffray486dda02017-09-11 14:15:52 +01002755 // Boot classpath dex file.
2756 return;
2757 }
2758 table = &classpath_classes_;
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002759 table->Get(ref, &existing);
Mathieu Chartier010f5cc2017-07-24 15:53:46 -07002760 }
Mathieu Chartier1a088d42017-07-18 11:43:57 -07002761 if (existing >= status) {
2762 // Existing status is already better than we expect, break.
2763 break;
2764 }
Nicolas Geoffrayade72d62016-12-15 13:20:02 +00002765 // Update the status if we now have a greater one. This happens with vdex,
2766 // which records a class is verified, but does not resolve it.
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002767 result = table->Insert(ref, existing, status);
2768 CHECK(result != ClassStateTable::kInsertResultInvalidDexFile) << ref.dex_file->GetLocation();
Mathieu Chartier1a088d42017-07-18 11:43:57 -07002769 } while (result != ClassStateTable::kInsertResultSuccess);
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07002770}
2771
Brian Carlstrom7940e442013-07-12 13:46:57 -07002772CompiledMethod* CompilerDriver::GetCompiledMethod(MethodReference ref) const {
Mathieu Chartieracab8d42016-11-23 13:45:58 -08002773 CompiledMethod* compiled_method = nullptr;
Mathieu Chartierfc8b4222017-09-17 13:44:24 -07002774 compiled_methods_.Get(ref, &compiled_method);
Mathieu Chartieracab8d42016-11-23 13:45:58 -08002775 return compiled_method;
Brian Carlstrom7940e442013-07-12 13:46:57 -07002776}
2777
Calin Juravlef1c6d9e2015-04-13 18:42:21 +01002778bool CompilerDriver::IsMethodVerifiedWithoutFailures(uint32_t method_idx,
2779 uint16_t class_def_idx,
2780 const DexFile& dex_file) const {
2781 const VerifiedMethod* verified_method = GetVerifiedMethod(&dex_file, method_idx);
2782 if (verified_method != nullptr) {
2783 return !verified_method->HasVerificationFailures();
2784 }
2785
2786 // If we can't find verification metadata, check if this is a system class (we trust that system
2787 // classes have their methods verified). If it's not, be conservative and assume the method
2788 // has not been verified successfully.
2789
2790 // TODO: When compiling the boot image it should be safe to assume that everything is verified,
2791 // even if methods are not found in the verification cache.
2792 const char* descriptor = dex_file.GetClassDescriptor(dex_file.GetClassDef(class_def_idx));
2793 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
2794 Thread* self = Thread::Current();
2795 ScopedObjectAccess soa(self);
2796 bool is_system_class = class_linker->FindSystemClass(self, descriptor) != nullptr;
2797 if (!is_system_class) {
2798 self->ClearException();
2799 }
2800 return is_system_class;
2801}
2802
Andreas Gampe8d295f82015-01-20 14:50:21 -08002803std::string CompilerDriver::GetMemoryUsageString(bool extended) const {
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002804 std::ostringstream oss;
Calin Juravle69158982016-03-16 11:53:41 +00002805 const gc::Heap* const heap = Runtime::Current()->GetHeap();
Anton Kirilovdd9473b2016-01-28 15:08:01 +00002806 const size_t java_alloc = heap->GetBytesAllocated();
Calin Juravle69158982016-03-16 11:53:41 +00002807 oss << "arena alloc=" << PrettySize(max_arena_alloc_) << " (" << max_arena_alloc_ << "B)";
Anton Kirilovdd9473b2016-01-28 15:08:01 +00002808 oss << " java alloc=" << PrettySize(java_alloc) << " (" << java_alloc << "B)";
Elliott Hughes7bf5a262015-04-02 20:55:07 -07002809#if defined(__BIONIC__) || defined(__GLIBC__)
Anton Kirilovdd9473b2016-01-28 15:08:01 +00002810 const struct mallinfo info = mallinfo();
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002811 const size_t allocated_space = static_cast<size_t>(info.uordblks);
2812 const size_t free_space = static_cast<size_t>(info.fordblks);
Anton Kirilovdd9473b2016-01-28 15:08:01 +00002813 oss << " native alloc=" << PrettySize(allocated_space) << " (" << allocated_space << "B)"
2814 << " free=" << PrettySize(free_space) << " (" << free_space << "B)";
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002815#endif
Vladimir Marko35831e82015-09-11 11:59:18 +01002816 compiled_method_storage_.DumpMemoryUsage(oss, extended);
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002817 return oss.str();
2818}
2819
Andreas Gampeace0dc12016-01-20 13:33:13 -08002820void CompilerDriver::InitializeThreadPools() {
2821 size_t parallel_count = parallel_thread_count_ > 0 ? parallel_thread_count_ - 1 : 0;
2822 parallel_thread_pool_.reset(
2823 new ThreadPool("Compiler driver thread pool", parallel_count));
2824 single_thread_pool_.reset(new ThreadPool("Single-threaded Compiler driver thread pool", 0));
2825}
2826
2827void CompilerDriver::FreeThreadPools() {
2828 parallel_thread_pool_.reset();
2829 single_thread_pool_.reset();
2830}
2831
Nicolas Geoffray486dda02017-09-11 14:15:52 +01002832void CompilerDriver::SetClasspathDexFiles(const std::vector<const DexFile*>& dex_files) {
2833 classpath_classes_.AddDexFiles(dex_files);
Mathieu Chartier72041a02017-07-14 18:23:25 -07002834}
2835
Brian Carlstrom7940e442013-07-12 13:46:57 -07002836} // namespace art