blob: 5c790bee9283febc2adf099705d4f5fa9e49e6e2 [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
Calin Juravlef6a4cee2014-04-02 17:03:08 +010022#include <fstream>
Anwar Ghuloum67f99412013-08-12 14:19:48 -070023#include <vector>
Brian Carlstrom7940e442013-07-12 13:46:57 -070024#include <unistd.h>
Calin Juravlef6a4cee2014-04-02 17:03:08 +010025#include <utility>
Brian Carlstrom7940e442013-07-12 13:46:57 -070026
27#include "base/stl_util.h"
28#include "base/timing_logger.h"
29#include "class_linker.h"
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +000030#include "compiler.h"
Vladimir Markobe0e5462014-02-26 11:24:15 +000031#include "compiler_driver-inl.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070032#include "dex_compilation_unit.h"
33#include "dex_file-inl.h"
Vladimir Markoc7f83202014-01-24 17:55:18 +000034#include "dex/verification_results.h"
Vladimir Marko2730db02014-01-27 11:15:17 +000035#include "dex/verified_method.h"
Vladimir Marko2bc47802014-02-10 09:43:07 +000036#include "dex/quick/dex_file_method_inliner.h"
Mark Mendellae9fd932014-02-10 16:14:35 -080037#include "driver/compiler_options.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070038#include "jni_internal.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070039#include "object_utils.h"
40#include "runtime.h"
41#include "gc/accounting/card_table-inl.h"
42#include "gc/accounting/heap_bitmap.h"
43#include "gc/space/space.h"
Brian Carlstromea46f952013-07-30 01:26:50 -070044#include "mirror/art_field-inl.h"
45#include "mirror/art_method-inl.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070046#include "mirror/class_loader.h"
47#include "mirror/class-inl.h"
48#include "mirror/dex_cache-inl.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070049#include "mirror/object-inl.h"
50#include "mirror/object_array-inl.h"
51#include "mirror/throwable.h"
52#include "scoped_thread_state_change.h"
53#include "ScopedLocalRef.h"
Mathieu Chartierc645f1d2014-03-06 18:11:53 -080054#include "sirt_ref-inl.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070055#include "thread.h"
56#include "thread_pool.h"
Ian Rogers848871b2013-08-05 10:56:33 -070057#include "trampolines/trampoline_compiler.h"
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +010058#include "transaction.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070059#include "verifier/method_verifier.h"
Vladimir Marko2bc47802014-02-10 09:43:07 +000060#include "verifier/method_verifier-inl.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070061
Brian Carlstrom7940e442013-07-12 13:46:57 -070062namespace art {
63
64static double Percentage(size_t x, size_t y) {
65 return 100.0 * (static_cast<double>(x)) / (static_cast<double>(x + y));
66}
67
68static void DumpStat(size_t x, size_t y, const char* str) {
69 if (x == 0 && y == 0) {
70 return;
71 }
Ian Rogerse732ef12013-10-09 15:22:24 -070072 LOG(INFO) << Percentage(x, y) << "% of " << str << " for " << (x + y) << " cases";
Brian Carlstrom7940e442013-07-12 13:46:57 -070073}
74
Vladimir Markof096aad2014-01-23 15:51:58 +000075class CompilerDriver::AOTCompilationStats {
Brian Carlstrom7940e442013-07-12 13:46:57 -070076 public:
77 AOTCompilationStats()
78 : stats_lock_("AOT compilation statistics lock"),
79 types_in_dex_cache_(0), types_not_in_dex_cache_(0),
80 strings_in_dex_cache_(0), strings_not_in_dex_cache_(0),
81 resolved_types_(0), unresolved_types_(0),
82 resolved_instance_fields_(0), unresolved_instance_fields_(0),
83 resolved_local_static_fields_(0), resolved_static_fields_(0), unresolved_static_fields_(0),
84 type_based_devirtualization_(0),
85 safe_casts_(0), not_safe_casts_(0) {
86 for (size_t i = 0; i <= kMaxInvokeType; i++) {
87 resolved_methods_[i] = 0;
88 unresolved_methods_[i] = 0;
89 virtual_made_direct_[i] = 0;
90 direct_calls_to_boot_[i] = 0;
91 direct_methods_to_boot_[i] = 0;
92 }
93 }
94
95 void Dump() {
96 DumpStat(types_in_dex_cache_, types_not_in_dex_cache_, "types known to be in dex cache");
97 DumpStat(strings_in_dex_cache_, strings_not_in_dex_cache_, "strings known to be in dex cache");
98 DumpStat(resolved_types_, unresolved_types_, "types resolved");
99 DumpStat(resolved_instance_fields_, unresolved_instance_fields_, "instance fields resolved");
100 DumpStat(resolved_local_static_fields_ + resolved_static_fields_, unresolved_static_fields_,
101 "static fields resolved");
102 DumpStat(resolved_local_static_fields_, resolved_static_fields_ + unresolved_static_fields_,
103 "static fields local to a class");
104 DumpStat(safe_casts_, not_safe_casts_, "check-casts removed based on type information");
105 // Note, the code below subtracts the stat value so that when added to the stat value we have
106 // 100% of samples. TODO: clean this up.
107 DumpStat(type_based_devirtualization_,
108 resolved_methods_[kVirtual] + unresolved_methods_[kVirtual] +
109 resolved_methods_[kInterface] + unresolved_methods_[kInterface] -
110 type_based_devirtualization_,
111 "virtual/interface calls made direct based on type information");
112
113 for (size_t i = 0; i <= kMaxInvokeType; i++) {
114 std::ostringstream oss;
115 oss << static_cast<InvokeType>(i) << " methods were AOT resolved";
116 DumpStat(resolved_methods_[i], unresolved_methods_[i], oss.str().c_str());
117 if (virtual_made_direct_[i] > 0) {
118 std::ostringstream oss2;
119 oss2 << static_cast<InvokeType>(i) << " methods made direct";
120 DumpStat(virtual_made_direct_[i],
121 resolved_methods_[i] + unresolved_methods_[i] - virtual_made_direct_[i],
122 oss2.str().c_str());
123 }
124 if (direct_calls_to_boot_[i] > 0) {
125 std::ostringstream oss2;
126 oss2 << static_cast<InvokeType>(i) << " method calls are direct into boot";
127 DumpStat(direct_calls_to_boot_[i],
128 resolved_methods_[i] + unresolved_methods_[i] - direct_calls_to_boot_[i],
129 oss2.str().c_str());
130 }
131 if (direct_methods_to_boot_[i] > 0) {
132 std::ostringstream oss2;
133 oss2 << static_cast<InvokeType>(i) << " method calls have methods in boot";
134 DumpStat(direct_methods_to_boot_[i],
135 resolved_methods_[i] + unresolved_methods_[i] - direct_methods_to_boot_[i],
136 oss2.str().c_str());
137 }
138 }
139 }
140
141// Allow lossy statistics in non-debug builds.
142#ifndef NDEBUG
143#define STATS_LOCK() MutexLock mu(Thread::Current(), stats_lock_)
144#else
145#define STATS_LOCK()
146#endif
147
148 void TypeInDexCache() {
149 STATS_LOCK();
150 types_in_dex_cache_++;
151 }
152
153 void TypeNotInDexCache() {
154 STATS_LOCK();
155 types_not_in_dex_cache_++;
156 }
157
158 void StringInDexCache() {
159 STATS_LOCK();
160 strings_in_dex_cache_++;
161 }
162
163 void StringNotInDexCache() {
164 STATS_LOCK();
165 strings_not_in_dex_cache_++;
166 }
167
168 void TypeDoesntNeedAccessCheck() {
169 STATS_LOCK();
170 resolved_types_++;
171 }
172
173 void TypeNeedsAccessCheck() {
174 STATS_LOCK();
175 unresolved_types_++;
176 }
177
178 void ResolvedInstanceField() {
179 STATS_LOCK();
180 resolved_instance_fields_++;
181 }
182
183 void UnresolvedInstanceField() {
184 STATS_LOCK();
185 unresolved_instance_fields_++;
186 }
187
188 void ResolvedLocalStaticField() {
189 STATS_LOCK();
190 resolved_local_static_fields_++;
191 }
192
193 void ResolvedStaticField() {
194 STATS_LOCK();
195 resolved_static_fields_++;
196 }
197
198 void UnresolvedStaticField() {
199 STATS_LOCK();
200 unresolved_static_fields_++;
201 }
202
203 // Indicate that type information from the verifier led to devirtualization.
204 void PreciseTypeDevirtualization() {
205 STATS_LOCK();
206 type_based_devirtualization_++;
207 }
208
209 // Indicate that a method of the given type was resolved at compile time.
210 void ResolvedMethod(InvokeType type) {
211 DCHECK_LE(type, kMaxInvokeType);
212 STATS_LOCK();
213 resolved_methods_[type]++;
214 }
215
216 // Indicate that a method of the given type was unresolved at compile time as it was in an
217 // unknown dex file.
218 void UnresolvedMethod(InvokeType type) {
219 DCHECK_LE(type, kMaxInvokeType);
220 STATS_LOCK();
221 unresolved_methods_[type]++;
222 }
223
224 // Indicate that a type of virtual method dispatch has been converted into a direct method
225 // dispatch.
226 void VirtualMadeDirect(InvokeType type) {
227 DCHECK(type == kVirtual || type == kInterface || type == kSuper);
228 STATS_LOCK();
229 virtual_made_direct_[type]++;
230 }
231
232 // Indicate that a method of the given type was able to call directly into boot.
233 void DirectCallsToBoot(InvokeType type) {
234 DCHECK_LE(type, kMaxInvokeType);
235 STATS_LOCK();
236 direct_calls_to_boot_[type]++;
237 }
238
239 // Indicate that a method of the given type was able to be resolved directly from boot.
240 void DirectMethodsToBoot(InvokeType type) {
241 DCHECK_LE(type, kMaxInvokeType);
242 STATS_LOCK();
243 direct_methods_to_boot_[type]++;
244 }
245
Vladimir Markof096aad2014-01-23 15:51:58 +0000246 void ProcessedInvoke(InvokeType type, int flags) {
247 STATS_LOCK();
248 if (flags == 0) {
249 unresolved_methods_[type]++;
250 } else {
251 DCHECK_NE((flags & kFlagMethodResolved), 0);
252 resolved_methods_[type]++;
253 if ((flags & kFlagVirtualMadeDirect) != 0) {
254 virtual_made_direct_[type]++;
255 if ((flags & kFlagPreciseTypeDevirtualization) != 0) {
256 type_based_devirtualization_++;
257 }
258 } else {
259 DCHECK_EQ((flags & kFlagPreciseTypeDevirtualization), 0);
260 }
261 if ((flags & kFlagDirectCallToBoot) != 0) {
262 direct_calls_to_boot_[type]++;
263 }
264 if ((flags & kFlagDirectMethodToBoot) != 0) {
265 direct_methods_to_boot_[type]++;
266 }
267 }
268 }
269
Brian Carlstrom7940e442013-07-12 13:46:57 -0700270 // A check-cast could be eliminated due to verifier type analysis.
271 void SafeCast() {
272 STATS_LOCK();
273 safe_casts_++;
274 }
275
276 // A check-cast couldn't be eliminated due to verifier type analysis.
277 void NotASafeCast() {
278 STATS_LOCK();
279 not_safe_casts_++;
280 }
281
282 private:
283 Mutex stats_lock_;
284
285 size_t types_in_dex_cache_;
286 size_t types_not_in_dex_cache_;
287
288 size_t strings_in_dex_cache_;
289 size_t strings_not_in_dex_cache_;
290
291 size_t resolved_types_;
292 size_t unresolved_types_;
293
294 size_t resolved_instance_fields_;
295 size_t unresolved_instance_fields_;
296
297 size_t resolved_local_static_fields_;
298 size_t resolved_static_fields_;
299 size_t unresolved_static_fields_;
300 // Type based devirtualization for invoke interface and virtual.
301 size_t type_based_devirtualization_;
302
303 size_t resolved_methods_[kMaxInvokeType + 1];
304 size_t unresolved_methods_[kMaxInvokeType + 1];
305 size_t virtual_made_direct_[kMaxInvokeType + 1];
306 size_t direct_calls_to_boot_[kMaxInvokeType + 1];
307 size_t direct_methods_to_boot_[kMaxInvokeType + 1];
308
309 size_t safe_casts_;
310 size_t not_safe_casts_;
311
312 DISALLOW_COPY_AND_ASSIGN(AOTCompilationStats);
313};
314
Brian Carlstrom7940e442013-07-12 13:46:57 -0700315
316extern "C" art::CompiledMethod* ArtCompileDEX(art::CompilerDriver& compiler,
317 const art::DexFile::CodeItem* code_item,
318 uint32_t access_flags,
319 art::InvokeType invoke_type,
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700320 uint16_t class_def_idx,
Brian Carlstrom7940e442013-07-12 13:46:57 -0700321 uint32_t method_idx,
322 jobject class_loader,
323 const art::DexFile& dex_file);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700324
Brian Carlstrom6449c622014-02-10 23:48:36 -0800325CompilerDriver::CompilerDriver(const CompilerOptions* compiler_options,
326 VerificationResults* verification_results,
Vladimir Marko5816ed42013-11-27 17:04:20 +0000327 DexFileToMethodInlinerMap* method_inliner_map,
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +0000328 Compiler::Kind compiler_kind,
Nicolas Geoffrayf5df8972014-02-14 18:37:08 +0000329 InstructionSet instruction_set,
Dave Allison70202782013-10-22 17:52:19 -0700330 InstructionSetFeatures instruction_set_features,
buzbeea024a062013-07-31 10:47:37 -0700331 bool image, DescriptorSet* image_classes, size_t thread_count,
Dave Allison39c3bfb2014-01-28 18:33:52 -0800332 bool dump_stats, bool dump_passes, CumulativeLogger* timer,
333 std::string profile_file)
334 : profile_ok_(false), compiler_options_(compiler_options),
Brian Carlstrom6449c622014-02-10 23:48:36 -0800335 verification_results_(verification_results),
Vladimir Marko5816ed42013-11-27 17:04:20 +0000336 method_inliner_map_(method_inliner_map),
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +0000337 compiler_(Compiler::Create(compiler_kind)),
Brian Carlstrom7940e442013-07-12 13:46:57 -0700338 instruction_set_(instruction_set),
Dave Allison70202782013-10-22 17:52:19 -0700339 instruction_set_features_(instruction_set_features),
Brian Carlstrom7940e442013-07-12 13:46:57 -0700340 freezing_constructor_lock_("freezing constructor lock"),
341 compiled_classes_lock_("compiled classes lock"),
342 compiled_methods_lock_("compiled method lock"),
343 image_(image),
344 image_classes_(image_classes),
345 thread_count_(thread_count),
Brian Carlstrom7940e442013-07-12 13:46:57 -0700346 start_ns_(0),
347 stats_(new AOTCompilationStats),
348 dump_stats_(dump_stats),
Nicolas Geoffrayea3fa0b2014-02-10 11:59:41 +0000349 dump_passes_(dump_passes),
350 timings_logger_(timer),
Brian Carlstrom7940e442013-07-12 13:46:57 -0700351 compiler_library_(NULL),
Brian Carlstrom7940e442013-07-12 13:46:57 -0700352 compiler_context_(NULL),
Brian Carlstrom7940e442013-07-12 13:46:57 -0700353 compiler_enable_auto_elf_loading_(NULL),
354 compiler_get_method_code_addr_(NULL),
Mark Mendell55d0eac2014-02-06 11:02:52 -0800355 support_boot_image_fixup_(instruction_set != kMips),
Mark Mendellae9fd932014-02-10 16:14:35 -0800356 cfi_info_(nullptr),
Ian Rogersd133b972013-09-05 11:01:30 -0700357 dedupe_code_("dedupe code"),
358 dedupe_mapping_table_("dedupe mapping table"),
359 dedupe_vmap_table_("dedupe vmap table"),
Mark Mendellae9fd932014-02-10 16:14:35 -0800360 dedupe_gc_map_("dedupe gc map"),
361 dedupe_cfi_info_("dedupe cfi info") {
Brian Carlstrom6449c622014-02-10 23:48:36 -0800362 DCHECK(compiler_options_ != nullptr);
363 DCHECK(verification_results_ != nullptr);
364 DCHECK(method_inliner_map_ != nullptr);
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700365
Brian Carlstrom7940e442013-07-12 13:46:57 -0700366 CHECK_PTHREAD_CALL(pthread_key_create, (&tls_key_, NULL), "compiler tls key");
367
Dave Allison39c3bfb2014-01-28 18:33:52 -0800368 // Read the profile file if one is provided.
369 if (profile_file != "") {
370 profile_ok_ = ReadProfile(profile_file);
371 }
372
Sebastien Hertz75021222013-07-16 18:34:50 +0200373 dex_to_dex_compiler_ = reinterpret_cast<DexToDexCompilerFn>(ArtCompileDEX);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700374
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +0000375 compiler_->Init(*this);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700376
377 CHECK(!Runtime::Current()->IsStarted());
378 if (!image_) {
379 CHECK(image_classes_.get() == NULL);
380 }
Mark Mendellae9fd932014-02-10 16:14:35 -0800381
382 // Are we generating CFI information?
383 if (compiler_options->GetGenerateGDBInformation()) {
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +0000384 cfi_info_.reset(compiler_->GetCallFrameInformationInitialization(*this));
Mark Mendellae9fd932014-02-10 16:14:35 -0800385 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700386}
387
Mathieu Chartier193bad92013-08-29 18:46:00 -0700388std::vector<uint8_t>* CompilerDriver::DeduplicateCode(const std::vector<uint8_t>& code) {
389 return dedupe_code_.Add(Thread::Current(), code);
390}
391
392std::vector<uint8_t>* CompilerDriver::DeduplicateMappingTable(const std::vector<uint8_t>& code) {
393 return dedupe_mapping_table_.Add(Thread::Current(), code);
394}
395
396std::vector<uint8_t>* CompilerDriver::DeduplicateVMapTable(const std::vector<uint8_t>& code) {
397 return dedupe_vmap_table_.Add(Thread::Current(), code);
398}
399
400std::vector<uint8_t>* CompilerDriver::DeduplicateGCMap(const std::vector<uint8_t>& code) {
401 return dedupe_gc_map_.Add(Thread::Current(), code);
402}
403
Mark Mendellae9fd932014-02-10 16:14:35 -0800404std::vector<uint8_t>* CompilerDriver::DeduplicateCFIInfo(const std::vector<uint8_t>* cfi_info) {
405 if (cfi_info == nullptr) {
406 return nullptr;
407 }
408 return dedupe_cfi_info_.Add(Thread::Current(), *cfi_info);
409}
410
Brian Carlstrom7940e442013-07-12 13:46:57 -0700411CompilerDriver::~CompilerDriver() {
412 Thread* self = Thread::Current();
413 {
414 MutexLock mu(self, compiled_classes_lock_);
415 STLDeleteValues(&compiled_classes_);
416 }
417 {
418 MutexLock mu(self, compiled_methods_lock_);
419 STLDeleteValues(&compiled_methods_);
420 }
421 {
422 MutexLock mu(self, compiled_methods_lock_);
423 STLDeleteElements(&code_to_patch_);
424 }
425 {
426 MutexLock mu(self, compiled_methods_lock_);
427 STLDeleteElements(&methods_to_patch_);
428 }
Hiroshi Yamauchibe1ca552014-01-15 11:46:48 -0800429 {
430 MutexLock mu(self, compiled_methods_lock_);
431 STLDeleteElements(&classes_to_patch_);
432 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700433 CHECK_PTHREAD_CALL(pthread_key_delete, (tls_key_), "delete tls key");
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +0000434 compiler_->UnInit(*this);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700435}
436
437CompilerTls* CompilerDriver::GetTls() {
438 // Lazily create thread-local storage
439 CompilerTls* res = static_cast<CompilerTls*>(pthread_getspecific(tls_key_));
440 if (res == NULL) {
441 res = new CompilerTls();
442 CHECK_PTHREAD_CALL(pthread_setspecific, (tls_key_, res), "compiler tls");
443 }
444 return res;
445}
446
Ian Rogers848871b2013-08-05 10:56:33 -0700447const std::vector<uint8_t>* CompilerDriver::CreateInterpreterToInterpreterBridge() const {
448 return CreateTrampoline(instruction_set_, kInterpreterAbi,
449 INTERPRETER_ENTRYPOINT_OFFSET(pInterpreterToInterpreterBridge));
450}
451
452const std::vector<uint8_t>* CompilerDriver::CreateInterpreterToCompiledCodeBridge() const {
453 return CreateTrampoline(instruction_set_, kInterpreterAbi,
454 INTERPRETER_ENTRYPOINT_OFFSET(pInterpreterToCompiledCodeBridge));
455}
456
457const std::vector<uint8_t>* CompilerDriver::CreateJniDlsymLookup() const {
458 return CreateTrampoline(instruction_set_, kJniAbi, JNI_ENTRYPOINT_OFFSET(pDlsymLookup));
459}
460
Jeff Hao88474b42013-10-23 16:24:40 -0700461const std::vector<uint8_t>* CompilerDriver::CreatePortableImtConflictTrampoline() const {
462 return CreateTrampoline(instruction_set_, kPortableAbi,
463 PORTABLE_ENTRYPOINT_OFFSET(pPortableImtConflictTrampoline));
464}
465
Brian Carlstrom7940e442013-07-12 13:46:57 -0700466const std::vector<uint8_t>* CompilerDriver::CreatePortableResolutionTrampoline() const {
Ian Rogers848871b2013-08-05 10:56:33 -0700467 return CreateTrampoline(instruction_set_, kPortableAbi,
468 PORTABLE_ENTRYPOINT_OFFSET(pPortableResolutionTrampoline));
469}
470
471const std::vector<uint8_t>* CompilerDriver::CreatePortableToInterpreterBridge() const {
472 return CreateTrampoline(instruction_set_, kPortableAbi,
473 PORTABLE_ENTRYPOINT_OFFSET(pPortableToInterpreterBridge));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700474}
475
Andreas Gampe2da88232014-02-27 12:26:20 -0800476const std::vector<uint8_t>* CompilerDriver::CreateQuickGenericJniTrampoline() const {
477 return CreateTrampoline(instruction_set_, kQuickAbi,
478 QUICK_ENTRYPOINT_OFFSET(pQuickGenericJniTrampoline));
479}
480
Jeff Hao88474b42013-10-23 16:24:40 -0700481const std::vector<uint8_t>* CompilerDriver::CreateQuickImtConflictTrampoline() const {
482 return CreateTrampoline(instruction_set_, kQuickAbi,
483 QUICK_ENTRYPOINT_OFFSET(pQuickImtConflictTrampoline));
484}
485
Brian Carlstrom7940e442013-07-12 13:46:57 -0700486const std::vector<uint8_t>* CompilerDriver::CreateQuickResolutionTrampoline() const {
Ian Rogers848871b2013-08-05 10:56:33 -0700487 return CreateTrampoline(instruction_set_, kQuickAbi,
488 QUICK_ENTRYPOINT_OFFSET(pQuickResolutionTrampoline));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700489}
490
Ian Rogers848871b2013-08-05 10:56:33 -0700491const std::vector<uint8_t>* CompilerDriver::CreateQuickToInterpreterBridge() const {
492 return CreateTrampoline(instruction_set_, kQuickAbi,
493 QUICK_ENTRYPOINT_OFFSET(pQuickToInterpreterBridge));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700494}
495
496void CompilerDriver::CompileAll(jobject class_loader,
Brian Carlstrom45602482013-07-21 22:07:55 -0700497 const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -0800498 TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700499 DCHECK(!Runtime::Current()->IsStarted());
Mathieu Chartierbcd5e9d2013-11-13 14:33:28 -0800500 UniquePtr<ThreadPool> thread_pool(new ThreadPool("Compiler driver thread pool", thread_count_ - 1));
Ian Rogers3d504072014-03-01 09:16:49 -0800501 PreCompile(class_loader, dex_files, thread_pool.get(), timings);
502 Compile(class_loader, dex_files, thread_pool.get(), timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700503 if (dump_stats_) {
504 stats_->Dump();
505 }
506}
507
Mathieu Chartier590fee92013-09-13 13:46:47 -0700508static DexToDexCompilationLevel GetDexToDexCompilationlevel(
Ian Rogers98379392014-02-24 16:53:16 -0800509 Thread* self, SirtRef<mirror::ClassLoader>& class_loader, const DexFile& dex_file,
Mathieu Chartier590fee92013-09-13 13:46:47 -0700510 const DexFile::ClassDef& class_def) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700511 const char* descriptor = dex_file.GetClassDescriptor(class_def);
512 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Ian Rogers98379392014-02-24 16:53:16 -0800513 mirror::Class* klass = class_linker->FindClass(self, descriptor, class_loader);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700514 if (klass == NULL) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700515 CHECK(self->IsExceptionPending());
516 self->ClearException();
Sebastien Hertz75021222013-07-16 18:34:50 +0200517 return kDontDexToDexCompile;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700518 }
Sebastien Hertz75021222013-07-16 18:34:50 +0200519 // The verifier can only run on "quick" instructions at runtime (see usage of
520 // FindAccessedFieldAtDexPc and FindInvokedMethodAtDexPc in ThrowNullPointerExceptionFromDexPC
521 // function). Since image classes can be verified again while compiling an application,
522 // we must prevent the DEX-to-DEX compiler from introducing them.
523 // TODO: find a way to enable "quick" instructions for image classes and remove this check.
Mathieu Chartier590fee92013-09-13 13:46:47 -0700524 bool compiling_image_classes = class_loader.get() == nullptr;
Sebastien Hertz75021222013-07-16 18:34:50 +0200525 if (compiling_image_classes) {
526 return kRequired;
527 } else if (klass->IsVerified()) {
528 // Class is verified so we can enable DEX-to-DEX compilation for performance.
529 return kOptimize;
530 } else if (klass->IsCompileTimeVerified()) {
531 // Class verification has soft-failed. Anyway, ensure at least correctness.
532 DCHECK_EQ(klass->GetStatus(), mirror::Class::kStatusRetryVerificationAtRuntime);
533 return kRequired;
534 } else {
535 // Class verification has failed: do not run DEX-to-DEX compilation.
536 return kDontDexToDexCompile;
537 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700538}
539
Ian Rogers3d504072014-03-01 09:16:49 -0800540void CompilerDriver::CompileOne(mirror::ArtMethod* method, TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700541 DCHECK(!Runtime::Current()->IsStarted());
542 Thread* self = Thread::Current();
543 jobject jclass_loader;
544 const DexFile* dex_file;
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700545 uint16_t class_def_idx;
Ian Rogersef7d42f2014-01-06 12:55:46 -0800546 uint32_t method_idx = method->GetDexMethodIndex();
547 uint32_t access_flags = method->GetAccessFlags();
548 InvokeType invoke_type = method->GetInvokeType();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700549 {
550 ScopedObjectAccessUnchecked soa(self);
551 ScopedLocalRef<jobject>
552 local_class_loader(soa.Env(),
553 soa.AddLocalReference<jobject>(method->GetDeclaringClass()->GetClassLoader()));
554 jclass_loader = soa.Env()->NewGlobalRef(local_class_loader.get());
555 // Find the dex_file
556 MethodHelper mh(method);
557 dex_file = &mh.GetDexFile();
558 class_def_idx = mh.GetClassDefIndex();
559 }
Ian Rogersef7d42f2014-01-06 12:55:46 -0800560 const DexFile::CodeItem* code_item = dex_file->GetCodeItem(method->GetCodeItemOffset());
Brian Carlstrom7940e442013-07-12 13:46:57 -0700561 self->TransitionFromRunnableToSuspended(kNative);
562
563 std::vector<const DexFile*> dex_files;
564 dex_files.push_back(dex_file);
565
Mathieu Chartierbcd5e9d2013-11-13 14:33:28 -0800566 UniquePtr<ThreadPool> thread_pool(new ThreadPool("Compiler driver thread pool", 0U));
Ian Rogers3d504072014-03-01 09:16:49 -0800567 PreCompile(jclass_loader, dex_files, thread_pool.get(), timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700568
Brian Carlstrom7940e442013-07-12 13:46:57 -0700569 // Can we run DEX-to-DEX compiler on this class ?
Sebastien Hertz75021222013-07-16 18:34:50 +0200570 DexToDexCompilationLevel dex_to_dex_compilation_level = kDontDexToDexCompile;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700571 {
572 ScopedObjectAccess soa(Thread::Current());
573 const DexFile::ClassDef& class_def = dex_file->GetClassDef(class_def_idx);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700574 SirtRef<mirror::ClassLoader> class_loader(soa.Self(),
575 soa.Decode<mirror::ClassLoader*>(jclass_loader));
Ian Rogers98379392014-02-24 16:53:16 -0800576 dex_to_dex_compilation_level = GetDexToDexCompilationlevel(self, class_loader, *dex_file,
577 class_def);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700578 }
Ian Rogersef7d42f2014-01-06 12:55:46 -0800579 CompileMethod(code_item, access_flags, invoke_type, class_def_idx, method_idx, jclass_loader,
580 *dex_file, dex_to_dex_compilation_level);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700581
582 self->GetJniEnv()->DeleteGlobalRef(jclass_loader);
583
584 self->TransitionFromSuspendedToRunnable();
585}
586
587void CompilerDriver::Resolve(jobject class_loader, const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -0800588 ThreadPool* thread_pool, TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700589 for (size_t i = 0; i != dex_files.size(); ++i) {
590 const DexFile* dex_file = dex_files[i];
591 CHECK(dex_file != NULL);
592 ResolveDexFile(class_loader, *dex_file, thread_pool, timings);
593 }
594}
595
596void CompilerDriver::PreCompile(jobject class_loader, const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -0800597 ThreadPool* thread_pool, TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700598 LoadImageClasses(timings);
599
600 Resolve(class_loader, dex_files, thread_pool, timings);
601
602 Verify(class_loader, dex_files, thread_pool, timings);
603
604 InitializeClasses(class_loader, dex_files, thread_pool, timings);
605
606 UpdateImageClasses(timings);
607}
608
Ian Rogersdfb325e2013-10-30 01:00:44 -0700609bool CompilerDriver::IsImageClass(const char* descriptor) const {
Ian Rogerse6bb3b22013-08-19 21:51:45 -0700610 if (!IsImage()) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700611 return true;
Ian Rogerse6bb3b22013-08-19 21:51:45 -0700612 } else {
Ian Rogersdfb325e2013-10-30 01:00:44 -0700613 return image_classes_->find(descriptor) != image_classes_->end();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700614 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700615}
616
617static void ResolveExceptionsForMethod(MethodHelper* mh,
618 std::set<std::pair<uint16_t, const DexFile*> >& exceptions_to_resolve)
619 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
620 const DexFile::CodeItem* code_item = mh->GetCodeItem();
621 if (code_item == NULL) {
622 return; // native or abstract method
623 }
624 if (code_item->tries_size_ == 0) {
625 return; // nothing to process
626 }
627 const byte* encoded_catch_handler_list = DexFile::GetCatchHandlerData(*code_item, 0);
628 size_t num_encoded_catch_handlers = DecodeUnsignedLeb128(&encoded_catch_handler_list);
629 for (size_t i = 0; i < num_encoded_catch_handlers; i++) {
630 int32_t encoded_catch_handler_size = DecodeSignedLeb128(&encoded_catch_handler_list);
631 bool has_catch_all = false;
632 if (encoded_catch_handler_size <= 0) {
633 encoded_catch_handler_size = -encoded_catch_handler_size;
634 has_catch_all = true;
635 }
636 for (int32_t j = 0; j < encoded_catch_handler_size; j++) {
637 uint16_t encoded_catch_handler_handlers_type_idx =
638 DecodeUnsignedLeb128(&encoded_catch_handler_list);
639 // Add to set of types to resolve if not already in the dex cache resolved types
640 if (!mh->IsResolvedTypeIdx(encoded_catch_handler_handlers_type_idx)) {
641 exceptions_to_resolve.insert(
642 std::pair<uint16_t, const DexFile*>(encoded_catch_handler_handlers_type_idx,
643 &mh->GetDexFile()));
644 }
645 // ignore address associated with catch handler
646 DecodeUnsignedLeb128(&encoded_catch_handler_list);
647 }
648 if (has_catch_all) {
649 // ignore catch all address
650 DecodeUnsignedLeb128(&encoded_catch_handler_list);
651 }
652 }
653}
654
655static bool ResolveCatchBlockExceptionsClassVisitor(mirror::Class* c, void* arg)
656 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
657 std::set<std::pair<uint16_t, const DexFile*> >* exceptions_to_resolve =
658 reinterpret_cast<std::set<std::pair<uint16_t, const DexFile*> >*>(arg);
659 MethodHelper mh;
660 for (size_t i = 0; i < c->NumVirtualMethods(); ++i) {
Brian Carlstromea46f952013-07-30 01:26:50 -0700661 mirror::ArtMethod* m = c->GetVirtualMethod(i);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700662 mh.ChangeMethod(m);
663 ResolveExceptionsForMethod(&mh, *exceptions_to_resolve);
664 }
665 for (size_t i = 0; i < c->NumDirectMethods(); ++i) {
Brian Carlstromea46f952013-07-30 01:26:50 -0700666 mirror::ArtMethod* m = c->GetDirectMethod(i);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700667 mh.ChangeMethod(m);
668 ResolveExceptionsForMethod(&mh, *exceptions_to_resolve);
669 }
670 return true;
671}
672
673static bool RecordImageClassesVisitor(mirror::Class* klass, void* arg)
674 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
675 CompilerDriver::DescriptorSet* image_classes =
676 reinterpret_cast<CompilerDriver::DescriptorSet*>(arg);
677 image_classes->insert(ClassHelper(klass).GetDescriptor());
678 return true;
679}
680
681// Make a list of descriptors for classes to include in the image
Ian Rogers3d504072014-03-01 09:16:49 -0800682void CompilerDriver::LoadImageClasses(TimingLogger* timings)
Brian Carlstrom7940e442013-07-12 13:46:57 -0700683 LOCKS_EXCLUDED(Locks::mutator_lock_) {
Ian Rogerse6bb3b22013-08-19 21:51:45 -0700684 if (!IsImage()) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700685 return;
686 }
687
Ian Rogers3d504072014-03-01 09:16:49 -0800688 timings->NewSplit("LoadImageClasses");
Brian Carlstrom7940e442013-07-12 13:46:57 -0700689 // Make a first class to load all classes explicitly listed in the file
690 Thread* self = Thread::Current();
691 ScopedObjectAccess soa(self);
692 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Mathieu Chartier02e25112013-08-14 16:14:24 -0700693 for (auto it = image_classes_->begin(), end = image_classes_->end(); it != end;) {
Vladimir Markoe9c36b32013-11-21 15:49:16 +0000694 const std::string& descriptor(*it);
Ian Rogers98379392014-02-24 16:53:16 -0800695 SirtRef<mirror::Class> klass(self, class_linker->FindSystemClass(self, descriptor.c_str()));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700696 if (klass.get() == NULL) {
Ian Rogerse6bb3b22013-08-19 21:51:45 -0700697 VLOG(compiler) << "Failed to find class " << descriptor;
Vladimir Markoe9c36b32013-11-21 15:49:16 +0000698 image_classes_->erase(it++);
Ian Rogersa436fde2013-08-27 23:34:06 -0700699 self->ClearException();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700700 } else {
701 ++it;
702 }
703 }
704
705 // Resolve exception classes referenced by the loaded classes. The catch logic assumes
706 // exceptions are resolved by the verifier when there is a catch block in an interested method.
707 // Do this here so that exception classes appear to have been specified image classes.
708 std::set<std::pair<uint16_t, const DexFile*> > unresolved_exception_types;
709 SirtRef<mirror::Class> java_lang_Throwable(self,
Ian Rogers98379392014-02-24 16:53:16 -0800710 class_linker->FindSystemClass(self, "Ljava/lang/Throwable;"));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700711 do {
712 unresolved_exception_types.clear();
713 class_linker->VisitClasses(ResolveCatchBlockExceptionsClassVisitor,
714 &unresolved_exception_types);
Mathieu Chartier02e25112013-08-14 16:14:24 -0700715 for (const std::pair<uint16_t, const DexFile*>& exception_type : unresolved_exception_types) {
716 uint16_t exception_type_idx = exception_type.first;
717 const DexFile* dex_file = exception_type.second;
Mathieu Chartier590fee92013-09-13 13:46:47 -0700718 SirtRef<mirror::DexCache> dex_cache(self, class_linker->FindDexCache(*dex_file));
719 SirtRef<mirror::ClassLoader> class_loader(self, nullptr);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700720 SirtRef<mirror::Class> klass(self, class_linker->ResolveType(*dex_file, exception_type_idx,
721 dex_cache, class_loader));
722 if (klass.get() == NULL) {
723 const DexFile::TypeId& type_id = dex_file->GetTypeId(exception_type_idx);
724 const char* descriptor = dex_file->GetTypeDescriptor(type_id);
725 LOG(FATAL) << "Failed to resolve class " << descriptor;
726 }
727 DCHECK(java_lang_Throwable->IsAssignableFrom(klass.get()));
728 }
729 // Resolving exceptions may load classes that reference more exceptions, iterate until no
730 // more are found
731 } while (!unresolved_exception_types.empty());
732
733 // We walk the roots looking for classes so that we'll pick up the
734 // above classes plus any classes them depend on such super
735 // classes, interfaces, and the required ClassLinker roots.
736 class_linker->VisitClasses(RecordImageClassesVisitor, image_classes_.get());
737
738 CHECK_NE(image_classes_->size(), 0U);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700739}
740
741static void MaybeAddToImageClasses(mirror::Class* klass, CompilerDriver::DescriptorSet* image_classes)
742 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
743 while (!klass->IsObjectClass()) {
744 ClassHelper kh(klass);
745 const char* descriptor = kh.GetDescriptor();
746 std::pair<CompilerDriver::DescriptorSet::iterator, bool> result =
747 image_classes->insert(descriptor);
748 if (result.second) {
Anwar Ghuloum75a43f12013-08-13 17:22:14 -0700749 VLOG(compiler) << "Adding " << descriptor << " to image classes";
Brian Carlstrom7940e442013-07-12 13:46:57 -0700750 } else {
751 return;
752 }
753 for (size_t i = 0; i < kh.NumDirectInterfaces(); ++i) {
754 MaybeAddToImageClasses(kh.GetDirectInterface(i), image_classes);
755 }
756 if (klass->IsArrayClass()) {
757 MaybeAddToImageClasses(klass->GetComponentType(), image_classes);
758 }
759 klass = klass->GetSuperClass();
760 }
761}
762
763void CompilerDriver::FindClinitImageClassesCallback(mirror::Object* object, void* arg) {
764 DCHECK(object != NULL);
765 DCHECK(arg != NULL);
766 CompilerDriver* compiler_driver = reinterpret_cast<CompilerDriver*>(arg);
767 MaybeAddToImageClasses(object->GetClass(), compiler_driver->image_classes_.get());
768}
769
Ian Rogers3d504072014-03-01 09:16:49 -0800770void CompilerDriver::UpdateImageClasses(TimingLogger* timings) {
Ian Rogerse6bb3b22013-08-19 21:51:45 -0700771 if (IsImage()) {
Ian Rogers3d504072014-03-01 09:16:49 -0800772 timings->NewSplit("UpdateImageClasses");
Ian Rogerse6bb3b22013-08-19 21:51:45 -0700773
774 // Update image_classes_ with classes for objects created by <clinit> methods.
775 Thread* self = Thread::Current();
776 const char* old_cause = self->StartAssertNoThreadSuspension("ImageWriter");
777 gc::Heap* heap = Runtime::Current()->GetHeap();
778 // TODO: Image spaces only?
Mathieu Chartier590fee92013-09-13 13:46:47 -0700779 ScopedObjectAccess soa(Thread::Current());
Ian Rogerse6bb3b22013-08-19 21:51:45 -0700780 WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700781 heap->VisitObjects(FindClinitImageClassesCallback, this);
Ian Rogerse6bb3b22013-08-19 21:51:45 -0700782 self->EndAssertNoThreadSuspension(old_cause);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700783 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700784}
785
Mathieu Chartier590fee92013-09-13 13:46:47 -0700786bool CompilerDriver::CanAssumeTypeIsPresentInDexCache(const DexFile& dex_file, uint32_t type_idx) {
Ian Rogersfc0e94b2013-09-23 23:51:32 -0700787 if (IsImage() &&
Ian Rogersdfb325e2013-10-30 01:00:44 -0700788 IsImageClass(dex_file.StringDataByIdx(dex_file.GetTypeId(type_idx).descriptor_idx_))) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700789 if (kIsDebugBuild) {
790 ScopedObjectAccess soa(Thread::Current());
791 mirror::DexCache* dex_cache = Runtime::Current()->GetClassLinker()->FindDexCache(dex_file);
792 mirror::Class* resolved_class = dex_cache->GetResolvedType(type_idx);
793 CHECK(resolved_class != NULL);
794 }
795 stats_->TypeInDexCache();
796 return true;
797 } else {
798 stats_->TypeNotInDexCache();
799 return false;
800 }
801}
802
803bool CompilerDriver::CanAssumeStringIsPresentInDexCache(const DexFile& dex_file,
804 uint32_t string_idx) {
805 // See also Compiler::ResolveDexFile
806
807 bool result = false;
808 if (IsImage()) {
809 // We resolve all const-string strings when building for the image.
810 ScopedObjectAccess soa(Thread::Current());
Mathieu Chartier590fee92013-09-13 13:46:47 -0700811 SirtRef<mirror::DexCache> dex_cache(soa.Self(), Runtime::Current()->GetClassLinker()->FindDexCache(dex_file));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700812 Runtime::Current()->GetClassLinker()->ResolveString(dex_file, string_idx, dex_cache);
813 result = true;
814 }
815 if (result) {
816 stats_->StringInDexCache();
817 } else {
818 stats_->StringNotInDexCache();
819 }
820 return result;
821}
822
823bool CompilerDriver::CanAccessTypeWithoutChecks(uint32_t referrer_idx, const DexFile& dex_file,
824 uint32_t type_idx,
825 bool* type_known_final, bool* type_known_abstract,
826 bool* equals_referrers_class) {
827 if (type_known_final != NULL) {
828 *type_known_final = false;
829 }
830 if (type_known_abstract != NULL) {
831 *type_known_abstract = false;
832 }
833 if (equals_referrers_class != NULL) {
834 *equals_referrers_class = false;
835 }
836 ScopedObjectAccess soa(Thread::Current());
837 mirror::DexCache* dex_cache = Runtime::Current()->GetClassLinker()->FindDexCache(dex_file);
838 // Get type from dex cache assuming it was populated by the verifier
839 mirror::Class* resolved_class = dex_cache->GetResolvedType(type_idx);
840 if (resolved_class == NULL) {
841 stats_->TypeNeedsAccessCheck();
842 return false; // Unknown class needs access checks.
843 }
844 const DexFile::MethodId& method_id = dex_file.GetMethodId(referrer_idx);
845 if (equals_referrers_class != NULL) {
846 *equals_referrers_class = (method_id.class_idx_ == type_idx);
847 }
848 mirror::Class* referrer_class = dex_cache->GetResolvedType(method_id.class_idx_);
849 if (referrer_class == NULL) {
850 stats_->TypeNeedsAccessCheck();
851 return false; // Incomplete referrer knowledge needs access check.
852 }
853 // Perform access check, will return true if access is ok or false if we're going to have to
854 // check this at runtime (for example for class loaders).
855 bool result = referrer_class->CanAccess(resolved_class);
856 if (result) {
857 stats_->TypeDoesntNeedAccessCheck();
858 if (type_known_final != NULL) {
859 *type_known_final = resolved_class->IsFinal() && !resolved_class->IsArrayClass();
860 }
861 if (type_known_abstract != NULL) {
862 *type_known_abstract = resolved_class->IsAbstract() && !resolved_class->IsArrayClass();
863 }
864 } else {
865 stats_->TypeNeedsAccessCheck();
866 }
867 return result;
868}
869
870bool CompilerDriver::CanAccessInstantiableTypeWithoutChecks(uint32_t referrer_idx,
871 const DexFile& dex_file,
872 uint32_t type_idx) {
873 ScopedObjectAccess soa(Thread::Current());
874 mirror::DexCache* dex_cache = Runtime::Current()->GetClassLinker()->FindDexCache(dex_file);
875 // Get type from dex cache assuming it was populated by the verifier.
876 mirror::Class* resolved_class = dex_cache->GetResolvedType(type_idx);
877 if (resolved_class == NULL) {
878 stats_->TypeNeedsAccessCheck();
879 return false; // Unknown class needs access checks.
880 }
881 const DexFile::MethodId& method_id = dex_file.GetMethodId(referrer_idx);
882 mirror::Class* referrer_class = dex_cache->GetResolvedType(method_id.class_idx_);
883 if (referrer_class == NULL) {
884 stats_->TypeNeedsAccessCheck();
885 return false; // Incomplete referrer knowledge needs access check.
886 }
887 // Perform access and instantiable checks, will return true if access is ok or false if we're
888 // going to have to check this at runtime (for example for class loaders).
889 bool result = referrer_class->CanAccess(resolved_class) && resolved_class->IsInstantiable();
890 if (result) {
891 stats_->TypeDoesntNeedAccessCheck();
892 } else {
893 stats_->TypeNeedsAccessCheck();
894 }
895 return result;
896}
897
Hiroshi Yamauchibe1ca552014-01-15 11:46:48 -0800898bool CompilerDriver::CanEmbedTypeInCode(const DexFile& dex_file, uint32_t type_idx,
899 bool* is_type_initialized, bool* use_direct_type_ptr,
900 uintptr_t* direct_type_ptr) {
901 ScopedObjectAccess soa(Thread::Current());
902 mirror::DexCache* dex_cache = Runtime::Current()->GetClassLinker()->FindDexCache(dex_file);
903 mirror::Class* resolved_class = dex_cache->GetResolvedType(type_idx);
904 if (resolved_class == nullptr) {
905 return false;
906 }
907 const bool compiling_boot = Runtime::Current()->GetHeap()->IsCompilingBoot();
908 if (compiling_boot) {
909 // boot -> boot class pointers.
910 // True if the class is in the image at boot compiling time.
911 const bool is_image_class = IsImage() && IsImageClass(
912 dex_file.StringDataByIdx(dex_file.GetTypeId(type_idx).descriptor_idx_));
913 // True if pc relative load works.
914 const bool support_boot_image_fixup = GetSupportBootImageFixup();
915 if (is_image_class && support_boot_image_fixup) {
916 *is_type_initialized = resolved_class->IsInitialized();
917 *use_direct_type_ptr = false;
918 *direct_type_ptr = 0;
919 return true;
920 } else {
921 return false;
922 }
923 } else {
924 // True if the class is in the image at app compiling time.
925 const bool class_in_image =
926 Runtime::Current()->GetHeap()->FindSpaceFromObject(resolved_class, false)->IsImageSpace();
927 if (class_in_image) {
928 // boot -> app class pointers.
929 *is_type_initialized = resolved_class->IsInitialized();
930 *use_direct_type_ptr = true;
931 *direct_type_ptr = reinterpret_cast<uintptr_t>(resolved_class);
932 return true;
933 } else {
934 // app -> app class pointers.
935 // Give up because app does not have an image and class
936 // isn't created at compile time. TODO: implement this
937 // if/when each app gets an image.
938 return false;
939 }
940 }
941}
942
Vladimir Markobe0e5462014-02-26 11:24:15 +0000943void CompilerDriver::ProcessedInstanceField(bool resolved) {
944 if (!resolved) {
945 stats_->UnresolvedInstanceField();
946 } else {
947 stats_->ResolvedInstanceField();
948 }
949}
950
951void CompilerDriver::ProcessedStaticField(bool resolved, bool local) {
952 if (!resolved) {
953 stats_->UnresolvedStaticField();
954 } else if (local) {
955 stats_->ResolvedLocalStaticField();
956 } else {
957 stats_->ResolvedStaticField();
958 }
959}
960
Vladimir Markof096aad2014-01-23 15:51:58 +0000961void CompilerDriver::ProcessedInvoke(InvokeType invoke_type, int flags) {
962 stats_->ProcessedInvoke(invoke_type, flags);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700963}
964
965bool CompilerDriver::ComputeInstanceFieldInfo(uint32_t field_idx, const DexCompilationUnit* mUnit,
Vladimir Markobe0e5462014-02-26 11:24:15 +0000966 bool is_put, MemberOffset* field_offset,
967 bool* is_volatile) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700968 ScopedObjectAccess soa(Thread::Current());
Vladimir Markobe0e5462014-02-26 11:24:15 +0000969 // Try to resolve the field and compiling method's class.
970 mirror::ArtField* resolved_field;
971 mirror::Class* referrer_class;
972 mirror::DexCache* dex_cache;
973 {
974 SirtRef<mirror::DexCache> dex_cache_sirt(soa.Self(),
975 mUnit->GetClassLinker()->FindDexCache(*mUnit->GetDexFile()));
976 SirtRef<mirror::ClassLoader> class_loader_sirt(soa.Self(),
977 soa.Decode<mirror::ClassLoader*>(mUnit->GetClassLoader()));
978 SirtRef<mirror::ArtField> resolved_field_sirt(soa.Self(),
979 ResolveField(soa, dex_cache_sirt, class_loader_sirt, mUnit, field_idx, false));
980 referrer_class = (resolved_field_sirt.get() != nullptr)
981 ? ResolveCompilingMethodsClass(soa, dex_cache_sirt, class_loader_sirt, mUnit) : nullptr;
982 resolved_field = resolved_field_sirt.get();
983 dex_cache = dex_cache_sirt.get();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700984 }
Vladimir Markobe0e5462014-02-26 11:24:15 +0000985 bool result = false;
986 if (resolved_field != nullptr && referrer_class != nullptr) {
987 *is_volatile = IsFieldVolatile(resolved_field);
988 std::pair<bool, bool> fast_path = IsFastInstanceField(
989 dex_cache, referrer_class, resolved_field, field_idx, field_offset);
990 result = is_put ? fast_path.second : fast_path.first;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700991 }
Vladimir Markobe0e5462014-02-26 11:24:15 +0000992 if (!result) {
993 // Conservative defaults.
994 *is_volatile = true;
995 *field_offset = MemberOffset(static_cast<size_t>(-1));
996 }
997 ProcessedInstanceField(result);
998 return result;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700999}
1000
1001bool CompilerDriver::ComputeStaticFieldInfo(uint32_t field_idx, const DexCompilationUnit* mUnit,
Vladimir Markobe0e5462014-02-26 11:24:15 +00001002 bool is_put, MemberOffset* field_offset,
1003 uint32_t* storage_index, bool* is_referrers_class,
1004 bool* is_volatile, bool* is_initialized) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001005 ScopedObjectAccess soa(Thread::Current());
Vladimir Markobe0e5462014-02-26 11:24:15 +00001006 // Try to resolve the field and compiling method's class.
1007 mirror::ArtField* resolved_field;
1008 mirror::Class* referrer_class;
1009 mirror::DexCache* dex_cache;
1010 {
1011 SirtRef<mirror::DexCache> dex_cache_sirt(soa.Self(),
1012 mUnit->GetClassLinker()->FindDexCache(*mUnit->GetDexFile()));
1013 SirtRef<mirror::ClassLoader> class_loader_sirt(soa.Self(),
1014 soa.Decode<mirror::ClassLoader*>(mUnit->GetClassLoader()));
1015 SirtRef<mirror::ArtField> resolved_field_sirt(soa.Self(),
1016 ResolveField(soa, dex_cache_sirt, class_loader_sirt, mUnit, field_idx, true));
1017 referrer_class = (resolved_field_sirt.get() != nullptr)
1018 ? ResolveCompilingMethodsClass(soa, dex_cache_sirt, class_loader_sirt, mUnit) : nullptr;
1019 resolved_field = resolved_field_sirt.get();
1020 dex_cache = dex_cache_sirt.get();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001021 }
Vladimir Markobe0e5462014-02-26 11:24:15 +00001022 bool result = false;
1023 if (resolved_field != nullptr && referrer_class != nullptr) {
1024 *is_volatile = IsFieldVolatile(resolved_field);
1025 std::pair<bool, bool> fast_path = IsFastStaticField(
1026 dex_cache, referrer_class, resolved_field, field_idx, field_offset,
1027 storage_index, is_referrers_class, is_initialized);
1028 result = is_put ? fast_path.second : fast_path.first;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001029 }
Vladimir Markobe0e5462014-02-26 11:24:15 +00001030 if (!result) {
1031 // Conservative defaults.
1032 *is_volatile = true;
1033 *field_offset = MemberOffset(static_cast<size_t>(-1));
1034 *storage_index = -1;
1035 *is_referrers_class = false;
1036 *is_initialized = false;
1037 }
1038 ProcessedStaticField(result, *is_referrers_class);
1039 return result;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001040}
1041
Ian Rogers83883d72013-10-21 21:07:24 -07001042void CompilerDriver::GetCodeAndMethodForDirectCall(InvokeType* type, InvokeType sharp_type,
1043 bool no_guarantee_of_dex_cache_entry,
Brian Carlstrom7940e442013-07-12 13:46:57 -07001044 mirror::Class* referrer_class,
Brian Carlstromea46f952013-07-30 01:26:50 -07001045 mirror::ArtMethod* method,
Vladimir Markof096aad2014-01-23 15:51:58 +00001046 int* stats_flags,
Ian Rogers83883d72013-10-21 21:07:24 -07001047 MethodReference* target_method,
Ian Rogers65ec92c2013-09-06 10:49:58 -07001048 uintptr_t* direct_code,
1049 uintptr_t* direct_method) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001050 // For direct and static methods compute possible direct_code and direct_method values, ie
1051 // an address for the Method* being invoked and an address of the code for that Method*.
1052 // For interface calls compute a value for direct_method that is the interface method being
1053 // invoked, so this can be passed to the out-of-line runtime support code.
Ian Rogers65ec92c2013-09-06 10:49:58 -07001054 *direct_code = 0;
1055 *direct_method = 0;
Ian Rogers83883d72013-10-21 21:07:24 -07001056 bool use_dex_cache = false;
Mathieu Chartier590fee92013-09-13 13:46:47 -07001057 const bool compiling_boot = Runtime::Current()->GetHeap()->IsCompilingBoot();
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +00001058 if (compiler_->IsPortable()) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001059 if (sharp_type != kStatic && sharp_type != kDirect) {
1060 return;
1061 }
Ian Rogers83883d72013-10-21 21:07:24 -07001062 use_dex_cache = true;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001063 } else {
Jeff Hao88474b42013-10-23 16:24:40 -07001064 if (sharp_type != kStatic && sharp_type != kDirect) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001065 return;
1066 }
Ian Rogers83883d72013-10-21 21:07:24 -07001067 // TODO: support patching on all architectures.
1068 use_dex_cache = compiling_boot && !support_boot_image_fixup_;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001069 }
Ian Rogers83883d72013-10-21 21:07:24 -07001070 bool method_code_in_boot = (method->GetDeclaringClass()->GetClassLoader() == nullptr);
1071 if (!use_dex_cache) {
1072 if (!method_code_in_boot) {
1073 use_dex_cache = true;
1074 } else {
1075 bool has_clinit_trampoline =
1076 method->IsStatic() && !method->GetDeclaringClass()->IsInitialized();
1077 if (has_clinit_trampoline && (method->GetDeclaringClass() != referrer_class)) {
1078 // Ensure we run the clinit trampoline unless we are invoking a static method in the same
1079 // class.
1080 use_dex_cache = true;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001081 }
1082 }
Ian Rogers83883d72013-10-21 21:07:24 -07001083 }
Vladimir Markof096aad2014-01-23 15:51:58 +00001084 if (method_code_in_boot) {
1085 *stats_flags |= kFlagDirectCallToBoot | kFlagDirectMethodToBoot;
Ian Rogers83883d72013-10-21 21:07:24 -07001086 }
1087 if (!use_dex_cache && compiling_boot) {
1088 MethodHelper mh(method);
Ian Rogersdfb325e2013-10-30 01:00:44 -07001089 if (!IsImageClass(mh.GetDeclaringClassDescriptor())) {
Ian Rogers83883d72013-10-21 21:07:24 -07001090 // We can only branch directly to Methods that are resolved in the DexCache.
1091 // Otherwise we won't invoke the resolution trampoline.
1092 use_dex_cache = true;
1093 }
1094 }
1095 // The method is defined not within this dex file. We need a dex cache slot within the current
1096 // dex file or direct pointers.
1097 bool must_use_direct_pointers = false;
1098 if (target_method->dex_file == method->GetDeclaringClass()->GetDexCache()->GetDexFile()) {
1099 target_method->dex_method_index = method->GetDexMethodIndex();
1100 } else {
Ian Rogers83883d72013-10-21 21:07:24 -07001101 if (no_guarantee_of_dex_cache_entry) {
1102 // See if the method is also declared in this dex cache.
1103 uint32_t dex_method_idx = MethodHelper(method).FindDexMethodIndexInOtherDexFile(
Vladimir Markobbcc0c02014-02-03 14:08:42 +00001104 *target_method->dex_file, target_method->dex_method_index);
Ian Rogers83883d72013-10-21 21:07:24 -07001105 if (dex_method_idx != DexFile::kDexNoIndex) {
1106 target_method->dex_method_index = dex_method_idx;
1107 } else {
Jeff Hao49161ce2014-03-12 11:05:25 -07001108 if (compiling_boot) {
1109 target_method->dex_method_index = method->GetDexMethodIndex();
1110 target_method->dex_file = method->GetDeclaringClass()->GetDexCache()->GetDexFile();
1111 }
Ian Rogers83883d72013-10-21 21:07:24 -07001112 must_use_direct_pointers = true;
1113 }
1114 }
1115 }
1116 if (use_dex_cache) {
1117 if (must_use_direct_pointers) {
1118 // Fail. Test above showed the only safe dispatch was via the dex cache, however, the direct
1119 // pointers are required as the dex cache lacks an appropriate entry.
1120 VLOG(compiler) << "Dex cache devirtualization failed for: " << PrettyMethod(method);
1121 } else {
1122 *type = sharp_type;
1123 }
1124 } else {
1125 if (compiling_boot) {
1126 *type = sharp_type;
1127 *direct_method = -1;
Jeff Hao88474b42013-10-23 16:24:40 -07001128 *direct_code = -1;
Ian Rogers83883d72013-10-21 21:07:24 -07001129 } else {
1130 bool method_in_image =
1131 Runtime::Current()->GetHeap()->FindSpaceFromObject(method, false)->IsImageSpace();
1132 if (method_in_image) {
Jeff Hao88474b42013-10-23 16:24:40 -07001133 CHECK(!method->IsAbstract());
Ian Rogers83883d72013-10-21 21:07:24 -07001134 *type = sharp_type;
1135 *direct_method = reinterpret_cast<uintptr_t>(method);
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +00001136 *direct_code = compiler_->GetEntryPointOf(method);
Ian Rogers83883d72013-10-21 21:07:24 -07001137 target_method->dex_file = method->GetDeclaringClass()->GetDexCache()->GetDexFile();
1138 target_method->dex_method_index = method->GetDexMethodIndex();
1139 } else if (!must_use_direct_pointers) {
1140 // Set the code and rely on the dex cache for the method.
1141 *type = sharp_type;
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +00001142 *direct_code = compiler_->GetEntryPointOf(method);
Ian Rogers83883d72013-10-21 21:07:24 -07001143 } else {
1144 // Direct pointers were required but none were available.
1145 VLOG(compiler) << "Dex cache devirtualization failed for: " << PrettyMethod(method);
1146 }
1147 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001148 }
1149}
1150
1151bool CompilerDriver::ComputeInvokeInfo(const DexCompilationUnit* mUnit, const uint32_t dex_pc,
Ian Rogers65ec92c2013-09-06 10:49:58 -07001152 bool update_stats, bool enable_devirtualization,
1153 InvokeType* invoke_type, MethodReference* target_method,
1154 int* vtable_idx, uintptr_t* direct_code,
1155 uintptr_t* direct_method) {
Vladimir Markof096aad2014-01-23 15:51:58 +00001156 InvokeType orig_invoke_type = *invoke_type;
1157 int stats_flags = 0;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001158 ScopedObjectAccess soa(Thread::Current());
Vladimir Markof096aad2014-01-23 15:51:58 +00001159 // Try to resolve the method and compiling method's class.
1160 mirror::ArtMethod* resolved_method;
1161 mirror::Class* referrer_class;
1162 SirtRef<mirror::DexCache> dex_cache(soa.Self(),
1163 mUnit->GetClassLinker()->FindDexCache(*mUnit->GetDexFile()));
1164 SirtRef<mirror::ClassLoader> class_loader(soa.Self(),
1165 soa.Decode<mirror::ClassLoader*>(mUnit->GetClassLoader()));
1166 {
1167 uint32_t method_idx = target_method->dex_method_index;
1168 SirtRef<mirror::ArtMethod> resolved_method_sirt(soa.Self(),
1169 ResolveMethod(soa, dex_cache, class_loader, mUnit, method_idx, orig_invoke_type));
1170 referrer_class = (resolved_method_sirt.get() != nullptr)
1171 ? ResolveCompilingMethodsClass(soa, dex_cache, class_loader, mUnit) : nullptr;
1172 resolved_method = resolved_method_sirt.get();
1173 }
1174 bool result = false;
1175 if (resolved_method != nullptr) {
1176 *vtable_idx = GetResolvedMethodVTableIndex(resolved_method, orig_invoke_type);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001177
Vladimir Markof096aad2014-01-23 15:51:58 +00001178 if (enable_devirtualization) {
1179 DCHECK(mUnit->GetVerifiedMethod() != nullptr);
1180 const MethodReference* devirt_target = mUnit->GetVerifiedMethod()->GetDevirtTarget(dex_pc);
1181
1182 stats_flags = IsFastInvoke(
1183 soa, dex_cache, class_loader, mUnit, referrer_class, resolved_method,
1184 invoke_type, target_method, devirt_target, direct_code, direct_method);
1185 result = stats_flags != 0;
1186 } else {
1187 // Devirtualization not enabled. Inline IsFastInvoke(), dropping the devirtualization parts.
1188 if (UNLIKELY(referrer_class == nullptr) ||
1189 UNLIKELY(!referrer_class->CanAccessResolvedMethod(resolved_method->GetDeclaringClass(),
1190 resolved_method, dex_cache.get(),
1191 target_method->dex_method_index)) ||
1192 *invoke_type == kSuper) {
1193 // Slow path. (Without devirtualization, all super calls go slow path as well.)
1194 } else {
1195 // Sharpening failed so generate a regular resolved method dispatch.
1196 stats_flags = kFlagMethodResolved;
1197 GetCodeAndMethodForDirectCall(invoke_type, *invoke_type, false, referrer_class, resolved_method,
1198 &stats_flags, target_method, direct_code, direct_method);
1199 result = true;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001200 }
1201 }
1202 }
Vladimir Markof096aad2014-01-23 15:51:58 +00001203 if (!result) {
1204 // Conservative defaults.
1205 *vtable_idx = -1;
1206 *direct_code = 0u;
1207 *direct_method = 0u;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001208 }
1209 if (update_stats) {
Vladimir Markof096aad2014-01-23 15:51:58 +00001210 ProcessedInvoke(orig_invoke_type, stats_flags);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001211 }
Vladimir Markof096aad2014-01-23 15:51:58 +00001212 return result;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001213}
1214
Vladimir Marko2730db02014-01-27 11:15:17 +00001215const VerifiedMethod* CompilerDriver::GetVerifiedMethod(const DexFile* dex_file,
1216 uint32_t method_idx) const {
1217 MethodReference ref(dex_file, method_idx);
1218 return verification_results_->GetVerifiedMethod(ref);
1219}
1220
1221bool CompilerDriver::IsSafeCast(const DexCompilationUnit* mUnit, uint32_t dex_pc) {
1222 DCHECK(mUnit->GetVerifiedMethod() != nullptr);
1223 bool result = mUnit->GetVerifiedMethod()->IsSafeCast(dex_pc);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001224 if (result) {
1225 stats_->SafeCast();
1226 } else {
1227 stats_->NotASafeCast();
1228 }
1229 return result;
1230}
1231
Brian Carlstrom7940e442013-07-12 13:46:57 -07001232void CompilerDriver::AddCodePatch(const DexFile* dex_file,
Ian Rogers8b2c0b92013-09-19 02:56:49 -07001233 uint16_t referrer_class_def_idx,
1234 uint32_t referrer_method_idx,
1235 InvokeType referrer_invoke_type,
1236 uint32_t target_method_idx,
Jeff Hao49161ce2014-03-12 11:05:25 -07001237 const DexFile* target_dex_file,
Ian Rogers8b2c0b92013-09-19 02:56:49 -07001238 InvokeType target_invoke_type,
1239 size_t literal_offset) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001240 MutexLock mu(Thread::Current(), compiled_methods_lock_);
Hiroshi Yamauchibe1ca552014-01-15 11:46:48 -08001241 code_to_patch_.push_back(new CallPatchInformation(dex_file,
1242 referrer_class_def_idx,
1243 referrer_method_idx,
1244 referrer_invoke_type,
1245 target_method_idx,
Jeff Hao49161ce2014-03-12 11:05:25 -07001246 target_dex_file,
Hiroshi Yamauchibe1ca552014-01-15 11:46:48 -08001247 target_invoke_type,
1248 literal_offset));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001249}
Mark Mendell55d0eac2014-02-06 11:02:52 -08001250void CompilerDriver::AddRelativeCodePatch(const DexFile* dex_file,
1251 uint16_t referrer_class_def_idx,
1252 uint32_t referrer_method_idx,
1253 InvokeType referrer_invoke_type,
1254 uint32_t target_method_idx,
Jeff Hao49161ce2014-03-12 11:05:25 -07001255 const DexFile* target_dex_file,
Mark Mendell55d0eac2014-02-06 11:02:52 -08001256 InvokeType target_invoke_type,
1257 size_t literal_offset,
1258 int32_t pc_relative_offset) {
1259 MutexLock mu(Thread::Current(), compiled_methods_lock_);
1260 code_to_patch_.push_back(new RelativeCallPatchInformation(dex_file,
1261 referrer_class_def_idx,
1262 referrer_method_idx,
1263 referrer_invoke_type,
1264 target_method_idx,
Jeff Hao49161ce2014-03-12 11:05:25 -07001265 target_dex_file,
Mark Mendell55d0eac2014-02-06 11:02:52 -08001266 target_invoke_type,
1267 literal_offset,
1268 pc_relative_offset));
1269}
Brian Carlstrom7940e442013-07-12 13:46:57 -07001270void CompilerDriver::AddMethodPatch(const DexFile* dex_file,
Ian Rogers8b2c0b92013-09-19 02:56:49 -07001271 uint16_t referrer_class_def_idx,
1272 uint32_t referrer_method_idx,
1273 InvokeType referrer_invoke_type,
1274 uint32_t target_method_idx,
Jeff Hao49161ce2014-03-12 11:05:25 -07001275 const DexFile* target_dex_file,
Ian Rogers8b2c0b92013-09-19 02:56:49 -07001276 InvokeType target_invoke_type,
1277 size_t literal_offset) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001278 MutexLock mu(Thread::Current(), compiled_methods_lock_);
Hiroshi Yamauchibe1ca552014-01-15 11:46:48 -08001279 methods_to_patch_.push_back(new CallPatchInformation(dex_file,
1280 referrer_class_def_idx,
1281 referrer_method_idx,
1282 referrer_invoke_type,
1283 target_method_idx,
Jeff Hao49161ce2014-03-12 11:05:25 -07001284 target_dex_file,
Hiroshi Yamauchibe1ca552014-01-15 11:46:48 -08001285 target_invoke_type,
1286 literal_offset));
1287}
1288void CompilerDriver::AddClassPatch(const DexFile* dex_file,
1289 uint16_t referrer_class_def_idx,
1290 uint32_t referrer_method_idx,
1291 uint32_t target_type_idx,
1292 size_t literal_offset) {
1293 MutexLock mu(Thread::Current(), compiled_methods_lock_);
1294 classes_to_patch_.push_back(new TypePatchInformation(dex_file,
1295 referrer_class_def_idx,
1296 referrer_method_idx,
1297 target_type_idx,
1298 literal_offset));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001299}
1300
1301class ParallelCompilationManager {
1302 public:
1303 typedef void Callback(const ParallelCompilationManager* manager, size_t index);
1304
1305 ParallelCompilationManager(ClassLinker* class_linker,
1306 jobject class_loader,
1307 CompilerDriver* compiler,
1308 const DexFile* dex_file,
Ian Rogers3d504072014-03-01 09:16:49 -08001309 ThreadPool* thread_pool)
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001310 : index_(0),
1311 class_linker_(class_linker),
Brian Carlstrom7940e442013-07-12 13:46:57 -07001312 class_loader_(class_loader),
1313 compiler_(compiler),
1314 dex_file_(dex_file),
Ian Rogers3d504072014-03-01 09:16:49 -08001315 thread_pool_(thread_pool) {}
Brian Carlstrom7940e442013-07-12 13:46:57 -07001316
1317 ClassLinker* GetClassLinker() const {
1318 CHECK(class_linker_ != NULL);
1319 return class_linker_;
1320 }
1321
1322 jobject GetClassLoader() const {
1323 return class_loader_;
1324 }
1325
1326 CompilerDriver* GetCompiler() const {
1327 CHECK(compiler_ != NULL);
1328 return compiler_;
1329 }
1330
1331 const DexFile* GetDexFile() const {
1332 CHECK(dex_file_ != NULL);
1333 return dex_file_;
1334 }
1335
1336 void ForAll(size_t begin, size_t end, Callback callback, size_t work_units) {
1337 Thread* self = Thread::Current();
1338 self->AssertNoPendingException();
1339 CHECK_GT(work_units, 0U);
1340
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001341 index_ = begin;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001342 for (size_t i = 0; i < work_units; ++i) {
Sebastien Hertz501baec2013-12-13 12:02:36 +01001343 thread_pool_->AddTask(self, new ForAllClosure(this, end, callback));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001344 }
1345 thread_pool_->StartWorkers(self);
1346
1347 // Ensure we're suspended while we're blocked waiting for the other threads to finish (worker
1348 // thread destructor's called below perform join).
1349 CHECK_NE(self->GetState(), kRunnable);
1350
1351 // Wait for all the worker threads to finish.
1352 thread_pool_->Wait(self, true, false);
1353 }
1354
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001355 size_t NextIndex() {
Ian Rogersb122a4b2013-11-19 18:00:50 -08001356 return index_.FetchAndAdd(1);
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001357 }
1358
Brian Carlstrom7940e442013-07-12 13:46:57 -07001359 private:
Brian Carlstrom7940e442013-07-12 13:46:57 -07001360 class ForAllClosure : public Task {
1361 public:
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001362 ForAllClosure(ParallelCompilationManager* manager, size_t end, Callback* callback)
Brian Carlstrom7940e442013-07-12 13:46:57 -07001363 : manager_(manager),
Brian Carlstrom7940e442013-07-12 13:46:57 -07001364 end_(end),
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001365 callback_(callback) {}
Brian Carlstrom7940e442013-07-12 13:46:57 -07001366
1367 virtual void Run(Thread* self) {
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001368 while (true) {
1369 const size_t index = manager_->NextIndex();
1370 if (UNLIKELY(index >= end_)) {
1371 break;
1372 }
1373 callback_(manager_, index);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001374 self->AssertNoPendingException();
1375 }
1376 }
1377
1378 virtual void Finalize() {
1379 delete this;
1380 }
Brian Carlstrom0cd7ec22013-07-17 23:40:20 -07001381
Brian Carlstrom7940e442013-07-12 13:46:57 -07001382 private:
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001383 ParallelCompilationManager* const manager_;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001384 const size_t end_;
Bernhard Rosenkränzer46053622013-12-12 02:15:52 +01001385 Callback* const callback_;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001386 };
1387
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001388 AtomicInteger index_;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001389 ClassLinker* const class_linker_;
1390 const jobject class_loader_;
1391 CompilerDriver* const compiler_;
1392 const DexFile* const dex_file_;
1393 ThreadPool* const thread_pool_;
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001394
1395 DISALLOW_COPY_AND_ASSIGN(ParallelCompilationManager);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001396};
1397
Jeff Hao0e49b422013-11-08 12:16:56 -08001398// Return true if the class should be skipped during compilation.
1399//
1400// The first case where we skip is for redundant class definitions in
1401// the boot classpath. We skip all but the first definition in that case.
1402//
1403// The second case where we skip is when an app bundles classes found
1404// in the boot classpath. Since at runtime we will select the class from
1405// the boot classpath, we ignore the one from the app.
Ian Rogersbe7149f2013-08-20 09:29:39 -07001406static bool SkipClass(ClassLinker* class_linker, jobject class_loader, const DexFile& dex_file,
1407 const DexFile::ClassDef& class_def) {
Jeff Hao0e49b422013-11-08 12:16:56 -08001408 const char* descriptor = dex_file.GetClassDescriptor(class_def);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001409 if (class_loader == NULL) {
Jeff Hao0e49b422013-11-08 12:16:56 -08001410 DexFile::ClassPathEntry pair = DexFile::FindInClassPath(descriptor, class_linker->GetBootClassPath());
1411 CHECK(pair.second != NULL);
1412 if (pair.first != &dex_file) {
1413 LOG(WARNING) << "Skipping class " << descriptor << " from " << dex_file.GetLocation()
1414 << " previously found in " << pair.first->GetLocation();
1415 return true;
1416 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001417 return false;
1418 }
Ian Rogersbe7149f2013-08-20 09:29:39 -07001419 return class_linker->IsInBootClassPath(descriptor);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001420}
1421
Jeff Hao0e49b422013-11-08 12:16:56 -08001422// A fast version of SkipClass above if the class pointer is available
1423// that avoids the expensive FindInClassPath search.
1424static bool SkipClass(jobject class_loader, const DexFile& dex_file, mirror::Class* klass)
1425 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
1426 DCHECK(klass != NULL);
1427 const DexFile& original_dex_file = *klass->GetDexCache()->GetDexFile();
1428 if (&dex_file != &original_dex_file) {
1429 if (class_loader == NULL) {
1430 LOG(WARNING) << "Skipping class " << PrettyDescriptor(klass) << " from "
1431 << dex_file.GetLocation() << " previously found in "
1432 << original_dex_file.GetLocation();
1433 }
1434 return true;
1435 }
1436 return false;
1437}
1438
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001439static void ResolveClassFieldsAndMethods(const ParallelCompilationManager* manager,
1440 size_t class_def_index)
Brian Carlstrom7940e442013-07-12 13:46:57 -07001441 LOCKS_EXCLUDED(Locks::mutator_lock_) {
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07001442 ATRACE_CALL();
Ian Rogersbe7149f2013-08-20 09:29:39 -07001443 Thread* self = Thread::Current();
1444 jobject jclass_loader = manager->GetClassLoader();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001445 const DexFile& dex_file = *manager->GetDexFile();
Ian Rogersbe7149f2013-08-20 09:29:39 -07001446 ClassLinker* class_linker = manager->GetClassLinker();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001447
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001448 // If an instance field is final then we need to have a barrier on the return, static final
1449 // fields are assigned within the lock held for class initialization. Conservatively assume
1450 // constructor barriers are always required.
1451 bool requires_constructor_barrier = true;
1452
Brian Carlstrom7940e442013-07-12 13:46:57 -07001453 // Method and Field are the worst. We can't resolve without either
1454 // context from the code use (to disambiguate virtual vs direct
1455 // method and instance vs static field) or from class
1456 // definitions. While the compiler will resolve what it can as it
1457 // needs it, here we try to resolve fields and methods used in class
1458 // definitions, since many of them many never be referenced by
1459 // generated code.
1460 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
Ian Rogersbe7149f2013-08-20 09:29:39 -07001461 if (!SkipClass(class_linker, jclass_loader, dex_file, class_def)) {
Brian Carlstromcb5f5e52013-09-23 17:48:16 -07001462 ScopedObjectAccess soa(self);
Mathieu Chartier590fee92013-09-13 13:46:47 -07001463 SirtRef<mirror::ClassLoader> class_loader(soa.Self(), soa.Decode<mirror::ClassLoader*>(jclass_loader));
1464 SirtRef<mirror::DexCache> dex_cache(soa.Self(), class_linker->FindDexCache(dex_file));
Brian Carlstromcb5f5e52013-09-23 17:48:16 -07001465 // Resolve the class.
1466 mirror::Class* klass = class_linker->ResolveType(dex_file, class_def.class_idx_, dex_cache,
1467 class_loader);
Brian Carlstromcb5f5e52013-09-23 17:48:16 -07001468 bool resolve_fields_and_methods;
1469 if (klass == NULL) {
1470 // Class couldn't be resolved, for example, super-class is in a different dex file. Don't
1471 // attempt to resolve methods and fields when there is no declaring class.
1472 CHECK(soa.Self()->IsExceptionPending());
1473 soa.Self()->ClearException();
1474 resolve_fields_and_methods = false;
1475 } else {
1476 resolve_fields_and_methods = manager->GetCompiler()->IsImage();
1477 }
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001478 // Note the class_data pointer advances through the headers,
1479 // static fields, instance fields, direct methods, and virtual
1480 // methods.
1481 const byte* class_data = dex_file.GetClassData(class_def);
1482 if (class_data == NULL) {
1483 // Empty class such as a marker interface.
1484 requires_constructor_barrier = false;
1485 } else {
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001486 ClassDataItemIterator it(dex_file, class_data);
1487 while (it.HasNextStaticField()) {
1488 if (resolve_fields_and_methods) {
1489 mirror::ArtField* field = class_linker->ResolveField(dex_file, it.GetMemberIndex(),
1490 dex_cache, class_loader, true);
1491 if (field == NULL) {
1492 CHECK(soa.Self()->IsExceptionPending());
1493 soa.Self()->ClearException();
1494 }
1495 }
1496 it.Next();
1497 }
1498 // We require a constructor barrier if there are final instance fields.
1499 requires_constructor_barrier = false;
1500 while (it.HasNextInstanceField()) {
1501 if ((it.GetMemberAccessFlags() & kAccFinal) != 0) {
1502 requires_constructor_barrier = true;
1503 }
1504 if (resolve_fields_and_methods) {
1505 mirror::ArtField* field = class_linker->ResolveField(dex_file, it.GetMemberIndex(),
1506 dex_cache, class_loader, false);
1507 if (field == NULL) {
1508 CHECK(soa.Self()->IsExceptionPending());
1509 soa.Self()->ClearException();
1510 }
1511 }
1512 it.Next();
1513 }
1514 if (resolve_fields_and_methods) {
1515 while (it.HasNextDirectMethod()) {
1516 mirror::ArtMethod* method = class_linker->ResolveMethod(dex_file, it.GetMemberIndex(),
1517 dex_cache, class_loader, NULL,
1518 it.GetMethodInvokeType(class_def));
1519 if (method == NULL) {
1520 CHECK(soa.Self()->IsExceptionPending());
1521 soa.Self()->ClearException();
1522 }
1523 it.Next();
1524 }
1525 while (it.HasNextVirtualMethod()) {
1526 mirror::ArtMethod* method = class_linker->ResolveMethod(dex_file, it.GetMemberIndex(),
1527 dex_cache, class_loader, NULL,
1528 it.GetMethodInvokeType(class_def));
1529 if (method == NULL) {
1530 CHECK(soa.Self()->IsExceptionPending());
1531 soa.Self()->ClearException();
1532 }
1533 it.Next();
1534 }
1535 DCHECK(!it.HasNext());
1536 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001537 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001538 }
1539 if (requires_constructor_barrier) {
Ian Rogersbe7149f2013-08-20 09:29:39 -07001540 manager->GetCompiler()->AddRequiresConstructorBarrier(self, &dex_file, class_def_index);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001541 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001542}
1543
1544static void ResolveType(const ParallelCompilationManager* manager, size_t type_idx)
1545 LOCKS_EXCLUDED(Locks::mutator_lock_) {
1546 // Class derived values are more complicated, they require the linker and loader.
1547 ScopedObjectAccess soa(Thread::Current());
1548 ClassLinker* class_linker = manager->GetClassLinker();
1549 const DexFile& dex_file = *manager->GetDexFile();
Mathieu Chartier590fee92013-09-13 13:46:47 -07001550 SirtRef<mirror::DexCache> dex_cache(soa.Self(), class_linker->FindDexCache(dex_file));
Mathieu Chartierc528dba2013-11-26 12:00:11 -08001551 SirtRef<mirror::ClassLoader> class_loader(
1552 soa.Self(), soa.Decode<mirror::ClassLoader*>(manager->GetClassLoader()));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001553 mirror::Class* klass = class_linker->ResolveType(dex_file, type_idx, dex_cache, class_loader);
1554
1555 if (klass == NULL) {
1556 CHECK(soa.Self()->IsExceptionPending());
Ian Rogersa436fde2013-08-27 23:34:06 -07001557 mirror::Throwable* exception = soa.Self()->GetException(NULL);
1558 VLOG(compiler) << "Exception during type resolution: " << exception->Dump();
Ian Rogersdfb325e2013-10-30 01:00:44 -07001559 if (strcmp("Ljava/lang/OutOfMemoryError;",
1560 ClassHelper(exception->GetClass()).GetDescriptor()) == 0) {
Ian Rogersa436fde2013-08-27 23:34:06 -07001561 // There's little point continuing compilation if the heap is exhausted.
1562 LOG(FATAL) << "Out of memory during type resolution for compilation";
1563 }
1564 soa.Self()->ClearException();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001565 }
1566}
1567
1568void CompilerDriver::ResolveDexFile(jobject class_loader, const DexFile& dex_file,
Ian Rogers3d504072014-03-01 09:16:49 -08001569 ThreadPool* thread_pool, TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001570 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
1571
1572 // TODO: we could resolve strings here, although the string table is largely filled with class
1573 // and method names.
1574
1575 ParallelCompilationManager context(class_linker, class_loader, this, &dex_file, thread_pool);
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001576 if (IsImage()) {
1577 // For images we resolve all types, such as array, whereas for applications just those with
1578 // classdefs are resolved by ResolveClassFieldsAndMethods.
Ian Rogers3d504072014-03-01 09:16:49 -08001579 timings->NewSplit("Resolve Types");
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001580 context.ForAll(0, dex_file.NumTypeIds(), ResolveType, thread_count_);
1581 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001582
Ian Rogers3d504072014-03-01 09:16:49 -08001583 timings->NewSplit("Resolve MethodsAndFields");
Brian Carlstrom7940e442013-07-12 13:46:57 -07001584 context.ForAll(0, dex_file.NumClassDefs(), ResolveClassFieldsAndMethods, thread_count_);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001585}
1586
1587void CompilerDriver::Verify(jobject class_loader, const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -08001588 ThreadPool* thread_pool, TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001589 for (size_t i = 0; i != dex_files.size(); ++i) {
1590 const DexFile* dex_file = dex_files[i];
1591 CHECK(dex_file != NULL);
1592 VerifyDexFile(class_loader, *dex_file, thread_pool, timings);
1593 }
1594}
1595
1596static void VerifyClass(const ParallelCompilationManager* manager, size_t class_def_index)
1597 LOCKS_EXCLUDED(Locks::mutator_lock_) {
Anwar Ghuloum67f99412013-08-12 14:19:48 -07001598 ATRACE_CALL();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001599 ScopedObjectAccess soa(Thread::Current());
Jeff Hao0e49b422013-11-08 12:16:56 -08001600 const DexFile& dex_file = *manager->GetDexFile();
1601 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
1602 const char* descriptor = dex_file.GetClassDescriptor(class_def);
1603 ClassLinker* class_linker = manager->GetClassLinker();
1604 jobject jclass_loader = manager->GetClassLoader();
Mathieu Chartier590fee92013-09-13 13:46:47 -07001605 SirtRef<mirror::ClassLoader> class_loader(
1606 soa.Self(), soa.Decode<mirror::ClassLoader*>(jclass_loader));
Ian Rogers98379392014-02-24 16:53:16 -08001607 SirtRef<mirror::Class> klass(soa.Self(), class_linker->FindClass(soa.Self(), descriptor,
1608 class_loader));
Mathieu Chartierc528dba2013-11-26 12:00:11 -08001609 if (klass.get() == nullptr) {
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001610 CHECK(soa.Self()->IsExceptionPending());
Brian Carlstrom7940e442013-07-12 13:46:57 -07001611 soa.Self()->ClearException();
1612
1613 /*
1614 * At compile time, we can still structurally verify the class even if FindClass fails.
1615 * This is to ensure the class is structurally sound for compilation. An unsound class
1616 * will be rejected by the verifier and later skipped during compilation in the compiler.
1617 */
Mathieu Chartier590fee92013-09-13 13:46:47 -07001618 SirtRef<mirror::DexCache> dex_cache(soa.Self(), class_linker->FindDexCache(dex_file));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001619 std::string error_msg;
Mathieu Chartier590fee92013-09-13 13:46:47 -07001620 if (verifier::MethodVerifier::VerifyClass(&dex_file, dex_cache, class_loader, &class_def, true,
1621 &error_msg) ==
Brian Carlstrom7940e442013-07-12 13:46:57 -07001622 verifier::MethodVerifier::kHardFailure) {
Jeff Hao0e49b422013-11-08 12:16:56 -08001623 LOG(ERROR) << "Verification failed on class " << PrettyDescriptor(descriptor)
Brian Carlstrom7940e442013-07-12 13:46:57 -07001624 << " because: " << error_msg;
1625 }
Mathieu Chartierc528dba2013-11-26 12:00:11 -08001626 } else if (!SkipClass(jclass_loader, dex_file, klass.get())) {
1627 CHECK(klass->IsResolved()) << PrettyClass(klass.get());
Jeff Hao0e49b422013-11-08 12:16:56 -08001628 class_linker->VerifyClass(klass);
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001629
1630 if (klass->IsErroneous()) {
1631 // ClassLinker::VerifyClass throws, which isn't useful in the compiler.
1632 CHECK(soa.Self()->IsExceptionPending());
1633 soa.Self()->ClearException();
1634 }
1635
1636 CHECK(klass->IsCompileTimeVerified() || klass->IsErroneous())
Mathieu Chartierc528dba2013-11-26 12:00:11 -08001637 << PrettyDescriptor(klass.get()) << ": state=" << klass->GetStatus();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001638 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001639 soa.Self()->AssertNoPendingException();
1640}
1641
1642void CompilerDriver::VerifyDexFile(jobject class_loader, const DexFile& dex_file,
Ian Rogers3d504072014-03-01 09:16:49 -08001643 ThreadPool* thread_pool, TimingLogger* timings) {
1644 timings->NewSplit("Verify Dex File");
Brian Carlstrom7940e442013-07-12 13:46:57 -07001645 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
1646 ParallelCompilationManager context(class_linker, class_loader, this, &dex_file, thread_pool);
1647 context.ForAll(0, dex_file.NumClassDefs(), VerifyClass, thread_count_);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001648}
1649
Brian Carlstrom7940e442013-07-12 13:46:57 -07001650static void InitializeClass(const ParallelCompilationManager* manager, size_t class_def_index)
1651 LOCKS_EXCLUDED(Locks::mutator_lock_) {
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07001652 ATRACE_CALL();
Jeff Hao0e49b422013-11-08 12:16:56 -08001653 jobject jclass_loader = manager->GetClassLoader();
1654 const DexFile& dex_file = *manager->GetDexFile();
1655 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
Jeff Haobcdbbfe2013-11-08 18:03:22 -08001656 const DexFile::TypeId& class_type_id = dex_file.GetTypeId(class_def.class_idx_);
1657 const char* descriptor = dex_file.StringDataByIdx(class_type_id.descriptor_idx_);
Ian Rogersfc0e94b2013-09-23 23:51:32 -07001658
Brian Carlstrom7940e442013-07-12 13:46:57 -07001659 ScopedObjectAccess soa(Thread::Current());
Mathieu Chartier590fee92013-09-13 13:46:47 -07001660 SirtRef<mirror::ClassLoader> class_loader(soa.Self(),
1661 soa.Decode<mirror::ClassLoader*>(jclass_loader));
Mathieu Chartierc528dba2013-11-26 12:00:11 -08001662 SirtRef<mirror::Class> klass(soa.Self(),
Ian Rogers98379392014-02-24 16:53:16 -08001663 manager->GetClassLinker()->FindClass(soa.Self(), descriptor,
1664 class_loader));
Jeff Hao0e49b422013-11-08 12:16:56 -08001665
Mathieu Chartierc528dba2013-11-26 12:00:11 -08001666 if (klass.get() != nullptr && !SkipClass(jclass_loader, dex_file, klass.get())) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001667 // Only try to initialize classes that were successfully verified.
1668 if (klass->IsVerified()) {
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07001669 // Attempt to initialize the class but bail if we either need to initialize the super-class
1670 // or static fields.
1671 manager->GetClassLinker()->EnsureInitialized(klass, false, false);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001672 if (!klass->IsInitialized()) {
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07001673 // We don't want non-trivial class initialization occurring on multiple threads due to
1674 // deadlock problems. For example, a parent class is initialized (holding its lock) that
1675 // refers to a sub-class in its static/class initializer causing it to try to acquire the
1676 // sub-class' lock. While on a second thread the sub-class is initialized (holding its lock)
1677 // after first initializing its parents, whose locks are acquired. This leads to a
1678 // parent-to-child and a child-to-parent lock ordering and consequent potential deadlock.
1679 // We need to use an ObjectLock due to potential suspension in the interpreting code. Rather
1680 // than use a special Object for the purpose we use the Class of java.lang.Class.
Mathieu Chartierc528dba2013-11-26 12:00:11 -08001681 SirtRef<mirror::Class> sirt_klass(soa.Self(), klass->GetClass());
1682 ObjectLock<mirror::Class> lock(soa.Self(), &sirt_klass);
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07001683 // Attempt to initialize allowing initialization of parent classes but still not static
1684 // fields.
1685 manager->GetClassLinker()->EnsureInitialized(klass, false, true);
1686 if (!klass->IsInitialized()) {
1687 // We need to initialize static fields, we only do this for image classes that aren't
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001688 // marked with the $NoPreloadHolder (which implies this should not be initialized early).
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07001689 bool can_init_static_fields = manager->GetCompiler()->IsImage() &&
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001690 manager->GetCompiler()->IsImageClass(descriptor) &&
1691 !StringPiece(descriptor).ends_with("$NoPreloadHolder;");
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07001692 if (can_init_static_fields) {
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001693 VLOG(compiler) << "Initializing: " << descriptor;
1694 if (strcmp("Ljava/lang/Void;", descriptor) == 0) {
1695 // Hand initialize j.l.Void to avoid Dex file operations in un-started runtime.
1696 ObjectLock<mirror::Class> lock(soa.Self(), &klass);
1697 mirror::ObjectArray<mirror::ArtField>* fields = klass->GetSFields();
1698 CHECK_EQ(fields->GetLength(), 1);
1699 fields->Get(0)->SetObj<false>(klass.get(),
1700 manager->GetClassLinker()->FindPrimitiveClass('V'));
1701 klass->SetStatus(mirror::Class::kStatusInitialized, soa.Self());
1702 } else {
1703 // TODO multithreading support. We should ensure the current compilation thread has
1704 // exclusive access to the runtime and the transaction. To achieve this, we could use
1705 // a ReaderWriterMutex but we're holding the mutator lock so we fail mutex sanity
1706 // checks in Thread::AssertThreadSuspensionIsAllowable.
1707 Runtime* const runtime = Runtime::Current();
1708 Transaction transaction;
1709
1710 // Run the class initializer in transaction mode.
1711 runtime->EnterTransactionMode(&transaction);
1712 const mirror::Class::Status old_status = klass->GetStatus();
1713 bool success = manager->GetClassLinker()->EnsureInitialized(klass, true, true);
1714 // TODO we detach transaction from runtime to indicate we quit the transactional
1715 // mode which prevents the GC from visiting objects modified during the transaction.
1716 // Ensure GC is not run so don't access freed objects when aborting transaction.
1717 const char* old_casue = soa.Self()->StartAssertNoThreadSuspension("Transaction end");
1718 runtime->ExitTransactionMode();
1719
1720 if (!success) {
1721 CHECK(soa.Self()->IsExceptionPending());
1722 ThrowLocation throw_location;
1723 mirror::Throwable* exception = soa.Self()->GetException(&throw_location);
1724 VLOG(compiler) << "Initialization of " << descriptor << " aborted because of "
1725 << exception->Dump();
1726 soa.Self()->ClearException();
1727 transaction.Abort();
1728 CHECK_EQ(old_status, klass->GetStatus()) << "Previous class status not restored";
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07001729 }
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001730 soa.Self()->EndAssertNoThreadSuspension(old_casue);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001731 }
1732 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001733 }
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07001734 soa.Self()->AssertNoPendingException();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001735 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001736 }
1737 // Record the final class status if necessary.
Brian Carlstrom7940e442013-07-12 13:46:57 -07001738 ClassReference ref(manager->GetDexFile(), class_def_index);
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07001739 manager->GetCompiler()->RecordClassStatus(ref, klass->GetStatus());
Brian Carlstrom7940e442013-07-12 13:46:57 -07001740 }
1741 // Clear any class not found or verification exceptions.
1742 soa.Self()->ClearException();
1743}
1744
1745void CompilerDriver::InitializeClasses(jobject jni_class_loader, const DexFile& dex_file,
Ian Rogers3d504072014-03-01 09:16:49 -08001746 ThreadPool* thread_pool, TimingLogger* timings) {
1747 timings->NewSplit("InitializeNoClinit");
Brian Carlstrom7940e442013-07-12 13:46:57 -07001748 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
1749 ParallelCompilationManager context(class_linker, jni_class_loader, this, &dex_file, thread_pool);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001750 size_t thread_count;
1751 if (IsImage()) {
1752 // TODO: remove this when transactional mode supports multithreading.
1753 thread_count = 1U;
1754 } else {
1755 thread_count = thread_count_;
1756 }
1757 context.ForAll(0, dex_file.NumClassDefs(), InitializeClass, thread_count);
1758 if (IsImage()) {
1759 // Prune garbage objects created during aborted transactions.
1760 Runtime::Current()->GetHeap()->CollectGarbage(true);
1761 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001762}
1763
1764void CompilerDriver::InitializeClasses(jobject class_loader,
1765 const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -08001766 ThreadPool* thread_pool, TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001767 for (size_t i = 0; i != dex_files.size(); ++i) {
1768 const DexFile* dex_file = dex_files[i];
1769 CHECK(dex_file != NULL);
1770 InitializeClasses(class_loader, *dex_file, thread_pool, timings);
1771 }
1772}
1773
1774void CompilerDriver::Compile(jobject class_loader, const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -08001775 ThreadPool* thread_pool, TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001776 for (size_t i = 0; i != dex_files.size(); ++i) {
1777 const DexFile* dex_file = dex_files[i];
1778 CHECK(dex_file != NULL);
1779 CompileDexFile(class_loader, *dex_file, thread_pool, timings);
1780 }
1781}
1782
1783void CompilerDriver::CompileClass(const ParallelCompilationManager* manager, size_t class_def_index) {
Anwar Ghuloum67f99412013-08-12 14:19:48 -07001784 ATRACE_CALL();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001785 jobject jclass_loader = manager->GetClassLoader();
1786 const DexFile& dex_file = *manager->GetDexFile();
1787 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
Ian Rogersbe7149f2013-08-20 09:29:39 -07001788 ClassLinker* class_linker = manager->GetClassLinker();
1789 if (SkipClass(class_linker, jclass_loader, dex_file, class_def)) {
1790 return;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001791 }
1792 ClassReference ref(&dex_file, class_def_index);
1793 // Skip compiling classes with generic verifier failures since they will still fail at runtime
Vladimir Markoc7f83202014-01-24 17:55:18 +00001794 if (manager->GetCompiler()->verification_results_->IsClassRejected(ref)) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001795 return;
1796 }
1797 const byte* class_data = dex_file.GetClassData(class_def);
1798 if (class_data == NULL) {
1799 // empty class, probably a marker interface
1800 return;
1801 }
Anwar Ghuloum67f99412013-08-12 14:19:48 -07001802
Brian Carlstrom7940e442013-07-12 13:46:57 -07001803 // Can we run DEX-to-DEX compiler on this class ?
Sebastien Hertz75021222013-07-16 18:34:50 +02001804 DexToDexCompilationLevel dex_to_dex_compilation_level = kDontDexToDexCompile;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001805 {
1806 ScopedObjectAccess soa(Thread::Current());
Mathieu Chartier590fee92013-09-13 13:46:47 -07001807 SirtRef<mirror::ClassLoader> class_loader(soa.Self(),
1808 soa.Decode<mirror::ClassLoader*>(jclass_loader));
Ian Rogers98379392014-02-24 16:53:16 -08001809 dex_to_dex_compilation_level = GetDexToDexCompilationlevel(soa.Self(), class_loader, dex_file,
1810 class_def);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001811 }
1812 ClassDataItemIterator it(dex_file, class_data);
1813 // Skip fields
1814 while (it.HasNextStaticField()) {
1815 it.Next();
1816 }
1817 while (it.HasNextInstanceField()) {
1818 it.Next();
1819 }
Ian Rogersbe7149f2013-08-20 09:29:39 -07001820 CompilerDriver* driver = manager->GetCompiler();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001821 // Compile direct methods
1822 int64_t previous_direct_method_idx = -1;
1823 while (it.HasNextDirectMethod()) {
1824 uint32_t method_idx = it.GetMemberIndex();
1825 if (method_idx == previous_direct_method_idx) {
1826 // smali can create dex files with two encoded_methods sharing the same method_idx
1827 // http://code.google.com/p/smali/issues/detail?id=119
1828 it.Next();
1829 continue;
1830 }
1831 previous_direct_method_idx = method_idx;
Ian Rogersbe7149f2013-08-20 09:29:39 -07001832 driver->CompileMethod(it.GetMethodCodeItem(), it.GetMemberAccessFlags(),
1833 it.GetMethodInvokeType(class_def), class_def_index,
1834 method_idx, jclass_loader, dex_file, dex_to_dex_compilation_level);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001835 it.Next();
1836 }
1837 // Compile virtual methods
1838 int64_t previous_virtual_method_idx = -1;
1839 while (it.HasNextVirtualMethod()) {
1840 uint32_t method_idx = it.GetMemberIndex();
1841 if (method_idx == previous_virtual_method_idx) {
1842 // smali can create dex files with two encoded_methods sharing the same method_idx
1843 // http://code.google.com/p/smali/issues/detail?id=119
1844 it.Next();
1845 continue;
1846 }
1847 previous_virtual_method_idx = method_idx;
Ian Rogersbe7149f2013-08-20 09:29:39 -07001848 driver->CompileMethod(it.GetMethodCodeItem(), it.GetMemberAccessFlags(),
1849 it.GetMethodInvokeType(class_def), class_def_index,
1850 method_idx, jclass_loader, dex_file, dex_to_dex_compilation_level);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001851 it.Next();
1852 }
1853 DCHECK(!it.HasNext());
1854}
1855
1856void CompilerDriver::CompileDexFile(jobject class_loader, const DexFile& dex_file,
Ian Rogers3d504072014-03-01 09:16:49 -08001857 ThreadPool* thread_pool, TimingLogger* timings) {
1858 timings->NewSplit("Compile Dex File");
Ian Rogersbe7149f2013-08-20 09:29:39 -07001859 ParallelCompilationManager context(Runtime::Current()->GetClassLinker(), class_loader, this,
1860 &dex_file, thread_pool);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001861 context.ForAll(0, dex_file.NumClassDefs(), CompilerDriver::CompileClass, thread_count_);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001862}
1863
1864void CompilerDriver::CompileMethod(const DexFile::CodeItem* code_item, uint32_t access_flags,
Ian Rogers8b2c0b92013-09-19 02:56:49 -07001865 InvokeType invoke_type, uint16_t class_def_idx,
Brian Carlstrom7940e442013-07-12 13:46:57 -07001866 uint32_t method_idx, jobject class_loader,
1867 const DexFile& dex_file,
Sebastien Hertz75021222013-07-16 18:34:50 +02001868 DexToDexCompilationLevel dex_to_dex_compilation_level) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001869 CompiledMethod* compiled_method = NULL;
1870 uint64_t start_ns = NanoTime();
1871
1872 if ((access_flags & kAccNative) != 0) {
Ian Rogers0188ab72014-03-17 16:51:53 -07001873 // Are we interpreting only and have support for generic JNI down calls?
Ian Rogers5b271492014-03-14 13:20:26 -07001874 if ((compiler_options_->GetCompilerFilter() == CompilerOptions::kInterpretOnly) &&
Stuart Monteithb95a5342014-03-12 13:32:32 +00001875 (instruction_set_ == kX86_64 || instruction_set_ == kArm64)) {
Ian Rogers5b271492014-03-14 13:20:26 -07001876 // Leaving this empty will trigger the generic JNI version
1877 } else {
1878 compiled_method = compiler_->JniCompile(*this, access_flags, method_idx, dex_file);
1879 CHECK(compiled_method != NULL);
1880 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001881 } else if ((access_flags & kAccAbstract) != 0) {
1882 } else {
Dragos Sbirlea90af14d2013-08-15 17:50:16 -07001883 MethodReference method_ref(&dex_file, method_idx);
Brian Carlstrom6449c622014-02-10 23:48:36 -08001884 bool compile = verification_results_->IsCandidateForCompilation(method_ref, access_flags);
Sebastien Hertz4d4adb12013-07-24 16:14:19 +02001885 if (compile) {
buzbeea024a062013-07-31 10:47:37 -07001886 // NOTE: if compiler declines to compile this method, it will return NULL.
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +00001887 compiled_method = compiler_->Compile(
Nicolas Geoffrayf5df8972014-02-14 18:37:08 +00001888 *this, code_item, access_flags, invoke_type, class_def_idx,
1889 method_idx, class_loader, dex_file);
Sebastien Hertz75021222013-07-16 18:34:50 +02001890 } else if (dex_to_dex_compilation_level != kDontDexToDexCompile) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001891 // TODO: add a mode to disable DEX-to-DEX compilation ?
Sebastien Hertz75021222013-07-16 18:34:50 +02001892 (*dex_to_dex_compiler_)(*this, code_item, access_flags,
1893 invoke_type, class_def_idx,
1894 method_idx, class_loader, dex_file,
1895 dex_to_dex_compilation_level);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001896 }
1897 }
1898 uint64_t duration_ns = NanoTime() - start_ns;
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +00001899 if (duration_ns > MsToNs(compiler_->GetMaximumCompilationTimeBeforeWarning())) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001900 LOG(WARNING) << "Compilation of " << PrettyMethod(method_idx, dex_file)
1901 << " took " << PrettyDuration(duration_ns);
1902 }
1903
1904 Thread* self = Thread::Current();
1905 if (compiled_method != NULL) {
1906 MethodReference ref(&dex_file, method_idx);
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07001907 DCHECK(GetCompiledMethod(ref) == NULL) << PrettyMethod(method_idx, dex_file);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001908 {
1909 MutexLock mu(self, compiled_methods_lock_);
1910 compiled_methods_.Put(ref, compiled_method);
1911 }
1912 DCHECK(GetCompiledMethod(ref) != NULL) << PrettyMethod(method_idx, dex_file);
1913 }
1914
1915 if (self->IsExceptionPending()) {
1916 ScopedObjectAccess soa(self);
1917 LOG(FATAL) << "Unexpected exception compiling: " << PrettyMethod(method_idx, dex_file) << "\n"
1918 << self->GetException(NULL)->Dump();
1919 }
1920}
1921
1922CompiledClass* CompilerDriver::GetCompiledClass(ClassReference ref) const {
1923 MutexLock mu(Thread::Current(), compiled_classes_lock_);
1924 ClassTable::const_iterator it = compiled_classes_.find(ref);
1925 if (it == compiled_classes_.end()) {
1926 return NULL;
1927 }
1928 CHECK(it->second != NULL);
1929 return it->second;
1930}
1931
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07001932void CompilerDriver::RecordClassStatus(ClassReference ref, mirror::Class::Status status) {
1933 MutexLock mu(Thread::Current(), compiled_classes_lock_);
1934 auto it = compiled_classes_.find(ref);
1935 if (it == compiled_classes_.end() || it->second->GetStatus() != status) {
1936 // An entry doesn't exist or the status is lower than the new status.
1937 if (it != compiled_classes_.end()) {
1938 CHECK_GT(status, it->second->GetStatus());
1939 delete it->second;
1940 }
1941 switch (status) {
1942 case mirror::Class::kStatusNotReady:
1943 case mirror::Class::kStatusError:
1944 case mirror::Class::kStatusRetryVerificationAtRuntime:
1945 case mirror::Class::kStatusVerified:
1946 case mirror::Class::kStatusInitialized:
1947 break; // Expected states.
1948 default:
1949 LOG(FATAL) << "Unexpected class status for class "
1950 << PrettyDescriptor(ref.first->GetClassDescriptor(ref.first->GetClassDef(ref.second)))
1951 << " of " << status;
1952 }
1953 CompiledClass* compiled_class = new CompiledClass(status);
1954 compiled_classes_.Overwrite(ref, compiled_class);
1955 }
1956}
1957
Brian Carlstrom7940e442013-07-12 13:46:57 -07001958CompiledMethod* CompilerDriver::GetCompiledMethod(MethodReference ref) const {
1959 MutexLock mu(Thread::Current(), compiled_methods_lock_);
1960 MethodTable::const_iterator it = compiled_methods_.find(ref);
1961 if (it == compiled_methods_.end()) {
1962 return NULL;
1963 }
1964 CHECK(it->second != NULL);
1965 return it->second;
1966}
1967
Brian Carlstrom7940e442013-07-12 13:46:57 -07001968void CompilerDriver::AddRequiresConstructorBarrier(Thread* self, const DexFile* dex_file,
Ian Rogers8b2c0b92013-09-19 02:56:49 -07001969 uint16_t class_def_index) {
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07001970 WriterMutexLock mu(self, freezing_constructor_lock_);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001971 freezing_constructor_classes_.insert(ClassReference(dex_file, class_def_index));
1972}
1973
1974bool CompilerDriver::RequiresConstructorBarrier(Thread* self, const DexFile* dex_file,
Ian Rogers8b2c0b92013-09-19 02:56:49 -07001975 uint16_t class_def_index) {
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07001976 ReaderMutexLock mu(self, freezing_constructor_lock_);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001977 return freezing_constructor_classes_.count(ClassReference(dex_file, class_def_index)) != 0;
1978}
1979
1980bool CompilerDriver::WriteElf(const std::string& android_root,
1981 bool is_host,
1982 const std::vector<const art::DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -08001983 OatWriter* oat_writer,
Brian Carlstrom7940e442013-07-12 13:46:57 -07001984 art::File* file)
1985 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +00001986 return compiler_->WriteElf(file, oat_writer, dex_files, android_root, is_host, *this);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001987}
1988void CompilerDriver::InstructionSetToLLVMTarget(InstructionSet instruction_set,
Ian Rogers3d504072014-03-01 09:16:49 -08001989 std::string* target_triple,
1990 std::string* target_cpu,
1991 std::string* target_attr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001992 switch (instruction_set) {
1993 case kThumb2:
Ian Rogers3d504072014-03-01 09:16:49 -08001994 *target_triple = "thumb-none-linux-gnueabi";
1995 *target_cpu = "cortex-a9";
1996 *target_attr = "+thumb2,+neon,+neonfp,+vfp3,+db";
Brian Carlstrom7940e442013-07-12 13:46:57 -07001997 break;
1998
1999 case kArm:
Ian Rogers3d504072014-03-01 09:16:49 -08002000 *target_triple = "armv7-none-linux-gnueabi";
Brian Carlstrom7940e442013-07-12 13:46:57 -07002001 // TODO: Fix for Nexus S.
Ian Rogers3d504072014-03-01 09:16:49 -08002002 *target_cpu = "cortex-a9";
Brian Carlstrom7940e442013-07-12 13:46:57 -07002003 // TODO: Fix for Xoom.
Ian Rogers3d504072014-03-01 09:16:49 -08002004 *target_attr = "+v7,+neon,+neonfp,+vfp3,+db";
Brian Carlstrom7940e442013-07-12 13:46:57 -07002005 break;
2006
2007 case kX86:
Ian Rogers3d504072014-03-01 09:16:49 -08002008 *target_triple = "i386-pc-linux-gnu";
2009 *target_attr = "";
Brian Carlstrom7940e442013-07-12 13:46:57 -07002010 break;
2011
2012 case kMips:
Ian Rogers3d504072014-03-01 09:16:49 -08002013 *target_triple = "mipsel-unknown-linux";
2014 *target_attr = "mips32r2";
Brian Carlstrom7940e442013-07-12 13:46:57 -07002015 break;
2016
2017 default:
2018 LOG(FATAL) << "Unknown instruction set: " << instruction_set;
2019 }
2020 }
Dave Allison39c3bfb2014-01-28 18:33:52 -08002021
2022bool CompilerDriver::ReadProfile(const std::string& filename) {
2023 VLOG(compiler) << "reading profile file " << filename;
2024 struct stat st;
2025 int err = stat(filename.c_str(), &st);
2026 if (err == -1) {
2027 VLOG(compiler) << "not found";
2028 return false;
2029 }
2030 std::ifstream in(filename.c_str());
2031 if (!in) {
2032 VLOG(compiler) << "profile file " << filename << " exists but can't be opened";
2033 VLOG(compiler) << "file owner: " << st.st_uid << ":" << st.st_gid;
2034 VLOG(compiler) << "me: " << getuid() << ":" << getgid();
2035 VLOG(compiler) << "file permissions: " << std::oct << st.st_mode;
2036 VLOG(compiler) << "errno: " << errno;
2037 return false;
2038 }
2039 // The first line contains summary information.
2040 std::string line;
2041 std::getline(in, line);
2042 if (in.eof()) {
2043 return false;
2044 }
2045 std::vector<std::string> summary_info;
2046 Split(line, '/', summary_info);
2047 if (summary_info.size() != 3) {
2048 // Bad summary info. It should be count/total/bootpath
2049 return false;
2050 }
2051 // This is the number of hits in all methods.
2052 uint32_t total_count = 0;
2053 for (int i = 0 ; i < 3; ++i) {
Calin Juravleea1e5202014-04-02 15:41:43 +01002054 total_count += atoi(summary_info[i].c_str());
Dave Allison39c3bfb2014-01-28 18:33:52 -08002055 }
2056
2057 // Now read each line until the end of file. Each line consists of 3 fields separated by /
Calin Juravlef6a4cee2014-04-02 17:03:08 +01002058 // Store the info in desceding order given by the most used methods
2059 typedef std::set<std::pair<int, std::vector<std::string>>> ProfileSet;
2060 ProfileSet countSet;
Dave Allison39c3bfb2014-01-28 18:33:52 -08002061 while (!in.eof()) {
2062 std::getline(in, line);
2063 if (in.eof()) {
2064 break;
2065 }
2066 std::vector<std::string> info;
2067 Split(line, '/', info);
2068 if (info.size() != 3) {
2069 // Malformed.
2070 break;
2071 }
Calin Juravlef6a4cee2014-04-02 17:03:08 +01002072 int count = atoi(info[1].c_str());
2073 countSet.insert(std::make_pair(-count, info));
2074 }
2075
2076 uint32_t curTotalCount = 0;
2077 ProfileSet::iterator end = countSet.end();
2078 const ProfileData* prevData = nullptr;
2079 for (ProfileSet::iterator it = countSet.begin(); it != end ; it++) {
2080 const std::string& methodname = it->second[0];
2081 uint32_t count = -it->first;
2082 uint32_t size = atoi(it->second[2].c_str());
2083 double usedPercent = (count * 100.0) / total_count;
2084
2085 curTotalCount += count;
2086 // Methods with the same count should be part of the same top K percentage bucket
2087 double topKPercentage = (prevData != nullptr) && (prevData->GetCount() == count)
2088 ? prevData->GetTopKUsedPercentage()
2089 : 100 * static_cast<double>(curTotalCount) / static_cast<double>(total_count);
2090
Dave Allison39c3bfb2014-01-28 18:33:52 -08002091 // Add it to the profile map
Calin Juravlef6a4cee2014-04-02 17:03:08 +01002092 ProfileData curData = ProfileData(methodname, count, size, usedPercent, topKPercentage);
2093 profile_map_[methodname] = curData;
2094 prevData = &curData;
Dave Allison39c3bfb2014-01-28 18:33:52 -08002095 }
2096 return true;
2097}
2098
2099bool CompilerDriver::SkipCompilation(const std::string& method_name) {
2100 if (!profile_ok_) {
2101 return true;
2102 }
Calin Juravlef6a4cee2014-04-02 17:03:08 +01002103 // Methods that comprise kThresholdPercent % of the total samples will be compiled
2104 constexpr double kThresholdPercent = 90.0;
Dave Allison39c3bfb2014-01-28 18:33:52 -08002105
2106 // First find the method in the profile map.
2107 ProfileMap::iterator i = profile_map_.find(method_name);
2108 if (i == profile_map_.end()) {
2109 // Not in profile, no information can be determined.
2110 VLOG(compiler) << "not compiling " << method_name << " because it's not in the profile";
2111 return true;
2112 }
2113 const ProfileData& data = i->second;
Calin Juravlef6a4cee2014-04-02 17:03:08 +01002114 // Compare against the start of the topK percentage bucket just in case the threshold
2115 // falls inside a bucket
2116 bool compile = data.GetTopKUsedPercentage() - data.GetUsedPercent() <= kThresholdPercent;
Dave Allison39c3bfb2014-01-28 18:33:52 -08002117 if (compile) {
Calin Juravlef6a4cee2014-04-02 17:03:08 +01002118 LOG(INFO) << "compiling method " << method_name << " because its usage is part of top "
2119 << data.GetTopKUsedPercentage() << "% with a percent of " << data.GetUsedPercent() << "%";
Dave Allison39c3bfb2014-01-28 18:33:52 -08002120 } else {
2121 VLOG(compiler) << "not compiling method " << method_name << " because usage is too low ("
Calin Juravlef6a4cee2014-04-02 17:03:08 +01002122 << data.GetUsedPercent() << "%)";
Dave Allison39c3bfb2014-01-28 18:33:52 -08002123 }
2124 return !compile;
2125}
Brian Carlstrom7940e442013-07-12 13:46:57 -07002126} // namespace art