blob: e665e1d4e86ac789c9cae26055b76e729be0f7f6 [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());
Ian Rogers700a4022014-05-19 16:49:03 -0700498 std::unique_ptr<ThreadPool> thread_pool(new ThreadPool("Compiler driver thread pool", thread_count_ - 1));
Andreas Gampe8d295f82015-01-20 14:50:21 -0800499 VLOG(compiler) << "Before precompile " << GetMemoryUsageString(false);
Ian Rogers3d504072014-03-01 09:16:49 -0800500 PreCompile(class_loader, dex_files, thread_pool.get(), timings);
501 Compile(class_loader, dex_files, thread_pool.get(), timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700502 if (dump_stats_) {
503 stats_->Dump();
504 }
505}
506
Mathieu Chartiere86deef2015-03-19 13:43:37 -0700507DexToDexCompilationLevel CompilerDriver::GetDexToDexCompilationlevel(
Mathieu Chartier0cd81352014-05-22 16:48:55 -0700508 Thread* self, Handle<mirror::ClassLoader> class_loader, const DexFile& dex_file,
Mathieu Chartiere86deef2015-03-19 13:43:37 -0700509 const DexFile::ClassDef& class_def) {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800510 auto* const runtime = Runtime::Current();
Mathieu Chartiere86deef2015-03-19 13:43:37 -0700511 if (runtime->UseJit() || GetCompilerOptions().VerifyAtRuntime()) {
512 // Verify at runtime shouldn't dex to dex since we didn't resolve of verify.
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800513 return kDontDexToDexCompile;
514 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700515 const char* descriptor = dex_file.GetClassDescriptor(class_def);
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800516 ClassLinker* class_linker = runtime->GetClassLinker();
Ian Rogers98379392014-02-24 16:53:16 -0800517 mirror::Class* klass = class_linker->FindClass(self, descriptor, class_loader);
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700518 if (klass == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700519 CHECK(self->IsExceptionPending());
520 self->ClearException();
Sebastien Hertz75021222013-07-16 18:34:50 +0200521 return kDontDexToDexCompile;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700522 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700523 // DexToDex at the kOptimize level may introduce quickened opcodes, which replace symbolic
524 // references with actual offsets. We cannot re-verify such instructions.
525 //
526 // We store the verification information in the class status in the oat file, which the linker
527 // can validate (checksums) and use to skip load-time verification. It is thus safe to
528 // optimize when a class has been fully verified before.
529 if (klass->IsVerified()) {
Sebastien Hertz75021222013-07-16 18:34:50 +0200530 // Class is verified so we can enable DEX-to-DEX compilation for performance.
531 return kOptimize;
532 } else if (klass->IsCompileTimeVerified()) {
533 // Class verification has soft-failed. Anyway, ensure at least correctness.
534 DCHECK_EQ(klass->GetStatus(), mirror::Class::kStatusRetryVerificationAtRuntime);
535 return kRequired;
536 } else {
537 // Class verification has failed: do not run DEX-to-DEX compilation.
538 return kDontDexToDexCompile;
539 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700540}
541
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800542void CompilerDriver::CompileOne(Thread* self, mirror::ArtMethod* method, TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700543 DCHECK(!Runtime::Current()->IsStarted());
Brian Carlstrom7940e442013-07-12 13:46:57 -0700544 jobject jclass_loader;
545 const DexFile* dex_file;
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700546 uint16_t class_def_idx;
Ian Rogersef7d42f2014-01-06 12:55:46 -0800547 uint32_t method_idx = method->GetDexMethodIndex();
548 uint32_t access_flags = method->GetAccessFlags();
549 InvokeType invoke_type = method->GetInvokeType();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700550 {
551 ScopedObjectAccessUnchecked soa(self);
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800552 ScopedLocalRef<jobject> local_class_loader(
553 soa.Env(), soa.AddLocalReference<jobject>(method->GetDeclaringClass()->GetClassLoader()));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700554 jclass_loader = soa.Env()->NewGlobalRef(local_class_loader.get());
555 // Find the dex_file
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700556 dex_file = method->GetDexFile();
557 class_def_idx = method->GetClassDefIndex();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700558 }
Ian Rogersef7d42f2014-01-06 12:55:46 -0800559 const DexFile::CodeItem* code_item = dex_file->GetCodeItem(method->GetCodeItemOffset());
Brian Carlstrom7940e442013-07-12 13:46:57 -0700560 self->TransitionFromRunnableToSuspended(kNative);
561
562 std::vector<const DexFile*> dex_files;
563 dex_files.push_back(dex_file);
564
Ian Rogers700a4022014-05-19 16:49:03 -0700565 std::unique_ptr<ThreadPool> thread_pool(new ThreadPool("Compiler driver thread pool", 0U));
Ian Rogers3d504072014-03-01 09:16:49 -0800566 PreCompile(jclass_loader, dex_files, thread_pool.get(), timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700567
Brian Carlstrom7940e442013-07-12 13:46:57 -0700568 // Can we run DEX-to-DEX compiler on this class ?
Sebastien Hertz75021222013-07-16 18:34:50 +0200569 DexToDexCompilationLevel dex_to_dex_compilation_level = kDontDexToDexCompile;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700570 {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800571 ScopedObjectAccess soa(self);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700572 const DexFile::ClassDef& class_def = dex_file->GetClassDef(class_def_idx);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700573 StackHandleScope<1> hs(soa.Self());
574 Handle<mirror::ClassLoader> class_loader(
575 hs.NewHandle(soa.Decode<mirror::ClassLoader*>(jclass_loader)));
Ian Rogers98379392014-02-24 16:53:16 -0800576 dex_to_dex_compilation_level = GetDexToDexCompilationlevel(self, class_loader, *dex_file,
577 class_def);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700578 }
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800579 CompileMethod(self, code_item, access_flags, invoke_type, class_def_idx, method_idx,
580 jclass_loader, *dex_file, dex_to_dex_compilation_level, true);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700581
582 self->GetJniEnv()->DeleteGlobalRef(jclass_loader);
Mathieu Chartier2535abe2015-02-17 10:38:49 -0800583 self->TransitionFromSuspendedToRunnable();
Mathieu Chartier2535abe2015-02-17 10:38:49 -0800584}
585
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800586CompiledMethod* CompilerDriver::CompileMethod(Thread* self, mirror::ArtMethod* method) {
587 const uint32_t method_idx = method->GetDexMethodIndex();
588 const uint32_t access_flags = method->GetAccessFlags();
589 const InvokeType invoke_type = method->GetInvokeType();
590 StackHandleScope<1> hs(self);
591 Handle<mirror::ClassLoader> class_loader(hs.NewHandle(
592 method->GetDeclaringClass()->GetClassLoader()));
593 jobject jclass_loader = class_loader.ToJObject();
594 const DexFile* dex_file = method->GetDexFile();
595 const uint16_t class_def_idx = method->GetClassDefIndex();
596 const DexFile::ClassDef& class_def = dex_file->GetClassDef(class_def_idx);
597 DexToDexCompilationLevel dex_to_dex_compilation_level =
598 GetDexToDexCompilationlevel(self, class_loader, *dex_file, class_def);
599 const DexFile::CodeItem* code_item = dex_file->GetCodeItem(method->GetCodeItemOffset());
600 self->TransitionFromRunnableToSuspended(kNative);
601 CompileMethod(self, code_item, access_flags, invoke_type, class_def_idx, method_idx,
602 jclass_loader, *dex_file, dex_to_dex_compilation_level, true);
603 auto* compiled_method = GetCompiledMethod(MethodReference(dex_file, method_idx));
604 self->TransitionFromSuspendedToRunnable();
605 return compiled_method;
606}
607
Brian Carlstrom7940e442013-07-12 13:46:57 -0700608void CompilerDriver::Resolve(jobject class_loader, const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -0800609 ThreadPool* thread_pool, TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700610 for (size_t i = 0; i != dex_files.size(); ++i) {
611 const DexFile* dex_file = dex_files[i];
Kenny Rootd5185342014-05-13 14:47:05 -0700612 CHECK(dex_file != nullptr);
Andreas Gampede7b4362014-07-28 18:38:57 -0700613 ResolveDexFile(class_loader, *dex_file, dex_files, thread_pool, timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700614 }
615}
616
617void CompilerDriver::PreCompile(jobject class_loader, const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -0800618 ThreadPool* thread_pool, TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700619 LoadImageClasses(timings);
Andreas Gampe8d295f82015-01-20 14:50:21 -0800620 VLOG(compiler) << "LoadImageClasses: " << GetMemoryUsageString(false);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700621
Mathieu Chartiere86deef2015-03-19 13:43:37 -0700622 const bool verification_enabled = compiler_options_->IsVerificationEnabled();
623 const bool never_verify = compiler_options_->NeverVerify();
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700624
Mathieu Chartiere86deef2015-03-19 13:43:37 -0700625 // We need to resolve for never_verify since it needs to run dex to dex to add the
626 // RETURN_VOID_NO_BARRIER.
627 if (never_verify || verification_enabled) {
628 Resolve(class_loader, dex_files, thread_pool, timings);
629 VLOG(compiler) << "Resolve: " << GetMemoryUsageString(false);
630 }
631
632 if (never_verify) {
Mathieu Chartierab972ef2014-12-03 17:38:22 -0800633 VLOG(compiler) << "Verify none mode specified, skipping verification.";
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700634 SetVerified(class_loader, dex_files, thread_pool, timings);
Mathieu Chartiere86deef2015-03-19 13:43:37 -0700635 }
636
637 if (!verification_enabled) {
Jeff Hao4a200f52014-04-01 14:58:49 -0700638 return;
639 }
640
Brian Carlstrom7940e442013-07-12 13:46:57 -0700641 Verify(class_loader, dex_files, thread_pool, timings);
Andreas Gampe8d295f82015-01-20 14:50:21 -0800642 VLOG(compiler) << "Verify: " << GetMemoryUsageString(false);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700643
Andreas Gampe6cf49e52015-03-05 13:08:45 -0800644 if (had_hard_verifier_failure_ && GetCompilerOptions().AbortOnHardVerifierFailure()) {
645 LOG(FATAL) << "Had a hard failure verifying all classes, and was asked to abort in such "
646 << "situations. Please check the log.";
647 }
648
Brian Carlstrom7940e442013-07-12 13:46:57 -0700649 InitializeClasses(class_loader, dex_files, thread_pool, timings);
Andreas Gampe8d295f82015-01-20 14:50:21 -0800650 VLOG(compiler) << "InitializeClasses: " << GetMemoryUsageString(false);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700651
652 UpdateImageClasses(timings);
Andreas Gampe8d295f82015-01-20 14:50:21 -0800653 VLOG(compiler) << "UpdateImageClasses: " << GetMemoryUsageString(false);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700654}
655
Ian Rogersdfb325e2013-10-30 01:00:44 -0700656bool CompilerDriver::IsImageClass(const char* descriptor) const {
Ian Rogerse6bb3b22013-08-19 21:51:45 -0700657 if (!IsImage()) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700658 return true;
Ian Rogerse6bb3b22013-08-19 21:51:45 -0700659 } else {
Ian Rogersdfb325e2013-10-30 01:00:44 -0700660 return image_classes_->find(descriptor) != image_classes_->end();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700661 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700662}
663
Andreas Gampe4bf3ae92014-11-11 13:28:29 -0800664bool CompilerDriver::IsClassToCompile(const char* descriptor) const {
Andreas Gampeb1fcead2015-04-20 18:53:51 -0700665 if (kRestrictCompilationFiltersToImage && !IsImage()) {
Andreas Gampe4bf3ae92014-11-11 13:28:29 -0800666 return true;
Andreas Gampe4bf3ae92014-11-11 13:28:29 -0800667 }
Andreas Gampeb1fcead2015-04-20 18:53:51 -0700668
669 if (classes_to_compile_ == nullptr) {
670 return true;
671 }
672 return classes_to_compile_->find(descriptor) != classes_to_compile_->end();
Andreas Gampe4bf3ae92014-11-11 13:28:29 -0800673}
674
Andreas Gampe70bef0d2015-04-15 02:37:28 -0700675bool CompilerDriver::IsMethodToCompile(const MethodReference& method_ref) const {
676 if (kRestrictCompilationFiltersToImage && !IsImage()) {
677 return true;
678 }
679
680 if (methods_to_compile_ == nullptr) {
681 return true;
682 }
683
684 std::string tmp = PrettyMethod(method_ref.dex_method_index, *method_ref.dex_file, true);
685 return methods_to_compile_->find(tmp.c_str()) != methods_to_compile_->end();
686}
687
Ian Rogerse94652f2014-12-02 11:13:19 -0800688static void ResolveExceptionsForMethod(MutableHandle<mirror::ArtMethod> method_handle,
Ian Rogers700a4022014-05-19 16:49:03 -0700689 std::set<std::pair<uint16_t, const DexFile*>>& exceptions_to_resolve)
Brian Carlstrom7940e442013-07-12 13:46:57 -0700690 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogerse94652f2014-12-02 11:13:19 -0800691 const DexFile::CodeItem* code_item = method_handle->GetCodeItem();
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700692 if (code_item == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700693 return; // native or abstract method
694 }
695 if (code_item->tries_size_ == 0) {
696 return; // nothing to process
697 }
Ian Rogers13735952014-10-08 12:43:28 -0700698 const uint8_t* encoded_catch_handler_list = DexFile::GetCatchHandlerData(*code_item, 0);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700699 size_t num_encoded_catch_handlers = DecodeUnsignedLeb128(&encoded_catch_handler_list);
700 for (size_t i = 0; i < num_encoded_catch_handlers; i++) {
701 int32_t encoded_catch_handler_size = DecodeSignedLeb128(&encoded_catch_handler_list);
702 bool has_catch_all = false;
703 if (encoded_catch_handler_size <= 0) {
704 encoded_catch_handler_size = -encoded_catch_handler_size;
705 has_catch_all = true;
706 }
707 for (int32_t j = 0; j < encoded_catch_handler_size; j++) {
708 uint16_t encoded_catch_handler_handlers_type_idx =
709 DecodeUnsignedLeb128(&encoded_catch_handler_list);
710 // Add to set of types to resolve if not already in the dex cache resolved types
Ian Rogerse94652f2014-12-02 11:13:19 -0800711 if (!method_handle->IsResolvedTypeIdx(encoded_catch_handler_handlers_type_idx)) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700712 exceptions_to_resolve.insert(
713 std::pair<uint16_t, const DexFile*>(encoded_catch_handler_handlers_type_idx,
Ian Rogerse94652f2014-12-02 11:13:19 -0800714 method_handle->GetDexFile()));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700715 }
716 // ignore address associated with catch handler
717 DecodeUnsignedLeb128(&encoded_catch_handler_list);
718 }
719 if (has_catch_all) {
720 // ignore catch all address
721 DecodeUnsignedLeb128(&encoded_catch_handler_list);
722 }
723 }
724}
725
726static bool ResolveCatchBlockExceptionsClassVisitor(mirror::Class* c, void* arg)
727 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers700a4022014-05-19 16:49:03 -0700728 std::set<std::pair<uint16_t, const DexFile*>>* exceptions_to_resolve =
729 reinterpret_cast<std::set<std::pair<uint16_t, const DexFile*>>*>(arg);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700730 StackHandleScope<1> hs(Thread::Current());
Ian Rogerse94652f2014-12-02 11:13:19 -0800731 MutableHandle<mirror::ArtMethod> method_handle(hs.NewHandle<mirror::ArtMethod>(nullptr));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700732 for (size_t i = 0; i < c->NumVirtualMethods(); ++i) {
Ian Rogerse94652f2014-12-02 11:13:19 -0800733 method_handle.Assign(c->GetVirtualMethod(i));
734 ResolveExceptionsForMethod(method_handle, *exceptions_to_resolve);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700735 }
736 for (size_t i = 0; i < c->NumDirectMethods(); ++i) {
Ian Rogerse94652f2014-12-02 11:13:19 -0800737 method_handle.Assign(c->GetDirectMethod(i));
738 ResolveExceptionsForMethod(method_handle, *exceptions_to_resolve);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700739 }
740 return true;
741}
742
743static bool RecordImageClassesVisitor(mirror::Class* klass, void* arg)
744 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Andreas Gampeb1fcead2015-04-20 18:53:51 -0700745 std::unordered_set<std::string>* image_classes =
746 reinterpret_cast<std::unordered_set<std::string>*>(arg);
Ian Rogers1ff3c982014-08-12 02:30:58 -0700747 std::string temp;
748 image_classes->insert(klass->GetDescriptor(&temp));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700749 return true;
750}
751
752// Make a list of descriptors for classes to include in the image
Ian Rogers3d504072014-03-01 09:16:49 -0800753void CompilerDriver::LoadImageClasses(TimingLogger* timings)
Brian Carlstrom7940e442013-07-12 13:46:57 -0700754 LOCKS_EXCLUDED(Locks::mutator_lock_) {
Kenny Rootd5185342014-05-13 14:47:05 -0700755 CHECK(timings != nullptr);
Ian Rogerse6bb3b22013-08-19 21:51:45 -0700756 if (!IsImage()) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700757 return;
758 }
759
Mathieu Chartierf5997b42014-06-20 10:37:54 -0700760 TimingLogger::ScopedTiming t("LoadImageClasses", timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700761 // Make a first class to load all classes explicitly listed in the file
762 Thread* self = Thread::Current();
763 ScopedObjectAccess soa(self);
764 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Kenny Rootd5185342014-05-13 14:47:05 -0700765 CHECK(image_classes_.get() != nullptr);
Mathieu Chartier02e25112013-08-14 16:14:24 -0700766 for (auto it = image_classes_->begin(), end = image_classes_->end(); it != end;) {
Vladimir Markoe9c36b32013-11-21 15:49:16 +0000767 const std::string& descriptor(*it);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700768 StackHandleScope<1> hs(self);
769 Handle<mirror::Class> klass(
770 hs.NewHandle(class_linker->FindSystemClass(self, descriptor.c_str())));
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700771 if (klass.Get() == nullptr) {
Ian Rogerse6bb3b22013-08-19 21:51:45 -0700772 VLOG(compiler) << "Failed to find class " << descriptor;
Vladimir Markoe9c36b32013-11-21 15:49:16 +0000773 image_classes_->erase(it++);
Ian Rogersa436fde2013-08-27 23:34:06 -0700774 self->ClearException();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700775 } else {
776 ++it;
777 }
778 }
779
780 // Resolve exception classes referenced by the loaded classes. The catch logic assumes
781 // exceptions are resolved by the verifier when there is a catch block in an interested method.
782 // Do this here so that exception classes appear to have been specified image classes.
Ian Rogers700a4022014-05-19 16:49:03 -0700783 std::set<std::pair<uint16_t, const DexFile*>> unresolved_exception_types;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700784 StackHandleScope<1> hs(self);
785 Handle<mirror::Class> java_lang_Throwable(
786 hs.NewHandle(class_linker->FindSystemClass(self, "Ljava/lang/Throwable;")));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700787 do {
788 unresolved_exception_types.clear();
789 class_linker->VisitClasses(ResolveCatchBlockExceptionsClassVisitor,
790 &unresolved_exception_types);
Mathieu Chartier02e25112013-08-14 16:14:24 -0700791 for (const std::pair<uint16_t, const DexFile*>& exception_type : unresolved_exception_types) {
792 uint16_t exception_type_idx = exception_type.first;
793 const DexFile* dex_file = exception_type.second;
Andreas Gampe277ccbd2014-11-03 21:36:10 -0800794 StackHandleScope<2> hs2(self);
795 Handle<mirror::DexCache> dex_cache(hs2.NewHandle(class_linker->FindDexCache(*dex_file)));
796 Handle<mirror::Class> klass(hs2.NewHandle(
Mathieu Chartier0cd81352014-05-22 16:48:55 -0700797 class_linker->ResolveType(*dex_file, exception_type_idx, dex_cache,
798 NullHandle<mirror::ClassLoader>())));
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700799 if (klass.Get() == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700800 const DexFile::TypeId& type_id = dex_file->GetTypeId(exception_type_idx);
801 const char* descriptor = dex_file->GetTypeDescriptor(type_id);
802 LOG(FATAL) << "Failed to resolve class " << descriptor;
803 }
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700804 DCHECK(java_lang_Throwable->IsAssignableFrom(klass.Get()));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700805 }
806 // Resolving exceptions may load classes that reference more exceptions, iterate until no
807 // more are found
808 } while (!unresolved_exception_types.empty());
809
810 // We walk the roots looking for classes so that we'll pick up the
811 // above classes plus any classes them depend on such super
812 // classes, interfaces, and the required ClassLinker roots.
813 class_linker->VisitClasses(RecordImageClassesVisitor, image_classes_.get());
814
815 CHECK_NE(image_classes_->size(), 0U);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700816}
817
Andreas Gampeb1fcead2015-04-20 18:53:51 -0700818static void MaybeAddToImageClasses(Handle<mirror::Class> c,
819 std::unordered_set<std::string>* image_classes)
Brian Carlstrom7940e442013-07-12 13:46:57 -0700820 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartierf8322842014-05-16 10:59:25 -0700821 Thread* self = Thread::Current();
822 StackHandleScope<1> hs(self);
823 // Make a copy of the handle so that we don't clobber it doing Assign.
Andreas Gampe5a4b8a22014-09-11 08:30:08 -0700824 MutableHandle<mirror::Class> klass(hs.NewHandle(c.Get()));
Ian Rogers1ff3c982014-08-12 02:30:58 -0700825 std::string temp;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700826 while (!klass->IsObjectClass()) {
Ian Rogers1ff3c982014-08-12 02:30:58 -0700827 const char* descriptor = klass->GetDescriptor(&temp);
Andreas Gampeb1fcead2015-04-20 18:53:51 -0700828 std::pair<std::unordered_set<std::string>::iterator, bool> result =
829 image_classes->insert(descriptor);
Ian Rogers1ff3c982014-08-12 02:30:58 -0700830 if (!result.second) { // Previously inserted.
831 break;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700832 }
Ian Rogers1ff3c982014-08-12 02:30:58 -0700833 VLOG(compiler) << "Adding " << descriptor << " to image classes";
Mathieu Chartierf8322842014-05-16 10:59:25 -0700834 for (size_t i = 0; i < klass->NumDirectInterfaces(); ++i) {
Andreas Gampe277ccbd2014-11-03 21:36:10 -0800835 StackHandleScope<1> hs2(self);
836 MaybeAddToImageClasses(hs2.NewHandle(mirror::Class::GetDirectInterface(self, klass, i)),
Mathieu Chartierf8322842014-05-16 10:59:25 -0700837 image_classes);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700838 }
839 if (klass->IsArrayClass()) {
Andreas Gampe277ccbd2014-11-03 21:36:10 -0800840 StackHandleScope<1> hs2(self);
841 MaybeAddToImageClasses(hs2.NewHandle(klass->GetComponentType()), image_classes);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700842 }
Mathieu Chartierf8322842014-05-16 10:59:25 -0700843 klass.Assign(klass->GetSuperClass());
Brian Carlstrom7940e442013-07-12 13:46:57 -0700844 }
845}
846
Andreas Gampeb0f370e2014-09-25 22:51:40 -0700847// Keeps all the data for the update together. Also doubles as the reference visitor.
848// Note: we can use object pointers because we suspend all threads.
849class ClinitImageUpdate {
850 public:
Andreas Gampeb1fcead2015-04-20 18:53:51 -0700851 static ClinitImageUpdate* Create(std::unordered_set<std::string>* image_class_descriptors,
852 Thread* self, ClassLinker* linker, std::string* error_msg) {
Andreas Gampeb0f370e2014-09-25 22:51:40 -0700853 std::unique_ptr<ClinitImageUpdate> res(new ClinitImageUpdate(image_class_descriptors, self,
854 linker));
855 if (res->art_method_class_ == nullptr) {
856 *error_msg = "Could not find ArtMethod class.";
857 return nullptr;
858 } else if (res->dex_cache_class_ == nullptr) {
859 *error_msg = "Could not find DexCache class.";
860 return nullptr;
861 }
862
863 return res.release();
864 }
865
866 ~ClinitImageUpdate() {
867 // Allow others to suspend again.
868 self_->EndAssertNoThreadSuspension(old_cause_);
869 }
870
871 // Visitor for VisitReferences.
872 void operator()(mirror::Object* object, MemberOffset field_offset, bool /* is_static */) const
873 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
874 mirror::Object* ref = object->GetFieldObject<mirror::Object>(field_offset);
875 if (ref != nullptr) {
876 VisitClinitClassesObject(ref);
877 }
878 }
879
880 // java.lang.Reference visitor for VisitReferences.
Andreas Gampedc8b63c2014-12-02 14:39:52 -0800881 void operator()(mirror::Class* /* klass */, mirror::Reference* /* ref */) const {
Andreas Gampeb0f370e2014-09-25 22:51:40 -0700882 }
883
884 void Walk() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
885 // Use the initial classes as roots for a search.
886 for (mirror::Class* klass_root : image_classes_) {
887 VisitClinitClassesObject(klass_root);
888 }
889 }
890
891 private:
Andreas Gampeb1fcead2015-04-20 18:53:51 -0700892 ClinitImageUpdate(std::unordered_set<std::string>* image_class_descriptors, Thread* self,
Andreas Gampeb0f370e2014-09-25 22:51:40 -0700893 ClassLinker* linker)
894 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) :
895 image_class_descriptors_(image_class_descriptors), self_(self) {
896 CHECK(linker != nullptr);
897 CHECK(image_class_descriptors != nullptr);
898
899 // Make sure nobody interferes with us.
900 old_cause_ = self->StartAssertNoThreadSuspension("Boot image closure");
901
902 // Find the interesting classes.
Andreas Gampedc8b63c2014-12-02 14:39:52 -0800903 art_method_class_ = linker->LookupClass(self, "Ljava/lang/reflect/ArtMethod;",
904 ComputeModifiedUtf8Hash("Ljava/lang/reflect/ArtMethod;"), nullptr);
905 dex_cache_class_ = linker->LookupClass(self, "Ljava/lang/DexCache;",
906 ComputeModifiedUtf8Hash("Ljava/lang/DexCache;"), nullptr);
Andreas Gampeb0f370e2014-09-25 22:51:40 -0700907
908 // Find all the already-marked classes.
909 WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
910 linker->VisitClasses(FindImageClasses, this);
911 }
912
913 static bool FindImageClasses(mirror::Class* klass, void* arg)
914 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
915 ClinitImageUpdate* data = reinterpret_cast<ClinitImageUpdate*>(arg);
916 std::string temp;
917 const char* name = klass->GetDescriptor(&temp);
918 if (data->image_class_descriptors_->find(name) != data->image_class_descriptors_->end()) {
919 data->image_classes_.push_back(klass);
Andreas Gampe4d4eff72015-03-04 22:46:35 -0800920 } else {
921 // Check whether it is initialized and has a clinit. They must be kept, too.
922 if (klass->IsInitialized() && klass->FindClassInitializer() != nullptr) {
923 data->image_classes_.push_back(klass);
924 }
Andreas Gampeb0f370e2014-09-25 22:51:40 -0700925 }
926
927 return true;
928 }
929
930 void VisitClinitClassesObject(mirror::Object* object) const
931 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
932 DCHECK(object != nullptr);
933 if (marked_objects_.find(object) != marked_objects_.end()) {
934 // Already processed.
935 return;
936 }
937
938 // Mark it.
939 marked_objects_.insert(object);
940
941 if (object->IsClass()) {
942 // If it is a class, add it.
943 StackHandleScope<1> hs(self_);
944 MaybeAddToImageClasses(hs.NewHandle(object->AsClass()), image_class_descriptors_);
945 } else {
946 // Else visit the object's class.
947 VisitClinitClassesObject(object->GetClass());
948 }
949
950 // If it is not a dex cache or an ArtMethod, visit all references.
951 mirror::Class* klass = object->GetClass();
952 if (klass != art_method_class_ && klass != dex_cache_class_) {
953 object->VisitReferences<false /* visit class */>(*this, *this);
954 }
955 }
956
957 mutable std::unordered_set<mirror::Object*> marked_objects_;
Andreas Gampeb1fcead2015-04-20 18:53:51 -0700958 std::unordered_set<std::string>* const image_class_descriptors_;
Andreas Gampeb0f370e2014-09-25 22:51:40 -0700959 std::vector<mirror::Class*> image_classes_;
960 const mirror::Class* art_method_class_;
961 const mirror::Class* dex_cache_class_;
962 Thread* const self_;
963 const char* old_cause_;
964
965 DISALLOW_COPY_AND_ASSIGN(ClinitImageUpdate);
966};
Brian Carlstrom7940e442013-07-12 13:46:57 -0700967
Ian Rogers3d504072014-03-01 09:16:49 -0800968void CompilerDriver::UpdateImageClasses(TimingLogger* timings) {
Ian Rogerse6bb3b22013-08-19 21:51:45 -0700969 if (IsImage()) {
Mathieu Chartierf5997b42014-06-20 10:37:54 -0700970 TimingLogger::ScopedTiming t("UpdateImageClasses", timings);
Andreas Gampeb0f370e2014-09-25 22:51:40 -0700971
972 Runtime* current = Runtime::Current();
973
974 // Suspend all threads.
Mathieu Chartierbf9fc582015-03-13 17:21:25 -0700975 current->GetThreadList()->SuspendAll(__FUNCTION__);
Andreas Gampeb0f370e2014-09-25 22:51:40 -0700976
977 std::string error_msg;
978 std::unique_ptr<ClinitImageUpdate> update(ClinitImageUpdate::Create(image_classes_.get(),
979 Thread::Current(),
980 current->GetClassLinker(),
981 &error_msg));
982 CHECK(update.get() != nullptr) << error_msg; // TODO: Soft failure?
983
984 // Do the marking.
985 update->Walk();
986
987 // Resume threads.
988 current->GetThreadList()->ResumeAll();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700989 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700990}
991
Mathieu Chartier590fee92013-09-13 13:46:47 -0700992bool CompilerDriver::CanAssumeTypeIsPresentInDexCache(const DexFile& dex_file, uint32_t type_idx) {
Ian Rogersfc0e94b2013-09-23 23:51:32 -0700993 if (IsImage() &&
Ian Rogersdfb325e2013-10-30 01:00:44 -0700994 IsImageClass(dex_file.StringDataByIdx(dex_file.GetTypeId(type_idx).descriptor_idx_))) {
Andreas Gampe58a5af82014-07-31 16:23:49 -0700995 {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700996 ScopedObjectAccess soa(Thread::Current());
997 mirror::DexCache* dex_cache = Runtime::Current()->GetClassLinker()->FindDexCache(dex_file);
998 mirror::Class* resolved_class = dex_cache->GetResolvedType(type_idx);
Andreas Gampe58a5af82014-07-31 16:23:49 -0700999 if (resolved_class == nullptr) {
1000 // Erroneous class.
1001 stats_->TypeNotInDexCache();
1002 return false;
1003 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001004 }
1005 stats_->TypeInDexCache();
1006 return true;
1007 } else {
1008 stats_->TypeNotInDexCache();
1009 return false;
1010 }
1011}
1012
1013bool CompilerDriver::CanAssumeStringIsPresentInDexCache(const DexFile& dex_file,
1014 uint32_t string_idx) {
1015 // See also Compiler::ResolveDexFile
1016
1017 bool result = false;
1018 if (IsImage()) {
1019 // We resolve all const-string strings when building for the image.
1020 ScopedObjectAccess soa(Thread::Current());
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001021 StackHandleScope<1> hs(soa.Self());
1022 Handle<mirror::DexCache> dex_cache(
1023 hs.NewHandle(Runtime::Current()->GetClassLinker()->FindDexCache(dex_file)));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001024 Runtime::Current()->GetClassLinker()->ResolveString(dex_file, string_idx, dex_cache);
1025 result = true;
1026 }
1027 if (result) {
1028 stats_->StringInDexCache();
1029 } else {
1030 stats_->StringNotInDexCache();
1031 }
1032 return result;
1033}
1034
1035bool CompilerDriver::CanAccessTypeWithoutChecks(uint32_t referrer_idx, const DexFile& dex_file,
1036 uint32_t type_idx,
1037 bool* type_known_final, bool* type_known_abstract,
1038 bool* equals_referrers_class) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001039 if (type_known_final != nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001040 *type_known_final = false;
1041 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001042 if (type_known_abstract != nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001043 *type_known_abstract = false;
1044 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001045 if (equals_referrers_class != nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001046 *equals_referrers_class = false;
1047 }
1048 ScopedObjectAccess soa(Thread::Current());
1049 mirror::DexCache* dex_cache = Runtime::Current()->GetClassLinker()->FindDexCache(dex_file);
1050 // Get type from dex cache assuming it was populated by the verifier
1051 mirror::Class* resolved_class = dex_cache->GetResolvedType(type_idx);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001052 if (resolved_class == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001053 stats_->TypeNeedsAccessCheck();
1054 return false; // Unknown class needs access checks.
1055 }
1056 const DexFile::MethodId& method_id = dex_file.GetMethodId(referrer_idx);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001057 if (equals_referrers_class != nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001058 *equals_referrers_class = (method_id.class_idx_ == type_idx);
1059 }
1060 mirror::Class* referrer_class = dex_cache->GetResolvedType(method_id.class_idx_);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001061 if (referrer_class == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001062 stats_->TypeNeedsAccessCheck();
1063 return false; // Incomplete referrer knowledge needs access check.
1064 }
1065 // Perform access check, will return true if access is ok or false if we're going to have to
1066 // check this at runtime (for example for class loaders).
1067 bool result = referrer_class->CanAccess(resolved_class);
1068 if (result) {
1069 stats_->TypeDoesntNeedAccessCheck();
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001070 if (type_known_final != nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001071 *type_known_final = resolved_class->IsFinal() && !resolved_class->IsArrayClass();
1072 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001073 if (type_known_abstract != nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001074 *type_known_abstract = resolved_class->IsAbstract() && !resolved_class->IsArrayClass();
1075 }
1076 } else {
1077 stats_->TypeNeedsAccessCheck();
1078 }
1079 return result;
1080}
1081
1082bool CompilerDriver::CanAccessInstantiableTypeWithoutChecks(uint32_t referrer_idx,
1083 const DexFile& dex_file,
1084 uint32_t type_idx) {
1085 ScopedObjectAccess soa(Thread::Current());
1086 mirror::DexCache* dex_cache = Runtime::Current()->GetClassLinker()->FindDexCache(dex_file);
1087 // Get type from dex cache assuming it was populated by the verifier.
1088 mirror::Class* resolved_class = dex_cache->GetResolvedType(type_idx);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001089 if (resolved_class == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001090 stats_->TypeNeedsAccessCheck();
1091 return false; // Unknown class needs access checks.
1092 }
1093 const DexFile::MethodId& method_id = dex_file.GetMethodId(referrer_idx);
1094 mirror::Class* referrer_class = dex_cache->GetResolvedType(method_id.class_idx_);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001095 if (referrer_class == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001096 stats_->TypeNeedsAccessCheck();
1097 return false; // Incomplete referrer knowledge needs access check.
1098 }
1099 // Perform access and instantiable checks, will return true if access is ok or false if we're
1100 // going to have to check this at runtime (for example for class loaders).
1101 bool result = referrer_class->CanAccess(resolved_class) && resolved_class->IsInstantiable();
1102 if (result) {
1103 stats_->TypeDoesntNeedAccessCheck();
1104 } else {
1105 stats_->TypeNeedsAccessCheck();
1106 }
1107 return result;
1108}
1109
Hiroshi Yamauchibe1ca552014-01-15 11:46:48 -08001110bool CompilerDriver::CanEmbedTypeInCode(const DexFile& dex_file, uint32_t type_idx,
1111 bool* is_type_initialized, bool* use_direct_type_ptr,
Mathieu Chartier8668c3c2014-04-24 16:48:11 -07001112 uintptr_t* direct_type_ptr, bool* out_is_finalizable) {
Hiroshi Yamauchibe1ca552014-01-15 11:46:48 -08001113 ScopedObjectAccess soa(Thread::Current());
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08001114 Runtime* runtime = Runtime::Current();
1115 mirror::DexCache* dex_cache = runtime->GetClassLinker()->FindDexCache(dex_file);
Hiroshi Yamauchibe1ca552014-01-15 11:46:48 -08001116 mirror::Class* resolved_class = dex_cache->GetResolvedType(type_idx);
1117 if (resolved_class == nullptr) {
1118 return false;
1119 }
Igor Murashkind6dee672014-10-16 18:36:16 -07001120 if (GetCompilerOptions().GetCompilePic()) {
1121 // Do not allow a direct class pointer to be used when compiling for position-independent
1122 return false;
1123 }
Mathieu Chartier8668c3c2014-04-24 16:48:11 -07001124 *out_is_finalizable = resolved_class->IsFinalizable();
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08001125 gc::Heap* heap = runtime->GetHeap();
1126 const bool compiling_boot = heap->IsCompilingBoot();
Alex Light6e183f22014-07-18 14:57:04 -07001127 const bool support_boot_image_fixup = GetSupportBootImageFixup();
Hiroshi Yamauchibe1ca552014-01-15 11:46:48 -08001128 if (compiling_boot) {
1129 // boot -> boot class pointers.
1130 // True if the class is in the image at boot compiling time.
1131 const bool is_image_class = IsImage() && IsImageClass(
1132 dex_file.StringDataByIdx(dex_file.GetTypeId(type_idx).descriptor_idx_));
1133 // True if pc relative load works.
Hiroshi Yamauchibe1ca552014-01-15 11:46:48 -08001134 if (is_image_class && support_boot_image_fixup) {
1135 *is_type_initialized = resolved_class->IsInitialized();
1136 *use_direct_type_ptr = false;
1137 *direct_type_ptr = 0;
1138 return true;
1139 } else {
1140 return false;
1141 }
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08001142 } else if (runtime->UseJit() && !heap->IsMovableObject(resolved_class)) {
1143 *is_type_initialized = resolved_class->IsInitialized();
1144 // If the class may move around, then don't embed it as a direct pointer.
1145 *use_direct_type_ptr = true;
1146 *direct_type_ptr = reinterpret_cast<uintptr_t>(resolved_class);
1147 return true;
Hiroshi Yamauchibe1ca552014-01-15 11:46:48 -08001148 } else {
1149 // True if the class is in the image at app compiling time.
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08001150 const bool class_in_image = heap->FindSpaceFromObject(resolved_class, false)->IsImageSpace();
Alex Light6e183f22014-07-18 14:57:04 -07001151 if (class_in_image && support_boot_image_fixup) {
Hiroshi Yamauchibe1ca552014-01-15 11:46:48 -08001152 // boot -> app class pointers.
1153 *is_type_initialized = resolved_class->IsInitialized();
Alex Lighta59dd802014-07-02 16:28:08 -07001154 // TODO This is somewhat hacky. We should refactor all of this invoke codepath.
1155 *use_direct_type_ptr = !GetCompilerOptions().GetIncludePatchInformation();
Hiroshi Yamauchibe1ca552014-01-15 11:46:48 -08001156 *direct_type_ptr = reinterpret_cast<uintptr_t>(resolved_class);
1157 return true;
1158 } else {
1159 // app -> app class pointers.
1160 // Give up because app does not have an image and class
1161 // isn't created at compile time. TODO: implement this
1162 // if/when each app gets an image.
1163 return false;
1164 }
1165 }
1166}
1167
Fred Shihe7f82e22014-08-06 10:46:37 -07001168bool CompilerDriver::CanEmbedReferenceTypeInCode(ClassReference* ref,
1169 bool* use_direct_ptr,
1170 uintptr_t* direct_type_ptr) {
1171 CHECK(ref != nullptr);
1172 CHECK(use_direct_ptr != nullptr);
1173 CHECK(direct_type_ptr != nullptr);
1174
1175 ScopedObjectAccess soa(Thread::Current());
1176 mirror::Class* reference_class = mirror::Reference::GetJavaLangRefReference();
Andreas Gampe928f72b2014-09-09 19:53:48 -07001177 bool is_initialized = false;
Fred Shihe7f82e22014-08-06 10:46:37 -07001178 bool unused_finalizable;
1179 // Make sure we have a finished Reference class object before attempting to use it.
1180 if (!CanEmbedTypeInCode(*reference_class->GetDexCache()->GetDexFile(),
1181 reference_class->GetDexTypeIndex(), &is_initialized,
1182 use_direct_ptr, direct_type_ptr, &unused_finalizable) ||
1183 !is_initialized) {
1184 return false;
1185 }
1186 ref->first = &reference_class->GetDexFile();
1187 ref->second = reference_class->GetDexClassDefIndex();
1188 return true;
1189}
1190
1191uint32_t CompilerDriver::GetReferenceSlowFlagOffset() const {
1192 ScopedObjectAccess soa(Thread::Current());
1193 mirror::Class* klass = mirror::Reference::GetJavaLangRefReference();
1194 DCHECK(klass->IsInitialized());
1195 return klass->GetSlowPathFlagOffset().Uint32Value();
1196}
1197
1198uint32_t CompilerDriver::GetReferenceDisableFlagOffset() const {
1199 ScopedObjectAccess soa(Thread::Current());
1200 mirror::Class* klass = mirror::Reference::GetJavaLangRefReference();
1201 DCHECK(klass->IsInitialized());
1202 return klass->GetDisableIntrinsicFlagOffset().Uint32Value();
1203}
1204
Vladimir Marko20f85592015-03-19 10:07:02 +00001205DexCacheArraysLayout CompilerDriver::GetDexCacheArraysLayout(const DexFile* dex_file) {
1206 // Currently only image dex caches have fixed array layout.
1207 return IsImage() && GetSupportBootImageFixup()
Mathieu Chartierc7853442015-03-27 14:35:38 -07001208 ? DexCacheArraysLayout(GetInstructionSetPointerSize(instruction_set_), dex_file)
Vladimir Marko20f85592015-03-19 10:07:02 +00001209 : DexCacheArraysLayout();
1210}
1211
Vladimir Markobe0e5462014-02-26 11:24:15 +00001212void CompilerDriver::ProcessedInstanceField(bool resolved) {
1213 if (!resolved) {
1214 stats_->UnresolvedInstanceField();
1215 } else {
1216 stats_->ResolvedInstanceField();
1217 }
1218}
1219
1220void CompilerDriver::ProcessedStaticField(bool resolved, bool local) {
1221 if (!resolved) {
1222 stats_->UnresolvedStaticField();
1223 } else if (local) {
1224 stats_->ResolvedLocalStaticField();
1225 } else {
1226 stats_->ResolvedStaticField();
1227 }
1228}
1229
Vladimir Markof096aad2014-01-23 15:51:58 +00001230void CompilerDriver::ProcessedInvoke(InvokeType invoke_type, int flags) {
1231 stats_->ProcessedInvoke(invoke_type, flags);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001232}
1233
Mathieu Chartierc7853442015-03-27 14:35:38 -07001234ArtField* CompilerDriver::ComputeInstanceFieldInfo(uint32_t field_idx,
1235 const DexCompilationUnit* mUnit, bool is_put,
1236 const ScopedObjectAccess& soa) {
Vladimir Markobe0e5462014-02-26 11:24:15 +00001237 // Try to resolve the field and compiling method's class.
Mathieu Chartierc7853442015-03-27 14:35:38 -07001238 ArtField* resolved_field;
Vladimir Markobe0e5462014-02-26 11:24:15 +00001239 mirror::Class* referrer_class;
1240 mirror::DexCache* dex_cache;
1241 {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001242 StackHandleScope<3> hs(soa.Self());
1243 Handle<mirror::DexCache> dex_cache_handle(
1244 hs.NewHandle(mUnit->GetClassLinker()->FindDexCache(*mUnit->GetDexFile())));
1245 Handle<mirror::ClassLoader> class_loader_handle(
1246 hs.NewHandle(soa.Decode<mirror::ClassLoader*>(mUnit->GetClassLoader())));
Mathieu Chartierc7853442015-03-27 14:35:38 -07001247 resolved_field =
1248 ResolveField(soa, dex_cache_handle, class_loader_handle, mUnit, field_idx, false);
1249 referrer_class = resolved_field != nullptr
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001250 ? ResolveCompilingMethodsClass(soa, dex_cache_handle, class_loader_handle, mUnit) : nullptr;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001251 dex_cache = dex_cache_handle.Get();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001252 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001253 bool can_link = false;
Vladimir Markobe0e5462014-02-26 11:24:15 +00001254 if (resolved_field != nullptr && referrer_class != nullptr) {
Vladimir Markobe0e5462014-02-26 11:24:15 +00001255 std::pair<bool, bool> fast_path = IsFastInstanceField(
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001256 dex_cache, referrer_class, resolved_field, field_idx);
1257 can_link = is_put ? fast_path.second : fast_path.first;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001258 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001259 ProcessedInstanceField(can_link);
1260 return can_link ? resolved_field : nullptr;
1261}
1262
1263bool CompilerDriver::ComputeInstanceFieldInfo(uint32_t field_idx, const DexCompilationUnit* mUnit,
1264 bool is_put, MemberOffset* field_offset,
1265 bool* is_volatile) {
1266 ScopedObjectAccess soa(Thread::Current());
Mathieu Chartierc7853442015-03-27 14:35:38 -07001267 ArtField* resolved_field = ComputeInstanceFieldInfo(field_idx, mUnit, is_put, soa);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001268
Mathieu Chartierc7853442015-03-27 14:35:38 -07001269 if (resolved_field == nullptr) {
Vladimir Markobe0e5462014-02-26 11:24:15 +00001270 // Conservative defaults.
1271 *is_volatile = true;
1272 *field_offset = MemberOffset(static_cast<size_t>(-1));
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001273 return false;
1274 } else {
1275 *is_volatile = resolved_field->IsVolatile();
1276 *field_offset = resolved_field->GetOffset();
1277 return true;
Vladimir Markobe0e5462014-02-26 11:24:15 +00001278 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001279}
1280
1281bool CompilerDriver::ComputeStaticFieldInfo(uint32_t field_idx, const DexCompilationUnit* mUnit,
Vladimir Markobe0e5462014-02-26 11:24:15 +00001282 bool is_put, MemberOffset* field_offset,
1283 uint32_t* storage_index, bool* is_referrers_class,
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01001284 bool* is_volatile, bool* is_initialized,
1285 Primitive::Type* type) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001286 ScopedObjectAccess soa(Thread::Current());
Vladimir Markobe0e5462014-02-26 11:24:15 +00001287 // Try to resolve the field and compiling method's class.
Mathieu Chartierc7853442015-03-27 14:35:38 -07001288 ArtField* resolved_field;
Vladimir Markobe0e5462014-02-26 11:24:15 +00001289 mirror::Class* referrer_class;
1290 mirror::DexCache* dex_cache;
1291 {
Mathieu Chartierc7853442015-03-27 14:35:38 -07001292 StackHandleScope<2> hs(soa.Self());
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001293 Handle<mirror::DexCache> dex_cache_handle(
1294 hs.NewHandle(mUnit->GetClassLinker()->FindDexCache(*mUnit->GetDexFile())));
1295 Handle<mirror::ClassLoader> class_loader_handle(
1296 hs.NewHandle(soa.Decode<mirror::ClassLoader*>(mUnit->GetClassLoader())));
Mathieu Chartierc7853442015-03-27 14:35:38 -07001297 resolved_field =
1298 ResolveField(soa, dex_cache_handle, class_loader_handle, mUnit, field_idx, true);
1299 referrer_class = resolved_field != nullptr
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001300 ? ResolveCompilingMethodsClass(soa, dex_cache_handle, class_loader_handle, mUnit) : nullptr;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001301 dex_cache = dex_cache_handle.Get();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001302 }
Vladimir Markobe0e5462014-02-26 11:24:15 +00001303 bool result = false;
1304 if (resolved_field != nullptr && referrer_class != nullptr) {
1305 *is_volatile = IsFieldVolatile(resolved_field);
1306 std::pair<bool, bool> fast_path = IsFastStaticField(
Vladimir Marko66c6d7b2014-10-16 15:41:48 +01001307 dex_cache, referrer_class, resolved_field, field_idx, storage_index);
Vladimir Markobe0e5462014-02-26 11:24:15 +00001308 result = is_put ? fast_path.second : fast_path.first;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001309 }
Vladimir Marko66c6d7b2014-10-16 15:41:48 +01001310 if (result) {
1311 *field_offset = GetFieldOffset(resolved_field);
1312 *is_referrers_class = IsStaticFieldInReferrerClass(referrer_class, resolved_field);
1313 // *is_referrers_class == true implies no worrying about class initialization.
1314 *is_initialized = (*is_referrers_class) ||
1315 (IsStaticFieldsClassInitialized(referrer_class, resolved_field) &&
1316 CanAssumeTypeIsPresentInDexCache(*mUnit->GetDexFile(), *storage_index));
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01001317 *type = resolved_field->GetTypeAsPrimitiveType();
Vladimir Marko66c6d7b2014-10-16 15:41:48 +01001318 } else {
Vladimir Markobe0e5462014-02-26 11:24:15 +00001319 // Conservative defaults.
1320 *is_volatile = true;
1321 *field_offset = MemberOffset(static_cast<size_t>(-1));
1322 *storage_index = -1;
1323 *is_referrers_class = false;
1324 *is_initialized = false;
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01001325 *type = Primitive::kPrimVoid;
Vladimir Markobe0e5462014-02-26 11:24:15 +00001326 }
1327 ProcessedStaticField(result, *is_referrers_class);
1328 return result;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001329}
1330
Ian Rogers83883d72013-10-21 21:07:24 -07001331void CompilerDriver::GetCodeAndMethodForDirectCall(InvokeType* type, InvokeType sharp_type,
1332 bool no_guarantee_of_dex_cache_entry,
Igor Murashkind6dee672014-10-16 18:36:16 -07001333 const mirror::Class* referrer_class,
Brian Carlstromea46f952013-07-30 01:26:50 -07001334 mirror::ArtMethod* method,
Vladimir Markof096aad2014-01-23 15:51:58 +00001335 int* stats_flags,
Ian Rogers83883d72013-10-21 21:07:24 -07001336 MethodReference* target_method,
Ian Rogers65ec92c2013-09-06 10:49:58 -07001337 uintptr_t* direct_code,
1338 uintptr_t* direct_method) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001339 // For direct and static methods compute possible direct_code and direct_method values, ie
1340 // an address for the Method* being invoked and an address of the code for that Method*.
1341 // For interface calls compute a value for direct_method that is the interface method being
1342 // invoked, so this can be passed to the out-of-line runtime support code.
Ian Rogers65ec92c2013-09-06 10:49:58 -07001343 *direct_code = 0;
1344 *direct_method = 0;
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08001345 Runtime* const runtime = Runtime::Current();
1346 gc::Heap* const heap = runtime->GetHeap();
Igor Murashkind6dee672014-10-16 18:36:16 -07001347 bool use_dex_cache = GetCompilerOptions().GetCompilePic(); // Off by default
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08001348 const bool compiling_boot = heap->IsCompilingBoot();
Alex Lighta59dd802014-07-02 16:28:08 -07001349 // TODO This is somewhat hacky. We should refactor all of this invoke codepath.
1350 const bool force_relocations = (compiling_boot ||
1351 GetCompilerOptions().GetIncludePatchInformation());
Elliott Hughes956af0f2014-12-11 14:34:28 -08001352 if (sharp_type != kStatic && sharp_type != kDirect) {
1353 return;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001354 }
Elliott Hughes956af0f2014-12-11 14:34:28 -08001355 // TODO: support patching on all architectures.
1356 use_dex_cache = use_dex_cache || (force_relocations && !support_boot_image_fixup_);
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08001357 mirror::Class* declaring_class = method->GetDeclaringClass();
1358 bool method_code_in_boot = declaring_class->GetClassLoader() == nullptr;
Ian Rogers83883d72013-10-21 21:07:24 -07001359 if (!use_dex_cache) {
1360 if (!method_code_in_boot) {
1361 use_dex_cache = true;
1362 } else {
Brian Carlstrom14247b62015-01-31 21:35:32 -08001363 bool has_clinit_trampoline =
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08001364 method->IsStatic() && !declaring_class->IsInitialized();
1365 if (has_clinit_trampoline && declaring_class != referrer_class) {
Ian Rogers83883d72013-10-21 21:07:24 -07001366 // Ensure we run the clinit trampoline unless we are invoking a static method in the same
1367 // class.
1368 use_dex_cache = true;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001369 }
1370 }
Ian Rogers83883d72013-10-21 21:07:24 -07001371 }
Mathieu Chartier28a35882015-02-26 18:28:07 -08001372 if (runtime->UseJit()) {
1373 // If we are the JIT, then don't allow a direct call to the interpreter bridge since this will
1374 // never be updated even after we compile the method.
1375 if (runtime->GetClassLinker()->IsQuickToInterpreterBridge(
1376 reinterpret_cast<const void*>(compiler_->GetEntryPointOf(method)))) {
1377 use_dex_cache = true;
1378 }
1379 }
Vladimir Markof096aad2014-01-23 15:51:58 +00001380 if (method_code_in_boot) {
1381 *stats_flags |= kFlagDirectCallToBoot | kFlagDirectMethodToBoot;
Ian Rogers83883d72013-10-21 21:07:24 -07001382 }
Alex Lighta59dd802014-07-02 16:28:08 -07001383 if (!use_dex_cache && force_relocations) {
Jeff Haoa0acc2d2015-01-27 11:22:04 -08001384 bool is_in_image;
1385 if (IsImage()) {
1386 is_in_image = IsImageClass(method->GetDeclaringClassDescriptor());
1387 } else {
1388 is_in_image = instruction_set_ != kX86 && instruction_set_ != kX86_64 &&
1389 Runtime::Current()->GetHeap()->FindSpaceFromObject(method->GetDeclaringClass(),
1390 false)->IsImageSpace();
1391 }
1392 if (!is_in_image) {
Ian Rogers83883d72013-10-21 21:07:24 -07001393 // We can only branch directly to Methods that are resolved in the DexCache.
1394 // Otherwise we won't invoke the resolution trampoline.
1395 use_dex_cache = true;
1396 }
1397 }
1398 // The method is defined not within this dex file. We need a dex cache slot within the current
1399 // dex file or direct pointers.
1400 bool must_use_direct_pointers = false;
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08001401 mirror::DexCache* dex_cache = declaring_class->GetDexCache();
1402 if (target_method->dex_file == dex_cache->GetDexFile() &&
1403 !(runtime->UseJit() && dex_cache->GetResolvedMethod(method->GetDexMethodIndex()) == nullptr)) {
Ian Rogers83883d72013-10-21 21:07:24 -07001404 target_method->dex_method_index = method->GetDexMethodIndex();
1405 } else {
Ian Rogers83883d72013-10-21 21:07:24 -07001406 if (no_guarantee_of_dex_cache_entry) {
1407 // See if the method is also declared in this dex cache.
Ian Rogerse0a02da2014-12-02 14:10:53 -08001408 uint32_t dex_method_idx =
1409 method->FindDexMethodIndexInOtherDexFile(*target_method->dex_file,
1410 target_method->dex_method_index);
Ian Rogers83883d72013-10-21 21:07:24 -07001411 if (dex_method_idx != DexFile::kDexNoIndex) {
1412 target_method->dex_method_index = dex_method_idx;
1413 } else {
Alex Lighta59dd802014-07-02 16:28:08 -07001414 if (force_relocations && !use_dex_cache) {
Jeff Hao49161ce2014-03-12 11:05:25 -07001415 target_method->dex_method_index = method->GetDexMethodIndex();
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08001416 target_method->dex_file = dex_cache->GetDexFile();
Jeff Hao49161ce2014-03-12 11:05:25 -07001417 }
Ian Rogers83883d72013-10-21 21:07:24 -07001418 must_use_direct_pointers = true;
1419 }
1420 }
1421 }
1422 if (use_dex_cache) {
1423 if (must_use_direct_pointers) {
1424 // Fail. Test above showed the only safe dispatch was via the dex cache, however, the direct
1425 // pointers are required as the dex cache lacks an appropriate entry.
1426 VLOG(compiler) << "Dex cache devirtualization failed for: " << PrettyMethod(method);
1427 } else {
1428 *type = sharp_type;
1429 }
1430 } else {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08001431 bool method_in_image = heap->FindSpaceFromObject(method, false)->IsImageSpace();
Mathieu Chartier6ced4092015-02-27 16:10:48 -08001432 if (method_in_image || compiling_boot || runtime->UseJit()) {
Alex Lighta59dd802014-07-02 16:28:08 -07001433 // 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 -08001434 // In the case where we are the JIT, we can always use direct pointers since we know where
1435 // the method and its code are / will be. We don't sharpen to interpreter bridge since we
1436 // check IsQuickToInterpreterBridge above.
Vladimir Markoa51a0b02014-05-21 12:08:39 +01001437 CHECK(!method->IsAbstract());
Ian Rogers83883d72013-10-21 21:07:24 -07001438 *type = sharp_type;
Alex Lighta59dd802014-07-02 16:28:08 -07001439 *direct_method = force_relocations ? -1 : reinterpret_cast<uintptr_t>(method);
1440 *direct_code = force_relocations ? -1 : compiler_->GetEntryPointOf(method);
Brian Carlstrom14247b62015-01-31 21:35:32 -08001441 target_method->dex_file = method->GetDeclaringClass()->GetDexCache()->GetDexFile();
Vladimir Markoa51a0b02014-05-21 12:08:39 +01001442 target_method->dex_method_index = method->GetDexMethodIndex();
1443 } else if (!must_use_direct_pointers) {
1444 // Set the code and rely on the dex cache for the method.
1445 *type = sharp_type;
Alex Lighta59dd802014-07-02 16:28:08 -07001446 if (force_relocations) {
1447 *direct_code = -1;
Brian Carlstrom14247b62015-01-31 21:35:32 -08001448 target_method->dex_file = method->GetDeclaringClass()->GetDexCache()->GetDexFile();
Alex Lighta59dd802014-07-02 16:28:08 -07001449 target_method->dex_method_index = method->GetDexMethodIndex();
1450 } else {
1451 *direct_code = compiler_->GetEntryPointOf(method);
1452 }
Ian Rogers83883d72013-10-21 21:07:24 -07001453 } else {
Vladimir Markoa51a0b02014-05-21 12:08:39 +01001454 // Direct pointers were required but none were available.
1455 VLOG(compiler) << "Dex cache devirtualization failed for: " << PrettyMethod(method);
Ian Rogers83883d72013-10-21 21:07:24 -07001456 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001457 }
1458}
1459
1460bool CompilerDriver::ComputeInvokeInfo(const DexCompilationUnit* mUnit, const uint32_t dex_pc,
Ian Rogers65ec92c2013-09-06 10:49:58 -07001461 bool update_stats, bool enable_devirtualization,
1462 InvokeType* invoke_type, MethodReference* target_method,
1463 int* vtable_idx, uintptr_t* direct_code,
1464 uintptr_t* direct_method) {
Vladimir Markof096aad2014-01-23 15:51:58 +00001465 InvokeType orig_invoke_type = *invoke_type;
1466 int stats_flags = 0;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001467 ScopedObjectAccess soa(Thread::Current());
Vladimir Markof096aad2014-01-23 15:51:58 +00001468 // Try to resolve the method and compiling method's class.
1469 mirror::ArtMethod* resolved_method;
1470 mirror::Class* referrer_class;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001471 StackHandleScope<3> hs(soa.Self());
1472 Handle<mirror::DexCache> dex_cache(
1473 hs.NewHandle(mUnit->GetClassLinker()->FindDexCache(*mUnit->GetDexFile())));
1474 Handle<mirror::ClassLoader> class_loader(hs.NewHandle(
1475 soa.Decode<mirror::ClassLoader*>(mUnit->GetClassLoader())));
Vladimir Markof096aad2014-01-23 15:51:58 +00001476 {
1477 uint32_t method_idx = target_method->dex_method_index;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001478 Handle<mirror::ArtMethod> resolved_method_handle(hs.NewHandle(
1479 ResolveMethod(soa, dex_cache, class_loader, mUnit, method_idx, orig_invoke_type)));
1480 referrer_class = (resolved_method_handle.Get() != nullptr)
Vladimir Markof096aad2014-01-23 15:51:58 +00001481 ? ResolveCompilingMethodsClass(soa, dex_cache, class_loader, mUnit) : nullptr;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001482 resolved_method = resolved_method_handle.Get();
Vladimir Markof096aad2014-01-23 15:51:58 +00001483 }
1484 bool result = false;
1485 if (resolved_method != nullptr) {
1486 *vtable_idx = GetResolvedMethodVTableIndex(resolved_method, orig_invoke_type);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001487
Nicolas Geoffraye53798a2014-12-01 10:31:54 +00001488 if (enable_devirtualization && mUnit->GetVerifiedMethod() != nullptr) {
Vladimir Markof096aad2014-01-23 15:51:58 +00001489 const MethodReference* devirt_target = mUnit->GetVerifiedMethod()->GetDevirtTarget(dex_pc);
1490
1491 stats_flags = IsFastInvoke(
1492 soa, dex_cache, class_loader, mUnit, referrer_class, resolved_method,
1493 invoke_type, target_method, devirt_target, direct_code, direct_method);
1494 result = stats_flags != 0;
1495 } else {
1496 // Devirtualization not enabled. Inline IsFastInvoke(), dropping the devirtualization parts.
1497 if (UNLIKELY(referrer_class == nullptr) ||
1498 UNLIKELY(!referrer_class->CanAccessResolvedMethod(resolved_method->GetDeclaringClass(),
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001499 resolved_method, dex_cache.Get(),
Vladimir Markof096aad2014-01-23 15:51:58 +00001500 target_method->dex_method_index)) ||
1501 *invoke_type == kSuper) {
1502 // Slow path. (Without devirtualization, all super calls go slow path as well.)
1503 } else {
1504 // Sharpening failed so generate a regular resolved method dispatch.
1505 stats_flags = kFlagMethodResolved;
1506 GetCodeAndMethodForDirectCall(invoke_type, *invoke_type, false, referrer_class, resolved_method,
1507 &stats_flags, target_method, direct_code, direct_method);
1508 result = true;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001509 }
1510 }
1511 }
Vladimir Markof096aad2014-01-23 15:51:58 +00001512 if (!result) {
1513 // Conservative defaults.
1514 *vtable_idx = -1;
1515 *direct_code = 0u;
1516 *direct_method = 0u;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001517 }
1518 if (update_stats) {
Vladimir Markof096aad2014-01-23 15:51:58 +00001519 ProcessedInvoke(orig_invoke_type, stats_flags);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001520 }
Vladimir Markof096aad2014-01-23 15:51:58 +00001521 return result;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001522}
1523
Vladimir Marko2730db02014-01-27 11:15:17 +00001524const VerifiedMethod* CompilerDriver::GetVerifiedMethod(const DexFile* dex_file,
1525 uint32_t method_idx) const {
1526 MethodReference ref(dex_file, method_idx);
1527 return verification_results_->GetVerifiedMethod(ref);
1528}
1529
1530bool CompilerDriver::IsSafeCast(const DexCompilationUnit* mUnit, uint32_t dex_pc) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001531 if (!compiler_options_->IsVerificationEnabled()) {
1532 // If we didn't verify, every cast has to be treated as non-safe.
1533 return false;
1534 }
Vladimir Marko2730db02014-01-27 11:15:17 +00001535 DCHECK(mUnit->GetVerifiedMethod() != nullptr);
1536 bool result = mUnit->GetVerifiedMethod()->IsSafeCast(dex_pc);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001537 if (result) {
1538 stats_->SafeCast();
1539 } else {
1540 stats_->NotASafeCast();
1541 }
1542 return result;
1543}
1544
Brian Carlstrom7940e442013-07-12 13:46:57 -07001545class ParallelCompilationManager {
1546 public:
1547 typedef void Callback(const ParallelCompilationManager* manager, size_t index);
1548
1549 ParallelCompilationManager(ClassLinker* class_linker,
1550 jobject class_loader,
1551 CompilerDriver* compiler,
1552 const DexFile* dex_file,
Andreas Gampede7b4362014-07-28 18:38:57 -07001553 const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -08001554 ThreadPool* thread_pool)
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001555 : index_(0),
1556 class_linker_(class_linker),
Brian Carlstrom7940e442013-07-12 13:46:57 -07001557 class_loader_(class_loader),
1558 compiler_(compiler),
1559 dex_file_(dex_file),
Andreas Gampede7b4362014-07-28 18:38:57 -07001560 dex_files_(dex_files),
Ian Rogers3d504072014-03-01 09:16:49 -08001561 thread_pool_(thread_pool) {}
Brian Carlstrom7940e442013-07-12 13:46:57 -07001562
1563 ClassLinker* GetClassLinker() const {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001564 CHECK(class_linker_ != nullptr);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001565 return class_linker_;
1566 }
1567
1568 jobject GetClassLoader() const {
1569 return class_loader_;
1570 }
1571
1572 CompilerDriver* GetCompiler() const {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001573 CHECK(compiler_ != nullptr);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001574 return compiler_;
1575 }
1576
1577 const DexFile* GetDexFile() const {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001578 CHECK(dex_file_ != nullptr);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001579 return dex_file_;
1580 }
1581
Andreas Gampede7b4362014-07-28 18:38:57 -07001582 const std::vector<const DexFile*>& GetDexFiles() const {
1583 return dex_files_;
1584 }
1585
Brian Carlstrom7940e442013-07-12 13:46:57 -07001586 void ForAll(size_t begin, size_t end, Callback callback, size_t work_units) {
1587 Thread* self = Thread::Current();
1588 self->AssertNoPendingException();
1589 CHECK_GT(work_units, 0U);
1590
Ian Rogers3e5cf302014-05-20 16:40:37 -07001591 index_.StoreRelaxed(begin);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001592 for (size_t i = 0; i < work_units; ++i) {
Sebastien Hertz501baec2013-12-13 12:02:36 +01001593 thread_pool_->AddTask(self, new ForAllClosure(this, end, callback));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001594 }
1595 thread_pool_->StartWorkers(self);
1596
1597 // Ensure we're suspended while we're blocked waiting for the other threads to finish (worker
1598 // thread destructor's called below perform join).
1599 CHECK_NE(self->GetState(), kRunnable);
1600
1601 // Wait for all the worker threads to finish.
1602 thread_pool_->Wait(self, true, false);
1603 }
1604
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001605 size_t NextIndex() {
Ian Rogers3e5cf302014-05-20 16:40:37 -07001606 return index_.FetchAndAddSequentiallyConsistent(1);
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001607 }
1608
Brian Carlstrom7940e442013-07-12 13:46:57 -07001609 private:
Brian Carlstrom7940e442013-07-12 13:46:57 -07001610 class ForAllClosure : public Task {
1611 public:
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001612 ForAllClosure(ParallelCompilationManager* manager, size_t end, Callback* callback)
Brian Carlstrom7940e442013-07-12 13:46:57 -07001613 : manager_(manager),
Brian Carlstrom7940e442013-07-12 13:46:57 -07001614 end_(end),
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001615 callback_(callback) {}
Brian Carlstrom7940e442013-07-12 13:46:57 -07001616
1617 virtual void Run(Thread* self) {
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001618 while (true) {
1619 const size_t index = manager_->NextIndex();
1620 if (UNLIKELY(index >= end_)) {
1621 break;
1622 }
1623 callback_(manager_, index);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001624 self->AssertNoPendingException();
1625 }
1626 }
1627
1628 virtual void Finalize() {
1629 delete this;
1630 }
Brian Carlstrom0cd7ec22013-07-17 23:40:20 -07001631
Brian Carlstrom7940e442013-07-12 13:46:57 -07001632 private:
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001633 ParallelCompilationManager* const manager_;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001634 const size_t end_;
Bernhard Rosenkränzer46053622013-12-12 02:15:52 +01001635 Callback* const callback_;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001636 };
1637
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001638 AtomicInteger index_;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001639 ClassLinker* const class_linker_;
1640 const jobject class_loader_;
1641 CompilerDriver* const compiler_;
1642 const DexFile* const dex_file_;
Andreas Gampede7b4362014-07-28 18:38:57 -07001643 const std::vector<const DexFile*>& dex_files_;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001644 ThreadPool* const thread_pool_;
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001645
1646 DISALLOW_COPY_AND_ASSIGN(ParallelCompilationManager);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001647};
1648
Jeff Hao0e49b422013-11-08 12:16:56 -08001649// A fast version of SkipClass above if the class pointer is available
1650// that avoids the expensive FindInClassPath search.
1651static bool SkipClass(jobject class_loader, const DexFile& dex_file, mirror::Class* klass)
1652 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001653 DCHECK(klass != nullptr);
Jeff Hao0e49b422013-11-08 12:16:56 -08001654 const DexFile& original_dex_file = *klass->GetDexCache()->GetDexFile();
1655 if (&dex_file != &original_dex_file) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001656 if (class_loader == nullptr) {
Jeff Hao0e49b422013-11-08 12:16:56 -08001657 LOG(WARNING) << "Skipping class " << PrettyDescriptor(klass) << " from "
1658 << dex_file.GetLocation() << " previously found in "
1659 << original_dex_file.GetLocation();
1660 }
1661 return true;
1662 }
1663 return false;
1664}
1665
Mathieu Chartier70b63482014-06-27 17:19:04 -07001666static void CheckAndClearResolveException(Thread* self)
1667 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
1668 CHECK(self->IsExceptionPending());
Nicolas Geoffray14691c52015-03-05 10:40:17 +00001669 mirror::Throwable* exception = self->GetException();
Ian Rogers1ff3c982014-08-12 02:30:58 -07001670 std::string temp;
1671 const char* descriptor = exception->GetClass()->GetDescriptor(&temp);
1672 const char* expected_exceptions[] = {
1673 "Ljava/lang/IllegalAccessError;",
1674 "Ljava/lang/IncompatibleClassChangeError;",
1675 "Ljava/lang/InstantiationError;",
Brian Carlstrom898fcb52014-08-25 23:07:30 -07001676 "Ljava/lang/LinkageError;",
Ian Rogers1ff3c982014-08-12 02:30:58 -07001677 "Ljava/lang/NoClassDefFoundError;",
1678 "Ljava/lang/NoSuchFieldError;",
1679 "Ljava/lang/NoSuchMethodError;"
1680 };
1681 bool found = false;
1682 for (size_t i = 0; (found == false) && (i < arraysize(expected_exceptions)); ++i) {
1683 if (strcmp(descriptor, expected_exceptions[i]) == 0) {
1684 found = true;
1685 }
1686 }
1687 if (!found) {
Brian Carlstrom898fcb52014-08-25 23:07:30 -07001688 LOG(FATAL) << "Unexpected exception " << exception->Dump();
Mathieu Chartier70b63482014-06-27 17:19:04 -07001689 }
1690 self->ClearException();
1691}
1692
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001693static void ResolveClassFieldsAndMethods(const ParallelCompilationManager* manager,
1694 size_t class_def_index)
Brian Carlstrom7940e442013-07-12 13:46:57 -07001695 LOCKS_EXCLUDED(Locks::mutator_lock_) {
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07001696 ATRACE_CALL();
Ian Rogersbe7149f2013-08-20 09:29:39 -07001697 Thread* self = Thread::Current();
1698 jobject jclass_loader = manager->GetClassLoader();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001699 const DexFile& dex_file = *manager->GetDexFile();
Ian Rogersbe7149f2013-08-20 09:29:39 -07001700 ClassLinker* class_linker = manager->GetClassLinker();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001701
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001702 // If an instance field is final then we need to have a barrier on the return, static final
1703 // fields are assigned within the lock held for class initialization. Conservatively assume
1704 // constructor barriers are always required.
1705 bool requires_constructor_barrier = true;
1706
Brian Carlstrom7940e442013-07-12 13:46:57 -07001707 // Method and Field are the worst. We can't resolve without either
1708 // context from the code use (to disambiguate virtual vs direct
1709 // method and instance vs static field) or from class
1710 // definitions. While the compiler will resolve what it can as it
1711 // needs it, here we try to resolve fields and methods used in class
1712 // definitions, since many of them many never be referenced by
1713 // generated code.
1714 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
Ian Rogers68b56852014-08-29 20:19:11 -07001715 ScopedObjectAccess soa(self);
1716 StackHandleScope<2> hs(soa.Self());
1717 Handle<mirror::ClassLoader> class_loader(
1718 hs.NewHandle(soa.Decode<mirror::ClassLoader*>(jclass_loader)));
1719 Handle<mirror::DexCache> dex_cache(hs.NewHandle(class_linker->FindDexCache(dex_file)));
1720 // Resolve the class.
1721 mirror::Class* klass = class_linker->ResolveType(dex_file, class_def.class_idx_, dex_cache,
1722 class_loader);
1723 bool resolve_fields_and_methods;
1724 if (klass == nullptr) {
1725 // Class couldn't be resolved, for example, super-class is in a different dex file. Don't
1726 // attempt to resolve methods and fields when there is no declaring class.
1727 CheckAndClearResolveException(soa.Self());
1728 resolve_fields_and_methods = false;
1729 } else {
1730 // We successfully resolved a class, should we skip it?
1731 if (SkipClass(jclass_loader, dex_file, klass)) {
1732 return;
Brian Carlstromcb5f5e52013-09-23 17:48:16 -07001733 }
Ian Rogers68b56852014-08-29 20:19:11 -07001734 // We want to resolve the methods and fields eagerly.
1735 resolve_fields_and_methods = true;
1736 }
1737 // Note the class_data pointer advances through the headers,
1738 // static fields, instance fields, direct methods, and virtual
1739 // methods.
Ian Rogers13735952014-10-08 12:43:28 -07001740 const uint8_t* class_data = dex_file.GetClassData(class_def);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001741 if (class_data == nullptr) {
Ian Rogers68b56852014-08-29 20:19:11 -07001742 // Empty class such as a marker interface.
1743 requires_constructor_barrier = false;
1744 } else {
1745 ClassDataItemIterator it(dex_file, class_data);
1746 while (it.HasNextStaticField()) {
1747 if (resolve_fields_and_methods) {
Mathieu Chartierc7853442015-03-27 14:35:38 -07001748 ArtField* field = class_linker->ResolveField(dex_file, it.GetMemberIndex(),
Ian Rogers68b56852014-08-29 20:19:11 -07001749 dex_cache, class_loader, true);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001750 if (field == nullptr) {
Ian Rogers68b56852014-08-29 20:19:11 -07001751 CheckAndClearResolveException(soa.Self());
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001752 }
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001753 }
Ian Rogers68b56852014-08-29 20:19:11 -07001754 it.Next();
1755 }
1756 // We require a constructor barrier if there are final instance fields.
1757 requires_constructor_barrier = false;
1758 while (it.HasNextInstanceField()) {
Andreas Gampe51829322014-08-25 15:05:04 -07001759 if (it.MemberIsFinal()) {
Ian Rogers68b56852014-08-29 20:19:11 -07001760 requires_constructor_barrier = true;
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001761 }
1762 if (resolve_fields_and_methods) {
Mathieu Chartierc7853442015-03-27 14:35:38 -07001763 ArtField* field = class_linker->ResolveField(dex_file, it.GetMemberIndex(),
Ian Rogers68b56852014-08-29 20:19:11 -07001764 dex_cache, class_loader, false);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001765 if (field == nullptr) {
Ian Rogers68b56852014-08-29 20:19:11 -07001766 CheckAndClearResolveException(soa.Self());
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001767 }
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001768 }
Ian Rogers68b56852014-08-29 20:19:11 -07001769 it.Next();
1770 }
1771 if (resolve_fields_and_methods) {
1772 while (it.HasNextDirectMethod()) {
1773 mirror::ArtMethod* method = class_linker->ResolveMethod(dex_file, it.GetMemberIndex(),
1774 dex_cache, class_loader,
1775 NullHandle<mirror::ArtMethod>(),
1776 it.GetMethodInvokeType(class_def));
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001777 if (method == nullptr) {
Ian Rogers68b56852014-08-29 20:19:11 -07001778 CheckAndClearResolveException(soa.Self());
1779 }
1780 it.Next();
1781 }
1782 while (it.HasNextVirtualMethod()) {
1783 mirror::ArtMethod* method = class_linker->ResolveMethod(dex_file, it.GetMemberIndex(),
1784 dex_cache, class_loader,
1785 NullHandle<mirror::ArtMethod>(),
1786 it.GetMethodInvokeType(class_def));
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001787 if (method == nullptr) {
Ian Rogers68b56852014-08-29 20:19:11 -07001788 CheckAndClearResolveException(soa.Self());
1789 }
1790 it.Next();
1791 }
1792 DCHECK(!it.HasNext());
Brian Carlstrom7940e442013-07-12 13:46:57 -07001793 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001794 }
1795 if (requires_constructor_barrier) {
Ian Rogersbe7149f2013-08-20 09:29:39 -07001796 manager->GetCompiler()->AddRequiresConstructorBarrier(self, &dex_file, class_def_index);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001797 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001798}
1799
1800static void ResolveType(const ParallelCompilationManager* manager, size_t type_idx)
1801 LOCKS_EXCLUDED(Locks::mutator_lock_) {
1802 // Class derived values are more complicated, they require the linker and loader.
1803 ScopedObjectAccess soa(Thread::Current());
1804 ClassLinker* class_linker = manager->GetClassLinker();
1805 const DexFile& dex_file = *manager->GetDexFile();
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001806 StackHandleScope<2> hs(soa.Self());
1807 Handle<mirror::DexCache> dex_cache(hs.NewHandle(class_linker->FindDexCache(dex_file)));
1808 Handle<mirror::ClassLoader> class_loader(
1809 hs.NewHandle(soa.Decode<mirror::ClassLoader*>(manager->GetClassLoader())));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001810 mirror::Class* klass = class_linker->ResolveType(dex_file, type_idx, dex_cache, class_loader);
1811
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001812 if (klass == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001813 CHECK(soa.Self()->IsExceptionPending());
Nicolas Geoffray14691c52015-03-05 10:40:17 +00001814 mirror::Throwable* exception = soa.Self()->GetException();
Ian Rogersa436fde2013-08-27 23:34:06 -07001815 VLOG(compiler) << "Exception during type resolution: " << exception->Dump();
Mathieu Chartierf8322842014-05-16 10:59:25 -07001816 if (exception->GetClass()->DescriptorEquals("Ljava/lang/OutOfMemoryError;")) {
Ian Rogersa436fde2013-08-27 23:34:06 -07001817 // There's little point continuing compilation if the heap is exhausted.
1818 LOG(FATAL) << "Out of memory during type resolution for compilation";
1819 }
1820 soa.Self()->ClearException();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001821 }
1822}
1823
1824void CompilerDriver::ResolveDexFile(jobject class_loader, const DexFile& dex_file,
Andreas Gampede7b4362014-07-28 18:38:57 -07001825 const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -08001826 ThreadPool* thread_pool, TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001827 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
1828
1829 // TODO: we could resolve strings here, although the string table is largely filled with class
1830 // and method names.
1831
Andreas Gampede7b4362014-07-28 18:38:57 -07001832 ParallelCompilationManager context(class_linker, class_loader, this, &dex_file, dex_files,
1833 thread_pool);
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001834 if (IsImage()) {
1835 // For images we resolve all types, such as array, whereas for applications just those with
1836 // classdefs are resolved by ResolveClassFieldsAndMethods.
Mathieu Chartierf5997b42014-06-20 10:37:54 -07001837 TimingLogger::ScopedTiming t("Resolve Types", timings);
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001838 context.ForAll(0, dex_file.NumTypeIds(), ResolveType, thread_count_);
1839 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001840
Mathieu Chartierf5997b42014-06-20 10:37:54 -07001841 TimingLogger::ScopedTiming t("Resolve MethodsAndFields", timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001842 context.ForAll(0, dex_file.NumClassDefs(), ResolveClassFieldsAndMethods, thread_count_);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001843}
1844
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001845void CompilerDriver::SetVerified(jobject class_loader, const std::vector<const DexFile*>& dex_files,
1846 ThreadPool* thread_pool, TimingLogger* timings) {
1847 for (size_t i = 0; i != dex_files.size(); ++i) {
1848 const DexFile* dex_file = dex_files[i];
1849 CHECK(dex_file != nullptr);
1850 SetVerifiedDexFile(class_loader, *dex_file, dex_files, thread_pool, timings);
1851 }
1852}
1853
Brian Carlstrom7940e442013-07-12 13:46:57 -07001854void CompilerDriver::Verify(jobject class_loader, const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -08001855 ThreadPool* thread_pool, TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001856 for (size_t i = 0; i != dex_files.size(); ++i) {
1857 const DexFile* dex_file = dex_files[i];
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001858 CHECK(dex_file != nullptr);
Andreas Gampede7b4362014-07-28 18:38:57 -07001859 VerifyDexFile(class_loader, *dex_file, dex_files, thread_pool, timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001860 }
1861}
1862
1863static void VerifyClass(const ParallelCompilationManager* manager, size_t class_def_index)
1864 LOCKS_EXCLUDED(Locks::mutator_lock_) {
Anwar Ghuloum67f99412013-08-12 14:19:48 -07001865 ATRACE_CALL();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001866 ScopedObjectAccess soa(Thread::Current());
Jeff Hao0e49b422013-11-08 12:16:56 -08001867 const DexFile& dex_file = *manager->GetDexFile();
1868 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
1869 const char* descriptor = dex_file.GetClassDescriptor(class_def);
1870 ClassLinker* class_linker = manager->GetClassLinker();
1871 jobject jclass_loader = manager->GetClassLoader();
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001872 StackHandleScope<3> hs(soa.Self());
1873 Handle<mirror::ClassLoader> class_loader(
1874 hs.NewHandle(soa.Decode<mirror::ClassLoader*>(jclass_loader)));
1875 Handle<mirror::Class> klass(
1876 hs.NewHandle(class_linker->FindClass(soa.Self(), descriptor, class_loader)));
1877 if (klass.Get() == nullptr) {
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001878 CHECK(soa.Self()->IsExceptionPending());
Brian Carlstrom7940e442013-07-12 13:46:57 -07001879 soa.Self()->ClearException();
1880
1881 /*
1882 * At compile time, we can still structurally verify the class even if FindClass fails.
1883 * This is to ensure the class is structurally sound for compilation. An unsound class
1884 * will be rejected by the verifier and later skipped during compilation in the compiler.
1885 */
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001886 Handle<mirror::DexCache> dex_cache(hs.NewHandle(class_linker->FindDexCache(dex_file)));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001887 std::string error_msg;
Ian Rogers7b078e82014-09-10 14:44:24 -07001888 if (verifier::MethodVerifier::VerifyClass(soa.Self(), &dex_file, dex_cache, class_loader,
1889 &class_def, true, &error_msg) ==
Brian Carlstrom7940e442013-07-12 13:46:57 -07001890 verifier::MethodVerifier::kHardFailure) {
Jeff Hao0e49b422013-11-08 12:16:56 -08001891 LOG(ERROR) << "Verification failed on class " << PrettyDescriptor(descriptor)
Brian Carlstrom7940e442013-07-12 13:46:57 -07001892 << " because: " << error_msg;
Andreas Gampe6cf49e52015-03-05 13:08:45 -08001893 manager->GetCompiler()->SetHadHardVerifierFailure();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001894 }
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001895 } else if (!SkipClass(jclass_loader, dex_file, klass.Get())) {
1896 CHECK(klass->IsResolved()) << PrettyClass(klass.Get());
Ian Rogers7b078e82014-09-10 14:44:24 -07001897 class_linker->VerifyClass(soa.Self(), klass);
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001898
1899 if (klass->IsErroneous()) {
1900 // ClassLinker::VerifyClass throws, which isn't useful in the compiler.
1901 CHECK(soa.Self()->IsExceptionPending());
1902 soa.Self()->ClearException();
Andreas Gampe6cf49e52015-03-05 13:08:45 -08001903 manager->GetCompiler()->SetHadHardVerifierFailure();
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001904 }
1905
1906 CHECK(klass->IsCompileTimeVerified() || klass->IsErroneous())
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001907 << PrettyDescriptor(klass.Get()) << ": state=" << klass->GetStatus();
Andreas Gampe7ae063b2014-11-24 23:50:13 -08001908
1909 // It is *very* problematic if there are verification errors in the boot classpath. For example,
1910 // we rely on things working OK without verification when the decryption dialog is brought up.
1911 // So abort in a debug build if we find this violated.
1912 DCHECK(!manager->GetCompiler()->IsImage() || klass->IsVerified()) << "Boot classpath class " <<
1913 PrettyClass(klass.Get()) << " failed to fully verify.";
Brian Carlstrom7940e442013-07-12 13:46:57 -07001914 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001915 soa.Self()->AssertNoPendingException();
1916}
1917
1918void CompilerDriver::VerifyDexFile(jobject class_loader, const DexFile& dex_file,
Andreas Gampede7b4362014-07-28 18:38:57 -07001919 const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -08001920 ThreadPool* thread_pool, TimingLogger* timings) {
Mathieu Chartierf5997b42014-06-20 10:37:54 -07001921 TimingLogger::ScopedTiming t("Verify Dex File", timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001922 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Andreas Gampede7b4362014-07-28 18:38:57 -07001923 ParallelCompilationManager context(class_linker, class_loader, this, &dex_file, dex_files,
1924 thread_pool);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001925 context.ForAll(0, dex_file.NumClassDefs(), VerifyClass, thread_count_);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001926}
1927
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001928static void SetVerifiedClass(const ParallelCompilationManager* manager, size_t class_def_index)
1929 LOCKS_EXCLUDED(Locks::mutator_lock_) {
1930 ATRACE_CALL();
1931 ScopedObjectAccess soa(Thread::Current());
1932 const DexFile& dex_file = *manager->GetDexFile();
1933 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
1934 const char* descriptor = dex_file.GetClassDescriptor(class_def);
1935 ClassLinker* class_linker = manager->GetClassLinker();
1936 jobject jclass_loader = manager->GetClassLoader();
1937 StackHandleScope<3> hs(soa.Self());
1938 Handle<mirror::ClassLoader> class_loader(
1939 hs.NewHandle(soa.Decode<mirror::ClassLoader*>(jclass_loader)));
1940 Handle<mirror::Class> klass(
1941 hs.NewHandle(class_linker->FindClass(soa.Self(), descriptor, class_loader)));
1942 // Class might have failed resolution. Then don't set it to verified.
1943 if (klass.Get() != nullptr) {
1944 // Only do this if the class is resolved. If even resolution fails, quickening will go very,
1945 // very wrong.
1946 if (klass->IsResolved()) {
1947 if (klass->GetStatus() < mirror::Class::kStatusVerified) {
1948 ObjectLock<mirror::Class> lock(soa.Self(), klass);
Hiroshi Yamauchi5b783e62015-03-18 17:20:11 -07001949 mirror::Class::SetStatus(klass, mirror::Class::kStatusVerified, soa.Self());
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001950 }
1951 // Record the final class status if necessary.
1952 ClassReference ref(manager->GetDexFile(), class_def_index);
1953 manager->GetCompiler()->RecordClassStatus(ref, klass->GetStatus());
1954 }
Andreas Gampe61ff0092014-09-16 11:23:23 -07001955 } else {
1956 Thread* self = soa.Self();
1957 DCHECK(self->IsExceptionPending());
1958 self->ClearException();
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001959 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001960}
1961
1962void CompilerDriver::SetVerifiedDexFile(jobject class_loader, const DexFile& dex_file,
1963 const std::vector<const DexFile*>& dex_files,
1964 ThreadPool* thread_pool, TimingLogger* timings) {
1965 TimingLogger::ScopedTiming t("Verify Dex File", timings);
1966 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
1967 ParallelCompilationManager context(class_linker, class_loader, this, &dex_file, dex_files,
1968 thread_pool);
1969 context.ForAll(0, dex_file.NumClassDefs(), SetVerifiedClass, thread_count_);
1970}
1971
Brian Carlstrom7940e442013-07-12 13:46:57 -07001972static void InitializeClass(const ParallelCompilationManager* manager, size_t class_def_index)
1973 LOCKS_EXCLUDED(Locks::mutator_lock_) {
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07001974 ATRACE_CALL();
Jeff Hao0e49b422013-11-08 12:16:56 -08001975 jobject jclass_loader = manager->GetClassLoader();
1976 const DexFile& dex_file = *manager->GetDexFile();
1977 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
Jeff Haobcdbbfe2013-11-08 18:03:22 -08001978 const DexFile::TypeId& class_type_id = dex_file.GetTypeId(class_def.class_idx_);
1979 const char* descriptor = dex_file.StringDataByIdx(class_type_id.descriptor_idx_);
Ian Rogersfc0e94b2013-09-23 23:51:32 -07001980
Brian Carlstrom7940e442013-07-12 13:46:57 -07001981 ScopedObjectAccess soa(Thread::Current());
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001982 StackHandleScope<3> hs(soa.Self());
1983 Handle<mirror::ClassLoader> class_loader(
1984 hs.NewHandle(soa.Decode<mirror::ClassLoader*>(jclass_loader)));
1985 Handle<mirror::Class> klass(
1986 hs.NewHandle(manager->GetClassLinker()->FindClass(soa.Self(), descriptor, class_loader)));
Jeff Hao0e49b422013-11-08 12:16:56 -08001987
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001988 if (klass.Get() != nullptr && !SkipClass(jclass_loader, dex_file, klass.Get())) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001989 // Only try to initialize classes that were successfully verified.
1990 if (klass->IsVerified()) {
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07001991 // Attempt to initialize the class but bail if we either need to initialize the super-class
1992 // or static fields.
Ian Rogers7b078e82014-09-10 14:44:24 -07001993 manager->GetClassLinker()->EnsureInitialized(soa.Self(), klass, false, false);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001994 if (!klass->IsInitialized()) {
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07001995 // We don't want non-trivial class initialization occurring on multiple threads due to
1996 // deadlock problems. For example, a parent class is initialized (holding its lock) that
1997 // refers to a sub-class in its static/class initializer causing it to try to acquire the
1998 // sub-class' lock. While on a second thread the sub-class is initialized (holding its lock)
1999 // after first initializing its parents, whose locks are acquired. This leads to a
2000 // parent-to-child and a child-to-parent lock ordering and consequent potential deadlock.
2001 // We need to use an ObjectLock due to potential suspension in the interpreting code. Rather
2002 // than use a special Object for the purpose we use the Class of java.lang.Class.
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07002003 Handle<mirror::Class> h_klass(hs.NewHandle(klass->GetClass()));
Mathieu Chartierdb2633c2014-05-16 09:59:29 -07002004 ObjectLock<mirror::Class> lock(soa.Self(), h_klass);
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07002005 // Attempt to initialize allowing initialization of parent classes but still not static
2006 // fields.
Ian Rogers7b078e82014-09-10 14:44:24 -07002007 manager->GetClassLinker()->EnsureInitialized(soa.Self(), klass, false, true);
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07002008 if (!klass->IsInitialized()) {
2009 // We need to initialize static fields, we only do this for image classes that aren't
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01002010 // marked with the $NoPreloadHolder (which implies this should not be initialized early).
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07002011 bool can_init_static_fields = manager->GetCompiler()->IsImage() &&
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01002012 manager->GetCompiler()->IsImageClass(descriptor) &&
2013 !StringPiece(descriptor).ends_with("$NoPreloadHolder;");
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07002014 if (can_init_static_fields) {
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01002015 VLOG(compiler) << "Initializing: " << descriptor;
Ian Rogersc45b8b52014-05-03 01:39:59 -07002016 // TODO multithreading support. We should ensure the current compilation thread has
2017 // exclusive access to the runtime and the transaction. To achieve this, we could use
2018 // a ReaderWriterMutex but we're holding the mutator lock so we fail mutex sanity
2019 // checks in Thread::AssertThreadSuspensionIsAllowable.
2020 Runtime* const runtime = Runtime::Current();
2021 Transaction transaction;
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01002022
Ian Rogersc45b8b52014-05-03 01:39:59 -07002023 // Run the class initializer in transaction mode.
2024 runtime->EnterTransactionMode(&transaction);
2025 const mirror::Class::Status old_status = klass->GetStatus();
Ian Rogers7b078e82014-09-10 14:44:24 -07002026 bool success = manager->GetClassLinker()->EnsureInitialized(soa.Self(), klass, true,
2027 true);
Ian Rogersc45b8b52014-05-03 01:39:59 -07002028 // TODO we detach transaction from runtime to indicate we quit the transactional
2029 // mode which prevents the GC from visiting objects modified during the transaction.
2030 // Ensure GC is not run so don't access freed objects when aborting transaction.
Mathieu Chartier2d5f39e2014-09-19 17:52:37 -07002031
2032 ScopedAssertNoThreadSuspension ants(soa.Self(), "Transaction end");
Ian Rogersc45b8b52014-05-03 01:39:59 -07002033 runtime->ExitTransactionMode();
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01002034
Ian Rogersc45b8b52014-05-03 01:39:59 -07002035 if (!success) {
2036 CHECK(soa.Self()->IsExceptionPending());
Nicolas Geoffray14691c52015-03-05 10:40:17 +00002037 mirror::Throwable* exception = soa.Self()->GetException();
Ian Rogersc45b8b52014-05-03 01:39:59 -07002038 VLOG(compiler) << "Initialization of " << descriptor << " aborted because of "
2039 << exception->Dump();
Andreas Gampedbfe2542014-11-25 22:21:42 -08002040 std::ostream* file_log = manager->GetCompiler()->
2041 GetCompilerOptions().GetInitFailureOutput();
2042 if (file_log != nullptr) {
2043 *file_log << descriptor << "\n";
2044 *file_log << exception->Dump() << "\n";
2045 }
Ian Rogersc45b8b52014-05-03 01:39:59 -07002046 soa.Self()->ClearException();
Sebastien Hertz1c80bec2015-02-03 11:58:06 +01002047 transaction.Rollback();
Ian Rogersc45b8b52014-05-03 01:39:59 -07002048 CHECK_EQ(old_status, klass->GetStatus()) << "Previous class status not restored";
Brian Carlstrom7940e442013-07-12 13:46:57 -07002049 }
2050 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002051 }
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07002052 soa.Self()->AssertNoPendingException();
Brian Carlstrom7940e442013-07-12 13:46:57 -07002053 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002054 }
2055 // Record the final class status if necessary.
Brian Carlstrom7940e442013-07-12 13:46:57 -07002056 ClassReference ref(manager->GetDexFile(), class_def_index);
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07002057 manager->GetCompiler()->RecordClassStatus(ref, klass->GetStatus());
Brian Carlstrom7940e442013-07-12 13:46:57 -07002058 }
2059 // Clear any class not found or verification exceptions.
2060 soa.Self()->ClearException();
2061}
2062
2063void CompilerDriver::InitializeClasses(jobject jni_class_loader, const DexFile& dex_file,
Andreas Gampede7b4362014-07-28 18:38:57 -07002064 const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -08002065 ThreadPool* thread_pool, TimingLogger* timings) {
Mathieu Chartierf5997b42014-06-20 10:37:54 -07002066 TimingLogger::ScopedTiming t("InitializeNoClinit", timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002067 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Andreas Gampede7b4362014-07-28 18:38:57 -07002068 ParallelCompilationManager context(class_linker, jni_class_loader, this, &dex_file, dex_files,
2069 thread_pool);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01002070 size_t thread_count;
2071 if (IsImage()) {
2072 // TODO: remove this when transactional mode supports multithreading.
2073 thread_count = 1U;
2074 } else {
2075 thread_count = thread_count_;
2076 }
2077 context.ForAll(0, dex_file.NumClassDefs(), InitializeClass, thread_count);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002078}
2079
2080void CompilerDriver::InitializeClasses(jobject class_loader,
2081 const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -08002082 ThreadPool* thread_pool, TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07002083 for (size_t i = 0; i != dex_files.size(); ++i) {
2084 const DexFile* dex_file = dex_files[i];
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002085 CHECK(dex_file != nullptr);
Andreas Gampede7b4362014-07-28 18:38:57 -07002086 InitializeClasses(class_loader, *dex_file, dex_files, thread_pool, timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002087 }
Mathieu Chartier093ef212014-08-11 13:52:12 -07002088 if (IsImage()) {
2089 // Prune garbage objects created during aborted transactions.
2090 Runtime::Current()->GetHeap()->CollectGarbage(true);
2091 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002092}
2093
2094void CompilerDriver::Compile(jobject class_loader, const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -08002095 ThreadPool* thread_pool, TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07002096 for (size_t i = 0; i != dex_files.size(); ++i) {
2097 const DexFile* dex_file = dex_files[i];
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002098 CHECK(dex_file != nullptr);
Andreas Gampede7b4362014-07-28 18:38:57 -07002099 CompileDexFile(class_loader, *dex_file, dex_files, thread_pool, timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002100 }
Andreas Gampe8d295f82015-01-20 14:50:21 -08002101 VLOG(compiler) << "Compile: " << GetMemoryUsageString(false);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002102}
2103
2104void CompilerDriver::CompileClass(const ParallelCompilationManager* manager, size_t class_def_index) {
Anwar Ghuloum67f99412013-08-12 14:19:48 -07002105 ATRACE_CALL();
Brian Carlstrom7940e442013-07-12 13:46:57 -07002106 const DexFile& dex_file = *manager->GetDexFile();
2107 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
Ian Rogersbe7149f2013-08-20 09:29:39 -07002108 ClassLinker* class_linker = manager->GetClassLinker();
Ian Rogers1ff3c982014-08-12 02:30:58 -07002109 jobject jclass_loader = manager->GetClassLoader();
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08002110 Thread* self = Thread::Current();
Ian Rogers1ff3c982014-08-12 02:30:58 -07002111 {
2112 // Use a scoped object access to perform to the quick SkipClass check.
2113 const char* descriptor = dex_file.GetClassDescriptor(class_def);
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08002114 ScopedObjectAccess soa(self);
Ian Rogers1ff3c982014-08-12 02:30:58 -07002115 StackHandleScope<3> hs(soa.Self());
2116 Handle<mirror::ClassLoader> class_loader(
2117 hs.NewHandle(soa.Decode<mirror::ClassLoader*>(jclass_loader)));
2118 Handle<mirror::Class> klass(
2119 hs.NewHandle(class_linker->FindClass(soa.Self(), descriptor, class_loader)));
2120 if (klass.Get() == nullptr) {
2121 CHECK(soa.Self()->IsExceptionPending());
2122 soa.Self()->ClearException();
2123 } else if (SkipClass(jclass_loader, dex_file, klass.Get())) {
2124 return;
2125 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002126 }
2127 ClassReference ref(&dex_file, class_def_index);
2128 // Skip compiling classes with generic verifier failures since they will still fail at runtime
Vladimir Markoc7f83202014-01-24 17:55:18 +00002129 if (manager->GetCompiler()->verification_results_->IsClassRejected(ref)) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07002130 return;
2131 }
Ian Rogers13735952014-10-08 12:43:28 -07002132 const uint8_t* class_data = dex_file.GetClassData(class_def);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002133 if (class_data == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07002134 // empty class, probably a marker interface
2135 return;
2136 }
Anwar Ghuloum67f99412013-08-12 14:19:48 -07002137
Mathieu Chartiere86deef2015-03-19 13:43:37 -07002138 CompilerDriver* const driver = manager->GetCompiler();
2139
Brian Carlstrom7940e442013-07-12 13:46:57 -07002140 // Can we run DEX-to-DEX compiler on this class ?
Sebastien Hertz75021222013-07-16 18:34:50 +02002141 DexToDexCompilationLevel dex_to_dex_compilation_level = kDontDexToDexCompile;
Brian Carlstrom7940e442013-07-12 13:46:57 -07002142 {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08002143 ScopedObjectAccess soa(self);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07002144 StackHandleScope<1> hs(soa.Self());
2145 Handle<mirror::ClassLoader> class_loader(
2146 hs.NewHandle(soa.Decode<mirror::ClassLoader*>(jclass_loader)));
Mathieu Chartiere86deef2015-03-19 13:43:37 -07002147 dex_to_dex_compilation_level = driver->GetDexToDexCompilationlevel(
2148 soa.Self(), class_loader, dex_file, class_def);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002149 }
2150 ClassDataItemIterator it(dex_file, class_data);
2151 // Skip fields
2152 while (it.HasNextStaticField()) {
2153 it.Next();
2154 }
2155 while (it.HasNextInstanceField()) {
2156 it.Next();
2157 }
Andreas Gampe4bf3ae92014-11-11 13:28:29 -08002158
2159 bool compilation_enabled = driver->IsClassToCompile(
2160 dex_file.StringByTypeIdx(class_def.class_idx_));
2161
Brian Carlstrom7940e442013-07-12 13:46:57 -07002162 // Compile direct methods
2163 int64_t previous_direct_method_idx = -1;
2164 while (it.HasNextDirectMethod()) {
2165 uint32_t method_idx = it.GetMemberIndex();
2166 if (method_idx == previous_direct_method_idx) {
2167 // smali can create dex files with two encoded_methods sharing the same method_idx
2168 // http://code.google.com/p/smali/issues/detail?id=119
2169 it.Next();
2170 continue;
2171 }
2172 previous_direct_method_idx = method_idx;
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08002173 driver->CompileMethod(self, it.GetMethodCodeItem(), it.GetMethodAccessFlags(),
Ian Rogersbe7149f2013-08-20 09:29:39 -07002174 it.GetMethodInvokeType(class_def), class_def_index,
Andreas Gampe4bf3ae92014-11-11 13:28:29 -08002175 method_idx, jclass_loader, dex_file, dex_to_dex_compilation_level,
2176 compilation_enabled);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002177 it.Next();
2178 }
2179 // Compile virtual methods
2180 int64_t previous_virtual_method_idx = -1;
2181 while (it.HasNextVirtualMethod()) {
2182 uint32_t method_idx = it.GetMemberIndex();
2183 if (method_idx == previous_virtual_method_idx) {
2184 // smali can create dex files with two encoded_methods sharing the same method_idx
2185 // http://code.google.com/p/smali/issues/detail?id=119
2186 it.Next();
2187 continue;
2188 }
2189 previous_virtual_method_idx = method_idx;
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08002190 driver->CompileMethod(self, it.GetMethodCodeItem(), it.GetMethodAccessFlags(),
Ian Rogersbe7149f2013-08-20 09:29:39 -07002191 it.GetMethodInvokeType(class_def), class_def_index,
Andreas Gampe4bf3ae92014-11-11 13:28:29 -08002192 method_idx, jclass_loader, dex_file, dex_to_dex_compilation_level,
2193 compilation_enabled);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002194 it.Next();
2195 }
2196 DCHECK(!it.HasNext());
2197}
2198
2199void CompilerDriver::CompileDexFile(jobject class_loader, const DexFile& dex_file,
Andreas Gampede7b4362014-07-28 18:38:57 -07002200 const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -08002201 ThreadPool* thread_pool, TimingLogger* timings) {
Mathieu Chartierf5997b42014-06-20 10:37:54 -07002202 TimingLogger::ScopedTiming t("Compile Dex File", timings);
Ian Rogersbe7149f2013-08-20 09:29:39 -07002203 ParallelCompilationManager context(Runtime::Current()->GetClassLinker(), class_loader, this,
Andreas Gampede7b4362014-07-28 18:38:57 -07002204 &dex_file, dex_files, thread_pool);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002205 context.ForAll(0, dex_file.NumClassDefs(), CompilerDriver::CompileClass, thread_count_);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002206}
2207
Ian Rogersa4a3f402014-10-20 18:10:34 -07002208// Does the runtime for the InstructionSet provide an implementation returned by
2209// GetQuickGenericJniStub allowing down calls that aren't compiled using a JNI compiler?
2210static bool InstructionSetHasGenericJniStub(InstructionSet isa) {
2211 switch (isa) {
2212 case kArm:
2213 case kArm64:
2214 case kThumb2:
Douglas Leung735b8552014-10-31 12:21:40 -07002215 case kMips:
Andreas Gampe57b34292015-01-14 15:45:59 -08002216 case kMips64:
Ian Rogersa4a3f402014-10-20 18:10:34 -07002217 case kX86:
2218 case kX86_64: return true;
2219 default: return false;
2220 }
2221}
2222
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08002223void CompilerDriver::CompileMethod(Thread* self, const DexFile::CodeItem* code_item,
2224 uint32_t access_flags, InvokeType invoke_type,
2225 uint16_t class_def_idx, uint32_t method_idx,
2226 jobject class_loader, const DexFile& dex_file,
Andreas Gampe4bf3ae92014-11-11 13:28:29 -08002227 DexToDexCompilationLevel dex_to_dex_compilation_level,
2228 bool compilation_enabled) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002229 CompiledMethod* compiled_method = nullptr;
Mathieu Chartier8e219ae2014-08-19 14:29:46 -07002230 uint64_t start_ns = kTimeCompileMethod ? NanoTime() : 0;
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002231 MethodReference method_ref(&dex_file, method_idx);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002232
2233 if ((access_flags & kAccNative) != 0) {
Ian Rogers0188ab72014-03-17 16:51:53 -07002234 // Are we interpreting only and have support for generic JNI down calls?
Jeff Hao4a200f52014-04-01 14:58:49 -07002235 if (!compiler_options_->IsCompilationEnabled() &&
Ian Rogersa4a3f402014-10-20 18:10:34 -07002236 InstructionSetHasGenericJniStub(instruction_set_)) {
Ian Rogers5b271492014-03-14 13:20:26 -07002237 // Leaving this empty will trigger the generic JNI version
2238 } else {
Goran Jakovljevic75c40d42015-04-03 15:45:21 +02002239 compiled_method = compiler_->JniCompile(access_flags, method_idx, dex_file);
2240 CHECK(compiled_method != nullptr);
Ian Rogers5b271492014-03-14 13:20:26 -07002241 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002242 } else if ((access_flags & kAccAbstract) != 0) {
Ian Rogersa4a3f402014-10-20 18:10:34 -07002243 // Abstract methods don't have code.
Brian Carlstrom7940e442013-07-12 13:46:57 -07002244 } else {
Andreas Gampe6c170c92014-12-17 14:35:46 -08002245 bool has_verified_method = verification_results_->GetVerifiedMethod(method_ref) != nullptr;
Andreas Gampe4bf3ae92014-11-11 13:28:29 -08002246 bool compile = compilation_enabled &&
Andreas Gampe6c170c92014-12-17 14:35:46 -08002247 // Basic checks, e.g., not <clinit>.
2248 verification_results_->IsCandidateForCompilation(method_ref, access_flags) &&
2249 // Did not fail to create VerifiedMethod metadata.
Andreas Gampe70bef0d2015-04-15 02:37:28 -07002250 has_verified_method &&
2251 // Is eligable for compilation by methods-to-compile filter.
2252 IsMethodToCompile(method_ref);
Sebastien Hertz4d4adb12013-07-24 16:14:19 +02002253 if (compile) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002254 // NOTE: if compiler declines to compile this method, it will return nullptr.
Ian Rogers72d32622014-05-06 16:20:11 -07002255 compiled_method = compiler_->Compile(code_item, access_flags, invoke_type, class_def_idx,
2256 method_idx, class_loader, dex_file);
Sebastien Hertz17965ed2014-04-04 15:59:53 +02002257 }
2258 if (compiled_method == nullptr && dex_to_dex_compilation_level != kDontDexToDexCompile) {
2259 // TODO: add a command-line option to disable DEX-to-DEX compilation ?
Andreas Gampe6c170c92014-12-17 14:35:46 -08002260 // Do not optimize if a VerifiedMethod is missing. SafeCast elision, for example, relies on
2261 // it.
Sebastien Hertz75021222013-07-16 18:34:50 +02002262 (*dex_to_dex_compiler_)(*this, code_item, access_flags,
2263 invoke_type, class_def_idx,
2264 method_idx, class_loader, dex_file,
Andreas Gampe6c170c92014-12-17 14:35:46 -08002265 has_verified_method ? dex_to_dex_compilation_level : kRequired);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002266 }
2267 }
Mathieu Chartier8e219ae2014-08-19 14:29:46 -07002268 if (kTimeCompileMethod) {
2269 uint64_t duration_ns = NanoTime() - start_ns;
2270 if (duration_ns > MsToNs(compiler_->GetMaximumCompilationTimeBeforeWarning())) {
2271 LOG(WARNING) << "Compilation of " << PrettyMethod(method_idx, dex_file)
2272 << " took " << PrettyDuration(duration_ns);
2273 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002274 }
2275
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002276 if (compiled_method != nullptr) {
Vladimir Markof4da6752014-08-01 19:04:18 +01002277 // Count non-relative linker patches.
2278 size_t non_relative_linker_patch_count = 0u;
2279 for (const LinkerPatch& patch : compiled_method->GetPatches()) {
Vladimir Marko20f85592015-03-19 10:07:02 +00002280 if (!patch.IsPcRelative()) {
Vladimir Markof4da6752014-08-01 19:04:18 +01002281 ++non_relative_linker_patch_count;
2282 }
2283 }
Igor Murashkind6dee672014-10-16 18:36:16 -07002284 bool compile_pic = GetCompilerOptions().GetCompilePic(); // Off by default
2285 // When compiling with PIC, there should be zero non-relative linker patches
2286 CHECK(!compile_pic || non_relative_linker_patch_count == 0u);
2287
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002288 DCHECK(GetCompiledMethod(method_ref) == nullptr) << PrettyMethod(method_idx, dex_file);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002289 {
2290 MutexLock mu(self, compiled_methods_lock_);
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002291 compiled_methods_.Put(method_ref, compiled_method);
Vladimir Markof4da6752014-08-01 19:04:18 +01002292 non_relative_linker_patch_count_ += non_relative_linker_patch_count;
Brian Carlstrom7940e442013-07-12 13:46:57 -07002293 }
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002294 DCHECK(GetCompiledMethod(method_ref) != nullptr) << PrettyMethod(method_idx, dex_file);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002295 }
2296
Jeff Hao48699fb2015-04-06 14:21:37 -07002297 // Done compiling, delete the verified method to reduce native memory usage. Do not delete in
2298 // optimizing compiler, which may need the verified method again for inlining.
2299 if (compiler_kind_ != Compiler::kOptimizing) {
2300 verification_results_->RemoveVerifiedMethod(method_ref);
2301 }
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002302
Brian Carlstrom7940e442013-07-12 13:46:57 -07002303 if (self->IsExceptionPending()) {
2304 ScopedObjectAccess soa(self);
2305 LOG(FATAL) << "Unexpected exception compiling: " << PrettyMethod(method_idx, dex_file) << "\n"
Nicolas Geoffray14691c52015-03-05 10:40:17 +00002306 << self->GetException()->Dump();
Brian Carlstrom7940e442013-07-12 13:46:57 -07002307 }
2308}
2309
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08002310void CompilerDriver::RemoveCompiledMethod(const MethodReference& method_ref) {
2311 CompiledMethod* compiled_method = nullptr;
2312 {
2313 MutexLock mu(Thread::Current(), compiled_methods_lock_);
2314 auto it = compiled_methods_.find(method_ref);
2315 if (it != compiled_methods_.end()) {
2316 compiled_method = it->second;
2317 compiled_methods_.erase(it);
2318 }
2319 }
2320 if (compiled_method != nullptr) {
2321 CompiledMethod::ReleaseSwapAllocatedCompiledMethod(this, compiled_method);
2322 }
2323}
2324
Brian Carlstrom7940e442013-07-12 13:46:57 -07002325CompiledClass* CompilerDriver::GetCompiledClass(ClassReference ref) const {
2326 MutexLock mu(Thread::Current(), compiled_classes_lock_);
2327 ClassTable::const_iterator it = compiled_classes_.find(ref);
2328 if (it == compiled_classes_.end()) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002329 return nullptr;
Brian Carlstrom7940e442013-07-12 13:46:57 -07002330 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002331 CHECK(it->second != nullptr);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002332 return it->second;
2333}
2334
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07002335void CompilerDriver::RecordClassStatus(ClassReference ref, mirror::Class::Status status) {
2336 MutexLock mu(Thread::Current(), compiled_classes_lock_);
2337 auto it = compiled_classes_.find(ref);
2338 if (it == compiled_classes_.end() || it->second->GetStatus() != status) {
2339 // An entry doesn't exist or the status is lower than the new status.
2340 if (it != compiled_classes_.end()) {
2341 CHECK_GT(status, it->second->GetStatus());
2342 delete it->second;
2343 }
2344 switch (status) {
2345 case mirror::Class::kStatusNotReady:
2346 case mirror::Class::kStatusError:
2347 case mirror::Class::kStatusRetryVerificationAtRuntime:
2348 case mirror::Class::kStatusVerified:
2349 case mirror::Class::kStatusInitialized:
2350 break; // Expected states.
2351 default:
2352 LOG(FATAL) << "Unexpected class status for class "
2353 << PrettyDescriptor(ref.first->GetClassDescriptor(ref.first->GetClassDef(ref.second)))
2354 << " of " << status;
2355 }
2356 CompiledClass* compiled_class = new CompiledClass(status);
2357 compiled_classes_.Overwrite(ref, compiled_class);
2358 }
2359}
2360
Brian Carlstrom7940e442013-07-12 13:46:57 -07002361CompiledMethod* CompilerDriver::GetCompiledMethod(MethodReference ref) const {
2362 MutexLock mu(Thread::Current(), compiled_methods_lock_);
2363 MethodTable::const_iterator it = compiled_methods_.find(ref);
2364 if (it == compiled_methods_.end()) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002365 return nullptr;
Brian Carlstrom7940e442013-07-12 13:46:57 -07002366 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002367 CHECK(it->second != nullptr);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002368 return it->second;
2369}
2370
Calin Juravlef1c6d9e2015-04-13 18:42:21 +01002371bool CompilerDriver::IsMethodVerifiedWithoutFailures(uint32_t method_idx,
2372 uint16_t class_def_idx,
2373 const DexFile& dex_file) const {
2374 const VerifiedMethod* verified_method = GetVerifiedMethod(&dex_file, method_idx);
2375 if (verified_method != nullptr) {
2376 return !verified_method->HasVerificationFailures();
2377 }
2378
2379 // If we can't find verification metadata, check if this is a system class (we trust that system
2380 // classes have their methods verified). If it's not, be conservative and assume the method
2381 // has not been verified successfully.
2382
2383 // TODO: When compiling the boot image it should be safe to assume that everything is verified,
2384 // even if methods are not found in the verification cache.
2385 const char* descriptor = dex_file.GetClassDescriptor(dex_file.GetClassDef(class_def_idx));
2386 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
2387 Thread* self = Thread::Current();
2388 ScopedObjectAccess soa(self);
2389 bool is_system_class = class_linker->FindSystemClass(self, descriptor) != nullptr;
2390 if (!is_system_class) {
2391 self->ClearException();
2392 }
2393 return is_system_class;
2394}
2395
Vladimir Markof4da6752014-08-01 19:04:18 +01002396size_t CompilerDriver::GetNonRelativeLinkerPatchCount() const {
2397 MutexLock mu(Thread::Current(), compiled_methods_lock_);
2398 return non_relative_linker_patch_count_;
2399}
2400
Brian Carlstrom7940e442013-07-12 13:46:57 -07002401void CompilerDriver::AddRequiresConstructorBarrier(Thread* self, const DexFile* dex_file,
Ian Rogers8b2c0b92013-09-19 02:56:49 -07002402 uint16_t class_def_index) {
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07002403 WriterMutexLock mu(self, freezing_constructor_lock_);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002404 freezing_constructor_classes_.insert(ClassReference(dex_file, class_def_index));
2405}
2406
2407bool CompilerDriver::RequiresConstructorBarrier(Thread* self, const DexFile* dex_file,
Calin Juravle27df7582015-04-17 19:12:31 +01002408 uint16_t class_def_index) const {
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07002409 ReaderMutexLock mu(self, freezing_constructor_lock_);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002410 return freezing_constructor_classes_.count(ClassReference(dex_file, class_def_index)) != 0;
2411}
2412
2413bool CompilerDriver::WriteElf(const std::string& android_root,
2414 bool is_host,
2415 const std::vector<const art::DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -08002416 OatWriter* oat_writer,
Brian Carlstrom7940e442013-07-12 13:46:57 -07002417 art::File* file)
2418 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Andreas Gampe3773cd02015-04-10 09:28:22 -07002419 if (kProduce64BitELFFiles && Is64BitInstructionSet(GetInstructionSet())) {
2420 return art::ElfWriterQuick64::Create(file, oat_writer, dex_files, android_root, is_host, *this);
2421 } else {
2422 return art::ElfWriterQuick32::Create(file, oat_writer, dex_files, android_root, is_host, *this);
2423 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002424}
Dave Allison39c3bfb2014-01-28 18:33:52 -08002425
Dave Allison39c3bfb2014-01-28 18:33:52 -08002426bool CompilerDriver::SkipCompilation(const std::string& method_name) {
Calin Juravlec1b643c2014-05-30 23:44:11 +01002427 if (!profile_present_) {
Dave Allison644789f2014-04-10 13:06:10 -07002428 return false;
Dave Allison39c3bfb2014-01-28 18:33:52 -08002429 }
Calin Juravlebb0b53f2014-05-23 17:33:29 +01002430 // First find the method in the profile file.
2431 ProfileFile::ProfileData data;
2432 if (!profile_file_.GetProfileData(&data, method_name)) {
Dave Allison39c3bfb2014-01-28 18:33:52 -08002433 // Not in profile, no information can be determined.
Calin Juravle08f7a2d2014-06-23 15:22:29 +01002434 if (kIsDebugBuild) {
2435 VLOG(compiler) << "not compiling " << method_name << " because it's not in the profile";
2436 }
Dave Allison39c3bfb2014-01-28 18:33:52 -08002437 return true;
2438 }
Calin Juravlebb0b53f2014-05-23 17:33:29 +01002439
2440 // Methods that comprise top_k_threshold % of the total samples will be compiled.
Calin Juravlef6a4cee2014-04-02 17:03:08 +01002441 // Compare against the start of the topK percentage bucket just in case the threshold
Calin Juravle04ff2262014-04-02 19:08:47 +01002442 // falls inside a bucket.
Calin Juravlec1b643c2014-05-30 23:44:11 +01002443 bool compile = data.GetTopKUsedPercentage() - data.GetUsedPercent()
2444 <= compiler_options_->GetTopKProfileThreshold();
Calin Juravle08f7a2d2014-06-23 15:22:29 +01002445 if (kIsDebugBuild) {
2446 if (compile) {
2447 LOG(INFO) << "compiling method " << method_name << " because its usage is part of top "
2448 << data.GetTopKUsedPercentage() << "% with a percent of " << data.GetUsedPercent() << "%"
2449 << " (topKThreshold=" << compiler_options_->GetTopKProfileThreshold() << ")";
2450 } else {
2451 VLOG(compiler) << "not compiling method " << method_name
2452 << " because it's not part of leading " << compiler_options_->GetTopKProfileThreshold()
2453 << "% samples)";
2454 }
Dave Allison39c3bfb2014-01-28 18:33:52 -08002455 }
2456 return !compile;
2457}
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002458
Andreas Gampe8d295f82015-01-20 14:50:21 -08002459std::string CompilerDriver::GetMemoryUsageString(bool extended) const {
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002460 std::ostringstream oss;
Mathieu Chartier9b34b242015-03-09 11:30:17 -07002461 Runtime* const runtime = Runtime::Current();
2462 const ArenaPool* arena_pool = runtime->GetArenaPool();
2463 gc::Heap* const heap = runtime->GetHeap();
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002464 oss << "arena alloc=" << PrettySize(arena_pool->GetBytesAllocated());
2465 oss << " java alloc=" << PrettySize(heap->GetBytesAllocated());
Elliott Hughes7bf5a262015-04-02 20:55:07 -07002466#if defined(__BIONIC__) || defined(__GLIBC__)
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002467 struct mallinfo info = mallinfo();
2468 const size_t allocated_space = static_cast<size_t>(info.uordblks);
2469 const size_t free_space = static_cast<size_t>(info.fordblks);
2470 oss << " native alloc=" << PrettySize(allocated_space) << " free="
2471 << PrettySize(free_space);
2472#endif
Andreas Gampee21dc3d2014-12-08 16:59:43 -08002473 if (swap_space_.get() != nullptr) {
2474 oss << " swap=" << PrettySize(swap_space_->GetSize());
2475 }
Andreas Gampe8d295f82015-01-20 14:50:21 -08002476 if (extended) {
2477 oss << "\nCode dedupe: " << dedupe_code_.DumpStats();
2478 oss << "\nMapping table dedupe: " << dedupe_mapping_table_.DumpStats();
2479 oss << "\nVmap table dedupe: " << dedupe_vmap_table_.DumpStats();
2480 oss << "\nGC map dedupe: " << dedupe_gc_map_.DumpStats();
2481 oss << "\nCFI info dedupe: " << dedupe_cfi_info_.DumpStats();
2482 }
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002483 return oss.str();
2484}
2485
Brian Carlstrom7940e442013-07-12 13:46:57 -07002486} // namespace art