blob: 1832647f4e2fd3b6337ad06f7c5b2e10ced05113 [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
Anwar Ghuloum67f99412013-08-12 14:19:48 -070019#define ATRACE_TAG ATRACE_TAG_DALVIK
20#include <utils/Trace.h>
Brian Carlstrom7940e442013-07-12 13:46:57 -070021
Andreas Gampeb0f370e2014-09-25 22:51:40 -070022#include <unordered_set>
Anwar Ghuloum67f99412013-08-12 14:19:48 -070023#include <vector>
Brian Carlstrom7940e442013-07-12 13:46:57 -070024#include <unistd.h>
25
Mathieu Chartierab972ef2014-12-03 17:38:22 -080026#ifndef __APPLE__
27#include <malloc.h> // For mallinfo
28#endif
29
Mathieu Chartierc7853442015-03-27 14:35:38 -070030#include "art_field-inl.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070031#include "base/stl_util.h"
32#include "base/timing_logger.h"
Vladimir Marko3481ba22015-04-13 12:22:36 +010033#include "class_linker-inl.h"
Mingyao Yang98d1cc82014-05-15 17:02:16 -070034#include "compiled_class.h"
Vladimir Marko20f85592015-03-19 10:07:02 +000035#include "compiled_method.h"
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +000036#include "compiler.h"
Vladimir Markobe0e5462014-02-26 11:24:15 +000037#include "compiler_driver-inl.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070038#include "dex_compilation_unit.h"
39#include "dex_file-inl.h"
Vladimir Markoc7f83202014-01-24 17:55:18 +000040#include "dex/verification_results.h"
Vladimir Marko2730db02014-01-27 11:15:17 +000041#include "dex/verified_method.h"
Vladimir Marko2bc47802014-02-10 09:43:07 +000042#include "dex/quick/dex_file_method_inliner.h"
Mark Mendellae9fd932014-02-10 16:14:35 -080043#include "driver/compiler_options.h"
Andreas Gampe3773cd02015-04-10 09:28:22 -070044#include "elf_writer_quick.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070045#include "jni_internal.h"
Ian Rogers22d5e732014-07-15 22:23:51 -070046#include "object_lock.h"
Calin Juravlebb0b53f2014-05-23 17:33:29 +010047#include "profiler.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070048#include "runtime.h"
49#include "gc/accounting/card_table-inl.h"
50#include "gc/accounting/heap_bitmap.h"
51#include "gc/space/space.h"
Brian Carlstromea46f952013-07-30 01:26:50 -070052#include "mirror/art_method-inl.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070053#include "mirror/class_loader.h"
54#include "mirror/class-inl.h"
55#include "mirror/dex_cache-inl.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070056#include "mirror/object-inl.h"
57#include "mirror/object_array-inl.h"
58#include "mirror/throwable.h"
59#include "scoped_thread_state_change.h"
60#include "ScopedLocalRef.h"
Mathieu Chartiereb8167a2014-05-07 15:43:14 -070061#include "handle_scope-inl.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070062#include "thread.h"
Andreas Gampeb0f370e2014-09-25 22:51:40 -070063#include "thread_list.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070064#include "thread_pool.h"
Ian Rogers848871b2013-08-05 10:56:33 -070065#include "trampolines/trampoline_compiler.h"
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +010066#include "transaction.h"
Vladimir Marko20f85592015-03-19 10:07:02 +000067#include "utils/dex_cache_arrays_layout-inl.h"
Andreas Gampee21dc3d2014-12-08 16:59:43 -080068#include "utils/swap_space.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070069#include "verifier/method_verifier.h"
Vladimir Marko2bc47802014-02-10 09:43:07 +000070#include "verifier/method_verifier-inl.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070071
Brian Carlstrom7940e442013-07-12 13:46:57 -070072namespace art {
73
Mathieu Chartier8e219ae2014-08-19 14:29:46 -070074static constexpr bool kTimeCompileMethod = !kIsDebugBuild;
75
Andreas Gampe3773cd02015-04-10 09:28:22 -070076// Whether to produce 64-bit ELF files for 64-bit targets. Leave this off for now.
77static constexpr bool kProduce64BitELFFiles = false;
78
Andreas Gampeb1fcead2015-04-20 18:53:51 -070079// Whether classes-to-compile is only applied to the boot image, or, when given, too all
80// compilations.
81static constexpr bool kRestrictCompilationFiltersToImage = true;
82
Brian Carlstrom7940e442013-07-12 13:46:57 -070083static double Percentage(size_t x, size_t y) {
84 return 100.0 * (static_cast<double>(x)) / (static_cast<double>(x + y));
85}
86
87static void DumpStat(size_t x, size_t y, const char* str) {
88 if (x == 0 && y == 0) {
89 return;
90 }
Ian Rogerse732ef12013-10-09 15:22:24 -070091 LOG(INFO) << Percentage(x, y) << "% of " << str << " for " << (x + y) << " cases";
Brian Carlstrom7940e442013-07-12 13:46:57 -070092}
93
Vladimir Markof096aad2014-01-23 15:51:58 +000094class CompilerDriver::AOTCompilationStats {
Brian Carlstrom7940e442013-07-12 13:46:57 -070095 public:
96 AOTCompilationStats()
97 : stats_lock_("AOT compilation statistics lock"),
98 types_in_dex_cache_(0), types_not_in_dex_cache_(0),
99 strings_in_dex_cache_(0), strings_not_in_dex_cache_(0),
100 resolved_types_(0), unresolved_types_(0),
101 resolved_instance_fields_(0), unresolved_instance_fields_(0),
102 resolved_local_static_fields_(0), resolved_static_fields_(0), unresolved_static_fields_(0),
103 type_based_devirtualization_(0),
104 safe_casts_(0), not_safe_casts_(0) {
105 for (size_t i = 0; i <= kMaxInvokeType; i++) {
106 resolved_methods_[i] = 0;
107 unresolved_methods_[i] = 0;
108 virtual_made_direct_[i] = 0;
109 direct_calls_to_boot_[i] = 0;
110 direct_methods_to_boot_[i] = 0;
111 }
112 }
113
114 void Dump() {
115 DumpStat(types_in_dex_cache_, types_not_in_dex_cache_, "types known to be in dex cache");
116 DumpStat(strings_in_dex_cache_, strings_not_in_dex_cache_, "strings known to be in dex cache");
117 DumpStat(resolved_types_, unresolved_types_, "types resolved");
118 DumpStat(resolved_instance_fields_, unresolved_instance_fields_, "instance fields resolved");
119 DumpStat(resolved_local_static_fields_ + resolved_static_fields_, unresolved_static_fields_,
120 "static fields resolved");
121 DumpStat(resolved_local_static_fields_, resolved_static_fields_ + unresolved_static_fields_,
122 "static fields local to a class");
123 DumpStat(safe_casts_, not_safe_casts_, "check-casts removed based on type information");
124 // Note, the code below subtracts the stat value so that when added to the stat value we have
125 // 100% of samples. TODO: clean this up.
126 DumpStat(type_based_devirtualization_,
127 resolved_methods_[kVirtual] + unresolved_methods_[kVirtual] +
128 resolved_methods_[kInterface] + unresolved_methods_[kInterface] -
129 type_based_devirtualization_,
130 "virtual/interface calls made direct based on type information");
131
132 for (size_t i = 0; i <= kMaxInvokeType; i++) {
133 std::ostringstream oss;
134 oss << static_cast<InvokeType>(i) << " methods were AOT resolved";
135 DumpStat(resolved_methods_[i], unresolved_methods_[i], oss.str().c_str());
136 if (virtual_made_direct_[i] > 0) {
137 std::ostringstream oss2;
138 oss2 << static_cast<InvokeType>(i) << " methods made direct";
139 DumpStat(virtual_made_direct_[i],
140 resolved_methods_[i] + unresolved_methods_[i] - virtual_made_direct_[i],
141 oss2.str().c_str());
142 }
143 if (direct_calls_to_boot_[i] > 0) {
144 std::ostringstream oss2;
145 oss2 << static_cast<InvokeType>(i) << " method calls are direct into boot";
146 DumpStat(direct_calls_to_boot_[i],
147 resolved_methods_[i] + unresolved_methods_[i] - direct_calls_to_boot_[i],
148 oss2.str().c_str());
149 }
150 if (direct_methods_to_boot_[i] > 0) {
151 std::ostringstream oss2;
152 oss2 << static_cast<InvokeType>(i) << " method calls have methods in boot";
153 DumpStat(direct_methods_to_boot_[i],
154 resolved_methods_[i] + unresolved_methods_[i] - direct_methods_to_boot_[i],
155 oss2.str().c_str());
156 }
157 }
158 }
159
160// Allow lossy statistics in non-debug builds.
161#ifndef NDEBUG
162#define STATS_LOCK() MutexLock mu(Thread::Current(), stats_lock_)
163#else
164#define STATS_LOCK()
165#endif
166
167 void TypeInDexCache() {
168 STATS_LOCK();
169 types_in_dex_cache_++;
170 }
171
172 void TypeNotInDexCache() {
173 STATS_LOCK();
174 types_not_in_dex_cache_++;
175 }
176
177 void StringInDexCache() {
178 STATS_LOCK();
179 strings_in_dex_cache_++;
180 }
181
182 void StringNotInDexCache() {
183 STATS_LOCK();
184 strings_not_in_dex_cache_++;
185 }
186
187 void TypeDoesntNeedAccessCheck() {
188 STATS_LOCK();
189 resolved_types_++;
190 }
191
192 void TypeNeedsAccessCheck() {
193 STATS_LOCK();
194 unresolved_types_++;
195 }
196
197 void ResolvedInstanceField() {
198 STATS_LOCK();
199 resolved_instance_fields_++;
200 }
201
202 void UnresolvedInstanceField() {
203 STATS_LOCK();
204 unresolved_instance_fields_++;
205 }
206
207 void ResolvedLocalStaticField() {
208 STATS_LOCK();
209 resolved_local_static_fields_++;
210 }
211
212 void ResolvedStaticField() {
213 STATS_LOCK();
214 resolved_static_fields_++;
215 }
216
217 void UnresolvedStaticField() {
218 STATS_LOCK();
219 unresolved_static_fields_++;
220 }
221
222 // Indicate that type information from the verifier led to devirtualization.
223 void PreciseTypeDevirtualization() {
224 STATS_LOCK();
225 type_based_devirtualization_++;
226 }
227
228 // Indicate that a method of the given type was resolved at compile time.
229 void ResolvedMethod(InvokeType type) {
230 DCHECK_LE(type, kMaxInvokeType);
231 STATS_LOCK();
232 resolved_methods_[type]++;
233 }
234
235 // Indicate that a method of the given type was unresolved at compile time as it was in an
236 // unknown dex file.
237 void UnresolvedMethod(InvokeType type) {
238 DCHECK_LE(type, kMaxInvokeType);
239 STATS_LOCK();
240 unresolved_methods_[type]++;
241 }
242
243 // Indicate that a type of virtual method dispatch has been converted into a direct method
244 // dispatch.
245 void VirtualMadeDirect(InvokeType type) {
246 DCHECK(type == kVirtual || type == kInterface || type == kSuper);
247 STATS_LOCK();
248 virtual_made_direct_[type]++;
249 }
250
251 // Indicate that a method of the given type was able to call directly into boot.
252 void DirectCallsToBoot(InvokeType type) {
253 DCHECK_LE(type, kMaxInvokeType);
254 STATS_LOCK();
255 direct_calls_to_boot_[type]++;
256 }
257
258 // Indicate that a method of the given type was able to be resolved directly from boot.
259 void DirectMethodsToBoot(InvokeType type) {
260 DCHECK_LE(type, kMaxInvokeType);
261 STATS_LOCK();
262 direct_methods_to_boot_[type]++;
263 }
264
Vladimir Markof096aad2014-01-23 15:51:58 +0000265 void ProcessedInvoke(InvokeType type, int flags) {
266 STATS_LOCK();
267 if (flags == 0) {
268 unresolved_methods_[type]++;
269 } else {
270 DCHECK_NE((flags & kFlagMethodResolved), 0);
271 resolved_methods_[type]++;
272 if ((flags & kFlagVirtualMadeDirect) != 0) {
273 virtual_made_direct_[type]++;
274 if ((flags & kFlagPreciseTypeDevirtualization) != 0) {
275 type_based_devirtualization_++;
276 }
277 } else {
278 DCHECK_EQ((flags & kFlagPreciseTypeDevirtualization), 0);
279 }
280 if ((flags & kFlagDirectCallToBoot) != 0) {
281 direct_calls_to_boot_[type]++;
282 }
283 if ((flags & kFlagDirectMethodToBoot) != 0) {
284 direct_methods_to_boot_[type]++;
285 }
286 }
287 }
288
Brian Carlstrom7940e442013-07-12 13:46:57 -0700289 // A check-cast could be eliminated due to verifier type analysis.
290 void SafeCast() {
291 STATS_LOCK();
292 safe_casts_++;
293 }
294
295 // A check-cast couldn't be eliminated due to verifier type analysis.
296 void NotASafeCast() {
297 STATS_LOCK();
298 not_safe_casts_++;
299 }
300
301 private:
302 Mutex stats_lock_;
303
304 size_t types_in_dex_cache_;
305 size_t types_not_in_dex_cache_;
306
307 size_t strings_in_dex_cache_;
308 size_t strings_not_in_dex_cache_;
309
310 size_t resolved_types_;
311 size_t unresolved_types_;
312
313 size_t resolved_instance_fields_;
314 size_t unresolved_instance_fields_;
315
316 size_t resolved_local_static_fields_;
317 size_t resolved_static_fields_;
318 size_t unresolved_static_fields_;
319 // Type based devirtualization for invoke interface and virtual.
320 size_t type_based_devirtualization_;
321
322 size_t resolved_methods_[kMaxInvokeType + 1];
323 size_t unresolved_methods_[kMaxInvokeType + 1];
324 size_t virtual_made_direct_[kMaxInvokeType + 1];
325 size_t direct_calls_to_boot_[kMaxInvokeType + 1];
326 size_t direct_methods_to_boot_[kMaxInvokeType + 1];
327
328 size_t safe_casts_;
329 size_t not_safe_casts_;
330
331 DISALLOW_COPY_AND_ASSIGN(AOTCompilationStats);
332};
333
Brian Carlstrom7940e442013-07-12 13:46:57 -0700334
335extern "C" art::CompiledMethod* ArtCompileDEX(art::CompilerDriver& compiler,
336 const art::DexFile::CodeItem* code_item,
337 uint32_t access_flags,
338 art::InvokeType invoke_type,
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700339 uint16_t class_def_idx,
Brian Carlstrom7940e442013-07-12 13:46:57 -0700340 uint32_t method_idx,
341 jobject class_loader,
342 const art::DexFile& dex_file);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700343
Brian Carlstrom6449c622014-02-10 23:48:36 -0800344CompilerDriver::CompilerDriver(const CompilerOptions* compiler_options,
345 VerificationResults* verification_results,
Vladimir Marko5816ed42013-11-27 17:04:20 +0000346 DexFileToMethodInlinerMap* method_inliner_map,
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +0000347 Compiler::Kind compiler_kind,
Nicolas Geoffrayf5df8972014-02-14 18:37:08 +0000348 InstructionSet instruction_set,
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700349 const InstructionSetFeatures* instruction_set_features,
Andreas Gampeb1fcead2015-04-20 18:53:51 -0700350 bool image, std::unordered_set<std::string>* image_classes,
351 std::unordered_set<std::string>* compiled_classes,
352 size_t thread_count, bool dump_stats, bool dump_passes,
David Brazdil866c0312015-01-13 21:21:31 +0000353 const std::string& dump_cfg_file_name, CumulativeLogger* timer,
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800354 int swap_fd, const std::string& profile_file)
355 : swap_space_(swap_fd == -1 ? nullptr : new SwapSpace(swap_fd, 10 * MB)),
356 swap_space_allocator_(new SwapAllocator<void>(swap_space_.get())),
357 profile_present_(false), compiler_options_(compiler_options),
Brian Carlstrom6449c622014-02-10 23:48:36 -0800358 verification_results_(verification_results),
Vladimir Marko5816ed42013-11-27 17:04:20 +0000359 method_inliner_map_(method_inliner_map),
Ian Rogers72d32622014-05-06 16:20:11 -0700360 compiler_(Compiler::Create(this, compiler_kind)),
Jeff Hao48699fb2015-04-06 14:21:37 -0700361 compiler_kind_(compiler_kind),
Brian Carlstrom7940e442013-07-12 13:46:57 -0700362 instruction_set_(instruction_set),
Dave Allison70202782013-10-22 17:52:19 -0700363 instruction_set_features_(instruction_set_features),
Brian Carlstrom7940e442013-07-12 13:46:57 -0700364 freezing_constructor_lock_("freezing constructor lock"),
365 compiled_classes_lock_("compiled classes lock"),
366 compiled_methods_lock_("compiled method lock"),
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800367 compiled_methods_(MethodTable::key_compare()),
Vladimir Markof4da6752014-08-01 19:04:18 +0100368 non_relative_linker_patch_count_(0u),
Brian Carlstrom7940e442013-07-12 13:46:57 -0700369 image_(image),
370 image_classes_(image_classes),
Andreas Gampe4bf3ae92014-11-11 13:28:29 -0800371 classes_to_compile_(compiled_classes),
Andreas Gampe6cf49e52015-03-05 13:08:45 -0800372 had_hard_verifier_failure_(false),
Brian Carlstrom7940e442013-07-12 13:46:57 -0700373 thread_count_(thread_count),
Brian Carlstrom7940e442013-07-12 13:46:57 -0700374 stats_(new AOTCompilationStats),
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800375 dedupe_enabled_(true),
Brian Carlstrom7940e442013-07-12 13:46:57 -0700376 dump_stats_(dump_stats),
Nicolas Geoffrayea3fa0b2014-02-10 11:59:41 +0000377 dump_passes_(dump_passes),
David Brazdil866c0312015-01-13 21:21:31 +0000378 dump_cfg_file_name_(dump_cfg_file_name),
Nicolas Geoffrayea3fa0b2014-02-10 11:59:41 +0000379 timings_logger_(timer),
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700380 compiler_context_(nullptr),
Andreas Gampe57b34292015-01-14 15:45:59 -0800381 support_boot_image_fixup_(instruction_set != kMips && instruction_set != kMips64),
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800382 dedupe_code_("dedupe code", *swap_space_allocator_),
383 dedupe_src_mapping_table_("dedupe source mapping table", *swap_space_allocator_),
384 dedupe_mapping_table_("dedupe mapping table", *swap_space_allocator_),
385 dedupe_vmap_table_("dedupe vmap table", *swap_space_allocator_),
386 dedupe_gc_map_("dedupe gc map", *swap_space_allocator_),
387 dedupe_cfi_info_("dedupe cfi info", *swap_space_allocator_) {
Brian Carlstrom6449c622014-02-10 23:48:36 -0800388 DCHECK(compiler_options_ != nullptr);
389 DCHECK(verification_results_ != nullptr);
390 DCHECK(method_inliner_map_ != nullptr);
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700391
Sebastien Hertz75021222013-07-16 18:34:50 +0200392 dex_to_dex_compiler_ = reinterpret_cast<DexToDexCompilerFn>(ArtCompileDEX);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700393
Ian Rogers72d32622014-05-06 16:20:11 -0700394 compiler_->Init();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700395
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800396 CHECK_EQ(image_, image_classes_.get() != nullptr);
Mark Mendellae9fd932014-02-10 16:14:35 -0800397
Calin Juravlec1b643c2014-05-30 23:44:11 +0100398 // Read the profile file if one is provided.
399 if (!profile_file.empty()) {
400 profile_present_ = profile_file_.LoadFile(profile_file);
401 if (profile_present_) {
402 LOG(INFO) << "Using profile data form file " << profile_file;
403 } else {
404 LOG(INFO) << "Failed to load profile file " << profile_file;
405 }
406 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700407}
408
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800409SwapVector<uint8_t>* CompilerDriver::DeduplicateCode(const ArrayRef<const uint8_t>& code) {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800410 DCHECK(dedupe_enabled_);
Mathieu Chartier193bad92013-08-29 18:46:00 -0700411 return dedupe_code_.Add(Thread::Current(), code);
412}
413
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800414SwapSrcMap* CompilerDriver::DeduplicateSrcMappingTable(const ArrayRef<SrcMapElem>& src_map) {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800415 DCHECK(dedupe_enabled_);
Yevgeny Roubane3ea8382014-08-08 16:29:38 +0700416 return dedupe_src_mapping_table_.Add(Thread::Current(), src_map);
417}
418
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800419SwapVector<uint8_t>* CompilerDriver::DeduplicateMappingTable(const ArrayRef<const uint8_t>& code) {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800420 DCHECK(dedupe_enabled_);
Mathieu Chartier193bad92013-08-29 18:46:00 -0700421 return dedupe_mapping_table_.Add(Thread::Current(), code);
422}
423
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800424SwapVector<uint8_t>* CompilerDriver::DeduplicateVMapTable(const ArrayRef<const uint8_t>& code) {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800425 DCHECK(dedupe_enabled_);
Mathieu Chartier193bad92013-08-29 18:46:00 -0700426 return dedupe_vmap_table_.Add(Thread::Current(), code);
427}
428
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800429SwapVector<uint8_t>* CompilerDriver::DeduplicateGCMap(const ArrayRef<const uint8_t>& code) {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800430 DCHECK(dedupe_enabled_);
Mathieu Chartier193bad92013-08-29 18:46:00 -0700431 return dedupe_gc_map_.Add(Thread::Current(), code);
432}
433
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800434SwapVector<uint8_t>* CompilerDriver::DeduplicateCFIInfo(const ArrayRef<const uint8_t>& cfi_info) {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800435 DCHECK(dedupe_enabled_);
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800436 return dedupe_cfi_info_.Add(Thread::Current(), cfi_info);
Mark Mendellae9fd932014-02-10 16:14:35 -0800437}
438
Brian Carlstrom7940e442013-07-12 13:46:57 -0700439CompilerDriver::~CompilerDriver() {
440 Thread* self = Thread::Current();
441 {
442 MutexLock mu(self, compiled_classes_lock_);
443 STLDeleteValues(&compiled_classes_);
444 }
445 {
446 MutexLock mu(self, compiled_methods_lock_);
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800447 for (auto& pair : compiled_methods_) {
448 CompiledMethod::ReleaseSwapAllocatedCompiledMethod(this, pair.second);
449 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700450 }
Ian Rogers72d32622014-05-06 16:20:11 -0700451 compiler_->UnInit();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700452}
453
Ian Rogersdd7624d2014-03-14 17:43:00 -0700454#define CREATE_TRAMPOLINE(type, abi, offset) \
Andreas Gampeaf13ad92014-04-11 12:07:48 -0700455 if (Is64BitInstructionSet(instruction_set_)) { \
Ian Rogersdd7624d2014-03-14 17:43:00 -0700456 return CreateTrampoline64(instruction_set_, abi, \
457 type ## _ENTRYPOINT_OFFSET(8, offset)); \
458 } else { \
459 return CreateTrampoline32(instruction_set_, abi, \
460 type ## _ENTRYPOINT_OFFSET(4, offset)); \
461 }
462
Ian Rogers848871b2013-08-05 10:56:33 -0700463const std::vector<uint8_t>* CompilerDriver::CreateInterpreterToInterpreterBridge() const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700464 CREATE_TRAMPOLINE(INTERPRETER, kInterpreterAbi, pInterpreterToInterpreterBridge)
Ian Rogers848871b2013-08-05 10:56:33 -0700465}
466
467const std::vector<uint8_t>* CompilerDriver::CreateInterpreterToCompiledCodeBridge() const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700468 CREATE_TRAMPOLINE(INTERPRETER, kInterpreterAbi, pInterpreterToCompiledCodeBridge)
Ian Rogers848871b2013-08-05 10:56:33 -0700469}
470
471const std::vector<uint8_t>* CompilerDriver::CreateJniDlsymLookup() const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700472 CREATE_TRAMPOLINE(JNI, kJniAbi, pDlsymLookup)
Ian Rogers848871b2013-08-05 10:56:33 -0700473}
474
Andreas Gampe2da88232014-02-27 12:26:20 -0800475const std::vector<uint8_t>* CompilerDriver::CreateQuickGenericJniTrampoline() const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700476 CREATE_TRAMPOLINE(QUICK, kQuickAbi, pQuickGenericJniTrampoline)
Andreas Gampe2da88232014-02-27 12:26:20 -0800477}
478
Jeff Hao88474b42013-10-23 16:24:40 -0700479const std::vector<uint8_t>* CompilerDriver::CreateQuickImtConflictTrampoline() const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700480 CREATE_TRAMPOLINE(QUICK, kQuickAbi, pQuickImtConflictTrampoline)
Jeff Hao88474b42013-10-23 16:24:40 -0700481}
482
Brian Carlstrom7940e442013-07-12 13:46:57 -0700483const std::vector<uint8_t>* CompilerDriver::CreateQuickResolutionTrampoline() const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700484 CREATE_TRAMPOLINE(QUICK, kQuickAbi, pQuickResolutionTrampoline)
Brian Carlstrom7940e442013-07-12 13:46:57 -0700485}
486
Ian Rogers848871b2013-08-05 10:56:33 -0700487const std::vector<uint8_t>* CompilerDriver::CreateQuickToInterpreterBridge() const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700488 CREATE_TRAMPOLINE(QUICK, kQuickAbi, pQuickToInterpreterBridge)
Brian Carlstrom7940e442013-07-12 13:46:57 -0700489}
Ian Rogersdd7624d2014-03-14 17:43:00 -0700490#undef CREATE_TRAMPOLINE
Brian Carlstrom7940e442013-07-12 13:46:57 -0700491
492void CompilerDriver::CompileAll(jobject class_loader,
Brian Carlstrom45602482013-07-21 22:07:55 -0700493 const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -0800494 TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700495 DCHECK(!Runtime::Current()->IsStarted());
Ian Rogers700a4022014-05-19 16:49:03 -0700496 std::unique_ptr<ThreadPool> thread_pool(new ThreadPool("Compiler driver thread pool", thread_count_ - 1));
Andreas Gampe8d295f82015-01-20 14:50:21 -0800497 VLOG(compiler) << "Before precompile " << GetMemoryUsageString(false);
Ian Rogers3d504072014-03-01 09:16:49 -0800498 PreCompile(class_loader, dex_files, thread_pool.get(), timings);
499 Compile(class_loader, dex_files, thread_pool.get(), timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700500 if (dump_stats_) {
501 stats_->Dump();
502 }
503}
504
Mathieu Chartiere86deef2015-03-19 13:43:37 -0700505DexToDexCompilationLevel CompilerDriver::GetDexToDexCompilationlevel(
Mathieu Chartier0cd81352014-05-22 16:48:55 -0700506 Thread* self, Handle<mirror::ClassLoader> class_loader, const DexFile& dex_file,
Mathieu Chartiere86deef2015-03-19 13:43:37 -0700507 const DexFile::ClassDef& class_def) {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800508 auto* const runtime = Runtime::Current();
Mathieu Chartiere86deef2015-03-19 13:43:37 -0700509 if (runtime->UseJit() || GetCompilerOptions().VerifyAtRuntime()) {
510 // Verify at runtime shouldn't dex to dex since we didn't resolve of verify.
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800511 return kDontDexToDexCompile;
512 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700513 const char* descriptor = dex_file.GetClassDescriptor(class_def);
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800514 ClassLinker* class_linker = runtime->GetClassLinker();
Ian Rogers98379392014-02-24 16:53:16 -0800515 mirror::Class* klass = class_linker->FindClass(self, descriptor, class_loader);
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700516 if (klass == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700517 CHECK(self->IsExceptionPending());
518 self->ClearException();
Sebastien Hertz75021222013-07-16 18:34:50 +0200519 return kDontDexToDexCompile;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700520 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700521 // DexToDex at the kOptimize level may introduce quickened opcodes, which replace symbolic
522 // references with actual offsets. We cannot re-verify such instructions.
523 //
524 // We store the verification information in the class status in the oat file, which the linker
525 // can validate (checksums) and use to skip load-time verification. It is thus safe to
526 // optimize when a class has been fully verified before.
527 if (klass->IsVerified()) {
Sebastien Hertz75021222013-07-16 18:34:50 +0200528 // Class is verified so we can enable DEX-to-DEX compilation for performance.
529 return kOptimize;
530 } else if (klass->IsCompileTimeVerified()) {
531 // Class verification has soft-failed. Anyway, ensure at least correctness.
532 DCHECK_EQ(klass->GetStatus(), mirror::Class::kStatusRetryVerificationAtRuntime);
533 return kRequired;
534 } else {
535 // Class verification has failed: do not run DEX-to-DEX compilation.
536 return kDontDexToDexCompile;
537 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700538}
539
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800540void CompilerDriver::CompileOne(Thread* self, mirror::ArtMethod* method, TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700541 DCHECK(!Runtime::Current()->IsStarted());
Brian Carlstrom7940e442013-07-12 13:46:57 -0700542 jobject jclass_loader;
543 const DexFile* dex_file;
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700544 uint16_t class_def_idx;
Ian Rogersef7d42f2014-01-06 12:55:46 -0800545 uint32_t method_idx = method->GetDexMethodIndex();
546 uint32_t access_flags = method->GetAccessFlags();
547 InvokeType invoke_type = method->GetInvokeType();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700548 {
549 ScopedObjectAccessUnchecked soa(self);
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800550 ScopedLocalRef<jobject> local_class_loader(
551 soa.Env(), soa.AddLocalReference<jobject>(method->GetDeclaringClass()->GetClassLoader()));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700552 jclass_loader = soa.Env()->NewGlobalRef(local_class_loader.get());
553 // Find the dex_file
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700554 dex_file = method->GetDexFile();
555 class_def_idx = method->GetClassDefIndex();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700556 }
Ian Rogersef7d42f2014-01-06 12:55:46 -0800557 const DexFile::CodeItem* code_item = dex_file->GetCodeItem(method->GetCodeItemOffset());
Brian Carlstrom7940e442013-07-12 13:46:57 -0700558 self->TransitionFromRunnableToSuspended(kNative);
559
560 std::vector<const DexFile*> dex_files;
561 dex_files.push_back(dex_file);
562
Ian Rogers700a4022014-05-19 16:49:03 -0700563 std::unique_ptr<ThreadPool> thread_pool(new ThreadPool("Compiler driver thread pool", 0U));
Ian Rogers3d504072014-03-01 09:16:49 -0800564 PreCompile(jclass_loader, dex_files, thread_pool.get(), timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700565
Brian Carlstrom7940e442013-07-12 13:46:57 -0700566 // Can we run DEX-to-DEX compiler on this class ?
Sebastien Hertz75021222013-07-16 18:34:50 +0200567 DexToDexCompilationLevel dex_to_dex_compilation_level = kDontDexToDexCompile;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700568 {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800569 ScopedObjectAccess soa(self);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700570 const DexFile::ClassDef& class_def = dex_file->GetClassDef(class_def_idx);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700571 StackHandleScope<1> hs(soa.Self());
572 Handle<mirror::ClassLoader> class_loader(
573 hs.NewHandle(soa.Decode<mirror::ClassLoader*>(jclass_loader)));
Ian Rogers98379392014-02-24 16:53:16 -0800574 dex_to_dex_compilation_level = GetDexToDexCompilationlevel(self, class_loader, *dex_file,
575 class_def);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700576 }
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800577 CompileMethod(self, code_item, access_flags, invoke_type, class_def_idx, method_idx,
578 jclass_loader, *dex_file, dex_to_dex_compilation_level, true);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700579
580 self->GetJniEnv()->DeleteGlobalRef(jclass_loader);
Mathieu Chartier2535abe2015-02-17 10:38:49 -0800581 self->TransitionFromSuspendedToRunnable();
Mathieu Chartier2535abe2015-02-17 10:38:49 -0800582}
583
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800584CompiledMethod* CompilerDriver::CompileMethod(Thread* self, mirror::ArtMethod* method) {
585 const uint32_t method_idx = method->GetDexMethodIndex();
586 const uint32_t access_flags = method->GetAccessFlags();
587 const InvokeType invoke_type = method->GetInvokeType();
588 StackHandleScope<1> hs(self);
589 Handle<mirror::ClassLoader> class_loader(hs.NewHandle(
590 method->GetDeclaringClass()->GetClassLoader()));
591 jobject jclass_loader = class_loader.ToJObject();
592 const DexFile* dex_file = method->GetDexFile();
593 const uint16_t class_def_idx = method->GetClassDefIndex();
594 const DexFile::ClassDef& class_def = dex_file->GetClassDef(class_def_idx);
595 DexToDexCompilationLevel dex_to_dex_compilation_level =
596 GetDexToDexCompilationlevel(self, class_loader, *dex_file, class_def);
597 const DexFile::CodeItem* code_item = dex_file->GetCodeItem(method->GetCodeItemOffset());
598 self->TransitionFromRunnableToSuspended(kNative);
599 CompileMethod(self, code_item, access_flags, invoke_type, class_def_idx, method_idx,
600 jclass_loader, *dex_file, dex_to_dex_compilation_level, true);
601 auto* compiled_method = GetCompiledMethod(MethodReference(dex_file, method_idx));
602 self->TransitionFromSuspendedToRunnable();
603 return compiled_method;
604}
605
Brian Carlstrom7940e442013-07-12 13:46:57 -0700606void CompilerDriver::Resolve(jobject class_loader, const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -0800607 ThreadPool* thread_pool, TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700608 for (size_t i = 0; i != dex_files.size(); ++i) {
609 const DexFile* dex_file = dex_files[i];
Kenny Rootd5185342014-05-13 14:47:05 -0700610 CHECK(dex_file != nullptr);
Andreas Gampede7b4362014-07-28 18:38:57 -0700611 ResolveDexFile(class_loader, *dex_file, dex_files, thread_pool, timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700612 }
613}
614
615void CompilerDriver::PreCompile(jobject class_loader, const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -0800616 ThreadPool* thread_pool, TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700617 LoadImageClasses(timings);
Andreas Gampe8d295f82015-01-20 14:50:21 -0800618 VLOG(compiler) << "LoadImageClasses: " << GetMemoryUsageString(false);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700619
Mathieu Chartiere86deef2015-03-19 13:43:37 -0700620 const bool verification_enabled = compiler_options_->IsVerificationEnabled();
621 const bool never_verify = compiler_options_->NeverVerify();
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700622
Mathieu Chartiere86deef2015-03-19 13:43:37 -0700623 // We need to resolve for never_verify since it needs to run dex to dex to add the
624 // RETURN_VOID_NO_BARRIER.
625 if (never_verify || verification_enabled) {
626 Resolve(class_loader, dex_files, thread_pool, timings);
627 VLOG(compiler) << "Resolve: " << GetMemoryUsageString(false);
628 }
629
630 if (never_verify) {
Mathieu Chartierab972ef2014-12-03 17:38:22 -0800631 VLOG(compiler) << "Verify none mode specified, skipping verification.";
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700632 SetVerified(class_loader, dex_files, thread_pool, timings);
Mathieu Chartiere86deef2015-03-19 13:43:37 -0700633 }
634
635 if (!verification_enabled) {
Jeff Hao4a200f52014-04-01 14:58:49 -0700636 return;
637 }
638
Brian Carlstrom7940e442013-07-12 13:46:57 -0700639 Verify(class_loader, dex_files, thread_pool, timings);
Andreas Gampe8d295f82015-01-20 14:50:21 -0800640 VLOG(compiler) << "Verify: " << GetMemoryUsageString(false);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700641
Andreas Gampe6cf49e52015-03-05 13:08:45 -0800642 if (had_hard_verifier_failure_ && GetCompilerOptions().AbortOnHardVerifierFailure()) {
643 LOG(FATAL) << "Had a hard failure verifying all classes, and was asked to abort in such "
644 << "situations. Please check the log.";
645 }
646
Brian Carlstrom7940e442013-07-12 13:46:57 -0700647 InitializeClasses(class_loader, dex_files, thread_pool, timings);
Andreas Gampe8d295f82015-01-20 14:50:21 -0800648 VLOG(compiler) << "InitializeClasses: " << GetMemoryUsageString(false);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700649
650 UpdateImageClasses(timings);
Andreas Gampe8d295f82015-01-20 14:50:21 -0800651 VLOG(compiler) << "UpdateImageClasses: " << GetMemoryUsageString(false);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700652}
653
Ian Rogersdfb325e2013-10-30 01:00:44 -0700654bool CompilerDriver::IsImageClass(const char* descriptor) const {
Ian Rogerse6bb3b22013-08-19 21:51:45 -0700655 if (!IsImage()) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700656 return true;
Ian Rogerse6bb3b22013-08-19 21:51:45 -0700657 } else {
Ian Rogersdfb325e2013-10-30 01:00:44 -0700658 return image_classes_->find(descriptor) != image_classes_->end();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700659 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700660}
661
Andreas Gampe4bf3ae92014-11-11 13:28:29 -0800662bool CompilerDriver::IsClassToCompile(const char* descriptor) const {
Andreas Gampeb1fcead2015-04-20 18:53:51 -0700663 if (kRestrictCompilationFiltersToImage && !IsImage()) {
Andreas Gampe4bf3ae92014-11-11 13:28:29 -0800664 return true;
Andreas Gampe4bf3ae92014-11-11 13:28:29 -0800665 }
Andreas Gampeb1fcead2015-04-20 18:53:51 -0700666
667 if (classes_to_compile_ == nullptr) {
668 return true;
669 }
670 return classes_to_compile_->find(descriptor) != classes_to_compile_->end();
Andreas Gampe4bf3ae92014-11-11 13:28:29 -0800671}
672
Ian Rogerse94652f2014-12-02 11:13:19 -0800673static void ResolveExceptionsForMethod(MutableHandle<mirror::ArtMethod> method_handle,
Ian Rogers700a4022014-05-19 16:49:03 -0700674 std::set<std::pair<uint16_t, const DexFile*>>& exceptions_to_resolve)
Brian Carlstrom7940e442013-07-12 13:46:57 -0700675 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogerse94652f2014-12-02 11:13:19 -0800676 const DexFile::CodeItem* code_item = method_handle->GetCodeItem();
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700677 if (code_item == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700678 return; // native or abstract method
679 }
680 if (code_item->tries_size_ == 0) {
681 return; // nothing to process
682 }
Ian Rogers13735952014-10-08 12:43:28 -0700683 const uint8_t* encoded_catch_handler_list = DexFile::GetCatchHandlerData(*code_item, 0);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700684 size_t num_encoded_catch_handlers = DecodeUnsignedLeb128(&encoded_catch_handler_list);
685 for (size_t i = 0; i < num_encoded_catch_handlers; i++) {
686 int32_t encoded_catch_handler_size = DecodeSignedLeb128(&encoded_catch_handler_list);
687 bool has_catch_all = false;
688 if (encoded_catch_handler_size <= 0) {
689 encoded_catch_handler_size = -encoded_catch_handler_size;
690 has_catch_all = true;
691 }
692 for (int32_t j = 0; j < encoded_catch_handler_size; j++) {
693 uint16_t encoded_catch_handler_handlers_type_idx =
694 DecodeUnsignedLeb128(&encoded_catch_handler_list);
695 // Add to set of types to resolve if not already in the dex cache resolved types
Ian Rogerse94652f2014-12-02 11:13:19 -0800696 if (!method_handle->IsResolvedTypeIdx(encoded_catch_handler_handlers_type_idx)) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700697 exceptions_to_resolve.insert(
698 std::pair<uint16_t, const DexFile*>(encoded_catch_handler_handlers_type_idx,
Ian Rogerse94652f2014-12-02 11:13:19 -0800699 method_handle->GetDexFile()));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700700 }
701 // ignore address associated with catch handler
702 DecodeUnsignedLeb128(&encoded_catch_handler_list);
703 }
704 if (has_catch_all) {
705 // ignore catch all address
706 DecodeUnsignedLeb128(&encoded_catch_handler_list);
707 }
708 }
709}
710
711static bool ResolveCatchBlockExceptionsClassVisitor(mirror::Class* c, void* arg)
712 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers700a4022014-05-19 16:49:03 -0700713 std::set<std::pair<uint16_t, const DexFile*>>* exceptions_to_resolve =
714 reinterpret_cast<std::set<std::pair<uint16_t, const DexFile*>>*>(arg);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700715 StackHandleScope<1> hs(Thread::Current());
Ian Rogerse94652f2014-12-02 11:13:19 -0800716 MutableHandle<mirror::ArtMethod> method_handle(hs.NewHandle<mirror::ArtMethod>(nullptr));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700717 for (size_t i = 0; i < c->NumVirtualMethods(); ++i) {
Ian Rogerse94652f2014-12-02 11:13:19 -0800718 method_handle.Assign(c->GetVirtualMethod(i));
719 ResolveExceptionsForMethod(method_handle, *exceptions_to_resolve);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700720 }
721 for (size_t i = 0; i < c->NumDirectMethods(); ++i) {
Ian Rogerse94652f2014-12-02 11:13:19 -0800722 method_handle.Assign(c->GetDirectMethod(i));
723 ResolveExceptionsForMethod(method_handle, *exceptions_to_resolve);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700724 }
725 return true;
726}
727
728static bool RecordImageClassesVisitor(mirror::Class* klass, void* arg)
729 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Andreas Gampeb1fcead2015-04-20 18:53:51 -0700730 std::unordered_set<std::string>* image_classes =
731 reinterpret_cast<std::unordered_set<std::string>*>(arg);
Ian Rogers1ff3c982014-08-12 02:30:58 -0700732 std::string temp;
733 image_classes->insert(klass->GetDescriptor(&temp));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700734 return true;
735}
736
737// Make a list of descriptors for classes to include in the image
Ian Rogers3d504072014-03-01 09:16:49 -0800738void CompilerDriver::LoadImageClasses(TimingLogger* timings)
Brian Carlstrom7940e442013-07-12 13:46:57 -0700739 LOCKS_EXCLUDED(Locks::mutator_lock_) {
Kenny Rootd5185342014-05-13 14:47:05 -0700740 CHECK(timings != nullptr);
Ian Rogerse6bb3b22013-08-19 21:51:45 -0700741 if (!IsImage()) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700742 return;
743 }
744
Mathieu Chartierf5997b42014-06-20 10:37:54 -0700745 TimingLogger::ScopedTiming t("LoadImageClasses", timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700746 // Make a first class to load all classes explicitly listed in the file
747 Thread* self = Thread::Current();
748 ScopedObjectAccess soa(self);
749 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Kenny Rootd5185342014-05-13 14:47:05 -0700750 CHECK(image_classes_.get() != nullptr);
Mathieu Chartier02e25112013-08-14 16:14:24 -0700751 for (auto it = image_classes_->begin(), end = image_classes_->end(); it != end;) {
Vladimir Markoe9c36b32013-11-21 15:49:16 +0000752 const std::string& descriptor(*it);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700753 StackHandleScope<1> hs(self);
754 Handle<mirror::Class> klass(
755 hs.NewHandle(class_linker->FindSystemClass(self, descriptor.c_str())));
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700756 if (klass.Get() == nullptr) {
Ian Rogerse6bb3b22013-08-19 21:51:45 -0700757 VLOG(compiler) << "Failed to find class " << descriptor;
Vladimir Markoe9c36b32013-11-21 15:49:16 +0000758 image_classes_->erase(it++);
Ian Rogersa436fde2013-08-27 23:34:06 -0700759 self->ClearException();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700760 } else {
761 ++it;
762 }
763 }
764
765 // Resolve exception classes referenced by the loaded classes. The catch logic assumes
766 // exceptions are resolved by the verifier when there is a catch block in an interested method.
767 // Do this here so that exception classes appear to have been specified image classes.
Ian Rogers700a4022014-05-19 16:49:03 -0700768 std::set<std::pair<uint16_t, const DexFile*>> unresolved_exception_types;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700769 StackHandleScope<1> hs(self);
770 Handle<mirror::Class> java_lang_Throwable(
771 hs.NewHandle(class_linker->FindSystemClass(self, "Ljava/lang/Throwable;")));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700772 do {
773 unresolved_exception_types.clear();
774 class_linker->VisitClasses(ResolveCatchBlockExceptionsClassVisitor,
775 &unresolved_exception_types);
Mathieu Chartier02e25112013-08-14 16:14:24 -0700776 for (const std::pair<uint16_t, const DexFile*>& exception_type : unresolved_exception_types) {
777 uint16_t exception_type_idx = exception_type.first;
778 const DexFile* dex_file = exception_type.second;
Andreas Gampe277ccbd2014-11-03 21:36:10 -0800779 StackHandleScope<2> hs2(self);
780 Handle<mirror::DexCache> dex_cache(hs2.NewHandle(class_linker->FindDexCache(*dex_file)));
781 Handle<mirror::Class> klass(hs2.NewHandle(
Mathieu Chartier0cd81352014-05-22 16:48:55 -0700782 class_linker->ResolveType(*dex_file, exception_type_idx, dex_cache,
783 NullHandle<mirror::ClassLoader>())));
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700784 if (klass.Get() == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700785 const DexFile::TypeId& type_id = dex_file->GetTypeId(exception_type_idx);
786 const char* descriptor = dex_file->GetTypeDescriptor(type_id);
787 LOG(FATAL) << "Failed to resolve class " << descriptor;
788 }
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700789 DCHECK(java_lang_Throwable->IsAssignableFrom(klass.Get()));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700790 }
791 // Resolving exceptions may load classes that reference more exceptions, iterate until no
792 // more are found
793 } while (!unresolved_exception_types.empty());
794
795 // We walk the roots looking for classes so that we'll pick up the
796 // above classes plus any classes them depend on such super
797 // classes, interfaces, and the required ClassLinker roots.
798 class_linker->VisitClasses(RecordImageClassesVisitor, image_classes_.get());
799
800 CHECK_NE(image_classes_->size(), 0U);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700801}
802
Andreas Gampeb1fcead2015-04-20 18:53:51 -0700803static void MaybeAddToImageClasses(Handle<mirror::Class> c,
804 std::unordered_set<std::string>* image_classes)
Brian Carlstrom7940e442013-07-12 13:46:57 -0700805 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartierf8322842014-05-16 10:59:25 -0700806 Thread* self = Thread::Current();
807 StackHandleScope<1> hs(self);
808 // Make a copy of the handle so that we don't clobber it doing Assign.
Andreas Gampe5a4b8a22014-09-11 08:30:08 -0700809 MutableHandle<mirror::Class> klass(hs.NewHandle(c.Get()));
Ian Rogers1ff3c982014-08-12 02:30:58 -0700810 std::string temp;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700811 while (!klass->IsObjectClass()) {
Ian Rogers1ff3c982014-08-12 02:30:58 -0700812 const char* descriptor = klass->GetDescriptor(&temp);
Andreas Gampeb1fcead2015-04-20 18:53:51 -0700813 std::pair<std::unordered_set<std::string>::iterator, bool> result =
814 image_classes->insert(descriptor);
Ian Rogers1ff3c982014-08-12 02:30:58 -0700815 if (!result.second) { // Previously inserted.
816 break;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700817 }
Ian Rogers1ff3c982014-08-12 02:30:58 -0700818 VLOG(compiler) << "Adding " << descriptor << " to image classes";
Mathieu Chartierf8322842014-05-16 10:59:25 -0700819 for (size_t i = 0; i < klass->NumDirectInterfaces(); ++i) {
Andreas Gampe277ccbd2014-11-03 21:36:10 -0800820 StackHandleScope<1> hs2(self);
821 MaybeAddToImageClasses(hs2.NewHandle(mirror::Class::GetDirectInterface(self, klass, i)),
Mathieu Chartierf8322842014-05-16 10:59:25 -0700822 image_classes);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700823 }
824 if (klass->IsArrayClass()) {
Andreas Gampe277ccbd2014-11-03 21:36:10 -0800825 StackHandleScope<1> hs2(self);
826 MaybeAddToImageClasses(hs2.NewHandle(klass->GetComponentType()), image_classes);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700827 }
Mathieu Chartierf8322842014-05-16 10:59:25 -0700828 klass.Assign(klass->GetSuperClass());
Brian Carlstrom7940e442013-07-12 13:46:57 -0700829 }
830}
831
Andreas Gampeb0f370e2014-09-25 22:51:40 -0700832// Keeps all the data for the update together. Also doubles as the reference visitor.
833// Note: we can use object pointers because we suspend all threads.
834class ClinitImageUpdate {
835 public:
Andreas Gampeb1fcead2015-04-20 18:53:51 -0700836 static ClinitImageUpdate* Create(std::unordered_set<std::string>* image_class_descriptors,
837 Thread* self, ClassLinker* linker, std::string* error_msg) {
Andreas Gampeb0f370e2014-09-25 22:51:40 -0700838 std::unique_ptr<ClinitImageUpdate> res(new ClinitImageUpdate(image_class_descriptors, self,
839 linker));
840 if (res->art_method_class_ == nullptr) {
841 *error_msg = "Could not find ArtMethod class.";
842 return nullptr;
843 } else if (res->dex_cache_class_ == nullptr) {
844 *error_msg = "Could not find DexCache class.";
845 return nullptr;
846 }
847
848 return res.release();
849 }
850
851 ~ClinitImageUpdate() {
852 // Allow others to suspend again.
853 self_->EndAssertNoThreadSuspension(old_cause_);
854 }
855
856 // Visitor for VisitReferences.
857 void operator()(mirror::Object* object, MemberOffset field_offset, bool /* is_static */) const
858 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
859 mirror::Object* ref = object->GetFieldObject<mirror::Object>(field_offset);
860 if (ref != nullptr) {
861 VisitClinitClassesObject(ref);
862 }
863 }
864
865 // java.lang.Reference visitor for VisitReferences.
Andreas Gampedc8b63c2014-12-02 14:39:52 -0800866 void operator()(mirror::Class* /* klass */, mirror::Reference* /* ref */) const {
Andreas Gampeb0f370e2014-09-25 22:51:40 -0700867 }
868
869 void Walk() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
870 // Use the initial classes as roots for a search.
871 for (mirror::Class* klass_root : image_classes_) {
872 VisitClinitClassesObject(klass_root);
873 }
874 }
875
876 private:
Andreas Gampeb1fcead2015-04-20 18:53:51 -0700877 ClinitImageUpdate(std::unordered_set<std::string>* image_class_descriptors, Thread* self,
Andreas Gampeb0f370e2014-09-25 22:51:40 -0700878 ClassLinker* linker)
879 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) :
880 image_class_descriptors_(image_class_descriptors), self_(self) {
881 CHECK(linker != nullptr);
882 CHECK(image_class_descriptors != nullptr);
883
884 // Make sure nobody interferes with us.
885 old_cause_ = self->StartAssertNoThreadSuspension("Boot image closure");
886
887 // Find the interesting classes.
Andreas Gampedc8b63c2014-12-02 14:39:52 -0800888 art_method_class_ = linker->LookupClass(self, "Ljava/lang/reflect/ArtMethod;",
889 ComputeModifiedUtf8Hash("Ljava/lang/reflect/ArtMethod;"), nullptr);
890 dex_cache_class_ = linker->LookupClass(self, "Ljava/lang/DexCache;",
891 ComputeModifiedUtf8Hash("Ljava/lang/DexCache;"), nullptr);
Andreas Gampeb0f370e2014-09-25 22:51:40 -0700892
893 // Find all the already-marked classes.
894 WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
895 linker->VisitClasses(FindImageClasses, this);
896 }
897
898 static bool FindImageClasses(mirror::Class* klass, void* arg)
899 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
900 ClinitImageUpdate* data = reinterpret_cast<ClinitImageUpdate*>(arg);
901 std::string temp;
902 const char* name = klass->GetDescriptor(&temp);
903 if (data->image_class_descriptors_->find(name) != data->image_class_descriptors_->end()) {
904 data->image_classes_.push_back(klass);
Andreas Gampe4d4eff72015-03-04 22:46:35 -0800905 } else {
906 // Check whether it is initialized and has a clinit. They must be kept, too.
907 if (klass->IsInitialized() && klass->FindClassInitializer() != nullptr) {
908 data->image_classes_.push_back(klass);
909 }
Andreas Gampeb0f370e2014-09-25 22:51:40 -0700910 }
911
912 return true;
913 }
914
915 void VisitClinitClassesObject(mirror::Object* object) const
916 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
917 DCHECK(object != nullptr);
918 if (marked_objects_.find(object) != marked_objects_.end()) {
919 // Already processed.
920 return;
921 }
922
923 // Mark it.
924 marked_objects_.insert(object);
925
926 if (object->IsClass()) {
927 // If it is a class, add it.
928 StackHandleScope<1> hs(self_);
929 MaybeAddToImageClasses(hs.NewHandle(object->AsClass()), image_class_descriptors_);
930 } else {
931 // Else visit the object's class.
932 VisitClinitClassesObject(object->GetClass());
933 }
934
935 // If it is not a dex cache or an ArtMethod, visit all references.
936 mirror::Class* klass = object->GetClass();
937 if (klass != art_method_class_ && klass != dex_cache_class_) {
938 object->VisitReferences<false /* visit class */>(*this, *this);
939 }
940 }
941
942 mutable std::unordered_set<mirror::Object*> marked_objects_;
Andreas Gampeb1fcead2015-04-20 18:53:51 -0700943 std::unordered_set<std::string>* const image_class_descriptors_;
Andreas Gampeb0f370e2014-09-25 22:51:40 -0700944 std::vector<mirror::Class*> image_classes_;
945 const mirror::Class* art_method_class_;
946 const mirror::Class* dex_cache_class_;
947 Thread* const self_;
948 const char* old_cause_;
949
950 DISALLOW_COPY_AND_ASSIGN(ClinitImageUpdate);
951};
Brian Carlstrom7940e442013-07-12 13:46:57 -0700952
Ian Rogers3d504072014-03-01 09:16:49 -0800953void CompilerDriver::UpdateImageClasses(TimingLogger* timings) {
Ian Rogerse6bb3b22013-08-19 21:51:45 -0700954 if (IsImage()) {
Mathieu Chartierf5997b42014-06-20 10:37:54 -0700955 TimingLogger::ScopedTiming t("UpdateImageClasses", timings);
Andreas Gampeb0f370e2014-09-25 22:51:40 -0700956
957 Runtime* current = Runtime::Current();
958
959 // Suspend all threads.
Mathieu Chartierbf9fc582015-03-13 17:21:25 -0700960 current->GetThreadList()->SuspendAll(__FUNCTION__);
Andreas Gampeb0f370e2014-09-25 22:51:40 -0700961
962 std::string error_msg;
963 std::unique_ptr<ClinitImageUpdate> update(ClinitImageUpdate::Create(image_classes_.get(),
964 Thread::Current(),
965 current->GetClassLinker(),
966 &error_msg));
967 CHECK(update.get() != nullptr) << error_msg; // TODO: Soft failure?
968
969 // Do the marking.
970 update->Walk();
971
972 // Resume threads.
973 current->GetThreadList()->ResumeAll();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700974 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700975}
976
Mathieu Chartier590fee92013-09-13 13:46:47 -0700977bool CompilerDriver::CanAssumeTypeIsPresentInDexCache(const DexFile& dex_file, uint32_t type_idx) {
Ian Rogersfc0e94b2013-09-23 23:51:32 -0700978 if (IsImage() &&
Ian Rogersdfb325e2013-10-30 01:00:44 -0700979 IsImageClass(dex_file.StringDataByIdx(dex_file.GetTypeId(type_idx).descriptor_idx_))) {
Andreas Gampe58a5af82014-07-31 16:23:49 -0700980 {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700981 ScopedObjectAccess soa(Thread::Current());
982 mirror::DexCache* dex_cache = Runtime::Current()->GetClassLinker()->FindDexCache(dex_file);
983 mirror::Class* resolved_class = dex_cache->GetResolvedType(type_idx);
Andreas Gampe58a5af82014-07-31 16:23:49 -0700984 if (resolved_class == nullptr) {
985 // Erroneous class.
986 stats_->TypeNotInDexCache();
987 return false;
988 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700989 }
990 stats_->TypeInDexCache();
991 return true;
992 } else {
993 stats_->TypeNotInDexCache();
994 return false;
995 }
996}
997
998bool CompilerDriver::CanAssumeStringIsPresentInDexCache(const DexFile& dex_file,
999 uint32_t string_idx) {
1000 // See also Compiler::ResolveDexFile
1001
1002 bool result = false;
1003 if (IsImage()) {
1004 // We resolve all const-string strings when building for the image.
1005 ScopedObjectAccess soa(Thread::Current());
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001006 StackHandleScope<1> hs(soa.Self());
1007 Handle<mirror::DexCache> dex_cache(
1008 hs.NewHandle(Runtime::Current()->GetClassLinker()->FindDexCache(dex_file)));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001009 Runtime::Current()->GetClassLinker()->ResolveString(dex_file, string_idx, dex_cache);
1010 result = true;
1011 }
1012 if (result) {
1013 stats_->StringInDexCache();
1014 } else {
1015 stats_->StringNotInDexCache();
1016 }
1017 return result;
1018}
1019
1020bool CompilerDriver::CanAccessTypeWithoutChecks(uint32_t referrer_idx, const DexFile& dex_file,
1021 uint32_t type_idx,
1022 bool* type_known_final, bool* type_known_abstract,
1023 bool* equals_referrers_class) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001024 if (type_known_final != nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001025 *type_known_final = false;
1026 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001027 if (type_known_abstract != nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001028 *type_known_abstract = false;
1029 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001030 if (equals_referrers_class != nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001031 *equals_referrers_class = false;
1032 }
1033 ScopedObjectAccess soa(Thread::Current());
1034 mirror::DexCache* dex_cache = Runtime::Current()->GetClassLinker()->FindDexCache(dex_file);
1035 // Get type from dex cache assuming it was populated by the verifier
1036 mirror::Class* resolved_class = dex_cache->GetResolvedType(type_idx);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001037 if (resolved_class == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001038 stats_->TypeNeedsAccessCheck();
1039 return false; // Unknown class needs access checks.
1040 }
1041 const DexFile::MethodId& method_id = dex_file.GetMethodId(referrer_idx);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001042 if (equals_referrers_class != nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001043 *equals_referrers_class = (method_id.class_idx_ == type_idx);
1044 }
1045 mirror::Class* referrer_class = dex_cache->GetResolvedType(method_id.class_idx_);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001046 if (referrer_class == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001047 stats_->TypeNeedsAccessCheck();
1048 return false; // Incomplete referrer knowledge needs access check.
1049 }
1050 // Perform access check, will return true if access is ok or false if we're going to have to
1051 // check this at runtime (for example for class loaders).
1052 bool result = referrer_class->CanAccess(resolved_class);
1053 if (result) {
1054 stats_->TypeDoesntNeedAccessCheck();
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001055 if (type_known_final != nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001056 *type_known_final = resolved_class->IsFinal() && !resolved_class->IsArrayClass();
1057 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001058 if (type_known_abstract != nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001059 *type_known_abstract = resolved_class->IsAbstract() && !resolved_class->IsArrayClass();
1060 }
1061 } else {
1062 stats_->TypeNeedsAccessCheck();
1063 }
1064 return result;
1065}
1066
1067bool CompilerDriver::CanAccessInstantiableTypeWithoutChecks(uint32_t referrer_idx,
1068 const DexFile& dex_file,
1069 uint32_t type_idx) {
1070 ScopedObjectAccess soa(Thread::Current());
1071 mirror::DexCache* dex_cache = Runtime::Current()->GetClassLinker()->FindDexCache(dex_file);
1072 // Get type from dex cache assuming it was populated by the verifier.
1073 mirror::Class* resolved_class = dex_cache->GetResolvedType(type_idx);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001074 if (resolved_class == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001075 stats_->TypeNeedsAccessCheck();
1076 return false; // Unknown class needs access checks.
1077 }
1078 const DexFile::MethodId& method_id = dex_file.GetMethodId(referrer_idx);
1079 mirror::Class* referrer_class = dex_cache->GetResolvedType(method_id.class_idx_);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001080 if (referrer_class == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001081 stats_->TypeNeedsAccessCheck();
1082 return false; // Incomplete referrer knowledge needs access check.
1083 }
1084 // Perform access and instantiable checks, will return true if access is ok or false if we're
1085 // going to have to check this at runtime (for example for class loaders).
1086 bool result = referrer_class->CanAccess(resolved_class) && resolved_class->IsInstantiable();
1087 if (result) {
1088 stats_->TypeDoesntNeedAccessCheck();
1089 } else {
1090 stats_->TypeNeedsAccessCheck();
1091 }
1092 return result;
1093}
1094
Hiroshi Yamauchibe1ca552014-01-15 11:46:48 -08001095bool CompilerDriver::CanEmbedTypeInCode(const DexFile& dex_file, uint32_t type_idx,
1096 bool* is_type_initialized, bool* use_direct_type_ptr,
Mathieu Chartier8668c3c2014-04-24 16:48:11 -07001097 uintptr_t* direct_type_ptr, bool* out_is_finalizable) {
Hiroshi Yamauchibe1ca552014-01-15 11:46:48 -08001098 ScopedObjectAccess soa(Thread::Current());
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08001099 Runtime* runtime = Runtime::Current();
1100 mirror::DexCache* dex_cache = runtime->GetClassLinker()->FindDexCache(dex_file);
Hiroshi Yamauchibe1ca552014-01-15 11:46:48 -08001101 mirror::Class* resolved_class = dex_cache->GetResolvedType(type_idx);
1102 if (resolved_class == nullptr) {
1103 return false;
1104 }
Igor Murashkind6dee672014-10-16 18:36:16 -07001105 if (GetCompilerOptions().GetCompilePic()) {
1106 // Do not allow a direct class pointer to be used when compiling for position-independent
1107 return false;
1108 }
Mathieu Chartier8668c3c2014-04-24 16:48:11 -07001109 *out_is_finalizable = resolved_class->IsFinalizable();
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08001110 gc::Heap* heap = runtime->GetHeap();
1111 const bool compiling_boot = heap->IsCompilingBoot();
Alex Light6e183f22014-07-18 14:57:04 -07001112 const bool support_boot_image_fixup = GetSupportBootImageFixup();
Hiroshi Yamauchibe1ca552014-01-15 11:46:48 -08001113 if (compiling_boot) {
1114 // boot -> boot class pointers.
1115 // True if the class is in the image at boot compiling time.
1116 const bool is_image_class = IsImage() && IsImageClass(
1117 dex_file.StringDataByIdx(dex_file.GetTypeId(type_idx).descriptor_idx_));
1118 // True if pc relative load works.
Hiroshi Yamauchibe1ca552014-01-15 11:46:48 -08001119 if (is_image_class && support_boot_image_fixup) {
1120 *is_type_initialized = resolved_class->IsInitialized();
1121 *use_direct_type_ptr = false;
1122 *direct_type_ptr = 0;
1123 return true;
1124 } else {
1125 return false;
1126 }
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08001127 } else if (runtime->UseJit() && !heap->IsMovableObject(resolved_class)) {
1128 *is_type_initialized = resolved_class->IsInitialized();
1129 // If the class may move around, then don't embed it as a direct pointer.
1130 *use_direct_type_ptr = true;
1131 *direct_type_ptr = reinterpret_cast<uintptr_t>(resolved_class);
1132 return true;
Hiroshi Yamauchibe1ca552014-01-15 11:46:48 -08001133 } else {
1134 // True if the class is in the image at app compiling time.
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08001135 const bool class_in_image = heap->FindSpaceFromObject(resolved_class, false)->IsImageSpace();
Alex Light6e183f22014-07-18 14:57:04 -07001136 if (class_in_image && support_boot_image_fixup) {
Hiroshi Yamauchibe1ca552014-01-15 11:46:48 -08001137 // boot -> app class pointers.
1138 *is_type_initialized = resolved_class->IsInitialized();
Alex Lighta59dd802014-07-02 16:28:08 -07001139 // TODO This is somewhat hacky. We should refactor all of this invoke codepath.
1140 *use_direct_type_ptr = !GetCompilerOptions().GetIncludePatchInformation();
Hiroshi Yamauchibe1ca552014-01-15 11:46:48 -08001141 *direct_type_ptr = reinterpret_cast<uintptr_t>(resolved_class);
1142 return true;
1143 } else {
1144 // app -> app class pointers.
1145 // Give up because app does not have an image and class
1146 // isn't created at compile time. TODO: implement this
1147 // if/when each app gets an image.
1148 return false;
1149 }
1150 }
1151}
1152
Fred Shihe7f82e22014-08-06 10:46:37 -07001153bool CompilerDriver::CanEmbedReferenceTypeInCode(ClassReference* ref,
1154 bool* use_direct_ptr,
1155 uintptr_t* direct_type_ptr) {
1156 CHECK(ref != nullptr);
1157 CHECK(use_direct_ptr != nullptr);
1158 CHECK(direct_type_ptr != nullptr);
1159
1160 ScopedObjectAccess soa(Thread::Current());
1161 mirror::Class* reference_class = mirror::Reference::GetJavaLangRefReference();
Andreas Gampe928f72b2014-09-09 19:53:48 -07001162 bool is_initialized = false;
Fred Shihe7f82e22014-08-06 10:46:37 -07001163 bool unused_finalizable;
1164 // Make sure we have a finished Reference class object before attempting to use it.
1165 if (!CanEmbedTypeInCode(*reference_class->GetDexCache()->GetDexFile(),
1166 reference_class->GetDexTypeIndex(), &is_initialized,
1167 use_direct_ptr, direct_type_ptr, &unused_finalizable) ||
1168 !is_initialized) {
1169 return false;
1170 }
1171 ref->first = &reference_class->GetDexFile();
1172 ref->second = reference_class->GetDexClassDefIndex();
1173 return true;
1174}
1175
1176uint32_t CompilerDriver::GetReferenceSlowFlagOffset() const {
1177 ScopedObjectAccess soa(Thread::Current());
1178 mirror::Class* klass = mirror::Reference::GetJavaLangRefReference();
1179 DCHECK(klass->IsInitialized());
1180 return klass->GetSlowPathFlagOffset().Uint32Value();
1181}
1182
1183uint32_t CompilerDriver::GetReferenceDisableFlagOffset() const {
1184 ScopedObjectAccess soa(Thread::Current());
1185 mirror::Class* klass = mirror::Reference::GetJavaLangRefReference();
1186 DCHECK(klass->IsInitialized());
1187 return klass->GetDisableIntrinsicFlagOffset().Uint32Value();
1188}
1189
Vladimir Marko20f85592015-03-19 10:07:02 +00001190DexCacheArraysLayout CompilerDriver::GetDexCacheArraysLayout(const DexFile* dex_file) {
1191 // Currently only image dex caches have fixed array layout.
1192 return IsImage() && GetSupportBootImageFixup()
Mathieu Chartierc7853442015-03-27 14:35:38 -07001193 ? DexCacheArraysLayout(GetInstructionSetPointerSize(instruction_set_), dex_file)
Vladimir Marko20f85592015-03-19 10:07:02 +00001194 : DexCacheArraysLayout();
1195}
1196
Vladimir Markobe0e5462014-02-26 11:24:15 +00001197void CompilerDriver::ProcessedInstanceField(bool resolved) {
1198 if (!resolved) {
1199 stats_->UnresolvedInstanceField();
1200 } else {
1201 stats_->ResolvedInstanceField();
1202 }
1203}
1204
1205void CompilerDriver::ProcessedStaticField(bool resolved, bool local) {
1206 if (!resolved) {
1207 stats_->UnresolvedStaticField();
1208 } else if (local) {
1209 stats_->ResolvedLocalStaticField();
1210 } else {
1211 stats_->ResolvedStaticField();
1212 }
1213}
1214
Vladimir Markof096aad2014-01-23 15:51:58 +00001215void CompilerDriver::ProcessedInvoke(InvokeType invoke_type, int flags) {
1216 stats_->ProcessedInvoke(invoke_type, flags);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001217}
1218
Mathieu Chartierc7853442015-03-27 14:35:38 -07001219ArtField* CompilerDriver::ComputeInstanceFieldInfo(uint32_t field_idx,
1220 const DexCompilationUnit* mUnit, bool is_put,
1221 const ScopedObjectAccess& soa) {
Vladimir Markobe0e5462014-02-26 11:24:15 +00001222 // Try to resolve the field and compiling method's class.
Mathieu Chartierc7853442015-03-27 14:35:38 -07001223 ArtField* resolved_field;
Vladimir Markobe0e5462014-02-26 11:24:15 +00001224 mirror::Class* referrer_class;
1225 mirror::DexCache* dex_cache;
1226 {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001227 StackHandleScope<3> hs(soa.Self());
1228 Handle<mirror::DexCache> dex_cache_handle(
1229 hs.NewHandle(mUnit->GetClassLinker()->FindDexCache(*mUnit->GetDexFile())));
1230 Handle<mirror::ClassLoader> class_loader_handle(
1231 hs.NewHandle(soa.Decode<mirror::ClassLoader*>(mUnit->GetClassLoader())));
Mathieu Chartierc7853442015-03-27 14:35:38 -07001232 resolved_field =
1233 ResolveField(soa, dex_cache_handle, class_loader_handle, mUnit, field_idx, false);
1234 referrer_class = resolved_field != nullptr
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001235 ? ResolveCompilingMethodsClass(soa, dex_cache_handle, class_loader_handle, mUnit) : nullptr;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001236 dex_cache = dex_cache_handle.Get();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001237 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001238 bool can_link = false;
Vladimir Markobe0e5462014-02-26 11:24:15 +00001239 if (resolved_field != nullptr && referrer_class != nullptr) {
Vladimir Markobe0e5462014-02-26 11:24:15 +00001240 std::pair<bool, bool> fast_path = IsFastInstanceField(
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001241 dex_cache, referrer_class, resolved_field, field_idx);
1242 can_link = is_put ? fast_path.second : fast_path.first;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001243 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001244 ProcessedInstanceField(can_link);
1245 return can_link ? resolved_field : nullptr;
1246}
1247
1248bool CompilerDriver::ComputeInstanceFieldInfo(uint32_t field_idx, const DexCompilationUnit* mUnit,
1249 bool is_put, MemberOffset* field_offset,
1250 bool* is_volatile) {
1251 ScopedObjectAccess soa(Thread::Current());
Mathieu Chartierc7853442015-03-27 14:35:38 -07001252 ArtField* resolved_field = ComputeInstanceFieldInfo(field_idx, mUnit, is_put, soa);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001253
Mathieu Chartierc7853442015-03-27 14:35:38 -07001254 if (resolved_field == nullptr) {
Vladimir Markobe0e5462014-02-26 11:24:15 +00001255 // Conservative defaults.
1256 *is_volatile = true;
1257 *field_offset = MemberOffset(static_cast<size_t>(-1));
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001258 return false;
1259 } else {
1260 *is_volatile = resolved_field->IsVolatile();
1261 *field_offset = resolved_field->GetOffset();
1262 return true;
Vladimir Markobe0e5462014-02-26 11:24:15 +00001263 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001264}
1265
1266bool CompilerDriver::ComputeStaticFieldInfo(uint32_t field_idx, const DexCompilationUnit* mUnit,
Vladimir Markobe0e5462014-02-26 11:24:15 +00001267 bool is_put, MemberOffset* field_offset,
1268 uint32_t* storage_index, bool* is_referrers_class,
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01001269 bool* is_volatile, bool* is_initialized,
1270 Primitive::Type* type) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001271 ScopedObjectAccess soa(Thread::Current());
Vladimir Markobe0e5462014-02-26 11:24:15 +00001272 // Try to resolve the field and compiling method's class.
Mathieu Chartierc7853442015-03-27 14:35:38 -07001273 ArtField* resolved_field;
Vladimir Markobe0e5462014-02-26 11:24:15 +00001274 mirror::Class* referrer_class;
1275 mirror::DexCache* dex_cache;
1276 {
Mathieu Chartierc7853442015-03-27 14:35:38 -07001277 StackHandleScope<2> hs(soa.Self());
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001278 Handle<mirror::DexCache> dex_cache_handle(
1279 hs.NewHandle(mUnit->GetClassLinker()->FindDexCache(*mUnit->GetDexFile())));
1280 Handle<mirror::ClassLoader> class_loader_handle(
1281 hs.NewHandle(soa.Decode<mirror::ClassLoader*>(mUnit->GetClassLoader())));
Mathieu Chartierc7853442015-03-27 14:35:38 -07001282 resolved_field =
1283 ResolveField(soa, dex_cache_handle, class_loader_handle, mUnit, field_idx, true);
1284 referrer_class = resolved_field != nullptr
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001285 ? ResolveCompilingMethodsClass(soa, dex_cache_handle, class_loader_handle, mUnit) : nullptr;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001286 dex_cache = dex_cache_handle.Get();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001287 }
Vladimir Markobe0e5462014-02-26 11:24:15 +00001288 bool result = false;
1289 if (resolved_field != nullptr && referrer_class != nullptr) {
1290 *is_volatile = IsFieldVolatile(resolved_field);
1291 std::pair<bool, bool> fast_path = IsFastStaticField(
Vladimir Marko66c6d7b2014-10-16 15:41:48 +01001292 dex_cache, referrer_class, resolved_field, field_idx, storage_index);
Vladimir Markobe0e5462014-02-26 11:24:15 +00001293 result = is_put ? fast_path.second : fast_path.first;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001294 }
Vladimir Marko66c6d7b2014-10-16 15:41:48 +01001295 if (result) {
1296 *field_offset = GetFieldOffset(resolved_field);
1297 *is_referrers_class = IsStaticFieldInReferrerClass(referrer_class, resolved_field);
1298 // *is_referrers_class == true implies no worrying about class initialization.
1299 *is_initialized = (*is_referrers_class) ||
1300 (IsStaticFieldsClassInitialized(referrer_class, resolved_field) &&
1301 CanAssumeTypeIsPresentInDexCache(*mUnit->GetDexFile(), *storage_index));
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01001302 *type = resolved_field->GetTypeAsPrimitiveType();
Vladimir Marko66c6d7b2014-10-16 15:41:48 +01001303 } else {
Vladimir Markobe0e5462014-02-26 11:24:15 +00001304 // Conservative defaults.
1305 *is_volatile = true;
1306 *field_offset = MemberOffset(static_cast<size_t>(-1));
1307 *storage_index = -1;
1308 *is_referrers_class = false;
1309 *is_initialized = false;
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01001310 *type = Primitive::kPrimVoid;
Vladimir Markobe0e5462014-02-26 11:24:15 +00001311 }
1312 ProcessedStaticField(result, *is_referrers_class);
1313 return result;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001314}
1315
Ian Rogers83883d72013-10-21 21:07:24 -07001316void CompilerDriver::GetCodeAndMethodForDirectCall(InvokeType* type, InvokeType sharp_type,
1317 bool no_guarantee_of_dex_cache_entry,
Igor Murashkind6dee672014-10-16 18:36:16 -07001318 const mirror::Class* referrer_class,
Brian Carlstromea46f952013-07-30 01:26:50 -07001319 mirror::ArtMethod* method,
Vladimir Markof096aad2014-01-23 15:51:58 +00001320 int* stats_flags,
Ian Rogers83883d72013-10-21 21:07:24 -07001321 MethodReference* target_method,
Ian Rogers65ec92c2013-09-06 10:49:58 -07001322 uintptr_t* direct_code,
1323 uintptr_t* direct_method) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001324 // For direct and static methods compute possible direct_code and direct_method values, ie
1325 // an address for the Method* being invoked and an address of the code for that Method*.
1326 // For interface calls compute a value for direct_method that is the interface method being
1327 // invoked, so this can be passed to the out-of-line runtime support code.
Ian Rogers65ec92c2013-09-06 10:49:58 -07001328 *direct_code = 0;
1329 *direct_method = 0;
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08001330 Runtime* const runtime = Runtime::Current();
1331 gc::Heap* const heap = runtime->GetHeap();
Igor Murashkind6dee672014-10-16 18:36:16 -07001332 bool use_dex_cache = GetCompilerOptions().GetCompilePic(); // Off by default
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08001333 const bool compiling_boot = heap->IsCompilingBoot();
Alex Lighta59dd802014-07-02 16:28:08 -07001334 // TODO This is somewhat hacky. We should refactor all of this invoke codepath.
1335 const bool force_relocations = (compiling_boot ||
1336 GetCompilerOptions().GetIncludePatchInformation());
Elliott Hughes956af0f2014-12-11 14:34:28 -08001337 if (sharp_type != kStatic && sharp_type != kDirect) {
1338 return;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001339 }
Elliott Hughes956af0f2014-12-11 14:34:28 -08001340 // TODO: support patching on all architectures.
1341 use_dex_cache = use_dex_cache || (force_relocations && !support_boot_image_fixup_);
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08001342 mirror::Class* declaring_class = method->GetDeclaringClass();
1343 bool method_code_in_boot = declaring_class->GetClassLoader() == nullptr;
Ian Rogers83883d72013-10-21 21:07:24 -07001344 if (!use_dex_cache) {
1345 if (!method_code_in_boot) {
1346 use_dex_cache = true;
1347 } else {
Brian Carlstrom14247b62015-01-31 21:35:32 -08001348 bool has_clinit_trampoline =
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08001349 method->IsStatic() && !declaring_class->IsInitialized();
1350 if (has_clinit_trampoline && declaring_class != referrer_class) {
Ian Rogers83883d72013-10-21 21:07:24 -07001351 // Ensure we run the clinit trampoline unless we are invoking a static method in the same
1352 // class.
1353 use_dex_cache = true;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001354 }
1355 }
Ian Rogers83883d72013-10-21 21:07:24 -07001356 }
Mathieu Chartier28a35882015-02-26 18:28:07 -08001357 if (runtime->UseJit()) {
1358 // If we are the JIT, then don't allow a direct call to the interpreter bridge since this will
1359 // never be updated even after we compile the method.
1360 if (runtime->GetClassLinker()->IsQuickToInterpreterBridge(
1361 reinterpret_cast<const void*>(compiler_->GetEntryPointOf(method)))) {
1362 use_dex_cache = true;
1363 }
1364 }
Vladimir Markof096aad2014-01-23 15:51:58 +00001365 if (method_code_in_boot) {
1366 *stats_flags |= kFlagDirectCallToBoot | kFlagDirectMethodToBoot;
Ian Rogers83883d72013-10-21 21:07:24 -07001367 }
Alex Lighta59dd802014-07-02 16:28:08 -07001368 if (!use_dex_cache && force_relocations) {
Jeff Haoa0acc2d2015-01-27 11:22:04 -08001369 bool is_in_image;
1370 if (IsImage()) {
1371 is_in_image = IsImageClass(method->GetDeclaringClassDescriptor());
1372 } else {
1373 is_in_image = instruction_set_ != kX86 && instruction_set_ != kX86_64 &&
1374 Runtime::Current()->GetHeap()->FindSpaceFromObject(method->GetDeclaringClass(),
1375 false)->IsImageSpace();
1376 }
1377 if (!is_in_image) {
Ian Rogers83883d72013-10-21 21:07:24 -07001378 // We can only branch directly to Methods that are resolved in the DexCache.
1379 // Otherwise we won't invoke the resolution trampoline.
1380 use_dex_cache = true;
1381 }
1382 }
1383 // The method is defined not within this dex file. We need a dex cache slot within the current
1384 // dex file or direct pointers.
1385 bool must_use_direct_pointers = false;
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08001386 mirror::DexCache* dex_cache = declaring_class->GetDexCache();
1387 if (target_method->dex_file == dex_cache->GetDexFile() &&
1388 !(runtime->UseJit() && dex_cache->GetResolvedMethod(method->GetDexMethodIndex()) == nullptr)) {
Ian Rogers83883d72013-10-21 21:07:24 -07001389 target_method->dex_method_index = method->GetDexMethodIndex();
1390 } else {
Ian Rogers83883d72013-10-21 21:07:24 -07001391 if (no_guarantee_of_dex_cache_entry) {
1392 // See if the method is also declared in this dex cache.
Ian Rogerse0a02da2014-12-02 14:10:53 -08001393 uint32_t dex_method_idx =
1394 method->FindDexMethodIndexInOtherDexFile(*target_method->dex_file,
1395 target_method->dex_method_index);
Ian Rogers83883d72013-10-21 21:07:24 -07001396 if (dex_method_idx != DexFile::kDexNoIndex) {
1397 target_method->dex_method_index = dex_method_idx;
1398 } else {
Alex Lighta59dd802014-07-02 16:28:08 -07001399 if (force_relocations && !use_dex_cache) {
Jeff Hao49161ce2014-03-12 11:05:25 -07001400 target_method->dex_method_index = method->GetDexMethodIndex();
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08001401 target_method->dex_file = dex_cache->GetDexFile();
Jeff Hao49161ce2014-03-12 11:05:25 -07001402 }
Ian Rogers83883d72013-10-21 21:07:24 -07001403 must_use_direct_pointers = true;
1404 }
1405 }
1406 }
1407 if (use_dex_cache) {
1408 if (must_use_direct_pointers) {
1409 // Fail. Test above showed the only safe dispatch was via the dex cache, however, the direct
1410 // pointers are required as the dex cache lacks an appropriate entry.
1411 VLOG(compiler) << "Dex cache devirtualization failed for: " << PrettyMethod(method);
1412 } else {
1413 *type = sharp_type;
1414 }
1415 } else {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08001416 bool method_in_image = heap->FindSpaceFromObject(method, false)->IsImageSpace();
Mathieu Chartier6ced4092015-02-27 16:10:48 -08001417 if (method_in_image || compiling_boot || runtime->UseJit()) {
Alex Lighta59dd802014-07-02 16:28:08 -07001418 // 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 -08001419 // In the case where we are the JIT, we can always use direct pointers since we know where
1420 // the method and its code are / will be. We don't sharpen to interpreter bridge since we
1421 // check IsQuickToInterpreterBridge above.
Vladimir Markoa51a0b02014-05-21 12:08:39 +01001422 CHECK(!method->IsAbstract());
Ian Rogers83883d72013-10-21 21:07:24 -07001423 *type = sharp_type;
Alex Lighta59dd802014-07-02 16:28:08 -07001424 *direct_method = force_relocations ? -1 : reinterpret_cast<uintptr_t>(method);
1425 *direct_code = force_relocations ? -1 : compiler_->GetEntryPointOf(method);
Brian Carlstrom14247b62015-01-31 21:35:32 -08001426 target_method->dex_file = method->GetDeclaringClass()->GetDexCache()->GetDexFile();
Vladimir Markoa51a0b02014-05-21 12:08:39 +01001427 target_method->dex_method_index = method->GetDexMethodIndex();
1428 } else if (!must_use_direct_pointers) {
1429 // Set the code and rely on the dex cache for the method.
1430 *type = sharp_type;
Alex Lighta59dd802014-07-02 16:28:08 -07001431 if (force_relocations) {
1432 *direct_code = -1;
Brian Carlstrom14247b62015-01-31 21:35:32 -08001433 target_method->dex_file = method->GetDeclaringClass()->GetDexCache()->GetDexFile();
Alex Lighta59dd802014-07-02 16:28:08 -07001434 target_method->dex_method_index = method->GetDexMethodIndex();
1435 } else {
1436 *direct_code = compiler_->GetEntryPointOf(method);
1437 }
Ian Rogers83883d72013-10-21 21:07:24 -07001438 } else {
Vladimir Markoa51a0b02014-05-21 12:08:39 +01001439 // Direct pointers were required but none were available.
1440 VLOG(compiler) << "Dex cache devirtualization failed for: " << PrettyMethod(method);
Ian Rogers83883d72013-10-21 21:07:24 -07001441 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001442 }
1443}
1444
1445bool CompilerDriver::ComputeInvokeInfo(const DexCompilationUnit* mUnit, const uint32_t dex_pc,
Ian Rogers65ec92c2013-09-06 10:49:58 -07001446 bool update_stats, bool enable_devirtualization,
1447 InvokeType* invoke_type, MethodReference* target_method,
1448 int* vtable_idx, uintptr_t* direct_code,
1449 uintptr_t* direct_method) {
Vladimir Markof096aad2014-01-23 15:51:58 +00001450 InvokeType orig_invoke_type = *invoke_type;
1451 int stats_flags = 0;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001452 ScopedObjectAccess soa(Thread::Current());
Vladimir Markof096aad2014-01-23 15:51:58 +00001453 // Try to resolve the method and compiling method's class.
1454 mirror::ArtMethod* resolved_method;
1455 mirror::Class* referrer_class;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001456 StackHandleScope<3> hs(soa.Self());
1457 Handle<mirror::DexCache> dex_cache(
1458 hs.NewHandle(mUnit->GetClassLinker()->FindDexCache(*mUnit->GetDexFile())));
1459 Handle<mirror::ClassLoader> class_loader(hs.NewHandle(
1460 soa.Decode<mirror::ClassLoader*>(mUnit->GetClassLoader())));
Vladimir Markof096aad2014-01-23 15:51:58 +00001461 {
1462 uint32_t method_idx = target_method->dex_method_index;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001463 Handle<mirror::ArtMethod> resolved_method_handle(hs.NewHandle(
1464 ResolveMethod(soa, dex_cache, class_loader, mUnit, method_idx, orig_invoke_type)));
1465 referrer_class = (resolved_method_handle.Get() != nullptr)
Vladimir Markof096aad2014-01-23 15:51:58 +00001466 ? ResolveCompilingMethodsClass(soa, dex_cache, class_loader, mUnit) : nullptr;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001467 resolved_method = resolved_method_handle.Get();
Vladimir Markof096aad2014-01-23 15:51:58 +00001468 }
1469 bool result = false;
1470 if (resolved_method != nullptr) {
1471 *vtable_idx = GetResolvedMethodVTableIndex(resolved_method, orig_invoke_type);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001472
Nicolas Geoffraye53798a2014-12-01 10:31:54 +00001473 if (enable_devirtualization && mUnit->GetVerifiedMethod() != nullptr) {
Vladimir Markof096aad2014-01-23 15:51:58 +00001474 const MethodReference* devirt_target = mUnit->GetVerifiedMethod()->GetDevirtTarget(dex_pc);
1475
1476 stats_flags = IsFastInvoke(
1477 soa, dex_cache, class_loader, mUnit, referrer_class, resolved_method,
1478 invoke_type, target_method, devirt_target, direct_code, direct_method);
1479 result = stats_flags != 0;
1480 } else {
1481 // Devirtualization not enabled. Inline IsFastInvoke(), dropping the devirtualization parts.
1482 if (UNLIKELY(referrer_class == nullptr) ||
1483 UNLIKELY(!referrer_class->CanAccessResolvedMethod(resolved_method->GetDeclaringClass(),
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001484 resolved_method, dex_cache.Get(),
Vladimir Markof096aad2014-01-23 15:51:58 +00001485 target_method->dex_method_index)) ||
1486 *invoke_type == kSuper) {
1487 // Slow path. (Without devirtualization, all super calls go slow path as well.)
1488 } else {
1489 // Sharpening failed so generate a regular resolved method dispatch.
1490 stats_flags = kFlagMethodResolved;
1491 GetCodeAndMethodForDirectCall(invoke_type, *invoke_type, false, referrer_class, resolved_method,
1492 &stats_flags, target_method, direct_code, direct_method);
1493 result = true;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001494 }
1495 }
1496 }
Vladimir Markof096aad2014-01-23 15:51:58 +00001497 if (!result) {
1498 // Conservative defaults.
1499 *vtable_idx = -1;
1500 *direct_code = 0u;
1501 *direct_method = 0u;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001502 }
1503 if (update_stats) {
Vladimir Markof096aad2014-01-23 15:51:58 +00001504 ProcessedInvoke(orig_invoke_type, stats_flags);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001505 }
Vladimir Markof096aad2014-01-23 15:51:58 +00001506 return result;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001507}
1508
Vladimir Marko2730db02014-01-27 11:15:17 +00001509const VerifiedMethod* CompilerDriver::GetVerifiedMethod(const DexFile* dex_file,
1510 uint32_t method_idx) const {
1511 MethodReference ref(dex_file, method_idx);
1512 return verification_results_->GetVerifiedMethod(ref);
1513}
1514
1515bool CompilerDriver::IsSafeCast(const DexCompilationUnit* mUnit, uint32_t dex_pc) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001516 if (!compiler_options_->IsVerificationEnabled()) {
1517 // If we didn't verify, every cast has to be treated as non-safe.
1518 return false;
1519 }
Vladimir Marko2730db02014-01-27 11:15:17 +00001520 DCHECK(mUnit->GetVerifiedMethod() != nullptr);
1521 bool result = mUnit->GetVerifiedMethod()->IsSafeCast(dex_pc);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001522 if (result) {
1523 stats_->SafeCast();
1524 } else {
1525 stats_->NotASafeCast();
1526 }
1527 return result;
1528}
1529
Brian Carlstrom7940e442013-07-12 13:46:57 -07001530class ParallelCompilationManager {
1531 public:
1532 typedef void Callback(const ParallelCompilationManager* manager, size_t index);
1533
1534 ParallelCompilationManager(ClassLinker* class_linker,
1535 jobject class_loader,
1536 CompilerDriver* compiler,
1537 const DexFile* dex_file,
Andreas Gampede7b4362014-07-28 18:38:57 -07001538 const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -08001539 ThreadPool* thread_pool)
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001540 : index_(0),
1541 class_linker_(class_linker),
Brian Carlstrom7940e442013-07-12 13:46:57 -07001542 class_loader_(class_loader),
1543 compiler_(compiler),
1544 dex_file_(dex_file),
Andreas Gampede7b4362014-07-28 18:38:57 -07001545 dex_files_(dex_files),
Ian Rogers3d504072014-03-01 09:16:49 -08001546 thread_pool_(thread_pool) {}
Brian Carlstrom7940e442013-07-12 13:46:57 -07001547
1548 ClassLinker* GetClassLinker() const {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001549 CHECK(class_linker_ != nullptr);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001550 return class_linker_;
1551 }
1552
1553 jobject GetClassLoader() const {
1554 return class_loader_;
1555 }
1556
1557 CompilerDriver* GetCompiler() const {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001558 CHECK(compiler_ != nullptr);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001559 return compiler_;
1560 }
1561
1562 const DexFile* GetDexFile() const {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001563 CHECK(dex_file_ != nullptr);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001564 return dex_file_;
1565 }
1566
Andreas Gampede7b4362014-07-28 18:38:57 -07001567 const std::vector<const DexFile*>& GetDexFiles() const {
1568 return dex_files_;
1569 }
1570
Brian Carlstrom7940e442013-07-12 13:46:57 -07001571 void ForAll(size_t begin, size_t end, Callback callback, size_t work_units) {
1572 Thread* self = Thread::Current();
1573 self->AssertNoPendingException();
1574 CHECK_GT(work_units, 0U);
1575
Ian Rogers3e5cf302014-05-20 16:40:37 -07001576 index_.StoreRelaxed(begin);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001577 for (size_t i = 0; i < work_units; ++i) {
Sebastien Hertz501baec2013-12-13 12:02:36 +01001578 thread_pool_->AddTask(self, new ForAllClosure(this, end, callback));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001579 }
1580 thread_pool_->StartWorkers(self);
1581
1582 // Ensure we're suspended while we're blocked waiting for the other threads to finish (worker
1583 // thread destructor's called below perform join).
1584 CHECK_NE(self->GetState(), kRunnable);
1585
1586 // Wait for all the worker threads to finish.
1587 thread_pool_->Wait(self, true, false);
1588 }
1589
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001590 size_t NextIndex() {
Ian Rogers3e5cf302014-05-20 16:40:37 -07001591 return index_.FetchAndAddSequentiallyConsistent(1);
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001592 }
1593
Brian Carlstrom7940e442013-07-12 13:46:57 -07001594 private:
Brian Carlstrom7940e442013-07-12 13:46:57 -07001595 class ForAllClosure : public Task {
1596 public:
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001597 ForAllClosure(ParallelCompilationManager* manager, size_t end, Callback* callback)
Brian Carlstrom7940e442013-07-12 13:46:57 -07001598 : manager_(manager),
Brian Carlstrom7940e442013-07-12 13:46:57 -07001599 end_(end),
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001600 callback_(callback) {}
Brian Carlstrom7940e442013-07-12 13:46:57 -07001601
1602 virtual void Run(Thread* self) {
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001603 while (true) {
1604 const size_t index = manager_->NextIndex();
1605 if (UNLIKELY(index >= end_)) {
1606 break;
1607 }
1608 callback_(manager_, index);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001609 self->AssertNoPendingException();
1610 }
1611 }
1612
1613 virtual void Finalize() {
1614 delete this;
1615 }
Brian Carlstrom0cd7ec22013-07-17 23:40:20 -07001616
Brian Carlstrom7940e442013-07-12 13:46:57 -07001617 private:
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001618 ParallelCompilationManager* const manager_;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001619 const size_t end_;
Bernhard Rosenkränzer46053622013-12-12 02:15:52 +01001620 Callback* const callback_;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001621 };
1622
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001623 AtomicInteger index_;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001624 ClassLinker* const class_linker_;
1625 const jobject class_loader_;
1626 CompilerDriver* const compiler_;
1627 const DexFile* const dex_file_;
Andreas Gampede7b4362014-07-28 18:38:57 -07001628 const std::vector<const DexFile*>& dex_files_;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001629 ThreadPool* const thread_pool_;
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001630
1631 DISALLOW_COPY_AND_ASSIGN(ParallelCompilationManager);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001632};
1633
Jeff Hao0e49b422013-11-08 12:16:56 -08001634// A fast version of SkipClass above if the class pointer is available
1635// that avoids the expensive FindInClassPath search.
1636static bool SkipClass(jobject class_loader, const DexFile& dex_file, mirror::Class* klass)
1637 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001638 DCHECK(klass != nullptr);
Jeff Hao0e49b422013-11-08 12:16:56 -08001639 const DexFile& original_dex_file = *klass->GetDexCache()->GetDexFile();
1640 if (&dex_file != &original_dex_file) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001641 if (class_loader == nullptr) {
Jeff Hao0e49b422013-11-08 12:16:56 -08001642 LOG(WARNING) << "Skipping class " << PrettyDescriptor(klass) << " from "
1643 << dex_file.GetLocation() << " previously found in "
1644 << original_dex_file.GetLocation();
1645 }
1646 return true;
1647 }
1648 return false;
1649}
1650
Mathieu Chartier70b63482014-06-27 17:19:04 -07001651static void CheckAndClearResolveException(Thread* self)
1652 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
1653 CHECK(self->IsExceptionPending());
Nicolas Geoffray14691c52015-03-05 10:40:17 +00001654 mirror::Throwable* exception = self->GetException();
Ian Rogers1ff3c982014-08-12 02:30:58 -07001655 std::string temp;
1656 const char* descriptor = exception->GetClass()->GetDescriptor(&temp);
1657 const char* expected_exceptions[] = {
1658 "Ljava/lang/IllegalAccessError;",
1659 "Ljava/lang/IncompatibleClassChangeError;",
1660 "Ljava/lang/InstantiationError;",
Brian Carlstrom898fcb52014-08-25 23:07:30 -07001661 "Ljava/lang/LinkageError;",
Ian Rogers1ff3c982014-08-12 02:30:58 -07001662 "Ljava/lang/NoClassDefFoundError;",
1663 "Ljava/lang/NoSuchFieldError;",
1664 "Ljava/lang/NoSuchMethodError;"
1665 };
1666 bool found = false;
1667 for (size_t i = 0; (found == false) && (i < arraysize(expected_exceptions)); ++i) {
1668 if (strcmp(descriptor, expected_exceptions[i]) == 0) {
1669 found = true;
1670 }
1671 }
1672 if (!found) {
Brian Carlstrom898fcb52014-08-25 23:07:30 -07001673 LOG(FATAL) << "Unexpected exception " << exception->Dump();
Mathieu Chartier70b63482014-06-27 17:19:04 -07001674 }
1675 self->ClearException();
1676}
1677
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001678static void ResolveClassFieldsAndMethods(const ParallelCompilationManager* manager,
1679 size_t class_def_index)
Brian Carlstrom7940e442013-07-12 13:46:57 -07001680 LOCKS_EXCLUDED(Locks::mutator_lock_) {
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07001681 ATRACE_CALL();
Ian Rogersbe7149f2013-08-20 09:29:39 -07001682 Thread* self = Thread::Current();
1683 jobject jclass_loader = manager->GetClassLoader();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001684 const DexFile& dex_file = *manager->GetDexFile();
Ian Rogersbe7149f2013-08-20 09:29:39 -07001685 ClassLinker* class_linker = manager->GetClassLinker();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001686
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001687 // If an instance field is final then we need to have a barrier on the return, static final
1688 // fields are assigned within the lock held for class initialization. Conservatively assume
1689 // constructor barriers are always required.
1690 bool requires_constructor_barrier = true;
1691
Brian Carlstrom7940e442013-07-12 13:46:57 -07001692 // Method and Field are the worst. We can't resolve without either
1693 // context from the code use (to disambiguate virtual vs direct
1694 // method and instance vs static field) or from class
1695 // definitions. While the compiler will resolve what it can as it
1696 // needs it, here we try to resolve fields and methods used in class
1697 // definitions, since many of them many never be referenced by
1698 // generated code.
1699 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
Ian Rogers68b56852014-08-29 20:19:11 -07001700 ScopedObjectAccess soa(self);
1701 StackHandleScope<2> hs(soa.Self());
1702 Handle<mirror::ClassLoader> class_loader(
1703 hs.NewHandle(soa.Decode<mirror::ClassLoader*>(jclass_loader)));
1704 Handle<mirror::DexCache> dex_cache(hs.NewHandle(class_linker->FindDexCache(dex_file)));
1705 // Resolve the class.
1706 mirror::Class* klass = class_linker->ResolveType(dex_file, class_def.class_idx_, dex_cache,
1707 class_loader);
1708 bool resolve_fields_and_methods;
1709 if (klass == nullptr) {
1710 // Class couldn't be resolved, for example, super-class is in a different dex file. Don't
1711 // attempt to resolve methods and fields when there is no declaring class.
1712 CheckAndClearResolveException(soa.Self());
1713 resolve_fields_and_methods = false;
1714 } else {
1715 // We successfully resolved a class, should we skip it?
1716 if (SkipClass(jclass_loader, dex_file, klass)) {
1717 return;
Brian Carlstromcb5f5e52013-09-23 17:48:16 -07001718 }
Ian Rogers68b56852014-08-29 20:19:11 -07001719 // We want to resolve the methods and fields eagerly.
1720 resolve_fields_and_methods = true;
1721 }
1722 // Note the class_data pointer advances through the headers,
1723 // static fields, instance fields, direct methods, and virtual
1724 // methods.
Ian Rogers13735952014-10-08 12:43:28 -07001725 const uint8_t* class_data = dex_file.GetClassData(class_def);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001726 if (class_data == nullptr) {
Ian Rogers68b56852014-08-29 20:19:11 -07001727 // Empty class such as a marker interface.
1728 requires_constructor_barrier = false;
1729 } else {
1730 ClassDataItemIterator it(dex_file, class_data);
1731 while (it.HasNextStaticField()) {
1732 if (resolve_fields_and_methods) {
Mathieu Chartierc7853442015-03-27 14:35:38 -07001733 ArtField* field = class_linker->ResolveField(dex_file, it.GetMemberIndex(),
Ian Rogers68b56852014-08-29 20:19:11 -07001734 dex_cache, class_loader, true);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001735 if (field == nullptr) {
Ian Rogers68b56852014-08-29 20:19:11 -07001736 CheckAndClearResolveException(soa.Self());
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001737 }
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001738 }
Ian Rogers68b56852014-08-29 20:19:11 -07001739 it.Next();
1740 }
1741 // We require a constructor barrier if there are final instance fields.
1742 requires_constructor_barrier = false;
1743 while (it.HasNextInstanceField()) {
Andreas Gampe51829322014-08-25 15:05:04 -07001744 if (it.MemberIsFinal()) {
Ian Rogers68b56852014-08-29 20:19:11 -07001745 requires_constructor_barrier = true;
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001746 }
1747 if (resolve_fields_and_methods) {
Mathieu Chartierc7853442015-03-27 14:35:38 -07001748 ArtField* field = class_linker->ResolveField(dex_file, it.GetMemberIndex(),
Ian Rogers68b56852014-08-29 20:19:11 -07001749 dex_cache, class_loader, false);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001750 if (field == nullptr) {
Ian Rogers68b56852014-08-29 20:19:11 -07001751 CheckAndClearResolveException(soa.Self());
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001752 }
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001753 }
Ian Rogers68b56852014-08-29 20:19:11 -07001754 it.Next();
1755 }
1756 if (resolve_fields_and_methods) {
1757 while (it.HasNextDirectMethod()) {
1758 mirror::ArtMethod* method = class_linker->ResolveMethod(dex_file, it.GetMemberIndex(),
1759 dex_cache, class_loader,
1760 NullHandle<mirror::ArtMethod>(),
1761 it.GetMethodInvokeType(class_def));
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001762 if (method == nullptr) {
Ian Rogers68b56852014-08-29 20:19:11 -07001763 CheckAndClearResolveException(soa.Self());
1764 }
1765 it.Next();
1766 }
1767 while (it.HasNextVirtualMethod()) {
1768 mirror::ArtMethod* method = class_linker->ResolveMethod(dex_file, it.GetMemberIndex(),
1769 dex_cache, class_loader,
1770 NullHandle<mirror::ArtMethod>(),
1771 it.GetMethodInvokeType(class_def));
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001772 if (method == nullptr) {
Ian Rogers68b56852014-08-29 20:19:11 -07001773 CheckAndClearResolveException(soa.Self());
1774 }
1775 it.Next();
1776 }
1777 DCHECK(!it.HasNext());
Brian Carlstrom7940e442013-07-12 13:46:57 -07001778 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001779 }
1780 if (requires_constructor_barrier) {
Ian Rogersbe7149f2013-08-20 09:29:39 -07001781 manager->GetCompiler()->AddRequiresConstructorBarrier(self, &dex_file, class_def_index);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001782 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001783}
1784
1785static void ResolveType(const ParallelCompilationManager* manager, size_t type_idx)
1786 LOCKS_EXCLUDED(Locks::mutator_lock_) {
1787 // Class derived values are more complicated, they require the linker and loader.
1788 ScopedObjectAccess soa(Thread::Current());
1789 ClassLinker* class_linker = manager->GetClassLinker();
1790 const DexFile& dex_file = *manager->GetDexFile();
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001791 StackHandleScope<2> hs(soa.Self());
1792 Handle<mirror::DexCache> dex_cache(hs.NewHandle(class_linker->FindDexCache(dex_file)));
1793 Handle<mirror::ClassLoader> class_loader(
1794 hs.NewHandle(soa.Decode<mirror::ClassLoader*>(manager->GetClassLoader())));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001795 mirror::Class* klass = class_linker->ResolveType(dex_file, type_idx, dex_cache, class_loader);
1796
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001797 if (klass == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001798 CHECK(soa.Self()->IsExceptionPending());
Nicolas Geoffray14691c52015-03-05 10:40:17 +00001799 mirror::Throwable* exception = soa.Self()->GetException();
Ian Rogersa436fde2013-08-27 23:34:06 -07001800 VLOG(compiler) << "Exception during type resolution: " << exception->Dump();
Mathieu Chartierf8322842014-05-16 10:59:25 -07001801 if (exception->GetClass()->DescriptorEquals("Ljava/lang/OutOfMemoryError;")) {
Ian Rogersa436fde2013-08-27 23:34:06 -07001802 // There's little point continuing compilation if the heap is exhausted.
1803 LOG(FATAL) << "Out of memory during type resolution for compilation";
1804 }
1805 soa.Self()->ClearException();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001806 }
1807}
1808
1809void CompilerDriver::ResolveDexFile(jobject class_loader, const DexFile& dex_file,
Andreas Gampede7b4362014-07-28 18:38:57 -07001810 const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -08001811 ThreadPool* thread_pool, TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001812 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
1813
1814 // TODO: we could resolve strings here, although the string table is largely filled with class
1815 // and method names.
1816
Andreas Gampede7b4362014-07-28 18:38:57 -07001817 ParallelCompilationManager context(class_linker, class_loader, this, &dex_file, dex_files,
1818 thread_pool);
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001819 if (IsImage()) {
1820 // For images we resolve all types, such as array, whereas for applications just those with
1821 // classdefs are resolved by ResolveClassFieldsAndMethods.
Mathieu Chartierf5997b42014-06-20 10:37:54 -07001822 TimingLogger::ScopedTiming t("Resolve Types", timings);
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001823 context.ForAll(0, dex_file.NumTypeIds(), ResolveType, thread_count_);
1824 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001825
Mathieu Chartierf5997b42014-06-20 10:37:54 -07001826 TimingLogger::ScopedTiming t("Resolve MethodsAndFields", timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001827 context.ForAll(0, dex_file.NumClassDefs(), ResolveClassFieldsAndMethods, thread_count_);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001828}
1829
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001830void CompilerDriver::SetVerified(jobject class_loader, const std::vector<const DexFile*>& dex_files,
1831 ThreadPool* thread_pool, TimingLogger* timings) {
1832 for (size_t i = 0; i != dex_files.size(); ++i) {
1833 const DexFile* dex_file = dex_files[i];
1834 CHECK(dex_file != nullptr);
1835 SetVerifiedDexFile(class_loader, *dex_file, dex_files, thread_pool, timings);
1836 }
1837}
1838
Brian Carlstrom7940e442013-07-12 13:46:57 -07001839void CompilerDriver::Verify(jobject class_loader, const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -08001840 ThreadPool* thread_pool, TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001841 for (size_t i = 0; i != dex_files.size(); ++i) {
1842 const DexFile* dex_file = dex_files[i];
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001843 CHECK(dex_file != nullptr);
Andreas Gampede7b4362014-07-28 18:38:57 -07001844 VerifyDexFile(class_loader, *dex_file, dex_files, thread_pool, timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001845 }
1846}
1847
1848static void VerifyClass(const ParallelCompilationManager* manager, size_t class_def_index)
1849 LOCKS_EXCLUDED(Locks::mutator_lock_) {
Anwar Ghuloum67f99412013-08-12 14:19:48 -07001850 ATRACE_CALL();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001851 ScopedObjectAccess soa(Thread::Current());
Jeff Hao0e49b422013-11-08 12:16:56 -08001852 const DexFile& dex_file = *manager->GetDexFile();
1853 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
1854 const char* descriptor = dex_file.GetClassDescriptor(class_def);
1855 ClassLinker* class_linker = manager->GetClassLinker();
1856 jobject jclass_loader = manager->GetClassLoader();
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001857 StackHandleScope<3> hs(soa.Self());
1858 Handle<mirror::ClassLoader> class_loader(
1859 hs.NewHandle(soa.Decode<mirror::ClassLoader*>(jclass_loader)));
1860 Handle<mirror::Class> klass(
1861 hs.NewHandle(class_linker->FindClass(soa.Self(), descriptor, class_loader)));
1862 if (klass.Get() == nullptr) {
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001863 CHECK(soa.Self()->IsExceptionPending());
Brian Carlstrom7940e442013-07-12 13:46:57 -07001864 soa.Self()->ClearException();
1865
1866 /*
1867 * At compile time, we can still structurally verify the class even if FindClass fails.
1868 * This is to ensure the class is structurally sound for compilation. An unsound class
1869 * will be rejected by the verifier and later skipped during compilation in the compiler.
1870 */
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001871 Handle<mirror::DexCache> dex_cache(hs.NewHandle(class_linker->FindDexCache(dex_file)));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001872 std::string error_msg;
Ian Rogers7b078e82014-09-10 14:44:24 -07001873 if (verifier::MethodVerifier::VerifyClass(soa.Self(), &dex_file, dex_cache, class_loader,
1874 &class_def, true, &error_msg) ==
Brian Carlstrom7940e442013-07-12 13:46:57 -07001875 verifier::MethodVerifier::kHardFailure) {
Jeff Hao0e49b422013-11-08 12:16:56 -08001876 LOG(ERROR) << "Verification failed on class " << PrettyDescriptor(descriptor)
Brian Carlstrom7940e442013-07-12 13:46:57 -07001877 << " because: " << error_msg;
Andreas Gampe6cf49e52015-03-05 13:08:45 -08001878 manager->GetCompiler()->SetHadHardVerifierFailure();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001879 }
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001880 } else if (!SkipClass(jclass_loader, dex_file, klass.Get())) {
1881 CHECK(klass->IsResolved()) << PrettyClass(klass.Get());
Ian Rogers7b078e82014-09-10 14:44:24 -07001882 class_linker->VerifyClass(soa.Self(), klass);
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001883
1884 if (klass->IsErroneous()) {
1885 // ClassLinker::VerifyClass throws, which isn't useful in the compiler.
1886 CHECK(soa.Self()->IsExceptionPending());
1887 soa.Self()->ClearException();
Andreas Gampe6cf49e52015-03-05 13:08:45 -08001888 manager->GetCompiler()->SetHadHardVerifierFailure();
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001889 }
1890
1891 CHECK(klass->IsCompileTimeVerified() || klass->IsErroneous())
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001892 << PrettyDescriptor(klass.Get()) << ": state=" << klass->GetStatus();
Andreas Gampe7ae063b2014-11-24 23:50:13 -08001893
1894 // It is *very* problematic if there are verification errors in the boot classpath. For example,
1895 // we rely on things working OK without verification when the decryption dialog is brought up.
1896 // So abort in a debug build if we find this violated.
1897 DCHECK(!manager->GetCompiler()->IsImage() || klass->IsVerified()) << "Boot classpath class " <<
1898 PrettyClass(klass.Get()) << " failed to fully verify.";
Brian Carlstrom7940e442013-07-12 13:46:57 -07001899 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001900 soa.Self()->AssertNoPendingException();
1901}
1902
1903void CompilerDriver::VerifyDexFile(jobject class_loader, const DexFile& dex_file,
Andreas Gampede7b4362014-07-28 18:38:57 -07001904 const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -08001905 ThreadPool* thread_pool, TimingLogger* timings) {
Mathieu Chartierf5997b42014-06-20 10:37:54 -07001906 TimingLogger::ScopedTiming t("Verify Dex File", timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001907 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Andreas Gampede7b4362014-07-28 18:38:57 -07001908 ParallelCompilationManager context(class_linker, class_loader, this, &dex_file, dex_files,
1909 thread_pool);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001910 context.ForAll(0, dex_file.NumClassDefs(), VerifyClass, thread_count_);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001911}
1912
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001913static void SetVerifiedClass(const ParallelCompilationManager* manager, size_t class_def_index)
1914 LOCKS_EXCLUDED(Locks::mutator_lock_) {
1915 ATRACE_CALL();
1916 ScopedObjectAccess soa(Thread::Current());
1917 const DexFile& dex_file = *manager->GetDexFile();
1918 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
1919 const char* descriptor = dex_file.GetClassDescriptor(class_def);
1920 ClassLinker* class_linker = manager->GetClassLinker();
1921 jobject jclass_loader = manager->GetClassLoader();
1922 StackHandleScope<3> hs(soa.Self());
1923 Handle<mirror::ClassLoader> class_loader(
1924 hs.NewHandle(soa.Decode<mirror::ClassLoader*>(jclass_loader)));
1925 Handle<mirror::Class> klass(
1926 hs.NewHandle(class_linker->FindClass(soa.Self(), descriptor, class_loader)));
1927 // Class might have failed resolution. Then don't set it to verified.
1928 if (klass.Get() != nullptr) {
1929 // Only do this if the class is resolved. If even resolution fails, quickening will go very,
1930 // very wrong.
1931 if (klass->IsResolved()) {
1932 if (klass->GetStatus() < mirror::Class::kStatusVerified) {
1933 ObjectLock<mirror::Class> lock(soa.Self(), klass);
Hiroshi Yamauchi5b783e62015-03-18 17:20:11 -07001934 mirror::Class::SetStatus(klass, mirror::Class::kStatusVerified, soa.Self());
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001935 }
1936 // Record the final class status if necessary.
1937 ClassReference ref(manager->GetDexFile(), class_def_index);
1938 manager->GetCompiler()->RecordClassStatus(ref, klass->GetStatus());
1939 }
Andreas Gampe61ff0092014-09-16 11:23:23 -07001940 } else {
1941 Thread* self = soa.Self();
1942 DCHECK(self->IsExceptionPending());
1943 self->ClearException();
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001944 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001945}
1946
1947void CompilerDriver::SetVerifiedDexFile(jobject class_loader, const DexFile& dex_file,
1948 const std::vector<const DexFile*>& dex_files,
1949 ThreadPool* thread_pool, TimingLogger* timings) {
1950 TimingLogger::ScopedTiming t("Verify Dex File", timings);
1951 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
1952 ParallelCompilationManager context(class_linker, class_loader, this, &dex_file, dex_files,
1953 thread_pool);
1954 context.ForAll(0, dex_file.NumClassDefs(), SetVerifiedClass, thread_count_);
1955}
1956
Brian Carlstrom7940e442013-07-12 13:46:57 -07001957static void InitializeClass(const ParallelCompilationManager* manager, size_t class_def_index)
1958 LOCKS_EXCLUDED(Locks::mutator_lock_) {
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07001959 ATRACE_CALL();
Jeff Hao0e49b422013-11-08 12:16:56 -08001960 jobject jclass_loader = manager->GetClassLoader();
1961 const DexFile& dex_file = *manager->GetDexFile();
1962 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
Jeff Haobcdbbfe2013-11-08 18:03:22 -08001963 const DexFile::TypeId& class_type_id = dex_file.GetTypeId(class_def.class_idx_);
1964 const char* descriptor = dex_file.StringDataByIdx(class_type_id.descriptor_idx_);
Ian Rogersfc0e94b2013-09-23 23:51:32 -07001965
Brian Carlstrom7940e442013-07-12 13:46:57 -07001966 ScopedObjectAccess soa(Thread::Current());
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001967 StackHandleScope<3> hs(soa.Self());
1968 Handle<mirror::ClassLoader> class_loader(
1969 hs.NewHandle(soa.Decode<mirror::ClassLoader*>(jclass_loader)));
1970 Handle<mirror::Class> klass(
1971 hs.NewHandle(manager->GetClassLinker()->FindClass(soa.Self(), descriptor, class_loader)));
Jeff Hao0e49b422013-11-08 12:16:56 -08001972
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001973 if (klass.Get() != nullptr && !SkipClass(jclass_loader, dex_file, klass.Get())) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001974 // Only try to initialize classes that were successfully verified.
1975 if (klass->IsVerified()) {
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07001976 // Attempt to initialize the class but bail if we either need to initialize the super-class
1977 // or static fields.
Ian Rogers7b078e82014-09-10 14:44:24 -07001978 manager->GetClassLinker()->EnsureInitialized(soa.Self(), klass, false, false);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001979 if (!klass->IsInitialized()) {
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07001980 // We don't want non-trivial class initialization occurring on multiple threads due to
1981 // deadlock problems. For example, a parent class is initialized (holding its lock) that
1982 // refers to a sub-class in its static/class initializer causing it to try to acquire the
1983 // sub-class' lock. While on a second thread the sub-class is initialized (holding its lock)
1984 // after first initializing its parents, whose locks are acquired. This leads to a
1985 // parent-to-child and a child-to-parent lock ordering and consequent potential deadlock.
1986 // We need to use an ObjectLock due to potential suspension in the interpreting code. Rather
1987 // than use a special Object for the purpose we use the Class of java.lang.Class.
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001988 Handle<mirror::Class> h_klass(hs.NewHandle(klass->GetClass()));
Mathieu Chartierdb2633c2014-05-16 09:59:29 -07001989 ObjectLock<mirror::Class> lock(soa.Self(), h_klass);
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07001990 // Attempt to initialize allowing initialization of parent classes but still not static
1991 // fields.
Ian Rogers7b078e82014-09-10 14:44:24 -07001992 manager->GetClassLinker()->EnsureInitialized(soa.Self(), klass, false, true);
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07001993 if (!klass->IsInitialized()) {
1994 // We need to initialize static fields, we only do this for image classes that aren't
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001995 // marked with the $NoPreloadHolder (which implies this should not be initialized early).
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07001996 bool can_init_static_fields = manager->GetCompiler()->IsImage() &&
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001997 manager->GetCompiler()->IsImageClass(descriptor) &&
1998 !StringPiece(descriptor).ends_with("$NoPreloadHolder;");
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07001999 if (can_init_static_fields) {
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01002000 VLOG(compiler) << "Initializing: " << descriptor;
Ian Rogersc45b8b52014-05-03 01:39:59 -07002001 // TODO multithreading support. We should ensure the current compilation thread has
2002 // exclusive access to the runtime and the transaction. To achieve this, we could use
2003 // a ReaderWriterMutex but we're holding the mutator lock so we fail mutex sanity
2004 // checks in Thread::AssertThreadSuspensionIsAllowable.
2005 Runtime* const runtime = Runtime::Current();
2006 Transaction transaction;
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01002007
Ian Rogersc45b8b52014-05-03 01:39:59 -07002008 // Run the class initializer in transaction mode.
2009 runtime->EnterTransactionMode(&transaction);
2010 const mirror::Class::Status old_status = klass->GetStatus();
Ian Rogers7b078e82014-09-10 14:44:24 -07002011 bool success = manager->GetClassLinker()->EnsureInitialized(soa.Self(), klass, true,
2012 true);
Ian Rogersc45b8b52014-05-03 01:39:59 -07002013 // TODO we detach transaction from runtime to indicate we quit the transactional
2014 // mode which prevents the GC from visiting objects modified during the transaction.
2015 // Ensure GC is not run so don't access freed objects when aborting transaction.
Mathieu Chartier2d5f39e2014-09-19 17:52:37 -07002016
2017 ScopedAssertNoThreadSuspension ants(soa.Self(), "Transaction end");
Ian Rogersc45b8b52014-05-03 01:39:59 -07002018 runtime->ExitTransactionMode();
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01002019
Ian Rogersc45b8b52014-05-03 01:39:59 -07002020 if (!success) {
2021 CHECK(soa.Self()->IsExceptionPending());
Nicolas Geoffray14691c52015-03-05 10:40:17 +00002022 mirror::Throwable* exception = soa.Self()->GetException();
Ian Rogersc45b8b52014-05-03 01:39:59 -07002023 VLOG(compiler) << "Initialization of " << descriptor << " aborted because of "
2024 << exception->Dump();
Andreas Gampedbfe2542014-11-25 22:21:42 -08002025 std::ostream* file_log = manager->GetCompiler()->
2026 GetCompilerOptions().GetInitFailureOutput();
2027 if (file_log != nullptr) {
2028 *file_log << descriptor << "\n";
2029 *file_log << exception->Dump() << "\n";
2030 }
Ian Rogersc45b8b52014-05-03 01:39:59 -07002031 soa.Self()->ClearException();
Sebastien Hertz1c80bec2015-02-03 11:58:06 +01002032 transaction.Rollback();
Ian Rogersc45b8b52014-05-03 01:39:59 -07002033 CHECK_EQ(old_status, klass->GetStatus()) << "Previous class status not restored";
Brian Carlstrom7940e442013-07-12 13:46:57 -07002034 }
2035 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002036 }
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07002037 soa.Self()->AssertNoPendingException();
Brian Carlstrom7940e442013-07-12 13:46:57 -07002038 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002039 }
2040 // Record the final class status if necessary.
Brian Carlstrom7940e442013-07-12 13:46:57 -07002041 ClassReference ref(manager->GetDexFile(), class_def_index);
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07002042 manager->GetCompiler()->RecordClassStatus(ref, klass->GetStatus());
Brian Carlstrom7940e442013-07-12 13:46:57 -07002043 }
2044 // Clear any class not found or verification exceptions.
2045 soa.Self()->ClearException();
2046}
2047
2048void CompilerDriver::InitializeClasses(jobject jni_class_loader, const DexFile& dex_file,
Andreas Gampede7b4362014-07-28 18:38:57 -07002049 const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -08002050 ThreadPool* thread_pool, TimingLogger* timings) {
Mathieu Chartierf5997b42014-06-20 10:37:54 -07002051 TimingLogger::ScopedTiming t("InitializeNoClinit", timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002052 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Andreas Gampede7b4362014-07-28 18:38:57 -07002053 ParallelCompilationManager context(class_linker, jni_class_loader, this, &dex_file, dex_files,
2054 thread_pool);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01002055 size_t thread_count;
2056 if (IsImage()) {
2057 // TODO: remove this when transactional mode supports multithreading.
2058 thread_count = 1U;
2059 } else {
2060 thread_count = thread_count_;
2061 }
2062 context.ForAll(0, dex_file.NumClassDefs(), InitializeClass, thread_count);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002063}
2064
2065void CompilerDriver::InitializeClasses(jobject class_loader,
2066 const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -08002067 ThreadPool* thread_pool, TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07002068 for (size_t i = 0; i != dex_files.size(); ++i) {
2069 const DexFile* dex_file = dex_files[i];
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002070 CHECK(dex_file != nullptr);
Andreas Gampede7b4362014-07-28 18:38:57 -07002071 InitializeClasses(class_loader, *dex_file, dex_files, thread_pool, timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002072 }
Mathieu Chartier093ef212014-08-11 13:52:12 -07002073 if (IsImage()) {
2074 // Prune garbage objects created during aborted transactions.
2075 Runtime::Current()->GetHeap()->CollectGarbage(true);
2076 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002077}
2078
2079void CompilerDriver::Compile(jobject class_loader, const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -08002080 ThreadPool* thread_pool, TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07002081 for (size_t i = 0; i != dex_files.size(); ++i) {
2082 const DexFile* dex_file = dex_files[i];
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002083 CHECK(dex_file != nullptr);
Andreas Gampede7b4362014-07-28 18:38:57 -07002084 CompileDexFile(class_loader, *dex_file, dex_files, thread_pool, timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002085 }
Andreas Gampe8d295f82015-01-20 14:50:21 -08002086 VLOG(compiler) << "Compile: " << GetMemoryUsageString(false);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002087}
2088
2089void CompilerDriver::CompileClass(const ParallelCompilationManager* manager, size_t class_def_index) {
Anwar Ghuloum67f99412013-08-12 14:19:48 -07002090 ATRACE_CALL();
Brian Carlstrom7940e442013-07-12 13:46:57 -07002091 const DexFile& dex_file = *manager->GetDexFile();
2092 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
Ian Rogersbe7149f2013-08-20 09:29:39 -07002093 ClassLinker* class_linker = manager->GetClassLinker();
Ian Rogers1ff3c982014-08-12 02:30:58 -07002094 jobject jclass_loader = manager->GetClassLoader();
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08002095 Thread* self = Thread::Current();
Ian Rogers1ff3c982014-08-12 02:30:58 -07002096 {
2097 // Use a scoped object access to perform to the quick SkipClass check.
2098 const char* descriptor = dex_file.GetClassDescriptor(class_def);
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08002099 ScopedObjectAccess soa(self);
Ian Rogers1ff3c982014-08-12 02:30:58 -07002100 StackHandleScope<3> hs(soa.Self());
2101 Handle<mirror::ClassLoader> class_loader(
2102 hs.NewHandle(soa.Decode<mirror::ClassLoader*>(jclass_loader)));
2103 Handle<mirror::Class> klass(
2104 hs.NewHandle(class_linker->FindClass(soa.Self(), descriptor, class_loader)));
2105 if (klass.Get() == nullptr) {
2106 CHECK(soa.Self()->IsExceptionPending());
2107 soa.Self()->ClearException();
2108 } else if (SkipClass(jclass_loader, dex_file, klass.Get())) {
2109 return;
2110 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002111 }
2112 ClassReference ref(&dex_file, class_def_index);
2113 // Skip compiling classes with generic verifier failures since they will still fail at runtime
Vladimir Markoc7f83202014-01-24 17:55:18 +00002114 if (manager->GetCompiler()->verification_results_->IsClassRejected(ref)) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07002115 return;
2116 }
Ian Rogers13735952014-10-08 12:43:28 -07002117 const uint8_t* class_data = dex_file.GetClassData(class_def);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002118 if (class_data == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07002119 // empty class, probably a marker interface
2120 return;
2121 }
Anwar Ghuloum67f99412013-08-12 14:19:48 -07002122
Mathieu Chartiere86deef2015-03-19 13:43:37 -07002123 CompilerDriver* const driver = manager->GetCompiler();
2124
Brian Carlstrom7940e442013-07-12 13:46:57 -07002125 // Can we run DEX-to-DEX compiler on this class ?
Sebastien Hertz75021222013-07-16 18:34:50 +02002126 DexToDexCompilationLevel dex_to_dex_compilation_level = kDontDexToDexCompile;
Brian Carlstrom7940e442013-07-12 13:46:57 -07002127 {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08002128 ScopedObjectAccess soa(self);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07002129 StackHandleScope<1> hs(soa.Self());
2130 Handle<mirror::ClassLoader> class_loader(
2131 hs.NewHandle(soa.Decode<mirror::ClassLoader*>(jclass_loader)));
Mathieu Chartiere86deef2015-03-19 13:43:37 -07002132 dex_to_dex_compilation_level = driver->GetDexToDexCompilationlevel(
2133 soa.Self(), class_loader, dex_file, class_def);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002134 }
2135 ClassDataItemIterator it(dex_file, class_data);
2136 // Skip fields
2137 while (it.HasNextStaticField()) {
2138 it.Next();
2139 }
2140 while (it.HasNextInstanceField()) {
2141 it.Next();
2142 }
Andreas Gampe4bf3ae92014-11-11 13:28:29 -08002143
2144 bool compilation_enabled = driver->IsClassToCompile(
2145 dex_file.StringByTypeIdx(class_def.class_idx_));
2146
Brian Carlstrom7940e442013-07-12 13:46:57 -07002147 // Compile direct methods
2148 int64_t previous_direct_method_idx = -1;
2149 while (it.HasNextDirectMethod()) {
2150 uint32_t method_idx = it.GetMemberIndex();
2151 if (method_idx == previous_direct_method_idx) {
2152 // smali can create dex files with two encoded_methods sharing the same method_idx
2153 // http://code.google.com/p/smali/issues/detail?id=119
2154 it.Next();
2155 continue;
2156 }
2157 previous_direct_method_idx = method_idx;
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08002158 driver->CompileMethod(self, it.GetMethodCodeItem(), it.GetMethodAccessFlags(),
Ian Rogersbe7149f2013-08-20 09:29:39 -07002159 it.GetMethodInvokeType(class_def), class_def_index,
Andreas Gampe4bf3ae92014-11-11 13:28:29 -08002160 method_idx, jclass_loader, dex_file, dex_to_dex_compilation_level,
2161 compilation_enabled);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002162 it.Next();
2163 }
2164 // Compile virtual methods
2165 int64_t previous_virtual_method_idx = -1;
2166 while (it.HasNextVirtualMethod()) {
2167 uint32_t method_idx = it.GetMemberIndex();
2168 if (method_idx == previous_virtual_method_idx) {
2169 // smali can create dex files with two encoded_methods sharing the same method_idx
2170 // http://code.google.com/p/smali/issues/detail?id=119
2171 it.Next();
2172 continue;
2173 }
2174 previous_virtual_method_idx = method_idx;
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08002175 driver->CompileMethod(self, it.GetMethodCodeItem(), it.GetMethodAccessFlags(),
Ian Rogersbe7149f2013-08-20 09:29:39 -07002176 it.GetMethodInvokeType(class_def), class_def_index,
Andreas Gampe4bf3ae92014-11-11 13:28:29 -08002177 method_idx, jclass_loader, dex_file, dex_to_dex_compilation_level,
2178 compilation_enabled);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002179 it.Next();
2180 }
2181 DCHECK(!it.HasNext());
2182}
2183
2184void CompilerDriver::CompileDexFile(jobject class_loader, const DexFile& dex_file,
Andreas Gampede7b4362014-07-28 18:38:57 -07002185 const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -08002186 ThreadPool* thread_pool, TimingLogger* timings) {
Mathieu Chartierf5997b42014-06-20 10:37:54 -07002187 TimingLogger::ScopedTiming t("Compile Dex File", timings);
Ian Rogersbe7149f2013-08-20 09:29:39 -07002188 ParallelCompilationManager context(Runtime::Current()->GetClassLinker(), class_loader, this,
Andreas Gampede7b4362014-07-28 18:38:57 -07002189 &dex_file, dex_files, thread_pool);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002190 context.ForAll(0, dex_file.NumClassDefs(), CompilerDriver::CompileClass, thread_count_);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002191}
2192
Ian Rogersa4a3f402014-10-20 18:10:34 -07002193// Does the runtime for the InstructionSet provide an implementation returned by
2194// GetQuickGenericJniStub allowing down calls that aren't compiled using a JNI compiler?
2195static bool InstructionSetHasGenericJniStub(InstructionSet isa) {
2196 switch (isa) {
2197 case kArm:
2198 case kArm64:
2199 case kThumb2:
Douglas Leung735b8552014-10-31 12:21:40 -07002200 case kMips:
Andreas Gampe57b34292015-01-14 15:45:59 -08002201 case kMips64:
Ian Rogersa4a3f402014-10-20 18:10:34 -07002202 case kX86:
2203 case kX86_64: return true;
2204 default: return false;
2205 }
2206}
2207
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08002208void CompilerDriver::CompileMethod(Thread* self, const DexFile::CodeItem* code_item,
2209 uint32_t access_flags, InvokeType invoke_type,
2210 uint16_t class_def_idx, uint32_t method_idx,
2211 jobject class_loader, const DexFile& dex_file,
Andreas Gampe4bf3ae92014-11-11 13:28:29 -08002212 DexToDexCompilationLevel dex_to_dex_compilation_level,
2213 bool compilation_enabled) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002214 CompiledMethod* compiled_method = nullptr;
Mathieu Chartier8e219ae2014-08-19 14:29:46 -07002215 uint64_t start_ns = kTimeCompileMethod ? NanoTime() : 0;
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002216 MethodReference method_ref(&dex_file, method_idx);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002217
2218 if ((access_flags & kAccNative) != 0) {
Ian Rogers0188ab72014-03-17 16:51:53 -07002219 // Are we interpreting only and have support for generic JNI down calls?
Jeff Hao4a200f52014-04-01 14:58:49 -07002220 if (!compiler_options_->IsCompilationEnabled() &&
Ian Rogersa4a3f402014-10-20 18:10:34 -07002221 InstructionSetHasGenericJniStub(instruction_set_)) {
Ian Rogers5b271492014-03-14 13:20:26 -07002222 // Leaving this empty will trigger the generic JNI version
2223 } else {
Goran Jakovljevic75c40d42015-04-03 15:45:21 +02002224 compiled_method = compiler_->JniCompile(access_flags, method_idx, dex_file);
2225 CHECK(compiled_method != nullptr);
Ian Rogers5b271492014-03-14 13:20:26 -07002226 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002227 } else if ((access_flags & kAccAbstract) != 0) {
Ian Rogersa4a3f402014-10-20 18:10:34 -07002228 // Abstract methods don't have code.
Brian Carlstrom7940e442013-07-12 13:46:57 -07002229 } else {
Andreas Gampe6c170c92014-12-17 14:35:46 -08002230 bool has_verified_method = verification_results_->GetVerifiedMethod(method_ref) != nullptr;
Andreas Gampe4bf3ae92014-11-11 13:28:29 -08002231 bool compile = compilation_enabled &&
Andreas Gampe6c170c92014-12-17 14:35:46 -08002232 // Basic checks, e.g., not <clinit>.
2233 verification_results_->IsCandidateForCompilation(method_ref, access_flags) &&
2234 // Did not fail to create VerifiedMethod metadata.
2235 has_verified_method;
Sebastien Hertz4d4adb12013-07-24 16:14:19 +02002236 if (compile) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002237 // NOTE: if compiler declines to compile this method, it will return nullptr.
Ian Rogers72d32622014-05-06 16:20:11 -07002238 compiled_method = compiler_->Compile(code_item, access_flags, invoke_type, class_def_idx,
2239 method_idx, class_loader, dex_file);
Sebastien Hertz17965ed2014-04-04 15:59:53 +02002240 }
2241 if (compiled_method == nullptr && dex_to_dex_compilation_level != kDontDexToDexCompile) {
2242 // TODO: add a command-line option to disable DEX-to-DEX compilation ?
Andreas Gampe6c170c92014-12-17 14:35:46 -08002243 // Do not optimize if a VerifiedMethod is missing. SafeCast elision, for example, relies on
2244 // it.
Sebastien Hertz75021222013-07-16 18:34:50 +02002245 (*dex_to_dex_compiler_)(*this, code_item, access_flags,
2246 invoke_type, class_def_idx,
2247 method_idx, class_loader, dex_file,
Andreas Gampe6c170c92014-12-17 14:35:46 -08002248 has_verified_method ? dex_to_dex_compilation_level : kRequired);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002249 }
2250 }
Mathieu Chartier8e219ae2014-08-19 14:29:46 -07002251 if (kTimeCompileMethod) {
2252 uint64_t duration_ns = NanoTime() - start_ns;
2253 if (duration_ns > MsToNs(compiler_->GetMaximumCompilationTimeBeforeWarning())) {
2254 LOG(WARNING) << "Compilation of " << PrettyMethod(method_idx, dex_file)
2255 << " took " << PrettyDuration(duration_ns);
2256 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002257 }
2258
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002259 if (compiled_method != nullptr) {
Vladimir Markof4da6752014-08-01 19:04:18 +01002260 // Count non-relative linker patches.
2261 size_t non_relative_linker_patch_count = 0u;
2262 for (const LinkerPatch& patch : compiled_method->GetPatches()) {
Vladimir Marko20f85592015-03-19 10:07:02 +00002263 if (!patch.IsPcRelative()) {
Vladimir Markof4da6752014-08-01 19:04:18 +01002264 ++non_relative_linker_patch_count;
2265 }
2266 }
Igor Murashkind6dee672014-10-16 18:36:16 -07002267 bool compile_pic = GetCompilerOptions().GetCompilePic(); // Off by default
2268 // When compiling with PIC, there should be zero non-relative linker patches
2269 CHECK(!compile_pic || non_relative_linker_patch_count == 0u);
2270
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002271 DCHECK(GetCompiledMethod(method_ref) == nullptr) << PrettyMethod(method_idx, dex_file);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002272 {
2273 MutexLock mu(self, compiled_methods_lock_);
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002274 compiled_methods_.Put(method_ref, compiled_method);
Vladimir Markof4da6752014-08-01 19:04:18 +01002275 non_relative_linker_patch_count_ += non_relative_linker_patch_count;
Brian Carlstrom7940e442013-07-12 13:46:57 -07002276 }
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002277 DCHECK(GetCompiledMethod(method_ref) != nullptr) << PrettyMethod(method_idx, dex_file);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002278 }
2279
Jeff Hao48699fb2015-04-06 14:21:37 -07002280 // Done compiling, delete the verified method to reduce native memory usage. Do not delete in
2281 // optimizing compiler, which may need the verified method again for inlining.
2282 if (compiler_kind_ != Compiler::kOptimizing) {
2283 verification_results_->RemoveVerifiedMethod(method_ref);
2284 }
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002285
Brian Carlstrom7940e442013-07-12 13:46:57 -07002286 if (self->IsExceptionPending()) {
2287 ScopedObjectAccess soa(self);
2288 LOG(FATAL) << "Unexpected exception compiling: " << PrettyMethod(method_idx, dex_file) << "\n"
Nicolas Geoffray14691c52015-03-05 10:40:17 +00002289 << self->GetException()->Dump();
Brian Carlstrom7940e442013-07-12 13:46:57 -07002290 }
2291}
2292
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08002293void CompilerDriver::RemoveCompiledMethod(const MethodReference& method_ref) {
2294 CompiledMethod* compiled_method = nullptr;
2295 {
2296 MutexLock mu(Thread::Current(), compiled_methods_lock_);
2297 auto it = compiled_methods_.find(method_ref);
2298 if (it != compiled_methods_.end()) {
2299 compiled_method = it->second;
2300 compiled_methods_.erase(it);
2301 }
2302 }
2303 if (compiled_method != nullptr) {
2304 CompiledMethod::ReleaseSwapAllocatedCompiledMethod(this, compiled_method);
2305 }
2306}
2307
Brian Carlstrom7940e442013-07-12 13:46:57 -07002308CompiledClass* CompilerDriver::GetCompiledClass(ClassReference ref) const {
2309 MutexLock mu(Thread::Current(), compiled_classes_lock_);
2310 ClassTable::const_iterator it = compiled_classes_.find(ref);
2311 if (it == compiled_classes_.end()) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002312 return nullptr;
Brian Carlstrom7940e442013-07-12 13:46:57 -07002313 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002314 CHECK(it->second != nullptr);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002315 return it->second;
2316}
2317
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07002318void CompilerDriver::RecordClassStatus(ClassReference ref, mirror::Class::Status status) {
2319 MutexLock mu(Thread::Current(), compiled_classes_lock_);
2320 auto it = compiled_classes_.find(ref);
2321 if (it == compiled_classes_.end() || it->second->GetStatus() != status) {
2322 // An entry doesn't exist or the status is lower than the new status.
2323 if (it != compiled_classes_.end()) {
2324 CHECK_GT(status, it->second->GetStatus());
2325 delete it->second;
2326 }
2327 switch (status) {
2328 case mirror::Class::kStatusNotReady:
2329 case mirror::Class::kStatusError:
2330 case mirror::Class::kStatusRetryVerificationAtRuntime:
2331 case mirror::Class::kStatusVerified:
2332 case mirror::Class::kStatusInitialized:
2333 break; // Expected states.
2334 default:
2335 LOG(FATAL) << "Unexpected class status for class "
2336 << PrettyDescriptor(ref.first->GetClassDescriptor(ref.first->GetClassDef(ref.second)))
2337 << " of " << status;
2338 }
2339 CompiledClass* compiled_class = new CompiledClass(status);
2340 compiled_classes_.Overwrite(ref, compiled_class);
2341 }
2342}
2343
Brian Carlstrom7940e442013-07-12 13:46:57 -07002344CompiledMethod* CompilerDriver::GetCompiledMethod(MethodReference ref) const {
2345 MutexLock mu(Thread::Current(), compiled_methods_lock_);
2346 MethodTable::const_iterator it = compiled_methods_.find(ref);
2347 if (it == compiled_methods_.end()) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002348 return nullptr;
Brian Carlstrom7940e442013-07-12 13:46:57 -07002349 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002350 CHECK(it->second != nullptr);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002351 return it->second;
2352}
2353
Calin Juravlef1c6d9e2015-04-13 18:42:21 +01002354bool CompilerDriver::IsMethodVerifiedWithoutFailures(uint32_t method_idx,
2355 uint16_t class_def_idx,
2356 const DexFile& dex_file) const {
2357 const VerifiedMethod* verified_method = GetVerifiedMethod(&dex_file, method_idx);
2358 if (verified_method != nullptr) {
2359 return !verified_method->HasVerificationFailures();
2360 }
2361
2362 // If we can't find verification metadata, check if this is a system class (we trust that system
2363 // classes have their methods verified). If it's not, be conservative and assume the method
2364 // has not been verified successfully.
2365
2366 // TODO: When compiling the boot image it should be safe to assume that everything is verified,
2367 // even if methods are not found in the verification cache.
2368 const char* descriptor = dex_file.GetClassDescriptor(dex_file.GetClassDef(class_def_idx));
2369 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
2370 Thread* self = Thread::Current();
2371 ScopedObjectAccess soa(self);
2372 bool is_system_class = class_linker->FindSystemClass(self, descriptor) != nullptr;
2373 if (!is_system_class) {
2374 self->ClearException();
2375 }
2376 return is_system_class;
2377}
2378
Vladimir Markof4da6752014-08-01 19:04:18 +01002379size_t CompilerDriver::GetNonRelativeLinkerPatchCount() const {
2380 MutexLock mu(Thread::Current(), compiled_methods_lock_);
2381 return non_relative_linker_patch_count_;
2382}
2383
Brian Carlstrom7940e442013-07-12 13:46:57 -07002384void CompilerDriver::AddRequiresConstructorBarrier(Thread* self, const DexFile* dex_file,
Ian Rogers8b2c0b92013-09-19 02:56:49 -07002385 uint16_t class_def_index) {
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07002386 WriterMutexLock mu(self, freezing_constructor_lock_);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002387 freezing_constructor_classes_.insert(ClassReference(dex_file, class_def_index));
2388}
2389
2390bool CompilerDriver::RequiresConstructorBarrier(Thread* self, const DexFile* dex_file,
Calin Juravle27df7582015-04-17 19:12:31 +01002391 uint16_t class_def_index) const {
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07002392 ReaderMutexLock mu(self, freezing_constructor_lock_);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002393 return freezing_constructor_classes_.count(ClassReference(dex_file, class_def_index)) != 0;
2394}
2395
2396bool CompilerDriver::WriteElf(const std::string& android_root,
2397 bool is_host,
2398 const std::vector<const art::DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -08002399 OatWriter* oat_writer,
Brian Carlstrom7940e442013-07-12 13:46:57 -07002400 art::File* file)
2401 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Andreas Gampe3773cd02015-04-10 09:28:22 -07002402 if (kProduce64BitELFFiles && Is64BitInstructionSet(GetInstructionSet())) {
2403 return art::ElfWriterQuick64::Create(file, oat_writer, dex_files, android_root, is_host, *this);
2404 } else {
2405 return art::ElfWriterQuick32::Create(file, oat_writer, dex_files, android_root, is_host, *this);
2406 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002407}
Dave Allison39c3bfb2014-01-28 18:33:52 -08002408
Dave Allison39c3bfb2014-01-28 18:33:52 -08002409bool CompilerDriver::SkipCompilation(const std::string& method_name) {
Calin Juravlec1b643c2014-05-30 23:44:11 +01002410 if (!profile_present_) {
Dave Allison644789f2014-04-10 13:06:10 -07002411 return false;
Dave Allison39c3bfb2014-01-28 18:33:52 -08002412 }
Calin Juravlebb0b53f2014-05-23 17:33:29 +01002413 // First find the method in the profile file.
2414 ProfileFile::ProfileData data;
2415 if (!profile_file_.GetProfileData(&data, method_name)) {
Dave Allison39c3bfb2014-01-28 18:33:52 -08002416 // Not in profile, no information can be determined.
Calin Juravle08f7a2d2014-06-23 15:22:29 +01002417 if (kIsDebugBuild) {
2418 VLOG(compiler) << "not compiling " << method_name << " because it's not in the profile";
2419 }
Dave Allison39c3bfb2014-01-28 18:33:52 -08002420 return true;
2421 }
Calin Juravlebb0b53f2014-05-23 17:33:29 +01002422
2423 // Methods that comprise top_k_threshold % of the total samples will be compiled.
Calin Juravlef6a4cee2014-04-02 17:03:08 +01002424 // Compare against the start of the topK percentage bucket just in case the threshold
Calin Juravle04ff2262014-04-02 19:08:47 +01002425 // falls inside a bucket.
Calin Juravlec1b643c2014-05-30 23:44:11 +01002426 bool compile = data.GetTopKUsedPercentage() - data.GetUsedPercent()
2427 <= compiler_options_->GetTopKProfileThreshold();
Calin Juravle08f7a2d2014-06-23 15:22:29 +01002428 if (kIsDebugBuild) {
2429 if (compile) {
2430 LOG(INFO) << "compiling method " << method_name << " because its usage is part of top "
2431 << data.GetTopKUsedPercentage() << "% with a percent of " << data.GetUsedPercent() << "%"
2432 << " (topKThreshold=" << compiler_options_->GetTopKProfileThreshold() << ")";
2433 } else {
2434 VLOG(compiler) << "not compiling method " << method_name
2435 << " because it's not part of leading " << compiler_options_->GetTopKProfileThreshold()
2436 << "% samples)";
2437 }
Dave Allison39c3bfb2014-01-28 18:33:52 -08002438 }
2439 return !compile;
2440}
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002441
Andreas Gampe8d295f82015-01-20 14:50:21 -08002442std::string CompilerDriver::GetMemoryUsageString(bool extended) const {
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002443 std::ostringstream oss;
Mathieu Chartier9b34b242015-03-09 11:30:17 -07002444 Runtime* const runtime = Runtime::Current();
2445 const ArenaPool* arena_pool = runtime->GetArenaPool();
2446 gc::Heap* const heap = runtime->GetHeap();
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002447 oss << "arena alloc=" << PrettySize(arena_pool->GetBytesAllocated());
2448 oss << " java alloc=" << PrettySize(heap->GetBytesAllocated());
Elliott Hughes7bf5a262015-04-02 20:55:07 -07002449#if defined(__BIONIC__) || defined(__GLIBC__)
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002450 struct mallinfo info = mallinfo();
2451 const size_t allocated_space = static_cast<size_t>(info.uordblks);
2452 const size_t free_space = static_cast<size_t>(info.fordblks);
2453 oss << " native alloc=" << PrettySize(allocated_space) << " free="
2454 << PrettySize(free_space);
2455#endif
Andreas Gampee21dc3d2014-12-08 16:59:43 -08002456 if (swap_space_.get() != nullptr) {
2457 oss << " swap=" << PrettySize(swap_space_->GetSize());
2458 }
Andreas Gampe8d295f82015-01-20 14:50:21 -08002459 if (extended) {
2460 oss << "\nCode dedupe: " << dedupe_code_.DumpStats();
2461 oss << "\nMapping table dedupe: " << dedupe_mapping_table_.DumpStats();
2462 oss << "\nVmap table dedupe: " << dedupe_vmap_table_.DumpStats();
2463 oss << "\nGC map dedupe: " << dedupe_gc_map_.DumpStats();
2464 oss << "\nCFI info dedupe: " << dedupe_cfi_info_.DumpStats();
2465 }
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002466 return oss.str();
2467}
2468
Brian Carlstrom7940e442013-07-12 13:46:57 -07002469} // namespace art