blob: 47288b50980f8fffc66cf70460d3aa0ce3cb9dcc [file] [log] [blame]
Brian Carlstrom7940e442013-07-12 13:46:57 -07001/*
2 * Copyright (C) 2011 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include "compiler_driver.h"
18
Anwar Ghuloum67f99412013-08-12 14:19:48 -070019#define ATRACE_TAG ATRACE_TAG_DALVIK
20#include <utils/Trace.h>
Brian Carlstrom7940e442013-07-12 13:46:57 -070021
Andreas Gampeb0f370e2014-09-25 22:51:40 -070022#include <unordered_set>
Anwar Ghuloum67f99412013-08-12 14:19:48 -070023#include <vector>
Brian Carlstrom7940e442013-07-12 13:46:57 -070024#include <unistd.h>
25
Mathieu Chartierab972ef2014-12-03 17:38:22 -080026#ifndef __APPLE__
27#include <malloc.h> // For mallinfo
28#endif
29
Mathieu Chartierc7853442015-03-27 14:35:38 -070030#include "art_field-inl.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070031#include "base/stl_util.h"
32#include "base/timing_logger.h"
Vladimir Marko3481ba22015-04-13 12:22:36 +010033#include "class_linker-inl.h"
Mingyao Yang98d1cc82014-05-15 17:02:16 -070034#include "compiled_class.h"
Vladimir Marko20f85592015-03-19 10:07:02 +000035#include "compiled_method.h"
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +000036#include "compiler.h"
Vladimir Markobe0e5462014-02-26 11:24:15 +000037#include "compiler_driver-inl.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070038#include "dex_compilation_unit.h"
39#include "dex_file-inl.h"
Vladimir Markoc7f83202014-01-24 17:55:18 +000040#include "dex/verification_results.h"
Vladimir Marko2730db02014-01-27 11:15:17 +000041#include "dex/verified_method.h"
Vladimir Marko2bc47802014-02-10 09:43:07 +000042#include "dex/quick/dex_file_method_inliner.h"
Jeff Hao848f70a2014-01-15 13:49:50 -080043#include "dex/quick/dex_file_to_method_inliner_map.h"
Mark Mendellae9fd932014-02-10 16:14:35 -080044#include "driver/compiler_options.h"
Andreas Gampe3773cd02015-04-10 09:28:22 -070045#include "elf_writer_quick.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070046#include "jni_internal.h"
Ian Rogers22d5e732014-07-15 22:23:51 -070047#include "object_lock.h"
Calin Juravlebb0b53f2014-05-23 17:33:29 +010048#include "profiler.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070049#include "runtime.h"
50#include "gc/accounting/card_table-inl.h"
51#include "gc/accounting/heap_bitmap.h"
52#include "gc/space/space.h"
Brian Carlstromea46f952013-07-30 01:26:50 -070053#include "mirror/art_method-inl.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070054#include "mirror/class_loader.h"
55#include "mirror/class-inl.h"
56#include "mirror/dex_cache-inl.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070057#include "mirror/object-inl.h"
58#include "mirror/object_array-inl.h"
59#include "mirror/throwable.h"
60#include "scoped_thread_state_change.h"
61#include "ScopedLocalRef.h"
Mathieu Chartiereb8167a2014-05-07 15:43:14 -070062#include "handle_scope-inl.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070063#include "thread.h"
Andreas Gampeb0f370e2014-09-25 22:51:40 -070064#include "thread_list.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070065#include "thread_pool.h"
Ian Rogers848871b2013-08-05 10:56:33 -070066#include "trampolines/trampoline_compiler.h"
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +010067#include "transaction.h"
Vladimir Marko20f85592015-03-19 10:07:02 +000068#include "utils/dex_cache_arrays_layout-inl.h"
Andreas Gampee21dc3d2014-12-08 16:59:43 -080069#include "utils/swap_space.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070070#include "verifier/method_verifier.h"
Vladimir Marko2bc47802014-02-10 09:43:07 +000071#include "verifier/method_verifier-inl.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070072
Brian Carlstrom7940e442013-07-12 13:46:57 -070073namespace art {
74
Mathieu Chartier8e219ae2014-08-19 14:29:46 -070075static constexpr bool kTimeCompileMethod = !kIsDebugBuild;
76
Andreas Gampe3773cd02015-04-10 09:28:22 -070077// Whether to produce 64-bit ELF files for 64-bit targets. Leave this off for now.
78static constexpr bool kProduce64BitELFFiles = false;
79
Andreas Gampe70bef0d2015-04-15 02:37:28 -070080// Whether classes-to-compile and methods-to-compile are only applied to the boot image, or, when
81// given, too all compilations.
Andreas Gampeb1fcead2015-04-20 18:53:51 -070082static constexpr bool kRestrictCompilationFiltersToImage = true;
83
Brian Carlstrom7940e442013-07-12 13:46:57 -070084static double Percentage(size_t x, size_t y) {
85 return 100.0 * (static_cast<double>(x)) / (static_cast<double>(x + y));
86}
87
88static void DumpStat(size_t x, size_t y, const char* str) {
89 if (x == 0 && y == 0) {
90 return;
91 }
Ian Rogerse732ef12013-10-09 15:22:24 -070092 LOG(INFO) << Percentage(x, y) << "% of " << str << " for " << (x + y) << " cases";
Brian Carlstrom7940e442013-07-12 13:46:57 -070093}
94
Vladimir Markof096aad2014-01-23 15:51:58 +000095class CompilerDriver::AOTCompilationStats {
Brian Carlstrom7940e442013-07-12 13:46:57 -070096 public:
97 AOTCompilationStats()
98 : stats_lock_("AOT compilation statistics lock"),
99 types_in_dex_cache_(0), types_not_in_dex_cache_(0),
100 strings_in_dex_cache_(0), strings_not_in_dex_cache_(0),
101 resolved_types_(0), unresolved_types_(0),
102 resolved_instance_fields_(0), unresolved_instance_fields_(0),
103 resolved_local_static_fields_(0), resolved_static_fields_(0), unresolved_static_fields_(0),
104 type_based_devirtualization_(0),
105 safe_casts_(0), not_safe_casts_(0) {
106 for (size_t i = 0; i <= kMaxInvokeType; i++) {
107 resolved_methods_[i] = 0;
108 unresolved_methods_[i] = 0;
109 virtual_made_direct_[i] = 0;
110 direct_calls_to_boot_[i] = 0;
111 direct_methods_to_boot_[i] = 0;
112 }
113 }
114
115 void Dump() {
116 DumpStat(types_in_dex_cache_, types_not_in_dex_cache_, "types known to be in dex cache");
117 DumpStat(strings_in_dex_cache_, strings_not_in_dex_cache_, "strings known to be in dex cache");
118 DumpStat(resolved_types_, unresolved_types_, "types resolved");
119 DumpStat(resolved_instance_fields_, unresolved_instance_fields_, "instance fields resolved");
120 DumpStat(resolved_local_static_fields_ + resolved_static_fields_, unresolved_static_fields_,
121 "static fields resolved");
122 DumpStat(resolved_local_static_fields_, resolved_static_fields_ + unresolved_static_fields_,
123 "static fields local to a class");
124 DumpStat(safe_casts_, not_safe_casts_, "check-casts removed based on type information");
125 // Note, the code below subtracts the stat value so that when added to the stat value we have
126 // 100% of samples. TODO: clean this up.
127 DumpStat(type_based_devirtualization_,
128 resolved_methods_[kVirtual] + unresolved_methods_[kVirtual] +
129 resolved_methods_[kInterface] + unresolved_methods_[kInterface] -
130 type_based_devirtualization_,
131 "virtual/interface calls made direct based on type information");
132
133 for (size_t i = 0; i <= kMaxInvokeType; i++) {
134 std::ostringstream oss;
135 oss << static_cast<InvokeType>(i) << " methods were AOT resolved";
136 DumpStat(resolved_methods_[i], unresolved_methods_[i], oss.str().c_str());
137 if (virtual_made_direct_[i] > 0) {
138 std::ostringstream oss2;
139 oss2 << static_cast<InvokeType>(i) << " methods made direct";
140 DumpStat(virtual_made_direct_[i],
141 resolved_methods_[i] + unresolved_methods_[i] - virtual_made_direct_[i],
142 oss2.str().c_str());
143 }
144 if (direct_calls_to_boot_[i] > 0) {
145 std::ostringstream oss2;
146 oss2 << static_cast<InvokeType>(i) << " method calls are direct into boot";
147 DumpStat(direct_calls_to_boot_[i],
148 resolved_methods_[i] + unresolved_methods_[i] - direct_calls_to_boot_[i],
149 oss2.str().c_str());
150 }
151 if (direct_methods_to_boot_[i] > 0) {
152 std::ostringstream oss2;
153 oss2 << static_cast<InvokeType>(i) << " method calls have methods in boot";
154 DumpStat(direct_methods_to_boot_[i],
155 resolved_methods_[i] + unresolved_methods_[i] - direct_methods_to_boot_[i],
156 oss2.str().c_str());
157 }
158 }
159 }
160
161// Allow lossy statistics in non-debug builds.
162#ifndef NDEBUG
163#define STATS_LOCK() MutexLock mu(Thread::Current(), stats_lock_)
164#else
165#define STATS_LOCK()
166#endif
167
168 void TypeInDexCache() {
169 STATS_LOCK();
170 types_in_dex_cache_++;
171 }
172
173 void TypeNotInDexCache() {
174 STATS_LOCK();
175 types_not_in_dex_cache_++;
176 }
177
178 void StringInDexCache() {
179 STATS_LOCK();
180 strings_in_dex_cache_++;
181 }
182
183 void StringNotInDexCache() {
184 STATS_LOCK();
185 strings_not_in_dex_cache_++;
186 }
187
188 void TypeDoesntNeedAccessCheck() {
189 STATS_LOCK();
190 resolved_types_++;
191 }
192
193 void TypeNeedsAccessCheck() {
194 STATS_LOCK();
195 unresolved_types_++;
196 }
197
198 void ResolvedInstanceField() {
199 STATS_LOCK();
200 resolved_instance_fields_++;
201 }
202
203 void UnresolvedInstanceField() {
204 STATS_LOCK();
205 unresolved_instance_fields_++;
206 }
207
208 void ResolvedLocalStaticField() {
209 STATS_LOCK();
210 resolved_local_static_fields_++;
211 }
212
213 void ResolvedStaticField() {
214 STATS_LOCK();
215 resolved_static_fields_++;
216 }
217
218 void UnresolvedStaticField() {
219 STATS_LOCK();
220 unresolved_static_fields_++;
221 }
222
223 // Indicate that type information from the verifier led to devirtualization.
224 void PreciseTypeDevirtualization() {
225 STATS_LOCK();
226 type_based_devirtualization_++;
227 }
228
229 // Indicate that a method of the given type was resolved at compile time.
230 void ResolvedMethod(InvokeType type) {
231 DCHECK_LE(type, kMaxInvokeType);
232 STATS_LOCK();
233 resolved_methods_[type]++;
234 }
235
236 // Indicate that a method of the given type was unresolved at compile time as it was in an
237 // unknown dex file.
238 void UnresolvedMethod(InvokeType type) {
239 DCHECK_LE(type, kMaxInvokeType);
240 STATS_LOCK();
241 unresolved_methods_[type]++;
242 }
243
244 // Indicate that a type of virtual method dispatch has been converted into a direct method
245 // dispatch.
246 void VirtualMadeDirect(InvokeType type) {
247 DCHECK(type == kVirtual || type == kInterface || type == kSuper);
248 STATS_LOCK();
249 virtual_made_direct_[type]++;
250 }
251
252 // Indicate that a method of the given type was able to call directly into boot.
253 void DirectCallsToBoot(InvokeType type) {
254 DCHECK_LE(type, kMaxInvokeType);
255 STATS_LOCK();
256 direct_calls_to_boot_[type]++;
257 }
258
259 // Indicate that a method of the given type was able to be resolved directly from boot.
260 void DirectMethodsToBoot(InvokeType type) {
261 DCHECK_LE(type, kMaxInvokeType);
262 STATS_LOCK();
263 direct_methods_to_boot_[type]++;
264 }
265
Vladimir Markof096aad2014-01-23 15:51:58 +0000266 void ProcessedInvoke(InvokeType type, int flags) {
267 STATS_LOCK();
268 if (flags == 0) {
269 unresolved_methods_[type]++;
270 } else {
271 DCHECK_NE((flags & kFlagMethodResolved), 0);
272 resolved_methods_[type]++;
273 if ((flags & kFlagVirtualMadeDirect) != 0) {
274 virtual_made_direct_[type]++;
275 if ((flags & kFlagPreciseTypeDevirtualization) != 0) {
276 type_based_devirtualization_++;
277 }
278 } else {
279 DCHECK_EQ((flags & kFlagPreciseTypeDevirtualization), 0);
280 }
281 if ((flags & kFlagDirectCallToBoot) != 0) {
282 direct_calls_to_boot_[type]++;
283 }
284 if ((flags & kFlagDirectMethodToBoot) != 0) {
285 direct_methods_to_boot_[type]++;
286 }
287 }
288 }
289
Brian Carlstrom7940e442013-07-12 13:46:57 -0700290 // A check-cast could be eliminated due to verifier type analysis.
291 void SafeCast() {
292 STATS_LOCK();
293 safe_casts_++;
294 }
295
296 // A check-cast couldn't be eliminated due to verifier type analysis.
297 void NotASafeCast() {
298 STATS_LOCK();
299 not_safe_casts_++;
300 }
301
302 private:
303 Mutex stats_lock_;
304
305 size_t types_in_dex_cache_;
306 size_t types_not_in_dex_cache_;
307
308 size_t strings_in_dex_cache_;
309 size_t strings_not_in_dex_cache_;
310
311 size_t resolved_types_;
312 size_t unresolved_types_;
313
314 size_t resolved_instance_fields_;
315 size_t unresolved_instance_fields_;
316
317 size_t resolved_local_static_fields_;
318 size_t resolved_static_fields_;
319 size_t unresolved_static_fields_;
320 // Type based devirtualization for invoke interface and virtual.
321 size_t type_based_devirtualization_;
322
323 size_t resolved_methods_[kMaxInvokeType + 1];
324 size_t unresolved_methods_[kMaxInvokeType + 1];
325 size_t virtual_made_direct_[kMaxInvokeType + 1];
326 size_t direct_calls_to_boot_[kMaxInvokeType + 1];
327 size_t direct_methods_to_boot_[kMaxInvokeType + 1];
328
329 size_t safe_casts_;
330 size_t not_safe_casts_;
331
332 DISALLOW_COPY_AND_ASSIGN(AOTCompilationStats);
333};
334
Brian Carlstrom7940e442013-07-12 13:46:57 -0700335
336extern "C" art::CompiledMethod* ArtCompileDEX(art::CompilerDriver& compiler,
337 const art::DexFile::CodeItem* code_item,
338 uint32_t access_flags,
339 art::InvokeType invoke_type,
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700340 uint16_t class_def_idx,
Brian Carlstrom7940e442013-07-12 13:46:57 -0700341 uint32_t method_idx,
342 jobject class_loader,
343 const art::DexFile& dex_file);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700344
Brian Carlstrom6449c622014-02-10 23:48:36 -0800345CompilerDriver::CompilerDriver(const CompilerOptions* compiler_options,
346 VerificationResults* verification_results,
Vladimir Marko5816ed42013-11-27 17:04:20 +0000347 DexFileToMethodInlinerMap* method_inliner_map,
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +0000348 Compiler::Kind compiler_kind,
Nicolas Geoffrayf5df8972014-02-14 18:37:08 +0000349 InstructionSet instruction_set,
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700350 const InstructionSetFeatures* instruction_set_features,
Andreas Gampeb1fcead2015-04-20 18:53:51 -0700351 bool image, std::unordered_set<std::string>* image_classes,
352 std::unordered_set<std::string>* compiled_classes,
Andreas Gampe70bef0d2015-04-15 02:37:28 -0700353 std::unordered_set<std::string>* compiled_methods,
Andreas Gampeb1fcead2015-04-20 18:53:51 -0700354 size_t thread_count, bool dump_stats, bool dump_passes,
David Brazdil866c0312015-01-13 21:21:31 +0000355 const std::string& dump_cfg_file_name, CumulativeLogger* timer,
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800356 int swap_fd, const std::string& profile_file)
357 : swap_space_(swap_fd == -1 ? nullptr : new SwapSpace(swap_fd, 10 * MB)),
358 swap_space_allocator_(new SwapAllocator<void>(swap_space_.get())),
359 profile_present_(false), compiler_options_(compiler_options),
Brian Carlstrom6449c622014-02-10 23:48:36 -0800360 verification_results_(verification_results),
Vladimir Marko5816ed42013-11-27 17:04:20 +0000361 method_inliner_map_(method_inliner_map),
Ian Rogers72d32622014-05-06 16:20:11 -0700362 compiler_(Compiler::Create(this, compiler_kind)),
Jeff Hao48699fb2015-04-06 14:21:37 -0700363 compiler_kind_(compiler_kind),
Brian Carlstrom7940e442013-07-12 13:46:57 -0700364 instruction_set_(instruction_set),
Dave Allison70202782013-10-22 17:52:19 -0700365 instruction_set_features_(instruction_set_features),
Brian Carlstrom7940e442013-07-12 13:46:57 -0700366 freezing_constructor_lock_("freezing constructor lock"),
367 compiled_classes_lock_("compiled classes lock"),
368 compiled_methods_lock_("compiled method lock"),
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800369 compiled_methods_(MethodTable::key_compare()),
Vladimir Markof4da6752014-08-01 19:04:18 +0100370 non_relative_linker_patch_count_(0u),
Brian Carlstrom7940e442013-07-12 13:46:57 -0700371 image_(image),
372 image_classes_(image_classes),
Andreas Gampe4bf3ae92014-11-11 13:28:29 -0800373 classes_to_compile_(compiled_classes),
Andreas Gampe70bef0d2015-04-15 02:37:28 -0700374 methods_to_compile_(compiled_methods),
Andreas Gampe6cf49e52015-03-05 13:08:45 -0800375 had_hard_verifier_failure_(false),
Brian Carlstrom7940e442013-07-12 13:46:57 -0700376 thread_count_(thread_count),
Brian Carlstrom7940e442013-07-12 13:46:57 -0700377 stats_(new AOTCompilationStats),
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800378 dedupe_enabled_(true),
Brian Carlstrom7940e442013-07-12 13:46:57 -0700379 dump_stats_(dump_stats),
Nicolas Geoffrayea3fa0b2014-02-10 11:59:41 +0000380 dump_passes_(dump_passes),
David Brazdil866c0312015-01-13 21:21:31 +0000381 dump_cfg_file_name_(dump_cfg_file_name),
Nicolas Geoffrayea3fa0b2014-02-10 11:59:41 +0000382 timings_logger_(timer),
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700383 compiler_context_(nullptr),
Andreas Gampe57b34292015-01-14 15:45:59 -0800384 support_boot_image_fixup_(instruction_set != kMips && instruction_set != kMips64),
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800385 dedupe_code_("dedupe code", *swap_space_allocator_),
386 dedupe_src_mapping_table_("dedupe source mapping table", *swap_space_allocator_),
387 dedupe_mapping_table_("dedupe mapping table", *swap_space_allocator_),
388 dedupe_vmap_table_("dedupe vmap table", *swap_space_allocator_),
389 dedupe_gc_map_("dedupe gc map", *swap_space_allocator_),
390 dedupe_cfi_info_("dedupe cfi info", *swap_space_allocator_) {
Brian Carlstrom6449c622014-02-10 23:48:36 -0800391 DCHECK(compiler_options_ != nullptr);
392 DCHECK(verification_results_ != nullptr);
393 DCHECK(method_inliner_map_ != nullptr);
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700394
Sebastien Hertz75021222013-07-16 18:34:50 +0200395 dex_to_dex_compiler_ = reinterpret_cast<DexToDexCompilerFn>(ArtCompileDEX);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700396
Ian Rogers72d32622014-05-06 16:20:11 -0700397 compiler_->Init();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700398
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800399 CHECK_EQ(image_, image_classes_.get() != nullptr);
Mark Mendellae9fd932014-02-10 16:14:35 -0800400
Calin Juravlec1b643c2014-05-30 23:44:11 +0100401 // Read the profile file if one is provided.
402 if (!profile_file.empty()) {
403 profile_present_ = profile_file_.LoadFile(profile_file);
404 if (profile_present_) {
405 LOG(INFO) << "Using profile data form file " << profile_file;
406 } else {
407 LOG(INFO) << "Failed to load profile file " << profile_file;
408 }
409 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700410}
411
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800412SwapVector<uint8_t>* CompilerDriver::DeduplicateCode(const ArrayRef<const uint8_t>& code) {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800413 DCHECK(dedupe_enabled_);
Mathieu Chartier193bad92013-08-29 18:46:00 -0700414 return dedupe_code_.Add(Thread::Current(), code);
415}
416
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800417SwapSrcMap* CompilerDriver::DeduplicateSrcMappingTable(const ArrayRef<SrcMapElem>& src_map) {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800418 DCHECK(dedupe_enabled_);
Yevgeny Roubane3ea8382014-08-08 16:29:38 +0700419 return dedupe_src_mapping_table_.Add(Thread::Current(), src_map);
420}
421
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800422SwapVector<uint8_t>* CompilerDriver::DeduplicateMappingTable(const ArrayRef<const uint8_t>& code) {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800423 DCHECK(dedupe_enabled_);
Mathieu Chartier193bad92013-08-29 18:46:00 -0700424 return dedupe_mapping_table_.Add(Thread::Current(), code);
425}
426
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800427SwapVector<uint8_t>* CompilerDriver::DeduplicateVMapTable(const ArrayRef<const uint8_t>& code) {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800428 DCHECK(dedupe_enabled_);
Mathieu Chartier193bad92013-08-29 18:46:00 -0700429 return dedupe_vmap_table_.Add(Thread::Current(), code);
430}
431
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800432SwapVector<uint8_t>* CompilerDriver::DeduplicateGCMap(const ArrayRef<const uint8_t>& code) {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800433 DCHECK(dedupe_enabled_);
Mathieu Chartier193bad92013-08-29 18:46:00 -0700434 return dedupe_gc_map_.Add(Thread::Current(), code);
435}
436
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800437SwapVector<uint8_t>* CompilerDriver::DeduplicateCFIInfo(const ArrayRef<const uint8_t>& cfi_info) {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800438 DCHECK(dedupe_enabled_);
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800439 return dedupe_cfi_info_.Add(Thread::Current(), cfi_info);
Mark Mendellae9fd932014-02-10 16:14:35 -0800440}
441
Brian Carlstrom7940e442013-07-12 13:46:57 -0700442CompilerDriver::~CompilerDriver() {
443 Thread* self = Thread::Current();
444 {
445 MutexLock mu(self, compiled_classes_lock_);
446 STLDeleteValues(&compiled_classes_);
447 }
448 {
449 MutexLock mu(self, compiled_methods_lock_);
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800450 for (auto& pair : compiled_methods_) {
451 CompiledMethod::ReleaseSwapAllocatedCompiledMethod(this, pair.second);
452 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700453 }
Ian Rogers72d32622014-05-06 16:20:11 -0700454 compiler_->UnInit();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700455}
456
Ian Rogersdd7624d2014-03-14 17:43:00 -0700457#define CREATE_TRAMPOLINE(type, abi, offset) \
Andreas Gampeaf13ad92014-04-11 12:07:48 -0700458 if (Is64BitInstructionSet(instruction_set_)) { \
Ian Rogersdd7624d2014-03-14 17:43:00 -0700459 return CreateTrampoline64(instruction_set_, abi, \
460 type ## _ENTRYPOINT_OFFSET(8, offset)); \
461 } else { \
462 return CreateTrampoline32(instruction_set_, abi, \
463 type ## _ENTRYPOINT_OFFSET(4, offset)); \
464 }
465
Ian Rogers848871b2013-08-05 10:56:33 -0700466const std::vector<uint8_t>* CompilerDriver::CreateInterpreterToInterpreterBridge() const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700467 CREATE_TRAMPOLINE(INTERPRETER, kInterpreterAbi, pInterpreterToInterpreterBridge)
Ian Rogers848871b2013-08-05 10:56:33 -0700468}
469
470const std::vector<uint8_t>* CompilerDriver::CreateInterpreterToCompiledCodeBridge() const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700471 CREATE_TRAMPOLINE(INTERPRETER, kInterpreterAbi, pInterpreterToCompiledCodeBridge)
Ian Rogers848871b2013-08-05 10:56:33 -0700472}
473
474const std::vector<uint8_t>* CompilerDriver::CreateJniDlsymLookup() const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700475 CREATE_TRAMPOLINE(JNI, kJniAbi, pDlsymLookup)
Ian Rogers848871b2013-08-05 10:56:33 -0700476}
477
Andreas Gampe2da88232014-02-27 12:26:20 -0800478const std::vector<uint8_t>* CompilerDriver::CreateQuickGenericJniTrampoline() const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700479 CREATE_TRAMPOLINE(QUICK, kQuickAbi, pQuickGenericJniTrampoline)
Andreas Gampe2da88232014-02-27 12:26:20 -0800480}
481
Jeff Hao88474b42013-10-23 16:24:40 -0700482const std::vector<uint8_t>* CompilerDriver::CreateQuickImtConflictTrampoline() const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700483 CREATE_TRAMPOLINE(QUICK, kQuickAbi, pQuickImtConflictTrampoline)
Jeff Hao88474b42013-10-23 16:24:40 -0700484}
485
Brian Carlstrom7940e442013-07-12 13:46:57 -0700486const std::vector<uint8_t>* CompilerDriver::CreateQuickResolutionTrampoline() const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700487 CREATE_TRAMPOLINE(QUICK, kQuickAbi, pQuickResolutionTrampoline)
Brian Carlstrom7940e442013-07-12 13:46:57 -0700488}
489
Ian Rogers848871b2013-08-05 10:56:33 -0700490const std::vector<uint8_t>* CompilerDriver::CreateQuickToInterpreterBridge() const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700491 CREATE_TRAMPOLINE(QUICK, kQuickAbi, pQuickToInterpreterBridge)
Brian Carlstrom7940e442013-07-12 13:46:57 -0700492}
Ian Rogersdd7624d2014-03-14 17:43:00 -0700493#undef CREATE_TRAMPOLINE
Brian Carlstrom7940e442013-07-12 13:46:57 -0700494
495void CompilerDriver::CompileAll(jobject class_loader,
Brian Carlstrom45602482013-07-21 22:07:55 -0700496 const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -0800497 TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700498 DCHECK(!Runtime::Current()->IsStarted());
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700499 std::unique_ptr<ThreadPool> thread_pool(
500 new ThreadPool("Compiler driver thread pool", thread_count_ - 1));
Andreas Gampe8d295f82015-01-20 14:50:21 -0800501 VLOG(compiler) << "Before precompile " << GetMemoryUsageString(false);
Ian Rogers3d504072014-03-01 09:16:49 -0800502 PreCompile(class_loader, dex_files, thread_pool.get(), timings);
503 Compile(class_loader, dex_files, thread_pool.get(), timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700504 if (dump_stats_) {
505 stats_->Dump();
506 }
507}
508
Mathieu Chartiere86deef2015-03-19 13:43:37 -0700509DexToDexCompilationLevel CompilerDriver::GetDexToDexCompilationlevel(
Mathieu Chartier0cd81352014-05-22 16:48:55 -0700510 Thread* self, Handle<mirror::ClassLoader> class_loader, const DexFile& dex_file,
Mathieu Chartiere86deef2015-03-19 13:43:37 -0700511 const DexFile::ClassDef& class_def) {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800512 auto* const runtime = Runtime::Current();
Mathieu Chartiere86deef2015-03-19 13:43:37 -0700513 if (runtime->UseJit() || GetCompilerOptions().VerifyAtRuntime()) {
514 // Verify at runtime shouldn't dex to dex since we didn't resolve of verify.
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800515 return kDontDexToDexCompile;
516 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700517 const char* descriptor = dex_file.GetClassDescriptor(class_def);
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800518 ClassLinker* class_linker = runtime->GetClassLinker();
Ian Rogers98379392014-02-24 16:53:16 -0800519 mirror::Class* klass = class_linker->FindClass(self, descriptor, class_loader);
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700520 if (klass == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700521 CHECK(self->IsExceptionPending());
522 self->ClearException();
Sebastien Hertz75021222013-07-16 18:34:50 +0200523 return kDontDexToDexCompile;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700524 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700525 // DexToDex at the kOptimize level may introduce quickened opcodes, which replace symbolic
526 // references with actual offsets. We cannot re-verify such instructions.
527 //
528 // We store the verification information in the class status in the oat file, which the linker
529 // can validate (checksums) and use to skip load-time verification. It is thus safe to
530 // optimize when a class has been fully verified before.
531 if (klass->IsVerified()) {
Sebastien Hertz75021222013-07-16 18:34:50 +0200532 // Class is verified so we can enable DEX-to-DEX compilation for performance.
533 return kOptimize;
534 } else if (klass->IsCompileTimeVerified()) {
535 // Class verification has soft-failed. Anyway, ensure at least correctness.
536 DCHECK_EQ(klass->GetStatus(), mirror::Class::kStatusRetryVerificationAtRuntime);
537 return kRequired;
538 } else {
539 // Class verification has failed: do not run DEX-to-DEX compilation.
540 return kDontDexToDexCompile;
541 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700542}
543
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800544void CompilerDriver::CompileOne(Thread* self, mirror::ArtMethod* method, TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700545 DCHECK(!Runtime::Current()->IsStarted());
Brian Carlstrom7940e442013-07-12 13:46:57 -0700546 jobject jclass_loader;
547 const DexFile* dex_file;
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700548 uint16_t class_def_idx;
Ian Rogersef7d42f2014-01-06 12:55:46 -0800549 uint32_t method_idx = method->GetDexMethodIndex();
550 uint32_t access_flags = method->GetAccessFlags();
551 InvokeType invoke_type = method->GetInvokeType();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700552 {
553 ScopedObjectAccessUnchecked soa(self);
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800554 ScopedLocalRef<jobject> local_class_loader(
555 soa.Env(), soa.AddLocalReference<jobject>(method->GetDeclaringClass()->GetClassLoader()));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700556 jclass_loader = soa.Env()->NewGlobalRef(local_class_loader.get());
557 // Find the dex_file
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700558 dex_file = method->GetDexFile();
559 class_def_idx = method->GetClassDefIndex();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700560 }
Ian Rogersef7d42f2014-01-06 12:55:46 -0800561 const DexFile::CodeItem* code_item = dex_file->GetCodeItem(method->GetCodeItemOffset());
Brian Carlstrom7940e442013-07-12 13:46:57 -0700562 self->TransitionFromRunnableToSuspended(kNative);
563
564 std::vector<const DexFile*> dex_files;
565 dex_files.push_back(dex_file);
566
Ian Rogers700a4022014-05-19 16:49:03 -0700567 std::unique_ptr<ThreadPool> thread_pool(new ThreadPool("Compiler driver thread pool", 0U));
Ian Rogers3d504072014-03-01 09:16:49 -0800568 PreCompile(jclass_loader, dex_files, thread_pool.get(), timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700569
Brian Carlstrom7940e442013-07-12 13:46:57 -0700570 // Can we run DEX-to-DEX compiler on this class ?
Sebastien Hertz75021222013-07-16 18:34:50 +0200571 DexToDexCompilationLevel dex_to_dex_compilation_level = kDontDexToDexCompile;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700572 {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800573 ScopedObjectAccess soa(self);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700574 const DexFile::ClassDef& class_def = dex_file->GetClassDef(class_def_idx);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700575 StackHandleScope<1> hs(soa.Self());
576 Handle<mirror::ClassLoader> class_loader(
577 hs.NewHandle(soa.Decode<mirror::ClassLoader*>(jclass_loader)));
Ian Rogers98379392014-02-24 16:53:16 -0800578 dex_to_dex_compilation_level = GetDexToDexCompilationlevel(self, class_loader, *dex_file,
579 class_def);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700580 }
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800581 CompileMethod(self, code_item, access_flags, invoke_type, class_def_idx, method_idx,
582 jclass_loader, *dex_file, dex_to_dex_compilation_level, true);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700583
584 self->GetJniEnv()->DeleteGlobalRef(jclass_loader);
Mathieu Chartier2535abe2015-02-17 10:38:49 -0800585 self->TransitionFromSuspendedToRunnable();
Mathieu Chartier2535abe2015-02-17 10:38:49 -0800586}
587
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800588CompiledMethod* CompilerDriver::CompileMethod(Thread* self, mirror::ArtMethod* method) {
589 const uint32_t method_idx = method->GetDexMethodIndex();
590 const uint32_t access_flags = method->GetAccessFlags();
591 const InvokeType invoke_type = method->GetInvokeType();
592 StackHandleScope<1> hs(self);
593 Handle<mirror::ClassLoader> class_loader(hs.NewHandle(
594 method->GetDeclaringClass()->GetClassLoader()));
595 jobject jclass_loader = class_loader.ToJObject();
596 const DexFile* dex_file = method->GetDexFile();
597 const uint16_t class_def_idx = method->GetClassDefIndex();
598 const DexFile::ClassDef& class_def = dex_file->GetClassDef(class_def_idx);
599 DexToDexCompilationLevel dex_to_dex_compilation_level =
600 GetDexToDexCompilationlevel(self, class_loader, *dex_file, class_def);
601 const DexFile::CodeItem* code_item = dex_file->GetCodeItem(method->GetCodeItemOffset());
602 self->TransitionFromRunnableToSuspended(kNative);
603 CompileMethod(self, code_item, access_flags, invoke_type, class_def_idx, method_idx,
604 jclass_loader, *dex_file, dex_to_dex_compilation_level, true);
605 auto* compiled_method = GetCompiledMethod(MethodReference(dex_file, method_idx));
606 self->TransitionFromSuspendedToRunnable();
607 return compiled_method;
608}
609
Brian Carlstrom7940e442013-07-12 13:46:57 -0700610void CompilerDriver::Resolve(jobject class_loader, const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -0800611 ThreadPool* thread_pool, TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700612 for (size_t i = 0; i != dex_files.size(); ++i) {
613 const DexFile* dex_file = dex_files[i];
Kenny Rootd5185342014-05-13 14:47:05 -0700614 CHECK(dex_file != nullptr);
Andreas Gampede7b4362014-07-28 18:38:57 -0700615 ResolveDexFile(class_loader, *dex_file, dex_files, thread_pool, timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700616 }
617}
618
619void CompilerDriver::PreCompile(jobject class_loader, const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -0800620 ThreadPool* thread_pool, TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700621 LoadImageClasses(timings);
Andreas Gampe8d295f82015-01-20 14:50:21 -0800622 VLOG(compiler) << "LoadImageClasses: " << GetMemoryUsageString(false);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700623
Mathieu Chartiere86deef2015-03-19 13:43:37 -0700624 const bool verification_enabled = compiler_options_->IsVerificationEnabled();
625 const bool never_verify = compiler_options_->NeverVerify();
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700626
Mathieu Chartiere86deef2015-03-19 13:43:37 -0700627 // We need to resolve for never_verify since it needs to run dex to dex to add the
628 // RETURN_VOID_NO_BARRIER.
629 if (never_verify || verification_enabled) {
630 Resolve(class_loader, dex_files, thread_pool, timings);
631 VLOG(compiler) << "Resolve: " << GetMemoryUsageString(false);
632 }
633
634 if (never_verify) {
Mathieu Chartierab972ef2014-12-03 17:38:22 -0800635 VLOG(compiler) << "Verify none mode specified, skipping verification.";
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700636 SetVerified(class_loader, dex_files, thread_pool, timings);
Mathieu Chartiere86deef2015-03-19 13:43:37 -0700637 }
638
639 if (!verification_enabled) {
Jeff Hao4a200f52014-04-01 14:58:49 -0700640 return;
641 }
642
Brian Carlstrom7940e442013-07-12 13:46:57 -0700643 Verify(class_loader, dex_files, thread_pool, timings);
Andreas Gampe8d295f82015-01-20 14:50:21 -0800644 VLOG(compiler) << "Verify: " << GetMemoryUsageString(false);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700645
Andreas Gampe6cf49e52015-03-05 13:08:45 -0800646 if (had_hard_verifier_failure_ && GetCompilerOptions().AbortOnHardVerifierFailure()) {
647 LOG(FATAL) << "Had a hard failure verifying all classes, and was asked to abort in such "
648 << "situations. Please check the log.";
649 }
650
Brian Carlstrom7940e442013-07-12 13:46:57 -0700651 InitializeClasses(class_loader, dex_files, thread_pool, timings);
Andreas Gampe8d295f82015-01-20 14:50:21 -0800652 VLOG(compiler) << "InitializeClasses: " << GetMemoryUsageString(false);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700653
654 UpdateImageClasses(timings);
Andreas Gampe8d295f82015-01-20 14:50:21 -0800655 VLOG(compiler) << "UpdateImageClasses: " << GetMemoryUsageString(false);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700656}
657
Ian Rogersdfb325e2013-10-30 01:00:44 -0700658bool CompilerDriver::IsImageClass(const char* descriptor) const {
Ian Rogerse6bb3b22013-08-19 21:51:45 -0700659 if (!IsImage()) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700660 return true;
Ian Rogerse6bb3b22013-08-19 21:51:45 -0700661 } else {
Ian Rogersdfb325e2013-10-30 01:00:44 -0700662 return image_classes_->find(descriptor) != image_classes_->end();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700663 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700664}
665
Andreas Gampe4bf3ae92014-11-11 13:28:29 -0800666bool CompilerDriver::IsClassToCompile(const char* descriptor) const {
Andreas Gampeb1fcead2015-04-20 18:53:51 -0700667 if (kRestrictCompilationFiltersToImage && !IsImage()) {
Andreas Gampe4bf3ae92014-11-11 13:28:29 -0800668 return true;
Andreas Gampe4bf3ae92014-11-11 13:28:29 -0800669 }
Andreas Gampeb1fcead2015-04-20 18:53:51 -0700670
671 if (classes_to_compile_ == nullptr) {
672 return true;
673 }
674 return classes_to_compile_->find(descriptor) != classes_to_compile_->end();
Andreas Gampe4bf3ae92014-11-11 13:28:29 -0800675}
676
Andreas Gampe70bef0d2015-04-15 02:37:28 -0700677bool CompilerDriver::IsMethodToCompile(const MethodReference& method_ref) const {
678 if (kRestrictCompilationFiltersToImage && !IsImage()) {
679 return true;
680 }
681
682 if (methods_to_compile_ == nullptr) {
683 return true;
684 }
685
686 std::string tmp = PrettyMethod(method_ref.dex_method_index, *method_ref.dex_file, true);
687 return methods_to_compile_->find(tmp.c_str()) != methods_to_compile_->end();
688}
689
Ian Rogerse94652f2014-12-02 11:13:19 -0800690static void ResolveExceptionsForMethod(MutableHandle<mirror::ArtMethod> method_handle,
Ian Rogers700a4022014-05-19 16:49:03 -0700691 std::set<std::pair<uint16_t, const DexFile*>>& exceptions_to_resolve)
Brian Carlstrom7940e442013-07-12 13:46:57 -0700692 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogerse94652f2014-12-02 11:13:19 -0800693 const DexFile::CodeItem* code_item = method_handle->GetCodeItem();
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700694 if (code_item == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700695 return; // native or abstract method
696 }
697 if (code_item->tries_size_ == 0) {
698 return; // nothing to process
699 }
Ian Rogers13735952014-10-08 12:43:28 -0700700 const uint8_t* encoded_catch_handler_list = DexFile::GetCatchHandlerData(*code_item, 0);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700701 size_t num_encoded_catch_handlers = DecodeUnsignedLeb128(&encoded_catch_handler_list);
702 for (size_t i = 0; i < num_encoded_catch_handlers; i++) {
703 int32_t encoded_catch_handler_size = DecodeSignedLeb128(&encoded_catch_handler_list);
704 bool has_catch_all = false;
705 if (encoded_catch_handler_size <= 0) {
706 encoded_catch_handler_size = -encoded_catch_handler_size;
707 has_catch_all = true;
708 }
709 for (int32_t j = 0; j < encoded_catch_handler_size; j++) {
710 uint16_t encoded_catch_handler_handlers_type_idx =
711 DecodeUnsignedLeb128(&encoded_catch_handler_list);
712 // Add to set of types to resolve if not already in the dex cache resolved types
Ian Rogerse94652f2014-12-02 11:13:19 -0800713 if (!method_handle->IsResolvedTypeIdx(encoded_catch_handler_handlers_type_idx)) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700714 exceptions_to_resolve.insert(
715 std::pair<uint16_t, const DexFile*>(encoded_catch_handler_handlers_type_idx,
Ian Rogerse94652f2014-12-02 11:13:19 -0800716 method_handle->GetDexFile()));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700717 }
718 // ignore address associated with catch handler
719 DecodeUnsignedLeb128(&encoded_catch_handler_list);
720 }
721 if (has_catch_all) {
722 // ignore catch all address
723 DecodeUnsignedLeb128(&encoded_catch_handler_list);
724 }
725 }
726}
727
728static bool ResolveCatchBlockExceptionsClassVisitor(mirror::Class* c, void* arg)
729 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers700a4022014-05-19 16:49:03 -0700730 std::set<std::pair<uint16_t, const DexFile*>>* exceptions_to_resolve =
731 reinterpret_cast<std::set<std::pair<uint16_t, const DexFile*>>*>(arg);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700732 StackHandleScope<1> hs(Thread::Current());
Ian Rogerse94652f2014-12-02 11:13:19 -0800733 MutableHandle<mirror::ArtMethod> method_handle(hs.NewHandle<mirror::ArtMethod>(nullptr));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700734 for (size_t i = 0; i < c->NumVirtualMethods(); ++i) {
Ian Rogerse94652f2014-12-02 11:13:19 -0800735 method_handle.Assign(c->GetVirtualMethod(i));
736 ResolveExceptionsForMethod(method_handle, *exceptions_to_resolve);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700737 }
738 for (size_t i = 0; i < c->NumDirectMethods(); ++i) {
Ian Rogerse94652f2014-12-02 11:13:19 -0800739 method_handle.Assign(c->GetDirectMethod(i));
740 ResolveExceptionsForMethod(method_handle, *exceptions_to_resolve);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700741 }
742 return true;
743}
744
745static bool RecordImageClassesVisitor(mirror::Class* klass, void* arg)
746 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Andreas Gampeb1fcead2015-04-20 18:53:51 -0700747 std::unordered_set<std::string>* image_classes =
748 reinterpret_cast<std::unordered_set<std::string>*>(arg);
Ian Rogers1ff3c982014-08-12 02:30:58 -0700749 std::string temp;
750 image_classes->insert(klass->GetDescriptor(&temp));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700751 return true;
752}
753
754// Make a list of descriptors for classes to include in the image
Ian Rogers3d504072014-03-01 09:16:49 -0800755void CompilerDriver::LoadImageClasses(TimingLogger* timings)
Brian Carlstrom7940e442013-07-12 13:46:57 -0700756 LOCKS_EXCLUDED(Locks::mutator_lock_) {
Kenny Rootd5185342014-05-13 14:47:05 -0700757 CHECK(timings != nullptr);
Ian Rogerse6bb3b22013-08-19 21:51:45 -0700758 if (!IsImage()) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700759 return;
760 }
761
Mathieu Chartierf5997b42014-06-20 10:37:54 -0700762 TimingLogger::ScopedTiming t("LoadImageClasses", timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700763 // Make a first class to load all classes explicitly listed in the file
764 Thread* self = Thread::Current();
765 ScopedObjectAccess soa(self);
766 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Kenny Rootd5185342014-05-13 14:47:05 -0700767 CHECK(image_classes_.get() != nullptr);
Mathieu Chartier02e25112013-08-14 16:14:24 -0700768 for (auto it = image_classes_->begin(), end = image_classes_->end(); it != end;) {
Vladimir Markoe9c36b32013-11-21 15:49:16 +0000769 const std::string& descriptor(*it);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700770 StackHandleScope<1> hs(self);
771 Handle<mirror::Class> klass(
772 hs.NewHandle(class_linker->FindSystemClass(self, descriptor.c_str())));
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700773 if (klass.Get() == nullptr) {
Ian Rogerse6bb3b22013-08-19 21:51:45 -0700774 VLOG(compiler) << "Failed to find class " << descriptor;
Vladimir Markoe9c36b32013-11-21 15:49:16 +0000775 image_classes_->erase(it++);
Ian Rogersa436fde2013-08-27 23:34:06 -0700776 self->ClearException();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700777 } else {
778 ++it;
779 }
780 }
781
782 // Resolve exception classes referenced by the loaded classes. The catch logic assumes
783 // exceptions are resolved by the verifier when there is a catch block in an interested method.
784 // Do this here so that exception classes appear to have been specified image classes.
Ian Rogers700a4022014-05-19 16:49:03 -0700785 std::set<std::pair<uint16_t, const DexFile*>> unresolved_exception_types;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700786 StackHandleScope<1> hs(self);
787 Handle<mirror::Class> java_lang_Throwable(
788 hs.NewHandle(class_linker->FindSystemClass(self, "Ljava/lang/Throwable;")));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700789 do {
790 unresolved_exception_types.clear();
791 class_linker->VisitClasses(ResolveCatchBlockExceptionsClassVisitor,
792 &unresolved_exception_types);
Mathieu Chartier02e25112013-08-14 16:14:24 -0700793 for (const std::pair<uint16_t, const DexFile*>& exception_type : unresolved_exception_types) {
794 uint16_t exception_type_idx = exception_type.first;
795 const DexFile* dex_file = exception_type.second;
Andreas Gampe277ccbd2014-11-03 21:36:10 -0800796 StackHandleScope<2> hs2(self);
797 Handle<mirror::DexCache> dex_cache(hs2.NewHandle(class_linker->FindDexCache(*dex_file)));
798 Handle<mirror::Class> klass(hs2.NewHandle(
Mathieu Chartier0cd81352014-05-22 16:48:55 -0700799 class_linker->ResolveType(*dex_file, exception_type_idx, dex_cache,
800 NullHandle<mirror::ClassLoader>())));
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700801 if (klass.Get() == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700802 const DexFile::TypeId& type_id = dex_file->GetTypeId(exception_type_idx);
803 const char* descriptor = dex_file->GetTypeDescriptor(type_id);
804 LOG(FATAL) << "Failed to resolve class " << descriptor;
805 }
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700806 DCHECK(java_lang_Throwable->IsAssignableFrom(klass.Get()));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700807 }
808 // Resolving exceptions may load classes that reference more exceptions, iterate until no
809 // more are found
810 } while (!unresolved_exception_types.empty());
811
812 // We walk the roots looking for classes so that we'll pick up the
813 // above classes plus any classes them depend on such super
814 // classes, interfaces, and the required ClassLinker roots.
815 class_linker->VisitClasses(RecordImageClassesVisitor, image_classes_.get());
816
817 CHECK_NE(image_classes_->size(), 0U);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700818}
819
Andreas Gampeb1fcead2015-04-20 18:53:51 -0700820static void MaybeAddToImageClasses(Handle<mirror::Class> c,
821 std::unordered_set<std::string>* image_classes)
Brian Carlstrom7940e442013-07-12 13:46:57 -0700822 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartierf8322842014-05-16 10:59:25 -0700823 Thread* self = Thread::Current();
824 StackHandleScope<1> hs(self);
825 // Make a copy of the handle so that we don't clobber it doing Assign.
Andreas Gampe5a4b8a22014-09-11 08:30:08 -0700826 MutableHandle<mirror::Class> klass(hs.NewHandle(c.Get()));
Ian Rogers1ff3c982014-08-12 02:30:58 -0700827 std::string temp;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700828 while (!klass->IsObjectClass()) {
Ian Rogers1ff3c982014-08-12 02:30:58 -0700829 const char* descriptor = klass->GetDescriptor(&temp);
Andreas Gampeb1fcead2015-04-20 18:53:51 -0700830 std::pair<std::unordered_set<std::string>::iterator, bool> result =
831 image_classes->insert(descriptor);
Ian Rogers1ff3c982014-08-12 02:30:58 -0700832 if (!result.second) { // Previously inserted.
833 break;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700834 }
Ian Rogers1ff3c982014-08-12 02:30:58 -0700835 VLOG(compiler) << "Adding " << descriptor << " to image classes";
Mathieu Chartierf8322842014-05-16 10:59:25 -0700836 for (size_t i = 0; i < klass->NumDirectInterfaces(); ++i) {
Andreas Gampe277ccbd2014-11-03 21:36:10 -0800837 StackHandleScope<1> hs2(self);
838 MaybeAddToImageClasses(hs2.NewHandle(mirror::Class::GetDirectInterface(self, klass, i)),
Mathieu Chartierf8322842014-05-16 10:59:25 -0700839 image_classes);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700840 }
841 if (klass->IsArrayClass()) {
Andreas Gampe277ccbd2014-11-03 21:36:10 -0800842 StackHandleScope<1> hs2(self);
843 MaybeAddToImageClasses(hs2.NewHandle(klass->GetComponentType()), image_classes);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700844 }
Mathieu Chartierf8322842014-05-16 10:59:25 -0700845 klass.Assign(klass->GetSuperClass());
Brian Carlstrom7940e442013-07-12 13:46:57 -0700846 }
847}
848
Andreas Gampeb0f370e2014-09-25 22:51:40 -0700849// Keeps all the data for the update together. Also doubles as the reference visitor.
850// Note: we can use object pointers because we suspend all threads.
851class ClinitImageUpdate {
852 public:
Andreas Gampeb1fcead2015-04-20 18:53:51 -0700853 static ClinitImageUpdate* Create(std::unordered_set<std::string>* image_class_descriptors,
854 Thread* self, ClassLinker* linker, std::string* error_msg) {
Andreas Gampeb0f370e2014-09-25 22:51:40 -0700855 std::unique_ptr<ClinitImageUpdate> res(new ClinitImageUpdate(image_class_descriptors, self,
856 linker));
857 if (res->art_method_class_ == nullptr) {
858 *error_msg = "Could not find ArtMethod class.";
859 return nullptr;
860 } else if (res->dex_cache_class_ == nullptr) {
861 *error_msg = "Could not find DexCache class.";
862 return nullptr;
863 }
864
865 return res.release();
866 }
867
868 ~ClinitImageUpdate() {
869 // Allow others to suspend again.
870 self_->EndAssertNoThreadSuspension(old_cause_);
871 }
872
873 // Visitor for VisitReferences.
874 void operator()(mirror::Object* object, MemberOffset field_offset, bool /* is_static */) const
875 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
876 mirror::Object* ref = object->GetFieldObject<mirror::Object>(field_offset);
877 if (ref != nullptr) {
878 VisitClinitClassesObject(ref);
879 }
880 }
881
882 // java.lang.Reference visitor for VisitReferences.
Andreas Gampedc8b63c2014-12-02 14:39:52 -0800883 void operator()(mirror::Class* /* klass */, mirror::Reference* /* ref */) const {
Andreas Gampeb0f370e2014-09-25 22:51:40 -0700884 }
885
886 void Walk() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
887 // Use the initial classes as roots for a search.
888 for (mirror::Class* klass_root : image_classes_) {
889 VisitClinitClassesObject(klass_root);
890 }
891 }
892
893 private:
Andreas Gampeb1fcead2015-04-20 18:53:51 -0700894 ClinitImageUpdate(std::unordered_set<std::string>* image_class_descriptors, Thread* self,
Andreas Gampeb0f370e2014-09-25 22:51:40 -0700895 ClassLinker* linker)
896 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) :
897 image_class_descriptors_(image_class_descriptors), self_(self) {
898 CHECK(linker != nullptr);
899 CHECK(image_class_descriptors != nullptr);
900
901 // Make sure nobody interferes with us.
902 old_cause_ = self->StartAssertNoThreadSuspension("Boot image closure");
903
904 // Find the interesting classes.
Andreas Gampedc8b63c2014-12-02 14:39:52 -0800905 art_method_class_ = linker->LookupClass(self, "Ljava/lang/reflect/ArtMethod;",
906 ComputeModifiedUtf8Hash("Ljava/lang/reflect/ArtMethod;"), nullptr);
907 dex_cache_class_ = linker->LookupClass(self, "Ljava/lang/DexCache;",
908 ComputeModifiedUtf8Hash("Ljava/lang/DexCache;"), nullptr);
Andreas Gampeb0f370e2014-09-25 22:51:40 -0700909
910 // Find all the already-marked classes.
911 WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
912 linker->VisitClasses(FindImageClasses, this);
913 }
914
915 static bool FindImageClasses(mirror::Class* klass, void* arg)
916 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
917 ClinitImageUpdate* data = reinterpret_cast<ClinitImageUpdate*>(arg);
918 std::string temp;
919 const char* name = klass->GetDescriptor(&temp);
920 if (data->image_class_descriptors_->find(name) != data->image_class_descriptors_->end()) {
921 data->image_classes_.push_back(klass);
Andreas Gampe4d4eff72015-03-04 22:46:35 -0800922 } else {
923 // Check whether it is initialized and has a clinit. They must be kept, too.
924 if (klass->IsInitialized() && klass->FindClassInitializer() != nullptr) {
925 data->image_classes_.push_back(klass);
926 }
Andreas Gampeb0f370e2014-09-25 22:51:40 -0700927 }
928
929 return true;
930 }
931
932 void VisitClinitClassesObject(mirror::Object* object) const
933 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
934 DCHECK(object != nullptr);
935 if (marked_objects_.find(object) != marked_objects_.end()) {
936 // Already processed.
937 return;
938 }
939
940 // Mark it.
941 marked_objects_.insert(object);
942
943 if (object->IsClass()) {
944 // If it is a class, add it.
945 StackHandleScope<1> hs(self_);
946 MaybeAddToImageClasses(hs.NewHandle(object->AsClass()), image_class_descriptors_);
947 } else {
948 // Else visit the object's class.
949 VisitClinitClassesObject(object->GetClass());
950 }
951
952 // If it is not a dex cache or an ArtMethod, visit all references.
953 mirror::Class* klass = object->GetClass();
954 if (klass != art_method_class_ && klass != dex_cache_class_) {
955 object->VisitReferences<false /* visit class */>(*this, *this);
956 }
957 }
958
959 mutable std::unordered_set<mirror::Object*> marked_objects_;
Andreas Gampeb1fcead2015-04-20 18:53:51 -0700960 std::unordered_set<std::string>* const image_class_descriptors_;
Andreas Gampeb0f370e2014-09-25 22:51:40 -0700961 std::vector<mirror::Class*> image_classes_;
962 const mirror::Class* art_method_class_;
963 const mirror::Class* dex_cache_class_;
964 Thread* const self_;
965 const char* old_cause_;
966
967 DISALLOW_COPY_AND_ASSIGN(ClinitImageUpdate);
968};
Brian Carlstrom7940e442013-07-12 13:46:57 -0700969
Ian Rogers3d504072014-03-01 09:16:49 -0800970void CompilerDriver::UpdateImageClasses(TimingLogger* timings) {
Ian Rogerse6bb3b22013-08-19 21:51:45 -0700971 if (IsImage()) {
Mathieu Chartierf5997b42014-06-20 10:37:54 -0700972 TimingLogger::ScopedTiming t("UpdateImageClasses", timings);
Andreas Gampeb0f370e2014-09-25 22:51:40 -0700973
974 Runtime* current = Runtime::Current();
975
976 // Suspend all threads.
Mathieu Chartierbf9fc582015-03-13 17:21:25 -0700977 current->GetThreadList()->SuspendAll(__FUNCTION__);
Andreas Gampeb0f370e2014-09-25 22:51:40 -0700978
979 std::string error_msg;
980 std::unique_ptr<ClinitImageUpdate> update(ClinitImageUpdate::Create(image_classes_.get(),
981 Thread::Current(),
982 current->GetClassLinker(),
983 &error_msg));
984 CHECK(update.get() != nullptr) << error_msg; // TODO: Soft failure?
985
986 // Do the marking.
987 update->Walk();
988
989 // Resume threads.
990 current->GetThreadList()->ResumeAll();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700991 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700992}
993
Mathieu Chartier590fee92013-09-13 13:46:47 -0700994bool CompilerDriver::CanAssumeTypeIsPresentInDexCache(const DexFile& dex_file, uint32_t type_idx) {
Ian Rogersfc0e94b2013-09-23 23:51:32 -0700995 if (IsImage() &&
Ian Rogersdfb325e2013-10-30 01:00:44 -0700996 IsImageClass(dex_file.StringDataByIdx(dex_file.GetTypeId(type_idx).descriptor_idx_))) {
Andreas Gampe58a5af82014-07-31 16:23:49 -0700997 {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700998 ScopedObjectAccess soa(Thread::Current());
999 mirror::DexCache* dex_cache = Runtime::Current()->GetClassLinker()->FindDexCache(dex_file);
1000 mirror::Class* resolved_class = dex_cache->GetResolvedType(type_idx);
Andreas Gampe58a5af82014-07-31 16:23:49 -07001001 if (resolved_class == nullptr) {
1002 // Erroneous class.
1003 stats_->TypeNotInDexCache();
1004 return false;
1005 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001006 }
1007 stats_->TypeInDexCache();
1008 return true;
1009 } else {
1010 stats_->TypeNotInDexCache();
1011 return false;
1012 }
1013}
1014
1015bool CompilerDriver::CanAssumeStringIsPresentInDexCache(const DexFile& dex_file,
1016 uint32_t string_idx) {
1017 // See also Compiler::ResolveDexFile
1018
1019 bool result = false;
1020 if (IsImage()) {
1021 // We resolve all const-string strings when building for the image.
1022 ScopedObjectAccess soa(Thread::Current());
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001023 StackHandleScope<1> hs(soa.Self());
1024 Handle<mirror::DexCache> dex_cache(
1025 hs.NewHandle(Runtime::Current()->GetClassLinker()->FindDexCache(dex_file)));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001026 Runtime::Current()->GetClassLinker()->ResolveString(dex_file, string_idx, dex_cache);
1027 result = true;
1028 }
1029 if (result) {
1030 stats_->StringInDexCache();
1031 } else {
1032 stats_->StringNotInDexCache();
1033 }
1034 return result;
1035}
1036
1037bool CompilerDriver::CanAccessTypeWithoutChecks(uint32_t referrer_idx, const DexFile& dex_file,
1038 uint32_t type_idx,
1039 bool* type_known_final, bool* type_known_abstract,
1040 bool* equals_referrers_class) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001041 if (type_known_final != nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001042 *type_known_final = false;
1043 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001044 if (type_known_abstract != nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001045 *type_known_abstract = false;
1046 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001047 if (equals_referrers_class != nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001048 *equals_referrers_class = false;
1049 }
1050 ScopedObjectAccess soa(Thread::Current());
1051 mirror::DexCache* dex_cache = Runtime::Current()->GetClassLinker()->FindDexCache(dex_file);
1052 // Get type from dex cache assuming it was populated by the verifier
1053 mirror::Class* resolved_class = dex_cache->GetResolvedType(type_idx);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001054 if (resolved_class == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001055 stats_->TypeNeedsAccessCheck();
1056 return false; // Unknown class needs access checks.
1057 }
1058 const DexFile::MethodId& method_id = dex_file.GetMethodId(referrer_idx);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001059 if (equals_referrers_class != nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001060 *equals_referrers_class = (method_id.class_idx_ == type_idx);
1061 }
1062 mirror::Class* referrer_class = dex_cache->GetResolvedType(method_id.class_idx_);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001063 if (referrer_class == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001064 stats_->TypeNeedsAccessCheck();
1065 return false; // Incomplete referrer knowledge needs access check.
1066 }
1067 // Perform access check, will return true if access is ok or false if we're going to have to
1068 // check this at runtime (for example for class loaders).
1069 bool result = referrer_class->CanAccess(resolved_class);
1070 if (result) {
1071 stats_->TypeDoesntNeedAccessCheck();
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001072 if (type_known_final != nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001073 *type_known_final = resolved_class->IsFinal() && !resolved_class->IsArrayClass();
1074 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001075 if (type_known_abstract != nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001076 *type_known_abstract = resolved_class->IsAbstract() && !resolved_class->IsArrayClass();
1077 }
1078 } else {
1079 stats_->TypeNeedsAccessCheck();
1080 }
1081 return result;
1082}
1083
1084bool CompilerDriver::CanAccessInstantiableTypeWithoutChecks(uint32_t referrer_idx,
1085 const DexFile& dex_file,
1086 uint32_t type_idx) {
1087 ScopedObjectAccess soa(Thread::Current());
1088 mirror::DexCache* dex_cache = Runtime::Current()->GetClassLinker()->FindDexCache(dex_file);
1089 // Get type from dex cache assuming it was populated by the verifier.
1090 mirror::Class* resolved_class = dex_cache->GetResolvedType(type_idx);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001091 if (resolved_class == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001092 stats_->TypeNeedsAccessCheck();
1093 return false; // Unknown class needs access checks.
1094 }
1095 const DexFile::MethodId& method_id = dex_file.GetMethodId(referrer_idx);
1096 mirror::Class* referrer_class = dex_cache->GetResolvedType(method_id.class_idx_);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001097 if (referrer_class == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001098 stats_->TypeNeedsAccessCheck();
1099 return false; // Incomplete referrer knowledge needs access check.
1100 }
1101 // Perform access and instantiable checks, will return true if access is ok or false if we're
1102 // going to have to check this at runtime (for example for class loaders).
1103 bool result = referrer_class->CanAccess(resolved_class) && resolved_class->IsInstantiable();
1104 if (result) {
1105 stats_->TypeDoesntNeedAccessCheck();
1106 } else {
1107 stats_->TypeNeedsAccessCheck();
1108 }
1109 return result;
1110}
1111
Hiroshi Yamauchibe1ca552014-01-15 11:46:48 -08001112bool CompilerDriver::CanEmbedTypeInCode(const DexFile& dex_file, uint32_t type_idx,
1113 bool* is_type_initialized, bool* use_direct_type_ptr,
Mathieu Chartier8668c3c2014-04-24 16:48:11 -07001114 uintptr_t* direct_type_ptr, bool* out_is_finalizable) {
Hiroshi Yamauchibe1ca552014-01-15 11:46:48 -08001115 ScopedObjectAccess soa(Thread::Current());
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08001116 Runtime* runtime = Runtime::Current();
1117 mirror::DexCache* dex_cache = runtime->GetClassLinker()->FindDexCache(dex_file);
Hiroshi Yamauchibe1ca552014-01-15 11:46:48 -08001118 mirror::Class* resolved_class = dex_cache->GetResolvedType(type_idx);
1119 if (resolved_class == nullptr) {
1120 return false;
1121 }
Igor Murashkind6dee672014-10-16 18:36:16 -07001122 if (GetCompilerOptions().GetCompilePic()) {
1123 // Do not allow a direct class pointer to be used when compiling for position-independent
1124 return false;
1125 }
Mathieu Chartier8668c3c2014-04-24 16:48:11 -07001126 *out_is_finalizable = resolved_class->IsFinalizable();
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08001127 gc::Heap* heap = runtime->GetHeap();
1128 const bool compiling_boot = heap->IsCompilingBoot();
Alex Light6e183f22014-07-18 14:57:04 -07001129 const bool support_boot_image_fixup = GetSupportBootImageFixup();
Hiroshi Yamauchibe1ca552014-01-15 11:46:48 -08001130 if (compiling_boot) {
1131 // boot -> boot class pointers.
1132 // True if the class is in the image at boot compiling time.
1133 const bool is_image_class = IsImage() && IsImageClass(
1134 dex_file.StringDataByIdx(dex_file.GetTypeId(type_idx).descriptor_idx_));
1135 // True if pc relative load works.
Hiroshi Yamauchibe1ca552014-01-15 11:46:48 -08001136 if (is_image_class && support_boot_image_fixup) {
1137 *is_type_initialized = resolved_class->IsInitialized();
1138 *use_direct_type_ptr = false;
1139 *direct_type_ptr = 0;
1140 return true;
1141 } else {
1142 return false;
1143 }
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08001144 } else if (runtime->UseJit() && !heap->IsMovableObject(resolved_class)) {
1145 *is_type_initialized = resolved_class->IsInitialized();
1146 // If the class may move around, then don't embed it as a direct pointer.
1147 *use_direct_type_ptr = true;
1148 *direct_type_ptr = reinterpret_cast<uintptr_t>(resolved_class);
1149 return true;
Hiroshi Yamauchibe1ca552014-01-15 11:46:48 -08001150 } else {
1151 // True if the class is in the image at app compiling time.
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08001152 const bool class_in_image = heap->FindSpaceFromObject(resolved_class, false)->IsImageSpace();
Alex Light6e183f22014-07-18 14:57:04 -07001153 if (class_in_image && support_boot_image_fixup) {
Hiroshi Yamauchibe1ca552014-01-15 11:46:48 -08001154 // boot -> app class pointers.
1155 *is_type_initialized = resolved_class->IsInitialized();
Alex Lighta59dd802014-07-02 16:28:08 -07001156 // TODO This is somewhat hacky. We should refactor all of this invoke codepath.
1157 *use_direct_type_ptr = !GetCompilerOptions().GetIncludePatchInformation();
Hiroshi Yamauchibe1ca552014-01-15 11:46:48 -08001158 *direct_type_ptr = reinterpret_cast<uintptr_t>(resolved_class);
1159 return true;
1160 } else {
1161 // app -> app class pointers.
1162 // Give up because app does not have an image and class
1163 // isn't created at compile time. TODO: implement this
1164 // if/when each app gets an image.
1165 return false;
1166 }
1167 }
1168}
1169
Fred Shihe7f82e22014-08-06 10:46:37 -07001170bool CompilerDriver::CanEmbedReferenceTypeInCode(ClassReference* ref,
1171 bool* use_direct_ptr,
1172 uintptr_t* direct_type_ptr) {
1173 CHECK(ref != nullptr);
1174 CHECK(use_direct_ptr != nullptr);
1175 CHECK(direct_type_ptr != nullptr);
1176
1177 ScopedObjectAccess soa(Thread::Current());
1178 mirror::Class* reference_class = mirror::Reference::GetJavaLangRefReference();
Andreas Gampe928f72b2014-09-09 19:53:48 -07001179 bool is_initialized = false;
Fred Shihe7f82e22014-08-06 10:46:37 -07001180 bool unused_finalizable;
1181 // Make sure we have a finished Reference class object before attempting to use it.
1182 if (!CanEmbedTypeInCode(*reference_class->GetDexCache()->GetDexFile(),
1183 reference_class->GetDexTypeIndex(), &is_initialized,
1184 use_direct_ptr, direct_type_ptr, &unused_finalizable) ||
1185 !is_initialized) {
1186 return false;
1187 }
1188 ref->first = &reference_class->GetDexFile();
1189 ref->second = reference_class->GetDexClassDefIndex();
1190 return true;
1191}
1192
1193uint32_t CompilerDriver::GetReferenceSlowFlagOffset() const {
1194 ScopedObjectAccess soa(Thread::Current());
1195 mirror::Class* klass = mirror::Reference::GetJavaLangRefReference();
1196 DCHECK(klass->IsInitialized());
1197 return klass->GetSlowPathFlagOffset().Uint32Value();
1198}
1199
1200uint32_t CompilerDriver::GetReferenceDisableFlagOffset() const {
1201 ScopedObjectAccess soa(Thread::Current());
1202 mirror::Class* klass = mirror::Reference::GetJavaLangRefReference();
1203 DCHECK(klass->IsInitialized());
1204 return klass->GetDisableIntrinsicFlagOffset().Uint32Value();
1205}
1206
Vladimir Marko20f85592015-03-19 10:07:02 +00001207DexCacheArraysLayout CompilerDriver::GetDexCacheArraysLayout(const DexFile* dex_file) {
1208 // Currently only image dex caches have fixed array layout.
1209 return IsImage() && GetSupportBootImageFixup()
Mathieu Chartierc7853442015-03-27 14:35:38 -07001210 ? DexCacheArraysLayout(GetInstructionSetPointerSize(instruction_set_), dex_file)
Vladimir Marko20f85592015-03-19 10:07:02 +00001211 : DexCacheArraysLayout();
1212}
1213
Vladimir Markobe0e5462014-02-26 11:24:15 +00001214void CompilerDriver::ProcessedInstanceField(bool resolved) {
1215 if (!resolved) {
1216 stats_->UnresolvedInstanceField();
1217 } else {
1218 stats_->ResolvedInstanceField();
1219 }
1220}
1221
1222void CompilerDriver::ProcessedStaticField(bool resolved, bool local) {
1223 if (!resolved) {
1224 stats_->UnresolvedStaticField();
1225 } else if (local) {
1226 stats_->ResolvedLocalStaticField();
1227 } else {
1228 stats_->ResolvedStaticField();
1229 }
1230}
1231
Vladimir Markof096aad2014-01-23 15:51:58 +00001232void CompilerDriver::ProcessedInvoke(InvokeType invoke_type, int flags) {
1233 stats_->ProcessedInvoke(invoke_type, flags);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001234}
1235
Mathieu Chartierc7853442015-03-27 14:35:38 -07001236ArtField* CompilerDriver::ComputeInstanceFieldInfo(uint32_t field_idx,
1237 const DexCompilationUnit* mUnit, bool is_put,
1238 const ScopedObjectAccess& soa) {
Vladimir Markobe0e5462014-02-26 11:24:15 +00001239 // Try to resolve the field and compiling method's class.
Mathieu Chartierc7853442015-03-27 14:35:38 -07001240 ArtField* resolved_field;
Vladimir Markobe0e5462014-02-26 11:24:15 +00001241 mirror::Class* referrer_class;
1242 mirror::DexCache* dex_cache;
1243 {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001244 StackHandleScope<3> hs(soa.Self());
1245 Handle<mirror::DexCache> dex_cache_handle(
1246 hs.NewHandle(mUnit->GetClassLinker()->FindDexCache(*mUnit->GetDexFile())));
1247 Handle<mirror::ClassLoader> class_loader_handle(
1248 hs.NewHandle(soa.Decode<mirror::ClassLoader*>(mUnit->GetClassLoader())));
Mathieu Chartierc7853442015-03-27 14:35:38 -07001249 resolved_field =
1250 ResolveField(soa, dex_cache_handle, class_loader_handle, mUnit, field_idx, false);
1251 referrer_class = resolved_field != nullptr
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001252 ? ResolveCompilingMethodsClass(soa, dex_cache_handle, class_loader_handle, mUnit) : nullptr;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001253 dex_cache = dex_cache_handle.Get();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001254 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001255 bool can_link = false;
Vladimir Markobe0e5462014-02-26 11:24:15 +00001256 if (resolved_field != nullptr && referrer_class != nullptr) {
Vladimir Markobe0e5462014-02-26 11:24:15 +00001257 std::pair<bool, bool> fast_path = IsFastInstanceField(
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001258 dex_cache, referrer_class, resolved_field, field_idx);
1259 can_link = is_put ? fast_path.second : fast_path.first;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001260 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001261 ProcessedInstanceField(can_link);
1262 return can_link ? resolved_field : nullptr;
1263}
1264
1265bool CompilerDriver::ComputeInstanceFieldInfo(uint32_t field_idx, const DexCompilationUnit* mUnit,
1266 bool is_put, MemberOffset* field_offset,
1267 bool* is_volatile) {
1268 ScopedObjectAccess soa(Thread::Current());
Mathieu Chartierc7853442015-03-27 14:35:38 -07001269 ArtField* resolved_field = ComputeInstanceFieldInfo(field_idx, mUnit, is_put, soa);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001270
Mathieu Chartierc7853442015-03-27 14:35:38 -07001271 if (resolved_field == nullptr) {
Vladimir Markobe0e5462014-02-26 11:24:15 +00001272 // Conservative defaults.
1273 *is_volatile = true;
1274 *field_offset = MemberOffset(static_cast<size_t>(-1));
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001275 return false;
1276 } else {
1277 *is_volatile = resolved_field->IsVolatile();
1278 *field_offset = resolved_field->GetOffset();
1279 return true;
Vladimir Markobe0e5462014-02-26 11:24:15 +00001280 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001281}
1282
1283bool CompilerDriver::ComputeStaticFieldInfo(uint32_t field_idx, const DexCompilationUnit* mUnit,
Vladimir Markobe0e5462014-02-26 11:24:15 +00001284 bool is_put, MemberOffset* field_offset,
1285 uint32_t* storage_index, bool* is_referrers_class,
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01001286 bool* is_volatile, bool* is_initialized,
1287 Primitive::Type* type) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001288 ScopedObjectAccess soa(Thread::Current());
Vladimir Markobe0e5462014-02-26 11:24:15 +00001289 // Try to resolve the field and compiling method's class.
Mathieu Chartierc7853442015-03-27 14:35:38 -07001290 ArtField* resolved_field;
Vladimir Markobe0e5462014-02-26 11:24:15 +00001291 mirror::Class* referrer_class;
1292 mirror::DexCache* dex_cache;
1293 {
Mathieu Chartierc7853442015-03-27 14:35:38 -07001294 StackHandleScope<2> hs(soa.Self());
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001295 Handle<mirror::DexCache> dex_cache_handle(
1296 hs.NewHandle(mUnit->GetClassLinker()->FindDexCache(*mUnit->GetDexFile())));
1297 Handle<mirror::ClassLoader> class_loader_handle(
1298 hs.NewHandle(soa.Decode<mirror::ClassLoader*>(mUnit->GetClassLoader())));
Mathieu Chartierc7853442015-03-27 14:35:38 -07001299 resolved_field =
1300 ResolveField(soa, dex_cache_handle, class_loader_handle, mUnit, field_idx, true);
1301 referrer_class = resolved_field != nullptr
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001302 ? ResolveCompilingMethodsClass(soa, dex_cache_handle, class_loader_handle, mUnit) : nullptr;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001303 dex_cache = dex_cache_handle.Get();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001304 }
Vladimir Markobe0e5462014-02-26 11:24:15 +00001305 bool result = false;
1306 if (resolved_field != nullptr && referrer_class != nullptr) {
1307 *is_volatile = IsFieldVolatile(resolved_field);
1308 std::pair<bool, bool> fast_path = IsFastStaticField(
Vladimir Marko66c6d7b2014-10-16 15:41:48 +01001309 dex_cache, referrer_class, resolved_field, field_idx, storage_index);
Vladimir Markobe0e5462014-02-26 11:24:15 +00001310 result = is_put ? fast_path.second : fast_path.first;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001311 }
Vladimir Marko66c6d7b2014-10-16 15:41:48 +01001312 if (result) {
1313 *field_offset = GetFieldOffset(resolved_field);
1314 *is_referrers_class = IsStaticFieldInReferrerClass(referrer_class, resolved_field);
1315 // *is_referrers_class == true implies no worrying about class initialization.
1316 *is_initialized = (*is_referrers_class) ||
1317 (IsStaticFieldsClassInitialized(referrer_class, resolved_field) &&
1318 CanAssumeTypeIsPresentInDexCache(*mUnit->GetDexFile(), *storage_index));
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01001319 *type = resolved_field->GetTypeAsPrimitiveType();
Vladimir Marko66c6d7b2014-10-16 15:41:48 +01001320 } else {
Vladimir Markobe0e5462014-02-26 11:24:15 +00001321 // Conservative defaults.
1322 *is_volatile = true;
1323 *field_offset = MemberOffset(static_cast<size_t>(-1));
1324 *storage_index = -1;
1325 *is_referrers_class = false;
1326 *is_initialized = false;
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01001327 *type = Primitive::kPrimVoid;
Vladimir Markobe0e5462014-02-26 11:24:15 +00001328 }
1329 ProcessedStaticField(result, *is_referrers_class);
1330 return result;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001331}
1332
Ian Rogers83883d72013-10-21 21:07:24 -07001333void CompilerDriver::GetCodeAndMethodForDirectCall(InvokeType* type, InvokeType sharp_type,
1334 bool no_guarantee_of_dex_cache_entry,
Igor Murashkind6dee672014-10-16 18:36:16 -07001335 const mirror::Class* referrer_class,
Brian Carlstromea46f952013-07-30 01:26:50 -07001336 mirror::ArtMethod* method,
Vladimir Markof096aad2014-01-23 15:51:58 +00001337 int* stats_flags,
Ian Rogers83883d72013-10-21 21:07:24 -07001338 MethodReference* target_method,
Ian Rogers65ec92c2013-09-06 10:49:58 -07001339 uintptr_t* direct_code,
1340 uintptr_t* direct_method) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001341 // For direct and static methods compute possible direct_code and direct_method values, ie
1342 // an address for the Method* being invoked and an address of the code for that Method*.
1343 // For interface calls compute a value for direct_method that is the interface method being
1344 // invoked, so this can be passed to the out-of-line runtime support code.
Ian Rogers65ec92c2013-09-06 10:49:58 -07001345 *direct_code = 0;
1346 *direct_method = 0;
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08001347 Runtime* const runtime = Runtime::Current();
1348 gc::Heap* const heap = runtime->GetHeap();
Igor Murashkind6dee672014-10-16 18:36:16 -07001349 bool use_dex_cache = GetCompilerOptions().GetCompilePic(); // Off by default
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08001350 const bool compiling_boot = heap->IsCompilingBoot();
Alex Lighta59dd802014-07-02 16:28:08 -07001351 // TODO This is somewhat hacky. We should refactor all of this invoke codepath.
1352 const bool force_relocations = (compiling_boot ||
1353 GetCompilerOptions().GetIncludePatchInformation());
Elliott Hughes956af0f2014-12-11 14:34:28 -08001354 if (sharp_type != kStatic && sharp_type != kDirect) {
1355 return;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001356 }
Elliott Hughes956af0f2014-12-11 14:34:28 -08001357 // TODO: support patching on all architectures.
1358 use_dex_cache = use_dex_cache || (force_relocations && !support_boot_image_fixup_);
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08001359 mirror::Class* declaring_class = method->GetDeclaringClass();
1360 bool method_code_in_boot = declaring_class->GetClassLoader() == nullptr;
Ian Rogers83883d72013-10-21 21:07:24 -07001361 if (!use_dex_cache) {
1362 if (!method_code_in_boot) {
1363 use_dex_cache = true;
1364 } else {
Brian Carlstrom14247b62015-01-31 21:35:32 -08001365 bool has_clinit_trampoline =
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08001366 method->IsStatic() && !declaring_class->IsInitialized();
1367 if (has_clinit_trampoline && declaring_class != referrer_class) {
Ian Rogers83883d72013-10-21 21:07:24 -07001368 // Ensure we run the clinit trampoline unless we are invoking a static method in the same
1369 // class.
1370 use_dex_cache = true;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001371 }
1372 }
Ian Rogers83883d72013-10-21 21:07:24 -07001373 }
Mathieu Chartier28a35882015-02-26 18:28:07 -08001374 if (runtime->UseJit()) {
1375 // If we are the JIT, then don't allow a direct call to the interpreter bridge since this will
1376 // never be updated even after we compile the method.
1377 if (runtime->GetClassLinker()->IsQuickToInterpreterBridge(
1378 reinterpret_cast<const void*>(compiler_->GetEntryPointOf(method)))) {
1379 use_dex_cache = true;
1380 }
1381 }
Vladimir Markof096aad2014-01-23 15:51:58 +00001382 if (method_code_in_boot) {
1383 *stats_flags |= kFlagDirectCallToBoot | kFlagDirectMethodToBoot;
Ian Rogers83883d72013-10-21 21:07:24 -07001384 }
Alex Lighta59dd802014-07-02 16:28:08 -07001385 if (!use_dex_cache && force_relocations) {
Jeff Haoa0acc2d2015-01-27 11:22:04 -08001386 bool is_in_image;
1387 if (IsImage()) {
1388 is_in_image = IsImageClass(method->GetDeclaringClassDescriptor());
1389 } else {
1390 is_in_image = instruction_set_ != kX86 && instruction_set_ != kX86_64 &&
1391 Runtime::Current()->GetHeap()->FindSpaceFromObject(method->GetDeclaringClass(),
1392 false)->IsImageSpace();
1393 }
1394 if (!is_in_image) {
Ian Rogers83883d72013-10-21 21:07:24 -07001395 // We can only branch directly to Methods that are resolved in the DexCache.
1396 // Otherwise we won't invoke the resolution trampoline.
1397 use_dex_cache = true;
1398 }
1399 }
1400 // The method is defined not within this dex file. We need a dex cache slot within the current
1401 // dex file or direct pointers.
1402 bool must_use_direct_pointers = false;
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08001403 mirror::DexCache* dex_cache = declaring_class->GetDexCache();
1404 if (target_method->dex_file == dex_cache->GetDexFile() &&
1405 !(runtime->UseJit() && dex_cache->GetResolvedMethod(method->GetDexMethodIndex()) == nullptr)) {
Ian Rogers83883d72013-10-21 21:07:24 -07001406 target_method->dex_method_index = method->GetDexMethodIndex();
1407 } else {
Ian Rogers83883d72013-10-21 21:07:24 -07001408 if (no_guarantee_of_dex_cache_entry) {
1409 // See if the method is also declared in this dex cache.
Ian Rogerse0a02da2014-12-02 14:10:53 -08001410 uint32_t dex_method_idx =
1411 method->FindDexMethodIndexInOtherDexFile(*target_method->dex_file,
1412 target_method->dex_method_index);
Ian Rogers83883d72013-10-21 21:07:24 -07001413 if (dex_method_idx != DexFile::kDexNoIndex) {
1414 target_method->dex_method_index = dex_method_idx;
1415 } else {
Alex Lighta59dd802014-07-02 16:28:08 -07001416 if (force_relocations && !use_dex_cache) {
Jeff Hao49161ce2014-03-12 11:05:25 -07001417 target_method->dex_method_index = method->GetDexMethodIndex();
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08001418 target_method->dex_file = dex_cache->GetDexFile();
Jeff Hao49161ce2014-03-12 11:05:25 -07001419 }
Ian Rogers83883d72013-10-21 21:07:24 -07001420 must_use_direct_pointers = true;
1421 }
1422 }
1423 }
1424 if (use_dex_cache) {
1425 if (must_use_direct_pointers) {
1426 // Fail. Test above showed the only safe dispatch was via the dex cache, however, the direct
1427 // pointers are required as the dex cache lacks an appropriate entry.
1428 VLOG(compiler) << "Dex cache devirtualization failed for: " << PrettyMethod(method);
1429 } else {
1430 *type = sharp_type;
1431 }
1432 } else {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08001433 bool method_in_image = heap->FindSpaceFromObject(method, false)->IsImageSpace();
Mathieu Chartier6ced4092015-02-27 16:10:48 -08001434 if (method_in_image || compiling_boot || runtime->UseJit()) {
Alex Lighta59dd802014-07-02 16:28:08 -07001435 // 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 -08001436 // In the case where we are the JIT, we can always use direct pointers since we know where
1437 // the method and its code are / will be. We don't sharpen to interpreter bridge since we
1438 // check IsQuickToInterpreterBridge above.
Vladimir Markoa51a0b02014-05-21 12:08:39 +01001439 CHECK(!method->IsAbstract());
Ian Rogers83883d72013-10-21 21:07:24 -07001440 *type = sharp_type;
Alex Lighta59dd802014-07-02 16:28:08 -07001441 *direct_method = force_relocations ? -1 : reinterpret_cast<uintptr_t>(method);
1442 *direct_code = force_relocations ? -1 : compiler_->GetEntryPointOf(method);
Brian Carlstrom14247b62015-01-31 21:35:32 -08001443 target_method->dex_file = method->GetDeclaringClass()->GetDexCache()->GetDexFile();
Vladimir Markoa51a0b02014-05-21 12:08:39 +01001444 target_method->dex_method_index = method->GetDexMethodIndex();
1445 } else if (!must_use_direct_pointers) {
1446 // Set the code and rely on the dex cache for the method.
1447 *type = sharp_type;
Alex Lighta59dd802014-07-02 16:28:08 -07001448 if (force_relocations) {
1449 *direct_code = -1;
Brian Carlstrom14247b62015-01-31 21:35:32 -08001450 target_method->dex_file = method->GetDeclaringClass()->GetDexCache()->GetDexFile();
Alex Lighta59dd802014-07-02 16:28:08 -07001451 target_method->dex_method_index = method->GetDexMethodIndex();
1452 } else {
1453 *direct_code = compiler_->GetEntryPointOf(method);
1454 }
Ian Rogers83883d72013-10-21 21:07:24 -07001455 } else {
Vladimir Markoa51a0b02014-05-21 12:08:39 +01001456 // Direct pointers were required but none were available.
1457 VLOG(compiler) << "Dex cache devirtualization failed for: " << PrettyMethod(method);
Ian Rogers83883d72013-10-21 21:07:24 -07001458 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001459 }
1460}
1461
1462bool CompilerDriver::ComputeInvokeInfo(const DexCompilationUnit* mUnit, const uint32_t dex_pc,
Ian Rogers65ec92c2013-09-06 10:49:58 -07001463 bool update_stats, bool enable_devirtualization,
1464 InvokeType* invoke_type, MethodReference* target_method,
1465 int* vtable_idx, uintptr_t* direct_code,
1466 uintptr_t* direct_method) {
Vladimir Markof096aad2014-01-23 15:51:58 +00001467 InvokeType orig_invoke_type = *invoke_type;
1468 int stats_flags = 0;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001469 ScopedObjectAccess soa(Thread::Current());
Vladimir Markof096aad2014-01-23 15:51:58 +00001470 // Try to resolve the method and compiling method's class.
1471 mirror::ArtMethod* resolved_method;
1472 mirror::Class* referrer_class;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001473 StackHandleScope<3> hs(soa.Self());
1474 Handle<mirror::DexCache> dex_cache(
1475 hs.NewHandle(mUnit->GetClassLinker()->FindDexCache(*mUnit->GetDexFile())));
1476 Handle<mirror::ClassLoader> class_loader(hs.NewHandle(
1477 soa.Decode<mirror::ClassLoader*>(mUnit->GetClassLoader())));
Vladimir Markof096aad2014-01-23 15:51:58 +00001478 {
1479 uint32_t method_idx = target_method->dex_method_index;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001480 Handle<mirror::ArtMethod> resolved_method_handle(hs.NewHandle(
1481 ResolveMethod(soa, dex_cache, class_loader, mUnit, method_idx, orig_invoke_type)));
1482 referrer_class = (resolved_method_handle.Get() != nullptr)
Vladimir Markof096aad2014-01-23 15:51:58 +00001483 ? ResolveCompilingMethodsClass(soa, dex_cache, class_loader, mUnit) : nullptr;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001484 resolved_method = resolved_method_handle.Get();
Vladimir Markof096aad2014-01-23 15:51:58 +00001485 }
1486 bool result = false;
1487 if (resolved_method != nullptr) {
1488 *vtable_idx = GetResolvedMethodVTableIndex(resolved_method, orig_invoke_type);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001489
Nicolas Geoffraye53798a2014-12-01 10:31:54 +00001490 if (enable_devirtualization && mUnit->GetVerifiedMethod() != nullptr) {
Vladimir Markof096aad2014-01-23 15:51:58 +00001491 const MethodReference* devirt_target = mUnit->GetVerifiedMethod()->GetDevirtTarget(dex_pc);
1492
1493 stats_flags = IsFastInvoke(
1494 soa, dex_cache, class_loader, mUnit, referrer_class, resolved_method,
1495 invoke_type, target_method, devirt_target, direct_code, direct_method);
1496 result = stats_flags != 0;
1497 } else {
1498 // Devirtualization not enabled. Inline IsFastInvoke(), dropping the devirtualization parts.
1499 if (UNLIKELY(referrer_class == nullptr) ||
1500 UNLIKELY(!referrer_class->CanAccessResolvedMethod(resolved_method->GetDeclaringClass(),
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001501 resolved_method, dex_cache.Get(),
Vladimir Markof096aad2014-01-23 15:51:58 +00001502 target_method->dex_method_index)) ||
1503 *invoke_type == kSuper) {
1504 // Slow path. (Without devirtualization, all super calls go slow path as well.)
1505 } else {
1506 // Sharpening failed so generate a regular resolved method dispatch.
1507 stats_flags = kFlagMethodResolved;
1508 GetCodeAndMethodForDirectCall(invoke_type, *invoke_type, false, referrer_class, resolved_method,
1509 &stats_flags, target_method, direct_code, direct_method);
1510 result = true;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001511 }
1512 }
1513 }
Vladimir Markof096aad2014-01-23 15:51:58 +00001514 if (!result) {
1515 // Conservative defaults.
1516 *vtable_idx = -1;
1517 *direct_code = 0u;
1518 *direct_method = 0u;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001519 }
1520 if (update_stats) {
Vladimir Markof096aad2014-01-23 15:51:58 +00001521 ProcessedInvoke(orig_invoke_type, stats_flags);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001522 }
Vladimir Markof096aad2014-01-23 15:51:58 +00001523 return result;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001524}
1525
Vladimir Marko2730db02014-01-27 11:15:17 +00001526const VerifiedMethod* CompilerDriver::GetVerifiedMethod(const DexFile* dex_file,
1527 uint32_t method_idx) const {
1528 MethodReference ref(dex_file, method_idx);
1529 return verification_results_->GetVerifiedMethod(ref);
1530}
1531
1532bool CompilerDriver::IsSafeCast(const DexCompilationUnit* mUnit, uint32_t dex_pc) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001533 if (!compiler_options_->IsVerificationEnabled()) {
1534 // If we didn't verify, every cast has to be treated as non-safe.
1535 return false;
1536 }
Vladimir Marko2730db02014-01-27 11:15:17 +00001537 DCHECK(mUnit->GetVerifiedMethod() != nullptr);
1538 bool result = mUnit->GetVerifiedMethod()->IsSafeCast(dex_pc);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001539 if (result) {
1540 stats_->SafeCast();
1541 } else {
1542 stats_->NotASafeCast();
1543 }
1544 return result;
1545}
1546
Brian Carlstrom7940e442013-07-12 13:46:57 -07001547class ParallelCompilationManager {
1548 public:
1549 typedef void Callback(const ParallelCompilationManager* manager, size_t index);
1550
1551 ParallelCompilationManager(ClassLinker* class_linker,
1552 jobject class_loader,
1553 CompilerDriver* compiler,
1554 const DexFile* dex_file,
Andreas Gampede7b4362014-07-28 18:38:57 -07001555 const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -08001556 ThreadPool* thread_pool)
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001557 : index_(0),
1558 class_linker_(class_linker),
Brian Carlstrom7940e442013-07-12 13:46:57 -07001559 class_loader_(class_loader),
1560 compiler_(compiler),
1561 dex_file_(dex_file),
Andreas Gampede7b4362014-07-28 18:38:57 -07001562 dex_files_(dex_files),
Ian Rogers3d504072014-03-01 09:16:49 -08001563 thread_pool_(thread_pool) {}
Brian Carlstrom7940e442013-07-12 13:46:57 -07001564
1565 ClassLinker* GetClassLinker() const {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001566 CHECK(class_linker_ != nullptr);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001567 return class_linker_;
1568 }
1569
1570 jobject GetClassLoader() const {
1571 return class_loader_;
1572 }
1573
1574 CompilerDriver* GetCompiler() const {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001575 CHECK(compiler_ != nullptr);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001576 return compiler_;
1577 }
1578
1579 const DexFile* GetDexFile() const {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001580 CHECK(dex_file_ != nullptr);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001581 return dex_file_;
1582 }
1583
Andreas Gampede7b4362014-07-28 18:38:57 -07001584 const std::vector<const DexFile*>& GetDexFiles() const {
1585 return dex_files_;
1586 }
1587
Brian Carlstrom7940e442013-07-12 13:46:57 -07001588 void ForAll(size_t begin, size_t end, Callback callback, size_t work_units) {
1589 Thread* self = Thread::Current();
1590 self->AssertNoPendingException();
1591 CHECK_GT(work_units, 0U);
1592
Ian Rogers3e5cf302014-05-20 16:40:37 -07001593 index_.StoreRelaxed(begin);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001594 for (size_t i = 0; i < work_units; ++i) {
Sebastien Hertz501baec2013-12-13 12:02:36 +01001595 thread_pool_->AddTask(self, new ForAllClosure(this, end, callback));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001596 }
1597 thread_pool_->StartWorkers(self);
1598
1599 // Ensure we're suspended while we're blocked waiting for the other threads to finish (worker
1600 // thread destructor's called below perform join).
1601 CHECK_NE(self->GetState(), kRunnable);
1602
1603 // Wait for all the worker threads to finish.
1604 thread_pool_->Wait(self, true, false);
1605 }
1606
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001607 size_t NextIndex() {
Ian Rogers3e5cf302014-05-20 16:40:37 -07001608 return index_.FetchAndAddSequentiallyConsistent(1);
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001609 }
1610
Brian Carlstrom7940e442013-07-12 13:46:57 -07001611 private:
Brian Carlstrom7940e442013-07-12 13:46:57 -07001612 class ForAllClosure : public Task {
1613 public:
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001614 ForAllClosure(ParallelCompilationManager* manager, size_t end, Callback* callback)
Brian Carlstrom7940e442013-07-12 13:46:57 -07001615 : manager_(manager),
Brian Carlstrom7940e442013-07-12 13:46:57 -07001616 end_(end),
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001617 callback_(callback) {}
Brian Carlstrom7940e442013-07-12 13:46:57 -07001618
1619 virtual void Run(Thread* self) {
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001620 while (true) {
1621 const size_t index = manager_->NextIndex();
1622 if (UNLIKELY(index >= end_)) {
1623 break;
1624 }
1625 callback_(manager_, index);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001626 self->AssertNoPendingException();
1627 }
1628 }
1629
1630 virtual void Finalize() {
1631 delete this;
1632 }
Brian Carlstrom0cd7ec22013-07-17 23:40:20 -07001633
Brian Carlstrom7940e442013-07-12 13:46:57 -07001634 private:
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001635 ParallelCompilationManager* const manager_;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001636 const size_t end_;
Bernhard Rosenkränzer46053622013-12-12 02:15:52 +01001637 Callback* const callback_;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001638 };
1639
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001640 AtomicInteger index_;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001641 ClassLinker* const class_linker_;
1642 const jobject class_loader_;
1643 CompilerDriver* const compiler_;
1644 const DexFile* const dex_file_;
Andreas Gampede7b4362014-07-28 18:38:57 -07001645 const std::vector<const DexFile*>& dex_files_;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001646 ThreadPool* const thread_pool_;
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001647
1648 DISALLOW_COPY_AND_ASSIGN(ParallelCompilationManager);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001649};
1650
Jeff Hao0e49b422013-11-08 12:16:56 -08001651// A fast version of SkipClass above if the class pointer is available
1652// that avoids the expensive FindInClassPath search.
1653static bool SkipClass(jobject class_loader, const DexFile& dex_file, mirror::Class* klass)
1654 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001655 DCHECK(klass != nullptr);
Jeff Hao0e49b422013-11-08 12:16:56 -08001656 const DexFile& original_dex_file = *klass->GetDexCache()->GetDexFile();
1657 if (&dex_file != &original_dex_file) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001658 if (class_loader == nullptr) {
Jeff Hao0e49b422013-11-08 12:16:56 -08001659 LOG(WARNING) << "Skipping class " << PrettyDescriptor(klass) << " from "
1660 << dex_file.GetLocation() << " previously found in "
1661 << original_dex_file.GetLocation();
1662 }
1663 return true;
1664 }
1665 return false;
1666}
1667
Mathieu Chartier70b63482014-06-27 17:19:04 -07001668static void CheckAndClearResolveException(Thread* self)
1669 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
1670 CHECK(self->IsExceptionPending());
Nicolas Geoffray14691c52015-03-05 10:40:17 +00001671 mirror::Throwable* exception = self->GetException();
Ian Rogers1ff3c982014-08-12 02:30:58 -07001672 std::string temp;
1673 const char* descriptor = exception->GetClass()->GetDescriptor(&temp);
1674 const char* expected_exceptions[] = {
1675 "Ljava/lang/IllegalAccessError;",
1676 "Ljava/lang/IncompatibleClassChangeError;",
1677 "Ljava/lang/InstantiationError;",
Brian Carlstrom898fcb52014-08-25 23:07:30 -07001678 "Ljava/lang/LinkageError;",
Ian Rogers1ff3c982014-08-12 02:30:58 -07001679 "Ljava/lang/NoClassDefFoundError;",
1680 "Ljava/lang/NoSuchFieldError;",
1681 "Ljava/lang/NoSuchMethodError;"
1682 };
1683 bool found = false;
1684 for (size_t i = 0; (found == false) && (i < arraysize(expected_exceptions)); ++i) {
1685 if (strcmp(descriptor, expected_exceptions[i]) == 0) {
1686 found = true;
1687 }
1688 }
1689 if (!found) {
Brian Carlstrom898fcb52014-08-25 23:07:30 -07001690 LOG(FATAL) << "Unexpected exception " << exception->Dump();
Mathieu Chartier70b63482014-06-27 17:19:04 -07001691 }
1692 self->ClearException();
1693}
1694
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001695static void ResolveClassFieldsAndMethods(const ParallelCompilationManager* manager,
1696 size_t class_def_index)
Brian Carlstrom7940e442013-07-12 13:46:57 -07001697 LOCKS_EXCLUDED(Locks::mutator_lock_) {
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07001698 ATRACE_CALL();
Ian Rogersbe7149f2013-08-20 09:29:39 -07001699 Thread* self = Thread::Current();
1700 jobject jclass_loader = manager->GetClassLoader();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001701 const DexFile& dex_file = *manager->GetDexFile();
Ian Rogersbe7149f2013-08-20 09:29:39 -07001702 ClassLinker* class_linker = manager->GetClassLinker();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001703
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001704 // If an instance field is final then we need to have a barrier on the return, static final
1705 // fields are assigned within the lock held for class initialization. Conservatively assume
1706 // constructor barriers are always required.
1707 bool requires_constructor_barrier = true;
1708
Brian Carlstrom7940e442013-07-12 13:46:57 -07001709 // Method and Field are the worst. We can't resolve without either
1710 // context from the code use (to disambiguate virtual vs direct
1711 // method and instance vs static field) or from class
1712 // definitions. While the compiler will resolve what it can as it
1713 // needs it, here we try to resolve fields and methods used in class
1714 // definitions, since many of them many never be referenced by
1715 // generated code.
1716 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
Ian Rogers68b56852014-08-29 20:19:11 -07001717 ScopedObjectAccess soa(self);
1718 StackHandleScope<2> hs(soa.Self());
1719 Handle<mirror::ClassLoader> class_loader(
1720 hs.NewHandle(soa.Decode<mirror::ClassLoader*>(jclass_loader)));
1721 Handle<mirror::DexCache> dex_cache(hs.NewHandle(class_linker->FindDexCache(dex_file)));
1722 // Resolve the class.
1723 mirror::Class* klass = class_linker->ResolveType(dex_file, class_def.class_idx_, dex_cache,
1724 class_loader);
1725 bool resolve_fields_and_methods;
1726 if (klass == nullptr) {
1727 // Class couldn't be resolved, for example, super-class is in a different dex file. Don't
1728 // attempt to resolve methods and fields when there is no declaring class.
1729 CheckAndClearResolveException(soa.Self());
1730 resolve_fields_and_methods = false;
1731 } else {
1732 // We successfully resolved a class, should we skip it?
1733 if (SkipClass(jclass_loader, dex_file, klass)) {
1734 return;
Brian Carlstromcb5f5e52013-09-23 17:48:16 -07001735 }
Ian Rogers68b56852014-08-29 20:19:11 -07001736 // We want to resolve the methods and fields eagerly.
1737 resolve_fields_and_methods = true;
1738 }
1739 // Note the class_data pointer advances through the headers,
1740 // static fields, instance fields, direct methods, and virtual
1741 // methods.
Ian Rogers13735952014-10-08 12:43:28 -07001742 const uint8_t* class_data = dex_file.GetClassData(class_def);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001743 if (class_data == nullptr) {
Ian Rogers68b56852014-08-29 20:19:11 -07001744 // Empty class such as a marker interface.
1745 requires_constructor_barrier = false;
1746 } else {
1747 ClassDataItemIterator it(dex_file, class_data);
1748 while (it.HasNextStaticField()) {
1749 if (resolve_fields_and_methods) {
Mathieu Chartierc7853442015-03-27 14:35:38 -07001750 ArtField* field = class_linker->ResolveField(dex_file, it.GetMemberIndex(),
Ian Rogers68b56852014-08-29 20:19:11 -07001751 dex_cache, class_loader, true);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001752 if (field == nullptr) {
Ian Rogers68b56852014-08-29 20:19:11 -07001753 CheckAndClearResolveException(soa.Self());
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001754 }
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001755 }
Ian Rogers68b56852014-08-29 20:19:11 -07001756 it.Next();
1757 }
1758 // We require a constructor barrier if there are final instance fields.
1759 requires_constructor_barrier = false;
1760 while (it.HasNextInstanceField()) {
Andreas Gampe51829322014-08-25 15:05:04 -07001761 if (it.MemberIsFinal()) {
Ian Rogers68b56852014-08-29 20:19:11 -07001762 requires_constructor_barrier = true;
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001763 }
1764 if (resolve_fields_and_methods) {
Mathieu Chartierc7853442015-03-27 14:35:38 -07001765 ArtField* field = class_linker->ResolveField(dex_file, it.GetMemberIndex(),
Ian Rogers68b56852014-08-29 20:19:11 -07001766 dex_cache, class_loader, false);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001767 if (field == nullptr) {
Ian Rogers68b56852014-08-29 20:19:11 -07001768 CheckAndClearResolveException(soa.Self());
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001769 }
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001770 }
Ian Rogers68b56852014-08-29 20:19:11 -07001771 it.Next();
1772 }
1773 if (resolve_fields_and_methods) {
1774 while (it.HasNextDirectMethod()) {
1775 mirror::ArtMethod* method = class_linker->ResolveMethod(dex_file, it.GetMemberIndex(),
1776 dex_cache, class_loader,
1777 NullHandle<mirror::ArtMethod>(),
1778 it.GetMethodInvokeType(class_def));
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001779 if (method == nullptr) {
Ian Rogers68b56852014-08-29 20:19:11 -07001780 CheckAndClearResolveException(soa.Self());
1781 }
1782 it.Next();
1783 }
1784 while (it.HasNextVirtualMethod()) {
1785 mirror::ArtMethod* method = class_linker->ResolveMethod(dex_file, it.GetMemberIndex(),
1786 dex_cache, class_loader,
1787 NullHandle<mirror::ArtMethod>(),
1788 it.GetMethodInvokeType(class_def));
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001789 if (method == nullptr) {
Ian Rogers68b56852014-08-29 20:19:11 -07001790 CheckAndClearResolveException(soa.Self());
1791 }
1792 it.Next();
1793 }
1794 DCHECK(!it.HasNext());
Brian Carlstrom7940e442013-07-12 13:46:57 -07001795 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001796 }
1797 if (requires_constructor_barrier) {
Ian Rogersbe7149f2013-08-20 09:29:39 -07001798 manager->GetCompiler()->AddRequiresConstructorBarrier(self, &dex_file, class_def_index);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001799 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001800}
1801
1802static void ResolveType(const ParallelCompilationManager* manager, size_t type_idx)
1803 LOCKS_EXCLUDED(Locks::mutator_lock_) {
1804 // Class derived values are more complicated, they require the linker and loader.
1805 ScopedObjectAccess soa(Thread::Current());
1806 ClassLinker* class_linker = manager->GetClassLinker();
1807 const DexFile& dex_file = *manager->GetDexFile();
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001808 StackHandleScope<2> hs(soa.Self());
1809 Handle<mirror::DexCache> dex_cache(hs.NewHandle(class_linker->FindDexCache(dex_file)));
1810 Handle<mirror::ClassLoader> class_loader(
1811 hs.NewHandle(soa.Decode<mirror::ClassLoader*>(manager->GetClassLoader())));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001812 mirror::Class* klass = class_linker->ResolveType(dex_file, type_idx, dex_cache, class_loader);
1813
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001814 if (klass == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001815 CHECK(soa.Self()->IsExceptionPending());
Nicolas Geoffray14691c52015-03-05 10:40:17 +00001816 mirror::Throwable* exception = soa.Self()->GetException();
Ian Rogersa436fde2013-08-27 23:34:06 -07001817 VLOG(compiler) << "Exception during type resolution: " << exception->Dump();
Mathieu Chartierf8322842014-05-16 10:59:25 -07001818 if (exception->GetClass()->DescriptorEquals("Ljava/lang/OutOfMemoryError;")) {
Ian Rogersa436fde2013-08-27 23:34:06 -07001819 // There's little point continuing compilation if the heap is exhausted.
1820 LOG(FATAL) << "Out of memory during type resolution for compilation";
1821 }
1822 soa.Self()->ClearException();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001823 }
1824}
1825
1826void CompilerDriver::ResolveDexFile(jobject class_loader, const DexFile& dex_file,
Andreas Gampede7b4362014-07-28 18:38:57 -07001827 const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -08001828 ThreadPool* thread_pool, TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001829 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
1830
1831 // TODO: we could resolve strings here, although the string table is largely filled with class
1832 // and method names.
1833
Andreas Gampede7b4362014-07-28 18:38:57 -07001834 ParallelCompilationManager context(class_linker, class_loader, this, &dex_file, dex_files,
1835 thread_pool);
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001836 if (IsImage()) {
1837 // For images we resolve all types, such as array, whereas for applications just those with
1838 // classdefs are resolved by ResolveClassFieldsAndMethods.
Mathieu Chartierf5997b42014-06-20 10:37:54 -07001839 TimingLogger::ScopedTiming t("Resolve Types", timings);
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001840 context.ForAll(0, dex_file.NumTypeIds(), ResolveType, thread_count_);
1841 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001842
Mathieu Chartierf5997b42014-06-20 10:37:54 -07001843 TimingLogger::ScopedTiming t("Resolve MethodsAndFields", timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001844 context.ForAll(0, dex_file.NumClassDefs(), ResolveClassFieldsAndMethods, thread_count_);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001845}
1846
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001847void CompilerDriver::SetVerified(jobject class_loader, const std::vector<const DexFile*>& dex_files,
1848 ThreadPool* thread_pool, TimingLogger* timings) {
1849 for (size_t i = 0; i != dex_files.size(); ++i) {
1850 const DexFile* dex_file = dex_files[i];
1851 CHECK(dex_file != nullptr);
1852 SetVerifiedDexFile(class_loader, *dex_file, dex_files, thread_pool, timings);
1853 }
1854}
1855
Brian Carlstrom7940e442013-07-12 13:46:57 -07001856void CompilerDriver::Verify(jobject class_loader, const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -08001857 ThreadPool* thread_pool, TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001858 for (size_t i = 0; i != dex_files.size(); ++i) {
1859 const DexFile* dex_file = dex_files[i];
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001860 CHECK(dex_file != nullptr);
Andreas Gampede7b4362014-07-28 18:38:57 -07001861 VerifyDexFile(class_loader, *dex_file, dex_files, thread_pool, timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001862 }
1863}
1864
1865static void VerifyClass(const ParallelCompilationManager* manager, size_t class_def_index)
1866 LOCKS_EXCLUDED(Locks::mutator_lock_) {
Anwar Ghuloum67f99412013-08-12 14:19:48 -07001867 ATRACE_CALL();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001868 ScopedObjectAccess soa(Thread::Current());
Jeff Hao0e49b422013-11-08 12:16:56 -08001869 const DexFile& dex_file = *manager->GetDexFile();
1870 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
1871 const char* descriptor = dex_file.GetClassDescriptor(class_def);
1872 ClassLinker* class_linker = manager->GetClassLinker();
1873 jobject jclass_loader = manager->GetClassLoader();
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001874 StackHandleScope<3> hs(soa.Self());
1875 Handle<mirror::ClassLoader> class_loader(
1876 hs.NewHandle(soa.Decode<mirror::ClassLoader*>(jclass_loader)));
1877 Handle<mirror::Class> klass(
1878 hs.NewHandle(class_linker->FindClass(soa.Self(), descriptor, class_loader)));
1879 if (klass.Get() == nullptr) {
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001880 CHECK(soa.Self()->IsExceptionPending());
Brian Carlstrom7940e442013-07-12 13:46:57 -07001881 soa.Self()->ClearException();
1882
1883 /*
1884 * At compile time, we can still structurally verify the class even if FindClass fails.
1885 * This is to ensure the class is structurally sound for compilation. An unsound class
1886 * will be rejected by the verifier and later skipped during compilation in the compiler.
1887 */
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001888 Handle<mirror::DexCache> dex_cache(hs.NewHandle(class_linker->FindDexCache(dex_file)));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001889 std::string error_msg;
Ian Rogers7b078e82014-09-10 14:44:24 -07001890 if (verifier::MethodVerifier::VerifyClass(soa.Self(), &dex_file, dex_cache, class_loader,
1891 &class_def, true, &error_msg) ==
Brian Carlstrom7940e442013-07-12 13:46:57 -07001892 verifier::MethodVerifier::kHardFailure) {
Jeff Hao0e49b422013-11-08 12:16:56 -08001893 LOG(ERROR) << "Verification failed on class " << PrettyDescriptor(descriptor)
Brian Carlstrom7940e442013-07-12 13:46:57 -07001894 << " because: " << error_msg;
Andreas Gampe6cf49e52015-03-05 13:08:45 -08001895 manager->GetCompiler()->SetHadHardVerifierFailure();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001896 }
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001897 } else if (!SkipClass(jclass_loader, dex_file, klass.Get())) {
1898 CHECK(klass->IsResolved()) << PrettyClass(klass.Get());
Ian Rogers7b078e82014-09-10 14:44:24 -07001899 class_linker->VerifyClass(soa.Self(), klass);
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001900
1901 if (klass->IsErroneous()) {
1902 // ClassLinker::VerifyClass throws, which isn't useful in the compiler.
1903 CHECK(soa.Self()->IsExceptionPending());
1904 soa.Self()->ClearException();
Andreas Gampe6cf49e52015-03-05 13:08:45 -08001905 manager->GetCompiler()->SetHadHardVerifierFailure();
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001906 }
1907
1908 CHECK(klass->IsCompileTimeVerified() || klass->IsErroneous())
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001909 << PrettyDescriptor(klass.Get()) << ": state=" << klass->GetStatus();
Andreas Gampe7ae063b2014-11-24 23:50:13 -08001910
1911 // It is *very* problematic if there are verification errors in the boot classpath. For example,
1912 // we rely on things working OK without verification when the decryption dialog is brought up.
1913 // So abort in a debug build if we find this violated.
1914 DCHECK(!manager->GetCompiler()->IsImage() || klass->IsVerified()) << "Boot classpath class " <<
1915 PrettyClass(klass.Get()) << " failed to fully verify.";
Brian Carlstrom7940e442013-07-12 13:46:57 -07001916 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001917 soa.Self()->AssertNoPendingException();
1918}
1919
1920void CompilerDriver::VerifyDexFile(jobject class_loader, const DexFile& dex_file,
Andreas Gampede7b4362014-07-28 18:38:57 -07001921 const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -08001922 ThreadPool* thread_pool, TimingLogger* timings) {
Mathieu Chartierf5997b42014-06-20 10:37:54 -07001923 TimingLogger::ScopedTiming t("Verify Dex File", timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001924 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Andreas Gampede7b4362014-07-28 18:38:57 -07001925 ParallelCompilationManager context(class_linker, class_loader, this, &dex_file, dex_files,
1926 thread_pool);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001927 context.ForAll(0, dex_file.NumClassDefs(), VerifyClass, thread_count_);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001928}
1929
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001930static void SetVerifiedClass(const ParallelCompilationManager* manager, size_t class_def_index)
1931 LOCKS_EXCLUDED(Locks::mutator_lock_) {
1932 ATRACE_CALL();
1933 ScopedObjectAccess soa(Thread::Current());
1934 const DexFile& dex_file = *manager->GetDexFile();
1935 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
1936 const char* descriptor = dex_file.GetClassDescriptor(class_def);
1937 ClassLinker* class_linker = manager->GetClassLinker();
1938 jobject jclass_loader = manager->GetClassLoader();
1939 StackHandleScope<3> hs(soa.Self());
1940 Handle<mirror::ClassLoader> class_loader(
1941 hs.NewHandle(soa.Decode<mirror::ClassLoader*>(jclass_loader)));
1942 Handle<mirror::Class> klass(
1943 hs.NewHandle(class_linker->FindClass(soa.Self(), descriptor, class_loader)));
1944 // Class might have failed resolution. Then don't set it to verified.
1945 if (klass.Get() != nullptr) {
1946 // Only do this if the class is resolved. If even resolution fails, quickening will go very,
1947 // very wrong.
1948 if (klass->IsResolved()) {
1949 if (klass->GetStatus() < mirror::Class::kStatusVerified) {
1950 ObjectLock<mirror::Class> lock(soa.Self(), klass);
Hiroshi Yamauchi5b783e62015-03-18 17:20:11 -07001951 mirror::Class::SetStatus(klass, mirror::Class::kStatusVerified, soa.Self());
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001952 }
1953 // Record the final class status if necessary.
1954 ClassReference ref(manager->GetDexFile(), class_def_index);
1955 manager->GetCompiler()->RecordClassStatus(ref, klass->GetStatus());
1956 }
Andreas Gampe61ff0092014-09-16 11:23:23 -07001957 } else {
1958 Thread* self = soa.Self();
1959 DCHECK(self->IsExceptionPending());
1960 self->ClearException();
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001961 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001962}
1963
1964void CompilerDriver::SetVerifiedDexFile(jobject class_loader, const DexFile& dex_file,
1965 const std::vector<const DexFile*>& dex_files,
1966 ThreadPool* thread_pool, TimingLogger* timings) {
1967 TimingLogger::ScopedTiming t("Verify Dex File", timings);
1968 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
1969 ParallelCompilationManager context(class_linker, class_loader, this, &dex_file, dex_files,
1970 thread_pool);
1971 context.ForAll(0, dex_file.NumClassDefs(), SetVerifiedClass, thread_count_);
1972}
1973
Brian Carlstrom7940e442013-07-12 13:46:57 -07001974static void InitializeClass(const ParallelCompilationManager* manager, size_t class_def_index)
1975 LOCKS_EXCLUDED(Locks::mutator_lock_) {
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07001976 ATRACE_CALL();
Jeff Hao0e49b422013-11-08 12:16:56 -08001977 jobject jclass_loader = manager->GetClassLoader();
1978 const DexFile& dex_file = *manager->GetDexFile();
1979 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
Jeff Haobcdbbfe2013-11-08 18:03:22 -08001980 const DexFile::TypeId& class_type_id = dex_file.GetTypeId(class_def.class_idx_);
1981 const char* descriptor = dex_file.StringDataByIdx(class_type_id.descriptor_idx_);
Ian Rogersfc0e94b2013-09-23 23:51:32 -07001982
Brian Carlstrom7940e442013-07-12 13:46:57 -07001983 ScopedObjectAccess soa(Thread::Current());
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001984 StackHandleScope<3> hs(soa.Self());
1985 Handle<mirror::ClassLoader> class_loader(
1986 hs.NewHandle(soa.Decode<mirror::ClassLoader*>(jclass_loader)));
1987 Handle<mirror::Class> klass(
1988 hs.NewHandle(manager->GetClassLinker()->FindClass(soa.Self(), descriptor, class_loader)));
Jeff Hao0e49b422013-11-08 12:16:56 -08001989
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001990 if (klass.Get() != nullptr && !SkipClass(jclass_loader, dex_file, klass.Get())) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001991 // Only try to initialize classes that were successfully verified.
1992 if (klass->IsVerified()) {
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07001993 // Attempt to initialize the class but bail if we either need to initialize the super-class
1994 // or static fields.
Ian Rogers7b078e82014-09-10 14:44:24 -07001995 manager->GetClassLinker()->EnsureInitialized(soa.Self(), klass, false, false);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001996 if (!klass->IsInitialized()) {
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07001997 // We don't want non-trivial class initialization occurring on multiple threads due to
1998 // deadlock problems. For example, a parent class is initialized (holding its lock) that
1999 // refers to a sub-class in its static/class initializer causing it to try to acquire the
2000 // sub-class' lock. While on a second thread the sub-class is initialized (holding its lock)
2001 // after first initializing its parents, whose locks are acquired. This leads to a
2002 // parent-to-child and a child-to-parent lock ordering and consequent potential deadlock.
2003 // We need to use an ObjectLock due to potential suspension in the interpreting code. Rather
2004 // than use a special Object for the purpose we use the Class of java.lang.Class.
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07002005 Handle<mirror::Class> h_klass(hs.NewHandle(klass->GetClass()));
Mathieu Chartierdb2633c2014-05-16 09:59:29 -07002006 ObjectLock<mirror::Class> lock(soa.Self(), h_klass);
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07002007 // Attempt to initialize allowing initialization of parent classes but still not static
2008 // fields.
Ian Rogers7b078e82014-09-10 14:44:24 -07002009 manager->GetClassLinker()->EnsureInitialized(soa.Self(), klass, false, true);
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07002010 if (!klass->IsInitialized()) {
2011 // We need to initialize static fields, we only do this for image classes that aren't
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01002012 // marked with the $NoPreloadHolder (which implies this should not be initialized early).
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07002013 bool can_init_static_fields = manager->GetCompiler()->IsImage() &&
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01002014 manager->GetCompiler()->IsImageClass(descriptor) &&
2015 !StringPiece(descriptor).ends_with("$NoPreloadHolder;");
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07002016 if (can_init_static_fields) {
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01002017 VLOG(compiler) << "Initializing: " << descriptor;
Ian Rogersc45b8b52014-05-03 01:39:59 -07002018 // TODO multithreading support. We should ensure the current compilation thread has
2019 // exclusive access to the runtime and the transaction. To achieve this, we could use
2020 // a ReaderWriterMutex but we're holding the mutator lock so we fail mutex sanity
2021 // checks in Thread::AssertThreadSuspensionIsAllowable.
2022 Runtime* const runtime = Runtime::Current();
2023 Transaction transaction;
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01002024
Ian Rogersc45b8b52014-05-03 01:39:59 -07002025 // Run the class initializer in transaction mode.
2026 runtime->EnterTransactionMode(&transaction);
2027 const mirror::Class::Status old_status = klass->GetStatus();
Ian Rogers7b078e82014-09-10 14:44:24 -07002028 bool success = manager->GetClassLinker()->EnsureInitialized(soa.Self(), klass, true,
2029 true);
Ian Rogersc45b8b52014-05-03 01:39:59 -07002030 // TODO we detach transaction from runtime to indicate we quit the transactional
2031 // mode which prevents the GC from visiting objects modified during the transaction.
2032 // Ensure GC is not run so don't access freed objects when aborting transaction.
Mathieu Chartier2d5f39e2014-09-19 17:52:37 -07002033
2034 ScopedAssertNoThreadSuspension ants(soa.Self(), "Transaction end");
Ian Rogersc45b8b52014-05-03 01:39:59 -07002035 runtime->ExitTransactionMode();
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01002036
Ian Rogersc45b8b52014-05-03 01:39:59 -07002037 if (!success) {
2038 CHECK(soa.Self()->IsExceptionPending());
Nicolas Geoffray14691c52015-03-05 10:40:17 +00002039 mirror::Throwable* exception = soa.Self()->GetException();
Ian Rogersc45b8b52014-05-03 01:39:59 -07002040 VLOG(compiler) << "Initialization of " << descriptor << " aborted because of "
2041 << exception->Dump();
Andreas Gampedbfe2542014-11-25 22:21:42 -08002042 std::ostream* file_log = manager->GetCompiler()->
2043 GetCompilerOptions().GetInitFailureOutput();
2044 if (file_log != nullptr) {
2045 *file_log << descriptor << "\n";
2046 *file_log << exception->Dump() << "\n";
2047 }
Ian Rogersc45b8b52014-05-03 01:39:59 -07002048 soa.Self()->ClearException();
Sebastien Hertz1c80bec2015-02-03 11:58:06 +01002049 transaction.Rollback();
Ian Rogersc45b8b52014-05-03 01:39:59 -07002050 CHECK_EQ(old_status, klass->GetStatus()) << "Previous class status not restored";
Brian Carlstrom7940e442013-07-12 13:46:57 -07002051 }
2052 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002053 }
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07002054 soa.Self()->AssertNoPendingException();
Brian Carlstrom7940e442013-07-12 13:46:57 -07002055 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002056 }
2057 // Record the final class status if necessary.
Brian Carlstrom7940e442013-07-12 13:46:57 -07002058 ClassReference ref(manager->GetDexFile(), class_def_index);
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07002059 manager->GetCompiler()->RecordClassStatus(ref, klass->GetStatus());
Brian Carlstrom7940e442013-07-12 13:46:57 -07002060 }
2061 // Clear any class not found or verification exceptions.
2062 soa.Self()->ClearException();
2063}
2064
2065void CompilerDriver::InitializeClasses(jobject jni_class_loader, const DexFile& dex_file,
Andreas Gampede7b4362014-07-28 18:38:57 -07002066 const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -08002067 ThreadPool* thread_pool, TimingLogger* timings) {
Mathieu Chartierf5997b42014-06-20 10:37:54 -07002068 TimingLogger::ScopedTiming t("InitializeNoClinit", timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002069 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Andreas Gampede7b4362014-07-28 18:38:57 -07002070 ParallelCompilationManager context(class_linker, jni_class_loader, this, &dex_file, dex_files,
2071 thread_pool);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01002072 size_t thread_count;
2073 if (IsImage()) {
2074 // TODO: remove this when transactional mode supports multithreading.
2075 thread_count = 1U;
2076 } else {
2077 thread_count = thread_count_;
2078 }
2079 context.ForAll(0, dex_file.NumClassDefs(), InitializeClass, thread_count);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002080}
2081
2082void CompilerDriver::InitializeClasses(jobject class_loader,
2083 const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -08002084 ThreadPool* thread_pool, TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07002085 for (size_t i = 0; i != dex_files.size(); ++i) {
2086 const DexFile* dex_file = dex_files[i];
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002087 CHECK(dex_file != nullptr);
Andreas Gampede7b4362014-07-28 18:38:57 -07002088 InitializeClasses(class_loader, *dex_file, dex_files, thread_pool, timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002089 }
Mathieu Chartier093ef212014-08-11 13:52:12 -07002090 if (IsImage()) {
2091 // Prune garbage objects created during aborted transactions.
2092 Runtime::Current()->GetHeap()->CollectGarbage(true);
2093 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002094}
2095
2096void CompilerDriver::Compile(jobject class_loader, const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -08002097 ThreadPool* thread_pool, TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07002098 for (size_t i = 0; i != dex_files.size(); ++i) {
2099 const DexFile* dex_file = dex_files[i];
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002100 CHECK(dex_file != nullptr);
Andreas Gampede7b4362014-07-28 18:38:57 -07002101 CompileDexFile(class_loader, *dex_file, dex_files, thread_pool, timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002102 }
Andreas Gampe8d295f82015-01-20 14:50:21 -08002103 VLOG(compiler) << "Compile: " << GetMemoryUsageString(false);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002104}
2105
Mathieu Chartier2cebb242015-04-21 16:50:40 -07002106void CompilerDriver::CompileClass(const ParallelCompilationManager* manager,
2107 size_t class_def_index) {
Anwar Ghuloum67f99412013-08-12 14:19:48 -07002108 ATRACE_CALL();
Brian Carlstrom7940e442013-07-12 13:46:57 -07002109 const DexFile& dex_file = *manager->GetDexFile();
2110 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
Ian Rogersbe7149f2013-08-20 09:29:39 -07002111 ClassLinker* class_linker = manager->GetClassLinker();
Ian Rogers1ff3c982014-08-12 02:30:58 -07002112 jobject jclass_loader = manager->GetClassLoader();
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08002113 Thread* self = Thread::Current();
Ian Rogers1ff3c982014-08-12 02:30:58 -07002114 {
2115 // Use a scoped object access to perform to the quick SkipClass check.
2116 const char* descriptor = dex_file.GetClassDescriptor(class_def);
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08002117 ScopedObjectAccess soa(self);
Ian Rogers1ff3c982014-08-12 02:30:58 -07002118 StackHandleScope<3> hs(soa.Self());
2119 Handle<mirror::ClassLoader> class_loader(
2120 hs.NewHandle(soa.Decode<mirror::ClassLoader*>(jclass_loader)));
2121 Handle<mirror::Class> klass(
2122 hs.NewHandle(class_linker->FindClass(soa.Self(), descriptor, class_loader)));
2123 if (klass.Get() == nullptr) {
2124 CHECK(soa.Self()->IsExceptionPending());
2125 soa.Self()->ClearException();
2126 } else if (SkipClass(jclass_loader, dex_file, klass.Get())) {
2127 return;
2128 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002129 }
2130 ClassReference ref(&dex_file, class_def_index);
2131 // Skip compiling classes with generic verifier failures since they will still fail at runtime
Vladimir Markoc7f83202014-01-24 17:55:18 +00002132 if (manager->GetCompiler()->verification_results_->IsClassRejected(ref)) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07002133 return;
2134 }
Ian Rogers13735952014-10-08 12:43:28 -07002135 const uint8_t* class_data = dex_file.GetClassData(class_def);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002136 if (class_data == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07002137 // empty class, probably a marker interface
2138 return;
2139 }
Anwar Ghuloum67f99412013-08-12 14:19:48 -07002140
Mathieu Chartiere86deef2015-03-19 13:43:37 -07002141 CompilerDriver* const driver = manager->GetCompiler();
2142
Brian Carlstrom7940e442013-07-12 13:46:57 -07002143 // Can we run DEX-to-DEX compiler on this class ?
Sebastien Hertz75021222013-07-16 18:34:50 +02002144 DexToDexCompilationLevel dex_to_dex_compilation_level = kDontDexToDexCompile;
Brian Carlstrom7940e442013-07-12 13:46:57 -07002145 {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08002146 ScopedObjectAccess soa(self);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07002147 StackHandleScope<1> hs(soa.Self());
2148 Handle<mirror::ClassLoader> class_loader(
2149 hs.NewHandle(soa.Decode<mirror::ClassLoader*>(jclass_loader)));
Mathieu Chartiere86deef2015-03-19 13:43:37 -07002150 dex_to_dex_compilation_level = driver->GetDexToDexCompilationlevel(
2151 soa.Self(), class_loader, dex_file, class_def);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002152 }
2153 ClassDataItemIterator it(dex_file, class_data);
2154 // Skip fields
2155 while (it.HasNextStaticField()) {
2156 it.Next();
2157 }
2158 while (it.HasNextInstanceField()) {
2159 it.Next();
2160 }
Andreas Gampe4bf3ae92014-11-11 13:28:29 -08002161
2162 bool compilation_enabled = driver->IsClassToCompile(
2163 dex_file.StringByTypeIdx(class_def.class_idx_));
2164
Brian Carlstrom7940e442013-07-12 13:46:57 -07002165 // Compile direct methods
2166 int64_t previous_direct_method_idx = -1;
2167 while (it.HasNextDirectMethod()) {
2168 uint32_t method_idx = it.GetMemberIndex();
2169 if (method_idx == previous_direct_method_idx) {
2170 // smali can create dex files with two encoded_methods sharing the same method_idx
2171 // http://code.google.com/p/smali/issues/detail?id=119
2172 it.Next();
2173 continue;
2174 }
2175 previous_direct_method_idx = method_idx;
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08002176 driver->CompileMethod(self, it.GetMethodCodeItem(), it.GetMethodAccessFlags(),
Ian Rogersbe7149f2013-08-20 09:29:39 -07002177 it.GetMethodInvokeType(class_def), class_def_index,
Andreas Gampe4bf3ae92014-11-11 13:28:29 -08002178 method_idx, jclass_loader, dex_file, dex_to_dex_compilation_level,
2179 compilation_enabled);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002180 it.Next();
2181 }
2182 // Compile virtual methods
2183 int64_t previous_virtual_method_idx = -1;
2184 while (it.HasNextVirtualMethod()) {
2185 uint32_t method_idx = it.GetMemberIndex();
2186 if (method_idx == previous_virtual_method_idx) {
2187 // smali can create dex files with two encoded_methods sharing the same method_idx
2188 // http://code.google.com/p/smali/issues/detail?id=119
2189 it.Next();
2190 continue;
2191 }
2192 previous_virtual_method_idx = method_idx;
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08002193 driver->CompileMethod(self, it.GetMethodCodeItem(), it.GetMethodAccessFlags(),
Ian Rogersbe7149f2013-08-20 09:29:39 -07002194 it.GetMethodInvokeType(class_def), class_def_index,
Andreas Gampe4bf3ae92014-11-11 13:28:29 -08002195 method_idx, jclass_loader, dex_file, dex_to_dex_compilation_level,
2196 compilation_enabled);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002197 it.Next();
2198 }
2199 DCHECK(!it.HasNext());
2200}
2201
2202void CompilerDriver::CompileDexFile(jobject class_loader, const DexFile& dex_file,
Andreas Gampede7b4362014-07-28 18:38:57 -07002203 const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -08002204 ThreadPool* thread_pool, TimingLogger* timings) {
Mathieu Chartierf5997b42014-06-20 10:37:54 -07002205 TimingLogger::ScopedTiming t("Compile Dex File", timings);
Ian Rogersbe7149f2013-08-20 09:29:39 -07002206 ParallelCompilationManager context(Runtime::Current()->GetClassLinker(), class_loader, this,
Andreas Gampede7b4362014-07-28 18:38:57 -07002207 &dex_file, dex_files, thread_pool);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002208 context.ForAll(0, dex_file.NumClassDefs(), CompilerDriver::CompileClass, thread_count_);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002209}
2210
Ian Rogersa4a3f402014-10-20 18:10:34 -07002211// Does the runtime for the InstructionSet provide an implementation returned by
2212// GetQuickGenericJniStub allowing down calls that aren't compiled using a JNI compiler?
2213static bool InstructionSetHasGenericJniStub(InstructionSet isa) {
2214 switch (isa) {
2215 case kArm:
2216 case kArm64:
2217 case kThumb2:
Douglas Leung735b8552014-10-31 12:21:40 -07002218 case kMips:
Andreas Gampe57b34292015-01-14 15:45:59 -08002219 case kMips64:
Ian Rogersa4a3f402014-10-20 18:10:34 -07002220 case kX86:
2221 case kX86_64: return true;
2222 default: return false;
2223 }
2224}
2225
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08002226void CompilerDriver::CompileMethod(Thread* self, const DexFile::CodeItem* code_item,
2227 uint32_t access_flags, InvokeType invoke_type,
2228 uint16_t class_def_idx, uint32_t method_idx,
2229 jobject class_loader, const DexFile& dex_file,
Andreas Gampe4bf3ae92014-11-11 13:28:29 -08002230 DexToDexCompilationLevel dex_to_dex_compilation_level,
2231 bool compilation_enabled) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002232 CompiledMethod* compiled_method = nullptr;
Mathieu Chartier8e219ae2014-08-19 14:29:46 -07002233 uint64_t start_ns = kTimeCompileMethod ? NanoTime() : 0;
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002234 MethodReference method_ref(&dex_file, method_idx);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002235
2236 if ((access_flags & kAccNative) != 0) {
Ian Rogers0188ab72014-03-17 16:51:53 -07002237 // Are we interpreting only and have support for generic JNI down calls?
Jeff Hao4a200f52014-04-01 14:58:49 -07002238 if (!compiler_options_->IsCompilationEnabled() &&
Ian Rogersa4a3f402014-10-20 18:10:34 -07002239 InstructionSetHasGenericJniStub(instruction_set_)) {
Ian Rogers5b271492014-03-14 13:20:26 -07002240 // Leaving this empty will trigger the generic JNI version
2241 } else {
Goran Jakovljevic75c40d42015-04-03 15:45:21 +02002242 compiled_method = compiler_->JniCompile(access_flags, method_idx, dex_file);
2243 CHECK(compiled_method != nullptr);
Ian Rogers5b271492014-03-14 13:20:26 -07002244 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002245 } else if ((access_flags & kAccAbstract) != 0) {
Ian Rogersa4a3f402014-10-20 18:10:34 -07002246 // Abstract methods don't have code.
Brian Carlstrom7940e442013-07-12 13:46:57 -07002247 } else {
Andreas Gampe6c170c92014-12-17 14:35:46 -08002248 bool has_verified_method = verification_results_->GetVerifiedMethod(method_ref) != nullptr;
Andreas Gampe4bf3ae92014-11-11 13:28:29 -08002249 bool compile = compilation_enabled &&
Andreas Gampe6c170c92014-12-17 14:35:46 -08002250 // Basic checks, e.g., not <clinit>.
2251 verification_results_->IsCandidateForCompilation(method_ref, access_flags) &&
2252 // Did not fail to create VerifiedMethod metadata.
Andreas Gampe70bef0d2015-04-15 02:37:28 -07002253 has_verified_method &&
2254 // Is eligable for compilation by methods-to-compile filter.
2255 IsMethodToCompile(method_ref);
Sebastien Hertz4d4adb12013-07-24 16:14:19 +02002256 if (compile) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -07002257 // NOTE: if compiler declines to compile this method, it will return null.
Ian Rogers72d32622014-05-06 16:20:11 -07002258 compiled_method = compiler_->Compile(code_item, access_flags, invoke_type, class_def_idx,
2259 method_idx, class_loader, dex_file);
Sebastien Hertz17965ed2014-04-04 15:59:53 +02002260 }
2261 if (compiled_method == nullptr && dex_to_dex_compilation_level != kDontDexToDexCompile) {
2262 // TODO: add a command-line option to disable DEX-to-DEX compilation ?
Andreas Gampe6c170c92014-12-17 14:35:46 -08002263 // Do not optimize if a VerifiedMethod is missing. SafeCast elision, for example, relies on
2264 // it.
Sebastien Hertz75021222013-07-16 18:34:50 +02002265 (*dex_to_dex_compiler_)(*this, code_item, access_flags,
2266 invoke_type, class_def_idx,
2267 method_idx, class_loader, dex_file,
Andreas Gampe6c170c92014-12-17 14:35:46 -08002268 has_verified_method ? dex_to_dex_compilation_level : kRequired);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002269 }
2270 }
Mathieu Chartier8e219ae2014-08-19 14:29:46 -07002271 if (kTimeCompileMethod) {
2272 uint64_t duration_ns = NanoTime() - start_ns;
2273 if (duration_ns > MsToNs(compiler_->GetMaximumCompilationTimeBeforeWarning())) {
2274 LOG(WARNING) << "Compilation of " << PrettyMethod(method_idx, dex_file)
2275 << " took " << PrettyDuration(duration_ns);
2276 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002277 }
2278
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002279 if (compiled_method != nullptr) {
Vladimir Markof4da6752014-08-01 19:04:18 +01002280 // Count non-relative linker patches.
2281 size_t non_relative_linker_patch_count = 0u;
2282 for (const LinkerPatch& patch : compiled_method->GetPatches()) {
Vladimir Marko20f85592015-03-19 10:07:02 +00002283 if (!patch.IsPcRelative()) {
Vladimir Markof4da6752014-08-01 19:04:18 +01002284 ++non_relative_linker_patch_count;
2285 }
2286 }
Igor Murashkind6dee672014-10-16 18:36:16 -07002287 bool compile_pic = GetCompilerOptions().GetCompilePic(); // Off by default
2288 // When compiling with PIC, there should be zero non-relative linker patches
2289 CHECK(!compile_pic || non_relative_linker_patch_count == 0u);
2290
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002291 DCHECK(GetCompiledMethod(method_ref) == nullptr) << PrettyMethod(method_idx, dex_file);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002292 {
2293 MutexLock mu(self, compiled_methods_lock_);
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002294 compiled_methods_.Put(method_ref, compiled_method);
Vladimir Markof4da6752014-08-01 19:04:18 +01002295 non_relative_linker_patch_count_ += non_relative_linker_patch_count;
Brian Carlstrom7940e442013-07-12 13:46:57 -07002296 }
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002297 DCHECK(GetCompiledMethod(method_ref) != nullptr) << PrettyMethod(method_idx, dex_file);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002298 }
2299
Jeff Hao48699fb2015-04-06 14:21:37 -07002300 // Done compiling, delete the verified method to reduce native memory usage. Do not delete in
2301 // optimizing compiler, which may need the verified method again for inlining.
2302 if (compiler_kind_ != Compiler::kOptimizing) {
2303 verification_results_->RemoveVerifiedMethod(method_ref);
2304 }
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002305
Brian Carlstrom7940e442013-07-12 13:46:57 -07002306 if (self->IsExceptionPending()) {
2307 ScopedObjectAccess soa(self);
2308 LOG(FATAL) << "Unexpected exception compiling: " << PrettyMethod(method_idx, dex_file) << "\n"
Nicolas Geoffray14691c52015-03-05 10:40:17 +00002309 << self->GetException()->Dump();
Brian Carlstrom7940e442013-07-12 13:46:57 -07002310 }
2311}
2312
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08002313void CompilerDriver::RemoveCompiledMethod(const MethodReference& method_ref) {
2314 CompiledMethod* compiled_method = nullptr;
2315 {
2316 MutexLock mu(Thread::Current(), compiled_methods_lock_);
2317 auto it = compiled_methods_.find(method_ref);
2318 if (it != compiled_methods_.end()) {
2319 compiled_method = it->second;
2320 compiled_methods_.erase(it);
2321 }
2322 }
2323 if (compiled_method != nullptr) {
2324 CompiledMethod::ReleaseSwapAllocatedCompiledMethod(this, compiled_method);
2325 }
2326}
2327
Brian Carlstrom7940e442013-07-12 13:46:57 -07002328CompiledClass* CompilerDriver::GetCompiledClass(ClassReference ref) const {
2329 MutexLock mu(Thread::Current(), compiled_classes_lock_);
2330 ClassTable::const_iterator it = compiled_classes_.find(ref);
2331 if (it == compiled_classes_.end()) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002332 return nullptr;
Brian Carlstrom7940e442013-07-12 13:46:57 -07002333 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002334 CHECK(it->second != nullptr);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002335 return it->second;
2336}
2337
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07002338void CompilerDriver::RecordClassStatus(ClassReference ref, mirror::Class::Status status) {
2339 MutexLock mu(Thread::Current(), compiled_classes_lock_);
2340 auto it = compiled_classes_.find(ref);
2341 if (it == compiled_classes_.end() || it->second->GetStatus() != status) {
2342 // An entry doesn't exist or the status is lower than the new status.
2343 if (it != compiled_classes_.end()) {
2344 CHECK_GT(status, it->second->GetStatus());
2345 delete it->second;
2346 }
2347 switch (status) {
2348 case mirror::Class::kStatusNotReady:
2349 case mirror::Class::kStatusError:
2350 case mirror::Class::kStatusRetryVerificationAtRuntime:
2351 case mirror::Class::kStatusVerified:
2352 case mirror::Class::kStatusInitialized:
2353 break; // Expected states.
2354 default:
2355 LOG(FATAL) << "Unexpected class status for class "
2356 << PrettyDescriptor(ref.first->GetClassDescriptor(ref.first->GetClassDef(ref.second)))
2357 << " of " << status;
2358 }
2359 CompiledClass* compiled_class = new CompiledClass(status);
2360 compiled_classes_.Overwrite(ref, compiled_class);
2361 }
2362}
2363
Brian Carlstrom7940e442013-07-12 13:46:57 -07002364CompiledMethod* CompilerDriver::GetCompiledMethod(MethodReference ref) const {
2365 MutexLock mu(Thread::Current(), compiled_methods_lock_);
2366 MethodTable::const_iterator it = compiled_methods_.find(ref);
2367 if (it == compiled_methods_.end()) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002368 return nullptr;
Brian Carlstrom7940e442013-07-12 13:46:57 -07002369 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002370 CHECK(it->second != nullptr);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002371 return it->second;
2372}
2373
Calin Juravlef1c6d9e2015-04-13 18:42:21 +01002374bool CompilerDriver::IsMethodVerifiedWithoutFailures(uint32_t method_idx,
2375 uint16_t class_def_idx,
2376 const DexFile& dex_file) const {
2377 const VerifiedMethod* verified_method = GetVerifiedMethod(&dex_file, method_idx);
2378 if (verified_method != nullptr) {
2379 return !verified_method->HasVerificationFailures();
2380 }
2381
2382 // If we can't find verification metadata, check if this is a system class (we trust that system
2383 // classes have their methods verified). If it's not, be conservative and assume the method
2384 // has not been verified successfully.
2385
2386 // TODO: When compiling the boot image it should be safe to assume that everything is verified,
2387 // even if methods are not found in the verification cache.
2388 const char* descriptor = dex_file.GetClassDescriptor(dex_file.GetClassDef(class_def_idx));
2389 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
2390 Thread* self = Thread::Current();
2391 ScopedObjectAccess soa(self);
2392 bool is_system_class = class_linker->FindSystemClass(self, descriptor) != nullptr;
2393 if (!is_system_class) {
2394 self->ClearException();
2395 }
2396 return is_system_class;
2397}
2398
Vladimir Markof4da6752014-08-01 19:04:18 +01002399size_t CompilerDriver::GetNonRelativeLinkerPatchCount() const {
2400 MutexLock mu(Thread::Current(), compiled_methods_lock_);
2401 return non_relative_linker_patch_count_;
2402}
2403
Brian Carlstrom7940e442013-07-12 13:46:57 -07002404void CompilerDriver::AddRequiresConstructorBarrier(Thread* self, const DexFile* dex_file,
Ian Rogers8b2c0b92013-09-19 02:56:49 -07002405 uint16_t class_def_index) {
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07002406 WriterMutexLock mu(self, freezing_constructor_lock_);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002407 freezing_constructor_classes_.insert(ClassReference(dex_file, class_def_index));
2408}
2409
2410bool CompilerDriver::RequiresConstructorBarrier(Thread* self, const DexFile* dex_file,
Calin Juravle27df7582015-04-17 19:12:31 +01002411 uint16_t class_def_index) const {
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07002412 ReaderMutexLock mu(self, freezing_constructor_lock_);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002413 return freezing_constructor_classes_.count(ClassReference(dex_file, class_def_index)) != 0;
2414}
2415
2416bool CompilerDriver::WriteElf(const std::string& android_root,
2417 bool is_host,
2418 const std::vector<const art::DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -08002419 OatWriter* oat_writer,
Brian Carlstrom7940e442013-07-12 13:46:57 -07002420 art::File* file)
2421 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Andreas Gampe3773cd02015-04-10 09:28:22 -07002422 if (kProduce64BitELFFiles && Is64BitInstructionSet(GetInstructionSet())) {
2423 return art::ElfWriterQuick64::Create(file, oat_writer, dex_files, android_root, is_host, *this);
2424 } else {
2425 return art::ElfWriterQuick32::Create(file, oat_writer, dex_files, android_root, is_host, *this);
2426 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002427}
Dave Allison39c3bfb2014-01-28 18:33:52 -08002428
Dave Allison39c3bfb2014-01-28 18:33:52 -08002429bool CompilerDriver::SkipCompilation(const std::string& method_name) {
Calin Juravlec1b643c2014-05-30 23:44:11 +01002430 if (!profile_present_) {
Dave Allison644789f2014-04-10 13:06:10 -07002431 return false;
Dave Allison39c3bfb2014-01-28 18:33:52 -08002432 }
Calin Juravlebb0b53f2014-05-23 17:33:29 +01002433 // First find the method in the profile file.
2434 ProfileFile::ProfileData data;
2435 if (!profile_file_.GetProfileData(&data, method_name)) {
Dave Allison39c3bfb2014-01-28 18:33:52 -08002436 // Not in profile, no information can be determined.
Calin Juravle08f7a2d2014-06-23 15:22:29 +01002437 if (kIsDebugBuild) {
2438 VLOG(compiler) << "not compiling " << method_name << " because it's not in the profile";
2439 }
Dave Allison39c3bfb2014-01-28 18:33:52 -08002440 return true;
2441 }
Calin Juravlebb0b53f2014-05-23 17:33:29 +01002442
2443 // Methods that comprise top_k_threshold % of the total samples will be compiled.
Calin Juravlef6a4cee2014-04-02 17:03:08 +01002444 // Compare against the start of the topK percentage bucket just in case the threshold
Calin Juravle04ff2262014-04-02 19:08:47 +01002445 // falls inside a bucket.
Calin Juravlec1b643c2014-05-30 23:44:11 +01002446 bool compile = data.GetTopKUsedPercentage() - data.GetUsedPercent()
2447 <= compiler_options_->GetTopKProfileThreshold();
Calin Juravle08f7a2d2014-06-23 15:22:29 +01002448 if (kIsDebugBuild) {
2449 if (compile) {
2450 LOG(INFO) << "compiling method " << method_name << " because its usage is part of top "
2451 << data.GetTopKUsedPercentage() << "% with a percent of " << data.GetUsedPercent() << "%"
2452 << " (topKThreshold=" << compiler_options_->GetTopKProfileThreshold() << ")";
2453 } else {
2454 VLOG(compiler) << "not compiling method " << method_name
2455 << " because it's not part of leading " << compiler_options_->GetTopKProfileThreshold()
2456 << "% samples)";
2457 }
Dave Allison39c3bfb2014-01-28 18:33:52 -08002458 }
2459 return !compile;
2460}
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002461
Andreas Gampe8d295f82015-01-20 14:50:21 -08002462std::string CompilerDriver::GetMemoryUsageString(bool extended) const {
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002463 std::ostringstream oss;
Mathieu Chartier9b34b242015-03-09 11:30:17 -07002464 Runtime* const runtime = Runtime::Current();
2465 const ArenaPool* arena_pool = runtime->GetArenaPool();
2466 gc::Heap* const heap = runtime->GetHeap();
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002467 oss << "arena alloc=" << PrettySize(arena_pool->GetBytesAllocated());
2468 oss << " java alloc=" << PrettySize(heap->GetBytesAllocated());
Elliott Hughes7bf5a262015-04-02 20:55:07 -07002469#if defined(__BIONIC__) || defined(__GLIBC__)
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002470 struct mallinfo info = mallinfo();
2471 const size_t allocated_space = static_cast<size_t>(info.uordblks);
2472 const size_t free_space = static_cast<size_t>(info.fordblks);
2473 oss << " native alloc=" << PrettySize(allocated_space) << " free="
2474 << PrettySize(free_space);
2475#endif
Andreas Gampee21dc3d2014-12-08 16:59:43 -08002476 if (swap_space_.get() != nullptr) {
2477 oss << " swap=" << PrettySize(swap_space_->GetSize());
2478 }
Andreas Gampe8d295f82015-01-20 14:50:21 -08002479 if (extended) {
2480 oss << "\nCode dedupe: " << dedupe_code_.DumpStats();
2481 oss << "\nMapping table dedupe: " << dedupe_mapping_table_.DumpStats();
2482 oss << "\nVmap table dedupe: " << dedupe_vmap_table_.DumpStats();
2483 oss << "\nGC map dedupe: " << dedupe_gc_map_.DumpStats();
2484 oss << "\nCFI info dedupe: " << dedupe_cfi_info_.DumpStats();
2485 }
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002486 return oss.str();
2487}
2488
Jeff Hao848f70a2014-01-15 13:49:50 -08002489bool CompilerDriver::IsStringTypeIndex(uint16_t type_index, const DexFile* dex_file) {
2490 const char* type = dex_file->GetTypeDescriptor(dex_file->GetTypeId(type_index));
2491 return strcmp(type, "Ljava/lang/String;") == 0;
2492}
2493
2494bool CompilerDriver::IsStringInit(uint32_t method_index, const DexFile* dex_file, int32_t* offset) {
2495 DexFileMethodInliner* inliner = GetMethodInlinerMap()->GetMethodInliner(dex_file);
2496 size_t pointer_size = InstructionSetPointerSize(GetInstructionSet());
2497 *offset = inliner->GetOffsetForStringInit(method_index, pointer_size);
2498 return inliner->IsStringInitMethodIndex(method_index);
2499}
2500
Brian Carlstrom7940e442013-07-12 13:46:57 -07002501} // namespace art