blob: 641d174935e3c56d7bce9f044305eae01ac2ffcf [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
Brian Carlstrom7940e442013-07-12 13:46:57 -070079static double Percentage(size_t x, size_t y) {
80 return 100.0 * (static_cast<double>(x)) / (static_cast<double>(x + y));
81}
82
83static void DumpStat(size_t x, size_t y, const char* str) {
84 if (x == 0 && y == 0) {
85 return;
86 }
Ian Rogerse732ef12013-10-09 15:22:24 -070087 LOG(INFO) << Percentage(x, y) << "% of " << str << " for " << (x + y) << " cases";
Brian Carlstrom7940e442013-07-12 13:46:57 -070088}
89
Vladimir Markof096aad2014-01-23 15:51:58 +000090class CompilerDriver::AOTCompilationStats {
Brian Carlstrom7940e442013-07-12 13:46:57 -070091 public:
92 AOTCompilationStats()
93 : stats_lock_("AOT compilation statistics lock"),
94 types_in_dex_cache_(0), types_not_in_dex_cache_(0),
95 strings_in_dex_cache_(0), strings_not_in_dex_cache_(0),
96 resolved_types_(0), unresolved_types_(0),
97 resolved_instance_fields_(0), unresolved_instance_fields_(0),
98 resolved_local_static_fields_(0), resolved_static_fields_(0), unresolved_static_fields_(0),
99 type_based_devirtualization_(0),
100 safe_casts_(0), not_safe_casts_(0) {
101 for (size_t i = 0; i <= kMaxInvokeType; i++) {
102 resolved_methods_[i] = 0;
103 unresolved_methods_[i] = 0;
104 virtual_made_direct_[i] = 0;
105 direct_calls_to_boot_[i] = 0;
106 direct_methods_to_boot_[i] = 0;
107 }
108 }
109
110 void Dump() {
111 DumpStat(types_in_dex_cache_, types_not_in_dex_cache_, "types known to be in dex cache");
112 DumpStat(strings_in_dex_cache_, strings_not_in_dex_cache_, "strings known to be in dex cache");
113 DumpStat(resolved_types_, unresolved_types_, "types resolved");
114 DumpStat(resolved_instance_fields_, unresolved_instance_fields_, "instance fields resolved");
115 DumpStat(resolved_local_static_fields_ + resolved_static_fields_, unresolved_static_fields_,
116 "static fields resolved");
117 DumpStat(resolved_local_static_fields_, resolved_static_fields_ + unresolved_static_fields_,
118 "static fields local to a class");
119 DumpStat(safe_casts_, not_safe_casts_, "check-casts removed based on type information");
120 // Note, the code below subtracts the stat value so that when added to the stat value we have
121 // 100% of samples. TODO: clean this up.
122 DumpStat(type_based_devirtualization_,
123 resolved_methods_[kVirtual] + unresolved_methods_[kVirtual] +
124 resolved_methods_[kInterface] + unresolved_methods_[kInterface] -
125 type_based_devirtualization_,
126 "virtual/interface calls made direct based on type information");
127
128 for (size_t i = 0; i <= kMaxInvokeType; i++) {
129 std::ostringstream oss;
130 oss << static_cast<InvokeType>(i) << " methods were AOT resolved";
131 DumpStat(resolved_methods_[i], unresolved_methods_[i], oss.str().c_str());
132 if (virtual_made_direct_[i] > 0) {
133 std::ostringstream oss2;
134 oss2 << static_cast<InvokeType>(i) << " methods made direct";
135 DumpStat(virtual_made_direct_[i],
136 resolved_methods_[i] + unresolved_methods_[i] - virtual_made_direct_[i],
137 oss2.str().c_str());
138 }
139 if (direct_calls_to_boot_[i] > 0) {
140 std::ostringstream oss2;
141 oss2 << static_cast<InvokeType>(i) << " method calls are direct into boot";
142 DumpStat(direct_calls_to_boot_[i],
143 resolved_methods_[i] + unresolved_methods_[i] - direct_calls_to_boot_[i],
144 oss2.str().c_str());
145 }
146 if (direct_methods_to_boot_[i] > 0) {
147 std::ostringstream oss2;
148 oss2 << static_cast<InvokeType>(i) << " method calls have methods in boot";
149 DumpStat(direct_methods_to_boot_[i],
150 resolved_methods_[i] + unresolved_methods_[i] - direct_methods_to_boot_[i],
151 oss2.str().c_str());
152 }
153 }
154 }
155
156// Allow lossy statistics in non-debug builds.
157#ifndef NDEBUG
158#define STATS_LOCK() MutexLock mu(Thread::Current(), stats_lock_)
159#else
160#define STATS_LOCK()
161#endif
162
163 void TypeInDexCache() {
164 STATS_LOCK();
165 types_in_dex_cache_++;
166 }
167
168 void TypeNotInDexCache() {
169 STATS_LOCK();
170 types_not_in_dex_cache_++;
171 }
172
173 void StringInDexCache() {
174 STATS_LOCK();
175 strings_in_dex_cache_++;
176 }
177
178 void StringNotInDexCache() {
179 STATS_LOCK();
180 strings_not_in_dex_cache_++;
181 }
182
183 void TypeDoesntNeedAccessCheck() {
184 STATS_LOCK();
185 resolved_types_++;
186 }
187
188 void TypeNeedsAccessCheck() {
189 STATS_LOCK();
190 unresolved_types_++;
191 }
192
193 void ResolvedInstanceField() {
194 STATS_LOCK();
195 resolved_instance_fields_++;
196 }
197
198 void UnresolvedInstanceField() {
199 STATS_LOCK();
200 unresolved_instance_fields_++;
201 }
202
203 void ResolvedLocalStaticField() {
204 STATS_LOCK();
205 resolved_local_static_fields_++;
206 }
207
208 void ResolvedStaticField() {
209 STATS_LOCK();
210 resolved_static_fields_++;
211 }
212
213 void UnresolvedStaticField() {
214 STATS_LOCK();
215 unresolved_static_fields_++;
216 }
217
218 // Indicate that type information from the verifier led to devirtualization.
219 void PreciseTypeDevirtualization() {
220 STATS_LOCK();
221 type_based_devirtualization_++;
222 }
223
224 // Indicate that a method of the given type was resolved at compile time.
225 void ResolvedMethod(InvokeType type) {
226 DCHECK_LE(type, kMaxInvokeType);
227 STATS_LOCK();
228 resolved_methods_[type]++;
229 }
230
231 // Indicate that a method of the given type was unresolved at compile time as it was in an
232 // unknown dex file.
233 void UnresolvedMethod(InvokeType type) {
234 DCHECK_LE(type, kMaxInvokeType);
235 STATS_LOCK();
236 unresolved_methods_[type]++;
237 }
238
239 // Indicate that a type of virtual method dispatch has been converted into a direct method
240 // dispatch.
241 void VirtualMadeDirect(InvokeType type) {
242 DCHECK(type == kVirtual || type == kInterface || type == kSuper);
243 STATS_LOCK();
244 virtual_made_direct_[type]++;
245 }
246
247 // Indicate that a method of the given type was able to call directly into boot.
248 void DirectCallsToBoot(InvokeType type) {
249 DCHECK_LE(type, kMaxInvokeType);
250 STATS_LOCK();
251 direct_calls_to_boot_[type]++;
252 }
253
254 // Indicate that a method of the given type was able to be resolved directly from boot.
255 void DirectMethodsToBoot(InvokeType type) {
256 DCHECK_LE(type, kMaxInvokeType);
257 STATS_LOCK();
258 direct_methods_to_boot_[type]++;
259 }
260
Vladimir Markof096aad2014-01-23 15:51:58 +0000261 void ProcessedInvoke(InvokeType type, int flags) {
262 STATS_LOCK();
263 if (flags == 0) {
264 unresolved_methods_[type]++;
265 } else {
266 DCHECK_NE((flags & kFlagMethodResolved), 0);
267 resolved_methods_[type]++;
268 if ((flags & kFlagVirtualMadeDirect) != 0) {
269 virtual_made_direct_[type]++;
270 if ((flags & kFlagPreciseTypeDevirtualization) != 0) {
271 type_based_devirtualization_++;
272 }
273 } else {
274 DCHECK_EQ((flags & kFlagPreciseTypeDevirtualization), 0);
275 }
276 if ((flags & kFlagDirectCallToBoot) != 0) {
277 direct_calls_to_boot_[type]++;
278 }
279 if ((flags & kFlagDirectMethodToBoot) != 0) {
280 direct_methods_to_boot_[type]++;
281 }
282 }
283 }
284
Brian Carlstrom7940e442013-07-12 13:46:57 -0700285 // A check-cast could be eliminated due to verifier type analysis.
286 void SafeCast() {
287 STATS_LOCK();
288 safe_casts_++;
289 }
290
291 // A check-cast couldn't be eliminated due to verifier type analysis.
292 void NotASafeCast() {
293 STATS_LOCK();
294 not_safe_casts_++;
295 }
296
297 private:
298 Mutex stats_lock_;
299
300 size_t types_in_dex_cache_;
301 size_t types_not_in_dex_cache_;
302
303 size_t strings_in_dex_cache_;
304 size_t strings_not_in_dex_cache_;
305
306 size_t resolved_types_;
307 size_t unresolved_types_;
308
309 size_t resolved_instance_fields_;
310 size_t unresolved_instance_fields_;
311
312 size_t resolved_local_static_fields_;
313 size_t resolved_static_fields_;
314 size_t unresolved_static_fields_;
315 // Type based devirtualization for invoke interface and virtual.
316 size_t type_based_devirtualization_;
317
318 size_t resolved_methods_[kMaxInvokeType + 1];
319 size_t unresolved_methods_[kMaxInvokeType + 1];
320 size_t virtual_made_direct_[kMaxInvokeType + 1];
321 size_t direct_calls_to_boot_[kMaxInvokeType + 1];
322 size_t direct_methods_to_boot_[kMaxInvokeType + 1];
323
324 size_t safe_casts_;
325 size_t not_safe_casts_;
326
327 DISALLOW_COPY_AND_ASSIGN(AOTCompilationStats);
328};
329
Brian Carlstrom7940e442013-07-12 13:46:57 -0700330
331extern "C" art::CompiledMethod* ArtCompileDEX(art::CompilerDriver& compiler,
332 const art::DexFile::CodeItem* code_item,
333 uint32_t access_flags,
334 art::InvokeType invoke_type,
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700335 uint16_t class_def_idx,
Brian Carlstrom7940e442013-07-12 13:46:57 -0700336 uint32_t method_idx,
337 jobject class_loader,
338 const art::DexFile& dex_file);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700339
Brian Carlstrom6449c622014-02-10 23:48:36 -0800340CompilerDriver::CompilerDriver(const CompilerOptions* compiler_options,
341 VerificationResults* verification_results,
Vladimir Marko5816ed42013-11-27 17:04:20 +0000342 DexFileToMethodInlinerMap* method_inliner_map,
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +0000343 Compiler::Kind compiler_kind,
Nicolas Geoffrayf5df8972014-02-14 18:37:08 +0000344 InstructionSet instruction_set,
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700345 const InstructionSetFeatures* instruction_set_features,
Andreas Gampe4bf3ae92014-11-11 13:28:29 -0800346 bool image, std::set<std::string>* image_classes,
347 std::set<std::string>* compiled_classes, size_t thread_count,
David Brazdil866c0312015-01-13 21:21:31 +0000348 bool dump_stats, bool dump_passes,
349 const std::string& dump_cfg_file_name, CumulativeLogger* timer,
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800350 int swap_fd, const std::string& profile_file)
351 : swap_space_(swap_fd == -1 ? nullptr : new SwapSpace(swap_fd, 10 * MB)),
352 swap_space_allocator_(new SwapAllocator<void>(swap_space_.get())),
353 profile_present_(false), compiler_options_(compiler_options),
Brian Carlstrom6449c622014-02-10 23:48:36 -0800354 verification_results_(verification_results),
Vladimir Marko5816ed42013-11-27 17:04:20 +0000355 method_inliner_map_(method_inliner_map),
Ian Rogers72d32622014-05-06 16:20:11 -0700356 compiler_(Compiler::Create(this, compiler_kind)),
Jeff Hao48699fb2015-04-06 14:21:37 -0700357 compiler_kind_(compiler_kind),
Brian Carlstrom7940e442013-07-12 13:46:57 -0700358 instruction_set_(instruction_set),
Dave Allison70202782013-10-22 17:52:19 -0700359 instruction_set_features_(instruction_set_features),
Brian Carlstrom7940e442013-07-12 13:46:57 -0700360 freezing_constructor_lock_("freezing constructor lock"),
361 compiled_classes_lock_("compiled classes lock"),
362 compiled_methods_lock_("compiled method lock"),
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800363 compiled_methods_(MethodTable::key_compare()),
Vladimir Markof4da6752014-08-01 19:04:18 +0100364 non_relative_linker_patch_count_(0u),
Brian Carlstrom7940e442013-07-12 13:46:57 -0700365 image_(image),
366 image_classes_(image_classes),
Andreas Gampe4bf3ae92014-11-11 13:28:29 -0800367 classes_to_compile_(compiled_classes),
Andreas Gampe6cf49e52015-03-05 13:08:45 -0800368 had_hard_verifier_failure_(false),
Brian Carlstrom7940e442013-07-12 13:46:57 -0700369 thread_count_(thread_count),
Brian Carlstrom7940e442013-07-12 13:46:57 -0700370 stats_(new AOTCompilationStats),
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800371 dedupe_enabled_(true),
Brian Carlstrom7940e442013-07-12 13:46:57 -0700372 dump_stats_(dump_stats),
Nicolas Geoffrayea3fa0b2014-02-10 11:59:41 +0000373 dump_passes_(dump_passes),
David Brazdil866c0312015-01-13 21:21:31 +0000374 dump_cfg_file_name_(dump_cfg_file_name),
Nicolas Geoffrayea3fa0b2014-02-10 11:59:41 +0000375 timings_logger_(timer),
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700376 compiler_context_(nullptr),
Andreas Gampe57b34292015-01-14 15:45:59 -0800377 support_boot_image_fixup_(instruction_set != kMips && instruction_set != kMips64),
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800378 dedupe_code_("dedupe code", *swap_space_allocator_),
379 dedupe_src_mapping_table_("dedupe source mapping table", *swap_space_allocator_),
380 dedupe_mapping_table_("dedupe mapping table", *swap_space_allocator_),
381 dedupe_vmap_table_("dedupe vmap table", *swap_space_allocator_),
382 dedupe_gc_map_("dedupe gc map", *swap_space_allocator_),
383 dedupe_cfi_info_("dedupe cfi info", *swap_space_allocator_) {
Brian Carlstrom6449c622014-02-10 23:48:36 -0800384 DCHECK(compiler_options_ != nullptr);
385 DCHECK(verification_results_ != nullptr);
386 DCHECK(method_inliner_map_ != nullptr);
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700387
Sebastien Hertz75021222013-07-16 18:34:50 +0200388 dex_to_dex_compiler_ = reinterpret_cast<DexToDexCompilerFn>(ArtCompileDEX);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700389
Ian Rogers72d32622014-05-06 16:20:11 -0700390 compiler_->Init();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700391
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800392 CHECK_EQ(image_, image_classes_.get() != nullptr);
Mark Mendellae9fd932014-02-10 16:14:35 -0800393
Calin Juravlec1b643c2014-05-30 23:44:11 +0100394 // Read the profile file if one is provided.
395 if (!profile_file.empty()) {
396 profile_present_ = profile_file_.LoadFile(profile_file);
397 if (profile_present_) {
398 LOG(INFO) << "Using profile data form file " << profile_file;
399 } else {
400 LOG(INFO) << "Failed to load profile file " << profile_file;
401 }
402 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700403}
404
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800405SwapVector<uint8_t>* CompilerDriver::DeduplicateCode(const ArrayRef<const uint8_t>& code) {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800406 DCHECK(dedupe_enabled_);
Mathieu Chartier193bad92013-08-29 18:46:00 -0700407 return dedupe_code_.Add(Thread::Current(), code);
408}
409
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800410SwapSrcMap* CompilerDriver::DeduplicateSrcMappingTable(const ArrayRef<SrcMapElem>& src_map) {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800411 DCHECK(dedupe_enabled_);
Yevgeny Roubane3ea8382014-08-08 16:29:38 +0700412 return dedupe_src_mapping_table_.Add(Thread::Current(), src_map);
413}
414
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800415SwapVector<uint8_t>* CompilerDriver::DeduplicateMappingTable(const ArrayRef<const uint8_t>& code) {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800416 DCHECK(dedupe_enabled_);
Mathieu Chartier193bad92013-08-29 18:46:00 -0700417 return dedupe_mapping_table_.Add(Thread::Current(), code);
418}
419
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800420SwapVector<uint8_t>* CompilerDriver::DeduplicateVMapTable(const ArrayRef<const uint8_t>& code) {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800421 DCHECK(dedupe_enabled_);
Mathieu Chartier193bad92013-08-29 18:46:00 -0700422 return dedupe_vmap_table_.Add(Thread::Current(), code);
423}
424
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800425SwapVector<uint8_t>* CompilerDriver::DeduplicateGCMap(const ArrayRef<const uint8_t>& code) {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800426 DCHECK(dedupe_enabled_);
Mathieu Chartier193bad92013-08-29 18:46:00 -0700427 return dedupe_gc_map_.Add(Thread::Current(), code);
428}
429
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800430SwapVector<uint8_t>* CompilerDriver::DeduplicateCFIInfo(const ArrayRef<const uint8_t>& cfi_info) {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800431 DCHECK(dedupe_enabled_);
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800432 return dedupe_cfi_info_.Add(Thread::Current(), cfi_info);
Mark Mendellae9fd932014-02-10 16:14:35 -0800433}
434
Brian Carlstrom7940e442013-07-12 13:46:57 -0700435CompilerDriver::~CompilerDriver() {
436 Thread* self = Thread::Current();
437 {
438 MutexLock mu(self, compiled_classes_lock_);
439 STLDeleteValues(&compiled_classes_);
440 }
441 {
442 MutexLock mu(self, compiled_methods_lock_);
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800443 for (auto& pair : compiled_methods_) {
444 CompiledMethod::ReleaseSwapAllocatedCompiledMethod(this, pair.second);
445 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700446 }
Ian Rogers72d32622014-05-06 16:20:11 -0700447 compiler_->UnInit();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700448}
449
Ian Rogersdd7624d2014-03-14 17:43:00 -0700450#define CREATE_TRAMPOLINE(type, abi, offset) \
Andreas Gampeaf13ad92014-04-11 12:07:48 -0700451 if (Is64BitInstructionSet(instruction_set_)) { \
Ian Rogersdd7624d2014-03-14 17:43:00 -0700452 return CreateTrampoline64(instruction_set_, abi, \
453 type ## _ENTRYPOINT_OFFSET(8, offset)); \
454 } else { \
455 return CreateTrampoline32(instruction_set_, abi, \
456 type ## _ENTRYPOINT_OFFSET(4, offset)); \
457 }
458
Ian Rogers848871b2013-08-05 10:56:33 -0700459const std::vector<uint8_t>* CompilerDriver::CreateInterpreterToInterpreterBridge() const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700460 CREATE_TRAMPOLINE(INTERPRETER, kInterpreterAbi, pInterpreterToInterpreterBridge)
Ian Rogers848871b2013-08-05 10:56:33 -0700461}
462
463const std::vector<uint8_t>* CompilerDriver::CreateInterpreterToCompiledCodeBridge() const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700464 CREATE_TRAMPOLINE(INTERPRETER, kInterpreterAbi, pInterpreterToCompiledCodeBridge)
Ian Rogers848871b2013-08-05 10:56:33 -0700465}
466
467const std::vector<uint8_t>* CompilerDriver::CreateJniDlsymLookup() const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700468 CREATE_TRAMPOLINE(JNI, kJniAbi, pDlsymLookup)
Ian Rogers848871b2013-08-05 10:56:33 -0700469}
470
Andreas Gampe2da88232014-02-27 12:26:20 -0800471const std::vector<uint8_t>* CompilerDriver::CreateQuickGenericJniTrampoline() const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700472 CREATE_TRAMPOLINE(QUICK, kQuickAbi, pQuickGenericJniTrampoline)
Andreas Gampe2da88232014-02-27 12:26:20 -0800473}
474
Jeff Hao88474b42013-10-23 16:24:40 -0700475const std::vector<uint8_t>* CompilerDriver::CreateQuickImtConflictTrampoline() const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700476 CREATE_TRAMPOLINE(QUICK, kQuickAbi, pQuickImtConflictTrampoline)
Jeff Hao88474b42013-10-23 16:24:40 -0700477}
478
Brian Carlstrom7940e442013-07-12 13:46:57 -0700479const std::vector<uint8_t>* CompilerDriver::CreateQuickResolutionTrampoline() const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700480 CREATE_TRAMPOLINE(QUICK, kQuickAbi, pQuickResolutionTrampoline)
Brian Carlstrom7940e442013-07-12 13:46:57 -0700481}
482
Ian Rogers848871b2013-08-05 10:56:33 -0700483const std::vector<uint8_t>* CompilerDriver::CreateQuickToInterpreterBridge() const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700484 CREATE_TRAMPOLINE(QUICK, kQuickAbi, pQuickToInterpreterBridge)
Brian Carlstrom7940e442013-07-12 13:46:57 -0700485}
Ian Rogersdd7624d2014-03-14 17:43:00 -0700486#undef CREATE_TRAMPOLINE
Brian Carlstrom7940e442013-07-12 13:46:57 -0700487
488void CompilerDriver::CompileAll(jobject class_loader,
Brian Carlstrom45602482013-07-21 22:07:55 -0700489 const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -0800490 TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700491 DCHECK(!Runtime::Current()->IsStarted());
Ian Rogers700a4022014-05-19 16:49:03 -0700492 std::unique_ptr<ThreadPool> thread_pool(new ThreadPool("Compiler driver thread pool", thread_count_ - 1));
Andreas Gampe8d295f82015-01-20 14:50:21 -0800493 VLOG(compiler) << "Before precompile " << GetMemoryUsageString(false);
Ian Rogers3d504072014-03-01 09:16:49 -0800494 PreCompile(class_loader, dex_files, thread_pool.get(), timings);
495 Compile(class_loader, dex_files, thread_pool.get(), timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700496 if (dump_stats_) {
497 stats_->Dump();
498 }
499}
500
Mathieu Chartiere86deef2015-03-19 13:43:37 -0700501DexToDexCompilationLevel CompilerDriver::GetDexToDexCompilationlevel(
Mathieu Chartier0cd81352014-05-22 16:48:55 -0700502 Thread* self, Handle<mirror::ClassLoader> class_loader, const DexFile& dex_file,
Mathieu Chartiere86deef2015-03-19 13:43:37 -0700503 const DexFile::ClassDef& class_def) {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800504 auto* const runtime = Runtime::Current();
Mathieu Chartiere86deef2015-03-19 13:43:37 -0700505 if (runtime->UseJit() || GetCompilerOptions().VerifyAtRuntime()) {
506 // Verify at runtime shouldn't dex to dex since we didn't resolve of verify.
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800507 return kDontDexToDexCompile;
508 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700509 const char* descriptor = dex_file.GetClassDescriptor(class_def);
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800510 ClassLinker* class_linker = runtime->GetClassLinker();
Ian Rogers98379392014-02-24 16:53:16 -0800511 mirror::Class* klass = class_linker->FindClass(self, descriptor, class_loader);
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700512 if (klass == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700513 CHECK(self->IsExceptionPending());
514 self->ClearException();
Sebastien Hertz75021222013-07-16 18:34:50 +0200515 return kDontDexToDexCompile;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700516 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700517 // DexToDex at the kOptimize level may introduce quickened opcodes, which replace symbolic
518 // references with actual offsets. We cannot re-verify such instructions.
519 //
520 // We store the verification information in the class status in the oat file, which the linker
521 // can validate (checksums) and use to skip load-time verification. It is thus safe to
522 // optimize when a class has been fully verified before.
523 if (klass->IsVerified()) {
Sebastien Hertz75021222013-07-16 18:34:50 +0200524 // Class is verified so we can enable DEX-to-DEX compilation for performance.
525 return kOptimize;
526 } else if (klass->IsCompileTimeVerified()) {
527 // Class verification has soft-failed. Anyway, ensure at least correctness.
528 DCHECK_EQ(klass->GetStatus(), mirror::Class::kStatusRetryVerificationAtRuntime);
529 return kRequired;
530 } else {
531 // Class verification has failed: do not run DEX-to-DEX compilation.
532 return kDontDexToDexCompile;
533 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700534}
535
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800536void CompilerDriver::CompileOne(Thread* self, mirror::ArtMethod* method, TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700537 DCHECK(!Runtime::Current()->IsStarted());
Brian Carlstrom7940e442013-07-12 13:46:57 -0700538 jobject jclass_loader;
539 const DexFile* dex_file;
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700540 uint16_t class_def_idx;
Ian Rogersef7d42f2014-01-06 12:55:46 -0800541 uint32_t method_idx = method->GetDexMethodIndex();
542 uint32_t access_flags = method->GetAccessFlags();
543 InvokeType invoke_type = method->GetInvokeType();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700544 {
545 ScopedObjectAccessUnchecked soa(self);
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800546 ScopedLocalRef<jobject> local_class_loader(
547 soa.Env(), soa.AddLocalReference<jobject>(method->GetDeclaringClass()->GetClassLoader()));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700548 jclass_loader = soa.Env()->NewGlobalRef(local_class_loader.get());
549 // Find the dex_file
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700550 dex_file = method->GetDexFile();
551 class_def_idx = method->GetClassDefIndex();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700552 }
Ian Rogersef7d42f2014-01-06 12:55:46 -0800553 const DexFile::CodeItem* code_item = dex_file->GetCodeItem(method->GetCodeItemOffset());
Brian Carlstrom7940e442013-07-12 13:46:57 -0700554 self->TransitionFromRunnableToSuspended(kNative);
555
556 std::vector<const DexFile*> dex_files;
557 dex_files.push_back(dex_file);
558
Ian Rogers700a4022014-05-19 16:49:03 -0700559 std::unique_ptr<ThreadPool> thread_pool(new ThreadPool("Compiler driver thread pool", 0U));
Ian Rogers3d504072014-03-01 09:16:49 -0800560 PreCompile(jclass_loader, dex_files, thread_pool.get(), timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700561
Brian Carlstrom7940e442013-07-12 13:46:57 -0700562 // Can we run DEX-to-DEX compiler on this class ?
Sebastien Hertz75021222013-07-16 18:34:50 +0200563 DexToDexCompilationLevel dex_to_dex_compilation_level = kDontDexToDexCompile;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700564 {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800565 ScopedObjectAccess soa(self);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700566 const DexFile::ClassDef& class_def = dex_file->GetClassDef(class_def_idx);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700567 StackHandleScope<1> hs(soa.Self());
568 Handle<mirror::ClassLoader> class_loader(
569 hs.NewHandle(soa.Decode<mirror::ClassLoader*>(jclass_loader)));
Ian Rogers98379392014-02-24 16:53:16 -0800570 dex_to_dex_compilation_level = GetDexToDexCompilationlevel(self, class_loader, *dex_file,
571 class_def);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700572 }
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800573 CompileMethod(self, code_item, access_flags, invoke_type, class_def_idx, method_idx,
574 jclass_loader, *dex_file, dex_to_dex_compilation_level, true);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700575
576 self->GetJniEnv()->DeleteGlobalRef(jclass_loader);
Mathieu Chartier2535abe2015-02-17 10:38:49 -0800577 self->TransitionFromSuspendedToRunnable();
Mathieu Chartier2535abe2015-02-17 10:38:49 -0800578}
579
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800580CompiledMethod* CompilerDriver::CompileMethod(Thread* self, mirror::ArtMethod* method) {
581 const uint32_t method_idx = method->GetDexMethodIndex();
582 const uint32_t access_flags = method->GetAccessFlags();
583 const InvokeType invoke_type = method->GetInvokeType();
584 StackHandleScope<1> hs(self);
585 Handle<mirror::ClassLoader> class_loader(hs.NewHandle(
586 method->GetDeclaringClass()->GetClassLoader()));
587 jobject jclass_loader = class_loader.ToJObject();
588 const DexFile* dex_file = method->GetDexFile();
589 const uint16_t class_def_idx = method->GetClassDefIndex();
590 const DexFile::ClassDef& class_def = dex_file->GetClassDef(class_def_idx);
591 DexToDexCompilationLevel dex_to_dex_compilation_level =
592 GetDexToDexCompilationlevel(self, class_loader, *dex_file, class_def);
593 const DexFile::CodeItem* code_item = dex_file->GetCodeItem(method->GetCodeItemOffset());
594 self->TransitionFromRunnableToSuspended(kNative);
595 CompileMethod(self, code_item, access_flags, invoke_type, class_def_idx, method_idx,
596 jclass_loader, *dex_file, dex_to_dex_compilation_level, true);
597 auto* compiled_method = GetCompiledMethod(MethodReference(dex_file, method_idx));
598 self->TransitionFromSuspendedToRunnable();
599 return compiled_method;
600}
601
Brian Carlstrom7940e442013-07-12 13:46:57 -0700602void CompilerDriver::Resolve(jobject class_loader, const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -0800603 ThreadPool* thread_pool, TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700604 for (size_t i = 0; i != dex_files.size(); ++i) {
605 const DexFile* dex_file = dex_files[i];
Kenny Rootd5185342014-05-13 14:47:05 -0700606 CHECK(dex_file != nullptr);
Andreas Gampede7b4362014-07-28 18:38:57 -0700607 ResolveDexFile(class_loader, *dex_file, dex_files, thread_pool, timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700608 }
609}
610
611void CompilerDriver::PreCompile(jobject class_loader, const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -0800612 ThreadPool* thread_pool, TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700613 LoadImageClasses(timings);
Andreas Gampe8d295f82015-01-20 14:50:21 -0800614 VLOG(compiler) << "LoadImageClasses: " << GetMemoryUsageString(false);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700615
Mathieu Chartiere86deef2015-03-19 13:43:37 -0700616 const bool verification_enabled = compiler_options_->IsVerificationEnabled();
617 const bool never_verify = compiler_options_->NeverVerify();
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700618
Mathieu Chartiere86deef2015-03-19 13:43:37 -0700619 // We need to resolve for never_verify since it needs to run dex to dex to add the
620 // RETURN_VOID_NO_BARRIER.
621 if (never_verify || verification_enabled) {
622 Resolve(class_loader, dex_files, thread_pool, timings);
623 VLOG(compiler) << "Resolve: " << GetMemoryUsageString(false);
624 }
625
626 if (never_verify) {
Mathieu Chartierab972ef2014-12-03 17:38:22 -0800627 VLOG(compiler) << "Verify none mode specified, skipping verification.";
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700628 SetVerified(class_loader, dex_files, thread_pool, timings);
Mathieu Chartiere86deef2015-03-19 13:43:37 -0700629 }
630
631 if (!verification_enabled) {
Jeff Hao4a200f52014-04-01 14:58:49 -0700632 return;
633 }
634
Brian Carlstrom7940e442013-07-12 13:46:57 -0700635 Verify(class_loader, dex_files, thread_pool, timings);
Andreas Gampe8d295f82015-01-20 14:50:21 -0800636 VLOG(compiler) << "Verify: " << GetMemoryUsageString(false);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700637
Andreas Gampe6cf49e52015-03-05 13:08:45 -0800638 if (had_hard_verifier_failure_ && GetCompilerOptions().AbortOnHardVerifierFailure()) {
639 LOG(FATAL) << "Had a hard failure verifying all classes, and was asked to abort in such "
640 << "situations. Please check the log.";
641 }
642
Brian Carlstrom7940e442013-07-12 13:46:57 -0700643 InitializeClasses(class_loader, dex_files, thread_pool, timings);
Andreas Gampe8d295f82015-01-20 14:50:21 -0800644 VLOG(compiler) << "InitializeClasses: " << GetMemoryUsageString(false);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700645
646 UpdateImageClasses(timings);
Andreas Gampe8d295f82015-01-20 14:50:21 -0800647 VLOG(compiler) << "UpdateImageClasses: " << GetMemoryUsageString(false);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700648}
649
Ian Rogersdfb325e2013-10-30 01:00:44 -0700650bool CompilerDriver::IsImageClass(const char* descriptor) const {
Ian Rogerse6bb3b22013-08-19 21:51:45 -0700651 if (!IsImage()) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700652 return true;
Ian Rogerse6bb3b22013-08-19 21:51:45 -0700653 } else {
Ian Rogersdfb325e2013-10-30 01:00:44 -0700654 return image_classes_->find(descriptor) != image_classes_->end();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700655 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700656}
657
Andreas Gampe4bf3ae92014-11-11 13:28:29 -0800658bool CompilerDriver::IsClassToCompile(const char* descriptor) const {
659 if (!IsImage()) {
660 return true;
661 } else {
662 if (classes_to_compile_ == nullptr) {
663 return true;
664 }
665 return classes_to_compile_->find(descriptor) != classes_to_compile_->end();
666 }
667}
668
Ian Rogerse94652f2014-12-02 11:13:19 -0800669static void ResolveExceptionsForMethod(MutableHandle<mirror::ArtMethod> method_handle,
Ian Rogers700a4022014-05-19 16:49:03 -0700670 std::set<std::pair<uint16_t, const DexFile*>>& exceptions_to_resolve)
Brian Carlstrom7940e442013-07-12 13:46:57 -0700671 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogerse94652f2014-12-02 11:13:19 -0800672 const DexFile::CodeItem* code_item = method_handle->GetCodeItem();
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700673 if (code_item == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700674 return; // native or abstract method
675 }
676 if (code_item->tries_size_ == 0) {
677 return; // nothing to process
678 }
Ian Rogers13735952014-10-08 12:43:28 -0700679 const uint8_t* encoded_catch_handler_list = DexFile::GetCatchHandlerData(*code_item, 0);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700680 size_t num_encoded_catch_handlers = DecodeUnsignedLeb128(&encoded_catch_handler_list);
681 for (size_t i = 0; i < num_encoded_catch_handlers; i++) {
682 int32_t encoded_catch_handler_size = DecodeSignedLeb128(&encoded_catch_handler_list);
683 bool has_catch_all = false;
684 if (encoded_catch_handler_size <= 0) {
685 encoded_catch_handler_size = -encoded_catch_handler_size;
686 has_catch_all = true;
687 }
688 for (int32_t j = 0; j < encoded_catch_handler_size; j++) {
689 uint16_t encoded_catch_handler_handlers_type_idx =
690 DecodeUnsignedLeb128(&encoded_catch_handler_list);
691 // Add to set of types to resolve if not already in the dex cache resolved types
Ian Rogerse94652f2014-12-02 11:13:19 -0800692 if (!method_handle->IsResolvedTypeIdx(encoded_catch_handler_handlers_type_idx)) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700693 exceptions_to_resolve.insert(
694 std::pair<uint16_t, const DexFile*>(encoded_catch_handler_handlers_type_idx,
Ian Rogerse94652f2014-12-02 11:13:19 -0800695 method_handle->GetDexFile()));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700696 }
697 // ignore address associated with catch handler
698 DecodeUnsignedLeb128(&encoded_catch_handler_list);
699 }
700 if (has_catch_all) {
701 // ignore catch all address
702 DecodeUnsignedLeb128(&encoded_catch_handler_list);
703 }
704 }
705}
706
707static bool ResolveCatchBlockExceptionsClassVisitor(mirror::Class* c, void* arg)
708 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers700a4022014-05-19 16:49:03 -0700709 std::set<std::pair<uint16_t, const DexFile*>>* exceptions_to_resolve =
710 reinterpret_cast<std::set<std::pair<uint16_t, const DexFile*>>*>(arg);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700711 StackHandleScope<1> hs(Thread::Current());
Ian Rogerse94652f2014-12-02 11:13:19 -0800712 MutableHandle<mirror::ArtMethod> method_handle(hs.NewHandle<mirror::ArtMethod>(nullptr));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700713 for (size_t i = 0; i < c->NumVirtualMethods(); ++i) {
Ian Rogerse94652f2014-12-02 11:13:19 -0800714 method_handle.Assign(c->GetVirtualMethod(i));
715 ResolveExceptionsForMethod(method_handle, *exceptions_to_resolve);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700716 }
717 for (size_t i = 0; i < c->NumDirectMethods(); ++i) {
Ian Rogerse94652f2014-12-02 11:13:19 -0800718 method_handle.Assign(c->GetDirectMethod(i));
719 ResolveExceptionsForMethod(method_handle, *exceptions_to_resolve);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700720 }
721 return true;
722}
723
724static bool RecordImageClassesVisitor(mirror::Class* klass, void* arg)
725 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers1ff3c982014-08-12 02:30:58 -0700726 std::set<std::string>* image_classes = reinterpret_cast<std::set<std::string>*>(arg);
727 std::string temp;
728 image_classes->insert(klass->GetDescriptor(&temp));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700729 return true;
730}
731
732// Make a list of descriptors for classes to include in the image
Ian Rogers3d504072014-03-01 09:16:49 -0800733void CompilerDriver::LoadImageClasses(TimingLogger* timings)
Brian Carlstrom7940e442013-07-12 13:46:57 -0700734 LOCKS_EXCLUDED(Locks::mutator_lock_) {
Kenny Rootd5185342014-05-13 14:47:05 -0700735 CHECK(timings != nullptr);
Ian Rogerse6bb3b22013-08-19 21:51:45 -0700736 if (!IsImage()) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700737 return;
738 }
739
Mathieu Chartierf5997b42014-06-20 10:37:54 -0700740 TimingLogger::ScopedTiming t("LoadImageClasses", timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700741 // Make a first class to load all classes explicitly listed in the file
742 Thread* self = Thread::Current();
743 ScopedObjectAccess soa(self);
744 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Kenny Rootd5185342014-05-13 14:47:05 -0700745 CHECK(image_classes_.get() != nullptr);
Mathieu Chartier02e25112013-08-14 16:14:24 -0700746 for (auto it = image_classes_->begin(), end = image_classes_->end(); it != end;) {
Vladimir Markoe9c36b32013-11-21 15:49:16 +0000747 const std::string& descriptor(*it);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700748 StackHandleScope<1> hs(self);
749 Handle<mirror::Class> klass(
750 hs.NewHandle(class_linker->FindSystemClass(self, descriptor.c_str())));
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700751 if (klass.Get() == nullptr) {
Ian Rogerse6bb3b22013-08-19 21:51:45 -0700752 VLOG(compiler) << "Failed to find class " << descriptor;
Vladimir Markoe9c36b32013-11-21 15:49:16 +0000753 image_classes_->erase(it++);
Ian Rogersa436fde2013-08-27 23:34:06 -0700754 self->ClearException();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700755 } else {
756 ++it;
757 }
758 }
759
760 // Resolve exception classes referenced by the loaded classes. The catch logic assumes
761 // exceptions are resolved by the verifier when there is a catch block in an interested method.
762 // Do this here so that exception classes appear to have been specified image classes.
Ian Rogers700a4022014-05-19 16:49:03 -0700763 std::set<std::pair<uint16_t, const DexFile*>> unresolved_exception_types;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700764 StackHandleScope<1> hs(self);
765 Handle<mirror::Class> java_lang_Throwable(
766 hs.NewHandle(class_linker->FindSystemClass(self, "Ljava/lang/Throwable;")));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700767 do {
768 unresolved_exception_types.clear();
769 class_linker->VisitClasses(ResolveCatchBlockExceptionsClassVisitor,
770 &unresolved_exception_types);
Mathieu Chartier02e25112013-08-14 16:14:24 -0700771 for (const std::pair<uint16_t, const DexFile*>& exception_type : unresolved_exception_types) {
772 uint16_t exception_type_idx = exception_type.first;
773 const DexFile* dex_file = exception_type.second;
Andreas Gampe277ccbd2014-11-03 21:36:10 -0800774 StackHandleScope<2> hs2(self);
775 Handle<mirror::DexCache> dex_cache(hs2.NewHandle(class_linker->FindDexCache(*dex_file)));
776 Handle<mirror::Class> klass(hs2.NewHandle(
Mathieu Chartier0cd81352014-05-22 16:48:55 -0700777 class_linker->ResolveType(*dex_file, exception_type_idx, dex_cache,
778 NullHandle<mirror::ClassLoader>())));
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700779 if (klass.Get() == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700780 const DexFile::TypeId& type_id = dex_file->GetTypeId(exception_type_idx);
781 const char* descriptor = dex_file->GetTypeDescriptor(type_id);
782 LOG(FATAL) << "Failed to resolve class " << descriptor;
783 }
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700784 DCHECK(java_lang_Throwable->IsAssignableFrom(klass.Get()));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700785 }
786 // Resolving exceptions may load classes that reference more exceptions, iterate until no
787 // more are found
788 } while (!unresolved_exception_types.empty());
789
790 // We walk the roots looking for classes so that we'll pick up the
791 // above classes plus any classes them depend on such super
792 // classes, interfaces, and the required ClassLinker roots.
793 class_linker->VisitClasses(RecordImageClassesVisitor, image_classes_.get());
794
795 CHECK_NE(image_classes_->size(), 0U);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700796}
797
Ian Rogers1ff3c982014-08-12 02:30:58 -0700798static void MaybeAddToImageClasses(Handle<mirror::Class> c, std::set<std::string>* image_classes)
Brian Carlstrom7940e442013-07-12 13:46:57 -0700799 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartierf8322842014-05-16 10:59:25 -0700800 Thread* self = Thread::Current();
801 StackHandleScope<1> hs(self);
802 // Make a copy of the handle so that we don't clobber it doing Assign.
Andreas Gampe5a4b8a22014-09-11 08:30:08 -0700803 MutableHandle<mirror::Class> klass(hs.NewHandle(c.Get()));
Ian Rogers1ff3c982014-08-12 02:30:58 -0700804 std::string temp;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700805 while (!klass->IsObjectClass()) {
Ian Rogers1ff3c982014-08-12 02:30:58 -0700806 const char* descriptor = klass->GetDescriptor(&temp);
807 std::pair<std::set<std::string>::iterator, bool> result = image_classes->insert(descriptor);
808 if (!result.second) { // Previously inserted.
809 break;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700810 }
Ian Rogers1ff3c982014-08-12 02:30:58 -0700811 VLOG(compiler) << "Adding " << descriptor << " to image classes";
Mathieu Chartierf8322842014-05-16 10:59:25 -0700812 for (size_t i = 0; i < klass->NumDirectInterfaces(); ++i) {
Andreas Gampe277ccbd2014-11-03 21:36:10 -0800813 StackHandleScope<1> hs2(self);
814 MaybeAddToImageClasses(hs2.NewHandle(mirror::Class::GetDirectInterface(self, klass, i)),
Mathieu Chartierf8322842014-05-16 10:59:25 -0700815 image_classes);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700816 }
817 if (klass->IsArrayClass()) {
Andreas Gampe277ccbd2014-11-03 21:36:10 -0800818 StackHandleScope<1> hs2(self);
819 MaybeAddToImageClasses(hs2.NewHandle(klass->GetComponentType()), image_classes);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700820 }
Mathieu Chartierf8322842014-05-16 10:59:25 -0700821 klass.Assign(klass->GetSuperClass());
Brian Carlstrom7940e442013-07-12 13:46:57 -0700822 }
823}
824
Andreas Gampeb0f370e2014-09-25 22:51:40 -0700825// Keeps all the data for the update together. Also doubles as the reference visitor.
826// Note: we can use object pointers because we suspend all threads.
827class ClinitImageUpdate {
828 public:
829 static ClinitImageUpdate* Create(std::set<std::string>* image_class_descriptors, Thread* self,
830 ClassLinker* linker, std::string* error_msg) {
831 std::unique_ptr<ClinitImageUpdate> res(new ClinitImageUpdate(image_class_descriptors, self,
832 linker));
833 if (res->art_method_class_ == nullptr) {
834 *error_msg = "Could not find ArtMethod class.";
835 return nullptr;
836 } else if (res->dex_cache_class_ == nullptr) {
837 *error_msg = "Could not find DexCache class.";
838 return nullptr;
839 }
840
841 return res.release();
842 }
843
844 ~ClinitImageUpdate() {
845 // Allow others to suspend again.
846 self_->EndAssertNoThreadSuspension(old_cause_);
847 }
848
849 // Visitor for VisitReferences.
850 void operator()(mirror::Object* object, MemberOffset field_offset, bool /* is_static */) const
851 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
852 mirror::Object* ref = object->GetFieldObject<mirror::Object>(field_offset);
853 if (ref != nullptr) {
854 VisitClinitClassesObject(ref);
855 }
856 }
857
858 // java.lang.Reference visitor for VisitReferences.
Andreas Gampedc8b63c2014-12-02 14:39:52 -0800859 void operator()(mirror::Class* /* klass */, mirror::Reference* /* ref */) const {
Andreas Gampeb0f370e2014-09-25 22:51:40 -0700860 }
861
862 void Walk() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
863 // Use the initial classes as roots for a search.
864 for (mirror::Class* klass_root : image_classes_) {
865 VisitClinitClassesObject(klass_root);
866 }
867 }
868
869 private:
870 ClinitImageUpdate(std::set<std::string>* image_class_descriptors, Thread* self,
871 ClassLinker* linker)
872 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) :
873 image_class_descriptors_(image_class_descriptors), self_(self) {
874 CHECK(linker != nullptr);
875 CHECK(image_class_descriptors != nullptr);
876
877 // Make sure nobody interferes with us.
878 old_cause_ = self->StartAssertNoThreadSuspension("Boot image closure");
879
880 // Find the interesting classes.
Andreas Gampedc8b63c2014-12-02 14:39:52 -0800881 art_method_class_ = linker->LookupClass(self, "Ljava/lang/reflect/ArtMethod;",
882 ComputeModifiedUtf8Hash("Ljava/lang/reflect/ArtMethod;"), nullptr);
883 dex_cache_class_ = linker->LookupClass(self, "Ljava/lang/DexCache;",
884 ComputeModifiedUtf8Hash("Ljava/lang/DexCache;"), nullptr);
Andreas Gampeb0f370e2014-09-25 22:51:40 -0700885
886 // Find all the already-marked classes.
887 WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
888 linker->VisitClasses(FindImageClasses, this);
889 }
890
891 static bool FindImageClasses(mirror::Class* klass, void* arg)
892 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
893 ClinitImageUpdate* data = reinterpret_cast<ClinitImageUpdate*>(arg);
894 std::string temp;
895 const char* name = klass->GetDescriptor(&temp);
896 if (data->image_class_descriptors_->find(name) != data->image_class_descriptors_->end()) {
897 data->image_classes_.push_back(klass);
Andreas Gampe4d4eff72015-03-04 22:46:35 -0800898 } else {
899 // Check whether it is initialized and has a clinit. They must be kept, too.
900 if (klass->IsInitialized() && klass->FindClassInitializer() != nullptr) {
901 data->image_classes_.push_back(klass);
902 }
Andreas Gampeb0f370e2014-09-25 22:51:40 -0700903 }
904
905 return true;
906 }
907
908 void VisitClinitClassesObject(mirror::Object* object) const
909 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
910 DCHECK(object != nullptr);
911 if (marked_objects_.find(object) != marked_objects_.end()) {
912 // Already processed.
913 return;
914 }
915
916 // Mark it.
917 marked_objects_.insert(object);
918
919 if (object->IsClass()) {
920 // If it is a class, add it.
921 StackHandleScope<1> hs(self_);
922 MaybeAddToImageClasses(hs.NewHandle(object->AsClass()), image_class_descriptors_);
923 } else {
924 // Else visit the object's class.
925 VisitClinitClassesObject(object->GetClass());
926 }
927
928 // If it is not a dex cache or an ArtMethod, visit all references.
929 mirror::Class* klass = object->GetClass();
930 if (klass != art_method_class_ && klass != dex_cache_class_) {
931 object->VisitReferences<false /* visit class */>(*this, *this);
932 }
933 }
934
935 mutable std::unordered_set<mirror::Object*> marked_objects_;
936 std::set<std::string>* const image_class_descriptors_;
937 std::vector<mirror::Class*> image_classes_;
938 const mirror::Class* art_method_class_;
939 const mirror::Class* dex_cache_class_;
940 Thread* const self_;
941 const char* old_cause_;
942
943 DISALLOW_COPY_AND_ASSIGN(ClinitImageUpdate);
944};
Brian Carlstrom7940e442013-07-12 13:46:57 -0700945
Ian Rogers3d504072014-03-01 09:16:49 -0800946void CompilerDriver::UpdateImageClasses(TimingLogger* timings) {
Ian Rogerse6bb3b22013-08-19 21:51:45 -0700947 if (IsImage()) {
Mathieu Chartierf5997b42014-06-20 10:37:54 -0700948 TimingLogger::ScopedTiming t("UpdateImageClasses", timings);
Andreas Gampeb0f370e2014-09-25 22:51:40 -0700949
950 Runtime* current = Runtime::Current();
951
952 // Suspend all threads.
Mathieu Chartierbf9fc582015-03-13 17:21:25 -0700953 current->GetThreadList()->SuspendAll(__FUNCTION__);
Andreas Gampeb0f370e2014-09-25 22:51:40 -0700954
955 std::string error_msg;
956 std::unique_ptr<ClinitImageUpdate> update(ClinitImageUpdate::Create(image_classes_.get(),
957 Thread::Current(),
958 current->GetClassLinker(),
959 &error_msg));
960 CHECK(update.get() != nullptr) << error_msg; // TODO: Soft failure?
961
962 // Do the marking.
963 update->Walk();
964
965 // Resume threads.
966 current->GetThreadList()->ResumeAll();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700967 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700968}
969
Mathieu Chartier590fee92013-09-13 13:46:47 -0700970bool CompilerDriver::CanAssumeTypeIsPresentInDexCache(const DexFile& dex_file, uint32_t type_idx) {
Ian Rogersfc0e94b2013-09-23 23:51:32 -0700971 if (IsImage() &&
Ian Rogersdfb325e2013-10-30 01:00:44 -0700972 IsImageClass(dex_file.StringDataByIdx(dex_file.GetTypeId(type_idx).descriptor_idx_))) {
Andreas Gampe58a5af82014-07-31 16:23:49 -0700973 {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700974 ScopedObjectAccess soa(Thread::Current());
975 mirror::DexCache* dex_cache = Runtime::Current()->GetClassLinker()->FindDexCache(dex_file);
976 mirror::Class* resolved_class = dex_cache->GetResolvedType(type_idx);
Andreas Gampe58a5af82014-07-31 16:23:49 -0700977 if (resolved_class == nullptr) {
978 // Erroneous class.
979 stats_->TypeNotInDexCache();
980 return false;
981 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700982 }
983 stats_->TypeInDexCache();
984 return true;
985 } else {
986 stats_->TypeNotInDexCache();
987 return false;
988 }
989}
990
991bool CompilerDriver::CanAssumeStringIsPresentInDexCache(const DexFile& dex_file,
992 uint32_t string_idx) {
993 // See also Compiler::ResolveDexFile
994
995 bool result = false;
996 if (IsImage()) {
997 // We resolve all const-string strings when building for the image.
998 ScopedObjectAccess soa(Thread::Current());
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700999 StackHandleScope<1> hs(soa.Self());
1000 Handle<mirror::DexCache> dex_cache(
1001 hs.NewHandle(Runtime::Current()->GetClassLinker()->FindDexCache(dex_file)));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001002 Runtime::Current()->GetClassLinker()->ResolveString(dex_file, string_idx, dex_cache);
1003 result = true;
1004 }
1005 if (result) {
1006 stats_->StringInDexCache();
1007 } else {
1008 stats_->StringNotInDexCache();
1009 }
1010 return result;
1011}
1012
1013bool CompilerDriver::CanAccessTypeWithoutChecks(uint32_t referrer_idx, const DexFile& dex_file,
1014 uint32_t type_idx,
1015 bool* type_known_final, bool* type_known_abstract,
1016 bool* equals_referrers_class) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001017 if (type_known_final != nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001018 *type_known_final = false;
1019 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001020 if (type_known_abstract != nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001021 *type_known_abstract = false;
1022 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001023 if (equals_referrers_class != nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001024 *equals_referrers_class = false;
1025 }
1026 ScopedObjectAccess soa(Thread::Current());
1027 mirror::DexCache* dex_cache = Runtime::Current()->GetClassLinker()->FindDexCache(dex_file);
1028 // Get type from dex cache assuming it was populated by the verifier
1029 mirror::Class* resolved_class = dex_cache->GetResolvedType(type_idx);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001030 if (resolved_class == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001031 stats_->TypeNeedsAccessCheck();
1032 return false; // Unknown class needs access checks.
1033 }
1034 const DexFile::MethodId& method_id = dex_file.GetMethodId(referrer_idx);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001035 if (equals_referrers_class != nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001036 *equals_referrers_class = (method_id.class_idx_ == type_idx);
1037 }
1038 mirror::Class* referrer_class = dex_cache->GetResolvedType(method_id.class_idx_);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001039 if (referrer_class == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001040 stats_->TypeNeedsAccessCheck();
1041 return false; // Incomplete referrer knowledge needs access check.
1042 }
1043 // Perform access check, will return true if access is ok or false if we're going to have to
1044 // check this at runtime (for example for class loaders).
1045 bool result = referrer_class->CanAccess(resolved_class);
1046 if (result) {
1047 stats_->TypeDoesntNeedAccessCheck();
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001048 if (type_known_final != nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001049 *type_known_final = resolved_class->IsFinal() && !resolved_class->IsArrayClass();
1050 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001051 if (type_known_abstract != nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001052 *type_known_abstract = resolved_class->IsAbstract() && !resolved_class->IsArrayClass();
1053 }
1054 } else {
1055 stats_->TypeNeedsAccessCheck();
1056 }
1057 return result;
1058}
1059
1060bool CompilerDriver::CanAccessInstantiableTypeWithoutChecks(uint32_t referrer_idx,
1061 const DexFile& dex_file,
1062 uint32_t type_idx) {
1063 ScopedObjectAccess soa(Thread::Current());
1064 mirror::DexCache* dex_cache = Runtime::Current()->GetClassLinker()->FindDexCache(dex_file);
1065 // Get type from dex cache assuming it was populated by the verifier.
1066 mirror::Class* resolved_class = dex_cache->GetResolvedType(type_idx);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001067 if (resolved_class == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001068 stats_->TypeNeedsAccessCheck();
1069 return false; // Unknown class needs access checks.
1070 }
1071 const DexFile::MethodId& method_id = dex_file.GetMethodId(referrer_idx);
1072 mirror::Class* referrer_class = dex_cache->GetResolvedType(method_id.class_idx_);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001073 if (referrer_class == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001074 stats_->TypeNeedsAccessCheck();
1075 return false; // Incomplete referrer knowledge needs access check.
1076 }
1077 // Perform access and instantiable checks, will return true if access is ok or false if we're
1078 // going to have to check this at runtime (for example for class loaders).
1079 bool result = referrer_class->CanAccess(resolved_class) && resolved_class->IsInstantiable();
1080 if (result) {
1081 stats_->TypeDoesntNeedAccessCheck();
1082 } else {
1083 stats_->TypeNeedsAccessCheck();
1084 }
1085 return result;
1086}
1087
Hiroshi Yamauchibe1ca552014-01-15 11:46:48 -08001088bool CompilerDriver::CanEmbedTypeInCode(const DexFile& dex_file, uint32_t type_idx,
1089 bool* is_type_initialized, bool* use_direct_type_ptr,
Mathieu Chartier8668c3c2014-04-24 16:48:11 -07001090 uintptr_t* direct_type_ptr, bool* out_is_finalizable) {
Hiroshi Yamauchibe1ca552014-01-15 11:46:48 -08001091 ScopedObjectAccess soa(Thread::Current());
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08001092 Runtime* runtime = Runtime::Current();
1093 mirror::DexCache* dex_cache = runtime->GetClassLinker()->FindDexCache(dex_file);
Hiroshi Yamauchibe1ca552014-01-15 11:46:48 -08001094 mirror::Class* resolved_class = dex_cache->GetResolvedType(type_idx);
1095 if (resolved_class == nullptr) {
1096 return false;
1097 }
Igor Murashkind6dee672014-10-16 18:36:16 -07001098 if (GetCompilerOptions().GetCompilePic()) {
1099 // Do not allow a direct class pointer to be used when compiling for position-independent
1100 return false;
1101 }
Mathieu Chartier8668c3c2014-04-24 16:48:11 -07001102 *out_is_finalizable = resolved_class->IsFinalizable();
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08001103 gc::Heap* heap = runtime->GetHeap();
1104 const bool compiling_boot = heap->IsCompilingBoot();
Alex Light6e183f22014-07-18 14:57:04 -07001105 const bool support_boot_image_fixup = GetSupportBootImageFixup();
Hiroshi Yamauchibe1ca552014-01-15 11:46:48 -08001106 if (compiling_boot) {
1107 // boot -> boot class pointers.
1108 // True if the class is in the image at boot compiling time.
1109 const bool is_image_class = IsImage() && IsImageClass(
1110 dex_file.StringDataByIdx(dex_file.GetTypeId(type_idx).descriptor_idx_));
1111 // True if pc relative load works.
Hiroshi Yamauchibe1ca552014-01-15 11:46:48 -08001112 if (is_image_class && support_boot_image_fixup) {
1113 *is_type_initialized = resolved_class->IsInitialized();
1114 *use_direct_type_ptr = false;
1115 *direct_type_ptr = 0;
1116 return true;
1117 } else {
1118 return false;
1119 }
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08001120 } else if (runtime->UseJit() && !heap->IsMovableObject(resolved_class)) {
1121 *is_type_initialized = resolved_class->IsInitialized();
1122 // If the class may move around, then don't embed it as a direct pointer.
1123 *use_direct_type_ptr = true;
1124 *direct_type_ptr = reinterpret_cast<uintptr_t>(resolved_class);
1125 return true;
Hiroshi Yamauchibe1ca552014-01-15 11:46:48 -08001126 } else {
1127 // True if the class is in the image at app compiling time.
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08001128 const bool class_in_image = heap->FindSpaceFromObject(resolved_class, false)->IsImageSpace();
Alex Light6e183f22014-07-18 14:57:04 -07001129 if (class_in_image && support_boot_image_fixup) {
Hiroshi Yamauchibe1ca552014-01-15 11:46:48 -08001130 // boot -> app class pointers.
1131 *is_type_initialized = resolved_class->IsInitialized();
Alex Lighta59dd802014-07-02 16:28:08 -07001132 // TODO This is somewhat hacky. We should refactor all of this invoke codepath.
1133 *use_direct_type_ptr = !GetCompilerOptions().GetIncludePatchInformation();
Hiroshi Yamauchibe1ca552014-01-15 11:46:48 -08001134 *direct_type_ptr = reinterpret_cast<uintptr_t>(resolved_class);
1135 return true;
1136 } else {
1137 // app -> app class pointers.
1138 // Give up because app does not have an image and class
1139 // isn't created at compile time. TODO: implement this
1140 // if/when each app gets an image.
1141 return false;
1142 }
1143 }
1144}
1145
Fred Shihe7f82e22014-08-06 10:46:37 -07001146bool CompilerDriver::CanEmbedReferenceTypeInCode(ClassReference* ref,
1147 bool* use_direct_ptr,
1148 uintptr_t* direct_type_ptr) {
1149 CHECK(ref != nullptr);
1150 CHECK(use_direct_ptr != nullptr);
1151 CHECK(direct_type_ptr != nullptr);
1152
1153 ScopedObjectAccess soa(Thread::Current());
1154 mirror::Class* reference_class = mirror::Reference::GetJavaLangRefReference();
Andreas Gampe928f72b2014-09-09 19:53:48 -07001155 bool is_initialized = false;
Fred Shihe7f82e22014-08-06 10:46:37 -07001156 bool unused_finalizable;
1157 // Make sure we have a finished Reference class object before attempting to use it.
1158 if (!CanEmbedTypeInCode(*reference_class->GetDexCache()->GetDexFile(),
1159 reference_class->GetDexTypeIndex(), &is_initialized,
1160 use_direct_ptr, direct_type_ptr, &unused_finalizable) ||
1161 !is_initialized) {
1162 return false;
1163 }
1164 ref->first = &reference_class->GetDexFile();
1165 ref->second = reference_class->GetDexClassDefIndex();
1166 return true;
1167}
1168
1169uint32_t CompilerDriver::GetReferenceSlowFlagOffset() const {
1170 ScopedObjectAccess soa(Thread::Current());
1171 mirror::Class* klass = mirror::Reference::GetJavaLangRefReference();
1172 DCHECK(klass->IsInitialized());
1173 return klass->GetSlowPathFlagOffset().Uint32Value();
1174}
1175
1176uint32_t CompilerDriver::GetReferenceDisableFlagOffset() const {
1177 ScopedObjectAccess soa(Thread::Current());
1178 mirror::Class* klass = mirror::Reference::GetJavaLangRefReference();
1179 DCHECK(klass->IsInitialized());
1180 return klass->GetDisableIntrinsicFlagOffset().Uint32Value();
1181}
1182
Vladimir Marko20f85592015-03-19 10:07:02 +00001183DexCacheArraysLayout CompilerDriver::GetDexCacheArraysLayout(const DexFile* dex_file) {
1184 // Currently only image dex caches have fixed array layout.
1185 return IsImage() && GetSupportBootImageFixup()
Mathieu Chartierc7853442015-03-27 14:35:38 -07001186 ? DexCacheArraysLayout(GetInstructionSetPointerSize(instruction_set_), dex_file)
Vladimir Marko20f85592015-03-19 10:07:02 +00001187 : DexCacheArraysLayout();
1188}
1189
Vladimir Markobe0e5462014-02-26 11:24:15 +00001190void CompilerDriver::ProcessedInstanceField(bool resolved) {
1191 if (!resolved) {
1192 stats_->UnresolvedInstanceField();
1193 } else {
1194 stats_->ResolvedInstanceField();
1195 }
1196}
1197
1198void CompilerDriver::ProcessedStaticField(bool resolved, bool local) {
1199 if (!resolved) {
1200 stats_->UnresolvedStaticField();
1201 } else if (local) {
1202 stats_->ResolvedLocalStaticField();
1203 } else {
1204 stats_->ResolvedStaticField();
1205 }
1206}
1207
Vladimir Markof096aad2014-01-23 15:51:58 +00001208void CompilerDriver::ProcessedInvoke(InvokeType invoke_type, int flags) {
1209 stats_->ProcessedInvoke(invoke_type, flags);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001210}
1211
Mathieu Chartierc7853442015-03-27 14:35:38 -07001212ArtField* CompilerDriver::ComputeInstanceFieldInfo(uint32_t field_idx,
1213 const DexCompilationUnit* mUnit, bool is_put,
1214 const ScopedObjectAccess& soa) {
Vladimir Markobe0e5462014-02-26 11:24:15 +00001215 // Try to resolve the field and compiling method's class.
Mathieu Chartierc7853442015-03-27 14:35:38 -07001216 ArtField* resolved_field;
Vladimir Markobe0e5462014-02-26 11:24:15 +00001217 mirror::Class* referrer_class;
1218 mirror::DexCache* dex_cache;
1219 {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001220 StackHandleScope<3> hs(soa.Self());
1221 Handle<mirror::DexCache> dex_cache_handle(
1222 hs.NewHandle(mUnit->GetClassLinker()->FindDexCache(*mUnit->GetDexFile())));
1223 Handle<mirror::ClassLoader> class_loader_handle(
1224 hs.NewHandle(soa.Decode<mirror::ClassLoader*>(mUnit->GetClassLoader())));
Mathieu Chartierc7853442015-03-27 14:35:38 -07001225 resolved_field =
1226 ResolveField(soa, dex_cache_handle, class_loader_handle, mUnit, field_idx, false);
1227 referrer_class = resolved_field != nullptr
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001228 ? ResolveCompilingMethodsClass(soa, dex_cache_handle, class_loader_handle, mUnit) : nullptr;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001229 dex_cache = dex_cache_handle.Get();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001230 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001231 bool can_link = false;
Vladimir Markobe0e5462014-02-26 11:24:15 +00001232 if (resolved_field != nullptr && referrer_class != nullptr) {
Vladimir Markobe0e5462014-02-26 11:24:15 +00001233 std::pair<bool, bool> fast_path = IsFastInstanceField(
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001234 dex_cache, referrer_class, resolved_field, field_idx);
1235 can_link = is_put ? fast_path.second : fast_path.first;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001236 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001237 ProcessedInstanceField(can_link);
1238 return can_link ? resolved_field : nullptr;
1239}
1240
1241bool CompilerDriver::ComputeInstanceFieldInfo(uint32_t field_idx, const DexCompilationUnit* mUnit,
1242 bool is_put, MemberOffset* field_offset,
1243 bool* is_volatile) {
1244 ScopedObjectAccess soa(Thread::Current());
Mathieu Chartierc7853442015-03-27 14:35:38 -07001245 ArtField* resolved_field = ComputeInstanceFieldInfo(field_idx, mUnit, is_put, soa);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001246
Mathieu Chartierc7853442015-03-27 14:35:38 -07001247 if (resolved_field == nullptr) {
Vladimir Markobe0e5462014-02-26 11:24:15 +00001248 // Conservative defaults.
1249 *is_volatile = true;
1250 *field_offset = MemberOffset(static_cast<size_t>(-1));
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001251 return false;
1252 } else {
1253 *is_volatile = resolved_field->IsVolatile();
1254 *field_offset = resolved_field->GetOffset();
1255 return true;
Vladimir Markobe0e5462014-02-26 11:24:15 +00001256 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001257}
1258
1259bool CompilerDriver::ComputeStaticFieldInfo(uint32_t field_idx, const DexCompilationUnit* mUnit,
Vladimir Markobe0e5462014-02-26 11:24:15 +00001260 bool is_put, MemberOffset* field_offset,
1261 uint32_t* storage_index, bool* is_referrers_class,
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01001262 bool* is_volatile, bool* is_initialized,
1263 Primitive::Type* type) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001264 ScopedObjectAccess soa(Thread::Current());
Vladimir Markobe0e5462014-02-26 11:24:15 +00001265 // Try to resolve the field and compiling method's class.
Mathieu Chartierc7853442015-03-27 14:35:38 -07001266 ArtField* resolved_field;
Vladimir Markobe0e5462014-02-26 11:24:15 +00001267 mirror::Class* referrer_class;
1268 mirror::DexCache* dex_cache;
1269 {
Mathieu Chartierc7853442015-03-27 14:35:38 -07001270 StackHandleScope<2> hs(soa.Self());
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001271 Handle<mirror::DexCache> dex_cache_handle(
1272 hs.NewHandle(mUnit->GetClassLinker()->FindDexCache(*mUnit->GetDexFile())));
1273 Handle<mirror::ClassLoader> class_loader_handle(
1274 hs.NewHandle(soa.Decode<mirror::ClassLoader*>(mUnit->GetClassLoader())));
Mathieu Chartierc7853442015-03-27 14:35:38 -07001275 resolved_field =
1276 ResolveField(soa, dex_cache_handle, class_loader_handle, mUnit, field_idx, true);
1277 referrer_class = resolved_field != nullptr
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001278 ? ResolveCompilingMethodsClass(soa, dex_cache_handle, class_loader_handle, mUnit) : nullptr;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001279 dex_cache = dex_cache_handle.Get();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001280 }
Vladimir Markobe0e5462014-02-26 11:24:15 +00001281 bool result = false;
1282 if (resolved_field != nullptr && referrer_class != nullptr) {
1283 *is_volatile = IsFieldVolatile(resolved_field);
1284 std::pair<bool, bool> fast_path = IsFastStaticField(
Vladimir Marko66c6d7b2014-10-16 15:41:48 +01001285 dex_cache, referrer_class, resolved_field, field_idx, storage_index);
Vladimir Markobe0e5462014-02-26 11:24:15 +00001286 result = is_put ? fast_path.second : fast_path.first;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001287 }
Vladimir Marko66c6d7b2014-10-16 15:41:48 +01001288 if (result) {
1289 *field_offset = GetFieldOffset(resolved_field);
1290 *is_referrers_class = IsStaticFieldInReferrerClass(referrer_class, resolved_field);
1291 // *is_referrers_class == true implies no worrying about class initialization.
1292 *is_initialized = (*is_referrers_class) ||
1293 (IsStaticFieldsClassInitialized(referrer_class, resolved_field) &&
1294 CanAssumeTypeIsPresentInDexCache(*mUnit->GetDexFile(), *storage_index));
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01001295 *type = resolved_field->GetTypeAsPrimitiveType();
Vladimir Marko66c6d7b2014-10-16 15:41:48 +01001296 } else {
Vladimir Markobe0e5462014-02-26 11:24:15 +00001297 // Conservative defaults.
1298 *is_volatile = true;
1299 *field_offset = MemberOffset(static_cast<size_t>(-1));
1300 *storage_index = -1;
1301 *is_referrers_class = false;
1302 *is_initialized = false;
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01001303 *type = Primitive::kPrimVoid;
Vladimir Markobe0e5462014-02-26 11:24:15 +00001304 }
1305 ProcessedStaticField(result, *is_referrers_class);
1306 return result;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001307}
1308
Ian Rogers83883d72013-10-21 21:07:24 -07001309void CompilerDriver::GetCodeAndMethodForDirectCall(InvokeType* type, InvokeType sharp_type,
1310 bool no_guarantee_of_dex_cache_entry,
Igor Murashkind6dee672014-10-16 18:36:16 -07001311 const mirror::Class* referrer_class,
Brian Carlstromea46f952013-07-30 01:26:50 -07001312 mirror::ArtMethod* method,
Vladimir Markof096aad2014-01-23 15:51:58 +00001313 int* stats_flags,
Ian Rogers83883d72013-10-21 21:07:24 -07001314 MethodReference* target_method,
Ian Rogers65ec92c2013-09-06 10:49:58 -07001315 uintptr_t* direct_code,
1316 uintptr_t* direct_method) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001317 // For direct and static methods compute possible direct_code and direct_method values, ie
1318 // an address for the Method* being invoked and an address of the code for that Method*.
1319 // For interface calls compute a value for direct_method that is the interface method being
1320 // invoked, so this can be passed to the out-of-line runtime support code.
Ian Rogers65ec92c2013-09-06 10:49:58 -07001321 *direct_code = 0;
1322 *direct_method = 0;
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08001323 Runtime* const runtime = Runtime::Current();
1324 gc::Heap* const heap = runtime->GetHeap();
Igor Murashkind6dee672014-10-16 18:36:16 -07001325 bool use_dex_cache = GetCompilerOptions().GetCompilePic(); // Off by default
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08001326 const bool compiling_boot = heap->IsCompilingBoot();
Alex Lighta59dd802014-07-02 16:28:08 -07001327 // TODO This is somewhat hacky. We should refactor all of this invoke codepath.
1328 const bool force_relocations = (compiling_boot ||
1329 GetCompilerOptions().GetIncludePatchInformation());
Elliott Hughes956af0f2014-12-11 14:34:28 -08001330 if (sharp_type != kStatic && sharp_type != kDirect) {
1331 return;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001332 }
Elliott Hughes956af0f2014-12-11 14:34:28 -08001333 // TODO: support patching on all architectures.
1334 use_dex_cache = use_dex_cache || (force_relocations && !support_boot_image_fixup_);
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08001335 mirror::Class* declaring_class = method->GetDeclaringClass();
1336 bool method_code_in_boot = declaring_class->GetClassLoader() == nullptr;
Ian Rogers83883d72013-10-21 21:07:24 -07001337 if (!use_dex_cache) {
1338 if (!method_code_in_boot) {
1339 use_dex_cache = true;
1340 } else {
Brian Carlstrom14247b62015-01-31 21:35:32 -08001341 bool has_clinit_trampoline =
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08001342 method->IsStatic() && !declaring_class->IsInitialized();
1343 if (has_clinit_trampoline && declaring_class != referrer_class) {
Ian Rogers83883d72013-10-21 21:07:24 -07001344 // Ensure we run the clinit trampoline unless we are invoking a static method in the same
1345 // class.
1346 use_dex_cache = true;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001347 }
1348 }
Ian Rogers83883d72013-10-21 21:07:24 -07001349 }
Mathieu Chartier28a35882015-02-26 18:28:07 -08001350 if (runtime->UseJit()) {
1351 // If we are the JIT, then don't allow a direct call to the interpreter bridge since this will
1352 // never be updated even after we compile the method.
1353 if (runtime->GetClassLinker()->IsQuickToInterpreterBridge(
1354 reinterpret_cast<const void*>(compiler_->GetEntryPointOf(method)))) {
1355 use_dex_cache = true;
1356 }
1357 }
Vladimir Markof096aad2014-01-23 15:51:58 +00001358 if (method_code_in_boot) {
1359 *stats_flags |= kFlagDirectCallToBoot | kFlagDirectMethodToBoot;
Ian Rogers83883d72013-10-21 21:07:24 -07001360 }
Alex Lighta59dd802014-07-02 16:28:08 -07001361 if (!use_dex_cache && force_relocations) {
Jeff Haoa0acc2d2015-01-27 11:22:04 -08001362 bool is_in_image;
1363 if (IsImage()) {
1364 is_in_image = IsImageClass(method->GetDeclaringClassDescriptor());
1365 } else {
1366 is_in_image = instruction_set_ != kX86 && instruction_set_ != kX86_64 &&
1367 Runtime::Current()->GetHeap()->FindSpaceFromObject(method->GetDeclaringClass(),
1368 false)->IsImageSpace();
1369 }
1370 if (!is_in_image) {
Ian Rogers83883d72013-10-21 21:07:24 -07001371 // We can only branch directly to Methods that are resolved in the DexCache.
1372 // Otherwise we won't invoke the resolution trampoline.
1373 use_dex_cache = true;
1374 }
1375 }
1376 // The method is defined not within this dex file. We need a dex cache slot within the current
1377 // dex file or direct pointers.
1378 bool must_use_direct_pointers = false;
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08001379 mirror::DexCache* dex_cache = declaring_class->GetDexCache();
1380 if (target_method->dex_file == dex_cache->GetDexFile() &&
1381 !(runtime->UseJit() && dex_cache->GetResolvedMethod(method->GetDexMethodIndex()) == nullptr)) {
Ian Rogers83883d72013-10-21 21:07:24 -07001382 target_method->dex_method_index = method->GetDexMethodIndex();
1383 } else {
Ian Rogers83883d72013-10-21 21:07:24 -07001384 if (no_guarantee_of_dex_cache_entry) {
1385 // See if the method is also declared in this dex cache.
Ian Rogerse0a02da2014-12-02 14:10:53 -08001386 uint32_t dex_method_idx =
1387 method->FindDexMethodIndexInOtherDexFile(*target_method->dex_file,
1388 target_method->dex_method_index);
Ian Rogers83883d72013-10-21 21:07:24 -07001389 if (dex_method_idx != DexFile::kDexNoIndex) {
1390 target_method->dex_method_index = dex_method_idx;
1391 } else {
Alex Lighta59dd802014-07-02 16:28:08 -07001392 if (force_relocations && !use_dex_cache) {
Jeff Hao49161ce2014-03-12 11:05:25 -07001393 target_method->dex_method_index = method->GetDexMethodIndex();
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08001394 target_method->dex_file = dex_cache->GetDexFile();
Jeff Hao49161ce2014-03-12 11:05:25 -07001395 }
Ian Rogers83883d72013-10-21 21:07:24 -07001396 must_use_direct_pointers = true;
1397 }
1398 }
1399 }
1400 if (use_dex_cache) {
1401 if (must_use_direct_pointers) {
1402 // Fail. Test above showed the only safe dispatch was via the dex cache, however, the direct
1403 // pointers are required as the dex cache lacks an appropriate entry.
1404 VLOG(compiler) << "Dex cache devirtualization failed for: " << PrettyMethod(method);
1405 } else {
1406 *type = sharp_type;
1407 }
1408 } else {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08001409 bool method_in_image = heap->FindSpaceFromObject(method, false)->IsImageSpace();
Mathieu Chartier6ced4092015-02-27 16:10:48 -08001410 if (method_in_image || compiling_boot || runtime->UseJit()) {
Alex Lighta59dd802014-07-02 16:28:08 -07001411 // 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 -08001412 // In the case where we are the JIT, we can always use direct pointers since we know where
1413 // the method and its code are / will be. We don't sharpen to interpreter bridge since we
1414 // check IsQuickToInterpreterBridge above.
Vladimir Markoa51a0b02014-05-21 12:08:39 +01001415 CHECK(!method->IsAbstract());
Ian Rogers83883d72013-10-21 21:07:24 -07001416 *type = sharp_type;
Alex Lighta59dd802014-07-02 16:28:08 -07001417 *direct_method = force_relocations ? -1 : reinterpret_cast<uintptr_t>(method);
1418 *direct_code = force_relocations ? -1 : compiler_->GetEntryPointOf(method);
Brian Carlstrom14247b62015-01-31 21:35:32 -08001419 target_method->dex_file = method->GetDeclaringClass()->GetDexCache()->GetDexFile();
Vladimir Markoa51a0b02014-05-21 12:08:39 +01001420 target_method->dex_method_index = method->GetDexMethodIndex();
1421 } else if (!must_use_direct_pointers) {
1422 // Set the code and rely on the dex cache for the method.
1423 *type = sharp_type;
Alex Lighta59dd802014-07-02 16:28:08 -07001424 if (force_relocations) {
1425 *direct_code = -1;
Brian Carlstrom14247b62015-01-31 21:35:32 -08001426 target_method->dex_file = method->GetDeclaringClass()->GetDexCache()->GetDexFile();
Alex Lighta59dd802014-07-02 16:28:08 -07001427 target_method->dex_method_index = method->GetDexMethodIndex();
1428 } else {
1429 *direct_code = compiler_->GetEntryPointOf(method);
1430 }
Ian Rogers83883d72013-10-21 21:07:24 -07001431 } else {
Vladimir Markoa51a0b02014-05-21 12:08:39 +01001432 // Direct pointers were required but none were available.
1433 VLOG(compiler) << "Dex cache devirtualization failed for: " << PrettyMethod(method);
Ian Rogers83883d72013-10-21 21:07:24 -07001434 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001435 }
1436}
1437
1438bool CompilerDriver::ComputeInvokeInfo(const DexCompilationUnit* mUnit, const uint32_t dex_pc,
Ian Rogers65ec92c2013-09-06 10:49:58 -07001439 bool update_stats, bool enable_devirtualization,
1440 InvokeType* invoke_type, MethodReference* target_method,
1441 int* vtable_idx, uintptr_t* direct_code,
1442 uintptr_t* direct_method) {
Vladimir Markof096aad2014-01-23 15:51:58 +00001443 InvokeType orig_invoke_type = *invoke_type;
1444 int stats_flags = 0;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001445 ScopedObjectAccess soa(Thread::Current());
Vladimir Markof096aad2014-01-23 15:51:58 +00001446 // Try to resolve the method and compiling method's class.
1447 mirror::ArtMethod* resolved_method;
1448 mirror::Class* referrer_class;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001449 StackHandleScope<3> hs(soa.Self());
1450 Handle<mirror::DexCache> dex_cache(
1451 hs.NewHandle(mUnit->GetClassLinker()->FindDexCache(*mUnit->GetDexFile())));
1452 Handle<mirror::ClassLoader> class_loader(hs.NewHandle(
1453 soa.Decode<mirror::ClassLoader*>(mUnit->GetClassLoader())));
Vladimir Markof096aad2014-01-23 15:51:58 +00001454 {
1455 uint32_t method_idx = target_method->dex_method_index;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001456 Handle<mirror::ArtMethod> resolved_method_handle(hs.NewHandle(
1457 ResolveMethod(soa, dex_cache, class_loader, mUnit, method_idx, orig_invoke_type)));
1458 referrer_class = (resolved_method_handle.Get() != nullptr)
Vladimir Markof096aad2014-01-23 15:51:58 +00001459 ? ResolveCompilingMethodsClass(soa, dex_cache, class_loader, mUnit) : nullptr;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001460 resolved_method = resolved_method_handle.Get();
Vladimir Markof096aad2014-01-23 15:51:58 +00001461 }
1462 bool result = false;
1463 if (resolved_method != nullptr) {
1464 *vtable_idx = GetResolvedMethodVTableIndex(resolved_method, orig_invoke_type);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001465
Nicolas Geoffraye53798a2014-12-01 10:31:54 +00001466 if (enable_devirtualization && mUnit->GetVerifiedMethod() != nullptr) {
Vladimir Markof096aad2014-01-23 15:51:58 +00001467 const MethodReference* devirt_target = mUnit->GetVerifiedMethod()->GetDevirtTarget(dex_pc);
1468
1469 stats_flags = IsFastInvoke(
1470 soa, dex_cache, class_loader, mUnit, referrer_class, resolved_method,
1471 invoke_type, target_method, devirt_target, direct_code, direct_method);
1472 result = stats_flags != 0;
1473 } else {
1474 // Devirtualization not enabled. Inline IsFastInvoke(), dropping the devirtualization parts.
1475 if (UNLIKELY(referrer_class == nullptr) ||
1476 UNLIKELY(!referrer_class->CanAccessResolvedMethod(resolved_method->GetDeclaringClass(),
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001477 resolved_method, dex_cache.Get(),
Vladimir Markof096aad2014-01-23 15:51:58 +00001478 target_method->dex_method_index)) ||
1479 *invoke_type == kSuper) {
1480 // Slow path. (Without devirtualization, all super calls go slow path as well.)
1481 } else {
1482 // Sharpening failed so generate a regular resolved method dispatch.
1483 stats_flags = kFlagMethodResolved;
1484 GetCodeAndMethodForDirectCall(invoke_type, *invoke_type, false, referrer_class, resolved_method,
1485 &stats_flags, target_method, direct_code, direct_method);
1486 result = true;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001487 }
1488 }
1489 }
Vladimir Markof096aad2014-01-23 15:51:58 +00001490 if (!result) {
1491 // Conservative defaults.
1492 *vtable_idx = -1;
1493 *direct_code = 0u;
1494 *direct_method = 0u;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001495 }
1496 if (update_stats) {
Vladimir Markof096aad2014-01-23 15:51:58 +00001497 ProcessedInvoke(orig_invoke_type, stats_flags);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001498 }
Vladimir Markof096aad2014-01-23 15:51:58 +00001499 return result;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001500}
1501
Vladimir Marko2730db02014-01-27 11:15:17 +00001502const VerifiedMethod* CompilerDriver::GetVerifiedMethod(const DexFile* dex_file,
1503 uint32_t method_idx) const {
1504 MethodReference ref(dex_file, method_idx);
1505 return verification_results_->GetVerifiedMethod(ref);
1506}
1507
1508bool CompilerDriver::IsSafeCast(const DexCompilationUnit* mUnit, uint32_t dex_pc) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001509 if (!compiler_options_->IsVerificationEnabled()) {
1510 // If we didn't verify, every cast has to be treated as non-safe.
1511 return false;
1512 }
Vladimir Marko2730db02014-01-27 11:15:17 +00001513 DCHECK(mUnit->GetVerifiedMethod() != nullptr);
1514 bool result = mUnit->GetVerifiedMethod()->IsSafeCast(dex_pc);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001515 if (result) {
1516 stats_->SafeCast();
1517 } else {
1518 stats_->NotASafeCast();
1519 }
1520 return result;
1521}
1522
Brian Carlstrom7940e442013-07-12 13:46:57 -07001523class ParallelCompilationManager {
1524 public:
1525 typedef void Callback(const ParallelCompilationManager* manager, size_t index);
1526
1527 ParallelCompilationManager(ClassLinker* class_linker,
1528 jobject class_loader,
1529 CompilerDriver* compiler,
1530 const DexFile* dex_file,
Andreas Gampede7b4362014-07-28 18:38:57 -07001531 const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -08001532 ThreadPool* thread_pool)
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001533 : index_(0),
1534 class_linker_(class_linker),
Brian Carlstrom7940e442013-07-12 13:46:57 -07001535 class_loader_(class_loader),
1536 compiler_(compiler),
1537 dex_file_(dex_file),
Andreas Gampede7b4362014-07-28 18:38:57 -07001538 dex_files_(dex_files),
Ian Rogers3d504072014-03-01 09:16:49 -08001539 thread_pool_(thread_pool) {}
Brian Carlstrom7940e442013-07-12 13:46:57 -07001540
1541 ClassLinker* GetClassLinker() const {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001542 CHECK(class_linker_ != nullptr);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001543 return class_linker_;
1544 }
1545
1546 jobject GetClassLoader() const {
1547 return class_loader_;
1548 }
1549
1550 CompilerDriver* GetCompiler() const {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001551 CHECK(compiler_ != nullptr);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001552 return compiler_;
1553 }
1554
1555 const DexFile* GetDexFile() const {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001556 CHECK(dex_file_ != nullptr);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001557 return dex_file_;
1558 }
1559
Andreas Gampede7b4362014-07-28 18:38:57 -07001560 const std::vector<const DexFile*>& GetDexFiles() const {
1561 return dex_files_;
1562 }
1563
Brian Carlstrom7940e442013-07-12 13:46:57 -07001564 void ForAll(size_t begin, size_t end, Callback callback, size_t work_units) {
1565 Thread* self = Thread::Current();
1566 self->AssertNoPendingException();
1567 CHECK_GT(work_units, 0U);
1568
Ian Rogers3e5cf302014-05-20 16:40:37 -07001569 index_.StoreRelaxed(begin);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001570 for (size_t i = 0; i < work_units; ++i) {
Sebastien Hertz501baec2013-12-13 12:02:36 +01001571 thread_pool_->AddTask(self, new ForAllClosure(this, end, callback));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001572 }
1573 thread_pool_->StartWorkers(self);
1574
1575 // Ensure we're suspended while we're blocked waiting for the other threads to finish (worker
1576 // thread destructor's called below perform join).
1577 CHECK_NE(self->GetState(), kRunnable);
1578
1579 // Wait for all the worker threads to finish.
1580 thread_pool_->Wait(self, true, false);
1581 }
1582
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001583 size_t NextIndex() {
Ian Rogers3e5cf302014-05-20 16:40:37 -07001584 return index_.FetchAndAddSequentiallyConsistent(1);
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001585 }
1586
Brian Carlstrom7940e442013-07-12 13:46:57 -07001587 private:
Brian Carlstrom7940e442013-07-12 13:46:57 -07001588 class ForAllClosure : public Task {
1589 public:
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001590 ForAllClosure(ParallelCompilationManager* manager, size_t end, Callback* callback)
Brian Carlstrom7940e442013-07-12 13:46:57 -07001591 : manager_(manager),
Brian Carlstrom7940e442013-07-12 13:46:57 -07001592 end_(end),
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001593 callback_(callback) {}
Brian Carlstrom7940e442013-07-12 13:46:57 -07001594
1595 virtual void Run(Thread* self) {
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001596 while (true) {
1597 const size_t index = manager_->NextIndex();
1598 if (UNLIKELY(index >= end_)) {
1599 break;
1600 }
1601 callback_(manager_, index);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001602 self->AssertNoPendingException();
1603 }
1604 }
1605
1606 virtual void Finalize() {
1607 delete this;
1608 }
Brian Carlstrom0cd7ec22013-07-17 23:40:20 -07001609
Brian Carlstrom7940e442013-07-12 13:46:57 -07001610 private:
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001611 ParallelCompilationManager* const manager_;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001612 const size_t end_;
Bernhard Rosenkränzer46053622013-12-12 02:15:52 +01001613 Callback* const callback_;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001614 };
1615
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001616 AtomicInteger index_;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001617 ClassLinker* const class_linker_;
1618 const jobject class_loader_;
1619 CompilerDriver* const compiler_;
1620 const DexFile* const dex_file_;
Andreas Gampede7b4362014-07-28 18:38:57 -07001621 const std::vector<const DexFile*>& dex_files_;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001622 ThreadPool* const thread_pool_;
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001623
1624 DISALLOW_COPY_AND_ASSIGN(ParallelCompilationManager);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001625};
1626
Jeff Hao0e49b422013-11-08 12:16:56 -08001627// A fast version of SkipClass above if the class pointer is available
1628// that avoids the expensive FindInClassPath search.
1629static bool SkipClass(jobject class_loader, const DexFile& dex_file, mirror::Class* klass)
1630 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001631 DCHECK(klass != nullptr);
Jeff Hao0e49b422013-11-08 12:16:56 -08001632 const DexFile& original_dex_file = *klass->GetDexCache()->GetDexFile();
1633 if (&dex_file != &original_dex_file) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001634 if (class_loader == nullptr) {
Jeff Hao0e49b422013-11-08 12:16:56 -08001635 LOG(WARNING) << "Skipping class " << PrettyDescriptor(klass) << " from "
1636 << dex_file.GetLocation() << " previously found in "
1637 << original_dex_file.GetLocation();
1638 }
1639 return true;
1640 }
1641 return false;
1642}
1643
Mathieu Chartier70b63482014-06-27 17:19:04 -07001644static void CheckAndClearResolveException(Thread* self)
1645 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
1646 CHECK(self->IsExceptionPending());
Nicolas Geoffray14691c52015-03-05 10:40:17 +00001647 mirror::Throwable* exception = self->GetException();
Ian Rogers1ff3c982014-08-12 02:30:58 -07001648 std::string temp;
1649 const char* descriptor = exception->GetClass()->GetDescriptor(&temp);
1650 const char* expected_exceptions[] = {
1651 "Ljava/lang/IllegalAccessError;",
1652 "Ljava/lang/IncompatibleClassChangeError;",
1653 "Ljava/lang/InstantiationError;",
Brian Carlstrom898fcb52014-08-25 23:07:30 -07001654 "Ljava/lang/LinkageError;",
Ian Rogers1ff3c982014-08-12 02:30:58 -07001655 "Ljava/lang/NoClassDefFoundError;",
1656 "Ljava/lang/NoSuchFieldError;",
1657 "Ljava/lang/NoSuchMethodError;"
1658 };
1659 bool found = false;
1660 for (size_t i = 0; (found == false) && (i < arraysize(expected_exceptions)); ++i) {
1661 if (strcmp(descriptor, expected_exceptions[i]) == 0) {
1662 found = true;
1663 }
1664 }
1665 if (!found) {
Brian Carlstrom898fcb52014-08-25 23:07:30 -07001666 LOG(FATAL) << "Unexpected exception " << exception->Dump();
Mathieu Chartier70b63482014-06-27 17:19:04 -07001667 }
1668 self->ClearException();
1669}
1670
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001671static void ResolveClassFieldsAndMethods(const ParallelCompilationManager* manager,
1672 size_t class_def_index)
Brian Carlstrom7940e442013-07-12 13:46:57 -07001673 LOCKS_EXCLUDED(Locks::mutator_lock_) {
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07001674 ATRACE_CALL();
Ian Rogersbe7149f2013-08-20 09:29:39 -07001675 Thread* self = Thread::Current();
1676 jobject jclass_loader = manager->GetClassLoader();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001677 const DexFile& dex_file = *manager->GetDexFile();
Ian Rogersbe7149f2013-08-20 09:29:39 -07001678 ClassLinker* class_linker = manager->GetClassLinker();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001679
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001680 // If an instance field is final then we need to have a barrier on the return, static final
1681 // fields are assigned within the lock held for class initialization. Conservatively assume
1682 // constructor barriers are always required.
1683 bool requires_constructor_barrier = true;
1684
Brian Carlstrom7940e442013-07-12 13:46:57 -07001685 // Method and Field are the worst. We can't resolve without either
1686 // context from the code use (to disambiguate virtual vs direct
1687 // method and instance vs static field) or from class
1688 // definitions. While the compiler will resolve what it can as it
1689 // needs it, here we try to resolve fields and methods used in class
1690 // definitions, since many of them many never be referenced by
1691 // generated code.
1692 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
Ian Rogers68b56852014-08-29 20:19:11 -07001693 ScopedObjectAccess soa(self);
1694 StackHandleScope<2> hs(soa.Self());
1695 Handle<mirror::ClassLoader> class_loader(
1696 hs.NewHandle(soa.Decode<mirror::ClassLoader*>(jclass_loader)));
1697 Handle<mirror::DexCache> dex_cache(hs.NewHandle(class_linker->FindDexCache(dex_file)));
1698 // Resolve the class.
1699 mirror::Class* klass = class_linker->ResolveType(dex_file, class_def.class_idx_, dex_cache,
1700 class_loader);
1701 bool resolve_fields_and_methods;
1702 if (klass == nullptr) {
1703 // Class couldn't be resolved, for example, super-class is in a different dex file. Don't
1704 // attempt to resolve methods and fields when there is no declaring class.
1705 CheckAndClearResolveException(soa.Self());
1706 resolve_fields_and_methods = false;
1707 } else {
1708 // We successfully resolved a class, should we skip it?
1709 if (SkipClass(jclass_loader, dex_file, klass)) {
1710 return;
Brian Carlstromcb5f5e52013-09-23 17:48:16 -07001711 }
Ian Rogers68b56852014-08-29 20:19:11 -07001712 // We want to resolve the methods and fields eagerly.
1713 resolve_fields_and_methods = true;
1714 }
1715 // Note the class_data pointer advances through the headers,
1716 // static fields, instance fields, direct methods, and virtual
1717 // methods.
Ian Rogers13735952014-10-08 12:43:28 -07001718 const uint8_t* class_data = dex_file.GetClassData(class_def);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001719 if (class_data == nullptr) {
Ian Rogers68b56852014-08-29 20:19:11 -07001720 // Empty class such as a marker interface.
1721 requires_constructor_barrier = false;
1722 } else {
1723 ClassDataItemIterator it(dex_file, class_data);
1724 while (it.HasNextStaticField()) {
1725 if (resolve_fields_and_methods) {
Mathieu Chartierc7853442015-03-27 14:35:38 -07001726 ArtField* field = class_linker->ResolveField(dex_file, it.GetMemberIndex(),
Ian Rogers68b56852014-08-29 20:19:11 -07001727 dex_cache, class_loader, true);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001728 if (field == nullptr) {
Ian Rogers68b56852014-08-29 20:19:11 -07001729 CheckAndClearResolveException(soa.Self());
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001730 }
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001731 }
Ian Rogers68b56852014-08-29 20:19:11 -07001732 it.Next();
1733 }
1734 // We require a constructor barrier if there are final instance fields.
1735 requires_constructor_barrier = false;
1736 while (it.HasNextInstanceField()) {
Andreas Gampe51829322014-08-25 15:05:04 -07001737 if (it.MemberIsFinal()) {
Ian Rogers68b56852014-08-29 20:19:11 -07001738 requires_constructor_barrier = true;
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001739 }
1740 if (resolve_fields_and_methods) {
Mathieu Chartierc7853442015-03-27 14:35:38 -07001741 ArtField* field = class_linker->ResolveField(dex_file, it.GetMemberIndex(),
Ian Rogers68b56852014-08-29 20:19:11 -07001742 dex_cache, class_loader, false);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001743 if (field == nullptr) {
Ian Rogers68b56852014-08-29 20:19:11 -07001744 CheckAndClearResolveException(soa.Self());
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001745 }
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001746 }
Ian Rogers68b56852014-08-29 20:19:11 -07001747 it.Next();
1748 }
1749 if (resolve_fields_and_methods) {
1750 while (it.HasNextDirectMethod()) {
1751 mirror::ArtMethod* method = class_linker->ResolveMethod(dex_file, it.GetMemberIndex(),
1752 dex_cache, class_loader,
1753 NullHandle<mirror::ArtMethod>(),
1754 it.GetMethodInvokeType(class_def));
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001755 if (method == nullptr) {
Ian Rogers68b56852014-08-29 20:19:11 -07001756 CheckAndClearResolveException(soa.Self());
1757 }
1758 it.Next();
1759 }
1760 while (it.HasNextVirtualMethod()) {
1761 mirror::ArtMethod* method = class_linker->ResolveMethod(dex_file, it.GetMemberIndex(),
1762 dex_cache, class_loader,
1763 NullHandle<mirror::ArtMethod>(),
1764 it.GetMethodInvokeType(class_def));
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001765 if (method == nullptr) {
Ian Rogers68b56852014-08-29 20:19:11 -07001766 CheckAndClearResolveException(soa.Self());
1767 }
1768 it.Next();
1769 }
1770 DCHECK(!it.HasNext());
Brian Carlstrom7940e442013-07-12 13:46:57 -07001771 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001772 }
1773 if (requires_constructor_barrier) {
Ian Rogersbe7149f2013-08-20 09:29:39 -07001774 manager->GetCompiler()->AddRequiresConstructorBarrier(self, &dex_file, class_def_index);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001775 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001776}
1777
1778static void ResolveType(const ParallelCompilationManager* manager, size_t type_idx)
1779 LOCKS_EXCLUDED(Locks::mutator_lock_) {
1780 // Class derived values are more complicated, they require the linker and loader.
1781 ScopedObjectAccess soa(Thread::Current());
1782 ClassLinker* class_linker = manager->GetClassLinker();
1783 const DexFile& dex_file = *manager->GetDexFile();
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001784 StackHandleScope<2> hs(soa.Self());
1785 Handle<mirror::DexCache> dex_cache(hs.NewHandle(class_linker->FindDexCache(dex_file)));
1786 Handle<mirror::ClassLoader> class_loader(
1787 hs.NewHandle(soa.Decode<mirror::ClassLoader*>(manager->GetClassLoader())));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001788 mirror::Class* klass = class_linker->ResolveType(dex_file, type_idx, dex_cache, class_loader);
1789
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001790 if (klass == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001791 CHECK(soa.Self()->IsExceptionPending());
Nicolas Geoffray14691c52015-03-05 10:40:17 +00001792 mirror::Throwable* exception = soa.Self()->GetException();
Ian Rogersa436fde2013-08-27 23:34:06 -07001793 VLOG(compiler) << "Exception during type resolution: " << exception->Dump();
Mathieu Chartierf8322842014-05-16 10:59:25 -07001794 if (exception->GetClass()->DescriptorEquals("Ljava/lang/OutOfMemoryError;")) {
Ian Rogersa436fde2013-08-27 23:34:06 -07001795 // There's little point continuing compilation if the heap is exhausted.
1796 LOG(FATAL) << "Out of memory during type resolution for compilation";
1797 }
1798 soa.Self()->ClearException();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001799 }
1800}
1801
1802void CompilerDriver::ResolveDexFile(jobject class_loader, const DexFile& dex_file,
Andreas Gampede7b4362014-07-28 18:38:57 -07001803 const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -08001804 ThreadPool* thread_pool, TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001805 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
1806
1807 // TODO: we could resolve strings here, although the string table is largely filled with class
1808 // and method names.
1809
Andreas Gampede7b4362014-07-28 18:38:57 -07001810 ParallelCompilationManager context(class_linker, class_loader, this, &dex_file, dex_files,
1811 thread_pool);
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001812 if (IsImage()) {
1813 // For images we resolve all types, such as array, whereas for applications just those with
1814 // classdefs are resolved by ResolveClassFieldsAndMethods.
Mathieu Chartierf5997b42014-06-20 10:37:54 -07001815 TimingLogger::ScopedTiming t("Resolve Types", timings);
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001816 context.ForAll(0, dex_file.NumTypeIds(), ResolveType, thread_count_);
1817 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001818
Mathieu Chartierf5997b42014-06-20 10:37:54 -07001819 TimingLogger::ScopedTiming t("Resolve MethodsAndFields", timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001820 context.ForAll(0, dex_file.NumClassDefs(), ResolveClassFieldsAndMethods, thread_count_);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001821}
1822
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001823void CompilerDriver::SetVerified(jobject class_loader, const std::vector<const DexFile*>& dex_files,
1824 ThreadPool* thread_pool, TimingLogger* timings) {
1825 for (size_t i = 0; i != dex_files.size(); ++i) {
1826 const DexFile* dex_file = dex_files[i];
1827 CHECK(dex_file != nullptr);
1828 SetVerifiedDexFile(class_loader, *dex_file, dex_files, thread_pool, timings);
1829 }
1830}
1831
Brian Carlstrom7940e442013-07-12 13:46:57 -07001832void CompilerDriver::Verify(jobject class_loader, const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -08001833 ThreadPool* thread_pool, TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001834 for (size_t i = 0; i != dex_files.size(); ++i) {
1835 const DexFile* dex_file = dex_files[i];
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001836 CHECK(dex_file != nullptr);
Andreas Gampede7b4362014-07-28 18:38:57 -07001837 VerifyDexFile(class_loader, *dex_file, dex_files, thread_pool, timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001838 }
1839}
1840
1841static void VerifyClass(const ParallelCompilationManager* manager, size_t class_def_index)
1842 LOCKS_EXCLUDED(Locks::mutator_lock_) {
Anwar Ghuloum67f99412013-08-12 14:19:48 -07001843 ATRACE_CALL();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001844 ScopedObjectAccess soa(Thread::Current());
Jeff Hao0e49b422013-11-08 12:16:56 -08001845 const DexFile& dex_file = *manager->GetDexFile();
1846 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
1847 const char* descriptor = dex_file.GetClassDescriptor(class_def);
1848 ClassLinker* class_linker = manager->GetClassLinker();
1849 jobject jclass_loader = manager->GetClassLoader();
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001850 StackHandleScope<3> hs(soa.Self());
1851 Handle<mirror::ClassLoader> class_loader(
1852 hs.NewHandle(soa.Decode<mirror::ClassLoader*>(jclass_loader)));
1853 Handle<mirror::Class> klass(
1854 hs.NewHandle(class_linker->FindClass(soa.Self(), descriptor, class_loader)));
1855 if (klass.Get() == nullptr) {
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001856 CHECK(soa.Self()->IsExceptionPending());
Brian Carlstrom7940e442013-07-12 13:46:57 -07001857 soa.Self()->ClearException();
1858
1859 /*
1860 * At compile time, we can still structurally verify the class even if FindClass fails.
1861 * This is to ensure the class is structurally sound for compilation. An unsound class
1862 * will be rejected by the verifier and later skipped during compilation in the compiler.
1863 */
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001864 Handle<mirror::DexCache> dex_cache(hs.NewHandle(class_linker->FindDexCache(dex_file)));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001865 std::string error_msg;
Ian Rogers7b078e82014-09-10 14:44:24 -07001866 if (verifier::MethodVerifier::VerifyClass(soa.Self(), &dex_file, dex_cache, class_loader,
1867 &class_def, true, &error_msg) ==
Brian Carlstrom7940e442013-07-12 13:46:57 -07001868 verifier::MethodVerifier::kHardFailure) {
Jeff Hao0e49b422013-11-08 12:16:56 -08001869 LOG(ERROR) << "Verification failed on class " << PrettyDescriptor(descriptor)
Brian Carlstrom7940e442013-07-12 13:46:57 -07001870 << " because: " << error_msg;
Andreas Gampe6cf49e52015-03-05 13:08:45 -08001871 manager->GetCompiler()->SetHadHardVerifierFailure();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001872 }
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001873 } else if (!SkipClass(jclass_loader, dex_file, klass.Get())) {
1874 CHECK(klass->IsResolved()) << PrettyClass(klass.Get());
Ian Rogers7b078e82014-09-10 14:44:24 -07001875 class_linker->VerifyClass(soa.Self(), klass);
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001876
1877 if (klass->IsErroneous()) {
1878 // ClassLinker::VerifyClass throws, which isn't useful in the compiler.
1879 CHECK(soa.Self()->IsExceptionPending());
1880 soa.Self()->ClearException();
Andreas Gampe6cf49e52015-03-05 13:08:45 -08001881 manager->GetCompiler()->SetHadHardVerifierFailure();
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001882 }
1883
1884 CHECK(klass->IsCompileTimeVerified() || klass->IsErroneous())
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001885 << PrettyDescriptor(klass.Get()) << ": state=" << klass->GetStatus();
Andreas Gampe7ae063b2014-11-24 23:50:13 -08001886
1887 // It is *very* problematic if there are verification errors in the boot classpath. For example,
1888 // we rely on things working OK without verification when the decryption dialog is brought up.
1889 // So abort in a debug build if we find this violated.
1890 DCHECK(!manager->GetCompiler()->IsImage() || klass->IsVerified()) << "Boot classpath class " <<
1891 PrettyClass(klass.Get()) << " failed to fully verify.";
Brian Carlstrom7940e442013-07-12 13:46:57 -07001892 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001893 soa.Self()->AssertNoPendingException();
1894}
1895
1896void CompilerDriver::VerifyDexFile(jobject class_loader, const DexFile& dex_file,
Andreas Gampede7b4362014-07-28 18:38:57 -07001897 const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -08001898 ThreadPool* thread_pool, TimingLogger* timings) {
Mathieu Chartierf5997b42014-06-20 10:37:54 -07001899 TimingLogger::ScopedTiming t("Verify Dex File", timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001900 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Andreas Gampede7b4362014-07-28 18:38:57 -07001901 ParallelCompilationManager context(class_linker, class_loader, this, &dex_file, dex_files,
1902 thread_pool);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001903 context.ForAll(0, dex_file.NumClassDefs(), VerifyClass, thread_count_);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001904}
1905
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001906static void SetVerifiedClass(const ParallelCompilationManager* manager, size_t class_def_index)
1907 LOCKS_EXCLUDED(Locks::mutator_lock_) {
1908 ATRACE_CALL();
1909 ScopedObjectAccess soa(Thread::Current());
1910 const DexFile& dex_file = *manager->GetDexFile();
1911 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
1912 const char* descriptor = dex_file.GetClassDescriptor(class_def);
1913 ClassLinker* class_linker = manager->GetClassLinker();
1914 jobject jclass_loader = manager->GetClassLoader();
1915 StackHandleScope<3> hs(soa.Self());
1916 Handle<mirror::ClassLoader> class_loader(
1917 hs.NewHandle(soa.Decode<mirror::ClassLoader*>(jclass_loader)));
1918 Handle<mirror::Class> klass(
1919 hs.NewHandle(class_linker->FindClass(soa.Self(), descriptor, class_loader)));
1920 // Class might have failed resolution. Then don't set it to verified.
1921 if (klass.Get() != nullptr) {
1922 // Only do this if the class is resolved. If even resolution fails, quickening will go very,
1923 // very wrong.
1924 if (klass->IsResolved()) {
1925 if (klass->GetStatus() < mirror::Class::kStatusVerified) {
1926 ObjectLock<mirror::Class> lock(soa.Self(), klass);
Hiroshi Yamauchi5b783e62015-03-18 17:20:11 -07001927 mirror::Class::SetStatus(klass, mirror::Class::kStatusVerified, soa.Self());
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001928 }
1929 // Record the final class status if necessary.
1930 ClassReference ref(manager->GetDexFile(), class_def_index);
1931 manager->GetCompiler()->RecordClassStatus(ref, klass->GetStatus());
1932 }
Andreas Gampe61ff0092014-09-16 11:23:23 -07001933 } else {
1934 Thread* self = soa.Self();
1935 DCHECK(self->IsExceptionPending());
1936 self->ClearException();
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001937 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001938}
1939
1940void CompilerDriver::SetVerifiedDexFile(jobject class_loader, const DexFile& dex_file,
1941 const std::vector<const DexFile*>& dex_files,
1942 ThreadPool* thread_pool, TimingLogger* timings) {
1943 TimingLogger::ScopedTiming t("Verify Dex File", timings);
1944 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
1945 ParallelCompilationManager context(class_linker, class_loader, this, &dex_file, dex_files,
1946 thread_pool);
1947 context.ForAll(0, dex_file.NumClassDefs(), SetVerifiedClass, thread_count_);
1948}
1949
Brian Carlstrom7940e442013-07-12 13:46:57 -07001950static void InitializeClass(const ParallelCompilationManager* manager, size_t class_def_index)
1951 LOCKS_EXCLUDED(Locks::mutator_lock_) {
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07001952 ATRACE_CALL();
Jeff Hao0e49b422013-11-08 12:16:56 -08001953 jobject jclass_loader = manager->GetClassLoader();
1954 const DexFile& dex_file = *manager->GetDexFile();
1955 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
Jeff Haobcdbbfe2013-11-08 18:03:22 -08001956 const DexFile::TypeId& class_type_id = dex_file.GetTypeId(class_def.class_idx_);
1957 const char* descriptor = dex_file.StringDataByIdx(class_type_id.descriptor_idx_);
Ian Rogersfc0e94b2013-09-23 23:51:32 -07001958
Brian Carlstrom7940e442013-07-12 13:46:57 -07001959 ScopedObjectAccess soa(Thread::Current());
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001960 StackHandleScope<3> hs(soa.Self());
1961 Handle<mirror::ClassLoader> class_loader(
1962 hs.NewHandle(soa.Decode<mirror::ClassLoader*>(jclass_loader)));
1963 Handle<mirror::Class> klass(
1964 hs.NewHandle(manager->GetClassLinker()->FindClass(soa.Self(), descriptor, class_loader)));
Jeff Hao0e49b422013-11-08 12:16:56 -08001965
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001966 if (klass.Get() != nullptr && !SkipClass(jclass_loader, dex_file, klass.Get())) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001967 // Only try to initialize classes that were successfully verified.
1968 if (klass->IsVerified()) {
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07001969 // Attempt to initialize the class but bail if we either need to initialize the super-class
1970 // or static fields.
Ian Rogers7b078e82014-09-10 14:44:24 -07001971 manager->GetClassLinker()->EnsureInitialized(soa.Self(), klass, false, false);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001972 if (!klass->IsInitialized()) {
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07001973 // We don't want non-trivial class initialization occurring on multiple threads due to
1974 // deadlock problems. For example, a parent class is initialized (holding its lock) that
1975 // refers to a sub-class in its static/class initializer causing it to try to acquire the
1976 // sub-class' lock. While on a second thread the sub-class is initialized (holding its lock)
1977 // after first initializing its parents, whose locks are acquired. This leads to a
1978 // parent-to-child and a child-to-parent lock ordering and consequent potential deadlock.
1979 // We need to use an ObjectLock due to potential suspension in the interpreting code. Rather
1980 // than use a special Object for the purpose we use the Class of java.lang.Class.
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001981 Handle<mirror::Class> h_klass(hs.NewHandle(klass->GetClass()));
Mathieu Chartierdb2633c2014-05-16 09:59:29 -07001982 ObjectLock<mirror::Class> lock(soa.Self(), h_klass);
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07001983 // Attempt to initialize allowing initialization of parent classes but still not static
1984 // fields.
Ian Rogers7b078e82014-09-10 14:44:24 -07001985 manager->GetClassLinker()->EnsureInitialized(soa.Self(), klass, false, true);
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07001986 if (!klass->IsInitialized()) {
1987 // We need to initialize static fields, we only do this for image classes that aren't
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001988 // marked with the $NoPreloadHolder (which implies this should not be initialized early).
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07001989 bool can_init_static_fields = manager->GetCompiler()->IsImage() &&
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001990 manager->GetCompiler()->IsImageClass(descriptor) &&
1991 !StringPiece(descriptor).ends_with("$NoPreloadHolder;");
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07001992 if (can_init_static_fields) {
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001993 VLOG(compiler) << "Initializing: " << descriptor;
Ian Rogersc45b8b52014-05-03 01:39:59 -07001994 // TODO multithreading support. We should ensure the current compilation thread has
1995 // exclusive access to the runtime and the transaction. To achieve this, we could use
1996 // a ReaderWriterMutex but we're holding the mutator lock so we fail mutex sanity
1997 // checks in Thread::AssertThreadSuspensionIsAllowable.
1998 Runtime* const runtime = Runtime::Current();
1999 Transaction transaction;
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01002000
Ian Rogersc45b8b52014-05-03 01:39:59 -07002001 // Run the class initializer in transaction mode.
2002 runtime->EnterTransactionMode(&transaction);
2003 const mirror::Class::Status old_status = klass->GetStatus();
Ian Rogers7b078e82014-09-10 14:44:24 -07002004 bool success = manager->GetClassLinker()->EnsureInitialized(soa.Self(), klass, true,
2005 true);
Ian Rogersc45b8b52014-05-03 01:39:59 -07002006 // TODO we detach transaction from runtime to indicate we quit the transactional
2007 // mode which prevents the GC from visiting objects modified during the transaction.
2008 // Ensure GC is not run so don't access freed objects when aborting transaction.
Mathieu Chartier2d5f39e2014-09-19 17:52:37 -07002009
2010 ScopedAssertNoThreadSuspension ants(soa.Self(), "Transaction end");
Ian Rogersc45b8b52014-05-03 01:39:59 -07002011 runtime->ExitTransactionMode();
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01002012
Ian Rogersc45b8b52014-05-03 01:39:59 -07002013 if (!success) {
2014 CHECK(soa.Self()->IsExceptionPending());
Nicolas Geoffray14691c52015-03-05 10:40:17 +00002015 mirror::Throwable* exception = soa.Self()->GetException();
Ian Rogersc45b8b52014-05-03 01:39:59 -07002016 VLOG(compiler) << "Initialization of " << descriptor << " aborted because of "
2017 << exception->Dump();
Andreas Gampedbfe2542014-11-25 22:21:42 -08002018 std::ostream* file_log = manager->GetCompiler()->
2019 GetCompilerOptions().GetInitFailureOutput();
2020 if (file_log != nullptr) {
2021 *file_log << descriptor << "\n";
2022 *file_log << exception->Dump() << "\n";
2023 }
Ian Rogersc45b8b52014-05-03 01:39:59 -07002024 soa.Self()->ClearException();
Sebastien Hertz1c80bec2015-02-03 11:58:06 +01002025 transaction.Rollback();
Ian Rogersc45b8b52014-05-03 01:39:59 -07002026 CHECK_EQ(old_status, klass->GetStatus()) << "Previous class status not restored";
Brian Carlstrom7940e442013-07-12 13:46:57 -07002027 }
2028 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002029 }
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07002030 soa.Self()->AssertNoPendingException();
Brian Carlstrom7940e442013-07-12 13:46:57 -07002031 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002032 }
2033 // Record the final class status if necessary.
Brian Carlstrom7940e442013-07-12 13:46:57 -07002034 ClassReference ref(manager->GetDexFile(), class_def_index);
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07002035 manager->GetCompiler()->RecordClassStatus(ref, klass->GetStatus());
Brian Carlstrom7940e442013-07-12 13:46:57 -07002036 }
2037 // Clear any class not found or verification exceptions.
2038 soa.Self()->ClearException();
2039}
2040
2041void CompilerDriver::InitializeClasses(jobject jni_class_loader, const DexFile& dex_file,
Andreas Gampede7b4362014-07-28 18:38:57 -07002042 const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -08002043 ThreadPool* thread_pool, TimingLogger* timings) {
Mathieu Chartierf5997b42014-06-20 10:37:54 -07002044 TimingLogger::ScopedTiming t("InitializeNoClinit", timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002045 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Andreas Gampede7b4362014-07-28 18:38:57 -07002046 ParallelCompilationManager context(class_linker, jni_class_loader, this, &dex_file, dex_files,
2047 thread_pool);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01002048 size_t thread_count;
2049 if (IsImage()) {
2050 // TODO: remove this when transactional mode supports multithreading.
2051 thread_count = 1U;
2052 } else {
2053 thread_count = thread_count_;
2054 }
2055 context.ForAll(0, dex_file.NumClassDefs(), InitializeClass, thread_count);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002056}
2057
2058void CompilerDriver::InitializeClasses(jobject class_loader,
2059 const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -08002060 ThreadPool* thread_pool, TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07002061 for (size_t i = 0; i != dex_files.size(); ++i) {
2062 const DexFile* dex_file = dex_files[i];
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002063 CHECK(dex_file != nullptr);
Andreas Gampede7b4362014-07-28 18:38:57 -07002064 InitializeClasses(class_loader, *dex_file, dex_files, thread_pool, timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002065 }
Mathieu Chartier093ef212014-08-11 13:52:12 -07002066 if (IsImage()) {
2067 // Prune garbage objects created during aborted transactions.
2068 Runtime::Current()->GetHeap()->CollectGarbage(true);
2069 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002070}
2071
2072void CompilerDriver::Compile(jobject class_loader, const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -08002073 ThreadPool* thread_pool, TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07002074 for (size_t i = 0; i != dex_files.size(); ++i) {
2075 const DexFile* dex_file = dex_files[i];
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002076 CHECK(dex_file != nullptr);
Andreas Gampede7b4362014-07-28 18:38:57 -07002077 CompileDexFile(class_loader, *dex_file, dex_files, thread_pool, timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002078 }
Andreas Gampe8d295f82015-01-20 14:50:21 -08002079 VLOG(compiler) << "Compile: " << GetMemoryUsageString(false);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002080}
2081
2082void CompilerDriver::CompileClass(const ParallelCompilationManager* manager, size_t class_def_index) {
Anwar Ghuloum67f99412013-08-12 14:19:48 -07002083 ATRACE_CALL();
Brian Carlstrom7940e442013-07-12 13:46:57 -07002084 const DexFile& dex_file = *manager->GetDexFile();
2085 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
Ian Rogersbe7149f2013-08-20 09:29:39 -07002086 ClassLinker* class_linker = manager->GetClassLinker();
Ian Rogers1ff3c982014-08-12 02:30:58 -07002087 jobject jclass_loader = manager->GetClassLoader();
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08002088 Thread* self = Thread::Current();
Ian Rogers1ff3c982014-08-12 02:30:58 -07002089 {
2090 // Use a scoped object access to perform to the quick SkipClass check.
2091 const char* descriptor = dex_file.GetClassDescriptor(class_def);
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08002092 ScopedObjectAccess soa(self);
Ian Rogers1ff3c982014-08-12 02:30:58 -07002093 StackHandleScope<3> hs(soa.Self());
2094 Handle<mirror::ClassLoader> class_loader(
2095 hs.NewHandle(soa.Decode<mirror::ClassLoader*>(jclass_loader)));
2096 Handle<mirror::Class> klass(
2097 hs.NewHandle(class_linker->FindClass(soa.Self(), descriptor, class_loader)));
2098 if (klass.Get() == nullptr) {
2099 CHECK(soa.Self()->IsExceptionPending());
2100 soa.Self()->ClearException();
2101 } else if (SkipClass(jclass_loader, dex_file, klass.Get())) {
2102 return;
2103 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002104 }
2105 ClassReference ref(&dex_file, class_def_index);
2106 // Skip compiling classes with generic verifier failures since they will still fail at runtime
Vladimir Markoc7f83202014-01-24 17:55:18 +00002107 if (manager->GetCompiler()->verification_results_->IsClassRejected(ref)) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07002108 return;
2109 }
Ian Rogers13735952014-10-08 12:43:28 -07002110 const uint8_t* class_data = dex_file.GetClassData(class_def);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002111 if (class_data == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07002112 // empty class, probably a marker interface
2113 return;
2114 }
Anwar Ghuloum67f99412013-08-12 14:19:48 -07002115
Mathieu Chartiere86deef2015-03-19 13:43:37 -07002116 CompilerDriver* const driver = manager->GetCompiler();
2117
Brian Carlstrom7940e442013-07-12 13:46:57 -07002118 // Can we run DEX-to-DEX compiler on this class ?
Sebastien Hertz75021222013-07-16 18:34:50 +02002119 DexToDexCompilationLevel dex_to_dex_compilation_level = kDontDexToDexCompile;
Brian Carlstrom7940e442013-07-12 13:46:57 -07002120 {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08002121 ScopedObjectAccess soa(self);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07002122 StackHandleScope<1> hs(soa.Self());
2123 Handle<mirror::ClassLoader> class_loader(
2124 hs.NewHandle(soa.Decode<mirror::ClassLoader*>(jclass_loader)));
Mathieu Chartiere86deef2015-03-19 13:43:37 -07002125 dex_to_dex_compilation_level = driver->GetDexToDexCompilationlevel(
2126 soa.Self(), class_loader, dex_file, class_def);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002127 }
2128 ClassDataItemIterator it(dex_file, class_data);
2129 // Skip fields
2130 while (it.HasNextStaticField()) {
2131 it.Next();
2132 }
2133 while (it.HasNextInstanceField()) {
2134 it.Next();
2135 }
Andreas Gampe4bf3ae92014-11-11 13:28:29 -08002136
2137 bool compilation_enabled = driver->IsClassToCompile(
2138 dex_file.StringByTypeIdx(class_def.class_idx_));
2139
Brian Carlstrom7940e442013-07-12 13:46:57 -07002140 // Compile direct methods
2141 int64_t previous_direct_method_idx = -1;
2142 while (it.HasNextDirectMethod()) {
2143 uint32_t method_idx = it.GetMemberIndex();
2144 if (method_idx == previous_direct_method_idx) {
2145 // smali can create dex files with two encoded_methods sharing the same method_idx
2146 // http://code.google.com/p/smali/issues/detail?id=119
2147 it.Next();
2148 continue;
2149 }
2150 previous_direct_method_idx = method_idx;
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08002151 driver->CompileMethod(self, it.GetMethodCodeItem(), it.GetMethodAccessFlags(),
Ian Rogersbe7149f2013-08-20 09:29:39 -07002152 it.GetMethodInvokeType(class_def), class_def_index,
Andreas Gampe4bf3ae92014-11-11 13:28:29 -08002153 method_idx, jclass_loader, dex_file, dex_to_dex_compilation_level,
2154 compilation_enabled);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002155 it.Next();
2156 }
2157 // Compile virtual methods
2158 int64_t previous_virtual_method_idx = -1;
2159 while (it.HasNextVirtualMethod()) {
2160 uint32_t method_idx = it.GetMemberIndex();
2161 if (method_idx == previous_virtual_method_idx) {
2162 // smali can create dex files with two encoded_methods sharing the same method_idx
2163 // http://code.google.com/p/smali/issues/detail?id=119
2164 it.Next();
2165 continue;
2166 }
2167 previous_virtual_method_idx = method_idx;
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08002168 driver->CompileMethod(self, it.GetMethodCodeItem(), it.GetMethodAccessFlags(),
Ian Rogersbe7149f2013-08-20 09:29:39 -07002169 it.GetMethodInvokeType(class_def), class_def_index,
Andreas Gampe4bf3ae92014-11-11 13:28:29 -08002170 method_idx, jclass_loader, dex_file, dex_to_dex_compilation_level,
2171 compilation_enabled);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002172 it.Next();
2173 }
2174 DCHECK(!it.HasNext());
2175}
2176
2177void CompilerDriver::CompileDexFile(jobject class_loader, const DexFile& dex_file,
Andreas Gampede7b4362014-07-28 18:38:57 -07002178 const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -08002179 ThreadPool* thread_pool, TimingLogger* timings) {
Mathieu Chartierf5997b42014-06-20 10:37:54 -07002180 TimingLogger::ScopedTiming t("Compile Dex File", timings);
Ian Rogersbe7149f2013-08-20 09:29:39 -07002181 ParallelCompilationManager context(Runtime::Current()->GetClassLinker(), class_loader, this,
Andreas Gampede7b4362014-07-28 18:38:57 -07002182 &dex_file, dex_files, thread_pool);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002183 context.ForAll(0, dex_file.NumClassDefs(), CompilerDriver::CompileClass, thread_count_);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002184}
2185
Ian Rogersa4a3f402014-10-20 18:10:34 -07002186// Does the runtime for the InstructionSet provide an implementation returned by
2187// GetQuickGenericJniStub allowing down calls that aren't compiled using a JNI compiler?
2188static bool InstructionSetHasGenericJniStub(InstructionSet isa) {
2189 switch (isa) {
2190 case kArm:
2191 case kArm64:
2192 case kThumb2:
Douglas Leung735b8552014-10-31 12:21:40 -07002193 case kMips:
Andreas Gampe57b34292015-01-14 15:45:59 -08002194 case kMips64:
Ian Rogersa4a3f402014-10-20 18:10:34 -07002195 case kX86:
2196 case kX86_64: return true;
2197 default: return false;
2198 }
2199}
2200
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08002201void CompilerDriver::CompileMethod(Thread* self, const DexFile::CodeItem* code_item,
2202 uint32_t access_flags, InvokeType invoke_type,
2203 uint16_t class_def_idx, uint32_t method_idx,
2204 jobject class_loader, const DexFile& dex_file,
Andreas Gampe4bf3ae92014-11-11 13:28:29 -08002205 DexToDexCompilationLevel dex_to_dex_compilation_level,
2206 bool compilation_enabled) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002207 CompiledMethod* compiled_method = nullptr;
Mathieu Chartier8e219ae2014-08-19 14:29:46 -07002208 uint64_t start_ns = kTimeCompileMethod ? NanoTime() : 0;
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002209 MethodReference method_ref(&dex_file, method_idx);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002210
2211 if ((access_flags & kAccNative) != 0) {
Ian Rogers0188ab72014-03-17 16:51:53 -07002212 // Are we interpreting only and have support for generic JNI down calls?
Jeff Hao4a200f52014-04-01 14:58:49 -07002213 if (!compiler_options_->IsCompilationEnabled() &&
Ian Rogersa4a3f402014-10-20 18:10:34 -07002214 InstructionSetHasGenericJniStub(instruction_set_)) {
Ian Rogers5b271492014-03-14 13:20:26 -07002215 // Leaving this empty will trigger the generic JNI version
2216 } else {
Goran Jakovljevic75c40d42015-04-03 15:45:21 +02002217 compiled_method = compiler_->JniCompile(access_flags, method_idx, dex_file);
2218 CHECK(compiled_method != nullptr);
Ian Rogers5b271492014-03-14 13:20:26 -07002219 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002220 } else if ((access_flags & kAccAbstract) != 0) {
Ian Rogersa4a3f402014-10-20 18:10:34 -07002221 // Abstract methods don't have code.
Brian Carlstrom7940e442013-07-12 13:46:57 -07002222 } else {
Andreas Gampe6c170c92014-12-17 14:35:46 -08002223 bool has_verified_method = verification_results_->GetVerifiedMethod(method_ref) != nullptr;
Andreas Gampe4bf3ae92014-11-11 13:28:29 -08002224 bool compile = compilation_enabled &&
Andreas Gampe6c170c92014-12-17 14:35:46 -08002225 // Basic checks, e.g., not <clinit>.
2226 verification_results_->IsCandidateForCompilation(method_ref, access_flags) &&
2227 // Did not fail to create VerifiedMethod metadata.
2228 has_verified_method;
Sebastien Hertz4d4adb12013-07-24 16:14:19 +02002229 if (compile) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002230 // NOTE: if compiler declines to compile this method, it will return nullptr.
Ian Rogers72d32622014-05-06 16:20:11 -07002231 compiled_method = compiler_->Compile(code_item, access_flags, invoke_type, class_def_idx,
2232 method_idx, class_loader, dex_file);
Sebastien Hertz17965ed2014-04-04 15:59:53 +02002233 }
2234 if (compiled_method == nullptr && dex_to_dex_compilation_level != kDontDexToDexCompile) {
2235 // TODO: add a command-line option to disable DEX-to-DEX compilation ?
Andreas Gampe6c170c92014-12-17 14:35:46 -08002236 // Do not optimize if a VerifiedMethod is missing. SafeCast elision, for example, relies on
2237 // it.
Sebastien Hertz75021222013-07-16 18:34:50 +02002238 (*dex_to_dex_compiler_)(*this, code_item, access_flags,
2239 invoke_type, class_def_idx,
2240 method_idx, class_loader, dex_file,
Andreas Gampe6c170c92014-12-17 14:35:46 -08002241 has_verified_method ? dex_to_dex_compilation_level : kRequired);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002242 }
2243 }
Mathieu Chartier8e219ae2014-08-19 14:29:46 -07002244 if (kTimeCompileMethod) {
2245 uint64_t duration_ns = NanoTime() - start_ns;
2246 if (duration_ns > MsToNs(compiler_->GetMaximumCompilationTimeBeforeWarning())) {
2247 LOG(WARNING) << "Compilation of " << PrettyMethod(method_idx, dex_file)
2248 << " took " << PrettyDuration(duration_ns);
2249 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002250 }
2251
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002252 if (compiled_method != nullptr) {
Vladimir Markof4da6752014-08-01 19:04:18 +01002253 // Count non-relative linker patches.
2254 size_t non_relative_linker_patch_count = 0u;
2255 for (const LinkerPatch& patch : compiled_method->GetPatches()) {
Vladimir Marko20f85592015-03-19 10:07:02 +00002256 if (!patch.IsPcRelative()) {
Vladimir Markof4da6752014-08-01 19:04:18 +01002257 ++non_relative_linker_patch_count;
2258 }
2259 }
Igor Murashkind6dee672014-10-16 18:36:16 -07002260 bool compile_pic = GetCompilerOptions().GetCompilePic(); // Off by default
2261 // When compiling with PIC, there should be zero non-relative linker patches
2262 CHECK(!compile_pic || non_relative_linker_patch_count == 0u);
2263
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002264 DCHECK(GetCompiledMethod(method_ref) == nullptr) << PrettyMethod(method_idx, dex_file);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002265 {
2266 MutexLock mu(self, compiled_methods_lock_);
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002267 compiled_methods_.Put(method_ref, compiled_method);
Vladimir Markof4da6752014-08-01 19:04:18 +01002268 non_relative_linker_patch_count_ += non_relative_linker_patch_count;
Brian Carlstrom7940e442013-07-12 13:46:57 -07002269 }
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002270 DCHECK(GetCompiledMethod(method_ref) != nullptr) << PrettyMethod(method_idx, dex_file);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002271 }
2272
Jeff Hao48699fb2015-04-06 14:21:37 -07002273 // Done compiling, delete the verified method to reduce native memory usage. Do not delete in
2274 // optimizing compiler, which may need the verified method again for inlining.
2275 if (compiler_kind_ != Compiler::kOptimizing) {
2276 verification_results_->RemoveVerifiedMethod(method_ref);
2277 }
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002278
Brian Carlstrom7940e442013-07-12 13:46:57 -07002279 if (self->IsExceptionPending()) {
2280 ScopedObjectAccess soa(self);
2281 LOG(FATAL) << "Unexpected exception compiling: " << PrettyMethod(method_idx, dex_file) << "\n"
Nicolas Geoffray14691c52015-03-05 10:40:17 +00002282 << self->GetException()->Dump();
Brian Carlstrom7940e442013-07-12 13:46:57 -07002283 }
2284}
2285
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08002286void CompilerDriver::RemoveCompiledMethod(const MethodReference& method_ref) {
2287 CompiledMethod* compiled_method = nullptr;
2288 {
2289 MutexLock mu(Thread::Current(), compiled_methods_lock_);
2290 auto it = compiled_methods_.find(method_ref);
2291 if (it != compiled_methods_.end()) {
2292 compiled_method = it->second;
2293 compiled_methods_.erase(it);
2294 }
2295 }
2296 if (compiled_method != nullptr) {
2297 CompiledMethod::ReleaseSwapAllocatedCompiledMethod(this, compiled_method);
2298 }
2299}
2300
Brian Carlstrom7940e442013-07-12 13:46:57 -07002301CompiledClass* CompilerDriver::GetCompiledClass(ClassReference ref) const {
2302 MutexLock mu(Thread::Current(), compiled_classes_lock_);
2303 ClassTable::const_iterator it = compiled_classes_.find(ref);
2304 if (it == compiled_classes_.end()) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002305 return nullptr;
Brian Carlstrom7940e442013-07-12 13:46:57 -07002306 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002307 CHECK(it->second != nullptr);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002308 return it->second;
2309}
2310
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07002311void CompilerDriver::RecordClassStatus(ClassReference ref, mirror::Class::Status status) {
2312 MutexLock mu(Thread::Current(), compiled_classes_lock_);
2313 auto it = compiled_classes_.find(ref);
2314 if (it == compiled_classes_.end() || it->second->GetStatus() != status) {
2315 // An entry doesn't exist or the status is lower than the new status.
2316 if (it != compiled_classes_.end()) {
2317 CHECK_GT(status, it->second->GetStatus());
2318 delete it->second;
2319 }
2320 switch (status) {
2321 case mirror::Class::kStatusNotReady:
2322 case mirror::Class::kStatusError:
2323 case mirror::Class::kStatusRetryVerificationAtRuntime:
2324 case mirror::Class::kStatusVerified:
2325 case mirror::Class::kStatusInitialized:
2326 break; // Expected states.
2327 default:
2328 LOG(FATAL) << "Unexpected class status for class "
2329 << PrettyDescriptor(ref.first->GetClassDescriptor(ref.first->GetClassDef(ref.second)))
2330 << " of " << status;
2331 }
2332 CompiledClass* compiled_class = new CompiledClass(status);
2333 compiled_classes_.Overwrite(ref, compiled_class);
2334 }
2335}
2336
Brian Carlstrom7940e442013-07-12 13:46:57 -07002337CompiledMethod* CompilerDriver::GetCompiledMethod(MethodReference ref) const {
2338 MutexLock mu(Thread::Current(), compiled_methods_lock_);
2339 MethodTable::const_iterator it = compiled_methods_.find(ref);
2340 if (it == compiled_methods_.end()) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002341 return nullptr;
Brian Carlstrom7940e442013-07-12 13:46:57 -07002342 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002343 CHECK(it->second != nullptr);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002344 return it->second;
2345}
2346
Calin Juravlef1c6d9e2015-04-13 18:42:21 +01002347bool CompilerDriver::IsMethodVerifiedWithoutFailures(uint32_t method_idx,
2348 uint16_t class_def_idx,
2349 const DexFile& dex_file) const {
2350 const VerifiedMethod* verified_method = GetVerifiedMethod(&dex_file, method_idx);
2351 if (verified_method != nullptr) {
2352 return !verified_method->HasVerificationFailures();
2353 }
2354
2355 // If we can't find verification metadata, check if this is a system class (we trust that system
2356 // classes have their methods verified). If it's not, be conservative and assume the method
2357 // has not been verified successfully.
2358
2359 // TODO: When compiling the boot image it should be safe to assume that everything is verified,
2360 // even if methods are not found in the verification cache.
2361 const char* descriptor = dex_file.GetClassDescriptor(dex_file.GetClassDef(class_def_idx));
2362 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
2363 Thread* self = Thread::Current();
2364 ScopedObjectAccess soa(self);
2365 bool is_system_class = class_linker->FindSystemClass(self, descriptor) != nullptr;
2366 if (!is_system_class) {
2367 self->ClearException();
2368 }
2369 return is_system_class;
2370}
2371
Vladimir Markof4da6752014-08-01 19:04:18 +01002372size_t CompilerDriver::GetNonRelativeLinkerPatchCount() const {
2373 MutexLock mu(Thread::Current(), compiled_methods_lock_);
2374 return non_relative_linker_patch_count_;
2375}
2376
Brian Carlstrom7940e442013-07-12 13:46:57 -07002377void CompilerDriver::AddRequiresConstructorBarrier(Thread* self, const DexFile* dex_file,
Ian Rogers8b2c0b92013-09-19 02:56:49 -07002378 uint16_t class_def_index) {
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07002379 WriterMutexLock mu(self, freezing_constructor_lock_);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002380 freezing_constructor_classes_.insert(ClassReference(dex_file, class_def_index));
2381}
2382
2383bool CompilerDriver::RequiresConstructorBarrier(Thread* self, const DexFile* dex_file,
Ian Rogers8b2c0b92013-09-19 02:56:49 -07002384 uint16_t class_def_index) {
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07002385 ReaderMutexLock mu(self, freezing_constructor_lock_);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002386 return freezing_constructor_classes_.count(ClassReference(dex_file, class_def_index)) != 0;
2387}
2388
2389bool CompilerDriver::WriteElf(const std::string& android_root,
2390 bool is_host,
2391 const std::vector<const art::DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -08002392 OatWriter* oat_writer,
Brian Carlstrom7940e442013-07-12 13:46:57 -07002393 art::File* file)
2394 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Andreas Gampe3773cd02015-04-10 09:28:22 -07002395 if (kProduce64BitELFFiles && Is64BitInstructionSet(GetInstructionSet())) {
2396 return art::ElfWriterQuick64::Create(file, oat_writer, dex_files, android_root, is_host, *this);
2397 } else {
2398 return art::ElfWriterQuick32::Create(file, oat_writer, dex_files, android_root, is_host, *this);
2399 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002400}
Dave Allison39c3bfb2014-01-28 18:33:52 -08002401
Dave Allison39c3bfb2014-01-28 18:33:52 -08002402bool CompilerDriver::SkipCompilation(const std::string& method_name) {
Calin Juravlec1b643c2014-05-30 23:44:11 +01002403 if (!profile_present_) {
Dave Allison644789f2014-04-10 13:06:10 -07002404 return false;
Dave Allison39c3bfb2014-01-28 18:33:52 -08002405 }
Calin Juravlebb0b53f2014-05-23 17:33:29 +01002406 // First find the method in the profile file.
2407 ProfileFile::ProfileData data;
2408 if (!profile_file_.GetProfileData(&data, method_name)) {
Dave Allison39c3bfb2014-01-28 18:33:52 -08002409 // Not in profile, no information can be determined.
Calin Juravle08f7a2d2014-06-23 15:22:29 +01002410 if (kIsDebugBuild) {
2411 VLOG(compiler) << "not compiling " << method_name << " because it's not in the profile";
2412 }
Dave Allison39c3bfb2014-01-28 18:33:52 -08002413 return true;
2414 }
Calin Juravlebb0b53f2014-05-23 17:33:29 +01002415
2416 // Methods that comprise top_k_threshold % of the total samples will be compiled.
Calin Juravlef6a4cee2014-04-02 17:03:08 +01002417 // Compare against the start of the topK percentage bucket just in case the threshold
Calin Juravle04ff2262014-04-02 19:08:47 +01002418 // falls inside a bucket.
Calin Juravlec1b643c2014-05-30 23:44:11 +01002419 bool compile = data.GetTopKUsedPercentage() - data.GetUsedPercent()
2420 <= compiler_options_->GetTopKProfileThreshold();
Calin Juravle08f7a2d2014-06-23 15:22:29 +01002421 if (kIsDebugBuild) {
2422 if (compile) {
2423 LOG(INFO) << "compiling method " << method_name << " because its usage is part of top "
2424 << data.GetTopKUsedPercentage() << "% with a percent of " << data.GetUsedPercent() << "%"
2425 << " (topKThreshold=" << compiler_options_->GetTopKProfileThreshold() << ")";
2426 } else {
2427 VLOG(compiler) << "not compiling method " << method_name
2428 << " because it's not part of leading " << compiler_options_->GetTopKProfileThreshold()
2429 << "% samples)";
2430 }
Dave Allison39c3bfb2014-01-28 18:33:52 -08002431 }
2432 return !compile;
2433}
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002434
Andreas Gampe8d295f82015-01-20 14:50:21 -08002435std::string CompilerDriver::GetMemoryUsageString(bool extended) const {
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002436 std::ostringstream oss;
Mathieu Chartier9b34b242015-03-09 11:30:17 -07002437 Runtime* const runtime = Runtime::Current();
2438 const ArenaPool* arena_pool = runtime->GetArenaPool();
2439 gc::Heap* const heap = runtime->GetHeap();
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002440 oss << "arena alloc=" << PrettySize(arena_pool->GetBytesAllocated());
2441 oss << " java alloc=" << PrettySize(heap->GetBytesAllocated());
Elliott Hughes7bf5a262015-04-02 20:55:07 -07002442#if defined(__BIONIC__) || defined(__GLIBC__)
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002443 struct mallinfo info = mallinfo();
2444 const size_t allocated_space = static_cast<size_t>(info.uordblks);
2445 const size_t free_space = static_cast<size_t>(info.fordblks);
2446 oss << " native alloc=" << PrettySize(allocated_space) << " free="
2447 << PrettySize(free_space);
2448#endif
Andreas Gampee21dc3d2014-12-08 16:59:43 -08002449 if (swap_space_.get() != nullptr) {
2450 oss << " swap=" << PrettySize(swap_space_->GetSize());
2451 }
Andreas Gampe8d295f82015-01-20 14:50:21 -08002452 if (extended) {
2453 oss << "\nCode dedupe: " << dedupe_code_.DumpStats();
2454 oss << "\nMapping table dedupe: " << dedupe_mapping_table_.DumpStats();
2455 oss << "\nVmap table dedupe: " << dedupe_vmap_table_.DumpStats();
2456 oss << "\nGC map dedupe: " << dedupe_gc_map_.DumpStats();
2457 oss << "\nCFI info dedupe: " << dedupe_cfi_info_.DumpStats();
2458 }
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002459 return oss.str();
2460}
2461
Brian Carlstrom7940e442013-07-12 13:46:57 -07002462} // namespace art