blob: c858326562f2f66985cd2953449b04d37622f06f [file] [log] [blame]
Brian Carlstrom7940e442013-07-12 13:46:57 -07001/*
2 * Copyright (C) 2011 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include "compiler_driver.h"
18
Anwar Ghuloum67f99412013-08-12 14:19:48 -070019#define ATRACE_TAG ATRACE_TAG_DALVIK
20#include <utils/Trace.h>
Brian Carlstrom7940e442013-07-12 13:46:57 -070021
Andreas Gampeb0f370e2014-09-25 22:51:40 -070022#include <unordered_set>
Anwar Ghuloum67f99412013-08-12 14:19:48 -070023#include <vector>
Brian Carlstrom7940e442013-07-12 13:46:57 -070024#include <unistd.h>
25
Mathieu Chartierab972ef2014-12-03 17:38:22 -080026#ifndef __APPLE__
27#include <malloc.h> // For mallinfo
28#endif
29
Mathieu Chartierc7853442015-03-27 14:35:38 -070030#include "art_field-inl.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070031#include "base/stl_util.h"
32#include "base/timing_logger.h"
Vladimir Marko3481ba22015-04-13 12:22:36 +010033#include "class_linker-inl.h"
Mingyao Yang98d1cc82014-05-15 17:02:16 -070034#include "compiled_class.h"
Vladimir Marko20f85592015-03-19 10:07:02 +000035#include "compiled_method.h"
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +000036#include "compiler.h"
Vladimir Markobe0e5462014-02-26 11:24:15 +000037#include "compiler_driver-inl.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070038#include "dex_compilation_unit.h"
39#include "dex_file-inl.h"
Vladimir Markoc7f83202014-01-24 17:55:18 +000040#include "dex/verification_results.h"
Vladimir Marko2730db02014-01-27 11:15:17 +000041#include "dex/verified_method.h"
Vladimir Marko2bc47802014-02-10 09:43:07 +000042#include "dex/quick/dex_file_method_inliner.h"
Mark Mendellae9fd932014-02-10 16:14:35 -080043#include "driver/compiler_options.h"
Andreas Gampe3773cd02015-04-10 09:28:22 -070044#include "elf_writer_quick.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070045#include "jni_internal.h"
Ian Rogers22d5e732014-07-15 22:23:51 -070046#include "object_lock.h"
Calin Juravlebb0b53f2014-05-23 17:33:29 +010047#include "profiler.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070048#include "runtime.h"
49#include "gc/accounting/card_table-inl.h"
50#include "gc/accounting/heap_bitmap.h"
51#include "gc/space/space.h"
Brian Carlstromea46f952013-07-30 01:26:50 -070052#include "mirror/art_method-inl.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070053#include "mirror/class_loader.h"
54#include "mirror/class-inl.h"
55#include "mirror/dex_cache-inl.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070056#include "mirror/object-inl.h"
57#include "mirror/object_array-inl.h"
58#include "mirror/throwable.h"
59#include "scoped_thread_state_change.h"
60#include "ScopedLocalRef.h"
Mathieu Chartiereb8167a2014-05-07 15:43:14 -070061#include "handle_scope-inl.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070062#include "thread.h"
Andreas Gampeb0f370e2014-09-25 22:51:40 -070063#include "thread_list.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070064#include "thread_pool.h"
Ian Rogers848871b2013-08-05 10:56:33 -070065#include "trampolines/trampoline_compiler.h"
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +010066#include "transaction.h"
Vladimir Marko20f85592015-03-19 10:07:02 +000067#include "utils/dex_cache_arrays_layout-inl.h"
Andreas Gampee21dc3d2014-12-08 16:59:43 -080068#include "utils/swap_space.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070069#include "verifier/method_verifier.h"
Vladimir Marko2bc47802014-02-10 09:43:07 +000070#include "verifier/method_verifier-inl.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070071
Brian Carlstrom7940e442013-07-12 13:46:57 -070072namespace art {
73
Mathieu Chartier8e219ae2014-08-19 14:29:46 -070074static constexpr bool kTimeCompileMethod = !kIsDebugBuild;
75
Andreas Gampe3773cd02015-04-10 09:28:22 -070076// Whether to produce 64-bit ELF files for 64-bit targets. Leave this off for now.
77static constexpr bool kProduce64BitELFFiles = false;
78
Andreas Gampe70bef0d2015-04-15 02:37:28 -070079// Whether classes-to-compile and methods-to-compile are only applied to the boot image, or, when
80// given, too all compilations.
Andreas Gampeb1fcead2015-04-20 18:53:51 -070081static constexpr bool kRestrictCompilationFiltersToImage = true;
82
Brian Carlstrom7940e442013-07-12 13:46:57 -070083static double Percentage(size_t x, size_t y) {
84 return 100.0 * (static_cast<double>(x)) / (static_cast<double>(x + y));
85}
86
87static void DumpStat(size_t x, size_t y, const char* str) {
88 if (x == 0 && y == 0) {
89 return;
90 }
Ian Rogerse732ef12013-10-09 15:22:24 -070091 LOG(INFO) << Percentage(x, y) << "% of " << str << " for " << (x + y) << " cases";
Brian Carlstrom7940e442013-07-12 13:46:57 -070092}
93
Vladimir Markof096aad2014-01-23 15:51:58 +000094class CompilerDriver::AOTCompilationStats {
Brian Carlstrom7940e442013-07-12 13:46:57 -070095 public:
96 AOTCompilationStats()
97 : stats_lock_("AOT compilation statistics lock"),
98 types_in_dex_cache_(0), types_not_in_dex_cache_(0),
99 strings_in_dex_cache_(0), strings_not_in_dex_cache_(0),
100 resolved_types_(0), unresolved_types_(0),
101 resolved_instance_fields_(0), unresolved_instance_fields_(0),
102 resolved_local_static_fields_(0), resolved_static_fields_(0), unresolved_static_fields_(0),
103 type_based_devirtualization_(0),
104 safe_casts_(0), not_safe_casts_(0) {
105 for (size_t i = 0; i <= kMaxInvokeType; i++) {
106 resolved_methods_[i] = 0;
107 unresolved_methods_[i] = 0;
108 virtual_made_direct_[i] = 0;
109 direct_calls_to_boot_[i] = 0;
110 direct_methods_to_boot_[i] = 0;
111 }
112 }
113
114 void Dump() {
115 DumpStat(types_in_dex_cache_, types_not_in_dex_cache_, "types known to be in dex cache");
116 DumpStat(strings_in_dex_cache_, strings_not_in_dex_cache_, "strings known to be in dex cache");
117 DumpStat(resolved_types_, unresolved_types_, "types resolved");
118 DumpStat(resolved_instance_fields_, unresolved_instance_fields_, "instance fields resolved");
119 DumpStat(resolved_local_static_fields_ + resolved_static_fields_, unresolved_static_fields_,
120 "static fields resolved");
121 DumpStat(resolved_local_static_fields_, resolved_static_fields_ + unresolved_static_fields_,
122 "static fields local to a class");
123 DumpStat(safe_casts_, not_safe_casts_, "check-casts removed based on type information");
124 // Note, the code below subtracts the stat value so that when added to the stat value we have
125 // 100% of samples. TODO: clean this up.
126 DumpStat(type_based_devirtualization_,
127 resolved_methods_[kVirtual] + unresolved_methods_[kVirtual] +
128 resolved_methods_[kInterface] + unresolved_methods_[kInterface] -
129 type_based_devirtualization_,
130 "virtual/interface calls made direct based on type information");
131
132 for (size_t i = 0; i <= kMaxInvokeType; i++) {
133 std::ostringstream oss;
134 oss << static_cast<InvokeType>(i) << " methods were AOT resolved";
135 DumpStat(resolved_methods_[i], unresolved_methods_[i], oss.str().c_str());
136 if (virtual_made_direct_[i] > 0) {
137 std::ostringstream oss2;
138 oss2 << static_cast<InvokeType>(i) << " methods made direct";
139 DumpStat(virtual_made_direct_[i],
140 resolved_methods_[i] + unresolved_methods_[i] - virtual_made_direct_[i],
141 oss2.str().c_str());
142 }
143 if (direct_calls_to_boot_[i] > 0) {
144 std::ostringstream oss2;
145 oss2 << static_cast<InvokeType>(i) << " method calls are direct into boot";
146 DumpStat(direct_calls_to_boot_[i],
147 resolved_methods_[i] + unresolved_methods_[i] - direct_calls_to_boot_[i],
148 oss2.str().c_str());
149 }
150 if (direct_methods_to_boot_[i] > 0) {
151 std::ostringstream oss2;
152 oss2 << static_cast<InvokeType>(i) << " method calls have methods in boot";
153 DumpStat(direct_methods_to_boot_[i],
154 resolved_methods_[i] + unresolved_methods_[i] - direct_methods_to_boot_[i],
155 oss2.str().c_str());
156 }
157 }
158 }
159
160// Allow lossy statistics in non-debug builds.
161#ifndef NDEBUG
162#define STATS_LOCK() MutexLock mu(Thread::Current(), stats_lock_)
163#else
164#define STATS_LOCK()
165#endif
166
167 void TypeInDexCache() {
168 STATS_LOCK();
169 types_in_dex_cache_++;
170 }
171
172 void TypeNotInDexCache() {
173 STATS_LOCK();
174 types_not_in_dex_cache_++;
175 }
176
177 void StringInDexCache() {
178 STATS_LOCK();
179 strings_in_dex_cache_++;
180 }
181
182 void StringNotInDexCache() {
183 STATS_LOCK();
184 strings_not_in_dex_cache_++;
185 }
186
187 void TypeDoesntNeedAccessCheck() {
188 STATS_LOCK();
189 resolved_types_++;
190 }
191
192 void TypeNeedsAccessCheck() {
193 STATS_LOCK();
194 unresolved_types_++;
195 }
196
197 void ResolvedInstanceField() {
198 STATS_LOCK();
199 resolved_instance_fields_++;
200 }
201
202 void UnresolvedInstanceField() {
203 STATS_LOCK();
204 unresolved_instance_fields_++;
205 }
206
207 void ResolvedLocalStaticField() {
208 STATS_LOCK();
209 resolved_local_static_fields_++;
210 }
211
212 void ResolvedStaticField() {
213 STATS_LOCK();
214 resolved_static_fields_++;
215 }
216
217 void UnresolvedStaticField() {
218 STATS_LOCK();
219 unresolved_static_fields_++;
220 }
221
222 // Indicate that type information from the verifier led to devirtualization.
223 void PreciseTypeDevirtualization() {
224 STATS_LOCK();
225 type_based_devirtualization_++;
226 }
227
228 // Indicate that a method of the given type was resolved at compile time.
229 void ResolvedMethod(InvokeType type) {
230 DCHECK_LE(type, kMaxInvokeType);
231 STATS_LOCK();
232 resolved_methods_[type]++;
233 }
234
235 // Indicate that a method of the given type was unresolved at compile time as it was in an
236 // unknown dex file.
237 void UnresolvedMethod(InvokeType type) {
238 DCHECK_LE(type, kMaxInvokeType);
239 STATS_LOCK();
240 unresolved_methods_[type]++;
241 }
242
243 // Indicate that a type of virtual method dispatch has been converted into a direct method
244 // dispatch.
245 void VirtualMadeDirect(InvokeType type) {
246 DCHECK(type == kVirtual || type == kInterface || type == kSuper);
247 STATS_LOCK();
248 virtual_made_direct_[type]++;
249 }
250
251 // Indicate that a method of the given type was able to call directly into boot.
252 void DirectCallsToBoot(InvokeType type) {
253 DCHECK_LE(type, kMaxInvokeType);
254 STATS_LOCK();
255 direct_calls_to_boot_[type]++;
256 }
257
258 // Indicate that a method of the given type was able to be resolved directly from boot.
259 void DirectMethodsToBoot(InvokeType type) {
260 DCHECK_LE(type, kMaxInvokeType);
261 STATS_LOCK();
262 direct_methods_to_boot_[type]++;
263 }
264
Vladimir Markof096aad2014-01-23 15:51:58 +0000265 void ProcessedInvoke(InvokeType type, int flags) {
266 STATS_LOCK();
267 if (flags == 0) {
268 unresolved_methods_[type]++;
269 } else {
270 DCHECK_NE((flags & kFlagMethodResolved), 0);
271 resolved_methods_[type]++;
272 if ((flags & kFlagVirtualMadeDirect) != 0) {
273 virtual_made_direct_[type]++;
274 if ((flags & kFlagPreciseTypeDevirtualization) != 0) {
275 type_based_devirtualization_++;
276 }
277 } else {
278 DCHECK_EQ((flags & kFlagPreciseTypeDevirtualization), 0);
279 }
280 if ((flags & kFlagDirectCallToBoot) != 0) {
281 direct_calls_to_boot_[type]++;
282 }
283 if ((flags & kFlagDirectMethodToBoot) != 0) {
284 direct_methods_to_boot_[type]++;
285 }
286 }
287 }
288
Brian Carlstrom7940e442013-07-12 13:46:57 -0700289 // A check-cast could be eliminated due to verifier type analysis.
290 void SafeCast() {
291 STATS_LOCK();
292 safe_casts_++;
293 }
294
295 // A check-cast couldn't be eliminated due to verifier type analysis.
296 void NotASafeCast() {
297 STATS_LOCK();
298 not_safe_casts_++;
299 }
300
301 private:
302 Mutex stats_lock_;
303
304 size_t types_in_dex_cache_;
305 size_t types_not_in_dex_cache_;
306
307 size_t strings_in_dex_cache_;
308 size_t strings_not_in_dex_cache_;
309
310 size_t resolved_types_;
311 size_t unresolved_types_;
312
313 size_t resolved_instance_fields_;
314 size_t unresolved_instance_fields_;
315
316 size_t resolved_local_static_fields_;
317 size_t resolved_static_fields_;
318 size_t unresolved_static_fields_;
319 // Type based devirtualization for invoke interface and virtual.
320 size_t type_based_devirtualization_;
321
322 size_t resolved_methods_[kMaxInvokeType + 1];
323 size_t unresolved_methods_[kMaxInvokeType + 1];
324 size_t virtual_made_direct_[kMaxInvokeType + 1];
325 size_t direct_calls_to_boot_[kMaxInvokeType + 1];
326 size_t direct_methods_to_boot_[kMaxInvokeType + 1];
327
328 size_t safe_casts_;
329 size_t not_safe_casts_;
330
331 DISALLOW_COPY_AND_ASSIGN(AOTCompilationStats);
332};
333
Brian Carlstrom7940e442013-07-12 13:46:57 -0700334
335extern "C" art::CompiledMethod* ArtCompileDEX(art::CompilerDriver& compiler,
336 const art::DexFile::CodeItem* code_item,
337 uint32_t access_flags,
338 art::InvokeType invoke_type,
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700339 uint16_t class_def_idx,
Brian Carlstrom7940e442013-07-12 13:46:57 -0700340 uint32_t method_idx,
341 jobject class_loader,
342 const art::DexFile& dex_file);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700343
Brian Carlstrom6449c622014-02-10 23:48:36 -0800344CompilerDriver::CompilerDriver(const CompilerOptions* compiler_options,
345 VerificationResults* verification_results,
Vladimir Marko5816ed42013-11-27 17:04:20 +0000346 DexFileToMethodInlinerMap* method_inliner_map,
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +0000347 Compiler::Kind compiler_kind,
Nicolas Geoffrayf5df8972014-02-14 18:37:08 +0000348 InstructionSet instruction_set,
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700349 const InstructionSetFeatures* instruction_set_features,
Andreas Gampeb1fcead2015-04-20 18:53:51 -0700350 bool image, std::unordered_set<std::string>* image_classes,
351 std::unordered_set<std::string>* compiled_classes,
Andreas Gampe70bef0d2015-04-15 02:37:28 -0700352 std::unordered_set<std::string>* compiled_methods,
Andreas Gampeb1fcead2015-04-20 18:53:51 -0700353 size_t thread_count, bool dump_stats, bool dump_passes,
David Brazdil866c0312015-01-13 21:21:31 +0000354 const std::string& dump_cfg_file_name, CumulativeLogger* timer,
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800355 int swap_fd, const std::string& profile_file)
356 : swap_space_(swap_fd == -1 ? nullptr : new SwapSpace(swap_fd, 10 * MB)),
357 swap_space_allocator_(new SwapAllocator<void>(swap_space_.get())),
358 profile_present_(false), compiler_options_(compiler_options),
Brian Carlstrom6449c622014-02-10 23:48:36 -0800359 verification_results_(verification_results),
Vladimir Marko5816ed42013-11-27 17:04:20 +0000360 method_inliner_map_(method_inliner_map),
Ian Rogers72d32622014-05-06 16:20:11 -0700361 compiler_(Compiler::Create(this, compiler_kind)),
Jeff Hao48699fb2015-04-06 14:21:37 -0700362 compiler_kind_(compiler_kind),
Brian Carlstrom7940e442013-07-12 13:46:57 -0700363 instruction_set_(instruction_set),
Dave Allison70202782013-10-22 17:52:19 -0700364 instruction_set_features_(instruction_set_features),
Brian Carlstrom7940e442013-07-12 13:46:57 -0700365 freezing_constructor_lock_("freezing constructor lock"),
366 compiled_classes_lock_("compiled classes lock"),
367 compiled_methods_lock_("compiled method lock"),
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800368 compiled_methods_(MethodTable::key_compare()),
Vladimir Markof4da6752014-08-01 19:04:18 +0100369 non_relative_linker_patch_count_(0u),
Brian Carlstrom7940e442013-07-12 13:46:57 -0700370 image_(image),
371 image_classes_(image_classes),
Andreas Gampe4bf3ae92014-11-11 13:28:29 -0800372 classes_to_compile_(compiled_classes),
Andreas Gampe70bef0d2015-04-15 02:37:28 -0700373 methods_to_compile_(compiled_methods),
Andreas Gampe6cf49e52015-03-05 13:08:45 -0800374 had_hard_verifier_failure_(false),
Brian Carlstrom7940e442013-07-12 13:46:57 -0700375 thread_count_(thread_count),
Brian Carlstrom7940e442013-07-12 13:46:57 -0700376 stats_(new AOTCompilationStats),
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800377 dedupe_enabled_(true),
Brian Carlstrom7940e442013-07-12 13:46:57 -0700378 dump_stats_(dump_stats),
Nicolas Geoffrayea3fa0b2014-02-10 11:59:41 +0000379 dump_passes_(dump_passes),
David Brazdil866c0312015-01-13 21:21:31 +0000380 dump_cfg_file_name_(dump_cfg_file_name),
Nicolas Geoffrayea3fa0b2014-02-10 11:59:41 +0000381 timings_logger_(timer),
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700382 compiler_context_(nullptr),
Andreas Gampe57b34292015-01-14 15:45:59 -0800383 support_boot_image_fixup_(instruction_set != kMips && instruction_set != kMips64),
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800384 dedupe_code_("dedupe code", *swap_space_allocator_),
385 dedupe_src_mapping_table_("dedupe source mapping table", *swap_space_allocator_),
386 dedupe_mapping_table_("dedupe mapping table", *swap_space_allocator_),
387 dedupe_vmap_table_("dedupe vmap table", *swap_space_allocator_),
388 dedupe_gc_map_("dedupe gc map", *swap_space_allocator_),
389 dedupe_cfi_info_("dedupe cfi info", *swap_space_allocator_) {
Brian Carlstrom6449c622014-02-10 23:48:36 -0800390 DCHECK(compiler_options_ != nullptr);
391 DCHECK(verification_results_ != nullptr);
392 DCHECK(method_inliner_map_ != nullptr);
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700393
Sebastien Hertz75021222013-07-16 18:34:50 +0200394 dex_to_dex_compiler_ = reinterpret_cast<DexToDexCompilerFn>(ArtCompileDEX);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700395
Ian Rogers72d32622014-05-06 16:20:11 -0700396 compiler_->Init();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700397
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800398 CHECK_EQ(image_, image_classes_.get() != nullptr);
Mark Mendellae9fd932014-02-10 16:14:35 -0800399
Calin Juravlec1b643c2014-05-30 23:44:11 +0100400 // Read the profile file if one is provided.
401 if (!profile_file.empty()) {
402 profile_present_ = profile_file_.LoadFile(profile_file);
403 if (profile_present_) {
404 LOG(INFO) << "Using profile data form file " << profile_file;
405 } else {
406 LOG(INFO) << "Failed to load profile file " << profile_file;
407 }
408 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700409}
410
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800411SwapVector<uint8_t>* CompilerDriver::DeduplicateCode(const ArrayRef<const uint8_t>& code) {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800412 DCHECK(dedupe_enabled_);
Mathieu Chartier193bad92013-08-29 18:46:00 -0700413 return dedupe_code_.Add(Thread::Current(), code);
414}
415
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800416SwapSrcMap* CompilerDriver::DeduplicateSrcMappingTable(const ArrayRef<SrcMapElem>& src_map) {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800417 DCHECK(dedupe_enabled_);
Yevgeny Roubane3ea8382014-08-08 16:29:38 +0700418 return dedupe_src_mapping_table_.Add(Thread::Current(), src_map);
419}
420
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800421SwapVector<uint8_t>* CompilerDriver::DeduplicateMappingTable(const ArrayRef<const uint8_t>& code) {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800422 DCHECK(dedupe_enabled_);
Mathieu Chartier193bad92013-08-29 18:46:00 -0700423 return dedupe_mapping_table_.Add(Thread::Current(), code);
424}
425
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800426SwapVector<uint8_t>* CompilerDriver::DeduplicateVMapTable(const ArrayRef<const uint8_t>& code) {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800427 DCHECK(dedupe_enabled_);
Mathieu Chartier193bad92013-08-29 18:46:00 -0700428 return dedupe_vmap_table_.Add(Thread::Current(), code);
429}
430
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800431SwapVector<uint8_t>* CompilerDriver::DeduplicateGCMap(const ArrayRef<const uint8_t>& code) {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800432 DCHECK(dedupe_enabled_);
Mathieu Chartier193bad92013-08-29 18:46:00 -0700433 return dedupe_gc_map_.Add(Thread::Current(), code);
434}
435
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800436SwapVector<uint8_t>* CompilerDriver::DeduplicateCFIInfo(const ArrayRef<const uint8_t>& cfi_info) {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800437 DCHECK(dedupe_enabled_);
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800438 return dedupe_cfi_info_.Add(Thread::Current(), cfi_info);
Mark Mendellae9fd932014-02-10 16:14:35 -0800439}
440
Brian Carlstrom7940e442013-07-12 13:46:57 -0700441CompilerDriver::~CompilerDriver() {
442 Thread* self = Thread::Current();
443 {
444 MutexLock mu(self, compiled_classes_lock_);
445 STLDeleteValues(&compiled_classes_);
446 }
447 {
448 MutexLock mu(self, compiled_methods_lock_);
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800449 for (auto& pair : compiled_methods_) {
450 CompiledMethod::ReleaseSwapAllocatedCompiledMethod(this, pair.second);
451 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700452 }
Ian Rogers72d32622014-05-06 16:20:11 -0700453 compiler_->UnInit();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700454}
455
Ian Rogersdd7624d2014-03-14 17:43:00 -0700456#define CREATE_TRAMPOLINE(type, abi, offset) \
Andreas Gampeaf13ad92014-04-11 12:07:48 -0700457 if (Is64BitInstructionSet(instruction_set_)) { \
Ian Rogersdd7624d2014-03-14 17:43:00 -0700458 return CreateTrampoline64(instruction_set_, abi, \
459 type ## _ENTRYPOINT_OFFSET(8, offset)); \
460 } else { \
461 return CreateTrampoline32(instruction_set_, abi, \
462 type ## _ENTRYPOINT_OFFSET(4, offset)); \
463 }
464
Ian Rogers848871b2013-08-05 10:56:33 -0700465const std::vector<uint8_t>* CompilerDriver::CreateInterpreterToInterpreterBridge() const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700466 CREATE_TRAMPOLINE(INTERPRETER, kInterpreterAbi, pInterpreterToInterpreterBridge)
Ian Rogers848871b2013-08-05 10:56:33 -0700467}
468
469const std::vector<uint8_t>* CompilerDriver::CreateInterpreterToCompiledCodeBridge() const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700470 CREATE_TRAMPOLINE(INTERPRETER, kInterpreterAbi, pInterpreterToCompiledCodeBridge)
Ian Rogers848871b2013-08-05 10:56:33 -0700471}
472
473const std::vector<uint8_t>* CompilerDriver::CreateJniDlsymLookup() const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700474 CREATE_TRAMPOLINE(JNI, kJniAbi, pDlsymLookup)
Ian Rogers848871b2013-08-05 10:56:33 -0700475}
476
Andreas Gampe2da88232014-02-27 12:26:20 -0800477const std::vector<uint8_t>* CompilerDriver::CreateQuickGenericJniTrampoline() const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700478 CREATE_TRAMPOLINE(QUICK, kQuickAbi, pQuickGenericJniTrampoline)
Andreas Gampe2da88232014-02-27 12:26:20 -0800479}
480
Jeff Hao88474b42013-10-23 16:24:40 -0700481const std::vector<uint8_t>* CompilerDriver::CreateQuickImtConflictTrampoline() const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700482 CREATE_TRAMPOLINE(QUICK, kQuickAbi, pQuickImtConflictTrampoline)
Jeff Hao88474b42013-10-23 16:24:40 -0700483}
484
Brian Carlstrom7940e442013-07-12 13:46:57 -0700485const std::vector<uint8_t>* CompilerDriver::CreateQuickResolutionTrampoline() const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700486 CREATE_TRAMPOLINE(QUICK, kQuickAbi, pQuickResolutionTrampoline)
Brian Carlstrom7940e442013-07-12 13:46:57 -0700487}
488
Ian Rogers848871b2013-08-05 10:56:33 -0700489const std::vector<uint8_t>* CompilerDriver::CreateQuickToInterpreterBridge() const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700490 CREATE_TRAMPOLINE(QUICK, kQuickAbi, pQuickToInterpreterBridge)
Brian Carlstrom7940e442013-07-12 13:46:57 -0700491}
Ian Rogersdd7624d2014-03-14 17:43:00 -0700492#undef CREATE_TRAMPOLINE
Brian Carlstrom7940e442013-07-12 13:46:57 -0700493
494void CompilerDriver::CompileAll(jobject class_loader,
Brian Carlstrom45602482013-07-21 22:07:55 -0700495 const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -0800496 TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700497 DCHECK(!Runtime::Current()->IsStarted());
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700498 std::unique_ptr<ThreadPool> thread_pool(
499 new ThreadPool("Compiler driver thread pool", thread_count_ - 1));
Andreas Gampe8d295f82015-01-20 14:50:21 -0800500 VLOG(compiler) << "Before precompile " << GetMemoryUsageString(false);
Ian Rogers3d504072014-03-01 09:16:49 -0800501 PreCompile(class_loader, dex_files, thread_pool.get(), timings);
502 Compile(class_loader, dex_files, thread_pool.get(), timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700503 if (dump_stats_) {
504 stats_->Dump();
505 }
506}
507
Mathieu Chartiere86deef2015-03-19 13:43:37 -0700508DexToDexCompilationLevel CompilerDriver::GetDexToDexCompilationlevel(
Mathieu Chartier0cd81352014-05-22 16:48:55 -0700509 Thread* self, Handle<mirror::ClassLoader> class_loader, const DexFile& dex_file,
Mathieu Chartiere86deef2015-03-19 13:43:37 -0700510 const DexFile::ClassDef& class_def) {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800511 auto* const runtime = Runtime::Current();
Mathieu Chartiere86deef2015-03-19 13:43:37 -0700512 if (runtime->UseJit() || GetCompilerOptions().VerifyAtRuntime()) {
513 // Verify at runtime shouldn't dex to dex since we didn't resolve of verify.
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800514 return kDontDexToDexCompile;
515 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700516 const char* descriptor = dex_file.GetClassDescriptor(class_def);
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800517 ClassLinker* class_linker = runtime->GetClassLinker();
Ian Rogers98379392014-02-24 16:53:16 -0800518 mirror::Class* klass = class_linker->FindClass(self, descriptor, class_loader);
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700519 if (klass == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700520 CHECK(self->IsExceptionPending());
521 self->ClearException();
Sebastien Hertz75021222013-07-16 18:34:50 +0200522 return kDontDexToDexCompile;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700523 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700524 // DexToDex at the kOptimize level may introduce quickened opcodes, which replace symbolic
525 // references with actual offsets. We cannot re-verify such instructions.
526 //
527 // We store the verification information in the class status in the oat file, which the linker
528 // can validate (checksums) and use to skip load-time verification. It is thus safe to
529 // optimize when a class has been fully verified before.
530 if (klass->IsVerified()) {
Sebastien Hertz75021222013-07-16 18:34:50 +0200531 // Class is verified so we can enable DEX-to-DEX compilation for performance.
532 return kOptimize;
533 } else if (klass->IsCompileTimeVerified()) {
534 // Class verification has soft-failed. Anyway, ensure at least correctness.
535 DCHECK_EQ(klass->GetStatus(), mirror::Class::kStatusRetryVerificationAtRuntime);
536 return kRequired;
537 } else {
538 // Class verification has failed: do not run DEX-to-DEX compilation.
539 return kDontDexToDexCompile;
540 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700541}
542
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800543void CompilerDriver::CompileOne(Thread* self, mirror::ArtMethod* method, TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700544 DCHECK(!Runtime::Current()->IsStarted());
Brian Carlstrom7940e442013-07-12 13:46:57 -0700545 jobject jclass_loader;
546 const DexFile* dex_file;
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700547 uint16_t class_def_idx;
Ian Rogersef7d42f2014-01-06 12:55:46 -0800548 uint32_t method_idx = method->GetDexMethodIndex();
549 uint32_t access_flags = method->GetAccessFlags();
550 InvokeType invoke_type = method->GetInvokeType();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700551 {
552 ScopedObjectAccessUnchecked soa(self);
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800553 ScopedLocalRef<jobject> local_class_loader(
554 soa.Env(), soa.AddLocalReference<jobject>(method->GetDeclaringClass()->GetClassLoader()));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700555 jclass_loader = soa.Env()->NewGlobalRef(local_class_loader.get());
556 // Find the dex_file
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700557 dex_file = method->GetDexFile();
558 class_def_idx = method->GetClassDefIndex();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700559 }
Ian Rogersef7d42f2014-01-06 12:55:46 -0800560 const DexFile::CodeItem* code_item = dex_file->GetCodeItem(method->GetCodeItemOffset());
Brian Carlstrom7940e442013-07-12 13:46:57 -0700561 self->TransitionFromRunnableToSuspended(kNative);
562
563 std::vector<const DexFile*> dex_files;
564 dex_files.push_back(dex_file);
565
Ian Rogers700a4022014-05-19 16:49:03 -0700566 std::unique_ptr<ThreadPool> thread_pool(new ThreadPool("Compiler driver thread pool", 0U));
Ian Rogers3d504072014-03-01 09:16:49 -0800567 PreCompile(jclass_loader, dex_files, thread_pool.get(), timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700568
Brian Carlstrom7940e442013-07-12 13:46:57 -0700569 // Can we run DEX-to-DEX compiler on this class ?
Sebastien Hertz75021222013-07-16 18:34:50 +0200570 DexToDexCompilationLevel dex_to_dex_compilation_level = kDontDexToDexCompile;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700571 {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800572 ScopedObjectAccess soa(self);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700573 const DexFile::ClassDef& class_def = dex_file->GetClassDef(class_def_idx);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700574 StackHandleScope<1> hs(soa.Self());
575 Handle<mirror::ClassLoader> class_loader(
576 hs.NewHandle(soa.Decode<mirror::ClassLoader*>(jclass_loader)));
Ian Rogers98379392014-02-24 16:53:16 -0800577 dex_to_dex_compilation_level = GetDexToDexCompilationlevel(self, class_loader, *dex_file,
578 class_def);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700579 }
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800580 CompileMethod(self, code_item, access_flags, invoke_type, class_def_idx, method_idx,
581 jclass_loader, *dex_file, dex_to_dex_compilation_level, true);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700582
583 self->GetJniEnv()->DeleteGlobalRef(jclass_loader);
Mathieu Chartier2535abe2015-02-17 10:38:49 -0800584 self->TransitionFromSuspendedToRunnable();
Mathieu Chartier2535abe2015-02-17 10:38:49 -0800585}
586
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800587CompiledMethod* CompilerDriver::CompileMethod(Thread* self, mirror::ArtMethod* method) {
588 const uint32_t method_idx = method->GetDexMethodIndex();
589 const uint32_t access_flags = method->GetAccessFlags();
590 const InvokeType invoke_type = method->GetInvokeType();
591 StackHandleScope<1> hs(self);
592 Handle<mirror::ClassLoader> class_loader(hs.NewHandle(
593 method->GetDeclaringClass()->GetClassLoader()));
594 jobject jclass_loader = class_loader.ToJObject();
595 const DexFile* dex_file = method->GetDexFile();
596 const uint16_t class_def_idx = method->GetClassDefIndex();
597 const DexFile::ClassDef& class_def = dex_file->GetClassDef(class_def_idx);
598 DexToDexCompilationLevel dex_to_dex_compilation_level =
599 GetDexToDexCompilationlevel(self, class_loader, *dex_file, class_def);
600 const DexFile::CodeItem* code_item = dex_file->GetCodeItem(method->GetCodeItemOffset());
601 self->TransitionFromRunnableToSuspended(kNative);
602 CompileMethod(self, code_item, access_flags, invoke_type, class_def_idx, method_idx,
603 jclass_loader, *dex_file, dex_to_dex_compilation_level, true);
604 auto* compiled_method = GetCompiledMethod(MethodReference(dex_file, method_idx));
605 self->TransitionFromSuspendedToRunnable();
606 return compiled_method;
607}
608
Brian Carlstrom7940e442013-07-12 13:46:57 -0700609void CompilerDriver::Resolve(jobject class_loader, const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -0800610 ThreadPool* thread_pool, TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700611 for (size_t i = 0; i != dex_files.size(); ++i) {
612 const DexFile* dex_file = dex_files[i];
Kenny Rootd5185342014-05-13 14:47:05 -0700613 CHECK(dex_file != nullptr);
Andreas Gampede7b4362014-07-28 18:38:57 -0700614 ResolveDexFile(class_loader, *dex_file, dex_files, thread_pool, timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700615 }
616}
617
618void CompilerDriver::PreCompile(jobject class_loader, const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -0800619 ThreadPool* thread_pool, TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700620 LoadImageClasses(timings);
Andreas Gampe8d295f82015-01-20 14:50:21 -0800621 VLOG(compiler) << "LoadImageClasses: " << GetMemoryUsageString(false);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700622
Mathieu Chartiere86deef2015-03-19 13:43:37 -0700623 const bool verification_enabled = compiler_options_->IsVerificationEnabled();
624 const bool never_verify = compiler_options_->NeverVerify();
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700625
Mathieu Chartiere86deef2015-03-19 13:43:37 -0700626 // We need to resolve for never_verify since it needs to run dex to dex to add the
627 // RETURN_VOID_NO_BARRIER.
628 if (never_verify || verification_enabled) {
629 Resolve(class_loader, dex_files, thread_pool, timings);
630 VLOG(compiler) << "Resolve: " << GetMemoryUsageString(false);
631 }
632
633 if (never_verify) {
Mathieu Chartierab972ef2014-12-03 17:38:22 -0800634 VLOG(compiler) << "Verify none mode specified, skipping verification.";
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700635 SetVerified(class_loader, dex_files, thread_pool, timings);
Mathieu Chartiere86deef2015-03-19 13:43:37 -0700636 }
637
638 if (!verification_enabled) {
Jeff Hao4a200f52014-04-01 14:58:49 -0700639 return;
640 }
641
Brian Carlstrom7940e442013-07-12 13:46:57 -0700642 Verify(class_loader, dex_files, thread_pool, timings);
Andreas Gampe8d295f82015-01-20 14:50:21 -0800643 VLOG(compiler) << "Verify: " << GetMemoryUsageString(false);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700644
Andreas Gampe6cf49e52015-03-05 13:08:45 -0800645 if (had_hard_verifier_failure_ && GetCompilerOptions().AbortOnHardVerifierFailure()) {
646 LOG(FATAL) << "Had a hard failure verifying all classes, and was asked to abort in such "
647 << "situations. Please check the log.";
648 }
649
Brian Carlstrom7940e442013-07-12 13:46:57 -0700650 InitializeClasses(class_loader, dex_files, thread_pool, timings);
Andreas Gampe8d295f82015-01-20 14:50:21 -0800651 VLOG(compiler) << "InitializeClasses: " << GetMemoryUsageString(false);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700652
653 UpdateImageClasses(timings);
Andreas Gampe8d295f82015-01-20 14:50:21 -0800654 VLOG(compiler) << "UpdateImageClasses: " << GetMemoryUsageString(false);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700655}
656
Ian Rogersdfb325e2013-10-30 01:00:44 -0700657bool CompilerDriver::IsImageClass(const char* descriptor) const {
Ian Rogerse6bb3b22013-08-19 21:51:45 -0700658 if (!IsImage()) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700659 return true;
Ian Rogerse6bb3b22013-08-19 21:51:45 -0700660 } else {
Ian Rogersdfb325e2013-10-30 01:00:44 -0700661 return image_classes_->find(descriptor) != image_classes_->end();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700662 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700663}
664
Andreas Gampe4bf3ae92014-11-11 13:28:29 -0800665bool CompilerDriver::IsClassToCompile(const char* descriptor) const {
Andreas Gampeb1fcead2015-04-20 18:53:51 -0700666 if (kRestrictCompilationFiltersToImage && !IsImage()) {
Andreas Gampe4bf3ae92014-11-11 13:28:29 -0800667 return true;
Andreas Gampe4bf3ae92014-11-11 13:28:29 -0800668 }
Andreas Gampeb1fcead2015-04-20 18:53:51 -0700669
670 if (classes_to_compile_ == nullptr) {
671 return true;
672 }
673 return classes_to_compile_->find(descriptor) != classes_to_compile_->end();
Andreas Gampe4bf3ae92014-11-11 13:28:29 -0800674}
675
Andreas Gampe70bef0d2015-04-15 02:37:28 -0700676bool CompilerDriver::IsMethodToCompile(const MethodReference& method_ref) const {
677 if (kRestrictCompilationFiltersToImage && !IsImage()) {
678 return true;
679 }
680
681 if (methods_to_compile_ == nullptr) {
682 return true;
683 }
684
685 std::string tmp = PrettyMethod(method_ref.dex_method_index, *method_ref.dex_file, true);
686 return methods_to_compile_->find(tmp.c_str()) != methods_to_compile_->end();
687}
688
Ian Rogerse94652f2014-12-02 11:13:19 -0800689static void ResolveExceptionsForMethod(MutableHandle<mirror::ArtMethod> method_handle,
Ian Rogers700a4022014-05-19 16:49:03 -0700690 std::set<std::pair<uint16_t, const DexFile*>>& exceptions_to_resolve)
Brian Carlstrom7940e442013-07-12 13:46:57 -0700691 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogerse94652f2014-12-02 11:13:19 -0800692 const DexFile::CodeItem* code_item = method_handle->GetCodeItem();
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700693 if (code_item == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700694 return; // native or abstract method
695 }
696 if (code_item->tries_size_ == 0) {
697 return; // nothing to process
698 }
Ian Rogers13735952014-10-08 12:43:28 -0700699 const uint8_t* encoded_catch_handler_list = DexFile::GetCatchHandlerData(*code_item, 0);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700700 size_t num_encoded_catch_handlers = DecodeUnsignedLeb128(&encoded_catch_handler_list);
701 for (size_t i = 0; i < num_encoded_catch_handlers; i++) {
702 int32_t encoded_catch_handler_size = DecodeSignedLeb128(&encoded_catch_handler_list);
703 bool has_catch_all = false;
704 if (encoded_catch_handler_size <= 0) {
705 encoded_catch_handler_size = -encoded_catch_handler_size;
706 has_catch_all = true;
707 }
708 for (int32_t j = 0; j < encoded_catch_handler_size; j++) {
709 uint16_t encoded_catch_handler_handlers_type_idx =
710 DecodeUnsignedLeb128(&encoded_catch_handler_list);
711 // Add to set of types to resolve if not already in the dex cache resolved types
Ian Rogerse94652f2014-12-02 11:13:19 -0800712 if (!method_handle->IsResolvedTypeIdx(encoded_catch_handler_handlers_type_idx)) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700713 exceptions_to_resolve.insert(
714 std::pair<uint16_t, const DexFile*>(encoded_catch_handler_handlers_type_idx,
Ian Rogerse94652f2014-12-02 11:13:19 -0800715 method_handle->GetDexFile()));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700716 }
717 // ignore address associated with catch handler
718 DecodeUnsignedLeb128(&encoded_catch_handler_list);
719 }
720 if (has_catch_all) {
721 // ignore catch all address
722 DecodeUnsignedLeb128(&encoded_catch_handler_list);
723 }
724 }
725}
726
727static bool ResolveCatchBlockExceptionsClassVisitor(mirror::Class* c, void* arg)
728 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers700a4022014-05-19 16:49:03 -0700729 std::set<std::pair<uint16_t, const DexFile*>>* exceptions_to_resolve =
730 reinterpret_cast<std::set<std::pair<uint16_t, const DexFile*>>*>(arg);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700731 StackHandleScope<1> hs(Thread::Current());
Ian Rogerse94652f2014-12-02 11:13:19 -0800732 MutableHandle<mirror::ArtMethod> method_handle(hs.NewHandle<mirror::ArtMethod>(nullptr));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700733 for (size_t i = 0; i < c->NumVirtualMethods(); ++i) {
Ian Rogerse94652f2014-12-02 11:13:19 -0800734 method_handle.Assign(c->GetVirtualMethod(i));
735 ResolveExceptionsForMethod(method_handle, *exceptions_to_resolve);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700736 }
737 for (size_t i = 0; i < c->NumDirectMethods(); ++i) {
Ian Rogerse94652f2014-12-02 11:13:19 -0800738 method_handle.Assign(c->GetDirectMethod(i));
739 ResolveExceptionsForMethod(method_handle, *exceptions_to_resolve);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700740 }
741 return true;
742}
743
744static bool RecordImageClassesVisitor(mirror::Class* klass, void* arg)
745 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Andreas Gampeb1fcead2015-04-20 18:53:51 -0700746 std::unordered_set<std::string>* image_classes =
747 reinterpret_cast<std::unordered_set<std::string>*>(arg);
Ian Rogers1ff3c982014-08-12 02:30:58 -0700748 std::string temp;
749 image_classes->insert(klass->GetDescriptor(&temp));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700750 return true;
751}
752
753// Make a list of descriptors for classes to include in the image
Ian Rogers3d504072014-03-01 09:16:49 -0800754void CompilerDriver::LoadImageClasses(TimingLogger* timings)
Brian Carlstrom7940e442013-07-12 13:46:57 -0700755 LOCKS_EXCLUDED(Locks::mutator_lock_) {
Kenny Rootd5185342014-05-13 14:47:05 -0700756 CHECK(timings != nullptr);
Ian Rogerse6bb3b22013-08-19 21:51:45 -0700757 if (!IsImage()) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700758 return;
759 }
760
Mathieu Chartierf5997b42014-06-20 10:37:54 -0700761 TimingLogger::ScopedTiming t("LoadImageClasses", timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700762 // Make a first class to load all classes explicitly listed in the file
763 Thread* self = Thread::Current();
764 ScopedObjectAccess soa(self);
765 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Kenny Rootd5185342014-05-13 14:47:05 -0700766 CHECK(image_classes_.get() != nullptr);
Mathieu Chartier02e25112013-08-14 16:14:24 -0700767 for (auto it = image_classes_->begin(), end = image_classes_->end(); it != end;) {
Vladimir Markoe9c36b32013-11-21 15:49:16 +0000768 const std::string& descriptor(*it);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700769 StackHandleScope<1> hs(self);
770 Handle<mirror::Class> klass(
771 hs.NewHandle(class_linker->FindSystemClass(self, descriptor.c_str())));
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700772 if (klass.Get() == nullptr) {
Ian Rogerse6bb3b22013-08-19 21:51:45 -0700773 VLOG(compiler) << "Failed to find class " << descriptor;
Vladimir Markoe9c36b32013-11-21 15:49:16 +0000774 image_classes_->erase(it++);
Ian Rogersa436fde2013-08-27 23:34:06 -0700775 self->ClearException();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700776 } else {
777 ++it;
778 }
779 }
780
781 // Resolve exception classes referenced by the loaded classes. The catch logic assumes
782 // exceptions are resolved by the verifier when there is a catch block in an interested method.
783 // Do this here so that exception classes appear to have been specified image classes.
Ian Rogers700a4022014-05-19 16:49:03 -0700784 std::set<std::pair<uint16_t, const DexFile*>> unresolved_exception_types;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700785 StackHandleScope<1> hs(self);
786 Handle<mirror::Class> java_lang_Throwable(
787 hs.NewHandle(class_linker->FindSystemClass(self, "Ljava/lang/Throwable;")));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700788 do {
789 unresolved_exception_types.clear();
790 class_linker->VisitClasses(ResolveCatchBlockExceptionsClassVisitor,
791 &unresolved_exception_types);
Mathieu Chartier02e25112013-08-14 16:14:24 -0700792 for (const std::pair<uint16_t, const DexFile*>& exception_type : unresolved_exception_types) {
793 uint16_t exception_type_idx = exception_type.first;
794 const DexFile* dex_file = exception_type.second;
Andreas Gampe277ccbd2014-11-03 21:36:10 -0800795 StackHandleScope<2> hs2(self);
796 Handle<mirror::DexCache> dex_cache(hs2.NewHandle(class_linker->FindDexCache(*dex_file)));
797 Handle<mirror::Class> klass(hs2.NewHandle(
Mathieu Chartier0cd81352014-05-22 16:48:55 -0700798 class_linker->ResolveType(*dex_file, exception_type_idx, dex_cache,
799 NullHandle<mirror::ClassLoader>())));
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700800 if (klass.Get() == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700801 const DexFile::TypeId& type_id = dex_file->GetTypeId(exception_type_idx);
802 const char* descriptor = dex_file->GetTypeDescriptor(type_id);
803 LOG(FATAL) << "Failed to resolve class " << descriptor;
804 }
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700805 DCHECK(java_lang_Throwable->IsAssignableFrom(klass.Get()));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700806 }
807 // Resolving exceptions may load classes that reference more exceptions, iterate until no
808 // more are found
809 } while (!unresolved_exception_types.empty());
810
811 // We walk the roots looking for classes so that we'll pick up the
812 // above classes plus any classes them depend on such super
813 // classes, interfaces, and the required ClassLinker roots.
814 class_linker->VisitClasses(RecordImageClassesVisitor, image_classes_.get());
815
816 CHECK_NE(image_classes_->size(), 0U);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700817}
818
Andreas Gampeb1fcead2015-04-20 18:53:51 -0700819static void MaybeAddToImageClasses(Handle<mirror::Class> c,
820 std::unordered_set<std::string>* image_classes)
Brian Carlstrom7940e442013-07-12 13:46:57 -0700821 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartierf8322842014-05-16 10:59:25 -0700822 Thread* self = Thread::Current();
823 StackHandleScope<1> hs(self);
824 // Make a copy of the handle so that we don't clobber it doing Assign.
Andreas Gampe5a4b8a22014-09-11 08:30:08 -0700825 MutableHandle<mirror::Class> klass(hs.NewHandle(c.Get()));
Ian Rogers1ff3c982014-08-12 02:30:58 -0700826 std::string temp;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700827 while (!klass->IsObjectClass()) {
Ian Rogers1ff3c982014-08-12 02:30:58 -0700828 const char* descriptor = klass->GetDescriptor(&temp);
Andreas Gampeb1fcead2015-04-20 18:53:51 -0700829 std::pair<std::unordered_set<std::string>::iterator, bool> result =
830 image_classes->insert(descriptor);
Ian Rogers1ff3c982014-08-12 02:30:58 -0700831 if (!result.second) { // Previously inserted.
832 break;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700833 }
Ian Rogers1ff3c982014-08-12 02:30:58 -0700834 VLOG(compiler) << "Adding " << descriptor << " to image classes";
Mathieu Chartierf8322842014-05-16 10:59:25 -0700835 for (size_t i = 0; i < klass->NumDirectInterfaces(); ++i) {
Andreas Gampe277ccbd2014-11-03 21:36:10 -0800836 StackHandleScope<1> hs2(self);
837 MaybeAddToImageClasses(hs2.NewHandle(mirror::Class::GetDirectInterface(self, klass, i)),
Mathieu Chartierf8322842014-05-16 10:59:25 -0700838 image_classes);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700839 }
840 if (klass->IsArrayClass()) {
Andreas Gampe277ccbd2014-11-03 21:36:10 -0800841 StackHandleScope<1> hs2(self);
842 MaybeAddToImageClasses(hs2.NewHandle(klass->GetComponentType()), image_classes);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700843 }
Mathieu Chartierf8322842014-05-16 10:59:25 -0700844 klass.Assign(klass->GetSuperClass());
Brian Carlstrom7940e442013-07-12 13:46:57 -0700845 }
846}
847
Andreas Gampeb0f370e2014-09-25 22:51:40 -0700848// Keeps all the data for the update together. Also doubles as the reference visitor.
849// Note: we can use object pointers because we suspend all threads.
850class ClinitImageUpdate {
851 public:
Andreas Gampeb1fcead2015-04-20 18:53:51 -0700852 static ClinitImageUpdate* Create(std::unordered_set<std::string>* image_class_descriptors,
853 Thread* self, ClassLinker* linker, std::string* error_msg) {
Andreas Gampeb0f370e2014-09-25 22:51:40 -0700854 std::unique_ptr<ClinitImageUpdate> res(new ClinitImageUpdate(image_class_descriptors, self,
855 linker));
856 if (res->art_method_class_ == nullptr) {
857 *error_msg = "Could not find ArtMethod class.";
858 return nullptr;
859 } else if (res->dex_cache_class_ == nullptr) {
860 *error_msg = "Could not find DexCache class.";
861 return nullptr;
862 }
863
864 return res.release();
865 }
866
867 ~ClinitImageUpdate() {
868 // Allow others to suspend again.
869 self_->EndAssertNoThreadSuspension(old_cause_);
870 }
871
872 // Visitor for VisitReferences.
873 void operator()(mirror::Object* object, MemberOffset field_offset, bool /* is_static */) const
874 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
875 mirror::Object* ref = object->GetFieldObject<mirror::Object>(field_offset);
876 if (ref != nullptr) {
877 VisitClinitClassesObject(ref);
878 }
879 }
880
881 // java.lang.Reference visitor for VisitReferences.
Andreas Gampedc8b63c2014-12-02 14:39:52 -0800882 void operator()(mirror::Class* /* klass */, mirror::Reference* /* ref */) const {
Andreas Gampeb0f370e2014-09-25 22:51:40 -0700883 }
884
885 void Walk() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
886 // Use the initial classes as roots for a search.
887 for (mirror::Class* klass_root : image_classes_) {
888 VisitClinitClassesObject(klass_root);
889 }
890 }
891
892 private:
Andreas Gampeb1fcead2015-04-20 18:53:51 -0700893 ClinitImageUpdate(std::unordered_set<std::string>* image_class_descriptors, Thread* self,
Andreas Gampeb0f370e2014-09-25 22:51:40 -0700894 ClassLinker* linker)
895 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) :
896 image_class_descriptors_(image_class_descriptors), self_(self) {
897 CHECK(linker != nullptr);
898 CHECK(image_class_descriptors != nullptr);
899
900 // Make sure nobody interferes with us.
901 old_cause_ = self->StartAssertNoThreadSuspension("Boot image closure");
902
903 // Find the interesting classes.
Andreas Gampedc8b63c2014-12-02 14:39:52 -0800904 art_method_class_ = linker->LookupClass(self, "Ljava/lang/reflect/ArtMethod;",
905 ComputeModifiedUtf8Hash("Ljava/lang/reflect/ArtMethod;"), nullptr);
906 dex_cache_class_ = linker->LookupClass(self, "Ljava/lang/DexCache;",
907 ComputeModifiedUtf8Hash("Ljava/lang/DexCache;"), nullptr);
Andreas Gampeb0f370e2014-09-25 22:51:40 -0700908
909 // Find all the already-marked classes.
910 WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
911 linker->VisitClasses(FindImageClasses, this);
912 }
913
914 static bool FindImageClasses(mirror::Class* klass, void* arg)
915 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
916 ClinitImageUpdate* data = reinterpret_cast<ClinitImageUpdate*>(arg);
917 std::string temp;
918 const char* name = klass->GetDescriptor(&temp);
919 if (data->image_class_descriptors_->find(name) != data->image_class_descriptors_->end()) {
920 data->image_classes_.push_back(klass);
Andreas Gampe4d4eff72015-03-04 22:46:35 -0800921 } else {
922 // Check whether it is initialized and has a clinit. They must be kept, too.
923 if (klass->IsInitialized() && klass->FindClassInitializer() != nullptr) {
924 data->image_classes_.push_back(klass);
925 }
Andreas Gampeb0f370e2014-09-25 22:51:40 -0700926 }
927
928 return true;
929 }
930
931 void VisitClinitClassesObject(mirror::Object* object) const
932 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
933 DCHECK(object != nullptr);
934 if (marked_objects_.find(object) != marked_objects_.end()) {
935 // Already processed.
936 return;
937 }
938
939 // Mark it.
940 marked_objects_.insert(object);
941
942 if (object->IsClass()) {
943 // If it is a class, add it.
944 StackHandleScope<1> hs(self_);
945 MaybeAddToImageClasses(hs.NewHandle(object->AsClass()), image_class_descriptors_);
946 } else {
947 // Else visit the object's class.
948 VisitClinitClassesObject(object->GetClass());
949 }
950
951 // If it is not a dex cache or an ArtMethod, visit all references.
952 mirror::Class* klass = object->GetClass();
953 if (klass != art_method_class_ && klass != dex_cache_class_) {
954 object->VisitReferences<false /* visit class */>(*this, *this);
955 }
956 }
957
958 mutable std::unordered_set<mirror::Object*> marked_objects_;
Andreas Gampeb1fcead2015-04-20 18:53:51 -0700959 std::unordered_set<std::string>* const image_class_descriptors_;
Andreas Gampeb0f370e2014-09-25 22:51:40 -0700960 std::vector<mirror::Class*> image_classes_;
961 const mirror::Class* art_method_class_;
962 const mirror::Class* dex_cache_class_;
963 Thread* const self_;
964 const char* old_cause_;
965
966 DISALLOW_COPY_AND_ASSIGN(ClinitImageUpdate);
967};
Brian Carlstrom7940e442013-07-12 13:46:57 -0700968
Ian Rogers3d504072014-03-01 09:16:49 -0800969void CompilerDriver::UpdateImageClasses(TimingLogger* timings) {
Ian Rogerse6bb3b22013-08-19 21:51:45 -0700970 if (IsImage()) {
Mathieu Chartierf5997b42014-06-20 10:37:54 -0700971 TimingLogger::ScopedTiming t("UpdateImageClasses", timings);
Andreas Gampeb0f370e2014-09-25 22:51:40 -0700972
973 Runtime* current = Runtime::Current();
974
975 // Suspend all threads.
Mathieu Chartierbf9fc582015-03-13 17:21:25 -0700976 current->GetThreadList()->SuspendAll(__FUNCTION__);
Andreas Gampeb0f370e2014-09-25 22:51:40 -0700977
978 std::string error_msg;
979 std::unique_ptr<ClinitImageUpdate> update(ClinitImageUpdate::Create(image_classes_.get(),
980 Thread::Current(),
981 current->GetClassLinker(),
982 &error_msg));
983 CHECK(update.get() != nullptr) << error_msg; // TODO: Soft failure?
984
985 // Do the marking.
986 update->Walk();
987
988 // Resume threads.
989 current->GetThreadList()->ResumeAll();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700990 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700991}
992
Mathieu Chartier590fee92013-09-13 13:46:47 -0700993bool CompilerDriver::CanAssumeTypeIsPresentInDexCache(const DexFile& dex_file, uint32_t type_idx) {
Ian Rogersfc0e94b2013-09-23 23:51:32 -0700994 if (IsImage() &&
Ian Rogersdfb325e2013-10-30 01:00:44 -0700995 IsImageClass(dex_file.StringDataByIdx(dex_file.GetTypeId(type_idx).descriptor_idx_))) {
Andreas Gampe58a5af82014-07-31 16:23:49 -0700996 {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700997 ScopedObjectAccess soa(Thread::Current());
998 mirror::DexCache* dex_cache = Runtime::Current()->GetClassLinker()->FindDexCache(dex_file);
999 mirror::Class* resolved_class = dex_cache->GetResolvedType(type_idx);
Andreas Gampe58a5af82014-07-31 16:23:49 -07001000 if (resolved_class == nullptr) {
1001 // Erroneous class.
1002 stats_->TypeNotInDexCache();
1003 return false;
1004 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001005 }
1006 stats_->TypeInDexCache();
1007 return true;
1008 } else {
1009 stats_->TypeNotInDexCache();
1010 return false;
1011 }
1012}
1013
1014bool CompilerDriver::CanAssumeStringIsPresentInDexCache(const DexFile& dex_file,
1015 uint32_t string_idx) {
1016 // See also Compiler::ResolveDexFile
1017
1018 bool result = false;
1019 if (IsImage()) {
1020 // We resolve all const-string strings when building for the image.
1021 ScopedObjectAccess soa(Thread::Current());
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001022 StackHandleScope<1> hs(soa.Self());
1023 Handle<mirror::DexCache> dex_cache(
1024 hs.NewHandle(Runtime::Current()->GetClassLinker()->FindDexCache(dex_file)));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001025 Runtime::Current()->GetClassLinker()->ResolveString(dex_file, string_idx, dex_cache);
1026 result = true;
1027 }
1028 if (result) {
1029 stats_->StringInDexCache();
1030 } else {
1031 stats_->StringNotInDexCache();
1032 }
1033 return result;
1034}
1035
1036bool CompilerDriver::CanAccessTypeWithoutChecks(uint32_t referrer_idx, const DexFile& dex_file,
1037 uint32_t type_idx,
1038 bool* type_known_final, bool* type_known_abstract,
1039 bool* equals_referrers_class) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001040 if (type_known_final != nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001041 *type_known_final = false;
1042 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001043 if (type_known_abstract != nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001044 *type_known_abstract = false;
1045 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001046 if (equals_referrers_class != nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001047 *equals_referrers_class = false;
1048 }
1049 ScopedObjectAccess soa(Thread::Current());
1050 mirror::DexCache* dex_cache = Runtime::Current()->GetClassLinker()->FindDexCache(dex_file);
1051 // Get type from dex cache assuming it was populated by the verifier
1052 mirror::Class* resolved_class = dex_cache->GetResolvedType(type_idx);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001053 if (resolved_class == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001054 stats_->TypeNeedsAccessCheck();
1055 return false; // Unknown class needs access checks.
1056 }
1057 const DexFile::MethodId& method_id = dex_file.GetMethodId(referrer_idx);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001058 if (equals_referrers_class != nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001059 *equals_referrers_class = (method_id.class_idx_ == type_idx);
1060 }
1061 mirror::Class* referrer_class = dex_cache->GetResolvedType(method_id.class_idx_);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001062 if (referrer_class == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001063 stats_->TypeNeedsAccessCheck();
1064 return false; // Incomplete referrer knowledge needs access check.
1065 }
1066 // Perform access check, will return true if access is ok or false if we're going to have to
1067 // check this at runtime (for example for class loaders).
1068 bool result = referrer_class->CanAccess(resolved_class);
1069 if (result) {
1070 stats_->TypeDoesntNeedAccessCheck();
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001071 if (type_known_final != nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001072 *type_known_final = resolved_class->IsFinal() && !resolved_class->IsArrayClass();
1073 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001074 if (type_known_abstract != nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001075 *type_known_abstract = resolved_class->IsAbstract() && !resolved_class->IsArrayClass();
1076 }
1077 } else {
1078 stats_->TypeNeedsAccessCheck();
1079 }
1080 return result;
1081}
1082
1083bool CompilerDriver::CanAccessInstantiableTypeWithoutChecks(uint32_t referrer_idx,
1084 const DexFile& dex_file,
1085 uint32_t type_idx) {
1086 ScopedObjectAccess soa(Thread::Current());
1087 mirror::DexCache* dex_cache = Runtime::Current()->GetClassLinker()->FindDexCache(dex_file);
1088 // Get type from dex cache assuming it was populated by the verifier.
1089 mirror::Class* resolved_class = dex_cache->GetResolvedType(type_idx);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001090 if (resolved_class == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001091 stats_->TypeNeedsAccessCheck();
1092 return false; // Unknown class needs access checks.
1093 }
1094 const DexFile::MethodId& method_id = dex_file.GetMethodId(referrer_idx);
1095 mirror::Class* referrer_class = dex_cache->GetResolvedType(method_id.class_idx_);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001096 if (referrer_class == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001097 stats_->TypeNeedsAccessCheck();
1098 return false; // Incomplete referrer knowledge needs access check.
1099 }
1100 // Perform access and instantiable checks, will return true if access is ok or false if we're
1101 // going to have to check this at runtime (for example for class loaders).
1102 bool result = referrer_class->CanAccess(resolved_class) && resolved_class->IsInstantiable();
1103 if (result) {
1104 stats_->TypeDoesntNeedAccessCheck();
1105 } else {
1106 stats_->TypeNeedsAccessCheck();
1107 }
1108 return result;
1109}
1110
Hiroshi Yamauchibe1ca552014-01-15 11:46:48 -08001111bool CompilerDriver::CanEmbedTypeInCode(const DexFile& dex_file, uint32_t type_idx,
1112 bool* is_type_initialized, bool* use_direct_type_ptr,
Mathieu Chartier8668c3c2014-04-24 16:48:11 -07001113 uintptr_t* direct_type_ptr, bool* out_is_finalizable) {
Hiroshi Yamauchibe1ca552014-01-15 11:46:48 -08001114 ScopedObjectAccess soa(Thread::Current());
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08001115 Runtime* runtime = Runtime::Current();
1116 mirror::DexCache* dex_cache = runtime->GetClassLinker()->FindDexCache(dex_file);
Hiroshi Yamauchibe1ca552014-01-15 11:46:48 -08001117 mirror::Class* resolved_class = dex_cache->GetResolvedType(type_idx);
1118 if (resolved_class == nullptr) {
1119 return false;
1120 }
Igor Murashkind6dee672014-10-16 18:36:16 -07001121 if (GetCompilerOptions().GetCompilePic()) {
1122 // Do not allow a direct class pointer to be used when compiling for position-independent
1123 return false;
1124 }
Mathieu Chartier8668c3c2014-04-24 16:48:11 -07001125 *out_is_finalizable = resolved_class->IsFinalizable();
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08001126 gc::Heap* heap = runtime->GetHeap();
1127 const bool compiling_boot = heap->IsCompilingBoot();
Alex Light6e183f22014-07-18 14:57:04 -07001128 const bool support_boot_image_fixup = GetSupportBootImageFixup();
Hiroshi Yamauchibe1ca552014-01-15 11:46:48 -08001129 if (compiling_boot) {
1130 // boot -> boot class pointers.
1131 // True if the class is in the image at boot compiling time.
1132 const bool is_image_class = IsImage() && IsImageClass(
1133 dex_file.StringDataByIdx(dex_file.GetTypeId(type_idx).descriptor_idx_));
1134 // True if pc relative load works.
Hiroshi Yamauchibe1ca552014-01-15 11:46:48 -08001135 if (is_image_class && support_boot_image_fixup) {
1136 *is_type_initialized = resolved_class->IsInitialized();
1137 *use_direct_type_ptr = false;
1138 *direct_type_ptr = 0;
1139 return true;
1140 } else {
1141 return false;
1142 }
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08001143 } else if (runtime->UseJit() && !heap->IsMovableObject(resolved_class)) {
1144 *is_type_initialized = resolved_class->IsInitialized();
1145 // If the class may move around, then don't embed it as a direct pointer.
1146 *use_direct_type_ptr = true;
1147 *direct_type_ptr = reinterpret_cast<uintptr_t>(resolved_class);
1148 return true;
Hiroshi Yamauchibe1ca552014-01-15 11:46:48 -08001149 } else {
1150 // True if the class is in the image at app compiling time.
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08001151 const bool class_in_image = heap->FindSpaceFromObject(resolved_class, false)->IsImageSpace();
Alex Light6e183f22014-07-18 14:57:04 -07001152 if (class_in_image && support_boot_image_fixup) {
Hiroshi Yamauchibe1ca552014-01-15 11:46:48 -08001153 // boot -> app class pointers.
1154 *is_type_initialized = resolved_class->IsInitialized();
Alex Lighta59dd802014-07-02 16:28:08 -07001155 // TODO This is somewhat hacky. We should refactor all of this invoke codepath.
1156 *use_direct_type_ptr = !GetCompilerOptions().GetIncludePatchInformation();
Hiroshi Yamauchibe1ca552014-01-15 11:46:48 -08001157 *direct_type_ptr = reinterpret_cast<uintptr_t>(resolved_class);
1158 return true;
1159 } else {
1160 // app -> app class pointers.
1161 // Give up because app does not have an image and class
1162 // isn't created at compile time. TODO: implement this
1163 // if/when each app gets an image.
1164 return false;
1165 }
1166 }
1167}
1168
Fred Shihe7f82e22014-08-06 10:46:37 -07001169bool CompilerDriver::CanEmbedReferenceTypeInCode(ClassReference* ref,
1170 bool* use_direct_ptr,
1171 uintptr_t* direct_type_ptr) {
1172 CHECK(ref != nullptr);
1173 CHECK(use_direct_ptr != nullptr);
1174 CHECK(direct_type_ptr != nullptr);
1175
1176 ScopedObjectAccess soa(Thread::Current());
1177 mirror::Class* reference_class = mirror::Reference::GetJavaLangRefReference();
Andreas Gampe928f72b2014-09-09 19:53:48 -07001178 bool is_initialized = false;
Fred Shihe7f82e22014-08-06 10:46:37 -07001179 bool unused_finalizable;
1180 // Make sure we have a finished Reference class object before attempting to use it.
1181 if (!CanEmbedTypeInCode(*reference_class->GetDexCache()->GetDexFile(),
1182 reference_class->GetDexTypeIndex(), &is_initialized,
1183 use_direct_ptr, direct_type_ptr, &unused_finalizable) ||
1184 !is_initialized) {
1185 return false;
1186 }
1187 ref->first = &reference_class->GetDexFile();
1188 ref->second = reference_class->GetDexClassDefIndex();
1189 return true;
1190}
1191
1192uint32_t CompilerDriver::GetReferenceSlowFlagOffset() const {
1193 ScopedObjectAccess soa(Thread::Current());
1194 mirror::Class* klass = mirror::Reference::GetJavaLangRefReference();
1195 DCHECK(klass->IsInitialized());
1196 return klass->GetSlowPathFlagOffset().Uint32Value();
1197}
1198
1199uint32_t CompilerDriver::GetReferenceDisableFlagOffset() const {
1200 ScopedObjectAccess soa(Thread::Current());
1201 mirror::Class* klass = mirror::Reference::GetJavaLangRefReference();
1202 DCHECK(klass->IsInitialized());
1203 return klass->GetDisableIntrinsicFlagOffset().Uint32Value();
1204}
1205
Vladimir Marko20f85592015-03-19 10:07:02 +00001206DexCacheArraysLayout CompilerDriver::GetDexCacheArraysLayout(const DexFile* dex_file) {
1207 // Currently only image dex caches have fixed array layout.
1208 return IsImage() && GetSupportBootImageFixup()
Mathieu Chartierc7853442015-03-27 14:35:38 -07001209 ? DexCacheArraysLayout(GetInstructionSetPointerSize(instruction_set_), dex_file)
Vladimir Marko20f85592015-03-19 10:07:02 +00001210 : DexCacheArraysLayout();
1211}
1212
Vladimir Markobe0e5462014-02-26 11:24:15 +00001213void CompilerDriver::ProcessedInstanceField(bool resolved) {
1214 if (!resolved) {
1215 stats_->UnresolvedInstanceField();
1216 } else {
1217 stats_->ResolvedInstanceField();
1218 }
1219}
1220
1221void CompilerDriver::ProcessedStaticField(bool resolved, bool local) {
1222 if (!resolved) {
1223 stats_->UnresolvedStaticField();
1224 } else if (local) {
1225 stats_->ResolvedLocalStaticField();
1226 } else {
1227 stats_->ResolvedStaticField();
1228 }
1229}
1230
Vladimir Markof096aad2014-01-23 15:51:58 +00001231void CompilerDriver::ProcessedInvoke(InvokeType invoke_type, int flags) {
1232 stats_->ProcessedInvoke(invoke_type, flags);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001233}
1234
Mathieu Chartierc7853442015-03-27 14:35:38 -07001235ArtField* CompilerDriver::ComputeInstanceFieldInfo(uint32_t field_idx,
1236 const DexCompilationUnit* mUnit, bool is_put,
1237 const ScopedObjectAccess& soa) {
Vladimir Markobe0e5462014-02-26 11:24:15 +00001238 // Try to resolve the field and compiling method's class.
Mathieu Chartierc7853442015-03-27 14:35:38 -07001239 ArtField* resolved_field;
Vladimir Markobe0e5462014-02-26 11:24:15 +00001240 mirror::Class* referrer_class;
1241 mirror::DexCache* dex_cache;
1242 {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001243 StackHandleScope<3> hs(soa.Self());
1244 Handle<mirror::DexCache> dex_cache_handle(
1245 hs.NewHandle(mUnit->GetClassLinker()->FindDexCache(*mUnit->GetDexFile())));
1246 Handle<mirror::ClassLoader> class_loader_handle(
1247 hs.NewHandle(soa.Decode<mirror::ClassLoader*>(mUnit->GetClassLoader())));
Mathieu Chartierc7853442015-03-27 14:35:38 -07001248 resolved_field =
1249 ResolveField(soa, dex_cache_handle, class_loader_handle, mUnit, field_idx, false);
1250 referrer_class = resolved_field != nullptr
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001251 ? ResolveCompilingMethodsClass(soa, dex_cache_handle, class_loader_handle, mUnit) : nullptr;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001252 dex_cache = dex_cache_handle.Get();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001253 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001254 bool can_link = false;
Vladimir Markobe0e5462014-02-26 11:24:15 +00001255 if (resolved_field != nullptr && referrer_class != nullptr) {
Vladimir Markobe0e5462014-02-26 11:24:15 +00001256 std::pair<bool, bool> fast_path = IsFastInstanceField(
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001257 dex_cache, referrer_class, resolved_field, field_idx);
1258 can_link = is_put ? fast_path.second : fast_path.first;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001259 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001260 ProcessedInstanceField(can_link);
1261 return can_link ? resolved_field : nullptr;
1262}
1263
1264bool CompilerDriver::ComputeInstanceFieldInfo(uint32_t field_idx, const DexCompilationUnit* mUnit,
1265 bool is_put, MemberOffset* field_offset,
1266 bool* is_volatile) {
1267 ScopedObjectAccess soa(Thread::Current());
Mathieu Chartierc7853442015-03-27 14:35:38 -07001268 ArtField* resolved_field = ComputeInstanceFieldInfo(field_idx, mUnit, is_put, soa);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001269
Mathieu Chartierc7853442015-03-27 14:35:38 -07001270 if (resolved_field == nullptr) {
Vladimir Markobe0e5462014-02-26 11:24:15 +00001271 // Conservative defaults.
1272 *is_volatile = true;
1273 *field_offset = MemberOffset(static_cast<size_t>(-1));
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001274 return false;
1275 } else {
1276 *is_volatile = resolved_field->IsVolatile();
1277 *field_offset = resolved_field->GetOffset();
1278 return true;
Vladimir Markobe0e5462014-02-26 11:24:15 +00001279 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001280}
1281
1282bool CompilerDriver::ComputeStaticFieldInfo(uint32_t field_idx, const DexCompilationUnit* mUnit,
Vladimir Markobe0e5462014-02-26 11:24:15 +00001283 bool is_put, MemberOffset* field_offset,
1284 uint32_t* storage_index, bool* is_referrers_class,
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01001285 bool* is_volatile, bool* is_initialized,
1286 Primitive::Type* type) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001287 ScopedObjectAccess soa(Thread::Current());
Vladimir Markobe0e5462014-02-26 11:24:15 +00001288 // Try to resolve the field and compiling method's class.
Mathieu Chartierc7853442015-03-27 14:35:38 -07001289 ArtField* resolved_field;
Vladimir Markobe0e5462014-02-26 11:24:15 +00001290 mirror::Class* referrer_class;
1291 mirror::DexCache* dex_cache;
1292 {
Mathieu Chartierc7853442015-03-27 14:35:38 -07001293 StackHandleScope<2> hs(soa.Self());
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001294 Handle<mirror::DexCache> dex_cache_handle(
1295 hs.NewHandle(mUnit->GetClassLinker()->FindDexCache(*mUnit->GetDexFile())));
1296 Handle<mirror::ClassLoader> class_loader_handle(
1297 hs.NewHandle(soa.Decode<mirror::ClassLoader*>(mUnit->GetClassLoader())));
Mathieu Chartierc7853442015-03-27 14:35:38 -07001298 resolved_field =
1299 ResolveField(soa, dex_cache_handle, class_loader_handle, mUnit, field_idx, true);
1300 referrer_class = resolved_field != nullptr
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001301 ? ResolveCompilingMethodsClass(soa, dex_cache_handle, class_loader_handle, mUnit) : nullptr;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001302 dex_cache = dex_cache_handle.Get();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001303 }
Vladimir Markobe0e5462014-02-26 11:24:15 +00001304 bool result = false;
1305 if (resolved_field != nullptr && referrer_class != nullptr) {
1306 *is_volatile = IsFieldVolatile(resolved_field);
1307 std::pair<bool, bool> fast_path = IsFastStaticField(
Vladimir Marko66c6d7b2014-10-16 15:41:48 +01001308 dex_cache, referrer_class, resolved_field, field_idx, storage_index);
Vladimir Markobe0e5462014-02-26 11:24:15 +00001309 result = is_put ? fast_path.second : fast_path.first;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001310 }
Vladimir Marko66c6d7b2014-10-16 15:41:48 +01001311 if (result) {
1312 *field_offset = GetFieldOffset(resolved_field);
1313 *is_referrers_class = IsStaticFieldInReferrerClass(referrer_class, resolved_field);
1314 // *is_referrers_class == true implies no worrying about class initialization.
1315 *is_initialized = (*is_referrers_class) ||
1316 (IsStaticFieldsClassInitialized(referrer_class, resolved_field) &&
1317 CanAssumeTypeIsPresentInDexCache(*mUnit->GetDexFile(), *storage_index));
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01001318 *type = resolved_field->GetTypeAsPrimitiveType();
Vladimir Marko66c6d7b2014-10-16 15:41:48 +01001319 } else {
Vladimir Markobe0e5462014-02-26 11:24:15 +00001320 // Conservative defaults.
1321 *is_volatile = true;
1322 *field_offset = MemberOffset(static_cast<size_t>(-1));
1323 *storage_index = -1;
1324 *is_referrers_class = false;
1325 *is_initialized = false;
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01001326 *type = Primitive::kPrimVoid;
Vladimir Markobe0e5462014-02-26 11:24:15 +00001327 }
1328 ProcessedStaticField(result, *is_referrers_class);
1329 return result;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001330}
1331
Ian Rogers83883d72013-10-21 21:07:24 -07001332void CompilerDriver::GetCodeAndMethodForDirectCall(InvokeType* type, InvokeType sharp_type,
1333 bool no_guarantee_of_dex_cache_entry,
Igor Murashkind6dee672014-10-16 18:36:16 -07001334 const mirror::Class* referrer_class,
Brian Carlstromea46f952013-07-30 01:26:50 -07001335 mirror::ArtMethod* method,
Vladimir Markof096aad2014-01-23 15:51:58 +00001336 int* stats_flags,
Ian Rogers83883d72013-10-21 21:07:24 -07001337 MethodReference* target_method,
Ian Rogers65ec92c2013-09-06 10:49:58 -07001338 uintptr_t* direct_code,
1339 uintptr_t* direct_method) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001340 // For direct and static methods compute possible direct_code and direct_method values, ie
1341 // an address for the Method* being invoked and an address of the code for that Method*.
1342 // For interface calls compute a value for direct_method that is the interface method being
1343 // invoked, so this can be passed to the out-of-line runtime support code.
Ian Rogers65ec92c2013-09-06 10:49:58 -07001344 *direct_code = 0;
1345 *direct_method = 0;
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08001346 Runtime* const runtime = Runtime::Current();
1347 gc::Heap* const heap = runtime->GetHeap();
Igor Murashkind6dee672014-10-16 18:36:16 -07001348 bool use_dex_cache = GetCompilerOptions().GetCompilePic(); // Off by default
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08001349 const bool compiling_boot = heap->IsCompilingBoot();
Alex Lighta59dd802014-07-02 16:28:08 -07001350 // TODO This is somewhat hacky. We should refactor all of this invoke codepath.
1351 const bool force_relocations = (compiling_boot ||
1352 GetCompilerOptions().GetIncludePatchInformation());
Elliott Hughes956af0f2014-12-11 14:34:28 -08001353 if (sharp_type != kStatic && sharp_type != kDirect) {
1354 return;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001355 }
Elliott Hughes956af0f2014-12-11 14:34:28 -08001356 // TODO: support patching on all architectures.
1357 use_dex_cache = use_dex_cache || (force_relocations && !support_boot_image_fixup_);
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08001358 mirror::Class* declaring_class = method->GetDeclaringClass();
1359 bool method_code_in_boot = declaring_class->GetClassLoader() == nullptr;
Ian Rogers83883d72013-10-21 21:07:24 -07001360 if (!use_dex_cache) {
1361 if (!method_code_in_boot) {
1362 use_dex_cache = true;
1363 } else {
Brian Carlstrom14247b62015-01-31 21:35:32 -08001364 bool has_clinit_trampoline =
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08001365 method->IsStatic() && !declaring_class->IsInitialized();
1366 if (has_clinit_trampoline && declaring_class != referrer_class) {
Ian Rogers83883d72013-10-21 21:07:24 -07001367 // Ensure we run the clinit trampoline unless we are invoking a static method in the same
1368 // class.
1369 use_dex_cache = true;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001370 }
1371 }
Ian Rogers83883d72013-10-21 21:07:24 -07001372 }
Mathieu Chartier28a35882015-02-26 18:28:07 -08001373 if (runtime->UseJit()) {
1374 // If we are the JIT, then don't allow a direct call to the interpreter bridge since this will
1375 // never be updated even after we compile the method.
1376 if (runtime->GetClassLinker()->IsQuickToInterpreterBridge(
1377 reinterpret_cast<const void*>(compiler_->GetEntryPointOf(method)))) {
1378 use_dex_cache = true;
1379 }
1380 }
Vladimir Markof096aad2014-01-23 15:51:58 +00001381 if (method_code_in_boot) {
1382 *stats_flags |= kFlagDirectCallToBoot | kFlagDirectMethodToBoot;
Ian Rogers83883d72013-10-21 21:07:24 -07001383 }
Alex Lighta59dd802014-07-02 16:28:08 -07001384 if (!use_dex_cache && force_relocations) {
Jeff Haoa0acc2d2015-01-27 11:22:04 -08001385 bool is_in_image;
1386 if (IsImage()) {
1387 is_in_image = IsImageClass(method->GetDeclaringClassDescriptor());
1388 } else {
1389 is_in_image = instruction_set_ != kX86 && instruction_set_ != kX86_64 &&
1390 Runtime::Current()->GetHeap()->FindSpaceFromObject(method->GetDeclaringClass(),
1391 false)->IsImageSpace();
1392 }
1393 if (!is_in_image) {
Ian Rogers83883d72013-10-21 21:07:24 -07001394 // We can only branch directly to Methods that are resolved in the DexCache.
1395 // Otherwise we won't invoke the resolution trampoline.
1396 use_dex_cache = true;
1397 }
1398 }
1399 // The method is defined not within this dex file. We need a dex cache slot within the current
1400 // dex file or direct pointers.
1401 bool must_use_direct_pointers = false;
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08001402 mirror::DexCache* dex_cache = declaring_class->GetDexCache();
1403 if (target_method->dex_file == dex_cache->GetDexFile() &&
1404 !(runtime->UseJit() && dex_cache->GetResolvedMethod(method->GetDexMethodIndex()) == nullptr)) {
Ian Rogers83883d72013-10-21 21:07:24 -07001405 target_method->dex_method_index = method->GetDexMethodIndex();
1406 } else {
Ian Rogers83883d72013-10-21 21:07:24 -07001407 if (no_guarantee_of_dex_cache_entry) {
1408 // See if the method is also declared in this dex cache.
Ian Rogerse0a02da2014-12-02 14:10:53 -08001409 uint32_t dex_method_idx =
1410 method->FindDexMethodIndexInOtherDexFile(*target_method->dex_file,
1411 target_method->dex_method_index);
Ian Rogers83883d72013-10-21 21:07:24 -07001412 if (dex_method_idx != DexFile::kDexNoIndex) {
1413 target_method->dex_method_index = dex_method_idx;
1414 } else {
Alex Lighta59dd802014-07-02 16:28:08 -07001415 if (force_relocations && !use_dex_cache) {
Jeff Hao49161ce2014-03-12 11:05:25 -07001416 target_method->dex_method_index = method->GetDexMethodIndex();
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08001417 target_method->dex_file = dex_cache->GetDexFile();
Jeff Hao49161ce2014-03-12 11:05:25 -07001418 }
Ian Rogers83883d72013-10-21 21:07:24 -07001419 must_use_direct_pointers = true;
1420 }
1421 }
1422 }
1423 if (use_dex_cache) {
1424 if (must_use_direct_pointers) {
1425 // Fail. Test above showed the only safe dispatch was via the dex cache, however, the direct
1426 // pointers are required as the dex cache lacks an appropriate entry.
1427 VLOG(compiler) << "Dex cache devirtualization failed for: " << PrettyMethod(method);
1428 } else {
1429 *type = sharp_type;
1430 }
1431 } else {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08001432 bool method_in_image = heap->FindSpaceFromObject(method, false)->IsImageSpace();
Mathieu Chartier6ced4092015-02-27 16:10:48 -08001433 if (method_in_image || compiling_boot || runtime->UseJit()) {
Alex Lighta59dd802014-07-02 16:28:08 -07001434 // 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 -08001435 // In the case where we are the JIT, we can always use direct pointers since we know where
1436 // the method and its code are / will be. We don't sharpen to interpreter bridge since we
1437 // check IsQuickToInterpreterBridge above.
Vladimir Markoa51a0b02014-05-21 12:08:39 +01001438 CHECK(!method->IsAbstract());
Ian Rogers83883d72013-10-21 21:07:24 -07001439 *type = sharp_type;
Alex Lighta59dd802014-07-02 16:28:08 -07001440 *direct_method = force_relocations ? -1 : reinterpret_cast<uintptr_t>(method);
1441 *direct_code = force_relocations ? -1 : compiler_->GetEntryPointOf(method);
Brian Carlstrom14247b62015-01-31 21:35:32 -08001442 target_method->dex_file = method->GetDeclaringClass()->GetDexCache()->GetDexFile();
Vladimir Markoa51a0b02014-05-21 12:08:39 +01001443 target_method->dex_method_index = method->GetDexMethodIndex();
1444 } else if (!must_use_direct_pointers) {
1445 // Set the code and rely on the dex cache for the method.
1446 *type = sharp_type;
Alex Lighta59dd802014-07-02 16:28:08 -07001447 if (force_relocations) {
1448 *direct_code = -1;
Brian Carlstrom14247b62015-01-31 21:35:32 -08001449 target_method->dex_file = method->GetDeclaringClass()->GetDexCache()->GetDexFile();
Alex Lighta59dd802014-07-02 16:28:08 -07001450 target_method->dex_method_index = method->GetDexMethodIndex();
1451 } else {
1452 *direct_code = compiler_->GetEntryPointOf(method);
1453 }
Ian Rogers83883d72013-10-21 21:07:24 -07001454 } else {
Vladimir Markoa51a0b02014-05-21 12:08:39 +01001455 // Direct pointers were required but none were available.
1456 VLOG(compiler) << "Dex cache devirtualization failed for: " << PrettyMethod(method);
Ian Rogers83883d72013-10-21 21:07:24 -07001457 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001458 }
1459}
1460
1461bool CompilerDriver::ComputeInvokeInfo(const DexCompilationUnit* mUnit, const uint32_t dex_pc,
Ian Rogers65ec92c2013-09-06 10:49:58 -07001462 bool update_stats, bool enable_devirtualization,
1463 InvokeType* invoke_type, MethodReference* target_method,
1464 int* vtable_idx, uintptr_t* direct_code,
1465 uintptr_t* direct_method) {
Vladimir Markof096aad2014-01-23 15:51:58 +00001466 InvokeType orig_invoke_type = *invoke_type;
1467 int stats_flags = 0;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001468 ScopedObjectAccess soa(Thread::Current());
Vladimir Markof096aad2014-01-23 15:51:58 +00001469 // Try to resolve the method and compiling method's class.
1470 mirror::ArtMethod* resolved_method;
1471 mirror::Class* referrer_class;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001472 StackHandleScope<3> hs(soa.Self());
1473 Handle<mirror::DexCache> dex_cache(
1474 hs.NewHandle(mUnit->GetClassLinker()->FindDexCache(*mUnit->GetDexFile())));
1475 Handle<mirror::ClassLoader> class_loader(hs.NewHandle(
1476 soa.Decode<mirror::ClassLoader*>(mUnit->GetClassLoader())));
Vladimir Markof096aad2014-01-23 15:51:58 +00001477 {
1478 uint32_t method_idx = target_method->dex_method_index;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001479 Handle<mirror::ArtMethod> resolved_method_handle(hs.NewHandle(
1480 ResolveMethod(soa, dex_cache, class_loader, mUnit, method_idx, orig_invoke_type)));
1481 referrer_class = (resolved_method_handle.Get() != nullptr)
Vladimir Markof096aad2014-01-23 15:51:58 +00001482 ? ResolveCompilingMethodsClass(soa, dex_cache, class_loader, mUnit) : nullptr;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001483 resolved_method = resolved_method_handle.Get();
Vladimir Markof096aad2014-01-23 15:51:58 +00001484 }
1485 bool result = false;
1486 if (resolved_method != nullptr) {
1487 *vtable_idx = GetResolvedMethodVTableIndex(resolved_method, orig_invoke_type);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001488
Nicolas Geoffraye53798a2014-12-01 10:31:54 +00001489 if (enable_devirtualization && mUnit->GetVerifiedMethod() != nullptr) {
Vladimir Markof096aad2014-01-23 15:51:58 +00001490 const MethodReference* devirt_target = mUnit->GetVerifiedMethod()->GetDevirtTarget(dex_pc);
1491
1492 stats_flags = IsFastInvoke(
1493 soa, dex_cache, class_loader, mUnit, referrer_class, resolved_method,
1494 invoke_type, target_method, devirt_target, direct_code, direct_method);
1495 result = stats_flags != 0;
1496 } else {
1497 // Devirtualization not enabled. Inline IsFastInvoke(), dropping the devirtualization parts.
1498 if (UNLIKELY(referrer_class == nullptr) ||
1499 UNLIKELY(!referrer_class->CanAccessResolvedMethod(resolved_method->GetDeclaringClass(),
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001500 resolved_method, dex_cache.Get(),
Vladimir Markof096aad2014-01-23 15:51:58 +00001501 target_method->dex_method_index)) ||
1502 *invoke_type == kSuper) {
1503 // Slow path. (Without devirtualization, all super calls go slow path as well.)
1504 } else {
1505 // Sharpening failed so generate a regular resolved method dispatch.
1506 stats_flags = kFlagMethodResolved;
1507 GetCodeAndMethodForDirectCall(invoke_type, *invoke_type, false, referrer_class, resolved_method,
1508 &stats_flags, target_method, direct_code, direct_method);
1509 result = true;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001510 }
1511 }
1512 }
Vladimir Markof096aad2014-01-23 15:51:58 +00001513 if (!result) {
1514 // Conservative defaults.
1515 *vtable_idx = -1;
1516 *direct_code = 0u;
1517 *direct_method = 0u;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001518 }
1519 if (update_stats) {
Vladimir Markof096aad2014-01-23 15:51:58 +00001520 ProcessedInvoke(orig_invoke_type, stats_flags);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001521 }
Vladimir Markof096aad2014-01-23 15:51:58 +00001522 return result;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001523}
1524
Vladimir Marko2730db02014-01-27 11:15:17 +00001525const VerifiedMethod* CompilerDriver::GetVerifiedMethod(const DexFile* dex_file,
1526 uint32_t method_idx) const {
1527 MethodReference ref(dex_file, method_idx);
1528 return verification_results_->GetVerifiedMethod(ref);
1529}
1530
1531bool CompilerDriver::IsSafeCast(const DexCompilationUnit* mUnit, uint32_t dex_pc) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001532 if (!compiler_options_->IsVerificationEnabled()) {
1533 // If we didn't verify, every cast has to be treated as non-safe.
1534 return false;
1535 }
Vladimir Marko2730db02014-01-27 11:15:17 +00001536 DCHECK(mUnit->GetVerifiedMethod() != nullptr);
1537 bool result = mUnit->GetVerifiedMethod()->IsSafeCast(dex_pc);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001538 if (result) {
1539 stats_->SafeCast();
1540 } else {
1541 stats_->NotASafeCast();
1542 }
1543 return result;
1544}
1545
Brian Carlstrom7940e442013-07-12 13:46:57 -07001546class ParallelCompilationManager {
1547 public:
1548 typedef void Callback(const ParallelCompilationManager* manager, size_t index);
1549
1550 ParallelCompilationManager(ClassLinker* class_linker,
1551 jobject class_loader,
1552 CompilerDriver* compiler,
1553 const DexFile* dex_file,
Andreas Gampede7b4362014-07-28 18:38:57 -07001554 const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -08001555 ThreadPool* thread_pool)
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001556 : index_(0),
1557 class_linker_(class_linker),
Brian Carlstrom7940e442013-07-12 13:46:57 -07001558 class_loader_(class_loader),
1559 compiler_(compiler),
1560 dex_file_(dex_file),
Andreas Gampede7b4362014-07-28 18:38:57 -07001561 dex_files_(dex_files),
Ian Rogers3d504072014-03-01 09:16:49 -08001562 thread_pool_(thread_pool) {}
Brian Carlstrom7940e442013-07-12 13:46:57 -07001563
1564 ClassLinker* GetClassLinker() const {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001565 CHECK(class_linker_ != nullptr);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001566 return class_linker_;
1567 }
1568
1569 jobject GetClassLoader() const {
1570 return class_loader_;
1571 }
1572
1573 CompilerDriver* GetCompiler() const {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001574 CHECK(compiler_ != nullptr);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001575 return compiler_;
1576 }
1577
1578 const DexFile* GetDexFile() const {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001579 CHECK(dex_file_ != nullptr);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001580 return dex_file_;
1581 }
1582
Andreas Gampede7b4362014-07-28 18:38:57 -07001583 const std::vector<const DexFile*>& GetDexFiles() const {
1584 return dex_files_;
1585 }
1586
Brian Carlstrom7940e442013-07-12 13:46:57 -07001587 void ForAll(size_t begin, size_t end, Callback callback, size_t work_units) {
1588 Thread* self = Thread::Current();
1589 self->AssertNoPendingException();
1590 CHECK_GT(work_units, 0U);
1591
Ian Rogers3e5cf302014-05-20 16:40:37 -07001592 index_.StoreRelaxed(begin);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001593 for (size_t i = 0; i < work_units; ++i) {
Sebastien Hertz501baec2013-12-13 12:02:36 +01001594 thread_pool_->AddTask(self, new ForAllClosure(this, end, callback));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001595 }
1596 thread_pool_->StartWorkers(self);
1597
1598 // Ensure we're suspended while we're blocked waiting for the other threads to finish (worker
1599 // thread destructor's called below perform join).
1600 CHECK_NE(self->GetState(), kRunnable);
1601
1602 // Wait for all the worker threads to finish.
1603 thread_pool_->Wait(self, true, false);
1604 }
1605
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001606 size_t NextIndex() {
Ian Rogers3e5cf302014-05-20 16:40:37 -07001607 return index_.FetchAndAddSequentiallyConsistent(1);
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001608 }
1609
Brian Carlstrom7940e442013-07-12 13:46:57 -07001610 private:
Brian Carlstrom7940e442013-07-12 13:46:57 -07001611 class ForAllClosure : public Task {
1612 public:
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001613 ForAllClosure(ParallelCompilationManager* manager, size_t end, Callback* callback)
Brian Carlstrom7940e442013-07-12 13:46:57 -07001614 : manager_(manager),
Brian Carlstrom7940e442013-07-12 13:46:57 -07001615 end_(end),
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001616 callback_(callback) {}
Brian Carlstrom7940e442013-07-12 13:46:57 -07001617
1618 virtual void Run(Thread* self) {
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001619 while (true) {
1620 const size_t index = manager_->NextIndex();
1621 if (UNLIKELY(index >= end_)) {
1622 break;
1623 }
1624 callback_(manager_, index);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001625 self->AssertNoPendingException();
1626 }
1627 }
1628
1629 virtual void Finalize() {
1630 delete this;
1631 }
Brian Carlstrom0cd7ec22013-07-17 23:40:20 -07001632
Brian Carlstrom7940e442013-07-12 13:46:57 -07001633 private:
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001634 ParallelCompilationManager* const manager_;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001635 const size_t end_;
Bernhard Rosenkränzer46053622013-12-12 02:15:52 +01001636 Callback* const callback_;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001637 };
1638
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001639 AtomicInteger index_;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001640 ClassLinker* const class_linker_;
1641 const jobject class_loader_;
1642 CompilerDriver* const compiler_;
1643 const DexFile* const dex_file_;
Andreas Gampede7b4362014-07-28 18:38:57 -07001644 const std::vector<const DexFile*>& dex_files_;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001645 ThreadPool* const thread_pool_;
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001646
1647 DISALLOW_COPY_AND_ASSIGN(ParallelCompilationManager);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001648};
1649
Jeff Hao0e49b422013-11-08 12:16:56 -08001650// A fast version of SkipClass above if the class pointer is available
1651// that avoids the expensive FindInClassPath search.
1652static bool SkipClass(jobject class_loader, const DexFile& dex_file, mirror::Class* klass)
1653 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001654 DCHECK(klass != nullptr);
Jeff Hao0e49b422013-11-08 12:16:56 -08001655 const DexFile& original_dex_file = *klass->GetDexCache()->GetDexFile();
1656 if (&dex_file != &original_dex_file) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001657 if (class_loader == nullptr) {
Jeff Hao0e49b422013-11-08 12:16:56 -08001658 LOG(WARNING) << "Skipping class " << PrettyDescriptor(klass) << " from "
1659 << dex_file.GetLocation() << " previously found in "
1660 << original_dex_file.GetLocation();
1661 }
1662 return true;
1663 }
1664 return false;
1665}
1666
Mathieu Chartier70b63482014-06-27 17:19:04 -07001667static void CheckAndClearResolveException(Thread* self)
1668 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
1669 CHECK(self->IsExceptionPending());
Nicolas Geoffray14691c52015-03-05 10:40:17 +00001670 mirror::Throwable* exception = self->GetException();
Ian Rogers1ff3c982014-08-12 02:30:58 -07001671 std::string temp;
1672 const char* descriptor = exception->GetClass()->GetDescriptor(&temp);
1673 const char* expected_exceptions[] = {
1674 "Ljava/lang/IllegalAccessError;",
1675 "Ljava/lang/IncompatibleClassChangeError;",
1676 "Ljava/lang/InstantiationError;",
Brian Carlstrom898fcb52014-08-25 23:07:30 -07001677 "Ljava/lang/LinkageError;",
Ian Rogers1ff3c982014-08-12 02:30:58 -07001678 "Ljava/lang/NoClassDefFoundError;",
1679 "Ljava/lang/NoSuchFieldError;",
1680 "Ljava/lang/NoSuchMethodError;"
1681 };
1682 bool found = false;
1683 for (size_t i = 0; (found == false) && (i < arraysize(expected_exceptions)); ++i) {
1684 if (strcmp(descriptor, expected_exceptions[i]) == 0) {
1685 found = true;
1686 }
1687 }
1688 if (!found) {
Brian Carlstrom898fcb52014-08-25 23:07:30 -07001689 LOG(FATAL) << "Unexpected exception " << exception->Dump();
Mathieu Chartier70b63482014-06-27 17:19:04 -07001690 }
1691 self->ClearException();
1692}
1693
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001694static void ResolveClassFieldsAndMethods(const ParallelCompilationManager* manager,
1695 size_t class_def_index)
Brian Carlstrom7940e442013-07-12 13:46:57 -07001696 LOCKS_EXCLUDED(Locks::mutator_lock_) {
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07001697 ATRACE_CALL();
Ian Rogersbe7149f2013-08-20 09:29:39 -07001698 Thread* self = Thread::Current();
1699 jobject jclass_loader = manager->GetClassLoader();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001700 const DexFile& dex_file = *manager->GetDexFile();
Ian Rogersbe7149f2013-08-20 09:29:39 -07001701 ClassLinker* class_linker = manager->GetClassLinker();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001702
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001703 // If an instance field is final then we need to have a barrier on the return, static final
1704 // fields are assigned within the lock held for class initialization. Conservatively assume
1705 // constructor barriers are always required.
1706 bool requires_constructor_barrier = true;
1707
Brian Carlstrom7940e442013-07-12 13:46:57 -07001708 // Method and Field are the worst. We can't resolve without either
1709 // context from the code use (to disambiguate virtual vs direct
1710 // method and instance vs static field) or from class
1711 // definitions. While the compiler will resolve what it can as it
1712 // needs it, here we try to resolve fields and methods used in class
1713 // definitions, since many of them many never be referenced by
1714 // generated code.
1715 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
Ian Rogers68b56852014-08-29 20:19:11 -07001716 ScopedObjectAccess soa(self);
1717 StackHandleScope<2> hs(soa.Self());
1718 Handle<mirror::ClassLoader> class_loader(
1719 hs.NewHandle(soa.Decode<mirror::ClassLoader*>(jclass_loader)));
1720 Handle<mirror::DexCache> dex_cache(hs.NewHandle(class_linker->FindDexCache(dex_file)));
1721 // Resolve the class.
1722 mirror::Class* klass = class_linker->ResolveType(dex_file, class_def.class_idx_, dex_cache,
1723 class_loader);
1724 bool resolve_fields_and_methods;
1725 if (klass == nullptr) {
1726 // Class couldn't be resolved, for example, super-class is in a different dex file. Don't
1727 // attempt to resolve methods and fields when there is no declaring class.
1728 CheckAndClearResolveException(soa.Self());
1729 resolve_fields_and_methods = false;
1730 } else {
1731 // We successfully resolved a class, should we skip it?
1732 if (SkipClass(jclass_loader, dex_file, klass)) {
1733 return;
Brian Carlstromcb5f5e52013-09-23 17:48:16 -07001734 }
Ian Rogers68b56852014-08-29 20:19:11 -07001735 // We want to resolve the methods and fields eagerly.
1736 resolve_fields_and_methods = true;
1737 }
1738 // Note the class_data pointer advances through the headers,
1739 // static fields, instance fields, direct methods, and virtual
1740 // methods.
Ian Rogers13735952014-10-08 12:43:28 -07001741 const uint8_t* class_data = dex_file.GetClassData(class_def);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001742 if (class_data == nullptr) {
Ian Rogers68b56852014-08-29 20:19:11 -07001743 // Empty class such as a marker interface.
1744 requires_constructor_barrier = false;
1745 } else {
1746 ClassDataItemIterator it(dex_file, class_data);
1747 while (it.HasNextStaticField()) {
1748 if (resolve_fields_and_methods) {
Mathieu Chartierc7853442015-03-27 14:35:38 -07001749 ArtField* field = class_linker->ResolveField(dex_file, it.GetMemberIndex(),
Ian Rogers68b56852014-08-29 20:19:11 -07001750 dex_cache, class_loader, true);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001751 if (field == nullptr) {
Ian Rogers68b56852014-08-29 20:19:11 -07001752 CheckAndClearResolveException(soa.Self());
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001753 }
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001754 }
Ian Rogers68b56852014-08-29 20:19:11 -07001755 it.Next();
1756 }
1757 // We require a constructor barrier if there are final instance fields.
1758 requires_constructor_barrier = false;
1759 while (it.HasNextInstanceField()) {
Andreas Gampe51829322014-08-25 15:05:04 -07001760 if (it.MemberIsFinal()) {
Ian Rogers68b56852014-08-29 20:19:11 -07001761 requires_constructor_barrier = true;
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001762 }
1763 if (resolve_fields_and_methods) {
Mathieu Chartierc7853442015-03-27 14:35:38 -07001764 ArtField* field = class_linker->ResolveField(dex_file, it.GetMemberIndex(),
Ian Rogers68b56852014-08-29 20:19:11 -07001765 dex_cache, class_loader, false);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001766 if (field == nullptr) {
Ian Rogers68b56852014-08-29 20:19:11 -07001767 CheckAndClearResolveException(soa.Self());
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001768 }
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001769 }
Ian Rogers68b56852014-08-29 20:19:11 -07001770 it.Next();
1771 }
1772 if (resolve_fields_and_methods) {
1773 while (it.HasNextDirectMethod()) {
1774 mirror::ArtMethod* method = class_linker->ResolveMethod(dex_file, it.GetMemberIndex(),
1775 dex_cache, class_loader,
1776 NullHandle<mirror::ArtMethod>(),
1777 it.GetMethodInvokeType(class_def));
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001778 if (method == nullptr) {
Ian Rogers68b56852014-08-29 20:19:11 -07001779 CheckAndClearResolveException(soa.Self());
1780 }
1781 it.Next();
1782 }
1783 while (it.HasNextVirtualMethod()) {
1784 mirror::ArtMethod* method = class_linker->ResolveMethod(dex_file, it.GetMemberIndex(),
1785 dex_cache, class_loader,
1786 NullHandle<mirror::ArtMethod>(),
1787 it.GetMethodInvokeType(class_def));
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001788 if (method == nullptr) {
Ian Rogers68b56852014-08-29 20:19:11 -07001789 CheckAndClearResolveException(soa.Self());
1790 }
1791 it.Next();
1792 }
1793 DCHECK(!it.HasNext());
Brian Carlstrom7940e442013-07-12 13:46:57 -07001794 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001795 }
1796 if (requires_constructor_barrier) {
Ian Rogersbe7149f2013-08-20 09:29:39 -07001797 manager->GetCompiler()->AddRequiresConstructorBarrier(self, &dex_file, class_def_index);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001798 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001799}
1800
1801static void ResolveType(const ParallelCompilationManager* manager, size_t type_idx)
1802 LOCKS_EXCLUDED(Locks::mutator_lock_) {
1803 // Class derived values are more complicated, they require the linker and loader.
1804 ScopedObjectAccess soa(Thread::Current());
1805 ClassLinker* class_linker = manager->GetClassLinker();
1806 const DexFile& dex_file = *manager->GetDexFile();
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001807 StackHandleScope<2> hs(soa.Self());
1808 Handle<mirror::DexCache> dex_cache(hs.NewHandle(class_linker->FindDexCache(dex_file)));
1809 Handle<mirror::ClassLoader> class_loader(
1810 hs.NewHandle(soa.Decode<mirror::ClassLoader*>(manager->GetClassLoader())));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001811 mirror::Class* klass = class_linker->ResolveType(dex_file, type_idx, dex_cache, class_loader);
1812
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001813 if (klass == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001814 CHECK(soa.Self()->IsExceptionPending());
Nicolas Geoffray14691c52015-03-05 10:40:17 +00001815 mirror::Throwable* exception = soa.Self()->GetException();
Ian Rogersa436fde2013-08-27 23:34:06 -07001816 VLOG(compiler) << "Exception during type resolution: " << exception->Dump();
Mathieu Chartierf8322842014-05-16 10:59:25 -07001817 if (exception->GetClass()->DescriptorEquals("Ljava/lang/OutOfMemoryError;")) {
Ian Rogersa436fde2013-08-27 23:34:06 -07001818 // There's little point continuing compilation if the heap is exhausted.
1819 LOG(FATAL) << "Out of memory during type resolution for compilation";
1820 }
1821 soa.Self()->ClearException();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001822 }
1823}
1824
1825void CompilerDriver::ResolveDexFile(jobject class_loader, const DexFile& dex_file,
Andreas Gampede7b4362014-07-28 18:38:57 -07001826 const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -08001827 ThreadPool* thread_pool, TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001828 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
1829
1830 // TODO: we could resolve strings here, although the string table is largely filled with class
1831 // and method names.
1832
Andreas Gampede7b4362014-07-28 18:38:57 -07001833 ParallelCompilationManager context(class_linker, class_loader, this, &dex_file, dex_files,
1834 thread_pool);
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001835 if (IsImage()) {
1836 // For images we resolve all types, such as array, whereas for applications just those with
1837 // classdefs are resolved by ResolveClassFieldsAndMethods.
Mathieu Chartierf5997b42014-06-20 10:37:54 -07001838 TimingLogger::ScopedTiming t("Resolve Types", timings);
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001839 context.ForAll(0, dex_file.NumTypeIds(), ResolveType, thread_count_);
1840 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001841
Mathieu Chartierf5997b42014-06-20 10:37:54 -07001842 TimingLogger::ScopedTiming t("Resolve MethodsAndFields", timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001843 context.ForAll(0, dex_file.NumClassDefs(), ResolveClassFieldsAndMethods, thread_count_);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001844}
1845
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001846void CompilerDriver::SetVerified(jobject class_loader, const std::vector<const DexFile*>& dex_files,
1847 ThreadPool* thread_pool, TimingLogger* timings) {
1848 for (size_t i = 0; i != dex_files.size(); ++i) {
1849 const DexFile* dex_file = dex_files[i];
1850 CHECK(dex_file != nullptr);
1851 SetVerifiedDexFile(class_loader, *dex_file, dex_files, thread_pool, timings);
1852 }
1853}
1854
Brian Carlstrom7940e442013-07-12 13:46:57 -07001855void CompilerDriver::Verify(jobject class_loader, const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -08001856 ThreadPool* thread_pool, TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001857 for (size_t i = 0; i != dex_files.size(); ++i) {
1858 const DexFile* dex_file = dex_files[i];
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001859 CHECK(dex_file != nullptr);
Andreas Gampede7b4362014-07-28 18:38:57 -07001860 VerifyDexFile(class_loader, *dex_file, dex_files, thread_pool, timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001861 }
1862}
1863
1864static void VerifyClass(const ParallelCompilationManager* manager, size_t class_def_index)
1865 LOCKS_EXCLUDED(Locks::mutator_lock_) {
Anwar Ghuloum67f99412013-08-12 14:19:48 -07001866 ATRACE_CALL();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001867 ScopedObjectAccess soa(Thread::Current());
Jeff Hao0e49b422013-11-08 12:16:56 -08001868 const DexFile& dex_file = *manager->GetDexFile();
1869 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
1870 const char* descriptor = dex_file.GetClassDescriptor(class_def);
1871 ClassLinker* class_linker = manager->GetClassLinker();
1872 jobject jclass_loader = manager->GetClassLoader();
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001873 StackHandleScope<3> hs(soa.Self());
1874 Handle<mirror::ClassLoader> class_loader(
1875 hs.NewHandle(soa.Decode<mirror::ClassLoader*>(jclass_loader)));
1876 Handle<mirror::Class> klass(
1877 hs.NewHandle(class_linker->FindClass(soa.Self(), descriptor, class_loader)));
1878 if (klass.Get() == nullptr) {
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001879 CHECK(soa.Self()->IsExceptionPending());
Brian Carlstrom7940e442013-07-12 13:46:57 -07001880 soa.Self()->ClearException();
1881
1882 /*
1883 * At compile time, we can still structurally verify the class even if FindClass fails.
1884 * This is to ensure the class is structurally sound for compilation. An unsound class
1885 * will be rejected by the verifier and later skipped during compilation in the compiler.
1886 */
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001887 Handle<mirror::DexCache> dex_cache(hs.NewHandle(class_linker->FindDexCache(dex_file)));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001888 std::string error_msg;
Ian Rogers7b078e82014-09-10 14:44:24 -07001889 if (verifier::MethodVerifier::VerifyClass(soa.Self(), &dex_file, dex_cache, class_loader,
1890 &class_def, true, &error_msg) ==
Brian Carlstrom7940e442013-07-12 13:46:57 -07001891 verifier::MethodVerifier::kHardFailure) {
Jeff Hao0e49b422013-11-08 12:16:56 -08001892 LOG(ERROR) << "Verification failed on class " << PrettyDescriptor(descriptor)
Brian Carlstrom7940e442013-07-12 13:46:57 -07001893 << " because: " << error_msg;
Andreas Gampe6cf49e52015-03-05 13:08:45 -08001894 manager->GetCompiler()->SetHadHardVerifierFailure();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001895 }
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001896 } else if (!SkipClass(jclass_loader, dex_file, klass.Get())) {
1897 CHECK(klass->IsResolved()) << PrettyClass(klass.Get());
Ian Rogers7b078e82014-09-10 14:44:24 -07001898 class_linker->VerifyClass(soa.Self(), klass);
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001899
1900 if (klass->IsErroneous()) {
1901 // ClassLinker::VerifyClass throws, which isn't useful in the compiler.
1902 CHECK(soa.Self()->IsExceptionPending());
1903 soa.Self()->ClearException();
Andreas Gampe6cf49e52015-03-05 13:08:45 -08001904 manager->GetCompiler()->SetHadHardVerifierFailure();
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001905 }
1906
1907 CHECK(klass->IsCompileTimeVerified() || klass->IsErroneous())
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001908 << PrettyDescriptor(klass.Get()) << ": state=" << klass->GetStatus();
Andreas Gampe7ae063b2014-11-24 23:50:13 -08001909
1910 // It is *very* problematic if there are verification errors in the boot classpath. For example,
1911 // we rely on things working OK without verification when the decryption dialog is brought up.
1912 // So abort in a debug build if we find this violated.
1913 DCHECK(!manager->GetCompiler()->IsImage() || klass->IsVerified()) << "Boot classpath class " <<
1914 PrettyClass(klass.Get()) << " failed to fully verify.";
Brian Carlstrom7940e442013-07-12 13:46:57 -07001915 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001916 soa.Self()->AssertNoPendingException();
1917}
1918
1919void CompilerDriver::VerifyDexFile(jobject class_loader, const DexFile& dex_file,
Andreas Gampede7b4362014-07-28 18:38:57 -07001920 const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -08001921 ThreadPool* thread_pool, TimingLogger* timings) {
Mathieu Chartierf5997b42014-06-20 10:37:54 -07001922 TimingLogger::ScopedTiming t("Verify Dex File", timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001923 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Andreas Gampede7b4362014-07-28 18:38:57 -07001924 ParallelCompilationManager context(class_linker, class_loader, this, &dex_file, dex_files,
1925 thread_pool);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001926 context.ForAll(0, dex_file.NumClassDefs(), VerifyClass, thread_count_);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001927}
1928
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001929static void SetVerifiedClass(const ParallelCompilationManager* manager, size_t class_def_index)
1930 LOCKS_EXCLUDED(Locks::mutator_lock_) {
1931 ATRACE_CALL();
1932 ScopedObjectAccess soa(Thread::Current());
1933 const DexFile& dex_file = *manager->GetDexFile();
1934 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
1935 const char* descriptor = dex_file.GetClassDescriptor(class_def);
1936 ClassLinker* class_linker = manager->GetClassLinker();
1937 jobject jclass_loader = manager->GetClassLoader();
1938 StackHandleScope<3> hs(soa.Self());
1939 Handle<mirror::ClassLoader> class_loader(
1940 hs.NewHandle(soa.Decode<mirror::ClassLoader*>(jclass_loader)));
1941 Handle<mirror::Class> klass(
1942 hs.NewHandle(class_linker->FindClass(soa.Self(), descriptor, class_loader)));
1943 // Class might have failed resolution. Then don't set it to verified.
1944 if (klass.Get() != nullptr) {
1945 // Only do this if the class is resolved. If even resolution fails, quickening will go very,
1946 // very wrong.
1947 if (klass->IsResolved()) {
1948 if (klass->GetStatus() < mirror::Class::kStatusVerified) {
1949 ObjectLock<mirror::Class> lock(soa.Self(), klass);
Hiroshi Yamauchi5b783e62015-03-18 17:20:11 -07001950 mirror::Class::SetStatus(klass, mirror::Class::kStatusVerified, soa.Self());
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001951 }
1952 // Record the final class status if necessary.
1953 ClassReference ref(manager->GetDexFile(), class_def_index);
1954 manager->GetCompiler()->RecordClassStatus(ref, klass->GetStatus());
1955 }
Andreas Gampe61ff0092014-09-16 11:23:23 -07001956 } else {
1957 Thread* self = soa.Self();
1958 DCHECK(self->IsExceptionPending());
1959 self->ClearException();
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001960 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001961}
1962
1963void CompilerDriver::SetVerifiedDexFile(jobject class_loader, const DexFile& dex_file,
1964 const std::vector<const DexFile*>& dex_files,
1965 ThreadPool* thread_pool, TimingLogger* timings) {
1966 TimingLogger::ScopedTiming t("Verify Dex File", timings);
1967 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
1968 ParallelCompilationManager context(class_linker, class_loader, this, &dex_file, dex_files,
1969 thread_pool);
1970 context.ForAll(0, dex_file.NumClassDefs(), SetVerifiedClass, thread_count_);
1971}
1972
Brian Carlstrom7940e442013-07-12 13:46:57 -07001973static void InitializeClass(const ParallelCompilationManager* manager, size_t class_def_index)
1974 LOCKS_EXCLUDED(Locks::mutator_lock_) {
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07001975 ATRACE_CALL();
Jeff Hao0e49b422013-11-08 12:16:56 -08001976 jobject jclass_loader = manager->GetClassLoader();
1977 const DexFile& dex_file = *manager->GetDexFile();
1978 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
Jeff Haobcdbbfe2013-11-08 18:03:22 -08001979 const DexFile::TypeId& class_type_id = dex_file.GetTypeId(class_def.class_idx_);
1980 const char* descriptor = dex_file.StringDataByIdx(class_type_id.descriptor_idx_);
Ian Rogersfc0e94b2013-09-23 23:51:32 -07001981
Brian Carlstrom7940e442013-07-12 13:46:57 -07001982 ScopedObjectAccess soa(Thread::Current());
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001983 StackHandleScope<3> hs(soa.Self());
1984 Handle<mirror::ClassLoader> class_loader(
1985 hs.NewHandle(soa.Decode<mirror::ClassLoader*>(jclass_loader)));
1986 Handle<mirror::Class> klass(
1987 hs.NewHandle(manager->GetClassLinker()->FindClass(soa.Self(), descriptor, class_loader)));
Jeff Hao0e49b422013-11-08 12:16:56 -08001988
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001989 if (klass.Get() != nullptr && !SkipClass(jclass_loader, dex_file, klass.Get())) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001990 // Only try to initialize classes that were successfully verified.
1991 if (klass->IsVerified()) {
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07001992 // Attempt to initialize the class but bail if we either need to initialize the super-class
1993 // or static fields.
Ian Rogers7b078e82014-09-10 14:44:24 -07001994 manager->GetClassLinker()->EnsureInitialized(soa.Self(), klass, false, false);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001995 if (!klass->IsInitialized()) {
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07001996 // We don't want non-trivial class initialization occurring on multiple threads due to
1997 // deadlock problems. For example, a parent class is initialized (holding its lock) that
1998 // refers to a sub-class in its static/class initializer causing it to try to acquire the
1999 // sub-class' lock. While on a second thread the sub-class is initialized (holding its lock)
2000 // after first initializing its parents, whose locks are acquired. This leads to a
2001 // parent-to-child and a child-to-parent lock ordering and consequent potential deadlock.
2002 // We need to use an ObjectLock due to potential suspension in the interpreting code. Rather
2003 // than use a special Object for the purpose we use the Class of java.lang.Class.
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07002004 Handle<mirror::Class> h_klass(hs.NewHandle(klass->GetClass()));
Mathieu Chartierdb2633c2014-05-16 09:59:29 -07002005 ObjectLock<mirror::Class> lock(soa.Self(), h_klass);
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07002006 // Attempt to initialize allowing initialization of parent classes but still not static
2007 // fields.
Ian Rogers7b078e82014-09-10 14:44:24 -07002008 manager->GetClassLinker()->EnsureInitialized(soa.Self(), klass, false, true);
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07002009 if (!klass->IsInitialized()) {
2010 // We need to initialize static fields, we only do this for image classes that aren't
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01002011 // marked with the $NoPreloadHolder (which implies this should not be initialized early).
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07002012 bool can_init_static_fields = manager->GetCompiler()->IsImage() &&
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01002013 manager->GetCompiler()->IsImageClass(descriptor) &&
2014 !StringPiece(descriptor).ends_with("$NoPreloadHolder;");
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07002015 if (can_init_static_fields) {
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01002016 VLOG(compiler) << "Initializing: " << descriptor;
Ian Rogersc45b8b52014-05-03 01:39:59 -07002017 // TODO multithreading support. We should ensure the current compilation thread has
2018 // exclusive access to the runtime and the transaction. To achieve this, we could use
2019 // a ReaderWriterMutex but we're holding the mutator lock so we fail mutex sanity
2020 // checks in Thread::AssertThreadSuspensionIsAllowable.
2021 Runtime* const runtime = Runtime::Current();
2022 Transaction transaction;
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01002023
Ian Rogersc45b8b52014-05-03 01:39:59 -07002024 // Run the class initializer in transaction mode.
2025 runtime->EnterTransactionMode(&transaction);
2026 const mirror::Class::Status old_status = klass->GetStatus();
Ian Rogers7b078e82014-09-10 14:44:24 -07002027 bool success = manager->GetClassLinker()->EnsureInitialized(soa.Self(), klass, true,
2028 true);
Ian Rogersc45b8b52014-05-03 01:39:59 -07002029 // TODO we detach transaction from runtime to indicate we quit the transactional
2030 // mode which prevents the GC from visiting objects modified during the transaction.
2031 // Ensure GC is not run so don't access freed objects when aborting transaction.
Mathieu Chartier2d5f39e2014-09-19 17:52:37 -07002032
2033 ScopedAssertNoThreadSuspension ants(soa.Self(), "Transaction end");
Ian Rogersc45b8b52014-05-03 01:39:59 -07002034 runtime->ExitTransactionMode();
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01002035
Ian Rogersc45b8b52014-05-03 01:39:59 -07002036 if (!success) {
2037 CHECK(soa.Self()->IsExceptionPending());
Nicolas Geoffray14691c52015-03-05 10:40:17 +00002038 mirror::Throwable* exception = soa.Self()->GetException();
Ian Rogersc45b8b52014-05-03 01:39:59 -07002039 VLOG(compiler) << "Initialization of " << descriptor << " aborted because of "
2040 << exception->Dump();
Andreas Gampedbfe2542014-11-25 22:21:42 -08002041 std::ostream* file_log = manager->GetCompiler()->
2042 GetCompilerOptions().GetInitFailureOutput();
2043 if (file_log != nullptr) {
2044 *file_log << descriptor << "\n";
2045 *file_log << exception->Dump() << "\n";
2046 }
Ian Rogersc45b8b52014-05-03 01:39:59 -07002047 soa.Self()->ClearException();
Sebastien Hertz1c80bec2015-02-03 11:58:06 +01002048 transaction.Rollback();
Ian Rogersc45b8b52014-05-03 01:39:59 -07002049 CHECK_EQ(old_status, klass->GetStatus()) << "Previous class status not restored";
Brian Carlstrom7940e442013-07-12 13:46:57 -07002050 }
2051 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002052 }
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07002053 soa.Self()->AssertNoPendingException();
Brian Carlstrom7940e442013-07-12 13:46:57 -07002054 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002055 }
2056 // Record the final class status if necessary.
Brian Carlstrom7940e442013-07-12 13:46:57 -07002057 ClassReference ref(manager->GetDexFile(), class_def_index);
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07002058 manager->GetCompiler()->RecordClassStatus(ref, klass->GetStatus());
Brian Carlstrom7940e442013-07-12 13:46:57 -07002059 }
2060 // Clear any class not found or verification exceptions.
2061 soa.Self()->ClearException();
2062}
2063
2064void CompilerDriver::InitializeClasses(jobject jni_class_loader, const DexFile& dex_file,
Andreas Gampede7b4362014-07-28 18:38:57 -07002065 const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -08002066 ThreadPool* thread_pool, TimingLogger* timings) {
Mathieu Chartierf5997b42014-06-20 10:37:54 -07002067 TimingLogger::ScopedTiming t("InitializeNoClinit", timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002068 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Andreas Gampede7b4362014-07-28 18:38:57 -07002069 ParallelCompilationManager context(class_linker, jni_class_loader, this, &dex_file, dex_files,
2070 thread_pool);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01002071 size_t thread_count;
2072 if (IsImage()) {
2073 // TODO: remove this when transactional mode supports multithreading.
2074 thread_count = 1U;
2075 } else {
2076 thread_count = thread_count_;
2077 }
2078 context.ForAll(0, dex_file.NumClassDefs(), InitializeClass, thread_count);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002079}
2080
2081void CompilerDriver::InitializeClasses(jobject class_loader,
2082 const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -08002083 ThreadPool* thread_pool, TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07002084 for (size_t i = 0; i != dex_files.size(); ++i) {
2085 const DexFile* dex_file = dex_files[i];
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002086 CHECK(dex_file != nullptr);
Andreas Gampede7b4362014-07-28 18:38:57 -07002087 InitializeClasses(class_loader, *dex_file, dex_files, thread_pool, timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002088 }
Mathieu Chartier093ef212014-08-11 13:52:12 -07002089 if (IsImage()) {
2090 // Prune garbage objects created during aborted transactions.
2091 Runtime::Current()->GetHeap()->CollectGarbage(true);
2092 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002093}
2094
2095void CompilerDriver::Compile(jobject class_loader, const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -08002096 ThreadPool* thread_pool, TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07002097 for (size_t i = 0; i != dex_files.size(); ++i) {
2098 const DexFile* dex_file = dex_files[i];
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002099 CHECK(dex_file != nullptr);
Andreas Gampede7b4362014-07-28 18:38:57 -07002100 CompileDexFile(class_loader, *dex_file, dex_files, thread_pool, timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002101 }
Andreas Gampe8d295f82015-01-20 14:50:21 -08002102 VLOG(compiler) << "Compile: " << GetMemoryUsageString(false);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002103}
2104
Mathieu Chartier2cebb242015-04-21 16:50:40 -07002105void CompilerDriver::CompileClass(const ParallelCompilationManager* manager,
2106 size_t class_def_index) {
Anwar Ghuloum67f99412013-08-12 14:19:48 -07002107 ATRACE_CALL();
Brian Carlstrom7940e442013-07-12 13:46:57 -07002108 const DexFile& dex_file = *manager->GetDexFile();
2109 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
Ian Rogersbe7149f2013-08-20 09:29:39 -07002110 ClassLinker* class_linker = manager->GetClassLinker();
Ian Rogers1ff3c982014-08-12 02:30:58 -07002111 jobject jclass_loader = manager->GetClassLoader();
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08002112 Thread* self = Thread::Current();
Ian Rogers1ff3c982014-08-12 02:30:58 -07002113 {
2114 // Use a scoped object access to perform to the quick SkipClass check.
2115 const char* descriptor = dex_file.GetClassDescriptor(class_def);
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08002116 ScopedObjectAccess soa(self);
Ian Rogers1ff3c982014-08-12 02:30:58 -07002117 StackHandleScope<3> hs(soa.Self());
2118 Handle<mirror::ClassLoader> class_loader(
2119 hs.NewHandle(soa.Decode<mirror::ClassLoader*>(jclass_loader)));
2120 Handle<mirror::Class> klass(
2121 hs.NewHandle(class_linker->FindClass(soa.Self(), descriptor, class_loader)));
2122 if (klass.Get() == nullptr) {
2123 CHECK(soa.Self()->IsExceptionPending());
2124 soa.Self()->ClearException();
2125 } else if (SkipClass(jclass_loader, dex_file, klass.Get())) {
2126 return;
2127 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002128 }
2129 ClassReference ref(&dex_file, class_def_index);
2130 // Skip compiling classes with generic verifier failures since they will still fail at runtime
Vladimir Markoc7f83202014-01-24 17:55:18 +00002131 if (manager->GetCompiler()->verification_results_->IsClassRejected(ref)) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07002132 return;
2133 }
Ian Rogers13735952014-10-08 12:43:28 -07002134 const uint8_t* class_data = dex_file.GetClassData(class_def);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002135 if (class_data == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07002136 // empty class, probably a marker interface
2137 return;
2138 }
Anwar Ghuloum67f99412013-08-12 14:19:48 -07002139
Mathieu Chartiere86deef2015-03-19 13:43:37 -07002140 CompilerDriver* const driver = manager->GetCompiler();
2141
Brian Carlstrom7940e442013-07-12 13:46:57 -07002142 // Can we run DEX-to-DEX compiler on this class ?
Sebastien Hertz75021222013-07-16 18:34:50 +02002143 DexToDexCompilationLevel dex_to_dex_compilation_level = kDontDexToDexCompile;
Brian Carlstrom7940e442013-07-12 13:46:57 -07002144 {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08002145 ScopedObjectAccess soa(self);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07002146 StackHandleScope<1> hs(soa.Self());
2147 Handle<mirror::ClassLoader> class_loader(
2148 hs.NewHandle(soa.Decode<mirror::ClassLoader*>(jclass_loader)));
Mathieu Chartiere86deef2015-03-19 13:43:37 -07002149 dex_to_dex_compilation_level = driver->GetDexToDexCompilationlevel(
2150 soa.Self(), class_loader, dex_file, class_def);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002151 }
2152 ClassDataItemIterator it(dex_file, class_data);
2153 // Skip fields
2154 while (it.HasNextStaticField()) {
2155 it.Next();
2156 }
2157 while (it.HasNextInstanceField()) {
2158 it.Next();
2159 }
Andreas Gampe4bf3ae92014-11-11 13:28:29 -08002160
2161 bool compilation_enabled = driver->IsClassToCompile(
2162 dex_file.StringByTypeIdx(class_def.class_idx_));
2163
Brian Carlstrom7940e442013-07-12 13:46:57 -07002164 // Compile direct methods
2165 int64_t previous_direct_method_idx = -1;
2166 while (it.HasNextDirectMethod()) {
2167 uint32_t method_idx = it.GetMemberIndex();
2168 if (method_idx == previous_direct_method_idx) {
2169 // smali can create dex files with two encoded_methods sharing the same method_idx
2170 // http://code.google.com/p/smali/issues/detail?id=119
2171 it.Next();
2172 continue;
2173 }
2174 previous_direct_method_idx = method_idx;
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08002175 driver->CompileMethod(self, it.GetMethodCodeItem(), it.GetMethodAccessFlags(),
Ian Rogersbe7149f2013-08-20 09:29:39 -07002176 it.GetMethodInvokeType(class_def), class_def_index,
Andreas Gampe4bf3ae92014-11-11 13:28:29 -08002177 method_idx, jclass_loader, dex_file, dex_to_dex_compilation_level,
2178 compilation_enabled);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002179 it.Next();
2180 }
2181 // Compile virtual methods
2182 int64_t previous_virtual_method_idx = -1;
2183 while (it.HasNextVirtualMethod()) {
2184 uint32_t method_idx = it.GetMemberIndex();
2185 if (method_idx == previous_virtual_method_idx) {
2186 // smali can create dex files with two encoded_methods sharing the same method_idx
2187 // http://code.google.com/p/smali/issues/detail?id=119
2188 it.Next();
2189 continue;
2190 }
2191 previous_virtual_method_idx = method_idx;
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08002192 driver->CompileMethod(self, it.GetMethodCodeItem(), it.GetMethodAccessFlags(),
Ian Rogersbe7149f2013-08-20 09:29:39 -07002193 it.GetMethodInvokeType(class_def), class_def_index,
Andreas Gampe4bf3ae92014-11-11 13:28:29 -08002194 method_idx, jclass_loader, dex_file, dex_to_dex_compilation_level,
2195 compilation_enabled);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002196 it.Next();
2197 }
2198 DCHECK(!it.HasNext());
2199}
2200
2201void CompilerDriver::CompileDexFile(jobject class_loader, const DexFile& dex_file,
Andreas Gampede7b4362014-07-28 18:38:57 -07002202 const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -08002203 ThreadPool* thread_pool, TimingLogger* timings) {
Mathieu Chartierf5997b42014-06-20 10:37:54 -07002204 TimingLogger::ScopedTiming t("Compile Dex File", timings);
Ian Rogersbe7149f2013-08-20 09:29:39 -07002205 ParallelCompilationManager context(Runtime::Current()->GetClassLinker(), class_loader, this,
Andreas Gampede7b4362014-07-28 18:38:57 -07002206 &dex_file, dex_files, thread_pool);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002207 context.ForAll(0, dex_file.NumClassDefs(), CompilerDriver::CompileClass, thread_count_);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002208}
2209
Ian Rogersa4a3f402014-10-20 18:10:34 -07002210// Does the runtime for the InstructionSet provide an implementation returned by
2211// GetQuickGenericJniStub allowing down calls that aren't compiled using a JNI compiler?
2212static bool InstructionSetHasGenericJniStub(InstructionSet isa) {
2213 switch (isa) {
2214 case kArm:
2215 case kArm64:
2216 case kThumb2:
Douglas Leung735b8552014-10-31 12:21:40 -07002217 case kMips:
Andreas Gampe57b34292015-01-14 15:45:59 -08002218 case kMips64:
Ian Rogersa4a3f402014-10-20 18:10:34 -07002219 case kX86:
2220 case kX86_64: return true;
2221 default: return false;
2222 }
2223}
2224
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08002225void CompilerDriver::CompileMethod(Thread* self, const DexFile::CodeItem* code_item,
2226 uint32_t access_flags, InvokeType invoke_type,
2227 uint16_t class_def_idx, uint32_t method_idx,
2228 jobject class_loader, const DexFile& dex_file,
Andreas Gampe4bf3ae92014-11-11 13:28:29 -08002229 DexToDexCompilationLevel dex_to_dex_compilation_level,
2230 bool compilation_enabled) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002231 CompiledMethod* compiled_method = nullptr;
Mathieu Chartier8e219ae2014-08-19 14:29:46 -07002232 uint64_t start_ns = kTimeCompileMethod ? NanoTime() : 0;
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002233 MethodReference method_ref(&dex_file, method_idx);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002234
2235 if ((access_flags & kAccNative) != 0) {
Ian Rogers0188ab72014-03-17 16:51:53 -07002236 // Are we interpreting only and have support for generic JNI down calls?
Jeff Hao4a200f52014-04-01 14:58:49 -07002237 if (!compiler_options_->IsCompilationEnabled() &&
Ian Rogersa4a3f402014-10-20 18:10:34 -07002238 InstructionSetHasGenericJniStub(instruction_set_)) {
Ian Rogers5b271492014-03-14 13:20:26 -07002239 // Leaving this empty will trigger the generic JNI version
2240 } else {
Goran Jakovljevic75c40d42015-04-03 15:45:21 +02002241 compiled_method = compiler_->JniCompile(access_flags, method_idx, dex_file);
2242 CHECK(compiled_method != nullptr);
Ian Rogers5b271492014-03-14 13:20:26 -07002243 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002244 } else if ((access_flags & kAccAbstract) != 0) {
Ian Rogersa4a3f402014-10-20 18:10:34 -07002245 // Abstract methods don't have code.
Brian Carlstrom7940e442013-07-12 13:46:57 -07002246 } else {
Andreas Gampe6c170c92014-12-17 14:35:46 -08002247 bool has_verified_method = verification_results_->GetVerifiedMethod(method_ref) != nullptr;
Andreas Gampe4bf3ae92014-11-11 13:28:29 -08002248 bool compile = compilation_enabled &&
Andreas Gampe6c170c92014-12-17 14:35:46 -08002249 // Basic checks, e.g., not <clinit>.
2250 verification_results_->IsCandidateForCompilation(method_ref, access_flags) &&
2251 // Did not fail to create VerifiedMethod metadata.
Andreas Gampe70bef0d2015-04-15 02:37:28 -07002252 has_verified_method &&
2253 // Is eligable for compilation by methods-to-compile filter.
2254 IsMethodToCompile(method_ref);
Sebastien Hertz4d4adb12013-07-24 16:14:19 +02002255 if (compile) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -07002256 // NOTE: if compiler declines to compile this method, it will return null.
Ian Rogers72d32622014-05-06 16:20:11 -07002257 compiled_method = compiler_->Compile(code_item, access_flags, invoke_type, class_def_idx,
2258 method_idx, class_loader, dex_file);
Sebastien Hertz17965ed2014-04-04 15:59:53 +02002259 }
2260 if (compiled_method == nullptr && dex_to_dex_compilation_level != kDontDexToDexCompile) {
2261 // TODO: add a command-line option to disable DEX-to-DEX compilation ?
Andreas Gampe6c170c92014-12-17 14:35:46 -08002262 // Do not optimize if a VerifiedMethod is missing. SafeCast elision, for example, relies on
2263 // it.
Sebastien Hertz75021222013-07-16 18:34:50 +02002264 (*dex_to_dex_compiler_)(*this, code_item, access_flags,
2265 invoke_type, class_def_idx,
2266 method_idx, class_loader, dex_file,
Andreas Gampe6c170c92014-12-17 14:35:46 -08002267 has_verified_method ? dex_to_dex_compilation_level : kRequired);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002268 }
2269 }
Mathieu Chartier8e219ae2014-08-19 14:29:46 -07002270 if (kTimeCompileMethod) {
2271 uint64_t duration_ns = NanoTime() - start_ns;
2272 if (duration_ns > MsToNs(compiler_->GetMaximumCompilationTimeBeforeWarning())) {
2273 LOG(WARNING) << "Compilation of " << PrettyMethod(method_idx, dex_file)
2274 << " took " << PrettyDuration(duration_ns);
2275 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002276 }
2277
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002278 if (compiled_method != nullptr) {
Vladimir Markof4da6752014-08-01 19:04:18 +01002279 // Count non-relative linker patches.
2280 size_t non_relative_linker_patch_count = 0u;
2281 for (const LinkerPatch& patch : compiled_method->GetPatches()) {
Vladimir Marko20f85592015-03-19 10:07:02 +00002282 if (!patch.IsPcRelative()) {
Vladimir Markof4da6752014-08-01 19:04:18 +01002283 ++non_relative_linker_patch_count;
2284 }
2285 }
Igor Murashkind6dee672014-10-16 18:36:16 -07002286 bool compile_pic = GetCompilerOptions().GetCompilePic(); // Off by default
2287 // When compiling with PIC, there should be zero non-relative linker patches
2288 CHECK(!compile_pic || non_relative_linker_patch_count == 0u);
2289
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002290 DCHECK(GetCompiledMethod(method_ref) == nullptr) << PrettyMethod(method_idx, dex_file);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002291 {
2292 MutexLock mu(self, compiled_methods_lock_);
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002293 compiled_methods_.Put(method_ref, compiled_method);
Vladimir Markof4da6752014-08-01 19:04:18 +01002294 non_relative_linker_patch_count_ += non_relative_linker_patch_count;
Brian Carlstrom7940e442013-07-12 13:46:57 -07002295 }
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002296 DCHECK(GetCompiledMethod(method_ref) != nullptr) << PrettyMethod(method_idx, dex_file);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002297 }
2298
Jeff Hao48699fb2015-04-06 14:21:37 -07002299 // Done compiling, delete the verified method to reduce native memory usage. Do not delete in
2300 // optimizing compiler, which may need the verified method again for inlining.
2301 if (compiler_kind_ != Compiler::kOptimizing) {
2302 verification_results_->RemoveVerifiedMethod(method_ref);
2303 }
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002304
Brian Carlstrom7940e442013-07-12 13:46:57 -07002305 if (self->IsExceptionPending()) {
2306 ScopedObjectAccess soa(self);
2307 LOG(FATAL) << "Unexpected exception compiling: " << PrettyMethod(method_idx, dex_file) << "\n"
Nicolas Geoffray14691c52015-03-05 10:40:17 +00002308 << self->GetException()->Dump();
Brian Carlstrom7940e442013-07-12 13:46:57 -07002309 }
2310}
2311
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08002312void CompilerDriver::RemoveCompiledMethod(const MethodReference& method_ref) {
2313 CompiledMethod* compiled_method = nullptr;
2314 {
2315 MutexLock mu(Thread::Current(), compiled_methods_lock_);
2316 auto it = compiled_methods_.find(method_ref);
2317 if (it != compiled_methods_.end()) {
2318 compiled_method = it->second;
2319 compiled_methods_.erase(it);
2320 }
2321 }
2322 if (compiled_method != nullptr) {
2323 CompiledMethod::ReleaseSwapAllocatedCompiledMethod(this, compiled_method);
2324 }
2325}
2326
Brian Carlstrom7940e442013-07-12 13:46:57 -07002327CompiledClass* CompilerDriver::GetCompiledClass(ClassReference ref) const {
2328 MutexLock mu(Thread::Current(), compiled_classes_lock_);
2329 ClassTable::const_iterator it = compiled_classes_.find(ref);
2330 if (it == compiled_classes_.end()) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002331 return nullptr;
Brian Carlstrom7940e442013-07-12 13:46:57 -07002332 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002333 CHECK(it->second != nullptr);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002334 return it->second;
2335}
2336
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07002337void CompilerDriver::RecordClassStatus(ClassReference ref, mirror::Class::Status status) {
2338 MutexLock mu(Thread::Current(), compiled_classes_lock_);
2339 auto it = compiled_classes_.find(ref);
2340 if (it == compiled_classes_.end() || it->second->GetStatus() != status) {
2341 // An entry doesn't exist or the status is lower than the new status.
2342 if (it != compiled_classes_.end()) {
2343 CHECK_GT(status, it->second->GetStatus());
2344 delete it->second;
2345 }
2346 switch (status) {
2347 case mirror::Class::kStatusNotReady:
2348 case mirror::Class::kStatusError:
2349 case mirror::Class::kStatusRetryVerificationAtRuntime:
2350 case mirror::Class::kStatusVerified:
2351 case mirror::Class::kStatusInitialized:
2352 break; // Expected states.
2353 default:
2354 LOG(FATAL) << "Unexpected class status for class "
2355 << PrettyDescriptor(ref.first->GetClassDescriptor(ref.first->GetClassDef(ref.second)))
2356 << " of " << status;
2357 }
2358 CompiledClass* compiled_class = new CompiledClass(status);
2359 compiled_classes_.Overwrite(ref, compiled_class);
2360 }
2361}
2362
Brian Carlstrom7940e442013-07-12 13:46:57 -07002363CompiledMethod* CompilerDriver::GetCompiledMethod(MethodReference ref) const {
2364 MutexLock mu(Thread::Current(), compiled_methods_lock_);
2365 MethodTable::const_iterator it = compiled_methods_.find(ref);
2366 if (it == compiled_methods_.end()) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002367 return nullptr;
Brian Carlstrom7940e442013-07-12 13:46:57 -07002368 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002369 CHECK(it->second != nullptr);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002370 return it->second;
2371}
2372
Calin Juravlef1c6d9e2015-04-13 18:42:21 +01002373bool CompilerDriver::IsMethodVerifiedWithoutFailures(uint32_t method_idx,
2374 uint16_t class_def_idx,
2375 const DexFile& dex_file) const {
2376 const VerifiedMethod* verified_method = GetVerifiedMethod(&dex_file, method_idx);
2377 if (verified_method != nullptr) {
2378 return !verified_method->HasVerificationFailures();
2379 }
2380
2381 // If we can't find verification metadata, check if this is a system class (we trust that system
2382 // classes have their methods verified). If it's not, be conservative and assume the method
2383 // has not been verified successfully.
2384
2385 // TODO: When compiling the boot image it should be safe to assume that everything is verified,
2386 // even if methods are not found in the verification cache.
2387 const char* descriptor = dex_file.GetClassDescriptor(dex_file.GetClassDef(class_def_idx));
2388 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
2389 Thread* self = Thread::Current();
2390 ScopedObjectAccess soa(self);
2391 bool is_system_class = class_linker->FindSystemClass(self, descriptor) != nullptr;
2392 if (!is_system_class) {
2393 self->ClearException();
2394 }
2395 return is_system_class;
2396}
2397
Vladimir Markof4da6752014-08-01 19:04:18 +01002398size_t CompilerDriver::GetNonRelativeLinkerPatchCount() const {
2399 MutexLock mu(Thread::Current(), compiled_methods_lock_);
2400 return non_relative_linker_patch_count_;
2401}
2402
Brian Carlstrom7940e442013-07-12 13:46:57 -07002403void CompilerDriver::AddRequiresConstructorBarrier(Thread* self, const DexFile* dex_file,
Ian Rogers8b2c0b92013-09-19 02:56:49 -07002404 uint16_t class_def_index) {
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07002405 WriterMutexLock mu(self, freezing_constructor_lock_);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002406 freezing_constructor_classes_.insert(ClassReference(dex_file, class_def_index));
2407}
2408
2409bool CompilerDriver::RequiresConstructorBarrier(Thread* self, const DexFile* dex_file,
Calin Juravle27df7582015-04-17 19:12:31 +01002410 uint16_t class_def_index) const {
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07002411 ReaderMutexLock mu(self, freezing_constructor_lock_);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002412 return freezing_constructor_classes_.count(ClassReference(dex_file, class_def_index)) != 0;
2413}
2414
2415bool CompilerDriver::WriteElf(const std::string& android_root,
2416 bool is_host,
2417 const std::vector<const art::DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -08002418 OatWriter* oat_writer,
Brian Carlstrom7940e442013-07-12 13:46:57 -07002419 art::File* file)
2420 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Andreas Gampe3773cd02015-04-10 09:28:22 -07002421 if (kProduce64BitELFFiles && Is64BitInstructionSet(GetInstructionSet())) {
2422 return art::ElfWriterQuick64::Create(file, oat_writer, dex_files, android_root, is_host, *this);
2423 } else {
2424 return art::ElfWriterQuick32::Create(file, oat_writer, dex_files, android_root, is_host, *this);
2425 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002426}
Dave Allison39c3bfb2014-01-28 18:33:52 -08002427
Dave Allison39c3bfb2014-01-28 18:33:52 -08002428bool CompilerDriver::SkipCompilation(const std::string& method_name) {
Calin Juravlec1b643c2014-05-30 23:44:11 +01002429 if (!profile_present_) {
Dave Allison644789f2014-04-10 13:06:10 -07002430 return false;
Dave Allison39c3bfb2014-01-28 18:33:52 -08002431 }
Calin Juravlebb0b53f2014-05-23 17:33:29 +01002432 // First find the method in the profile file.
2433 ProfileFile::ProfileData data;
2434 if (!profile_file_.GetProfileData(&data, method_name)) {
Dave Allison39c3bfb2014-01-28 18:33:52 -08002435 // Not in profile, no information can be determined.
Calin Juravle08f7a2d2014-06-23 15:22:29 +01002436 if (kIsDebugBuild) {
2437 VLOG(compiler) << "not compiling " << method_name << " because it's not in the profile";
2438 }
Dave Allison39c3bfb2014-01-28 18:33:52 -08002439 return true;
2440 }
Calin Juravlebb0b53f2014-05-23 17:33:29 +01002441
2442 // Methods that comprise top_k_threshold % of the total samples will be compiled.
Calin Juravlef6a4cee2014-04-02 17:03:08 +01002443 // Compare against the start of the topK percentage bucket just in case the threshold
Calin Juravle04ff2262014-04-02 19:08:47 +01002444 // falls inside a bucket.
Calin Juravlec1b643c2014-05-30 23:44:11 +01002445 bool compile = data.GetTopKUsedPercentage() - data.GetUsedPercent()
2446 <= compiler_options_->GetTopKProfileThreshold();
Calin Juravle08f7a2d2014-06-23 15:22:29 +01002447 if (kIsDebugBuild) {
2448 if (compile) {
2449 LOG(INFO) << "compiling method " << method_name << " because its usage is part of top "
2450 << data.GetTopKUsedPercentage() << "% with a percent of " << data.GetUsedPercent() << "%"
2451 << " (topKThreshold=" << compiler_options_->GetTopKProfileThreshold() << ")";
2452 } else {
2453 VLOG(compiler) << "not compiling method " << method_name
2454 << " because it's not part of leading " << compiler_options_->GetTopKProfileThreshold()
2455 << "% samples)";
2456 }
Dave Allison39c3bfb2014-01-28 18:33:52 -08002457 }
2458 return !compile;
2459}
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002460
Andreas Gampe8d295f82015-01-20 14:50:21 -08002461std::string CompilerDriver::GetMemoryUsageString(bool extended) const {
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002462 std::ostringstream oss;
Mathieu Chartier9b34b242015-03-09 11:30:17 -07002463 Runtime* const runtime = Runtime::Current();
2464 const ArenaPool* arena_pool = runtime->GetArenaPool();
2465 gc::Heap* const heap = runtime->GetHeap();
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002466 oss << "arena alloc=" << PrettySize(arena_pool->GetBytesAllocated());
2467 oss << " java alloc=" << PrettySize(heap->GetBytesAllocated());
Elliott Hughes7bf5a262015-04-02 20:55:07 -07002468#if defined(__BIONIC__) || defined(__GLIBC__)
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002469 struct mallinfo info = mallinfo();
2470 const size_t allocated_space = static_cast<size_t>(info.uordblks);
2471 const size_t free_space = static_cast<size_t>(info.fordblks);
2472 oss << " native alloc=" << PrettySize(allocated_space) << " free="
2473 << PrettySize(free_space);
2474#endif
Andreas Gampee21dc3d2014-12-08 16:59:43 -08002475 if (swap_space_.get() != nullptr) {
2476 oss << " swap=" << PrettySize(swap_space_->GetSize());
2477 }
Andreas Gampe8d295f82015-01-20 14:50:21 -08002478 if (extended) {
2479 oss << "\nCode dedupe: " << dedupe_code_.DumpStats();
2480 oss << "\nMapping table dedupe: " << dedupe_mapping_table_.DumpStats();
2481 oss << "\nVmap table dedupe: " << dedupe_vmap_table_.DumpStats();
2482 oss << "\nGC map dedupe: " << dedupe_gc_map_.DumpStats();
2483 oss << "\nCFI info dedupe: " << dedupe_cfi_info_.DumpStats();
2484 }
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002485 return oss.str();
2486}
2487
Brian Carlstrom7940e442013-07-12 13:46:57 -07002488} // namespace art