blob: e4274712d4b90b775068a45b14007df868762307 [file] [log] [blame]
Brian Carlstrom7940e442013-07-12 13:46:57 -07001/*
2 * Copyright (C) 2011 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include "compiler_driver.h"
18
Anwar Ghuloum67f99412013-08-12 14:19:48 -070019#define ATRACE_TAG ATRACE_TAG_DALVIK
20#include <utils/Trace.h>
Brian Carlstrom7940e442013-07-12 13:46:57 -070021
Andreas Gampeb0f370e2014-09-25 22:51:40 -070022#include <unordered_set>
Anwar Ghuloum67f99412013-08-12 14:19:48 -070023#include <vector>
Brian Carlstrom7940e442013-07-12 13:46:57 -070024#include <unistd.h>
25
Mathieu Chartierab972ef2014-12-03 17:38:22 -080026#ifndef __APPLE__
27#include <malloc.h> // For mallinfo
28#endif
29
Brian Carlstrom7940e442013-07-12 13:46:57 -070030#include "base/stl_util.h"
31#include "base/timing_logger.h"
32#include "class_linker.h"
Mingyao Yang98d1cc82014-05-15 17:02:16 -070033#include "compiled_class.h"
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +000034#include "compiler.h"
Vladimir Markobe0e5462014-02-26 11:24:15 +000035#include "compiler_driver-inl.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070036#include "dex_compilation_unit.h"
37#include "dex_file-inl.h"
Vladimir Markoc7f83202014-01-24 17:55:18 +000038#include "dex/verification_results.h"
Vladimir Marko2730db02014-01-27 11:15:17 +000039#include "dex/verified_method.h"
Vladimir Marko2bc47802014-02-10 09:43:07 +000040#include "dex/quick/dex_file_method_inliner.h"
Mark Mendellae9fd932014-02-10 16:14:35 -080041#include "driver/compiler_options.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070042#include "jni_internal.h"
Ian Rogers22d5e732014-07-15 22:23:51 -070043#include "object_lock.h"
Calin Juravlebb0b53f2014-05-23 17:33:29 +010044#include "profiler.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070045#include "runtime.h"
46#include "gc/accounting/card_table-inl.h"
47#include "gc/accounting/heap_bitmap.h"
48#include "gc/space/space.h"
Brian Carlstromea46f952013-07-30 01:26:50 -070049#include "mirror/art_field-inl.h"
50#include "mirror/art_method-inl.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070051#include "mirror/class_loader.h"
52#include "mirror/class-inl.h"
53#include "mirror/dex_cache-inl.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070054#include "mirror/object-inl.h"
55#include "mirror/object_array-inl.h"
56#include "mirror/throwable.h"
57#include "scoped_thread_state_change.h"
58#include "ScopedLocalRef.h"
Mathieu Chartiereb8167a2014-05-07 15:43:14 -070059#include "handle_scope-inl.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070060#include "thread.h"
Andreas Gampeb0f370e2014-09-25 22:51:40 -070061#include "thread_list.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070062#include "thread_pool.h"
Ian Rogers848871b2013-08-05 10:56:33 -070063#include "trampolines/trampoline_compiler.h"
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +010064#include "transaction.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070065#include "verifier/method_verifier.h"
Vladimir Marko2bc47802014-02-10 09:43:07 +000066#include "verifier/method_verifier-inl.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070067
Brian Carlstrom7940e442013-07-12 13:46:57 -070068namespace art {
69
Mathieu Chartier8e219ae2014-08-19 14:29:46 -070070static constexpr bool kTimeCompileMethod = !kIsDebugBuild;
71
Brian Carlstrom7940e442013-07-12 13:46:57 -070072static double Percentage(size_t x, size_t y) {
73 return 100.0 * (static_cast<double>(x)) / (static_cast<double>(x + y));
74}
75
76static void DumpStat(size_t x, size_t y, const char* str) {
77 if (x == 0 && y == 0) {
78 return;
79 }
Ian Rogerse732ef12013-10-09 15:22:24 -070080 LOG(INFO) << Percentage(x, y) << "% of " << str << " for " << (x + y) << " cases";
Brian Carlstrom7940e442013-07-12 13:46:57 -070081}
82
Vladimir Markof096aad2014-01-23 15:51:58 +000083class CompilerDriver::AOTCompilationStats {
Brian Carlstrom7940e442013-07-12 13:46:57 -070084 public:
85 AOTCompilationStats()
86 : stats_lock_("AOT compilation statistics lock"),
87 types_in_dex_cache_(0), types_not_in_dex_cache_(0),
88 strings_in_dex_cache_(0), strings_not_in_dex_cache_(0),
89 resolved_types_(0), unresolved_types_(0),
90 resolved_instance_fields_(0), unresolved_instance_fields_(0),
91 resolved_local_static_fields_(0), resolved_static_fields_(0), unresolved_static_fields_(0),
92 type_based_devirtualization_(0),
93 safe_casts_(0), not_safe_casts_(0) {
94 for (size_t i = 0; i <= kMaxInvokeType; i++) {
95 resolved_methods_[i] = 0;
96 unresolved_methods_[i] = 0;
97 virtual_made_direct_[i] = 0;
98 direct_calls_to_boot_[i] = 0;
99 direct_methods_to_boot_[i] = 0;
100 }
101 }
102
103 void Dump() {
104 DumpStat(types_in_dex_cache_, types_not_in_dex_cache_, "types known to be in dex cache");
105 DumpStat(strings_in_dex_cache_, strings_not_in_dex_cache_, "strings known to be in dex cache");
106 DumpStat(resolved_types_, unresolved_types_, "types resolved");
107 DumpStat(resolved_instance_fields_, unresolved_instance_fields_, "instance fields resolved");
108 DumpStat(resolved_local_static_fields_ + resolved_static_fields_, unresolved_static_fields_,
109 "static fields resolved");
110 DumpStat(resolved_local_static_fields_, resolved_static_fields_ + unresolved_static_fields_,
111 "static fields local to a class");
112 DumpStat(safe_casts_, not_safe_casts_, "check-casts removed based on type information");
113 // Note, the code below subtracts the stat value so that when added to the stat value we have
114 // 100% of samples. TODO: clean this up.
115 DumpStat(type_based_devirtualization_,
116 resolved_methods_[kVirtual] + unresolved_methods_[kVirtual] +
117 resolved_methods_[kInterface] + unresolved_methods_[kInterface] -
118 type_based_devirtualization_,
119 "virtual/interface calls made direct based on type information");
120
121 for (size_t i = 0; i <= kMaxInvokeType; i++) {
122 std::ostringstream oss;
123 oss << static_cast<InvokeType>(i) << " methods were AOT resolved";
124 DumpStat(resolved_methods_[i], unresolved_methods_[i], oss.str().c_str());
125 if (virtual_made_direct_[i] > 0) {
126 std::ostringstream oss2;
127 oss2 << static_cast<InvokeType>(i) << " methods made direct";
128 DumpStat(virtual_made_direct_[i],
129 resolved_methods_[i] + unresolved_methods_[i] - virtual_made_direct_[i],
130 oss2.str().c_str());
131 }
132 if (direct_calls_to_boot_[i] > 0) {
133 std::ostringstream oss2;
134 oss2 << static_cast<InvokeType>(i) << " method calls are direct into boot";
135 DumpStat(direct_calls_to_boot_[i],
136 resolved_methods_[i] + unresolved_methods_[i] - direct_calls_to_boot_[i],
137 oss2.str().c_str());
138 }
139 if (direct_methods_to_boot_[i] > 0) {
140 std::ostringstream oss2;
141 oss2 << static_cast<InvokeType>(i) << " method calls have methods in boot";
142 DumpStat(direct_methods_to_boot_[i],
143 resolved_methods_[i] + unresolved_methods_[i] - direct_methods_to_boot_[i],
144 oss2.str().c_str());
145 }
146 }
147 }
148
149// Allow lossy statistics in non-debug builds.
150#ifndef NDEBUG
151#define STATS_LOCK() MutexLock mu(Thread::Current(), stats_lock_)
152#else
153#define STATS_LOCK()
154#endif
155
156 void TypeInDexCache() {
157 STATS_LOCK();
158 types_in_dex_cache_++;
159 }
160
161 void TypeNotInDexCache() {
162 STATS_LOCK();
163 types_not_in_dex_cache_++;
164 }
165
166 void StringInDexCache() {
167 STATS_LOCK();
168 strings_in_dex_cache_++;
169 }
170
171 void StringNotInDexCache() {
172 STATS_LOCK();
173 strings_not_in_dex_cache_++;
174 }
175
176 void TypeDoesntNeedAccessCheck() {
177 STATS_LOCK();
178 resolved_types_++;
179 }
180
181 void TypeNeedsAccessCheck() {
182 STATS_LOCK();
183 unresolved_types_++;
184 }
185
186 void ResolvedInstanceField() {
187 STATS_LOCK();
188 resolved_instance_fields_++;
189 }
190
191 void UnresolvedInstanceField() {
192 STATS_LOCK();
193 unresolved_instance_fields_++;
194 }
195
196 void ResolvedLocalStaticField() {
197 STATS_LOCK();
198 resolved_local_static_fields_++;
199 }
200
201 void ResolvedStaticField() {
202 STATS_LOCK();
203 resolved_static_fields_++;
204 }
205
206 void UnresolvedStaticField() {
207 STATS_LOCK();
208 unresolved_static_fields_++;
209 }
210
211 // Indicate that type information from the verifier led to devirtualization.
212 void PreciseTypeDevirtualization() {
213 STATS_LOCK();
214 type_based_devirtualization_++;
215 }
216
217 // Indicate that a method of the given type was resolved at compile time.
218 void ResolvedMethod(InvokeType type) {
219 DCHECK_LE(type, kMaxInvokeType);
220 STATS_LOCK();
221 resolved_methods_[type]++;
222 }
223
224 // Indicate that a method of the given type was unresolved at compile time as it was in an
225 // unknown dex file.
226 void UnresolvedMethod(InvokeType type) {
227 DCHECK_LE(type, kMaxInvokeType);
228 STATS_LOCK();
229 unresolved_methods_[type]++;
230 }
231
232 // Indicate that a type of virtual method dispatch has been converted into a direct method
233 // dispatch.
234 void VirtualMadeDirect(InvokeType type) {
235 DCHECK(type == kVirtual || type == kInterface || type == kSuper);
236 STATS_LOCK();
237 virtual_made_direct_[type]++;
238 }
239
240 // Indicate that a method of the given type was able to call directly into boot.
241 void DirectCallsToBoot(InvokeType type) {
242 DCHECK_LE(type, kMaxInvokeType);
243 STATS_LOCK();
244 direct_calls_to_boot_[type]++;
245 }
246
247 // Indicate that a method of the given type was able to be resolved directly from boot.
248 void DirectMethodsToBoot(InvokeType type) {
249 DCHECK_LE(type, kMaxInvokeType);
250 STATS_LOCK();
251 direct_methods_to_boot_[type]++;
252 }
253
Vladimir Markof096aad2014-01-23 15:51:58 +0000254 void ProcessedInvoke(InvokeType type, int flags) {
255 STATS_LOCK();
256 if (flags == 0) {
257 unresolved_methods_[type]++;
258 } else {
259 DCHECK_NE((flags & kFlagMethodResolved), 0);
260 resolved_methods_[type]++;
261 if ((flags & kFlagVirtualMadeDirect) != 0) {
262 virtual_made_direct_[type]++;
263 if ((flags & kFlagPreciseTypeDevirtualization) != 0) {
264 type_based_devirtualization_++;
265 }
266 } else {
267 DCHECK_EQ((flags & kFlagPreciseTypeDevirtualization), 0);
268 }
269 if ((flags & kFlagDirectCallToBoot) != 0) {
270 direct_calls_to_boot_[type]++;
271 }
272 if ((flags & kFlagDirectMethodToBoot) != 0) {
273 direct_methods_to_boot_[type]++;
274 }
275 }
276 }
277
Brian Carlstrom7940e442013-07-12 13:46:57 -0700278 // A check-cast could be eliminated due to verifier type analysis.
279 void SafeCast() {
280 STATS_LOCK();
281 safe_casts_++;
282 }
283
284 // A check-cast couldn't be eliminated due to verifier type analysis.
285 void NotASafeCast() {
286 STATS_LOCK();
287 not_safe_casts_++;
288 }
289
290 private:
291 Mutex stats_lock_;
292
293 size_t types_in_dex_cache_;
294 size_t types_not_in_dex_cache_;
295
296 size_t strings_in_dex_cache_;
297 size_t strings_not_in_dex_cache_;
298
299 size_t resolved_types_;
300 size_t unresolved_types_;
301
302 size_t resolved_instance_fields_;
303 size_t unresolved_instance_fields_;
304
305 size_t resolved_local_static_fields_;
306 size_t resolved_static_fields_;
307 size_t unresolved_static_fields_;
308 // Type based devirtualization for invoke interface and virtual.
309 size_t type_based_devirtualization_;
310
311 size_t resolved_methods_[kMaxInvokeType + 1];
312 size_t unresolved_methods_[kMaxInvokeType + 1];
313 size_t virtual_made_direct_[kMaxInvokeType + 1];
314 size_t direct_calls_to_boot_[kMaxInvokeType + 1];
315 size_t direct_methods_to_boot_[kMaxInvokeType + 1];
316
317 size_t safe_casts_;
318 size_t not_safe_casts_;
319
320 DISALLOW_COPY_AND_ASSIGN(AOTCompilationStats);
321};
322
Brian Carlstrom7940e442013-07-12 13:46:57 -0700323
324extern "C" art::CompiledMethod* ArtCompileDEX(art::CompilerDriver& compiler,
325 const art::DexFile::CodeItem* code_item,
326 uint32_t access_flags,
327 art::InvokeType invoke_type,
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700328 uint16_t class_def_idx,
Brian Carlstrom7940e442013-07-12 13:46:57 -0700329 uint32_t method_idx,
330 jobject class_loader,
331 const art::DexFile& dex_file);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700332
Brian Carlstrom6449c622014-02-10 23:48:36 -0800333CompilerDriver::CompilerDriver(const CompilerOptions* compiler_options,
334 VerificationResults* verification_results,
Vladimir Marko5816ed42013-11-27 17:04:20 +0000335 DexFileToMethodInlinerMap* method_inliner_map,
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +0000336 Compiler::Kind compiler_kind,
Nicolas Geoffrayf5df8972014-02-14 18:37:08 +0000337 InstructionSet instruction_set,
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700338 const InstructionSetFeatures* instruction_set_features,
Andreas Gampe4bf3ae92014-11-11 13:28:29 -0800339 bool image, std::set<std::string>* image_classes,
340 std::set<std::string>* compiled_classes, size_t thread_count,
Dave Allison39c3bfb2014-01-28 18:33:52 -0800341 bool dump_stats, bool dump_passes, CumulativeLogger* timer,
Ian Rogersd4c4d952014-10-16 20:31:53 -0700342 const std::string& profile_file)
Calin Juravlec1b643c2014-05-30 23:44:11 +0100343 : profile_present_(false), compiler_options_(compiler_options),
Brian Carlstrom6449c622014-02-10 23:48:36 -0800344 verification_results_(verification_results),
Vladimir Marko5816ed42013-11-27 17:04:20 +0000345 method_inliner_map_(method_inliner_map),
Ian Rogers72d32622014-05-06 16:20:11 -0700346 compiler_(Compiler::Create(this, compiler_kind)),
Brian Carlstrom7940e442013-07-12 13:46:57 -0700347 instruction_set_(instruction_set),
Dave Allison70202782013-10-22 17:52:19 -0700348 instruction_set_features_(instruction_set_features),
Brian Carlstrom7940e442013-07-12 13:46:57 -0700349 freezing_constructor_lock_("freezing constructor lock"),
350 compiled_classes_lock_("compiled classes lock"),
351 compiled_methods_lock_("compiled method lock"),
Vladimir Markof4da6752014-08-01 19:04:18 +0100352 compiled_methods_(),
353 non_relative_linker_patch_count_(0u),
Brian Carlstrom7940e442013-07-12 13:46:57 -0700354 image_(image),
355 image_classes_(image_classes),
Andreas Gampe4bf3ae92014-11-11 13:28:29 -0800356 classes_to_compile_(compiled_classes),
Brian Carlstrom7940e442013-07-12 13:46:57 -0700357 thread_count_(thread_count),
Brian Carlstrom7940e442013-07-12 13:46:57 -0700358 stats_(new AOTCompilationStats),
359 dump_stats_(dump_stats),
Nicolas Geoffrayea3fa0b2014-02-10 11:59:41 +0000360 dump_passes_(dump_passes),
361 timings_logger_(timer),
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700362 compiler_context_(nullptr),
Mark Mendell55d0eac2014-02-06 11:02:52 -0800363 support_boot_image_fixup_(instruction_set != kMips),
Ian Rogersd133b972013-09-05 11:01:30 -0700364 dedupe_code_("dedupe code"),
Yevgeny Roubane3ea8382014-08-08 16:29:38 +0700365 dedupe_src_mapping_table_("dedupe source mapping table"),
Ian Rogersd133b972013-09-05 11:01:30 -0700366 dedupe_mapping_table_("dedupe mapping table"),
367 dedupe_vmap_table_("dedupe vmap table"),
Mark Mendellae9fd932014-02-10 16:14:35 -0800368 dedupe_gc_map_("dedupe gc map"),
369 dedupe_cfi_info_("dedupe cfi info") {
Brian Carlstrom6449c622014-02-10 23:48:36 -0800370 DCHECK(compiler_options_ != nullptr);
371 DCHECK(verification_results_ != nullptr);
372 DCHECK(method_inliner_map_ != nullptr);
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700373
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700374 CHECK_PTHREAD_CALL(pthread_key_create, (&tls_key_, nullptr), "compiler tls key");
Brian Carlstrom7940e442013-07-12 13:46:57 -0700375
Sebastien Hertz75021222013-07-16 18:34:50 +0200376 dex_to_dex_compiler_ = reinterpret_cast<DexToDexCompilerFn>(ArtCompileDEX);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700377
Ian Rogers72d32622014-05-06 16:20:11 -0700378 compiler_->Init();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700379
380 CHECK(!Runtime::Current()->IsStarted());
Kenny Rootd5185342014-05-13 14:47:05 -0700381 if (image_) {
382 CHECK(image_classes_.get() != nullptr);
383 } else {
384 CHECK(image_classes_.get() == nullptr);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700385 }
Mark Mendellae9fd932014-02-10 16:14:35 -0800386
Calin Juravlec1b643c2014-05-30 23:44:11 +0100387 // Read the profile file if one is provided.
388 if (!profile_file.empty()) {
389 profile_present_ = profile_file_.LoadFile(profile_file);
390 if (profile_present_) {
391 LOG(INFO) << "Using profile data form file " << profile_file;
392 } else {
393 LOG(INFO) << "Failed to load profile file " << profile_file;
394 }
395 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700396}
397
Mathieu Chartier193bad92013-08-29 18:46:00 -0700398std::vector<uint8_t>* CompilerDriver::DeduplicateCode(const std::vector<uint8_t>& code) {
399 return dedupe_code_.Add(Thread::Current(), code);
400}
401
Yevgeny Roubane3ea8382014-08-08 16:29:38 +0700402SrcMap* CompilerDriver::DeduplicateSrcMappingTable(const SrcMap& src_map) {
403 return dedupe_src_mapping_table_.Add(Thread::Current(), src_map);
404}
405
Mathieu Chartier193bad92013-08-29 18:46:00 -0700406std::vector<uint8_t>* CompilerDriver::DeduplicateMappingTable(const std::vector<uint8_t>& code) {
407 return dedupe_mapping_table_.Add(Thread::Current(), code);
408}
409
410std::vector<uint8_t>* CompilerDriver::DeduplicateVMapTable(const std::vector<uint8_t>& code) {
411 return dedupe_vmap_table_.Add(Thread::Current(), code);
412}
413
414std::vector<uint8_t>* CompilerDriver::DeduplicateGCMap(const std::vector<uint8_t>& code) {
415 return dedupe_gc_map_.Add(Thread::Current(), code);
416}
417
Mark Mendellae9fd932014-02-10 16:14:35 -0800418std::vector<uint8_t>* CompilerDriver::DeduplicateCFIInfo(const std::vector<uint8_t>* cfi_info) {
419 if (cfi_info == nullptr) {
420 return nullptr;
421 }
422 return dedupe_cfi_info_.Add(Thread::Current(), *cfi_info);
423}
424
Brian Carlstrom7940e442013-07-12 13:46:57 -0700425CompilerDriver::~CompilerDriver() {
426 Thread* self = Thread::Current();
427 {
428 MutexLock mu(self, compiled_classes_lock_);
429 STLDeleteValues(&compiled_classes_);
430 }
431 {
432 MutexLock mu(self, compiled_methods_lock_);
433 STLDeleteValues(&compiled_methods_);
434 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700435 CHECK_PTHREAD_CALL(pthread_key_delete, (tls_key_), "delete tls key");
Ian Rogers72d32622014-05-06 16:20:11 -0700436 compiler_->UnInit();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700437}
438
439CompilerTls* CompilerDriver::GetTls() {
440 // Lazily create thread-local storage
441 CompilerTls* res = static_cast<CompilerTls*>(pthread_getspecific(tls_key_));
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700442 if (res == nullptr) {
Andreas Gampe53c913b2014-08-12 23:19:23 -0700443 res = compiler_->CreateNewCompilerTls();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700444 CHECK_PTHREAD_CALL(pthread_setspecific, (tls_key_, res), "compiler tls");
445 }
446 return res;
447}
448
Ian Rogersdd7624d2014-03-14 17:43:00 -0700449#define CREATE_TRAMPOLINE(type, abi, offset) \
Andreas Gampeaf13ad92014-04-11 12:07:48 -0700450 if (Is64BitInstructionSet(instruction_set_)) { \
Ian Rogersdd7624d2014-03-14 17:43:00 -0700451 return CreateTrampoline64(instruction_set_, abi, \
452 type ## _ENTRYPOINT_OFFSET(8, offset)); \
453 } else { \
454 return CreateTrampoline32(instruction_set_, abi, \
455 type ## _ENTRYPOINT_OFFSET(4, offset)); \
456 }
457
Ian Rogers848871b2013-08-05 10:56:33 -0700458const std::vector<uint8_t>* CompilerDriver::CreateInterpreterToInterpreterBridge() const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700459 CREATE_TRAMPOLINE(INTERPRETER, kInterpreterAbi, pInterpreterToInterpreterBridge)
Ian Rogers848871b2013-08-05 10:56:33 -0700460}
461
462const std::vector<uint8_t>* CompilerDriver::CreateInterpreterToCompiledCodeBridge() const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700463 CREATE_TRAMPOLINE(INTERPRETER, kInterpreterAbi, pInterpreterToCompiledCodeBridge)
Ian Rogers848871b2013-08-05 10:56:33 -0700464}
465
466const std::vector<uint8_t>* CompilerDriver::CreateJniDlsymLookup() const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700467 CREATE_TRAMPOLINE(JNI, kJniAbi, pDlsymLookup)
Ian Rogers848871b2013-08-05 10:56:33 -0700468}
469
Jeff Hao88474b42013-10-23 16:24:40 -0700470const std::vector<uint8_t>* CompilerDriver::CreatePortableImtConflictTrampoline() const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700471 CREATE_TRAMPOLINE(PORTABLE, kPortableAbi, pPortableImtConflictTrampoline)
Jeff Hao88474b42013-10-23 16:24:40 -0700472}
473
Brian Carlstrom7940e442013-07-12 13:46:57 -0700474const std::vector<uint8_t>* CompilerDriver::CreatePortableResolutionTrampoline() const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700475 CREATE_TRAMPOLINE(PORTABLE, kPortableAbi, pPortableResolutionTrampoline)
Ian Rogers848871b2013-08-05 10:56:33 -0700476}
477
478const std::vector<uint8_t>* CompilerDriver::CreatePortableToInterpreterBridge() const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700479 CREATE_TRAMPOLINE(PORTABLE, kPortableAbi, pPortableToInterpreterBridge)
Brian Carlstrom7940e442013-07-12 13:46:57 -0700480}
481
Andreas Gampe2da88232014-02-27 12:26:20 -0800482const std::vector<uint8_t>* CompilerDriver::CreateQuickGenericJniTrampoline() const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700483 CREATE_TRAMPOLINE(QUICK, kQuickAbi, pQuickGenericJniTrampoline)
Andreas Gampe2da88232014-02-27 12:26:20 -0800484}
485
Jeff Hao88474b42013-10-23 16:24:40 -0700486const std::vector<uint8_t>* CompilerDriver::CreateQuickImtConflictTrampoline() const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700487 CREATE_TRAMPOLINE(QUICK, kQuickAbi, pQuickImtConflictTrampoline)
Jeff Hao88474b42013-10-23 16:24:40 -0700488}
489
Brian Carlstrom7940e442013-07-12 13:46:57 -0700490const std::vector<uint8_t>* CompilerDriver::CreateQuickResolutionTrampoline() const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700491 CREATE_TRAMPOLINE(QUICK, kQuickAbi, pQuickResolutionTrampoline)
Brian Carlstrom7940e442013-07-12 13:46:57 -0700492}
493
Ian Rogers848871b2013-08-05 10:56:33 -0700494const std::vector<uint8_t>* CompilerDriver::CreateQuickToInterpreterBridge() const {
Ian Rogersdd7624d2014-03-14 17:43:00 -0700495 CREATE_TRAMPOLINE(QUICK, kQuickAbi, pQuickToInterpreterBridge)
Brian Carlstrom7940e442013-07-12 13:46:57 -0700496}
Ian Rogersdd7624d2014-03-14 17:43:00 -0700497#undef CREATE_TRAMPOLINE
Brian Carlstrom7940e442013-07-12 13:46:57 -0700498
499void CompilerDriver::CompileAll(jobject class_loader,
Brian Carlstrom45602482013-07-21 22:07:55 -0700500 const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -0800501 TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700502 DCHECK(!Runtime::Current()->IsStarted());
Ian Rogers700a4022014-05-19 16:49:03 -0700503 std::unique_ptr<ThreadPool> thread_pool(new ThreadPool("Compiler driver thread pool", thread_count_ - 1));
Mathieu Chartierab972ef2014-12-03 17:38:22 -0800504 VLOG(compiler) << "Before precompile " << GetMemoryUsageString();
Ian Rogers3d504072014-03-01 09:16:49 -0800505 PreCompile(class_loader, dex_files, thread_pool.get(), timings);
506 Compile(class_loader, dex_files, thread_pool.get(), timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700507 if (dump_stats_) {
508 stats_->Dump();
509 }
510}
511
Mathieu Chartier590fee92013-09-13 13:46:47 -0700512static DexToDexCompilationLevel GetDexToDexCompilationlevel(
Mathieu Chartier0cd81352014-05-22 16:48:55 -0700513 Thread* self, Handle<mirror::ClassLoader> class_loader, const DexFile& dex_file,
Mathieu Chartier590fee92013-09-13 13:46:47 -0700514 const DexFile::ClassDef& class_def) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700515 const char* descriptor = dex_file.GetClassDescriptor(class_def);
516 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Ian Rogers98379392014-02-24 16:53:16 -0800517 mirror::Class* klass = class_linker->FindClass(self, descriptor, class_loader);
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700518 if (klass == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700519 CHECK(self->IsExceptionPending());
520 self->ClearException();
Sebastien Hertz75021222013-07-16 18:34:50 +0200521 return kDontDexToDexCompile;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700522 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700523 // DexToDex at the kOptimize level may introduce quickened opcodes, which replace symbolic
524 // references with actual offsets. We cannot re-verify such instructions.
525 //
526 // We store the verification information in the class status in the oat file, which the linker
527 // can validate (checksums) and use to skip load-time verification. It is thus safe to
528 // optimize when a class has been fully verified before.
529 if (klass->IsVerified()) {
Sebastien Hertz75021222013-07-16 18:34:50 +0200530 // Class is verified so we can enable DEX-to-DEX compilation for performance.
531 return kOptimize;
532 } else if (klass->IsCompileTimeVerified()) {
533 // Class verification has soft-failed. Anyway, ensure at least correctness.
534 DCHECK_EQ(klass->GetStatus(), mirror::Class::kStatusRetryVerificationAtRuntime);
535 return kRequired;
536 } else {
537 // Class verification has failed: do not run DEX-to-DEX compilation.
538 return kDontDexToDexCompile;
539 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700540}
541
Ian Rogers3d504072014-03-01 09:16:49 -0800542void CompilerDriver::CompileOne(mirror::ArtMethod* method, TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700543 DCHECK(!Runtime::Current()->IsStarted());
544 Thread* self = Thread::Current();
545 jobject jclass_loader;
546 const DexFile* dex_file;
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700547 uint16_t class_def_idx;
Ian Rogersef7d42f2014-01-06 12:55:46 -0800548 uint32_t method_idx = method->GetDexMethodIndex();
549 uint32_t access_flags = method->GetAccessFlags();
550 InvokeType invoke_type = method->GetInvokeType();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700551 {
552 ScopedObjectAccessUnchecked soa(self);
553 ScopedLocalRef<jobject>
554 local_class_loader(soa.Env(),
555 soa.AddLocalReference<jobject>(method->GetDeclaringClass()->GetClassLoader()));
556 jclass_loader = soa.Env()->NewGlobalRef(local_class_loader.get());
557 // Find the dex_file
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700558 dex_file = method->GetDexFile();
559 class_def_idx = method->GetClassDefIndex();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700560 }
Ian Rogersef7d42f2014-01-06 12:55:46 -0800561 const DexFile::CodeItem* code_item = dex_file->GetCodeItem(method->GetCodeItemOffset());
Brian Carlstrom7940e442013-07-12 13:46:57 -0700562 self->TransitionFromRunnableToSuspended(kNative);
563
564 std::vector<const DexFile*> dex_files;
565 dex_files.push_back(dex_file);
566
Ian Rogers700a4022014-05-19 16:49:03 -0700567 std::unique_ptr<ThreadPool> thread_pool(new ThreadPool("Compiler driver thread pool", 0U));
Ian Rogers3d504072014-03-01 09:16:49 -0800568 PreCompile(jclass_loader, dex_files, thread_pool.get(), timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700569
Brian Carlstrom7940e442013-07-12 13:46:57 -0700570 // Can we run DEX-to-DEX compiler on this class ?
Sebastien Hertz75021222013-07-16 18:34:50 +0200571 DexToDexCompilationLevel dex_to_dex_compilation_level = kDontDexToDexCompile;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700572 {
573 ScopedObjectAccess soa(Thread::Current());
574 const DexFile::ClassDef& class_def = dex_file->GetClassDef(class_def_idx);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700575 StackHandleScope<1> hs(soa.Self());
576 Handle<mirror::ClassLoader> class_loader(
577 hs.NewHandle(soa.Decode<mirror::ClassLoader*>(jclass_loader)));
Ian Rogers98379392014-02-24 16:53:16 -0800578 dex_to_dex_compilation_level = GetDexToDexCompilationlevel(self, class_loader, *dex_file,
579 class_def);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700580 }
Ian Rogersef7d42f2014-01-06 12:55:46 -0800581 CompileMethod(code_item, access_flags, invoke_type, class_def_idx, method_idx, jclass_loader,
Andreas Gampe4bf3ae92014-11-11 13:28:29 -0800582 *dex_file, dex_to_dex_compilation_level, true);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700583
584 self->GetJniEnv()->DeleteGlobalRef(jclass_loader);
585
586 self->TransitionFromSuspendedToRunnable();
587}
588
589void CompilerDriver::Resolve(jobject class_loader, const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -0800590 ThreadPool* thread_pool, TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700591 for (size_t i = 0; i != dex_files.size(); ++i) {
592 const DexFile* dex_file = dex_files[i];
Kenny Rootd5185342014-05-13 14:47:05 -0700593 CHECK(dex_file != nullptr);
Andreas Gampede7b4362014-07-28 18:38:57 -0700594 ResolveDexFile(class_loader, *dex_file, dex_files, thread_pool, timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700595 }
596}
597
598void CompilerDriver::PreCompile(jobject class_loader, const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -0800599 ThreadPool* thread_pool, TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700600 LoadImageClasses(timings);
Mathieu Chartierab972ef2014-12-03 17:38:22 -0800601 VLOG(compiler) << "LoadImageClasses: " << GetMemoryUsageString();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700602
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700603 Resolve(class_loader, dex_files, thread_pool, timings);
Mathieu Chartierab972ef2014-12-03 17:38:22 -0800604 VLOG(compiler) << "Resolve: " << GetMemoryUsageString();
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700605
Jeff Hao4a200f52014-04-01 14:58:49 -0700606 if (!compiler_options_->IsVerificationEnabled()) {
Mathieu Chartierab972ef2014-12-03 17:38:22 -0800607 VLOG(compiler) << "Verify none mode specified, skipping verification.";
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700608 SetVerified(class_loader, dex_files, thread_pool, timings);
Jeff Hao4a200f52014-04-01 14:58:49 -0700609 return;
610 }
611
Brian Carlstrom7940e442013-07-12 13:46:57 -0700612 Verify(class_loader, dex_files, thread_pool, timings);
Mathieu Chartierab972ef2014-12-03 17:38:22 -0800613 VLOG(compiler) << "Verify: " << GetMemoryUsageString();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700614
615 InitializeClasses(class_loader, dex_files, thread_pool, timings);
Mathieu Chartierab972ef2014-12-03 17:38:22 -0800616 VLOG(compiler) << "InitializeClasses: " << GetMemoryUsageString();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700617
618 UpdateImageClasses(timings);
Mathieu Chartierab972ef2014-12-03 17:38:22 -0800619 VLOG(compiler) << "UpdateImageClasses: " << GetMemoryUsageString();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700620}
621
Ian Rogersdfb325e2013-10-30 01:00:44 -0700622bool CompilerDriver::IsImageClass(const char* descriptor) const {
Ian Rogerse6bb3b22013-08-19 21:51:45 -0700623 if (!IsImage()) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700624 return true;
Ian Rogerse6bb3b22013-08-19 21:51:45 -0700625 } else {
Ian Rogersdfb325e2013-10-30 01:00:44 -0700626 return image_classes_->find(descriptor) != image_classes_->end();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700627 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700628}
629
Andreas Gampe4bf3ae92014-11-11 13:28:29 -0800630bool CompilerDriver::IsClassToCompile(const char* descriptor) const {
631 if (!IsImage()) {
632 return true;
633 } else {
634 if (classes_to_compile_ == nullptr) {
635 return true;
636 }
637 return classes_to_compile_->find(descriptor) != classes_to_compile_->end();
638 }
639}
640
Ian Rogerse94652f2014-12-02 11:13:19 -0800641static void ResolveExceptionsForMethod(MutableHandle<mirror::ArtMethod> method_handle,
Ian Rogers700a4022014-05-19 16:49:03 -0700642 std::set<std::pair<uint16_t, const DexFile*>>& exceptions_to_resolve)
Brian Carlstrom7940e442013-07-12 13:46:57 -0700643 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogerse94652f2014-12-02 11:13:19 -0800644 const DexFile::CodeItem* code_item = method_handle->GetCodeItem();
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700645 if (code_item == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700646 return; // native or abstract method
647 }
648 if (code_item->tries_size_ == 0) {
649 return; // nothing to process
650 }
Ian Rogers13735952014-10-08 12:43:28 -0700651 const uint8_t* encoded_catch_handler_list = DexFile::GetCatchHandlerData(*code_item, 0);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700652 size_t num_encoded_catch_handlers = DecodeUnsignedLeb128(&encoded_catch_handler_list);
653 for (size_t i = 0; i < num_encoded_catch_handlers; i++) {
654 int32_t encoded_catch_handler_size = DecodeSignedLeb128(&encoded_catch_handler_list);
655 bool has_catch_all = false;
656 if (encoded_catch_handler_size <= 0) {
657 encoded_catch_handler_size = -encoded_catch_handler_size;
658 has_catch_all = true;
659 }
660 for (int32_t j = 0; j < encoded_catch_handler_size; j++) {
661 uint16_t encoded_catch_handler_handlers_type_idx =
662 DecodeUnsignedLeb128(&encoded_catch_handler_list);
663 // Add to set of types to resolve if not already in the dex cache resolved types
Ian Rogerse94652f2014-12-02 11:13:19 -0800664 if (!method_handle->IsResolvedTypeIdx(encoded_catch_handler_handlers_type_idx)) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700665 exceptions_to_resolve.insert(
666 std::pair<uint16_t, const DexFile*>(encoded_catch_handler_handlers_type_idx,
Ian Rogerse94652f2014-12-02 11:13:19 -0800667 method_handle->GetDexFile()));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700668 }
669 // ignore address associated with catch handler
670 DecodeUnsignedLeb128(&encoded_catch_handler_list);
671 }
672 if (has_catch_all) {
673 // ignore catch all address
674 DecodeUnsignedLeb128(&encoded_catch_handler_list);
675 }
676 }
677}
678
679static bool ResolveCatchBlockExceptionsClassVisitor(mirror::Class* c, void* arg)
680 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers700a4022014-05-19 16:49:03 -0700681 std::set<std::pair<uint16_t, const DexFile*>>* exceptions_to_resolve =
682 reinterpret_cast<std::set<std::pair<uint16_t, const DexFile*>>*>(arg);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700683 StackHandleScope<1> hs(Thread::Current());
Ian Rogerse94652f2014-12-02 11:13:19 -0800684 MutableHandle<mirror::ArtMethod> method_handle(hs.NewHandle<mirror::ArtMethod>(nullptr));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700685 for (size_t i = 0; i < c->NumVirtualMethods(); ++i) {
Ian Rogerse94652f2014-12-02 11:13:19 -0800686 method_handle.Assign(c->GetVirtualMethod(i));
687 ResolveExceptionsForMethod(method_handle, *exceptions_to_resolve);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700688 }
689 for (size_t i = 0; i < c->NumDirectMethods(); ++i) {
Ian Rogerse94652f2014-12-02 11:13:19 -0800690 method_handle.Assign(c->GetDirectMethod(i));
691 ResolveExceptionsForMethod(method_handle, *exceptions_to_resolve);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700692 }
693 return true;
694}
695
696static bool RecordImageClassesVisitor(mirror::Class* klass, void* arg)
697 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers1ff3c982014-08-12 02:30:58 -0700698 std::set<std::string>* image_classes = reinterpret_cast<std::set<std::string>*>(arg);
699 std::string temp;
700 image_classes->insert(klass->GetDescriptor(&temp));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700701 return true;
702}
703
704// Make a list of descriptors for classes to include in the image
Ian Rogers3d504072014-03-01 09:16:49 -0800705void CompilerDriver::LoadImageClasses(TimingLogger* timings)
Brian Carlstrom7940e442013-07-12 13:46:57 -0700706 LOCKS_EXCLUDED(Locks::mutator_lock_) {
Kenny Rootd5185342014-05-13 14:47:05 -0700707 CHECK(timings != nullptr);
Ian Rogerse6bb3b22013-08-19 21:51:45 -0700708 if (!IsImage()) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700709 return;
710 }
711
Mathieu Chartierf5997b42014-06-20 10:37:54 -0700712 TimingLogger::ScopedTiming t("LoadImageClasses", timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700713 // Make a first class to load all classes explicitly listed in the file
714 Thread* self = Thread::Current();
715 ScopedObjectAccess soa(self);
716 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Kenny Rootd5185342014-05-13 14:47:05 -0700717 CHECK(image_classes_.get() != nullptr);
Mathieu Chartier02e25112013-08-14 16:14:24 -0700718 for (auto it = image_classes_->begin(), end = image_classes_->end(); it != end;) {
Vladimir Markoe9c36b32013-11-21 15:49:16 +0000719 const std::string& descriptor(*it);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700720 StackHandleScope<1> hs(self);
721 Handle<mirror::Class> klass(
722 hs.NewHandle(class_linker->FindSystemClass(self, descriptor.c_str())));
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700723 if (klass.Get() == nullptr) {
Ian Rogerse6bb3b22013-08-19 21:51:45 -0700724 VLOG(compiler) << "Failed to find class " << descriptor;
Vladimir Markoe9c36b32013-11-21 15:49:16 +0000725 image_classes_->erase(it++);
Ian Rogersa436fde2013-08-27 23:34:06 -0700726 self->ClearException();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700727 } else {
728 ++it;
729 }
730 }
731
732 // Resolve exception classes referenced by the loaded classes. The catch logic assumes
733 // exceptions are resolved by the verifier when there is a catch block in an interested method.
734 // Do this here so that exception classes appear to have been specified image classes.
Ian Rogers700a4022014-05-19 16:49:03 -0700735 std::set<std::pair<uint16_t, const DexFile*>> unresolved_exception_types;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700736 StackHandleScope<1> hs(self);
737 Handle<mirror::Class> java_lang_Throwable(
738 hs.NewHandle(class_linker->FindSystemClass(self, "Ljava/lang/Throwable;")));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700739 do {
740 unresolved_exception_types.clear();
741 class_linker->VisitClasses(ResolveCatchBlockExceptionsClassVisitor,
742 &unresolved_exception_types);
Mathieu Chartier02e25112013-08-14 16:14:24 -0700743 for (const std::pair<uint16_t, const DexFile*>& exception_type : unresolved_exception_types) {
744 uint16_t exception_type_idx = exception_type.first;
745 const DexFile* dex_file = exception_type.second;
Andreas Gampe277ccbd2014-11-03 21:36:10 -0800746 StackHandleScope<2> hs2(self);
747 Handle<mirror::DexCache> dex_cache(hs2.NewHandle(class_linker->FindDexCache(*dex_file)));
748 Handle<mirror::Class> klass(hs2.NewHandle(
Mathieu Chartier0cd81352014-05-22 16:48:55 -0700749 class_linker->ResolveType(*dex_file, exception_type_idx, dex_cache,
750 NullHandle<mirror::ClassLoader>())));
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700751 if (klass.Get() == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700752 const DexFile::TypeId& type_id = dex_file->GetTypeId(exception_type_idx);
753 const char* descriptor = dex_file->GetTypeDescriptor(type_id);
754 LOG(FATAL) << "Failed to resolve class " << descriptor;
755 }
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700756 DCHECK(java_lang_Throwable->IsAssignableFrom(klass.Get()));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700757 }
758 // Resolving exceptions may load classes that reference more exceptions, iterate until no
759 // more are found
760 } while (!unresolved_exception_types.empty());
761
762 // We walk the roots looking for classes so that we'll pick up the
763 // above classes plus any classes them depend on such super
764 // classes, interfaces, and the required ClassLinker roots.
765 class_linker->VisitClasses(RecordImageClassesVisitor, image_classes_.get());
766
767 CHECK_NE(image_classes_->size(), 0U);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700768}
769
Ian Rogers1ff3c982014-08-12 02:30:58 -0700770static void MaybeAddToImageClasses(Handle<mirror::Class> c, std::set<std::string>* image_classes)
Brian Carlstrom7940e442013-07-12 13:46:57 -0700771 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Mathieu Chartierf8322842014-05-16 10:59:25 -0700772 Thread* self = Thread::Current();
773 StackHandleScope<1> hs(self);
774 // Make a copy of the handle so that we don't clobber it doing Assign.
Andreas Gampe5a4b8a22014-09-11 08:30:08 -0700775 MutableHandle<mirror::Class> klass(hs.NewHandle(c.Get()));
Ian Rogers1ff3c982014-08-12 02:30:58 -0700776 std::string temp;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700777 while (!klass->IsObjectClass()) {
Ian Rogers1ff3c982014-08-12 02:30:58 -0700778 const char* descriptor = klass->GetDescriptor(&temp);
779 std::pair<std::set<std::string>::iterator, bool> result = image_classes->insert(descriptor);
780 if (!result.second) { // Previously inserted.
781 break;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700782 }
Ian Rogers1ff3c982014-08-12 02:30:58 -0700783 VLOG(compiler) << "Adding " << descriptor << " to image classes";
Mathieu Chartierf8322842014-05-16 10:59:25 -0700784 for (size_t i = 0; i < klass->NumDirectInterfaces(); ++i) {
Andreas Gampe277ccbd2014-11-03 21:36:10 -0800785 StackHandleScope<1> hs2(self);
786 MaybeAddToImageClasses(hs2.NewHandle(mirror::Class::GetDirectInterface(self, klass, i)),
Mathieu Chartierf8322842014-05-16 10:59:25 -0700787 image_classes);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700788 }
789 if (klass->IsArrayClass()) {
Andreas Gampe277ccbd2014-11-03 21:36:10 -0800790 StackHandleScope<1> hs2(self);
791 MaybeAddToImageClasses(hs2.NewHandle(klass->GetComponentType()), image_classes);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700792 }
Mathieu Chartierf8322842014-05-16 10:59:25 -0700793 klass.Assign(klass->GetSuperClass());
Brian Carlstrom7940e442013-07-12 13:46:57 -0700794 }
795}
796
Andreas Gampeb0f370e2014-09-25 22:51:40 -0700797// Keeps all the data for the update together. Also doubles as the reference visitor.
798// Note: we can use object pointers because we suspend all threads.
799class ClinitImageUpdate {
800 public:
801 static ClinitImageUpdate* Create(std::set<std::string>* image_class_descriptors, Thread* self,
802 ClassLinker* linker, std::string* error_msg) {
803 std::unique_ptr<ClinitImageUpdate> res(new ClinitImageUpdate(image_class_descriptors, self,
804 linker));
805 if (res->art_method_class_ == nullptr) {
806 *error_msg = "Could not find ArtMethod class.";
807 return nullptr;
808 } else if (res->dex_cache_class_ == nullptr) {
809 *error_msg = "Could not find DexCache class.";
810 return nullptr;
811 }
812
813 return res.release();
814 }
815
816 ~ClinitImageUpdate() {
817 // Allow others to suspend again.
818 self_->EndAssertNoThreadSuspension(old_cause_);
819 }
820
821 // Visitor for VisitReferences.
822 void operator()(mirror::Object* object, MemberOffset field_offset, bool /* is_static */) const
823 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
824 mirror::Object* ref = object->GetFieldObject<mirror::Object>(field_offset);
825 if (ref != nullptr) {
826 VisitClinitClassesObject(ref);
827 }
828 }
829
830 // java.lang.Reference visitor for VisitReferences.
Andreas Gampedc8b63c2014-12-02 14:39:52 -0800831 void operator()(mirror::Class* /* klass */, mirror::Reference* /* ref */) const {
Andreas Gampeb0f370e2014-09-25 22:51:40 -0700832 }
833
834 void Walk() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
835 // Use the initial classes as roots for a search.
836 for (mirror::Class* klass_root : image_classes_) {
837 VisitClinitClassesObject(klass_root);
838 }
839 }
840
841 private:
842 ClinitImageUpdate(std::set<std::string>* image_class_descriptors, Thread* self,
843 ClassLinker* linker)
844 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) :
845 image_class_descriptors_(image_class_descriptors), self_(self) {
846 CHECK(linker != nullptr);
847 CHECK(image_class_descriptors != nullptr);
848
849 // Make sure nobody interferes with us.
850 old_cause_ = self->StartAssertNoThreadSuspension("Boot image closure");
851
852 // Find the interesting classes.
Andreas Gampedc8b63c2014-12-02 14:39:52 -0800853 art_method_class_ = linker->LookupClass(self, "Ljava/lang/reflect/ArtMethod;",
854 ComputeModifiedUtf8Hash("Ljava/lang/reflect/ArtMethod;"), nullptr);
855 dex_cache_class_ = linker->LookupClass(self, "Ljava/lang/DexCache;",
856 ComputeModifiedUtf8Hash("Ljava/lang/DexCache;"), nullptr);
Andreas Gampeb0f370e2014-09-25 22:51:40 -0700857
858 // Find all the already-marked classes.
859 WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
860 linker->VisitClasses(FindImageClasses, this);
861 }
862
863 static bool FindImageClasses(mirror::Class* klass, void* arg)
864 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
865 ClinitImageUpdate* data = reinterpret_cast<ClinitImageUpdate*>(arg);
866 std::string temp;
867 const char* name = klass->GetDescriptor(&temp);
868 if (data->image_class_descriptors_->find(name) != data->image_class_descriptors_->end()) {
869 data->image_classes_.push_back(klass);
870 }
871
872 return true;
873 }
874
875 void VisitClinitClassesObject(mirror::Object* object) const
876 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
877 DCHECK(object != nullptr);
878 if (marked_objects_.find(object) != marked_objects_.end()) {
879 // Already processed.
880 return;
881 }
882
883 // Mark it.
884 marked_objects_.insert(object);
885
886 if (object->IsClass()) {
887 // If it is a class, add it.
888 StackHandleScope<1> hs(self_);
889 MaybeAddToImageClasses(hs.NewHandle(object->AsClass()), image_class_descriptors_);
890 } else {
891 // Else visit the object's class.
892 VisitClinitClassesObject(object->GetClass());
893 }
894
895 // If it is not a dex cache or an ArtMethod, visit all references.
896 mirror::Class* klass = object->GetClass();
897 if (klass != art_method_class_ && klass != dex_cache_class_) {
898 object->VisitReferences<false /* visit class */>(*this, *this);
899 }
900 }
901
902 mutable std::unordered_set<mirror::Object*> marked_objects_;
903 std::set<std::string>* const image_class_descriptors_;
904 std::vector<mirror::Class*> image_classes_;
905 const mirror::Class* art_method_class_;
906 const mirror::Class* dex_cache_class_;
907 Thread* const self_;
908 const char* old_cause_;
909
910 DISALLOW_COPY_AND_ASSIGN(ClinitImageUpdate);
911};
Brian Carlstrom7940e442013-07-12 13:46:57 -0700912
Ian Rogers3d504072014-03-01 09:16:49 -0800913void CompilerDriver::UpdateImageClasses(TimingLogger* timings) {
Ian Rogerse6bb3b22013-08-19 21:51:45 -0700914 if (IsImage()) {
Mathieu Chartierf5997b42014-06-20 10:37:54 -0700915 TimingLogger::ScopedTiming t("UpdateImageClasses", timings);
Andreas Gampeb0f370e2014-09-25 22:51:40 -0700916
917 Runtime* current = Runtime::Current();
918
919 // Suspend all threads.
920 current->GetThreadList()->SuspendAll();
921
922 std::string error_msg;
923 std::unique_ptr<ClinitImageUpdate> update(ClinitImageUpdate::Create(image_classes_.get(),
924 Thread::Current(),
925 current->GetClassLinker(),
926 &error_msg));
927 CHECK(update.get() != nullptr) << error_msg; // TODO: Soft failure?
928
929 // Do the marking.
930 update->Walk();
931
932 // Resume threads.
933 current->GetThreadList()->ResumeAll();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700934 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700935}
936
Mathieu Chartier590fee92013-09-13 13:46:47 -0700937bool CompilerDriver::CanAssumeTypeIsPresentInDexCache(const DexFile& dex_file, uint32_t type_idx) {
Ian Rogersfc0e94b2013-09-23 23:51:32 -0700938 if (IsImage() &&
Ian Rogersdfb325e2013-10-30 01:00:44 -0700939 IsImageClass(dex_file.StringDataByIdx(dex_file.GetTypeId(type_idx).descriptor_idx_))) {
Andreas Gampe58a5af82014-07-31 16:23:49 -0700940 {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700941 ScopedObjectAccess soa(Thread::Current());
942 mirror::DexCache* dex_cache = Runtime::Current()->GetClassLinker()->FindDexCache(dex_file);
943 mirror::Class* resolved_class = dex_cache->GetResolvedType(type_idx);
Andreas Gampe58a5af82014-07-31 16:23:49 -0700944 if (resolved_class == nullptr) {
945 // Erroneous class.
946 stats_->TypeNotInDexCache();
947 return false;
948 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700949 }
950 stats_->TypeInDexCache();
951 return true;
952 } else {
953 stats_->TypeNotInDexCache();
954 return false;
955 }
956}
957
958bool CompilerDriver::CanAssumeStringIsPresentInDexCache(const DexFile& dex_file,
959 uint32_t string_idx) {
960 // See also Compiler::ResolveDexFile
961
962 bool result = false;
963 if (IsImage()) {
964 // We resolve all const-string strings when building for the image.
965 ScopedObjectAccess soa(Thread::Current());
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700966 StackHandleScope<1> hs(soa.Self());
967 Handle<mirror::DexCache> dex_cache(
968 hs.NewHandle(Runtime::Current()->GetClassLinker()->FindDexCache(dex_file)));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700969 Runtime::Current()->GetClassLinker()->ResolveString(dex_file, string_idx, dex_cache);
970 result = true;
971 }
972 if (result) {
973 stats_->StringInDexCache();
974 } else {
975 stats_->StringNotInDexCache();
976 }
977 return result;
978}
979
980bool CompilerDriver::CanAccessTypeWithoutChecks(uint32_t referrer_idx, const DexFile& dex_file,
981 uint32_t type_idx,
982 bool* type_known_final, bool* type_known_abstract,
983 bool* equals_referrers_class) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700984 if (type_known_final != nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700985 *type_known_final = false;
986 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700987 if (type_known_abstract != nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700988 *type_known_abstract = false;
989 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700990 if (equals_referrers_class != nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700991 *equals_referrers_class = false;
992 }
993 ScopedObjectAccess soa(Thread::Current());
994 mirror::DexCache* dex_cache = Runtime::Current()->GetClassLinker()->FindDexCache(dex_file);
995 // Get type from dex cache assuming it was populated by the verifier
996 mirror::Class* resolved_class = dex_cache->GetResolvedType(type_idx);
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700997 if (resolved_class == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700998 stats_->TypeNeedsAccessCheck();
999 return false; // Unknown class needs access checks.
1000 }
1001 const DexFile::MethodId& method_id = dex_file.GetMethodId(referrer_idx);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001002 if (equals_referrers_class != nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001003 *equals_referrers_class = (method_id.class_idx_ == type_idx);
1004 }
1005 mirror::Class* referrer_class = dex_cache->GetResolvedType(method_id.class_idx_);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001006 if (referrer_class == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001007 stats_->TypeNeedsAccessCheck();
1008 return false; // Incomplete referrer knowledge needs access check.
1009 }
1010 // Perform access check, will return true if access is ok or false if we're going to have to
1011 // check this at runtime (for example for class loaders).
1012 bool result = referrer_class->CanAccess(resolved_class);
1013 if (result) {
1014 stats_->TypeDoesntNeedAccessCheck();
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001015 if (type_known_final != nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001016 *type_known_final = resolved_class->IsFinal() && !resolved_class->IsArrayClass();
1017 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001018 if (type_known_abstract != nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001019 *type_known_abstract = resolved_class->IsAbstract() && !resolved_class->IsArrayClass();
1020 }
1021 } else {
1022 stats_->TypeNeedsAccessCheck();
1023 }
1024 return result;
1025}
1026
1027bool CompilerDriver::CanAccessInstantiableTypeWithoutChecks(uint32_t referrer_idx,
1028 const DexFile& dex_file,
1029 uint32_t type_idx) {
1030 ScopedObjectAccess soa(Thread::Current());
1031 mirror::DexCache* dex_cache = Runtime::Current()->GetClassLinker()->FindDexCache(dex_file);
1032 // Get type from dex cache assuming it was populated by the verifier.
1033 mirror::Class* resolved_class = dex_cache->GetResolvedType(type_idx);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001034 if (resolved_class == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001035 stats_->TypeNeedsAccessCheck();
1036 return false; // Unknown class needs access checks.
1037 }
1038 const DexFile::MethodId& method_id = dex_file.GetMethodId(referrer_idx);
1039 mirror::Class* referrer_class = dex_cache->GetResolvedType(method_id.class_idx_);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001040 if (referrer_class == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001041 stats_->TypeNeedsAccessCheck();
1042 return false; // Incomplete referrer knowledge needs access check.
1043 }
1044 // Perform access and instantiable checks, will return true if access is ok or false if we're
1045 // going to have to check this at runtime (for example for class loaders).
1046 bool result = referrer_class->CanAccess(resolved_class) && resolved_class->IsInstantiable();
1047 if (result) {
1048 stats_->TypeDoesntNeedAccessCheck();
1049 } else {
1050 stats_->TypeNeedsAccessCheck();
1051 }
1052 return result;
1053}
1054
Hiroshi Yamauchibe1ca552014-01-15 11:46:48 -08001055bool CompilerDriver::CanEmbedTypeInCode(const DexFile& dex_file, uint32_t type_idx,
1056 bool* is_type_initialized, bool* use_direct_type_ptr,
Mathieu Chartier8668c3c2014-04-24 16:48:11 -07001057 uintptr_t* direct_type_ptr, bool* out_is_finalizable) {
Hiroshi Yamauchibe1ca552014-01-15 11:46:48 -08001058 ScopedObjectAccess soa(Thread::Current());
1059 mirror::DexCache* dex_cache = Runtime::Current()->GetClassLinker()->FindDexCache(dex_file);
1060 mirror::Class* resolved_class = dex_cache->GetResolvedType(type_idx);
1061 if (resolved_class == nullptr) {
1062 return false;
1063 }
Igor Murashkind6dee672014-10-16 18:36:16 -07001064 if (GetCompilerOptions().GetCompilePic()) {
1065 // Do not allow a direct class pointer to be used when compiling for position-independent
1066 return false;
1067 }
Mathieu Chartier8668c3c2014-04-24 16:48:11 -07001068 *out_is_finalizable = resolved_class->IsFinalizable();
Hiroshi Yamauchibe1ca552014-01-15 11:46:48 -08001069 const bool compiling_boot = Runtime::Current()->GetHeap()->IsCompilingBoot();
Alex Light6e183f22014-07-18 14:57:04 -07001070 const bool support_boot_image_fixup = GetSupportBootImageFixup();
Hiroshi Yamauchibe1ca552014-01-15 11:46:48 -08001071 if (compiling_boot) {
1072 // boot -> boot class pointers.
1073 // True if the class is in the image at boot compiling time.
1074 const bool is_image_class = IsImage() && IsImageClass(
1075 dex_file.StringDataByIdx(dex_file.GetTypeId(type_idx).descriptor_idx_));
1076 // True if pc relative load works.
Hiroshi Yamauchibe1ca552014-01-15 11:46:48 -08001077 if (is_image_class && support_boot_image_fixup) {
1078 *is_type_initialized = resolved_class->IsInitialized();
1079 *use_direct_type_ptr = false;
1080 *direct_type_ptr = 0;
1081 return true;
1082 } else {
1083 return false;
1084 }
1085 } else {
1086 // True if the class is in the image at app compiling time.
1087 const bool class_in_image =
1088 Runtime::Current()->GetHeap()->FindSpaceFromObject(resolved_class, false)->IsImageSpace();
Alex Light6e183f22014-07-18 14:57:04 -07001089 if (class_in_image && support_boot_image_fixup) {
Hiroshi Yamauchibe1ca552014-01-15 11:46:48 -08001090 // boot -> app class pointers.
1091 *is_type_initialized = resolved_class->IsInitialized();
Alex Lighta59dd802014-07-02 16:28:08 -07001092 // TODO This is somewhat hacky. We should refactor all of this invoke codepath.
1093 *use_direct_type_ptr = !GetCompilerOptions().GetIncludePatchInformation();
Hiroshi Yamauchibe1ca552014-01-15 11:46:48 -08001094 *direct_type_ptr = reinterpret_cast<uintptr_t>(resolved_class);
1095 return true;
1096 } else {
1097 // app -> app class pointers.
1098 // Give up because app does not have an image and class
1099 // isn't created at compile time. TODO: implement this
1100 // if/when each app gets an image.
1101 return false;
1102 }
1103 }
1104}
1105
Fred Shihe7f82e22014-08-06 10:46:37 -07001106bool CompilerDriver::CanEmbedReferenceTypeInCode(ClassReference* ref,
1107 bool* use_direct_ptr,
1108 uintptr_t* direct_type_ptr) {
1109 CHECK(ref != nullptr);
1110 CHECK(use_direct_ptr != nullptr);
1111 CHECK(direct_type_ptr != nullptr);
1112
1113 ScopedObjectAccess soa(Thread::Current());
1114 mirror::Class* reference_class = mirror::Reference::GetJavaLangRefReference();
Andreas Gampe928f72b2014-09-09 19:53:48 -07001115 bool is_initialized = false;
Fred Shihe7f82e22014-08-06 10:46:37 -07001116 bool unused_finalizable;
1117 // Make sure we have a finished Reference class object before attempting to use it.
1118 if (!CanEmbedTypeInCode(*reference_class->GetDexCache()->GetDexFile(),
1119 reference_class->GetDexTypeIndex(), &is_initialized,
1120 use_direct_ptr, direct_type_ptr, &unused_finalizable) ||
1121 !is_initialized) {
1122 return false;
1123 }
1124 ref->first = &reference_class->GetDexFile();
1125 ref->second = reference_class->GetDexClassDefIndex();
1126 return true;
1127}
1128
1129uint32_t CompilerDriver::GetReferenceSlowFlagOffset() const {
1130 ScopedObjectAccess soa(Thread::Current());
1131 mirror::Class* klass = mirror::Reference::GetJavaLangRefReference();
1132 DCHECK(klass->IsInitialized());
1133 return klass->GetSlowPathFlagOffset().Uint32Value();
1134}
1135
1136uint32_t CompilerDriver::GetReferenceDisableFlagOffset() const {
1137 ScopedObjectAccess soa(Thread::Current());
1138 mirror::Class* klass = mirror::Reference::GetJavaLangRefReference();
1139 DCHECK(klass->IsInitialized());
1140 return klass->GetDisableIntrinsicFlagOffset().Uint32Value();
1141}
1142
Vladimir Markobe0e5462014-02-26 11:24:15 +00001143void CompilerDriver::ProcessedInstanceField(bool resolved) {
1144 if (!resolved) {
1145 stats_->UnresolvedInstanceField();
1146 } else {
1147 stats_->ResolvedInstanceField();
1148 }
1149}
1150
1151void CompilerDriver::ProcessedStaticField(bool resolved, bool local) {
1152 if (!resolved) {
1153 stats_->UnresolvedStaticField();
1154 } else if (local) {
1155 stats_->ResolvedLocalStaticField();
1156 } else {
1157 stats_->ResolvedStaticField();
1158 }
1159}
1160
Vladimir Markof096aad2014-01-23 15:51:58 +00001161void CompilerDriver::ProcessedInvoke(InvokeType invoke_type, int flags) {
1162 stats_->ProcessedInvoke(invoke_type, flags);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001163}
1164
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001165mirror::ArtField* CompilerDriver::ComputeInstanceFieldInfo(uint32_t field_idx,
1166 const DexCompilationUnit* mUnit,
1167 bool is_put,
1168 const ScopedObjectAccess& soa) {
Vladimir Markobe0e5462014-02-26 11:24:15 +00001169 // Try to resolve the field and compiling method's class.
1170 mirror::ArtField* resolved_field;
1171 mirror::Class* referrer_class;
1172 mirror::DexCache* dex_cache;
1173 {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001174 StackHandleScope<3> hs(soa.Self());
1175 Handle<mirror::DexCache> dex_cache_handle(
1176 hs.NewHandle(mUnit->GetClassLinker()->FindDexCache(*mUnit->GetDexFile())));
1177 Handle<mirror::ClassLoader> class_loader_handle(
1178 hs.NewHandle(soa.Decode<mirror::ClassLoader*>(mUnit->GetClassLoader())));
1179 Handle<mirror::ArtField> resolved_field_handle(hs.NewHandle(
1180 ResolveField(soa, dex_cache_handle, class_loader_handle, mUnit, field_idx, false)));
1181 referrer_class = (resolved_field_handle.Get() != nullptr)
1182 ? ResolveCompilingMethodsClass(soa, dex_cache_handle, class_loader_handle, mUnit) : nullptr;
1183 resolved_field = resolved_field_handle.Get();
1184 dex_cache = dex_cache_handle.Get();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001185 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001186 bool can_link = false;
Vladimir Markobe0e5462014-02-26 11:24:15 +00001187 if (resolved_field != nullptr && referrer_class != nullptr) {
Vladimir Markobe0e5462014-02-26 11:24:15 +00001188 std::pair<bool, bool> fast_path = IsFastInstanceField(
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001189 dex_cache, referrer_class, resolved_field, field_idx);
1190 can_link = is_put ? fast_path.second : fast_path.first;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001191 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001192 ProcessedInstanceField(can_link);
1193 return can_link ? resolved_field : nullptr;
1194}
1195
1196bool CompilerDriver::ComputeInstanceFieldInfo(uint32_t field_idx, const DexCompilationUnit* mUnit,
1197 bool is_put, MemberOffset* field_offset,
1198 bool* is_volatile) {
1199 ScopedObjectAccess soa(Thread::Current());
1200 StackHandleScope<1> hs(soa.Self());
1201 Handle<mirror::ArtField> resolved_field =
1202 hs.NewHandle(ComputeInstanceFieldInfo(field_idx, mUnit, is_put, soa));
1203
1204 if (resolved_field.Get() == nullptr) {
Vladimir Markobe0e5462014-02-26 11:24:15 +00001205 // Conservative defaults.
1206 *is_volatile = true;
1207 *field_offset = MemberOffset(static_cast<size_t>(-1));
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001208 return false;
1209 } else {
1210 *is_volatile = resolved_field->IsVolatile();
1211 *field_offset = resolved_field->GetOffset();
1212 return true;
Vladimir Markobe0e5462014-02-26 11:24:15 +00001213 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001214}
1215
1216bool CompilerDriver::ComputeStaticFieldInfo(uint32_t field_idx, const DexCompilationUnit* mUnit,
Vladimir Markobe0e5462014-02-26 11:24:15 +00001217 bool is_put, MemberOffset* field_offset,
1218 uint32_t* storage_index, bool* is_referrers_class,
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01001219 bool* is_volatile, bool* is_initialized,
1220 Primitive::Type* type) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001221 ScopedObjectAccess soa(Thread::Current());
Vladimir Markobe0e5462014-02-26 11:24:15 +00001222 // Try to resolve the field and compiling method's class.
1223 mirror::ArtField* resolved_field;
1224 mirror::Class* referrer_class;
1225 mirror::DexCache* dex_cache;
1226 {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001227 StackHandleScope<3> hs(soa.Self());
1228 Handle<mirror::DexCache> dex_cache_handle(
1229 hs.NewHandle(mUnit->GetClassLinker()->FindDexCache(*mUnit->GetDexFile())));
1230 Handle<mirror::ClassLoader> class_loader_handle(
1231 hs.NewHandle(soa.Decode<mirror::ClassLoader*>(mUnit->GetClassLoader())));
1232 Handle<mirror::ArtField> resolved_field_handle(hs.NewHandle(
1233 ResolveField(soa, dex_cache_handle, class_loader_handle, mUnit, field_idx, true)));
1234 referrer_class = (resolved_field_handle.Get() != nullptr)
1235 ? ResolveCompilingMethodsClass(soa, dex_cache_handle, class_loader_handle, mUnit) : nullptr;
1236 resolved_field = resolved_field_handle.Get();
1237 dex_cache = dex_cache_handle.Get();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001238 }
Vladimir Markobe0e5462014-02-26 11:24:15 +00001239 bool result = false;
1240 if (resolved_field != nullptr && referrer_class != nullptr) {
1241 *is_volatile = IsFieldVolatile(resolved_field);
1242 std::pair<bool, bool> fast_path = IsFastStaticField(
Vladimir Marko66c6d7b2014-10-16 15:41:48 +01001243 dex_cache, referrer_class, resolved_field, field_idx, storage_index);
Vladimir Markobe0e5462014-02-26 11:24:15 +00001244 result = is_put ? fast_path.second : fast_path.first;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001245 }
Vladimir Marko66c6d7b2014-10-16 15:41:48 +01001246 if (result) {
1247 *field_offset = GetFieldOffset(resolved_field);
1248 *is_referrers_class = IsStaticFieldInReferrerClass(referrer_class, resolved_field);
1249 // *is_referrers_class == true implies no worrying about class initialization.
1250 *is_initialized = (*is_referrers_class) ||
1251 (IsStaticFieldsClassInitialized(referrer_class, resolved_field) &&
1252 CanAssumeTypeIsPresentInDexCache(*mUnit->GetDexFile(), *storage_index));
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01001253 *type = resolved_field->GetTypeAsPrimitiveType();
Vladimir Marko66c6d7b2014-10-16 15:41:48 +01001254 } else {
Vladimir Markobe0e5462014-02-26 11:24:15 +00001255 // Conservative defaults.
1256 *is_volatile = true;
1257 *field_offset = MemberOffset(static_cast<size_t>(-1));
1258 *storage_index = -1;
1259 *is_referrers_class = false;
1260 *is_initialized = false;
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01001261 *type = Primitive::kPrimVoid;
Vladimir Markobe0e5462014-02-26 11:24:15 +00001262 }
1263 ProcessedStaticField(result, *is_referrers_class);
1264 return result;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001265}
1266
Ian Rogers83883d72013-10-21 21:07:24 -07001267void CompilerDriver::GetCodeAndMethodForDirectCall(InvokeType* type, InvokeType sharp_type,
1268 bool no_guarantee_of_dex_cache_entry,
Igor Murashkind6dee672014-10-16 18:36:16 -07001269 const mirror::Class* referrer_class,
Brian Carlstromea46f952013-07-30 01:26:50 -07001270 mirror::ArtMethod* method,
Vladimir Markof096aad2014-01-23 15:51:58 +00001271 int* stats_flags,
Ian Rogers83883d72013-10-21 21:07:24 -07001272 MethodReference* target_method,
Ian Rogers65ec92c2013-09-06 10:49:58 -07001273 uintptr_t* direct_code,
1274 uintptr_t* direct_method) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001275 // For direct and static methods compute possible direct_code and direct_method values, ie
1276 // an address for the Method* being invoked and an address of the code for that Method*.
1277 // For interface calls compute a value for direct_method that is the interface method being
1278 // invoked, so this can be passed to the out-of-line runtime support code.
Ian Rogers65ec92c2013-09-06 10:49:58 -07001279 *direct_code = 0;
1280 *direct_method = 0;
Igor Murashkind6dee672014-10-16 18:36:16 -07001281 bool use_dex_cache = GetCompilerOptions().GetCompilePic(); // Off by default
Mathieu Chartier590fee92013-09-13 13:46:47 -07001282 const bool compiling_boot = Runtime::Current()->GetHeap()->IsCompilingBoot();
Alex Lighta59dd802014-07-02 16:28:08 -07001283 // TODO This is somewhat hacky. We should refactor all of this invoke codepath.
1284 const bool force_relocations = (compiling_boot ||
1285 GetCompilerOptions().GetIncludePatchInformation());
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +00001286 if (compiler_->IsPortable()) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001287 if (sharp_type != kStatic && sharp_type != kDirect) {
1288 return;
1289 }
Ian Rogers83883d72013-10-21 21:07:24 -07001290 use_dex_cache = true;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001291 } else {
Jeff Hao88474b42013-10-23 16:24:40 -07001292 if (sharp_type != kStatic && sharp_type != kDirect) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001293 return;
1294 }
Ian Rogers83883d72013-10-21 21:07:24 -07001295 // TODO: support patching on all architectures.
Igor Murashkind6dee672014-10-16 18:36:16 -07001296 use_dex_cache = use_dex_cache || (force_relocations && !support_boot_image_fixup_);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001297 }
Ian Rogers83883d72013-10-21 21:07:24 -07001298 bool method_code_in_boot = (method->GetDeclaringClass()->GetClassLoader() == nullptr);
1299 if (!use_dex_cache) {
1300 if (!method_code_in_boot) {
1301 use_dex_cache = true;
1302 } else {
1303 bool has_clinit_trampoline =
1304 method->IsStatic() && !method->GetDeclaringClass()->IsInitialized();
1305 if (has_clinit_trampoline && (method->GetDeclaringClass() != referrer_class)) {
1306 // Ensure we run the clinit trampoline unless we are invoking a static method in the same
1307 // class.
1308 use_dex_cache = true;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001309 }
1310 }
Ian Rogers83883d72013-10-21 21:07:24 -07001311 }
Vladimir Markof096aad2014-01-23 15:51:58 +00001312 if (method_code_in_boot) {
1313 *stats_flags |= kFlagDirectCallToBoot | kFlagDirectMethodToBoot;
Ian Rogers83883d72013-10-21 21:07:24 -07001314 }
Alex Lighta59dd802014-07-02 16:28:08 -07001315 if (!use_dex_cache && force_relocations) {
1316 if (!IsImage() || !IsImageClass(method->GetDeclaringClassDescriptor())) {
Ian Rogers83883d72013-10-21 21:07:24 -07001317 // We can only branch directly to Methods that are resolved in the DexCache.
1318 // Otherwise we won't invoke the resolution trampoline.
1319 use_dex_cache = true;
1320 }
1321 }
1322 // The method is defined not within this dex file. We need a dex cache slot within the current
1323 // dex file or direct pointers.
1324 bool must_use_direct_pointers = false;
1325 if (target_method->dex_file == method->GetDeclaringClass()->GetDexCache()->GetDexFile()) {
1326 target_method->dex_method_index = method->GetDexMethodIndex();
1327 } else {
Ian Rogers83883d72013-10-21 21:07:24 -07001328 if (no_guarantee_of_dex_cache_entry) {
1329 // See if the method is also declared in this dex cache.
Ian Rogerse0a02da2014-12-02 14:10:53 -08001330 uint32_t dex_method_idx =
1331 method->FindDexMethodIndexInOtherDexFile(*target_method->dex_file,
1332 target_method->dex_method_index);
Ian Rogers83883d72013-10-21 21:07:24 -07001333 if (dex_method_idx != DexFile::kDexNoIndex) {
1334 target_method->dex_method_index = dex_method_idx;
1335 } else {
Alex Lighta59dd802014-07-02 16:28:08 -07001336 if (force_relocations && !use_dex_cache) {
Jeff Hao49161ce2014-03-12 11:05:25 -07001337 target_method->dex_method_index = method->GetDexMethodIndex();
1338 target_method->dex_file = method->GetDeclaringClass()->GetDexCache()->GetDexFile();
1339 }
Ian Rogers83883d72013-10-21 21:07:24 -07001340 must_use_direct_pointers = true;
1341 }
1342 }
1343 }
1344 if (use_dex_cache) {
1345 if (must_use_direct_pointers) {
1346 // Fail. Test above showed the only safe dispatch was via the dex cache, however, the direct
1347 // pointers are required as the dex cache lacks an appropriate entry.
1348 VLOG(compiler) << "Dex cache devirtualization failed for: " << PrettyMethod(method);
1349 } else {
1350 *type = sharp_type;
1351 }
1352 } else {
Alex Lighta59dd802014-07-02 16:28:08 -07001353 bool method_in_image =
Vladimir Markoa51a0b02014-05-21 12:08:39 +01001354 Runtime::Current()->GetHeap()->FindSpaceFromObject(method, false)->IsImageSpace();
Alex Lighta59dd802014-07-02 16:28:08 -07001355 if (method_in_image || compiling_boot) {
1356 // We know we must be able to get to the method in the image, so use that pointer.
Vladimir Markoa51a0b02014-05-21 12:08:39 +01001357 CHECK(!method->IsAbstract());
Ian Rogers83883d72013-10-21 21:07:24 -07001358 *type = sharp_type;
Alex Lighta59dd802014-07-02 16:28:08 -07001359 *direct_method = force_relocations ? -1 : reinterpret_cast<uintptr_t>(method);
1360 *direct_code = force_relocations ? -1 : compiler_->GetEntryPointOf(method);
Vladimir Markoa51a0b02014-05-21 12:08:39 +01001361 target_method->dex_file = method->GetDeclaringClass()->GetDexCache()->GetDexFile();
1362 target_method->dex_method_index = method->GetDexMethodIndex();
1363 } else if (!must_use_direct_pointers) {
1364 // Set the code and rely on the dex cache for the method.
1365 *type = sharp_type;
Alex Lighta59dd802014-07-02 16:28:08 -07001366 if (force_relocations) {
1367 *direct_code = -1;
1368 target_method->dex_file = method->GetDeclaringClass()->GetDexCache()->GetDexFile();
1369 target_method->dex_method_index = method->GetDexMethodIndex();
1370 } else {
1371 *direct_code = compiler_->GetEntryPointOf(method);
1372 }
Ian Rogers83883d72013-10-21 21:07:24 -07001373 } else {
Vladimir Markoa51a0b02014-05-21 12:08:39 +01001374 // Direct pointers were required but none were available.
1375 VLOG(compiler) << "Dex cache devirtualization failed for: " << PrettyMethod(method);
Ian Rogers83883d72013-10-21 21:07:24 -07001376 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001377 }
1378}
1379
1380bool CompilerDriver::ComputeInvokeInfo(const DexCompilationUnit* mUnit, const uint32_t dex_pc,
Ian Rogers65ec92c2013-09-06 10:49:58 -07001381 bool update_stats, bool enable_devirtualization,
1382 InvokeType* invoke_type, MethodReference* target_method,
1383 int* vtable_idx, uintptr_t* direct_code,
1384 uintptr_t* direct_method) {
Vladimir Markof096aad2014-01-23 15:51:58 +00001385 InvokeType orig_invoke_type = *invoke_type;
1386 int stats_flags = 0;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001387 ScopedObjectAccess soa(Thread::Current());
Vladimir Markof096aad2014-01-23 15:51:58 +00001388 // Try to resolve the method and compiling method's class.
1389 mirror::ArtMethod* resolved_method;
1390 mirror::Class* referrer_class;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001391 StackHandleScope<3> hs(soa.Self());
1392 Handle<mirror::DexCache> dex_cache(
1393 hs.NewHandle(mUnit->GetClassLinker()->FindDexCache(*mUnit->GetDexFile())));
1394 Handle<mirror::ClassLoader> class_loader(hs.NewHandle(
1395 soa.Decode<mirror::ClassLoader*>(mUnit->GetClassLoader())));
Vladimir Markof096aad2014-01-23 15:51:58 +00001396 {
1397 uint32_t method_idx = target_method->dex_method_index;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001398 Handle<mirror::ArtMethod> resolved_method_handle(hs.NewHandle(
1399 ResolveMethod(soa, dex_cache, class_loader, mUnit, method_idx, orig_invoke_type)));
1400 referrer_class = (resolved_method_handle.Get() != nullptr)
Vladimir Markof096aad2014-01-23 15:51:58 +00001401 ? ResolveCompilingMethodsClass(soa, dex_cache, class_loader, mUnit) : nullptr;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001402 resolved_method = resolved_method_handle.Get();
Vladimir Markof096aad2014-01-23 15:51:58 +00001403 }
1404 bool result = false;
1405 if (resolved_method != nullptr) {
1406 *vtable_idx = GetResolvedMethodVTableIndex(resolved_method, orig_invoke_type);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001407
Vladimir Markof096aad2014-01-23 15:51:58 +00001408 if (enable_devirtualization) {
1409 DCHECK(mUnit->GetVerifiedMethod() != nullptr);
1410 const MethodReference* devirt_target = mUnit->GetVerifiedMethod()->GetDevirtTarget(dex_pc);
1411
1412 stats_flags = IsFastInvoke(
1413 soa, dex_cache, class_loader, mUnit, referrer_class, resolved_method,
1414 invoke_type, target_method, devirt_target, direct_code, direct_method);
1415 result = stats_flags != 0;
1416 } else {
1417 // Devirtualization not enabled. Inline IsFastInvoke(), dropping the devirtualization parts.
1418 if (UNLIKELY(referrer_class == nullptr) ||
1419 UNLIKELY(!referrer_class->CanAccessResolvedMethod(resolved_method->GetDeclaringClass(),
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001420 resolved_method, dex_cache.Get(),
Vladimir Markof096aad2014-01-23 15:51:58 +00001421 target_method->dex_method_index)) ||
1422 *invoke_type == kSuper) {
1423 // Slow path. (Without devirtualization, all super calls go slow path as well.)
1424 } else {
1425 // Sharpening failed so generate a regular resolved method dispatch.
1426 stats_flags = kFlagMethodResolved;
1427 GetCodeAndMethodForDirectCall(invoke_type, *invoke_type, false, referrer_class, resolved_method,
1428 &stats_flags, target_method, direct_code, direct_method);
1429 result = true;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001430 }
1431 }
1432 }
Vladimir Markof096aad2014-01-23 15:51:58 +00001433 if (!result) {
1434 // Conservative defaults.
1435 *vtable_idx = -1;
1436 *direct_code = 0u;
1437 *direct_method = 0u;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001438 }
1439 if (update_stats) {
Vladimir Markof096aad2014-01-23 15:51:58 +00001440 ProcessedInvoke(orig_invoke_type, stats_flags);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001441 }
Vladimir Markof096aad2014-01-23 15:51:58 +00001442 return result;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001443}
1444
Vladimir Marko2730db02014-01-27 11:15:17 +00001445const VerifiedMethod* CompilerDriver::GetVerifiedMethod(const DexFile* dex_file,
1446 uint32_t method_idx) const {
1447 MethodReference ref(dex_file, method_idx);
1448 return verification_results_->GetVerifiedMethod(ref);
1449}
1450
1451bool CompilerDriver::IsSafeCast(const DexCompilationUnit* mUnit, uint32_t dex_pc) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001452 if (!compiler_options_->IsVerificationEnabled()) {
1453 // If we didn't verify, every cast has to be treated as non-safe.
1454 return false;
1455 }
Vladimir Marko2730db02014-01-27 11:15:17 +00001456 DCHECK(mUnit->GetVerifiedMethod() != nullptr);
1457 bool result = mUnit->GetVerifiedMethod()->IsSafeCast(dex_pc);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001458 if (result) {
1459 stats_->SafeCast();
1460 } else {
1461 stats_->NotASafeCast();
1462 }
1463 return result;
1464}
1465
Brian Carlstrom7940e442013-07-12 13:46:57 -07001466class ParallelCompilationManager {
1467 public:
1468 typedef void Callback(const ParallelCompilationManager* manager, size_t index);
1469
1470 ParallelCompilationManager(ClassLinker* class_linker,
1471 jobject class_loader,
1472 CompilerDriver* compiler,
1473 const DexFile* dex_file,
Andreas Gampede7b4362014-07-28 18:38:57 -07001474 const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -08001475 ThreadPool* thread_pool)
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001476 : index_(0),
1477 class_linker_(class_linker),
Brian Carlstrom7940e442013-07-12 13:46:57 -07001478 class_loader_(class_loader),
1479 compiler_(compiler),
1480 dex_file_(dex_file),
Andreas Gampede7b4362014-07-28 18:38:57 -07001481 dex_files_(dex_files),
Ian Rogers3d504072014-03-01 09:16:49 -08001482 thread_pool_(thread_pool) {}
Brian Carlstrom7940e442013-07-12 13:46:57 -07001483
1484 ClassLinker* GetClassLinker() const {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001485 CHECK(class_linker_ != nullptr);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001486 return class_linker_;
1487 }
1488
1489 jobject GetClassLoader() const {
1490 return class_loader_;
1491 }
1492
1493 CompilerDriver* GetCompiler() const {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001494 CHECK(compiler_ != nullptr);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001495 return compiler_;
1496 }
1497
1498 const DexFile* GetDexFile() const {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001499 CHECK(dex_file_ != nullptr);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001500 return dex_file_;
1501 }
1502
Andreas Gampede7b4362014-07-28 18:38:57 -07001503 const std::vector<const DexFile*>& GetDexFiles() const {
1504 return dex_files_;
1505 }
1506
Brian Carlstrom7940e442013-07-12 13:46:57 -07001507 void ForAll(size_t begin, size_t end, Callback callback, size_t work_units) {
1508 Thread* self = Thread::Current();
1509 self->AssertNoPendingException();
1510 CHECK_GT(work_units, 0U);
1511
Ian Rogers3e5cf302014-05-20 16:40:37 -07001512 index_.StoreRelaxed(begin);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001513 for (size_t i = 0; i < work_units; ++i) {
Sebastien Hertz501baec2013-12-13 12:02:36 +01001514 thread_pool_->AddTask(self, new ForAllClosure(this, end, callback));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001515 }
1516 thread_pool_->StartWorkers(self);
1517
1518 // Ensure we're suspended while we're blocked waiting for the other threads to finish (worker
1519 // thread destructor's called below perform join).
1520 CHECK_NE(self->GetState(), kRunnable);
1521
1522 // Wait for all the worker threads to finish.
1523 thread_pool_->Wait(self, true, false);
1524 }
1525
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001526 size_t NextIndex() {
Ian Rogers3e5cf302014-05-20 16:40:37 -07001527 return index_.FetchAndAddSequentiallyConsistent(1);
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001528 }
1529
Brian Carlstrom7940e442013-07-12 13:46:57 -07001530 private:
Brian Carlstrom7940e442013-07-12 13:46:57 -07001531 class ForAllClosure : public Task {
1532 public:
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001533 ForAllClosure(ParallelCompilationManager* manager, size_t end, Callback* callback)
Brian Carlstrom7940e442013-07-12 13:46:57 -07001534 : manager_(manager),
Brian Carlstrom7940e442013-07-12 13:46:57 -07001535 end_(end),
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001536 callback_(callback) {}
Brian Carlstrom7940e442013-07-12 13:46:57 -07001537
1538 virtual void Run(Thread* self) {
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001539 while (true) {
1540 const size_t index = manager_->NextIndex();
1541 if (UNLIKELY(index >= end_)) {
1542 break;
1543 }
1544 callback_(manager_, index);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001545 self->AssertNoPendingException();
1546 }
1547 }
1548
1549 virtual void Finalize() {
1550 delete this;
1551 }
Brian Carlstrom0cd7ec22013-07-17 23:40:20 -07001552
Brian Carlstrom7940e442013-07-12 13:46:57 -07001553 private:
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001554 ParallelCompilationManager* const manager_;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001555 const size_t end_;
Bernhard Rosenkränzer46053622013-12-12 02:15:52 +01001556 Callback* const callback_;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001557 };
1558
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001559 AtomicInteger index_;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001560 ClassLinker* const class_linker_;
1561 const jobject class_loader_;
1562 CompilerDriver* const compiler_;
1563 const DexFile* const dex_file_;
Andreas Gampede7b4362014-07-28 18:38:57 -07001564 const std::vector<const DexFile*>& dex_files_;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001565 ThreadPool* const thread_pool_;
Mathieu Chartier0b3eb392013-08-23 14:56:59 -07001566
1567 DISALLOW_COPY_AND_ASSIGN(ParallelCompilationManager);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001568};
1569
Jeff Hao0e49b422013-11-08 12:16:56 -08001570// A fast version of SkipClass above if the class pointer is available
1571// that avoids the expensive FindInClassPath search.
1572static bool SkipClass(jobject class_loader, const DexFile& dex_file, mirror::Class* klass)
1573 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001574 DCHECK(klass != nullptr);
Jeff Hao0e49b422013-11-08 12:16:56 -08001575 const DexFile& original_dex_file = *klass->GetDexCache()->GetDexFile();
1576 if (&dex_file != &original_dex_file) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001577 if (class_loader == nullptr) {
Jeff Hao0e49b422013-11-08 12:16:56 -08001578 LOG(WARNING) << "Skipping class " << PrettyDescriptor(klass) << " from "
1579 << dex_file.GetLocation() << " previously found in "
1580 << original_dex_file.GetLocation();
1581 }
1582 return true;
1583 }
1584 return false;
1585}
1586
Mathieu Chartier70b63482014-06-27 17:19:04 -07001587static void CheckAndClearResolveException(Thread* self)
1588 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
1589 CHECK(self->IsExceptionPending());
1590 mirror::Throwable* exception = self->GetException(nullptr);
Ian Rogers1ff3c982014-08-12 02:30:58 -07001591 std::string temp;
1592 const char* descriptor = exception->GetClass()->GetDescriptor(&temp);
1593 const char* expected_exceptions[] = {
1594 "Ljava/lang/IllegalAccessError;",
1595 "Ljava/lang/IncompatibleClassChangeError;",
1596 "Ljava/lang/InstantiationError;",
Brian Carlstrom898fcb52014-08-25 23:07:30 -07001597 "Ljava/lang/LinkageError;",
Ian Rogers1ff3c982014-08-12 02:30:58 -07001598 "Ljava/lang/NoClassDefFoundError;",
1599 "Ljava/lang/NoSuchFieldError;",
1600 "Ljava/lang/NoSuchMethodError;"
1601 };
1602 bool found = false;
1603 for (size_t i = 0; (found == false) && (i < arraysize(expected_exceptions)); ++i) {
1604 if (strcmp(descriptor, expected_exceptions[i]) == 0) {
1605 found = true;
1606 }
1607 }
1608 if (!found) {
Brian Carlstrom898fcb52014-08-25 23:07:30 -07001609 LOG(FATAL) << "Unexpected exception " << exception->Dump();
Mathieu Chartier70b63482014-06-27 17:19:04 -07001610 }
1611 self->ClearException();
1612}
1613
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001614static void ResolveClassFieldsAndMethods(const ParallelCompilationManager* manager,
1615 size_t class_def_index)
Brian Carlstrom7940e442013-07-12 13:46:57 -07001616 LOCKS_EXCLUDED(Locks::mutator_lock_) {
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07001617 ATRACE_CALL();
Ian Rogersbe7149f2013-08-20 09:29:39 -07001618 Thread* self = Thread::Current();
1619 jobject jclass_loader = manager->GetClassLoader();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001620 const DexFile& dex_file = *manager->GetDexFile();
Ian Rogersbe7149f2013-08-20 09:29:39 -07001621 ClassLinker* class_linker = manager->GetClassLinker();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001622
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001623 // If an instance field is final then we need to have a barrier on the return, static final
1624 // fields are assigned within the lock held for class initialization. Conservatively assume
1625 // constructor barriers are always required.
1626 bool requires_constructor_barrier = true;
1627
Brian Carlstrom7940e442013-07-12 13:46:57 -07001628 // Method and Field are the worst. We can't resolve without either
1629 // context from the code use (to disambiguate virtual vs direct
1630 // method and instance vs static field) or from class
1631 // definitions. While the compiler will resolve what it can as it
1632 // needs it, here we try to resolve fields and methods used in class
1633 // definitions, since many of them many never be referenced by
1634 // generated code.
1635 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
Ian Rogers68b56852014-08-29 20:19:11 -07001636 ScopedObjectAccess soa(self);
1637 StackHandleScope<2> hs(soa.Self());
1638 Handle<mirror::ClassLoader> class_loader(
1639 hs.NewHandle(soa.Decode<mirror::ClassLoader*>(jclass_loader)));
1640 Handle<mirror::DexCache> dex_cache(hs.NewHandle(class_linker->FindDexCache(dex_file)));
1641 // Resolve the class.
1642 mirror::Class* klass = class_linker->ResolveType(dex_file, class_def.class_idx_, dex_cache,
1643 class_loader);
1644 bool resolve_fields_and_methods;
1645 if (klass == nullptr) {
1646 // Class couldn't be resolved, for example, super-class is in a different dex file. Don't
1647 // attempt to resolve methods and fields when there is no declaring class.
1648 CheckAndClearResolveException(soa.Self());
1649 resolve_fields_and_methods = false;
1650 } else {
1651 // We successfully resolved a class, should we skip it?
1652 if (SkipClass(jclass_loader, dex_file, klass)) {
1653 return;
Brian Carlstromcb5f5e52013-09-23 17:48:16 -07001654 }
Ian Rogers68b56852014-08-29 20:19:11 -07001655 // We want to resolve the methods and fields eagerly.
1656 resolve_fields_and_methods = true;
1657 }
1658 // Note the class_data pointer advances through the headers,
1659 // static fields, instance fields, direct methods, and virtual
1660 // methods.
Ian Rogers13735952014-10-08 12:43:28 -07001661 const uint8_t* class_data = dex_file.GetClassData(class_def);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001662 if (class_data == nullptr) {
Ian Rogers68b56852014-08-29 20:19:11 -07001663 // Empty class such as a marker interface.
1664 requires_constructor_barrier = false;
1665 } else {
1666 ClassDataItemIterator it(dex_file, class_data);
1667 while (it.HasNextStaticField()) {
1668 if (resolve_fields_and_methods) {
1669 mirror::ArtField* field = class_linker->ResolveField(dex_file, it.GetMemberIndex(),
1670 dex_cache, class_loader, true);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001671 if (field == nullptr) {
Ian Rogers68b56852014-08-29 20:19:11 -07001672 CheckAndClearResolveException(soa.Self());
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001673 }
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001674 }
Ian Rogers68b56852014-08-29 20:19:11 -07001675 it.Next();
1676 }
1677 // We require a constructor barrier if there are final instance fields.
1678 requires_constructor_barrier = false;
1679 while (it.HasNextInstanceField()) {
Andreas Gampe51829322014-08-25 15:05:04 -07001680 if (it.MemberIsFinal()) {
Ian Rogers68b56852014-08-29 20:19:11 -07001681 requires_constructor_barrier = true;
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001682 }
1683 if (resolve_fields_and_methods) {
Ian Rogers68b56852014-08-29 20:19:11 -07001684 mirror::ArtField* field = class_linker->ResolveField(dex_file, it.GetMemberIndex(),
1685 dex_cache, class_loader, false);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001686 if (field == nullptr) {
Ian Rogers68b56852014-08-29 20:19:11 -07001687 CheckAndClearResolveException(soa.Self());
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001688 }
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001689 }
Ian Rogers68b56852014-08-29 20:19:11 -07001690 it.Next();
1691 }
1692 if (resolve_fields_and_methods) {
1693 while (it.HasNextDirectMethod()) {
1694 mirror::ArtMethod* method = class_linker->ResolveMethod(dex_file, it.GetMemberIndex(),
1695 dex_cache, class_loader,
1696 NullHandle<mirror::ArtMethod>(),
1697 it.GetMethodInvokeType(class_def));
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001698 if (method == nullptr) {
Ian Rogers68b56852014-08-29 20:19:11 -07001699 CheckAndClearResolveException(soa.Self());
1700 }
1701 it.Next();
1702 }
1703 while (it.HasNextVirtualMethod()) {
1704 mirror::ArtMethod* method = class_linker->ResolveMethod(dex_file, it.GetMemberIndex(),
1705 dex_cache, class_loader,
1706 NullHandle<mirror::ArtMethod>(),
1707 it.GetMethodInvokeType(class_def));
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001708 if (method == nullptr) {
Ian Rogers68b56852014-08-29 20:19:11 -07001709 CheckAndClearResolveException(soa.Self());
1710 }
1711 it.Next();
1712 }
1713 DCHECK(!it.HasNext());
Brian Carlstrom7940e442013-07-12 13:46:57 -07001714 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001715 }
1716 if (requires_constructor_barrier) {
Ian Rogersbe7149f2013-08-20 09:29:39 -07001717 manager->GetCompiler()->AddRequiresConstructorBarrier(self, &dex_file, class_def_index);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001718 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001719}
1720
1721static void ResolveType(const ParallelCompilationManager* manager, size_t type_idx)
1722 LOCKS_EXCLUDED(Locks::mutator_lock_) {
1723 // Class derived values are more complicated, they require the linker and loader.
1724 ScopedObjectAccess soa(Thread::Current());
1725 ClassLinker* class_linker = manager->GetClassLinker();
1726 const DexFile& dex_file = *manager->GetDexFile();
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001727 StackHandleScope<2> hs(soa.Self());
1728 Handle<mirror::DexCache> dex_cache(hs.NewHandle(class_linker->FindDexCache(dex_file)));
1729 Handle<mirror::ClassLoader> class_loader(
1730 hs.NewHandle(soa.Decode<mirror::ClassLoader*>(manager->GetClassLoader())));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001731 mirror::Class* klass = class_linker->ResolveType(dex_file, type_idx, dex_cache, class_loader);
1732
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001733 if (klass == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001734 CHECK(soa.Self()->IsExceptionPending());
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001735 mirror::Throwable* exception = soa.Self()->GetException(nullptr);
Ian Rogersa436fde2013-08-27 23:34:06 -07001736 VLOG(compiler) << "Exception during type resolution: " << exception->Dump();
Mathieu Chartierf8322842014-05-16 10:59:25 -07001737 if (exception->GetClass()->DescriptorEquals("Ljava/lang/OutOfMemoryError;")) {
Ian Rogersa436fde2013-08-27 23:34:06 -07001738 // There's little point continuing compilation if the heap is exhausted.
1739 LOG(FATAL) << "Out of memory during type resolution for compilation";
1740 }
1741 soa.Self()->ClearException();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001742 }
1743}
1744
1745void CompilerDriver::ResolveDexFile(jobject class_loader, const DexFile& dex_file,
Andreas Gampede7b4362014-07-28 18:38:57 -07001746 const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -08001747 ThreadPool* thread_pool, TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001748 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
1749
1750 // TODO: we could resolve strings here, although the string table is largely filled with class
1751 // and method names.
1752
Andreas Gampede7b4362014-07-28 18:38:57 -07001753 ParallelCompilationManager context(class_linker, class_loader, this, &dex_file, dex_files,
1754 thread_pool);
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001755 if (IsImage()) {
1756 // For images we resolve all types, such as array, whereas for applications just those with
1757 // classdefs are resolved by ResolveClassFieldsAndMethods.
Mathieu Chartierf5997b42014-06-20 10:37:54 -07001758 TimingLogger::ScopedTiming t("Resolve Types", timings);
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001759 context.ForAll(0, dex_file.NumTypeIds(), ResolveType, thread_count_);
1760 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001761
Mathieu Chartierf5997b42014-06-20 10:37:54 -07001762 TimingLogger::ScopedTiming t("Resolve MethodsAndFields", timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001763 context.ForAll(0, dex_file.NumClassDefs(), ResolveClassFieldsAndMethods, thread_count_);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001764}
1765
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001766void CompilerDriver::SetVerified(jobject class_loader, const std::vector<const DexFile*>& dex_files,
1767 ThreadPool* thread_pool, TimingLogger* timings) {
1768 for (size_t i = 0; i != dex_files.size(); ++i) {
1769 const DexFile* dex_file = dex_files[i];
1770 CHECK(dex_file != nullptr);
1771 SetVerifiedDexFile(class_loader, *dex_file, dex_files, thread_pool, timings);
1772 }
1773}
1774
Brian Carlstrom7940e442013-07-12 13:46:57 -07001775void CompilerDriver::Verify(jobject class_loader, const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -08001776 ThreadPool* thread_pool, TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001777 for (size_t i = 0; i != dex_files.size(); ++i) {
1778 const DexFile* dex_file = dex_files[i];
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001779 CHECK(dex_file != nullptr);
Andreas Gampede7b4362014-07-28 18:38:57 -07001780 VerifyDexFile(class_loader, *dex_file, dex_files, thread_pool, timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001781 }
1782}
1783
1784static void VerifyClass(const ParallelCompilationManager* manager, size_t class_def_index)
1785 LOCKS_EXCLUDED(Locks::mutator_lock_) {
Anwar Ghuloum67f99412013-08-12 14:19:48 -07001786 ATRACE_CALL();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001787 ScopedObjectAccess soa(Thread::Current());
Jeff Hao0e49b422013-11-08 12:16:56 -08001788 const DexFile& dex_file = *manager->GetDexFile();
1789 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
1790 const char* descriptor = dex_file.GetClassDescriptor(class_def);
1791 ClassLinker* class_linker = manager->GetClassLinker();
1792 jobject jclass_loader = manager->GetClassLoader();
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001793 StackHandleScope<3> hs(soa.Self());
1794 Handle<mirror::ClassLoader> class_loader(
1795 hs.NewHandle(soa.Decode<mirror::ClassLoader*>(jclass_loader)));
1796 Handle<mirror::Class> klass(
1797 hs.NewHandle(class_linker->FindClass(soa.Self(), descriptor, class_loader)));
1798 if (klass.Get() == nullptr) {
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001799 CHECK(soa.Self()->IsExceptionPending());
Brian Carlstrom7940e442013-07-12 13:46:57 -07001800 soa.Self()->ClearException();
1801
1802 /*
1803 * At compile time, we can still structurally verify the class even if FindClass fails.
1804 * This is to ensure the class is structurally sound for compilation. An unsound class
1805 * will be rejected by the verifier and later skipped during compilation in the compiler.
1806 */
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001807 Handle<mirror::DexCache> dex_cache(hs.NewHandle(class_linker->FindDexCache(dex_file)));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001808 std::string error_msg;
Ian Rogers7b078e82014-09-10 14:44:24 -07001809 if (verifier::MethodVerifier::VerifyClass(soa.Self(), &dex_file, dex_cache, class_loader,
1810 &class_def, true, &error_msg) ==
Brian Carlstrom7940e442013-07-12 13:46:57 -07001811 verifier::MethodVerifier::kHardFailure) {
Jeff Hao0e49b422013-11-08 12:16:56 -08001812 LOG(ERROR) << "Verification failed on class " << PrettyDescriptor(descriptor)
Brian Carlstrom7940e442013-07-12 13:46:57 -07001813 << " because: " << error_msg;
1814 }
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001815 } else if (!SkipClass(jclass_loader, dex_file, klass.Get())) {
1816 CHECK(klass->IsResolved()) << PrettyClass(klass.Get());
Ian Rogers7b078e82014-09-10 14:44:24 -07001817 class_linker->VerifyClass(soa.Self(), klass);
Ian Rogerse6bb3b22013-08-19 21:51:45 -07001818
1819 if (klass->IsErroneous()) {
1820 // ClassLinker::VerifyClass throws, which isn't useful in the compiler.
1821 CHECK(soa.Self()->IsExceptionPending());
1822 soa.Self()->ClearException();
1823 }
1824
1825 CHECK(klass->IsCompileTimeVerified() || klass->IsErroneous())
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001826 << PrettyDescriptor(klass.Get()) << ": state=" << klass->GetStatus();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001827 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001828 soa.Self()->AssertNoPendingException();
1829}
1830
1831void CompilerDriver::VerifyDexFile(jobject class_loader, const DexFile& dex_file,
Andreas Gampede7b4362014-07-28 18:38:57 -07001832 const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -08001833 ThreadPool* thread_pool, TimingLogger* timings) {
Mathieu Chartierf5997b42014-06-20 10:37:54 -07001834 TimingLogger::ScopedTiming t("Verify Dex File", timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001835 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Andreas Gampede7b4362014-07-28 18:38:57 -07001836 ParallelCompilationManager context(class_linker, class_loader, this, &dex_file, dex_files,
1837 thread_pool);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001838 context.ForAll(0, dex_file.NumClassDefs(), VerifyClass, thread_count_);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001839}
1840
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001841static void SetVerifiedClass(const ParallelCompilationManager* manager, size_t class_def_index)
1842 LOCKS_EXCLUDED(Locks::mutator_lock_) {
1843 ATRACE_CALL();
1844 ScopedObjectAccess soa(Thread::Current());
1845 const DexFile& dex_file = *manager->GetDexFile();
1846 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
1847 const char* descriptor = dex_file.GetClassDescriptor(class_def);
1848 ClassLinker* class_linker = manager->GetClassLinker();
1849 jobject jclass_loader = manager->GetClassLoader();
1850 StackHandleScope<3> hs(soa.Self());
1851 Handle<mirror::ClassLoader> class_loader(
1852 hs.NewHandle(soa.Decode<mirror::ClassLoader*>(jclass_loader)));
1853 Handle<mirror::Class> klass(
1854 hs.NewHandle(class_linker->FindClass(soa.Self(), descriptor, class_loader)));
1855 // Class might have failed resolution. Then don't set it to verified.
1856 if (klass.Get() != nullptr) {
1857 // Only do this if the class is resolved. If even resolution fails, quickening will go very,
1858 // very wrong.
1859 if (klass->IsResolved()) {
1860 if (klass->GetStatus() < mirror::Class::kStatusVerified) {
1861 ObjectLock<mirror::Class> lock(soa.Self(), klass);
1862 klass->SetStatus(mirror::Class::kStatusVerified, soa.Self());
1863 }
1864 // Record the final class status if necessary.
1865 ClassReference ref(manager->GetDexFile(), class_def_index);
1866 manager->GetCompiler()->RecordClassStatus(ref, klass->GetStatus());
1867 }
Andreas Gampe61ff0092014-09-16 11:23:23 -07001868 } else {
1869 Thread* self = soa.Self();
1870 DCHECK(self->IsExceptionPending());
1871 self->ClearException();
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001872 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001873}
1874
1875void CompilerDriver::SetVerifiedDexFile(jobject class_loader, const DexFile& dex_file,
1876 const std::vector<const DexFile*>& dex_files,
1877 ThreadPool* thread_pool, TimingLogger* timings) {
1878 TimingLogger::ScopedTiming t("Verify Dex File", timings);
1879 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
1880 ParallelCompilationManager context(class_linker, class_loader, this, &dex_file, dex_files,
1881 thread_pool);
1882 context.ForAll(0, dex_file.NumClassDefs(), SetVerifiedClass, thread_count_);
1883}
1884
Brian Carlstrom7940e442013-07-12 13:46:57 -07001885static void InitializeClass(const ParallelCompilationManager* manager, size_t class_def_index)
1886 LOCKS_EXCLUDED(Locks::mutator_lock_) {
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07001887 ATRACE_CALL();
Jeff Hao0e49b422013-11-08 12:16:56 -08001888 jobject jclass_loader = manager->GetClassLoader();
1889 const DexFile& dex_file = *manager->GetDexFile();
1890 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
Jeff Haobcdbbfe2013-11-08 18:03:22 -08001891 const DexFile::TypeId& class_type_id = dex_file.GetTypeId(class_def.class_idx_);
1892 const char* descriptor = dex_file.StringDataByIdx(class_type_id.descriptor_idx_);
Ian Rogersfc0e94b2013-09-23 23:51:32 -07001893
Brian Carlstrom7940e442013-07-12 13:46:57 -07001894 ScopedObjectAccess soa(Thread::Current());
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001895 StackHandleScope<3> hs(soa.Self());
1896 Handle<mirror::ClassLoader> class_loader(
1897 hs.NewHandle(soa.Decode<mirror::ClassLoader*>(jclass_loader)));
1898 Handle<mirror::Class> klass(
1899 hs.NewHandle(manager->GetClassLinker()->FindClass(soa.Self(), descriptor, class_loader)));
Jeff Hao0e49b422013-11-08 12:16:56 -08001900
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001901 if (klass.Get() != nullptr && !SkipClass(jclass_loader, dex_file, klass.Get())) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001902 // Only try to initialize classes that were successfully verified.
1903 if (klass->IsVerified()) {
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07001904 // Attempt to initialize the class but bail if we either need to initialize the super-class
1905 // or static fields.
Ian Rogers7b078e82014-09-10 14:44:24 -07001906 manager->GetClassLinker()->EnsureInitialized(soa.Self(), klass, false, false);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001907 if (!klass->IsInitialized()) {
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07001908 // We don't want non-trivial class initialization occurring on multiple threads due to
1909 // deadlock problems. For example, a parent class is initialized (holding its lock) that
1910 // refers to a sub-class in its static/class initializer causing it to try to acquire the
1911 // sub-class' lock. While on a second thread the sub-class is initialized (holding its lock)
1912 // after first initializing its parents, whose locks are acquired. This leads to a
1913 // parent-to-child and a child-to-parent lock ordering and consequent potential deadlock.
1914 // We need to use an ObjectLock due to potential suspension in the interpreting code. Rather
1915 // than use a special Object for the purpose we use the Class of java.lang.Class.
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001916 Handle<mirror::Class> h_klass(hs.NewHandle(klass->GetClass()));
Mathieu Chartierdb2633c2014-05-16 09:59:29 -07001917 ObjectLock<mirror::Class> lock(soa.Self(), h_klass);
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07001918 // Attempt to initialize allowing initialization of parent classes but still not static
1919 // fields.
Ian Rogers7b078e82014-09-10 14:44:24 -07001920 manager->GetClassLinker()->EnsureInitialized(soa.Self(), klass, false, true);
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07001921 if (!klass->IsInitialized()) {
1922 // We need to initialize static fields, we only do this for image classes that aren't
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001923 // marked with the $NoPreloadHolder (which implies this should not be initialized early).
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07001924 bool can_init_static_fields = manager->GetCompiler()->IsImage() &&
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001925 manager->GetCompiler()->IsImageClass(descriptor) &&
1926 !StringPiece(descriptor).ends_with("$NoPreloadHolder;");
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07001927 if (can_init_static_fields) {
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001928 VLOG(compiler) << "Initializing: " << descriptor;
Ian Rogersc45b8b52014-05-03 01:39:59 -07001929 // TODO multithreading support. We should ensure the current compilation thread has
1930 // exclusive access to the runtime and the transaction. To achieve this, we could use
1931 // a ReaderWriterMutex but we're holding the mutator lock so we fail mutex sanity
1932 // checks in Thread::AssertThreadSuspensionIsAllowable.
1933 Runtime* const runtime = Runtime::Current();
1934 Transaction transaction;
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001935
Ian Rogersc45b8b52014-05-03 01:39:59 -07001936 // Run the class initializer in transaction mode.
1937 runtime->EnterTransactionMode(&transaction);
1938 const mirror::Class::Status old_status = klass->GetStatus();
Ian Rogers7b078e82014-09-10 14:44:24 -07001939 bool success = manager->GetClassLinker()->EnsureInitialized(soa.Self(), klass, true,
1940 true);
Ian Rogersc45b8b52014-05-03 01:39:59 -07001941 // TODO we detach transaction from runtime to indicate we quit the transactional
1942 // mode which prevents the GC from visiting objects modified during the transaction.
1943 // Ensure GC is not run so don't access freed objects when aborting transaction.
Mathieu Chartier2d5f39e2014-09-19 17:52:37 -07001944
1945 ScopedAssertNoThreadSuspension ants(soa.Self(), "Transaction end");
Ian Rogersc45b8b52014-05-03 01:39:59 -07001946 runtime->ExitTransactionMode();
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001947
Ian Rogersc45b8b52014-05-03 01:39:59 -07001948 if (!success) {
1949 CHECK(soa.Self()->IsExceptionPending());
1950 ThrowLocation throw_location;
1951 mirror::Throwable* exception = soa.Self()->GetException(&throw_location);
1952 VLOG(compiler) << "Initialization of " << descriptor << " aborted because of "
1953 << exception->Dump();
Andreas Gampedbfe2542014-11-25 22:21:42 -08001954 std::ostream* file_log = manager->GetCompiler()->
1955 GetCompilerOptions().GetInitFailureOutput();
1956 if (file_log != nullptr) {
1957 *file_log << descriptor << "\n";
1958 *file_log << exception->Dump() << "\n";
1959 }
Ian Rogersc45b8b52014-05-03 01:39:59 -07001960 soa.Self()->ClearException();
1961 transaction.Abort();
1962 CHECK_EQ(old_status, klass->GetStatus()) << "Previous class status not restored";
Brian Carlstrom7940e442013-07-12 13:46:57 -07001963 }
1964 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001965 }
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07001966 soa.Self()->AssertNoPendingException();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001967 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001968 }
1969 // Record the final class status if necessary.
Brian Carlstrom7940e442013-07-12 13:46:57 -07001970 ClassReference ref(manager->GetDexFile(), class_def_index);
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07001971 manager->GetCompiler()->RecordClassStatus(ref, klass->GetStatus());
Brian Carlstrom7940e442013-07-12 13:46:57 -07001972 }
1973 // Clear any class not found or verification exceptions.
1974 soa.Self()->ClearException();
1975}
1976
1977void CompilerDriver::InitializeClasses(jobject jni_class_loader, const DexFile& dex_file,
Andreas Gampede7b4362014-07-28 18:38:57 -07001978 const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -08001979 ThreadPool* thread_pool, TimingLogger* timings) {
Mathieu Chartierf5997b42014-06-20 10:37:54 -07001980 TimingLogger::ScopedTiming t("InitializeNoClinit", timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001981 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Andreas Gampede7b4362014-07-28 18:38:57 -07001982 ParallelCompilationManager context(class_linker, jni_class_loader, this, &dex_file, dex_files,
1983 thread_pool);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001984 size_t thread_count;
1985 if (IsImage()) {
1986 // TODO: remove this when transactional mode supports multithreading.
1987 thread_count = 1U;
1988 } else {
1989 thread_count = thread_count_;
1990 }
1991 context.ForAll(0, dex_file.NumClassDefs(), InitializeClass, thread_count);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001992}
1993
1994void CompilerDriver::InitializeClasses(jobject class_loader,
1995 const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -08001996 ThreadPool* thread_pool, TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001997 for (size_t i = 0; i != dex_files.size(); ++i) {
1998 const DexFile* dex_file = dex_files[i];
Andreas Gampe2ed8def2014-08-28 14:41:02 -07001999 CHECK(dex_file != nullptr);
Andreas Gampede7b4362014-07-28 18:38:57 -07002000 InitializeClasses(class_loader, *dex_file, dex_files, thread_pool, timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002001 }
Mathieu Chartier093ef212014-08-11 13:52:12 -07002002 if (IsImage()) {
2003 // Prune garbage objects created during aborted transactions.
2004 Runtime::Current()->GetHeap()->CollectGarbage(true);
2005 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002006}
2007
2008void CompilerDriver::Compile(jobject class_loader, const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -08002009 ThreadPool* thread_pool, TimingLogger* timings) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07002010 for (size_t i = 0; i != dex_files.size(); ++i) {
2011 const DexFile* dex_file = dex_files[i];
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002012 CHECK(dex_file != nullptr);
Andreas Gampede7b4362014-07-28 18:38:57 -07002013 CompileDexFile(class_loader, *dex_file, dex_files, thread_pool, timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002014 }
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002015 VLOG(compiler) << "Compile: " << GetMemoryUsageString();
Brian Carlstrom7940e442013-07-12 13:46:57 -07002016}
2017
2018void CompilerDriver::CompileClass(const ParallelCompilationManager* manager, size_t class_def_index) {
Anwar Ghuloum67f99412013-08-12 14:19:48 -07002019 ATRACE_CALL();
Brian Carlstrom7940e442013-07-12 13:46:57 -07002020 const DexFile& dex_file = *manager->GetDexFile();
2021 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
Ian Rogersbe7149f2013-08-20 09:29:39 -07002022 ClassLinker* class_linker = manager->GetClassLinker();
Ian Rogers1ff3c982014-08-12 02:30:58 -07002023 jobject jclass_loader = manager->GetClassLoader();
2024 {
2025 // Use a scoped object access to perform to the quick SkipClass check.
2026 const char* descriptor = dex_file.GetClassDescriptor(class_def);
2027 ScopedObjectAccess soa(Thread::Current());
2028 StackHandleScope<3> hs(soa.Self());
2029 Handle<mirror::ClassLoader> class_loader(
2030 hs.NewHandle(soa.Decode<mirror::ClassLoader*>(jclass_loader)));
2031 Handle<mirror::Class> klass(
2032 hs.NewHandle(class_linker->FindClass(soa.Self(), descriptor, class_loader)));
2033 if (klass.Get() == nullptr) {
2034 CHECK(soa.Self()->IsExceptionPending());
2035 soa.Self()->ClearException();
2036 } else if (SkipClass(jclass_loader, dex_file, klass.Get())) {
2037 return;
2038 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002039 }
2040 ClassReference ref(&dex_file, class_def_index);
2041 // Skip compiling classes with generic verifier failures since they will still fail at runtime
Vladimir Markoc7f83202014-01-24 17:55:18 +00002042 if (manager->GetCompiler()->verification_results_->IsClassRejected(ref)) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07002043 return;
2044 }
Ian Rogers13735952014-10-08 12:43:28 -07002045 const uint8_t* class_data = dex_file.GetClassData(class_def);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002046 if (class_data == nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07002047 // empty class, probably a marker interface
2048 return;
2049 }
Anwar Ghuloum67f99412013-08-12 14:19:48 -07002050
Brian Carlstrom7940e442013-07-12 13:46:57 -07002051 // Can we run DEX-to-DEX compiler on this class ?
Sebastien Hertz75021222013-07-16 18:34:50 +02002052 DexToDexCompilationLevel dex_to_dex_compilation_level = kDontDexToDexCompile;
Brian Carlstrom7940e442013-07-12 13:46:57 -07002053 {
2054 ScopedObjectAccess soa(Thread::Current());
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07002055 StackHandleScope<1> hs(soa.Self());
2056 Handle<mirror::ClassLoader> class_loader(
2057 hs.NewHandle(soa.Decode<mirror::ClassLoader*>(jclass_loader)));
Ian Rogers98379392014-02-24 16:53:16 -08002058 dex_to_dex_compilation_level = GetDexToDexCompilationlevel(soa.Self(), class_loader, dex_file,
2059 class_def);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002060 }
2061 ClassDataItemIterator it(dex_file, class_data);
2062 // Skip fields
2063 while (it.HasNextStaticField()) {
2064 it.Next();
2065 }
2066 while (it.HasNextInstanceField()) {
2067 it.Next();
2068 }
Ian Rogersbe7149f2013-08-20 09:29:39 -07002069 CompilerDriver* driver = manager->GetCompiler();
Andreas Gampe4bf3ae92014-11-11 13:28:29 -08002070
2071 bool compilation_enabled = driver->IsClassToCompile(
2072 dex_file.StringByTypeIdx(class_def.class_idx_));
2073
Brian Carlstrom7940e442013-07-12 13:46:57 -07002074 // Compile direct methods
2075 int64_t previous_direct_method_idx = -1;
2076 while (it.HasNextDirectMethod()) {
2077 uint32_t method_idx = it.GetMemberIndex();
2078 if (method_idx == previous_direct_method_idx) {
2079 // smali can create dex files with two encoded_methods sharing the same method_idx
2080 // http://code.google.com/p/smali/issues/detail?id=119
2081 it.Next();
2082 continue;
2083 }
2084 previous_direct_method_idx = method_idx;
Andreas Gampe51829322014-08-25 15:05:04 -07002085 driver->CompileMethod(it.GetMethodCodeItem(), it.GetMethodAccessFlags(),
Ian Rogersbe7149f2013-08-20 09:29:39 -07002086 it.GetMethodInvokeType(class_def), class_def_index,
Andreas Gampe4bf3ae92014-11-11 13:28:29 -08002087 method_idx, jclass_loader, dex_file, dex_to_dex_compilation_level,
2088 compilation_enabled);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002089 it.Next();
2090 }
2091 // Compile virtual methods
2092 int64_t previous_virtual_method_idx = -1;
2093 while (it.HasNextVirtualMethod()) {
2094 uint32_t method_idx = it.GetMemberIndex();
2095 if (method_idx == previous_virtual_method_idx) {
2096 // smali can create dex files with two encoded_methods sharing the same method_idx
2097 // http://code.google.com/p/smali/issues/detail?id=119
2098 it.Next();
2099 continue;
2100 }
2101 previous_virtual_method_idx = method_idx;
Andreas Gampe51829322014-08-25 15:05:04 -07002102 driver->CompileMethod(it.GetMethodCodeItem(), it.GetMethodAccessFlags(),
Ian Rogersbe7149f2013-08-20 09:29:39 -07002103 it.GetMethodInvokeType(class_def), class_def_index,
Andreas Gampe4bf3ae92014-11-11 13:28:29 -08002104 method_idx, jclass_loader, dex_file, dex_to_dex_compilation_level,
2105 compilation_enabled);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002106 it.Next();
2107 }
2108 DCHECK(!it.HasNext());
2109}
2110
2111void CompilerDriver::CompileDexFile(jobject class_loader, const DexFile& dex_file,
Andreas Gampede7b4362014-07-28 18:38:57 -07002112 const std::vector<const DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -08002113 ThreadPool* thread_pool, TimingLogger* timings) {
Mathieu Chartierf5997b42014-06-20 10:37:54 -07002114 TimingLogger::ScopedTiming t("Compile Dex File", timings);
Ian Rogersbe7149f2013-08-20 09:29:39 -07002115 ParallelCompilationManager context(Runtime::Current()->GetClassLinker(), class_loader, this,
Andreas Gampede7b4362014-07-28 18:38:57 -07002116 &dex_file, dex_files, thread_pool);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002117 context.ForAll(0, dex_file.NumClassDefs(), CompilerDriver::CompileClass, thread_count_);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002118}
2119
Ian Rogersa4a3f402014-10-20 18:10:34 -07002120// Does the runtime for the InstructionSet provide an implementation returned by
2121// GetQuickGenericJniStub allowing down calls that aren't compiled using a JNI compiler?
2122static bool InstructionSetHasGenericJniStub(InstructionSet isa) {
2123 switch (isa) {
2124 case kArm:
2125 case kArm64:
2126 case kThumb2:
Douglas Leung735b8552014-10-31 12:21:40 -07002127 case kMips:
Ian Rogersa4a3f402014-10-20 18:10:34 -07002128 case kX86:
2129 case kX86_64: return true;
2130 default: return false;
2131 }
2132}
2133
Brian Carlstrom7940e442013-07-12 13:46:57 -07002134void CompilerDriver::CompileMethod(const DexFile::CodeItem* code_item, uint32_t access_flags,
Ian Rogers8b2c0b92013-09-19 02:56:49 -07002135 InvokeType invoke_type, uint16_t class_def_idx,
Brian Carlstrom7940e442013-07-12 13:46:57 -07002136 uint32_t method_idx, jobject class_loader,
2137 const DexFile& dex_file,
Andreas Gampe4bf3ae92014-11-11 13:28:29 -08002138 DexToDexCompilationLevel dex_to_dex_compilation_level,
2139 bool compilation_enabled) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002140 CompiledMethod* compiled_method = nullptr;
Mathieu Chartier8e219ae2014-08-19 14:29:46 -07002141 uint64_t start_ns = kTimeCompileMethod ? NanoTime() : 0;
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002142 MethodReference method_ref(&dex_file, method_idx);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002143
2144 if ((access_flags & kAccNative) != 0) {
Ian Rogers0188ab72014-03-17 16:51:53 -07002145 // Are we interpreting only and have support for generic JNI down calls?
Jeff Hao4a200f52014-04-01 14:58:49 -07002146 if (!compiler_options_->IsCompilationEnabled() &&
Ian Rogersa4a3f402014-10-20 18:10:34 -07002147 InstructionSetHasGenericJniStub(instruction_set_)) {
Ian Rogers5b271492014-03-14 13:20:26 -07002148 // Leaving this empty will trigger the generic JNI version
2149 } else {
Ian Rogers72d32622014-05-06 16:20:11 -07002150 compiled_method = compiler_->JniCompile(access_flags, method_idx, dex_file);
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002151 CHECK(compiled_method != nullptr);
Ian Rogers5b271492014-03-14 13:20:26 -07002152 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002153 } else if ((access_flags & kAccAbstract) != 0) {
Ian Rogersa4a3f402014-10-20 18:10:34 -07002154 // Abstract methods don't have code.
Brian Carlstrom7940e442013-07-12 13:46:57 -07002155 } else {
Andreas Gampe4bf3ae92014-11-11 13:28:29 -08002156 bool compile = compilation_enabled &&
2157 verification_results_->IsCandidateForCompilation(method_ref, access_flags);
Sebastien Hertz4d4adb12013-07-24 16:14:19 +02002158 if (compile) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002159 // NOTE: if compiler declines to compile this method, it will return nullptr.
Ian Rogers72d32622014-05-06 16:20:11 -07002160 compiled_method = compiler_->Compile(code_item, access_flags, invoke_type, class_def_idx,
2161 method_idx, class_loader, dex_file);
Sebastien Hertz17965ed2014-04-04 15:59:53 +02002162 }
2163 if (compiled_method == nullptr && dex_to_dex_compilation_level != kDontDexToDexCompile) {
2164 // TODO: add a command-line option to disable DEX-to-DEX compilation ?
Sebastien Hertz75021222013-07-16 18:34:50 +02002165 (*dex_to_dex_compiler_)(*this, code_item, access_flags,
2166 invoke_type, class_def_idx,
2167 method_idx, class_loader, dex_file,
2168 dex_to_dex_compilation_level);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002169 }
2170 }
Mathieu Chartier8e219ae2014-08-19 14:29:46 -07002171 if (kTimeCompileMethod) {
2172 uint64_t duration_ns = NanoTime() - start_ns;
2173 if (duration_ns > MsToNs(compiler_->GetMaximumCompilationTimeBeforeWarning())) {
2174 LOG(WARNING) << "Compilation of " << PrettyMethod(method_idx, dex_file)
2175 << " took " << PrettyDuration(duration_ns);
2176 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002177 }
2178
2179 Thread* self = Thread::Current();
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002180 if (compiled_method != nullptr) {
Vladimir Markof4da6752014-08-01 19:04:18 +01002181 // Count non-relative linker patches.
2182 size_t non_relative_linker_patch_count = 0u;
2183 for (const LinkerPatch& patch : compiled_method->GetPatches()) {
2184 if (patch.Type() != kLinkerPatchCallRelative) {
2185 ++non_relative_linker_patch_count;
2186 }
2187 }
Igor Murashkind6dee672014-10-16 18:36:16 -07002188 bool compile_pic = GetCompilerOptions().GetCompilePic(); // Off by default
2189 // When compiling with PIC, there should be zero non-relative linker patches
2190 CHECK(!compile_pic || non_relative_linker_patch_count == 0u);
2191
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002192 DCHECK(GetCompiledMethod(method_ref) == nullptr) << PrettyMethod(method_idx, dex_file);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002193 {
2194 MutexLock mu(self, compiled_methods_lock_);
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002195 compiled_methods_.Put(method_ref, compiled_method);
Vladimir Markof4da6752014-08-01 19:04:18 +01002196 non_relative_linker_patch_count_ += non_relative_linker_patch_count;
Brian Carlstrom7940e442013-07-12 13:46:57 -07002197 }
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002198 DCHECK(GetCompiledMethod(method_ref) != nullptr) << PrettyMethod(method_idx, dex_file);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002199 }
2200
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002201 // Done compiling, delete the verified method to reduce native memory usage.
2202 verification_results_->RemoveVerifiedMethod(method_ref);
2203
Brian Carlstrom7940e442013-07-12 13:46:57 -07002204 if (self->IsExceptionPending()) {
2205 ScopedObjectAccess soa(self);
2206 LOG(FATAL) << "Unexpected exception compiling: " << PrettyMethod(method_idx, dex_file) << "\n"
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002207 << self->GetException(nullptr)->Dump();
Brian Carlstrom7940e442013-07-12 13:46:57 -07002208 }
2209}
2210
2211CompiledClass* CompilerDriver::GetCompiledClass(ClassReference ref) const {
2212 MutexLock mu(Thread::Current(), compiled_classes_lock_);
2213 ClassTable::const_iterator it = compiled_classes_.find(ref);
2214 if (it == compiled_classes_.end()) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002215 return nullptr;
Brian Carlstrom7940e442013-07-12 13:46:57 -07002216 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002217 CHECK(it->second != nullptr);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002218 return it->second;
2219}
2220
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07002221void CompilerDriver::RecordClassStatus(ClassReference ref, mirror::Class::Status status) {
2222 MutexLock mu(Thread::Current(), compiled_classes_lock_);
2223 auto it = compiled_classes_.find(ref);
2224 if (it == compiled_classes_.end() || it->second->GetStatus() != status) {
2225 // An entry doesn't exist or the status is lower than the new status.
2226 if (it != compiled_classes_.end()) {
2227 CHECK_GT(status, it->second->GetStatus());
2228 delete it->second;
2229 }
2230 switch (status) {
2231 case mirror::Class::kStatusNotReady:
2232 case mirror::Class::kStatusError:
2233 case mirror::Class::kStatusRetryVerificationAtRuntime:
2234 case mirror::Class::kStatusVerified:
2235 case mirror::Class::kStatusInitialized:
2236 break; // Expected states.
2237 default:
2238 LOG(FATAL) << "Unexpected class status for class "
2239 << PrettyDescriptor(ref.first->GetClassDescriptor(ref.first->GetClassDef(ref.second)))
2240 << " of " << status;
2241 }
2242 CompiledClass* compiled_class = new CompiledClass(status);
2243 compiled_classes_.Overwrite(ref, compiled_class);
2244 }
2245}
2246
Brian Carlstrom7940e442013-07-12 13:46:57 -07002247CompiledMethod* CompilerDriver::GetCompiledMethod(MethodReference ref) const {
2248 MutexLock mu(Thread::Current(), compiled_methods_lock_);
2249 MethodTable::const_iterator it = compiled_methods_.find(ref);
2250 if (it == compiled_methods_.end()) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002251 return nullptr;
Brian Carlstrom7940e442013-07-12 13:46:57 -07002252 }
Andreas Gampe2ed8def2014-08-28 14:41:02 -07002253 CHECK(it->second != nullptr);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002254 return it->second;
2255}
2256
Vladimir Markof4da6752014-08-01 19:04:18 +01002257size_t CompilerDriver::GetNonRelativeLinkerPatchCount() const {
2258 MutexLock mu(Thread::Current(), compiled_methods_lock_);
2259 return non_relative_linker_patch_count_;
2260}
2261
Brian Carlstrom7940e442013-07-12 13:46:57 -07002262void CompilerDriver::AddRequiresConstructorBarrier(Thread* self, const DexFile* dex_file,
Ian Rogers8b2c0b92013-09-19 02:56:49 -07002263 uint16_t class_def_index) {
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07002264 WriterMutexLock mu(self, freezing_constructor_lock_);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002265 freezing_constructor_classes_.insert(ClassReference(dex_file, class_def_index));
2266}
2267
2268bool CompilerDriver::RequiresConstructorBarrier(Thread* self, const DexFile* dex_file,
Ian Rogers8b2c0b92013-09-19 02:56:49 -07002269 uint16_t class_def_index) {
Ian Rogers8f3c9ae2013-08-20 17:26:41 -07002270 ReaderMutexLock mu(self, freezing_constructor_lock_);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002271 return freezing_constructor_classes_.count(ClassReference(dex_file, class_def_index)) != 0;
2272}
2273
2274bool CompilerDriver::WriteElf(const std::string& android_root,
2275 bool is_host,
2276 const std::vector<const art::DexFile*>& dex_files,
Ian Rogers3d504072014-03-01 09:16:49 -08002277 OatWriter* oat_writer,
Brian Carlstrom7940e442013-07-12 13:46:57 -07002278 art::File* file)
2279 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers72d32622014-05-06 16:20:11 -07002280 return compiler_->WriteElf(file, oat_writer, dex_files, android_root, is_host);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002281}
2282void CompilerDriver::InstructionSetToLLVMTarget(InstructionSet instruction_set,
Ian Rogers3d504072014-03-01 09:16:49 -08002283 std::string* target_triple,
2284 std::string* target_cpu,
2285 std::string* target_attr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07002286 switch (instruction_set) {
2287 case kThumb2:
Ian Rogers3d504072014-03-01 09:16:49 -08002288 *target_triple = "thumb-none-linux-gnueabi";
2289 *target_cpu = "cortex-a9";
2290 *target_attr = "+thumb2,+neon,+neonfp,+vfp3,+db";
Brian Carlstrom7940e442013-07-12 13:46:57 -07002291 break;
2292
2293 case kArm:
Ian Rogers3d504072014-03-01 09:16:49 -08002294 *target_triple = "armv7-none-linux-gnueabi";
Brian Carlstrom7940e442013-07-12 13:46:57 -07002295 // TODO: Fix for Nexus S.
Ian Rogers3d504072014-03-01 09:16:49 -08002296 *target_cpu = "cortex-a9";
Brian Carlstrom7940e442013-07-12 13:46:57 -07002297 // TODO: Fix for Xoom.
Ian Rogers3d504072014-03-01 09:16:49 -08002298 *target_attr = "+v7,+neon,+neonfp,+vfp3,+db";
Brian Carlstrom7940e442013-07-12 13:46:57 -07002299 break;
2300
2301 case kX86:
Ian Rogers3d504072014-03-01 09:16:49 -08002302 *target_triple = "i386-pc-linux-gnu";
2303 *target_attr = "";
Brian Carlstrom7940e442013-07-12 13:46:57 -07002304 break;
2305
Dmitry Petrochenko6a58cb12014-04-02 17:27:59 +07002306 case kX86_64:
2307 *target_triple = "x86_64-pc-linux-gnu";
2308 *target_attr = "";
2309 break;
2310
Brian Carlstrom7940e442013-07-12 13:46:57 -07002311 case kMips:
Ian Rogers3d504072014-03-01 09:16:49 -08002312 *target_triple = "mipsel-unknown-linux";
2313 *target_attr = "mips32r2";
Brian Carlstrom7940e442013-07-12 13:46:57 -07002314 break;
2315
2316 default:
2317 LOG(FATAL) << "Unknown instruction set: " << instruction_set;
2318 }
2319 }
Dave Allison39c3bfb2014-01-28 18:33:52 -08002320
Dave Allison39c3bfb2014-01-28 18:33:52 -08002321bool CompilerDriver::SkipCompilation(const std::string& method_name) {
Calin Juravlec1b643c2014-05-30 23:44:11 +01002322 if (!profile_present_) {
Dave Allison644789f2014-04-10 13:06:10 -07002323 return false;
Dave Allison39c3bfb2014-01-28 18:33:52 -08002324 }
Calin Juravlebb0b53f2014-05-23 17:33:29 +01002325 // First find the method in the profile file.
2326 ProfileFile::ProfileData data;
2327 if (!profile_file_.GetProfileData(&data, method_name)) {
Dave Allison39c3bfb2014-01-28 18:33:52 -08002328 // Not in profile, no information can be determined.
Calin Juravle08f7a2d2014-06-23 15:22:29 +01002329 if (kIsDebugBuild) {
2330 VLOG(compiler) << "not compiling " << method_name << " because it's not in the profile";
2331 }
Dave Allison39c3bfb2014-01-28 18:33:52 -08002332 return true;
2333 }
Calin Juravlebb0b53f2014-05-23 17:33:29 +01002334
2335 // Methods that comprise top_k_threshold % of the total samples will be compiled.
Calin Juravlef6a4cee2014-04-02 17:03:08 +01002336 // Compare against the start of the topK percentage bucket just in case the threshold
Calin Juravle04ff2262014-04-02 19:08:47 +01002337 // falls inside a bucket.
Calin Juravlec1b643c2014-05-30 23:44:11 +01002338 bool compile = data.GetTopKUsedPercentage() - data.GetUsedPercent()
2339 <= compiler_options_->GetTopKProfileThreshold();
Calin Juravle08f7a2d2014-06-23 15:22:29 +01002340 if (kIsDebugBuild) {
2341 if (compile) {
2342 LOG(INFO) << "compiling method " << method_name << " because its usage is part of top "
2343 << data.GetTopKUsedPercentage() << "% with a percent of " << data.GetUsedPercent() << "%"
2344 << " (topKThreshold=" << compiler_options_->GetTopKProfileThreshold() << ")";
2345 } else {
2346 VLOG(compiler) << "not compiling method " << method_name
2347 << " because it's not part of leading " << compiler_options_->GetTopKProfileThreshold()
2348 << "% samples)";
2349 }
Dave Allison39c3bfb2014-01-28 18:33:52 -08002350 }
2351 return !compile;
2352}
Mathieu Chartierab972ef2014-12-03 17:38:22 -08002353
2354std::string CompilerDriver::GetMemoryUsageString() const {
2355 std::ostringstream oss;
2356 const ArenaPool* arena_pool = GetArenaPool();
2357 gc::Heap* heap = Runtime::Current()->GetHeap();
2358 oss << "arena alloc=" << PrettySize(arena_pool->GetBytesAllocated());
2359 oss << " java alloc=" << PrettySize(heap->GetBytesAllocated());
2360#ifdef HAVE_MALLOC_H
2361 struct mallinfo info = mallinfo();
2362 const size_t allocated_space = static_cast<size_t>(info.uordblks);
2363 const size_t free_space = static_cast<size_t>(info.fordblks);
2364 oss << " native alloc=" << PrettySize(allocated_space) << " free="
2365 << PrettySize(free_space);
2366#endif
2367 return oss.str();
2368}
2369
Brian Carlstrom7940e442013-07-12 13:46:57 -07002370} // namespace art