blob: affa52a37ab8c0bccbdeb1d2eb745e1a2e945cf8 [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"
Mathieu Chartiere401d142015-04-22 13:56:20 -070031#include "art_method-inl.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070032#include "base/stl_util.h"
Vladimir Marko80afd022015-05-19 18:08:00 +010033#include "base/time_utils.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070034#include "base/timing_logger.h"
Vladimir Marko3481ba22015-04-13 12:22:36 +010035#include "class_linker-inl.h"
Mingyao Yang98d1cc82014-05-15 17:02:16 -070036#include "compiled_class.h"
Vladimir Marko20f85592015-03-19 10:07:02 +000037#include "compiled_method.h"
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +000038#include "compiler.h"
Vladimir Markobe0e5462014-02-26 11:24:15 +000039#include "compiler_driver-inl.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070040#include "dex_compilation_unit.h"
41#include "dex_file-inl.h"
Vladimir Markoc7f83202014-01-24 17:55:18 +000042#include "dex/verification_results.h"
Vladimir Marko2730db02014-01-27 11:15:17 +000043#include "dex/verified_method.h"
Vladimir Marko2bc47802014-02-10 09:43:07 +000044#include "dex/quick/dex_file_method_inliner.h"
Jeff Hao848f70a2014-01-15 13:49:50 -080045#include "dex/quick/dex_file_to_method_inliner_map.h"
Mark Mendellae9fd932014-02-10 16:14:35 -080046#include "driver/compiler_options.h"
Andreas Gampe3773cd02015-04-10 09:28:22 -070047#include "elf_writer_quick.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070048#include "jni_internal.h"
Ian Rogers22d5e732014-07-15 22:23:51 -070049#include "object_lock.h"
Calin Juravlebb0b53f2014-05-23 17:33:29 +010050#include "profiler.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070051#include "runtime.h"
52#include "gc/accounting/card_table-inl.h"
53#include "gc/accounting/heap_bitmap.h"
Mathieu Chartiere401d142015-04-22 13:56:20 -070054#include "gc/space/image_space.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070055#include "gc/space/space.h"
56#include "mirror/class_loader.h"
57#include "mirror/class-inl.h"
58#include "mirror/dex_cache-inl.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070059#include "mirror/object-inl.h"
60#include "mirror/object_array-inl.h"
61#include "mirror/throwable.h"
62#include "scoped_thread_state_change.h"
63#include "ScopedLocalRef.h"
Mathieu Chartiereb8167a2014-05-07 15:43:14 -070064#include "handle_scope-inl.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070065#include "thread.h"
Andreas Gampeb0f370e2014-09-25 22:51:40 -070066#include "thread_list.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070067#include "thread_pool.h"
Ian Rogers848871b2013-08-05 10:56:33 -070068#include "trampolines/trampoline_compiler.h"
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +010069#include "transaction.h"
Vladimir Marko20f85592015-03-19 10:07:02 +000070#include "utils/dex_cache_arrays_layout-inl.h"
Andreas Gampee21dc3d2014-12-08 16:59:43 -080071#include "utils/swap_space.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070072#include "verifier/method_verifier.h"
Vladimir Marko2bc47802014-02-10 09:43:07 +000073#include "verifier/method_verifier-inl.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070074
Brian Carlstrom7940e442013-07-12 13:46:57 -070075namespace art {
76
Mathieu Chartier8e219ae2014-08-19 14:29:46 -070077static constexpr bool kTimeCompileMethod = !kIsDebugBuild;
78
David Srbeckyce0db622015-05-26 23:40:18 +000079// Whether to produce 64-bit ELF files for 64-bit targets.
80static constexpr bool kProduce64BitELFFiles = true;
Andreas Gampe3773cd02015-04-10 09:28:22 -070081
Andreas Gampe70bef0d2015-04-15 02:37:28 -070082// Whether classes-to-compile and methods-to-compile are only applied to the boot image, or, when
83// given, too all compilations.
Andreas Gampeb1fcead2015-04-20 18:53:51 -070084static constexpr bool kRestrictCompilationFiltersToImage = true;
85
Brian Carlstrom7940e442013-07-12 13:46:57 -070086static double Percentage(size_t x, size_t y) {
87 return 100.0 * (static_cast<double>(x)) / (static_cast<double>(x + y));
88}
89
90static void DumpStat(size_t x, size_t y, const char* str) {
91 if (x == 0 && y == 0) {
92 return;
93 }
Ian Rogerse732ef12013-10-09 15:22:24 -070094 LOG(INFO) << Percentage(x, y) << "% of " << str << " for " << (x + y) << " cases";
Brian Carlstrom7940e442013-07-12 13:46:57 -070095}
96
Vladimir Markof096aad2014-01-23 15:51:58 +000097class CompilerDriver::AOTCompilationStats {
Brian Carlstrom7940e442013-07-12 13:46:57 -070098 public:
99 AOTCompilationStats()
100 : stats_lock_("AOT compilation statistics lock"),
101 types_in_dex_cache_(0), types_not_in_dex_cache_(0),
102 strings_in_dex_cache_(0), strings_not_in_dex_cache_(0),
103 resolved_types_(0), unresolved_types_(0),
104 resolved_instance_fields_(0), unresolved_instance_fields_(0),
105 resolved_local_static_fields_(0), resolved_static_fields_(0), unresolved_static_fields_(0),
106 type_based_devirtualization_(0),
107 safe_casts_(0), not_safe_casts_(0) {
108 for (size_t i = 0; i <= kMaxInvokeType; i++) {
109 resolved_methods_[i] = 0;
110 unresolved_methods_[i] = 0;
111 virtual_made_direct_[i] = 0;
112 direct_calls_to_boot_[i] = 0;
113 direct_methods_to_boot_[i] = 0;
114 }
115 }
116
117 void Dump() {
118 DumpStat(types_in_dex_cache_, types_not_in_dex_cache_, "types known to be in dex cache");
119 DumpStat(strings_in_dex_cache_, strings_not_in_dex_cache_, "strings known to be in dex cache");
120 DumpStat(resolved_types_, unresolved_types_, "types resolved");
121 DumpStat(resolved_instance_fields_, unresolved_instance_fields_, "instance fields resolved");
122 DumpStat(resolved_local_static_fields_ + resolved_static_fields_, unresolved_static_fields_,
123 "static fields resolved");
124 DumpStat(resolved_local_static_fields_, resolved_static_fields_ + unresolved_static_fields_,
125 "static fields local to a class");
126 DumpStat(safe_casts_, not_safe_casts_, "check-casts removed based on type information");
127 // Note, the code below subtracts the stat value so that when added to the stat value we have
128 // 100% of samples. TODO: clean this up.
129 DumpStat(type_based_devirtualization_,
130 resolved_methods_[kVirtual] + unresolved_methods_[kVirtual] +
131 resolved_methods_[kInterface] + unresolved_methods_[kInterface] -
132 type_based_devirtualization_,
133 "virtual/interface calls made direct based on type information");
134
135 for (size_t i = 0; i <= kMaxInvokeType; i++) {
136 std::ostringstream oss;
137 oss << static_cast<InvokeType>(i) << " methods were AOT resolved";
138 DumpStat(resolved_methods_[i], unresolved_methods_[i], oss.str().c_str());
139 if (virtual_made_direct_[i] > 0) {
140 std::ostringstream oss2;
141 oss2 << static_cast<InvokeType>(i) << " methods made direct";
142 DumpStat(virtual_made_direct_[i],
143 resolved_methods_[i] + unresolved_methods_[i] - virtual_made_direct_[i],
144 oss2.str().c_str());
145 }
146 if (direct_calls_to_boot_[i] > 0) {
147 std::ostringstream oss2;
148 oss2 << static_cast<InvokeType>(i) << " method calls are direct into boot";
149 DumpStat(direct_calls_to_boot_[i],
150 resolved_methods_[i] + unresolved_methods_[i] - direct_calls_to_boot_[i],
151 oss2.str().c_str());
152 }
153 if (direct_methods_to_boot_[i] > 0) {
154 std::ostringstream oss2;
155 oss2 << static_cast<InvokeType>(i) << " method calls have methods in boot";
156 DumpStat(direct_methods_to_boot_[i],
157 resolved_methods_[i] + unresolved_methods_[i] - direct_methods_to_boot_[i],
158 oss2.str().c_str());
159 }
160 }
161 }
162
163// Allow lossy statistics in non-debug builds.
164#ifndef NDEBUG
165#define STATS_LOCK() MutexLock mu(Thread::Current(), stats_lock_)
166#else
167#define STATS_LOCK()
168#endif
169
Mathieu Chartier90443472015-07-16 20:32:27 -0700170 void TypeInDexCache() REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700171 STATS_LOCK();
172 types_in_dex_cache_++;
173 }
174
Mathieu Chartier90443472015-07-16 20:32:27 -0700175 void TypeNotInDexCache() REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700176 STATS_LOCK();
177 types_not_in_dex_cache_++;
178 }
179
Mathieu Chartier90443472015-07-16 20:32:27 -0700180 void StringInDexCache() REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700181 STATS_LOCK();
182 strings_in_dex_cache_++;
183 }
184
Mathieu Chartier90443472015-07-16 20:32:27 -0700185 void StringNotInDexCache() REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700186 STATS_LOCK();
187 strings_not_in_dex_cache_++;
188 }
189
Mathieu Chartier90443472015-07-16 20:32:27 -0700190 void TypeDoesntNeedAccessCheck() REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700191 STATS_LOCK();
192 resolved_types_++;
193 }
194
Mathieu Chartier90443472015-07-16 20:32:27 -0700195 void TypeNeedsAccessCheck() REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700196 STATS_LOCK();
197 unresolved_types_++;
198 }
199
Mathieu Chartier90443472015-07-16 20:32:27 -0700200 void ResolvedInstanceField() REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700201 STATS_LOCK();
202 resolved_instance_fields_++;
203 }
204
Mathieu Chartier90443472015-07-16 20:32:27 -0700205 void UnresolvedInstanceField() REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700206 STATS_LOCK();
207 unresolved_instance_fields_++;
208 }
209
Mathieu Chartier90443472015-07-16 20:32:27 -0700210 void ResolvedLocalStaticField() REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700211 STATS_LOCK();
212 resolved_local_static_fields_++;
213 }
214
Mathieu Chartier90443472015-07-16 20:32:27 -0700215 void ResolvedStaticField() REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700216 STATS_LOCK();
217 resolved_static_fields_++;
218 }
219
Mathieu Chartier90443472015-07-16 20:32:27 -0700220 void UnresolvedStaticField() REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700221 STATS_LOCK();
222 unresolved_static_fields_++;
223 }
224
225 // Indicate that type information from the verifier led to devirtualization.
Mathieu Chartier90443472015-07-16 20:32:27 -0700226 void PreciseTypeDevirtualization() REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700227 STATS_LOCK();
228 type_based_devirtualization_++;
229 }
230
231 // Indicate that a method of the given type was resolved at compile time.
Mathieu Chartier90443472015-07-16 20:32:27 -0700232 void ResolvedMethod(InvokeType type) REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700233 DCHECK_LE(type, kMaxInvokeType);
234 STATS_LOCK();
235 resolved_methods_[type]++;
236 }
237
238 // Indicate that a method of the given type was unresolved at compile time as it was in an
239 // unknown dex file.
Mathieu Chartier90443472015-07-16 20:32:27 -0700240 void UnresolvedMethod(InvokeType type) REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700241 DCHECK_LE(type, kMaxInvokeType);
242 STATS_LOCK();
243 unresolved_methods_[type]++;
244 }
245
246 // Indicate that a type of virtual method dispatch has been converted into a direct method
247 // dispatch.
Mathieu Chartier90443472015-07-16 20:32:27 -0700248 void VirtualMadeDirect(InvokeType type) REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700249 DCHECK(type == kVirtual || type == kInterface || type == kSuper);
250 STATS_LOCK();
251 virtual_made_direct_[type]++;
252 }
253
254 // Indicate that a method of the given type was able to call directly into boot.
Mathieu Chartier90443472015-07-16 20:32:27 -0700255 void DirectCallsToBoot(InvokeType type) REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700256 DCHECK_LE(type, kMaxInvokeType);
257 STATS_LOCK();
258 direct_calls_to_boot_[type]++;
259 }
260
261 // Indicate that a method of the given type was able to be resolved directly from boot.
Mathieu Chartier90443472015-07-16 20:32:27 -0700262 void DirectMethodsToBoot(InvokeType type) REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700263 DCHECK_LE(type, kMaxInvokeType);
264 STATS_LOCK();
265 direct_methods_to_boot_[type]++;
266 }
267
Mathieu Chartier90443472015-07-16 20:32:27 -0700268 void ProcessedInvoke(InvokeType type, int flags) REQUIRES(!stats_lock_) {
Vladimir Markof096aad2014-01-23 15:51:58 +0000269 STATS_LOCK();
270 if (flags == 0) {
271 unresolved_methods_[type]++;
272 } else {
273 DCHECK_NE((flags & kFlagMethodResolved), 0);
274 resolved_methods_[type]++;
275 if ((flags & kFlagVirtualMadeDirect) != 0) {
276 virtual_made_direct_[type]++;
277 if ((flags & kFlagPreciseTypeDevirtualization) != 0) {
278 type_based_devirtualization_++;
279 }
280 } else {
281 DCHECK_EQ((flags & kFlagPreciseTypeDevirtualization), 0);
282 }
283 if ((flags & kFlagDirectCallToBoot) != 0) {
284 direct_calls_to_boot_[type]++;
285 }
286 if ((flags & kFlagDirectMethodToBoot) != 0) {
287 direct_methods_to_boot_[type]++;
288 }
289 }
290 }
291
Brian Carlstrom7940e442013-07-12 13:46:57 -0700292 // A check-cast could be eliminated due to verifier type analysis.
Mathieu Chartier90443472015-07-16 20:32:27 -0700293 void SafeCast() REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700294 STATS_LOCK();
295 safe_casts_++;
296 }
297
298 // A check-cast couldn't be eliminated due to verifier type analysis.
Mathieu Chartier90443472015-07-16 20:32:27 -0700299 void NotASafeCast() REQUIRES(!stats_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700300 STATS_LOCK();
301 not_safe_casts_++;
302 }
303
304 private:
305 Mutex stats_lock_;
306
307 size_t types_in_dex_cache_;
308 size_t types_not_in_dex_cache_;
309
310 size_t strings_in_dex_cache_;
311 size_t strings_not_in_dex_cache_;
312
313 size_t resolved_types_;
314 size_t unresolved_types_;
315
316 size_t resolved_instance_fields_;
317 size_t unresolved_instance_fields_;
318
319 size_t resolved_local_static_fields_;
320 size_t resolved_static_fields_;
321 size_t unresolved_static_fields_;
322 // Type based devirtualization for invoke interface and virtual.
323 size_t type_based_devirtualization_;
324
325 size_t resolved_methods_[kMaxInvokeType + 1];
326 size_t unresolved_methods_[kMaxInvokeType + 1];
327 size_t virtual_made_direct_[kMaxInvokeType + 1];
328 size_t direct_calls_to_boot_[kMaxInvokeType + 1];
329 size_t direct_methods_to_boot_[kMaxInvokeType + 1];
330
331 size_t safe_casts_;
332 size_t not_safe_casts_;
333
334 DISALLOW_COPY_AND_ASSIGN(AOTCompilationStats);
335};
336
Brian Carlstrom7940e442013-07-12 13:46:57 -0700337
338extern "C" art::CompiledMethod* ArtCompileDEX(art::CompilerDriver& compiler,
339 const art::DexFile::CodeItem* code_item,
340 uint32_t access_flags,
341 art::InvokeType invoke_type,
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700342 uint16_t class_def_idx,
Brian Carlstrom7940e442013-07-12 13:46:57 -0700343 uint32_t method_idx,
344 jobject class_loader,
345 const art::DexFile& dex_file);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700346
Brian Carlstrom6449c622014-02-10 23:48:36 -0800347CompilerDriver::CompilerDriver(const CompilerOptions* compiler_options,
348 VerificationResults* verification_results,
Vladimir Marko5816ed42013-11-27 17:04:20 +0000349 DexFileToMethodInlinerMap* method_inliner_map,
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +0000350 Compiler::Kind compiler_kind,
Nicolas Geoffrayf5df8972014-02-14 18:37:08 +0000351 InstructionSet instruction_set,
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700352 const InstructionSetFeatures* instruction_set_features,
Andreas Gampeb1fcead2015-04-20 18:53:51 -0700353 bool image, std::unordered_set<std::string>* image_classes,
354 std::unordered_set<std::string>* compiled_classes,
Andreas Gampe70bef0d2015-04-15 02:37:28 -0700355 std::unordered_set<std::string>* compiled_methods,
Andreas Gampeb1fcead2015-04-20 18:53:51 -0700356 size_t thread_count, bool dump_stats, bool dump_passes,
David Brazdil866c0312015-01-13 21:21:31 +0000357 const std::string& dump_cfg_file_name, CumulativeLogger* timer,
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800358 int swap_fd, const std::string& profile_file)
359 : swap_space_(swap_fd == -1 ? nullptr : new SwapSpace(swap_fd, 10 * MB)),
360 swap_space_allocator_(new SwapAllocator<void>(swap_space_.get())),
361 profile_present_(false), compiler_options_(compiler_options),
Brian Carlstrom6449c622014-02-10 23:48:36 -0800362 verification_results_(verification_results),
Vladimir Marko5816ed42013-11-27 17:04:20 +0000363 method_inliner_map_(method_inliner_map),
Ian Rogers72d32622014-05-06 16:20:11 -0700364 compiler_(Compiler::Create(this, compiler_kind)),
Jeff Hao48699fb2015-04-06 14:21:37 -0700365 compiler_kind_(compiler_kind),
Brian Carlstrom7940e442013-07-12 13:46:57 -0700366 instruction_set_(instruction_set),
Dave Allison70202782013-10-22 17:52:19 -0700367 instruction_set_features_(instruction_set_features),
Brian Carlstrom7940e442013-07-12 13:46:57 -0700368 freezing_constructor_lock_("freezing constructor lock"),
369 compiled_classes_lock_("compiled classes lock"),
370 compiled_methods_lock_("compiled method lock"),
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800371 compiled_methods_(MethodTable::key_compare()),
Vladimir Markof4da6752014-08-01 19:04:18 +0100372 non_relative_linker_patch_count_(0u),
Brian Carlstrom7940e442013-07-12 13:46:57 -0700373 image_(image),
374 image_classes_(image_classes),
Andreas Gampe4bf3ae92014-11-11 13:28:29 -0800375 classes_to_compile_(compiled_classes),
Andreas Gampe70bef0d2015-04-15 02:37:28 -0700376 methods_to_compile_(compiled_methods),
Andreas Gampe6cf49e52015-03-05 13:08:45 -0800377 had_hard_verifier_failure_(false),
Brian Carlstrom7940e442013-07-12 13:46:57 -0700378 thread_count_(thread_count),
Brian Carlstrom7940e442013-07-12 13:46:57 -0700379 stats_(new AOTCompilationStats),
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800380 dedupe_enabled_(true),
Brian Carlstrom7940e442013-07-12 13:46:57 -0700381 dump_stats_(dump_stats),
Nicolas Geoffrayea3fa0b2014-02-10 11:59:41 +0000382 dump_passes_(dump_passes),
David Brazdil866c0312015-01-13 21:21:31 +0000383 dump_cfg_file_name_(dump_cfg_file_name),
Nicolas Geoffrayea3fa0b2014-02-10 11:59:41 +0000384 timings_logger_(timer),
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700385 compiler_context_(nullptr),
Andreas Gampe57b34292015-01-14 15:45:59 -0800386 support_boot_image_fixup_(instruction_set != kMips && instruction_set != kMips64),
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800387 dedupe_code_("dedupe code", *swap_space_allocator_),
388 dedupe_src_mapping_table_("dedupe source mapping table", *swap_space_allocator_),
389 dedupe_mapping_table_("dedupe mapping table", *swap_space_allocator_),
390 dedupe_vmap_table_("dedupe vmap table", *swap_space_allocator_),
391 dedupe_gc_map_("dedupe gc map", *swap_space_allocator_),
392 dedupe_cfi_info_("dedupe cfi info", *swap_space_allocator_) {
Brian Carlstrom6449c622014-02-10 23:48:36 -0800393 DCHECK(compiler_options_ != nullptr);
394 DCHECK(verification_results_ != nullptr);
395 DCHECK(method_inliner_map_ != nullptr);
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700396
Sebastien Hertz75021222013-07-16 18:34:50 +0200397 dex_to_dex_compiler_ = reinterpret_cast<DexToDexCompilerFn>(ArtCompileDEX);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700398
Ian Rogers72d32622014-05-06 16:20:11 -0700399 compiler_->Init();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700400
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800401 CHECK_EQ(image_, image_classes_.get() != nullptr);
Mark Mendellae9fd932014-02-10 16:14:35 -0800402
Calin Juravlec1b643c2014-05-30 23:44:11 +0100403 // Read the profile file if one is provided.
404 if (!profile_file.empty()) {
405 profile_present_ = profile_file_.LoadFile(profile_file);
406 if (profile_present_) {
407 LOG(INFO) << "Using profile data form file " << profile_file;
408 } else {
409 LOG(INFO) << "Failed to load profile file " << profile_file;
410 }
411 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700412}
413
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800414SwapVector<uint8_t>* CompilerDriver::DeduplicateCode(const ArrayRef<const uint8_t>& code) {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800415 DCHECK(dedupe_enabled_);
Mathieu Chartier193bad92013-08-29 18:46:00 -0700416 return dedupe_code_.Add(Thread::Current(), code);
417}
418
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800419SwapSrcMap* CompilerDriver::DeduplicateSrcMappingTable(const ArrayRef<SrcMapElem>& src_map) {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800420 DCHECK(dedupe_enabled_);
Yevgeny Roubane3ea8382014-08-08 16:29:38 +0700421 return dedupe_src_mapping_table_.Add(Thread::Current(), src_map);
422}
423
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800424SwapVector<uint8_t>* CompilerDriver::DeduplicateMappingTable(const ArrayRef<const uint8_t>& code) {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800425 DCHECK(dedupe_enabled_);
Mathieu Chartier193bad92013-08-29 18:46:00 -0700426 return dedupe_mapping_table_.Add(Thread::Current(), code);
427}
428
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800429SwapVector<uint8_t>* CompilerDriver::DeduplicateVMapTable(const ArrayRef<const uint8_t>& code) {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800430 DCHECK(dedupe_enabled_);
Mathieu Chartier193bad92013-08-29 18:46:00 -0700431 return dedupe_vmap_table_.Add(Thread::Current(), code);
432}
433
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800434SwapVector<uint8_t>* CompilerDriver::DeduplicateGCMap(const ArrayRef<const uint8_t>& code) {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800435 DCHECK(dedupe_enabled_);
Mathieu Chartier193bad92013-08-29 18:46:00 -0700436 return dedupe_gc_map_.Add(Thread::Current(), code);
437}
438
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800439SwapVector<uint8_t>* CompilerDriver::DeduplicateCFIInfo(const ArrayRef<const uint8_t>& cfi_info) {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800440 DCHECK(dedupe_enabled_);
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800441 return dedupe_cfi_info_.Add(Thread::Current(), cfi_info);
Mark Mendellae9fd932014-02-10 16:14:35 -0800442}
443
Brian Carlstrom7940e442013-07-12 13:46:57 -0700444CompilerDriver::~CompilerDriver() {
445 Thread* self = Thread::Current();
446 {
447 MutexLock mu(self, compiled_classes_lock_);
448 STLDeleteValues(&compiled_classes_);
449 }
450 {
451 MutexLock mu(self, compiled_methods_lock_);
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800452 for (auto& pair : compiled_methods_) {
453 CompiledMethod::ReleaseSwapAllocatedCompiledMethod(this, pair.second);
454 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700455 }
Ian Rogers72d32622014-05-06 16:20:11 -0700456 compiler_->UnInit();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700457}
458
Ian Rogersdd7624d2014-03-14 17:43:00 -0700459#define CREATE_TRAMPOLINE(type, abi, offset) \
Andreas Gampeaf13ad92014-04-11 12:07:48 -0700460 if (Is64BitInstructionSet(instruction_set_)) { \
Ian Rogersdd7624d2014-03-14 17:43:00 -0700461 return CreateTrampoline64(instruction_set_, abi, \
462 type ## _ENTRYPOINT_OFFSET(8, offset)); \
463 } else { \
464 return CreateTrampoline32(instruction_set_, abi, \
465 type ## _ENTRYPOINT_OFFSET(4, offset)); \
466 }
467
Ian Rogers848871b2013-08-05 10:56:33 -0700468const std::vector<uint8_t>* CompilerDriver::CreateInterpreterToInterpreterBridge() const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700469 CREATE_TRAMPOLINE(INTERPRETER, kInterpreterAbi, pInterpreterToInterpreterBridge)
Ian Rogers848871b2013-08-05 10:56:33 -0700470}
471
472const std::vector<uint8_t>* CompilerDriver::CreateInterpreterToCompiledCodeBridge() const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700473 CREATE_TRAMPOLINE(INTERPRETER, kInterpreterAbi, pInterpreterToCompiledCodeBridge)
Ian Rogers848871b2013-08-05 10:56:33 -0700474}
475
476const std::vector<uint8_t>* CompilerDriver::CreateJniDlsymLookup() const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700477 CREATE_TRAMPOLINE(JNI, kJniAbi, pDlsymLookup)
Ian Rogers848871b2013-08-05 10:56:33 -0700478}
479
Andreas Gampe2da88232014-02-27 12:26:20 -0800480const std::vector<uint8_t>* CompilerDriver::CreateQuickGenericJniTrampoline() const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700481 CREATE_TRAMPOLINE(QUICK, kQuickAbi, pQuickGenericJniTrampoline)
Andreas Gampe2da88232014-02-27 12:26:20 -0800482}
483
Jeff Hao88474b42013-10-23 16:24:40 -0700484const std::vector<uint8_t>* CompilerDriver::CreateQuickImtConflictTrampoline() const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700485 CREATE_TRAMPOLINE(QUICK, kQuickAbi, pQuickImtConflictTrampoline)
Jeff Hao88474b42013-10-23 16:24:40 -0700486}
487
Brian Carlstrom7940e442013-07-12 13:46:57 -0700488const std::vector<uint8_t>* CompilerDriver::CreateQuickResolutionTrampoline() const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700489 CREATE_TRAMPOLINE(QUICK, kQuickAbi, pQuickResolutionTrampoline)
Brian Carlstrom7940e442013-07-12 13:46:57 -0700490}
491
Ian Rogers848871b2013-08-05 10:56:33 -0700492const std::vector<uint8_t>* CompilerDriver::CreateQuickToInterpreterBridge() const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700493 CREATE_TRAMPOLINE(QUICK, kQuickAbi, pQuickToInterpreterBridge)
Brian Carlstrom7940e442013-07-12 13:46:57 -0700494}
Ian Rogersdd7624d2014-03-14 17:43:00 -0700495#undef CREATE_TRAMPOLINE
Brian Carlstrom7940e442013-07-12 13:46:57 -0700496
497void CompilerDriver::CompileAll(jobject class_loader,
Brian Carlstrom45602482013-07-21 22:07:55 -0700498 const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -0800499 TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700500 DCHECK(!Runtime::Current()->IsStarted());
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700501 std::unique_ptr<ThreadPool> thread_pool(
502 new ThreadPool("Compiler driver thread pool", thread_count_ - 1));
Andreas Gampe8d295f82015-01-20 14:50:21 -0800503 VLOG(compiler) << "Before precompile " << GetMemoryUsageString(false);
Ian Rogers3d504072014-03-01 09:16:49 -0800504 PreCompile(class_loader, dex_files, thread_pool.get(), timings);
505 Compile(class_loader, dex_files, thread_pool.get(), timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700506 if (dump_stats_) {
507 stats_->Dump();
508 }
509}
510
Mathieu Chartiere86deef2015-03-19 13:43:37 -0700511DexToDexCompilationLevel CompilerDriver::GetDexToDexCompilationlevel(
Mathieu Chartier0cd81352014-05-22 16:48:55 -0700512 Thread* self, Handle<mirror::ClassLoader> class_loader, const DexFile& dex_file,
Mathieu Chartiere86deef2015-03-19 13:43:37 -0700513 const DexFile::ClassDef& class_def) {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800514 auto* const runtime = Runtime::Current();
Mathieu Chartiere86deef2015-03-19 13:43:37 -0700515 if (runtime->UseJit() || GetCompilerOptions().VerifyAtRuntime()) {
516 // Verify at runtime shouldn't dex to dex since we didn't resolve of verify.
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800517 return kDontDexToDexCompile;
518 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700519 const char* descriptor = dex_file.GetClassDescriptor(class_def);
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800520 ClassLinker* class_linker = runtime->GetClassLinker();
Ian Rogers98379392014-02-24 16:53:16 -0800521 mirror::Class* klass = class_linker->FindClass(self, descriptor, class_loader);
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700522 if (klass == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700523 CHECK(self->IsExceptionPending());
524 self->ClearException();
Sebastien Hertz75021222013-07-16 18:34:50 +0200525 return kDontDexToDexCompile;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700526 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700527 // DexToDex at the kOptimize level may introduce quickened opcodes, which replace symbolic
528 // references with actual offsets. We cannot re-verify such instructions.
529 //
530 // We store the verification information in the class status in the oat file, which the linker
531 // can validate (checksums) and use to skip load-time verification. It is thus safe to
532 // optimize when a class has been fully verified before.
533 if (klass->IsVerified()) {
Sebastien Hertz75021222013-07-16 18:34:50 +0200534 // Class is verified so we can enable DEX-to-DEX compilation for performance.
535 return kOptimize;
536 } else if (klass->IsCompileTimeVerified()) {
537 // Class verification has soft-failed. Anyway, ensure at least correctness.
538 DCHECK_EQ(klass->GetStatus(), mirror::Class::kStatusRetryVerificationAtRuntime);
539 return kRequired;
540 } else {
541 // Class verification has failed: do not run DEX-to-DEX compilation.
542 return kDontDexToDexCompile;
543 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700544}
545
Mathieu Chartiere401d142015-04-22 13:56:20 -0700546void CompilerDriver::CompileOne(Thread* self, ArtMethod* method, TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700547 DCHECK(!Runtime::Current()->IsStarted());
Brian Carlstrom7940e442013-07-12 13:46:57 -0700548 jobject jclass_loader;
549 const DexFile* dex_file;
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700550 uint16_t class_def_idx;
Ian Rogersef7d42f2014-01-06 12:55:46 -0800551 uint32_t method_idx = method->GetDexMethodIndex();
552 uint32_t access_flags = method->GetAccessFlags();
553 InvokeType invoke_type = method->GetInvokeType();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700554 {
555 ScopedObjectAccessUnchecked soa(self);
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800556 ScopedLocalRef<jobject> local_class_loader(
557 soa.Env(), soa.AddLocalReference<jobject>(method->GetDeclaringClass()->GetClassLoader()));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700558 jclass_loader = soa.Env()->NewGlobalRef(local_class_loader.get());
559 // Find the dex_file
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700560 dex_file = method->GetDexFile();
561 class_def_idx = method->GetClassDefIndex();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700562 }
Ian Rogersef7d42f2014-01-06 12:55:46 -0800563 const DexFile::CodeItem* code_item = dex_file->GetCodeItem(method->GetCodeItemOffset());
Brian Carlstrom7940e442013-07-12 13:46:57 -0700564 self->TransitionFromRunnableToSuspended(kNative);
565
566 std::vector<const DexFile*> dex_files;
567 dex_files.push_back(dex_file);
568
Ian Rogers700a4022014-05-19 16:49:03 -0700569 std::unique_ptr<ThreadPool> thread_pool(new ThreadPool("Compiler driver thread pool", 0U));
Ian Rogers3d504072014-03-01 09:16:49 -0800570 PreCompile(jclass_loader, dex_files, thread_pool.get(), timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700571
Brian Carlstrom7940e442013-07-12 13:46:57 -0700572 // Can we run DEX-to-DEX compiler on this class ?
Sebastien Hertz75021222013-07-16 18:34:50 +0200573 DexToDexCompilationLevel dex_to_dex_compilation_level = kDontDexToDexCompile;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700574 {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800575 ScopedObjectAccess soa(self);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700576 const DexFile::ClassDef& class_def = dex_file->GetClassDef(class_def_idx);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700577 StackHandleScope<1> hs(soa.Self());
578 Handle<mirror::ClassLoader> class_loader(
579 hs.NewHandle(soa.Decode<mirror::ClassLoader*>(jclass_loader)));
Ian Rogers98379392014-02-24 16:53:16 -0800580 dex_to_dex_compilation_level = GetDexToDexCompilationlevel(self, class_loader, *dex_file,
581 class_def);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700582 }
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800583 CompileMethod(self, code_item, access_flags, invoke_type, class_def_idx, method_idx,
584 jclass_loader, *dex_file, dex_to_dex_compilation_level, true);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700585
586 self->GetJniEnv()->DeleteGlobalRef(jclass_loader);
Mathieu Chartier2535abe2015-02-17 10:38:49 -0800587 self->TransitionFromSuspendedToRunnable();
Mathieu Chartier2535abe2015-02-17 10:38:49 -0800588}
589
Mathieu Chartiere401d142015-04-22 13:56:20 -0700590CompiledMethod* CompilerDriver::CompileMethod(Thread* self, ArtMethod* method) {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800591 const uint32_t method_idx = method->GetDexMethodIndex();
592 const uint32_t access_flags = method->GetAccessFlags();
593 const InvokeType invoke_type = method->GetInvokeType();
594 StackHandleScope<1> hs(self);
595 Handle<mirror::ClassLoader> class_loader(hs.NewHandle(
596 method->GetDeclaringClass()->GetClassLoader()));
597 jobject jclass_loader = class_loader.ToJObject();
598 const DexFile* dex_file = method->GetDexFile();
599 const uint16_t class_def_idx = method->GetClassDefIndex();
600 const DexFile::ClassDef& class_def = dex_file->GetClassDef(class_def_idx);
601 DexToDexCompilationLevel dex_to_dex_compilation_level =
602 GetDexToDexCompilationlevel(self, class_loader, *dex_file, class_def);
603 const DexFile::CodeItem* code_item = dex_file->GetCodeItem(method->GetCodeItemOffset());
604 self->TransitionFromRunnableToSuspended(kNative);
605 CompileMethod(self, code_item, access_flags, invoke_type, class_def_idx, method_idx,
606 jclass_loader, *dex_file, dex_to_dex_compilation_level, true);
607 auto* compiled_method = GetCompiledMethod(MethodReference(dex_file, method_idx));
608 self->TransitionFromSuspendedToRunnable();
609 return compiled_method;
610}
611
Brian Carlstrom7940e442013-07-12 13:46:57 -0700612void CompilerDriver::Resolve(jobject class_loader, const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -0800613 ThreadPool* thread_pool, TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700614 for (size_t i = 0; i != dex_files.size(); ++i) {
615 const DexFile* dex_file = dex_files[i];
Kenny Rootd5185342014-05-13 14:47:05 -0700616 CHECK(dex_file != nullptr);
Andreas Gampede7b4362014-07-28 18:38:57 -0700617 ResolveDexFile(class_loader, *dex_file, dex_files, thread_pool, timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700618 }
619}
620
621void CompilerDriver::PreCompile(jobject class_loader, const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -0800622 ThreadPool* thread_pool, TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700623 LoadImageClasses(timings);
Andreas Gampe8d295f82015-01-20 14:50:21 -0800624 VLOG(compiler) << "LoadImageClasses: " << GetMemoryUsageString(false);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700625
Mathieu Chartiere86deef2015-03-19 13:43:37 -0700626 const bool verification_enabled = compiler_options_->IsVerificationEnabled();
627 const bool never_verify = compiler_options_->NeverVerify();
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700628
Mathieu Chartiere86deef2015-03-19 13:43:37 -0700629 // We need to resolve for never_verify since it needs to run dex to dex to add the
630 // RETURN_VOID_NO_BARRIER.
631 if (never_verify || verification_enabled) {
632 Resolve(class_loader, dex_files, thread_pool, timings);
633 VLOG(compiler) << "Resolve: " << GetMemoryUsageString(false);
634 }
635
636 if (never_verify) {
Mathieu Chartierab972ef2014-12-03 17:38:22 -0800637 VLOG(compiler) << "Verify none mode specified, skipping verification.";
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700638 SetVerified(class_loader, dex_files, thread_pool, timings);
Mathieu Chartiere86deef2015-03-19 13:43:37 -0700639 }
640
641 if (!verification_enabled) {
Jeff Hao4a200f52014-04-01 14:58:49 -0700642 return;
643 }
644
Brian Carlstrom7940e442013-07-12 13:46:57 -0700645 Verify(class_loader, dex_files, thread_pool, timings);
Andreas Gampe8d295f82015-01-20 14:50:21 -0800646 VLOG(compiler) << "Verify: " << GetMemoryUsageString(false);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700647
Andreas Gampe6cf49e52015-03-05 13:08:45 -0800648 if (had_hard_verifier_failure_ && GetCompilerOptions().AbortOnHardVerifierFailure()) {
649 LOG(FATAL) << "Had a hard failure verifying all classes, and was asked to abort in such "
650 << "situations. Please check the log.";
651 }
652
Brian Carlstrom7940e442013-07-12 13:46:57 -0700653 InitializeClasses(class_loader, dex_files, thread_pool, timings);
Andreas Gampe8d295f82015-01-20 14:50:21 -0800654 VLOG(compiler) << "InitializeClasses: " << GetMemoryUsageString(false);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700655
656 UpdateImageClasses(timings);
Andreas Gampe8d295f82015-01-20 14:50:21 -0800657 VLOG(compiler) << "UpdateImageClasses: " << GetMemoryUsageString(false);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700658}
659
Ian Rogersdfb325e2013-10-30 01:00:44 -0700660bool CompilerDriver::IsImageClass(const char* descriptor) const {
Ian Rogerse6bb3b22013-08-19 21:51:45 -0700661 if (!IsImage()) {
Vladimir Marko07785bb2015-06-15 18:52:54 +0100662 // NOTE: Currently unreachable, all callers check IsImage().
663 return false;
Ian Rogerse6bb3b22013-08-19 21:51:45 -0700664 } else {
Ian Rogersdfb325e2013-10-30 01:00:44 -0700665 return image_classes_->find(descriptor) != image_classes_->end();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700666 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700667}
668
Andreas Gampe4bf3ae92014-11-11 13:28:29 -0800669bool CompilerDriver::IsClassToCompile(const char* descriptor) const {
Andreas Gampeb1fcead2015-04-20 18:53:51 -0700670 if (kRestrictCompilationFiltersToImage && !IsImage()) {
Andreas Gampe4bf3ae92014-11-11 13:28:29 -0800671 return true;
Andreas Gampe4bf3ae92014-11-11 13:28:29 -0800672 }
Andreas Gampeb1fcead2015-04-20 18:53:51 -0700673
674 if (classes_to_compile_ == nullptr) {
675 return true;
676 }
677 return classes_to_compile_->find(descriptor) != classes_to_compile_->end();
Andreas Gampe4bf3ae92014-11-11 13:28:29 -0800678}
679
Andreas Gampe70bef0d2015-04-15 02:37:28 -0700680bool CompilerDriver::IsMethodToCompile(const MethodReference& method_ref) const {
681 if (kRestrictCompilationFiltersToImage && !IsImage()) {
682 return true;
683 }
684
685 if (methods_to_compile_ == nullptr) {
686 return true;
687 }
688
689 std::string tmp = PrettyMethod(method_ref.dex_method_index, *method_ref.dex_file, true);
690 return methods_to_compile_->find(tmp.c_str()) != methods_to_compile_->end();
691}
692
Mathieu Chartiere0671ce2015-07-28 17:23:28 -0700693class ResolveCatchBlockExceptionsClassVisitor : public ClassVisitor {
694 public:
695 ResolveCatchBlockExceptionsClassVisitor(
696 std::set<std::pair<uint16_t, const DexFile*>>& exceptions_to_resolve)
697 : exceptions_to_resolve_(exceptions_to_resolve) {}
698
699 void ResolveExceptionsForMethod(ArtMethod* method_handle) SHARED_REQUIRES(Locks::mutator_lock_) {
700 const DexFile::CodeItem* code_item = method_handle->GetCodeItem();
701 if (code_item == nullptr) {
702 return; // native or abstract method
Brian Carlstrom7940e442013-07-12 13:46:57 -0700703 }
Mathieu Chartiere0671ce2015-07-28 17:23:28 -0700704 if (code_item->tries_size_ == 0) {
705 return; // nothing to process
706 }
707 const uint8_t* encoded_catch_handler_list = DexFile::GetCatchHandlerData(*code_item, 0);
708 size_t num_encoded_catch_handlers = DecodeUnsignedLeb128(&encoded_catch_handler_list);
709 for (size_t i = 0; i < num_encoded_catch_handlers; i++) {
710 int32_t encoded_catch_handler_size = DecodeSignedLeb128(&encoded_catch_handler_list);
711 bool has_catch_all = false;
712 if (encoded_catch_handler_size <= 0) {
713 encoded_catch_handler_size = -encoded_catch_handler_size;
714 has_catch_all = true;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700715 }
Mathieu Chartiere0671ce2015-07-28 17:23:28 -0700716 for (int32_t j = 0; j < encoded_catch_handler_size; j++) {
717 uint16_t encoded_catch_handler_handlers_type_idx =
718 DecodeUnsignedLeb128(&encoded_catch_handler_list);
719 // Add to set of types to resolve if not already in the dex cache resolved types
720 if (!method_handle->IsResolvedTypeIdx(encoded_catch_handler_handlers_type_idx)) {
721 exceptions_to_resolve_.emplace(encoded_catch_handler_handlers_type_idx,
722 method_handle->GetDexFile());
723 }
724 // ignore address associated with catch handler
725 DecodeUnsignedLeb128(&encoded_catch_handler_list);
726 }
727 if (has_catch_all) {
728 // ignore catch all address
729 DecodeUnsignedLeb128(&encoded_catch_handler_list);
730 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700731 }
732 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700733
Mathieu Chartiere0671ce2015-07-28 17:23:28 -0700734 virtual bool Visit(mirror::Class* c) OVERRIDE SHARED_REQUIRES(Locks::mutator_lock_) {
735 const auto pointer_size = Runtime::Current()->GetClassLinker()->GetImagePointerSize();
736 for (auto& m : c->GetVirtualMethods(pointer_size)) {
737 ResolveExceptionsForMethod(&m);
738 }
739 for (auto& m : c->GetDirectMethods(pointer_size)) {
740 ResolveExceptionsForMethod(&m);
741 }
742 return true;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700743 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700744
Mathieu Chartiere0671ce2015-07-28 17:23:28 -0700745 private:
746 std::set<std::pair<uint16_t, const DexFile*>>& exceptions_to_resolve_;
747};
748
749class RecordImageClassesVisitor : public ClassVisitor {
750 public:
751 explicit RecordImageClassesVisitor(std::unordered_set<std::string>* image_classes)
752 : image_classes_(image_classes) {}
753
754 bool Visit(mirror::Class* klass) OVERRIDE SHARED_REQUIRES(Locks::mutator_lock_) {
755 std::string temp;
756 image_classes_->insert(klass->GetDescriptor(&temp));
757 return true;
758 }
759
760 private:
761 std::unordered_set<std::string>* const image_classes_;
762};
Brian Carlstrom7940e442013-07-12 13:46:57 -0700763
764// Make a list of descriptors for classes to include in the image
Mathieu Chartier90443472015-07-16 20:32:27 -0700765void CompilerDriver::LoadImageClasses(TimingLogger* timings) {
Kenny Rootd5185342014-05-13 14:47:05 -0700766 CHECK(timings != nullptr);
Ian Rogerse6bb3b22013-08-19 21:51:45 -0700767 if (!IsImage()) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700768 return;
769 }
770
Mathieu Chartierf5997b42014-06-20 10:37:54 -0700771 TimingLogger::ScopedTiming t("LoadImageClasses", timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700772 // Make a first class to load all classes explicitly listed in the file
773 Thread* self = Thread::Current();
774 ScopedObjectAccess soa(self);
775 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Kenny Rootd5185342014-05-13 14:47:05 -0700776 CHECK(image_classes_.get() != nullptr);
Mathieu Chartier02e25112013-08-14 16:14:24 -0700777 for (auto it = image_classes_->begin(), end = image_classes_->end(); it != end;) {
Vladimir Markoe9c36b32013-11-21 15:49:16 +0000778 const std::string& descriptor(*it);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700779 StackHandleScope<1> hs(self);
780 Handle<mirror::Class> klass(
781 hs.NewHandle(class_linker->FindSystemClass(self, descriptor.c_str())));
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700782 if (klass.Get() == nullptr) {
Ian Rogerse6bb3b22013-08-19 21:51:45 -0700783 VLOG(compiler) << "Failed to find class " << descriptor;
Vladimir Markoe9c36b32013-11-21 15:49:16 +0000784 image_classes_->erase(it++);
Ian Rogersa436fde2013-08-27 23:34:06 -0700785 self->ClearException();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700786 } else {
787 ++it;
788 }
789 }
790
791 // Resolve exception classes referenced by the loaded classes. The catch logic assumes
792 // exceptions are resolved by the verifier when there is a catch block in an interested method.
793 // Do this here so that exception classes appear to have been specified image classes.
Ian Rogers700a4022014-05-19 16:49:03 -0700794 std::set<std::pair<uint16_t, const DexFile*>> unresolved_exception_types;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700795 StackHandleScope<1> hs(self);
796 Handle<mirror::Class> java_lang_Throwable(
797 hs.NewHandle(class_linker->FindSystemClass(self, "Ljava/lang/Throwable;")));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700798 do {
799 unresolved_exception_types.clear();
Mathieu Chartiere0671ce2015-07-28 17:23:28 -0700800 ResolveCatchBlockExceptionsClassVisitor visitor(unresolved_exception_types);
801 class_linker->VisitClasses(&visitor);
Mathieu Chartier02e25112013-08-14 16:14:24 -0700802 for (const std::pair<uint16_t, const DexFile*>& exception_type : unresolved_exception_types) {
803 uint16_t exception_type_idx = exception_type.first;
804 const DexFile* dex_file = exception_type.second;
Andreas Gampe277ccbd2014-11-03 21:36:10 -0800805 StackHandleScope<2> hs2(self);
806 Handle<mirror::DexCache> dex_cache(hs2.NewHandle(class_linker->FindDexCache(*dex_file)));
807 Handle<mirror::Class> klass(hs2.NewHandle(
Mathieu Chartier0cd81352014-05-22 16:48:55 -0700808 class_linker->ResolveType(*dex_file, exception_type_idx, dex_cache,
809 NullHandle<mirror::ClassLoader>())));
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700810 if (klass.Get() == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700811 const DexFile::TypeId& type_id = dex_file->GetTypeId(exception_type_idx);
812 const char* descriptor = dex_file->GetTypeDescriptor(type_id);
813 LOG(FATAL) << "Failed to resolve class " << descriptor;
814 }
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700815 DCHECK(java_lang_Throwable->IsAssignableFrom(klass.Get()));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700816 }
817 // Resolving exceptions may load classes that reference more exceptions, iterate until no
818 // more are found
819 } while (!unresolved_exception_types.empty());
820
821 // We walk the roots looking for classes so that we'll pick up the
822 // above classes plus any classes them depend on such super
823 // classes, interfaces, and the required ClassLinker roots.
Mathieu Chartiere0671ce2015-07-28 17:23:28 -0700824 RecordImageClassesVisitor visitor(image_classes_.get());
825 class_linker->VisitClasses(&visitor);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700826
827 CHECK_NE(image_classes_->size(), 0U);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700828}
829
Andreas Gampeb1fcead2015-04-20 18:53:51 -0700830static void MaybeAddToImageClasses(Handle<mirror::Class> c,
831 std::unordered_set<std::string>* image_classes)
Mathieu Chartier90443472015-07-16 20:32:27 -0700832 SHARED_REQUIRES(Locks::mutator_lock_) {
Mathieu Chartierf8322842014-05-16 10:59:25 -0700833 Thread* self = Thread::Current();
834 StackHandleScope<1> hs(self);
835 // Make a copy of the handle so that we don't clobber it doing Assign.
Andreas Gampe5a4b8a22014-09-11 08:30:08 -0700836 MutableHandle<mirror::Class> klass(hs.NewHandle(c.Get()));
Ian Rogers1ff3c982014-08-12 02:30:58 -0700837 std::string temp;
Mathieu Chartiere401d142015-04-22 13:56:20 -0700838 const size_t pointer_size = Runtime::Current()->GetClassLinker()->GetImagePointerSize();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700839 while (!klass->IsObjectClass()) {
Ian Rogers1ff3c982014-08-12 02:30:58 -0700840 const char* descriptor = klass->GetDescriptor(&temp);
Andreas Gampeb1fcead2015-04-20 18:53:51 -0700841 std::pair<std::unordered_set<std::string>::iterator, bool> result =
842 image_classes->insert(descriptor);
Ian Rogers1ff3c982014-08-12 02:30:58 -0700843 if (!result.second) { // Previously inserted.
844 break;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700845 }
Ian Rogers1ff3c982014-08-12 02:30:58 -0700846 VLOG(compiler) << "Adding " << descriptor << " to image classes";
Mathieu Chartierf8322842014-05-16 10:59:25 -0700847 for (size_t i = 0; i < klass->NumDirectInterfaces(); ++i) {
Andreas Gampe277ccbd2014-11-03 21:36:10 -0800848 StackHandleScope<1> hs2(self);
849 MaybeAddToImageClasses(hs2.NewHandle(mirror::Class::GetDirectInterface(self, klass, i)),
Mathieu Chartierf8322842014-05-16 10:59:25 -0700850 image_classes);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700851 }
Mathieu Chartiere401d142015-04-22 13:56:20 -0700852 for (auto& m : c->GetVirtualMethods(pointer_size)) {
853 if (m.IsMiranda() || (true)) {
854 StackHandleScope<1> hs2(self);
855 MaybeAddToImageClasses(hs2.NewHandle(m.GetDeclaringClass()), image_classes);
856 }
857 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700858 if (klass->IsArrayClass()) {
Andreas Gampe277ccbd2014-11-03 21:36:10 -0800859 StackHandleScope<1> hs2(self);
860 MaybeAddToImageClasses(hs2.NewHandle(klass->GetComponentType()), image_classes);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700861 }
Mathieu Chartierf8322842014-05-16 10:59:25 -0700862 klass.Assign(klass->GetSuperClass());
Brian Carlstrom7940e442013-07-12 13:46:57 -0700863 }
864}
865
Andreas Gampeb0f370e2014-09-25 22:51:40 -0700866// Keeps all the data for the update together. Also doubles as the reference visitor.
867// Note: we can use object pointers because we suspend all threads.
868class ClinitImageUpdate {
869 public:
Andreas Gampeb1fcead2015-04-20 18:53:51 -0700870 static ClinitImageUpdate* Create(std::unordered_set<std::string>* image_class_descriptors,
871 Thread* self, ClassLinker* linker, std::string* error_msg) {
Andreas Gampeb0f370e2014-09-25 22:51:40 -0700872 std::unique_ptr<ClinitImageUpdate> res(new ClinitImageUpdate(image_class_descriptors, self,
873 linker));
Mathieu Chartiere401d142015-04-22 13:56:20 -0700874 if (res->dex_cache_class_ == nullptr) {
Andreas Gampeb0f370e2014-09-25 22:51:40 -0700875 *error_msg = "Could not find DexCache class.";
876 return nullptr;
877 }
878
879 return res.release();
880 }
881
882 ~ClinitImageUpdate() {
883 // Allow others to suspend again.
884 self_->EndAssertNoThreadSuspension(old_cause_);
885 }
886
887 // Visitor for VisitReferences.
888 void operator()(mirror::Object* object, MemberOffset field_offset, bool /* is_static */) const
Mathieu Chartier90443472015-07-16 20:32:27 -0700889 SHARED_REQUIRES(Locks::mutator_lock_) {
Andreas Gampeb0f370e2014-09-25 22:51:40 -0700890 mirror::Object* ref = object->GetFieldObject<mirror::Object>(field_offset);
891 if (ref != nullptr) {
892 VisitClinitClassesObject(ref);
893 }
894 }
895
896 // java.lang.Reference visitor for VisitReferences.
Mathieu Chartierda7c6502015-07-23 16:01:26 -0700897 void operator()(mirror::Class* klass ATTRIBUTE_UNUSED, mirror::Reference* ref ATTRIBUTE_UNUSED)
898 const {}
899
900 // Ignore class native roots.
901 void VisitRootIfNonNull(mirror::CompressedReference<mirror::Object>* root ATTRIBUTE_UNUSED)
902 const {}
903 void VisitRoot(mirror::CompressedReference<mirror::Object>* root ATTRIBUTE_UNUSED) const {}
Andreas Gampeb0f370e2014-09-25 22:51:40 -0700904
Mathieu Chartier90443472015-07-16 20:32:27 -0700905 void Walk() SHARED_REQUIRES(Locks::mutator_lock_) {
Andreas Gampeb0f370e2014-09-25 22:51:40 -0700906 // Use the initial classes as roots for a search.
907 for (mirror::Class* klass_root : image_classes_) {
908 VisitClinitClassesObject(klass_root);
909 }
910 }
911
912 private:
Mathieu Chartiere0671ce2015-07-28 17:23:28 -0700913 class FindImageClassesVisitor : public ClassVisitor {
914 public:
915 explicit FindImageClassesVisitor(ClinitImageUpdate* data) : data_(data) {}
916
917 bool Visit(mirror::Class* klass) OVERRIDE SHARED_REQUIRES(Locks::mutator_lock_) {
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);
922 } else {
923 // Check whether it is initialized and has a clinit. They must be kept, too.
924 if (klass->IsInitialized() && klass->FindClassInitializer(
925 Runtime::Current()->GetClassLinker()->GetImagePointerSize()) != nullptr) {
926 data_->image_classes_.push_back(klass);
927 }
928 }
929 return true;
930 }
931
932 private:
933 ClinitImageUpdate* const data_;
934 };
935
Andreas Gampeb1fcead2015-04-20 18:53:51 -0700936 ClinitImageUpdate(std::unordered_set<std::string>* image_class_descriptors, Thread* self,
Andreas Gampeb0f370e2014-09-25 22:51:40 -0700937 ClassLinker* linker)
Mathieu Chartier90443472015-07-16 20:32:27 -0700938 SHARED_REQUIRES(Locks::mutator_lock_) :
Andreas Gampeb0f370e2014-09-25 22:51:40 -0700939 image_class_descriptors_(image_class_descriptors), self_(self) {
940 CHECK(linker != nullptr);
941 CHECK(image_class_descriptors != nullptr);
942
943 // Make sure nobody interferes with us.
944 old_cause_ = self->StartAssertNoThreadSuspension("Boot image closure");
945
946 // Find the interesting classes.
Andreas Gampedc8b63c2014-12-02 14:39:52 -0800947 dex_cache_class_ = linker->LookupClass(self, "Ljava/lang/DexCache;",
948 ComputeModifiedUtf8Hash("Ljava/lang/DexCache;"), nullptr);
Andreas Gampeb0f370e2014-09-25 22:51:40 -0700949
950 // Find all the already-marked classes.
951 WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartiere0671ce2015-07-28 17:23:28 -0700952 FindImageClassesVisitor visitor(this);
953 linker->VisitClasses(&visitor);
Andreas Gampeb0f370e2014-09-25 22:51:40 -0700954 }
955
956 void VisitClinitClassesObject(mirror::Object* object) const
Mathieu Chartier90443472015-07-16 20:32:27 -0700957 SHARED_REQUIRES(Locks::mutator_lock_) {
Andreas Gampeb0f370e2014-09-25 22:51:40 -0700958 DCHECK(object != nullptr);
959 if (marked_objects_.find(object) != marked_objects_.end()) {
960 // Already processed.
961 return;
962 }
963
964 // Mark it.
965 marked_objects_.insert(object);
966
967 if (object->IsClass()) {
968 // If it is a class, add it.
969 StackHandleScope<1> hs(self_);
970 MaybeAddToImageClasses(hs.NewHandle(object->AsClass()), image_class_descriptors_);
971 } else {
972 // Else visit the object's class.
973 VisitClinitClassesObject(object->GetClass());
974 }
975
Mathieu Chartiere401d142015-04-22 13:56:20 -0700976 // If it is not a DexCache, visit all references.
Andreas Gampeb0f370e2014-09-25 22:51:40 -0700977 mirror::Class* klass = object->GetClass();
Mathieu Chartiere401d142015-04-22 13:56:20 -0700978 if (klass != dex_cache_class_) {
Andreas Gampeb0f370e2014-09-25 22:51:40 -0700979 object->VisitReferences<false /* visit class */>(*this, *this);
980 }
981 }
982
983 mutable std::unordered_set<mirror::Object*> marked_objects_;
Andreas Gampeb1fcead2015-04-20 18:53:51 -0700984 std::unordered_set<std::string>* const image_class_descriptors_;
Andreas Gampeb0f370e2014-09-25 22:51:40 -0700985 std::vector<mirror::Class*> image_classes_;
Andreas Gampeb0f370e2014-09-25 22:51:40 -0700986 const mirror::Class* dex_cache_class_;
987 Thread* const self_;
988 const char* old_cause_;
989
990 DISALLOW_COPY_AND_ASSIGN(ClinitImageUpdate);
991};
Brian Carlstrom7940e442013-07-12 13:46:57 -0700992
Ian Rogers3d504072014-03-01 09:16:49 -0800993void CompilerDriver::UpdateImageClasses(TimingLogger* timings) {
Ian Rogerse6bb3b22013-08-19 21:51:45 -0700994 if (IsImage()) {
Mathieu Chartierf5997b42014-06-20 10:37:54 -0700995 TimingLogger::ScopedTiming t("UpdateImageClasses", timings);
Andreas Gampeb0f370e2014-09-25 22:51:40 -0700996
997 Runtime* current = Runtime::Current();
998
999 // Suspend all threads.
Mathieu Chartierbf9fc582015-03-13 17:21:25 -07001000 current->GetThreadList()->SuspendAll(__FUNCTION__);
Andreas Gampeb0f370e2014-09-25 22:51:40 -07001001
1002 std::string error_msg;
1003 std::unique_ptr<ClinitImageUpdate> update(ClinitImageUpdate::Create(image_classes_.get(),
1004 Thread::Current(),
1005 current->GetClassLinker(),
1006 &error_msg));
1007 CHECK(update.get() != nullptr) << error_msg; // TODO: Soft failure?
1008
1009 // Do the marking.
1010 update->Walk();
1011
1012 // Resume threads.
1013 current->GetThreadList()->ResumeAll();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001014 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001015}
1016
Vladimir Marko07785bb2015-06-15 18:52:54 +01001017bool CompilerDriver::CanAssumeClassIsLoaded(mirror::Class* klass) {
1018 Runtime* runtime = Runtime::Current();
1019 if (!runtime->IsAotCompiler()) {
1020 DCHECK(runtime->UseJit());
1021 // Having the klass reference here implies that the klass is already loaded.
1022 return true;
1023 }
1024 if (!IsImage()) {
1025 // Assume loaded only if klass is in the boot image. App classes cannot be assumed
1026 // loaded because we don't even know what class loader will be used to load them.
1027 bool class_in_image = runtime->GetHeap()->FindSpaceFromObject(klass, false)->IsImageSpace();
1028 return class_in_image;
1029 }
1030 std::string temp;
1031 const char* descriptor = klass->GetDescriptor(&temp);
1032 return IsImageClass(descriptor);
1033}
1034
Mathieu Chartier590fee92013-09-13 13:46:47 -07001035bool CompilerDriver::CanAssumeTypeIsPresentInDexCache(const DexFile& dex_file, uint32_t type_idx) {
Ian Rogersfc0e94b2013-09-23 23:51:32 -07001036 if (IsImage() &&
Ian Rogersdfb325e2013-10-30 01:00:44 -07001037 IsImageClass(dex_file.StringDataByIdx(dex_file.GetTypeId(type_idx).descriptor_idx_))) {
Andreas Gampe58a5af82014-07-31 16:23:49 -07001038 {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001039 ScopedObjectAccess soa(Thread::Current());
1040 mirror::DexCache* dex_cache = Runtime::Current()->GetClassLinker()->FindDexCache(dex_file);
1041 mirror::Class* resolved_class = dex_cache->GetResolvedType(type_idx);
Andreas Gampe58a5af82014-07-31 16:23:49 -07001042 if (resolved_class == nullptr) {
1043 // Erroneous class.
1044 stats_->TypeNotInDexCache();
1045 return false;
1046 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001047 }
1048 stats_->TypeInDexCache();
1049 return true;
1050 } else {
1051 stats_->TypeNotInDexCache();
1052 return false;
1053 }
1054}
1055
1056bool CompilerDriver::CanAssumeStringIsPresentInDexCache(const DexFile& dex_file,
1057 uint32_t string_idx) {
1058 // See also Compiler::ResolveDexFile
1059
1060 bool result = false;
1061 if (IsImage()) {
1062 // We resolve all const-string strings when building for the image.
1063 ScopedObjectAccess soa(Thread::Current());
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001064 StackHandleScope<1> hs(soa.Self());
1065 Handle<mirror::DexCache> dex_cache(
1066 hs.NewHandle(Runtime::Current()->GetClassLinker()->FindDexCache(dex_file)));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001067 Runtime::Current()->GetClassLinker()->ResolveString(dex_file, string_idx, dex_cache);
1068 result = true;
1069 }
1070 if (result) {
1071 stats_->StringInDexCache();
1072 } else {
1073 stats_->StringNotInDexCache();
1074 }
1075 return result;
1076}
1077
1078bool CompilerDriver::CanAccessTypeWithoutChecks(uint32_t referrer_idx, const DexFile& dex_file,
1079 uint32_t type_idx,
1080 bool* type_known_final, bool* type_known_abstract,
1081 bool* equals_referrers_class) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001082 if (type_known_final != nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001083 *type_known_final = false;
1084 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001085 if (type_known_abstract != nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001086 *type_known_abstract = false;
1087 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001088 if (equals_referrers_class != nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001089 *equals_referrers_class = false;
1090 }
1091 ScopedObjectAccess soa(Thread::Current());
1092 mirror::DexCache* dex_cache = Runtime::Current()->GetClassLinker()->FindDexCache(dex_file);
1093 // Get type from dex cache assuming it was populated by the verifier
1094 mirror::Class* resolved_class = dex_cache->GetResolvedType(type_idx);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001095 if (resolved_class == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001096 stats_->TypeNeedsAccessCheck();
1097 return false; // Unknown class needs access checks.
1098 }
1099 const DexFile::MethodId& method_id = dex_file.GetMethodId(referrer_idx);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001100 if (equals_referrers_class != nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001101 *equals_referrers_class = (method_id.class_idx_ == type_idx);
1102 }
1103 mirror::Class* referrer_class = dex_cache->GetResolvedType(method_id.class_idx_);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001104 if (referrer_class == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001105 stats_->TypeNeedsAccessCheck();
1106 return false; // Incomplete referrer knowledge needs access check.
1107 }
1108 // Perform access check, will return true if access is ok or false if we're going to have to
1109 // check this at runtime (for example for class loaders).
1110 bool result = referrer_class->CanAccess(resolved_class);
1111 if (result) {
1112 stats_->TypeDoesntNeedAccessCheck();
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001113 if (type_known_final != nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001114 *type_known_final = resolved_class->IsFinal() && !resolved_class->IsArrayClass();
1115 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001116 if (type_known_abstract != nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001117 *type_known_abstract = resolved_class->IsAbstract() && !resolved_class->IsArrayClass();
1118 }
1119 } else {
1120 stats_->TypeNeedsAccessCheck();
1121 }
1122 return result;
1123}
1124
1125bool CompilerDriver::CanAccessInstantiableTypeWithoutChecks(uint32_t referrer_idx,
1126 const DexFile& dex_file,
1127 uint32_t type_idx) {
1128 ScopedObjectAccess soa(Thread::Current());
1129 mirror::DexCache* dex_cache = Runtime::Current()->GetClassLinker()->FindDexCache(dex_file);
1130 // Get type from dex cache assuming it was populated by the verifier.
1131 mirror::Class* resolved_class = dex_cache->GetResolvedType(type_idx);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001132 if (resolved_class == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001133 stats_->TypeNeedsAccessCheck();
1134 return false; // Unknown class needs access checks.
1135 }
1136 const DexFile::MethodId& method_id = dex_file.GetMethodId(referrer_idx);
1137 mirror::Class* referrer_class = dex_cache->GetResolvedType(method_id.class_idx_);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001138 if (referrer_class == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001139 stats_->TypeNeedsAccessCheck();
1140 return false; // Incomplete referrer knowledge needs access check.
1141 }
1142 // Perform access and instantiable checks, will return true if access is ok or false if we're
1143 // going to have to check this at runtime (for example for class loaders).
1144 bool result = referrer_class->CanAccess(resolved_class) && resolved_class->IsInstantiable();
1145 if (result) {
1146 stats_->TypeDoesntNeedAccessCheck();
1147 } else {
1148 stats_->TypeNeedsAccessCheck();
1149 }
1150 return result;
1151}
1152
Hiroshi Yamauchibe1ca552014-01-15 11:46:48 -08001153bool CompilerDriver::CanEmbedTypeInCode(const DexFile& dex_file, uint32_t type_idx,
1154 bool* is_type_initialized, bool* use_direct_type_ptr,
Mathieu Chartier8668c3c2014-04-24 16:48:11 -07001155 uintptr_t* direct_type_ptr, bool* out_is_finalizable) {
Hiroshi Yamauchibe1ca552014-01-15 11:46:48 -08001156 ScopedObjectAccess soa(Thread::Current());
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08001157 Runtime* runtime = Runtime::Current();
1158 mirror::DexCache* dex_cache = runtime->GetClassLinker()->FindDexCache(dex_file);
Hiroshi Yamauchibe1ca552014-01-15 11:46:48 -08001159 mirror::Class* resolved_class = dex_cache->GetResolvedType(type_idx);
1160 if (resolved_class == nullptr) {
1161 return false;
1162 }
Igor Murashkind6dee672014-10-16 18:36:16 -07001163 if (GetCompilerOptions().GetCompilePic()) {
1164 // Do not allow a direct class pointer to be used when compiling for position-independent
1165 return false;
1166 }
Mathieu Chartier8668c3c2014-04-24 16:48:11 -07001167 *out_is_finalizable = resolved_class->IsFinalizable();
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08001168 gc::Heap* heap = runtime->GetHeap();
1169 const bool compiling_boot = heap->IsCompilingBoot();
Alex Light6e183f22014-07-18 14:57:04 -07001170 const bool support_boot_image_fixup = GetSupportBootImageFixup();
Hiroshi Yamauchibe1ca552014-01-15 11:46:48 -08001171 if (compiling_boot) {
1172 // boot -> boot class pointers.
1173 // True if the class is in the image at boot compiling time.
1174 const bool is_image_class = IsImage() && IsImageClass(
1175 dex_file.StringDataByIdx(dex_file.GetTypeId(type_idx).descriptor_idx_));
1176 // True if pc relative load works.
Hiroshi Yamauchibe1ca552014-01-15 11:46:48 -08001177 if (is_image_class && support_boot_image_fixup) {
1178 *is_type_initialized = resolved_class->IsInitialized();
1179 *use_direct_type_ptr = false;
1180 *direct_type_ptr = 0;
1181 return true;
1182 } else {
1183 return false;
1184 }
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08001185 } else if (runtime->UseJit() && !heap->IsMovableObject(resolved_class)) {
1186 *is_type_initialized = resolved_class->IsInitialized();
1187 // If the class may move around, then don't embed it as a direct pointer.
1188 *use_direct_type_ptr = true;
1189 *direct_type_ptr = reinterpret_cast<uintptr_t>(resolved_class);
1190 return true;
Hiroshi Yamauchibe1ca552014-01-15 11:46:48 -08001191 } else {
1192 // True if the class is in the image at app compiling time.
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08001193 const bool class_in_image = heap->FindSpaceFromObject(resolved_class, false)->IsImageSpace();
Alex Light6e183f22014-07-18 14:57:04 -07001194 if (class_in_image && support_boot_image_fixup) {
Hiroshi Yamauchibe1ca552014-01-15 11:46:48 -08001195 // boot -> app class pointers.
1196 *is_type_initialized = resolved_class->IsInitialized();
Alex Lighta59dd802014-07-02 16:28:08 -07001197 // TODO This is somewhat hacky. We should refactor all of this invoke codepath.
1198 *use_direct_type_ptr = !GetCompilerOptions().GetIncludePatchInformation();
Hiroshi Yamauchibe1ca552014-01-15 11:46:48 -08001199 *direct_type_ptr = reinterpret_cast<uintptr_t>(resolved_class);
1200 return true;
1201 } else {
1202 // app -> app class pointers.
1203 // Give up because app does not have an image and class
1204 // isn't created at compile time. TODO: implement this
1205 // if/when each app gets an image.
1206 return false;
1207 }
1208 }
1209}
1210
Fred Shihe7f82e22014-08-06 10:46:37 -07001211bool CompilerDriver::CanEmbedReferenceTypeInCode(ClassReference* ref,
1212 bool* use_direct_ptr,
1213 uintptr_t* direct_type_ptr) {
1214 CHECK(ref != nullptr);
1215 CHECK(use_direct_ptr != nullptr);
1216 CHECK(direct_type_ptr != nullptr);
1217
1218 ScopedObjectAccess soa(Thread::Current());
1219 mirror::Class* reference_class = mirror::Reference::GetJavaLangRefReference();
Andreas Gampe928f72b2014-09-09 19:53:48 -07001220 bool is_initialized = false;
Fred Shihe7f82e22014-08-06 10:46:37 -07001221 bool unused_finalizable;
1222 // Make sure we have a finished Reference class object before attempting to use it.
1223 if (!CanEmbedTypeInCode(*reference_class->GetDexCache()->GetDexFile(),
1224 reference_class->GetDexTypeIndex(), &is_initialized,
1225 use_direct_ptr, direct_type_ptr, &unused_finalizable) ||
1226 !is_initialized) {
1227 return false;
1228 }
1229 ref->first = &reference_class->GetDexFile();
1230 ref->second = reference_class->GetDexClassDefIndex();
1231 return true;
1232}
1233
1234uint32_t CompilerDriver::GetReferenceSlowFlagOffset() const {
1235 ScopedObjectAccess soa(Thread::Current());
1236 mirror::Class* klass = mirror::Reference::GetJavaLangRefReference();
1237 DCHECK(klass->IsInitialized());
1238 return klass->GetSlowPathFlagOffset().Uint32Value();
1239}
1240
1241uint32_t CompilerDriver::GetReferenceDisableFlagOffset() const {
1242 ScopedObjectAccess soa(Thread::Current());
1243 mirror::Class* klass = mirror::Reference::GetJavaLangRefReference();
1244 DCHECK(klass->IsInitialized());
1245 return klass->GetDisableIntrinsicFlagOffset().Uint32Value();
1246}
1247
Vladimir Marko20f85592015-03-19 10:07:02 +00001248DexCacheArraysLayout CompilerDriver::GetDexCacheArraysLayout(const DexFile* dex_file) {
1249 // Currently only image dex caches have fixed array layout.
1250 return IsImage() && GetSupportBootImageFixup()
Mathieu Chartierc7853442015-03-27 14:35:38 -07001251 ? DexCacheArraysLayout(GetInstructionSetPointerSize(instruction_set_), dex_file)
Vladimir Marko20f85592015-03-19 10:07:02 +00001252 : DexCacheArraysLayout();
1253}
1254
Vladimir Markobe0e5462014-02-26 11:24:15 +00001255void CompilerDriver::ProcessedInstanceField(bool resolved) {
1256 if (!resolved) {
1257 stats_->UnresolvedInstanceField();
1258 } else {
1259 stats_->ResolvedInstanceField();
1260 }
1261}
1262
1263void CompilerDriver::ProcessedStaticField(bool resolved, bool local) {
1264 if (!resolved) {
1265 stats_->UnresolvedStaticField();
1266 } else if (local) {
1267 stats_->ResolvedLocalStaticField();
1268 } else {
1269 stats_->ResolvedStaticField();
1270 }
1271}
1272
Vladimir Markof096aad2014-01-23 15:51:58 +00001273void CompilerDriver::ProcessedInvoke(InvokeType invoke_type, int flags) {
1274 stats_->ProcessedInvoke(invoke_type, flags);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001275}
1276
Mathieu Chartierc7853442015-03-27 14:35:38 -07001277ArtField* CompilerDriver::ComputeInstanceFieldInfo(uint32_t field_idx,
1278 const DexCompilationUnit* mUnit, bool is_put,
1279 const ScopedObjectAccess& soa) {
Vladimir Markobe0e5462014-02-26 11:24:15 +00001280 // Try to resolve the field and compiling method's class.
Mathieu Chartierc7853442015-03-27 14:35:38 -07001281 ArtField* resolved_field;
Vladimir Markobe0e5462014-02-26 11:24:15 +00001282 mirror::Class* referrer_class;
1283 mirror::DexCache* dex_cache;
1284 {
Roland Levillain2b846ed2015-05-19 10:44:25 +01001285 StackHandleScope<2> hs(soa.Self());
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001286 Handle<mirror::DexCache> dex_cache_handle(
1287 hs.NewHandle(mUnit->GetClassLinker()->FindDexCache(*mUnit->GetDexFile())));
1288 Handle<mirror::ClassLoader> class_loader_handle(
1289 hs.NewHandle(soa.Decode<mirror::ClassLoader*>(mUnit->GetClassLoader())));
Mathieu Chartierc7853442015-03-27 14:35:38 -07001290 resolved_field =
1291 ResolveField(soa, dex_cache_handle, class_loader_handle, mUnit, field_idx, false);
1292 referrer_class = resolved_field != nullptr
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001293 ? ResolveCompilingMethodsClass(soa, dex_cache_handle, class_loader_handle, mUnit) : nullptr;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001294 dex_cache = dex_cache_handle.Get();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001295 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001296 bool can_link = false;
Vladimir Markobe0e5462014-02-26 11:24:15 +00001297 if (resolved_field != nullptr && referrer_class != nullptr) {
Vladimir Markobe0e5462014-02-26 11:24:15 +00001298 std::pair<bool, bool> fast_path = IsFastInstanceField(
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001299 dex_cache, referrer_class, resolved_field, field_idx);
1300 can_link = is_put ? fast_path.second : fast_path.first;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001301 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001302 ProcessedInstanceField(can_link);
1303 return can_link ? resolved_field : nullptr;
1304}
1305
1306bool CompilerDriver::ComputeInstanceFieldInfo(uint32_t field_idx, const DexCompilationUnit* mUnit,
1307 bool is_put, MemberOffset* field_offset,
1308 bool* is_volatile) {
1309 ScopedObjectAccess soa(Thread::Current());
Mathieu Chartierc7853442015-03-27 14:35:38 -07001310 ArtField* resolved_field = ComputeInstanceFieldInfo(field_idx, mUnit, is_put, soa);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001311
Mathieu Chartierc7853442015-03-27 14:35:38 -07001312 if (resolved_field == nullptr) {
Vladimir Markobe0e5462014-02-26 11:24:15 +00001313 // Conservative defaults.
1314 *is_volatile = true;
1315 *field_offset = MemberOffset(static_cast<size_t>(-1));
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001316 return false;
1317 } else {
1318 *is_volatile = resolved_field->IsVolatile();
1319 *field_offset = resolved_field->GetOffset();
1320 return true;
Vladimir Markobe0e5462014-02-26 11:24:15 +00001321 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001322}
1323
1324bool CompilerDriver::ComputeStaticFieldInfo(uint32_t field_idx, const DexCompilationUnit* mUnit,
Vladimir Markobe0e5462014-02-26 11:24:15 +00001325 bool is_put, MemberOffset* field_offset,
1326 uint32_t* storage_index, bool* is_referrers_class,
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01001327 bool* is_volatile, bool* is_initialized,
1328 Primitive::Type* type) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001329 ScopedObjectAccess soa(Thread::Current());
Vladimir Markobe0e5462014-02-26 11:24:15 +00001330 // Try to resolve the field and compiling method's class.
Mathieu Chartierc7853442015-03-27 14:35:38 -07001331 ArtField* resolved_field;
Vladimir Markobe0e5462014-02-26 11:24:15 +00001332 mirror::Class* referrer_class;
1333 mirror::DexCache* dex_cache;
1334 {
Mathieu Chartierc7853442015-03-27 14:35:38 -07001335 StackHandleScope<2> hs(soa.Self());
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001336 Handle<mirror::DexCache> dex_cache_handle(
1337 hs.NewHandle(mUnit->GetClassLinker()->FindDexCache(*mUnit->GetDexFile())));
1338 Handle<mirror::ClassLoader> class_loader_handle(
1339 hs.NewHandle(soa.Decode<mirror::ClassLoader*>(mUnit->GetClassLoader())));
Mathieu Chartierc7853442015-03-27 14:35:38 -07001340 resolved_field =
1341 ResolveField(soa, dex_cache_handle, class_loader_handle, mUnit, field_idx, true);
1342 referrer_class = resolved_field != nullptr
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001343 ? ResolveCompilingMethodsClass(soa, dex_cache_handle, class_loader_handle, mUnit) : nullptr;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001344 dex_cache = dex_cache_handle.Get();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001345 }
Vladimir Markobe0e5462014-02-26 11:24:15 +00001346 bool result = false;
1347 if (resolved_field != nullptr && referrer_class != nullptr) {
1348 *is_volatile = IsFieldVolatile(resolved_field);
1349 std::pair<bool, bool> fast_path = IsFastStaticField(
Vladimir Marko66c6d7b2014-10-16 15:41:48 +01001350 dex_cache, referrer_class, resolved_field, field_idx, storage_index);
Vladimir Markobe0e5462014-02-26 11:24:15 +00001351 result = is_put ? fast_path.second : fast_path.first;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001352 }
Vladimir Marko66c6d7b2014-10-16 15:41:48 +01001353 if (result) {
1354 *field_offset = GetFieldOffset(resolved_field);
1355 *is_referrers_class = IsStaticFieldInReferrerClass(referrer_class, resolved_field);
1356 // *is_referrers_class == true implies no worrying about class initialization.
1357 *is_initialized = (*is_referrers_class) ||
1358 (IsStaticFieldsClassInitialized(referrer_class, resolved_field) &&
1359 CanAssumeTypeIsPresentInDexCache(*mUnit->GetDexFile(), *storage_index));
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01001360 *type = resolved_field->GetTypeAsPrimitiveType();
Vladimir Marko66c6d7b2014-10-16 15:41:48 +01001361 } else {
Vladimir Markobe0e5462014-02-26 11:24:15 +00001362 // Conservative defaults.
1363 *is_volatile = true;
1364 *field_offset = MemberOffset(static_cast<size_t>(-1));
1365 *storage_index = -1;
1366 *is_referrers_class = false;
1367 *is_initialized = false;
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01001368 *type = Primitive::kPrimVoid;
Vladimir Markobe0e5462014-02-26 11:24:15 +00001369 }
1370 ProcessedStaticField(result, *is_referrers_class);
1371 return result;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001372}
1373
Ian Rogers83883d72013-10-21 21:07:24 -07001374void CompilerDriver::GetCodeAndMethodForDirectCall(InvokeType* type, InvokeType sharp_type,
1375 bool no_guarantee_of_dex_cache_entry,
Igor Murashkind6dee672014-10-16 18:36:16 -07001376 const mirror::Class* referrer_class,
Mathieu Chartiere401d142015-04-22 13:56:20 -07001377 ArtMethod* method,
Vladimir Markof096aad2014-01-23 15:51:58 +00001378 int* stats_flags,
Ian Rogers83883d72013-10-21 21:07:24 -07001379 MethodReference* target_method,
Ian Rogers65ec92c2013-09-06 10:49:58 -07001380 uintptr_t* direct_code,
1381 uintptr_t* direct_method) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001382 // For direct and static methods compute possible direct_code and direct_method values, ie
1383 // an address for the Method* being invoked and an address of the code for that Method*.
1384 // For interface calls compute a value for direct_method that is the interface method being
1385 // invoked, so this can be passed to the out-of-line runtime support code.
Ian Rogers65ec92c2013-09-06 10:49:58 -07001386 *direct_code = 0;
1387 *direct_method = 0;
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08001388 Runtime* const runtime = Runtime::Current();
1389 gc::Heap* const heap = runtime->GetHeap();
Mathieu Chartiere401d142015-04-22 13:56:20 -07001390 auto* cl = runtime->GetClassLinker();
1391 const auto pointer_size = cl->GetImagePointerSize();
Igor Murashkind6dee672014-10-16 18:36:16 -07001392 bool use_dex_cache = GetCompilerOptions().GetCompilePic(); // Off by default
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08001393 const bool compiling_boot = heap->IsCompilingBoot();
Alex Lighta59dd802014-07-02 16:28:08 -07001394 // TODO This is somewhat hacky. We should refactor all of this invoke codepath.
1395 const bool force_relocations = (compiling_boot ||
1396 GetCompilerOptions().GetIncludePatchInformation());
Elliott Hughes956af0f2014-12-11 14:34:28 -08001397 if (sharp_type != kStatic && sharp_type != kDirect) {
1398 return;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001399 }
Elliott Hughes956af0f2014-12-11 14:34:28 -08001400 // TODO: support patching on all architectures.
1401 use_dex_cache = use_dex_cache || (force_relocations && !support_boot_image_fixup_);
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08001402 mirror::Class* declaring_class = method->GetDeclaringClass();
1403 bool method_code_in_boot = declaring_class->GetClassLoader() == nullptr;
Ian Rogers83883d72013-10-21 21:07:24 -07001404 if (!use_dex_cache) {
1405 if (!method_code_in_boot) {
1406 use_dex_cache = true;
1407 } else {
Brian Carlstrom14247b62015-01-31 21:35:32 -08001408 bool has_clinit_trampoline =
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08001409 method->IsStatic() && !declaring_class->IsInitialized();
1410 if (has_clinit_trampoline && declaring_class != referrer_class) {
Ian Rogers83883d72013-10-21 21:07:24 -07001411 // Ensure we run the clinit trampoline unless we are invoking a static method in the same
1412 // class.
1413 use_dex_cache = true;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001414 }
1415 }
Ian Rogers83883d72013-10-21 21:07:24 -07001416 }
Mathieu Chartier28a35882015-02-26 18:28:07 -08001417 if (runtime->UseJit()) {
1418 // If we are the JIT, then don't allow a direct call to the interpreter bridge since this will
1419 // never be updated even after we compile the method.
Mathieu Chartiere401d142015-04-22 13:56:20 -07001420 if (cl->IsQuickToInterpreterBridge(
Mathieu Chartier28a35882015-02-26 18:28:07 -08001421 reinterpret_cast<const void*>(compiler_->GetEntryPointOf(method)))) {
1422 use_dex_cache = true;
1423 }
1424 }
Vladimir Markof096aad2014-01-23 15:51:58 +00001425 if (method_code_in_boot) {
1426 *stats_flags |= kFlagDirectCallToBoot | kFlagDirectMethodToBoot;
Ian Rogers83883d72013-10-21 21:07:24 -07001427 }
Alex Lighta59dd802014-07-02 16:28:08 -07001428 if (!use_dex_cache && force_relocations) {
Jeff Haoa0acc2d2015-01-27 11:22:04 -08001429 bool is_in_image;
1430 if (IsImage()) {
1431 is_in_image = IsImageClass(method->GetDeclaringClassDescriptor());
1432 } else {
1433 is_in_image = instruction_set_ != kX86 && instruction_set_ != kX86_64 &&
Vladimir Markoc08ab292015-06-22 14:35:42 +01001434 heap->FindSpaceFromObject(method->GetDeclaringClass(), false)->IsImageSpace() &&
1435 !cl->IsQuickToInterpreterBridge(
1436 reinterpret_cast<const void*>(compiler_->GetEntryPointOf(method)));
Jeff Haoa0acc2d2015-01-27 11:22:04 -08001437 }
1438 if (!is_in_image) {
Ian Rogers83883d72013-10-21 21:07:24 -07001439 // We can only branch directly to Methods that are resolved in the DexCache.
1440 // Otherwise we won't invoke the resolution trampoline.
1441 use_dex_cache = true;
1442 }
1443 }
1444 // The method is defined not within this dex file. We need a dex cache slot within the current
1445 // dex file or direct pointers.
1446 bool must_use_direct_pointers = false;
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08001447 mirror::DexCache* dex_cache = declaring_class->GetDexCache();
1448 if (target_method->dex_file == dex_cache->GetDexFile() &&
Mathieu Chartiere401d142015-04-22 13:56:20 -07001449 !(runtime->UseJit() && dex_cache->GetResolvedMethod(
1450 method->GetDexMethodIndex(), pointer_size) == nullptr)) {
Ian Rogers83883d72013-10-21 21:07:24 -07001451 target_method->dex_method_index = method->GetDexMethodIndex();
1452 } else {
Ian Rogers83883d72013-10-21 21:07:24 -07001453 if (no_guarantee_of_dex_cache_entry) {
1454 // See if the method is also declared in this dex cache.
Mathieu Chartiere401d142015-04-22 13:56:20 -07001455 uint32_t dex_method_idx = method->FindDexMethodIndexInOtherDexFile(
1456 *target_method->dex_file, target_method->dex_method_index);
Ian Rogers83883d72013-10-21 21:07:24 -07001457 if (dex_method_idx != DexFile::kDexNoIndex) {
1458 target_method->dex_method_index = dex_method_idx;
1459 } else {
Alex Lighta59dd802014-07-02 16:28:08 -07001460 if (force_relocations && !use_dex_cache) {
Jeff Hao49161ce2014-03-12 11:05:25 -07001461 target_method->dex_method_index = method->GetDexMethodIndex();
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08001462 target_method->dex_file = dex_cache->GetDexFile();
Jeff Hao49161ce2014-03-12 11:05:25 -07001463 }
Ian Rogers83883d72013-10-21 21:07:24 -07001464 must_use_direct_pointers = true;
1465 }
1466 }
1467 }
1468 if (use_dex_cache) {
1469 if (must_use_direct_pointers) {
1470 // Fail. Test above showed the only safe dispatch was via the dex cache, however, the direct
1471 // pointers are required as the dex cache lacks an appropriate entry.
1472 VLOG(compiler) << "Dex cache devirtualization failed for: " << PrettyMethod(method);
1473 } else {
1474 *type = sharp_type;
1475 }
1476 } else {
Mathieu Chartiere401d142015-04-22 13:56:20 -07001477 auto* image_space = heap->GetImageSpace();
1478 bool method_in_image = false;
1479 if (image_space != nullptr) {
1480 const auto& method_section = image_space->GetImageHeader().GetMethodsSection();
1481 method_in_image = method_section.Contains(
1482 reinterpret_cast<uint8_t*>(method) - image_space->Begin());
1483 }
Mathieu Chartier6ced4092015-02-27 16:10:48 -08001484 if (method_in_image || compiling_boot || runtime->UseJit()) {
Alex Lighta59dd802014-07-02 16:28:08 -07001485 // 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 -08001486 // In the case where we are the JIT, we can always use direct pointers since we know where
1487 // the method and its code are / will be. We don't sharpen to interpreter bridge since we
1488 // check IsQuickToInterpreterBridge above.
Vladimir Markoa51a0b02014-05-21 12:08:39 +01001489 CHECK(!method->IsAbstract());
Ian Rogers83883d72013-10-21 21:07:24 -07001490 *type = sharp_type;
Alex Lighta59dd802014-07-02 16:28:08 -07001491 *direct_method = force_relocations ? -1 : reinterpret_cast<uintptr_t>(method);
1492 *direct_code = force_relocations ? -1 : compiler_->GetEntryPointOf(method);
Brian Carlstrom14247b62015-01-31 21:35:32 -08001493 target_method->dex_file = method->GetDeclaringClass()->GetDexCache()->GetDexFile();
Vladimir Markoa51a0b02014-05-21 12:08:39 +01001494 target_method->dex_method_index = method->GetDexMethodIndex();
1495 } else if (!must_use_direct_pointers) {
1496 // Set the code and rely on the dex cache for the method.
1497 *type = sharp_type;
Alex Lighta59dd802014-07-02 16:28:08 -07001498 if (force_relocations) {
1499 *direct_code = -1;
Brian Carlstrom14247b62015-01-31 21:35:32 -08001500 target_method->dex_file = method->GetDeclaringClass()->GetDexCache()->GetDexFile();
Alex Lighta59dd802014-07-02 16:28:08 -07001501 target_method->dex_method_index = method->GetDexMethodIndex();
1502 } else {
1503 *direct_code = compiler_->GetEntryPointOf(method);
1504 }
Ian Rogers83883d72013-10-21 21:07:24 -07001505 } else {
Vladimir Markoa51a0b02014-05-21 12:08:39 +01001506 // Direct pointers were required but none were available.
1507 VLOG(compiler) << "Dex cache devirtualization failed for: " << PrettyMethod(method);
Ian Rogers83883d72013-10-21 21:07:24 -07001508 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001509 }
1510}
1511
1512bool CompilerDriver::ComputeInvokeInfo(const DexCompilationUnit* mUnit, const uint32_t dex_pc,
Ian Rogers65ec92c2013-09-06 10:49:58 -07001513 bool update_stats, bool enable_devirtualization,
1514 InvokeType* invoke_type, MethodReference* target_method,
1515 int* vtable_idx, uintptr_t* direct_code,
1516 uintptr_t* direct_method) {
Vladimir Markof096aad2014-01-23 15:51:58 +00001517 InvokeType orig_invoke_type = *invoke_type;
1518 int stats_flags = 0;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001519 ScopedObjectAccess soa(Thread::Current());
Vladimir Markof096aad2014-01-23 15:51:58 +00001520 // Try to resolve the method and compiling method's class.
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001521 StackHandleScope<3> hs(soa.Self());
1522 Handle<mirror::DexCache> dex_cache(
1523 hs.NewHandle(mUnit->GetClassLinker()->FindDexCache(*mUnit->GetDexFile())));
1524 Handle<mirror::ClassLoader> class_loader(hs.NewHandle(
1525 soa.Decode<mirror::ClassLoader*>(mUnit->GetClassLoader())));
Mathieu Chartiere401d142015-04-22 13:56:20 -07001526 uint32_t method_idx = target_method->dex_method_index;
1527 ArtMethod* resolved_method = ResolveMethod(
1528 soa, dex_cache, class_loader, mUnit, method_idx, orig_invoke_type);
1529 auto h_referrer_class = hs.NewHandle(resolved_method != nullptr ?
1530 ResolveCompilingMethodsClass(soa, dex_cache, class_loader, mUnit) : nullptr);
Vladimir Markof096aad2014-01-23 15:51:58 +00001531 bool result = false;
1532 if (resolved_method != nullptr) {
1533 *vtable_idx = GetResolvedMethodVTableIndex(resolved_method, orig_invoke_type);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001534
Nicolas Geoffraye53798a2014-12-01 10:31:54 +00001535 if (enable_devirtualization && mUnit->GetVerifiedMethod() != nullptr) {
Vladimir Markof096aad2014-01-23 15:51:58 +00001536 const MethodReference* devirt_target = mUnit->GetVerifiedMethod()->GetDevirtTarget(dex_pc);
1537
1538 stats_flags = IsFastInvoke(
Mathieu Chartiere401d142015-04-22 13:56:20 -07001539 soa, dex_cache, class_loader, mUnit, h_referrer_class.Get(), resolved_method,
Vladimir Markof096aad2014-01-23 15:51:58 +00001540 invoke_type, target_method, devirt_target, direct_code, direct_method);
1541 result = stats_flags != 0;
1542 } else {
1543 // Devirtualization not enabled. Inline IsFastInvoke(), dropping the devirtualization parts.
Mathieu Chartiere401d142015-04-22 13:56:20 -07001544 if (UNLIKELY(h_referrer_class.Get() == nullptr) ||
1545 UNLIKELY(!h_referrer_class->CanAccessResolvedMethod(resolved_method->GetDeclaringClass(),
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001546 resolved_method, dex_cache.Get(),
Vladimir Markof096aad2014-01-23 15:51:58 +00001547 target_method->dex_method_index)) ||
1548 *invoke_type == kSuper) {
1549 // Slow path. (Without devirtualization, all super calls go slow path as well.)
1550 } else {
1551 // Sharpening failed so generate a regular resolved method dispatch.
1552 stats_flags = kFlagMethodResolved;
Mathieu Chartiere401d142015-04-22 13:56:20 -07001553 GetCodeAndMethodForDirectCall(
1554 invoke_type, *invoke_type, false, h_referrer_class.Get(), resolved_method, &stats_flags,
1555 target_method, direct_code, direct_method);
Vladimir Markof096aad2014-01-23 15:51:58 +00001556 result = true;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001557 }
1558 }
1559 }
Vladimir Markof096aad2014-01-23 15:51:58 +00001560 if (!result) {
1561 // Conservative defaults.
1562 *vtable_idx = -1;
1563 *direct_code = 0u;
1564 *direct_method = 0u;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001565 }
1566 if (update_stats) {
Vladimir Markof096aad2014-01-23 15:51:58 +00001567 ProcessedInvoke(orig_invoke_type, stats_flags);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001568 }
Vladimir Markof096aad2014-01-23 15:51:58 +00001569 return result;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001570}
1571
Vladimir Marko2730db02014-01-27 11:15:17 +00001572const VerifiedMethod* CompilerDriver::GetVerifiedMethod(const DexFile* dex_file,
1573 uint32_t method_idx) const {
1574 MethodReference ref(dex_file, method_idx);
1575 return verification_results_->GetVerifiedMethod(ref);
1576}
1577
1578bool CompilerDriver::IsSafeCast(const DexCompilationUnit* mUnit, uint32_t dex_pc) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001579 if (!compiler_options_->IsVerificationEnabled()) {
1580 // If we didn't verify, every cast has to be treated as non-safe.
1581 return false;
1582 }
Vladimir Marko2730db02014-01-27 11:15:17 +00001583 DCHECK(mUnit->GetVerifiedMethod() != nullptr);
1584 bool result = mUnit->GetVerifiedMethod()->IsSafeCast(dex_pc);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001585 if (result) {
1586 stats_->SafeCast();
1587 } else {
1588 stats_->NotASafeCast();
1589 }
1590 return result;
1591}
1592
Mathieu Chartier90443472015-07-16 20:32:27 -07001593class CompilationVisitor {
1594 public:
1595 virtual ~CompilationVisitor() {}
1596 virtual void Visit(size_t index) = 0;
1597};
1598
Brian Carlstrom7940e442013-07-12 13:46:57 -07001599class ParallelCompilationManager {
1600 public:
Brian Carlstrom7940e442013-07-12 13:46:57 -07001601 ParallelCompilationManager(ClassLinker* class_linker,
1602 jobject class_loader,
1603 CompilerDriver* compiler,
1604 const DexFile* dex_file,
Andreas Gampede7b4362014-07-28 18:38:57 -07001605 const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -08001606 ThreadPool* thread_pool)
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001607 : index_(0),
1608 class_linker_(class_linker),
Brian Carlstrom7940e442013-07-12 13:46:57 -07001609 class_loader_(class_loader),
1610 compiler_(compiler),
1611 dex_file_(dex_file),
Andreas Gampede7b4362014-07-28 18:38:57 -07001612 dex_files_(dex_files),
Ian Rogers3d504072014-03-01 09:16:49 -08001613 thread_pool_(thread_pool) {}
Brian Carlstrom7940e442013-07-12 13:46:57 -07001614
1615 ClassLinker* GetClassLinker() const {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001616 CHECK(class_linker_ != nullptr);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001617 return class_linker_;
1618 }
1619
1620 jobject GetClassLoader() const {
1621 return class_loader_;
1622 }
1623
1624 CompilerDriver* GetCompiler() const {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001625 CHECK(compiler_ != nullptr);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001626 return compiler_;
1627 }
1628
1629 const DexFile* GetDexFile() const {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001630 CHECK(dex_file_ != nullptr);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001631 return dex_file_;
1632 }
1633
Andreas Gampede7b4362014-07-28 18:38:57 -07001634 const std::vector<const DexFile*>& GetDexFiles() const {
1635 return dex_files_;
1636 }
1637
Mathieu Chartier90443472015-07-16 20:32:27 -07001638 void ForAll(size_t begin, size_t end, CompilationVisitor* visitor, size_t work_units)
1639 REQUIRES(!*Locks::mutator_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001640 Thread* self = Thread::Current();
1641 self->AssertNoPendingException();
1642 CHECK_GT(work_units, 0U);
1643
Ian Rogers3e5cf302014-05-20 16:40:37 -07001644 index_.StoreRelaxed(begin);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001645 for (size_t i = 0; i < work_units; ++i) {
Mathieu Chartier90443472015-07-16 20:32:27 -07001646 thread_pool_->AddTask(self, new ForAllClosure(this, end, visitor));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001647 }
1648 thread_pool_->StartWorkers(self);
1649
1650 // Ensure we're suspended while we're blocked waiting for the other threads to finish (worker
1651 // thread destructor's called below perform join).
1652 CHECK_NE(self->GetState(), kRunnable);
1653
1654 // Wait for all the worker threads to finish.
1655 thread_pool_->Wait(self, true, false);
1656 }
1657
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001658 size_t NextIndex() {
Ian Rogers3e5cf302014-05-20 16:40:37 -07001659 return index_.FetchAndAddSequentiallyConsistent(1);
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001660 }
1661
Brian Carlstrom7940e442013-07-12 13:46:57 -07001662 private:
Brian Carlstrom7940e442013-07-12 13:46:57 -07001663 class ForAllClosure : public Task {
1664 public:
Mathieu Chartier90443472015-07-16 20:32:27 -07001665 ForAllClosure(ParallelCompilationManager* manager, size_t end, CompilationVisitor* visitor)
Brian Carlstrom7940e442013-07-12 13:46:57 -07001666 : manager_(manager),
Brian Carlstrom7940e442013-07-12 13:46:57 -07001667 end_(end),
Mathieu Chartier90443472015-07-16 20:32:27 -07001668 visitor_(visitor) {}
Brian Carlstrom7940e442013-07-12 13:46:57 -07001669
1670 virtual void Run(Thread* self) {
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001671 while (true) {
1672 const size_t index = manager_->NextIndex();
1673 if (UNLIKELY(index >= end_)) {
1674 break;
1675 }
Mathieu Chartier90443472015-07-16 20:32:27 -07001676 visitor_->Visit(index);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001677 self->AssertNoPendingException();
1678 }
1679 }
1680
1681 virtual void Finalize() {
1682 delete this;
1683 }
Brian Carlstrom0cd7ec22013-07-17 23:40:20 -07001684
Brian Carlstrom7940e442013-07-12 13:46:57 -07001685 private:
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001686 ParallelCompilationManager* const manager_;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001687 const size_t end_;
Mathieu Chartier90443472015-07-16 20:32:27 -07001688 CompilationVisitor* const visitor_;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001689 };
1690
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001691 AtomicInteger index_;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001692 ClassLinker* const class_linker_;
1693 const jobject class_loader_;
1694 CompilerDriver* const compiler_;
1695 const DexFile* const dex_file_;
Andreas Gampede7b4362014-07-28 18:38:57 -07001696 const std::vector<const DexFile*>& dex_files_;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001697 ThreadPool* const thread_pool_;
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001698
1699 DISALLOW_COPY_AND_ASSIGN(ParallelCompilationManager);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001700};
1701
Jeff Hao0e49b422013-11-08 12:16:56 -08001702// A fast version of SkipClass above if the class pointer is available
1703// that avoids the expensive FindInClassPath search.
1704static bool SkipClass(jobject class_loader, const DexFile& dex_file, mirror::Class* klass)
Mathieu Chartier90443472015-07-16 20:32:27 -07001705 SHARED_REQUIRES(Locks::mutator_lock_) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001706 DCHECK(klass != nullptr);
Jeff Hao0e49b422013-11-08 12:16:56 -08001707 const DexFile& original_dex_file = *klass->GetDexCache()->GetDexFile();
1708 if (&dex_file != &original_dex_file) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001709 if (class_loader == nullptr) {
Jeff Hao0e49b422013-11-08 12:16:56 -08001710 LOG(WARNING) << "Skipping class " << PrettyDescriptor(klass) << " from "
1711 << dex_file.GetLocation() << " previously found in "
1712 << original_dex_file.GetLocation();
1713 }
1714 return true;
1715 }
1716 return false;
1717}
1718
Mathieu Chartier70b63482014-06-27 17:19:04 -07001719static void CheckAndClearResolveException(Thread* self)
Mathieu Chartier90443472015-07-16 20:32:27 -07001720 SHARED_REQUIRES(Locks::mutator_lock_) {
Mathieu Chartier70b63482014-06-27 17:19:04 -07001721 CHECK(self->IsExceptionPending());
Nicolas Geoffray14691c52015-03-05 10:40:17 +00001722 mirror::Throwable* exception = self->GetException();
Ian Rogers1ff3c982014-08-12 02:30:58 -07001723 std::string temp;
1724 const char* descriptor = exception->GetClass()->GetDescriptor(&temp);
1725 const char* expected_exceptions[] = {
1726 "Ljava/lang/IllegalAccessError;",
1727 "Ljava/lang/IncompatibleClassChangeError;",
1728 "Ljava/lang/InstantiationError;",
Brian Carlstrom898fcb52014-08-25 23:07:30 -07001729 "Ljava/lang/LinkageError;",
Ian Rogers1ff3c982014-08-12 02:30:58 -07001730 "Ljava/lang/NoClassDefFoundError;",
1731 "Ljava/lang/NoSuchFieldError;",
1732 "Ljava/lang/NoSuchMethodError;"
1733 };
1734 bool found = false;
1735 for (size_t i = 0; (found == false) && (i < arraysize(expected_exceptions)); ++i) {
1736 if (strcmp(descriptor, expected_exceptions[i]) == 0) {
1737 found = true;
1738 }
1739 }
1740 if (!found) {
Brian Carlstrom898fcb52014-08-25 23:07:30 -07001741 LOG(FATAL) << "Unexpected exception " << exception->Dump();
Mathieu Chartier70b63482014-06-27 17:19:04 -07001742 }
1743 self->ClearException();
1744}
1745
Mathieu Chartier90443472015-07-16 20:32:27 -07001746class ResolveClassFieldsAndMethodsVisitor : public CompilationVisitor {
1747 public:
1748 explicit ResolveClassFieldsAndMethodsVisitor(const ParallelCompilationManager* manager)
1749 : manager_(manager) {}
Brian Carlstrom7940e442013-07-12 13:46:57 -07001750
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001751 void Visit(size_t class_def_index) OVERRIDE REQUIRES(!Locks::mutator_lock_) {
Mathieu Chartier90443472015-07-16 20:32:27 -07001752 ATRACE_CALL();
1753 Thread* const self = Thread::Current();
1754 jobject jclass_loader = manager_->GetClassLoader();
1755 const DexFile& dex_file = *manager_->GetDexFile();
1756 ClassLinker* class_linker = manager_->GetClassLinker();
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001757
Mathieu Chartier90443472015-07-16 20:32:27 -07001758 // If an instance field is final then we need to have a barrier on the return, static final
1759 // fields are assigned within the lock held for class initialization. Conservatively assume
1760 // constructor barriers are always required.
1761 bool requires_constructor_barrier = true;
1762
1763 // Method and Field are the worst. We can't resolve without either
1764 // context from the code use (to disambiguate virtual vs direct
1765 // method and instance vs static field) or from class
1766 // definitions. While the compiler will resolve what it can as it
1767 // needs it, here we try to resolve fields and methods used in class
1768 // definitions, since many of them many never be referenced by
1769 // generated code.
1770 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
1771 ScopedObjectAccess soa(self);
1772 StackHandleScope<2> hs(soa.Self());
1773 Handle<mirror::ClassLoader> class_loader(
1774 hs.NewHandle(soa.Decode<mirror::ClassLoader*>(jclass_loader)));
1775 Handle<mirror::DexCache> dex_cache(hs.NewHandle(class_linker->FindDexCache(dex_file)));
1776 // Resolve the class.
1777 mirror::Class* klass = class_linker->ResolveType(dex_file, class_def.class_idx_, dex_cache,
1778 class_loader);
1779 bool resolve_fields_and_methods;
1780 if (klass == nullptr) {
1781 // Class couldn't be resolved, for example, super-class is in a different dex file. Don't
1782 // attempt to resolve methods and fields when there is no declaring class.
1783 CheckAndClearResolveException(soa.Self());
1784 resolve_fields_and_methods = false;
1785 } else {
1786 // We successfully resolved a class, should we skip it?
1787 if (SkipClass(jclass_loader, dex_file, klass)) {
1788 return;
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001789 }
Mathieu Chartier90443472015-07-16 20:32:27 -07001790 // We want to resolve the methods and fields eagerly.
1791 resolve_fields_and_methods = true;
Ian Rogers68b56852014-08-29 20:19:11 -07001792 }
Mathieu Chartier90443472015-07-16 20:32:27 -07001793 // Note the class_data pointer advances through the headers,
1794 // static fields, instance fields, direct methods, and virtual
1795 // methods.
1796 const uint8_t* class_data = dex_file.GetClassData(class_def);
1797 if (class_data == nullptr) {
1798 // Empty class such as a marker interface.
1799 requires_constructor_barrier = false;
1800 } else {
1801 ClassDataItemIterator it(dex_file, class_data);
1802 while (it.HasNextStaticField()) {
1803 if (resolve_fields_and_methods) {
1804 ArtField* field = class_linker->ResolveField(dex_file, it.GetMemberIndex(),
1805 dex_cache, class_loader, true);
1806 if (field == nullptr) {
1807 CheckAndClearResolveException(soa.Self());
1808 }
Ian Rogers68b56852014-08-29 20:19:11 -07001809 }
1810 it.Next();
1811 }
Mathieu Chartier90443472015-07-16 20:32:27 -07001812 // We require a constructor barrier if there are final instance fields.
1813 requires_constructor_barrier = false;
1814 while (it.HasNextInstanceField()) {
1815 if (it.MemberIsFinal()) {
1816 requires_constructor_barrier = true;
1817 }
1818 if (resolve_fields_and_methods) {
1819 ArtField* field = class_linker->ResolveField(dex_file, it.GetMemberIndex(),
1820 dex_cache, class_loader, false);
1821 if (field == nullptr) {
1822 CheckAndClearResolveException(soa.Self());
1823 }
Ian Rogers68b56852014-08-29 20:19:11 -07001824 }
1825 it.Next();
1826 }
Mathieu Chartier90443472015-07-16 20:32:27 -07001827 if (resolve_fields_and_methods) {
1828 while (it.HasNextDirectMethod()) {
1829 ArtMethod* method = class_linker->ResolveMethod(
1830 dex_file, it.GetMemberIndex(), dex_cache, class_loader, nullptr,
1831 it.GetMethodInvokeType(class_def));
1832 if (method == nullptr) {
1833 CheckAndClearResolveException(soa.Self());
1834 }
1835 it.Next();
1836 }
1837 while (it.HasNextVirtualMethod()) {
1838 ArtMethod* method = class_linker->ResolveMethod(
1839 dex_file, it.GetMemberIndex(), dex_cache, class_loader, nullptr,
1840 it.GetMethodInvokeType(class_def));
1841 if (method == nullptr) {
1842 CheckAndClearResolveException(soa.Self());
1843 }
1844 it.Next();
1845 }
1846 DCHECK(!it.HasNext());
1847 }
1848 }
1849 if (requires_constructor_barrier) {
1850 manager_->GetCompiler()->AddRequiresConstructorBarrier(self, &dex_file, class_def_index);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001851 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001852 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001853
Mathieu Chartier90443472015-07-16 20:32:27 -07001854 private:
1855 const ParallelCompilationManager* const manager_;
1856};
1857
1858class ResolveTypeVisitor : public CompilationVisitor {
1859 public:
1860 explicit ResolveTypeVisitor(const ParallelCompilationManager* manager) : manager_(manager) {
1861 }
1862 virtual void Visit(size_t type_idx) OVERRIDE REQUIRES(!Locks::mutator_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001863 // Class derived values are more complicated, they require the linker and loader.
Mathieu Chartier90443472015-07-16 20:32:27 -07001864 ScopedObjectAccess soa(Thread::Current());
1865 ClassLinker* class_linker = manager_->GetClassLinker();
1866 const DexFile& dex_file = *manager_->GetDexFile();
1867 StackHandleScope<2> hs(soa.Self());
1868 Handle<mirror::DexCache> dex_cache(hs.NewHandle(class_linker->FindDexCache(dex_file)));
1869 Handle<mirror::ClassLoader> class_loader(
1870 hs.NewHandle(soa.Decode<mirror::ClassLoader*>(manager_->GetClassLoader())));
1871 mirror::Class* klass = class_linker->ResolveType(dex_file, type_idx, dex_cache, class_loader);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001872
Mathieu Chartier90443472015-07-16 20:32:27 -07001873 if (klass == nullptr) {
1874 soa.Self()->AssertPendingException();
1875 mirror::Throwable* exception = soa.Self()->GetException();
1876 VLOG(compiler) << "Exception during type resolution: " << exception->Dump();
1877 if (exception->GetClass()->DescriptorEquals("Ljava/lang/OutOfMemoryError;")) {
1878 // There's little point continuing compilation if the heap is exhausted.
1879 LOG(FATAL) << "Out of memory during type resolution for compilation";
1880 }
1881 soa.Self()->ClearException();
Ian Rogersa436fde2013-08-27 23:34:06 -07001882 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001883 }
Mathieu Chartier90443472015-07-16 20:32:27 -07001884
1885 private:
1886 const ParallelCompilationManager* const manager_;
1887};
Brian Carlstrom7940e442013-07-12 13:46:57 -07001888
1889void CompilerDriver::ResolveDexFile(jobject class_loader, const DexFile& dex_file,
Andreas Gampede7b4362014-07-28 18:38:57 -07001890 const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -08001891 ThreadPool* thread_pool, TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001892 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
1893
1894 // TODO: we could resolve strings here, although the string table is largely filled with class
1895 // and method names.
1896
Andreas Gampede7b4362014-07-28 18:38:57 -07001897 ParallelCompilationManager context(class_linker, class_loader, this, &dex_file, dex_files,
1898 thread_pool);
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001899 if (IsImage()) {
1900 // For images we resolve all types, such as array, whereas for applications just those with
1901 // classdefs are resolved by ResolveClassFieldsAndMethods.
Mathieu Chartierf5997b42014-06-20 10:37:54 -07001902 TimingLogger::ScopedTiming t("Resolve Types", timings);
Mathieu Chartier90443472015-07-16 20:32:27 -07001903 ResolveTypeVisitor visitor(&context);
1904 context.ForAll(0, dex_file.NumTypeIds(), &visitor, thread_count_);
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001905 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001906
Mathieu Chartierf5997b42014-06-20 10:37:54 -07001907 TimingLogger::ScopedTiming t("Resolve MethodsAndFields", timings);
Mathieu Chartier90443472015-07-16 20:32:27 -07001908 ResolveClassFieldsAndMethodsVisitor visitor(&context);
1909 context.ForAll(0, dex_file.NumClassDefs(), &visitor, thread_count_);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001910}
1911
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001912void CompilerDriver::SetVerified(jobject class_loader, const std::vector<const DexFile*>& dex_files,
1913 ThreadPool* thread_pool, TimingLogger* timings) {
Mathieu Chartier90443472015-07-16 20:32:27 -07001914 for (const DexFile* dex_file : dex_files) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001915 CHECK(dex_file != nullptr);
1916 SetVerifiedDexFile(class_loader, *dex_file, dex_files, thread_pool, timings);
1917 }
1918}
1919
Brian Carlstrom7940e442013-07-12 13:46:57 -07001920void CompilerDriver::Verify(jobject class_loader, const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -08001921 ThreadPool* thread_pool, TimingLogger* timings) {
Mathieu Chartier90443472015-07-16 20:32:27 -07001922 for (const DexFile* dex_file : dex_files) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001923 CHECK(dex_file != nullptr);
Andreas Gampede7b4362014-07-28 18:38:57 -07001924 VerifyDexFile(class_loader, *dex_file, dex_files, thread_pool, timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001925 }
1926}
1927
Mathieu Chartier90443472015-07-16 20:32:27 -07001928class VerifyClassVisitor : public CompilationVisitor {
1929 public:
1930 explicit VerifyClassVisitor(const ParallelCompilationManager* manager) : manager_(manager) {}
Brian Carlstrom7940e442013-07-12 13:46:57 -07001931
Mathieu Chartier90443472015-07-16 20:32:27 -07001932 virtual void Visit(size_t class_def_index) REQUIRES(!Locks::mutator_lock_) OVERRIDE {
1933 ATRACE_CALL();
1934 ScopedObjectAccess soa(Thread::Current());
1935 const DexFile& dex_file = *manager_->GetDexFile();
1936 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
1937 const char* descriptor = dex_file.GetClassDescriptor(class_def);
1938 ClassLinker* class_linker = manager_->GetClassLinker();
1939 jobject jclass_loader = manager_->GetClassLoader();
1940 StackHandleScope<3> hs(soa.Self());
1941 Handle<mirror::ClassLoader> class_loader(
1942 hs.NewHandle(soa.Decode<mirror::ClassLoader*>(jclass_loader)));
1943 Handle<mirror::Class> klass(
1944 hs.NewHandle(class_linker->FindClass(soa.Self(), descriptor, class_loader)));
1945 if (klass.Get() == nullptr) {
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001946 CHECK(soa.Self()->IsExceptionPending());
1947 soa.Self()->ClearException();
Mathieu Chartier90443472015-07-16 20:32:27 -07001948
1949 /*
1950 * At compile time, we can still structurally verify the class even if FindClass fails.
1951 * This is to ensure the class is structurally sound for compilation. An unsound class
1952 * will be rejected by the verifier and later skipped during compilation in the compiler.
1953 */
1954 Handle<mirror::DexCache> dex_cache(hs.NewHandle(class_linker->FindDexCache(dex_file)));
1955 std::string error_msg;
1956 if (verifier::MethodVerifier::VerifyClass(soa.Self(), &dex_file, dex_cache, class_loader,
1957 &class_def, true, &error_msg) ==
1958 verifier::MethodVerifier::kHardFailure) {
1959 LOG(ERROR) << "Verification failed on class " << PrettyDescriptor(descriptor)
1960 << " because: " << error_msg;
1961 manager_->GetCompiler()->SetHadHardVerifierFailure();
1962 }
1963 } else if (!SkipClass(jclass_loader, dex_file, klass.Get())) {
1964 CHECK(klass->IsResolved()) << PrettyClass(klass.Get());
1965 class_linker->VerifyClass(soa.Self(), klass);
1966
1967 if (klass->IsErroneous()) {
1968 // ClassLinker::VerifyClass throws, which isn't useful in the compiler.
1969 CHECK(soa.Self()->IsExceptionPending());
1970 soa.Self()->ClearException();
1971 manager_->GetCompiler()->SetHadHardVerifierFailure();
1972 }
1973
1974 CHECK(klass->IsCompileTimeVerified() || klass->IsErroneous())
1975 << PrettyDescriptor(klass.Get()) << ": state=" << klass->GetStatus();
1976
1977 // It is *very* problematic if there are verification errors in the boot classpath. For example,
1978 // we rely on things working OK without verification when the decryption dialog is brought up.
1979 // So abort in a debug build if we find this violated.
1980 DCHECK(!manager_->GetCompiler()->IsImage() || klass->IsVerified()) << "Boot classpath class "
1981 << PrettyClass(klass.Get()) << " failed to fully verify.";
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001982 }
Mathieu Chartier90443472015-07-16 20:32:27 -07001983 soa.Self()->AssertNoPendingException();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001984 }
Mathieu Chartier90443472015-07-16 20:32:27 -07001985
1986 private:
1987 const ParallelCompilationManager* const manager_;
1988};
Brian Carlstrom7940e442013-07-12 13:46:57 -07001989
1990void CompilerDriver::VerifyDexFile(jobject class_loader, const DexFile& dex_file,
Andreas Gampede7b4362014-07-28 18:38:57 -07001991 const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -08001992 ThreadPool* thread_pool, TimingLogger* timings) {
Mathieu Chartierf5997b42014-06-20 10:37:54 -07001993 TimingLogger::ScopedTiming t("Verify Dex File", timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001994 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Andreas Gampede7b4362014-07-28 18:38:57 -07001995 ParallelCompilationManager context(class_linker, class_loader, this, &dex_file, dex_files,
1996 thread_pool);
Mathieu Chartier90443472015-07-16 20:32:27 -07001997 VerifyClassVisitor visitor(&context);
1998 context.ForAll(0, dex_file.NumClassDefs(), &visitor, thread_count_);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001999}
2000
Mathieu Chartier90443472015-07-16 20:32:27 -07002001class SetVerifiedClassVisitor : public CompilationVisitor {
2002 public:
2003 explicit SetVerifiedClassVisitor(const ParallelCompilationManager* manager) : manager_(manager) {}
2004
2005 virtual void Visit(size_t class_def_index) REQUIRES(!Locks::mutator_lock_) OVERRIDE {
2006 ATRACE_CALL();
2007 ScopedObjectAccess soa(Thread::Current());
2008 const DexFile& dex_file = *manager_->GetDexFile();
2009 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
2010 const char* descriptor = dex_file.GetClassDescriptor(class_def);
2011 ClassLinker* class_linker = manager_->GetClassLinker();
2012 jobject jclass_loader = manager_->GetClassLoader();
2013 StackHandleScope<3> hs(soa.Self());
2014 Handle<mirror::ClassLoader> class_loader(
2015 hs.NewHandle(soa.Decode<mirror::ClassLoader*>(jclass_loader)));
2016 Handle<mirror::Class> klass(
2017 hs.NewHandle(class_linker->FindClass(soa.Self(), descriptor, class_loader)));
2018 // Class might have failed resolution. Then don't set it to verified.
2019 if (klass.Get() != nullptr) {
2020 // Only do this if the class is resolved. If even resolution fails, quickening will go very,
2021 // very wrong.
2022 if (klass->IsResolved()) {
2023 if (klass->GetStatus() < mirror::Class::kStatusVerified) {
2024 ObjectLock<mirror::Class> lock(soa.Self(), klass);
2025 // Set class status to verified.
2026 mirror::Class::SetStatus(klass, mirror::Class::kStatusVerified, soa.Self());
2027 // Mark methods as pre-verified. If we don't do this, the interpreter will run with
2028 // access checks.
2029 klass->SetPreverifiedFlagOnAllMethods(
2030 GetInstructionSetPointerSize(manager_->GetCompiler()->GetInstructionSet()));
2031 klass->SetPreverified();
2032 }
2033 // Record the final class status if necessary.
2034 ClassReference ref(manager_->GetDexFile(), class_def_index);
2035 manager_->GetCompiler()->RecordClassStatus(ref, klass->GetStatus());
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002036 }
Mathieu Chartier90443472015-07-16 20:32:27 -07002037 } else {
2038 Thread* self = soa.Self();
2039 DCHECK(self->IsExceptionPending());
2040 self->ClearException();
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002041 }
2042 }
Mathieu Chartier90443472015-07-16 20:32:27 -07002043
2044 private:
2045 const ParallelCompilationManager* const manager_;
2046};
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002047
2048void CompilerDriver::SetVerifiedDexFile(jobject class_loader, const DexFile& dex_file,
2049 const std::vector<const DexFile*>& dex_files,
2050 ThreadPool* thread_pool, TimingLogger* timings) {
2051 TimingLogger::ScopedTiming t("Verify Dex File", timings);
2052 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
2053 ParallelCompilationManager context(class_linker, class_loader, this, &dex_file, dex_files,
2054 thread_pool);
Mathieu Chartier90443472015-07-16 20:32:27 -07002055 SetVerifiedClassVisitor visitor(&context);
2056 context.ForAll(0, dex_file.NumClassDefs(), &visitor, thread_count_);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002057}
2058
Mathieu Chartier90443472015-07-16 20:32:27 -07002059class InitializeClassVisitor : public CompilationVisitor {
2060 public:
2061 explicit InitializeClassVisitor(const ParallelCompilationManager* manager) : manager_(manager) {}
Ian Rogersfc0e94b2013-09-23 23:51:32 -07002062
Mathieu Chartier90443472015-07-16 20:32:27 -07002063 virtual void Visit(size_t class_def_index) REQUIRES(!Locks::mutator_lock_) OVERRIDE {
2064 ATRACE_CALL();
2065 jobject jclass_loader = manager_->GetClassLoader();
2066 const DexFile& dex_file = *manager_->GetDexFile();
2067 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
2068 const DexFile::TypeId& class_type_id = dex_file.GetTypeId(class_def.class_idx_);
2069 const char* descriptor = dex_file.StringDataByIdx(class_type_id.descriptor_idx_);
Jeff Hao0e49b422013-11-08 12:16:56 -08002070
Mathieu Chartier90443472015-07-16 20:32:27 -07002071 ScopedObjectAccess soa(Thread::Current());
2072 StackHandleScope<3> hs(soa.Self());
2073 Handle<mirror::ClassLoader> class_loader(
2074 hs.NewHandle(soa.Decode<mirror::ClassLoader*>(jclass_loader)));
2075 Handle<mirror::Class> klass(
2076 hs.NewHandle(manager_->GetClassLinker()->FindClass(soa.Self(), descriptor, class_loader)));
2077
2078 if (klass.Get() != nullptr && !SkipClass(jclass_loader, dex_file, klass.Get())) {
2079 // Only try to initialize classes that were successfully verified.
2080 if (klass->IsVerified()) {
2081 // Attempt to initialize the class but bail if we either need to initialize the super-class
2082 // or static fields.
2083 manager_->GetClassLinker()->EnsureInitialized(soa.Self(), klass, false, false);
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07002084 if (!klass->IsInitialized()) {
Mathieu Chartier90443472015-07-16 20:32:27 -07002085 // We don't want non-trivial class initialization occurring on multiple threads due to
2086 // deadlock problems. For example, a parent class is initialized (holding its lock) that
2087 // refers to a sub-class in its static/class initializer causing it to try to acquire the
2088 // sub-class' lock. While on a second thread the sub-class is initialized (holding its lock)
2089 // after first initializing its parents, whose locks are acquired. This leads to a
2090 // parent-to-child and a child-to-parent lock ordering and consequent potential deadlock.
2091 // We need to use an ObjectLock due to potential suspension in the interpreting code. Rather
2092 // than use a special Object for the purpose we use the Class of java.lang.Class.
2093 Handle<mirror::Class> h_klass(hs.NewHandle(klass->GetClass()));
2094 ObjectLock<mirror::Class> lock(soa.Self(), h_klass);
2095 // Attempt to initialize allowing initialization of parent classes but still not static
2096 // fields.
2097 manager_->GetClassLinker()->EnsureInitialized(soa.Self(), klass, false, true);
2098 if (!klass->IsInitialized()) {
2099 // We need to initialize static fields, we only do this for image classes that aren't
2100 // marked with the $NoPreloadHolder (which implies this should not be initialized early).
2101 bool can_init_static_fields = manager_->GetCompiler()->IsImage() &&
2102 manager_->GetCompiler()->IsImageClass(descriptor) &&
2103 !StringPiece(descriptor).ends_with("$NoPreloadHolder;");
2104 if (can_init_static_fields) {
2105 VLOG(compiler) << "Initializing: " << descriptor;
2106 // TODO multithreading support. We should ensure the current compilation thread has
2107 // exclusive access to the runtime and the transaction. To achieve this, we could use
2108 // a ReaderWriterMutex but we're holding the mutator lock so we fail mutex sanity
2109 // checks in Thread::AssertThreadSuspensionIsAllowable.
2110 Runtime* const runtime = Runtime::Current();
2111 Transaction transaction;
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01002112
Mathieu Chartier90443472015-07-16 20:32:27 -07002113 // Run the class initializer in transaction mode.
2114 runtime->EnterTransactionMode(&transaction);
2115 const mirror::Class::Status old_status = klass->GetStatus();
2116 bool success = manager_->GetClassLinker()->EnsureInitialized(soa.Self(), klass, true,
2117 true);
2118 // TODO we detach transaction from runtime to indicate we quit the transactional
2119 // mode which prevents the GC from visiting objects modified during the transaction.
2120 // Ensure GC is not run so don't access freed objects when aborting transaction.
Mathieu Chartier2d5f39e2014-09-19 17:52:37 -07002121
Mathieu Chartier90443472015-07-16 20:32:27 -07002122 ScopedAssertNoThreadSuspension ants(soa.Self(), "Transaction end");
2123 runtime->ExitTransactionMode();
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01002124
Mathieu Chartier90443472015-07-16 20:32:27 -07002125 if (!success) {
2126 CHECK(soa.Self()->IsExceptionPending());
2127 mirror::Throwable* exception = soa.Self()->GetException();
2128 VLOG(compiler) << "Initialization of " << descriptor << " aborted because of "
2129 << exception->Dump();
2130 std::ostream* file_log = manager_->GetCompiler()->
2131 GetCompilerOptions().GetInitFailureOutput();
2132 if (file_log != nullptr) {
2133 *file_log << descriptor << "\n";
2134 *file_log << exception->Dump() << "\n";
2135 }
2136 soa.Self()->ClearException();
2137 transaction.Rollback();
2138 CHECK_EQ(old_status, klass->GetStatus()) << "Previous class status not restored";
Andreas Gampedbfe2542014-11-25 22:21:42 -08002139 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002140 }
2141 }
Mathieu Chartier90443472015-07-16 20:32:27 -07002142 soa.Self()->AssertNoPendingException();
Brian Carlstrom7940e442013-07-12 13:46:57 -07002143 }
2144 }
Mathieu Chartier90443472015-07-16 20:32:27 -07002145 // Record the final class status if necessary.
2146 ClassReference ref(manager_->GetDexFile(), class_def_index);
2147 manager_->GetCompiler()->RecordClassStatus(ref, klass->GetStatus());
Brian Carlstrom7940e442013-07-12 13:46:57 -07002148 }
Mathieu Chartier90443472015-07-16 20:32:27 -07002149 // Clear any class not found or verification exceptions.
2150 soa.Self()->ClearException();
Brian Carlstrom7940e442013-07-12 13:46:57 -07002151 }
Mathieu Chartier90443472015-07-16 20:32:27 -07002152
2153 private:
2154 const ParallelCompilationManager* const manager_;
2155};
Brian Carlstrom7940e442013-07-12 13:46:57 -07002156
2157void CompilerDriver::InitializeClasses(jobject jni_class_loader, const DexFile& dex_file,
Andreas Gampede7b4362014-07-28 18:38:57 -07002158 const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -08002159 ThreadPool* thread_pool, TimingLogger* timings) {
Mathieu Chartierf5997b42014-06-20 10:37:54 -07002160 TimingLogger::ScopedTiming t("InitializeNoClinit", timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002161 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Andreas Gampede7b4362014-07-28 18:38:57 -07002162 ParallelCompilationManager context(class_linker, jni_class_loader, this, &dex_file, dex_files,
2163 thread_pool);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01002164 size_t thread_count;
2165 if (IsImage()) {
2166 // TODO: remove this when transactional mode supports multithreading.
2167 thread_count = 1U;
2168 } else {
2169 thread_count = thread_count_;
2170 }
Mathieu Chartier90443472015-07-16 20:32:27 -07002171 InitializeClassVisitor visitor(&context);
2172 context.ForAll(0, dex_file.NumClassDefs(), &visitor, thread_count);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002173}
2174
2175void CompilerDriver::InitializeClasses(jobject class_loader,
2176 const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -08002177 ThreadPool* thread_pool, TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07002178 for (size_t i = 0; i != dex_files.size(); ++i) {
2179 const DexFile* dex_file = dex_files[i];
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002180 CHECK(dex_file != nullptr);
Andreas Gampede7b4362014-07-28 18:38:57 -07002181 InitializeClasses(class_loader, *dex_file, dex_files, thread_pool, timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002182 }
Mathieu Chartier093ef212014-08-11 13:52:12 -07002183 if (IsImage()) {
2184 // Prune garbage objects created during aborted transactions.
2185 Runtime::Current()->GetHeap()->CollectGarbage(true);
2186 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002187}
2188
2189void CompilerDriver::Compile(jobject class_loader, const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -08002190 ThreadPool* thread_pool, TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07002191 for (size_t i = 0; i != dex_files.size(); ++i) {
2192 const DexFile* dex_file = dex_files[i];
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002193 CHECK(dex_file != nullptr);
Andreas Gampede7b4362014-07-28 18:38:57 -07002194 CompileDexFile(class_loader, *dex_file, dex_files, thread_pool, timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002195 }
Andreas Gampe8d295f82015-01-20 14:50:21 -08002196 VLOG(compiler) << "Compile: " << GetMemoryUsageString(false);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002197}
2198
Mathieu Chartier90443472015-07-16 20:32:27 -07002199class CompileClassVisitor : public CompilationVisitor {
2200 public:
2201 explicit CompileClassVisitor(const ParallelCompilationManager* manager) : manager_(manager) {}
2202
2203 virtual void Visit(size_t class_def_index) REQUIRES(!Locks::mutator_lock_) OVERRIDE {
2204 ATRACE_CALL();
2205 const DexFile& dex_file = *manager_->GetDexFile();
2206 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
2207 ClassLinker* class_linker = manager_->GetClassLinker();
2208 jobject jclass_loader = manager_->GetClassLoader();
2209 Thread* self = Thread::Current();
2210 {
2211 // Use a scoped object access to perform to the quick SkipClass check.
2212 const char* descriptor = dex_file.GetClassDescriptor(class_def);
2213 ScopedObjectAccess soa(self);
2214 StackHandleScope<3> hs(soa.Self());
2215 Handle<mirror::ClassLoader> class_loader(
2216 hs.NewHandle(soa.Decode<mirror::ClassLoader*>(jclass_loader)));
2217 Handle<mirror::Class> klass(
2218 hs.NewHandle(class_linker->FindClass(soa.Self(), descriptor, class_loader)));
2219 if (klass.Get() == nullptr) {
2220 CHECK(soa.Self()->IsExceptionPending());
2221 soa.Self()->ClearException();
2222 } else if (SkipClass(jclass_loader, dex_file, klass.Get())) {
2223 return;
2224 }
2225 }
2226 ClassReference ref(&dex_file, class_def_index);
2227 // Skip compiling classes with generic verifier failures since they will still fail at runtime
2228 if (manager_->GetCompiler()->verification_results_->IsClassRejected(ref)) {
Ian Rogers1ff3c982014-08-12 02:30:58 -07002229 return;
2230 }
Mathieu Chartier90443472015-07-16 20:32:27 -07002231 const uint8_t* class_data = dex_file.GetClassData(class_def);
2232 if (class_data == nullptr) {
2233 // empty class, probably a marker interface
2234 return;
Brian Carlstrom7940e442013-07-12 13:46:57 -07002235 }
Mathieu Chartier90443472015-07-16 20:32:27 -07002236
2237 CompilerDriver* const driver = manager_->GetCompiler();
2238
2239 // Can we run DEX-to-DEX compiler on this class ?
2240 DexToDexCompilationLevel dex_to_dex_compilation_level = kDontDexToDexCompile;
2241 {
2242 ScopedObjectAccess soa(self);
2243 StackHandleScope<1> hs(soa.Self());
2244 Handle<mirror::ClassLoader> class_loader(
2245 hs.NewHandle(soa.Decode<mirror::ClassLoader*>(jclass_loader)));
2246 dex_to_dex_compilation_level = driver->GetDexToDexCompilationlevel(
2247 soa.Self(), class_loader, dex_file, class_def);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002248 }
Mathieu Chartier90443472015-07-16 20:32:27 -07002249 ClassDataItemIterator it(dex_file, class_data);
2250 // Skip fields
2251 while (it.HasNextStaticField()) {
2252 it.Next();
2253 }
2254 while (it.HasNextInstanceField()) {
2255 it.Next();
2256 }
2257
2258 bool compilation_enabled = driver->IsClassToCompile(
2259 dex_file.StringByTypeIdx(class_def.class_idx_));
2260
2261 // Compile direct methods
2262 int64_t previous_direct_method_idx = -1;
2263 while (it.HasNextDirectMethod()) {
2264 uint32_t method_idx = it.GetMemberIndex();
2265 if (method_idx == previous_direct_method_idx) {
2266 // smali can create dex files with two encoded_methods sharing the same method_idx
2267 // http://code.google.com/p/smali/issues/detail?id=119
2268 it.Next();
2269 continue;
2270 }
2271 previous_direct_method_idx = method_idx;
2272 driver->CompileMethod(self, it.GetMethodCodeItem(), it.GetMethodAccessFlags(),
2273 it.GetMethodInvokeType(class_def), class_def_index,
2274 method_idx, jclass_loader, dex_file, dex_to_dex_compilation_level,
2275 compilation_enabled);
2276 it.Next();
2277 }
2278 // Compile virtual methods
2279 int64_t previous_virtual_method_idx = -1;
2280 while (it.HasNextVirtualMethod()) {
2281 uint32_t method_idx = it.GetMemberIndex();
2282 if (method_idx == previous_virtual_method_idx) {
2283 // smali can create dex files with two encoded_methods sharing the same method_idx
2284 // http://code.google.com/p/smali/issues/detail?id=119
2285 it.Next();
2286 continue;
2287 }
2288 previous_virtual_method_idx = method_idx;
2289 driver->CompileMethod(self, it.GetMethodCodeItem(), it.GetMethodAccessFlags(),
2290 it.GetMethodInvokeType(class_def), class_def_index,
2291 method_idx, jclass_loader, dex_file, dex_to_dex_compilation_level,
2292 compilation_enabled);
2293 it.Next();
2294 }
2295 DCHECK(!it.HasNext());
Brian Carlstrom7940e442013-07-12 13:46:57 -07002296 }
Mathieu Chartier90443472015-07-16 20:32:27 -07002297
2298 private:
2299 const ParallelCompilationManager* const manager_;
2300};
Brian Carlstrom7940e442013-07-12 13:46:57 -07002301
2302void CompilerDriver::CompileDexFile(jobject class_loader, const DexFile& dex_file,
Andreas Gampede7b4362014-07-28 18:38:57 -07002303 const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -08002304 ThreadPool* thread_pool, TimingLogger* timings) {
Mathieu Chartierf5997b42014-06-20 10:37:54 -07002305 TimingLogger::ScopedTiming t("Compile Dex File", timings);
Ian Rogersbe7149f2013-08-20 09:29:39 -07002306 ParallelCompilationManager context(Runtime::Current()->GetClassLinker(), class_loader, this,
Andreas Gampede7b4362014-07-28 18:38:57 -07002307 &dex_file, dex_files, thread_pool);
Mathieu Chartier90443472015-07-16 20:32:27 -07002308 CompileClassVisitor visitor(&context);
2309 context.ForAll(0, dex_file.NumClassDefs(), &visitor, thread_count_);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002310}
2311
Ian Rogersa4a3f402014-10-20 18:10:34 -07002312// Does the runtime for the InstructionSet provide an implementation returned by
2313// GetQuickGenericJniStub allowing down calls that aren't compiled using a JNI compiler?
2314static bool InstructionSetHasGenericJniStub(InstructionSet isa) {
2315 switch (isa) {
2316 case kArm:
2317 case kArm64:
2318 case kThumb2:
Douglas Leung735b8552014-10-31 12:21:40 -07002319 case kMips:
Andreas Gampe57b34292015-01-14 15:45:59 -08002320 case kMips64:
Ian Rogersa4a3f402014-10-20 18:10:34 -07002321 case kX86:
2322 case kX86_64: return true;
2323 default: return false;
2324 }
2325}
2326
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08002327void CompilerDriver::CompileMethod(Thread* self, const DexFile::CodeItem* code_item,
2328 uint32_t access_flags, InvokeType invoke_type,
2329 uint16_t class_def_idx, uint32_t method_idx,
2330 jobject class_loader, const DexFile& dex_file,
Andreas Gampe4bf3ae92014-11-11 13:28:29 -08002331 DexToDexCompilationLevel dex_to_dex_compilation_level,
2332 bool compilation_enabled) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002333 CompiledMethod* compiled_method = nullptr;
Mathieu Chartier8e219ae2014-08-19 14:29:46 -07002334 uint64_t start_ns = kTimeCompileMethod ? NanoTime() : 0;
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002335 MethodReference method_ref(&dex_file, method_idx);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002336
2337 if ((access_flags & kAccNative) != 0) {
Ian Rogers0188ab72014-03-17 16:51:53 -07002338 // Are we interpreting only and have support for generic JNI down calls?
Jeff Hao4a200f52014-04-01 14:58:49 -07002339 if (!compiler_options_->IsCompilationEnabled() &&
Ian Rogersa4a3f402014-10-20 18:10:34 -07002340 InstructionSetHasGenericJniStub(instruction_set_)) {
Ian Rogers5b271492014-03-14 13:20:26 -07002341 // Leaving this empty will trigger the generic JNI version
2342 } else {
Goran Jakovljevic75c40d42015-04-03 15:45:21 +02002343 compiled_method = compiler_->JniCompile(access_flags, method_idx, dex_file);
2344 CHECK(compiled_method != nullptr);
Ian Rogers5b271492014-03-14 13:20:26 -07002345 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002346 } else if ((access_flags & kAccAbstract) != 0) {
Ian Rogersa4a3f402014-10-20 18:10:34 -07002347 // Abstract methods don't have code.
Brian Carlstrom7940e442013-07-12 13:46:57 -07002348 } else {
Andreas Gampe6c170c92014-12-17 14:35:46 -08002349 bool has_verified_method = verification_results_->GetVerifiedMethod(method_ref) != nullptr;
Andreas Gampe4bf3ae92014-11-11 13:28:29 -08002350 bool compile = compilation_enabled &&
Andreas Gampe6c170c92014-12-17 14:35:46 -08002351 // Basic checks, e.g., not <clinit>.
2352 verification_results_->IsCandidateForCompilation(method_ref, access_flags) &&
2353 // Did not fail to create VerifiedMethod metadata.
Andreas Gampe70bef0d2015-04-15 02:37:28 -07002354 has_verified_method &&
2355 // Is eligable for compilation by methods-to-compile filter.
2356 IsMethodToCompile(method_ref);
Sebastien Hertz4d4adb12013-07-24 16:14:19 +02002357 if (compile) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -07002358 // NOTE: if compiler declines to compile this method, it will return null.
Ian Rogers72d32622014-05-06 16:20:11 -07002359 compiled_method = compiler_->Compile(code_item, access_flags, invoke_type, class_def_idx,
2360 method_idx, class_loader, dex_file);
Sebastien Hertz17965ed2014-04-04 15:59:53 +02002361 }
2362 if (compiled_method == nullptr && dex_to_dex_compilation_level != kDontDexToDexCompile) {
2363 // TODO: add a command-line option to disable DEX-to-DEX compilation ?
Andreas Gampe6c170c92014-12-17 14:35:46 -08002364 // Do not optimize if a VerifiedMethod is missing. SafeCast elision, for example, relies on
2365 // it.
Nicolas Geoffrayc04c8002015-07-14 11:37:54 +01002366 compiled_method = (*dex_to_dex_compiler_)(
2367 *this,
2368 code_item,
2369 access_flags,
2370 invoke_type,
2371 class_def_idx,
2372 method_idx,
2373 class_loader,
2374 dex_file,
2375 has_verified_method ? dex_to_dex_compilation_level : kRequired);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002376 }
2377 }
Mathieu Chartier8e219ae2014-08-19 14:29:46 -07002378 if (kTimeCompileMethod) {
2379 uint64_t duration_ns = NanoTime() - start_ns;
2380 if (duration_ns > MsToNs(compiler_->GetMaximumCompilationTimeBeforeWarning())) {
2381 LOG(WARNING) << "Compilation of " << PrettyMethod(method_idx, dex_file)
2382 << " took " << PrettyDuration(duration_ns);
2383 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002384 }
2385
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002386 if (compiled_method != nullptr) {
Vladimir Markof4da6752014-08-01 19:04:18 +01002387 // Count non-relative linker patches.
2388 size_t non_relative_linker_patch_count = 0u;
2389 for (const LinkerPatch& patch : compiled_method->GetPatches()) {
Vladimir Marko20f85592015-03-19 10:07:02 +00002390 if (!patch.IsPcRelative()) {
Vladimir Markof4da6752014-08-01 19:04:18 +01002391 ++non_relative_linker_patch_count;
2392 }
2393 }
Igor Murashkind6dee672014-10-16 18:36:16 -07002394 bool compile_pic = GetCompilerOptions().GetCompilePic(); // Off by default
2395 // When compiling with PIC, there should be zero non-relative linker patches
2396 CHECK(!compile_pic || non_relative_linker_patch_count == 0u);
2397
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002398 DCHECK(GetCompiledMethod(method_ref) == nullptr) << PrettyMethod(method_idx, dex_file);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002399 {
2400 MutexLock mu(self, compiled_methods_lock_);
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002401 compiled_methods_.Put(method_ref, compiled_method);
Vladimir Markof4da6752014-08-01 19:04:18 +01002402 non_relative_linker_patch_count_ += non_relative_linker_patch_count;
Brian Carlstrom7940e442013-07-12 13:46:57 -07002403 }
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002404 DCHECK(GetCompiledMethod(method_ref) != nullptr) << PrettyMethod(method_idx, dex_file);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002405 }
2406
Jeff Hao48699fb2015-04-06 14:21:37 -07002407 // Done compiling, delete the verified method to reduce native memory usage. Do not delete in
2408 // optimizing compiler, which may need the verified method again for inlining.
2409 if (compiler_kind_ != Compiler::kOptimizing) {
2410 verification_results_->RemoveVerifiedMethod(method_ref);
2411 }
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002412
Brian Carlstrom7940e442013-07-12 13:46:57 -07002413 if (self->IsExceptionPending()) {
2414 ScopedObjectAccess soa(self);
2415 LOG(FATAL) << "Unexpected exception compiling: " << PrettyMethod(method_idx, dex_file) << "\n"
Nicolas Geoffray14691c52015-03-05 10:40:17 +00002416 << self->GetException()->Dump();
Brian Carlstrom7940e442013-07-12 13:46:57 -07002417 }
2418}
2419
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08002420void CompilerDriver::RemoveCompiledMethod(const MethodReference& method_ref) {
2421 CompiledMethod* compiled_method = nullptr;
2422 {
2423 MutexLock mu(Thread::Current(), compiled_methods_lock_);
2424 auto it = compiled_methods_.find(method_ref);
2425 if (it != compiled_methods_.end()) {
2426 compiled_method = it->second;
2427 compiled_methods_.erase(it);
2428 }
2429 }
2430 if (compiled_method != nullptr) {
2431 CompiledMethod::ReleaseSwapAllocatedCompiledMethod(this, compiled_method);
2432 }
2433}
2434
Brian Carlstrom7940e442013-07-12 13:46:57 -07002435CompiledClass* CompilerDriver::GetCompiledClass(ClassReference ref) const {
2436 MutexLock mu(Thread::Current(), compiled_classes_lock_);
2437 ClassTable::const_iterator it = compiled_classes_.find(ref);
2438 if (it == compiled_classes_.end()) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002439 return nullptr;
Brian Carlstrom7940e442013-07-12 13:46:57 -07002440 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002441 CHECK(it->second != nullptr);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002442 return it->second;
2443}
2444
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07002445void CompilerDriver::RecordClassStatus(ClassReference ref, mirror::Class::Status status) {
2446 MutexLock mu(Thread::Current(), compiled_classes_lock_);
2447 auto it = compiled_classes_.find(ref);
2448 if (it == compiled_classes_.end() || it->second->GetStatus() != status) {
2449 // An entry doesn't exist or the status is lower than the new status.
2450 if (it != compiled_classes_.end()) {
2451 CHECK_GT(status, it->second->GetStatus());
2452 delete it->second;
2453 }
2454 switch (status) {
2455 case mirror::Class::kStatusNotReady:
2456 case mirror::Class::kStatusError:
2457 case mirror::Class::kStatusRetryVerificationAtRuntime:
2458 case mirror::Class::kStatusVerified:
2459 case mirror::Class::kStatusInitialized:
2460 break; // Expected states.
2461 default:
2462 LOG(FATAL) << "Unexpected class status for class "
2463 << PrettyDescriptor(ref.first->GetClassDescriptor(ref.first->GetClassDef(ref.second)))
2464 << " of " << status;
2465 }
2466 CompiledClass* compiled_class = new CompiledClass(status);
2467 compiled_classes_.Overwrite(ref, compiled_class);
2468 }
2469}
2470
Brian Carlstrom7940e442013-07-12 13:46:57 -07002471CompiledMethod* CompilerDriver::GetCompiledMethod(MethodReference ref) const {
2472 MutexLock mu(Thread::Current(), compiled_methods_lock_);
2473 MethodTable::const_iterator it = compiled_methods_.find(ref);
2474 if (it == compiled_methods_.end()) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002475 return nullptr;
Brian Carlstrom7940e442013-07-12 13:46:57 -07002476 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002477 CHECK(it->second != nullptr);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002478 return it->second;
2479}
2480
Calin Juravlef1c6d9e2015-04-13 18:42:21 +01002481bool CompilerDriver::IsMethodVerifiedWithoutFailures(uint32_t method_idx,
2482 uint16_t class_def_idx,
2483 const DexFile& dex_file) const {
2484 const VerifiedMethod* verified_method = GetVerifiedMethod(&dex_file, method_idx);
2485 if (verified_method != nullptr) {
2486 return !verified_method->HasVerificationFailures();
2487 }
2488
2489 // If we can't find verification metadata, check if this is a system class (we trust that system
2490 // classes have their methods verified). If it's not, be conservative and assume the method
2491 // has not been verified successfully.
2492
2493 // TODO: When compiling the boot image it should be safe to assume that everything is verified,
2494 // even if methods are not found in the verification cache.
2495 const char* descriptor = dex_file.GetClassDescriptor(dex_file.GetClassDef(class_def_idx));
2496 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
2497 Thread* self = Thread::Current();
2498 ScopedObjectAccess soa(self);
2499 bool is_system_class = class_linker->FindSystemClass(self, descriptor) != nullptr;
2500 if (!is_system_class) {
2501 self->ClearException();
2502 }
2503 return is_system_class;
2504}
2505
Vladimir Markof4da6752014-08-01 19:04:18 +01002506size_t CompilerDriver::GetNonRelativeLinkerPatchCount() const {
2507 MutexLock mu(Thread::Current(), compiled_methods_lock_);
2508 return non_relative_linker_patch_count_;
2509}
2510
Brian Carlstrom7940e442013-07-12 13:46:57 -07002511void CompilerDriver::AddRequiresConstructorBarrier(Thread* self, const DexFile* dex_file,
Ian Rogers8b2c0b92013-09-19 02:56:49 -07002512 uint16_t class_def_index) {
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07002513 WriterMutexLock mu(self, freezing_constructor_lock_);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002514 freezing_constructor_classes_.insert(ClassReference(dex_file, class_def_index));
2515}
2516
2517bool CompilerDriver::RequiresConstructorBarrier(Thread* self, const DexFile* dex_file,
Calin Juravle27df7582015-04-17 19:12:31 +01002518 uint16_t class_def_index) const {
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07002519 ReaderMutexLock mu(self, freezing_constructor_lock_);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002520 return freezing_constructor_classes_.count(ClassReference(dex_file, class_def_index)) != 0;
2521}
2522
2523bool CompilerDriver::WriteElf(const std::string& android_root,
2524 bool is_host,
2525 const std::vector<const art::DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -08002526 OatWriter* oat_writer,
Brian Carlstrom7940e442013-07-12 13:46:57 -07002527 art::File* file)
Mathieu Chartier90443472015-07-16 20:32:27 -07002528 SHARED_REQUIRES(Locks::mutator_lock_) {
Andreas Gampe3773cd02015-04-10 09:28:22 -07002529 if (kProduce64BitELFFiles && Is64BitInstructionSet(GetInstructionSet())) {
2530 return art::ElfWriterQuick64::Create(file, oat_writer, dex_files, android_root, is_host, *this);
2531 } else {
2532 return art::ElfWriterQuick32::Create(file, oat_writer, dex_files, android_root, is_host, *this);
2533 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002534}
Dave Allison39c3bfb2014-01-28 18:33:52 -08002535
Dave Allison39c3bfb2014-01-28 18:33:52 -08002536bool CompilerDriver::SkipCompilation(const std::string& method_name) {
Calin Juravlec1b643c2014-05-30 23:44:11 +01002537 if (!profile_present_) {
Dave Allison644789f2014-04-10 13:06:10 -07002538 return false;
Dave Allison39c3bfb2014-01-28 18:33:52 -08002539 }
Calin Juravlebb0b53f2014-05-23 17:33:29 +01002540 // First find the method in the profile file.
2541 ProfileFile::ProfileData data;
2542 if (!profile_file_.GetProfileData(&data, method_name)) {
Dave Allison39c3bfb2014-01-28 18:33:52 -08002543 // Not in profile, no information can be determined.
Calin Juravle08f7a2d2014-06-23 15:22:29 +01002544 if (kIsDebugBuild) {
2545 VLOG(compiler) << "not compiling " << method_name << " because it's not in the profile";
2546 }
Dave Allison39c3bfb2014-01-28 18:33:52 -08002547 return true;
2548 }
Calin Juravlebb0b53f2014-05-23 17:33:29 +01002549
2550 // Methods that comprise top_k_threshold % of the total samples will be compiled.
Calin Juravlef6a4cee2014-04-02 17:03:08 +01002551 // Compare against the start of the topK percentage bucket just in case the threshold
Calin Juravle04ff2262014-04-02 19:08:47 +01002552 // falls inside a bucket.
Calin Juravlec1b643c2014-05-30 23:44:11 +01002553 bool compile = data.GetTopKUsedPercentage() - data.GetUsedPercent()
2554 <= compiler_options_->GetTopKProfileThreshold();
Calin Juravle08f7a2d2014-06-23 15:22:29 +01002555 if (kIsDebugBuild) {
2556 if (compile) {
2557 LOG(INFO) << "compiling method " << method_name << " because its usage is part of top "
2558 << data.GetTopKUsedPercentage() << "% with a percent of " << data.GetUsedPercent() << "%"
2559 << " (topKThreshold=" << compiler_options_->GetTopKProfileThreshold() << ")";
2560 } else {
2561 VLOG(compiler) << "not compiling method " << method_name
2562 << " because it's not part of leading " << compiler_options_->GetTopKProfileThreshold()
2563 << "% samples)";
2564 }
Dave Allison39c3bfb2014-01-28 18:33:52 -08002565 }
2566 return !compile;
2567}
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002568
Andreas Gampe8d295f82015-01-20 14:50:21 -08002569std::string CompilerDriver::GetMemoryUsageString(bool extended) const {
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002570 std::ostringstream oss;
Mathieu Chartier9b34b242015-03-09 11:30:17 -07002571 Runtime* const runtime = Runtime::Current();
2572 const ArenaPool* arena_pool = runtime->GetArenaPool();
2573 gc::Heap* const heap = runtime->GetHeap();
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002574 oss << "arena alloc=" << PrettySize(arena_pool->GetBytesAllocated());
2575 oss << " java alloc=" << PrettySize(heap->GetBytesAllocated());
Elliott Hughes7bf5a262015-04-02 20:55:07 -07002576#if defined(__BIONIC__) || defined(__GLIBC__)
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002577 struct mallinfo info = mallinfo();
2578 const size_t allocated_space = static_cast<size_t>(info.uordblks);
2579 const size_t free_space = static_cast<size_t>(info.fordblks);
2580 oss << " native alloc=" << PrettySize(allocated_space) << " free="
2581 << PrettySize(free_space);
2582#endif
Andreas Gampee21dc3d2014-12-08 16:59:43 -08002583 if (swap_space_.get() != nullptr) {
2584 oss << " swap=" << PrettySize(swap_space_->GetSize());
2585 }
Andreas Gampe8d295f82015-01-20 14:50:21 -08002586 if (extended) {
2587 oss << "\nCode dedupe: " << dedupe_code_.DumpStats();
2588 oss << "\nMapping table dedupe: " << dedupe_mapping_table_.DumpStats();
2589 oss << "\nVmap table dedupe: " << dedupe_vmap_table_.DumpStats();
2590 oss << "\nGC map dedupe: " << dedupe_gc_map_.DumpStats();
2591 oss << "\nCFI info dedupe: " << dedupe_cfi_info_.DumpStats();
2592 }
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002593 return oss.str();
2594}
2595
Jeff Hao848f70a2014-01-15 13:49:50 -08002596bool CompilerDriver::IsStringTypeIndex(uint16_t type_index, const DexFile* dex_file) {
2597 const char* type = dex_file->GetTypeDescriptor(dex_file->GetTypeId(type_index));
2598 return strcmp(type, "Ljava/lang/String;") == 0;
2599}
2600
2601bool CompilerDriver::IsStringInit(uint32_t method_index, const DexFile* dex_file, int32_t* offset) {
2602 DexFileMethodInliner* inliner = GetMethodInlinerMap()->GetMethodInliner(dex_file);
2603 size_t pointer_size = InstructionSetPointerSize(GetInstructionSet());
2604 *offset = inliner->GetOffsetForStringInit(method_index, pointer_size);
2605 return inliner->IsStringInitMethodIndex(method_index);
2606}
2607
Brian Carlstrom7940e442013-07-12 13:46:57 -07002608} // namespace art