blob: 501ea7c130996924f90b1a3664ce2bde564e811f [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
Anwar Ghuloum67f99412013-08-12 14:19:48 -070022#include <vector>
Brian Carlstrom7940e442013-07-12 13:46:57 -070023#include <unistd.h>
24
25#include "base/stl_util.h"
26#include "base/timing_logger.h"
27#include "class_linker.h"
Nicolas Geoffrayf5df8972014-02-14 18:37:08 +000028#include "compiler_backend.h"
Vladimir Markobe0e5462014-02-26 11:24:15 +000029#include "compiler_driver-inl.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070030#include "dex_compilation_unit.h"
31#include "dex_file-inl.h"
Vladimir Markoc7f83202014-01-24 17:55:18 +000032#include "dex/verification_results.h"
Vladimir Marko2730db02014-01-27 11:15:17 +000033#include "dex/verified_method.h"
Vladimir Marko2bc47802014-02-10 09:43:07 +000034#include "dex/quick/dex_file_method_inliner.h"
Mark Mendellae9fd932014-02-10 16:14:35 -080035#include "driver/compiler_options.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070036#include "jni_internal.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070037#include "object_utils.h"
38#include "runtime.h"
39#include "gc/accounting/card_table-inl.h"
40#include "gc/accounting/heap_bitmap.h"
41#include "gc/space/space.h"
Brian Carlstromea46f952013-07-30 01:26:50 -070042#include "mirror/art_field-inl.h"
43#include "mirror/art_method-inl.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070044#include "mirror/class_loader.h"
45#include "mirror/class-inl.h"
46#include "mirror/dex_cache-inl.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070047#include "mirror/object-inl.h"
48#include "mirror/object_array-inl.h"
49#include "mirror/throwable.h"
50#include "scoped_thread_state_change.h"
51#include "ScopedLocalRef.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070052#include "thread.h"
53#include "thread_pool.h"
Ian Rogers848871b2013-08-05 10:56:33 -070054#include "trampolines/trampoline_compiler.h"
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +010055#include "transaction.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070056#include "verifier/method_verifier.h"
Vladimir Marko2bc47802014-02-10 09:43:07 +000057#include "verifier/method_verifier-inl.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070058
Brian Carlstrom7940e442013-07-12 13:46:57 -070059namespace art {
60
61static double Percentage(size_t x, size_t y) {
62 return 100.0 * (static_cast<double>(x)) / (static_cast<double>(x + y));
63}
64
65static void DumpStat(size_t x, size_t y, const char* str) {
66 if (x == 0 && y == 0) {
67 return;
68 }
Ian Rogerse732ef12013-10-09 15:22:24 -070069 LOG(INFO) << Percentage(x, y) << "% of " << str << " for " << (x + y) << " cases";
Brian Carlstrom7940e442013-07-12 13:46:57 -070070}
71
72class AOTCompilationStats {
73 public:
74 AOTCompilationStats()
75 : stats_lock_("AOT compilation statistics lock"),
76 types_in_dex_cache_(0), types_not_in_dex_cache_(0),
77 strings_in_dex_cache_(0), strings_not_in_dex_cache_(0),
78 resolved_types_(0), unresolved_types_(0),
79 resolved_instance_fields_(0), unresolved_instance_fields_(0),
80 resolved_local_static_fields_(0), resolved_static_fields_(0), unresolved_static_fields_(0),
81 type_based_devirtualization_(0),
82 safe_casts_(0), not_safe_casts_(0) {
83 for (size_t i = 0; i <= kMaxInvokeType; i++) {
84 resolved_methods_[i] = 0;
85 unresolved_methods_[i] = 0;
86 virtual_made_direct_[i] = 0;
87 direct_calls_to_boot_[i] = 0;
88 direct_methods_to_boot_[i] = 0;
89 }
90 }
91
92 void Dump() {
93 DumpStat(types_in_dex_cache_, types_not_in_dex_cache_, "types known to be in dex cache");
94 DumpStat(strings_in_dex_cache_, strings_not_in_dex_cache_, "strings known to be in dex cache");
95 DumpStat(resolved_types_, unresolved_types_, "types resolved");
96 DumpStat(resolved_instance_fields_, unresolved_instance_fields_, "instance fields resolved");
97 DumpStat(resolved_local_static_fields_ + resolved_static_fields_, unresolved_static_fields_,
98 "static fields resolved");
99 DumpStat(resolved_local_static_fields_, resolved_static_fields_ + unresolved_static_fields_,
100 "static fields local to a class");
101 DumpStat(safe_casts_, not_safe_casts_, "check-casts removed based on type information");
102 // Note, the code below subtracts the stat value so that when added to the stat value we have
103 // 100% of samples. TODO: clean this up.
104 DumpStat(type_based_devirtualization_,
105 resolved_methods_[kVirtual] + unresolved_methods_[kVirtual] +
106 resolved_methods_[kInterface] + unresolved_methods_[kInterface] -
107 type_based_devirtualization_,
108 "virtual/interface calls made direct based on type information");
109
110 for (size_t i = 0; i <= kMaxInvokeType; i++) {
111 std::ostringstream oss;
112 oss << static_cast<InvokeType>(i) << " methods were AOT resolved";
113 DumpStat(resolved_methods_[i], unresolved_methods_[i], oss.str().c_str());
114 if (virtual_made_direct_[i] > 0) {
115 std::ostringstream oss2;
116 oss2 << static_cast<InvokeType>(i) << " methods made direct";
117 DumpStat(virtual_made_direct_[i],
118 resolved_methods_[i] + unresolved_methods_[i] - virtual_made_direct_[i],
119 oss2.str().c_str());
120 }
121 if (direct_calls_to_boot_[i] > 0) {
122 std::ostringstream oss2;
123 oss2 << static_cast<InvokeType>(i) << " method calls are direct into boot";
124 DumpStat(direct_calls_to_boot_[i],
125 resolved_methods_[i] + unresolved_methods_[i] - direct_calls_to_boot_[i],
126 oss2.str().c_str());
127 }
128 if (direct_methods_to_boot_[i] > 0) {
129 std::ostringstream oss2;
130 oss2 << static_cast<InvokeType>(i) << " method calls have methods in boot";
131 DumpStat(direct_methods_to_boot_[i],
132 resolved_methods_[i] + unresolved_methods_[i] - direct_methods_to_boot_[i],
133 oss2.str().c_str());
134 }
135 }
136 }
137
138// Allow lossy statistics in non-debug builds.
139#ifndef NDEBUG
140#define STATS_LOCK() MutexLock mu(Thread::Current(), stats_lock_)
141#else
142#define STATS_LOCK()
143#endif
144
145 void TypeInDexCache() {
146 STATS_LOCK();
147 types_in_dex_cache_++;
148 }
149
150 void TypeNotInDexCache() {
151 STATS_LOCK();
152 types_not_in_dex_cache_++;
153 }
154
155 void StringInDexCache() {
156 STATS_LOCK();
157 strings_in_dex_cache_++;
158 }
159
160 void StringNotInDexCache() {
161 STATS_LOCK();
162 strings_not_in_dex_cache_++;
163 }
164
165 void TypeDoesntNeedAccessCheck() {
166 STATS_LOCK();
167 resolved_types_++;
168 }
169
170 void TypeNeedsAccessCheck() {
171 STATS_LOCK();
172 unresolved_types_++;
173 }
174
175 void ResolvedInstanceField() {
176 STATS_LOCK();
177 resolved_instance_fields_++;
178 }
179
180 void UnresolvedInstanceField() {
181 STATS_LOCK();
182 unresolved_instance_fields_++;
183 }
184
185 void ResolvedLocalStaticField() {
186 STATS_LOCK();
187 resolved_local_static_fields_++;
188 }
189
190 void ResolvedStaticField() {
191 STATS_LOCK();
192 resolved_static_fields_++;
193 }
194
195 void UnresolvedStaticField() {
196 STATS_LOCK();
197 unresolved_static_fields_++;
198 }
199
200 // Indicate that type information from the verifier led to devirtualization.
201 void PreciseTypeDevirtualization() {
202 STATS_LOCK();
203 type_based_devirtualization_++;
204 }
205
206 // Indicate that a method of the given type was resolved at compile time.
207 void ResolvedMethod(InvokeType type) {
208 DCHECK_LE(type, kMaxInvokeType);
209 STATS_LOCK();
210 resolved_methods_[type]++;
211 }
212
213 // Indicate that a method of the given type was unresolved at compile time as it was in an
214 // unknown dex file.
215 void UnresolvedMethod(InvokeType type) {
216 DCHECK_LE(type, kMaxInvokeType);
217 STATS_LOCK();
218 unresolved_methods_[type]++;
219 }
220
221 // Indicate that a type of virtual method dispatch has been converted into a direct method
222 // dispatch.
223 void VirtualMadeDirect(InvokeType type) {
224 DCHECK(type == kVirtual || type == kInterface || type == kSuper);
225 STATS_LOCK();
226 virtual_made_direct_[type]++;
227 }
228
229 // Indicate that a method of the given type was able to call directly into boot.
230 void DirectCallsToBoot(InvokeType type) {
231 DCHECK_LE(type, kMaxInvokeType);
232 STATS_LOCK();
233 direct_calls_to_boot_[type]++;
234 }
235
236 // Indicate that a method of the given type was able to be resolved directly from boot.
237 void DirectMethodsToBoot(InvokeType type) {
238 DCHECK_LE(type, kMaxInvokeType);
239 STATS_LOCK();
240 direct_methods_to_boot_[type]++;
241 }
242
243 // A check-cast could be eliminated due to verifier type analysis.
244 void SafeCast() {
245 STATS_LOCK();
246 safe_casts_++;
247 }
248
249 // A check-cast couldn't be eliminated due to verifier type analysis.
250 void NotASafeCast() {
251 STATS_LOCK();
252 not_safe_casts_++;
253 }
254
255 private:
256 Mutex stats_lock_;
257
258 size_t types_in_dex_cache_;
259 size_t types_not_in_dex_cache_;
260
261 size_t strings_in_dex_cache_;
262 size_t strings_not_in_dex_cache_;
263
264 size_t resolved_types_;
265 size_t unresolved_types_;
266
267 size_t resolved_instance_fields_;
268 size_t unresolved_instance_fields_;
269
270 size_t resolved_local_static_fields_;
271 size_t resolved_static_fields_;
272 size_t unresolved_static_fields_;
273 // Type based devirtualization for invoke interface and virtual.
274 size_t type_based_devirtualization_;
275
276 size_t resolved_methods_[kMaxInvokeType + 1];
277 size_t unresolved_methods_[kMaxInvokeType + 1];
278 size_t virtual_made_direct_[kMaxInvokeType + 1];
279 size_t direct_calls_to_boot_[kMaxInvokeType + 1];
280 size_t direct_methods_to_boot_[kMaxInvokeType + 1];
281
282 size_t safe_casts_;
283 size_t not_safe_casts_;
284
285 DISALLOW_COPY_AND_ASSIGN(AOTCompilationStats);
286};
287
Brian Carlstrom7940e442013-07-12 13:46:57 -0700288
289extern "C" art::CompiledMethod* ArtCompileDEX(art::CompilerDriver& compiler,
290 const art::DexFile::CodeItem* code_item,
291 uint32_t access_flags,
292 art::InvokeType invoke_type,
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700293 uint16_t class_def_idx,
Brian Carlstrom7940e442013-07-12 13:46:57 -0700294 uint32_t method_idx,
295 jobject class_loader,
296 const art::DexFile& dex_file);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700297
Brian Carlstrom6449c622014-02-10 23:48:36 -0800298CompilerDriver::CompilerDriver(const CompilerOptions* compiler_options,
299 VerificationResults* verification_results,
Vladimir Marko5816ed42013-11-27 17:04:20 +0000300 DexFileToMethodInlinerMap* method_inliner_map,
Nicolas Geoffrayf5df8972014-02-14 18:37:08 +0000301 CompilerBackend::Kind compiler_backend_kind,
302 InstructionSet instruction_set,
Dave Allison70202782013-10-22 17:52:19 -0700303 InstructionSetFeatures instruction_set_features,
buzbeea024a062013-07-31 10:47:37 -0700304 bool image, DescriptorSet* image_classes, size_t thread_count,
Nicolas Geoffrayea3fa0b2014-02-10 11:59:41 +0000305 bool dump_stats, bool dump_passes, CumulativeLogger* timer)
Brian Carlstrom6449c622014-02-10 23:48:36 -0800306 : compiler_options_(compiler_options),
307 verification_results_(verification_results),
Vladimir Marko5816ed42013-11-27 17:04:20 +0000308 method_inliner_map_(method_inliner_map),
Nicolas Geoffrayf5df8972014-02-14 18:37:08 +0000309 compiler_backend_(CompilerBackend::Create(compiler_backend_kind)),
Brian Carlstrom7940e442013-07-12 13:46:57 -0700310 instruction_set_(instruction_set),
Dave Allison70202782013-10-22 17:52:19 -0700311 instruction_set_features_(instruction_set_features),
Brian Carlstrom7940e442013-07-12 13:46:57 -0700312 freezing_constructor_lock_("freezing constructor lock"),
313 compiled_classes_lock_("compiled classes lock"),
314 compiled_methods_lock_("compiled method lock"),
315 image_(image),
316 image_classes_(image_classes),
317 thread_count_(thread_count),
Brian Carlstrom7940e442013-07-12 13:46:57 -0700318 start_ns_(0),
319 stats_(new AOTCompilationStats),
320 dump_stats_(dump_stats),
Nicolas Geoffrayea3fa0b2014-02-10 11:59:41 +0000321 dump_passes_(dump_passes),
322 timings_logger_(timer),
Brian Carlstrom7940e442013-07-12 13:46:57 -0700323 compiler_library_(NULL),
Brian Carlstrom7940e442013-07-12 13:46:57 -0700324 compiler_context_(NULL),
Brian Carlstrom7940e442013-07-12 13:46:57 -0700325 compiler_enable_auto_elf_loading_(NULL),
326 compiler_get_method_code_addr_(NULL),
Mark Mendell55d0eac2014-02-06 11:02:52 -0800327 support_boot_image_fixup_(instruction_set != kMips),
Mark Mendellae9fd932014-02-10 16:14:35 -0800328 cfi_info_(nullptr),
Ian Rogersd133b972013-09-05 11:01:30 -0700329 dedupe_code_("dedupe code"),
330 dedupe_mapping_table_("dedupe mapping table"),
331 dedupe_vmap_table_("dedupe vmap table"),
Mark Mendellae9fd932014-02-10 16:14:35 -0800332 dedupe_gc_map_("dedupe gc map"),
333 dedupe_cfi_info_("dedupe cfi info") {
Brian Carlstrom6449c622014-02-10 23:48:36 -0800334 DCHECK(compiler_options_ != nullptr);
335 DCHECK(verification_results_ != nullptr);
336 DCHECK(method_inliner_map_ != nullptr);
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700337
Brian Carlstrom7940e442013-07-12 13:46:57 -0700338 CHECK_PTHREAD_CALL(pthread_key_create, (&tls_key_, NULL), "compiler tls key");
339
Sebastien Hertz75021222013-07-16 18:34:50 +0200340 dex_to_dex_compiler_ = reinterpret_cast<DexToDexCompilerFn>(ArtCompileDEX);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700341
Nicolas Geoffrayf5df8972014-02-14 18:37:08 +0000342 compiler_backend_->Init(*this);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700343
344 CHECK(!Runtime::Current()->IsStarted());
345 if (!image_) {
346 CHECK(image_classes_.get() == NULL);
347 }
Mark Mendellae9fd932014-02-10 16:14:35 -0800348
349 // Are we generating CFI information?
350 if (compiler_options->GetGenerateGDBInformation()) {
351 cfi_info_.reset(compiler_backend_->GetCallFrameInformationInitialization(*this));
352 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700353}
354
Mathieu Chartier193bad92013-08-29 18:46:00 -0700355std::vector<uint8_t>* CompilerDriver::DeduplicateCode(const std::vector<uint8_t>& code) {
356 return dedupe_code_.Add(Thread::Current(), code);
357}
358
359std::vector<uint8_t>* CompilerDriver::DeduplicateMappingTable(const std::vector<uint8_t>& code) {
360 return dedupe_mapping_table_.Add(Thread::Current(), code);
361}
362
363std::vector<uint8_t>* CompilerDriver::DeduplicateVMapTable(const std::vector<uint8_t>& code) {
364 return dedupe_vmap_table_.Add(Thread::Current(), code);
365}
366
367std::vector<uint8_t>* CompilerDriver::DeduplicateGCMap(const std::vector<uint8_t>& code) {
368 return dedupe_gc_map_.Add(Thread::Current(), code);
369}
370
Mark Mendellae9fd932014-02-10 16:14:35 -0800371std::vector<uint8_t>* CompilerDriver::DeduplicateCFIInfo(const std::vector<uint8_t>* cfi_info) {
372 if (cfi_info == nullptr) {
373 return nullptr;
374 }
375 return dedupe_cfi_info_.Add(Thread::Current(), *cfi_info);
376}
377
Brian Carlstrom7940e442013-07-12 13:46:57 -0700378CompilerDriver::~CompilerDriver() {
379 Thread* self = Thread::Current();
380 {
381 MutexLock mu(self, compiled_classes_lock_);
382 STLDeleteValues(&compiled_classes_);
383 }
384 {
385 MutexLock mu(self, compiled_methods_lock_);
386 STLDeleteValues(&compiled_methods_);
387 }
388 {
389 MutexLock mu(self, compiled_methods_lock_);
390 STLDeleteElements(&code_to_patch_);
391 }
392 {
393 MutexLock mu(self, compiled_methods_lock_);
394 STLDeleteElements(&methods_to_patch_);
395 }
Hiroshi Yamauchibe1ca552014-01-15 11:46:48 -0800396 {
397 MutexLock mu(self, compiled_methods_lock_);
398 STLDeleteElements(&classes_to_patch_);
399 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700400 CHECK_PTHREAD_CALL(pthread_key_delete, (tls_key_), "delete tls key");
Nicolas Geoffrayf5df8972014-02-14 18:37:08 +0000401 compiler_backend_->UnInit(*this);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700402}
403
404CompilerTls* CompilerDriver::GetTls() {
405 // Lazily create thread-local storage
406 CompilerTls* res = static_cast<CompilerTls*>(pthread_getspecific(tls_key_));
407 if (res == NULL) {
408 res = new CompilerTls();
409 CHECK_PTHREAD_CALL(pthread_setspecific, (tls_key_, res), "compiler tls");
410 }
411 return res;
412}
413
Ian Rogers848871b2013-08-05 10:56:33 -0700414const std::vector<uint8_t>* CompilerDriver::CreateInterpreterToInterpreterBridge() const {
415 return CreateTrampoline(instruction_set_, kInterpreterAbi,
416 INTERPRETER_ENTRYPOINT_OFFSET(pInterpreterToInterpreterBridge));
417}
418
419const std::vector<uint8_t>* CompilerDriver::CreateInterpreterToCompiledCodeBridge() const {
420 return CreateTrampoline(instruction_set_, kInterpreterAbi,
421 INTERPRETER_ENTRYPOINT_OFFSET(pInterpreterToCompiledCodeBridge));
422}
423
424const std::vector<uint8_t>* CompilerDriver::CreateJniDlsymLookup() const {
425 return CreateTrampoline(instruction_set_, kJniAbi, JNI_ENTRYPOINT_OFFSET(pDlsymLookup));
426}
427
Jeff Hao88474b42013-10-23 16:24:40 -0700428const std::vector<uint8_t>* CompilerDriver::CreatePortableImtConflictTrampoline() const {
429 return CreateTrampoline(instruction_set_, kPortableAbi,
430 PORTABLE_ENTRYPOINT_OFFSET(pPortableImtConflictTrampoline));
431}
432
Brian Carlstrom7940e442013-07-12 13:46:57 -0700433const std::vector<uint8_t>* CompilerDriver::CreatePortableResolutionTrampoline() const {
Ian Rogers848871b2013-08-05 10:56:33 -0700434 return CreateTrampoline(instruction_set_, kPortableAbi,
435 PORTABLE_ENTRYPOINT_OFFSET(pPortableResolutionTrampoline));
436}
437
438const std::vector<uint8_t>* CompilerDriver::CreatePortableToInterpreterBridge() const {
439 return CreateTrampoline(instruction_set_, kPortableAbi,
440 PORTABLE_ENTRYPOINT_OFFSET(pPortableToInterpreterBridge));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700441}
442
Jeff Hao88474b42013-10-23 16:24:40 -0700443const std::vector<uint8_t>* CompilerDriver::CreateQuickImtConflictTrampoline() const {
444 return CreateTrampoline(instruction_set_, kQuickAbi,
445 QUICK_ENTRYPOINT_OFFSET(pQuickImtConflictTrampoline));
446}
447
Brian Carlstrom7940e442013-07-12 13:46:57 -0700448const std::vector<uint8_t>* CompilerDriver::CreateQuickResolutionTrampoline() const {
Ian Rogers848871b2013-08-05 10:56:33 -0700449 return CreateTrampoline(instruction_set_, kQuickAbi,
450 QUICK_ENTRYPOINT_OFFSET(pQuickResolutionTrampoline));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700451}
452
Ian Rogers848871b2013-08-05 10:56:33 -0700453const std::vector<uint8_t>* CompilerDriver::CreateQuickToInterpreterBridge() const {
454 return CreateTrampoline(instruction_set_, kQuickAbi,
455 QUICK_ENTRYPOINT_OFFSET(pQuickToInterpreterBridge));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700456}
457
458void CompilerDriver::CompileAll(jobject class_loader,
Brian Carlstrom45602482013-07-21 22:07:55 -0700459 const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -0800460 TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700461 DCHECK(!Runtime::Current()->IsStarted());
Mathieu Chartierbcd5e9d2013-11-13 14:33:28 -0800462 UniquePtr<ThreadPool> thread_pool(new ThreadPool("Compiler driver thread pool", thread_count_ - 1));
Ian Rogers3d504072014-03-01 09:16:49 -0800463 PreCompile(class_loader, dex_files, thread_pool.get(), timings);
464 Compile(class_loader, dex_files, thread_pool.get(), timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700465 if (dump_stats_) {
466 stats_->Dump();
467 }
468}
469
Mathieu Chartier590fee92013-09-13 13:46:47 -0700470static DexToDexCompilationLevel GetDexToDexCompilationlevel(
Ian Rogers98379392014-02-24 16:53:16 -0800471 Thread* self, SirtRef<mirror::ClassLoader>& class_loader, const DexFile& dex_file,
Mathieu Chartier590fee92013-09-13 13:46:47 -0700472 const DexFile::ClassDef& class_def) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700473 const char* descriptor = dex_file.GetClassDescriptor(class_def);
474 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Ian Rogers98379392014-02-24 16:53:16 -0800475 mirror::Class* klass = class_linker->FindClass(self, descriptor, class_loader);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700476 if (klass == NULL) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700477 CHECK(self->IsExceptionPending());
478 self->ClearException();
Sebastien Hertz75021222013-07-16 18:34:50 +0200479 return kDontDexToDexCompile;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700480 }
Sebastien Hertz75021222013-07-16 18:34:50 +0200481 // The verifier can only run on "quick" instructions at runtime (see usage of
482 // FindAccessedFieldAtDexPc and FindInvokedMethodAtDexPc in ThrowNullPointerExceptionFromDexPC
483 // function). Since image classes can be verified again while compiling an application,
484 // we must prevent the DEX-to-DEX compiler from introducing them.
485 // TODO: find a way to enable "quick" instructions for image classes and remove this check.
Mathieu Chartier590fee92013-09-13 13:46:47 -0700486 bool compiling_image_classes = class_loader.get() == nullptr;
Sebastien Hertz75021222013-07-16 18:34:50 +0200487 if (compiling_image_classes) {
488 return kRequired;
489 } else if (klass->IsVerified()) {
490 // Class is verified so we can enable DEX-to-DEX compilation for performance.
491 return kOptimize;
492 } else if (klass->IsCompileTimeVerified()) {
493 // Class verification has soft-failed. Anyway, ensure at least correctness.
494 DCHECK_EQ(klass->GetStatus(), mirror::Class::kStatusRetryVerificationAtRuntime);
495 return kRequired;
496 } else {
497 // Class verification has failed: do not run DEX-to-DEX compilation.
498 return kDontDexToDexCompile;
499 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700500}
501
Ian Rogers3d504072014-03-01 09:16:49 -0800502void CompilerDriver::CompileOne(mirror::ArtMethod* method, TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700503 DCHECK(!Runtime::Current()->IsStarted());
504 Thread* self = Thread::Current();
505 jobject jclass_loader;
506 const DexFile* dex_file;
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700507 uint16_t class_def_idx;
Ian Rogersef7d42f2014-01-06 12:55:46 -0800508 uint32_t method_idx = method->GetDexMethodIndex();
509 uint32_t access_flags = method->GetAccessFlags();
510 InvokeType invoke_type = method->GetInvokeType();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700511 {
512 ScopedObjectAccessUnchecked soa(self);
513 ScopedLocalRef<jobject>
514 local_class_loader(soa.Env(),
515 soa.AddLocalReference<jobject>(method->GetDeclaringClass()->GetClassLoader()));
516 jclass_loader = soa.Env()->NewGlobalRef(local_class_loader.get());
517 // Find the dex_file
518 MethodHelper mh(method);
519 dex_file = &mh.GetDexFile();
520 class_def_idx = mh.GetClassDefIndex();
521 }
Ian Rogersef7d42f2014-01-06 12:55:46 -0800522 const DexFile::CodeItem* code_item = dex_file->GetCodeItem(method->GetCodeItemOffset());
Brian Carlstrom7940e442013-07-12 13:46:57 -0700523 self->TransitionFromRunnableToSuspended(kNative);
524
525 std::vector<const DexFile*> dex_files;
526 dex_files.push_back(dex_file);
527
Mathieu Chartierbcd5e9d2013-11-13 14:33:28 -0800528 UniquePtr<ThreadPool> thread_pool(new ThreadPool("Compiler driver thread pool", 0U));
Ian Rogers3d504072014-03-01 09:16:49 -0800529 PreCompile(jclass_loader, dex_files, thread_pool.get(), timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700530
Brian Carlstrom7940e442013-07-12 13:46:57 -0700531 // Can we run DEX-to-DEX compiler on this class ?
Sebastien Hertz75021222013-07-16 18:34:50 +0200532 DexToDexCompilationLevel dex_to_dex_compilation_level = kDontDexToDexCompile;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700533 {
534 ScopedObjectAccess soa(Thread::Current());
535 const DexFile::ClassDef& class_def = dex_file->GetClassDef(class_def_idx);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700536 SirtRef<mirror::ClassLoader> class_loader(soa.Self(),
537 soa.Decode<mirror::ClassLoader*>(jclass_loader));
Ian Rogers98379392014-02-24 16:53:16 -0800538 dex_to_dex_compilation_level = GetDexToDexCompilationlevel(self, class_loader, *dex_file,
539 class_def);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700540 }
Ian Rogersef7d42f2014-01-06 12:55:46 -0800541 CompileMethod(code_item, access_flags, invoke_type, class_def_idx, method_idx, jclass_loader,
542 *dex_file, dex_to_dex_compilation_level);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700543
544 self->GetJniEnv()->DeleteGlobalRef(jclass_loader);
545
546 self->TransitionFromSuspendedToRunnable();
547}
548
549void CompilerDriver::Resolve(jobject class_loader, const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -0800550 ThreadPool* thread_pool, TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700551 for (size_t i = 0; i != dex_files.size(); ++i) {
552 const DexFile* dex_file = dex_files[i];
553 CHECK(dex_file != NULL);
554 ResolveDexFile(class_loader, *dex_file, thread_pool, timings);
555 }
556}
557
558void CompilerDriver::PreCompile(jobject class_loader, const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -0800559 ThreadPool* thread_pool, TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700560 LoadImageClasses(timings);
561
562 Resolve(class_loader, dex_files, thread_pool, timings);
563
564 Verify(class_loader, dex_files, thread_pool, timings);
565
566 InitializeClasses(class_loader, dex_files, thread_pool, timings);
567
568 UpdateImageClasses(timings);
569}
570
Ian Rogersdfb325e2013-10-30 01:00:44 -0700571bool CompilerDriver::IsImageClass(const char* descriptor) const {
Ian Rogerse6bb3b22013-08-19 21:51:45 -0700572 if (!IsImage()) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700573 return true;
Ian Rogerse6bb3b22013-08-19 21:51:45 -0700574 } else {
Ian Rogersdfb325e2013-10-30 01:00:44 -0700575 return image_classes_->find(descriptor) != image_classes_->end();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700576 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700577}
578
579static void ResolveExceptionsForMethod(MethodHelper* mh,
580 std::set<std::pair<uint16_t, const DexFile*> >& exceptions_to_resolve)
581 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
582 const DexFile::CodeItem* code_item = mh->GetCodeItem();
583 if (code_item == NULL) {
584 return; // native or abstract method
585 }
586 if (code_item->tries_size_ == 0) {
587 return; // nothing to process
588 }
589 const byte* encoded_catch_handler_list = DexFile::GetCatchHandlerData(*code_item, 0);
590 size_t num_encoded_catch_handlers = DecodeUnsignedLeb128(&encoded_catch_handler_list);
591 for (size_t i = 0; i < num_encoded_catch_handlers; i++) {
592 int32_t encoded_catch_handler_size = DecodeSignedLeb128(&encoded_catch_handler_list);
593 bool has_catch_all = false;
594 if (encoded_catch_handler_size <= 0) {
595 encoded_catch_handler_size = -encoded_catch_handler_size;
596 has_catch_all = true;
597 }
598 for (int32_t j = 0; j < encoded_catch_handler_size; j++) {
599 uint16_t encoded_catch_handler_handlers_type_idx =
600 DecodeUnsignedLeb128(&encoded_catch_handler_list);
601 // Add to set of types to resolve if not already in the dex cache resolved types
602 if (!mh->IsResolvedTypeIdx(encoded_catch_handler_handlers_type_idx)) {
603 exceptions_to_resolve.insert(
604 std::pair<uint16_t, const DexFile*>(encoded_catch_handler_handlers_type_idx,
605 &mh->GetDexFile()));
606 }
607 // ignore address associated with catch handler
608 DecodeUnsignedLeb128(&encoded_catch_handler_list);
609 }
610 if (has_catch_all) {
611 // ignore catch all address
612 DecodeUnsignedLeb128(&encoded_catch_handler_list);
613 }
614 }
615}
616
617static bool ResolveCatchBlockExceptionsClassVisitor(mirror::Class* c, void* arg)
618 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
619 std::set<std::pair<uint16_t, const DexFile*> >* exceptions_to_resolve =
620 reinterpret_cast<std::set<std::pair<uint16_t, const DexFile*> >*>(arg);
621 MethodHelper mh;
622 for (size_t i = 0; i < c->NumVirtualMethods(); ++i) {
Brian Carlstromea46f952013-07-30 01:26:50 -0700623 mirror::ArtMethod* m = c->GetVirtualMethod(i);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700624 mh.ChangeMethod(m);
625 ResolveExceptionsForMethod(&mh, *exceptions_to_resolve);
626 }
627 for (size_t i = 0; i < c->NumDirectMethods(); ++i) {
Brian Carlstromea46f952013-07-30 01:26:50 -0700628 mirror::ArtMethod* m = c->GetDirectMethod(i);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700629 mh.ChangeMethod(m);
630 ResolveExceptionsForMethod(&mh, *exceptions_to_resolve);
631 }
632 return true;
633}
634
635static bool RecordImageClassesVisitor(mirror::Class* klass, void* arg)
636 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
637 CompilerDriver::DescriptorSet* image_classes =
638 reinterpret_cast<CompilerDriver::DescriptorSet*>(arg);
639 image_classes->insert(ClassHelper(klass).GetDescriptor());
640 return true;
641}
642
643// Make a list of descriptors for classes to include in the image
Ian Rogers3d504072014-03-01 09:16:49 -0800644void CompilerDriver::LoadImageClasses(TimingLogger* timings)
Brian Carlstrom7940e442013-07-12 13:46:57 -0700645 LOCKS_EXCLUDED(Locks::mutator_lock_) {
Ian Rogerse6bb3b22013-08-19 21:51:45 -0700646 if (!IsImage()) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700647 return;
648 }
649
Ian Rogers3d504072014-03-01 09:16:49 -0800650 timings->NewSplit("LoadImageClasses");
Brian Carlstrom7940e442013-07-12 13:46:57 -0700651 // Make a first class to load all classes explicitly listed in the file
652 Thread* self = Thread::Current();
653 ScopedObjectAccess soa(self);
654 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Mathieu Chartier02e25112013-08-14 16:14:24 -0700655 for (auto it = image_classes_->begin(), end = image_classes_->end(); it != end;) {
Vladimir Markoe9c36b32013-11-21 15:49:16 +0000656 const std::string& descriptor(*it);
Ian Rogers98379392014-02-24 16:53:16 -0800657 SirtRef<mirror::Class> klass(self, class_linker->FindSystemClass(self, descriptor.c_str()));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700658 if (klass.get() == NULL) {
Ian Rogerse6bb3b22013-08-19 21:51:45 -0700659 VLOG(compiler) << "Failed to find class " << descriptor;
Vladimir Markoe9c36b32013-11-21 15:49:16 +0000660 image_classes_->erase(it++);
Ian Rogersa436fde2013-08-27 23:34:06 -0700661 self->ClearException();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700662 } else {
663 ++it;
664 }
665 }
666
667 // Resolve exception classes referenced by the loaded classes. The catch logic assumes
668 // exceptions are resolved by the verifier when there is a catch block in an interested method.
669 // Do this here so that exception classes appear to have been specified image classes.
670 std::set<std::pair<uint16_t, const DexFile*> > unresolved_exception_types;
671 SirtRef<mirror::Class> java_lang_Throwable(self,
Ian Rogers98379392014-02-24 16:53:16 -0800672 class_linker->FindSystemClass(self, "Ljava/lang/Throwable;"));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700673 do {
674 unresolved_exception_types.clear();
675 class_linker->VisitClasses(ResolveCatchBlockExceptionsClassVisitor,
676 &unresolved_exception_types);
Mathieu Chartier02e25112013-08-14 16:14:24 -0700677 for (const std::pair<uint16_t, const DexFile*>& exception_type : unresolved_exception_types) {
678 uint16_t exception_type_idx = exception_type.first;
679 const DexFile* dex_file = exception_type.second;
Mathieu Chartier590fee92013-09-13 13:46:47 -0700680 SirtRef<mirror::DexCache> dex_cache(self, class_linker->FindDexCache(*dex_file));
681 SirtRef<mirror::ClassLoader> class_loader(self, nullptr);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700682 SirtRef<mirror::Class> klass(self, class_linker->ResolveType(*dex_file, exception_type_idx,
683 dex_cache, class_loader));
684 if (klass.get() == NULL) {
685 const DexFile::TypeId& type_id = dex_file->GetTypeId(exception_type_idx);
686 const char* descriptor = dex_file->GetTypeDescriptor(type_id);
687 LOG(FATAL) << "Failed to resolve class " << descriptor;
688 }
689 DCHECK(java_lang_Throwable->IsAssignableFrom(klass.get()));
690 }
691 // Resolving exceptions may load classes that reference more exceptions, iterate until no
692 // more are found
693 } while (!unresolved_exception_types.empty());
694
695 // We walk the roots looking for classes so that we'll pick up the
696 // above classes plus any classes them depend on such super
697 // classes, interfaces, and the required ClassLinker roots.
698 class_linker->VisitClasses(RecordImageClassesVisitor, image_classes_.get());
699
700 CHECK_NE(image_classes_->size(), 0U);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700701}
702
703static void MaybeAddToImageClasses(mirror::Class* klass, CompilerDriver::DescriptorSet* image_classes)
704 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
705 while (!klass->IsObjectClass()) {
706 ClassHelper kh(klass);
707 const char* descriptor = kh.GetDescriptor();
708 std::pair<CompilerDriver::DescriptorSet::iterator, bool> result =
709 image_classes->insert(descriptor);
710 if (result.second) {
Anwar Ghuloum75a43f12013-08-13 17:22:14 -0700711 VLOG(compiler) << "Adding " << descriptor << " to image classes";
Brian Carlstrom7940e442013-07-12 13:46:57 -0700712 } else {
713 return;
714 }
715 for (size_t i = 0; i < kh.NumDirectInterfaces(); ++i) {
716 MaybeAddToImageClasses(kh.GetDirectInterface(i), image_classes);
717 }
718 if (klass->IsArrayClass()) {
719 MaybeAddToImageClasses(klass->GetComponentType(), image_classes);
720 }
721 klass = klass->GetSuperClass();
722 }
723}
724
725void CompilerDriver::FindClinitImageClassesCallback(mirror::Object* object, void* arg) {
726 DCHECK(object != NULL);
727 DCHECK(arg != NULL);
728 CompilerDriver* compiler_driver = reinterpret_cast<CompilerDriver*>(arg);
729 MaybeAddToImageClasses(object->GetClass(), compiler_driver->image_classes_.get());
730}
731
Ian Rogers3d504072014-03-01 09:16:49 -0800732void CompilerDriver::UpdateImageClasses(TimingLogger* timings) {
Ian Rogerse6bb3b22013-08-19 21:51:45 -0700733 if (IsImage()) {
Ian Rogers3d504072014-03-01 09:16:49 -0800734 timings->NewSplit("UpdateImageClasses");
Ian Rogerse6bb3b22013-08-19 21:51:45 -0700735
736 // Update image_classes_ with classes for objects created by <clinit> methods.
737 Thread* self = Thread::Current();
738 const char* old_cause = self->StartAssertNoThreadSuspension("ImageWriter");
739 gc::Heap* heap = Runtime::Current()->GetHeap();
740 // TODO: Image spaces only?
Mathieu Chartier590fee92013-09-13 13:46:47 -0700741 ScopedObjectAccess soa(Thread::Current());
Ian Rogerse6bb3b22013-08-19 21:51:45 -0700742 WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700743 heap->VisitObjects(FindClinitImageClassesCallback, this);
Ian Rogerse6bb3b22013-08-19 21:51:45 -0700744 self->EndAssertNoThreadSuspension(old_cause);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700745 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700746}
747
Mathieu Chartier590fee92013-09-13 13:46:47 -0700748bool CompilerDriver::CanAssumeTypeIsPresentInDexCache(const DexFile& dex_file, uint32_t type_idx) {
Ian Rogersfc0e94b2013-09-23 23:51:32 -0700749 if (IsImage() &&
Ian Rogersdfb325e2013-10-30 01:00:44 -0700750 IsImageClass(dex_file.StringDataByIdx(dex_file.GetTypeId(type_idx).descriptor_idx_))) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700751 if (kIsDebugBuild) {
752 ScopedObjectAccess soa(Thread::Current());
753 mirror::DexCache* dex_cache = Runtime::Current()->GetClassLinker()->FindDexCache(dex_file);
754 mirror::Class* resolved_class = dex_cache->GetResolvedType(type_idx);
755 CHECK(resolved_class != NULL);
756 }
757 stats_->TypeInDexCache();
758 return true;
759 } else {
760 stats_->TypeNotInDexCache();
761 return false;
762 }
763}
764
765bool CompilerDriver::CanAssumeStringIsPresentInDexCache(const DexFile& dex_file,
766 uint32_t string_idx) {
767 // See also Compiler::ResolveDexFile
768
769 bool result = false;
770 if (IsImage()) {
771 // We resolve all const-string strings when building for the image.
772 ScopedObjectAccess soa(Thread::Current());
Mathieu Chartier590fee92013-09-13 13:46:47 -0700773 SirtRef<mirror::DexCache> dex_cache(soa.Self(), Runtime::Current()->GetClassLinker()->FindDexCache(dex_file));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700774 Runtime::Current()->GetClassLinker()->ResolveString(dex_file, string_idx, dex_cache);
775 result = true;
776 }
777 if (result) {
778 stats_->StringInDexCache();
779 } else {
780 stats_->StringNotInDexCache();
781 }
782 return result;
783}
784
785bool CompilerDriver::CanAccessTypeWithoutChecks(uint32_t referrer_idx, const DexFile& dex_file,
786 uint32_t type_idx,
787 bool* type_known_final, bool* type_known_abstract,
788 bool* equals_referrers_class) {
789 if (type_known_final != NULL) {
790 *type_known_final = false;
791 }
792 if (type_known_abstract != NULL) {
793 *type_known_abstract = false;
794 }
795 if (equals_referrers_class != NULL) {
796 *equals_referrers_class = false;
797 }
798 ScopedObjectAccess soa(Thread::Current());
799 mirror::DexCache* dex_cache = Runtime::Current()->GetClassLinker()->FindDexCache(dex_file);
800 // Get type from dex cache assuming it was populated by the verifier
801 mirror::Class* resolved_class = dex_cache->GetResolvedType(type_idx);
802 if (resolved_class == NULL) {
803 stats_->TypeNeedsAccessCheck();
804 return false; // Unknown class needs access checks.
805 }
806 const DexFile::MethodId& method_id = dex_file.GetMethodId(referrer_idx);
807 if (equals_referrers_class != NULL) {
808 *equals_referrers_class = (method_id.class_idx_ == type_idx);
809 }
810 mirror::Class* referrer_class = dex_cache->GetResolvedType(method_id.class_idx_);
811 if (referrer_class == NULL) {
812 stats_->TypeNeedsAccessCheck();
813 return false; // Incomplete referrer knowledge needs access check.
814 }
815 // Perform access check, will return true if access is ok or false if we're going to have to
816 // check this at runtime (for example for class loaders).
817 bool result = referrer_class->CanAccess(resolved_class);
818 if (result) {
819 stats_->TypeDoesntNeedAccessCheck();
820 if (type_known_final != NULL) {
821 *type_known_final = resolved_class->IsFinal() && !resolved_class->IsArrayClass();
822 }
823 if (type_known_abstract != NULL) {
824 *type_known_abstract = resolved_class->IsAbstract() && !resolved_class->IsArrayClass();
825 }
826 } else {
827 stats_->TypeNeedsAccessCheck();
828 }
829 return result;
830}
831
832bool CompilerDriver::CanAccessInstantiableTypeWithoutChecks(uint32_t referrer_idx,
833 const DexFile& dex_file,
834 uint32_t type_idx) {
835 ScopedObjectAccess soa(Thread::Current());
836 mirror::DexCache* dex_cache = Runtime::Current()->GetClassLinker()->FindDexCache(dex_file);
837 // Get type from dex cache assuming it was populated by the verifier.
838 mirror::Class* resolved_class = dex_cache->GetResolvedType(type_idx);
839 if (resolved_class == NULL) {
840 stats_->TypeNeedsAccessCheck();
841 return false; // Unknown class needs access checks.
842 }
843 const DexFile::MethodId& method_id = dex_file.GetMethodId(referrer_idx);
844 mirror::Class* referrer_class = dex_cache->GetResolvedType(method_id.class_idx_);
845 if (referrer_class == NULL) {
846 stats_->TypeNeedsAccessCheck();
847 return false; // Incomplete referrer knowledge needs access check.
848 }
849 // Perform access and instantiable checks, will return true if access is ok or false if we're
850 // going to have to check this at runtime (for example for class loaders).
851 bool result = referrer_class->CanAccess(resolved_class) && resolved_class->IsInstantiable();
852 if (result) {
853 stats_->TypeDoesntNeedAccessCheck();
854 } else {
855 stats_->TypeNeedsAccessCheck();
856 }
857 return result;
858}
859
Hiroshi Yamauchibe1ca552014-01-15 11:46:48 -0800860bool CompilerDriver::CanEmbedTypeInCode(const DexFile& dex_file, uint32_t type_idx,
861 bool* is_type_initialized, bool* use_direct_type_ptr,
862 uintptr_t* direct_type_ptr) {
863 ScopedObjectAccess soa(Thread::Current());
864 mirror::DexCache* dex_cache = Runtime::Current()->GetClassLinker()->FindDexCache(dex_file);
865 mirror::Class* resolved_class = dex_cache->GetResolvedType(type_idx);
866 if (resolved_class == nullptr) {
867 return false;
868 }
869 const bool compiling_boot = Runtime::Current()->GetHeap()->IsCompilingBoot();
870 if (compiling_boot) {
871 // boot -> boot class pointers.
872 // True if the class is in the image at boot compiling time.
873 const bool is_image_class = IsImage() && IsImageClass(
874 dex_file.StringDataByIdx(dex_file.GetTypeId(type_idx).descriptor_idx_));
875 // True if pc relative load works.
876 const bool support_boot_image_fixup = GetSupportBootImageFixup();
877 if (is_image_class && support_boot_image_fixup) {
878 *is_type_initialized = resolved_class->IsInitialized();
879 *use_direct_type_ptr = false;
880 *direct_type_ptr = 0;
881 return true;
882 } else {
883 return false;
884 }
885 } else {
886 // True if the class is in the image at app compiling time.
887 const bool class_in_image =
888 Runtime::Current()->GetHeap()->FindSpaceFromObject(resolved_class, false)->IsImageSpace();
889 if (class_in_image) {
890 // boot -> app class pointers.
891 *is_type_initialized = resolved_class->IsInitialized();
892 *use_direct_type_ptr = true;
893 *direct_type_ptr = reinterpret_cast<uintptr_t>(resolved_class);
894 return true;
895 } else {
896 // app -> app class pointers.
897 // Give up because app does not have an image and class
898 // isn't created at compile time. TODO: implement this
899 // if/when each app gets an image.
900 return false;
901 }
902 }
903}
904
Vladimir Markobe0e5462014-02-26 11:24:15 +0000905void CompilerDriver::ProcessedInstanceField(bool resolved) {
906 if (!resolved) {
907 stats_->UnresolvedInstanceField();
908 } else {
909 stats_->ResolvedInstanceField();
910 }
911}
912
913void CompilerDriver::ProcessedStaticField(bool resolved, bool local) {
914 if (!resolved) {
915 stats_->UnresolvedStaticField();
916 } else if (local) {
917 stats_->ResolvedLocalStaticField();
918 } else {
919 stats_->ResolvedStaticField();
920 }
921}
922
Brian Carlstrom7940e442013-07-12 13:46:57 -0700923static mirror::Class* ComputeCompilingMethodsClass(ScopedObjectAccess& soa,
Mathieu Chartier590fee92013-09-13 13:46:47 -0700924 SirtRef<mirror::DexCache>& dex_cache,
Brian Carlstrom7940e442013-07-12 13:46:57 -0700925 const DexCompilationUnit* mUnit)
926 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
927 // The passed dex_cache is a hint, sanity check before asking the class linker that will take a
928 // lock.
929 if (dex_cache->GetDexFile() != mUnit->GetDexFile()) {
Mathieu Chartier590fee92013-09-13 13:46:47 -0700930 dex_cache.reset(mUnit->GetClassLinker()->FindDexCache(*mUnit->GetDexFile()));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700931 }
Mathieu Chartier590fee92013-09-13 13:46:47 -0700932 SirtRef<mirror::ClassLoader>
933 class_loader(soa.Self(), soa.Decode<mirror::ClassLoader*>(mUnit->GetClassLoader()));
934 const DexFile::MethodId& referrer_method_id =
935 mUnit->GetDexFile()->GetMethodId(mUnit->GetDexMethodIndex());
Brian Carlstrom7940e442013-07-12 13:46:57 -0700936 return mUnit->GetClassLinker()->ResolveType(*mUnit->GetDexFile(), referrer_method_id.class_idx_,
937 dex_cache, class_loader);
938}
939
Brian Carlstromea46f952013-07-30 01:26:50 -0700940static mirror::ArtMethod* ComputeMethodReferencedFromCompilingMethod(ScopedObjectAccess& soa,
Ian Rogers65ec92c2013-09-06 10:49:58 -0700941 const DexCompilationUnit* mUnit,
942 uint32_t method_idx,
943 InvokeType type)
Brian Carlstrom7940e442013-07-12 13:46:57 -0700944 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartier590fee92013-09-13 13:46:47 -0700945 SirtRef<mirror::DexCache> dex_cache(soa.Self(), mUnit->GetClassLinker()->FindDexCache(*mUnit->GetDexFile()));
946 SirtRef<mirror::ClassLoader> class_loader(soa.Self(), soa.Decode<mirror::ClassLoader*>(mUnit->GetClassLoader()));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700947 return mUnit->GetClassLinker()->ResolveMethod(*mUnit->GetDexFile(), method_idx, dex_cache,
948 class_loader, NULL, type);
949}
950
Vladimir Marko2bc47802014-02-10 09:43:07 +0000951bool CompilerDriver::ComputeSpecialAccessorInfo(uint32_t field_idx, bool is_put,
952 verifier::MethodVerifier* verifier,
953 InlineIGetIPutData* result) {
954 mirror::DexCache* dex_cache = verifier->GetDexCache();
955 uint32_t method_idx = verifier->GetMethodReference().dex_method_index;
956 mirror::ArtMethod* method = dex_cache->GetResolvedMethod(method_idx);
957 mirror::ArtField* field = dex_cache->GetResolvedField(field_idx);
Vladimir Markoc7ac6492014-02-12 10:17:09 +0000958 if (method == nullptr || field == nullptr || field->IsStatic()) {
Vladimir Marko2bc47802014-02-10 09:43:07 +0000959 return false;
960 }
961 mirror::Class* method_class = method->GetDeclaringClass();
962 mirror::Class* field_class = field->GetDeclaringClass();
963 if (!method_class->CanAccessResolvedField(field_class, field, dex_cache, field_idx) ||
964 (is_put && field->IsFinal() && method_class != field_class)) {
965 return false;
966 }
967 DCHECK_GE(field->GetOffset().Int32Value(), 0);
Vladimir Marko2bc47802014-02-10 09:43:07 +0000968 result->field_idx = field_idx;
969 result->field_offset = field->GetOffset().Int32Value();
970 result->is_volatile = field->IsVolatile();
971 return true;
972}
973
Brian Carlstrom7940e442013-07-12 13:46:57 -0700974bool CompilerDriver::ComputeInstanceFieldInfo(uint32_t field_idx, const DexCompilationUnit* mUnit,
Vladimir Markobe0e5462014-02-26 11:24:15 +0000975 bool is_put, MemberOffset* field_offset,
976 bool* is_volatile) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700977 ScopedObjectAccess soa(Thread::Current());
Vladimir Markobe0e5462014-02-26 11:24:15 +0000978 // Try to resolve the field and compiling method's class.
979 mirror::ArtField* resolved_field;
980 mirror::Class* referrer_class;
981 mirror::DexCache* dex_cache;
982 {
983 SirtRef<mirror::DexCache> dex_cache_sirt(soa.Self(),
984 mUnit->GetClassLinker()->FindDexCache(*mUnit->GetDexFile()));
985 SirtRef<mirror::ClassLoader> class_loader_sirt(soa.Self(),
986 soa.Decode<mirror::ClassLoader*>(mUnit->GetClassLoader()));
987 SirtRef<mirror::ArtField> resolved_field_sirt(soa.Self(),
988 ResolveField(soa, dex_cache_sirt, class_loader_sirt, mUnit, field_idx, false));
989 referrer_class = (resolved_field_sirt.get() != nullptr)
990 ? ResolveCompilingMethodsClass(soa, dex_cache_sirt, class_loader_sirt, mUnit) : nullptr;
991 resolved_field = resolved_field_sirt.get();
992 dex_cache = dex_cache_sirt.get();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700993 }
Vladimir Markobe0e5462014-02-26 11:24:15 +0000994 bool result = false;
995 if (resolved_field != nullptr && referrer_class != nullptr) {
996 *is_volatile = IsFieldVolatile(resolved_field);
997 std::pair<bool, bool> fast_path = IsFastInstanceField(
998 dex_cache, referrer_class, resolved_field, field_idx, field_offset);
999 result = is_put ? fast_path.second : fast_path.first;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001000 }
Vladimir Markobe0e5462014-02-26 11:24:15 +00001001 if (!result) {
1002 // Conservative defaults.
1003 *is_volatile = true;
1004 *field_offset = MemberOffset(static_cast<size_t>(-1));
1005 }
1006 ProcessedInstanceField(result);
1007 return result;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001008}
1009
1010bool CompilerDriver::ComputeStaticFieldInfo(uint32_t field_idx, const DexCompilationUnit* mUnit,
Vladimir Markobe0e5462014-02-26 11:24:15 +00001011 bool is_put, MemberOffset* field_offset,
1012 uint32_t* storage_index, bool* is_referrers_class,
1013 bool* is_volatile, bool* is_initialized) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001014 ScopedObjectAccess soa(Thread::Current());
Vladimir Markobe0e5462014-02-26 11:24:15 +00001015 // Try to resolve the field and compiling method's class.
1016 mirror::ArtField* resolved_field;
1017 mirror::Class* referrer_class;
1018 mirror::DexCache* dex_cache;
1019 {
1020 SirtRef<mirror::DexCache> dex_cache_sirt(soa.Self(),
1021 mUnit->GetClassLinker()->FindDexCache(*mUnit->GetDexFile()));
1022 SirtRef<mirror::ClassLoader> class_loader_sirt(soa.Self(),
1023 soa.Decode<mirror::ClassLoader*>(mUnit->GetClassLoader()));
1024 SirtRef<mirror::ArtField> resolved_field_sirt(soa.Self(),
1025 ResolveField(soa, dex_cache_sirt, class_loader_sirt, mUnit, field_idx, true));
1026 referrer_class = (resolved_field_sirt.get() != nullptr)
1027 ? ResolveCompilingMethodsClass(soa, dex_cache_sirt, class_loader_sirt, mUnit) : nullptr;
1028 resolved_field = resolved_field_sirt.get();
1029 dex_cache = dex_cache_sirt.get();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001030 }
Vladimir Markobe0e5462014-02-26 11:24:15 +00001031 bool result = false;
1032 if (resolved_field != nullptr && referrer_class != nullptr) {
1033 *is_volatile = IsFieldVolatile(resolved_field);
1034 std::pair<bool, bool> fast_path = IsFastStaticField(
1035 dex_cache, referrer_class, resolved_field, field_idx, field_offset,
1036 storage_index, is_referrers_class, is_initialized);
1037 result = is_put ? fast_path.second : fast_path.first;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001038 }
Vladimir Markobe0e5462014-02-26 11:24:15 +00001039 if (!result) {
1040 // Conservative defaults.
1041 *is_volatile = true;
1042 *field_offset = MemberOffset(static_cast<size_t>(-1));
1043 *storage_index = -1;
1044 *is_referrers_class = false;
1045 *is_initialized = false;
1046 }
1047 ProcessedStaticField(result, *is_referrers_class);
1048 return result;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001049}
1050
Ian Rogers83883d72013-10-21 21:07:24 -07001051void CompilerDriver::GetCodeAndMethodForDirectCall(InvokeType* type, InvokeType sharp_type,
1052 bool no_guarantee_of_dex_cache_entry,
Brian Carlstrom7940e442013-07-12 13:46:57 -07001053 mirror::Class* referrer_class,
Brian Carlstromea46f952013-07-30 01:26:50 -07001054 mirror::ArtMethod* method,
Ian Rogers65ec92c2013-09-06 10:49:58 -07001055 bool update_stats,
Ian Rogers83883d72013-10-21 21:07:24 -07001056 MethodReference* target_method,
Ian Rogers65ec92c2013-09-06 10:49:58 -07001057 uintptr_t* direct_code,
1058 uintptr_t* direct_method) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001059 // For direct and static methods compute possible direct_code and direct_method values, ie
1060 // an address for the Method* being invoked and an address of the code for that Method*.
1061 // For interface calls compute a value for direct_method that is the interface method being
1062 // invoked, so this can be passed to the out-of-line runtime support code.
Ian Rogers65ec92c2013-09-06 10:49:58 -07001063 *direct_code = 0;
1064 *direct_method = 0;
Ian Rogers83883d72013-10-21 21:07:24 -07001065 bool use_dex_cache = false;
Mathieu Chartier590fee92013-09-13 13:46:47 -07001066 const bool compiling_boot = Runtime::Current()->GetHeap()->IsCompilingBoot();
Nicolas Geoffrayf5df8972014-02-14 18:37:08 +00001067 if (compiler_backend_->IsPortable()) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001068 if (sharp_type != kStatic && sharp_type != kDirect) {
1069 return;
1070 }
Ian Rogers83883d72013-10-21 21:07:24 -07001071 use_dex_cache = true;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001072 } else {
Jeff Hao88474b42013-10-23 16:24:40 -07001073 if (sharp_type != kStatic && sharp_type != kDirect) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001074 return;
1075 }
Ian Rogers83883d72013-10-21 21:07:24 -07001076 // TODO: support patching on all architectures.
1077 use_dex_cache = compiling_boot && !support_boot_image_fixup_;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001078 }
Ian Rogers83883d72013-10-21 21:07:24 -07001079 bool method_code_in_boot = (method->GetDeclaringClass()->GetClassLoader() == nullptr);
1080 if (!use_dex_cache) {
1081 if (!method_code_in_boot) {
1082 use_dex_cache = true;
1083 } else {
1084 bool has_clinit_trampoline =
1085 method->IsStatic() && !method->GetDeclaringClass()->IsInitialized();
1086 if (has_clinit_trampoline && (method->GetDeclaringClass() != referrer_class)) {
1087 // Ensure we run the clinit trampoline unless we are invoking a static method in the same
1088 // class.
1089 use_dex_cache = true;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001090 }
1091 }
Ian Rogers83883d72013-10-21 21:07:24 -07001092 }
1093 if (update_stats && method_code_in_boot) {
Jeff Hao88474b42013-10-23 16:24:40 -07001094 stats_->DirectCallsToBoot(*type);
Ian Rogers83883d72013-10-21 21:07:24 -07001095 stats_->DirectMethodsToBoot(*type);
1096 }
1097 if (!use_dex_cache && compiling_boot) {
1098 MethodHelper mh(method);
Ian Rogersdfb325e2013-10-30 01:00:44 -07001099 if (!IsImageClass(mh.GetDeclaringClassDescriptor())) {
Ian Rogers83883d72013-10-21 21:07:24 -07001100 // We can only branch directly to Methods that are resolved in the DexCache.
1101 // Otherwise we won't invoke the resolution trampoline.
1102 use_dex_cache = true;
1103 }
1104 }
1105 // The method is defined not within this dex file. We need a dex cache slot within the current
1106 // dex file or direct pointers.
1107 bool must_use_direct_pointers = false;
1108 if (target_method->dex_file == method->GetDeclaringClass()->GetDexCache()->GetDexFile()) {
1109 target_method->dex_method_index = method->GetDexMethodIndex();
1110 } else {
1111 // TODO: support patching from one dex file to another in the boot image.
1112 use_dex_cache = use_dex_cache || compiling_boot;
1113 if (no_guarantee_of_dex_cache_entry) {
1114 // See if the method is also declared in this dex cache.
1115 uint32_t dex_method_idx = MethodHelper(method).FindDexMethodIndexInOtherDexFile(
Vladimir Markobbcc0c02014-02-03 14:08:42 +00001116 *target_method->dex_file, target_method->dex_method_index);
Ian Rogers83883d72013-10-21 21:07:24 -07001117 if (dex_method_idx != DexFile::kDexNoIndex) {
1118 target_method->dex_method_index = dex_method_idx;
1119 } else {
1120 must_use_direct_pointers = true;
1121 }
1122 }
1123 }
1124 if (use_dex_cache) {
1125 if (must_use_direct_pointers) {
1126 // Fail. Test above showed the only safe dispatch was via the dex cache, however, the direct
1127 // pointers are required as the dex cache lacks an appropriate entry.
1128 VLOG(compiler) << "Dex cache devirtualization failed for: " << PrettyMethod(method);
1129 } else {
1130 *type = sharp_type;
1131 }
1132 } else {
1133 if (compiling_boot) {
1134 *type = sharp_type;
1135 *direct_method = -1;
Jeff Hao88474b42013-10-23 16:24:40 -07001136 *direct_code = -1;
Ian Rogers83883d72013-10-21 21:07:24 -07001137 } else {
1138 bool method_in_image =
1139 Runtime::Current()->GetHeap()->FindSpaceFromObject(method, false)->IsImageSpace();
1140 if (method_in_image) {
Jeff Hao88474b42013-10-23 16:24:40 -07001141 CHECK(!method->IsAbstract());
Ian Rogers83883d72013-10-21 21:07:24 -07001142 *type = sharp_type;
1143 *direct_method = reinterpret_cast<uintptr_t>(method);
Nicolas Geoffrayf5df8972014-02-14 18:37:08 +00001144 *direct_code = compiler_backend_->GetEntryPointOf(method);
Ian Rogers83883d72013-10-21 21:07:24 -07001145 target_method->dex_file = method->GetDeclaringClass()->GetDexCache()->GetDexFile();
1146 target_method->dex_method_index = method->GetDexMethodIndex();
1147 } else if (!must_use_direct_pointers) {
1148 // Set the code and rely on the dex cache for the method.
1149 *type = sharp_type;
Nicolas Geoffrayf5df8972014-02-14 18:37:08 +00001150 *direct_code = compiler_backend_->GetEntryPointOf(method);
Ian Rogers83883d72013-10-21 21:07:24 -07001151 } else {
1152 // Direct pointers were required but none were available.
1153 VLOG(compiler) << "Dex cache devirtualization failed for: " << PrettyMethod(method);
1154 }
1155 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001156 }
1157}
1158
1159bool CompilerDriver::ComputeInvokeInfo(const DexCompilationUnit* mUnit, const uint32_t dex_pc,
Ian Rogers65ec92c2013-09-06 10:49:58 -07001160 bool update_stats, bool enable_devirtualization,
1161 InvokeType* invoke_type, MethodReference* target_method,
1162 int* vtable_idx, uintptr_t* direct_code,
1163 uintptr_t* direct_method) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001164 ScopedObjectAccess soa(Thread::Current());
Ian Rogers65ec92c2013-09-06 10:49:58 -07001165 *vtable_idx = -1;
1166 *direct_code = 0;
1167 *direct_method = 0;
Brian Carlstromea46f952013-07-30 01:26:50 -07001168 mirror::ArtMethod* resolved_method =
Ian Rogers65ec92c2013-09-06 10:49:58 -07001169 ComputeMethodReferencedFromCompilingMethod(soa, mUnit, target_method->dex_method_index,
1170 *invoke_type);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001171 if (resolved_method != NULL) {
Ian Rogers83883d72013-10-21 21:07:24 -07001172 if (*invoke_type == kVirtual || *invoke_type == kSuper) {
1173 *vtable_idx = resolved_method->GetMethodIndex();
Jeff Hao88474b42013-10-23 16:24:40 -07001174 } else if (*invoke_type == kInterface) {
1175 *vtable_idx = resolved_method->GetDexMethodIndex();
Ian Rogers83883d72013-10-21 21:07:24 -07001176 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001177 // Don't try to fast-path if we don't understand the caller's class or this appears to be an
1178 // Incompatible Class Change Error.
Mathieu Chartier590fee92013-09-13 13:46:47 -07001179 SirtRef<mirror::DexCache> dex_cache(soa.Self(), resolved_method->GetDeclaringClass()->GetDexCache());
Brian Carlstrom7940e442013-07-12 13:46:57 -07001180 mirror::Class* referrer_class =
Mathieu Chartier590fee92013-09-13 13:46:47 -07001181 ComputeCompilingMethodsClass(soa, dex_cache, mUnit);
Ian Rogers65ec92c2013-09-06 10:49:58 -07001182 bool icce = resolved_method->CheckIncompatibleClassChange(*invoke_type);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001183 if (referrer_class != NULL && !icce) {
1184 mirror::Class* methods_class = resolved_method->GetDeclaringClass();
Ian Rogersef7d42f2014-01-06 12:55:46 -08001185 if (referrer_class->CanAccessResolvedMethod(methods_class, resolved_method, dex_cache.get(),
1186 target_method->dex_method_index)) {
Sebastien Hertz1e54d682013-09-06 14:52:10 +02001187 const bool enableFinalBasedSharpening = enable_devirtualization;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001188 // Sharpen a virtual call into a direct call when the target is known not to have been
1189 // overridden (ie is final).
1190 bool can_sharpen_virtual_based_on_type =
Ian Rogers65ec92c2013-09-06 10:49:58 -07001191 (*invoke_type == kVirtual) && (resolved_method->IsFinal() || methods_class->IsFinal());
Brian Carlstrom7940e442013-07-12 13:46:57 -07001192 // For invoke-super, ensure the vtable index will be correct to dispatch in the vtable of
1193 // the super class.
Ian Rogers65ec92c2013-09-06 10:49:58 -07001194 bool can_sharpen_super_based_on_type = (*invoke_type == kSuper) &&
Brian Carlstrom7940e442013-07-12 13:46:57 -07001195 (referrer_class != methods_class) && referrer_class->IsSubClass(methods_class) &&
1196 resolved_method->GetMethodIndex() < methods_class->GetVTable()->GetLength() &&
1197 (methods_class->GetVTable()->Get(resolved_method->GetMethodIndex()) == resolved_method);
1198
Sebastien Hertz1e54d682013-09-06 14:52:10 +02001199 if (enableFinalBasedSharpening && (can_sharpen_virtual_based_on_type ||
Brian Carlstrom7940e442013-07-12 13:46:57 -07001200 can_sharpen_super_based_on_type)) {
Vladimir Marko89786432014-01-31 15:03:55 +00001201 // Sharpen a virtual call into a direct call. The method_idx is into the DexCache
1202 // associated with target_method->dex_file.
1203 CHECK(target_method->dex_file == mUnit->GetDexFile());
1204 DCHECK(dex_cache.get() == mUnit->GetClassLinker()->FindDexCache(*mUnit->GetDexFile()));
1205 CHECK(dex_cache->GetResolvedMethod(target_method->dex_method_index) ==
Brian Carlstrom7940e442013-07-12 13:46:57 -07001206 resolved_method) << PrettyMethod(resolved_method);
Ian Rogers83883d72013-10-21 21:07:24 -07001207 InvokeType orig_invoke_type = *invoke_type;
1208 GetCodeAndMethodForDirectCall(invoke_type, kDirect, false, referrer_class, resolved_method,
1209 update_stats, target_method, direct_code, direct_method);
1210 if (update_stats && (*invoke_type == kDirect)) {
1211 stats_->ResolvedMethod(orig_invoke_type);
1212 stats_->VirtualMadeDirect(orig_invoke_type);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001213 }
Ian Rogers83883d72013-10-21 21:07:24 -07001214 DCHECK_NE(*invoke_type, kSuper) << PrettyMethod(resolved_method);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001215 return true;
1216 }
Sebastien Hertz1e54d682013-09-06 14:52:10 +02001217 const bool enableVerifierBasedSharpening = enable_devirtualization;
Ian Rogers65ec92c2013-09-06 10:49:58 -07001218 if (enableVerifierBasedSharpening && (*invoke_type == kVirtual ||
1219 *invoke_type == kInterface)) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001220 // Did the verifier record a more precise invoke target based on its type information?
Vladimir Marko2730db02014-01-27 11:15:17 +00001221 DCHECK(mUnit->GetVerifiedMethod() != nullptr);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001222 const MethodReference* devirt_map_target =
Vladimir Marko2730db02014-01-27 11:15:17 +00001223 mUnit->GetVerifiedMethod()->GetDevirtTarget(dex_pc);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001224 if (devirt_map_target != NULL) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001225 SirtRef<mirror::DexCache> target_dex_cache(soa.Self(), mUnit->GetClassLinker()->FindDexCache(*devirt_map_target->dex_file));
1226 SirtRef<mirror::ClassLoader> class_loader(soa.Self(), soa.Decode<mirror::ClassLoader*>(mUnit->GetClassLoader()));
Brian Carlstromea46f952013-07-30 01:26:50 -07001227 mirror::ArtMethod* called_method =
Brian Carlstrom7940e442013-07-12 13:46:57 -07001228 mUnit->GetClassLinker()->ResolveMethod(*devirt_map_target->dex_file,
1229 devirt_map_target->dex_method_index,
1230 target_dex_cache, class_loader, NULL,
1231 kVirtual);
1232 CHECK(called_method != NULL);
1233 CHECK(!called_method->IsAbstract());
Ian Rogers83883d72013-10-21 21:07:24 -07001234 InvokeType orig_invoke_type = *invoke_type;
1235 GetCodeAndMethodForDirectCall(invoke_type, kDirect, true, referrer_class, called_method,
1236 update_stats, target_method, direct_code, direct_method);
1237 if (update_stats && (*invoke_type == kDirect)) {
1238 stats_->ResolvedMethod(orig_invoke_type);
1239 stats_->VirtualMadeDirect(orig_invoke_type);
1240 stats_->PreciseTypeDevirtualization();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001241 }
Ian Rogers83883d72013-10-21 21:07:24 -07001242 DCHECK_NE(*invoke_type, kSuper);
1243 return true;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001244 }
1245 }
Ian Rogers65ec92c2013-09-06 10:49:58 -07001246 if (*invoke_type == kSuper) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001247 // Unsharpened super calls are suspicious so go slow-path.
1248 } else {
1249 // Sharpening failed so generate a regular resolved method dispatch.
1250 if (update_stats) {
Ian Rogers65ec92c2013-09-06 10:49:58 -07001251 stats_->ResolvedMethod(*invoke_type);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001252 }
Ian Rogers83883d72013-10-21 21:07:24 -07001253 GetCodeAndMethodForDirectCall(invoke_type, *invoke_type, false, referrer_class, resolved_method,
1254 update_stats, target_method, direct_code, direct_method);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001255 return true;
1256 }
1257 }
1258 }
1259 }
1260 // Clean up any exception left by method/invoke_type resolution
1261 if (soa.Self()->IsExceptionPending()) {
1262 soa.Self()->ClearException();
1263 }
1264 if (update_stats) {
Ian Rogers65ec92c2013-09-06 10:49:58 -07001265 stats_->UnresolvedMethod(*invoke_type);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001266 }
1267 return false; // Incomplete knowledge needs slow path.
1268}
1269
Vladimir Marko2730db02014-01-27 11:15:17 +00001270const VerifiedMethod* CompilerDriver::GetVerifiedMethod(const DexFile* dex_file,
1271 uint32_t method_idx) const {
1272 MethodReference ref(dex_file, method_idx);
1273 return verification_results_->GetVerifiedMethod(ref);
1274}
1275
1276bool CompilerDriver::IsSafeCast(const DexCompilationUnit* mUnit, uint32_t dex_pc) {
1277 DCHECK(mUnit->GetVerifiedMethod() != nullptr);
1278 bool result = mUnit->GetVerifiedMethod()->IsSafeCast(dex_pc);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001279 if (result) {
1280 stats_->SafeCast();
1281 } else {
1282 stats_->NotASafeCast();
1283 }
1284 return result;
1285}
1286
1287
1288void CompilerDriver::AddCodePatch(const DexFile* dex_file,
Ian Rogers8b2c0b92013-09-19 02:56:49 -07001289 uint16_t referrer_class_def_idx,
1290 uint32_t referrer_method_idx,
1291 InvokeType referrer_invoke_type,
1292 uint32_t target_method_idx,
1293 InvokeType target_invoke_type,
1294 size_t literal_offset) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001295 MutexLock mu(Thread::Current(), compiled_methods_lock_);
Hiroshi Yamauchibe1ca552014-01-15 11:46:48 -08001296 code_to_patch_.push_back(new CallPatchInformation(dex_file,
1297 referrer_class_def_idx,
1298 referrer_method_idx,
1299 referrer_invoke_type,
1300 target_method_idx,
1301 target_invoke_type,
1302 literal_offset));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001303}
Mark Mendell55d0eac2014-02-06 11:02:52 -08001304void CompilerDriver::AddRelativeCodePatch(const DexFile* dex_file,
1305 uint16_t referrer_class_def_idx,
1306 uint32_t referrer_method_idx,
1307 InvokeType referrer_invoke_type,
1308 uint32_t target_method_idx,
1309 InvokeType target_invoke_type,
1310 size_t literal_offset,
1311 int32_t pc_relative_offset) {
1312 MutexLock mu(Thread::Current(), compiled_methods_lock_);
1313 code_to_patch_.push_back(new RelativeCallPatchInformation(dex_file,
1314 referrer_class_def_idx,
1315 referrer_method_idx,
1316 referrer_invoke_type,
1317 target_method_idx,
1318 target_invoke_type,
1319 literal_offset,
1320 pc_relative_offset));
1321}
Brian Carlstrom7940e442013-07-12 13:46:57 -07001322void CompilerDriver::AddMethodPatch(const DexFile* dex_file,
Ian Rogers8b2c0b92013-09-19 02:56:49 -07001323 uint16_t referrer_class_def_idx,
1324 uint32_t referrer_method_idx,
1325 InvokeType referrer_invoke_type,
1326 uint32_t target_method_idx,
1327 InvokeType target_invoke_type,
1328 size_t literal_offset) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001329 MutexLock mu(Thread::Current(), compiled_methods_lock_);
Hiroshi Yamauchibe1ca552014-01-15 11:46:48 -08001330 methods_to_patch_.push_back(new CallPatchInformation(dex_file,
1331 referrer_class_def_idx,
1332 referrer_method_idx,
1333 referrer_invoke_type,
1334 target_method_idx,
1335 target_invoke_type,
1336 literal_offset));
1337}
1338void CompilerDriver::AddClassPatch(const DexFile* dex_file,
1339 uint16_t referrer_class_def_idx,
1340 uint32_t referrer_method_idx,
1341 uint32_t target_type_idx,
1342 size_t literal_offset) {
1343 MutexLock mu(Thread::Current(), compiled_methods_lock_);
1344 classes_to_patch_.push_back(new TypePatchInformation(dex_file,
1345 referrer_class_def_idx,
1346 referrer_method_idx,
1347 target_type_idx,
1348 literal_offset));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001349}
1350
1351class ParallelCompilationManager {
1352 public:
1353 typedef void Callback(const ParallelCompilationManager* manager, size_t index);
1354
1355 ParallelCompilationManager(ClassLinker* class_linker,
1356 jobject class_loader,
1357 CompilerDriver* compiler,
1358 const DexFile* dex_file,
Ian Rogers3d504072014-03-01 09:16:49 -08001359 ThreadPool* thread_pool)
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001360 : index_(0),
1361 class_linker_(class_linker),
Brian Carlstrom7940e442013-07-12 13:46:57 -07001362 class_loader_(class_loader),
1363 compiler_(compiler),
1364 dex_file_(dex_file),
Ian Rogers3d504072014-03-01 09:16:49 -08001365 thread_pool_(thread_pool) {}
Brian Carlstrom7940e442013-07-12 13:46:57 -07001366
1367 ClassLinker* GetClassLinker() const {
1368 CHECK(class_linker_ != NULL);
1369 return class_linker_;
1370 }
1371
1372 jobject GetClassLoader() const {
1373 return class_loader_;
1374 }
1375
1376 CompilerDriver* GetCompiler() const {
1377 CHECK(compiler_ != NULL);
1378 return compiler_;
1379 }
1380
1381 const DexFile* GetDexFile() const {
1382 CHECK(dex_file_ != NULL);
1383 return dex_file_;
1384 }
1385
1386 void ForAll(size_t begin, size_t end, Callback callback, size_t work_units) {
1387 Thread* self = Thread::Current();
1388 self->AssertNoPendingException();
1389 CHECK_GT(work_units, 0U);
1390
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001391 index_ = begin;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001392 for (size_t i = 0; i < work_units; ++i) {
Sebastien Hertz501baec2013-12-13 12:02:36 +01001393 thread_pool_->AddTask(self, new ForAllClosure(this, end, callback));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001394 }
1395 thread_pool_->StartWorkers(self);
1396
1397 // Ensure we're suspended while we're blocked waiting for the other threads to finish (worker
1398 // thread destructor's called below perform join).
1399 CHECK_NE(self->GetState(), kRunnable);
1400
1401 // Wait for all the worker threads to finish.
1402 thread_pool_->Wait(self, true, false);
1403 }
1404
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001405 size_t NextIndex() {
Ian Rogersb122a4b2013-11-19 18:00:50 -08001406 return index_.FetchAndAdd(1);
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001407 }
1408
Brian Carlstrom7940e442013-07-12 13:46:57 -07001409 private:
Brian Carlstrom7940e442013-07-12 13:46:57 -07001410 class ForAllClosure : public Task {
1411 public:
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001412 ForAllClosure(ParallelCompilationManager* manager, size_t end, Callback* callback)
Brian Carlstrom7940e442013-07-12 13:46:57 -07001413 : manager_(manager),
Brian Carlstrom7940e442013-07-12 13:46:57 -07001414 end_(end),
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001415 callback_(callback) {}
Brian Carlstrom7940e442013-07-12 13:46:57 -07001416
1417 virtual void Run(Thread* self) {
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001418 while (true) {
1419 const size_t index = manager_->NextIndex();
1420 if (UNLIKELY(index >= end_)) {
1421 break;
1422 }
1423 callback_(manager_, index);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001424 self->AssertNoPendingException();
1425 }
1426 }
1427
1428 virtual void Finalize() {
1429 delete this;
1430 }
Brian Carlstrom0cd7ec22013-07-17 23:40:20 -07001431
Brian Carlstrom7940e442013-07-12 13:46:57 -07001432 private:
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001433 ParallelCompilationManager* const manager_;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001434 const size_t end_;
Bernhard Rosenkränzer46053622013-12-12 02:15:52 +01001435 Callback* const callback_;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001436 };
1437
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001438 AtomicInteger index_;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001439 ClassLinker* const class_linker_;
1440 const jobject class_loader_;
1441 CompilerDriver* const compiler_;
1442 const DexFile* const dex_file_;
1443 ThreadPool* const thread_pool_;
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001444
1445 DISALLOW_COPY_AND_ASSIGN(ParallelCompilationManager);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001446};
1447
Jeff Hao0e49b422013-11-08 12:16:56 -08001448// Return true if the class should be skipped during compilation.
1449//
1450// The first case where we skip is for redundant class definitions in
1451// the boot classpath. We skip all but the first definition in that case.
1452//
1453// The second case where we skip is when an app bundles classes found
1454// in the boot classpath. Since at runtime we will select the class from
1455// the boot classpath, we ignore the one from the app.
Ian Rogersbe7149f2013-08-20 09:29:39 -07001456static bool SkipClass(ClassLinker* class_linker, jobject class_loader, const DexFile& dex_file,
1457 const DexFile::ClassDef& class_def) {
Jeff Hao0e49b422013-11-08 12:16:56 -08001458 const char* descriptor = dex_file.GetClassDescriptor(class_def);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001459 if (class_loader == NULL) {
Jeff Hao0e49b422013-11-08 12:16:56 -08001460 DexFile::ClassPathEntry pair = DexFile::FindInClassPath(descriptor, class_linker->GetBootClassPath());
1461 CHECK(pair.second != NULL);
1462 if (pair.first != &dex_file) {
1463 LOG(WARNING) << "Skipping class " << descriptor << " from " << dex_file.GetLocation()
1464 << " previously found in " << pair.first->GetLocation();
1465 return true;
1466 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001467 return false;
1468 }
Ian Rogersbe7149f2013-08-20 09:29:39 -07001469 return class_linker->IsInBootClassPath(descriptor);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001470}
1471
Jeff Hao0e49b422013-11-08 12:16:56 -08001472// A fast version of SkipClass above if the class pointer is available
1473// that avoids the expensive FindInClassPath search.
1474static bool SkipClass(jobject class_loader, const DexFile& dex_file, mirror::Class* klass)
1475 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
1476 DCHECK(klass != NULL);
1477 const DexFile& original_dex_file = *klass->GetDexCache()->GetDexFile();
1478 if (&dex_file != &original_dex_file) {
1479 if (class_loader == NULL) {
1480 LOG(WARNING) << "Skipping class " << PrettyDescriptor(klass) << " from "
1481 << dex_file.GetLocation() << " previously found in "
1482 << original_dex_file.GetLocation();
1483 }
1484 return true;
1485 }
1486 return false;
1487}
1488
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001489static void ResolveClassFieldsAndMethods(const ParallelCompilationManager* manager,
1490 size_t class_def_index)
Brian Carlstrom7940e442013-07-12 13:46:57 -07001491 LOCKS_EXCLUDED(Locks::mutator_lock_) {
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07001492 ATRACE_CALL();
Ian Rogersbe7149f2013-08-20 09:29:39 -07001493 Thread* self = Thread::Current();
1494 jobject jclass_loader = manager->GetClassLoader();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001495 const DexFile& dex_file = *manager->GetDexFile();
Ian Rogersbe7149f2013-08-20 09:29:39 -07001496 ClassLinker* class_linker = manager->GetClassLinker();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001497
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001498 // If an instance field is final then we need to have a barrier on the return, static final
1499 // fields are assigned within the lock held for class initialization. Conservatively assume
1500 // constructor barriers are always required.
1501 bool requires_constructor_barrier = true;
1502
Brian Carlstrom7940e442013-07-12 13:46:57 -07001503 // Method and Field are the worst. We can't resolve without either
1504 // context from the code use (to disambiguate virtual vs direct
1505 // method and instance vs static field) or from class
1506 // definitions. While the compiler will resolve what it can as it
1507 // needs it, here we try to resolve fields and methods used in class
1508 // definitions, since many of them many never be referenced by
1509 // generated code.
1510 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
Ian Rogersbe7149f2013-08-20 09:29:39 -07001511 if (!SkipClass(class_linker, jclass_loader, dex_file, class_def)) {
Brian Carlstromcb5f5e52013-09-23 17:48:16 -07001512 ScopedObjectAccess soa(self);
Mathieu Chartier590fee92013-09-13 13:46:47 -07001513 SirtRef<mirror::ClassLoader> class_loader(soa.Self(), soa.Decode<mirror::ClassLoader*>(jclass_loader));
1514 SirtRef<mirror::DexCache> dex_cache(soa.Self(), class_linker->FindDexCache(dex_file));
Brian Carlstromcb5f5e52013-09-23 17:48:16 -07001515 // Resolve the class.
1516 mirror::Class* klass = class_linker->ResolveType(dex_file, class_def.class_idx_, dex_cache,
1517 class_loader);
Brian Carlstromcb5f5e52013-09-23 17:48:16 -07001518 bool resolve_fields_and_methods;
1519 if (klass == NULL) {
1520 // Class couldn't be resolved, for example, super-class is in a different dex file. Don't
1521 // attempt to resolve methods and fields when there is no declaring class.
1522 CHECK(soa.Self()->IsExceptionPending());
1523 soa.Self()->ClearException();
1524 resolve_fields_and_methods = false;
1525 } else {
1526 resolve_fields_and_methods = manager->GetCompiler()->IsImage();
1527 }
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001528 // Note the class_data pointer advances through the headers,
1529 // static fields, instance fields, direct methods, and virtual
1530 // methods.
1531 const byte* class_data = dex_file.GetClassData(class_def);
1532 if (class_data == NULL) {
1533 // Empty class such as a marker interface.
1534 requires_constructor_barrier = false;
1535 } else {
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001536 ClassDataItemIterator it(dex_file, class_data);
1537 while (it.HasNextStaticField()) {
1538 if (resolve_fields_and_methods) {
1539 mirror::ArtField* field = class_linker->ResolveField(dex_file, it.GetMemberIndex(),
1540 dex_cache, class_loader, true);
1541 if (field == NULL) {
1542 CHECK(soa.Self()->IsExceptionPending());
1543 soa.Self()->ClearException();
1544 }
1545 }
1546 it.Next();
1547 }
1548 // We require a constructor barrier if there are final instance fields.
1549 requires_constructor_barrier = false;
1550 while (it.HasNextInstanceField()) {
1551 if ((it.GetMemberAccessFlags() & kAccFinal) != 0) {
1552 requires_constructor_barrier = true;
1553 }
1554 if (resolve_fields_and_methods) {
1555 mirror::ArtField* field = class_linker->ResolveField(dex_file, it.GetMemberIndex(),
1556 dex_cache, class_loader, false);
1557 if (field == NULL) {
1558 CHECK(soa.Self()->IsExceptionPending());
1559 soa.Self()->ClearException();
1560 }
1561 }
1562 it.Next();
1563 }
1564 if (resolve_fields_and_methods) {
1565 while (it.HasNextDirectMethod()) {
1566 mirror::ArtMethod* method = class_linker->ResolveMethod(dex_file, it.GetMemberIndex(),
1567 dex_cache, class_loader, NULL,
1568 it.GetMethodInvokeType(class_def));
1569 if (method == NULL) {
1570 CHECK(soa.Self()->IsExceptionPending());
1571 soa.Self()->ClearException();
1572 }
1573 it.Next();
1574 }
1575 while (it.HasNextVirtualMethod()) {
1576 mirror::ArtMethod* method = class_linker->ResolveMethod(dex_file, it.GetMemberIndex(),
1577 dex_cache, class_loader, NULL,
1578 it.GetMethodInvokeType(class_def));
1579 if (method == NULL) {
1580 CHECK(soa.Self()->IsExceptionPending());
1581 soa.Self()->ClearException();
1582 }
1583 it.Next();
1584 }
1585 DCHECK(!it.HasNext());
1586 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001587 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001588 }
1589 if (requires_constructor_barrier) {
Ian Rogersbe7149f2013-08-20 09:29:39 -07001590 manager->GetCompiler()->AddRequiresConstructorBarrier(self, &dex_file, class_def_index);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001591 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001592}
1593
1594static void ResolveType(const ParallelCompilationManager* manager, size_t type_idx)
1595 LOCKS_EXCLUDED(Locks::mutator_lock_) {
1596 // Class derived values are more complicated, they require the linker and loader.
1597 ScopedObjectAccess soa(Thread::Current());
1598 ClassLinker* class_linker = manager->GetClassLinker();
1599 const DexFile& dex_file = *manager->GetDexFile();
Mathieu Chartier590fee92013-09-13 13:46:47 -07001600 SirtRef<mirror::DexCache> dex_cache(soa.Self(), class_linker->FindDexCache(dex_file));
Mathieu Chartierc528dba2013-11-26 12:00:11 -08001601 SirtRef<mirror::ClassLoader> class_loader(
1602 soa.Self(), soa.Decode<mirror::ClassLoader*>(manager->GetClassLoader()));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001603 mirror::Class* klass = class_linker->ResolveType(dex_file, type_idx, dex_cache, class_loader);
1604
1605 if (klass == NULL) {
1606 CHECK(soa.Self()->IsExceptionPending());
Ian Rogersa436fde2013-08-27 23:34:06 -07001607 mirror::Throwable* exception = soa.Self()->GetException(NULL);
1608 VLOG(compiler) << "Exception during type resolution: " << exception->Dump();
Ian Rogersdfb325e2013-10-30 01:00:44 -07001609 if (strcmp("Ljava/lang/OutOfMemoryError;",
1610 ClassHelper(exception->GetClass()).GetDescriptor()) == 0) {
Ian Rogersa436fde2013-08-27 23:34:06 -07001611 // There's little point continuing compilation if the heap is exhausted.
1612 LOG(FATAL) << "Out of memory during type resolution for compilation";
1613 }
1614 soa.Self()->ClearException();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001615 }
1616}
1617
1618void CompilerDriver::ResolveDexFile(jobject class_loader, const DexFile& dex_file,
Ian Rogers3d504072014-03-01 09:16:49 -08001619 ThreadPool* thread_pool, TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001620 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
1621
1622 // TODO: we could resolve strings here, although the string table is largely filled with class
1623 // and method names.
1624
1625 ParallelCompilationManager context(class_linker, class_loader, this, &dex_file, thread_pool);
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001626 if (IsImage()) {
1627 // For images we resolve all types, such as array, whereas for applications just those with
1628 // classdefs are resolved by ResolveClassFieldsAndMethods.
Ian Rogers3d504072014-03-01 09:16:49 -08001629 timings->NewSplit("Resolve Types");
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001630 context.ForAll(0, dex_file.NumTypeIds(), ResolveType, thread_count_);
1631 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001632
Ian Rogers3d504072014-03-01 09:16:49 -08001633 timings->NewSplit("Resolve MethodsAndFields");
Brian Carlstrom7940e442013-07-12 13:46:57 -07001634 context.ForAll(0, dex_file.NumClassDefs(), ResolveClassFieldsAndMethods, thread_count_);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001635}
1636
1637void CompilerDriver::Verify(jobject class_loader, const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -08001638 ThreadPool* thread_pool, TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001639 for (size_t i = 0; i != dex_files.size(); ++i) {
1640 const DexFile* dex_file = dex_files[i];
1641 CHECK(dex_file != NULL);
1642 VerifyDexFile(class_loader, *dex_file, thread_pool, timings);
1643 }
1644}
1645
1646static void VerifyClass(const ParallelCompilationManager* manager, size_t class_def_index)
1647 LOCKS_EXCLUDED(Locks::mutator_lock_) {
Anwar Ghuloum67f99412013-08-12 14:19:48 -07001648 ATRACE_CALL();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001649 ScopedObjectAccess soa(Thread::Current());
Jeff Hao0e49b422013-11-08 12:16:56 -08001650 const DexFile& dex_file = *manager->GetDexFile();
1651 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
1652 const char* descriptor = dex_file.GetClassDescriptor(class_def);
1653 ClassLinker* class_linker = manager->GetClassLinker();
1654 jobject jclass_loader = manager->GetClassLoader();
Mathieu Chartier590fee92013-09-13 13:46:47 -07001655 SirtRef<mirror::ClassLoader> class_loader(
1656 soa.Self(), soa.Decode<mirror::ClassLoader*>(jclass_loader));
Ian Rogers98379392014-02-24 16:53:16 -08001657 SirtRef<mirror::Class> klass(soa.Self(), class_linker->FindClass(soa.Self(), descriptor,
1658 class_loader));
Mathieu Chartierc528dba2013-11-26 12:00:11 -08001659 if (klass.get() == nullptr) {
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001660 CHECK(soa.Self()->IsExceptionPending());
Brian Carlstrom7940e442013-07-12 13:46:57 -07001661 soa.Self()->ClearException();
1662
1663 /*
1664 * At compile time, we can still structurally verify the class even if FindClass fails.
1665 * This is to ensure the class is structurally sound for compilation. An unsound class
1666 * will be rejected by the verifier and later skipped during compilation in the compiler.
1667 */
Mathieu Chartier590fee92013-09-13 13:46:47 -07001668 SirtRef<mirror::DexCache> dex_cache(soa.Self(), class_linker->FindDexCache(dex_file));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001669 std::string error_msg;
Mathieu Chartier590fee92013-09-13 13:46:47 -07001670 if (verifier::MethodVerifier::VerifyClass(&dex_file, dex_cache, class_loader, &class_def, true,
1671 &error_msg) ==
Brian Carlstrom7940e442013-07-12 13:46:57 -07001672 verifier::MethodVerifier::kHardFailure) {
Jeff Hao0e49b422013-11-08 12:16:56 -08001673 LOG(ERROR) << "Verification failed on class " << PrettyDescriptor(descriptor)
Brian Carlstrom7940e442013-07-12 13:46:57 -07001674 << " because: " << error_msg;
1675 }
Mathieu Chartierc528dba2013-11-26 12:00:11 -08001676 } else if (!SkipClass(jclass_loader, dex_file, klass.get())) {
1677 CHECK(klass->IsResolved()) << PrettyClass(klass.get());
Jeff Hao0e49b422013-11-08 12:16:56 -08001678 class_linker->VerifyClass(klass);
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001679
1680 if (klass->IsErroneous()) {
1681 // ClassLinker::VerifyClass throws, which isn't useful in the compiler.
1682 CHECK(soa.Self()->IsExceptionPending());
1683 soa.Self()->ClearException();
1684 }
1685
1686 CHECK(klass->IsCompileTimeVerified() || klass->IsErroneous())
Mathieu Chartierc528dba2013-11-26 12:00:11 -08001687 << PrettyDescriptor(klass.get()) << ": state=" << klass->GetStatus();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001688 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001689 soa.Self()->AssertNoPendingException();
1690}
1691
1692void CompilerDriver::VerifyDexFile(jobject class_loader, const DexFile& dex_file,
Ian Rogers3d504072014-03-01 09:16:49 -08001693 ThreadPool* thread_pool, TimingLogger* timings) {
1694 timings->NewSplit("Verify Dex File");
Brian Carlstrom7940e442013-07-12 13:46:57 -07001695 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
1696 ParallelCompilationManager context(class_linker, class_loader, this, &dex_file, thread_pool);
1697 context.ForAll(0, dex_file.NumClassDefs(), VerifyClass, thread_count_);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001698}
1699
Brian Carlstrom7940e442013-07-12 13:46:57 -07001700static void InitializeClass(const ParallelCompilationManager* manager, size_t class_def_index)
1701 LOCKS_EXCLUDED(Locks::mutator_lock_) {
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07001702 ATRACE_CALL();
Jeff Hao0e49b422013-11-08 12:16:56 -08001703 jobject jclass_loader = manager->GetClassLoader();
1704 const DexFile& dex_file = *manager->GetDexFile();
1705 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
Jeff Haobcdbbfe2013-11-08 18:03:22 -08001706 const DexFile::TypeId& class_type_id = dex_file.GetTypeId(class_def.class_idx_);
1707 const char* descriptor = dex_file.StringDataByIdx(class_type_id.descriptor_idx_);
Ian Rogersfc0e94b2013-09-23 23:51:32 -07001708
Brian Carlstrom7940e442013-07-12 13:46:57 -07001709 ScopedObjectAccess soa(Thread::Current());
Mathieu Chartier590fee92013-09-13 13:46:47 -07001710 SirtRef<mirror::ClassLoader> class_loader(soa.Self(),
1711 soa.Decode<mirror::ClassLoader*>(jclass_loader));
Mathieu Chartierc528dba2013-11-26 12:00:11 -08001712 SirtRef<mirror::Class> klass(soa.Self(),
Ian Rogers98379392014-02-24 16:53:16 -08001713 manager->GetClassLinker()->FindClass(soa.Self(), descriptor,
1714 class_loader));
Jeff Hao0e49b422013-11-08 12:16:56 -08001715
Mathieu Chartierc528dba2013-11-26 12:00:11 -08001716 if (klass.get() != nullptr && !SkipClass(jclass_loader, dex_file, klass.get())) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001717 // Only try to initialize classes that were successfully verified.
1718 if (klass->IsVerified()) {
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07001719 // Attempt to initialize the class but bail if we either need to initialize the super-class
1720 // or static fields.
1721 manager->GetClassLinker()->EnsureInitialized(klass, false, false);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001722 if (!klass->IsInitialized()) {
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07001723 // We don't want non-trivial class initialization occurring on multiple threads due to
1724 // deadlock problems. For example, a parent class is initialized (holding its lock) that
1725 // refers to a sub-class in its static/class initializer causing it to try to acquire the
1726 // sub-class' lock. While on a second thread the sub-class is initialized (holding its lock)
1727 // after first initializing its parents, whose locks are acquired. This leads to a
1728 // parent-to-child and a child-to-parent lock ordering and consequent potential deadlock.
1729 // We need to use an ObjectLock due to potential suspension in the interpreting code. Rather
1730 // than use a special Object for the purpose we use the Class of java.lang.Class.
Mathieu Chartierc528dba2013-11-26 12:00:11 -08001731 SirtRef<mirror::Class> sirt_klass(soa.Self(), klass->GetClass());
1732 ObjectLock<mirror::Class> lock(soa.Self(), &sirt_klass);
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07001733 // Attempt to initialize allowing initialization of parent classes but still not static
1734 // fields.
1735 manager->GetClassLinker()->EnsureInitialized(klass, false, true);
1736 if (!klass->IsInitialized()) {
1737 // We need to initialize static fields, we only do this for image classes that aren't
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001738 // marked with the $NoPreloadHolder (which implies this should not be initialized early).
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07001739 bool can_init_static_fields = manager->GetCompiler()->IsImage() &&
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001740 manager->GetCompiler()->IsImageClass(descriptor) &&
1741 !StringPiece(descriptor).ends_with("$NoPreloadHolder;");
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07001742 if (can_init_static_fields) {
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001743 VLOG(compiler) << "Initializing: " << descriptor;
1744 if (strcmp("Ljava/lang/Void;", descriptor) == 0) {
1745 // Hand initialize j.l.Void to avoid Dex file operations in un-started runtime.
1746 ObjectLock<mirror::Class> lock(soa.Self(), &klass);
1747 mirror::ObjectArray<mirror::ArtField>* fields = klass->GetSFields();
1748 CHECK_EQ(fields->GetLength(), 1);
1749 fields->Get(0)->SetObj<false>(klass.get(),
1750 manager->GetClassLinker()->FindPrimitiveClass('V'));
1751 klass->SetStatus(mirror::Class::kStatusInitialized, soa.Self());
1752 } else {
1753 // TODO multithreading support. We should ensure the current compilation thread has
1754 // exclusive access to the runtime and the transaction. To achieve this, we could use
1755 // a ReaderWriterMutex but we're holding the mutator lock so we fail mutex sanity
1756 // checks in Thread::AssertThreadSuspensionIsAllowable.
1757 Runtime* const runtime = Runtime::Current();
1758 Transaction transaction;
1759
1760 // Run the class initializer in transaction mode.
1761 runtime->EnterTransactionMode(&transaction);
1762 const mirror::Class::Status old_status = klass->GetStatus();
1763 bool success = manager->GetClassLinker()->EnsureInitialized(klass, true, true);
1764 // TODO we detach transaction from runtime to indicate we quit the transactional
1765 // mode which prevents the GC from visiting objects modified during the transaction.
1766 // Ensure GC is not run so don't access freed objects when aborting transaction.
1767 const char* old_casue = soa.Self()->StartAssertNoThreadSuspension("Transaction end");
1768 runtime->ExitTransactionMode();
1769
1770 if (!success) {
1771 CHECK(soa.Self()->IsExceptionPending());
1772 ThrowLocation throw_location;
1773 mirror::Throwable* exception = soa.Self()->GetException(&throw_location);
1774 VLOG(compiler) << "Initialization of " << descriptor << " aborted because of "
1775 << exception->Dump();
1776 soa.Self()->ClearException();
1777 transaction.Abort();
1778 CHECK_EQ(old_status, klass->GetStatus()) << "Previous class status not restored";
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07001779 }
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001780 soa.Self()->EndAssertNoThreadSuspension(old_casue);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001781 }
1782 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001783 }
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07001784 soa.Self()->AssertNoPendingException();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001785 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001786 }
1787 // Record the final class status if necessary.
Brian Carlstrom7940e442013-07-12 13:46:57 -07001788 ClassReference ref(manager->GetDexFile(), class_def_index);
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07001789 manager->GetCompiler()->RecordClassStatus(ref, klass->GetStatus());
Brian Carlstrom7940e442013-07-12 13:46:57 -07001790 }
1791 // Clear any class not found or verification exceptions.
1792 soa.Self()->ClearException();
1793}
1794
1795void CompilerDriver::InitializeClasses(jobject jni_class_loader, const DexFile& dex_file,
Ian Rogers3d504072014-03-01 09:16:49 -08001796 ThreadPool* thread_pool, TimingLogger* timings) {
1797 timings->NewSplit("InitializeNoClinit");
Brian Carlstrom7940e442013-07-12 13:46:57 -07001798 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
1799 ParallelCompilationManager context(class_linker, jni_class_loader, this, &dex_file, thread_pool);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001800 size_t thread_count;
1801 if (IsImage()) {
1802 // TODO: remove this when transactional mode supports multithreading.
1803 thread_count = 1U;
1804 } else {
1805 thread_count = thread_count_;
1806 }
1807 context.ForAll(0, dex_file.NumClassDefs(), InitializeClass, thread_count);
1808 if (IsImage()) {
1809 // Prune garbage objects created during aborted transactions.
1810 Runtime::Current()->GetHeap()->CollectGarbage(true);
1811 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001812}
1813
1814void CompilerDriver::InitializeClasses(jobject class_loader,
1815 const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -08001816 ThreadPool* thread_pool, TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001817 for (size_t i = 0; i != dex_files.size(); ++i) {
1818 const DexFile* dex_file = dex_files[i];
1819 CHECK(dex_file != NULL);
1820 InitializeClasses(class_loader, *dex_file, thread_pool, timings);
1821 }
1822}
1823
1824void CompilerDriver::Compile(jobject class_loader, const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -08001825 ThreadPool* thread_pool, TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001826 for (size_t i = 0; i != dex_files.size(); ++i) {
1827 const DexFile* dex_file = dex_files[i];
1828 CHECK(dex_file != NULL);
1829 CompileDexFile(class_loader, *dex_file, thread_pool, timings);
1830 }
1831}
1832
1833void CompilerDriver::CompileClass(const ParallelCompilationManager* manager, size_t class_def_index) {
Anwar Ghuloum67f99412013-08-12 14:19:48 -07001834 ATRACE_CALL();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001835 jobject jclass_loader = manager->GetClassLoader();
1836 const DexFile& dex_file = *manager->GetDexFile();
1837 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
Ian Rogersbe7149f2013-08-20 09:29:39 -07001838 ClassLinker* class_linker = manager->GetClassLinker();
1839 if (SkipClass(class_linker, jclass_loader, dex_file, class_def)) {
1840 return;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001841 }
1842 ClassReference ref(&dex_file, class_def_index);
1843 // Skip compiling classes with generic verifier failures since they will still fail at runtime
Vladimir Markoc7f83202014-01-24 17:55:18 +00001844 if (manager->GetCompiler()->verification_results_->IsClassRejected(ref)) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001845 return;
1846 }
1847 const byte* class_data = dex_file.GetClassData(class_def);
1848 if (class_data == NULL) {
1849 // empty class, probably a marker interface
1850 return;
1851 }
Anwar Ghuloum67f99412013-08-12 14:19:48 -07001852
Brian Carlstrom7940e442013-07-12 13:46:57 -07001853 // Can we run DEX-to-DEX compiler on this class ?
Sebastien Hertz75021222013-07-16 18:34:50 +02001854 DexToDexCompilationLevel dex_to_dex_compilation_level = kDontDexToDexCompile;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001855 {
1856 ScopedObjectAccess soa(Thread::Current());
Mathieu Chartier590fee92013-09-13 13:46:47 -07001857 SirtRef<mirror::ClassLoader> class_loader(soa.Self(),
1858 soa.Decode<mirror::ClassLoader*>(jclass_loader));
Ian Rogers98379392014-02-24 16:53:16 -08001859 dex_to_dex_compilation_level = GetDexToDexCompilationlevel(soa.Self(), class_loader, dex_file,
1860 class_def);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001861 }
1862 ClassDataItemIterator it(dex_file, class_data);
1863 // Skip fields
1864 while (it.HasNextStaticField()) {
1865 it.Next();
1866 }
1867 while (it.HasNextInstanceField()) {
1868 it.Next();
1869 }
Ian Rogersbe7149f2013-08-20 09:29:39 -07001870 CompilerDriver* driver = manager->GetCompiler();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001871 // Compile direct methods
1872 int64_t previous_direct_method_idx = -1;
1873 while (it.HasNextDirectMethod()) {
1874 uint32_t method_idx = it.GetMemberIndex();
1875 if (method_idx == previous_direct_method_idx) {
1876 // smali can create dex files with two encoded_methods sharing the same method_idx
1877 // http://code.google.com/p/smali/issues/detail?id=119
1878 it.Next();
1879 continue;
1880 }
1881 previous_direct_method_idx = method_idx;
Ian Rogersbe7149f2013-08-20 09:29:39 -07001882 driver->CompileMethod(it.GetMethodCodeItem(), it.GetMemberAccessFlags(),
1883 it.GetMethodInvokeType(class_def), class_def_index,
1884 method_idx, jclass_loader, dex_file, dex_to_dex_compilation_level);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001885 it.Next();
1886 }
1887 // Compile virtual methods
1888 int64_t previous_virtual_method_idx = -1;
1889 while (it.HasNextVirtualMethod()) {
1890 uint32_t method_idx = it.GetMemberIndex();
1891 if (method_idx == previous_virtual_method_idx) {
1892 // smali can create dex files with two encoded_methods sharing the same method_idx
1893 // http://code.google.com/p/smali/issues/detail?id=119
1894 it.Next();
1895 continue;
1896 }
1897 previous_virtual_method_idx = method_idx;
Ian Rogersbe7149f2013-08-20 09:29:39 -07001898 driver->CompileMethod(it.GetMethodCodeItem(), it.GetMemberAccessFlags(),
1899 it.GetMethodInvokeType(class_def), class_def_index,
1900 method_idx, jclass_loader, dex_file, dex_to_dex_compilation_level);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001901 it.Next();
1902 }
1903 DCHECK(!it.HasNext());
1904}
1905
1906void CompilerDriver::CompileDexFile(jobject class_loader, const DexFile& dex_file,
Ian Rogers3d504072014-03-01 09:16:49 -08001907 ThreadPool* thread_pool, TimingLogger* timings) {
1908 timings->NewSplit("Compile Dex File");
Ian Rogersbe7149f2013-08-20 09:29:39 -07001909 ParallelCompilationManager context(Runtime::Current()->GetClassLinker(), class_loader, this,
1910 &dex_file, thread_pool);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001911 context.ForAll(0, dex_file.NumClassDefs(), CompilerDriver::CompileClass, thread_count_);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001912}
1913
1914void CompilerDriver::CompileMethod(const DexFile::CodeItem* code_item, uint32_t access_flags,
Ian Rogers8b2c0b92013-09-19 02:56:49 -07001915 InvokeType invoke_type, uint16_t class_def_idx,
Brian Carlstrom7940e442013-07-12 13:46:57 -07001916 uint32_t method_idx, jobject class_loader,
1917 const DexFile& dex_file,
Sebastien Hertz75021222013-07-16 18:34:50 +02001918 DexToDexCompilationLevel dex_to_dex_compilation_level) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001919 CompiledMethod* compiled_method = NULL;
1920 uint64_t start_ns = NanoTime();
1921
1922 if ((access_flags & kAccNative) != 0) {
Nicolas Geoffrayf5df8972014-02-14 18:37:08 +00001923 compiled_method = compiler_backend_->JniCompile(*this, access_flags, method_idx, dex_file);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001924 CHECK(compiled_method != NULL);
1925 } else if ((access_flags & kAccAbstract) != 0) {
1926 } else {
Dragos Sbirlea90af14d2013-08-15 17:50:16 -07001927 MethodReference method_ref(&dex_file, method_idx);
Brian Carlstrom6449c622014-02-10 23:48:36 -08001928 bool compile = verification_results_->IsCandidateForCompilation(method_ref, access_flags);
Dragos Sbirleabd136a22013-08-13 18:07:04 -07001929
Sebastien Hertz4d4adb12013-07-24 16:14:19 +02001930 if (compile) {
buzbeea024a062013-07-31 10:47:37 -07001931 // NOTE: if compiler declines to compile this method, it will return NULL.
Nicolas Geoffrayf5df8972014-02-14 18:37:08 +00001932 compiled_method = compiler_backend_->Compile(
1933 *this, code_item, access_flags, invoke_type, class_def_idx,
1934 method_idx, class_loader, dex_file);
Sebastien Hertz75021222013-07-16 18:34:50 +02001935 } else if (dex_to_dex_compilation_level != kDontDexToDexCompile) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001936 // TODO: add a mode to disable DEX-to-DEX compilation ?
Sebastien Hertz75021222013-07-16 18:34:50 +02001937 (*dex_to_dex_compiler_)(*this, code_item, access_flags,
1938 invoke_type, class_def_idx,
1939 method_idx, class_loader, dex_file,
1940 dex_to_dex_compilation_level);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001941 }
1942 }
1943 uint64_t duration_ns = NanoTime() - start_ns;
Nicolas Geoffrayf5df8972014-02-14 18:37:08 +00001944 if (duration_ns > MsToNs(compiler_backend_->GetMaximumCompilationTimeBeforeWarning())) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001945 LOG(WARNING) << "Compilation of " << PrettyMethod(method_idx, dex_file)
1946 << " took " << PrettyDuration(duration_ns);
1947 }
1948
1949 Thread* self = Thread::Current();
1950 if (compiled_method != NULL) {
1951 MethodReference ref(&dex_file, method_idx);
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07001952 DCHECK(GetCompiledMethod(ref) == NULL) << PrettyMethod(method_idx, dex_file);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001953 {
1954 MutexLock mu(self, compiled_methods_lock_);
1955 compiled_methods_.Put(ref, compiled_method);
1956 }
1957 DCHECK(GetCompiledMethod(ref) != NULL) << PrettyMethod(method_idx, dex_file);
1958 }
1959
1960 if (self->IsExceptionPending()) {
1961 ScopedObjectAccess soa(self);
1962 LOG(FATAL) << "Unexpected exception compiling: " << PrettyMethod(method_idx, dex_file) << "\n"
1963 << self->GetException(NULL)->Dump();
1964 }
1965}
1966
1967CompiledClass* CompilerDriver::GetCompiledClass(ClassReference ref) const {
1968 MutexLock mu(Thread::Current(), compiled_classes_lock_);
1969 ClassTable::const_iterator it = compiled_classes_.find(ref);
1970 if (it == compiled_classes_.end()) {
1971 return NULL;
1972 }
1973 CHECK(it->second != NULL);
1974 return it->second;
1975}
1976
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07001977void CompilerDriver::RecordClassStatus(ClassReference ref, mirror::Class::Status status) {
1978 MutexLock mu(Thread::Current(), compiled_classes_lock_);
1979 auto it = compiled_classes_.find(ref);
1980 if (it == compiled_classes_.end() || it->second->GetStatus() != status) {
1981 // An entry doesn't exist or the status is lower than the new status.
1982 if (it != compiled_classes_.end()) {
1983 CHECK_GT(status, it->second->GetStatus());
1984 delete it->second;
1985 }
1986 switch (status) {
1987 case mirror::Class::kStatusNotReady:
1988 case mirror::Class::kStatusError:
1989 case mirror::Class::kStatusRetryVerificationAtRuntime:
1990 case mirror::Class::kStatusVerified:
1991 case mirror::Class::kStatusInitialized:
1992 break; // Expected states.
1993 default:
1994 LOG(FATAL) << "Unexpected class status for class "
1995 << PrettyDescriptor(ref.first->GetClassDescriptor(ref.first->GetClassDef(ref.second)))
1996 << " of " << status;
1997 }
1998 CompiledClass* compiled_class = new CompiledClass(status);
1999 compiled_classes_.Overwrite(ref, compiled_class);
2000 }
2001}
2002
Brian Carlstrom7940e442013-07-12 13:46:57 -07002003CompiledMethod* CompilerDriver::GetCompiledMethod(MethodReference ref) const {
2004 MutexLock mu(Thread::Current(), compiled_methods_lock_);
2005 MethodTable::const_iterator it = compiled_methods_.find(ref);
2006 if (it == compiled_methods_.end()) {
2007 return NULL;
2008 }
2009 CHECK(it->second != NULL);
2010 return it->second;
2011}
2012
Brian Carlstrom7940e442013-07-12 13:46:57 -07002013void CompilerDriver::AddRequiresConstructorBarrier(Thread* self, const DexFile* dex_file,
Ian Rogers8b2c0b92013-09-19 02:56:49 -07002014 uint16_t class_def_index) {
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07002015 WriterMutexLock mu(self, freezing_constructor_lock_);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002016 freezing_constructor_classes_.insert(ClassReference(dex_file, class_def_index));
2017}
2018
2019bool CompilerDriver::RequiresConstructorBarrier(Thread* self, const DexFile* dex_file,
Ian Rogers8b2c0b92013-09-19 02:56:49 -07002020 uint16_t class_def_index) {
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07002021 ReaderMutexLock mu(self, freezing_constructor_lock_);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002022 return freezing_constructor_classes_.count(ClassReference(dex_file, class_def_index)) != 0;
2023}
2024
2025bool CompilerDriver::WriteElf(const std::string& android_root,
2026 bool is_host,
2027 const std::vector<const art::DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -08002028 OatWriter* oat_writer,
Brian Carlstrom7940e442013-07-12 13:46:57 -07002029 art::File* file)
2030 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Nicolas Geoffrayf5df8972014-02-14 18:37:08 +00002031 return compiler_backend_->WriteElf(file, oat_writer, dex_files, android_root, is_host, *this);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002032}
2033void CompilerDriver::InstructionSetToLLVMTarget(InstructionSet instruction_set,
Ian Rogers3d504072014-03-01 09:16:49 -08002034 std::string* target_triple,
2035 std::string* target_cpu,
2036 std::string* target_attr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07002037 switch (instruction_set) {
2038 case kThumb2:
Ian Rogers3d504072014-03-01 09:16:49 -08002039 *target_triple = "thumb-none-linux-gnueabi";
2040 *target_cpu = "cortex-a9";
2041 *target_attr = "+thumb2,+neon,+neonfp,+vfp3,+db";
Brian Carlstrom7940e442013-07-12 13:46:57 -07002042 break;
2043
2044 case kArm:
Ian Rogers3d504072014-03-01 09:16:49 -08002045 *target_triple = "armv7-none-linux-gnueabi";
Brian Carlstrom7940e442013-07-12 13:46:57 -07002046 // TODO: Fix for Nexus S.
Ian Rogers3d504072014-03-01 09:16:49 -08002047 *target_cpu = "cortex-a9";
Brian Carlstrom7940e442013-07-12 13:46:57 -07002048 // TODO: Fix for Xoom.
Ian Rogers3d504072014-03-01 09:16:49 -08002049 *target_attr = "+v7,+neon,+neonfp,+vfp3,+db";
Brian Carlstrom7940e442013-07-12 13:46:57 -07002050 break;
2051
2052 case kX86:
Ian Rogers3d504072014-03-01 09:16:49 -08002053 *target_triple = "i386-pc-linux-gnu";
2054 *target_attr = "";
Brian Carlstrom7940e442013-07-12 13:46:57 -07002055 break;
2056
2057 case kMips:
Ian Rogers3d504072014-03-01 09:16:49 -08002058 *target_triple = "mipsel-unknown-linux";
2059 *target_attr = "mips32r2";
Brian Carlstrom7940e442013-07-12 13:46:57 -07002060 break;
2061
2062 default:
2063 LOG(FATAL) << "Unknown instruction set: " << instruction_set;
2064 }
2065 }
2066} // namespace art