blob: 1b877252308cda0a35c2437d9d24583f764a23f0 [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 Gampeb0f370e2014-09-25 22:51:40 -070019#include <unordered_set>
Anwar Ghuloum67f99412013-08-12 14:19:48 -070020#include <vector>
Brian Carlstrom7940e442013-07-12 13:46:57 -070021#include <unistd.h>
22
Mathieu Chartierab972ef2014-12-03 17:38:22 -080023#ifndef __APPLE__
24#include <malloc.h> // For mallinfo
25#endif
26
Narayan Kamathe3eae5e2016-10-27 11:47:30 +010027#include "android-base/strings.h"
28
Mathieu Chartierc7853442015-03-27 14:35:38 -070029#include "art_field-inl.h"
Mathieu Chartiere401d142015-04-22 13:56:20 -070030#include "art_method-inl.h"
David Brazdild9c90372016-09-14 16:53:55 +010031#include "base/array_ref.h"
Vladimir Marko492a7fa2016-06-01 18:38:43 +010032#include "base/bit_vector.h"
Andreas Gampe542451c2016-07-26 09:02:02 -070033#include "base/enums.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070034#include "base/stl_util.h"
Mathieu Chartier32ce2ad2016-03-04 14:58:03 -080035#include "base/systrace.h"
Vladimir Marko80afd022015-05-19 18:08:00 +010036#include "base/time_utils.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070037#include "base/timing_logger.h"
Vladimir Marko3481ba22015-04-13 12:22:36 +010038#include "class_linker-inl.h"
Mingyao Yang98d1cc82014-05-15 17:02:16 -070039#include "compiled_class.h"
Vladimir Marko20f85592015-03-19 10:07:02 +000040#include "compiled_method.h"
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +000041#include "compiler.h"
Vladimir Markobe0e5462014-02-26 11:24:15 +000042#include "compiler_driver-inl.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070043#include "dex_compilation_unit.h"
44#include "dex_file-inl.h"
Andreas Gampeace0dc12016-01-20 13:33:13 -080045#include "dex_instruction-inl.h"
Andreas Gampe5eb0d382015-07-23 01:19:26 -070046#include "dex/dex_to_dex_compiler.h"
Vladimir Markoc7f83202014-01-24 17:55:18 +000047#include "dex/verification_results.h"
Vladimir Marko2730db02014-01-27 11:15:17 +000048#include "dex/verified_method.h"
Mark Mendellae9fd932014-02-10 16:14:35 -080049#include "driver/compiler_options.h"
Nicolas Geoffray762869d2016-07-15 15:28:35 +010050#include "intrinsics_enum.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070051#include "jni_internal.h"
Ian Rogers22d5e732014-07-15 22:23:51 -070052#include "object_lock.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070053#include "runtime.h"
54#include "gc/accounting/card_table-inl.h"
55#include "gc/accounting/heap_bitmap.h"
Mathieu Chartiere401d142015-04-22 13:56:20 -070056#include "gc/space/image_space.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070057#include "gc/space/space.h"
58#include "mirror/class_loader.h"
59#include "mirror/class-inl.h"
60#include "mirror/dex_cache-inl.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070061#include "mirror/object-inl.h"
62#include "mirror/object_array-inl.h"
63#include "mirror/throwable.h"
Mathieu Chartier0795f232016-09-27 18:43:30 -070064#include "scoped_thread_state_change-inl.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070065#include "ScopedLocalRef.h"
Mathieu Chartiereb8167a2014-05-07 15:43:14 -070066#include "handle_scope-inl.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070067#include "thread.h"
Andreas Gampeb0f370e2014-09-25 22:51:40 -070068#include "thread_list.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070069#include "thread_pool.h"
Ian Rogers848871b2013-08-05 10:56:33 -070070#include "trampolines/trampoline_compiler.h"
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +010071#include "transaction.h"
Vladimir Marko20f85592015-03-19 10:07:02 +000072#include "utils/dex_cache_arrays_layout-inl.h"
Andreas Gampee21dc3d2014-12-08 16:59:43 -080073#include "utils/swap_space.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070074#include "verifier/method_verifier.h"
Vladimir Marko2bc47802014-02-10 09:43:07 +000075#include "verifier/method_verifier-inl.h"
Andreas Gampe5fd66d02016-09-12 20:22:19 -070076#include "verifier/verifier_log_mode.h"
Nicolas Geoffray08025182016-10-25 17:20:18 +010077#include "verifier/verifier_deps.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070078
Brian Carlstrom7940e442013-07-12 13:46:57 -070079namespace art {
80
Mathieu Chartier8e219ae2014-08-19 14:29:46 -070081static constexpr bool kTimeCompileMethod = !kIsDebugBuild;
82
Calin Juravle226501b2015-12-11 14:41:31 +000083// Print additional info during profile guided compilation.
84static constexpr bool kDebugProfileGuidedCompilation = false;
85
Brian Carlstrom7940e442013-07-12 13:46:57 -070086static double Percentage(size_t x, size_t y) {
87 return 100.0 * (static_cast<double>(x)) / (static_cast<double>(x + y));
88}
89
90static void DumpStat(size_t x, size_t y, const char* str) {
91 if (x == 0 && y == 0) {
92 return;
93 }
Ian Rogerse732ef12013-10-09 15:22:24 -070094 LOG(INFO) << Percentage(x, y) << "% of " << str << " for " << (x + y) << " cases";
Brian Carlstrom7940e442013-07-12 13:46:57 -070095}
96
Vladimir Markof096aad2014-01-23 15:51:58 +000097class CompilerDriver::AOTCompilationStats {
Brian Carlstrom7940e442013-07-12 13:46:57 -070098 public:
99 AOTCompilationStats()
100 : stats_lock_("AOT compilation statistics lock"),
Brian Carlstrom7940e442013-07-12 13:46:57 -0700101 resolved_types_(0), unresolved_types_(0),
102 resolved_instance_fields_(0), unresolved_instance_fields_(0),
103 resolved_local_static_fields_(0), resolved_static_fields_(0), unresolved_static_fields_(0),
104 type_based_devirtualization_(0),
105 safe_casts_(0), not_safe_casts_(0) {
106 for (size_t i = 0; i <= kMaxInvokeType; i++) {
107 resolved_methods_[i] = 0;
108 unresolved_methods_[i] = 0;
109 virtual_made_direct_[i] = 0;
110 direct_calls_to_boot_[i] = 0;
111 direct_methods_to_boot_[i] = 0;
112 }
113 }
114
115 void Dump() {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700116 DumpStat(resolved_types_, unresolved_types_, "types resolved");
117 DumpStat(resolved_instance_fields_, unresolved_instance_fields_, "instance fields resolved");
118 DumpStat(resolved_local_static_fields_ + resolved_static_fields_, unresolved_static_fields_,
119 "static fields resolved");
120 DumpStat(resolved_local_static_fields_, resolved_static_fields_ + unresolved_static_fields_,
121 "static fields local to a class");
122 DumpStat(safe_casts_, not_safe_casts_, "check-casts removed based on type information");
123 // Note, the code below subtracts the stat value so that when added to the stat value we have
124 // 100% of samples. TODO: clean this up.
125 DumpStat(type_based_devirtualization_,
126 resolved_methods_[kVirtual] + unresolved_methods_[kVirtual] +
127 resolved_methods_[kInterface] + unresolved_methods_[kInterface] -
128 type_based_devirtualization_,
129 "virtual/interface calls made direct based on type information");
130
131 for (size_t i = 0; i <= kMaxInvokeType; i++) {
132 std::ostringstream oss;
133 oss << static_cast<InvokeType>(i) << " methods were AOT resolved";
134 DumpStat(resolved_methods_[i], unresolved_methods_[i], oss.str().c_str());
135 if (virtual_made_direct_[i] > 0) {
136 std::ostringstream oss2;
137 oss2 << static_cast<InvokeType>(i) << " methods made direct";
138 DumpStat(virtual_made_direct_[i],
139 resolved_methods_[i] + unresolved_methods_[i] - virtual_made_direct_[i],
140 oss2.str().c_str());
141 }
142 if (direct_calls_to_boot_[i] > 0) {
143 std::ostringstream oss2;
144 oss2 << static_cast<InvokeType>(i) << " method calls are direct into boot";
145 DumpStat(direct_calls_to_boot_[i],
146 resolved_methods_[i] + unresolved_methods_[i] - direct_calls_to_boot_[i],
147 oss2.str().c_str());
148 }
149 if (direct_methods_to_boot_[i] > 0) {
150 std::ostringstream oss2;
151 oss2 << static_cast<InvokeType>(i) << " method calls have methods in boot";
152 DumpStat(direct_methods_to_boot_[i],
153 resolved_methods_[i] + unresolved_methods_[i] - direct_methods_to_boot_[i],
154 oss2.str().c_str());
155 }
156 }
157 }
158
159// Allow lossy statistics in non-debug builds.
160#ifndef NDEBUG
161#define STATS_LOCK() MutexLock mu(Thread::Current(), stats_lock_)
162#else
163#define STATS_LOCK()
164#endif
165
Mathieu Chartier90443472015-07-16 20:32:27 -0700166 void TypeDoesntNeedAccessCheck() REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700167 STATS_LOCK();
168 resolved_types_++;
169 }
170
Mathieu Chartier90443472015-07-16 20:32:27 -0700171 void TypeNeedsAccessCheck() REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700172 STATS_LOCK();
173 unresolved_types_++;
174 }
175
Mathieu Chartier90443472015-07-16 20:32:27 -0700176 void ResolvedInstanceField() REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700177 STATS_LOCK();
178 resolved_instance_fields_++;
179 }
180
Mathieu Chartier90443472015-07-16 20:32:27 -0700181 void UnresolvedInstanceField() REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700182 STATS_LOCK();
183 unresolved_instance_fields_++;
184 }
185
Mathieu Chartier90443472015-07-16 20:32:27 -0700186 void ResolvedLocalStaticField() REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700187 STATS_LOCK();
188 resolved_local_static_fields_++;
189 }
190
Mathieu Chartier90443472015-07-16 20:32:27 -0700191 void ResolvedStaticField() REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700192 STATS_LOCK();
193 resolved_static_fields_++;
194 }
195
Mathieu Chartier90443472015-07-16 20:32:27 -0700196 void UnresolvedStaticField() REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700197 STATS_LOCK();
198 unresolved_static_fields_++;
199 }
200
201 // Indicate that type information from the verifier led to devirtualization.
Mathieu Chartier90443472015-07-16 20:32:27 -0700202 void PreciseTypeDevirtualization() REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700203 STATS_LOCK();
204 type_based_devirtualization_++;
205 }
206
Brian Carlstrom7940e442013-07-12 13:46:57 -0700207 // A check-cast could be eliminated due to verifier type analysis.
Mathieu Chartier90443472015-07-16 20:32:27 -0700208 void SafeCast() REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700209 STATS_LOCK();
210 safe_casts_++;
211 }
212
213 // A check-cast couldn't be eliminated due to verifier type analysis.
Mathieu Chartier90443472015-07-16 20:32:27 -0700214 void NotASafeCast() REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700215 STATS_LOCK();
216 not_safe_casts_++;
217 }
218
219 private:
220 Mutex stats_lock_;
221
Brian Carlstrom7940e442013-07-12 13:46:57 -0700222 size_t resolved_types_;
223 size_t unresolved_types_;
224
225 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
Vladimir Marko492a7fa2016-06-01 18:38:43 +0100246class CompilerDriver::DexFileMethodSet {
247 public:
248 explicit DexFileMethodSet(const DexFile& dex_file)
249 : dex_file_(dex_file),
250 method_indexes_(dex_file.NumMethodIds(), false, Allocator::GetMallocAllocator()) {
251 }
252 DexFileMethodSet(DexFileMethodSet&& other) = default;
253
254 const DexFile& GetDexFile() const { return dex_file_; }
255
256 BitVector& GetMethodIndexes() { return method_indexes_; }
257 const BitVector& GetMethodIndexes() const { return method_indexes_; }
258
259 private:
260 const DexFile& dex_file_;
261 BitVector method_indexes_;
262};
263
Jeff Haodcdc85b2015-12-04 14:06:18 -0800264CompilerDriver::CompilerDriver(
265 const CompilerOptions* compiler_options,
266 VerificationResults* verification_results,
Jeff Haodcdc85b2015-12-04 14:06:18 -0800267 Compiler::Kind compiler_kind,
268 InstructionSet instruction_set,
269 const InstructionSetFeatures* instruction_set_features,
Vladimir Marko944da602016-02-19 12:27:55 +0000270 std::unordered_set<std::string>* image_classes,
Jeff Haodcdc85b2015-12-04 14:06:18 -0800271 std::unordered_set<std::string>* compiled_classes,
272 std::unordered_set<std::string>* compiled_methods,
Vladimir Marko944da602016-02-19 12:27:55 +0000273 size_t thread_count,
274 bool dump_stats,
275 bool dump_passes,
276 CumulativeLogger* timer,
277 int swap_fd,
Calin Juravle998c2162015-12-21 15:39:33 +0200278 const ProfileCompilationInfo* profile_compilation_info)
Calin Juravle226501b2015-12-11 14:41:31 +0000279 : compiler_options_(compiler_options),
Brian Carlstrom6449c622014-02-10 23:48:36 -0800280 verification_results_(verification_results),
Ian Rogers72d32622014-05-06 16:20:11 -0700281 compiler_(Compiler::Create(this, compiler_kind)),
Jeff Hao48699fb2015-04-06 14:21:37 -0700282 compiler_kind_(compiler_kind),
Artem Serovba6b6792016-08-15 14:22:07 +0100283 instruction_set_(instruction_set == kArm ? kThumb2: instruction_set),
Dave Allison70202782013-10-22 17:52:19 -0700284 instruction_set_features_(instruction_set_features),
Mathieu Chartierc4ae9162016-04-07 13:19:19 -0700285 requires_constructor_barrier_lock_("constructor barrier lock"),
Brian Carlstrom7940e442013-07-12 13:46:57 -0700286 compiled_classes_lock_("compiled classes lock"),
287 compiled_methods_lock_("compiled method lock"),
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800288 compiled_methods_(MethodTable::key_compare()),
Vladimir Markof4da6752014-08-01 19:04:18 +0100289 non_relative_linker_patch_count_(0u),
Brian Carlstrom7940e442013-07-12 13:46:57 -0700290 image_classes_(image_classes),
Andreas Gampe4bf3ae92014-11-11 13:28:29 -0800291 classes_to_compile_(compiled_classes),
Andreas Gampe70bef0d2015-04-15 02:37:28 -0700292 methods_to_compile_(compiled_methods),
Andreas Gampe6cf49e52015-03-05 13:08:45 -0800293 had_hard_verifier_failure_(false),
Andreas Gampeace0dc12016-01-20 13:33:13 -0800294 parallel_thread_count_(thread_count),
Brian Carlstrom7940e442013-07-12 13:46:57 -0700295 stats_(new AOTCompilationStats),
296 dump_stats_(dump_stats),
Nicolas Geoffrayea3fa0b2014-02-10 11:59:41 +0000297 dump_passes_(dump_passes),
298 timings_logger_(timer),
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700299 compiler_context_(nullptr),
Alexey Frunzee3fb2452016-05-10 16:08:05 -0700300 support_boot_image_fixup_(instruction_set != kMips64),
Vladimir Markod1eaf0d2015-10-29 12:18:29 +0000301 dex_files_for_oat_file_(nullptr),
Calin Juravle998c2162015-12-21 15:39:33 +0200302 compiled_method_storage_(swap_fd),
Calin Juravle69158982016-03-16 11:53:41 +0000303 profile_compilation_info_(profile_compilation_info),
Vladimir Marko492a7fa2016-06-01 18:38:43 +0100304 max_arena_alloc_(0),
305 dex_to_dex_references_lock_("dex-to-dex references lock"),
306 dex_to_dex_references_(),
307 current_dex_to_dex_methods_(nullptr) {
Brian Carlstrom6449c622014-02-10 23:48:36 -0800308 DCHECK(compiler_options_ != nullptr);
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700309
Ian Rogers72d32622014-05-06 16:20:11 -0700310 compiler_->Init();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700311
Mathieu Chartiera8077802016-03-16 19:08:31 -0700312 if (compiler_options->VerifyOnlyProfile()) {
313 CHECK(profile_compilation_info_ != nullptr) << "Requires profile";
314 }
Vladimir Markoaad75c62016-10-03 08:46:48 +0000315 if (GetCompilerOptions().IsBootImage()) {
Mathieu Chartierc5dd3192015-12-09 16:38:30 -0800316 CHECK(image_classes_.get() != nullptr) << "Expected image classes for boot image";
317 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700318}
319
320CompilerDriver::~CompilerDriver() {
321 Thread* self = Thread::Current();
322 {
323 MutexLock mu(self, compiled_classes_lock_);
324 STLDeleteValues(&compiled_classes_);
325 }
326 {
327 MutexLock mu(self, compiled_methods_lock_);
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800328 for (auto& pair : compiled_methods_) {
329 CompiledMethod::ReleaseSwapAllocatedCompiledMethod(this, pair.second);
330 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700331 }
Ian Rogers72d32622014-05-06 16:20:11 -0700332 compiler_->UnInit();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700333}
334
Vladimir Marko35831e82015-09-11 11:59:18 +0100335
Ian Rogersdd7624d2014-03-14 17:43:00 -0700336#define CREATE_TRAMPOLINE(type, abi, offset) \
Andreas Gampeaf13ad92014-04-11 12:07:48 -0700337 if (Is64BitInstructionSet(instruction_set_)) { \
Ian Rogersdd7624d2014-03-14 17:43:00 -0700338 return CreateTrampoline64(instruction_set_, abi, \
Andreas Gampe542451c2016-07-26 09:02:02 -0700339 type ## _ENTRYPOINT_OFFSET(PointerSize::k64, offset)); \
Ian Rogersdd7624d2014-03-14 17:43:00 -0700340 } else { \
341 return CreateTrampoline32(instruction_set_, abi, \
Andreas Gampe542451c2016-07-26 09:02:02 -0700342 type ## _ENTRYPOINT_OFFSET(PointerSize::k32, offset)); \
Ian Rogersdd7624d2014-03-14 17:43:00 -0700343 }
344
Vladimir Marko93205e32016-04-13 11:59:46 +0100345std::unique_ptr<const std::vector<uint8_t>> CompilerDriver::CreateJniDlsymLookup() const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700346 CREATE_TRAMPOLINE(JNI, kJniAbi, pDlsymLookup)
Ian Rogers848871b2013-08-05 10:56:33 -0700347}
348
Vladimir Marko93205e32016-04-13 11:59:46 +0100349std::unique_ptr<const std::vector<uint8_t>> CompilerDriver::CreateQuickGenericJniTrampoline()
350 const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700351 CREATE_TRAMPOLINE(QUICK, kQuickAbi, pQuickGenericJniTrampoline)
Andreas Gampe2da88232014-02-27 12:26:20 -0800352}
353
Vladimir Marko93205e32016-04-13 11:59:46 +0100354std::unique_ptr<const std::vector<uint8_t>> CompilerDriver::CreateQuickImtConflictTrampoline()
355 const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700356 CREATE_TRAMPOLINE(QUICK, kQuickAbi, pQuickImtConflictTrampoline)
Jeff Hao88474b42013-10-23 16:24:40 -0700357}
358
Vladimir Marko93205e32016-04-13 11:59:46 +0100359std::unique_ptr<const std::vector<uint8_t>> CompilerDriver::CreateQuickResolutionTrampoline()
360 const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700361 CREATE_TRAMPOLINE(QUICK, kQuickAbi, pQuickResolutionTrampoline)
Brian Carlstrom7940e442013-07-12 13:46:57 -0700362}
363
Vladimir Marko93205e32016-04-13 11:59:46 +0100364std::unique_ptr<const std::vector<uint8_t>> CompilerDriver::CreateQuickToInterpreterBridge()
365 const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700366 CREATE_TRAMPOLINE(QUICK, kQuickAbi, pQuickToInterpreterBridge)
Brian Carlstrom7940e442013-07-12 13:46:57 -0700367}
Ian Rogersdd7624d2014-03-14 17:43:00 -0700368#undef CREATE_TRAMPOLINE
Brian Carlstrom7940e442013-07-12 13:46:57 -0700369
Nicolas Geoffray762869d2016-07-15 15:28:35 +0100370static void SetupIntrinsic(Thread* self,
371 Intrinsics intrinsic,
372 InvokeType invoke_type,
373 const char* class_name,
374 const char* method_name,
375 const char* signature)
376 REQUIRES_SHARED(Locks::mutator_lock_) {
377 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
378 PointerSize image_size = class_linker->GetImagePointerSize();
379 mirror::Class* cls = class_linker->FindSystemClass(self, class_name);
380 if (cls == nullptr) {
381 LOG(FATAL) << "Could not find class of intrinsic " << class_name;
382 }
383 ArtMethod* method = (invoke_type == kStatic || invoke_type == kDirect)
384 ? cls->FindDeclaredDirectMethod(method_name, signature, image_size)
385 : cls->FindDeclaredVirtualMethod(method_name, signature, image_size);
386 if (method == nullptr) {
Nicolas Geoffrayb20f1fe2016-10-03 13:57:40 +0100387 LOG(FATAL) << "Could not find method of intrinsic "
388 << class_name << " " << method_name << " " << signature;
Nicolas Geoffray762869d2016-07-15 15:28:35 +0100389 }
390 DCHECK_EQ(method->GetInvokeType(), invoke_type);
391 method->SetIntrinsic(static_cast<uint32_t>(intrinsic));
392}
393
Brian Carlstrom7940e442013-07-12 13:46:57 -0700394void CompilerDriver::CompileAll(jobject class_loader,
Brian Carlstrom45602482013-07-21 22:07:55 -0700395 const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -0800396 TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700397 DCHECK(!Runtime::Current()->IsStarted());
Andreas Gampeace0dc12016-01-20 13:33:13 -0800398
399 InitializeThreadPools();
400
Andreas Gampe8d295f82015-01-20 14:50:21 -0800401 VLOG(compiler) << "Before precompile " << GetMemoryUsageString(false);
Andreas Gampe740667a2015-09-15 17:55:06 -0700402 // Precompile:
403 // 1) Load image classes
404 // 2) Resolve all classes
405 // 3) Attempt to verify all classes
406 // 4) Attempt to initialize image classes, and trivially initialized classes
Andreas Gampeace0dc12016-01-20 13:33:13 -0800407 PreCompile(class_loader, dex_files, timings);
Vladimir Markoaad75c62016-10-03 08:46:48 +0000408 if (GetCompilerOptions().IsBootImage()) {
Nicolas Geoffray762869d2016-07-15 15:28:35 +0100409 // We don't need to setup the intrinsics for non boot image compilation, as
410 // those compilations will pick up a boot image that have the ArtMethod already
411 // set with the intrinsics flag.
412 ScopedObjectAccess soa(Thread::Current());
Nicolas Geoffrayb20f1fe2016-10-03 13:57:40 +0100413#define SETUP_INTRINSICS(Name, InvokeType, NeedsEnvironmentOrCache, SideEffects, Exceptions, \
414 ClassName, MethodName, Signature) \
Nicolas Geoffray762869d2016-07-15 15:28:35 +0100415 SetupIntrinsic(soa.Self(), Intrinsics::k##Name, InvokeType, ClassName, MethodName, Signature);
416#include "intrinsics_list.h"
Nicolas Geoffrayb20f1fe2016-10-03 13:57:40 +0100417INTRINSICS_LIST(SETUP_INTRINSICS)
Nicolas Geoffray762869d2016-07-15 15:28:35 +0100418#undef INTRINSICS_LIST
Nicolas Geoffrayb20f1fe2016-10-03 13:57:40 +0100419#undef SETUP_INTRINSICS
Nicolas Geoffray762869d2016-07-15 15:28:35 +0100420 }
Andreas Gampe740667a2015-09-15 17:55:06 -0700421 // Compile:
422 // 1) Compile all classes and methods enabled for compilation. May fall back to dex-to-dex
423 // compilation.
424 if (!GetCompilerOptions().VerifyAtRuntime()) {
Andreas Gampeace0dc12016-01-20 13:33:13 -0800425 Compile(class_loader, dex_files, timings);
Andreas Gampe740667a2015-09-15 17:55:06 -0700426 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700427 if (dump_stats_) {
428 stats_->Dump();
429 }
Andreas Gampeace0dc12016-01-20 13:33:13 -0800430
431 FreeThreadPools();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700432}
433
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700434static optimizer::DexToDexCompilationLevel GetDexToDexCompilationLevel(
435 Thread* self, const CompilerDriver& driver, Handle<mirror::ClassLoader> class_loader,
436 const DexFile& dex_file, const DexFile::ClassDef& class_def)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700437 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800438 auto* const runtime = Runtime::Current();
Calin Juravleffc87072016-04-20 14:22:09 +0100439 if (runtime->UseJitCompilation() || driver.GetCompilerOptions().VerifyAtRuntime()) {
Mathieu Chartiere86deef2015-03-19 13:43:37 -0700440 // Verify at runtime shouldn't dex to dex since we didn't resolve of verify.
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700441 return optimizer::DexToDexCompilationLevel::kDontDexToDexCompile;
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800442 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700443 const char* descriptor = dex_file.GetClassDescriptor(class_def);
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800444 ClassLinker* class_linker = runtime->GetClassLinker();
Ian Rogers98379392014-02-24 16:53:16 -0800445 mirror::Class* klass = class_linker->FindClass(self, descriptor, class_loader);
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700446 if (klass == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700447 CHECK(self->IsExceptionPending());
448 self->ClearException();
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700449 return optimizer::DexToDexCompilationLevel::kDontDexToDexCompile;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700450 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700451 // DexToDex at the kOptimize level may introduce quickened opcodes, which replace symbolic
452 // references with actual offsets. We cannot re-verify such instructions.
453 //
454 // We store the verification information in the class status in the oat file, which the linker
455 // can validate (checksums) and use to skip load-time verification. It is thus safe to
456 // optimize when a class has been fully verified before.
457 if (klass->IsVerified()) {
Sebastien Hertz75021222013-07-16 18:34:50 +0200458 // Class is verified so we can enable DEX-to-DEX compilation for performance.
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700459 return optimizer::DexToDexCompilationLevel::kOptimize;
Sebastien Hertz75021222013-07-16 18:34:50 +0200460 } else if (klass->IsCompileTimeVerified()) {
461 // Class verification has soft-failed. Anyway, ensure at least correctness.
462 DCHECK_EQ(klass->GetStatus(), mirror::Class::kStatusRetryVerificationAtRuntime);
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700463 return optimizer::DexToDexCompilationLevel::kRequired;
Sebastien Hertz75021222013-07-16 18:34:50 +0200464 } else {
465 // Class verification has failed: do not run DEX-to-DEX compilation.
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700466 return optimizer::DexToDexCompilationLevel::kDontDexToDexCompile;
467 }
468}
469
470static optimizer::DexToDexCompilationLevel GetDexToDexCompilationLevel(
471 Thread* self,
472 const CompilerDriver& driver,
473 jobject jclass_loader,
474 const DexFile& dex_file,
475 const DexFile::ClassDef& class_def) {
476 ScopedObjectAccess soa(self);
477 StackHandleScope<1> hs(soa.Self());
478 Handle<mirror::ClassLoader> class_loader(
Mathieu Chartier0795f232016-09-27 18:43:30 -0700479 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader)));
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700480 return GetDexToDexCompilationLevel(self, driver, class_loader, dex_file, class_def);
481}
482
483// Does the runtime for the InstructionSet provide an implementation returned by
484// GetQuickGenericJniStub allowing down calls that aren't compiled using a JNI compiler?
485static bool InstructionSetHasGenericJniStub(InstructionSet isa) {
486 switch (isa) {
487 case kArm:
488 case kArm64:
489 case kThumb2:
490 case kMips:
491 case kMips64:
492 case kX86:
493 case kX86_64: return true;
494 default: return false;
495 }
496}
497
498static void CompileMethod(Thread* self,
499 CompilerDriver* driver,
500 const DexFile::CodeItem* code_item,
501 uint32_t access_flags,
502 InvokeType invoke_type,
503 uint16_t class_def_idx,
504 uint32_t method_idx,
505 jobject class_loader,
506 const DexFile& dex_file,
507 optimizer::DexToDexCompilationLevel dex_to_dex_compilation_level,
Mathieu Chartier736b5602015-09-02 14:54:11 -0700508 bool compilation_enabled,
509 Handle<mirror::DexCache> dex_cache)
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700510 REQUIRES(!driver->compiled_methods_lock_) {
511 DCHECK(driver != nullptr);
512 CompiledMethod* compiled_method = nullptr;
513 uint64_t start_ns = kTimeCompileMethod ? NanoTime() : 0;
514 MethodReference method_ref(&dex_file, method_idx);
515
Vladimir Marko492a7fa2016-06-01 18:38:43 +0100516 if (driver->GetCurrentDexToDexMethods() != nullptr) {
517 // This is the second pass when we dex-to-dex compile previously marked methods.
518 // TODO: Refactor the compilation to avoid having to distinguish the two passes
519 // here. That should be done on a higher level. http://b/29089975
520 if (driver->GetCurrentDexToDexMethods()->IsBitSet(method_idx)) {
521 const VerifiedMethod* verified_method =
522 driver->GetVerificationResults()->GetVerifiedMethod(method_ref);
523 // Do not optimize if a VerifiedMethod is missing. SafeCast elision,
524 // for example, relies on it.
525 compiled_method = optimizer::ArtCompileDEX(
526 driver,
527 code_item,
528 access_flags,
529 invoke_type,
530 class_def_idx,
531 method_idx,
532 class_loader,
533 dex_file,
534 (verified_method != nullptr)
535 ? dex_to_dex_compilation_level
536 : optimizer::DexToDexCompilationLevel::kRequired);
537 }
538 } else if ((access_flags & kAccNative) != 0) {
Igor Murashkin9aa9fa22016-09-26 10:10:17 -0700539 const InstructionSet instruction_set = driver->GetInstructionSet();
540 const bool use_generic_jni =
541 // Are we extracting only and have support for generic JNI down calls?
542 (!driver->GetCompilerOptions().IsJniCompilationEnabled() &&
543 InstructionSetHasGenericJniStub(instruction_set)) ||
544 // Always punt to generic JNI for MIPS because of no support for @CriticalNative. b/31743474
545 (instruction_set == kMips || instruction_set == kMips64);
546 if (use_generic_jni) {
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700547 // Leaving this empty will trigger the generic JNI version
548 } else {
Igor Murashkin9d4b6da2016-07-29 09:51:58 -0700549 // Look-up the ArtMethod associated with this code_item (if any)
550 // -- It is later used to lookup any [optimization] annotations for this method.
551 ScopedObjectAccess soa(self);
552 StackHandleScope<1> hs(soa.Self());
553 Handle<mirror::ClassLoader> class_loader_handle(hs.NewHandle(
Mathieu Chartier0795f232016-09-27 18:43:30 -0700554 soa.Decode<mirror::ClassLoader>(class_loader)));
Igor Murashkin9d4b6da2016-07-29 09:51:58 -0700555
556 // TODO: Lookup annotation from DexFile directly without resolving method.
557 ArtMethod* method =
558 Runtime::Current()->GetClassLinker()->ResolveMethod<ClassLinker::kNoICCECheckForCache>(
559 dex_file,
560 method_idx,
561 dex_cache,
562 class_loader_handle,
563 /* referrer */ nullptr,
564 invoke_type);
565
Igor Murashkin367f3dd2016-09-01 17:00:24 -0700566 // Query any JNI optimization annotations such as @FastNative or @CriticalNative.
567 Compiler::JniOptimizationFlags optimization_flags = Compiler::kNone;
568 if (UNLIKELY(method == nullptr)) {
Igor Murashkin9d4b6da2016-07-29 09:51:58 -0700569 // Failed method resolutions happen very rarely, e.g. ancestor class cannot be resolved.
570 DCHECK(self->IsExceptionPending());
571 self->ClearException();
Igor Murashkin367f3dd2016-09-01 17:00:24 -0700572 } else if (method->IsAnnotatedWithFastNative()) {
573 // TODO: Will no longer need this CHECK once we have verifier checking this.
574 CHECK(!method->IsAnnotatedWithCriticalNative());
575 optimization_flags = Compiler::kFastNative;
576 } else if (method->IsAnnotatedWithCriticalNative()) {
577 // TODO: Will no longer need this CHECK once we have verifier checking this.
578 CHECK(!method->IsAnnotatedWithFastNative());
579 optimization_flags = Compiler::kCriticalNative;
Igor Murashkin9d4b6da2016-07-29 09:51:58 -0700580 }
581
Igor Murashkin9d4b6da2016-07-29 09:51:58 -0700582 compiled_method = driver->GetCompiler()->JniCompile(access_flags,
583 method_idx,
584 dex_file,
585 optimization_flags);
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700586 CHECK(compiled_method != nullptr);
587 }
588 } else if ((access_flags & kAccAbstract) != 0) {
589 // Abstract methods don't have code.
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +0000590 } else {
Andreas Gampe0760a812015-08-26 17:12:51 -0700591 const VerifiedMethod* verified_method =
592 driver->GetVerificationResults()->GetVerifiedMethod(method_ref);
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700593 bool compile = compilation_enabled &&
594 // Basic checks, e.g., not <clinit>.
595 driver->GetVerificationResults()
596 ->IsCandidateForCompilation(method_ref, access_flags) &&
597 // Did not fail to create VerifiedMethod metadata.
Andreas Gampe0760a812015-08-26 17:12:51 -0700598 verified_method != nullptr &&
599 // Do not have failures that should punt to the interpreter.
600 !verified_method->HasRuntimeThrow() &&
601 (verified_method->GetEncounteredVerificationFailures() &
Andreas Gampea727e372015-08-25 09:22:37 -0700602 (verifier::VERIFY_ERROR_FORCE_INTERPRETER | verifier::VERIFY_ERROR_LOCKING)) == 0 &&
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700603 // Is eligable for compilation by methods-to-compile filter.
Calin Juravle226501b2015-12-11 14:41:31 +0000604 driver->IsMethodToCompile(method_ref) &&
605 driver->ShouldCompileBasedOnProfile(method_ref);
606
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700607 if (compile) {
608 // NOTE: if compiler declines to compile this method, it will return null.
609 compiled_method = driver->GetCompiler()->Compile(code_item, access_flags, invoke_type,
610 class_def_idx, method_idx, class_loader,
Mathieu Chartier736b5602015-09-02 14:54:11 -0700611 dex_file, dex_cache);
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700612 }
613 if (compiled_method == nullptr &&
614 dex_to_dex_compilation_level != optimizer::DexToDexCompilationLevel::kDontDexToDexCompile) {
Vladimir Marko492a7fa2016-06-01 18:38:43 +0100615 DCHECK(!Runtime::Current()->UseJitCompilation());
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700616 // TODO: add a command-line option to disable DEX-to-DEX compilation ?
Vladimir Marko492a7fa2016-06-01 18:38:43 +0100617 driver->MarkForDexToDexCompilation(self, method_ref);
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700618 }
619 }
620 if (kTimeCompileMethod) {
621 uint64_t duration_ns = NanoTime() - start_ns;
622 if (duration_ns > MsToNs(driver->GetCompiler()->GetMaximumCompilationTimeBeforeWarning())) {
David Sehr709b0702016-10-13 09:12:37 -0700623 LOG(WARNING) << "Compilation of " << dex_file.PrettyMethod(method_idx)
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700624 << " took " << PrettyDuration(duration_ns);
625 }
626 }
627
628 if (compiled_method != nullptr) {
629 // Count non-relative linker patches.
630 size_t non_relative_linker_patch_count = 0u;
631 for (const LinkerPatch& patch : compiled_method->GetPatches()) {
632 if (!patch.IsPcRelative()) {
633 ++non_relative_linker_patch_count;
634 }
635 }
636 bool compile_pic = driver->GetCompilerOptions().GetCompilePic(); // Off by default
637 // When compiling with PIC, there should be zero non-relative linker patches
638 CHECK(!compile_pic || non_relative_linker_patch_count == 0u);
639
640 driver->AddCompiledMethod(method_ref, compiled_method, non_relative_linker_patch_count);
641 }
642
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700643 if (self->IsExceptionPending()) {
644 ScopedObjectAccess soa(self);
David Sehr709b0702016-10-13 09:12:37 -0700645 LOG(FATAL) << "Unexpected exception compiling: " << dex_file.PrettyMethod(method_idx) << "\n"
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700646 << self->GetException()->Dump();
Sebastien Hertz75021222013-07-16 18:34:50 +0200647 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700648}
649
Mathieu Chartiere401d142015-04-22 13:56:20 -0700650void CompilerDriver::CompileOne(Thread* self, ArtMethod* method, TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700651 DCHECK(!Runtime::Current()->IsStarted());
Brian Carlstrom7940e442013-07-12 13:46:57 -0700652 jobject jclass_loader;
653 const DexFile* dex_file;
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700654 uint16_t class_def_idx;
Ian Rogersef7d42f2014-01-06 12:55:46 -0800655 uint32_t method_idx = method->GetDexMethodIndex();
656 uint32_t access_flags = method->GetAccessFlags();
657 InvokeType invoke_type = method->GetInvokeType();
Mathieu Chartier736b5602015-09-02 14:54:11 -0700658 StackHandleScope<1> hs(self);
659 Handle<mirror::DexCache> dex_cache(hs.NewHandle(method->GetDexCache()));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700660 {
661 ScopedObjectAccessUnchecked soa(self);
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800662 ScopedLocalRef<jobject> local_class_loader(
663 soa.Env(), soa.AddLocalReference<jobject>(method->GetDeclaringClass()->GetClassLoader()));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700664 jclass_loader = soa.Env()->NewGlobalRef(local_class_loader.get());
665 // Find the dex_file
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700666 dex_file = method->GetDexFile();
667 class_def_idx = method->GetClassDefIndex();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700668 }
Ian Rogersef7d42f2014-01-06 12:55:46 -0800669 const DexFile::CodeItem* code_item = dex_file->GetCodeItem(method->GetCodeItemOffset());
Mathieu Chartier736b5602015-09-02 14:54:11 -0700670
671 // Go to native so that we don't block GC during compilation.
Mathieu Chartierf1d666e2015-09-03 16:13:34 -0700672 ScopedThreadSuspension sts(self, kNative);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700673
674 std::vector<const DexFile*> dex_files;
675 dex_files.push_back(dex_file);
676
Andreas Gampeace0dc12016-01-20 13:33:13 -0800677 InitializeThreadPools();
678
679 PreCompile(jclass_loader, dex_files, timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700680
Brian Carlstrom7940e442013-07-12 13:46:57 -0700681 // Can we run DEX-to-DEX compiler on this class ?
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700682 optimizer::DexToDexCompilationLevel dex_to_dex_compilation_level =
683 GetDexToDexCompilationLevel(self,
684 *this,
685 jclass_loader,
686 *dex_file,
687 dex_file->GetClassDef(class_def_idx));
688
Vladimir Marko492a7fa2016-06-01 18:38:43 +0100689 DCHECK(current_dex_to_dex_methods_ == nullptr);
Andreas Gampe5eb0d382015-07-23 01:19:26 -0700690 CompileMethod(self,
691 this,
692 code_item,
693 access_flags,
694 invoke_type,
695 class_def_idx,
696 method_idx,
697 jclass_loader,
698 *dex_file,
699 dex_to_dex_compilation_level,
Mathieu Chartier736b5602015-09-02 14:54:11 -0700700 true,
701 dex_cache);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700702
Vladimir Marko492a7fa2016-06-01 18:38:43 +0100703 ArrayRef<DexFileMethodSet> dex_to_dex_references;
704 {
705 // From this point on, we shall not modify dex_to_dex_references_, so
706 // just grab a reference to it that we use without holding the mutex.
707 MutexLock lock(Thread::Current(), dex_to_dex_references_lock_);
708 dex_to_dex_references = ArrayRef<DexFileMethodSet>(dex_to_dex_references_);
709 }
710 if (!dex_to_dex_references.empty()) {
711 DCHECK_EQ(dex_to_dex_references.size(), 1u);
712 DCHECK(&dex_to_dex_references[0].GetDexFile() == dex_file);
713 current_dex_to_dex_methods_ = &dex_to_dex_references.front().GetMethodIndexes();
714 DCHECK(current_dex_to_dex_methods_->IsBitSet(method_idx));
715 DCHECK_EQ(current_dex_to_dex_methods_->NumSetBits(), 1u);
716 CompileMethod(self,
717 this,
718 code_item,
719 access_flags,
720 invoke_type,
721 class_def_idx,
722 method_idx,
723 jclass_loader,
724 *dex_file,
725 dex_to_dex_compilation_level,
726 true,
727 dex_cache);
728 current_dex_to_dex_methods_ = nullptr;
729 }
730
Andreas Gampeace0dc12016-01-20 13:33:13 -0800731 FreeThreadPools();
732
Brian Carlstrom7940e442013-07-12 13:46:57 -0700733 self->GetJniEnv()->DeleteGlobalRef(jclass_loader);
Mathieu Chartier2535abe2015-02-17 10:38:49 -0800734}
735
Andreas Gampeace0dc12016-01-20 13:33:13 -0800736void CompilerDriver::Resolve(jobject class_loader,
737 const std::vector<const DexFile*>& dex_files,
738 TimingLogger* timings) {
739 // Resolution allocates classes and needs to run single-threaded to be deterministic.
740 bool force_determinism = GetCompilerOptions().IsForceDeterminism();
741 ThreadPool* resolve_thread_pool = force_determinism
742 ? single_thread_pool_.get()
743 : parallel_thread_pool_.get();
744 size_t resolve_thread_count = force_determinism ? 1U : parallel_thread_count_;
745
Brian Carlstrom7940e442013-07-12 13:46:57 -0700746 for (size_t i = 0; i != dex_files.size(); ++i) {
747 const DexFile* dex_file = dex_files[i];
Kenny Rootd5185342014-05-13 14:47:05 -0700748 CHECK(dex_file != nullptr);
Andreas Gampeace0dc12016-01-20 13:33:13 -0800749 ResolveDexFile(class_loader,
750 *dex_file,
751 dex_files,
752 resolve_thread_pool,
753 resolve_thread_count,
754 timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700755 }
756}
757
Andreas Gampeace0dc12016-01-20 13:33:13 -0800758// Resolve const-strings in the code. Done to have deterministic allocation behavior. Right now
759// this is single-threaded for simplicity.
760// TODO: Collect the relevant string indices in parallel, then allocate them sequentially in a
761// stable order.
762
Nicolas Geoffray571d2342016-10-12 13:03:15 +0000763static void ResolveConstStrings(Handle<mirror::DexCache> dex_cache,
Andreas Gampeace0dc12016-01-20 13:33:13 -0800764 const DexFile& dex_file,
Nicolas Geoffray571d2342016-10-12 13:03:15 +0000765 const DexFile::CodeItem* code_item)
766 REQUIRES_SHARED(Locks::mutator_lock_) {
Andreas Gampeace0dc12016-01-20 13:33:13 -0800767 if (code_item == nullptr) {
768 // Abstract or native method.
769 return;
770 }
771
772 const uint16_t* code_ptr = code_item->insns_;
773 const uint16_t* code_end = code_item->insns_ + code_item->insns_size_in_code_units_;
Nicolas Geoffray571d2342016-10-12 13:03:15 +0000774 ClassLinker* const class_linker = Runtime::Current()->GetClassLinker();
Andreas Gampeace0dc12016-01-20 13:33:13 -0800775
776 while (code_ptr < code_end) {
777 const Instruction* inst = Instruction::At(code_ptr);
778 switch (inst->Opcode()) {
Nicolas Geoffray571d2342016-10-12 13:03:15 +0000779 case Instruction::CONST_STRING:
Andreas Gampeace0dc12016-01-20 13:33:13 -0800780 case Instruction::CONST_STRING_JUMBO: {
Nicolas Geoffray571d2342016-10-12 13:03:15 +0000781 uint32_t string_index = (inst->Opcode() == Instruction::CONST_STRING)
782 ? inst->VRegB_21c()
783 : inst->VRegB_31c();
784 mirror::String* string = class_linker->ResolveString(dex_file, string_index, dex_cache);
785 CHECK(string != nullptr) << "Could not allocate a string when forcing determinism";
Andreas Gampeace0dc12016-01-20 13:33:13 -0800786 break;
787 }
788
789 default:
790 break;
791 }
792
793 code_ptr += inst->SizeInCodeUnits();
794 }
795}
796
797static void ResolveConstStrings(CompilerDriver* driver,
798 const std::vector<const DexFile*>& dex_files,
799 TimingLogger* timings) {
Nicolas Geoffray571d2342016-10-12 13:03:15 +0000800 ScopedObjectAccess soa(Thread::Current());
801 StackHandleScope<1> hs(soa.Self());
802 ClassLinker* const class_linker = Runtime::Current()->GetClassLinker();
803 MutableHandle<mirror::DexCache> dex_cache(hs.NewHandle<mirror::DexCache>(nullptr));
804
Andreas Gampeace0dc12016-01-20 13:33:13 -0800805 for (const DexFile* dex_file : dex_files) {
Nicolas Geoffray571d2342016-10-12 13:03:15 +0000806 dex_cache.Assign(class_linker->FindDexCache(soa.Self(), *dex_file, false));
Andreas Gampeace0dc12016-01-20 13:33:13 -0800807 TimingLogger::ScopedTiming t("Resolve const-string Strings", timings);
808
809 size_t class_def_count = dex_file->NumClassDefs();
810 for (size_t class_def_index = 0; class_def_index < class_def_count; ++class_def_index) {
811 const DexFile::ClassDef& class_def = dex_file->GetClassDef(class_def_index);
812
813 const uint8_t* class_data = dex_file->GetClassData(class_def);
814 if (class_data == nullptr) {
815 // empty class, probably a marker interface
816 continue;
817 }
818
819 ClassDataItemIterator it(*dex_file, class_data);
820 // Skip fields
821 while (it.HasNextStaticField()) {
822 it.Next();
823 }
824 while (it.HasNextInstanceField()) {
825 it.Next();
826 }
827
828 bool compilation_enabled = driver->IsClassToCompile(
829 dex_file->StringByTypeIdx(class_def.class_idx_));
830 if (!compilation_enabled) {
831 // Compilation is skipped, do not resolve const-string in code of this class.
832 // TODO: Make sure that inlining honors this.
833 continue;
834 }
835
836 // Direct methods.
837 int64_t previous_direct_method_idx = -1;
838 while (it.HasNextDirectMethod()) {
839 uint32_t method_idx = it.GetMemberIndex();
840 if (method_idx == previous_direct_method_idx) {
841 // smali can create dex files with two encoded_methods sharing the same method_idx
842 // http://code.google.com/p/smali/issues/detail?id=119
843 it.Next();
844 continue;
845 }
846 previous_direct_method_idx = method_idx;
Nicolas Geoffray571d2342016-10-12 13:03:15 +0000847 ResolveConstStrings(dex_cache, *dex_file, it.GetMethodCodeItem());
Andreas Gampeace0dc12016-01-20 13:33:13 -0800848 it.Next();
849 }
850 // Virtual methods.
851 int64_t previous_virtual_method_idx = -1;
852 while (it.HasNextVirtualMethod()) {
853 uint32_t method_idx = it.GetMemberIndex();
854 if (method_idx == previous_virtual_method_idx) {
855 // smali can create dex files with two encoded_methods sharing the same method_idx
856 // http://code.google.com/p/smali/issues/detail?id=119
857 it.Next();
858 continue;
859 }
860 previous_virtual_method_idx = method_idx;
Nicolas Geoffray571d2342016-10-12 13:03:15 +0000861 ResolveConstStrings(dex_cache, *dex_file, it.GetMethodCodeItem());
Andreas Gampeace0dc12016-01-20 13:33:13 -0800862 it.Next();
863 }
864 DCHECK(!it.HasNext());
865 }
866 }
867}
868
869inline void CompilerDriver::CheckThreadPools() {
870 DCHECK(parallel_thread_pool_ != nullptr);
871 DCHECK(single_thread_pool_ != nullptr);
872}
873
874void CompilerDriver::PreCompile(jobject class_loader,
875 const std::vector<const DexFile*>& dex_files,
876 TimingLogger* timings) {
877 CheckThreadPools();
878
Brian Carlstrom7940e442013-07-12 13:46:57 -0700879 LoadImageClasses(timings);
Andreas Gampe8d295f82015-01-20 14:50:21 -0800880 VLOG(compiler) << "LoadImageClasses: " << GetMemoryUsageString(false);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700881
Mathieu Chartiere86deef2015-03-19 13:43:37 -0700882 const bool verification_enabled = compiler_options_->IsVerificationEnabled();
883 const bool never_verify = compiler_options_->NeverVerify();
Mathieu Chartiera8077802016-03-16 19:08:31 -0700884 const bool verify_only_profile = compiler_options_->VerifyOnlyProfile();
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700885
Mathieu Chartiere86deef2015-03-19 13:43:37 -0700886 // We need to resolve for never_verify since it needs to run dex to dex to add the
887 // RETURN_VOID_NO_BARRIER.
Mathieu Chartiera8077802016-03-16 19:08:31 -0700888 // Let the verifier resolve as needed for the verify_only_profile case.
889 if ((never_verify || verification_enabled) && !verify_only_profile) {
Andreas Gampeace0dc12016-01-20 13:33:13 -0800890 Resolve(class_loader, dex_files, timings);
Mathieu Chartiere86deef2015-03-19 13:43:37 -0700891 VLOG(compiler) << "Resolve: " << GetMemoryUsageString(false);
892 }
893
894 if (never_verify) {
Mathieu Chartierab972ef2014-12-03 17:38:22 -0800895 VLOG(compiler) << "Verify none mode specified, skipping verification.";
Andreas Gampeace0dc12016-01-20 13:33:13 -0800896 SetVerified(class_loader, dex_files, timings);
Mathieu Chartiere86deef2015-03-19 13:43:37 -0700897 }
898
899 if (!verification_enabled) {
Jeff Hao4a200f52014-04-01 14:58:49 -0700900 return;
901 }
902
Vladimir Markoaad75c62016-10-03 08:46:48 +0000903 if (GetCompilerOptions().IsForceDeterminism() && GetCompilerOptions().IsBootImage()) {
Andreas Gampeace0dc12016-01-20 13:33:13 -0800904 // Resolve strings from const-string. Do this now to have a deterministic image.
905 ResolveConstStrings(this, dex_files, timings);
906 VLOG(compiler) << "Resolve const-strings: " << GetMemoryUsageString(false);
907 }
908
909 Verify(class_loader, dex_files, timings);
Andreas Gampe8d295f82015-01-20 14:50:21 -0800910 VLOG(compiler) << "Verify: " << GetMemoryUsageString(false);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700911
Andreas Gampe6cf49e52015-03-05 13:08:45 -0800912 if (had_hard_verifier_failure_ && GetCompilerOptions().AbortOnHardVerifierFailure()) {
913 LOG(FATAL) << "Had a hard failure verifying all classes, and was asked to abort in such "
914 << "situations. Please check the log.";
915 }
916
Andreas Gampeace0dc12016-01-20 13:33:13 -0800917 InitializeClasses(class_loader, dex_files, timings);
Andreas Gampe8d295f82015-01-20 14:50:21 -0800918 VLOG(compiler) << "InitializeClasses: " << GetMemoryUsageString(false);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700919
920 UpdateImageClasses(timings);
Andreas Gampe8d295f82015-01-20 14:50:21 -0800921 VLOG(compiler) << "UpdateImageClasses: " << GetMemoryUsageString(false);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700922}
923
Ian Rogersdfb325e2013-10-30 01:00:44 -0700924bool CompilerDriver::IsImageClass(const char* descriptor) const {
Mathieu Chartierc5dd3192015-12-09 16:38:30 -0800925 if (image_classes_ != nullptr) {
926 // If we have a set of image classes, use those.
Ian Rogersdfb325e2013-10-30 01:00:44 -0700927 return image_classes_->find(descriptor) != image_classes_->end();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700928 }
Mathieu Chartierc5dd3192015-12-09 16:38:30 -0800929 // No set of image classes, assume we include all the classes.
930 // NOTE: Currently only reachable from InitImageMethodVisitor for the app image case.
Vladimir Markoaad75c62016-10-03 08:46:48 +0000931 return !GetCompilerOptions().IsBootImage();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700932}
933
Andreas Gampe4bf3ae92014-11-11 13:28:29 -0800934bool CompilerDriver::IsClassToCompile(const char* descriptor) const {
Andreas Gampeb1fcead2015-04-20 18:53:51 -0700935 if (classes_to_compile_ == nullptr) {
936 return true;
937 }
938 return classes_to_compile_->find(descriptor) != classes_to_compile_->end();
Andreas Gampe4bf3ae92014-11-11 13:28:29 -0800939}
940
Andreas Gampe70bef0d2015-04-15 02:37:28 -0700941bool CompilerDriver::IsMethodToCompile(const MethodReference& method_ref) const {
Andreas Gampe70bef0d2015-04-15 02:37:28 -0700942 if (methods_to_compile_ == nullptr) {
943 return true;
944 }
945
David Sehr709b0702016-10-13 09:12:37 -0700946 std::string tmp = method_ref.dex_file->PrettyMethod(method_ref.dex_method_index, true);
Andreas Gampe70bef0d2015-04-15 02:37:28 -0700947 return methods_to_compile_->find(tmp.c_str()) != methods_to_compile_->end();
948}
949
Calin Juravle226501b2015-12-11 14:41:31 +0000950bool CompilerDriver::ShouldCompileBasedOnProfile(const MethodReference& method_ref) const {
951 if (profile_compilation_info_ == nullptr) {
952 // If we miss profile information it means that we don't do a profile guided compilation.
953 // Return true, and let the other filters decide if the method should be compiled.
954 return true;
955 }
956 bool result = profile_compilation_info_->ContainsMethod(method_ref);
957
958 if (kDebugProfileGuidedCompilation) {
959 LOG(INFO) << "[ProfileGuidedCompilation] "
960 << (result ? "Compiled" : "Skipped") << " method:"
David Sehr709b0702016-10-13 09:12:37 -0700961 << method_ref.dex_file->PrettyMethod(method_ref.dex_method_index, true);
Calin Juravle226501b2015-12-11 14:41:31 +0000962 }
963 return result;
964}
965
Mathieu Chartiera8077802016-03-16 19:08:31 -0700966bool CompilerDriver::ShouldVerifyClassBasedOnProfile(const DexFile& dex_file,
967 uint16_t class_idx) const {
968 if (!compiler_options_->VerifyOnlyProfile()) {
969 // No profile, verify everything.
970 return true;
971 }
972 DCHECK(profile_compilation_info_ != nullptr);
973 bool result = profile_compilation_info_->ContainsClass(dex_file, class_idx);
974 if (kDebugProfileGuidedCompilation) {
975 LOG(INFO) << "[ProfileGuidedCompilation] "
976 << (result ? "Verified" : "Skipped") << " method:"
977 << dex_file.GetClassDescriptor(dex_file.GetClassDef(class_idx));
978 }
979 return result;
980}
981
Mathieu Chartiere0671ce2015-07-28 17:23:28 -0700982class ResolveCatchBlockExceptionsClassVisitor : public ClassVisitor {
983 public:
Chih-Hung Hsieh471118e2016-04-29 14:27:41 -0700984 explicit ResolveCatchBlockExceptionsClassVisitor(
Mathieu Chartiere0671ce2015-07-28 17:23:28 -0700985 std::set<std::pair<uint16_t, const DexFile*>>& exceptions_to_resolve)
986 : exceptions_to_resolve_(exceptions_to_resolve) {}
987
Mathieu Chartier28357fa2016-10-18 16:27:40 -0700988 virtual bool operator()(ObjPtr<mirror::Class> c) OVERRIDE REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartiere4275c02015-08-06 15:34:15 -0700989 const auto pointer_size = Runtime::Current()->GetClassLinker()->GetImagePointerSize();
Alex Lighte64300b2015-12-15 15:02:47 -0800990 for (auto& m : c->GetMethods(pointer_size)) {
Vladimir Marko05792b92015-08-03 11:56:49 +0100991 ResolveExceptionsForMethod(&m, pointer_size);
Mathieu Chartiere4275c02015-08-06 15:34:15 -0700992 }
993 return true;
994 }
995
996 private:
Andreas Gampe542451c2016-07-26 09:02:02 -0700997 void ResolveExceptionsForMethod(ArtMethod* method_handle, PointerSize pointer_size)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700998 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartiere0671ce2015-07-28 17:23:28 -0700999 const DexFile::CodeItem* code_item = method_handle->GetCodeItem();
1000 if (code_item == nullptr) {
1001 return; // native or abstract method
Brian Carlstrom7940e442013-07-12 13:46:57 -07001002 }
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001003 if (code_item->tries_size_ == 0) {
1004 return; // nothing to process
1005 }
1006 const uint8_t* encoded_catch_handler_list = DexFile::GetCatchHandlerData(*code_item, 0);
1007 size_t num_encoded_catch_handlers = DecodeUnsignedLeb128(&encoded_catch_handler_list);
1008 for (size_t i = 0; i < num_encoded_catch_handlers; i++) {
1009 int32_t encoded_catch_handler_size = DecodeSignedLeb128(&encoded_catch_handler_list);
1010 bool has_catch_all = false;
1011 if (encoded_catch_handler_size <= 0) {
1012 encoded_catch_handler_size = -encoded_catch_handler_size;
1013 has_catch_all = true;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001014 }
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001015 for (int32_t j = 0; j < encoded_catch_handler_size; j++) {
1016 uint16_t encoded_catch_handler_handlers_type_idx =
1017 DecodeUnsignedLeb128(&encoded_catch_handler_list);
1018 // Add to set of types to resolve if not already in the dex cache resolved types
Vladimir Marko05792b92015-08-03 11:56:49 +01001019 if (!method_handle->IsResolvedTypeIdx(encoded_catch_handler_handlers_type_idx,
1020 pointer_size)) {
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001021 exceptions_to_resolve_.emplace(encoded_catch_handler_handlers_type_idx,
1022 method_handle->GetDexFile());
1023 }
1024 // ignore address associated with catch handler
1025 DecodeUnsignedLeb128(&encoded_catch_handler_list);
1026 }
1027 if (has_catch_all) {
1028 // ignore catch all address
1029 DecodeUnsignedLeb128(&encoded_catch_handler_list);
1030 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001031 }
1032 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001033
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001034 std::set<std::pair<uint16_t, const DexFile*>>& exceptions_to_resolve_;
1035};
1036
1037class RecordImageClassesVisitor : public ClassVisitor {
1038 public:
1039 explicit RecordImageClassesVisitor(std::unordered_set<std::string>* image_classes)
1040 : image_classes_(image_classes) {}
1041
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001042 bool operator()(ObjPtr<mirror::Class> klass) OVERRIDE REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001043 std::string temp;
1044 image_classes_->insert(klass->GetDescriptor(&temp));
1045 return true;
1046 }
1047
1048 private:
1049 std::unordered_set<std::string>* const image_classes_;
1050};
Brian Carlstrom7940e442013-07-12 13:46:57 -07001051
1052// Make a list of descriptors for classes to include in the image
Mathieu Chartier90443472015-07-16 20:32:27 -07001053void CompilerDriver::LoadImageClasses(TimingLogger* timings) {
Kenny Rootd5185342014-05-13 14:47:05 -07001054 CHECK(timings != nullptr);
Vladimir Markoaad75c62016-10-03 08:46:48 +00001055 if (!GetCompilerOptions().IsBootImage()) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001056 return;
1057 }
1058
Mathieu Chartierf5997b42014-06-20 10:37:54 -07001059 TimingLogger::ScopedTiming t("LoadImageClasses", timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001060 // Make a first class to load all classes explicitly listed in the file
1061 Thread* self = Thread::Current();
1062 ScopedObjectAccess soa(self);
1063 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Kenny Rootd5185342014-05-13 14:47:05 -07001064 CHECK(image_classes_.get() != nullptr);
Mathieu Chartier02e25112013-08-14 16:14:24 -07001065 for (auto it = image_classes_->begin(), end = image_classes_->end(); it != end;) {
Vladimir Markoe9c36b32013-11-21 15:49:16 +00001066 const std::string& descriptor(*it);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001067 StackHandleScope<1> hs(self);
1068 Handle<mirror::Class> klass(
1069 hs.NewHandle(class_linker->FindSystemClass(self, descriptor.c_str())));
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001070 if (klass.Get() == nullptr) {
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001071 VLOG(compiler) << "Failed to find class " << descriptor;
Vladimir Markoe9c36b32013-11-21 15:49:16 +00001072 image_classes_->erase(it++);
Ian Rogersa436fde2013-08-27 23:34:06 -07001073 self->ClearException();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001074 } else {
1075 ++it;
1076 }
1077 }
1078
1079 // Resolve exception classes referenced by the loaded classes. The catch logic assumes
1080 // exceptions are resolved by the verifier when there is a catch block in an interested method.
1081 // Do this here so that exception classes appear to have been specified image classes.
Ian Rogers700a4022014-05-19 16:49:03 -07001082 std::set<std::pair<uint16_t, const DexFile*>> unresolved_exception_types;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001083 StackHandleScope<1> hs(self);
1084 Handle<mirror::Class> java_lang_Throwable(
1085 hs.NewHandle(class_linker->FindSystemClass(self, "Ljava/lang/Throwable;")));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001086 do {
1087 unresolved_exception_types.clear();
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001088 ResolveCatchBlockExceptionsClassVisitor visitor(unresolved_exception_types);
1089 class_linker->VisitClasses(&visitor);
Mathieu Chartier02e25112013-08-14 16:14:24 -07001090 for (const std::pair<uint16_t, const DexFile*>& exception_type : unresolved_exception_types) {
1091 uint16_t exception_type_idx = exception_type.first;
1092 const DexFile* dex_file = exception_type.second;
Andreas Gampe277ccbd2014-11-03 21:36:10 -08001093 StackHandleScope<2> hs2(self);
Mathieu Chartierf284d442016-06-02 11:48:30 -07001094 Handle<mirror::DexCache> dex_cache(hs2.NewHandle(class_linker->RegisterDexFile(*dex_file,
1095 nullptr)));
Andreas Gampe277ccbd2014-11-03 21:36:10 -08001096 Handle<mirror::Class> klass(hs2.NewHandle(
Mathieu Chartier9865bde2015-12-21 09:58:16 -08001097 class_linker->ResolveType(*dex_file,
1098 exception_type_idx,
1099 dex_cache,
1100 ScopedNullHandle<mirror::ClassLoader>())));
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001101 if (klass.Get() == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001102 const DexFile::TypeId& type_id = dex_file->GetTypeId(exception_type_idx);
1103 const char* descriptor = dex_file->GetTypeDescriptor(type_id);
1104 LOG(FATAL) << "Failed to resolve class " << descriptor;
1105 }
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001106 DCHECK(java_lang_Throwable->IsAssignableFrom(klass.Get()));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001107 }
1108 // Resolving exceptions may load classes that reference more exceptions, iterate until no
1109 // more are found
1110 } while (!unresolved_exception_types.empty());
1111
1112 // We walk the roots looking for classes so that we'll pick up the
1113 // above classes plus any classes them depend on such super
1114 // classes, interfaces, and the required ClassLinker roots.
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001115 RecordImageClassesVisitor visitor(image_classes_.get());
1116 class_linker->VisitClasses(&visitor);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001117
1118 CHECK_NE(image_classes_->size(), 0U);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001119}
1120
Andreas Gampeb1fcead2015-04-20 18:53:51 -07001121static void MaybeAddToImageClasses(Handle<mirror::Class> c,
1122 std::unordered_set<std::string>* image_classes)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001123 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartierf8322842014-05-16 10:59:25 -07001124 Thread* self = Thread::Current();
1125 StackHandleScope<1> hs(self);
1126 // Make a copy of the handle so that we don't clobber it doing Assign.
Andreas Gampe5a4b8a22014-09-11 08:30:08 -07001127 MutableHandle<mirror::Class> klass(hs.NewHandle(c.Get()));
Ian Rogers1ff3c982014-08-12 02:30:58 -07001128 std::string temp;
Andreas Gampe542451c2016-07-26 09:02:02 -07001129 const PointerSize pointer_size = Runtime::Current()->GetClassLinker()->GetImagePointerSize();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001130 while (!klass->IsObjectClass()) {
Ian Rogers1ff3c982014-08-12 02:30:58 -07001131 const char* descriptor = klass->GetDescriptor(&temp);
Andreas Gampeb1fcead2015-04-20 18:53:51 -07001132 std::pair<std::unordered_set<std::string>::iterator, bool> result =
1133 image_classes->insert(descriptor);
Ian Rogers1ff3c982014-08-12 02:30:58 -07001134 if (!result.second) { // Previously inserted.
1135 break;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001136 }
Ian Rogers1ff3c982014-08-12 02:30:58 -07001137 VLOG(compiler) << "Adding " << descriptor << " to image classes";
Mathieu Chartierf8322842014-05-16 10:59:25 -07001138 for (size_t i = 0; i < klass->NumDirectInterfaces(); ++i) {
Andreas Gampe277ccbd2014-11-03 21:36:10 -08001139 StackHandleScope<1> hs2(self);
Mathieu Chartier31e88222016-10-14 18:43:19 -07001140 // May cause thread suspension.
Andreas Gampe277ccbd2014-11-03 21:36:10 -08001141 MaybeAddToImageClasses(hs2.NewHandle(mirror::Class::GetDirectInterface(self, klass, i)),
Mathieu Chartierf8322842014-05-16 10:59:25 -07001142 image_classes);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001143 }
Mathieu Chartiere401d142015-04-22 13:56:20 -07001144 for (auto& m : c->GetVirtualMethods(pointer_size)) {
Alex Light36121492016-02-22 13:43:29 -08001145 StackHandleScope<1> hs2(self);
1146 MaybeAddToImageClasses(hs2.NewHandle(m.GetDeclaringClass()), image_classes);
Mathieu Chartiere401d142015-04-22 13:56:20 -07001147 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001148 if (klass->IsArrayClass()) {
Andreas Gampe277ccbd2014-11-03 21:36:10 -08001149 StackHandleScope<1> hs2(self);
1150 MaybeAddToImageClasses(hs2.NewHandle(klass->GetComponentType()), image_classes);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001151 }
Mathieu Chartierf8322842014-05-16 10:59:25 -07001152 klass.Assign(klass->GetSuperClass());
Brian Carlstrom7940e442013-07-12 13:46:57 -07001153 }
1154}
1155
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001156// Keeps all the data for the update together. Also doubles as the reference visitor.
1157// Note: we can use object pointers because we suspend all threads.
1158class ClinitImageUpdate {
1159 public:
Mathieu Chartier31e88222016-10-14 18:43:19 -07001160 static ClinitImageUpdate* Create(VariableSizedHandleScope& hs,
1161 std::unordered_set<std::string>* image_class_descriptors,
1162 Thread* self,
1163 ClassLinker* linker) {
1164 std::unique_ptr<ClinitImageUpdate> res(new ClinitImageUpdate(hs,
1165 image_class_descriptors,
1166 self,
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001167 linker));
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001168 return res.release();
1169 }
1170
1171 ~ClinitImageUpdate() {
1172 // Allow others to suspend again.
1173 self_->EndAssertNoThreadSuspension(old_cause_);
1174 }
1175
1176 // Visitor for VisitReferences.
Mathieu Chartier31e88222016-10-14 18:43:19 -07001177 void operator()(ObjPtr<mirror::Object> object,
1178 MemberOffset field_offset,
1179 bool /* is_static */) const
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001180 REQUIRES_SHARED(Locks::mutator_lock_) {
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001181 mirror::Object* ref = object->GetFieldObject<mirror::Object>(field_offset);
1182 if (ref != nullptr) {
1183 VisitClinitClassesObject(ref);
1184 }
1185 }
1186
1187 // java.lang.Reference visitor for VisitReferences.
Mathieu Chartier31e88222016-10-14 18:43:19 -07001188 void operator()(ObjPtr<mirror::Class> klass ATTRIBUTE_UNUSED,
1189 ObjPtr<mirror::Reference> ref ATTRIBUTE_UNUSED) const {}
Mathieu Chartierda7c6502015-07-23 16:01:26 -07001190
1191 // Ignore class native roots.
1192 void VisitRootIfNonNull(mirror::CompressedReference<mirror::Object>* root ATTRIBUTE_UNUSED)
1193 const {}
1194 void VisitRoot(mirror::CompressedReference<mirror::Object>* root ATTRIBUTE_UNUSED) const {}
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001195
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001196 void Walk() REQUIRES_SHARED(Locks::mutator_lock_) {
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001197 // Use the initial classes as roots for a search.
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001198 for (Handle<mirror::Class> klass_root : image_classes_) {
1199 VisitClinitClassesObject(klass_root.Get());
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001200 }
Mathieu Chartier31e88222016-10-14 18:43:19 -07001201 for (Handle<mirror::Class> h_klass : to_insert_) {
1202 MaybeAddToImageClasses(h_klass, image_class_descriptors_);
1203 }
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001204 }
1205
1206 private:
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001207 class FindImageClassesVisitor : public ClassVisitor {
1208 public:
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001209 explicit FindImageClassesVisitor(VariableSizedHandleScope& hs,
1210 ClinitImageUpdate* data)
1211 : data_(data),
1212 hs_(hs) {}
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001213
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001214 bool operator()(ObjPtr<mirror::Class> klass) OVERRIDE REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001215 std::string temp;
1216 const char* name = klass->GetDescriptor(&temp);
1217 if (data_->image_class_descriptors_->find(name) != data_->image_class_descriptors_->end()) {
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001218 data_->image_classes_.push_back(hs_.NewHandle(klass));
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001219 } else {
1220 // Check whether it is initialized and has a clinit. They must be kept, too.
1221 if (klass->IsInitialized() && klass->FindClassInitializer(
1222 Runtime::Current()->GetClassLinker()->GetImagePointerSize()) != nullptr) {
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001223 data_->image_classes_.push_back(hs_.NewHandle(klass));
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001224 }
1225 }
1226 return true;
1227 }
1228
1229 private:
1230 ClinitImageUpdate* const data_;
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001231 VariableSizedHandleScope& hs_;
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001232 };
1233
Mathieu Chartier31e88222016-10-14 18:43:19 -07001234 ClinitImageUpdate(VariableSizedHandleScope& hs,
1235 std::unordered_set<std::string>* image_class_descriptors,
1236 Thread* self,
1237 ClassLinker* linker) REQUIRES_SHARED(Locks::mutator_lock_)
1238 : hs_(hs),
1239 image_class_descriptors_(image_class_descriptors),
1240 self_(self) {
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001241 CHECK(linker != nullptr);
1242 CHECK(image_class_descriptors != nullptr);
1243
1244 // Make sure nobody interferes with us.
1245 old_cause_ = self->StartAssertNoThreadSuspension("Boot image closure");
1246
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001247 // Find all the already-marked classes.
1248 WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001249 FindImageClassesVisitor visitor(hs_, this);
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001250 linker->VisitClasses(&visitor);
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001251 }
1252
1253 void VisitClinitClassesObject(mirror::Object* object) const
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001254 REQUIRES_SHARED(Locks::mutator_lock_) {
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001255 DCHECK(object != nullptr);
1256 if (marked_objects_.find(object) != marked_objects_.end()) {
1257 // Already processed.
1258 return;
1259 }
1260
1261 // Mark it.
1262 marked_objects_.insert(object);
1263
1264 if (object->IsClass()) {
Mathieu Chartier31e88222016-10-14 18:43:19 -07001265 // Add to the TODO list since MaybeAddToImageClasses may cause thread suspension. Thread
1266 // suspensionb is not safe to do in VisitObjects or VisitReferences.
1267 to_insert_.push_back(hs_.NewHandle(object->AsClass()));
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001268 } else {
1269 // Else visit the object's class.
1270 VisitClinitClassesObject(object->GetClass());
1271 }
1272
Mathieu Chartiere401d142015-04-22 13:56:20 -07001273 // If it is not a DexCache, visit all references.
Mathieu Chartier31e88222016-10-14 18:43:19 -07001274 if (!object->IsDexCache()) {
Mathieu Chartier059ef3d2015-08-18 13:54:21 -07001275 object->VisitReferences(*this, *this);
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001276 }
1277 }
1278
Mathieu Chartier31e88222016-10-14 18:43:19 -07001279 VariableSizedHandleScope& hs_;
1280 mutable std::vector<Handle<mirror::Class>> to_insert_;
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001281 mutable std::unordered_set<mirror::Object*> marked_objects_;
Andreas Gampeb1fcead2015-04-20 18:53:51 -07001282 std::unordered_set<std::string>* const image_class_descriptors_;
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001283 std::vector<Handle<mirror::Class>> image_classes_;
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001284 Thread* const self_;
1285 const char* old_cause_;
1286
1287 DISALLOW_COPY_AND_ASSIGN(ClinitImageUpdate);
1288};
Brian Carlstrom7940e442013-07-12 13:46:57 -07001289
Ian Rogers3d504072014-03-01 09:16:49 -08001290void CompilerDriver::UpdateImageClasses(TimingLogger* timings) {
Vladimir Markoaad75c62016-10-03 08:46:48 +00001291 if (GetCompilerOptions().IsBootImage()) {
Mathieu Chartierf5997b42014-06-20 10:37:54 -07001292 TimingLogger::ScopedTiming t("UpdateImageClasses", timings);
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001293
Mathieu Chartier4f55e222015-09-04 13:26:21 -07001294 Runtime* runtime = Runtime::Current();
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001295
1296 // Suspend all threads.
Mathieu Chartier4f55e222015-09-04 13:26:21 -07001297 ScopedSuspendAll ssa(__FUNCTION__);
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001298
Mathieu Chartier31e88222016-10-14 18:43:19 -07001299 VariableSizedHandleScope hs(Thread::Current());
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001300 std::string error_msg;
Mathieu Chartier31e88222016-10-14 18:43:19 -07001301 std::unique_ptr<ClinitImageUpdate> update(ClinitImageUpdate::Create(hs,
1302 image_classes_.get(),
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001303 Thread::Current(),
Mathieu Chartier31e88222016-10-14 18:43:19 -07001304 runtime->GetClassLinker()));
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001305
1306 // Do the marking.
1307 update->Walk();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001308 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001309}
1310
Vladimir Marko07785bb2015-06-15 18:52:54 +01001311bool CompilerDriver::CanAssumeClassIsLoaded(mirror::Class* klass) {
1312 Runtime* runtime = Runtime::Current();
1313 if (!runtime->IsAotCompiler()) {
Calin Juravleffc87072016-04-20 14:22:09 +01001314 DCHECK(runtime->UseJitCompilation());
Vladimir Marko07785bb2015-06-15 18:52:54 +01001315 // Having the klass reference here implies that the klass is already loaded.
1316 return true;
1317 }
Vladimir Markoaad75c62016-10-03 08:46:48 +00001318 if (!GetCompilerOptions().IsBootImage()) {
Vladimir Marko07785bb2015-06-15 18:52:54 +01001319 // Assume loaded only if klass is in the boot image. App classes cannot be assumed
1320 // loaded because we don't even know what class loader will be used to load them.
1321 bool class_in_image = runtime->GetHeap()->FindSpaceFromObject(klass, false)->IsImageSpace();
1322 return class_in_image;
1323 }
1324 std::string temp;
1325 const char* descriptor = klass->GetDescriptor(&temp);
1326 return IsImageClass(descriptor);
1327}
1328
Vladimir Marko492a7fa2016-06-01 18:38:43 +01001329void CompilerDriver::MarkForDexToDexCompilation(Thread* self, const MethodReference& method_ref) {
1330 MutexLock lock(self, dex_to_dex_references_lock_);
1331 // Since we're compiling one dex file at a time, we need to look for the
1332 // current dex file entry only at the end of dex_to_dex_references_.
1333 if (dex_to_dex_references_.empty() ||
1334 &dex_to_dex_references_.back().GetDexFile() != method_ref.dex_file) {
1335 dex_to_dex_references_.emplace_back(*method_ref.dex_file);
1336 }
1337 dex_to_dex_references_.back().GetMethodIndexes().SetBit(method_ref.dex_method_index);
1338}
1339
Vladimir Marko3cd50df2016-04-13 19:29:26 +01001340bool CompilerDriver::CanAccessTypeWithoutChecks(uint32_t referrer_idx,
1341 Handle<mirror::DexCache> dex_cache,
1342 uint32_t type_idx) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001343 // Get type from dex cache assuming it was populated by the verifier
1344 mirror::Class* resolved_class = dex_cache->GetResolvedType(type_idx);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001345 if (resolved_class == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001346 stats_->TypeNeedsAccessCheck();
1347 return false; // Unknown class needs access checks.
1348 }
Vladimir Marko3cd50df2016-04-13 19:29:26 +01001349 const DexFile::MethodId& method_id = dex_cache->GetDexFile()->GetMethodId(referrer_idx);
David Brazdil38f64d32016-01-18 17:13:41 +00001350 bool is_accessible = resolved_class->IsPublic(); // Public classes are always accessible.
1351 if (!is_accessible) {
1352 mirror::Class* referrer_class = dex_cache->GetResolvedType(method_id.class_idx_);
1353 if (referrer_class == nullptr) {
1354 stats_->TypeNeedsAccessCheck();
1355 return false; // Incomplete referrer knowledge needs access check.
1356 }
1357 // Perform access check, will return true if access is ok or false if we're going to have to
1358 // check this at runtime (for example for class loaders).
1359 is_accessible = referrer_class->CanAccess(resolved_class);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001360 }
David Brazdil38f64d32016-01-18 17:13:41 +00001361 if (is_accessible) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001362 stats_->TypeDoesntNeedAccessCheck();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001363 } else {
1364 stats_->TypeNeedsAccessCheck();
1365 }
David Brazdil38f64d32016-01-18 17:13:41 +00001366 return is_accessible;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001367}
1368
1369bool CompilerDriver::CanAccessInstantiableTypeWithoutChecks(uint32_t referrer_idx,
Vladimir Marko3cd50df2016-04-13 19:29:26 +01001370 Handle<mirror::DexCache> dex_cache,
Mingyao Yangfb8464a2015-11-02 10:56:59 -08001371 uint32_t type_idx,
1372 bool* finalizable) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001373 // Get type from dex cache assuming it was populated by the verifier.
1374 mirror::Class* resolved_class = dex_cache->GetResolvedType(type_idx);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001375 if (resolved_class == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001376 stats_->TypeNeedsAccessCheck();
Mingyao Yangfb8464a2015-11-02 10:56:59 -08001377 // Be conservative.
1378 *finalizable = true;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001379 return false; // Unknown class needs access checks.
1380 }
Mingyao Yangfb8464a2015-11-02 10:56:59 -08001381 *finalizable = resolved_class->IsFinalizable();
Vladimir Marko3cd50df2016-04-13 19:29:26 +01001382 const DexFile::MethodId& method_id = dex_cache->GetDexFile()->GetMethodId(referrer_idx);
David Brazdil38f64d32016-01-18 17:13:41 +00001383 bool is_accessible = resolved_class->IsPublic(); // Public classes are always accessible.
1384 if (!is_accessible) {
1385 mirror::Class* referrer_class = dex_cache->GetResolvedType(method_id.class_idx_);
1386 if (referrer_class == nullptr) {
1387 stats_->TypeNeedsAccessCheck();
1388 return false; // Incomplete referrer knowledge needs access check.
1389 }
1390 // Perform access and instantiable checks, will return true if access is ok or false if we're
1391 // going to have to check this at runtime (for example for class loaders).
1392 is_accessible = referrer_class->CanAccess(resolved_class);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001393 }
David Brazdil38f64d32016-01-18 17:13:41 +00001394 bool result = is_accessible && resolved_class->IsInstantiable();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001395 if (result) {
1396 stats_->TypeDoesntNeedAccessCheck();
1397 } else {
1398 stats_->TypeNeedsAccessCheck();
1399 }
1400 return result;
1401}
1402
Vladimir Markobe0e5462014-02-26 11:24:15 +00001403void CompilerDriver::ProcessedInstanceField(bool resolved) {
1404 if (!resolved) {
1405 stats_->UnresolvedInstanceField();
1406 } else {
1407 stats_->ResolvedInstanceField();
1408 }
1409}
1410
1411void CompilerDriver::ProcessedStaticField(bool resolved, bool local) {
1412 if (!resolved) {
1413 stats_->UnresolvedStaticField();
1414 } else if (local) {
1415 stats_->ResolvedLocalStaticField();
1416 } else {
1417 stats_->ResolvedStaticField();
1418 }
1419}
1420
Mathieu Chartierc7853442015-03-27 14:35:38 -07001421ArtField* CompilerDriver::ComputeInstanceFieldInfo(uint32_t field_idx,
1422 const DexCompilationUnit* mUnit, bool is_put,
1423 const ScopedObjectAccess& soa) {
Vladimir Markobe0e5462014-02-26 11:24:15 +00001424 // Try to resolve the field and compiling method's class.
Mathieu Chartierc7853442015-03-27 14:35:38 -07001425 ArtField* resolved_field;
Vladimir Markobe0e5462014-02-26 11:24:15 +00001426 mirror::Class* referrer_class;
Mathieu Chartier736b5602015-09-02 14:54:11 -07001427 Handle<mirror::DexCache> dex_cache(mUnit->GetDexCache());
Vladimir Markobe0e5462014-02-26 11:24:15 +00001428 {
Mathieu Chartier736b5602015-09-02 14:54:11 -07001429 StackHandleScope<1> hs(soa.Self());
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001430 Handle<mirror::ClassLoader> class_loader_handle(
Mathieu Chartier0795f232016-09-27 18:43:30 -07001431 hs.NewHandle(soa.Decode<mirror::ClassLoader>(mUnit->GetClassLoader())));
Mathieu Chartier736b5602015-09-02 14:54:11 -07001432 resolved_field = ResolveField(soa, dex_cache, class_loader_handle, mUnit, field_idx, false);
Mathieu Chartierc7853442015-03-27 14:35:38 -07001433 referrer_class = resolved_field != nullptr
Mathieu Chartier736b5602015-09-02 14:54:11 -07001434 ? ResolveCompilingMethodsClass(soa, dex_cache, class_loader_handle, mUnit) : nullptr;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001435 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001436 bool can_link = false;
Vladimir Markobe0e5462014-02-26 11:24:15 +00001437 if (resolved_field != nullptr && referrer_class != nullptr) {
Vladimir Markobe0e5462014-02-26 11:24:15 +00001438 std::pair<bool, bool> fast_path = IsFastInstanceField(
Mathieu Chartier736b5602015-09-02 14:54:11 -07001439 dex_cache.Get(), referrer_class, resolved_field, field_idx);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001440 can_link = is_put ? fast_path.second : fast_path.first;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001441 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001442 ProcessedInstanceField(can_link);
1443 return can_link ? resolved_field : nullptr;
1444}
1445
1446bool CompilerDriver::ComputeInstanceFieldInfo(uint32_t field_idx, const DexCompilationUnit* mUnit,
1447 bool is_put, MemberOffset* field_offset,
1448 bool* is_volatile) {
1449 ScopedObjectAccess soa(Thread::Current());
Mathieu Chartierc7853442015-03-27 14:35:38 -07001450 ArtField* resolved_field = ComputeInstanceFieldInfo(field_idx, mUnit, is_put, soa);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001451
Mathieu Chartierc7853442015-03-27 14:35:38 -07001452 if (resolved_field == nullptr) {
Vladimir Markobe0e5462014-02-26 11:24:15 +00001453 // Conservative defaults.
1454 *is_volatile = true;
1455 *field_offset = MemberOffset(static_cast<size_t>(-1));
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001456 return false;
1457 } else {
1458 *is_volatile = resolved_field->IsVolatile();
1459 *field_offset = resolved_field->GetOffset();
1460 return true;
Vladimir Markobe0e5462014-02-26 11:24:15 +00001461 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001462}
1463
Nicolas Geoffray5e4e11e2016-09-22 13:17:41 +01001464void CompilerDriver::GetCodeAndMethodForDirectCall(const mirror::Class* referrer_class,
Mathieu Chartiere401d142015-04-22 13:56:20 -07001465 ArtMethod* method,
Ian Rogers65ec92c2013-09-06 10:49:58 -07001466 uintptr_t* direct_code,
1467 uintptr_t* direct_method) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001468 // For direct and static methods compute possible direct_code and direct_method values, ie
1469 // an address for the Method* being invoked and an address of the code for that Method*.
1470 // For interface calls compute a value for direct_method that is the interface method being
1471 // invoked, so this can be passed to the out-of-line runtime support code.
Ian Rogers65ec92c2013-09-06 10:49:58 -07001472 *direct_code = 0;
1473 *direct_method = 0;
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08001474 Runtime* const runtime = Runtime::Current();
1475 gc::Heap* const heap = runtime->GetHeap();
Mathieu Chartiere401d142015-04-22 13:56:20 -07001476 auto* cl = runtime->GetClassLinker();
Igor Murashkind6dee672014-10-16 18:36:16 -07001477 bool use_dex_cache = GetCompilerOptions().GetCompilePic(); // Off by default
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08001478 const bool compiling_boot = heap->IsCompilingBoot();
Alex Lighta59dd802014-07-02 16:28:08 -07001479 // TODO This is somewhat hacky. We should refactor all of this invoke codepath.
1480 const bool force_relocations = (compiling_boot ||
1481 GetCompilerOptions().GetIncludePatchInformation());
Elliott Hughes956af0f2014-12-11 14:34:28 -08001482 // TODO: support patching on all architectures.
1483 use_dex_cache = use_dex_cache || (force_relocations && !support_boot_image_fixup_);
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08001484 mirror::Class* declaring_class = method->GetDeclaringClass();
1485 bool method_code_in_boot = declaring_class->GetClassLoader() == nullptr;
Ian Rogers83883d72013-10-21 21:07:24 -07001486 if (!use_dex_cache) {
1487 if (!method_code_in_boot) {
1488 use_dex_cache = true;
Nicolas Geoffray5e4e11e2016-09-22 13:17:41 +01001489 } else if (method->IsStatic() &&
1490 declaring_class != referrer_class &&
1491 !declaring_class->IsInitialized()) {
1492 // Ensure we run the clinit trampoline unless we are invoking a static method in the same
1493 // class.
1494 use_dex_cache = true;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001495 }
Ian Rogers83883d72013-10-21 21:07:24 -07001496 }
Calin Juravleffc87072016-04-20 14:22:09 +01001497 if (runtime->UseJitCompilation()) {
Mathieu Chartier28a35882015-02-26 18:28:07 -08001498 // If we are the JIT, then don't allow a direct call to the interpreter bridge since this will
1499 // never be updated even after we compile the method.
Mathieu Chartiere401d142015-04-22 13:56:20 -07001500 if (cl->IsQuickToInterpreterBridge(
Mathieu Chartier28a35882015-02-26 18:28:07 -08001501 reinterpret_cast<const void*>(compiler_->GetEntryPointOf(method)))) {
1502 use_dex_cache = true;
1503 }
1504 }
Nicolas Geoffray5e4e11e2016-09-22 13:17:41 +01001505
Alex Lighta59dd802014-07-02 16:28:08 -07001506 if (!use_dex_cache && force_relocations) {
Jeff Haoa0acc2d2015-01-27 11:22:04 -08001507 bool is_in_image;
Vladimir Markoaad75c62016-10-03 08:46:48 +00001508 if (GetCompilerOptions().IsBootImage()) {
Jeff Haoa0acc2d2015-01-27 11:22:04 -08001509 is_in_image = IsImageClass(method->GetDeclaringClassDescriptor());
1510 } else {
1511 is_in_image = instruction_set_ != kX86 && instruction_set_ != kX86_64 &&
Vladimir Markoc08ab292015-06-22 14:35:42 +01001512 heap->FindSpaceFromObject(method->GetDeclaringClass(), false)->IsImageSpace() &&
1513 !cl->IsQuickToInterpreterBridge(
1514 reinterpret_cast<const void*>(compiler_->GetEntryPointOf(method)));
Jeff Haoa0acc2d2015-01-27 11:22:04 -08001515 }
1516 if (!is_in_image) {
Ian Rogers83883d72013-10-21 21:07:24 -07001517 // We can only branch directly to Methods that are resolved in the DexCache.
1518 // Otherwise we won't invoke the resolution trampoline.
1519 use_dex_cache = true;
1520 }
1521 }
Nicolas Geoffray5e4e11e2016-09-22 13:17:41 +01001522
1523 if (!use_dex_cache) {
Mathieu Chartiere401d142015-04-22 13:56:20 -07001524 bool method_in_image = false;
Jeff Haodcdc85b2015-12-04 14:06:18 -08001525 const std::vector<gc::space::ImageSpace*> image_spaces = heap->GetBootImageSpaces();
1526 for (gc::space::ImageSpace* image_space : image_spaces) {
Mathieu Chartiere401d142015-04-22 13:56:20 -07001527 const auto& method_section = image_space->GetImageHeader().GetMethodsSection();
Jeff Haodcdc85b2015-12-04 14:06:18 -08001528 if (method_section.Contains(reinterpret_cast<uint8_t*>(method) - image_space->Begin())) {
1529 method_in_image = true;
1530 break;
1531 }
Mathieu Chartiere401d142015-04-22 13:56:20 -07001532 }
Calin Juravleffc87072016-04-20 14:22:09 +01001533 if (method_in_image || compiling_boot || runtime->UseJitCompilation()) {
Alex Lighta59dd802014-07-02 16:28:08 -07001534 // We know we must be able to get to the method in the image, so use that pointer.
Mathieu Chartier6ced4092015-02-27 16:10:48 -08001535 // In the case where we are the JIT, we can always use direct pointers since we know where
1536 // the method and its code are / will be. We don't sharpen to interpreter bridge since we
1537 // check IsQuickToInterpreterBridge above.
Vladimir Markoa51a0b02014-05-21 12:08:39 +01001538 CHECK(!method->IsAbstract());
Alex Lighta59dd802014-07-02 16:28:08 -07001539 *direct_method = force_relocations ? -1 : reinterpret_cast<uintptr_t>(method);
1540 *direct_code = force_relocations ? -1 : compiler_->GetEntryPointOf(method);
Nicolas Geoffray5e4e11e2016-09-22 13:17:41 +01001541 } else {
Vladimir Markoa51a0b02014-05-21 12:08:39 +01001542 // Set the code and rely on the dex cache for the method.
Nicolas Geoffray5e4e11e2016-09-22 13:17:41 +01001543 *direct_code = force_relocations ? -1 : compiler_->GetEntryPointOf(method);
Ian Rogers83883d72013-10-21 21:07:24 -07001544 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001545 }
1546}
1547
Vladimir Marko2730db02014-01-27 11:15:17 +00001548const VerifiedMethod* CompilerDriver::GetVerifiedMethod(const DexFile* dex_file,
1549 uint32_t method_idx) const {
1550 MethodReference ref(dex_file, method_idx);
1551 return verification_results_->GetVerifiedMethod(ref);
1552}
1553
1554bool CompilerDriver::IsSafeCast(const DexCompilationUnit* mUnit, uint32_t dex_pc) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001555 if (!compiler_options_->IsVerificationEnabled()) {
1556 // If we didn't verify, every cast has to be treated as non-safe.
1557 return false;
1558 }
Vladimir Marko2730db02014-01-27 11:15:17 +00001559 DCHECK(mUnit->GetVerifiedMethod() != nullptr);
1560 bool result = mUnit->GetVerifiedMethod()->IsSafeCast(dex_pc);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001561 if (result) {
1562 stats_->SafeCast();
1563 } else {
1564 stats_->NotASafeCast();
1565 }
1566 return result;
1567}
1568
Mathieu Chartier90443472015-07-16 20:32:27 -07001569class CompilationVisitor {
1570 public:
1571 virtual ~CompilationVisitor() {}
1572 virtual void Visit(size_t index) = 0;
1573};
1574
Brian Carlstrom7940e442013-07-12 13:46:57 -07001575class ParallelCompilationManager {
1576 public:
Brian Carlstrom7940e442013-07-12 13:46:57 -07001577 ParallelCompilationManager(ClassLinker* class_linker,
1578 jobject class_loader,
1579 CompilerDriver* compiler,
1580 const DexFile* dex_file,
Andreas Gampede7b4362014-07-28 18:38:57 -07001581 const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -08001582 ThreadPool* thread_pool)
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001583 : index_(0),
1584 class_linker_(class_linker),
Brian Carlstrom7940e442013-07-12 13:46:57 -07001585 class_loader_(class_loader),
1586 compiler_(compiler),
1587 dex_file_(dex_file),
Andreas Gampede7b4362014-07-28 18:38:57 -07001588 dex_files_(dex_files),
Ian Rogers3d504072014-03-01 09:16:49 -08001589 thread_pool_(thread_pool) {}
Brian Carlstrom7940e442013-07-12 13:46:57 -07001590
1591 ClassLinker* GetClassLinker() const {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001592 CHECK(class_linker_ != nullptr);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001593 return class_linker_;
1594 }
1595
1596 jobject GetClassLoader() const {
1597 return class_loader_;
1598 }
1599
1600 CompilerDriver* GetCompiler() const {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001601 CHECK(compiler_ != nullptr);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001602 return compiler_;
1603 }
1604
1605 const DexFile* GetDexFile() const {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001606 CHECK(dex_file_ != nullptr);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001607 return dex_file_;
1608 }
1609
Andreas Gampede7b4362014-07-28 18:38:57 -07001610 const std::vector<const DexFile*>& GetDexFiles() const {
1611 return dex_files_;
1612 }
1613
Mathieu Chartier90443472015-07-16 20:32:27 -07001614 void ForAll(size_t begin, size_t end, CompilationVisitor* visitor, size_t work_units)
1615 REQUIRES(!*Locks::mutator_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001616 Thread* self = Thread::Current();
1617 self->AssertNoPendingException();
1618 CHECK_GT(work_units, 0U);
1619
Ian Rogers3e5cf302014-05-20 16:40:37 -07001620 index_.StoreRelaxed(begin);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001621 for (size_t i = 0; i < work_units; ++i) {
Mathieu Chartier90443472015-07-16 20:32:27 -07001622 thread_pool_->AddTask(self, new ForAllClosure(this, end, visitor));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001623 }
1624 thread_pool_->StartWorkers(self);
1625
1626 // Ensure we're suspended while we're blocked waiting for the other threads to finish (worker
1627 // thread destructor's called below perform join).
1628 CHECK_NE(self->GetState(), kRunnable);
1629
1630 // Wait for all the worker threads to finish.
1631 thread_pool_->Wait(self, true, false);
Andreas Gampeace0dc12016-01-20 13:33:13 -08001632
1633 // And stop the workers accepting jobs.
1634 thread_pool_->StopWorkers(self);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001635 }
1636
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001637 size_t NextIndex() {
Ian Rogers3e5cf302014-05-20 16:40:37 -07001638 return index_.FetchAndAddSequentiallyConsistent(1);
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001639 }
1640
Brian Carlstrom7940e442013-07-12 13:46:57 -07001641 private:
Brian Carlstrom7940e442013-07-12 13:46:57 -07001642 class ForAllClosure : public Task {
1643 public:
Mathieu Chartier90443472015-07-16 20:32:27 -07001644 ForAllClosure(ParallelCompilationManager* manager, size_t end, CompilationVisitor* visitor)
Brian Carlstrom7940e442013-07-12 13:46:57 -07001645 : manager_(manager),
Brian Carlstrom7940e442013-07-12 13:46:57 -07001646 end_(end),
Mathieu Chartier90443472015-07-16 20:32:27 -07001647 visitor_(visitor) {}
Brian Carlstrom7940e442013-07-12 13:46:57 -07001648
1649 virtual void Run(Thread* self) {
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001650 while (true) {
1651 const size_t index = manager_->NextIndex();
1652 if (UNLIKELY(index >= end_)) {
1653 break;
1654 }
Mathieu Chartier90443472015-07-16 20:32:27 -07001655 visitor_->Visit(index);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001656 self->AssertNoPendingException();
1657 }
1658 }
1659
1660 virtual void Finalize() {
1661 delete this;
1662 }
Brian Carlstrom0cd7ec22013-07-17 23:40:20 -07001663
Brian Carlstrom7940e442013-07-12 13:46:57 -07001664 private:
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001665 ParallelCompilationManager* const manager_;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001666 const size_t end_;
Mathieu Chartier90443472015-07-16 20:32:27 -07001667 CompilationVisitor* const visitor_;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001668 };
1669
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001670 AtomicInteger index_;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001671 ClassLinker* const class_linker_;
1672 const jobject class_loader_;
1673 CompilerDriver* const compiler_;
1674 const DexFile* const dex_file_;
Andreas Gampede7b4362014-07-28 18:38:57 -07001675 const std::vector<const DexFile*>& dex_files_;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001676 ThreadPool* const thread_pool_;
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001677
1678 DISALLOW_COPY_AND_ASSIGN(ParallelCompilationManager);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001679};
1680
Jeff Hao0e49b422013-11-08 12:16:56 -08001681// A fast version of SkipClass above if the class pointer is available
1682// that avoids the expensive FindInClassPath search.
1683static bool SkipClass(jobject class_loader, const DexFile& dex_file, mirror::Class* klass)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001684 REQUIRES_SHARED(Locks::mutator_lock_) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001685 DCHECK(klass != nullptr);
Jeff Hao0e49b422013-11-08 12:16:56 -08001686 const DexFile& original_dex_file = *klass->GetDexCache()->GetDexFile();
1687 if (&dex_file != &original_dex_file) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001688 if (class_loader == nullptr) {
David Sehr709b0702016-10-13 09:12:37 -07001689 LOG(WARNING) << "Skipping class " << klass->PrettyDescriptor() << " from "
Jeff Hao0e49b422013-11-08 12:16:56 -08001690 << dex_file.GetLocation() << " previously found in "
1691 << original_dex_file.GetLocation();
1692 }
1693 return true;
1694 }
1695 return false;
1696}
1697
Mathieu Chartier70b63482014-06-27 17:19:04 -07001698static void CheckAndClearResolveException(Thread* self)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001699 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartier70b63482014-06-27 17:19:04 -07001700 CHECK(self->IsExceptionPending());
Nicolas Geoffray14691c52015-03-05 10:40:17 +00001701 mirror::Throwable* exception = self->GetException();
Ian Rogers1ff3c982014-08-12 02:30:58 -07001702 std::string temp;
1703 const char* descriptor = exception->GetClass()->GetDescriptor(&temp);
1704 const char* expected_exceptions[] = {
1705 "Ljava/lang/IllegalAccessError;",
1706 "Ljava/lang/IncompatibleClassChangeError;",
1707 "Ljava/lang/InstantiationError;",
Brian Carlstrom898fcb52014-08-25 23:07:30 -07001708 "Ljava/lang/LinkageError;",
Ian Rogers1ff3c982014-08-12 02:30:58 -07001709 "Ljava/lang/NoClassDefFoundError;",
1710 "Ljava/lang/NoSuchFieldError;",
1711 "Ljava/lang/NoSuchMethodError;"
1712 };
1713 bool found = false;
1714 for (size_t i = 0; (found == false) && (i < arraysize(expected_exceptions)); ++i) {
1715 if (strcmp(descriptor, expected_exceptions[i]) == 0) {
1716 found = true;
1717 }
1718 }
1719 if (!found) {
Brian Carlstrom898fcb52014-08-25 23:07:30 -07001720 LOG(FATAL) << "Unexpected exception " << exception->Dump();
Mathieu Chartier70b63482014-06-27 17:19:04 -07001721 }
1722 self->ClearException();
1723}
1724
Mathieu Chartierb5d38612016-04-07 10:52:52 -07001725bool CompilerDriver::RequiresConstructorBarrier(const DexFile& dex_file,
1726 uint16_t class_def_idx) const {
1727 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_idx);
1728 const uint8_t* class_data = dex_file.GetClassData(class_def);
1729 if (class_data == nullptr) {
1730 // Empty class such as a marker interface.
1731 return false;
1732 }
1733 ClassDataItemIterator it(dex_file, class_data);
1734 while (it.HasNextStaticField()) {
1735 it.Next();
1736 }
1737 // We require a constructor barrier if there are final instance fields.
1738 while (it.HasNextInstanceField()) {
1739 if (it.MemberIsFinal()) {
1740 return true;
1741 }
1742 it.Next();
1743 }
1744 return false;
1745}
1746
Mathieu Chartier90443472015-07-16 20:32:27 -07001747class ResolveClassFieldsAndMethodsVisitor : public CompilationVisitor {
1748 public:
1749 explicit ResolveClassFieldsAndMethodsVisitor(const ParallelCompilationManager* manager)
1750 : manager_(manager) {}
Brian Carlstrom7940e442013-07-12 13:46:57 -07001751
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001752 void Visit(size_t class_def_index) OVERRIDE REQUIRES(!Locks::mutator_lock_) {
Mathieu Chartier90443472015-07-16 20:32:27 -07001753 ATRACE_CALL();
1754 Thread* const self = Thread::Current();
1755 jobject jclass_loader = manager_->GetClassLoader();
1756 const DexFile& dex_file = *manager_->GetDexFile();
1757 ClassLinker* class_linker = manager_->GetClassLinker();
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001758
Mathieu Chartier90443472015-07-16 20:32:27 -07001759 // If an instance field is final then we need to have a barrier on the return, static final
1760 // fields are assigned within the lock held for class initialization. Conservatively assume
1761 // constructor barriers are always required.
1762 bool requires_constructor_barrier = true;
1763
1764 // Method and Field are the worst. We can't resolve without either
1765 // context from the code use (to disambiguate virtual vs direct
1766 // method and instance vs static field) or from class
1767 // definitions. While the compiler will resolve what it can as it
1768 // needs it, here we try to resolve fields and methods used in class
1769 // definitions, since many of them many never be referenced by
1770 // generated code.
1771 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
1772 ScopedObjectAccess soa(self);
1773 StackHandleScope<2> hs(soa.Self());
1774 Handle<mirror::ClassLoader> class_loader(
Mathieu Chartier0795f232016-09-27 18:43:30 -07001775 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader)));
Mathieu Chartier673ed3d2015-08-28 14:56:43 -07001776 Handle<mirror::DexCache> dex_cache(hs.NewHandle(class_linker->FindDexCache(
1777 soa.Self(), dex_file, false)));
Mathieu Chartier90443472015-07-16 20:32:27 -07001778 // Resolve the class.
1779 mirror::Class* klass = class_linker->ResolveType(dex_file, class_def.class_idx_, dex_cache,
1780 class_loader);
1781 bool resolve_fields_and_methods;
1782 if (klass == nullptr) {
1783 // Class couldn't be resolved, for example, super-class is in a different dex file. Don't
1784 // attempt to resolve methods and fields when there is no declaring class.
1785 CheckAndClearResolveException(soa.Self());
1786 resolve_fields_and_methods = false;
1787 } else {
1788 // We successfully resolved a class, should we skip it?
1789 if (SkipClass(jclass_loader, dex_file, klass)) {
1790 return;
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001791 }
Mathieu Chartier90443472015-07-16 20:32:27 -07001792 // We want to resolve the methods and fields eagerly.
1793 resolve_fields_and_methods = true;
Ian Rogers68b56852014-08-29 20:19:11 -07001794 }
Mathieu Chartier90443472015-07-16 20:32:27 -07001795 // Note the class_data pointer advances through the headers,
1796 // static fields, instance fields, direct methods, and virtual
1797 // methods.
1798 const uint8_t* class_data = dex_file.GetClassData(class_def);
1799 if (class_data == nullptr) {
1800 // Empty class such as a marker interface.
1801 requires_constructor_barrier = false;
1802 } else {
1803 ClassDataItemIterator it(dex_file, class_data);
1804 while (it.HasNextStaticField()) {
1805 if (resolve_fields_and_methods) {
1806 ArtField* field = class_linker->ResolveField(dex_file, it.GetMemberIndex(),
1807 dex_cache, class_loader, true);
1808 if (field == nullptr) {
1809 CheckAndClearResolveException(soa.Self());
1810 }
Ian Rogers68b56852014-08-29 20:19:11 -07001811 }
1812 it.Next();
1813 }
Mathieu Chartier90443472015-07-16 20:32:27 -07001814 // We require a constructor barrier if there are final instance fields.
1815 requires_constructor_barrier = false;
1816 while (it.HasNextInstanceField()) {
1817 if (it.MemberIsFinal()) {
1818 requires_constructor_barrier = true;
1819 }
1820 if (resolve_fields_and_methods) {
1821 ArtField* field = class_linker->ResolveField(dex_file, it.GetMemberIndex(),
1822 dex_cache, class_loader, false);
1823 if (field == nullptr) {
1824 CheckAndClearResolveException(soa.Self());
1825 }
Ian Rogers68b56852014-08-29 20:19:11 -07001826 }
1827 it.Next();
1828 }
Mathieu Chartier90443472015-07-16 20:32:27 -07001829 if (resolve_fields_and_methods) {
1830 while (it.HasNextDirectMethod()) {
Andreas Gampe42ef8ab2015-12-03 17:27:32 -08001831 ArtMethod* method = class_linker->ResolveMethod<ClassLinker::kNoICCECheckForCache>(
Mathieu Chartier90443472015-07-16 20:32:27 -07001832 dex_file, it.GetMemberIndex(), dex_cache, class_loader, nullptr,
1833 it.GetMethodInvokeType(class_def));
1834 if (method == nullptr) {
1835 CheckAndClearResolveException(soa.Self());
1836 }
1837 it.Next();
1838 }
1839 while (it.HasNextVirtualMethod()) {
Andreas Gampe42ef8ab2015-12-03 17:27:32 -08001840 ArtMethod* method = class_linker->ResolveMethod<ClassLinker::kNoICCECheckForCache>(
Mathieu Chartier90443472015-07-16 20:32:27 -07001841 dex_file, it.GetMemberIndex(), dex_cache, class_loader, nullptr,
1842 it.GetMethodInvokeType(class_def));
1843 if (method == nullptr) {
1844 CheckAndClearResolveException(soa.Self());
1845 }
1846 it.Next();
1847 }
1848 DCHECK(!it.HasNext());
1849 }
1850 }
Mathieu Chartierc4ae9162016-04-07 13:19:19 -07001851 manager_->GetCompiler()->SetRequiresConstructorBarrier(self,
1852 &dex_file,
1853 class_def_index,
1854 requires_constructor_barrier);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001855 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001856
Mathieu Chartier90443472015-07-16 20:32:27 -07001857 private:
1858 const ParallelCompilationManager* const manager_;
1859};
1860
1861class ResolveTypeVisitor : public CompilationVisitor {
1862 public:
1863 explicit ResolveTypeVisitor(const ParallelCompilationManager* manager) : manager_(manager) {
1864 }
1865 virtual void Visit(size_t type_idx) OVERRIDE REQUIRES(!Locks::mutator_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001866 // Class derived values are more complicated, they require the linker and loader.
Mathieu Chartier90443472015-07-16 20:32:27 -07001867 ScopedObjectAccess soa(Thread::Current());
1868 ClassLinker* class_linker = manager_->GetClassLinker();
1869 const DexFile& dex_file = *manager_->GetDexFile();
1870 StackHandleScope<2> hs(soa.Self());
Mathieu Chartier90443472015-07-16 20:32:27 -07001871 Handle<mirror::ClassLoader> class_loader(
Mathieu Chartier0795f232016-09-27 18:43:30 -07001872 hs.NewHandle(soa.Decode<mirror::ClassLoader>(manager_->GetClassLoader())));
Mathieu Chartierd57d4542015-10-14 10:55:30 -07001873 Handle<mirror::DexCache> dex_cache(hs.NewHandle(class_linker->RegisterDexFile(
1874 dex_file,
Mathieu Chartierf284d442016-06-02 11:48:30 -07001875 class_loader.Get())));
Mathieu Chartier90443472015-07-16 20:32:27 -07001876 mirror::Class* klass = class_linker->ResolveType(dex_file, type_idx, dex_cache, class_loader);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001877
Mathieu Chartier90443472015-07-16 20:32:27 -07001878 if (klass == nullptr) {
1879 soa.Self()->AssertPendingException();
1880 mirror::Throwable* exception = soa.Self()->GetException();
1881 VLOG(compiler) << "Exception during type resolution: " << exception->Dump();
1882 if (exception->GetClass()->DescriptorEquals("Ljava/lang/OutOfMemoryError;")) {
1883 // There's little point continuing compilation if the heap is exhausted.
1884 LOG(FATAL) << "Out of memory during type resolution for compilation";
1885 }
1886 soa.Self()->ClearException();
Ian Rogersa436fde2013-08-27 23:34:06 -07001887 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001888 }
Mathieu Chartier90443472015-07-16 20:32:27 -07001889
1890 private:
1891 const ParallelCompilationManager* const manager_;
1892};
Brian Carlstrom7940e442013-07-12 13:46:57 -07001893
Andreas Gampeace0dc12016-01-20 13:33:13 -08001894void CompilerDriver::ResolveDexFile(jobject class_loader,
1895 const DexFile& dex_file,
Andreas Gampede7b4362014-07-28 18:38:57 -07001896 const std::vector<const DexFile*>& dex_files,
Andreas Gampeace0dc12016-01-20 13:33:13 -08001897 ThreadPool* thread_pool,
1898 size_t thread_count,
1899 TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001900 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
1901
1902 // TODO: we could resolve strings here, although the string table is largely filled with class
1903 // and method names.
1904
Andreas Gampede7b4362014-07-28 18:38:57 -07001905 ParallelCompilationManager context(class_linker, class_loader, this, &dex_file, dex_files,
1906 thread_pool);
Vladimir Markoaad75c62016-10-03 08:46:48 +00001907 if (GetCompilerOptions().IsBootImage()) {
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001908 // For images we resolve all types, such as array, whereas for applications just those with
1909 // classdefs are resolved by ResolveClassFieldsAndMethods.
Mathieu Chartierf5997b42014-06-20 10:37:54 -07001910 TimingLogger::ScopedTiming t("Resolve Types", timings);
Mathieu Chartier90443472015-07-16 20:32:27 -07001911 ResolveTypeVisitor visitor(&context);
Andreas Gampeace0dc12016-01-20 13:33:13 -08001912 context.ForAll(0, dex_file.NumTypeIds(), &visitor, thread_count);
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001913 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001914
Mathieu Chartierf5997b42014-06-20 10:37:54 -07001915 TimingLogger::ScopedTiming t("Resolve MethodsAndFields", timings);
Mathieu Chartier90443472015-07-16 20:32:27 -07001916 ResolveClassFieldsAndMethodsVisitor visitor(&context);
Andreas Gampeace0dc12016-01-20 13:33:13 -08001917 context.ForAll(0, dex_file.NumClassDefs(), &visitor, thread_count);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001918}
1919
Andreas Gampeace0dc12016-01-20 13:33:13 -08001920void CompilerDriver::SetVerified(jobject class_loader,
1921 const std::vector<const DexFile*>& dex_files,
1922 TimingLogger* timings) {
1923 // This can be run in parallel.
Mathieu Chartier90443472015-07-16 20:32:27 -07001924 for (const DexFile* dex_file : dex_files) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001925 CHECK(dex_file != nullptr);
Andreas Gampeace0dc12016-01-20 13:33:13 -08001926 SetVerifiedDexFile(class_loader,
1927 *dex_file,
1928 dex_files,
1929 parallel_thread_pool_.get(),
1930 parallel_thread_count_,
1931 timings);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001932 }
1933}
1934
Andreas Gampeace0dc12016-01-20 13:33:13 -08001935void CompilerDriver::Verify(jobject class_loader,
1936 const std::vector<const DexFile*>& dex_files,
1937 TimingLogger* timings) {
1938 // Note: verification should not be pulling in classes anymore when compiling the boot image,
1939 // as all should have been resolved before. As such, doing this in parallel should still
1940 // be deterministic.
Mathieu Chartier90443472015-07-16 20:32:27 -07001941 for (const DexFile* dex_file : dex_files) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001942 CHECK(dex_file != nullptr);
Andreas Gampeace0dc12016-01-20 13:33:13 -08001943 VerifyDexFile(class_loader,
1944 *dex_file,
1945 dex_files,
1946 parallel_thread_pool_.get(),
1947 parallel_thread_count_,
1948 timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001949 }
1950}
1951
Mathieu Chartier90443472015-07-16 20:32:27 -07001952class VerifyClassVisitor : public CompilationVisitor {
1953 public:
Andreas Gampe5fd66d02016-09-12 20:22:19 -07001954 VerifyClassVisitor(const ParallelCompilationManager* manager, verifier::HardFailLogMode log_level)
Andreas Gampe7fe30232016-03-25 16:58:00 -07001955 : manager_(manager), log_level_(log_level) {}
Brian Carlstrom7940e442013-07-12 13:46:57 -07001956
Mathieu Chartier90443472015-07-16 20:32:27 -07001957 virtual void Visit(size_t class_def_index) REQUIRES(!Locks::mutator_lock_) OVERRIDE {
1958 ATRACE_CALL();
1959 ScopedObjectAccess soa(Thread::Current());
1960 const DexFile& dex_file = *manager_->GetDexFile();
Mathieu Chartiera8077802016-03-16 19:08:31 -07001961 if (!manager_->GetCompiler()->ShouldVerifyClassBasedOnProfile(dex_file, class_def_index)) {
1962 // Skip verification since the class is not in the profile.
1963 return;
1964 }
Mathieu Chartier90443472015-07-16 20:32:27 -07001965 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
1966 const char* descriptor = dex_file.GetClassDescriptor(class_def);
1967 ClassLinker* class_linker = manager_->GetClassLinker();
1968 jobject jclass_loader = manager_->GetClassLoader();
1969 StackHandleScope<3> hs(soa.Self());
1970 Handle<mirror::ClassLoader> class_loader(
Mathieu Chartier0795f232016-09-27 18:43:30 -07001971 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader)));
Mathieu Chartier90443472015-07-16 20:32:27 -07001972 Handle<mirror::Class> klass(
1973 hs.NewHandle(class_linker->FindClass(soa.Self(), descriptor, class_loader)));
Nicolas Geoffray08025182016-10-25 17:20:18 +01001974 verifier::MethodVerifier::FailureKind failure_kind;
Mathieu Chartier90443472015-07-16 20:32:27 -07001975 if (klass.Get() == nullptr) {
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001976 CHECK(soa.Self()->IsExceptionPending());
1977 soa.Self()->ClearException();
Mathieu Chartier90443472015-07-16 20:32:27 -07001978
1979 /*
1980 * At compile time, we can still structurally verify the class even if FindClass fails.
1981 * This is to ensure the class is structurally sound for compilation. An unsound class
1982 * will be rejected by the verifier and later skipped during compilation in the compiler.
1983 */
Mathieu Chartier673ed3d2015-08-28 14:56:43 -07001984 Handle<mirror::DexCache> dex_cache(hs.NewHandle(class_linker->FindDexCache(
1985 soa.Self(), dex_file, false)));
Mathieu Chartier90443472015-07-16 20:32:27 -07001986 std::string error_msg;
Nicolas Geoffray08025182016-10-25 17:20:18 +01001987 failure_kind =
1988 verifier::MethodVerifier::VerifyClass(soa.Self(),
Andreas Gampeec6e6c12015-11-05 20:39:56 -08001989 &dex_file,
1990 dex_cache,
1991 class_loader,
David Brazdil15fc7292016-09-02 14:13:18 +01001992 class_def,
Andreas Gampe53e32d12015-12-09 21:03:23 -08001993 Runtime::Current()->GetCompilerCallbacks(),
Andreas Gampeec6e6c12015-11-05 20:39:56 -08001994 true /* allow soft failures */,
Andreas Gampe7fe30232016-03-25 16:58:00 -07001995 log_level_,
Nicolas Geoffray08025182016-10-25 17:20:18 +01001996 &error_msg);
1997 if (failure_kind == verifier::MethodVerifier::kHardFailure) {
Mathieu Chartier90443472015-07-16 20:32:27 -07001998 LOG(ERROR) << "Verification failed on class " << PrettyDescriptor(descriptor)
1999 << " because: " << error_msg;
2000 manager_->GetCompiler()->SetHadHardVerifierFailure();
2001 }
2002 } else if (!SkipClass(jclass_loader, dex_file, klass.Get())) {
David Sehr709b0702016-10-13 09:12:37 -07002003 CHECK(klass->IsResolved()) << klass->PrettyClass();
Nicolas Geoffray08025182016-10-25 17:20:18 +01002004 failure_kind = class_linker->VerifyClass(soa.Self(), klass, log_level_);
Mathieu Chartier90443472015-07-16 20:32:27 -07002005
2006 if (klass->IsErroneous()) {
2007 // ClassLinker::VerifyClass throws, which isn't useful in the compiler.
2008 CHECK(soa.Self()->IsExceptionPending());
2009 soa.Self()->ClearException();
2010 manager_->GetCompiler()->SetHadHardVerifierFailure();
2011 }
2012
2013 CHECK(klass->IsCompileTimeVerified() || klass->IsErroneous())
David Sehr709b0702016-10-13 09:12:37 -07002014 << klass->PrettyDescriptor() << ": state=" << klass->GetStatus();
Mathieu Chartier90443472015-07-16 20:32:27 -07002015
Narayan Kamathe3eae5e2016-10-27 11:47:30 +01002016 // It is *very* problematic if there are verification errors in the boot classpath. For example,
2017 // we rely on things working OK without verification when the decryption dialog is brought up.
2018 // So abort in a debug build if we find this violated.
2019 if (kIsDebugBuild) {
2020 // TODO(narayan): Remove this special case for signature polymorphic
2021 // invokes once verifier support is fully implemented.
2022 if (manager_->GetCompiler()->GetCompilerOptions().IsBootImage() &&
2023 !android::base::StartsWith(descriptor, "Ljava/lang/invoke/")) {
2024 DCHECK(klass->IsVerified()) << "Boot classpath class " << klass->PrettyClass()
2025 << " failed to fully verify: state= " << klass->GetStatus();
2026 }
2027 }
Nicolas Geoffray08025182016-10-25 17:20:18 +01002028 } else {
2029 // Make the skip a soft failure, essentially being considered as verify at runtime.
2030 failure_kind = verifier::MethodVerifier::kSoftFailure;
Ian Rogerse6bb3b22013-08-19 21:51:45 -07002031 }
Nicolas Geoffray08025182016-10-25 17:20:18 +01002032 verifier::VerifierDeps::MaybeRecordVerificationStatus(
2033 dex_file, class_def.class_idx_, failure_kind);
Mathieu Chartier90443472015-07-16 20:32:27 -07002034 soa.Self()->AssertNoPendingException();
Brian Carlstrom7940e442013-07-12 13:46:57 -07002035 }
Mathieu Chartier90443472015-07-16 20:32:27 -07002036
2037 private:
2038 const ParallelCompilationManager* const manager_;
Andreas Gampe5fd66d02016-09-12 20:22:19 -07002039 const verifier::HardFailLogMode log_level_;
Mathieu Chartier90443472015-07-16 20:32:27 -07002040};
Brian Carlstrom7940e442013-07-12 13:46:57 -07002041
Andreas Gampeace0dc12016-01-20 13:33:13 -08002042void CompilerDriver::VerifyDexFile(jobject class_loader,
2043 const DexFile& dex_file,
Andreas Gampede7b4362014-07-28 18:38:57 -07002044 const std::vector<const DexFile*>& dex_files,
Andreas Gampeace0dc12016-01-20 13:33:13 -08002045 ThreadPool* thread_pool,
2046 size_t thread_count,
2047 TimingLogger* timings) {
Mathieu Chartierf5997b42014-06-20 10:37:54 -07002048 TimingLogger::ScopedTiming t("Verify Dex File", timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002049 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Andreas Gampede7b4362014-07-28 18:38:57 -07002050 ParallelCompilationManager context(class_linker, class_loader, this, &dex_file, dex_files,
2051 thread_pool);
Andreas Gampe5fd66d02016-09-12 20:22:19 -07002052 verifier::HardFailLogMode log_level = GetCompilerOptions().AbortOnHardVerifierFailure()
2053 ? verifier::HardFailLogMode::kLogInternalFatal
2054 : verifier::HardFailLogMode::kLogWarning;
Andreas Gampe7fe30232016-03-25 16:58:00 -07002055 VerifyClassVisitor visitor(&context, log_level);
Andreas Gampeace0dc12016-01-20 13:33:13 -08002056 context.ForAll(0, dex_file.NumClassDefs(), &visitor, thread_count);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002057}
2058
Mathieu Chartier90443472015-07-16 20:32:27 -07002059class SetVerifiedClassVisitor : public CompilationVisitor {
2060 public:
2061 explicit SetVerifiedClassVisitor(const ParallelCompilationManager* manager) : manager_(manager) {}
2062
2063 virtual void Visit(size_t class_def_index) REQUIRES(!Locks::mutator_lock_) OVERRIDE {
2064 ATRACE_CALL();
2065 ScopedObjectAccess soa(Thread::Current());
2066 const DexFile& dex_file = *manager_->GetDexFile();
2067 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
2068 const char* descriptor = dex_file.GetClassDescriptor(class_def);
2069 ClassLinker* class_linker = manager_->GetClassLinker();
2070 jobject jclass_loader = manager_->GetClassLoader();
2071 StackHandleScope<3> hs(soa.Self());
2072 Handle<mirror::ClassLoader> class_loader(
Mathieu Chartier0795f232016-09-27 18:43:30 -07002073 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader)));
Mathieu Chartier90443472015-07-16 20:32:27 -07002074 Handle<mirror::Class> klass(
2075 hs.NewHandle(class_linker->FindClass(soa.Self(), descriptor, class_loader)));
2076 // Class might have failed resolution. Then don't set it to verified.
2077 if (klass.Get() != nullptr) {
2078 // Only do this if the class is resolved. If even resolution fails, quickening will go very,
2079 // very wrong.
2080 if (klass->IsResolved()) {
2081 if (klass->GetStatus() < mirror::Class::kStatusVerified) {
2082 ObjectLock<mirror::Class> lock(soa.Self(), klass);
2083 // Set class status to verified.
2084 mirror::Class::SetStatus(klass, mirror::Class::kStatusVerified, soa.Self());
2085 // Mark methods as pre-verified. If we don't do this, the interpreter will run with
2086 // access checks.
Igor Murashkindf707e42016-02-02 16:56:50 -08002087 klass->SetSkipAccessChecksFlagOnAllMethods(
Mathieu Chartier90443472015-07-16 20:32:27 -07002088 GetInstructionSetPointerSize(manager_->GetCompiler()->GetInstructionSet()));
Igor Murashkindf707e42016-02-02 16:56:50 -08002089 klass->SetVerificationAttempted();
Mathieu Chartier90443472015-07-16 20:32:27 -07002090 }
2091 // Record the final class status if necessary.
2092 ClassReference ref(manager_->GetDexFile(), class_def_index);
2093 manager_->GetCompiler()->RecordClassStatus(ref, klass->GetStatus());
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002094 }
Mathieu Chartier90443472015-07-16 20:32:27 -07002095 } else {
2096 Thread* self = soa.Self();
2097 DCHECK(self->IsExceptionPending());
2098 self->ClearException();
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002099 }
2100 }
Mathieu Chartier90443472015-07-16 20:32:27 -07002101
2102 private:
2103 const ParallelCompilationManager* const manager_;
2104};
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002105
Andreas Gampeace0dc12016-01-20 13:33:13 -08002106void CompilerDriver::SetVerifiedDexFile(jobject class_loader,
2107 const DexFile& dex_file,
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002108 const std::vector<const DexFile*>& dex_files,
Andreas Gampeace0dc12016-01-20 13:33:13 -08002109 ThreadPool* thread_pool,
2110 size_t thread_count,
2111 TimingLogger* timings) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002112 TimingLogger::ScopedTiming t("Verify Dex File", timings);
2113 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
2114 ParallelCompilationManager context(class_linker, class_loader, this, &dex_file, dex_files,
2115 thread_pool);
Mathieu Chartier90443472015-07-16 20:32:27 -07002116 SetVerifiedClassVisitor visitor(&context);
Andreas Gampeace0dc12016-01-20 13:33:13 -08002117 context.ForAll(0, dex_file.NumClassDefs(), &visitor, thread_count);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002118}
2119
Mathieu Chartier90443472015-07-16 20:32:27 -07002120class InitializeClassVisitor : public CompilationVisitor {
2121 public:
2122 explicit InitializeClassVisitor(const ParallelCompilationManager* manager) : manager_(manager) {}
Ian Rogersfc0e94b2013-09-23 23:51:32 -07002123
Mathieu Chartier90443472015-07-16 20:32:27 -07002124 virtual void Visit(size_t class_def_index) REQUIRES(!Locks::mutator_lock_) OVERRIDE {
2125 ATRACE_CALL();
2126 jobject jclass_loader = manager_->GetClassLoader();
2127 const DexFile& dex_file = *manager_->GetDexFile();
2128 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
2129 const DexFile::TypeId& class_type_id = dex_file.GetTypeId(class_def.class_idx_);
2130 const char* descriptor = dex_file.StringDataByIdx(class_type_id.descriptor_idx_);
Jeff Hao0e49b422013-11-08 12:16:56 -08002131
Mathieu Chartier90443472015-07-16 20:32:27 -07002132 ScopedObjectAccess soa(Thread::Current());
2133 StackHandleScope<3> hs(soa.Self());
2134 Handle<mirror::ClassLoader> class_loader(
Mathieu Chartier0795f232016-09-27 18:43:30 -07002135 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader)));
Mathieu Chartier90443472015-07-16 20:32:27 -07002136 Handle<mirror::Class> klass(
2137 hs.NewHandle(manager_->GetClassLinker()->FindClass(soa.Self(), descriptor, class_loader)));
2138
2139 if (klass.Get() != nullptr && !SkipClass(jclass_loader, dex_file, klass.Get())) {
2140 // Only try to initialize classes that were successfully verified.
2141 if (klass->IsVerified()) {
2142 // Attempt to initialize the class but bail if we either need to initialize the super-class
2143 // or static fields.
2144 manager_->GetClassLinker()->EnsureInitialized(soa.Self(), klass, false, false);
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07002145 if (!klass->IsInitialized()) {
Mathieu Chartier90443472015-07-16 20:32:27 -07002146 // We don't want non-trivial class initialization occurring on multiple threads due to
2147 // deadlock problems. For example, a parent class is initialized (holding its lock) that
2148 // refers to a sub-class in its static/class initializer causing it to try to acquire the
2149 // sub-class' lock. While on a second thread the sub-class is initialized (holding its lock)
2150 // after first initializing its parents, whose locks are acquired. This leads to a
2151 // parent-to-child and a child-to-parent lock ordering and consequent potential deadlock.
2152 // We need to use an ObjectLock due to potential suspension in the interpreting code. Rather
2153 // than use a special Object for the purpose we use the Class of java.lang.Class.
2154 Handle<mirror::Class> h_klass(hs.NewHandle(klass->GetClass()));
2155 ObjectLock<mirror::Class> lock(soa.Self(), h_klass);
2156 // Attempt to initialize allowing initialization of parent classes but still not static
2157 // fields.
2158 manager_->GetClassLinker()->EnsureInitialized(soa.Self(), klass, false, true);
2159 if (!klass->IsInitialized()) {
2160 // We need to initialize static fields, we only do this for image classes that aren't
2161 // marked with the $NoPreloadHolder (which implies this should not be initialized early).
Vladimir Markoaad75c62016-10-03 08:46:48 +00002162 bool can_init_static_fields =
2163 manager_->GetCompiler()->GetCompilerOptions().IsBootImage() &&
Mathieu Chartier90443472015-07-16 20:32:27 -07002164 manager_->GetCompiler()->IsImageClass(descriptor) &&
2165 !StringPiece(descriptor).ends_with("$NoPreloadHolder;");
2166 if (can_init_static_fields) {
2167 VLOG(compiler) << "Initializing: " << descriptor;
2168 // TODO multithreading support. We should ensure the current compilation thread has
2169 // exclusive access to the runtime and the transaction. To achieve this, we could use
2170 // a ReaderWriterMutex but we're holding the mutator lock so we fail mutex sanity
2171 // checks in Thread::AssertThreadSuspensionIsAllowable.
2172 Runtime* const runtime = Runtime::Current();
2173 Transaction transaction;
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01002174
Mathieu Chartier90443472015-07-16 20:32:27 -07002175 // Run the class initializer in transaction mode.
2176 runtime->EnterTransactionMode(&transaction);
2177 const mirror::Class::Status old_status = klass->GetStatus();
2178 bool success = manager_->GetClassLinker()->EnsureInitialized(soa.Self(), klass, true,
2179 true);
2180 // TODO we detach transaction from runtime to indicate we quit the transactional
2181 // mode which prevents the GC from visiting objects modified during the transaction.
2182 // Ensure GC is not run so don't access freed objects when aborting transaction.
Mathieu Chartier2d5f39e2014-09-19 17:52:37 -07002183
Mathieu Chartier268764d2016-09-13 12:09:38 -07002184 ScopedAssertNoThreadSuspension ants("Transaction end");
Mathieu Chartier90443472015-07-16 20:32:27 -07002185 runtime->ExitTransactionMode();
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01002186
Mathieu Chartier90443472015-07-16 20:32:27 -07002187 if (!success) {
2188 CHECK(soa.Self()->IsExceptionPending());
2189 mirror::Throwable* exception = soa.Self()->GetException();
2190 VLOG(compiler) << "Initialization of " << descriptor << " aborted because of "
2191 << exception->Dump();
2192 std::ostream* file_log = manager_->GetCompiler()->
2193 GetCompilerOptions().GetInitFailureOutput();
2194 if (file_log != nullptr) {
2195 *file_log << descriptor << "\n";
2196 *file_log << exception->Dump() << "\n";
2197 }
2198 soa.Self()->ClearException();
2199 transaction.Rollback();
2200 CHECK_EQ(old_status, klass->GetStatus()) << "Previous class status not restored";
Andreas Gampedbfe2542014-11-25 22:21:42 -08002201 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002202 }
2203 }
Mathieu Chartier90443472015-07-16 20:32:27 -07002204 soa.Self()->AssertNoPendingException();
Brian Carlstrom7940e442013-07-12 13:46:57 -07002205 }
2206 }
Mathieu Chartier90443472015-07-16 20:32:27 -07002207 // Record the final class status if necessary.
2208 ClassReference ref(manager_->GetDexFile(), class_def_index);
2209 manager_->GetCompiler()->RecordClassStatus(ref, klass->GetStatus());
Brian Carlstrom7940e442013-07-12 13:46:57 -07002210 }
Mathieu Chartier90443472015-07-16 20:32:27 -07002211 // Clear any class not found or verification exceptions.
2212 soa.Self()->ClearException();
Brian Carlstrom7940e442013-07-12 13:46:57 -07002213 }
Mathieu Chartier90443472015-07-16 20:32:27 -07002214
2215 private:
2216 const ParallelCompilationManager* const manager_;
2217};
Brian Carlstrom7940e442013-07-12 13:46:57 -07002218
Andreas Gampeace0dc12016-01-20 13:33:13 -08002219void CompilerDriver::InitializeClasses(jobject jni_class_loader,
2220 const DexFile& dex_file,
Andreas Gampede7b4362014-07-28 18:38:57 -07002221 const std::vector<const DexFile*>& dex_files,
Andreas Gampeace0dc12016-01-20 13:33:13 -08002222 TimingLogger* timings) {
Mathieu Chartierf5997b42014-06-20 10:37:54 -07002223 TimingLogger::ScopedTiming t("InitializeNoClinit", timings);
Andreas Gampeace0dc12016-01-20 13:33:13 -08002224
2225 // Initialization allocates objects and needs to run single-threaded to be deterministic.
2226 bool force_determinism = GetCompilerOptions().IsForceDeterminism();
2227 ThreadPool* init_thread_pool = force_determinism
2228 ? single_thread_pool_.get()
2229 : parallel_thread_pool_.get();
2230 size_t init_thread_count = force_determinism ? 1U : parallel_thread_count_;
2231
Brian Carlstrom7940e442013-07-12 13:46:57 -07002232 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Andreas Gampede7b4362014-07-28 18:38:57 -07002233 ParallelCompilationManager context(class_linker, jni_class_loader, this, &dex_file, dex_files,
Andreas Gampeace0dc12016-01-20 13:33:13 -08002234 init_thread_pool);
Vladimir Markoaad75c62016-10-03 08:46:48 +00002235 if (GetCompilerOptions().IsBootImage()) {
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01002236 // TODO: remove this when transactional mode supports multithreading.
Andreas Gampeace0dc12016-01-20 13:33:13 -08002237 init_thread_count = 1U;
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01002238 }
Mathieu Chartier90443472015-07-16 20:32:27 -07002239 InitializeClassVisitor visitor(&context);
Andreas Gampeace0dc12016-01-20 13:33:13 -08002240 context.ForAll(0, dex_file.NumClassDefs(), &visitor, init_thread_count);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002241}
2242
Mathieu Chartier91288d82016-04-28 09:44:54 -07002243class InitializeArrayClassesAndCreateConflictTablesVisitor : public ClassVisitor {
Mathieu Chartier085a0722016-04-01 17:33:31 -07002244 public:
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002245 explicit InitializeArrayClassesAndCreateConflictTablesVisitor(VariableSizedHandleScope& hs)
2246 : hs_(hs) {}
2247
2248 virtual bool operator()(ObjPtr<mirror::Class> klass) OVERRIDE
2249 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartier91288d82016-04-28 09:44:54 -07002250 if (Runtime::Current()->GetHeap()->ObjectIsInBootImageSpace(klass)) {
2251 return true;
2252 }
Mathieu Chartier085a0722016-04-01 17:33:31 -07002253 if (klass->IsArrayClass()) {
2254 StackHandleScope<1> hs(Thread::Current());
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002255 auto h_klass = hs.NewHandleWrapper(&klass);
2256 Runtime::Current()->GetClassLinker()->EnsureInitialized(hs.Self(), h_klass, true, true);
Mathieu Chartier085a0722016-04-01 17:33:31 -07002257 }
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002258 // Collect handles since there may be thread suspension in future EnsureInitialized.
2259 to_visit_.push_back(hs_.NewHandle(klass));
Nicolas Geoffray88f288e2016-06-29 08:17:52 +00002260 return true;
Nelli Kimbadee982016-05-13 13:08:53 +03002261 }
Artem Udovichenkoa62cb9b2016-06-30 09:18:25 +00002262
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002263 void FillAllIMTAndConflictTables() REQUIRES_SHARED(Locks::mutator_lock_) {
2264 for (Handle<mirror::Class> c : to_visit_) {
2265 // Create the conflict tables.
2266 FillIMTAndConflictTables(c.Get());
2267 }
2268 }
2269
Artem Udovichenkoa62cb9b2016-06-30 09:18:25 +00002270 private:
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002271 void FillIMTAndConflictTables(ObjPtr<mirror::Class> klass)
2272 REQUIRES_SHARED(Locks::mutator_lock_) {
Artem Udovichenkoa62cb9b2016-06-30 09:18:25 +00002273 if (!klass->ShouldHaveImt()) {
2274 return;
2275 }
2276 if (visited_classes_.find(klass) != visited_classes_.end()) {
2277 return;
2278 }
2279 if (klass->HasSuperClass()) {
2280 FillIMTAndConflictTables(klass->GetSuperClass());
2281 }
2282 if (!klass->IsTemp()) {
2283 Runtime::Current()->GetClassLinker()->FillIMTAndConflictTables(klass);
2284 }
2285 visited_classes_.insert(klass);
2286 }
2287
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002288 VariableSizedHandleScope& hs_;
2289 std::vector<Handle<mirror::Class>> to_visit_;
2290 std::unordered_set<ObjPtr<mirror::Class>, HashObjPtr> visited_classes_;
Mathieu Chartier085a0722016-04-01 17:33:31 -07002291};
2292
Brian Carlstrom7940e442013-07-12 13:46:57 -07002293void CompilerDriver::InitializeClasses(jobject class_loader,
2294 const std::vector<const DexFile*>& dex_files,
Andreas Gampeace0dc12016-01-20 13:33:13 -08002295 TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07002296 for (size_t i = 0; i != dex_files.size(); ++i) {
2297 const DexFile* dex_file = dex_files[i];
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002298 CHECK(dex_file != nullptr);
Andreas Gampeace0dc12016-01-20 13:33:13 -08002299 InitializeClasses(class_loader, *dex_file, dex_files, timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002300 }
Vladimir Markoaad75c62016-10-03 08:46:48 +00002301 if (GetCompilerOptions().IsBootImage() || GetCompilerOptions().IsAppImage()) {
Mathieu Chartier085a0722016-04-01 17:33:31 -07002302 // Make sure that we call EnsureIntiailized on all the array classes to call
2303 // SetVerificationAttempted so that the access flags are set. If we do not do this they get
2304 // changed at runtime resulting in more dirty image pages.
Mathieu Chartier91288d82016-04-28 09:44:54 -07002305 // Also create conflict tables.
2306 // Only useful if we are compiling an image (image_classes_ is not null).
Mathieu Chartier085a0722016-04-01 17:33:31 -07002307 ScopedObjectAccess soa(Thread::Current());
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002308 VariableSizedHandleScope hs(soa.Self());
2309 InitializeArrayClassesAndCreateConflictTablesVisitor visitor(hs);
Mathieu Chartier91288d82016-04-28 09:44:54 -07002310 Runtime::Current()->GetClassLinker()->VisitClassesWithoutClassesLock(&visitor);
Mathieu Chartier28357fa2016-10-18 16:27:40 -07002311 visitor.FillAllIMTAndConflictTables();
Mathieu Chartier085a0722016-04-01 17:33:31 -07002312 }
Vladimir Markoaad75c62016-10-03 08:46:48 +00002313 if (GetCompilerOptions().IsBootImage()) {
Mathieu Chartier093ef212014-08-11 13:52:12 -07002314 // Prune garbage objects created during aborted transactions.
2315 Runtime::Current()->GetHeap()->CollectGarbage(true);
2316 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002317}
2318
Andreas Gampeace0dc12016-01-20 13:33:13 -08002319void CompilerDriver::Compile(jobject class_loader,
2320 const std::vector<const DexFile*>& dex_files,
2321 TimingLogger* timings) {
Calin Juravle998c2162015-12-21 15:39:33 +02002322 if (kDebugProfileGuidedCompilation) {
2323 LOG(INFO) << "[ProfileGuidedCompilation] " <<
2324 ((profile_compilation_info_ == nullptr)
2325 ? "null"
2326 : profile_compilation_info_->DumpInfo(&dex_files));
Calin Juravle226501b2015-12-11 14:41:31 +00002327 }
Vladimir Marko492a7fa2016-06-01 18:38:43 +01002328
2329 DCHECK(current_dex_to_dex_methods_ == nullptr);
2330 for (const DexFile* dex_file : dex_files) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002331 CHECK(dex_file != nullptr);
Andreas Gampeace0dc12016-01-20 13:33:13 -08002332 CompileDexFile(class_loader,
2333 *dex_file,
2334 dex_files,
2335 parallel_thread_pool_.get(),
2336 parallel_thread_count_,
2337 timings);
Calin Juravle69158982016-03-16 11:53:41 +00002338 const ArenaPool* const arena_pool = Runtime::Current()->GetArenaPool();
2339 const size_t arena_alloc = arena_pool->GetBytesAllocated();
2340 max_arena_alloc_ = std::max(arena_alloc, max_arena_alloc_);
Jean-Philippe Halimica76a1a2016-02-02 19:48:52 +01002341 Runtime::Current()->ReclaimArenaPoolMemory();
Brian Carlstrom7940e442013-07-12 13:46:57 -07002342 }
Vladimir Marko492a7fa2016-06-01 18:38:43 +01002343
2344 ArrayRef<DexFileMethodSet> dex_to_dex_references;
2345 {
2346 // From this point on, we shall not modify dex_to_dex_references_, so
2347 // just grab a reference to it that we use without holding the mutex.
2348 MutexLock lock(Thread::Current(), dex_to_dex_references_lock_);
2349 dex_to_dex_references = ArrayRef<DexFileMethodSet>(dex_to_dex_references_);
2350 }
2351 for (const auto& method_set : dex_to_dex_references) {
2352 current_dex_to_dex_methods_ = &method_set.GetMethodIndexes();
2353 CompileDexFile(class_loader,
2354 method_set.GetDexFile(),
2355 dex_files,
2356 parallel_thread_pool_.get(),
2357 parallel_thread_count_,
2358 timings);
2359 }
2360 current_dex_to_dex_methods_ = nullptr;
2361
Andreas Gampe8d295f82015-01-20 14:50:21 -08002362 VLOG(compiler) << "Compile: " << GetMemoryUsageString(false);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002363}
2364
Mathieu Chartier90443472015-07-16 20:32:27 -07002365class CompileClassVisitor : public CompilationVisitor {
2366 public:
2367 explicit CompileClassVisitor(const ParallelCompilationManager* manager) : manager_(manager) {}
2368
2369 virtual void Visit(size_t class_def_index) REQUIRES(!Locks::mutator_lock_) OVERRIDE {
2370 ATRACE_CALL();
2371 const DexFile& dex_file = *manager_->GetDexFile();
2372 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
2373 ClassLinker* class_linker = manager_->GetClassLinker();
2374 jobject jclass_loader = manager_->GetClassLoader();
Mathieu Chartier90443472015-07-16 20:32:27 -07002375 ClassReference ref(&dex_file, class_def_index);
2376 // Skip compiling classes with generic verifier failures since they will still fail at runtime
2377 if (manager_->GetCompiler()->verification_results_->IsClassRejected(ref)) {
Ian Rogers1ff3c982014-08-12 02:30:58 -07002378 return;
2379 }
Mathieu Chartier736b5602015-09-02 14:54:11 -07002380 // Use a scoped object access to perform to the quick SkipClass check.
2381 const char* descriptor = dex_file.GetClassDescriptor(class_def);
2382 ScopedObjectAccess soa(Thread::Current());
2383 StackHandleScope<3> hs(soa.Self());
2384 Handle<mirror::ClassLoader> class_loader(
Mathieu Chartier0795f232016-09-27 18:43:30 -07002385 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader)));
Mathieu Chartier736b5602015-09-02 14:54:11 -07002386 Handle<mirror::Class> klass(
2387 hs.NewHandle(class_linker->FindClass(soa.Self(), descriptor, class_loader)));
2388 Handle<mirror::DexCache> dex_cache;
2389 if (klass.Get() == nullptr) {
2390 soa.Self()->AssertPendingException();
2391 soa.Self()->ClearException();
2392 dex_cache = hs.NewHandle(class_linker->FindDexCache(soa.Self(), dex_file));
2393 } else if (SkipClass(jclass_loader, dex_file, klass.Get())) {
2394 return;
2395 } else {
2396 dex_cache = hs.NewHandle(klass->GetDexCache());
2397 }
2398
Mathieu Chartier90443472015-07-16 20:32:27 -07002399 const uint8_t* class_data = dex_file.GetClassData(class_def);
2400 if (class_data == nullptr) {
2401 // empty class, probably a marker interface
2402 return;
Brian Carlstrom7940e442013-07-12 13:46:57 -07002403 }
Mathieu Chartier90443472015-07-16 20:32:27 -07002404
Mathieu Chartier736b5602015-09-02 14:54:11 -07002405 // Go to native so that we don't block GC during compilation.
Mathieu Chartierf1d666e2015-09-03 16:13:34 -07002406 ScopedThreadSuspension sts(soa.Self(), kNative);
Mathieu Chartier736b5602015-09-02 14:54:11 -07002407
Mathieu Chartier90443472015-07-16 20:32:27 -07002408 CompilerDriver* const driver = manager_->GetCompiler();
2409
2410 // Can we run DEX-to-DEX compiler on this class ?
Andreas Gampe5eb0d382015-07-23 01:19:26 -07002411 optimizer::DexToDexCompilationLevel dex_to_dex_compilation_level =
Mathieu Chartier736b5602015-09-02 14:54:11 -07002412 GetDexToDexCompilationLevel(soa.Self(), *driver, jclass_loader, dex_file, class_def);
Andreas Gampe5eb0d382015-07-23 01:19:26 -07002413
Mathieu Chartier90443472015-07-16 20:32:27 -07002414 ClassDataItemIterator it(dex_file, class_data);
2415 // Skip fields
2416 while (it.HasNextStaticField()) {
2417 it.Next();
2418 }
2419 while (it.HasNextInstanceField()) {
2420 it.Next();
2421 }
2422
2423 bool compilation_enabled = driver->IsClassToCompile(
2424 dex_file.StringByTypeIdx(class_def.class_idx_));
2425
2426 // Compile direct methods
2427 int64_t previous_direct_method_idx = -1;
2428 while (it.HasNextDirectMethod()) {
2429 uint32_t method_idx = it.GetMemberIndex();
2430 if (method_idx == previous_direct_method_idx) {
2431 // smali can create dex files with two encoded_methods sharing the same method_idx
2432 // http://code.google.com/p/smali/issues/detail?id=119
2433 it.Next();
2434 continue;
2435 }
2436 previous_direct_method_idx = method_idx;
Mathieu Chartier736b5602015-09-02 14:54:11 -07002437 CompileMethod(soa.Self(), driver, it.GetMethodCodeItem(), it.GetMethodAccessFlags(),
Andreas Gampe5eb0d382015-07-23 01:19:26 -07002438 it.GetMethodInvokeType(class_def), class_def_index,
2439 method_idx, jclass_loader, dex_file, dex_to_dex_compilation_level,
Mathieu Chartier736b5602015-09-02 14:54:11 -07002440 compilation_enabled, dex_cache);
Mathieu Chartier90443472015-07-16 20:32:27 -07002441 it.Next();
2442 }
2443 // Compile virtual methods
2444 int64_t previous_virtual_method_idx = -1;
2445 while (it.HasNextVirtualMethod()) {
2446 uint32_t method_idx = it.GetMemberIndex();
2447 if (method_idx == previous_virtual_method_idx) {
2448 // smali can create dex files with two encoded_methods sharing the same method_idx
2449 // http://code.google.com/p/smali/issues/detail?id=119
2450 it.Next();
2451 continue;
2452 }
2453 previous_virtual_method_idx = method_idx;
Mathieu Chartier736b5602015-09-02 14:54:11 -07002454 CompileMethod(soa.Self(), driver, it.GetMethodCodeItem(), it.GetMethodAccessFlags(),
Andreas Gampe5eb0d382015-07-23 01:19:26 -07002455 it.GetMethodInvokeType(class_def), class_def_index,
2456 method_idx, jclass_loader, dex_file, dex_to_dex_compilation_level,
Mathieu Chartier736b5602015-09-02 14:54:11 -07002457 compilation_enabled, dex_cache);
Mathieu Chartier90443472015-07-16 20:32:27 -07002458 it.Next();
2459 }
2460 DCHECK(!it.HasNext());
Brian Carlstrom7940e442013-07-12 13:46:57 -07002461 }
Mathieu Chartier90443472015-07-16 20:32:27 -07002462
2463 private:
2464 const ParallelCompilationManager* const manager_;
2465};
Brian Carlstrom7940e442013-07-12 13:46:57 -07002466
Andreas Gampeace0dc12016-01-20 13:33:13 -08002467void CompilerDriver::CompileDexFile(jobject class_loader,
2468 const DexFile& dex_file,
Andreas Gampede7b4362014-07-28 18:38:57 -07002469 const std::vector<const DexFile*>& dex_files,
Andreas Gampeace0dc12016-01-20 13:33:13 -08002470 ThreadPool* thread_pool,
2471 size_t thread_count,
2472 TimingLogger* timings) {
Mathieu Chartierf5997b42014-06-20 10:37:54 -07002473 TimingLogger::ScopedTiming t("Compile Dex File", timings);
Ian Rogersbe7149f2013-08-20 09:29:39 -07002474 ParallelCompilationManager context(Runtime::Current()->GetClassLinker(), class_loader, this,
Andreas Gampede7b4362014-07-28 18:38:57 -07002475 &dex_file, dex_files, thread_pool);
Mathieu Chartier90443472015-07-16 20:32:27 -07002476 CompileClassVisitor visitor(&context);
Andreas Gampeace0dc12016-01-20 13:33:13 -08002477 context.ForAll(0, dex_file.NumClassDefs(), &visitor, thread_count);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002478}
2479
Andreas Gampe5eb0d382015-07-23 01:19:26 -07002480void CompilerDriver::AddCompiledMethod(const MethodReference& method_ref,
2481 CompiledMethod* const compiled_method,
2482 size_t non_relative_linker_patch_count) {
2483 DCHECK(GetCompiledMethod(method_ref) == nullptr)
David Sehr709b0702016-10-13 09:12:37 -07002484 << method_ref.dex_file->PrettyMethod(method_ref.dex_method_index);
Andreas Gampe5eb0d382015-07-23 01:19:26 -07002485 {
2486 MutexLock mu(Thread::Current(), compiled_methods_lock_);
2487 compiled_methods_.Put(method_ref, compiled_method);
2488 non_relative_linker_patch_count_ += non_relative_linker_patch_count;
Ian Rogersa4a3f402014-10-20 18:10:34 -07002489 }
Andreas Gampe5eb0d382015-07-23 01:19:26 -07002490 DCHECK(GetCompiledMethod(method_ref) != nullptr)
David Sehr709b0702016-10-13 09:12:37 -07002491 << method_ref.dex_file->PrettyMethod(method_ref.dex_method_index);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002492}
2493
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08002494void CompilerDriver::RemoveCompiledMethod(const MethodReference& method_ref) {
2495 CompiledMethod* compiled_method = nullptr;
2496 {
2497 MutexLock mu(Thread::Current(), compiled_methods_lock_);
2498 auto it = compiled_methods_.find(method_ref);
2499 if (it != compiled_methods_.end()) {
2500 compiled_method = it->second;
2501 compiled_methods_.erase(it);
2502 }
2503 }
2504 if (compiled_method != nullptr) {
2505 CompiledMethod::ReleaseSwapAllocatedCompiledMethod(this, compiled_method);
2506 }
2507}
2508
Brian Carlstrom7940e442013-07-12 13:46:57 -07002509CompiledClass* CompilerDriver::GetCompiledClass(ClassReference ref) const {
2510 MutexLock mu(Thread::Current(), compiled_classes_lock_);
2511 ClassTable::const_iterator it = compiled_classes_.find(ref);
2512 if (it == compiled_classes_.end()) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002513 return nullptr;
Brian Carlstrom7940e442013-07-12 13:46:57 -07002514 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002515 CHECK(it->second != nullptr);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002516 return it->second;
2517}
2518
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07002519void CompilerDriver::RecordClassStatus(ClassReference ref, mirror::Class::Status status) {
2520 MutexLock mu(Thread::Current(), compiled_classes_lock_);
2521 auto it = compiled_classes_.find(ref);
2522 if (it == compiled_classes_.end() || it->second->GetStatus() != status) {
2523 // An entry doesn't exist or the status is lower than the new status.
2524 if (it != compiled_classes_.end()) {
2525 CHECK_GT(status, it->second->GetStatus());
2526 delete it->second;
2527 }
2528 switch (status) {
2529 case mirror::Class::kStatusNotReady:
2530 case mirror::Class::kStatusError:
2531 case mirror::Class::kStatusRetryVerificationAtRuntime:
2532 case mirror::Class::kStatusVerified:
2533 case mirror::Class::kStatusInitialized:
Mathieu Chartiera8077802016-03-16 19:08:31 -07002534 case mirror::Class::kStatusResolved:
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07002535 break; // Expected states.
2536 default:
2537 LOG(FATAL) << "Unexpected class status for class "
2538 << PrettyDescriptor(ref.first->GetClassDescriptor(ref.first->GetClassDef(ref.second)))
2539 << " of " << status;
2540 }
2541 CompiledClass* compiled_class = new CompiledClass(status);
2542 compiled_classes_.Overwrite(ref, compiled_class);
2543 }
2544}
2545
Brian Carlstrom7940e442013-07-12 13:46:57 -07002546CompiledMethod* CompilerDriver::GetCompiledMethod(MethodReference ref) const {
2547 MutexLock mu(Thread::Current(), compiled_methods_lock_);
2548 MethodTable::const_iterator it = compiled_methods_.find(ref);
2549 if (it == compiled_methods_.end()) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002550 return nullptr;
Brian Carlstrom7940e442013-07-12 13:46:57 -07002551 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002552 CHECK(it->second != nullptr);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002553 return it->second;
2554}
2555
Calin Juravlef1c6d9e2015-04-13 18:42:21 +01002556bool CompilerDriver::IsMethodVerifiedWithoutFailures(uint32_t method_idx,
2557 uint16_t class_def_idx,
2558 const DexFile& dex_file) const {
2559 const VerifiedMethod* verified_method = GetVerifiedMethod(&dex_file, method_idx);
2560 if (verified_method != nullptr) {
2561 return !verified_method->HasVerificationFailures();
2562 }
2563
2564 // If we can't find verification metadata, check if this is a system class (we trust that system
2565 // classes have their methods verified). If it's not, be conservative and assume the method
2566 // has not been verified successfully.
2567
2568 // TODO: When compiling the boot image it should be safe to assume that everything is verified,
2569 // even if methods are not found in the verification cache.
2570 const char* descriptor = dex_file.GetClassDescriptor(dex_file.GetClassDef(class_def_idx));
2571 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
2572 Thread* self = Thread::Current();
2573 ScopedObjectAccess soa(self);
2574 bool is_system_class = class_linker->FindSystemClass(self, descriptor) != nullptr;
2575 if (!is_system_class) {
2576 self->ClearException();
2577 }
2578 return is_system_class;
2579}
2580
Vladimir Markof4da6752014-08-01 19:04:18 +01002581size_t CompilerDriver::GetNonRelativeLinkerPatchCount() const {
2582 MutexLock mu(Thread::Current(), compiled_methods_lock_);
2583 return non_relative_linker_patch_count_;
2584}
2585
Mathieu Chartierc4ae9162016-04-07 13:19:19 -07002586void CompilerDriver::SetRequiresConstructorBarrier(Thread* self,
2587 const DexFile* dex_file,
2588 uint16_t class_def_index,
2589 bool requires) {
2590 WriterMutexLock mu(self, requires_constructor_barrier_lock_);
2591 requires_constructor_barrier_.emplace(ClassReference(dex_file, class_def_index), requires);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002592}
2593
Mathieu Chartier371bd832016-04-07 10:19:48 -07002594bool CompilerDriver::RequiresConstructorBarrier(Thread* self,
2595 const DexFile* dex_file,
Mathieu Chartierc4ae9162016-04-07 13:19:19 -07002596 uint16_t class_def_index) {
2597 ClassReference class_ref(dex_file, class_def_index);
2598 {
2599 ReaderMutexLock mu(self, requires_constructor_barrier_lock_);
2600 auto it = requires_constructor_barrier_.find(class_ref);
2601 if (it != requires_constructor_barrier_.end()) {
2602 return it->second;
2603 }
Mathieu Chartierb5d38612016-04-07 10:52:52 -07002604 }
Mathieu Chartierc4ae9162016-04-07 13:19:19 -07002605 WriterMutexLock mu(self, requires_constructor_barrier_lock_);
2606 const bool requires = RequiresConstructorBarrier(*dex_file, class_def_index);
2607 requires_constructor_barrier_.emplace(class_ref, requires);
2608 return requires;
Brian Carlstrom7940e442013-07-12 13:46:57 -07002609}
2610
Andreas Gampe8d295f82015-01-20 14:50:21 -08002611std::string CompilerDriver::GetMemoryUsageString(bool extended) const {
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002612 std::ostringstream oss;
Calin Juravle69158982016-03-16 11:53:41 +00002613 const gc::Heap* const heap = Runtime::Current()->GetHeap();
Anton Kirilovdd9473b2016-01-28 15:08:01 +00002614 const size_t java_alloc = heap->GetBytesAllocated();
Calin Juravle69158982016-03-16 11:53:41 +00002615 oss << "arena alloc=" << PrettySize(max_arena_alloc_) << " (" << max_arena_alloc_ << "B)";
Anton Kirilovdd9473b2016-01-28 15:08:01 +00002616 oss << " java alloc=" << PrettySize(java_alloc) << " (" << java_alloc << "B)";
Elliott Hughes7bf5a262015-04-02 20:55:07 -07002617#if defined(__BIONIC__) || defined(__GLIBC__)
Anton Kirilovdd9473b2016-01-28 15:08:01 +00002618 const struct mallinfo info = mallinfo();
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002619 const size_t allocated_space = static_cast<size_t>(info.uordblks);
2620 const size_t free_space = static_cast<size_t>(info.fordblks);
Anton Kirilovdd9473b2016-01-28 15:08:01 +00002621 oss << " native alloc=" << PrettySize(allocated_space) << " (" << allocated_space << "B)"
2622 << " free=" << PrettySize(free_space) << " (" << free_space << "B)";
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002623#endif
Vladimir Marko35831e82015-09-11 11:59:18 +01002624 compiled_method_storage_.DumpMemoryUsage(oss, extended);
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002625 return oss.str();
2626}
2627
Jeff Haodcdc85b2015-12-04 14:06:18 -08002628bool CompilerDriver::MayInlineInternal(const DexFile* inlined_from,
2629 const DexFile* inlined_into) const {
2630 // We're not allowed to inline across dex files if we're the no-inline-from dex file.
2631 if (inlined_from != inlined_into &&
Vladimir Marko47496c22016-01-27 16:15:08 +00002632 compiler_options_->GetNoInlineFromDexFile() != nullptr &&
2633 ContainsElement(*compiler_options_->GetNoInlineFromDexFile(), inlined_from)) {
Jeff Haodcdc85b2015-12-04 14:06:18 -08002634 return false;
2635 }
2636
2637 return true;
2638}
2639
Andreas Gampeace0dc12016-01-20 13:33:13 -08002640void CompilerDriver::InitializeThreadPools() {
2641 size_t parallel_count = parallel_thread_count_ > 0 ? parallel_thread_count_ - 1 : 0;
2642 parallel_thread_pool_.reset(
2643 new ThreadPool("Compiler driver thread pool", parallel_count));
2644 single_thread_pool_.reset(new ThreadPool("Single-threaded Compiler driver thread pool", 0));
2645}
2646
2647void CompilerDriver::FreeThreadPools() {
2648 parallel_thread_pool_.reset();
2649 single_thread_pool_.reset();
2650}
2651
Brian Carlstrom7940e442013-07-12 13:46:57 -07002652} // namespace art