blob: 90e63e967410db662234aa39a19696dd3df8eb94 [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
Brian Carlstrom7940e442013-07-12 13:46:57 -070030#include "base/stl_util.h"
31#include "base/timing_logger.h"
32#include "class_linker.h"
Mingyao Yang98d1cc82014-05-15 17:02:16 -070033#include "compiled_class.h"
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +000034#include "compiler.h"
Vladimir Markobe0e5462014-02-26 11:24:15 +000035#include "compiler_driver-inl.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070036#include "dex_compilation_unit.h"
37#include "dex_file-inl.h"
Vladimir Markoc7f83202014-01-24 17:55:18 +000038#include "dex/verification_results.h"
Vladimir Marko2730db02014-01-27 11:15:17 +000039#include "dex/verified_method.h"
Vladimir Marko2bc47802014-02-10 09:43:07 +000040#include "dex/quick/dex_file_method_inliner.h"
Mark Mendellae9fd932014-02-10 16:14:35 -080041#include "driver/compiler_options.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070042#include "jni_internal.h"
Ian Rogers22d5e732014-07-15 22:23:51 -070043#include "object_lock.h"
Calin Juravlebb0b53f2014-05-23 17:33:29 +010044#include "profiler.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070045#include "runtime.h"
46#include "gc/accounting/card_table-inl.h"
47#include "gc/accounting/heap_bitmap.h"
48#include "gc/space/space.h"
Brian Carlstromea46f952013-07-30 01:26:50 -070049#include "mirror/art_field-inl.h"
50#include "mirror/art_method-inl.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070051#include "mirror/class_loader.h"
52#include "mirror/class-inl.h"
53#include "mirror/dex_cache-inl.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070054#include "mirror/object-inl.h"
55#include "mirror/object_array-inl.h"
56#include "mirror/throwable.h"
57#include "scoped_thread_state_change.h"
58#include "ScopedLocalRef.h"
Mathieu Chartiereb8167a2014-05-07 15:43:14 -070059#include "handle_scope-inl.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070060#include "thread.h"
Andreas Gampeb0f370e2014-09-25 22:51:40 -070061#include "thread_list.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070062#include "thread_pool.h"
Ian Rogers848871b2013-08-05 10:56:33 -070063#include "trampolines/trampoline_compiler.h"
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +010064#include "transaction.h"
Andreas Gampee21dc3d2014-12-08 16:59:43 -080065#include "utils/swap_space.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070066#include "verifier/method_verifier.h"
Vladimir Marko2bc47802014-02-10 09:43:07 +000067#include "verifier/method_verifier-inl.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070068
Brian Carlstrom7940e442013-07-12 13:46:57 -070069namespace art {
70
Mathieu Chartier8e219ae2014-08-19 14:29:46 -070071static constexpr bool kTimeCompileMethod = !kIsDebugBuild;
72
Brian Carlstrom7940e442013-07-12 13:46:57 -070073static double Percentage(size_t x, size_t y) {
74 return 100.0 * (static_cast<double>(x)) / (static_cast<double>(x + y));
75}
76
77static void DumpStat(size_t x, size_t y, const char* str) {
78 if (x == 0 && y == 0) {
79 return;
80 }
Ian Rogerse732ef12013-10-09 15:22:24 -070081 LOG(INFO) << Percentage(x, y) << "% of " << str << " for " << (x + y) << " cases";
Brian Carlstrom7940e442013-07-12 13:46:57 -070082}
83
Vladimir Markof096aad2014-01-23 15:51:58 +000084class CompilerDriver::AOTCompilationStats {
Brian Carlstrom7940e442013-07-12 13:46:57 -070085 public:
86 AOTCompilationStats()
87 : stats_lock_("AOT compilation statistics lock"),
88 types_in_dex_cache_(0), types_not_in_dex_cache_(0),
89 strings_in_dex_cache_(0), strings_not_in_dex_cache_(0),
90 resolved_types_(0), unresolved_types_(0),
91 resolved_instance_fields_(0), unresolved_instance_fields_(0),
92 resolved_local_static_fields_(0), resolved_static_fields_(0), unresolved_static_fields_(0),
93 type_based_devirtualization_(0),
94 safe_casts_(0), not_safe_casts_(0) {
95 for (size_t i = 0; i <= kMaxInvokeType; i++) {
96 resolved_methods_[i] = 0;
97 unresolved_methods_[i] = 0;
98 virtual_made_direct_[i] = 0;
99 direct_calls_to_boot_[i] = 0;
100 direct_methods_to_boot_[i] = 0;
101 }
102 }
103
104 void Dump() {
105 DumpStat(types_in_dex_cache_, types_not_in_dex_cache_, "types known to be in dex cache");
106 DumpStat(strings_in_dex_cache_, strings_not_in_dex_cache_, "strings known to be in dex cache");
107 DumpStat(resolved_types_, unresolved_types_, "types resolved");
108 DumpStat(resolved_instance_fields_, unresolved_instance_fields_, "instance fields resolved");
109 DumpStat(resolved_local_static_fields_ + resolved_static_fields_, unresolved_static_fields_,
110 "static fields resolved");
111 DumpStat(resolved_local_static_fields_, resolved_static_fields_ + unresolved_static_fields_,
112 "static fields local to a class");
113 DumpStat(safe_casts_, not_safe_casts_, "check-casts removed based on type information");
114 // Note, the code below subtracts the stat value so that when added to the stat value we have
115 // 100% of samples. TODO: clean this up.
116 DumpStat(type_based_devirtualization_,
117 resolved_methods_[kVirtual] + unresolved_methods_[kVirtual] +
118 resolved_methods_[kInterface] + unresolved_methods_[kInterface] -
119 type_based_devirtualization_,
120 "virtual/interface calls made direct based on type information");
121
122 for (size_t i = 0; i <= kMaxInvokeType; i++) {
123 std::ostringstream oss;
124 oss << static_cast<InvokeType>(i) << " methods were AOT resolved";
125 DumpStat(resolved_methods_[i], unresolved_methods_[i], oss.str().c_str());
126 if (virtual_made_direct_[i] > 0) {
127 std::ostringstream oss2;
128 oss2 << static_cast<InvokeType>(i) << " methods made direct";
129 DumpStat(virtual_made_direct_[i],
130 resolved_methods_[i] + unresolved_methods_[i] - virtual_made_direct_[i],
131 oss2.str().c_str());
132 }
133 if (direct_calls_to_boot_[i] > 0) {
134 std::ostringstream oss2;
135 oss2 << static_cast<InvokeType>(i) << " method calls are direct into boot";
136 DumpStat(direct_calls_to_boot_[i],
137 resolved_methods_[i] + unresolved_methods_[i] - direct_calls_to_boot_[i],
138 oss2.str().c_str());
139 }
140 if (direct_methods_to_boot_[i] > 0) {
141 std::ostringstream oss2;
142 oss2 << static_cast<InvokeType>(i) << " method calls have methods in boot";
143 DumpStat(direct_methods_to_boot_[i],
144 resolved_methods_[i] + unresolved_methods_[i] - direct_methods_to_boot_[i],
145 oss2.str().c_str());
146 }
147 }
148 }
149
150// Allow lossy statistics in non-debug builds.
151#ifndef NDEBUG
152#define STATS_LOCK() MutexLock mu(Thread::Current(), stats_lock_)
153#else
154#define STATS_LOCK()
155#endif
156
157 void TypeInDexCache() {
158 STATS_LOCK();
159 types_in_dex_cache_++;
160 }
161
162 void TypeNotInDexCache() {
163 STATS_LOCK();
164 types_not_in_dex_cache_++;
165 }
166
167 void StringInDexCache() {
168 STATS_LOCK();
169 strings_in_dex_cache_++;
170 }
171
172 void StringNotInDexCache() {
173 STATS_LOCK();
174 strings_not_in_dex_cache_++;
175 }
176
177 void TypeDoesntNeedAccessCheck() {
178 STATS_LOCK();
179 resolved_types_++;
180 }
181
182 void TypeNeedsAccessCheck() {
183 STATS_LOCK();
184 unresolved_types_++;
185 }
186
187 void ResolvedInstanceField() {
188 STATS_LOCK();
189 resolved_instance_fields_++;
190 }
191
192 void UnresolvedInstanceField() {
193 STATS_LOCK();
194 unresolved_instance_fields_++;
195 }
196
197 void ResolvedLocalStaticField() {
198 STATS_LOCK();
199 resolved_local_static_fields_++;
200 }
201
202 void ResolvedStaticField() {
203 STATS_LOCK();
204 resolved_static_fields_++;
205 }
206
207 void UnresolvedStaticField() {
208 STATS_LOCK();
209 unresolved_static_fields_++;
210 }
211
212 // Indicate that type information from the verifier led to devirtualization.
213 void PreciseTypeDevirtualization() {
214 STATS_LOCK();
215 type_based_devirtualization_++;
216 }
217
218 // Indicate that a method of the given type was resolved at compile time.
219 void ResolvedMethod(InvokeType type) {
220 DCHECK_LE(type, kMaxInvokeType);
221 STATS_LOCK();
222 resolved_methods_[type]++;
223 }
224
225 // Indicate that a method of the given type was unresolved at compile time as it was in an
226 // unknown dex file.
227 void UnresolvedMethod(InvokeType type) {
228 DCHECK_LE(type, kMaxInvokeType);
229 STATS_LOCK();
230 unresolved_methods_[type]++;
231 }
232
233 // Indicate that a type of virtual method dispatch has been converted into a direct method
234 // dispatch.
235 void VirtualMadeDirect(InvokeType type) {
236 DCHECK(type == kVirtual || type == kInterface || type == kSuper);
237 STATS_LOCK();
238 virtual_made_direct_[type]++;
239 }
240
241 // Indicate that a method of the given type was able to call directly into boot.
242 void DirectCallsToBoot(InvokeType type) {
243 DCHECK_LE(type, kMaxInvokeType);
244 STATS_LOCK();
245 direct_calls_to_boot_[type]++;
246 }
247
248 // Indicate that a method of the given type was able to be resolved directly from boot.
249 void DirectMethodsToBoot(InvokeType type) {
250 DCHECK_LE(type, kMaxInvokeType);
251 STATS_LOCK();
252 direct_methods_to_boot_[type]++;
253 }
254
Vladimir Markof096aad2014-01-23 15:51:58 +0000255 void ProcessedInvoke(InvokeType type, int flags) {
256 STATS_LOCK();
257 if (flags == 0) {
258 unresolved_methods_[type]++;
259 } else {
260 DCHECK_NE((flags & kFlagMethodResolved), 0);
261 resolved_methods_[type]++;
262 if ((flags & kFlagVirtualMadeDirect) != 0) {
263 virtual_made_direct_[type]++;
264 if ((flags & kFlagPreciseTypeDevirtualization) != 0) {
265 type_based_devirtualization_++;
266 }
267 } else {
268 DCHECK_EQ((flags & kFlagPreciseTypeDevirtualization), 0);
269 }
270 if ((flags & kFlagDirectCallToBoot) != 0) {
271 direct_calls_to_boot_[type]++;
272 }
273 if ((flags & kFlagDirectMethodToBoot) != 0) {
274 direct_methods_to_boot_[type]++;
275 }
276 }
277 }
278
Brian Carlstrom7940e442013-07-12 13:46:57 -0700279 // A check-cast could be eliminated due to verifier type analysis.
280 void SafeCast() {
281 STATS_LOCK();
282 safe_casts_++;
283 }
284
285 // A check-cast couldn't be eliminated due to verifier type analysis.
286 void NotASafeCast() {
287 STATS_LOCK();
288 not_safe_casts_++;
289 }
290
291 private:
292 Mutex stats_lock_;
293
294 size_t types_in_dex_cache_;
295 size_t types_not_in_dex_cache_;
296
297 size_t strings_in_dex_cache_;
298 size_t strings_not_in_dex_cache_;
299
300 size_t resolved_types_;
301 size_t unresolved_types_;
302
303 size_t resolved_instance_fields_;
304 size_t unresolved_instance_fields_;
305
306 size_t resolved_local_static_fields_;
307 size_t resolved_static_fields_;
308 size_t unresolved_static_fields_;
309 // Type based devirtualization for invoke interface and virtual.
310 size_t type_based_devirtualization_;
311
312 size_t resolved_methods_[kMaxInvokeType + 1];
313 size_t unresolved_methods_[kMaxInvokeType + 1];
314 size_t virtual_made_direct_[kMaxInvokeType + 1];
315 size_t direct_calls_to_boot_[kMaxInvokeType + 1];
316 size_t direct_methods_to_boot_[kMaxInvokeType + 1];
317
318 size_t safe_casts_;
319 size_t not_safe_casts_;
320
321 DISALLOW_COPY_AND_ASSIGN(AOTCompilationStats);
322};
323
Brian Carlstrom7940e442013-07-12 13:46:57 -0700324
325extern "C" art::CompiledMethod* ArtCompileDEX(art::CompilerDriver& compiler,
326 const art::DexFile::CodeItem* code_item,
327 uint32_t access_flags,
328 art::InvokeType invoke_type,
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700329 uint16_t class_def_idx,
Brian Carlstrom7940e442013-07-12 13:46:57 -0700330 uint32_t method_idx,
331 jobject class_loader,
332 const art::DexFile& dex_file);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700333
Brian Carlstrom6449c622014-02-10 23:48:36 -0800334CompilerDriver::CompilerDriver(const CompilerOptions* compiler_options,
335 VerificationResults* verification_results,
Vladimir Marko5816ed42013-11-27 17:04:20 +0000336 DexFileToMethodInlinerMap* method_inliner_map,
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +0000337 Compiler::Kind compiler_kind,
Nicolas Geoffrayf5df8972014-02-14 18:37:08 +0000338 InstructionSet instruction_set,
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700339 const InstructionSetFeatures* instruction_set_features,
Andreas Gampe4bf3ae92014-11-11 13:28:29 -0800340 bool image, std::set<std::string>* image_classes,
341 std::set<std::string>* compiled_classes, size_t thread_count,
David Brazdil866c0312015-01-13 21:21:31 +0000342 bool dump_stats, bool dump_passes,
343 const std::string& dump_cfg_file_name, CumulativeLogger* timer,
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800344 int swap_fd, const std::string& profile_file)
345 : swap_space_(swap_fd == -1 ? nullptr : new SwapSpace(swap_fd, 10 * MB)),
346 swap_space_allocator_(new SwapAllocator<void>(swap_space_.get())),
347 profile_present_(false), compiler_options_(compiler_options),
Brian Carlstrom6449c622014-02-10 23:48:36 -0800348 verification_results_(verification_results),
Vladimir Marko5816ed42013-11-27 17:04:20 +0000349 method_inliner_map_(method_inliner_map),
Ian Rogers72d32622014-05-06 16:20:11 -0700350 compiler_(Compiler::Create(this, compiler_kind)),
Brian Carlstrom7940e442013-07-12 13:46:57 -0700351 instruction_set_(instruction_set),
Dave Allison70202782013-10-22 17:52:19 -0700352 instruction_set_features_(instruction_set_features),
Brian Carlstrom7940e442013-07-12 13:46:57 -0700353 freezing_constructor_lock_("freezing constructor lock"),
354 compiled_classes_lock_("compiled classes lock"),
355 compiled_methods_lock_("compiled method lock"),
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800356 compiled_methods_(MethodTable::key_compare()),
Vladimir Markof4da6752014-08-01 19:04:18 +0100357 non_relative_linker_patch_count_(0u),
Brian Carlstrom7940e442013-07-12 13:46:57 -0700358 image_(image),
359 image_classes_(image_classes),
Andreas Gampe4bf3ae92014-11-11 13:28:29 -0800360 classes_to_compile_(compiled_classes),
Brian Carlstrom7940e442013-07-12 13:46:57 -0700361 thread_count_(thread_count),
Brian Carlstrom7940e442013-07-12 13:46:57 -0700362 stats_(new AOTCompilationStats),
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800363 dedupe_enabled_(true),
Brian Carlstrom7940e442013-07-12 13:46:57 -0700364 dump_stats_(dump_stats),
Nicolas Geoffrayea3fa0b2014-02-10 11:59:41 +0000365 dump_passes_(dump_passes),
David Brazdil866c0312015-01-13 21:21:31 +0000366 dump_cfg_file_name_(dump_cfg_file_name),
Nicolas Geoffrayea3fa0b2014-02-10 11:59:41 +0000367 timings_logger_(timer),
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700368 compiler_context_(nullptr),
Andreas Gampe57b34292015-01-14 15:45:59 -0800369 support_boot_image_fixup_(instruction_set != kMips && instruction_set != kMips64),
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800370 dedupe_code_("dedupe code", *swap_space_allocator_),
371 dedupe_src_mapping_table_("dedupe source mapping table", *swap_space_allocator_),
372 dedupe_mapping_table_("dedupe mapping table", *swap_space_allocator_),
373 dedupe_vmap_table_("dedupe vmap table", *swap_space_allocator_),
374 dedupe_gc_map_("dedupe gc map", *swap_space_allocator_),
375 dedupe_cfi_info_("dedupe cfi info", *swap_space_allocator_) {
Brian Carlstrom6449c622014-02-10 23:48:36 -0800376 DCHECK(compiler_options_ != nullptr);
377 DCHECK(verification_results_ != nullptr);
378 DCHECK(method_inliner_map_ != nullptr);
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700379
Sebastien Hertz75021222013-07-16 18:34:50 +0200380 dex_to_dex_compiler_ = reinterpret_cast<DexToDexCompilerFn>(ArtCompileDEX);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700381
Ian Rogers72d32622014-05-06 16:20:11 -0700382 compiler_->Init();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700383
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800384 CHECK_EQ(image_, image_classes_.get() != nullptr);
Mark Mendellae9fd932014-02-10 16:14:35 -0800385
Calin Juravlec1b643c2014-05-30 23:44:11 +0100386 // Read the profile file if one is provided.
387 if (!profile_file.empty()) {
388 profile_present_ = profile_file_.LoadFile(profile_file);
389 if (profile_present_) {
390 LOG(INFO) << "Using profile data form file " << profile_file;
391 } else {
392 LOG(INFO) << "Failed to load profile file " << profile_file;
393 }
394 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700395}
396
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800397SwapVector<uint8_t>* CompilerDriver::DeduplicateCode(const ArrayRef<const uint8_t>& code) {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800398 DCHECK(dedupe_enabled_);
Mathieu Chartier193bad92013-08-29 18:46:00 -0700399 return dedupe_code_.Add(Thread::Current(), code);
400}
401
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800402SwapSrcMap* CompilerDriver::DeduplicateSrcMappingTable(const ArrayRef<SrcMapElem>& src_map) {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800403 DCHECK(dedupe_enabled_);
Yevgeny Roubane3ea8382014-08-08 16:29:38 +0700404 return dedupe_src_mapping_table_.Add(Thread::Current(), src_map);
405}
406
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800407SwapVector<uint8_t>* CompilerDriver::DeduplicateMappingTable(const ArrayRef<const uint8_t>& code) {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800408 DCHECK(dedupe_enabled_);
Mathieu Chartier193bad92013-08-29 18:46:00 -0700409 return dedupe_mapping_table_.Add(Thread::Current(), code);
410}
411
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800412SwapVector<uint8_t>* CompilerDriver::DeduplicateVMapTable(const ArrayRef<const uint8_t>& code) {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800413 DCHECK(dedupe_enabled_);
Mathieu Chartier193bad92013-08-29 18:46:00 -0700414 return dedupe_vmap_table_.Add(Thread::Current(), code);
415}
416
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800417SwapVector<uint8_t>* CompilerDriver::DeduplicateGCMap(const ArrayRef<const uint8_t>& code) {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800418 DCHECK(dedupe_enabled_);
Mathieu Chartier193bad92013-08-29 18:46:00 -0700419 return dedupe_gc_map_.Add(Thread::Current(), code);
420}
421
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800422SwapVector<uint8_t>* CompilerDriver::DeduplicateCFIInfo(const ArrayRef<const uint8_t>& cfi_info) {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800423 DCHECK(dedupe_enabled_);
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800424 return dedupe_cfi_info_.Add(Thread::Current(), cfi_info);
Mark Mendellae9fd932014-02-10 16:14:35 -0800425}
426
Brian Carlstrom7940e442013-07-12 13:46:57 -0700427CompilerDriver::~CompilerDriver() {
428 Thread* self = Thread::Current();
429 {
430 MutexLock mu(self, compiled_classes_lock_);
431 STLDeleteValues(&compiled_classes_);
432 }
433 {
434 MutexLock mu(self, compiled_methods_lock_);
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800435 for (auto& pair : compiled_methods_) {
436 CompiledMethod::ReleaseSwapAllocatedCompiledMethod(this, pair.second);
437 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700438 }
Ian Rogers72d32622014-05-06 16:20:11 -0700439 compiler_->UnInit();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700440}
441
Ian Rogersdd7624d2014-03-14 17:43:00 -0700442#define CREATE_TRAMPOLINE(type, abi, offset) \
Andreas Gampeaf13ad92014-04-11 12:07:48 -0700443 if (Is64BitInstructionSet(instruction_set_)) { \
Ian Rogersdd7624d2014-03-14 17:43:00 -0700444 return CreateTrampoline64(instruction_set_, abi, \
445 type ## _ENTRYPOINT_OFFSET(8, offset)); \
446 } else { \
447 return CreateTrampoline32(instruction_set_, abi, \
448 type ## _ENTRYPOINT_OFFSET(4, offset)); \
449 }
450
Ian Rogers848871b2013-08-05 10:56:33 -0700451const std::vector<uint8_t>* CompilerDriver::CreateInterpreterToInterpreterBridge() const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700452 CREATE_TRAMPOLINE(INTERPRETER, kInterpreterAbi, pInterpreterToInterpreterBridge)
Ian Rogers848871b2013-08-05 10:56:33 -0700453}
454
455const std::vector<uint8_t>* CompilerDriver::CreateInterpreterToCompiledCodeBridge() const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700456 CREATE_TRAMPOLINE(INTERPRETER, kInterpreterAbi, pInterpreterToCompiledCodeBridge)
Ian Rogers848871b2013-08-05 10:56:33 -0700457}
458
459const std::vector<uint8_t>* CompilerDriver::CreateJniDlsymLookup() const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700460 CREATE_TRAMPOLINE(JNI, kJniAbi, pDlsymLookup)
Ian Rogers848871b2013-08-05 10:56:33 -0700461}
462
Andreas Gampe2da88232014-02-27 12:26:20 -0800463const std::vector<uint8_t>* CompilerDriver::CreateQuickGenericJniTrampoline() const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700464 CREATE_TRAMPOLINE(QUICK, kQuickAbi, pQuickGenericJniTrampoline)
Andreas Gampe2da88232014-02-27 12:26:20 -0800465}
466
Jeff Hao88474b42013-10-23 16:24:40 -0700467const std::vector<uint8_t>* CompilerDriver::CreateQuickImtConflictTrampoline() const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700468 CREATE_TRAMPOLINE(QUICK, kQuickAbi, pQuickImtConflictTrampoline)
Jeff Hao88474b42013-10-23 16:24:40 -0700469}
470
Brian Carlstrom7940e442013-07-12 13:46:57 -0700471const std::vector<uint8_t>* CompilerDriver::CreateQuickResolutionTrampoline() const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700472 CREATE_TRAMPOLINE(QUICK, kQuickAbi, pQuickResolutionTrampoline)
Brian Carlstrom7940e442013-07-12 13:46:57 -0700473}
474
Ian Rogers848871b2013-08-05 10:56:33 -0700475const std::vector<uint8_t>* CompilerDriver::CreateQuickToInterpreterBridge() const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700476 CREATE_TRAMPOLINE(QUICK, kQuickAbi, pQuickToInterpreterBridge)
Brian Carlstrom7940e442013-07-12 13:46:57 -0700477}
Ian Rogersdd7624d2014-03-14 17:43:00 -0700478#undef CREATE_TRAMPOLINE
Brian Carlstrom7940e442013-07-12 13:46:57 -0700479
480void CompilerDriver::CompileAll(jobject class_loader,
Brian Carlstrom45602482013-07-21 22:07:55 -0700481 const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -0800482 TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700483 DCHECK(!Runtime::Current()->IsStarted());
Ian Rogers700a4022014-05-19 16:49:03 -0700484 std::unique_ptr<ThreadPool> thread_pool(new ThreadPool("Compiler driver thread pool", thread_count_ - 1));
Andreas Gampe8d295f82015-01-20 14:50:21 -0800485 VLOG(compiler) << "Before precompile " << GetMemoryUsageString(false);
Ian Rogers3d504072014-03-01 09:16:49 -0800486 PreCompile(class_loader, dex_files, thread_pool.get(), timings);
487 Compile(class_loader, dex_files, thread_pool.get(), timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700488 if (dump_stats_) {
489 stats_->Dump();
490 }
491}
492
Mathieu Chartier590fee92013-09-13 13:46:47 -0700493static DexToDexCompilationLevel GetDexToDexCompilationlevel(
Mathieu Chartier0cd81352014-05-22 16:48:55 -0700494 Thread* self, Handle<mirror::ClassLoader> class_loader, const DexFile& dex_file,
Mathieu Chartier590fee92013-09-13 13:46:47 -0700495 const DexFile::ClassDef& class_def) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800496 auto* const runtime = Runtime::Current();
497 if (runtime->UseJit()) {
498 return kDontDexToDexCompile;
499 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700500 const char* descriptor = dex_file.GetClassDescriptor(class_def);
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800501 ClassLinker* class_linker = runtime->GetClassLinker();
Ian Rogers98379392014-02-24 16:53:16 -0800502 mirror::Class* klass = class_linker->FindClass(self, descriptor, class_loader);
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700503 if (klass == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700504 CHECK(self->IsExceptionPending());
505 self->ClearException();
Sebastien Hertz75021222013-07-16 18:34:50 +0200506 return kDontDexToDexCompile;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700507 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700508 // DexToDex at the kOptimize level may introduce quickened opcodes, which replace symbolic
509 // references with actual offsets. We cannot re-verify such instructions.
510 //
511 // We store the verification information in the class status in the oat file, which the linker
512 // can validate (checksums) and use to skip load-time verification. It is thus safe to
513 // optimize when a class has been fully verified before.
514 if (klass->IsVerified()) {
Sebastien Hertz75021222013-07-16 18:34:50 +0200515 // Class is verified so we can enable DEX-to-DEX compilation for performance.
516 return kOptimize;
517 } else if (klass->IsCompileTimeVerified()) {
518 // Class verification has soft-failed. Anyway, ensure at least correctness.
519 DCHECK_EQ(klass->GetStatus(), mirror::Class::kStatusRetryVerificationAtRuntime);
520 return kRequired;
521 } else {
522 // Class verification has failed: do not run DEX-to-DEX compilation.
523 return kDontDexToDexCompile;
524 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700525}
526
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800527void CompilerDriver::CompileOne(Thread* self, mirror::ArtMethod* method, TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700528 DCHECK(!Runtime::Current()->IsStarted());
Brian Carlstrom7940e442013-07-12 13:46:57 -0700529 jobject jclass_loader;
530 const DexFile* dex_file;
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700531 uint16_t class_def_idx;
Ian Rogersef7d42f2014-01-06 12:55:46 -0800532 uint32_t method_idx = method->GetDexMethodIndex();
533 uint32_t access_flags = method->GetAccessFlags();
534 InvokeType invoke_type = method->GetInvokeType();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700535 {
536 ScopedObjectAccessUnchecked soa(self);
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800537 ScopedLocalRef<jobject> local_class_loader(
538 soa.Env(), soa.AddLocalReference<jobject>(method->GetDeclaringClass()->GetClassLoader()));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700539 jclass_loader = soa.Env()->NewGlobalRef(local_class_loader.get());
540 // Find the dex_file
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700541 dex_file = method->GetDexFile();
542 class_def_idx = method->GetClassDefIndex();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700543 }
Ian Rogersef7d42f2014-01-06 12:55:46 -0800544 const DexFile::CodeItem* code_item = dex_file->GetCodeItem(method->GetCodeItemOffset());
Brian Carlstrom7940e442013-07-12 13:46:57 -0700545 self->TransitionFromRunnableToSuspended(kNative);
546
547 std::vector<const DexFile*> dex_files;
548 dex_files.push_back(dex_file);
549
Ian Rogers700a4022014-05-19 16:49:03 -0700550 std::unique_ptr<ThreadPool> thread_pool(new ThreadPool("Compiler driver thread pool", 0U));
Ian Rogers3d504072014-03-01 09:16:49 -0800551 PreCompile(jclass_loader, dex_files, thread_pool.get(), timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700552
Brian Carlstrom7940e442013-07-12 13:46:57 -0700553 // Can we run DEX-to-DEX compiler on this class ?
Sebastien Hertz75021222013-07-16 18:34:50 +0200554 DexToDexCompilationLevel dex_to_dex_compilation_level = kDontDexToDexCompile;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700555 {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800556 ScopedObjectAccess soa(self);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700557 const DexFile::ClassDef& class_def = dex_file->GetClassDef(class_def_idx);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700558 StackHandleScope<1> hs(soa.Self());
559 Handle<mirror::ClassLoader> class_loader(
560 hs.NewHandle(soa.Decode<mirror::ClassLoader*>(jclass_loader)));
Ian Rogers98379392014-02-24 16:53:16 -0800561 dex_to_dex_compilation_level = GetDexToDexCompilationlevel(self, class_loader, *dex_file,
562 class_def);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700563 }
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800564 CompileMethod(self, code_item, access_flags, invoke_type, class_def_idx, method_idx,
565 jclass_loader, *dex_file, dex_to_dex_compilation_level, true);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700566
567 self->GetJniEnv()->DeleteGlobalRef(jclass_loader);
Mathieu Chartier2535abe2015-02-17 10:38:49 -0800568 self->TransitionFromSuspendedToRunnable();
Mathieu Chartier2535abe2015-02-17 10:38:49 -0800569}
570
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800571CompiledMethod* CompilerDriver::CompileMethod(Thread* self, mirror::ArtMethod* method) {
572 const uint32_t method_idx = method->GetDexMethodIndex();
573 const uint32_t access_flags = method->GetAccessFlags();
574 const InvokeType invoke_type = method->GetInvokeType();
575 StackHandleScope<1> hs(self);
576 Handle<mirror::ClassLoader> class_loader(hs.NewHandle(
577 method->GetDeclaringClass()->GetClassLoader()));
578 jobject jclass_loader = class_loader.ToJObject();
579 const DexFile* dex_file = method->GetDexFile();
580 const uint16_t class_def_idx = method->GetClassDefIndex();
581 const DexFile::ClassDef& class_def = dex_file->GetClassDef(class_def_idx);
582 DexToDexCompilationLevel dex_to_dex_compilation_level =
583 GetDexToDexCompilationlevel(self, class_loader, *dex_file, class_def);
584 const DexFile::CodeItem* code_item = dex_file->GetCodeItem(method->GetCodeItemOffset());
585 self->TransitionFromRunnableToSuspended(kNative);
586 CompileMethod(self, code_item, access_flags, invoke_type, class_def_idx, method_idx,
587 jclass_loader, *dex_file, dex_to_dex_compilation_level, true);
588 auto* compiled_method = GetCompiledMethod(MethodReference(dex_file, method_idx));
589 self->TransitionFromSuspendedToRunnable();
590 return compiled_method;
591}
592
Brian Carlstrom7940e442013-07-12 13:46:57 -0700593void CompilerDriver::Resolve(jobject class_loader, const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -0800594 ThreadPool* thread_pool, TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700595 for (size_t i = 0; i != dex_files.size(); ++i) {
596 const DexFile* dex_file = dex_files[i];
Kenny Rootd5185342014-05-13 14:47:05 -0700597 CHECK(dex_file != nullptr);
Andreas Gampede7b4362014-07-28 18:38:57 -0700598 ResolveDexFile(class_loader, *dex_file, dex_files, thread_pool, timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700599 }
600}
601
602void CompilerDriver::PreCompile(jobject class_loader, const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -0800603 ThreadPool* thread_pool, TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700604 LoadImageClasses(timings);
Andreas Gampe8d295f82015-01-20 14:50:21 -0800605 VLOG(compiler) << "LoadImageClasses: " << GetMemoryUsageString(false);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700606
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700607 Resolve(class_loader, dex_files, thread_pool, timings);
Andreas Gampe8d295f82015-01-20 14:50:21 -0800608 VLOG(compiler) << "Resolve: " << GetMemoryUsageString(false);
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700609
Jeff Hao4a200f52014-04-01 14:58:49 -0700610 if (!compiler_options_->IsVerificationEnabled()) {
Mathieu Chartierab972ef2014-12-03 17:38:22 -0800611 VLOG(compiler) << "Verify none mode specified, skipping verification.";
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700612 SetVerified(class_loader, dex_files, thread_pool, timings);
Jeff Hao4a200f52014-04-01 14:58:49 -0700613 return;
614 }
615
Brian Carlstrom7940e442013-07-12 13:46:57 -0700616 Verify(class_loader, dex_files, thread_pool, timings);
Andreas Gampe8d295f82015-01-20 14:50:21 -0800617 VLOG(compiler) << "Verify: " << GetMemoryUsageString(false);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700618
619 InitializeClasses(class_loader, dex_files, thread_pool, timings);
Andreas Gampe8d295f82015-01-20 14:50:21 -0800620 VLOG(compiler) << "InitializeClasses: " << GetMemoryUsageString(false);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700621
622 UpdateImageClasses(timings);
Andreas Gampe8d295f82015-01-20 14:50:21 -0800623 VLOG(compiler) << "UpdateImageClasses: " << GetMemoryUsageString(false);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700624}
625
Ian Rogersdfb325e2013-10-30 01:00:44 -0700626bool CompilerDriver::IsImageClass(const char* descriptor) const {
Ian Rogerse6bb3b22013-08-19 21:51:45 -0700627 if (!IsImage()) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700628 return true;
Ian Rogerse6bb3b22013-08-19 21:51:45 -0700629 } else {
Ian Rogersdfb325e2013-10-30 01:00:44 -0700630 return image_classes_->find(descriptor) != image_classes_->end();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700631 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700632}
633
Andreas Gampe4bf3ae92014-11-11 13:28:29 -0800634bool CompilerDriver::IsClassToCompile(const char* descriptor) const {
635 if (!IsImage()) {
636 return true;
637 } else {
638 if (classes_to_compile_ == nullptr) {
639 return true;
640 }
641 return classes_to_compile_->find(descriptor) != classes_to_compile_->end();
642 }
643}
644
Ian Rogerse94652f2014-12-02 11:13:19 -0800645static void ResolveExceptionsForMethod(MutableHandle<mirror::ArtMethod> method_handle,
Ian Rogers700a4022014-05-19 16:49:03 -0700646 std::set<std::pair<uint16_t, const DexFile*>>& exceptions_to_resolve)
Brian Carlstrom7940e442013-07-12 13:46:57 -0700647 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogerse94652f2014-12-02 11:13:19 -0800648 const DexFile::CodeItem* code_item = method_handle->GetCodeItem();
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700649 if (code_item == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700650 return; // native or abstract method
651 }
652 if (code_item->tries_size_ == 0) {
653 return; // nothing to process
654 }
Ian Rogers13735952014-10-08 12:43:28 -0700655 const uint8_t* encoded_catch_handler_list = DexFile::GetCatchHandlerData(*code_item, 0);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700656 size_t num_encoded_catch_handlers = DecodeUnsignedLeb128(&encoded_catch_handler_list);
657 for (size_t i = 0; i < num_encoded_catch_handlers; i++) {
658 int32_t encoded_catch_handler_size = DecodeSignedLeb128(&encoded_catch_handler_list);
659 bool has_catch_all = false;
660 if (encoded_catch_handler_size <= 0) {
661 encoded_catch_handler_size = -encoded_catch_handler_size;
662 has_catch_all = true;
663 }
664 for (int32_t j = 0; j < encoded_catch_handler_size; j++) {
665 uint16_t encoded_catch_handler_handlers_type_idx =
666 DecodeUnsignedLeb128(&encoded_catch_handler_list);
667 // Add to set of types to resolve if not already in the dex cache resolved types
Ian Rogerse94652f2014-12-02 11:13:19 -0800668 if (!method_handle->IsResolvedTypeIdx(encoded_catch_handler_handlers_type_idx)) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700669 exceptions_to_resolve.insert(
670 std::pair<uint16_t, const DexFile*>(encoded_catch_handler_handlers_type_idx,
Ian Rogerse94652f2014-12-02 11:13:19 -0800671 method_handle->GetDexFile()));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700672 }
673 // ignore address associated with catch handler
674 DecodeUnsignedLeb128(&encoded_catch_handler_list);
675 }
676 if (has_catch_all) {
677 // ignore catch all address
678 DecodeUnsignedLeb128(&encoded_catch_handler_list);
679 }
680 }
681}
682
683static bool ResolveCatchBlockExceptionsClassVisitor(mirror::Class* c, void* arg)
684 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers700a4022014-05-19 16:49:03 -0700685 std::set<std::pair<uint16_t, const DexFile*>>* exceptions_to_resolve =
686 reinterpret_cast<std::set<std::pair<uint16_t, const DexFile*>>*>(arg);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700687 StackHandleScope<1> hs(Thread::Current());
Ian Rogerse94652f2014-12-02 11:13:19 -0800688 MutableHandle<mirror::ArtMethod> method_handle(hs.NewHandle<mirror::ArtMethod>(nullptr));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700689 for (size_t i = 0; i < c->NumVirtualMethods(); ++i) {
Ian Rogerse94652f2014-12-02 11:13:19 -0800690 method_handle.Assign(c->GetVirtualMethod(i));
691 ResolveExceptionsForMethod(method_handle, *exceptions_to_resolve);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700692 }
693 for (size_t i = 0; i < c->NumDirectMethods(); ++i) {
Ian Rogerse94652f2014-12-02 11:13:19 -0800694 method_handle.Assign(c->GetDirectMethod(i));
695 ResolveExceptionsForMethod(method_handle, *exceptions_to_resolve);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700696 }
697 return true;
698}
699
700static bool RecordImageClassesVisitor(mirror::Class* klass, void* arg)
701 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers1ff3c982014-08-12 02:30:58 -0700702 std::set<std::string>* image_classes = reinterpret_cast<std::set<std::string>*>(arg);
703 std::string temp;
704 image_classes->insert(klass->GetDescriptor(&temp));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700705 return true;
706}
707
708// Make a list of descriptors for classes to include in the image
Ian Rogers3d504072014-03-01 09:16:49 -0800709void CompilerDriver::LoadImageClasses(TimingLogger* timings)
Brian Carlstrom7940e442013-07-12 13:46:57 -0700710 LOCKS_EXCLUDED(Locks::mutator_lock_) {
Kenny Rootd5185342014-05-13 14:47:05 -0700711 CHECK(timings != nullptr);
Ian Rogerse6bb3b22013-08-19 21:51:45 -0700712 if (!IsImage()) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700713 return;
714 }
715
Mathieu Chartierf5997b42014-06-20 10:37:54 -0700716 TimingLogger::ScopedTiming t("LoadImageClasses", timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700717 // Make a first class to load all classes explicitly listed in the file
718 Thread* self = Thread::Current();
719 ScopedObjectAccess soa(self);
720 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Kenny Rootd5185342014-05-13 14:47:05 -0700721 CHECK(image_classes_.get() != nullptr);
Mathieu Chartier02e25112013-08-14 16:14:24 -0700722 for (auto it = image_classes_->begin(), end = image_classes_->end(); it != end;) {
Vladimir Markoe9c36b32013-11-21 15:49:16 +0000723 const std::string& descriptor(*it);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700724 StackHandleScope<1> hs(self);
725 Handle<mirror::Class> klass(
726 hs.NewHandle(class_linker->FindSystemClass(self, descriptor.c_str())));
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700727 if (klass.Get() == nullptr) {
Ian Rogerse6bb3b22013-08-19 21:51:45 -0700728 VLOG(compiler) << "Failed to find class " << descriptor;
Vladimir Markoe9c36b32013-11-21 15:49:16 +0000729 image_classes_->erase(it++);
Ian Rogersa436fde2013-08-27 23:34:06 -0700730 self->ClearException();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700731 } else {
732 ++it;
733 }
734 }
735
736 // Resolve exception classes referenced by the loaded classes. The catch logic assumes
737 // exceptions are resolved by the verifier when there is a catch block in an interested method.
738 // Do this here so that exception classes appear to have been specified image classes.
Ian Rogers700a4022014-05-19 16:49:03 -0700739 std::set<std::pair<uint16_t, const DexFile*>> unresolved_exception_types;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700740 StackHandleScope<1> hs(self);
741 Handle<mirror::Class> java_lang_Throwable(
742 hs.NewHandle(class_linker->FindSystemClass(self, "Ljava/lang/Throwable;")));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700743 do {
744 unresolved_exception_types.clear();
745 class_linker->VisitClasses(ResolveCatchBlockExceptionsClassVisitor,
746 &unresolved_exception_types);
Mathieu Chartier02e25112013-08-14 16:14:24 -0700747 for (const std::pair<uint16_t, const DexFile*>& exception_type : unresolved_exception_types) {
748 uint16_t exception_type_idx = exception_type.first;
749 const DexFile* dex_file = exception_type.second;
Andreas Gampe277ccbd2014-11-03 21:36:10 -0800750 StackHandleScope<2> hs2(self);
751 Handle<mirror::DexCache> dex_cache(hs2.NewHandle(class_linker->FindDexCache(*dex_file)));
752 Handle<mirror::Class> klass(hs2.NewHandle(
Mathieu Chartier0cd81352014-05-22 16:48:55 -0700753 class_linker->ResolveType(*dex_file, exception_type_idx, dex_cache,
754 NullHandle<mirror::ClassLoader>())));
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700755 if (klass.Get() == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700756 const DexFile::TypeId& type_id = dex_file->GetTypeId(exception_type_idx);
757 const char* descriptor = dex_file->GetTypeDescriptor(type_id);
758 LOG(FATAL) << "Failed to resolve class " << descriptor;
759 }
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700760 DCHECK(java_lang_Throwable->IsAssignableFrom(klass.Get()));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700761 }
762 // Resolving exceptions may load classes that reference more exceptions, iterate until no
763 // more are found
764 } while (!unresolved_exception_types.empty());
765
766 // We walk the roots looking for classes so that we'll pick up the
767 // above classes plus any classes them depend on such super
768 // classes, interfaces, and the required ClassLinker roots.
769 class_linker->VisitClasses(RecordImageClassesVisitor, image_classes_.get());
770
771 CHECK_NE(image_classes_->size(), 0U);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700772}
773
Ian Rogers1ff3c982014-08-12 02:30:58 -0700774static void MaybeAddToImageClasses(Handle<mirror::Class> c, std::set<std::string>* image_classes)
Brian Carlstrom7940e442013-07-12 13:46:57 -0700775 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartierf8322842014-05-16 10:59:25 -0700776 Thread* self = Thread::Current();
777 StackHandleScope<1> hs(self);
778 // Make a copy of the handle so that we don't clobber it doing Assign.
Andreas Gampe5a4b8a22014-09-11 08:30:08 -0700779 MutableHandle<mirror::Class> klass(hs.NewHandle(c.Get()));
Ian Rogers1ff3c982014-08-12 02:30:58 -0700780 std::string temp;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700781 while (!klass->IsObjectClass()) {
Ian Rogers1ff3c982014-08-12 02:30:58 -0700782 const char* descriptor = klass->GetDescriptor(&temp);
783 std::pair<std::set<std::string>::iterator, bool> result = image_classes->insert(descriptor);
784 if (!result.second) { // Previously inserted.
785 break;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700786 }
Ian Rogers1ff3c982014-08-12 02:30:58 -0700787 VLOG(compiler) << "Adding " << descriptor << " to image classes";
Mathieu Chartierf8322842014-05-16 10:59:25 -0700788 for (size_t i = 0; i < klass->NumDirectInterfaces(); ++i) {
Andreas Gampe277ccbd2014-11-03 21:36:10 -0800789 StackHandleScope<1> hs2(self);
790 MaybeAddToImageClasses(hs2.NewHandle(mirror::Class::GetDirectInterface(self, klass, i)),
Mathieu Chartierf8322842014-05-16 10:59:25 -0700791 image_classes);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700792 }
793 if (klass->IsArrayClass()) {
Andreas Gampe277ccbd2014-11-03 21:36:10 -0800794 StackHandleScope<1> hs2(self);
795 MaybeAddToImageClasses(hs2.NewHandle(klass->GetComponentType()), image_classes);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700796 }
Mathieu Chartierf8322842014-05-16 10:59:25 -0700797 klass.Assign(klass->GetSuperClass());
Brian Carlstrom7940e442013-07-12 13:46:57 -0700798 }
799}
800
Andreas Gampeb0f370e2014-09-25 22:51:40 -0700801// Keeps all the data for the update together. Also doubles as the reference visitor.
802// Note: we can use object pointers because we suspend all threads.
803class ClinitImageUpdate {
804 public:
805 static ClinitImageUpdate* Create(std::set<std::string>* image_class_descriptors, Thread* self,
806 ClassLinker* linker, std::string* error_msg) {
807 std::unique_ptr<ClinitImageUpdate> res(new ClinitImageUpdate(image_class_descriptors, self,
808 linker));
809 if (res->art_method_class_ == nullptr) {
810 *error_msg = "Could not find ArtMethod class.";
811 return nullptr;
812 } else if (res->dex_cache_class_ == nullptr) {
813 *error_msg = "Could not find DexCache class.";
814 return nullptr;
815 }
816
817 return res.release();
818 }
819
820 ~ClinitImageUpdate() {
821 // Allow others to suspend again.
822 self_->EndAssertNoThreadSuspension(old_cause_);
823 }
824
825 // Visitor for VisitReferences.
826 void operator()(mirror::Object* object, MemberOffset field_offset, bool /* is_static */) const
827 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
828 mirror::Object* ref = object->GetFieldObject<mirror::Object>(field_offset);
829 if (ref != nullptr) {
830 VisitClinitClassesObject(ref);
831 }
832 }
833
834 // java.lang.Reference visitor for VisitReferences.
Andreas Gampedc8b63c2014-12-02 14:39:52 -0800835 void operator()(mirror::Class* /* klass */, mirror::Reference* /* ref */) const {
Andreas Gampeb0f370e2014-09-25 22:51:40 -0700836 }
837
838 void Walk() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
839 // Use the initial classes as roots for a search.
840 for (mirror::Class* klass_root : image_classes_) {
841 VisitClinitClassesObject(klass_root);
842 }
843 }
844
845 private:
846 ClinitImageUpdate(std::set<std::string>* image_class_descriptors, Thread* self,
847 ClassLinker* linker)
848 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) :
849 image_class_descriptors_(image_class_descriptors), self_(self) {
850 CHECK(linker != nullptr);
851 CHECK(image_class_descriptors != nullptr);
852
853 // Make sure nobody interferes with us.
854 old_cause_ = self->StartAssertNoThreadSuspension("Boot image closure");
855
856 // Find the interesting classes.
Andreas Gampedc8b63c2014-12-02 14:39:52 -0800857 art_method_class_ = linker->LookupClass(self, "Ljava/lang/reflect/ArtMethod;",
858 ComputeModifiedUtf8Hash("Ljava/lang/reflect/ArtMethod;"), nullptr);
859 dex_cache_class_ = linker->LookupClass(self, "Ljava/lang/DexCache;",
860 ComputeModifiedUtf8Hash("Ljava/lang/DexCache;"), nullptr);
Andreas Gampeb0f370e2014-09-25 22:51:40 -0700861
862 // Find all the already-marked classes.
863 WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
864 linker->VisitClasses(FindImageClasses, this);
865 }
866
867 static bool FindImageClasses(mirror::Class* klass, void* arg)
868 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
869 ClinitImageUpdate* data = reinterpret_cast<ClinitImageUpdate*>(arg);
870 std::string temp;
871 const char* name = klass->GetDescriptor(&temp);
872 if (data->image_class_descriptors_->find(name) != data->image_class_descriptors_->end()) {
873 data->image_classes_.push_back(klass);
874 }
875
876 return true;
877 }
878
879 void VisitClinitClassesObject(mirror::Object* object) const
880 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
881 DCHECK(object != nullptr);
882 if (marked_objects_.find(object) != marked_objects_.end()) {
883 // Already processed.
884 return;
885 }
886
887 // Mark it.
888 marked_objects_.insert(object);
889
890 if (object->IsClass()) {
891 // If it is a class, add it.
892 StackHandleScope<1> hs(self_);
893 MaybeAddToImageClasses(hs.NewHandle(object->AsClass()), image_class_descriptors_);
894 } else {
895 // Else visit the object's class.
896 VisitClinitClassesObject(object->GetClass());
897 }
898
899 // If it is not a dex cache or an ArtMethod, visit all references.
900 mirror::Class* klass = object->GetClass();
901 if (klass != art_method_class_ && klass != dex_cache_class_) {
902 object->VisitReferences<false /* visit class */>(*this, *this);
903 }
904 }
905
906 mutable std::unordered_set<mirror::Object*> marked_objects_;
907 std::set<std::string>* const image_class_descriptors_;
908 std::vector<mirror::Class*> image_classes_;
909 const mirror::Class* art_method_class_;
910 const mirror::Class* dex_cache_class_;
911 Thread* const self_;
912 const char* old_cause_;
913
914 DISALLOW_COPY_AND_ASSIGN(ClinitImageUpdate);
915};
Brian Carlstrom7940e442013-07-12 13:46:57 -0700916
Ian Rogers3d504072014-03-01 09:16:49 -0800917void CompilerDriver::UpdateImageClasses(TimingLogger* timings) {
Ian Rogerse6bb3b22013-08-19 21:51:45 -0700918 if (IsImage()) {
Mathieu Chartierf5997b42014-06-20 10:37:54 -0700919 TimingLogger::ScopedTiming t("UpdateImageClasses", timings);
Andreas Gampeb0f370e2014-09-25 22:51:40 -0700920
921 Runtime* current = Runtime::Current();
922
923 // Suspend all threads.
924 current->GetThreadList()->SuspendAll();
925
926 std::string error_msg;
927 std::unique_ptr<ClinitImageUpdate> update(ClinitImageUpdate::Create(image_classes_.get(),
928 Thread::Current(),
929 current->GetClassLinker(),
930 &error_msg));
931 CHECK(update.get() != nullptr) << error_msg; // TODO: Soft failure?
932
933 // Do the marking.
934 update->Walk();
935
936 // Resume threads.
937 current->GetThreadList()->ResumeAll();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700938 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700939}
940
Mathieu Chartier590fee92013-09-13 13:46:47 -0700941bool CompilerDriver::CanAssumeTypeIsPresentInDexCache(const DexFile& dex_file, uint32_t type_idx) {
Ian Rogersfc0e94b2013-09-23 23:51:32 -0700942 if (IsImage() &&
Ian Rogersdfb325e2013-10-30 01:00:44 -0700943 IsImageClass(dex_file.StringDataByIdx(dex_file.GetTypeId(type_idx).descriptor_idx_))) {
Andreas Gampe58a5af82014-07-31 16:23:49 -0700944 {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700945 ScopedObjectAccess soa(Thread::Current());
946 mirror::DexCache* dex_cache = Runtime::Current()->GetClassLinker()->FindDexCache(dex_file);
947 mirror::Class* resolved_class = dex_cache->GetResolvedType(type_idx);
Andreas Gampe58a5af82014-07-31 16:23:49 -0700948 if (resolved_class == nullptr) {
949 // Erroneous class.
950 stats_->TypeNotInDexCache();
951 return false;
952 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700953 }
954 stats_->TypeInDexCache();
955 return true;
956 } else {
957 stats_->TypeNotInDexCache();
958 return false;
959 }
960}
961
962bool CompilerDriver::CanAssumeStringIsPresentInDexCache(const DexFile& dex_file,
963 uint32_t string_idx) {
964 // See also Compiler::ResolveDexFile
965
966 bool result = false;
967 if (IsImage()) {
968 // We resolve all const-string strings when building for the image.
969 ScopedObjectAccess soa(Thread::Current());
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700970 StackHandleScope<1> hs(soa.Self());
971 Handle<mirror::DexCache> dex_cache(
972 hs.NewHandle(Runtime::Current()->GetClassLinker()->FindDexCache(dex_file)));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700973 Runtime::Current()->GetClassLinker()->ResolveString(dex_file, string_idx, dex_cache);
974 result = true;
975 }
976 if (result) {
977 stats_->StringInDexCache();
978 } else {
979 stats_->StringNotInDexCache();
980 }
981 return result;
982}
983
984bool CompilerDriver::CanAccessTypeWithoutChecks(uint32_t referrer_idx, const DexFile& dex_file,
985 uint32_t type_idx,
986 bool* type_known_final, bool* type_known_abstract,
987 bool* equals_referrers_class) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700988 if (type_known_final != nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700989 *type_known_final = false;
990 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700991 if (type_known_abstract != nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700992 *type_known_abstract = false;
993 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700994 if (equals_referrers_class != nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700995 *equals_referrers_class = false;
996 }
997 ScopedObjectAccess soa(Thread::Current());
998 mirror::DexCache* dex_cache = Runtime::Current()->GetClassLinker()->FindDexCache(dex_file);
999 // Get type from dex cache assuming it was populated by the verifier
1000 mirror::Class* resolved_class = dex_cache->GetResolvedType(type_idx);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001001 if (resolved_class == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001002 stats_->TypeNeedsAccessCheck();
1003 return false; // Unknown class needs access checks.
1004 }
1005 const DexFile::MethodId& method_id = dex_file.GetMethodId(referrer_idx);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001006 if (equals_referrers_class != nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001007 *equals_referrers_class = (method_id.class_idx_ == type_idx);
1008 }
1009 mirror::Class* referrer_class = dex_cache->GetResolvedType(method_id.class_idx_);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001010 if (referrer_class == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001011 stats_->TypeNeedsAccessCheck();
1012 return false; // Incomplete referrer knowledge needs access check.
1013 }
1014 // Perform access check, will return true if access is ok or false if we're going to have to
1015 // check this at runtime (for example for class loaders).
1016 bool result = referrer_class->CanAccess(resolved_class);
1017 if (result) {
1018 stats_->TypeDoesntNeedAccessCheck();
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001019 if (type_known_final != nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001020 *type_known_final = resolved_class->IsFinal() && !resolved_class->IsArrayClass();
1021 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001022 if (type_known_abstract != nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001023 *type_known_abstract = resolved_class->IsAbstract() && !resolved_class->IsArrayClass();
1024 }
1025 } else {
1026 stats_->TypeNeedsAccessCheck();
1027 }
1028 return result;
1029}
1030
1031bool CompilerDriver::CanAccessInstantiableTypeWithoutChecks(uint32_t referrer_idx,
1032 const DexFile& dex_file,
1033 uint32_t type_idx) {
1034 ScopedObjectAccess soa(Thread::Current());
1035 mirror::DexCache* dex_cache = Runtime::Current()->GetClassLinker()->FindDexCache(dex_file);
1036 // Get type from dex cache assuming it was populated by the verifier.
1037 mirror::Class* resolved_class = dex_cache->GetResolvedType(type_idx);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001038 if (resolved_class == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001039 stats_->TypeNeedsAccessCheck();
1040 return false; // Unknown class needs access checks.
1041 }
1042 const DexFile::MethodId& method_id = dex_file.GetMethodId(referrer_idx);
1043 mirror::Class* referrer_class = dex_cache->GetResolvedType(method_id.class_idx_);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001044 if (referrer_class == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001045 stats_->TypeNeedsAccessCheck();
1046 return false; // Incomplete referrer knowledge needs access check.
1047 }
1048 // Perform access and instantiable checks, will return true if access is ok or false if we're
1049 // going to have to check this at runtime (for example for class loaders).
1050 bool result = referrer_class->CanAccess(resolved_class) && resolved_class->IsInstantiable();
1051 if (result) {
1052 stats_->TypeDoesntNeedAccessCheck();
1053 } else {
1054 stats_->TypeNeedsAccessCheck();
1055 }
1056 return result;
1057}
1058
Hiroshi Yamauchibe1ca552014-01-15 11:46:48 -08001059bool CompilerDriver::CanEmbedTypeInCode(const DexFile& dex_file, uint32_t type_idx,
1060 bool* is_type_initialized, bool* use_direct_type_ptr,
Mathieu Chartier8668c3c2014-04-24 16:48:11 -07001061 uintptr_t* direct_type_ptr, bool* out_is_finalizable) {
Hiroshi Yamauchibe1ca552014-01-15 11:46:48 -08001062 ScopedObjectAccess soa(Thread::Current());
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08001063 Runtime* runtime = Runtime::Current();
1064 mirror::DexCache* dex_cache = runtime->GetClassLinker()->FindDexCache(dex_file);
Hiroshi Yamauchibe1ca552014-01-15 11:46:48 -08001065 mirror::Class* resolved_class = dex_cache->GetResolvedType(type_idx);
1066 if (resolved_class == nullptr) {
1067 return false;
1068 }
Igor Murashkind6dee672014-10-16 18:36:16 -07001069 if (GetCompilerOptions().GetCompilePic()) {
1070 // Do not allow a direct class pointer to be used when compiling for position-independent
1071 return false;
1072 }
Mathieu Chartier8668c3c2014-04-24 16:48:11 -07001073 *out_is_finalizable = resolved_class->IsFinalizable();
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08001074 gc::Heap* heap = runtime->GetHeap();
1075 const bool compiling_boot = heap->IsCompilingBoot();
Alex Light6e183f22014-07-18 14:57:04 -07001076 const bool support_boot_image_fixup = GetSupportBootImageFixup();
Hiroshi Yamauchibe1ca552014-01-15 11:46:48 -08001077 if (compiling_boot) {
1078 // boot -> boot class pointers.
1079 // True if the class is in the image at boot compiling time.
1080 const bool is_image_class = IsImage() && IsImageClass(
1081 dex_file.StringDataByIdx(dex_file.GetTypeId(type_idx).descriptor_idx_));
1082 // True if pc relative load works.
Hiroshi Yamauchibe1ca552014-01-15 11:46:48 -08001083 if (is_image_class && support_boot_image_fixup) {
1084 *is_type_initialized = resolved_class->IsInitialized();
1085 *use_direct_type_ptr = false;
1086 *direct_type_ptr = 0;
1087 return true;
1088 } else {
1089 return false;
1090 }
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08001091 } else if (runtime->UseJit() && !heap->IsMovableObject(resolved_class)) {
1092 *is_type_initialized = resolved_class->IsInitialized();
1093 // If the class may move around, then don't embed it as a direct pointer.
1094 *use_direct_type_ptr = true;
1095 *direct_type_ptr = reinterpret_cast<uintptr_t>(resolved_class);
1096 return true;
Hiroshi Yamauchibe1ca552014-01-15 11:46:48 -08001097 } else {
1098 // True if the class is in the image at app compiling time.
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08001099 const bool class_in_image = heap->FindSpaceFromObject(resolved_class, false)->IsImageSpace();
Alex Light6e183f22014-07-18 14:57:04 -07001100 if (class_in_image && support_boot_image_fixup) {
Hiroshi Yamauchibe1ca552014-01-15 11:46:48 -08001101 // boot -> app class pointers.
1102 *is_type_initialized = resolved_class->IsInitialized();
Alex Lighta59dd802014-07-02 16:28:08 -07001103 // TODO This is somewhat hacky. We should refactor all of this invoke codepath.
1104 *use_direct_type_ptr = !GetCompilerOptions().GetIncludePatchInformation();
Hiroshi Yamauchibe1ca552014-01-15 11:46:48 -08001105 *direct_type_ptr = reinterpret_cast<uintptr_t>(resolved_class);
1106 return true;
1107 } else {
1108 // app -> app class pointers.
1109 // Give up because app does not have an image and class
1110 // isn't created at compile time. TODO: implement this
1111 // if/when each app gets an image.
1112 return false;
1113 }
1114 }
1115}
1116
Fred Shihe7f82e22014-08-06 10:46:37 -07001117bool CompilerDriver::CanEmbedReferenceTypeInCode(ClassReference* ref,
1118 bool* use_direct_ptr,
1119 uintptr_t* direct_type_ptr) {
1120 CHECK(ref != nullptr);
1121 CHECK(use_direct_ptr != nullptr);
1122 CHECK(direct_type_ptr != nullptr);
1123
1124 ScopedObjectAccess soa(Thread::Current());
1125 mirror::Class* reference_class = mirror::Reference::GetJavaLangRefReference();
Andreas Gampe928f72b2014-09-09 19:53:48 -07001126 bool is_initialized = false;
Fred Shihe7f82e22014-08-06 10:46:37 -07001127 bool unused_finalizable;
1128 // Make sure we have a finished Reference class object before attempting to use it.
1129 if (!CanEmbedTypeInCode(*reference_class->GetDexCache()->GetDexFile(),
1130 reference_class->GetDexTypeIndex(), &is_initialized,
1131 use_direct_ptr, direct_type_ptr, &unused_finalizable) ||
1132 !is_initialized) {
1133 return false;
1134 }
1135 ref->first = &reference_class->GetDexFile();
1136 ref->second = reference_class->GetDexClassDefIndex();
1137 return true;
1138}
1139
1140uint32_t CompilerDriver::GetReferenceSlowFlagOffset() const {
1141 ScopedObjectAccess soa(Thread::Current());
1142 mirror::Class* klass = mirror::Reference::GetJavaLangRefReference();
1143 DCHECK(klass->IsInitialized());
1144 return klass->GetSlowPathFlagOffset().Uint32Value();
1145}
1146
1147uint32_t CompilerDriver::GetReferenceDisableFlagOffset() const {
1148 ScopedObjectAccess soa(Thread::Current());
1149 mirror::Class* klass = mirror::Reference::GetJavaLangRefReference();
1150 DCHECK(klass->IsInitialized());
1151 return klass->GetDisableIntrinsicFlagOffset().Uint32Value();
1152}
1153
Vladimir Markobe0e5462014-02-26 11:24:15 +00001154void CompilerDriver::ProcessedInstanceField(bool resolved) {
1155 if (!resolved) {
1156 stats_->UnresolvedInstanceField();
1157 } else {
1158 stats_->ResolvedInstanceField();
1159 }
1160}
1161
1162void CompilerDriver::ProcessedStaticField(bool resolved, bool local) {
1163 if (!resolved) {
1164 stats_->UnresolvedStaticField();
1165 } else if (local) {
1166 stats_->ResolvedLocalStaticField();
1167 } else {
1168 stats_->ResolvedStaticField();
1169 }
1170}
1171
Vladimir Markof096aad2014-01-23 15:51:58 +00001172void CompilerDriver::ProcessedInvoke(InvokeType invoke_type, int flags) {
1173 stats_->ProcessedInvoke(invoke_type, flags);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001174}
1175
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001176mirror::ArtField* CompilerDriver::ComputeInstanceFieldInfo(uint32_t field_idx,
1177 const DexCompilationUnit* mUnit,
1178 bool is_put,
1179 const ScopedObjectAccess& soa) {
Vladimir Markobe0e5462014-02-26 11:24:15 +00001180 // Try to resolve the field and compiling method's class.
1181 mirror::ArtField* resolved_field;
1182 mirror::Class* referrer_class;
1183 mirror::DexCache* dex_cache;
1184 {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001185 StackHandleScope<3> hs(soa.Self());
1186 Handle<mirror::DexCache> dex_cache_handle(
1187 hs.NewHandle(mUnit->GetClassLinker()->FindDexCache(*mUnit->GetDexFile())));
1188 Handle<mirror::ClassLoader> class_loader_handle(
1189 hs.NewHandle(soa.Decode<mirror::ClassLoader*>(mUnit->GetClassLoader())));
1190 Handle<mirror::ArtField> resolved_field_handle(hs.NewHandle(
1191 ResolveField(soa, dex_cache_handle, class_loader_handle, mUnit, field_idx, false)));
1192 referrer_class = (resolved_field_handle.Get() != nullptr)
1193 ? ResolveCompilingMethodsClass(soa, dex_cache_handle, class_loader_handle, mUnit) : nullptr;
1194 resolved_field = resolved_field_handle.Get();
1195 dex_cache = dex_cache_handle.Get();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001196 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001197 bool can_link = false;
Vladimir Markobe0e5462014-02-26 11:24:15 +00001198 if (resolved_field != nullptr && referrer_class != nullptr) {
Vladimir Markobe0e5462014-02-26 11:24:15 +00001199 std::pair<bool, bool> fast_path = IsFastInstanceField(
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001200 dex_cache, referrer_class, resolved_field, field_idx);
1201 can_link = is_put ? fast_path.second : fast_path.first;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001202 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001203 ProcessedInstanceField(can_link);
1204 return can_link ? resolved_field : nullptr;
1205}
1206
1207bool CompilerDriver::ComputeInstanceFieldInfo(uint32_t field_idx, const DexCompilationUnit* mUnit,
1208 bool is_put, MemberOffset* field_offset,
1209 bool* is_volatile) {
1210 ScopedObjectAccess soa(Thread::Current());
1211 StackHandleScope<1> hs(soa.Self());
1212 Handle<mirror::ArtField> resolved_field =
1213 hs.NewHandle(ComputeInstanceFieldInfo(field_idx, mUnit, is_put, soa));
1214
1215 if (resolved_field.Get() == nullptr) {
Vladimir Markobe0e5462014-02-26 11:24:15 +00001216 // Conservative defaults.
1217 *is_volatile = true;
1218 *field_offset = MemberOffset(static_cast<size_t>(-1));
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001219 return false;
1220 } else {
1221 *is_volatile = resolved_field->IsVolatile();
1222 *field_offset = resolved_field->GetOffset();
1223 return true;
Vladimir Markobe0e5462014-02-26 11:24:15 +00001224 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001225}
1226
1227bool CompilerDriver::ComputeStaticFieldInfo(uint32_t field_idx, const DexCompilationUnit* mUnit,
Vladimir Markobe0e5462014-02-26 11:24:15 +00001228 bool is_put, MemberOffset* field_offset,
1229 uint32_t* storage_index, bool* is_referrers_class,
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01001230 bool* is_volatile, bool* is_initialized,
1231 Primitive::Type* type) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001232 ScopedObjectAccess soa(Thread::Current());
Vladimir Markobe0e5462014-02-26 11:24:15 +00001233 // Try to resolve the field and compiling method's class.
1234 mirror::ArtField* resolved_field;
1235 mirror::Class* referrer_class;
1236 mirror::DexCache* dex_cache;
1237 {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001238 StackHandleScope<3> hs(soa.Self());
1239 Handle<mirror::DexCache> dex_cache_handle(
1240 hs.NewHandle(mUnit->GetClassLinker()->FindDexCache(*mUnit->GetDexFile())));
1241 Handle<mirror::ClassLoader> class_loader_handle(
1242 hs.NewHandle(soa.Decode<mirror::ClassLoader*>(mUnit->GetClassLoader())));
1243 Handle<mirror::ArtField> resolved_field_handle(hs.NewHandle(
1244 ResolveField(soa, dex_cache_handle, class_loader_handle, mUnit, field_idx, true)));
1245 referrer_class = (resolved_field_handle.Get() != nullptr)
1246 ? ResolveCompilingMethodsClass(soa, dex_cache_handle, class_loader_handle, mUnit) : nullptr;
1247 resolved_field = resolved_field_handle.Get();
1248 dex_cache = dex_cache_handle.Get();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001249 }
Vladimir Markobe0e5462014-02-26 11:24:15 +00001250 bool result = false;
1251 if (resolved_field != nullptr && referrer_class != nullptr) {
1252 *is_volatile = IsFieldVolatile(resolved_field);
1253 std::pair<bool, bool> fast_path = IsFastStaticField(
Vladimir Marko66c6d7b2014-10-16 15:41:48 +01001254 dex_cache, referrer_class, resolved_field, field_idx, storage_index);
Vladimir Markobe0e5462014-02-26 11:24:15 +00001255 result = is_put ? fast_path.second : fast_path.first;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001256 }
Vladimir Marko66c6d7b2014-10-16 15:41:48 +01001257 if (result) {
1258 *field_offset = GetFieldOffset(resolved_field);
1259 *is_referrers_class = IsStaticFieldInReferrerClass(referrer_class, resolved_field);
1260 // *is_referrers_class == true implies no worrying about class initialization.
1261 *is_initialized = (*is_referrers_class) ||
1262 (IsStaticFieldsClassInitialized(referrer_class, resolved_field) &&
1263 CanAssumeTypeIsPresentInDexCache(*mUnit->GetDexFile(), *storage_index));
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01001264 *type = resolved_field->GetTypeAsPrimitiveType();
Vladimir Marko66c6d7b2014-10-16 15:41:48 +01001265 } else {
Vladimir Markobe0e5462014-02-26 11:24:15 +00001266 // Conservative defaults.
1267 *is_volatile = true;
1268 *field_offset = MemberOffset(static_cast<size_t>(-1));
1269 *storage_index = -1;
1270 *is_referrers_class = false;
1271 *is_initialized = false;
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01001272 *type = Primitive::kPrimVoid;
Vladimir Markobe0e5462014-02-26 11:24:15 +00001273 }
1274 ProcessedStaticField(result, *is_referrers_class);
1275 return result;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001276}
1277
Ian Rogers83883d72013-10-21 21:07:24 -07001278void CompilerDriver::GetCodeAndMethodForDirectCall(InvokeType* type, InvokeType sharp_type,
1279 bool no_guarantee_of_dex_cache_entry,
Igor Murashkind6dee672014-10-16 18:36:16 -07001280 const mirror::Class* referrer_class,
Brian Carlstromea46f952013-07-30 01:26:50 -07001281 mirror::ArtMethod* method,
Vladimir Markof096aad2014-01-23 15:51:58 +00001282 int* stats_flags,
Ian Rogers83883d72013-10-21 21:07:24 -07001283 MethodReference* target_method,
Ian Rogers65ec92c2013-09-06 10:49:58 -07001284 uintptr_t* direct_code,
1285 uintptr_t* direct_method) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001286 // For direct and static methods compute possible direct_code and direct_method values, ie
1287 // an address for the Method* being invoked and an address of the code for that Method*.
1288 // For interface calls compute a value for direct_method that is the interface method being
1289 // invoked, so this can be passed to the out-of-line runtime support code.
Ian Rogers65ec92c2013-09-06 10:49:58 -07001290 *direct_code = 0;
1291 *direct_method = 0;
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08001292 Runtime* const runtime = Runtime::Current();
1293 gc::Heap* const heap = runtime->GetHeap();
Igor Murashkind6dee672014-10-16 18:36:16 -07001294 bool use_dex_cache = GetCompilerOptions().GetCompilePic(); // Off by default
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08001295 const bool compiling_boot = heap->IsCompilingBoot();
Alex Lighta59dd802014-07-02 16:28:08 -07001296 // TODO This is somewhat hacky. We should refactor all of this invoke codepath.
1297 const bool force_relocations = (compiling_boot ||
1298 GetCompilerOptions().GetIncludePatchInformation());
Elliott Hughes956af0f2014-12-11 14:34:28 -08001299 if (sharp_type != kStatic && sharp_type != kDirect) {
1300 return;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001301 }
Elliott Hughes956af0f2014-12-11 14:34:28 -08001302 // TODO: support patching on all architectures.
1303 use_dex_cache = use_dex_cache || (force_relocations && !support_boot_image_fixup_);
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08001304 mirror::Class* declaring_class = method->GetDeclaringClass();
1305 bool method_code_in_boot = declaring_class->GetClassLoader() == nullptr;
Ian Rogers83883d72013-10-21 21:07:24 -07001306 if (!use_dex_cache) {
1307 if (!method_code_in_boot) {
1308 use_dex_cache = true;
1309 } else {
Brian Carlstrom14247b62015-01-31 21:35:32 -08001310 bool has_clinit_trampoline =
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08001311 method->IsStatic() && !declaring_class->IsInitialized();
1312 if (has_clinit_trampoline && declaring_class != referrer_class) {
Ian Rogers83883d72013-10-21 21:07:24 -07001313 // Ensure we run the clinit trampoline unless we are invoking a static method in the same
1314 // class.
1315 use_dex_cache = true;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001316 }
1317 }
Ian Rogers83883d72013-10-21 21:07:24 -07001318 }
Mathieu Chartier28a35882015-02-26 18:28:07 -08001319 if (runtime->UseJit()) {
1320 // If we are the JIT, then don't allow a direct call to the interpreter bridge since this will
1321 // never be updated even after we compile the method.
1322 if (runtime->GetClassLinker()->IsQuickToInterpreterBridge(
1323 reinterpret_cast<const void*>(compiler_->GetEntryPointOf(method)))) {
1324 use_dex_cache = true;
1325 }
1326 }
Vladimir Markof096aad2014-01-23 15:51:58 +00001327 if (method_code_in_boot) {
1328 *stats_flags |= kFlagDirectCallToBoot | kFlagDirectMethodToBoot;
Ian Rogers83883d72013-10-21 21:07:24 -07001329 }
Alex Lighta59dd802014-07-02 16:28:08 -07001330 if (!use_dex_cache && force_relocations) {
Jeff Haoa0acc2d2015-01-27 11:22:04 -08001331 bool is_in_image;
1332 if (IsImage()) {
1333 is_in_image = IsImageClass(method->GetDeclaringClassDescriptor());
1334 } else {
1335 is_in_image = instruction_set_ != kX86 && instruction_set_ != kX86_64 &&
1336 Runtime::Current()->GetHeap()->FindSpaceFromObject(method->GetDeclaringClass(),
1337 false)->IsImageSpace();
1338 }
1339 if (!is_in_image) {
Ian Rogers83883d72013-10-21 21:07:24 -07001340 // We can only branch directly to Methods that are resolved in the DexCache.
1341 // Otherwise we won't invoke the resolution trampoline.
1342 use_dex_cache = true;
1343 }
1344 }
1345 // The method is defined not within this dex file. We need a dex cache slot within the current
1346 // dex file or direct pointers.
1347 bool must_use_direct_pointers = false;
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08001348 mirror::DexCache* dex_cache = declaring_class->GetDexCache();
1349 if (target_method->dex_file == dex_cache->GetDexFile() &&
1350 !(runtime->UseJit() && dex_cache->GetResolvedMethod(method->GetDexMethodIndex()) == nullptr)) {
Ian Rogers83883d72013-10-21 21:07:24 -07001351 target_method->dex_method_index = method->GetDexMethodIndex();
1352 } else {
Ian Rogers83883d72013-10-21 21:07:24 -07001353 if (no_guarantee_of_dex_cache_entry) {
1354 // See if the method is also declared in this dex cache.
Ian Rogerse0a02da2014-12-02 14:10:53 -08001355 uint32_t dex_method_idx =
1356 method->FindDexMethodIndexInOtherDexFile(*target_method->dex_file,
1357 target_method->dex_method_index);
Ian Rogers83883d72013-10-21 21:07:24 -07001358 if (dex_method_idx != DexFile::kDexNoIndex) {
1359 target_method->dex_method_index = dex_method_idx;
1360 } else {
Alex Lighta59dd802014-07-02 16:28:08 -07001361 if (force_relocations && !use_dex_cache) {
Jeff Hao49161ce2014-03-12 11:05:25 -07001362 target_method->dex_method_index = method->GetDexMethodIndex();
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08001363 target_method->dex_file = dex_cache->GetDexFile();
Jeff Hao49161ce2014-03-12 11:05:25 -07001364 }
Ian Rogers83883d72013-10-21 21:07:24 -07001365 must_use_direct_pointers = true;
1366 }
1367 }
1368 }
1369 if (use_dex_cache) {
1370 if (must_use_direct_pointers) {
1371 // Fail. Test above showed the only safe dispatch was via the dex cache, however, the direct
1372 // pointers are required as the dex cache lacks an appropriate entry.
1373 VLOG(compiler) << "Dex cache devirtualization failed for: " << PrettyMethod(method);
1374 } else {
1375 *type = sharp_type;
1376 }
1377 } else {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08001378 bool method_in_image = heap->FindSpaceFromObject(method, false)->IsImageSpace();
Alex Lighta59dd802014-07-02 16:28:08 -07001379 if (method_in_image || compiling_boot) {
1380 // We know we must be able to get to the method in the image, so use that pointer.
Vladimir Markoa51a0b02014-05-21 12:08:39 +01001381 CHECK(!method->IsAbstract());
Ian Rogers83883d72013-10-21 21:07:24 -07001382 *type = sharp_type;
Alex Lighta59dd802014-07-02 16:28:08 -07001383 *direct_method = force_relocations ? -1 : reinterpret_cast<uintptr_t>(method);
1384 *direct_code = force_relocations ? -1 : compiler_->GetEntryPointOf(method);
Brian Carlstrom14247b62015-01-31 21:35:32 -08001385 target_method->dex_file = method->GetDeclaringClass()->GetDexCache()->GetDexFile();
Vladimir Markoa51a0b02014-05-21 12:08:39 +01001386 target_method->dex_method_index = method->GetDexMethodIndex();
1387 } else if (!must_use_direct_pointers) {
1388 // Set the code and rely on the dex cache for the method.
1389 *type = sharp_type;
Alex Lighta59dd802014-07-02 16:28:08 -07001390 if (force_relocations) {
1391 *direct_code = -1;
Brian Carlstrom14247b62015-01-31 21:35:32 -08001392 target_method->dex_file = method->GetDeclaringClass()->GetDexCache()->GetDexFile();
Alex Lighta59dd802014-07-02 16:28:08 -07001393 target_method->dex_method_index = method->GetDexMethodIndex();
1394 } else {
1395 *direct_code = compiler_->GetEntryPointOf(method);
1396 }
Ian Rogers83883d72013-10-21 21:07:24 -07001397 } else {
Vladimir Markoa51a0b02014-05-21 12:08:39 +01001398 // Direct pointers were required but none were available.
1399 VLOG(compiler) << "Dex cache devirtualization failed for: " << PrettyMethod(method);
Ian Rogers83883d72013-10-21 21:07:24 -07001400 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001401 }
1402}
1403
1404bool CompilerDriver::ComputeInvokeInfo(const DexCompilationUnit* mUnit, const uint32_t dex_pc,
Ian Rogers65ec92c2013-09-06 10:49:58 -07001405 bool update_stats, bool enable_devirtualization,
1406 InvokeType* invoke_type, MethodReference* target_method,
1407 int* vtable_idx, uintptr_t* direct_code,
1408 uintptr_t* direct_method) {
Vladimir Markof096aad2014-01-23 15:51:58 +00001409 InvokeType orig_invoke_type = *invoke_type;
1410 int stats_flags = 0;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001411 ScopedObjectAccess soa(Thread::Current());
Vladimir Markof096aad2014-01-23 15:51:58 +00001412 // Try to resolve the method and compiling method's class.
1413 mirror::ArtMethod* resolved_method;
1414 mirror::Class* referrer_class;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001415 StackHandleScope<3> hs(soa.Self());
1416 Handle<mirror::DexCache> dex_cache(
1417 hs.NewHandle(mUnit->GetClassLinker()->FindDexCache(*mUnit->GetDexFile())));
1418 Handle<mirror::ClassLoader> class_loader(hs.NewHandle(
1419 soa.Decode<mirror::ClassLoader*>(mUnit->GetClassLoader())));
Vladimir Markof096aad2014-01-23 15:51:58 +00001420 {
1421 uint32_t method_idx = target_method->dex_method_index;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001422 Handle<mirror::ArtMethod> resolved_method_handle(hs.NewHandle(
1423 ResolveMethod(soa, dex_cache, class_loader, mUnit, method_idx, orig_invoke_type)));
1424 referrer_class = (resolved_method_handle.Get() != nullptr)
Vladimir Markof096aad2014-01-23 15:51:58 +00001425 ? ResolveCompilingMethodsClass(soa, dex_cache, class_loader, mUnit) : nullptr;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001426 resolved_method = resolved_method_handle.Get();
Vladimir Markof096aad2014-01-23 15:51:58 +00001427 }
1428 bool result = false;
1429 if (resolved_method != nullptr) {
1430 *vtable_idx = GetResolvedMethodVTableIndex(resolved_method, orig_invoke_type);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001431
Nicolas Geoffraye53798a2014-12-01 10:31:54 +00001432 if (enable_devirtualization && mUnit->GetVerifiedMethod() != nullptr) {
Vladimir Markof096aad2014-01-23 15:51:58 +00001433 const MethodReference* devirt_target = mUnit->GetVerifiedMethod()->GetDevirtTarget(dex_pc);
1434
1435 stats_flags = IsFastInvoke(
1436 soa, dex_cache, class_loader, mUnit, referrer_class, resolved_method,
1437 invoke_type, target_method, devirt_target, direct_code, direct_method);
1438 result = stats_flags != 0;
1439 } else {
1440 // Devirtualization not enabled. Inline IsFastInvoke(), dropping the devirtualization parts.
1441 if (UNLIKELY(referrer_class == nullptr) ||
1442 UNLIKELY(!referrer_class->CanAccessResolvedMethod(resolved_method->GetDeclaringClass(),
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001443 resolved_method, dex_cache.Get(),
Vladimir Markof096aad2014-01-23 15:51:58 +00001444 target_method->dex_method_index)) ||
1445 *invoke_type == kSuper) {
1446 // Slow path. (Without devirtualization, all super calls go slow path as well.)
1447 } else {
1448 // Sharpening failed so generate a regular resolved method dispatch.
1449 stats_flags = kFlagMethodResolved;
1450 GetCodeAndMethodForDirectCall(invoke_type, *invoke_type, false, referrer_class, resolved_method,
1451 &stats_flags, target_method, direct_code, direct_method);
1452 result = true;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001453 }
1454 }
1455 }
Vladimir Markof096aad2014-01-23 15:51:58 +00001456 if (!result) {
1457 // Conservative defaults.
1458 *vtable_idx = -1;
1459 *direct_code = 0u;
1460 *direct_method = 0u;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001461 }
1462 if (update_stats) {
Vladimir Markof096aad2014-01-23 15:51:58 +00001463 ProcessedInvoke(orig_invoke_type, stats_flags);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001464 }
Vladimir Markof096aad2014-01-23 15:51:58 +00001465 return result;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001466}
1467
Vladimir Marko2730db02014-01-27 11:15:17 +00001468const VerifiedMethod* CompilerDriver::GetVerifiedMethod(const DexFile* dex_file,
1469 uint32_t method_idx) const {
1470 MethodReference ref(dex_file, method_idx);
1471 return verification_results_->GetVerifiedMethod(ref);
1472}
1473
1474bool CompilerDriver::IsSafeCast(const DexCompilationUnit* mUnit, uint32_t dex_pc) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001475 if (!compiler_options_->IsVerificationEnabled()) {
1476 // If we didn't verify, every cast has to be treated as non-safe.
1477 return false;
1478 }
Vladimir Marko2730db02014-01-27 11:15:17 +00001479 DCHECK(mUnit->GetVerifiedMethod() != nullptr);
1480 bool result = mUnit->GetVerifiedMethod()->IsSafeCast(dex_pc);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001481 if (result) {
1482 stats_->SafeCast();
1483 } else {
1484 stats_->NotASafeCast();
1485 }
1486 return result;
1487}
1488
Brian Carlstrom7940e442013-07-12 13:46:57 -07001489class ParallelCompilationManager {
1490 public:
1491 typedef void Callback(const ParallelCompilationManager* manager, size_t index);
1492
1493 ParallelCompilationManager(ClassLinker* class_linker,
1494 jobject class_loader,
1495 CompilerDriver* compiler,
1496 const DexFile* dex_file,
Andreas Gampede7b4362014-07-28 18:38:57 -07001497 const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -08001498 ThreadPool* thread_pool)
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001499 : index_(0),
1500 class_linker_(class_linker),
Brian Carlstrom7940e442013-07-12 13:46:57 -07001501 class_loader_(class_loader),
1502 compiler_(compiler),
1503 dex_file_(dex_file),
Andreas Gampede7b4362014-07-28 18:38:57 -07001504 dex_files_(dex_files),
Ian Rogers3d504072014-03-01 09:16:49 -08001505 thread_pool_(thread_pool) {}
Brian Carlstrom7940e442013-07-12 13:46:57 -07001506
1507 ClassLinker* GetClassLinker() const {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001508 CHECK(class_linker_ != nullptr);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001509 return class_linker_;
1510 }
1511
1512 jobject GetClassLoader() const {
1513 return class_loader_;
1514 }
1515
1516 CompilerDriver* GetCompiler() const {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001517 CHECK(compiler_ != nullptr);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001518 return compiler_;
1519 }
1520
1521 const DexFile* GetDexFile() const {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001522 CHECK(dex_file_ != nullptr);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001523 return dex_file_;
1524 }
1525
Andreas Gampede7b4362014-07-28 18:38:57 -07001526 const std::vector<const DexFile*>& GetDexFiles() const {
1527 return dex_files_;
1528 }
1529
Brian Carlstrom7940e442013-07-12 13:46:57 -07001530 void ForAll(size_t begin, size_t end, Callback callback, size_t work_units) {
1531 Thread* self = Thread::Current();
1532 self->AssertNoPendingException();
1533 CHECK_GT(work_units, 0U);
1534
Ian Rogers3e5cf302014-05-20 16:40:37 -07001535 index_.StoreRelaxed(begin);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001536 for (size_t i = 0; i < work_units; ++i) {
Sebastien Hertz501baec2013-12-13 12:02:36 +01001537 thread_pool_->AddTask(self, new ForAllClosure(this, end, callback));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001538 }
1539 thread_pool_->StartWorkers(self);
1540
1541 // Ensure we're suspended while we're blocked waiting for the other threads to finish (worker
1542 // thread destructor's called below perform join).
1543 CHECK_NE(self->GetState(), kRunnable);
1544
1545 // Wait for all the worker threads to finish.
1546 thread_pool_->Wait(self, true, false);
1547 }
1548
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001549 size_t NextIndex() {
Ian Rogers3e5cf302014-05-20 16:40:37 -07001550 return index_.FetchAndAddSequentiallyConsistent(1);
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001551 }
1552
Brian Carlstrom7940e442013-07-12 13:46:57 -07001553 private:
Brian Carlstrom7940e442013-07-12 13:46:57 -07001554 class ForAllClosure : public Task {
1555 public:
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001556 ForAllClosure(ParallelCompilationManager* manager, size_t end, Callback* callback)
Brian Carlstrom7940e442013-07-12 13:46:57 -07001557 : manager_(manager),
Brian Carlstrom7940e442013-07-12 13:46:57 -07001558 end_(end),
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001559 callback_(callback) {}
Brian Carlstrom7940e442013-07-12 13:46:57 -07001560
1561 virtual void Run(Thread* self) {
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001562 while (true) {
1563 const size_t index = manager_->NextIndex();
1564 if (UNLIKELY(index >= end_)) {
1565 break;
1566 }
1567 callback_(manager_, index);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001568 self->AssertNoPendingException();
1569 }
1570 }
1571
1572 virtual void Finalize() {
1573 delete this;
1574 }
Brian Carlstrom0cd7ec22013-07-17 23:40:20 -07001575
Brian Carlstrom7940e442013-07-12 13:46:57 -07001576 private:
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001577 ParallelCompilationManager* const manager_;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001578 const size_t end_;
Bernhard Rosenkränzer46053622013-12-12 02:15:52 +01001579 Callback* const callback_;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001580 };
1581
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001582 AtomicInteger index_;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001583 ClassLinker* const class_linker_;
1584 const jobject class_loader_;
1585 CompilerDriver* const compiler_;
1586 const DexFile* const dex_file_;
Andreas Gampede7b4362014-07-28 18:38:57 -07001587 const std::vector<const DexFile*>& dex_files_;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001588 ThreadPool* const thread_pool_;
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001589
1590 DISALLOW_COPY_AND_ASSIGN(ParallelCompilationManager);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001591};
1592
Jeff Hao0e49b422013-11-08 12:16:56 -08001593// A fast version of SkipClass above if the class pointer is available
1594// that avoids the expensive FindInClassPath search.
1595static bool SkipClass(jobject class_loader, const DexFile& dex_file, mirror::Class* klass)
1596 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001597 DCHECK(klass != nullptr);
Jeff Hao0e49b422013-11-08 12:16:56 -08001598 const DexFile& original_dex_file = *klass->GetDexCache()->GetDexFile();
1599 if (&dex_file != &original_dex_file) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001600 if (class_loader == nullptr) {
Jeff Hao0e49b422013-11-08 12:16:56 -08001601 LOG(WARNING) << "Skipping class " << PrettyDescriptor(klass) << " from "
1602 << dex_file.GetLocation() << " previously found in "
1603 << original_dex_file.GetLocation();
1604 }
1605 return true;
1606 }
1607 return false;
1608}
1609
Mathieu Chartier70b63482014-06-27 17:19:04 -07001610static void CheckAndClearResolveException(Thread* self)
1611 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
1612 CHECK(self->IsExceptionPending());
1613 mirror::Throwable* exception = self->GetException(nullptr);
Ian Rogers1ff3c982014-08-12 02:30:58 -07001614 std::string temp;
1615 const char* descriptor = exception->GetClass()->GetDescriptor(&temp);
1616 const char* expected_exceptions[] = {
1617 "Ljava/lang/IllegalAccessError;",
1618 "Ljava/lang/IncompatibleClassChangeError;",
1619 "Ljava/lang/InstantiationError;",
Brian Carlstrom898fcb52014-08-25 23:07:30 -07001620 "Ljava/lang/LinkageError;",
Ian Rogers1ff3c982014-08-12 02:30:58 -07001621 "Ljava/lang/NoClassDefFoundError;",
1622 "Ljava/lang/NoSuchFieldError;",
1623 "Ljava/lang/NoSuchMethodError;"
1624 };
1625 bool found = false;
1626 for (size_t i = 0; (found == false) && (i < arraysize(expected_exceptions)); ++i) {
1627 if (strcmp(descriptor, expected_exceptions[i]) == 0) {
1628 found = true;
1629 }
1630 }
1631 if (!found) {
Brian Carlstrom898fcb52014-08-25 23:07:30 -07001632 LOG(FATAL) << "Unexpected exception " << exception->Dump();
Mathieu Chartier70b63482014-06-27 17:19:04 -07001633 }
1634 self->ClearException();
1635}
1636
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001637static void ResolveClassFieldsAndMethods(const ParallelCompilationManager* manager,
1638 size_t class_def_index)
Brian Carlstrom7940e442013-07-12 13:46:57 -07001639 LOCKS_EXCLUDED(Locks::mutator_lock_) {
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07001640 ATRACE_CALL();
Ian Rogersbe7149f2013-08-20 09:29:39 -07001641 Thread* self = Thread::Current();
1642 jobject jclass_loader = manager->GetClassLoader();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001643 const DexFile& dex_file = *manager->GetDexFile();
Ian Rogersbe7149f2013-08-20 09:29:39 -07001644 ClassLinker* class_linker = manager->GetClassLinker();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001645
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001646 // If an instance field is final then we need to have a barrier on the return, static final
1647 // fields are assigned within the lock held for class initialization. Conservatively assume
1648 // constructor barriers are always required.
1649 bool requires_constructor_barrier = true;
1650
Brian Carlstrom7940e442013-07-12 13:46:57 -07001651 // Method and Field are the worst. We can't resolve without either
1652 // context from the code use (to disambiguate virtual vs direct
1653 // method and instance vs static field) or from class
1654 // definitions. While the compiler will resolve what it can as it
1655 // needs it, here we try to resolve fields and methods used in class
1656 // definitions, since many of them many never be referenced by
1657 // generated code.
1658 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
Ian Rogers68b56852014-08-29 20:19:11 -07001659 ScopedObjectAccess soa(self);
1660 StackHandleScope<2> hs(soa.Self());
1661 Handle<mirror::ClassLoader> class_loader(
1662 hs.NewHandle(soa.Decode<mirror::ClassLoader*>(jclass_loader)));
1663 Handle<mirror::DexCache> dex_cache(hs.NewHandle(class_linker->FindDexCache(dex_file)));
1664 // Resolve the class.
1665 mirror::Class* klass = class_linker->ResolveType(dex_file, class_def.class_idx_, dex_cache,
1666 class_loader);
1667 bool resolve_fields_and_methods;
1668 if (klass == nullptr) {
1669 // Class couldn't be resolved, for example, super-class is in a different dex file. Don't
1670 // attempt to resolve methods and fields when there is no declaring class.
1671 CheckAndClearResolveException(soa.Self());
1672 resolve_fields_and_methods = false;
1673 } else {
1674 // We successfully resolved a class, should we skip it?
1675 if (SkipClass(jclass_loader, dex_file, klass)) {
1676 return;
Brian Carlstromcb5f5e52013-09-23 17:48:16 -07001677 }
Ian Rogers68b56852014-08-29 20:19:11 -07001678 // We want to resolve the methods and fields eagerly.
1679 resolve_fields_and_methods = true;
1680 }
1681 // Note the class_data pointer advances through the headers,
1682 // static fields, instance fields, direct methods, and virtual
1683 // methods.
Ian Rogers13735952014-10-08 12:43:28 -07001684 const uint8_t* class_data = dex_file.GetClassData(class_def);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001685 if (class_data == nullptr) {
Ian Rogers68b56852014-08-29 20:19:11 -07001686 // Empty class such as a marker interface.
1687 requires_constructor_barrier = false;
1688 } else {
1689 ClassDataItemIterator it(dex_file, class_data);
1690 while (it.HasNextStaticField()) {
1691 if (resolve_fields_and_methods) {
1692 mirror::ArtField* field = class_linker->ResolveField(dex_file, it.GetMemberIndex(),
1693 dex_cache, class_loader, true);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001694 if (field == nullptr) {
Ian Rogers68b56852014-08-29 20:19:11 -07001695 CheckAndClearResolveException(soa.Self());
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001696 }
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001697 }
Ian Rogers68b56852014-08-29 20:19:11 -07001698 it.Next();
1699 }
1700 // We require a constructor barrier if there are final instance fields.
1701 requires_constructor_barrier = false;
1702 while (it.HasNextInstanceField()) {
Andreas Gampe51829322014-08-25 15:05:04 -07001703 if (it.MemberIsFinal()) {
Ian Rogers68b56852014-08-29 20:19:11 -07001704 requires_constructor_barrier = true;
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001705 }
1706 if (resolve_fields_and_methods) {
Ian Rogers68b56852014-08-29 20:19:11 -07001707 mirror::ArtField* field = class_linker->ResolveField(dex_file, it.GetMemberIndex(),
1708 dex_cache, class_loader, false);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001709 if (field == nullptr) {
Ian Rogers68b56852014-08-29 20:19:11 -07001710 CheckAndClearResolveException(soa.Self());
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001711 }
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001712 }
Ian Rogers68b56852014-08-29 20:19:11 -07001713 it.Next();
1714 }
1715 if (resolve_fields_and_methods) {
1716 while (it.HasNextDirectMethod()) {
1717 mirror::ArtMethod* method = class_linker->ResolveMethod(dex_file, it.GetMemberIndex(),
1718 dex_cache, class_loader,
1719 NullHandle<mirror::ArtMethod>(),
1720 it.GetMethodInvokeType(class_def));
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001721 if (method == nullptr) {
Ian Rogers68b56852014-08-29 20:19:11 -07001722 CheckAndClearResolveException(soa.Self());
1723 }
1724 it.Next();
1725 }
1726 while (it.HasNextVirtualMethod()) {
1727 mirror::ArtMethod* method = class_linker->ResolveMethod(dex_file, it.GetMemberIndex(),
1728 dex_cache, class_loader,
1729 NullHandle<mirror::ArtMethod>(),
1730 it.GetMethodInvokeType(class_def));
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001731 if (method == nullptr) {
Ian Rogers68b56852014-08-29 20:19:11 -07001732 CheckAndClearResolveException(soa.Self());
1733 }
1734 it.Next();
1735 }
1736 DCHECK(!it.HasNext());
Brian Carlstrom7940e442013-07-12 13:46:57 -07001737 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001738 }
1739 if (requires_constructor_barrier) {
Ian Rogersbe7149f2013-08-20 09:29:39 -07001740 manager->GetCompiler()->AddRequiresConstructorBarrier(self, &dex_file, class_def_index);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001741 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001742}
1743
1744static void ResolveType(const ParallelCompilationManager* manager, size_t type_idx)
1745 LOCKS_EXCLUDED(Locks::mutator_lock_) {
1746 // Class derived values are more complicated, they require the linker and loader.
1747 ScopedObjectAccess soa(Thread::Current());
1748 ClassLinker* class_linker = manager->GetClassLinker();
1749 const DexFile& dex_file = *manager->GetDexFile();
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001750 StackHandleScope<2> hs(soa.Self());
1751 Handle<mirror::DexCache> dex_cache(hs.NewHandle(class_linker->FindDexCache(dex_file)));
1752 Handle<mirror::ClassLoader> class_loader(
1753 hs.NewHandle(soa.Decode<mirror::ClassLoader*>(manager->GetClassLoader())));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001754 mirror::Class* klass = class_linker->ResolveType(dex_file, type_idx, dex_cache, class_loader);
1755
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001756 if (klass == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001757 CHECK(soa.Self()->IsExceptionPending());
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001758 mirror::Throwable* exception = soa.Self()->GetException(nullptr);
Ian Rogersa436fde2013-08-27 23:34:06 -07001759 VLOG(compiler) << "Exception during type resolution: " << exception->Dump();
Mathieu Chartierf8322842014-05-16 10:59:25 -07001760 if (exception->GetClass()->DescriptorEquals("Ljava/lang/OutOfMemoryError;")) {
Ian Rogersa436fde2013-08-27 23:34:06 -07001761 // There's little point continuing compilation if the heap is exhausted.
1762 LOG(FATAL) << "Out of memory during type resolution for compilation";
1763 }
1764 soa.Self()->ClearException();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001765 }
1766}
1767
1768void CompilerDriver::ResolveDexFile(jobject class_loader, const DexFile& dex_file,
Andreas Gampede7b4362014-07-28 18:38:57 -07001769 const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -08001770 ThreadPool* thread_pool, TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001771 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
1772
1773 // TODO: we could resolve strings here, although the string table is largely filled with class
1774 // and method names.
1775
Andreas Gampede7b4362014-07-28 18:38:57 -07001776 ParallelCompilationManager context(class_linker, class_loader, this, &dex_file, dex_files,
1777 thread_pool);
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001778 if (IsImage()) {
1779 // For images we resolve all types, such as array, whereas for applications just those with
1780 // classdefs are resolved by ResolveClassFieldsAndMethods.
Mathieu Chartierf5997b42014-06-20 10:37:54 -07001781 TimingLogger::ScopedTiming t("Resolve Types", timings);
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001782 context.ForAll(0, dex_file.NumTypeIds(), ResolveType, thread_count_);
1783 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001784
Mathieu Chartierf5997b42014-06-20 10:37:54 -07001785 TimingLogger::ScopedTiming t("Resolve MethodsAndFields", timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001786 context.ForAll(0, dex_file.NumClassDefs(), ResolveClassFieldsAndMethods, thread_count_);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001787}
1788
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001789void CompilerDriver::SetVerified(jobject class_loader, const std::vector<const DexFile*>& dex_files,
1790 ThreadPool* thread_pool, TimingLogger* timings) {
1791 for (size_t i = 0; i != dex_files.size(); ++i) {
1792 const DexFile* dex_file = dex_files[i];
1793 CHECK(dex_file != nullptr);
1794 SetVerifiedDexFile(class_loader, *dex_file, dex_files, thread_pool, timings);
1795 }
1796}
1797
Brian Carlstrom7940e442013-07-12 13:46:57 -07001798void CompilerDriver::Verify(jobject class_loader, const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -08001799 ThreadPool* thread_pool, TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001800 for (size_t i = 0; i != dex_files.size(); ++i) {
1801 const DexFile* dex_file = dex_files[i];
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001802 CHECK(dex_file != nullptr);
Andreas Gampede7b4362014-07-28 18:38:57 -07001803 VerifyDexFile(class_loader, *dex_file, dex_files, thread_pool, timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001804 }
1805}
1806
1807static void VerifyClass(const ParallelCompilationManager* manager, size_t class_def_index)
1808 LOCKS_EXCLUDED(Locks::mutator_lock_) {
Anwar Ghuloum67f99412013-08-12 14:19:48 -07001809 ATRACE_CALL();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001810 ScopedObjectAccess soa(Thread::Current());
Jeff Hao0e49b422013-11-08 12:16:56 -08001811 const DexFile& dex_file = *manager->GetDexFile();
1812 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
1813 const char* descriptor = dex_file.GetClassDescriptor(class_def);
1814 ClassLinker* class_linker = manager->GetClassLinker();
1815 jobject jclass_loader = manager->GetClassLoader();
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001816 StackHandleScope<3> hs(soa.Self());
1817 Handle<mirror::ClassLoader> class_loader(
1818 hs.NewHandle(soa.Decode<mirror::ClassLoader*>(jclass_loader)));
1819 Handle<mirror::Class> klass(
1820 hs.NewHandle(class_linker->FindClass(soa.Self(), descriptor, class_loader)));
1821 if (klass.Get() == nullptr) {
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001822 CHECK(soa.Self()->IsExceptionPending());
Brian Carlstrom7940e442013-07-12 13:46:57 -07001823 soa.Self()->ClearException();
1824
1825 /*
1826 * At compile time, we can still structurally verify the class even if FindClass fails.
1827 * This is to ensure the class is structurally sound for compilation. An unsound class
1828 * will be rejected by the verifier and later skipped during compilation in the compiler.
1829 */
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001830 Handle<mirror::DexCache> dex_cache(hs.NewHandle(class_linker->FindDexCache(dex_file)));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001831 std::string error_msg;
Ian Rogers7b078e82014-09-10 14:44:24 -07001832 if (verifier::MethodVerifier::VerifyClass(soa.Self(), &dex_file, dex_cache, class_loader,
1833 &class_def, true, &error_msg) ==
Brian Carlstrom7940e442013-07-12 13:46:57 -07001834 verifier::MethodVerifier::kHardFailure) {
Jeff Hao0e49b422013-11-08 12:16:56 -08001835 LOG(ERROR) << "Verification failed on class " << PrettyDescriptor(descriptor)
Brian Carlstrom7940e442013-07-12 13:46:57 -07001836 << " because: " << error_msg;
1837 }
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001838 } else if (!SkipClass(jclass_loader, dex_file, klass.Get())) {
1839 CHECK(klass->IsResolved()) << PrettyClass(klass.Get());
Ian Rogers7b078e82014-09-10 14:44:24 -07001840 class_linker->VerifyClass(soa.Self(), klass);
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001841
1842 if (klass->IsErroneous()) {
1843 // ClassLinker::VerifyClass throws, which isn't useful in the compiler.
1844 CHECK(soa.Self()->IsExceptionPending());
1845 soa.Self()->ClearException();
1846 }
1847
1848 CHECK(klass->IsCompileTimeVerified() || klass->IsErroneous())
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001849 << PrettyDescriptor(klass.Get()) << ": state=" << klass->GetStatus();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001850 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001851 soa.Self()->AssertNoPendingException();
1852}
1853
1854void CompilerDriver::VerifyDexFile(jobject class_loader, const DexFile& dex_file,
Andreas Gampede7b4362014-07-28 18:38:57 -07001855 const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -08001856 ThreadPool* thread_pool, TimingLogger* timings) {
Mathieu Chartierf5997b42014-06-20 10:37:54 -07001857 TimingLogger::ScopedTiming t("Verify Dex File", timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001858 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Andreas Gampede7b4362014-07-28 18:38:57 -07001859 ParallelCompilationManager context(class_linker, class_loader, this, &dex_file, dex_files,
1860 thread_pool);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001861 context.ForAll(0, dex_file.NumClassDefs(), VerifyClass, thread_count_);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001862}
1863
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001864static void SetVerifiedClass(const ParallelCompilationManager* manager, size_t class_def_index)
1865 LOCKS_EXCLUDED(Locks::mutator_lock_) {
1866 ATRACE_CALL();
1867 ScopedObjectAccess soa(Thread::Current());
1868 const DexFile& dex_file = *manager->GetDexFile();
1869 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
1870 const char* descriptor = dex_file.GetClassDescriptor(class_def);
1871 ClassLinker* class_linker = manager->GetClassLinker();
1872 jobject jclass_loader = manager->GetClassLoader();
1873 StackHandleScope<3> hs(soa.Self());
1874 Handle<mirror::ClassLoader> class_loader(
1875 hs.NewHandle(soa.Decode<mirror::ClassLoader*>(jclass_loader)));
1876 Handle<mirror::Class> klass(
1877 hs.NewHandle(class_linker->FindClass(soa.Self(), descriptor, class_loader)));
1878 // Class might have failed resolution. Then don't set it to verified.
1879 if (klass.Get() != nullptr) {
1880 // Only do this if the class is resolved. If even resolution fails, quickening will go very,
1881 // very wrong.
1882 if (klass->IsResolved()) {
1883 if (klass->GetStatus() < mirror::Class::kStatusVerified) {
1884 ObjectLock<mirror::Class> lock(soa.Self(), klass);
1885 klass->SetStatus(mirror::Class::kStatusVerified, soa.Self());
1886 }
1887 // Record the final class status if necessary.
1888 ClassReference ref(manager->GetDexFile(), class_def_index);
1889 manager->GetCompiler()->RecordClassStatus(ref, klass->GetStatus());
1890 }
Andreas Gampe61ff0092014-09-16 11:23:23 -07001891 } else {
1892 Thread* self = soa.Self();
1893 DCHECK(self->IsExceptionPending());
1894 self->ClearException();
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001895 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001896}
1897
1898void CompilerDriver::SetVerifiedDexFile(jobject class_loader, const DexFile& dex_file,
1899 const std::vector<const DexFile*>& dex_files,
1900 ThreadPool* thread_pool, TimingLogger* timings) {
1901 TimingLogger::ScopedTiming t("Verify Dex File", timings);
1902 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
1903 ParallelCompilationManager context(class_linker, class_loader, this, &dex_file, dex_files,
1904 thread_pool);
1905 context.ForAll(0, dex_file.NumClassDefs(), SetVerifiedClass, thread_count_);
1906}
1907
Brian Carlstrom7940e442013-07-12 13:46:57 -07001908static void InitializeClass(const ParallelCompilationManager* manager, size_t class_def_index)
1909 LOCKS_EXCLUDED(Locks::mutator_lock_) {
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07001910 ATRACE_CALL();
Jeff Hao0e49b422013-11-08 12:16:56 -08001911 jobject jclass_loader = manager->GetClassLoader();
1912 const DexFile& dex_file = *manager->GetDexFile();
1913 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
Jeff Haobcdbbfe2013-11-08 18:03:22 -08001914 const DexFile::TypeId& class_type_id = dex_file.GetTypeId(class_def.class_idx_);
1915 const char* descriptor = dex_file.StringDataByIdx(class_type_id.descriptor_idx_);
Ian Rogersfc0e94b2013-09-23 23:51:32 -07001916
Brian Carlstrom7940e442013-07-12 13:46:57 -07001917 ScopedObjectAccess soa(Thread::Current());
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001918 StackHandleScope<3> hs(soa.Self());
1919 Handle<mirror::ClassLoader> class_loader(
1920 hs.NewHandle(soa.Decode<mirror::ClassLoader*>(jclass_loader)));
1921 Handle<mirror::Class> klass(
1922 hs.NewHandle(manager->GetClassLinker()->FindClass(soa.Self(), descriptor, class_loader)));
Jeff Hao0e49b422013-11-08 12:16:56 -08001923
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001924 if (klass.Get() != nullptr && !SkipClass(jclass_loader, dex_file, klass.Get())) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001925 // Only try to initialize classes that were successfully verified.
1926 if (klass->IsVerified()) {
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07001927 // Attempt to initialize the class but bail if we either need to initialize the super-class
1928 // or static fields.
Ian Rogers7b078e82014-09-10 14:44:24 -07001929 manager->GetClassLinker()->EnsureInitialized(soa.Self(), klass, false, false);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001930 if (!klass->IsInitialized()) {
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07001931 // We don't want non-trivial class initialization occurring on multiple threads due to
1932 // deadlock problems. For example, a parent class is initialized (holding its lock) that
1933 // refers to a sub-class in its static/class initializer causing it to try to acquire the
1934 // sub-class' lock. While on a second thread the sub-class is initialized (holding its lock)
1935 // after first initializing its parents, whose locks are acquired. This leads to a
1936 // parent-to-child and a child-to-parent lock ordering and consequent potential deadlock.
1937 // We need to use an ObjectLock due to potential suspension in the interpreting code. Rather
1938 // than use a special Object for the purpose we use the Class of java.lang.Class.
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001939 Handle<mirror::Class> h_klass(hs.NewHandle(klass->GetClass()));
Mathieu Chartierdb2633c2014-05-16 09:59:29 -07001940 ObjectLock<mirror::Class> lock(soa.Self(), h_klass);
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07001941 // Attempt to initialize allowing initialization of parent classes but still not static
1942 // fields.
Ian Rogers7b078e82014-09-10 14:44:24 -07001943 manager->GetClassLinker()->EnsureInitialized(soa.Self(), klass, false, true);
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07001944 if (!klass->IsInitialized()) {
1945 // We need to initialize static fields, we only do this for image classes that aren't
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001946 // marked with the $NoPreloadHolder (which implies this should not be initialized early).
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07001947 bool can_init_static_fields = manager->GetCompiler()->IsImage() &&
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001948 manager->GetCompiler()->IsImageClass(descriptor) &&
1949 !StringPiece(descriptor).ends_with("$NoPreloadHolder;");
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07001950 if (can_init_static_fields) {
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001951 VLOG(compiler) << "Initializing: " << descriptor;
Ian Rogersc45b8b52014-05-03 01:39:59 -07001952 // TODO multithreading support. We should ensure the current compilation thread has
1953 // exclusive access to the runtime and the transaction. To achieve this, we could use
1954 // a ReaderWriterMutex but we're holding the mutator lock so we fail mutex sanity
1955 // checks in Thread::AssertThreadSuspensionIsAllowable.
1956 Runtime* const runtime = Runtime::Current();
1957 Transaction transaction;
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001958
Ian Rogersc45b8b52014-05-03 01:39:59 -07001959 // Run the class initializer in transaction mode.
1960 runtime->EnterTransactionMode(&transaction);
1961 const mirror::Class::Status old_status = klass->GetStatus();
Ian Rogers7b078e82014-09-10 14:44:24 -07001962 bool success = manager->GetClassLinker()->EnsureInitialized(soa.Self(), klass, true,
1963 true);
Ian Rogersc45b8b52014-05-03 01:39:59 -07001964 // TODO we detach transaction from runtime to indicate we quit the transactional
1965 // mode which prevents the GC from visiting objects modified during the transaction.
1966 // Ensure GC is not run so don't access freed objects when aborting transaction.
Mathieu Chartier2d5f39e2014-09-19 17:52:37 -07001967
1968 ScopedAssertNoThreadSuspension ants(soa.Self(), "Transaction end");
Ian Rogersc45b8b52014-05-03 01:39:59 -07001969 runtime->ExitTransactionMode();
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001970
Ian Rogersc45b8b52014-05-03 01:39:59 -07001971 if (!success) {
1972 CHECK(soa.Self()->IsExceptionPending());
1973 ThrowLocation throw_location;
1974 mirror::Throwable* exception = soa.Self()->GetException(&throw_location);
1975 VLOG(compiler) << "Initialization of " << descriptor << " aborted because of "
1976 << exception->Dump();
Andreas Gampedbfe2542014-11-25 22:21:42 -08001977 std::ostream* file_log = manager->GetCompiler()->
1978 GetCompilerOptions().GetInitFailureOutput();
1979 if (file_log != nullptr) {
1980 *file_log << descriptor << "\n";
1981 *file_log << exception->Dump() << "\n";
1982 }
Ian Rogersc45b8b52014-05-03 01:39:59 -07001983 soa.Self()->ClearException();
Sebastien Hertz1c80bec2015-02-03 11:58:06 +01001984 transaction.Rollback();
Ian Rogersc45b8b52014-05-03 01:39:59 -07001985 CHECK_EQ(old_status, klass->GetStatus()) << "Previous class status not restored";
Brian Carlstrom7940e442013-07-12 13:46:57 -07001986 }
1987 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001988 }
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07001989 soa.Self()->AssertNoPendingException();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001990 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001991 }
1992 // Record the final class status if necessary.
Brian Carlstrom7940e442013-07-12 13:46:57 -07001993 ClassReference ref(manager->GetDexFile(), class_def_index);
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07001994 manager->GetCompiler()->RecordClassStatus(ref, klass->GetStatus());
Brian Carlstrom7940e442013-07-12 13:46:57 -07001995 }
1996 // Clear any class not found or verification exceptions.
1997 soa.Self()->ClearException();
1998}
1999
2000void CompilerDriver::InitializeClasses(jobject jni_class_loader, const DexFile& dex_file,
Andreas Gampede7b4362014-07-28 18:38:57 -07002001 const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -08002002 ThreadPool* thread_pool, TimingLogger* timings) {
Mathieu Chartierf5997b42014-06-20 10:37:54 -07002003 TimingLogger::ScopedTiming t("InitializeNoClinit", timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002004 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Andreas Gampede7b4362014-07-28 18:38:57 -07002005 ParallelCompilationManager context(class_linker, jni_class_loader, this, &dex_file, dex_files,
2006 thread_pool);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01002007 size_t thread_count;
2008 if (IsImage()) {
2009 // TODO: remove this when transactional mode supports multithreading.
2010 thread_count = 1U;
2011 } else {
2012 thread_count = thread_count_;
2013 }
2014 context.ForAll(0, dex_file.NumClassDefs(), InitializeClass, thread_count);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002015}
2016
2017void CompilerDriver::InitializeClasses(jobject class_loader,
2018 const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -08002019 ThreadPool* thread_pool, TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07002020 for (size_t i = 0; i != dex_files.size(); ++i) {
2021 const DexFile* dex_file = dex_files[i];
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002022 CHECK(dex_file != nullptr);
Andreas Gampede7b4362014-07-28 18:38:57 -07002023 InitializeClasses(class_loader, *dex_file, dex_files, thread_pool, timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002024 }
Mathieu Chartier093ef212014-08-11 13:52:12 -07002025 if (IsImage()) {
2026 // Prune garbage objects created during aborted transactions.
2027 Runtime::Current()->GetHeap()->CollectGarbage(true);
2028 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002029}
2030
2031void CompilerDriver::Compile(jobject class_loader, const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -08002032 ThreadPool* thread_pool, TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07002033 for (size_t i = 0; i != dex_files.size(); ++i) {
2034 const DexFile* dex_file = dex_files[i];
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002035 CHECK(dex_file != nullptr);
Andreas Gampede7b4362014-07-28 18:38:57 -07002036 CompileDexFile(class_loader, *dex_file, dex_files, thread_pool, timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002037 }
Andreas Gampe8d295f82015-01-20 14:50:21 -08002038 VLOG(compiler) << "Compile: " << GetMemoryUsageString(false);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002039}
2040
2041void CompilerDriver::CompileClass(const ParallelCompilationManager* manager, size_t class_def_index) {
Anwar Ghuloum67f99412013-08-12 14:19:48 -07002042 ATRACE_CALL();
Brian Carlstrom7940e442013-07-12 13:46:57 -07002043 const DexFile& dex_file = *manager->GetDexFile();
2044 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
Ian Rogersbe7149f2013-08-20 09:29:39 -07002045 ClassLinker* class_linker = manager->GetClassLinker();
Ian Rogers1ff3c982014-08-12 02:30:58 -07002046 jobject jclass_loader = manager->GetClassLoader();
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08002047 Thread* self = Thread::Current();
Ian Rogers1ff3c982014-08-12 02:30:58 -07002048 {
2049 // Use a scoped object access to perform to the quick SkipClass check.
2050 const char* descriptor = dex_file.GetClassDescriptor(class_def);
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08002051 ScopedObjectAccess soa(self);
Ian Rogers1ff3c982014-08-12 02:30:58 -07002052 StackHandleScope<3> hs(soa.Self());
2053 Handle<mirror::ClassLoader> class_loader(
2054 hs.NewHandle(soa.Decode<mirror::ClassLoader*>(jclass_loader)));
2055 Handle<mirror::Class> klass(
2056 hs.NewHandle(class_linker->FindClass(soa.Self(), descriptor, class_loader)));
2057 if (klass.Get() == nullptr) {
2058 CHECK(soa.Self()->IsExceptionPending());
2059 soa.Self()->ClearException();
2060 } else if (SkipClass(jclass_loader, dex_file, klass.Get())) {
2061 return;
2062 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002063 }
2064 ClassReference ref(&dex_file, class_def_index);
2065 // Skip compiling classes with generic verifier failures since they will still fail at runtime
Vladimir Markoc7f83202014-01-24 17:55:18 +00002066 if (manager->GetCompiler()->verification_results_->IsClassRejected(ref)) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07002067 return;
2068 }
Ian Rogers13735952014-10-08 12:43:28 -07002069 const uint8_t* class_data = dex_file.GetClassData(class_def);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002070 if (class_data == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07002071 // empty class, probably a marker interface
2072 return;
2073 }
Anwar Ghuloum67f99412013-08-12 14:19:48 -07002074
Brian Carlstrom7940e442013-07-12 13:46:57 -07002075 // Can we run DEX-to-DEX compiler on this class ?
Sebastien Hertz75021222013-07-16 18:34:50 +02002076 DexToDexCompilationLevel dex_to_dex_compilation_level = kDontDexToDexCompile;
Brian Carlstrom7940e442013-07-12 13:46:57 -07002077 {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08002078 ScopedObjectAccess soa(self);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07002079 StackHandleScope<1> hs(soa.Self());
2080 Handle<mirror::ClassLoader> class_loader(
2081 hs.NewHandle(soa.Decode<mirror::ClassLoader*>(jclass_loader)));
Ian Rogers98379392014-02-24 16:53:16 -08002082 dex_to_dex_compilation_level = GetDexToDexCompilationlevel(soa.Self(), class_loader, dex_file,
2083 class_def);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002084 }
2085 ClassDataItemIterator it(dex_file, class_data);
2086 // Skip fields
2087 while (it.HasNextStaticField()) {
2088 it.Next();
2089 }
2090 while (it.HasNextInstanceField()) {
2091 it.Next();
2092 }
Ian Rogersbe7149f2013-08-20 09:29:39 -07002093 CompilerDriver* driver = manager->GetCompiler();
Andreas Gampe4bf3ae92014-11-11 13:28:29 -08002094
2095 bool compilation_enabled = driver->IsClassToCompile(
2096 dex_file.StringByTypeIdx(class_def.class_idx_));
2097
Brian Carlstrom7940e442013-07-12 13:46:57 -07002098 // Compile direct methods
2099 int64_t previous_direct_method_idx = -1;
2100 while (it.HasNextDirectMethod()) {
2101 uint32_t method_idx = it.GetMemberIndex();
2102 if (method_idx == previous_direct_method_idx) {
2103 // smali can create dex files with two encoded_methods sharing the same method_idx
2104 // http://code.google.com/p/smali/issues/detail?id=119
2105 it.Next();
2106 continue;
2107 }
2108 previous_direct_method_idx = method_idx;
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08002109 driver->CompileMethod(self, it.GetMethodCodeItem(), it.GetMethodAccessFlags(),
Ian Rogersbe7149f2013-08-20 09:29:39 -07002110 it.GetMethodInvokeType(class_def), class_def_index,
Andreas Gampe4bf3ae92014-11-11 13:28:29 -08002111 method_idx, jclass_loader, dex_file, dex_to_dex_compilation_level,
2112 compilation_enabled);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002113 it.Next();
2114 }
2115 // Compile virtual methods
2116 int64_t previous_virtual_method_idx = -1;
2117 while (it.HasNextVirtualMethod()) {
2118 uint32_t method_idx = it.GetMemberIndex();
2119 if (method_idx == previous_virtual_method_idx) {
2120 // smali can create dex files with two encoded_methods sharing the same method_idx
2121 // http://code.google.com/p/smali/issues/detail?id=119
2122 it.Next();
2123 continue;
2124 }
2125 previous_virtual_method_idx = method_idx;
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08002126 driver->CompileMethod(self, it.GetMethodCodeItem(), it.GetMethodAccessFlags(),
Ian Rogersbe7149f2013-08-20 09:29:39 -07002127 it.GetMethodInvokeType(class_def), class_def_index,
Andreas Gampe4bf3ae92014-11-11 13:28:29 -08002128 method_idx, jclass_loader, dex_file, dex_to_dex_compilation_level,
2129 compilation_enabled);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002130 it.Next();
2131 }
2132 DCHECK(!it.HasNext());
2133}
2134
2135void CompilerDriver::CompileDexFile(jobject class_loader, const DexFile& dex_file,
Andreas Gampede7b4362014-07-28 18:38:57 -07002136 const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -08002137 ThreadPool* thread_pool, TimingLogger* timings) {
Mathieu Chartierf5997b42014-06-20 10:37:54 -07002138 TimingLogger::ScopedTiming t("Compile Dex File", timings);
Ian Rogersbe7149f2013-08-20 09:29:39 -07002139 ParallelCompilationManager context(Runtime::Current()->GetClassLinker(), class_loader, this,
Andreas Gampede7b4362014-07-28 18:38:57 -07002140 &dex_file, dex_files, thread_pool);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002141 context.ForAll(0, dex_file.NumClassDefs(), CompilerDriver::CompileClass, thread_count_);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002142}
2143
Ian Rogersa4a3f402014-10-20 18:10:34 -07002144// Does the runtime for the InstructionSet provide an implementation returned by
2145// GetQuickGenericJniStub allowing down calls that aren't compiled using a JNI compiler?
2146static bool InstructionSetHasGenericJniStub(InstructionSet isa) {
2147 switch (isa) {
2148 case kArm:
2149 case kArm64:
2150 case kThumb2:
Douglas Leung735b8552014-10-31 12:21:40 -07002151 case kMips:
Andreas Gampe57b34292015-01-14 15:45:59 -08002152 case kMips64:
Ian Rogersa4a3f402014-10-20 18:10:34 -07002153 case kX86:
2154 case kX86_64: return true;
2155 default: return false;
2156 }
2157}
2158
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08002159void CompilerDriver::CompileMethod(Thread* self, const DexFile::CodeItem* code_item,
2160 uint32_t access_flags, InvokeType invoke_type,
2161 uint16_t class_def_idx, uint32_t method_idx,
2162 jobject class_loader, const DexFile& dex_file,
Andreas Gampe4bf3ae92014-11-11 13:28:29 -08002163 DexToDexCompilationLevel dex_to_dex_compilation_level,
2164 bool compilation_enabled) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002165 CompiledMethod* compiled_method = nullptr;
Mathieu Chartier8e219ae2014-08-19 14:29:46 -07002166 uint64_t start_ns = kTimeCompileMethod ? NanoTime() : 0;
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002167 MethodReference method_ref(&dex_file, method_idx);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002168
2169 if ((access_flags & kAccNative) != 0) {
Ian Rogers0188ab72014-03-17 16:51:53 -07002170 // Are we interpreting only and have support for generic JNI down calls?
Jeff Hao4a200f52014-04-01 14:58:49 -07002171 if (!compiler_options_->IsCompilationEnabled() &&
Ian Rogersa4a3f402014-10-20 18:10:34 -07002172 InstructionSetHasGenericJniStub(instruction_set_)) {
Ian Rogers5b271492014-03-14 13:20:26 -07002173 // Leaving this empty will trigger the generic JNI version
2174 } else {
Ian Rogers72d32622014-05-06 16:20:11 -07002175 compiled_method = compiler_->JniCompile(access_flags, method_idx, dex_file);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002176 CHECK(compiled_method != nullptr);
Ian Rogers5b271492014-03-14 13:20:26 -07002177 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002178 } else if ((access_flags & kAccAbstract) != 0) {
Ian Rogersa4a3f402014-10-20 18:10:34 -07002179 // Abstract methods don't have code.
Brian Carlstrom7940e442013-07-12 13:46:57 -07002180 } else {
Andreas Gampe6c170c92014-12-17 14:35:46 -08002181 bool has_verified_method = verification_results_->GetVerifiedMethod(method_ref) != nullptr;
Andreas Gampe4bf3ae92014-11-11 13:28:29 -08002182 bool compile = compilation_enabled &&
Andreas Gampe6c170c92014-12-17 14:35:46 -08002183 // Basic checks, e.g., not <clinit>.
2184 verification_results_->IsCandidateForCompilation(method_ref, access_flags) &&
2185 // Did not fail to create VerifiedMethod metadata.
2186 has_verified_method;
Sebastien Hertz4d4adb12013-07-24 16:14:19 +02002187 if (compile) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002188 // NOTE: if compiler declines to compile this method, it will return nullptr.
Ian Rogers72d32622014-05-06 16:20:11 -07002189 compiled_method = compiler_->Compile(code_item, access_flags, invoke_type, class_def_idx,
2190 method_idx, class_loader, dex_file);
Sebastien Hertz17965ed2014-04-04 15:59:53 +02002191 }
2192 if (compiled_method == nullptr && dex_to_dex_compilation_level != kDontDexToDexCompile) {
2193 // TODO: add a command-line option to disable DEX-to-DEX compilation ?
Andreas Gampe6c170c92014-12-17 14:35:46 -08002194 // Do not optimize if a VerifiedMethod is missing. SafeCast elision, for example, relies on
2195 // it.
Sebastien Hertz75021222013-07-16 18:34:50 +02002196 (*dex_to_dex_compiler_)(*this, code_item, access_flags,
2197 invoke_type, class_def_idx,
2198 method_idx, class_loader, dex_file,
Andreas Gampe6c170c92014-12-17 14:35:46 -08002199 has_verified_method ? dex_to_dex_compilation_level : kRequired);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002200 }
2201 }
Mathieu Chartier8e219ae2014-08-19 14:29:46 -07002202 if (kTimeCompileMethod) {
2203 uint64_t duration_ns = NanoTime() - start_ns;
2204 if (duration_ns > MsToNs(compiler_->GetMaximumCompilationTimeBeforeWarning())) {
2205 LOG(WARNING) << "Compilation of " << PrettyMethod(method_idx, dex_file)
2206 << " took " << PrettyDuration(duration_ns);
2207 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002208 }
2209
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002210 if (compiled_method != nullptr) {
Vladimir Markof4da6752014-08-01 19:04:18 +01002211 // Count non-relative linker patches.
2212 size_t non_relative_linker_patch_count = 0u;
2213 for (const LinkerPatch& patch : compiled_method->GetPatches()) {
2214 if (patch.Type() != kLinkerPatchCallRelative) {
2215 ++non_relative_linker_patch_count;
2216 }
2217 }
Igor Murashkind6dee672014-10-16 18:36:16 -07002218 bool compile_pic = GetCompilerOptions().GetCompilePic(); // Off by default
2219 // When compiling with PIC, there should be zero non-relative linker patches
2220 CHECK(!compile_pic || non_relative_linker_patch_count == 0u);
2221
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002222 DCHECK(GetCompiledMethod(method_ref) == nullptr) << PrettyMethod(method_idx, dex_file);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002223 {
2224 MutexLock mu(self, compiled_methods_lock_);
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002225 compiled_methods_.Put(method_ref, compiled_method);
Vladimir Markof4da6752014-08-01 19:04:18 +01002226 non_relative_linker_patch_count_ += non_relative_linker_patch_count;
Brian Carlstrom7940e442013-07-12 13:46:57 -07002227 }
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002228 DCHECK(GetCompiledMethod(method_ref) != nullptr) << PrettyMethod(method_idx, dex_file);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002229 }
2230
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002231 // Done compiling, delete the verified method to reduce native memory usage.
2232 verification_results_->RemoveVerifiedMethod(method_ref);
2233
Brian Carlstrom7940e442013-07-12 13:46:57 -07002234 if (self->IsExceptionPending()) {
2235 ScopedObjectAccess soa(self);
2236 LOG(FATAL) << "Unexpected exception compiling: " << PrettyMethod(method_idx, dex_file) << "\n"
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002237 << self->GetException(nullptr)->Dump();
Brian Carlstrom7940e442013-07-12 13:46:57 -07002238 }
2239}
2240
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08002241void CompilerDriver::RemoveCompiledMethod(const MethodReference& method_ref) {
2242 CompiledMethod* compiled_method = nullptr;
2243 {
2244 MutexLock mu(Thread::Current(), compiled_methods_lock_);
2245 auto it = compiled_methods_.find(method_ref);
2246 if (it != compiled_methods_.end()) {
2247 compiled_method = it->second;
2248 compiled_methods_.erase(it);
2249 }
2250 }
2251 if (compiled_method != nullptr) {
2252 CompiledMethod::ReleaseSwapAllocatedCompiledMethod(this, compiled_method);
2253 }
2254}
2255
Brian Carlstrom7940e442013-07-12 13:46:57 -07002256CompiledClass* CompilerDriver::GetCompiledClass(ClassReference ref) const {
2257 MutexLock mu(Thread::Current(), compiled_classes_lock_);
2258 ClassTable::const_iterator it = compiled_classes_.find(ref);
2259 if (it == compiled_classes_.end()) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002260 return nullptr;
Brian Carlstrom7940e442013-07-12 13:46:57 -07002261 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002262 CHECK(it->second != nullptr);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002263 return it->second;
2264}
2265
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07002266void CompilerDriver::RecordClassStatus(ClassReference ref, mirror::Class::Status status) {
2267 MutexLock mu(Thread::Current(), compiled_classes_lock_);
2268 auto it = compiled_classes_.find(ref);
2269 if (it == compiled_classes_.end() || it->second->GetStatus() != status) {
2270 // An entry doesn't exist or the status is lower than the new status.
2271 if (it != compiled_classes_.end()) {
2272 CHECK_GT(status, it->second->GetStatus());
2273 delete it->second;
2274 }
2275 switch (status) {
2276 case mirror::Class::kStatusNotReady:
2277 case mirror::Class::kStatusError:
2278 case mirror::Class::kStatusRetryVerificationAtRuntime:
2279 case mirror::Class::kStatusVerified:
2280 case mirror::Class::kStatusInitialized:
2281 break; // Expected states.
2282 default:
2283 LOG(FATAL) << "Unexpected class status for class "
2284 << PrettyDescriptor(ref.first->GetClassDescriptor(ref.first->GetClassDef(ref.second)))
2285 << " of " << status;
2286 }
2287 CompiledClass* compiled_class = new CompiledClass(status);
2288 compiled_classes_.Overwrite(ref, compiled_class);
2289 }
2290}
2291
Brian Carlstrom7940e442013-07-12 13:46:57 -07002292CompiledMethod* CompilerDriver::GetCompiledMethod(MethodReference ref) const {
2293 MutexLock mu(Thread::Current(), compiled_methods_lock_);
2294 MethodTable::const_iterator it = compiled_methods_.find(ref);
2295 if (it == compiled_methods_.end()) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002296 return nullptr;
Brian Carlstrom7940e442013-07-12 13:46:57 -07002297 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002298 CHECK(it->second != nullptr);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002299 return it->second;
2300}
2301
Vladimir Markof4da6752014-08-01 19:04:18 +01002302size_t CompilerDriver::GetNonRelativeLinkerPatchCount() const {
2303 MutexLock mu(Thread::Current(), compiled_methods_lock_);
2304 return non_relative_linker_patch_count_;
2305}
2306
Brian Carlstrom7940e442013-07-12 13:46:57 -07002307void CompilerDriver::AddRequiresConstructorBarrier(Thread* self, const DexFile* dex_file,
Ian Rogers8b2c0b92013-09-19 02:56:49 -07002308 uint16_t class_def_index) {
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07002309 WriterMutexLock mu(self, freezing_constructor_lock_);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002310 freezing_constructor_classes_.insert(ClassReference(dex_file, class_def_index));
2311}
2312
2313bool CompilerDriver::RequiresConstructorBarrier(Thread* self, const DexFile* dex_file,
Ian Rogers8b2c0b92013-09-19 02:56:49 -07002314 uint16_t class_def_index) {
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07002315 ReaderMutexLock mu(self, freezing_constructor_lock_);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002316 return freezing_constructor_classes_.count(ClassReference(dex_file, class_def_index)) != 0;
2317}
2318
2319bool CompilerDriver::WriteElf(const std::string& android_root,
2320 bool is_host,
2321 const std::vector<const art::DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -08002322 OatWriter* oat_writer,
Brian Carlstrom7940e442013-07-12 13:46:57 -07002323 art::File* file)
2324 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers72d32622014-05-06 16:20:11 -07002325 return compiler_->WriteElf(file, oat_writer, dex_files, android_root, is_host);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002326}
2327void CompilerDriver::InstructionSetToLLVMTarget(InstructionSet instruction_set,
Ian Rogers3d504072014-03-01 09:16:49 -08002328 std::string* target_triple,
2329 std::string* target_cpu,
2330 std::string* target_attr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07002331 switch (instruction_set) {
2332 case kThumb2:
Ian Rogers3d504072014-03-01 09:16:49 -08002333 *target_triple = "thumb-none-linux-gnueabi";
2334 *target_cpu = "cortex-a9";
2335 *target_attr = "+thumb2,+neon,+neonfp,+vfp3,+db";
Brian Carlstrom7940e442013-07-12 13:46:57 -07002336 break;
2337
2338 case kArm:
Ian Rogers3d504072014-03-01 09:16:49 -08002339 *target_triple = "armv7-none-linux-gnueabi";
Brian Carlstrom7940e442013-07-12 13:46:57 -07002340 // TODO: Fix for Nexus S.
Ian Rogers3d504072014-03-01 09:16:49 -08002341 *target_cpu = "cortex-a9";
Brian Carlstrom7940e442013-07-12 13:46:57 -07002342 // TODO: Fix for Xoom.
Ian Rogers3d504072014-03-01 09:16:49 -08002343 *target_attr = "+v7,+neon,+neonfp,+vfp3,+db";
Brian Carlstrom7940e442013-07-12 13:46:57 -07002344 break;
2345
2346 case kX86:
Ian Rogers3d504072014-03-01 09:16:49 -08002347 *target_triple = "i386-pc-linux-gnu";
2348 *target_attr = "";
Brian Carlstrom7940e442013-07-12 13:46:57 -07002349 break;
2350
Dmitry Petrochenko6a58cb12014-04-02 17:27:59 +07002351 case kX86_64:
2352 *target_triple = "x86_64-pc-linux-gnu";
2353 *target_attr = "";
2354 break;
2355
Brian Carlstrom7940e442013-07-12 13:46:57 -07002356 case kMips:
Ian Rogers3d504072014-03-01 09:16:49 -08002357 *target_triple = "mipsel-unknown-linux";
2358 *target_attr = "mips32r2";
Brian Carlstrom7940e442013-07-12 13:46:57 -07002359 break;
2360
2361 default:
2362 LOG(FATAL) << "Unknown instruction set: " << instruction_set;
2363 }
2364 }
Dave Allison39c3bfb2014-01-28 18:33:52 -08002365
Dave Allison39c3bfb2014-01-28 18:33:52 -08002366bool CompilerDriver::SkipCompilation(const std::string& method_name) {
Calin Juravlec1b643c2014-05-30 23:44:11 +01002367 if (!profile_present_) {
Dave Allison644789f2014-04-10 13:06:10 -07002368 return false;
Dave Allison39c3bfb2014-01-28 18:33:52 -08002369 }
Calin Juravlebb0b53f2014-05-23 17:33:29 +01002370 // First find the method in the profile file.
2371 ProfileFile::ProfileData data;
2372 if (!profile_file_.GetProfileData(&data, method_name)) {
Dave Allison39c3bfb2014-01-28 18:33:52 -08002373 // Not in profile, no information can be determined.
Calin Juravle08f7a2d2014-06-23 15:22:29 +01002374 if (kIsDebugBuild) {
2375 VLOG(compiler) << "not compiling " << method_name << " because it's not in the profile";
2376 }
Dave Allison39c3bfb2014-01-28 18:33:52 -08002377 return true;
2378 }
Calin Juravlebb0b53f2014-05-23 17:33:29 +01002379
2380 // Methods that comprise top_k_threshold % of the total samples will be compiled.
Calin Juravlef6a4cee2014-04-02 17:03:08 +01002381 // Compare against the start of the topK percentage bucket just in case the threshold
Calin Juravle04ff2262014-04-02 19:08:47 +01002382 // falls inside a bucket.
Calin Juravlec1b643c2014-05-30 23:44:11 +01002383 bool compile = data.GetTopKUsedPercentage() - data.GetUsedPercent()
2384 <= compiler_options_->GetTopKProfileThreshold();
Calin Juravle08f7a2d2014-06-23 15:22:29 +01002385 if (kIsDebugBuild) {
2386 if (compile) {
2387 LOG(INFO) << "compiling method " << method_name << " because its usage is part of top "
2388 << data.GetTopKUsedPercentage() << "% with a percent of " << data.GetUsedPercent() << "%"
2389 << " (topKThreshold=" << compiler_options_->GetTopKProfileThreshold() << ")";
2390 } else {
2391 VLOG(compiler) << "not compiling method " << method_name
2392 << " because it's not part of leading " << compiler_options_->GetTopKProfileThreshold()
2393 << "% samples)";
2394 }
Dave Allison39c3bfb2014-01-28 18:33:52 -08002395 }
2396 return !compile;
2397}
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002398
Andreas Gampe8d295f82015-01-20 14:50:21 -08002399std::string CompilerDriver::GetMemoryUsageString(bool extended) const {
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002400 std::ostringstream oss;
2401 const ArenaPool* arena_pool = GetArenaPool();
2402 gc::Heap* heap = Runtime::Current()->GetHeap();
2403 oss << "arena alloc=" << PrettySize(arena_pool->GetBytesAllocated());
2404 oss << " java alloc=" << PrettySize(heap->GetBytesAllocated());
2405#ifdef HAVE_MALLOC_H
2406 struct mallinfo info = mallinfo();
2407 const size_t allocated_space = static_cast<size_t>(info.uordblks);
2408 const size_t free_space = static_cast<size_t>(info.fordblks);
2409 oss << " native alloc=" << PrettySize(allocated_space) << " free="
2410 << PrettySize(free_space);
2411#endif
Andreas Gampee21dc3d2014-12-08 16:59:43 -08002412 if (swap_space_.get() != nullptr) {
2413 oss << " swap=" << PrettySize(swap_space_->GetSize());
2414 }
Andreas Gampe8d295f82015-01-20 14:50:21 -08002415 if (extended) {
2416 oss << "\nCode dedupe: " << dedupe_code_.DumpStats();
2417 oss << "\nMapping table dedupe: " << dedupe_mapping_table_.DumpStats();
2418 oss << "\nVmap table dedupe: " << dedupe_vmap_table_.DumpStats();
2419 oss << "\nGC map dedupe: " << dedupe_gc_map_.DumpStats();
2420 oss << "\nCFI info dedupe: " << dedupe_cfi_info_.DumpStats();
2421 }
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002422 return oss.str();
2423}
2424
Brian Carlstrom7940e442013-07-12 13:46:57 -07002425} // namespace art