blob: 4945a91ff80a30e10727cc7bd3c2e00cf7f9299c [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"
Vladimir Marko80afd022015-05-19 18:08:00 +010032#include "base/time_utils.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070033#include "base/timing_logger.h"
Vladimir Marko3481ba22015-04-13 12:22:36 +010034#include "class_linker-inl.h"
Mingyao Yang98d1cc82014-05-15 17:02:16 -070035#include "compiled_class.h"
Vladimir Marko20f85592015-03-19 10:07:02 +000036#include "compiled_method.h"
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +000037#include "compiler.h"
Vladimir Markobe0e5462014-02-26 11:24:15 +000038#include "compiler_driver-inl.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070039#include "dex_compilation_unit.h"
40#include "dex_file-inl.h"
Vladimir Markoc7f83202014-01-24 17:55:18 +000041#include "dex/verification_results.h"
Vladimir Marko2730db02014-01-27 11:15:17 +000042#include "dex/verified_method.h"
Vladimir Marko2bc47802014-02-10 09:43:07 +000043#include "dex/quick/dex_file_method_inliner.h"
Jeff Hao848f70a2014-01-15 13:49:50 -080044#include "dex/quick/dex_file_to_method_inliner_map.h"
Mark Mendellae9fd932014-02-10 16:14:35 -080045#include "driver/compiler_options.h"
Andreas Gampe3773cd02015-04-10 09:28:22 -070046#include "elf_writer_quick.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070047#include "jni_internal.h"
Ian Rogers22d5e732014-07-15 22:23:51 -070048#include "object_lock.h"
Calin Juravlebb0b53f2014-05-23 17:33:29 +010049#include "profiler.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070050#include "runtime.h"
51#include "gc/accounting/card_table-inl.h"
52#include "gc/accounting/heap_bitmap.h"
53#include "gc/space/space.h"
Brian Carlstromea46f952013-07-30 01:26:50 -070054#include "mirror/art_method-inl.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070055#include "mirror/class_loader.h"
56#include "mirror/class-inl.h"
57#include "mirror/dex_cache-inl.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070058#include "mirror/object-inl.h"
59#include "mirror/object_array-inl.h"
60#include "mirror/throwable.h"
61#include "scoped_thread_state_change.h"
62#include "ScopedLocalRef.h"
Mathieu Chartiereb8167a2014-05-07 15:43:14 -070063#include "handle_scope-inl.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070064#include "thread.h"
Andreas Gampeb0f370e2014-09-25 22:51:40 -070065#include "thread_list.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070066#include "thread_pool.h"
Ian Rogers848871b2013-08-05 10:56:33 -070067#include "trampolines/trampoline_compiler.h"
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +010068#include "transaction.h"
Vladimir Marko20f85592015-03-19 10:07:02 +000069#include "utils/dex_cache_arrays_layout-inl.h"
Andreas Gampee21dc3d2014-12-08 16:59:43 -080070#include "utils/swap_space.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070071#include "verifier/method_verifier.h"
Vladimir Marko2bc47802014-02-10 09:43:07 +000072#include "verifier/method_verifier-inl.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070073
Brian Carlstrom7940e442013-07-12 13:46:57 -070074namespace art {
75
Mathieu Chartier8e219ae2014-08-19 14:29:46 -070076static constexpr bool kTimeCompileMethod = !kIsDebugBuild;
77
David Srbeckyce0db622015-05-26 23:40:18 +000078// Whether to produce 64-bit ELF files for 64-bit targets.
79static constexpr bool kProduce64BitELFFiles = true;
Andreas Gampe3773cd02015-04-10 09:28:22 -070080
Andreas Gampe70bef0d2015-04-15 02:37:28 -070081// Whether classes-to-compile and methods-to-compile are only applied to the boot image, or, when
82// given, too all compilations.
Andreas Gampeb1fcead2015-04-20 18:53:51 -070083static constexpr bool kRestrictCompilationFiltersToImage = true;
84
Brian Carlstrom7940e442013-07-12 13:46:57 -070085static double Percentage(size_t x, size_t y) {
86 return 100.0 * (static_cast<double>(x)) / (static_cast<double>(x + y));
87}
88
89static void DumpStat(size_t x, size_t y, const char* str) {
90 if (x == 0 && y == 0) {
91 return;
92 }
Ian Rogerse732ef12013-10-09 15:22:24 -070093 LOG(INFO) << Percentage(x, y) << "% of " << str << " for " << (x + y) << " cases";
Brian Carlstrom7940e442013-07-12 13:46:57 -070094}
95
Vladimir Markof096aad2014-01-23 15:51:58 +000096class CompilerDriver::AOTCompilationStats {
Brian Carlstrom7940e442013-07-12 13:46:57 -070097 public:
98 AOTCompilationStats()
99 : stats_lock_("AOT compilation statistics lock"),
100 types_in_dex_cache_(0), types_not_in_dex_cache_(0),
101 strings_in_dex_cache_(0), strings_not_in_dex_cache_(0),
102 resolved_types_(0), unresolved_types_(0),
103 resolved_instance_fields_(0), unresolved_instance_fields_(0),
104 resolved_local_static_fields_(0), resolved_static_fields_(0), unresolved_static_fields_(0),
105 type_based_devirtualization_(0),
106 safe_casts_(0), not_safe_casts_(0) {
107 for (size_t i = 0; i <= kMaxInvokeType; i++) {
108 resolved_methods_[i] = 0;
109 unresolved_methods_[i] = 0;
110 virtual_made_direct_[i] = 0;
111 direct_calls_to_boot_[i] = 0;
112 direct_methods_to_boot_[i] = 0;
113 }
114 }
115
116 void Dump() {
117 DumpStat(types_in_dex_cache_, types_not_in_dex_cache_, "types known to be in dex cache");
118 DumpStat(strings_in_dex_cache_, strings_not_in_dex_cache_, "strings known to be in dex cache");
119 DumpStat(resolved_types_, unresolved_types_, "types resolved");
120 DumpStat(resolved_instance_fields_, unresolved_instance_fields_, "instance fields resolved");
121 DumpStat(resolved_local_static_fields_ + resolved_static_fields_, unresolved_static_fields_,
122 "static fields resolved");
123 DumpStat(resolved_local_static_fields_, resolved_static_fields_ + unresolved_static_fields_,
124 "static fields local to a class");
125 DumpStat(safe_casts_, not_safe_casts_, "check-casts removed based on type information");
126 // Note, the code below subtracts the stat value so that when added to the stat value we have
127 // 100% of samples. TODO: clean this up.
128 DumpStat(type_based_devirtualization_,
129 resolved_methods_[kVirtual] + unresolved_methods_[kVirtual] +
130 resolved_methods_[kInterface] + unresolved_methods_[kInterface] -
131 type_based_devirtualization_,
132 "virtual/interface calls made direct based on type information");
133
134 for (size_t i = 0; i <= kMaxInvokeType; i++) {
135 std::ostringstream oss;
136 oss << static_cast<InvokeType>(i) << " methods were AOT resolved";
137 DumpStat(resolved_methods_[i], unresolved_methods_[i], oss.str().c_str());
138 if (virtual_made_direct_[i] > 0) {
139 std::ostringstream oss2;
140 oss2 << static_cast<InvokeType>(i) << " methods made direct";
141 DumpStat(virtual_made_direct_[i],
142 resolved_methods_[i] + unresolved_methods_[i] - virtual_made_direct_[i],
143 oss2.str().c_str());
144 }
145 if (direct_calls_to_boot_[i] > 0) {
146 std::ostringstream oss2;
147 oss2 << static_cast<InvokeType>(i) << " method calls are direct into boot";
148 DumpStat(direct_calls_to_boot_[i],
149 resolved_methods_[i] + unresolved_methods_[i] - direct_calls_to_boot_[i],
150 oss2.str().c_str());
151 }
152 if (direct_methods_to_boot_[i] > 0) {
153 std::ostringstream oss2;
154 oss2 << static_cast<InvokeType>(i) << " method calls have methods in boot";
155 DumpStat(direct_methods_to_boot_[i],
156 resolved_methods_[i] + unresolved_methods_[i] - direct_methods_to_boot_[i],
157 oss2.str().c_str());
158 }
159 }
160 }
161
162// Allow lossy statistics in non-debug builds.
163#ifndef NDEBUG
164#define STATS_LOCK() MutexLock mu(Thread::Current(), stats_lock_)
165#else
166#define STATS_LOCK()
167#endif
168
169 void TypeInDexCache() {
170 STATS_LOCK();
171 types_in_dex_cache_++;
172 }
173
174 void TypeNotInDexCache() {
175 STATS_LOCK();
176 types_not_in_dex_cache_++;
177 }
178
179 void StringInDexCache() {
180 STATS_LOCK();
181 strings_in_dex_cache_++;
182 }
183
184 void StringNotInDexCache() {
185 STATS_LOCK();
186 strings_not_in_dex_cache_++;
187 }
188
189 void TypeDoesntNeedAccessCheck() {
190 STATS_LOCK();
191 resolved_types_++;
192 }
193
194 void TypeNeedsAccessCheck() {
195 STATS_LOCK();
196 unresolved_types_++;
197 }
198
199 void ResolvedInstanceField() {
200 STATS_LOCK();
201 resolved_instance_fields_++;
202 }
203
204 void UnresolvedInstanceField() {
205 STATS_LOCK();
206 unresolved_instance_fields_++;
207 }
208
209 void ResolvedLocalStaticField() {
210 STATS_LOCK();
211 resolved_local_static_fields_++;
212 }
213
214 void ResolvedStaticField() {
215 STATS_LOCK();
216 resolved_static_fields_++;
217 }
218
219 void UnresolvedStaticField() {
220 STATS_LOCK();
221 unresolved_static_fields_++;
222 }
223
224 // Indicate that type information from the verifier led to devirtualization.
225 void PreciseTypeDevirtualization() {
226 STATS_LOCK();
227 type_based_devirtualization_++;
228 }
229
230 // Indicate that a method of the given type was resolved at compile time.
231 void ResolvedMethod(InvokeType type) {
232 DCHECK_LE(type, kMaxInvokeType);
233 STATS_LOCK();
234 resolved_methods_[type]++;
235 }
236
237 // Indicate that a method of the given type was unresolved at compile time as it was in an
238 // unknown dex file.
239 void UnresolvedMethod(InvokeType type) {
240 DCHECK_LE(type, kMaxInvokeType);
241 STATS_LOCK();
242 unresolved_methods_[type]++;
243 }
244
245 // Indicate that a type of virtual method dispatch has been converted into a direct method
246 // dispatch.
247 void VirtualMadeDirect(InvokeType type) {
248 DCHECK(type == kVirtual || type == kInterface || type == kSuper);
249 STATS_LOCK();
250 virtual_made_direct_[type]++;
251 }
252
253 // Indicate that a method of the given type was able to call directly into boot.
254 void DirectCallsToBoot(InvokeType type) {
255 DCHECK_LE(type, kMaxInvokeType);
256 STATS_LOCK();
257 direct_calls_to_boot_[type]++;
258 }
259
260 // Indicate that a method of the given type was able to be resolved directly from boot.
261 void DirectMethodsToBoot(InvokeType type) {
262 DCHECK_LE(type, kMaxInvokeType);
263 STATS_LOCK();
264 direct_methods_to_boot_[type]++;
265 }
266
Vladimir Markof096aad2014-01-23 15:51:58 +0000267 void ProcessedInvoke(InvokeType type, int flags) {
268 STATS_LOCK();
269 if (flags == 0) {
270 unresolved_methods_[type]++;
271 } else {
272 DCHECK_NE((flags & kFlagMethodResolved), 0);
273 resolved_methods_[type]++;
274 if ((flags & kFlagVirtualMadeDirect) != 0) {
275 virtual_made_direct_[type]++;
276 if ((flags & kFlagPreciseTypeDevirtualization) != 0) {
277 type_based_devirtualization_++;
278 }
279 } else {
280 DCHECK_EQ((flags & kFlagPreciseTypeDevirtualization), 0);
281 }
282 if ((flags & kFlagDirectCallToBoot) != 0) {
283 direct_calls_to_boot_[type]++;
284 }
285 if ((flags & kFlagDirectMethodToBoot) != 0) {
286 direct_methods_to_boot_[type]++;
287 }
288 }
289 }
290
Brian Carlstrom7940e442013-07-12 13:46:57 -0700291 // A check-cast could be eliminated due to verifier type analysis.
292 void SafeCast() {
293 STATS_LOCK();
294 safe_casts_++;
295 }
296
297 // A check-cast couldn't be eliminated due to verifier type analysis.
298 void NotASafeCast() {
299 STATS_LOCK();
300 not_safe_casts_++;
301 }
302
303 private:
304 Mutex stats_lock_;
305
306 size_t types_in_dex_cache_;
307 size_t types_not_in_dex_cache_;
308
309 size_t strings_in_dex_cache_;
310 size_t strings_not_in_dex_cache_;
311
312 size_t resolved_types_;
313 size_t unresolved_types_;
314
315 size_t resolved_instance_fields_;
316 size_t unresolved_instance_fields_;
317
318 size_t resolved_local_static_fields_;
319 size_t resolved_static_fields_;
320 size_t unresolved_static_fields_;
321 // Type based devirtualization for invoke interface and virtual.
322 size_t type_based_devirtualization_;
323
324 size_t resolved_methods_[kMaxInvokeType + 1];
325 size_t unresolved_methods_[kMaxInvokeType + 1];
326 size_t virtual_made_direct_[kMaxInvokeType + 1];
327 size_t direct_calls_to_boot_[kMaxInvokeType + 1];
328 size_t direct_methods_to_boot_[kMaxInvokeType + 1];
329
330 size_t safe_casts_;
331 size_t not_safe_casts_;
332
333 DISALLOW_COPY_AND_ASSIGN(AOTCompilationStats);
334};
335
Brian Carlstrom7940e442013-07-12 13:46:57 -0700336
337extern "C" art::CompiledMethod* ArtCompileDEX(art::CompilerDriver& compiler,
338 const art::DexFile::CodeItem* code_item,
339 uint32_t access_flags,
340 art::InvokeType invoke_type,
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700341 uint16_t class_def_idx,
Brian Carlstrom7940e442013-07-12 13:46:57 -0700342 uint32_t method_idx,
343 jobject class_loader,
344 const art::DexFile& dex_file);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700345
Brian Carlstrom6449c622014-02-10 23:48:36 -0800346CompilerDriver::CompilerDriver(const CompilerOptions* compiler_options,
347 VerificationResults* verification_results,
Vladimir Marko5816ed42013-11-27 17:04:20 +0000348 DexFileToMethodInlinerMap* method_inliner_map,
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +0000349 Compiler::Kind compiler_kind,
Nicolas Geoffrayf5df8972014-02-14 18:37:08 +0000350 InstructionSet instruction_set,
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700351 const InstructionSetFeatures* instruction_set_features,
Andreas Gampeb1fcead2015-04-20 18:53:51 -0700352 bool image, std::unordered_set<std::string>* image_classes,
353 std::unordered_set<std::string>* compiled_classes,
Andreas Gampe70bef0d2015-04-15 02:37:28 -0700354 std::unordered_set<std::string>* compiled_methods,
Andreas Gampeb1fcead2015-04-20 18:53:51 -0700355 size_t thread_count, bool dump_stats, bool dump_passes,
David Brazdil866c0312015-01-13 21:21:31 +0000356 const std::string& dump_cfg_file_name, CumulativeLogger* timer,
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800357 int swap_fd, const std::string& profile_file)
358 : swap_space_(swap_fd == -1 ? nullptr : new SwapSpace(swap_fd, 10 * MB)),
359 swap_space_allocator_(new SwapAllocator<void>(swap_space_.get())),
360 profile_present_(false), compiler_options_(compiler_options),
Brian Carlstrom6449c622014-02-10 23:48:36 -0800361 verification_results_(verification_results),
Vladimir Marko5816ed42013-11-27 17:04:20 +0000362 method_inliner_map_(method_inliner_map),
Ian Rogers72d32622014-05-06 16:20:11 -0700363 compiler_(Compiler::Create(this, compiler_kind)),
Jeff Hao48699fb2015-04-06 14:21:37 -0700364 compiler_kind_(compiler_kind),
Brian Carlstrom7940e442013-07-12 13:46:57 -0700365 instruction_set_(instruction_set),
Dave Allison70202782013-10-22 17:52:19 -0700366 instruction_set_features_(instruction_set_features),
Brian Carlstrom7940e442013-07-12 13:46:57 -0700367 freezing_constructor_lock_("freezing constructor lock"),
368 compiled_classes_lock_("compiled classes lock"),
369 compiled_methods_lock_("compiled method lock"),
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800370 compiled_methods_(MethodTable::key_compare()),
Vladimir Markof4da6752014-08-01 19:04:18 +0100371 non_relative_linker_patch_count_(0u),
Brian Carlstrom7940e442013-07-12 13:46:57 -0700372 image_(image),
373 image_classes_(image_classes),
Andreas Gampe4bf3ae92014-11-11 13:28:29 -0800374 classes_to_compile_(compiled_classes),
Andreas Gampe70bef0d2015-04-15 02:37:28 -0700375 methods_to_compile_(compiled_methods),
Andreas Gampe6cf49e52015-03-05 13:08:45 -0800376 had_hard_verifier_failure_(false),
Brian Carlstrom7940e442013-07-12 13:46:57 -0700377 thread_count_(thread_count),
Brian Carlstrom7940e442013-07-12 13:46:57 -0700378 stats_(new AOTCompilationStats),
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800379 dedupe_enabled_(true),
Brian Carlstrom7940e442013-07-12 13:46:57 -0700380 dump_stats_(dump_stats),
Nicolas Geoffrayea3fa0b2014-02-10 11:59:41 +0000381 dump_passes_(dump_passes),
David Brazdil866c0312015-01-13 21:21:31 +0000382 dump_cfg_file_name_(dump_cfg_file_name),
Nicolas Geoffrayea3fa0b2014-02-10 11:59:41 +0000383 timings_logger_(timer),
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700384 compiler_context_(nullptr),
Andreas Gampe57b34292015-01-14 15:45:59 -0800385 support_boot_image_fixup_(instruction_set != kMips && instruction_set != kMips64),
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800386 dedupe_code_("dedupe code", *swap_space_allocator_),
387 dedupe_src_mapping_table_("dedupe source mapping table", *swap_space_allocator_),
388 dedupe_mapping_table_("dedupe mapping table", *swap_space_allocator_),
389 dedupe_vmap_table_("dedupe vmap table", *swap_space_allocator_),
390 dedupe_gc_map_("dedupe gc map", *swap_space_allocator_),
391 dedupe_cfi_info_("dedupe cfi info", *swap_space_allocator_) {
Brian Carlstrom6449c622014-02-10 23:48:36 -0800392 DCHECK(compiler_options_ != nullptr);
393 DCHECK(verification_results_ != nullptr);
394 DCHECK(method_inliner_map_ != nullptr);
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700395
Sebastien Hertz75021222013-07-16 18:34:50 +0200396 dex_to_dex_compiler_ = reinterpret_cast<DexToDexCompilerFn>(ArtCompileDEX);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700397
Ian Rogers72d32622014-05-06 16:20:11 -0700398 compiler_->Init();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700399
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800400 CHECK_EQ(image_, image_classes_.get() != nullptr);
Mark Mendellae9fd932014-02-10 16:14:35 -0800401
Calin Juravlec1b643c2014-05-30 23:44:11 +0100402 // Read the profile file if one is provided.
403 if (!profile_file.empty()) {
404 profile_present_ = profile_file_.LoadFile(profile_file);
405 if (profile_present_) {
406 LOG(INFO) << "Using profile data form file " << profile_file;
407 } else {
408 LOG(INFO) << "Failed to load profile file " << profile_file;
409 }
410 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700411}
412
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800413SwapVector<uint8_t>* CompilerDriver::DeduplicateCode(const ArrayRef<const uint8_t>& code) {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800414 DCHECK(dedupe_enabled_);
Mathieu Chartier193bad92013-08-29 18:46:00 -0700415 return dedupe_code_.Add(Thread::Current(), code);
416}
417
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800418SwapSrcMap* CompilerDriver::DeduplicateSrcMappingTable(const ArrayRef<SrcMapElem>& src_map) {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800419 DCHECK(dedupe_enabled_);
Yevgeny Roubane3ea8382014-08-08 16:29:38 +0700420 return dedupe_src_mapping_table_.Add(Thread::Current(), src_map);
421}
422
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800423SwapVector<uint8_t>* CompilerDriver::DeduplicateMappingTable(const ArrayRef<const uint8_t>& code) {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800424 DCHECK(dedupe_enabled_);
Mathieu Chartier193bad92013-08-29 18:46:00 -0700425 return dedupe_mapping_table_.Add(Thread::Current(), code);
426}
427
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800428SwapVector<uint8_t>* CompilerDriver::DeduplicateVMapTable(const ArrayRef<const uint8_t>& code) {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800429 DCHECK(dedupe_enabled_);
Mathieu Chartier193bad92013-08-29 18:46:00 -0700430 return dedupe_vmap_table_.Add(Thread::Current(), code);
431}
432
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800433SwapVector<uint8_t>* CompilerDriver::DeduplicateGCMap(const ArrayRef<const uint8_t>& code) {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800434 DCHECK(dedupe_enabled_);
Mathieu Chartier193bad92013-08-29 18:46:00 -0700435 return dedupe_gc_map_.Add(Thread::Current(), code);
436}
437
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800438SwapVector<uint8_t>* CompilerDriver::DeduplicateCFIInfo(const ArrayRef<const uint8_t>& cfi_info) {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800439 DCHECK(dedupe_enabled_);
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800440 return dedupe_cfi_info_.Add(Thread::Current(), cfi_info);
Mark Mendellae9fd932014-02-10 16:14:35 -0800441}
442
Brian Carlstrom7940e442013-07-12 13:46:57 -0700443CompilerDriver::~CompilerDriver() {
444 Thread* self = Thread::Current();
445 {
446 MutexLock mu(self, compiled_classes_lock_);
447 STLDeleteValues(&compiled_classes_);
448 }
449 {
450 MutexLock mu(self, compiled_methods_lock_);
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800451 for (auto& pair : compiled_methods_) {
452 CompiledMethod::ReleaseSwapAllocatedCompiledMethod(this, pair.second);
453 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700454 }
Ian Rogers72d32622014-05-06 16:20:11 -0700455 compiler_->UnInit();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700456}
457
Ian Rogersdd7624d2014-03-14 17:43:00 -0700458#define CREATE_TRAMPOLINE(type, abi, offset) \
Andreas Gampeaf13ad92014-04-11 12:07:48 -0700459 if (Is64BitInstructionSet(instruction_set_)) { \
Ian Rogersdd7624d2014-03-14 17:43:00 -0700460 return CreateTrampoline64(instruction_set_, abi, \
461 type ## _ENTRYPOINT_OFFSET(8, offset)); \
462 } else { \
463 return CreateTrampoline32(instruction_set_, abi, \
464 type ## _ENTRYPOINT_OFFSET(4, offset)); \
465 }
466
Ian Rogers848871b2013-08-05 10:56:33 -0700467const std::vector<uint8_t>* CompilerDriver::CreateInterpreterToInterpreterBridge() const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700468 CREATE_TRAMPOLINE(INTERPRETER, kInterpreterAbi, pInterpreterToInterpreterBridge)
Ian Rogers848871b2013-08-05 10:56:33 -0700469}
470
471const std::vector<uint8_t>* CompilerDriver::CreateInterpreterToCompiledCodeBridge() const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700472 CREATE_TRAMPOLINE(INTERPRETER, kInterpreterAbi, pInterpreterToCompiledCodeBridge)
Ian Rogers848871b2013-08-05 10:56:33 -0700473}
474
475const std::vector<uint8_t>* CompilerDriver::CreateJniDlsymLookup() const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700476 CREATE_TRAMPOLINE(JNI, kJniAbi, pDlsymLookup)
Ian Rogers848871b2013-08-05 10:56:33 -0700477}
478
Andreas Gampe2da88232014-02-27 12:26:20 -0800479const std::vector<uint8_t>* CompilerDriver::CreateQuickGenericJniTrampoline() const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700480 CREATE_TRAMPOLINE(QUICK, kQuickAbi, pQuickGenericJniTrampoline)
Andreas Gampe2da88232014-02-27 12:26:20 -0800481}
482
Jeff Hao88474b42013-10-23 16:24:40 -0700483const std::vector<uint8_t>* CompilerDriver::CreateQuickImtConflictTrampoline() const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700484 CREATE_TRAMPOLINE(QUICK, kQuickAbi, pQuickImtConflictTrampoline)
Jeff Hao88474b42013-10-23 16:24:40 -0700485}
486
Brian Carlstrom7940e442013-07-12 13:46:57 -0700487const std::vector<uint8_t>* CompilerDriver::CreateQuickResolutionTrampoline() const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700488 CREATE_TRAMPOLINE(QUICK, kQuickAbi, pQuickResolutionTrampoline)
Brian Carlstrom7940e442013-07-12 13:46:57 -0700489}
490
Ian Rogers848871b2013-08-05 10:56:33 -0700491const std::vector<uint8_t>* CompilerDriver::CreateQuickToInterpreterBridge() const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700492 CREATE_TRAMPOLINE(QUICK, kQuickAbi, pQuickToInterpreterBridge)
Brian Carlstrom7940e442013-07-12 13:46:57 -0700493}
Ian Rogersdd7624d2014-03-14 17:43:00 -0700494#undef CREATE_TRAMPOLINE
Brian Carlstrom7940e442013-07-12 13:46:57 -0700495
496void CompilerDriver::CompileAll(jobject class_loader,
Brian Carlstrom45602482013-07-21 22:07:55 -0700497 const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -0800498 TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700499 DCHECK(!Runtime::Current()->IsStarted());
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700500 std::unique_ptr<ThreadPool> thread_pool(
501 new ThreadPool("Compiler driver thread pool", thread_count_ - 1));
Andreas Gampe8d295f82015-01-20 14:50:21 -0800502 VLOG(compiler) << "Before precompile " << GetMemoryUsageString(false);
Ian Rogers3d504072014-03-01 09:16:49 -0800503 PreCompile(class_loader, dex_files, thread_pool.get(), timings);
504 Compile(class_loader, dex_files, thread_pool.get(), timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700505 if (dump_stats_) {
506 stats_->Dump();
507 }
508}
509
Mathieu Chartiere86deef2015-03-19 13:43:37 -0700510DexToDexCompilationLevel CompilerDriver::GetDexToDexCompilationlevel(
Mathieu Chartier0cd81352014-05-22 16:48:55 -0700511 Thread* self, Handle<mirror::ClassLoader> class_loader, const DexFile& dex_file,
Mathieu Chartiere86deef2015-03-19 13:43:37 -0700512 const DexFile::ClassDef& class_def) {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800513 auto* const runtime = Runtime::Current();
Mathieu Chartiere86deef2015-03-19 13:43:37 -0700514 if (runtime->UseJit() || GetCompilerOptions().VerifyAtRuntime()) {
515 // Verify at runtime shouldn't dex to dex since we didn't resolve of verify.
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800516 return kDontDexToDexCompile;
517 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700518 const char* descriptor = dex_file.GetClassDescriptor(class_def);
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800519 ClassLinker* class_linker = runtime->GetClassLinker();
Ian Rogers98379392014-02-24 16:53:16 -0800520 mirror::Class* klass = class_linker->FindClass(self, descriptor, class_loader);
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700521 if (klass == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700522 CHECK(self->IsExceptionPending());
523 self->ClearException();
Sebastien Hertz75021222013-07-16 18:34:50 +0200524 return kDontDexToDexCompile;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700525 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700526 // DexToDex at the kOptimize level may introduce quickened opcodes, which replace symbolic
527 // references with actual offsets. We cannot re-verify such instructions.
528 //
529 // We store the verification information in the class status in the oat file, which the linker
530 // can validate (checksums) and use to skip load-time verification. It is thus safe to
531 // optimize when a class has been fully verified before.
532 if (klass->IsVerified()) {
Sebastien Hertz75021222013-07-16 18:34:50 +0200533 // Class is verified so we can enable DEX-to-DEX compilation for performance.
534 return kOptimize;
535 } else if (klass->IsCompileTimeVerified()) {
536 // Class verification has soft-failed. Anyway, ensure at least correctness.
537 DCHECK_EQ(klass->GetStatus(), mirror::Class::kStatusRetryVerificationAtRuntime);
538 return kRequired;
539 } else {
540 // Class verification has failed: do not run DEX-to-DEX compilation.
541 return kDontDexToDexCompile;
542 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700543}
544
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800545void CompilerDriver::CompileOne(Thread* self, mirror::ArtMethod* method, TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700546 DCHECK(!Runtime::Current()->IsStarted());
Brian Carlstrom7940e442013-07-12 13:46:57 -0700547 jobject jclass_loader;
548 const DexFile* dex_file;
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700549 uint16_t class_def_idx;
Ian Rogersef7d42f2014-01-06 12:55:46 -0800550 uint32_t method_idx = method->GetDexMethodIndex();
551 uint32_t access_flags = method->GetAccessFlags();
552 InvokeType invoke_type = method->GetInvokeType();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700553 {
554 ScopedObjectAccessUnchecked soa(self);
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800555 ScopedLocalRef<jobject> local_class_loader(
556 soa.Env(), soa.AddLocalReference<jobject>(method->GetDeclaringClass()->GetClassLoader()));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700557 jclass_loader = soa.Env()->NewGlobalRef(local_class_loader.get());
558 // Find the dex_file
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700559 dex_file = method->GetDexFile();
560 class_def_idx = method->GetClassDefIndex();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700561 }
Ian Rogersef7d42f2014-01-06 12:55:46 -0800562 const DexFile::CodeItem* code_item = dex_file->GetCodeItem(method->GetCodeItemOffset());
Brian Carlstrom7940e442013-07-12 13:46:57 -0700563 self->TransitionFromRunnableToSuspended(kNative);
564
565 std::vector<const DexFile*> dex_files;
566 dex_files.push_back(dex_file);
567
Ian Rogers700a4022014-05-19 16:49:03 -0700568 std::unique_ptr<ThreadPool> thread_pool(new ThreadPool("Compiler driver thread pool", 0U));
Ian Rogers3d504072014-03-01 09:16:49 -0800569 PreCompile(jclass_loader, dex_files, thread_pool.get(), timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700570
Brian Carlstrom7940e442013-07-12 13:46:57 -0700571 // Can we run DEX-to-DEX compiler on this class ?
Sebastien Hertz75021222013-07-16 18:34:50 +0200572 DexToDexCompilationLevel dex_to_dex_compilation_level = kDontDexToDexCompile;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700573 {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800574 ScopedObjectAccess soa(self);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700575 const DexFile::ClassDef& class_def = dex_file->GetClassDef(class_def_idx);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700576 StackHandleScope<1> hs(soa.Self());
577 Handle<mirror::ClassLoader> class_loader(
578 hs.NewHandle(soa.Decode<mirror::ClassLoader*>(jclass_loader)));
Ian Rogers98379392014-02-24 16:53:16 -0800579 dex_to_dex_compilation_level = GetDexToDexCompilationlevel(self, class_loader, *dex_file,
580 class_def);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700581 }
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800582 CompileMethod(self, code_item, access_flags, invoke_type, class_def_idx, method_idx,
583 jclass_loader, *dex_file, dex_to_dex_compilation_level, true);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700584
585 self->GetJniEnv()->DeleteGlobalRef(jclass_loader);
Mathieu Chartier2535abe2015-02-17 10:38:49 -0800586 self->TransitionFromSuspendedToRunnable();
Mathieu Chartier2535abe2015-02-17 10:38:49 -0800587}
588
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800589CompiledMethod* CompilerDriver::CompileMethod(Thread* self, mirror::ArtMethod* method) {
590 const uint32_t method_idx = method->GetDexMethodIndex();
591 const uint32_t access_flags = method->GetAccessFlags();
592 const InvokeType invoke_type = method->GetInvokeType();
593 StackHandleScope<1> hs(self);
594 Handle<mirror::ClassLoader> class_loader(hs.NewHandle(
595 method->GetDeclaringClass()->GetClassLoader()));
596 jobject jclass_loader = class_loader.ToJObject();
597 const DexFile* dex_file = method->GetDexFile();
598 const uint16_t class_def_idx = method->GetClassDefIndex();
599 const DexFile::ClassDef& class_def = dex_file->GetClassDef(class_def_idx);
600 DexToDexCompilationLevel dex_to_dex_compilation_level =
601 GetDexToDexCompilationlevel(self, class_loader, *dex_file, class_def);
602 const DexFile::CodeItem* code_item = dex_file->GetCodeItem(method->GetCodeItemOffset());
603 self->TransitionFromRunnableToSuspended(kNative);
604 CompileMethod(self, code_item, access_flags, invoke_type, class_def_idx, method_idx,
605 jclass_loader, *dex_file, dex_to_dex_compilation_level, true);
606 auto* compiled_method = GetCompiledMethod(MethodReference(dex_file, method_idx));
607 self->TransitionFromSuspendedToRunnable();
608 return compiled_method;
609}
610
Brian Carlstrom7940e442013-07-12 13:46:57 -0700611void CompilerDriver::Resolve(jobject class_loader, const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -0800612 ThreadPool* thread_pool, TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700613 for (size_t i = 0; i != dex_files.size(); ++i) {
614 const DexFile* dex_file = dex_files[i];
Kenny Rootd5185342014-05-13 14:47:05 -0700615 CHECK(dex_file != nullptr);
Andreas Gampede7b4362014-07-28 18:38:57 -0700616 ResolveDexFile(class_loader, *dex_file, dex_files, thread_pool, timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700617 }
618}
619
620void CompilerDriver::PreCompile(jobject class_loader, const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -0800621 ThreadPool* thread_pool, TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700622 LoadImageClasses(timings);
Andreas Gampe8d295f82015-01-20 14:50:21 -0800623 VLOG(compiler) << "LoadImageClasses: " << GetMemoryUsageString(false);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700624
Mathieu Chartiere86deef2015-03-19 13:43:37 -0700625 const bool verification_enabled = compiler_options_->IsVerificationEnabled();
626 const bool never_verify = compiler_options_->NeverVerify();
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700627
Mathieu Chartiere86deef2015-03-19 13:43:37 -0700628 // We need to resolve for never_verify since it needs to run dex to dex to add the
629 // RETURN_VOID_NO_BARRIER.
630 if (never_verify || verification_enabled) {
631 Resolve(class_loader, dex_files, thread_pool, timings);
632 VLOG(compiler) << "Resolve: " << GetMemoryUsageString(false);
633 }
634
635 if (never_verify) {
Mathieu Chartierab972ef2014-12-03 17:38:22 -0800636 VLOG(compiler) << "Verify none mode specified, skipping verification.";
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700637 SetVerified(class_loader, dex_files, thread_pool, timings);
Mathieu Chartiere86deef2015-03-19 13:43:37 -0700638 }
639
640 if (!verification_enabled) {
Jeff Hao4a200f52014-04-01 14:58:49 -0700641 return;
642 }
643
Brian Carlstrom7940e442013-07-12 13:46:57 -0700644 Verify(class_loader, dex_files, thread_pool, timings);
Andreas Gampe8d295f82015-01-20 14:50:21 -0800645 VLOG(compiler) << "Verify: " << GetMemoryUsageString(false);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700646
Andreas Gampe6cf49e52015-03-05 13:08:45 -0800647 if (had_hard_verifier_failure_ && GetCompilerOptions().AbortOnHardVerifierFailure()) {
648 LOG(FATAL) << "Had a hard failure verifying all classes, and was asked to abort in such "
649 << "situations. Please check the log.";
650 }
651
Brian Carlstrom7940e442013-07-12 13:46:57 -0700652 InitializeClasses(class_loader, dex_files, thread_pool, timings);
Andreas Gampe8d295f82015-01-20 14:50:21 -0800653 VLOG(compiler) << "InitializeClasses: " << GetMemoryUsageString(false);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700654
655 UpdateImageClasses(timings);
Andreas Gampe8d295f82015-01-20 14:50:21 -0800656 VLOG(compiler) << "UpdateImageClasses: " << GetMemoryUsageString(false);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700657}
658
Ian Rogersdfb325e2013-10-30 01:00:44 -0700659bool CompilerDriver::IsImageClass(const char* descriptor) const {
Ian Rogerse6bb3b22013-08-19 21:51:45 -0700660 if (!IsImage()) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700661 return true;
Ian Rogerse6bb3b22013-08-19 21:51:45 -0700662 } else {
Ian Rogersdfb325e2013-10-30 01:00:44 -0700663 return image_classes_->find(descriptor) != image_classes_->end();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700664 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700665}
666
Andreas Gampe4bf3ae92014-11-11 13:28:29 -0800667bool CompilerDriver::IsClassToCompile(const char* descriptor) const {
Andreas Gampeb1fcead2015-04-20 18:53:51 -0700668 if (kRestrictCompilationFiltersToImage && !IsImage()) {
Andreas Gampe4bf3ae92014-11-11 13:28:29 -0800669 return true;
Andreas Gampe4bf3ae92014-11-11 13:28:29 -0800670 }
Andreas Gampeb1fcead2015-04-20 18:53:51 -0700671
672 if (classes_to_compile_ == nullptr) {
673 return true;
674 }
675 return classes_to_compile_->find(descriptor) != classes_to_compile_->end();
Andreas Gampe4bf3ae92014-11-11 13:28:29 -0800676}
677
Andreas Gampe70bef0d2015-04-15 02:37:28 -0700678bool CompilerDriver::IsMethodToCompile(const MethodReference& method_ref) const {
679 if (kRestrictCompilationFiltersToImage && !IsImage()) {
680 return true;
681 }
682
683 if (methods_to_compile_ == nullptr) {
684 return true;
685 }
686
687 std::string tmp = PrettyMethod(method_ref.dex_method_index, *method_ref.dex_file, true);
688 return methods_to_compile_->find(tmp.c_str()) != methods_to_compile_->end();
689}
690
Ian Rogerse94652f2014-12-02 11:13:19 -0800691static void ResolveExceptionsForMethod(MutableHandle<mirror::ArtMethod> method_handle,
Ian Rogers700a4022014-05-19 16:49:03 -0700692 std::set<std::pair<uint16_t, const DexFile*>>& exceptions_to_resolve)
Brian Carlstrom7940e442013-07-12 13:46:57 -0700693 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogerse94652f2014-12-02 11:13:19 -0800694 const DexFile::CodeItem* code_item = method_handle->GetCodeItem();
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700695 if (code_item == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700696 return; // native or abstract method
697 }
698 if (code_item->tries_size_ == 0) {
699 return; // nothing to process
700 }
Ian Rogers13735952014-10-08 12:43:28 -0700701 const uint8_t* encoded_catch_handler_list = DexFile::GetCatchHandlerData(*code_item, 0);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700702 size_t num_encoded_catch_handlers = DecodeUnsignedLeb128(&encoded_catch_handler_list);
703 for (size_t i = 0; i < num_encoded_catch_handlers; i++) {
704 int32_t encoded_catch_handler_size = DecodeSignedLeb128(&encoded_catch_handler_list);
705 bool has_catch_all = false;
706 if (encoded_catch_handler_size <= 0) {
707 encoded_catch_handler_size = -encoded_catch_handler_size;
708 has_catch_all = true;
709 }
710 for (int32_t j = 0; j < encoded_catch_handler_size; j++) {
711 uint16_t encoded_catch_handler_handlers_type_idx =
712 DecodeUnsignedLeb128(&encoded_catch_handler_list);
713 // Add to set of types to resolve if not already in the dex cache resolved types
Ian Rogerse94652f2014-12-02 11:13:19 -0800714 if (!method_handle->IsResolvedTypeIdx(encoded_catch_handler_handlers_type_idx)) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700715 exceptions_to_resolve.insert(
716 std::pair<uint16_t, const DexFile*>(encoded_catch_handler_handlers_type_idx,
Ian Rogerse94652f2014-12-02 11:13:19 -0800717 method_handle->GetDexFile()));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700718 }
719 // ignore address associated with catch handler
720 DecodeUnsignedLeb128(&encoded_catch_handler_list);
721 }
722 if (has_catch_all) {
723 // ignore catch all address
724 DecodeUnsignedLeb128(&encoded_catch_handler_list);
725 }
726 }
727}
728
729static bool ResolveCatchBlockExceptionsClassVisitor(mirror::Class* c, void* arg)
730 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers700a4022014-05-19 16:49:03 -0700731 std::set<std::pair<uint16_t, const DexFile*>>* exceptions_to_resolve =
732 reinterpret_cast<std::set<std::pair<uint16_t, const DexFile*>>*>(arg);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700733 StackHandleScope<1> hs(Thread::Current());
Ian Rogerse94652f2014-12-02 11:13:19 -0800734 MutableHandle<mirror::ArtMethod> method_handle(hs.NewHandle<mirror::ArtMethod>(nullptr));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700735 for (size_t i = 0; i < c->NumVirtualMethods(); ++i) {
Ian Rogerse94652f2014-12-02 11:13:19 -0800736 method_handle.Assign(c->GetVirtualMethod(i));
737 ResolveExceptionsForMethod(method_handle, *exceptions_to_resolve);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700738 }
739 for (size_t i = 0; i < c->NumDirectMethods(); ++i) {
Ian Rogerse94652f2014-12-02 11:13:19 -0800740 method_handle.Assign(c->GetDirectMethod(i));
741 ResolveExceptionsForMethod(method_handle, *exceptions_to_resolve);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700742 }
743 return true;
744}
745
746static bool RecordImageClassesVisitor(mirror::Class* klass, void* arg)
747 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Andreas Gampeb1fcead2015-04-20 18:53:51 -0700748 std::unordered_set<std::string>* image_classes =
749 reinterpret_cast<std::unordered_set<std::string>*>(arg);
Ian Rogers1ff3c982014-08-12 02:30:58 -0700750 std::string temp;
751 image_classes->insert(klass->GetDescriptor(&temp));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700752 return true;
753}
754
755// Make a list of descriptors for classes to include in the image
Ian Rogers3d504072014-03-01 09:16:49 -0800756void CompilerDriver::LoadImageClasses(TimingLogger* timings)
Brian Carlstrom7940e442013-07-12 13:46:57 -0700757 LOCKS_EXCLUDED(Locks::mutator_lock_) {
Kenny Rootd5185342014-05-13 14:47:05 -0700758 CHECK(timings != nullptr);
Ian Rogerse6bb3b22013-08-19 21:51:45 -0700759 if (!IsImage()) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700760 return;
761 }
762
Mathieu Chartierf5997b42014-06-20 10:37:54 -0700763 TimingLogger::ScopedTiming t("LoadImageClasses", timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700764 // Make a first class to load all classes explicitly listed in the file
765 Thread* self = Thread::Current();
766 ScopedObjectAccess soa(self);
767 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Kenny Rootd5185342014-05-13 14:47:05 -0700768 CHECK(image_classes_.get() != nullptr);
Mathieu Chartier02e25112013-08-14 16:14:24 -0700769 for (auto it = image_classes_->begin(), end = image_classes_->end(); it != end;) {
Vladimir Markoe9c36b32013-11-21 15:49:16 +0000770 const std::string& descriptor(*it);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700771 StackHandleScope<1> hs(self);
772 Handle<mirror::Class> klass(
773 hs.NewHandle(class_linker->FindSystemClass(self, descriptor.c_str())));
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700774 if (klass.Get() == nullptr) {
Ian Rogerse6bb3b22013-08-19 21:51:45 -0700775 VLOG(compiler) << "Failed to find class " << descriptor;
Vladimir Markoe9c36b32013-11-21 15:49:16 +0000776 image_classes_->erase(it++);
Ian Rogersa436fde2013-08-27 23:34:06 -0700777 self->ClearException();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700778 } else {
779 ++it;
780 }
781 }
782
783 // Resolve exception classes referenced by the loaded classes. The catch logic assumes
784 // exceptions are resolved by the verifier when there is a catch block in an interested method.
785 // Do this here so that exception classes appear to have been specified image classes.
Ian Rogers700a4022014-05-19 16:49:03 -0700786 std::set<std::pair<uint16_t, const DexFile*>> unresolved_exception_types;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700787 StackHandleScope<1> hs(self);
788 Handle<mirror::Class> java_lang_Throwable(
789 hs.NewHandle(class_linker->FindSystemClass(self, "Ljava/lang/Throwable;")));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700790 do {
791 unresolved_exception_types.clear();
792 class_linker->VisitClasses(ResolveCatchBlockExceptionsClassVisitor,
793 &unresolved_exception_types);
Mathieu Chartier02e25112013-08-14 16:14:24 -0700794 for (const std::pair<uint16_t, const DexFile*>& exception_type : unresolved_exception_types) {
795 uint16_t exception_type_idx = exception_type.first;
796 const DexFile* dex_file = exception_type.second;
Andreas Gampe277ccbd2014-11-03 21:36:10 -0800797 StackHandleScope<2> hs2(self);
798 Handle<mirror::DexCache> dex_cache(hs2.NewHandle(class_linker->FindDexCache(*dex_file)));
799 Handle<mirror::Class> klass(hs2.NewHandle(
Mathieu Chartier0cd81352014-05-22 16:48:55 -0700800 class_linker->ResolveType(*dex_file, exception_type_idx, dex_cache,
801 NullHandle<mirror::ClassLoader>())));
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700802 if (klass.Get() == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700803 const DexFile::TypeId& type_id = dex_file->GetTypeId(exception_type_idx);
804 const char* descriptor = dex_file->GetTypeDescriptor(type_id);
805 LOG(FATAL) << "Failed to resolve class " << descriptor;
806 }
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700807 DCHECK(java_lang_Throwable->IsAssignableFrom(klass.Get()));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700808 }
809 // Resolving exceptions may load classes that reference more exceptions, iterate until no
810 // more are found
811 } while (!unresolved_exception_types.empty());
812
813 // We walk the roots looking for classes so that we'll pick up the
814 // above classes plus any classes them depend on such super
815 // classes, interfaces, and the required ClassLinker roots.
816 class_linker->VisitClasses(RecordImageClassesVisitor, image_classes_.get());
817
818 CHECK_NE(image_classes_->size(), 0U);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700819}
820
Andreas Gampeb1fcead2015-04-20 18:53:51 -0700821static void MaybeAddToImageClasses(Handle<mirror::Class> c,
822 std::unordered_set<std::string>* image_classes)
Brian Carlstrom7940e442013-07-12 13:46:57 -0700823 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartierf8322842014-05-16 10:59:25 -0700824 Thread* self = Thread::Current();
825 StackHandleScope<1> hs(self);
826 // Make a copy of the handle so that we don't clobber it doing Assign.
Andreas Gampe5a4b8a22014-09-11 08:30:08 -0700827 MutableHandle<mirror::Class> klass(hs.NewHandle(c.Get()));
Ian Rogers1ff3c982014-08-12 02:30:58 -0700828 std::string temp;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700829 while (!klass->IsObjectClass()) {
Ian Rogers1ff3c982014-08-12 02:30:58 -0700830 const char* descriptor = klass->GetDescriptor(&temp);
Andreas Gampeb1fcead2015-04-20 18:53:51 -0700831 std::pair<std::unordered_set<std::string>::iterator, bool> result =
832 image_classes->insert(descriptor);
Ian Rogers1ff3c982014-08-12 02:30:58 -0700833 if (!result.second) { // Previously inserted.
834 break;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700835 }
Ian Rogers1ff3c982014-08-12 02:30:58 -0700836 VLOG(compiler) << "Adding " << descriptor << " to image classes";
Mathieu Chartierf8322842014-05-16 10:59:25 -0700837 for (size_t i = 0; i < klass->NumDirectInterfaces(); ++i) {
Andreas Gampe277ccbd2014-11-03 21:36:10 -0800838 StackHandleScope<1> hs2(self);
839 MaybeAddToImageClasses(hs2.NewHandle(mirror::Class::GetDirectInterface(self, klass, i)),
Mathieu Chartierf8322842014-05-16 10:59:25 -0700840 image_classes);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700841 }
842 if (klass->IsArrayClass()) {
Andreas Gampe277ccbd2014-11-03 21:36:10 -0800843 StackHandleScope<1> hs2(self);
844 MaybeAddToImageClasses(hs2.NewHandle(klass->GetComponentType()), image_classes);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700845 }
Mathieu Chartierf8322842014-05-16 10:59:25 -0700846 klass.Assign(klass->GetSuperClass());
Brian Carlstrom7940e442013-07-12 13:46:57 -0700847 }
848}
849
Andreas Gampeb0f370e2014-09-25 22:51:40 -0700850// Keeps all the data for the update together. Also doubles as the reference visitor.
851// Note: we can use object pointers because we suspend all threads.
852class ClinitImageUpdate {
853 public:
Andreas Gampeb1fcead2015-04-20 18:53:51 -0700854 static ClinitImageUpdate* Create(std::unordered_set<std::string>* image_class_descriptors,
855 Thread* self, ClassLinker* linker, std::string* error_msg) {
Andreas Gampeb0f370e2014-09-25 22:51:40 -0700856 std::unique_ptr<ClinitImageUpdate> res(new ClinitImageUpdate(image_class_descriptors, self,
857 linker));
858 if (res->art_method_class_ == nullptr) {
859 *error_msg = "Could not find ArtMethod class.";
860 return nullptr;
861 } else if (res->dex_cache_class_ == nullptr) {
862 *error_msg = "Could not find DexCache class.";
863 return nullptr;
864 }
865
866 return res.release();
867 }
868
869 ~ClinitImageUpdate() {
870 // Allow others to suspend again.
871 self_->EndAssertNoThreadSuspension(old_cause_);
872 }
873
874 // Visitor for VisitReferences.
875 void operator()(mirror::Object* object, MemberOffset field_offset, bool /* is_static */) const
876 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
877 mirror::Object* ref = object->GetFieldObject<mirror::Object>(field_offset);
878 if (ref != nullptr) {
879 VisitClinitClassesObject(ref);
880 }
881 }
882
883 // java.lang.Reference visitor for VisitReferences.
Andreas Gampedc8b63c2014-12-02 14:39:52 -0800884 void operator()(mirror::Class* /* klass */, mirror::Reference* /* ref */) const {
Andreas Gampeb0f370e2014-09-25 22:51:40 -0700885 }
886
887 void Walk() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
888 // Use the initial classes as roots for a search.
889 for (mirror::Class* klass_root : image_classes_) {
890 VisitClinitClassesObject(klass_root);
891 }
892 }
893
894 private:
Andreas Gampeb1fcead2015-04-20 18:53:51 -0700895 ClinitImageUpdate(std::unordered_set<std::string>* image_class_descriptors, Thread* self,
Andreas Gampeb0f370e2014-09-25 22:51:40 -0700896 ClassLinker* linker)
897 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) :
898 image_class_descriptors_(image_class_descriptors), self_(self) {
899 CHECK(linker != nullptr);
900 CHECK(image_class_descriptors != nullptr);
901
902 // Make sure nobody interferes with us.
903 old_cause_ = self->StartAssertNoThreadSuspension("Boot image closure");
904
905 // Find the interesting classes.
Andreas Gampedc8b63c2014-12-02 14:39:52 -0800906 art_method_class_ = linker->LookupClass(self, "Ljava/lang/reflect/ArtMethod;",
907 ComputeModifiedUtf8Hash("Ljava/lang/reflect/ArtMethod;"), nullptr);
908 dex_cache_class_ = linker->LookupClass(self, "Ljava/lang/DexCache;",
909 ComputeModifiedUtf8Hash("Ljava/lang/DexCache;"), nullptr);
Andreas Gampeb0f370e2014-09-25 22:51:40 -0700910
911 // Find all the already-marked classes.
912 WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
913 linker->VisitClasses(FindImageClasses, this);
914 }
915
916 static bool FindImageClasses(mirror::Class* klass, void* arg)
917 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
918 ClinitImageUpdate* data = reinterpret_cast<ClinitImageUpdate*>(arg);
919 std::string temp;
920 const char* name = klass->GetDescriptor(&temp);
921 if (data->image_class_descriptors_->find(name) != data->image_class_descriptors_->end()) {
922 data->image_classes_.push_back(klass);
Andreas Gampe4d4eff72015-03-04 22:46:35 -0800923 } else {
924 // Check whether it is initialized and has a clinit. They must be kept, too.
925 if (klass->IsInitialized() && klass->FindClassInitializer() != nullptr) {
926 data->image_classes_.push_back(klass);
927 }
Andreas Gampeb0f370e2014-09-25 22:51:40 -0700928 }
929
930 return true;
931 }
932
933 void VisitClinitClassesObject(mirror::Object* object) const
934 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
935 DCHECK(object != nullptr);
936 if (marked_objects_.find(object) != marked_objects_.end()) {
937 // Already processed.
938 return;
939 }
940
941 // Mark it.
942 marked_objects_.insert(object);
943
944 if (object->IsClass()) {
945 // If it is a class, add it.
946 StackHandleScope<1> hs(self_);
947 MaybeAddToImageClasses(hs.NewHandle(object->AsClass()), image_class_descriptors_);
948 } else {
949 // Else visit the object's class.
950 VisitClinitClassesObject(object->GetClass());
951 }
952
953 // If it is not a dex cache or an ArtMethod, visit all references.
954 mirror::Class* klass = object->GetClass();
955 if (klass != art_method_class_ && klass != dex_cache_class_) {
956 object->VisitReferences<false /* visit class */>(*this, *this);
957 }
958 }
959
960 mutable std::unordered_set<mirror::Object*> marked_objects_;
Andreas Gampeb1fcead2015-04-20 18:53:51 -0700961 std::unordered_set<std::string>* const image_class_descriptors_;
Andreas Gampeb0f370e2014-09-25 22:51:40 -0700962 std::vector<mirror::Class*> image_classes_;
963 const mirror::Class* art_method_class_;
964 const mirror::Class* dex_cache_class_;
965 Thread* const self_;
966 const char* old_cause_;
967
968 DISALLOW_COPY_AND_ASSIGN(ClinitImageUpdate);
969};
Brian Carlstrom7940e442013-07-12 13:46:57 -0700970
Ian Rogers3d504072014-03-01 09:16:49 -0800971void CompilerDriver::UpdateImageClasses(TimingLogger* timings) {
Ian Rogerse6bb3b22013-08-19 21:51:45 -0700972 if (IsImage()) {
Mathieu Chartierf5997b42014-06-20 10:37:54 -0700973 TimingLogger::ScopedTiming t("UpdateImageClasses", timings);
Andreas Gampeb0f370e2014-09-25 22:51:40 -0700974
975 Runtime* current = Runtime::Current();
976
977 // Suspend all threads.
Mathieu Chartierbf9fc582015-03-13 17:21:25 -0700978 current->GetThreadList()->SuspendAll(__FUNCTION__);
Andreas Gampeb0f370e2014-09-25 22:51:40 -0700979
980 std::string error_msg;
981 std::unique_ptr<ClinitImageUpdate> update(ClinitImageUpdate::Create(image_classes_.get(),
982 Thread::Current(),
983 current->GetClassLinker(),
984 &error_msg));
985 CHECK(update.get() != nullptr) << error_msg; // TODO: Soft failure?
986
987 // Do the marking.
988 update->Walk();
989
990 // Resume threads.
991 current->GetThreadList()->ResumeAll();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700992 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700993}
994
Mathieu Chartier590fee92013-09-13 13:46:47 -0700995bool CompilerDriver::CanAssumeTypeIsPresentInDexCache(const DexFile& dex_file, uint32_t type_idx) {
Ian Rogersfc0e94b2013-09-23 23:51:32 -0700996 if (IsImage() &&
Ian Rogersdfb325e2013-10-30 01:00:44 -0700997 IsImageClass(dex_file.StringDataByIdx(dex_file.GetTypeId(type_idx).descriptor_idx_))) {
Andreas Gampe58a5af82014-07-31 16:23:49 -0700998 {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700999 ScopedObjectAccess soa(Thread::Current());
1000 mirror::DexCache* dex_cache = Runtime::Current()->GetClassLinker()->FindDexCache(dex_file);
1001 mirror::Class* resolved_class = dex_cache->GetResolvedType(type_idx);
Andreas Gampe58a5af82014-07-31 16:23:49 -07001002 if (resolved_class == nullptr) {
1003 // Erroneous class.
1004 stats_->TypeNotInDexCache();
1005 return false;
1006 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001007 }
1008 stats_->TypeInDexCache();
1009 return true;
1010 } else {
1011 stats_->TypeNotInDexCache();
1012 return false;
1013 }
1014}
1015
1016bool CompilerDriver::CanAssumeStringIsPresentInDexCache(const DexFile& dex_file,
1017 uint32_t string_idx) {
1018 // See also Compiler::ResolveDexFile
1019
1020 bool result = false;
1021 if (IsImage()) {
1022 // We resolve all const-string strings when building for the image.
1023 ScopedObjectAccess soa(Thread::Current());
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001024 StackHandleScope<1> hs(soa.Self());
1025 Handle<mirror::DexCache> dex_cache(
1026 hs.NewHandle(Runtime::Current()->GetClassLinker()->FindDexCache(dex_file)));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001027 Runtime::Current()->GetClassLinker()->ResolveString(dex_file, string_idx, dex_cache);
1028 result = true;
1029 }
1030 if (result) {
1031 stats_->StringInDexCache();
1032 } else {
1033 stats_->StringNotInDexCache();
1034 }
1035 return result;
1036}
1037
1038bool CompilerDriver::CanAccessTypeWithoutChecks(uint32_t referrer_idx, const DexFile& dex_file,
1039 uint32_t type_idx,
1040 bool* type_known_final, bool* type_known_abstract,
1041 bool* equals_referrers_class) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001042 if (type_known_final != nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001043 *type_known_final = false;
1044 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001045 if (type_known_abstract != nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001046 *type_known_abstract = false;
1047 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001048 if (equals_referrers_class != nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001049 *equals_referrers_class = false;
1050 }
1051 ScopedObjectAccess soa(Thread::Current());
1052 mirror::DexCache* dex_cache = Runtime::Current()->GetClassLinker()->FindDexCache(dex_file);
1053 // Get type from dex cache assuming it was populated by the verifier
1054 mirror::Class* resolved_class = dex_cache->GetResolvedType(type_idx);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001055 if (resolved_class == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001056 stats_->TypeNeedsAccessCheck();
1057 return false; // Unknown class needs access checks.
1058 }
1059 const DexFile::MethodId& method_id = dex_file.GetMethodId(referrer_idx);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001060 if (equals_referrers_class != nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001061 *equals_referrers_class = (method_id.class_idx_ == type_idx);
1062 }
1063 mirror::Class* referrer_class = dex_cache->GetResolvedType(method_id.class_idx_);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001064 if (referrer_class == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001065 stats_->TypeNeedsAccessCheck();
1066 return false; // Incomplete referrer knowledge needs access check.
1067 }
1068 // Perform access check, will return true if access is ok or false if we're going to have to
1069 // check this at runtime (for example for class loaders).
1070 bool result = referrer_class->CanAccess(resolved_class);
1071 if (result) {
1072 stats_->TypeDoesntNeedAccessCheck();
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001073 if (type_known_final != nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001074 *type_known_final = resolved_class->IsFinal() && !resolved_class->IsArrayClass();
1075 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001076 if (type_known_abstract != nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001077 *type_known_abstract = resolved_class->IsAbstract() && !resolved_class->IsArrayClass();
1078 }
1079 } else {
1080 stats_->TypeNeedsAccessCheck();
1081 }
1082 return result;
1083}
1084
1085bool CompilerDriver::CanAccessInstantiableTypeWithoutChecks(uint32_t referrer_idx,
1086 const DexFile& dex_file,
1087 uint32_t type_idx) {
1088 ScopedObjectAccess soa(Thread::Current());
1089 mirror::DexCache* dex_cache = Runtime::Current()->GetClassLinker()->FindDexCache(dex_file);
1090 // Get type from dex cache assuming it was populated by the verifier.
1091 mirror::Class* resolved_class = dex_cache->GetResolvedType(type_idx);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001092 if (resolved_class == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001093 stats_->TypeNeedsAccessCheck();
1094 return false; // Unknown class needs access checks.
1095 }
1096 const DexFile::MethodId& method_id = dex_file.GetMethodId(referrer_idx);
1097 mirror::Class* referrer_class = dex_cache->GetResolvedType(method_id.class_idx_);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001098 if (referrer_class == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001099 stats_->TypeNeedsAccessCheck();
1100 return false; // Incomplete referrer knowledge needs access check.
1101 }
1102 // Perform access and instantiable checks, will return true if access is ok or false if we're
1103 // going to have to check this at runtime (for example for class loaders).
1104 bool result = referrer_class->CanAccess(resolved_class) && resolved_class->IsInstantiable();
1105 if (result) {
1106 stats_->TypeDoesntNeedAccessCheck();
1107 } else {
1108 stats_->TypeNeedsAccessCheck();
1109 }
1110 return result;
1111}
1112
Hiroshi Yamauchibe1ca552014-01-15 11:46:48 -08001113bool CompilerDriver::CanEmbedTypeInCode(const DexFile& dex_file, uint32_t type_idx,
1114 bool* is_type_initialized, bool* use_direct_type_ptr,
Mathieu Chartier8668c3c2014-04-24 16:48:11 -07001115 uintptr_t* direct_type_ptr, bool* out_is_finalizable) {
Hiroshi Yamauchibe1ca552014-01-15 11:46:48 -08001116 ScopedObjectAccess soa(Thread::Current());
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08001117 Runtime* runtime = Runtime::Current();
1118 mirror::DexCache* dex_cache = runtime->GetClassLinker()->FindDexCache(dex_file);
Hiroshi Yamauchibe1ca552014-01-15 11:46:48 -08001119 mirror::Class* resolved_class = dex_cache->GetResolvedType(type_idx);
1120 if (resolved_class == nullptr) {
1121 return false;
1122 }
Igor Murashkind6dee672014-10-16 18:36:16 -07001123 if (GetCompilerOptions().GetCompilePic()) {
1124 // Do not allow a direct class pointer to be used when compiling for position-independent
1125 return false;
1126 }
Mathieu Chartier8668c3c2014-04-24 16:48:11 -07001127 *out_is_finalizable = resolved_class->IsFinalizable();
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08001128 gc::Heap* heap = runtime->GetHeap();
1129 const bool compiling_boot = heap->IsCompilingBoot();
Alex Light6e183f22014-07-18 14:57:04 -07001130 const bool support_boot_image_fixup = GetSupportBootImageFixup();
Hiroshi Yamauchibe1ca552014-01-15 11:46:48 -08001131 if (compiling_boot) {
1132 // boot -> boot class pointers.
1133 // True if the class is in the image at boot compiling time.
1134 const bool is_image_class = IsImage() && IsImageClass(
1135 dex_file.StringDataByIdx(dex_file.GetTypeId(type_idx).descriptor_idx_));
1136 // True if pc relative load works.
Hiroshi Yamauchibe1ca552014-01-15 11:46:48 -08001137 if (is_image_class && support_boot_image_fixup) {
1138 *is_type_initialized = resolved_class->IsInitialized();
1139 *use_direct_type_ptr = false;
1140 *direct_type_ptr = 0;
1141 return true;
1142 } else {
1143 return false;
1144 }
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08001145 } else if (runtime->UseJit() && !heap->IsMovableObject(resolved_class)) {
1146 *is_type_initialized = resolved_class->IsInitialized();
1147 // If the class may move around, then don't embed it as a direct pointer.
1148 *use_direct_type_ptr = true;
1149 *direct_type_ptr = reinterpret_cast<uintptr_t>(resolved_class);
1150 return true;
Hiroshi Yamauchibe1ca552014-01-15 11:46:48 -08001151 } else {
1152 // True if the class is in the image at app compiling time.
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08001153 const bool class_in_image = heap->FindSpaceFromObject(resolved_class, false)->IsImageSpace();
Alex Light6e183f22014-07-18 14:57:04 -07001154 if (class_in_image && support_boot_image_fixup) {
Hiroshi Yamauchibe1ca552014-01-15 11:46:48 -08001155 // boot -> app class pointers.
1156 *is_type_initialized = resolved_class->IsInitialized();
Alex Lighta59dd802014-07-02 16:28:08 -07001157 // TODO This is somewhat hacky. We should refactor all of this invoke codepath.
1158 *use_direct_type_ptr = !GetCompilerOptions().GetIncludePatchInformation();
Hiroshi Yamauchibe1ca552014-01-15 11:46:48 -08001159 *direct_type_ptr = reinterpret_cast<uintptr_t>(resolved_class);
1160 return true;
1161 } else {
1162 // app -> app class pointers.
1163 // Give up because app does not have an image and class
1164 // isn't created at compile time. TODO: implement this
1165 // if/when each app gets an image.
1166 return false;
1167 }
1168 }
1169}
1170
Fred Shihe7f82e22014-08-06 10:46:37 -07001171bool CompilerDriver::CanEmbedReferenceTypeInCode(ClassReference* ref,
1172 bool* use_direct_ptr,
1173 uintptr_t* direct_type_ptr) {
1174 CHECK(ref != nullptr);
1175 CHECK(use_direct_ptr != nullptr);
1176 CHECK(direct_type_ptr != nullptr);
1177
1178 ScopedObjectAccess soa(Thread::Current());
1179 mirror::Class* reference_class = mirror::Reference::GetJavaLangRefReference();
Andreas Gampe928f72b2014-09-09 19:53:48 -07001180 bool is_initialized = false;
Fred Shihe7f82e22014-08-06 10:46:37 -07001181 bool unused_finalizable;
1182 // Make sure we have a finished Reference class object before attempting to use it.
1183 if (!CanEmbedTypeInCode(*reference_class->GetDexCache()->GetDexFile(),
1184 reference_class->GetDexTypeIndex(), &is_initialized,
1185 use_direct_ptr, direct_type_ptr, &unused_finalizable) ||
1186 !is_initialized) {
1187 return false;
1188 }
1189 ref->first = &reference_class->GetDexFile();
1190 ref->second = reference_class->GetDexClassDefIndex();
1191 return true;
1192}
1193
1194uint32_t CompilerDriver::GetReferenceSlowFlagOffset() const {
1195 ScopedObjectAccess soa(Thread::Current());
1196 mirror::Class* klass = mirror::Reference::GetJavaLangRefReference();
1197 DCHECK(klass->IsInitialized());
1198 return klass->GetSlowPathFlagOffset().Uint32Value();
1199}
1200
1201uint32_t CompilerDriver::GetReferenceDisableFlagOffset() const {
1202 ScopedObjectAccess soa(Thread::Current());
1203 mirror::Class* klass = mirror::Reference::GetJavaLangRefReference();
1204 DCHECK(klass->IsInitialized());
1205 return klass->GetDisableIntrinsicFlagOffset().Uint32Value();
1206}
1207
Vladimir Marko20f85592015-03-19 10:07:02 +00001208DexCacheArraysLayout CompilerDriver::GetDexCacheArraysLayout(const DexFile* dex_file) {
1209 // Currently only image dex caches have fixed array layout.
1210 return IsImage() && GetSupportBootImageFixup()
Mathieu Chartierc7853442015-03-27 14:35:38 -07001211 ? DexCacheArraysLayout(GetInstructionSetPointerSize(instruction_set_), dex_file)
Vladimir Marko20f85592015-03-19 10:07:02 +00001212 : DexCacheArraysLayout();
1213}
1214
Vladimir Markobe0e5462014-02-26 11:24:15 +00001215void CompilerDriver::ProcessedInstanceField(bool resolved) {
1216 if (!resolved) {
1217 stats_->UnresolvedInstanceField();
1218 } else {
1219 stats_->ResolvedInstanceField();
1220 }
1221}
1222
1223void CompilerDriver::ProcessedStaticField(bool resolved, bool local) {
1224 if (!resolved) {
1225 stats_->UnresolvedStaticField();
1226 } else if (local) {
1227 stats_->ResolvedLocalStaticField();
1228 } else {
1229 stats_->ResolvedStaticField();
1230 }
1231}
1232
Vladimir Markof096aad2014-01-23 15:51:58 +00001233void CompilerDriver::ProcessedInvoke(InvokeType invoke_type, int flags) {
1234 stats_->ProcessedInvoke(invoke_type, flags);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001235}
1236
Mathieu Chartierc7853442015-03-27 14:35:38 -07001237ArtField* CompilerDriver::ComputeInstanceFieldInfo(uint32_t field_idx,
1238 const DexCompilationUnit* mUnit, bool is_put,
1239 const ScopedObjectAccess& soa) {
Vladimir Markobe0e5462014-02-26 11:24:15 +00001240 // Try to resolve the field and compiling method's class.
Mathieu Chartierc7853442015-03-27 14:35:38 -07001241 ArtField* resolved_field;
Vladimir Markobe0e5462014-02-26 11:24:15 +00001242 mirror::Class* referrer_class;
1243 mirror::DexCache* dex_cache;
1244 {
Roland Levillain2b846ed2015-05-19 10:44:25 +01001245 StackHandleScope<2> hs(soa.Self());
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001246 Handle<mirror::DexCache> dex_cache_handle(
1247 hs.NewHandle(mUnit->GetClassLinker()->FindDexCache(*mUnit->GetDexFile())));
1248 Handle<mirror::ClassLoader> class_loader_handle(
1249 hs.NewHandle(soa.Decode<mirror::ClassLoader*>(mUnit->GetClassLoader())));
Mathieu Chartierc7853442015-03-27 14:35:38 -07001250 resolved_field =
1251 ResolveField(soa, dex_cache_handle, class_loader_handle, mUnit, field_idx, false);
1252 referrer_class = resolved_field != nullptr
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001253 ? ResolveCompilingMethodsClass(soa, dex_cache_handle, class_loader_handle, mUnit) : nullptr;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001254 dex_cache = dex_cache_handle.Get();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001255 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001256 bool can_link = false;
Vladimir Markobe0e5462014-02-26 11:24:15 +00001257 if (resolved_field != nullptr && referrer_class != nullptr) {
Vladimir Markobe0e5462014-02-26 11:24:15 +00001258 std::pair<bool, bool> fast_path = IsFastInstanceField(
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001259 dex_cache, referrer_class, resolved_field, field_idx);
1260 can_link = is_put ? fast_path.second : fast_path.first;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001261 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001262 ProcessedInstanceField(can_link);
1263 return can_link ? resolved_field : nullptr;
1264}
1265
1266bool CompilerDriver::ComputeInstanceFieldInfo(uint32_t field_idx, const DexCompilationUnit* mUnit,
1267 bool is_put, MemberOffset* field_offset,
1268 bool* is_volatile) {
1269 ScopedObjectAccess soa(Thread::Current());
Mathieu Chartierc7853442015-03-27 14:35:38 -07001270 ArtField* resolved_field = ComputeInstanceFieldInfo(field_idx, mUnit, is_put, soa);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001271
Mathieu Chartierc7853442015-03-27 14:35:38 -07001272 if (resolved_field == nullptr) {
Vladimir Markobe0e5462014-02-26 11:24:15 +00001273 // Conservative defaults.
1274 *is_volatile = true;
1275 *field_offset = MemberOffset(static_cast<size_t>(-1));
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001276 return false;
1277 } else {
1278 *is_volatile = resolved_field->IsVolatile();
1279 *field_offset = resolved_field->GetOffset();
1280 return true;
Vladimir Markobe0e5462014-02-26 11:24:15 +00001281 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001282}
1283
1284bool CompilerDriver::ComputeStaticFieldInfo(uint32_t field_idx, const DexCompilationUnit* mUnit,
Vladimir Markobe0e5462014-02-26 11:24:15 +00001285 bool is_put, MemberOffset* field_offset,
1286 uint32_t* storage_index, bool* is_referrers_class,
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01001287 bool* is_volatile, bool* is_initialized,
1288 Primitive::Type* type) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001289 ScopedObjectAccess soa(Thread::Current());
Vladimir Markobe0e5462014-02-26 11:24:15 +00001290 // Try to resolve the field and compiling method's class.
Mathieu Chartierc7853442015-03-27 14:35:38 -07001291 ArtField* resolved_field;
Vladimir Markobe0e5462014-02-26 11:24:15 +00001292 mirror::Class* referrer_class;
1293 mirror::DexCache* dex_cache;
1294 {
Mathieu Chartierc7853442015-03-27 14:35:38 -07001295 StackHandleScope<2> hs(soa.Self());
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001296 Handle<mirror::DexCache> dex_cache_handle(
1297 hs.NewHandle(mUnit->GetClassLinker()->FindDexCache(*mUnit->GetDexFile())));
1298 Handle<mirror::ClassLoader> class_loader_handle(
1299 hs.NewHandle(soa.Decode<mirror::ClassLoader*>(mUnit->GetClassLoader())));
Mathieu Chartierc7853442015-03-27 14:35:38 -07001300 resolved_field =
1301 ResolveField(soa, dex_cache_handle, class_loader_handle, mUnit, field_idx, true);
1302 referrer_class = resolved_field != nullptr
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001303 ? ResolveCompilingMethodsClass(soa, dex_cache_handle, class_loader_handle, mUnit) : nullptr;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001304 dex_cache = dex_cache_handle.Get();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001305 }
Vladimir Markobe0e5462014-02-26 11:24:15 +00001306 bool result = false;
1307 if (resolved_field != nullptr && referrer_class != nullptr) {
1308 *is_volatile = IsFieldVolatile(resolved_field);
1309 std::pair<bool, bool> fast_path = IsFastStaticField(
Vladimir Marko66c6d7b2014-10-16 15:41:48 +01001310 dex_cache, referrer_class, resolved_field, field_idx, storage_index);
Vladimir Markobe0e5462014-02-26 11:24:15 +00001311 result = is_put ? fast_path.second : fast_path.first;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001312 }
Vladimir Marko66c6d7b2014-10-16 15:41:48 +01001313 if (result) {
1314 *field_offset = GetFieldOffset(resolved_field);
1315 *is_referrers_class = IsStaticFieldInReferrerClass(referrer_class, resolved_field);
1316 // *is_referrers_class == true implies no worrying about class initialization.
1317 *is_initialized = (*is_referrers_class) ||
1318 (IsStaticFieldsClassInitialized(referrer_class, resolved_field) &&
1319 CanAssumeTypeIsPresentInDexCache(*mUnit->GetDexFile(), *storage_index));
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01001320 *type = resolved_field->GetTypeAsPrimitiveType();
Vladimir Marko66c6d7b2014-10-16 15:41:48 +01001321 } else {
Vladimir Markobe0e5462014-02-26 11:24:15 +00001322 // Conservative defaults.
1323 *is_volatile = true;
1324 *field_offset = MemberOffset(static_cast<size_t>(-1));
1325 *storage_index = -1;
1326 *is_referrers_class = false;
1327 *is_initialized = false;
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01001328 *type = Primitive::kPrimVoid;
Vladimir Markobe0e5462014-02-26 11:24:15 +00001329 }
1330 ProcessedStaticField(result, *is_referrers_class);
1331 return result;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001332}
1333
Ian Rogers83883d72013-10-21 21:07:24 -07001334void CompilerDriver::GetCodeAndMethodForDirectCall(InvokeType* type, InvokeType sharp_type,
1335 bool no_guarantee_of_dex_cache_entry,
Igor Murashkind6dee672014-10-16 18:36:16 -07001336 const mirror::Class* referrer_class,
Brian Carlstromea46f952013-07-30 01:26:50 -07001337 mirror::ArtMethod* method,
Vladimir Markof096aad2014-01-23 15:51:58 +00001338 int* stats_flags,
Ian Rogers83883d72013-10-21 21:07:24 -07001339 MethodReference* target_method,
Ian Rogers65ec92c2013-09-06 10:49:58 -07001340 uintptr_t* direct_code,
1341 uintptr_t* direct_method) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001342 // For direct and static methods compute possible direct_code and direct_method values, ie
1343 // an address for the Method* being invoked and an address of the code for that Method*.
1344 // For interface calls compute a value for direct_method that is the interface method being
1345 // invoked, so this can be passed to the out-of-line runtime support code.
Ian Rogers65ec92c2013-09-06 10:49:58 -07001346 *direct_code = 0;
1347 *direct_method = 0;
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08001348 Runtime* const runtime = Runtime::Current();
1349 gc::Heap* const heap = runtime->GetHeap();
Igor Murashkind6dee672014-10-16 18:36:16 -07001350 bool use_dex_cache = GetCompilerOptions().GetCompilePic(); // Off by default
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08001351 const bool compiling_boot = heap->IsCompilingBoot();
Alex Lighta59dd802014-07-02 16:28:08 -07001352 // TODO This is somewhat hacky. We should refactor all of this invoke codepath.
1353 const bool force_relocations = (compiling_boot ||
1354 GetCompilerOptions().GetIncludePatchInformation());
Elliott Hughes956af0f2014-12-11 14:34:28 -08001355 if (sharp_type != kStatic && sharp_type != kDirect) {
1356 return;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001357 }
Elliott Hughes956af0f2014-12-11 14:34:28 -08001358 // TODO: support patching on all architectures.
1359 use_dex_cache = use_dex_cache || (force_relocations && !support_boot_image_fixup_);
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08001360 mirror::Class* declaring_class = method->GetDeclaringClass();
1361 bool method_code_in_boot = declaring_class->GetClassLoader() == nullptr;
Ian Rogers83883d72013-10-21 21:07:24 -07001362 if (!use_dex_cache) {
1363 if (!method_code_in_boot) {
1364 use_dex_cache = true;
1365 } else {
Brian Carlstrom14247b62015-01-31 21:35:32 -08001366 bool has_clinit_trampoline =
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08001367 method->IsStatic() && !declaring_class->IsInitialized();
1368 if (has_clinit_trampoline && declaring_class != referrer_class) {
Ian Rogers83883d72013-10-21 21:07:24 -07001369 // Ensure we run the clinit trampoline unless we are invoking a static method in the same
1370 // class.
1371 use_dex_cache = true;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001372 }
1373 }
Ian Rogers83883d72013-10-21 21:07:24 -07001374 }
Mathieu Chartier28a35882015-02-26 18:28:07 -08001375 if (runtime->UseJit()) {
1376 // If we are the JIT, then don't allow a direct call to the interpreter bridge since this will
1377 // never be updated even after we compile the method.
1378 if (runtime->GetClassLinker()->IsQuickToInterpreterBridge(
1379 reinterpret_cast<const void*>(compiler_->GetEntryPointOf(method)))) {
1380 use_dex_cache = true;
1381 }
1382 }
Vladimir Markof096aad2014-01-23 15:51:58 +00001383 if (method_code_in_boot) {
1384 *stats_flags |= kFlagDirectCallToBoot | kFlagDirectMethodToBoot;
Ian Rogers83883d72013-10-21 21:07:24 -07001385 }
Alex Lighta59dd802014-07-02 16:28:08 -07001386 if (!use_dex_cache && force_relocations) {
Jeff Haoa0acc2d2015-01-27 11:22:04 -08001387 bool is_in_image;
1388 if (IsImage()) {
1389 is_in_image = IsImageClass(method->GetDeclaringClassDescriptor());
1390 } else {
1391 is_in_image = instruction_set_ != kX86 && instruction_set_ != kX86_64 &&
1392 Runtime::Current()->GetHeap()->FindSpaceFromObject(method->GetDeclaringClass(),
1393 false)->IsImageSpace();
1394 }
1395 if (!is_in_image) {
Ian Rogers83883d72013-10-21 21:07:24 -07001396 // We can only branch directly to Methods that are resolved in the DexCache.
1397 // Otherwise we won't invoke the resolution trampoline.
1398 use_dex_cache = true;
1399 }
1400 }
1401 // The method is defined not within this dex file. We need a dex cache slot within the current
1402 // dex file or direct pointers.
1403 bool must_use_direct_pointers = false;
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08001404 mirror::DexCache* dex_cache = declaring_class->GetDexCache();
1405 if (target_method->dex_file == dex_cache->GetDexFile() &&
1406 !(runtime->UseJit() && dex_cache->GetResolvedMethod(method->GetDexMethodIndex()) == nullptr)) {
Ian Rogers83883d72013-10-21 21:07:24 -07001407 target_method->dex_method_index = method->GetDexMethodIndex();
1408 } else {
Ian Rogers83883d72013-10-21 21:07:24 -07001409 if (no_guarantee_of_dex_cache_entry) {
1410 // See if the method is also declared in this dex cache.
Ian Rogerse0a02da2014-12-02 14:10:53 -08001411 uint32_t dex_method_idx =
1412 method->FindDexMethodIndexInOtherDexFile(*target_method->dex_file,
1413 target_method->dex_method_index);
Ian Rogers83883d72013-10-21 21:07:24 -07001414 if (dex_method_idx != DexFile::kDexNoIndex) {
1415 target_method->dex_method_index = dex_method_idx;
1416 } else {
Alex Lighta59dd802014-07-02 16:28:08 -07001417 if (force_relocations && !use_dex_cache) {
Jeff Hao49161ce2014-03-12 11:05:25 -07001418 target_method->dex_method_index = method->GetDexMethodIndex();
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08001419 target_method->dex_file = dex_cache->GetDexFile();
Jeff Hao49161ce2014-03-12 11:05:25 -07001420 }
Ian Rogers83883d72013-10-21 21:07:24 -07001421 must_use_direct_pointers = true;
1422 }
1423 }
1424 }
1425 if (use_dex_cache) {
1426 if (must_use_direct_pointers) {
1427 // Fail. Test above showed the only safe dispatch was via the dex cache, however, the direct
1428 // pointers are required as the dex cache lacks an appropriate entry.
1429 VLOG(compiler) << "Dex cache devirtualization failed for: " << PrettyMethod(method);
1430 } else {
1431 *type = sharp_type;
1432 }
1433 } else {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08001434 bool method_in_image = heap->FindSpaceFromObject(method, false)->IsImageSpace();
Mathieu Chartier6ced4092015-02-27 16:10:48 -08001435 if (method_in_image || compiling_boot || runtime->UseJit()) {
Alex Lighta59dd802014-07-02 16:28:08 -07001436 // 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 -08001437 // In the case where we are the JIT, we can always use direct pointers since we know where
1438 // the method and its code are / will be. We don't sharpen to interpreter bridge since we
1439 // check IsQuickToInterpreterBridge above.
Vladimir Markoa51a0b02014-05-21 12:08:39 +01001440 CHECK(!method->IsAbstract());
Ian Rogers83883d72013-10-21 21:07:24 -07001441 *type = sharp_type;
Alex Lighta59dd802014-07-02 16:28:08 -07001442 *direct_method = force_relocations ? -1 : reinterpret_cast<uintptr_t>(method);
1443 *direct_code = force_relocations ? -1 : compiler_->GetEntryPointOf(method);
Brian Carlstrom14247b62015-01-31 21:35:32 -08001444 target_method->dex_file = method->GetDeclaringClass()->GetDexCache()->GetDexFile();
Vladimir Markoa51a0b02014-05-21 12:08:39 +01001445 target_method->dex_method_index = method->GetDexMethodIndex();
1446 } else if (!must_use_direct_pointers) {
1447 // Set the code and rely on the dex cache for the method.
1448 *type = sharp_type;
Alex Lighta59dd802014-07-02 16:28:08 -07001449 if (force_relocations) {
1450 *direct_code = -1;
Brian Carlstrom14247b62015-01-31 21:35:32 -08001451 target_method->dex_file = method->GetDeclaringClass()->GetDexCache()->GetDexFile();
Alex Lighta59dd802014-07-02 16:28:08 -07001452 target_method->dex_method_index = method->GetDexMethodIndex();
1453 } else {
1454 *direct_code = compiler_->GetEntryPointOf(method);
1455 }
Ian Rogers83883d72013-10-21 21:07:24 -07001456 } else {
Vladimir Markoa51a0b02014-05-21 12:08:39 +01001457 // Direct pointers were required but none were available.
1458 VLOG(compiler) << "Dex cache devirtualization failed for: " << PrettyMethod(method);
Ian Rogers83883d72013-10-21 21:07:24 -07001459 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001460 }
1461}
1462
1463bool CompilerDriver::ComputeInvokeInfo(const DexCompilationUnit* mUnit, const uint32_t dex_pc,
Ian Rogers65ec92c2013-09-06 10:49:58 -07001464 bool update_stats, bool enable_devirtualization,
1465 InvokeType* invoke_type, MethodReference* target_method,
1466 int* vtable_idx, uintptr_t* direct_code,
1467 uintptr_t* direct_method) {
Vladimir Markof096aad2014-01-23 15:51:58 +00001468 InvokeType orig_invoke_type = *invoke_type;
1469 int stats_flags = 0;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001470 ScopedObjectAccess soa(Thread::Current());
Vladimir Markof096aad2014-01-23 15:51:58 +00001471 // Try to resolve the method and compiling method's class.
1472 mirror::ArtMethod* resolved_method;
1473 mirror::Class* referrer_class;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001474 StackHandleScope<3> hs(soa.Self());
1475 Handle<mirror::DexCache> dex_cache(
1476 hs.NewHandle(mUnit->GetClassLinker()->FindDexCache(*mUnit->GetDexFile())));
1477 Handle<mirror::ClassLoader> class_loader(hs.NewHandle(
1478 soa.Decode<mirror::ClassLoader*>(mUnit->GetClassLoader())));
Vladimir Markof096aad2014-01-23 15:51:58 +00001479 {
1480 uint32_t method_idx = target_method->dex_method_index;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001481 Handle<mirror::ArtMethod> resolved_method_handle(hs.NewHandle(
1482 ResolveMethod(soa, dex_cache, class_loader, mUnit, method_idx, orig_invoke_type)));
1483 referrer_class = (resolved_method_handle.Get() != nullptr)
Vladimir Markof096aad2014-01-23 15:51:58 +00001484 ? ResolveCompilingMethodsClass(soa, dex_cache, class_loader, mUnit) : nullptr;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001485 resolved_method = resolved_method_handle.Get();
Vladimir Markof096aad2014-01-23 15:51:58 +00001486 }
1487 bool result = false;
1488 if (resolved_method != nullptr) {
1489 *vtable_idx = GetResolvedMethodVTableIndex(resolved_method, orig_invoke_type);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001490
Nicolas Geoffraye53798a2014-12-01 10:31:54 +00001491 if (enable_devirtualization && mUnit->GetVerifiedMethod() != nullptr) {
Vladimir Markof096aad2014-01-23 15:51:58 +00001492 const MethodReference* devirt_target = mUnit->GetVerifiedMethod()->GetDevirtTarget(dex_pc);
1493
1494 stats_flags = IsFastInvoke(
1495 soa, dex_cache, class_loader, mUnit, referrer_class, resolved_method,
1496 invoke_type, target_method, devirt_target, direct_code, direct_method);
1497 result = stats_flags != 0;
1498 } else {
1499 // Devirtualization not enabled. Inline IsFastInvoke(), dropping the devirtualization parts.
1500 if (UNLIKELY(referrer_class == nullptr) ||
1501 UNLIKELY(!referrer_class->CanAccessResolvedMethod(resolved_method->GetDeclaringClass(),
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001502 resolved_method, dex_cache.Get(),
Vladimir Markof096aad2014-01-23 15:51:58 +00001503 target_method->dex_method_index)) ||
1504 *invoke_type == kSuper) {
1505 // Slow path. (Without devirtualization, all super calls go slow path as well.)
1506 } else {
1507 // Sharpening failed so generate a regular resolved method dispatch.
1508 stats_flags = kFlagMethodResolved;
1509 GetCodeAndMethodForDirectCall(invoke_type, *invoke_type, false, referrer_class, resolved_method,
1510 &stats_flags, target_method, direct_code, direct_method);
1511 result = true;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001512 }
1513 }
1514 }
Vladimir Markof096aad2014-01-23 15:51:58 +00001515 if (!result) {
1516 // Conservative defaults.
1517 *vtable_idx = -1;
1518 *direct_code = 0u;
1519 *direct_method = 0u;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001520 }
1521 if (update_stats) {
Vladimir Markof096aad2014-01-23 15:51:58 +00001522 ProcessedInvoke(orig_invoke_type, stats_flags);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001523 }
Vladimir Markof096aad2014-01-23 15:51:58 +00001524 return result;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001525}
1526
Vladimir Marko2730db02014-01-27 11:15:17 +00001527const VerifiedMethod* CompilerDriver::GetVerifiedMethod(const DexFile* dex_file,
1528 uint32_t method_idx) const {
1529 MethodReference ref(dex_file, method_idx);
1530 return verification_results_->GetVerifiedMethod(ref);
1531}
1532
1533bool CompilerDriver::IsSafeCast(const DexCompilationUnit* mUnit, uint32_t dex_pc) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001534 if (!compiler_options_->IsVerificationEnabled()) {
1535 // If we didn't verify, every cast has to be treated as non-safe.
1536 return false;
1537 }
Vladimir Marko2730db02014-01-27 11:15:17 +00001538 DCHECK(mUnit->GetVerifiedMethod() != nullptr);
1539 bool result = mUnit->GetVerifiedMethod()->IsSafeCast(dex_pc);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001540 if (result) {
1541 stats_->SafeCast();
1542 } else {
1543 stats_->NotASafeCast();
1544 }
1545 return result;
1546}
1547
Brian Carlstrom7940e442013-07-12 13:46:57 -07001548class ParallelCompilationManager {
1549 public:
1550 typedef void Callback(const ParallelCompilationManager* manager, size_t index);
1551
1552 ParallelCompilationManager(ClassLinker* class_linker,
1553 jobject class_loader,
1554 CompilerDriver* compiler,
1555 const DexFile* dex_file,
Andreas Gampede7b4362014-07-28 18:38:57 -07001556 const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -08001557 ThreadPool* thread_pool)
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001558 : index_(0),
1559 class_linker_(class_linker),
Brian Carlstrom7940e442013-07-12 13:46:57 -07001560 class_loader_(class_loader),
1561 compiler_(compiler),
1562 dex_file_(dex_file),
Andreas Gampede7b4362014-07-28 18:38:57 -07001563 dex_files_(dex_files),
Ian Rogers3d504072014-03-01 09:16:49 -08001564 thread_pool_(thread_pool) {}
Brian Carlstrom7940e442013-07-12 13:46:57 -07001565
1566 ClassLinker* GetClassLinker() const {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001567 CHECK(class_linker_ != nullptr);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001568 return class_linker_;
1569 }
1570
1571 jobject GetClassLoader() const {
1572 return class_loader_;
1573 }
1574
1575 CompilerDriver* GetCompiler() const {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001576 CHECK(compiler_ != nullptr);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001577 return compiler_;
1578 }
1579
1580 const DexFile* GetDexFile() const {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001581 CHECK(dex_file_ != nullptr);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001582 return dex_file_;
1583 }
1584
Andreas Gampede7b4362014-07-28 18:38:57 -07001585 const std::vector<const DexFile*>& GetDexFiles() const {
1586 return dex_files_;
1587 }
1588
Brian Carlstrom7940e442013-07-12 13:46:57 -07001589 void ForAll(size_t begin, size_t end, Callback callback, size_t work_units) {
1590 Thread* self = Thread::Current();
1591 self->AssertNoPendingException();
1592 CHECK_GT(work_units, 0U);
1593
Ian Rogers3e5cf302014-05-20 16:40:37 -07001594 index_.StoreRelaxed(begin);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001595 for (size_t i = 0; i < work_units; ++i) {
Sebastien Hertz501baec2013-12-13 12:02:36 +01001596 thread_pool_->AddTask(self, new ForAllClosure(this, end, callback));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001597 }
1598 thread_pool_->StartWorkers(self);
1599
1600 // Ensure we're suspended while we're blocked waiting for the other threads to finish (worker
1601 // thread destructor's called below perform join).
1602 CHECK_NE(self->GetState(), kRunnable);
1603
1604 // Wait for all the worker threads to finish.
1605 thread_pool_->Wait(self, true, false);
1606 }
1607
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001608 size_t NextIndex() {
Ian Rogers3e5cf302014-05-20 16:40:37 -07001609 return index_.FetchAndAddSequentiallyConsistent(1);
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001610 }
1611
Brian Carlstrom7940e442013-07-12 13:46:57 -07001612 private:
Brian Carlstrom7940e442013-07-12 13:46:57 -07001613 class ForAllClosure : public Task {
1614 public:
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001615 ForAllClosure(ParallelCompilationManager* manager, size_t end, Callback* callback)
Brian Carlstrom7940e442013-07-12 13:46:57 -07001616 : manager_(manager),
Brian Carlstrom7940e442013-07-12 13:46:57 -07001617 end_(end),
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001618 callback_(callback) {}
Brian Carlstrom7940e442013-07-12 13:46:57 -07001619
1620 virtual void Run(Thread* self) {
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001621 while (true) {
1622 const size_t index = manager_->NextIndex();
1623 if (UNLIKELY(index >= end_)) {
1624 break;
1625 }
1626 callback_(manager_, index);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001627 self->AssertNoPendingException();
1628 }
1629 }
1630
1631 virtual void Finalize() {
1632 delete this;
1633 }
Brian Carlstrom0cd7ec22013-07-17 23:40:20 -07001634
Brian Carlstrom7940e442013-07-12 13:46:57 -07001635 private:
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001636 ParallelCompilationManager* const manager_;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001637 const size_t end_;
Bernhard Rosenkränzer46053622013-12-12 02:15:52 +01001638 Callback* const callback_;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001639 };
1640
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001641 AtomicInteger index_;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001642 ClassLinker* const class_linker_;
1643 const jobject class_loader_;
1644 CompilerDriver* const compiler_;
1645 const DexFile* const dex_file_;
Andreas Gampede7b4362014-07-28 18:38:57 -07001646 const std::vector<const DexFile*>& dex_files_;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001647 ThreadPool* const thread_pool_;
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001648
1649 DISALLOW_COPY_AND_ASSIGN(ParallelCompilationManager);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001650};
1651
Jeff Hao0e49b422013-11-08 12:16:56 -08001652// A fast version of SkipClass above if the class pointer is available
1653// that avoids the expensive FindInClassPath search.
1654static bool SkipClass(jobject class_loader, const DexFile& dex_file, mirror::Class* klass)
1655 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001656 DCHECK(klass != nullptr);
Jeff Hao0e49b422013-11-08 12:16:56 -08001657 const DexFile& original_dex_file = *klass->GetDexCache()->GetDexFile();
1658 if (&dex_file != &original_dex_file) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001659 if (class_loader == nullptr) {
Jeff Hao0e49b422013-11-08 12:16:56 -08001660 LOG(WARNING) << "Skipping class " << PrettyDescriptor(klass) << " from "
1661 << dex_file.GetLocation() << " previously found in "
1662 << original_dex_file.GetLocation();
1663 }
1664 return true;
1665 }
1666 return false;
1667}
1668
Mathieu Chartier70b63482014-06-27 17:19:04 -07001669static void CheckAndClearResolveException(Thread* self)
1670 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
1671 CHECK(self->IsExceptionPending());
Nicolas Geoffray14691c52015-03-05 10:40:17 +00001672 mirror::Throwable* exception = self->GetException();
Ian Rogers1ff3c982014-08-12 02:30:58 -07001673 std::string temp;
1674 const char* descriptor = exception->GetClass()->GetDescriptor(&temp);
1675 const char* expected_exceptions[] = {
1676 "Ljava/lang/IllegalAccessError;",
1677 "Ljava/lang/IncompatibleClassChangeError;",
1678 "Ljava/lang/InstantiationError;",
Brian Carlstrom898fcb52014-08-25 23:07:30 -07001679 "Ljava/lang/LinkageError;",
Ian Rogers1ff3c982014-08-12 02:30:58 -07001680 "Ljava/lang/NoClassDefFoundError;",
1681 "Ljava/lang/NoSuchFieldError;",
1682 "Ljava/lang/NoSuchMethodError;"
1683 };
1684 bool found = false;
1685 for (size_t i = 0; (found == false) && (i < arraysize(expected_exceptions)); ++i) {
1686 if (strcmp(descriptor, expected_exceptions[i]) == 0) {
1687 found = true;
1688 }
1689 }
1690 if (!found) {
Brian Carlstrom898fcb52014-08-25 23:07:30 -07001691 LOG(FATAL) << "Unexpected exception " << exception->Dump();
Mathieu Chartier70b63482014-06-27 17:19:04 -07001692 }
1693 self->ClearException();
1694}
1695
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001696static void ResolveClassFieldsAndMethods(const ParallelCompilationManager* manager,
1697 size_t class_def_index)
Brian Carlstrom7940e442013-07-12 13:46:57 -07001698 LOCKS_EXCLUDED(Locks::mutator_lock_) {
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07001699 ATRACE_CALL();
Ian Rogersbe7149f2013-08-20 09:29:39 -07001700 Thread* self = Thread::Current();
1701 jobject jclass_loader = manager->GetClassLoader();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001702 const DexFile& dex_file = *manager->GetDexFile();
Ian Rogersbe7149f2013-08-20 09:29:39 -07001703 ClassLinker* class_linker = manager->GetClassLinker();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001704
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001705 // If an instance field is final then we need to have a barrier on the return, static final
1706 // fields are assigned within the lock held for class initialization. Conservatively assume
1707 // constructor barriers are always required.
1708 bool requires_constructor_barrier = true;
1709
Brian Carlstrom7940e442013-07-12 13:46:57 -07001710 // Method and Field are the worst. We can't resolve without either
1711 // context from the code use (to disambiguate virtual vs direct
1712 // method and instance vs static field) or from class
1713 // definitions. While the compiler will resolve what it can as it
1714 // needs it, here we try to resolve fields and methods used in class
1715 // definitions, since many of them many never be referenced by
1716 // generated code.
1717 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
Ian Rogers68b56852014-08-29 20:19:11 -07001718 ScopedObjectAccess soa(self);
1719 StackHandleScope<2> hs(soa.Self());
1720 Handle<mirror::ClassLoader> class_loader(
1721 hs.NewHandle(soa.Decode<mirror::ClassLoader*>(jclass_loader)));
1722 Handle<mirror::DexCache> dex_cache(hs.NewHandle(class_linker->FindDexCache(dex_file)));
1723 // Resolve the class.
1724 mirror::Class* klass = class_linker->ResolveType(dex_file, class_def.class_idx_, dex_cache,
1725 class_loader);
1726 bool resolve_fields_and_methods;
1727 if (klass == nullptr) {
1728 // Class couldn't be resolved, for example, super-class is in a different dex file. Don't
1729 // attempt to resolve methods and fields when there is no declaring class.
1730 CheckAndClearResolveException(soa.Self());
1731 resolve_fields_and_methods = false;
1732 } else {
1733 // We successfully resolved a class, should we skip it?
1734 if (SkipClass(jclass_loader, dex_file, klass)) {
1735 return;
Brian Carlstromcb5f5e52013-09-23 17:48:16 -07001736 }
Ian Rogers68b56852014-08-29 20:19:11 -07001737 // We want to resolve the methods and fields eagerly.
1738 resolve_fields_and_methods = true;
1739 }
1740 // Note the class_data pointer advances through the headers,
1741 // static fields, instance fields, direct methods, and virtual
1742 // methods.
Ian Rogers13735952014-10-08 12:43:28 -07001743 const uint8_t* class_data = dex_file.GetClassData(class_def);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001744 if (class_data == nullptr) {
Ian Rogers68b56852014-08-29 20:19:11 -07001745 // Empty class such as a marker interface.
1746 requires_constructor_barrier = false;
1747 } else {
1748 ClassDataItemIterator it(dex_file, class_data);
1749 while (it.HasNextStaticField()) {
1750 if (resolve_fields_and_methods) {
Mathieu Chartierc7853442015-03-27 14:35:38 -07001751 ArtField* field = class_linker->ResolveField(dex_file, it.GetMemberIndex(),
Ian Rogers68b56852014-08-29 20:19:11 -07001752 dex_cache, class_loader, true);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001753 if (field == nullptr) {
Ian Rogers68b56852014-08-29 20:19:11 -07001754 CheckAndClearResolveException(soa.Self());
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001755 }
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001756 }
Ian Rogers68b56852014-08-29 20:19:11 -07001757 it.Next();
1758 }
1759 // We require a constructor barrier if there are final instance fields.
1760 requires_constructor_barrier = false;
1761 while (it.HasNextInstanceField()) {
Andreas Gampe51829322014-08-25 15:05:04 -07001762 if (it.MemberIsFinal()) {
Ian Rogers68b56852014-08-29 20:19:11 -07001763 requires_constructor_barrier = true;
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001764 }
1765 if (resolve_fields_and_methods) {
Mathieu Chartierc7853442015-03-27 14:35:38 -07001766 ArtField* field = class_linker->ResolveField(dex_file, it.GetMemberIndex(),
Ian Rogers68b56852014-08-29 20:19:11 -07001767 dex_cache, class_loader, false);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001768 if (field == nullptr) {
Ian Rogers68b56852014-08-29 20:19:11 -07001769 CheckAndClearResolveException(soa.Self());
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001770 }
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001771 }
Ian Rogers68b56852014-08-29 20:19:11 -07001772 it.Next();
1773 }
1774 if (resolve_fields_and_methods) {
1775 while (it.HasNextDirectMethod()) {
1776 mirror::ArtMethod* method = class_linker->ResolveMethod(dex_file, it.GetMemberIndex(),
1777 dex_cache, class_loader,
1778 NullHandle<mirror::ArtMethod>(),
1779 it.GetMethodInvokeType(class_def));
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001780 if (method == nullptr) {
Ian Rogers68b56852014-08-29 20:19:11 -07001781 CheckAndClearResolveException(soa.Self());
1782 }
1783 it.Next();
1784 }
1785 while (it.HasNextVirtualMethod()) {
1786 mirror::ArtMethod* method = class_linker->ResolveMethod(dex_file, it.GetMemberIndex(),
1787 dex_cache, class_loader,
1788 NullHandle<mirror::ArtMethod>(),
1789 it.GetMethodInvokeType(class_def));
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001790 if (method == nullptr) {
Ian Rogers68b56852014-08-29 20:19:11 -07001791 CheckAndClearResolveException(soa.Self());
1792 }
1793 it.Next();
1794 }
1795 DCHECK(!it.HasNext());
Brian Carlstrom7940e442013-07-12 13:46:57 -07001796 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001797 }
1798 if (requires_constructor_barrier) {
Ian Rogersbe7149f2013-08-20 09:29:39 -07001799 manager->GetCompiler()->AddRequiresConstructorBarrier(self, &dex_file, class_def_index);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001800 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001801}
1802
1803static void ResolveType(const ParallelCompilationManager* manager, size_t type_idx)
1804 LOCKS_EXCLUDED(Locks::mutator_lock_) {
1805 // Class derived values are more complicated, they require the linker and loader.
1806 ScopedObjectAccess soa(Thread::Current());
1807 ClassLinker* class_linker = manager->GetClassLinker();
1808 const DexFile& dex_file = *manager->GetDexFile();
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001809 StackHandleScope<2> hs(soa.Self());
1810 Handle<mirror::DexCache> dex_cache(hs.NewHandle(class_linker->FindDexCache(dex_file)));
1811 Handle<mirror::ClassLoader> class_loader(
1812 hs.NewHandle(soa.Decode<mirror::ClassLoader*>(manager->GetClassLoader())));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001813 mirror::Class* klass = class_linker->ResolveType(dex_file, type_idx, dex_cache, class_loader);
1814
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001815 if (klass == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001816 CHECK(soa.Self()->IsExceptionPending());
Nicolas Geoffray14691c52015-03-05 10:40:17 +00001817 mirror::Throwable* exception = soa.Self()->GetException();
Ian Rogersa436fde2013-08-27 23:34:06 -07001818 VLOG(compiler) << "Exception during type resolution: " << exception->Dump();
Mathieu Chartierf8322842014-05-16 10:59:25 -07001819 if (exception->GetClass()->DescriptorEquals("Ljava/lang/OutOfMemoryError;")) {
Ian Rogersa436fde2013-08-27 23:34:06 -07001820 // There's little point continuing compilation if the heap is exhausted.
1821 LOG(FATAL) << "Out of memory during type resolution for compilation";
1822 }
1823 soa.Self()->ClearException();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001824 }
1825}
1826
1827void CompilerDriver::ResolveDexFile(jobject class_loader, const DexFile& dex_file,
Andreas Gampede7b4362014-07-28 18:38:57 -07001828 const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -08001829 ThreadPool* thread_pool, TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001830 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
1831
1832 // TODO: we could resolve strings here, although the string table is largely filled with class
1833 // and method names.
1834
Andreas Gampede7b4362014-07-28 18:38:57 -07001835 ParallelCompilationManager context(class_linker, class_loader, this, &dex_file, dex_files,
1836 thread_pool);
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001837 if (IsImage()) {
1838 // For images we resolve all types, such as array, whereas for applications just those with
1839 // classdefs are resolved by ResolveClassFieldsAndMethods.
Mathieu Chartierf5997b42014-06-20 10:37:54 -07001840 TimingLogger::ScopedTiming t("Resolve Types", timings);
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001841 context.ForAll(0, dex_file.NumTypeIds(), ResolveType, thread_count_);
1842 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001843
Mathieu Chartierf5997b42014-06-20 10:37:54 -07001844 TimingLogger::ScopedTiming t("Resolve MethodsAndFields", timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001845 context.ForAll(0, dex_file.NumClassDefs(), ResolveClassFieldsAndMethods, thread_count_);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001846}
1847
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001848void CompilerDriver::SetVerified(jobject class_loader, const std::vector<const DexFile*>& dex_files,
1849 ThreadPool* thread_pool, TimingLogger* timings) {
1850 for (size_t i = 0; i != dex_files.size(); ++i) {
1851 const DexFile* dex_file = dex_files[i];
1852 CHECK(dex_file != nullptr);
1853 SetVerifiedDexFile(class_loader, *dex_file, dex_files, thread_pool, timings);
1854 }
1855}
1856
Brian Carlstrom7940e442013-07-12 13:46:57 -07001857void CompilerDriver::Verify(jobject class_loader, const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -08001858 ThreadPool* thread_pool, TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001859 for (size_t i = 0; i != dex_files.size(); ++i) {
1860 const DexFile* dex_file = dex_files[i];
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001861 CHECK(dex_file != nullptr);
Andreas Gampede7b4362014-07-28 18:38:57 -07001862 VerifyDexFile(class_loader, *dex_file, dex_files, thread_pool, timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001863 }
1864}
1865
1866static void VerifyClass(const ParallelCompilationManager* manager, size_t class_def_index)
1867 LOCKS_EXCLUDED(Locks::mutator_lock_) {
Anwar Ghuloum67f99412013-08-12 14:19:48 -07001868 ATRACE_CALL();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001869 ScopedObjectAccess soa(Thread::Current());
Jeff Hao0e49b422013-11-08 12:16:56 -08001870 const DexFile& dex_file = *manager->GetDexFile();
1871 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
1872 const char* descriptor = dex_file.GetClassDescriptor(class_def);
1873 ClassLinker* class_linker = manager->GetClassLinker();
1874 jobject jclass_loader = manager->GetClassLoader();
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001875 StackHandleScope<3> hs(soa.Self());
1876 Handle<mirror::ClassLoader> class_loader(
1877 hs.NewHandle(soa.Decode<mirror::ClassLoader*>(jclass_loader)));
1878 Handle<mirror::Class> klass(
1879 hs.NewHandle(class_linker->FindClass(soa.Self(), descriptor, class_loader)));
1880 if (klass.Get() == nullptr) {
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001881 CHECK(soa.Self()->IsExceptionPending());
Brian Carlstrom7940e442013-07-12 13:46:57 -07001882 soa.Self()->ClearException();
1883
1884 /*
1885 * At compile time, we can still structurally verify the class even if FindClass fails.
1886 * This is to ensure the class is structurally sound for compilation. An unsound class
1887 * will be rejected by the verifier and later skipped during compilation in the compiler.
1888 */
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001889 Handle<mirror::DexCache> dex_cache(hs.NewHandle(class_linker->FindDexCache(dex_file)));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001890 std::string error_msg;
Ian Rogers7b078e82014-09-10 14:44:24 -07001891 if (verifier::MethodVerifier::VerifyClass(soa.Self(), &dex_file, dex_cache, class_loader,
1892 &class_def, true, &error_msg) ==
Brian Carlstrom7940e442013-07-12 13:46:57 -07001893 verifier::MethodVerifier::kHardFailure) {
Jeff Hao0e49b422013-11-08 12:16:56 -08001894 LOG(ERROR) << "Verification failed on class " << PrettyDescriptor(descriptor)
Brian Carlstrom7940e442013-07-12 13:46:57 -07001895 << " because: " << error_msg;
Andreas Gampe6cf49e52015-03-05 13:08:45 -08001896 manager->GetCompiler()->SetHadHardVerifierFailure();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001897 }
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001898 } else if (!SkipClass(jclass_loader, dex_file, klass.Get())) {
1899 CHECK(klass->IsResolved()) << PrettyClass(klass.Get());
Ian Rogers7b078e82014-09-10 14:44:24 -07001900 class_linker->VerifyClass(soa.Self(), klass);
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001901
1902 if (klass->IsErroneous()) {
1903 // ClassLinker::VerifyClass throws, which isn't useful in the compiler.
1904 CHECK(soa.Self()->IsExceptionPending());
1905 soa.Self()->ClearException();
Andreas Gampe6cf49e52015-03-05 13:08:45 -08001906 manager->GetCompiler()->SetHadHardVerifierFailure();
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001907 }
1908
1909 CHECK(klass->IsCompileTimeVerified() || klass->IsErroneous())
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001910 << PrettyDescriptor(klass.Get()) << ": state=" << klass->GetStatus();
Andreas Gampe7ae063b2014-11-24 23:50:13 -08001911
1912 // It is *very* problematic if there are verification errors in the boot classpath. For example,
1913 // we rely on things working OK without verification when the decryption dialog is brought up.
1914 // So abort in a debug build if we find this violated.
1915 DCHECK(!manager->GetCompiler()->IsImage() || klass->IsVerified()) << "Boot classpath class " <<
1916 PrettyClass(klass.Get()) << " failed to fully verify.";
Brian Carlstrom7940e442013-07-12 13:46:57 -07001917 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001918 soa.Self()->AssertNoPendingException();
1919}
1920
1921void CompilerDriver::VerifyDexFile(jobject class_loader, const DexFile& dex_file,
Andreas Gampede7b4362014-07-28 18:38:57 -07001922 const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -08001923 ThreadPool* thread_pool, TimingLogger* timings) {
Mathieu Chartierf5997b42014-06-20 10:37:54 -07001924 TimingLogger::ScopedTiming t("Verify Dex File", timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001925 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Andreas Gampede7b4362014-07-28 18:38:57 -07001926 ParallelCompilationManager context(class_linker, class_loader, this, &dex_file, dex_files,
1927 thread_pool);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001928 context.ForAll(0, dex_file.NumClassDefs(), VerifyClass, thread_count_);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001929}
1930
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001931static void SetVerifiedClass(const ParallelCompilationManager* manager, size_t class_def_index)
1932 LOCKS_EXCLUDED(Locks::mutator_lock_) {
1933 ATRACE_CALL();
1934 ScopedObjectAccess soa(Thread::Current());
1935 const DexFile& dex_file = *manager->GetDexFile();
1936 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
1937 const char* descriptor = dex_file.GetClassDescriptor(class_def);
1938 ClassLinker* class_linker = manager->GetClassLinker();
1939 jobject jclass_loader = manager->GetClassLoader();
1940 StackHandleScope<3> hs(soa.Self());
1941 Handle<mirror::ClassLoader> class_loader(
1942 hs.NewHandle(soa.Decode<mirror::ClassLoader*>(jclass_loader)));
1943 Handle<mirror::Class> klass(
1944 hs.NewHandle(class_linker->FindClass(soa.Self(), descriptor, class_loader)));
1945 // Class might have failed resolution. Then don't set it to verified.
1946 if (klass.Get() != nullptr) {
1947 // Only do this if the class is resolved. If even resolution fails, quickening will go very,
1948 // very wrong.
1949 if (klass->IsResolved()) {
1950 if (klass->GetStatus() < mirror::Class::kStatusVerified) {
1951 ObjectLock<mirror::Class> lock(soa.Self(), klass);
Hiroshi Yamauchi5b783e62015-03-18 17:20:11 -07001952 mirror::Class::SetStatus(klass, mirror::Class::kStatusVerified, soa.Self());
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001953 }
1954 // Record the final class status if necessary.
1955 ClassReference ref(manager->GetDexFile(), class_def_index);
1956 manager->GetCompiler()->RecordClassStatus(ref, klass->GetStatus());
1957 }
Andreas Gampe61ff0092014-09-16 11:23:23 -07001958 } else {
1959 Thread* self = soa.Self();
1960 DCHECK(self->IsExceptionPending());
1961 self->ClearException();
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001962 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001963}
1964
1965void CompilerDriver::SetVerifiedDexFile(jobject class_loader, const DexFile& dex_file,
1966 const std::vector<const DexFile*>& dex_files,
1967 ThreadPool* thread_pool, TimingLogger* timings) {
1968 TimingLogger::ScopedTiming t("Verify Dex File", timings);
1969 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
1970 ParallelCompilationManager context(class_linker, class_loader, this, &dex_file, dex_files,
1971 thread_pool);
1972 context.ForAll(0, dex_file.NumClassDefs(), SetVerifiedClass, thread_count_);
1973}
1974
Brian Carlstrom7940e442013-07-12 13:46:57 -07001975static void InitializeClass(const ParallelCompilationManager* manager, size_t class_def_index)
1976 LOCKS_EXCLUDED(Locks::mutator_lock_) {
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07001977 ATRACE_CALL();
Jeff Hao0e49b422013-11-08 12:16:56 -08001978 jobject jclass_loader = manager->GetClassLoader();
1979 const DexFile& dex_file = *manager->GetDexFile();
1980 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
Jeff Haobcdbbfe2013-11-08 18:03:22 -08001981 const DexFile::TypeId& class_type_id = dex_file.GetTypeId(class_def.class_idx_);
1982 const char* descriptor = dex_file.StringDataByIdx(class_type_id.descriptor_idx_);
Ian Rogersfc0e94b2013-09-23 23:51:32 -07001983
Brian Carlstrom7940e442013-07-12 13:46:57 -07001984 ScopedObjectAccess soa(Thread::Current());
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001985 StackHandleScope<3> hs(soa.Self());
1986 Handle<mirror::ClassLoader> class_loader(
1987 hs.NewHandle(soa.Decode<mirror::ClassLoader*>(jclass_loader)));
1988 Handle<mirror::Class> klass(
1989 hs.NewHandle(manager->GetClassLinker()->FindClass(soa.Self(), descriptor, class_loader)));
Jeff Hao0e49b422013-11-08 12:16:56 -08001990
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001991 if (klass.Get() != nullptr && !SkipClass(jclass_loader, dex_file, klass.Get())) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001992 // Only try to initialize classes that were successfully verified.
1993 if (klass->IsVerified()) {
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07001994 // Attempt to initialize the class but bail if we either need to initialize the super-class
1995 // or static fields.
Ian Rogers7b078e82014-09-10 14:44:24 -07001996 manager->GetClassLinker()->EnsureInitialized(soa.Self(), klass, false, false);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001997 if (!klass->IsInitialized()) {
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07001998 // We don't want non-trivial class initialization occurring on multiple threads due to
1999 // deadlock problems. For example, a parent class is initialized (holding its lock) that
2000 // refers to a sub-class in its static/class initializer causing it to try to acquire the
2001 // sub-class' lock. While on a second thread the sub-class is initialized (holding its lock)
2002 // after first initializing its parents, whose locks are acquired. This leads to a
2003 // parent-to-child and a child-to-parent lock ordering and consequent potential deadlock.
2004 // We need to use an ObjectLock due to potential suspension in the interpreting code. Rather
2005 // than use a special Object for the purpose we use the Class of java.lang.Class.
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07002006 Handle<mirror::Class> h_klass(hs.NewHandle(klass->GetClass()));
Mathieu Chartierdb2633c2014-05-16 09:59:29 -07002007 ObjectLock<mirror::Class> lock(soa.Self(), h_klass);
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07002008 // Attempt to initialize allowing initialization of parent classes but still not static
2009 // fields.
Ian Rogers7b078e82014-09-10 14:44:24 -07002010 manager->GetClassLinker()->EnsureInitialized(soa.Self(), klass, false, true);
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07002011 if (!klass->IsInitialized()) {
2012 // We need to initialize static fields, we only do this for image classes that aren't
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01002013 // marked with the $NoPreloadHolder (which implies this should not be initialized early).
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07002014 bool can_init_static_fields = manager->GetCompiler()->IsImage() &&
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01002015 manager->GetCompiler()->IsImageClass(descriptor) &&
2016 !StringPiece(descriptor).ends_with("$NoPreloadHolder;");
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07002017 if (can_init_static_fields) {
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01002018 VLOG(compiler) << "Initializing: " << descriptor;
Ian Rogersc45b8b52014-05-03 01:39:59 -07002019 // TODO multithreading support. We should ensure the current compilation thread has
2020 // exclusive access to the runtime and the transaction. To achieve this, we could use
2021 // a ReaderWriterMutex but we're holding the mutator lock so we fail mutex sanity
2022 // checks in Thread::AssertThreadSuspensionIsAllowable.
2023 Runtime* const runtime = Runtime::Current();
2024 Transaction transaction;
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01002025
Ian Rogersc45b8b52014-05-03 01:39:59 -07002026 // Run the class initializer in transaction mode.
2027 runtime->EnterTransactionMode(&transaction);
2028 const mirror::Class::Status old_status = klass->GetStatus();
Ian Rogers7b078e82014-09-10 14:44:24 -07002029 bool success = manager->GetClassLinker()->EnsureInitialized(soa.Self(), klass, true,
2030 true);
Ian Rogersc45b8b52014-05-03 01:39:59 -07002031 // TODO we detach transaction from runtime to indicate we quit the transactional
2032 // mode which prevents the GC from visiting objects modified during the transaction.
2033 // Ensure GC is not run so don't access freed objects when aborting transaction.
Mathieu Chartier2d5f39e2014-09-19 17:52:37 -07002034
2035 ScopedAssertNoThreadSuspension ants(soa.Self(), "Transaction end");
Ian Rogersc45b8b52014-05-03 01:39:59 -07002036 runtime->ExitTransactionMode();
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01002037
Ian Rogersc45b8b52014-05-03 01:39:59 -07002038 if (!success) {
2039 CHECK(soa.Self()->IsExceptionPending());
Nicolas Geoffray14691c52015-03-05 10:40:17 +00002040 mirror::Throwable* exception = soa.Self()->GetException();
Ian Rogersc45b8b52014-05-03 01:39:59 -07002041 VLOG(compiler) << "Initialization of " << descriptor << " aborted because of "
2042 << exception->Dump();
Andreas Gampedbfe2542014-11-25 22:21:42 -08002043 std::ostream* file_log = manager->GetCompiler()->
2044 GetCompilerOptions().GetInitFailureOutput();
2045 if (file_log != nullptr) {
2046 *file_log << descriptor << "\n";
2047 *file_log << exception->Dump() << "\n";
2048 }
Ian Rogersc45b8b52014-05-03 01:39:59 -07002049 soa.Self()->ClearException();
Sebastien Hertz1c80bec2015-02-03 11:58:06 +01002050 transaction.Rollback();
Ian Rogersc45b8b52014-05-03 01:39:59 -07002051 CHECK_EQ(old_status, klass->GetStatus()) << "Previous class status not restored";
Brian Carlstrom7940e442013-07-12 13:46:57 -07002052 }
2053 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002054 }
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07002055 soa.Self()->AssertNoPendingException();
Brian Carlstrom7940e442013-07-12 13:46:57 -07002056 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002057 }
2058 // Record the final class status if necessary.
Brian Carlstrom7940e442013-07-12 13:46:57 -07002059 ClassReference ref(manager->GetDexFile(), class_def_index);
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07002060 manager->GetCompiler()->RecordClassStatus(ref, klass->GetStatus());
Brian Carlstrom7940e442013-07-12 13:46:57 -07002061 }
2062 // Clear any class not found or verification exceptions.
2063 soa.Self()->ClearException();
2064}
2065
2066void CompilerDriver::InitializeClasses(jobject jni_class_loader, const DexFile& dex_file,
Andreas Gampede7b4362014-07-28 18:38:57 -07002067 const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -08002068 ThreadPool* thread_pool, TimingLogger* timings) {
Mathieu Chartierf5997b42014-06-20 10:37:54 -07002069 TimingLogger::ScopedTiming t("InitializeNoClinit", timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002070 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Andreas Gampede7b4362014-07-28 18:38:57 -07002071 ParallelCompilationManager context(class_linker, jni_class_loader, this, &dex_file, dex_files,
2072 thread_pool);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01002073 size_t thread_count;
2074 if (IsImage()) {
2075 // TODO: remove this when transactional mode supports multithreading.
2076 thread_count = 1U;
2077 } else {
2078 thread_count = thread_count_;
2079 }
2080 context.ForAll(0, dex_file.NumClassDefs(), InitializeClass, thread_count);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002081}
2082
2083void CompilerDriver::InitializeClasses(jobject class_loader,
2084 const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -08002085 ThreadPool* thread_pool, TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07002086 for (size_t i = 0; i != dex_files.size(); ++i) {
2087 const DexFile* dex_file = dex_files[i];
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002088 CHECK(dex_file != nullptr);
Andreas Gampede7b4362014-07-28 18:38:57 -07002089 InitializeClasses(class_loader, *dex_file, dex_files, thread_pool, timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002090 }
Mathieu Chartier093ef212014-08-11 13:52:12 -07002091 if (IsImage()) {
2092 // Prune garbage objects created during aborted transactions.
2093 Runtime::Current()->GetHeap()->CollectGarbage(true);
2094 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002095}
2096
2097void CompilerDriver::Compile(jobject class_loader, const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -08002098 ThreadPool* thread_pool, TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07002099 for (size_t i = 0; i != dex_files.size(); ++i) {
2100 const DexFile* dex_file = dex_files[i];
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002101 CHECK(dex_file != nullptr);
Andreas Gampede7b4362014-07-28 18:38:57 -07002102 CompileDexFile(class_loader, *dex_file, dex_files, thread_pool, timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002103 }
Andreas Gampe8d295f82015-01-20 14:50:21 -08002104 VLOG(compiler) << "Compile: " << GetMemoryUsageString(false);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002105}
2106
Mathieu Chartier2cebb242015-04-21 16:50:40 -07002107void CompilerDriver::CompileClass(const ParallelCompilationManager* manager,
2108 size_t class_def_index) {
Anwar Ghuloum67f99412013-08-12 14:19:48 -07002109 ATRACE_CALL();
Brian Carlstrom7940e442013-07-12 13:46:57 -07002110 const DexFile& dex_file = *manager->GetDexFile();
2111 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
Ian Rogersbe7149f2013-08-20 09:29:39 -07002112 ClassLinker* class_linker = manager->GetClassLinker();
Ian Rogers1ff3c982014-08-12 02:30:58 -07002113 jobject jclass_loader = manager->GetClassLoader();
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08002114 Thread* self = Thread::Current();
Ian Rogers1ff3c982014-08-12 02:30:58 -07002115 {
2116 // Use a scoped object access to perform to the quick SkipClass check.
2117 const char* descriptor = dex_file.GetClassDescriptor(class_def);
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08002118 ScopedObjectAccess soa(self);
Ian Rogers1ff3c982014-08-12 02:30:58 -07002119 StackHandleScope<3> hs(soa.Self());
2120 Handle<mirror::ClassLoader> class_loader(
2121 hs.NewHandle(soa.Decode<mirror::ClassLoader*>(jclass_loader)));
2122 Handle<mirror::Class> klass(
2123 hs.NewHandle(class_linker->FindClass(soa.Self(), descriptor, class_loader)));
2124 if (klass.Get() == nullptr) {
2125 CHECK(soa.Self()->IsExceptionPending());
2126 soa.Self()->ClearException();
2127 } else if (SkipClass(jclass_loader, dex_file, klass.Get())) {
2128 return;
2129 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002130 }
2131 ClassReference ref(&dex_file, class_def_index);
2132 // Skip compiling classes with generic verifier failures since they will still fail at runtime
Vladimir Markoc7f83202014-01-24 17:55:18 +00002133 if (manager->GetCompiler()->verification_results_->IsClassRejected(ref)) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07002134 return;
2135 }
Ian Rogers13735952014-10-08 12:43:28 -07002136 const uint8_t* class_data = dex_file.GetClassData(class_def);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002137 if (class_data == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07002138 // empty class, probably a marker interface
2139 return;
2140 }
Anwar Ghuloum67f99412013-08-12 14:19:48 -07002141
Mathieu Chartiere86deef2015-03-19 13:43:37 -07002142 CompilerDriver* const driver = manager->GetCompiler();
2143
Brian Carlstrom7940e442013-07-12 13:46:57 -07002144 // Can we run DEX-to-DEX compiler on this class ?
Sebastien Hertz75021222013-07-16 18:34:50 +02002145 DexToDexCompilationLevel dex_to_dex_compilation_level = kDontDexToDexCompile;
Brian Carlstrom7940e442013-07-12 13:46:57 -07002146 {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08002147 ScopedObjectAccess soa(self);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07002148 StackHandleScope<1> hs(soa.Self());
2149 Handle<mirror::ClassLoader> class_loader(
2150 hs.NewHandle(soa.Decode<mirror::ClassLoader*>(jclass_loader)));
Mathieu Chartiere86deef2015-03-19 13:43:37 -07002151 dex_to_dex_compilation_level = driver->GetDexToDexCompilationlevel(
2152 soa.Self(), class_loader, dex_file, class_def);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002153 }
2154 ClassDataItemIterator it(dex_file, class_data);
2155 // Skip fields
2156 while (it.HasNextStaticField()) {
2157 it.Next();
2158 }
2159 while (it.HasNextInstanceField()) {
2160 it.Next();
2161 }
Andreas Gampe4bf3ae92014-11-11 13:28:29 -08002162
2163 bool compilation_enabled = driver->IsClassToCompile(
2164 dex_file.StringByTypeIdx(class_def.class_idx_));
2165
Brian Carlstrom7940e442013-07-12 13:46:57 -07002166 // Compile direct methods
2167 int64_t previous_direct_method_idx = -1;
2168 while (it.HasNextDirectMethod()) {
2169 uint32_t method_idx = it.GetMemberIndex();
2170 if (method_idx == previous_direct_method_idx) {
2171 // smali can create dex files with two encoded_methods sharing the same method_idx
2172 // http://code.google.com/p/smali/issues/detail?id=119
2173 it.Next();
2174 continue;
2175 }
2176 previous_direct_method_idx = method_idx;
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08002177 driver->CompileMethod(self, it.GetMethodCodeItem(), it.GetMethodAccessFlags(),
Ian Rogersbe7149f2013-08-20 09:29:39 -07002178 it.GetMethodInvokeType(class_def), class_def_index,
Andreas Gampe4bf3ae92014-11-11 13:28:29 -08002179 method_idx, jclass_loader, dex_file, dex_to_dex_compilation_level,
2180 compilation_enabled);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002181 it.Next();
2182 }
2183 // Compile virtual methods
2184 int64_t previous_virtual_method_idx = -1;
2185 while (it.HasNextVirtualMethod()) {
2186 uint32_t method_idx = it.GetMemberIndex();
2187 if (method_idx == previous_virtual_method_idx) {
2188 // smali can create dex files with two encoded_methods sharing the same method_idx
2189 // http://code.google.com/p/smali/issues/detail?id=119
2190 it.Next();
2191 continue;
2192 }
2193 previous_virtual_method_idx = method_idx;
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08002194 driver->CompileMethod(self, it.GetMethodCodeItem(), it.GetMethodAccessFlags(),
Ian Rogersbe7149f2013-08-20 09:29:39 -07002195 it.GetMethodInvokeType(class_def), class_def_index,
Andreas Gampe4bf3ae92014-11-11 13:28:29 -08002196 method_idx, jclass_loader, dex_file, dex_to_dex_compilation_level,
2197 compilation_enabled);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002198 it.Next();
2199 }
2200 DCHECK(!it.HasNext());
2201}
2202
2203void CompilerDriver::CompileDexFile(jobject class_loader, const DexFile& dex_file,
Andreas Gampede7b4362014-07-28 18:38:57 -07002204 const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -08002205 ThreadPool* thread_pool, TimingLogger* timings) {
Mathieu Chartierf5997b42014-06-20 10:37:54 -07002206 TimingLogger::ScopedTiming t("Compile Dex File", timings);
Ian Rogersbe7149f2013-08-20 09:29:39 -07002207 ParallelCompilationManager context(Runtime::Current()->GetClassLinker(), class_loader, this,
Andreas Gampede7b4362014-07-28 18:38:57 -07002208 &dex_file, dex_files, thread_pool);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002209 context.ForAll(0, dex_file.NumClassDefs(), CompilerDriver::CompileClass, thread_count_);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002210}
2211
Ian Rogersa4a3f402014-10-20 18:10:34 -07002212// Does the runtime for the InstructionSet provide an implementation returned by
2213// GetQuickGenericJniStub allowing down calls that aren't compiled using a JNI compiler?
2214static bool InstructionSetHasGenericJniStub(InstructionSet isa) {
2215 switch (isa) {
2216 case kArm:
2217 case kArm64:
2218 case kThumb2:
Douglas Leung735b8552014-10-31 12:21:40 -07002219 case kMips:
Andreas Gampe57b34292015-01-14 15:45:59 -08002220 case kMips64:
Ian Rogersa4a3f402014-10-20 18:10:34 -07002221 case kX86:
2222 case kX86_64: return true;
2223 default: return false;
2224 }
2225}
2226
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08002227void CompilerDriver::CompileMethod(Thread* self, const DexFile::CodeItem* code_item,
2228 uint32_t access_flags, InvokeType invoke_type,
2229 uint16_t class_def_idx, uint32_t method_idx,
2230 jobject class_loader, const DexFile& dex_file,
Andreas Gampe4bf3ae92014-11-11 13:28:29 -08002231 DexToDexCompilationLevel dex_to_dex_compilation_level,
2232 bool compilation_enabled) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002233 CompiledMethod* compiled_method = nullptr;
Mathieu Chartier8e219ae2014-08-19 14:29:46 -07002234 uint64_t start_ns = kTimeCompileMethod ? NanoTime() : 0;
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002235 MethodReference method_ref(&dex_file, method_idx);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002236
2237 if ((access_flags & kAccNative) != 0) {
Ian Rogers0188ab72014-03-17 16:51:53 -07002238 // Are we interpreting only and have support for generic JNI down calls?
Jeff Hao4a200f52014-04-01 14:58:49 -07002239 if (!compiler_options_->IsCompilationEnabled() &&
Ian Rogersa4a3f402014-10-20 18:10:34 -07002240 InstructionSetHasGenericJniStub(instruction_set_)) {
Ian Rogers5b271492014-03-14 13:20:26 -07002241 // Leaving this empty will trigger the generic JNI version
2242 } else {
Goran Jakovljevic75c40d42015-04-03 15:45:21 +02002243 compiled_method = compiler_->JniCompile(access_flags, method_idx, dex_file);
2244 CHECK(compiled_method != nullptr);
Ian Rogers5b271492014-03-14 13:20:26 -07002245 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002246 } else if ((access_flags & kAccAbstract) != 0) {
Ian Rogersa4a3f402014-10-20 18:10:34 -07002247 // Abstract methods don't have code.
Brian Carlstrom7940e442013-07-12 13:46:57 -07002248 } else {
Andreas Gampe6c170c92014-12-17 14:35:46 -08002249 bool has_verified_method = verification_results_->GetVerifiedMethod(method_ref) != nullptr;
Andreas Gampe4bf3ae92014-11-11 13:28:29 -08002250 bool compile = compilation_enabled &&
Andreas Gampe6c170c92014-12-17 14:35:46 -08002251 // Basic checks, e.g., not <clinit>.
2252 verification_results_->IsCandidateForCompilation(method_ref, access_flags) &&
2253 // Did not fail to create VerifiedMethod metadata.
Andreas Gampe70bef0d2015-04-15 02:37:28 -07002254 has_verified_method &&
2255 // Is eligable for compilation by methods-to-compile filter.
2256 IsMethodToCompile(method_ref);
Sebastien Hertz4d4adb12013-07-24 16:14:19 +02002257 if (compile) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -07002258 // NOTE: if compiler declines to compile this method, it will return null.
Ian Rogers72d32622014-05-06 16:20:11 -07002259 compiled_method = compiler_->Compile(code_item, access_flags, invoke_type, class_def_idx,
2260 method_idx, class_loader, dex_file);
Sebastien Hertz17965ed2014-04-04 15:59:53 +02002261 }
2262 if (compiled_method == nullptr && dex_to_dex_compilation_level != kDontDexToDexCompile) {
2263 // TODO: add a command-line option to disable DEX-to-DEX compilation ?
Andreas Gampe6c170c92014-12-17 14:35:46 -08002264 // Do not optimize if a VerifiedMethod is missing. SafeCast elision, for example, relies on
2265 // it.
Sebastien Hertz75021222013-07-16 18:34:50 +02002266 (*dex_to_dex_compiler_)(*this, code_item, access_flags,
2267 invoke_type, class_def_idx,
2268 method_idx, class_loader, dex_file,
Andreas Gampe6c170c92014-12-17 14:35:46 -08002269 has_verified_method ? dex_to_dex_compilation_level : kRequired);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002270 }
2271 }
Mathieu Chartier8e219ae2014-08-19 14:29:46 -07002272 if (kTimeCompileMethod) {
2273 uint64_t duration_ns = NanoTime() - start_ns;
2274 if (duration_ns > MsToNs(compiler_->GetMaximumCompilationTimeBeforeWarning())) {
2275 LOG(WARNING) << "Compilation of " << PrettyMethod(method_idx, dex_file)
2276 << " took " << PrettyDuration(duration_ns);
2277 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002278 }
2279
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002280 if (compiled_method != nullptr) {
Vladimir Markof4da6752014-08-01 19:04:18 +01002281 // Count non-relative linker patches.
2282 size_t non_relative_linker_patch_count = 0u;
2283 for (const LinkerPatch& patch : compiled_method->GetPatches()) {
Vladimir Marko20f85592015-03-19 10:07:02 +00002284 if (!patch.IsPcRelative()) {
Vladimir Markof4da6752014-08-01 19:04:18 +01002285 ++non_relative_linker_patch_count;
2286 }
2287 }
Igor Murashkind6dee672014-10-16 18:36:16 -07002288 bool compile_pic = GetCompilerOptions().GetCompilePic(); // Off by default
2289 // When compiling with PIC, there should be zero non-relative linker patches
2290 CHECK(!compile_pic || non_relative_linker_patch_count == 0u);
2291
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002292 DCHECK(GetCompiledMethod(method_ref) == nullptr) << PrettyMethod(method_idx, dex_file);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002293 {
2294 MutexLock mu(self, compiled_methods_lock_);
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002295 compiled_methods_.Put(method_ref, compiled_method);
Vladimir Markof4da6752014-08-01 19:04:18 +01002296 non_relative_linker_patch_count_ += non_relative_linker_patch_count;
Brian Carlstrom7940e442013-07-12 13:46:57 -07002297 }
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002298 DCHECK(GetCompiledMethod(method_ref) != nullptr) << PrettyMethod(method_idx, dex_file);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002299 }
2300
Jeff Hao48699fb2015-04-06 14:21:37 -07002301 // Done compiling, delete the verified method to reduce native memory usage. Do not delete in
2302 // optimizing compiler, which may need the verified method again for inlining.
2303 if (compiler_kind_ != Compiler::kOptimizing) {
2304 verification_results_->RemoveVerifiedMethod(method_ref);
2305 }
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002306
Brian Carlstrom7940e442013-07-12 13:46:57 -07002307 if (self->IsExceptionPending()) {
2308 ScopedObjectAccess soa(self);
2309 LOG(FATAL) << "Unexpected exception compiling: " << PrettyMethod(method_idx, dex_file) << "\n"
Nicolas Geoffray14691c52015-03-05 10:40:17 +00002310 << self->GetException()->Dump();
Brian Carlstrom7940e442013-07-12 13:46:57 -07002311 }
2312}
2313
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08002314void CompilerDriver::RemoveCompiledMethod(const MethodReference& method_ref) {
2315 CompiledMethod* compiled_method = nullptr;
2316 {
2317 MutexLock mu(Thread::Current(), compiled_methods_lock_);
2318 auto it = compiled_methods_.find(method_ref);
2319 if (it != compiled_methods_.end()) {
2320 compiled_method = it->second;
2321 compiled_methods_.erase(it);
2322 }
2323 }
2324 if (compiled_method != nullptr) {
2325 CompiledMethod::ReleaseSwapAllocatedCompiledMethod(this, compiled_method);
2326 }
2327}
2328
Brian Carlstrom7940e442013-07-12 13:46:57 -07002329CompiledClass* CompilerDriver::GetCompiledClass(ClassReference ref) const {
2330 MutexLock mu(Thread::Current(), compiled_classes_lock_);
2331 ClassTable::const_iterator it = compiled_classes_.find(ref);
2332 if (it == compiled_classes_.end()) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002333 return nullptr;
Brian Carlstrom7940e442013-07-12 13:46:57 -07002334 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002335 CHECK(it->second != nullptr);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002336 return it->second;
2337}
2338
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07002339void CompilerDriver::RecordClassStatus(ClassReference ref, mirror::Class::Status status) {
2340 MutexLock mu(Thread::Current(), compiled_classes_lock_);
2341 auto it = compiled_classes_.find(ref);
2342 if (it == compiled_classes_.end() || it->second->GetStatus() != status) {
2343 // An entry doesn't exist or the status is lower than the new status.
2344 if (it != compiled_classes_.end()) {
2345 CHECK_GT(status, it->second->GetStatus());
2346 delete it->second;
2347 }
2348 switch (status) {
2349 case mirror::Class::kStatusNotReady:
2350 case mirror::Class::kStatusError:
2351 case mirror::Class::kStatusRetryVerificationAtRuntime:
2352 case mirror::Class::kStatusVerified:
2353 case mirror::Class::kStatusInitialized:
2354 break; // Expected states.
2355 default:
2356 LOG(FATAL) << "Unexpected class status for class "
2357 << PrettyDescriptor(ref.first->GetClassDescriptor(ref.first->GetClassDef(ref.second)))
2358 << " of " << status;
2359 }
2360 CompiledClass* compiled_class = new CompiledClass(status);
2361 compiled_classes_.Overwrite(ref, compiled_class);
2362 }
2363}
2364
Brian Carlstrom7940e442013-07-12 13:46:57 -07002365CompiledMethod* CompilerDriver::GetCompiledMethod(MethodReference ref) const {
2366 MutexLock mu(Thread::Current(), compiled_methods_lock_);
2367 MethodTable::const_iterator it = compiled_methods_.find(ref);
2368 if (it == compiled_methods_.end()) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002369 return nullptr;
Brian Carlstrom7940e442013-07-12 13:46:57 -07002370 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002371 CHECK(it->second != nullptr);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002372 return it->second;
2373}
2374
Calin Juravlef1c6d9e2015-04-13 18:42:21 +01002375bool CompilerDriver::IsMethodVerifiedWithoutFailures(uint32_t method_idx,
2376 uint16_t class_def_idx,
2377 const DexFile& dex_file) const {
2378 const VerifiedMethod* verified_method = GetVerifiedMethod(&dex_file, method_idx);
2379 if (verified_method != nullptr) {
2380 return !verified_method->HasVerificationFailures();
2381 }
2382
2383 // If we can't find verification metadata, check if this is a system class (we trust that system
2384 // classes have their methods verified). If it's not, be conservative and assume the method
2385 // has not been verified successfully.
2386
2387 // TODO: When compiling the boot image it should be safe to assume that everything is verified,
2388 // even if methods are not found in the verification cache.
2389 const char* descriptor = dex_file.GetClassDescriptor(dex_file.GetClassDef(class_def_idx));
2390 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
2391 Thread* self = Thread::Current();
2392 ScopedObjectAccess soa(self);
2393 bool is_system_class = class_linker->FindSystemClass(self, descriptor) != nullptr;
2394 if (!is_system_class) {
2395 self->ClearException();
2396 }
2397 return is_system_class;
2398}
2399
Vladimir Markof4da6752014-08-01 19:04:18 +01002400size_t CompilerDriver::GetNonRelativeLinkerPatchCount() const {
2401 MutexLock mu(Thread::Current(), compiled_methods_lock_);
2402 return non_relative_linker_patch_count_;
2403}
2404
Brian Carlstrom7940e442013-07-12 13:46:57 -07002405void CompilerDriver::AddRequiresConstructorBarrier(Thread* self, const DexFile* dex_file,
Ian Rogers8b2c0b92013-09-19 02:56:49 -07002406 uint16_t class_def_index) {
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07002407 WriterMutexLock mu(self, freezing_constructor_lock_);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002408 freezing_constructor_classes_.insert(ClassReference(dex_file, class_def_index));
2409}
2410
2411bool CompilerDriver::RequiresConstructorBarrier(Thread* self, const DexFile* dex_file,
Calin Juravle27df7582015-04-17 19:12:31 +01002412 uint16_t class_def_index) const {
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07002413 ReaderMutexLock mu(self, freezing_constructor_lock_);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002414 return freezing_constructor_classes_.count(ClassReference(dex_file, class_def_index)) != 0;
2415}
2416
2417bool CompilerDriver::WriteElf(const std::string& android_root,
2418 bool is_host,
2419 const std::vector<const art::DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -08002420 OatWriter* oat_writer,
Brian Carlstrom7940e442013-07-12 13:46:57 -07002421 art::File* file)
2422 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Andreas Gampe3773cd02015-04-10 09:28:22 -07002423 if (kProduce64BitELFFiles && Is64BitInstructionSet(GetInstructionSet())) {
2424 return art::ElfWriterQuick64::Create(file, oat_writer, dex_files, android_root, is_host, *this);
2425 } else {
2426 return art::ElfWriterQuick32::Create(file, oat_writer, dex_files, android_root, is_host, *this);
2427 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002428}
Dave Allison39c3bfb2014-01-28 18:33:52 -08002429
Dave Allison39c3bfb2014-01-28 18:33:52 -08002430bool CompilerDriver::SkipCompilation(const std::string& method_name) {
Calin Juravlec1b643c2014-05-30 23:44:11 +01002431 if (!profile_present_) {
Dave Allison644789f2014-04-10 13:06:10 -07002432 return false;
Dave Allison39c3bfb2014-01-28 18:33:52 -08002433 }
Calin Juravlebb0b53f2014-05-23 17:33:29 +01002434 // First find the method in the profile file.
2435 ProfileFile::ProfileData data;
2436 if (!profile_file_.GetProfileData(&data, method_name)) {
Dave Allison39c3bfb2014-01-28 18:33:52 -08002437 // Not in profile, no information can be determined.
Calin Juravle08f7a2d2014-06-23 15:22:29 +01002438 if (kIsDebugBuild) {
2439 VLOG(compiler) << "not compiling " << method_name << " because it's not in the profile";
2440 }
Dave Allison39c3bfb2014-01-28 18:33:52 -08002441 return true;
2442 }
Calin Juravlebb0b53f2014-05-23 17:33:29 +01002443
2444 // Methods that comprise top_k_threshold % of the total samples will be compiled.
Calin Juravlef6a4cee2014-04-02 17:03:08 +01002445 // Compare against the start of the topK percentage bucket just in case the threshold
Calin Juravle04ff2262014-04-02 19:08:47 +01002446 // falls inside a bucket.
Calin Juravlec1b643c2014-05-30 23:44:11 +01002447 bool compile = data.GetTopKUsedPercentage() - data.GetUsedPercent()
2448 <= compiler_options_->GetTopKProfileThreshold();
Calin Juravle08f7a2d2014-06-23 15:22:29 +01002449 if (kIsDebugBuild) {
2450 if (compile) {
2451 LOG(INFO) << "compiling method " << method_name << " because its usage is part of top "
2452 << data.GetTopKUsedPercentage() << "% with a percent of " << data.GetUsedPercent() << "%"
2453 << " (topKThreshold=" << compiler_options_->GetTopKProfileThreshold() << ")";
2454 } else {
2455 VLOG(compiler) << "not compiling method " << method_name
2456 << " because it's not part of leading " << compiler_options_->GetTopKProfileThreshold()
2457 << "% samples)";
2458 }
Dave Allison39c3bfb2014-01-28 18:33:52 -08002459 }
2460 return !compile;
2461}
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002462
Andreas Gampe8d295f82015-01-20 14:50:21 -08002463std::string CompilerDriver::GetMemoryUsageString(bool extended) const {
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002464 std::ostringstream oss;
Mathieu Chartier9b34b242015-03-09 11:30:17 -07002465 Runtime* const runtime = Runtime::Current();
2466 const ArenaPool* arena_pool = runtime->GetArenaPool();
2467 gc::Heap* const heap = runtime->GetHeap();
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002468 oss << "arena alloc=" << PrettySize(arena_pool->GetBytesAllocated());
2469 oss << " java alloc=" << PrettySize(heap->GetBytesAllocated());
Elliott Hughes7bf5a262015-04-02 20:55:07 -07002470#if defined(__BIONIC__) || defined(__GLIBC__)
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002471 struct mallinfo info = mallinfo();
2472 const size_t allocated_space = static_cast<size_t>(info.uordblks);
2473 const size_t free_space = static_cast<size_t>(info.fordblks);
2474 oss << " native alloc=" << PrettySize(allocated_space) << " free="
2475 << PrettySize(free_space);
2476#endif
Andreas Gampee21dc3d2014-12-08 16:59:43 -08002477 if (swap_space_.get() != nullptr) {
2478 oss << " swap=" << PrettySize(swap_space_->GetSize());
2479 }
Andreas Gampe8d295f82015-01-20 14:50:21 -08002480 if (extended) {
2481 oss << "\nCode dedupe: " << dedupe_code_.DumpStats();
2482 oss << "\nMapping table dedupe: " << dedupe_mapping_table_.DumpStats();
2483 oss << "\nVmap table dedupe: " << dedupe_vmap_table_.DumpStats();
2484 oss << "\nGC map dedupe: " << dedupe_gc_map_.DumpStats();
2485 oss << "\nCFI info dedupe: " << dedupe_cfi_info_.DumpStats();
2486 }
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002487 return oss.str();
2488}
2489
Jeff Hao848f70a2014-01-15 13:49:50 -08002490bool CompilerDriver::IsStringTypeIndex(uint16_t type_index, const DexFile* dex_file) {
2491 const char* type = dex_file->GetTypeDescriptor(dex_file->GetTypeId(type_index));
2492 return strcmp(type, "Ljava/lang/String;") == 0;
2493}
2494
2495bool CompilerDriver::IsStringInit(uint32_t method_index, const DexFile* dex_file, int32_t* offset) {
2496 DexFileMethodInliner* inliner = GetMethodInlinerMap()->GetMethodInliner(dex_file);
2497 size_t pointer_size = InstructionSetPointerSize(GetInstructionSet());
2498 *offset = inliner->GetOffsetForStringInit(method_index, pointer_size);
2499 return inliner->IsStringInitMethodIndex(method_index);
2500}
2501
Brian Carlstrom7940e442013-07-12 13:46:57 -07002502} // namespace art