Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1 | /* |
| 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 Ghuloum | 67f9941 | 2013-08-12 14:19:48 -0700 | [diff] [blame] | 19 | #define ATRACE_TAG ATRACE_TAG_DALVIK |
| 20 | #include <utils/Trace.h> |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 21 | |
Andreas Gampe | b0f370e | 2014-09-25 22:51:40 -0700 | [diff] [blame] | 22 | #include <unordered_set> |
Anwar Ghuloum | 67f9941 | 2013-08-12 14:19:48 -0700 | [diff] [blame] | 23 | #include <vector> |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 24 | #include <unistd.h> |
| 25 | |
Mathieu Chartier | ab972ef | 2014-12-03 17:38:22 -0800 | [diff] [blame] | 26 | #ifndef __APPLE__ |
| 27 | #include <malloc.h> // For mallinfo |
| 28 | #endif |
| 29 | |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 30 | #include "art_field-inl.h" |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 31 | #include "base/stl_util.h" |
Vladimir Marko | 80afd02 | 2015-05-19 18:08:00 +0100 | [diff] [blame] | 32 | #include "base/time_utils.h" |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 33 | #include "base/timing_logger.h" |
Vladimir Marko | 3481ba2 | 2015-04-13 12:22:36 +0100 | [diff] [blame] | 34 | #include "class_linker-inl.h" |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 35 | #include "compiled_class.h" |
Vladimir Marko | 20f8559 | 2015-03-19 10:07:02 +0000 | [diff] [blame] | 36 | #include "compiled_method.h" |
Nicolas Geoffray | b34f69a | 2014-03-07 15:28:39 +0000 | [diff] [blame] | 37 | #include "compiler.h" |
Vladimir Marko | be0e546 | 2014-02-26 11:24:15 +0000 | [diff] [blame] | 38 | #include "compiler_driver-inl.h" |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 39 | #include "dex_compilation_unit.h" |
| 40 | #include "dex_file-inl.h" |
Vladimir Marko | c7f8320 | 2014-01-24 17:55:18 +0000 | [diff] [blame] | 41 | #include "dex/verification_results.h" |
Vladimir Marko | 2730db0 | 2014-01-27 11:15:17 +0000 | [diff] [blame] | 42 | #include "dex/verified_method.h" |
Vladimir Marko | 2bc4780 | 2014-02-10 09:43:07 +0000 | [diff] [blame] | 43 | #include "dex/quick/dex_file_method_inliner.h" |
Jeff Hao | 848f70a | 2014-01-15 13:49:50 -0800 | [diff] [blame] | 44 | #include "dex/quick/dex_file_to_method_inliner_map.h" |
Mark Mendell | ae9fd93 | 2014-02-10 16:14:35 -0800 | [diff] [blame] | 45 | #include "driver/compiler_options.h" |
Andreas Gampe | 3773cd0 | 2015-04-10 09:28:22 -0700 | [diff] [blame] | 46 | #include "elf_writer_quick.h" |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 47 | #include "jni_internal.h" |
Ian Rogers | 22d5e73 | 2014-07-15 22:23:51 -0700 | [diff] [blame] | 48 | #include "object_lock.h" |
Calin Juravle | bb0b53f | 2014-05-23 17:33:29 +0100 | [diff] [blame] | 49 | #include "profiler.h" |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 50 | #include "runtime.h" |
| 51 | #include "gc/accounting/card_table-inl.h" |
| 52 | #include "gc/accounting/heap_bitmap.h" |
| 53 | #include "gc/space/space.h" |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 54 | #include "mirror/art_method-inl.h" |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 55 | #include "mirror/class_loader.h" |
| 56 | #include "mirror/class-inl.h" |
| 57 | #include "mirror/dex_cache-inl.h" |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 58 | #include "mirror/object-inl.h" |
| 59 | #include "mirror/object_array-inl.h" |
| 60 | #include "mirror/throwable.h" |
| 61 | #include "scoped_thread_state_change.h" |
| 62 | #include "ScopedLocalRef.h" |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 63 | #include "handle_scope-inl.h" |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 64 | #include "thread.h" |
Andreas Gampe | b0f370e | 2014-09-25 22:51:40 -0700 | [diff] [blame] | 65 | #include "thread_list.h" |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 66 | #include "thread_pool.h" |
Ian Rogers | 848871b | 2013-08-05 10:56:33 -0700 | [diff] [blame] | 67 | #include "trampolines/trampoline_compiler.h" |
Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 68 | #include "transaction.h" |
Vladimir Marko | 20f8559 | 2015-03-19 10:07:02 +0000 | [diff] [blame] | 69 | #include "utils/dex_cache_arrays_layout-inl.h" |
Andreas Gampe | e21dc3d | 2014-12-08 16:59:43 -0800 | [diff] [blame] | 70 | #include "utils/swap_space.h" |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 71 | #include "verifier/method_verifier.h" |
Vladimir Marko | 2bc4780 | 2014-02-10 09:43:07 +0000 | [diff] [blame] | 72 | #include "verifier/method_verifier-inl.h" |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 73 | |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 74 | namespace art { |
| 75 | |
Mathieu Chartier | 8e219ae | 2014-08-19 14:29:46 -0700 | [diff] [blame] | 76 | static constexpr bool kTimeCompileMethod = !kIsDebugBuild; |
| 77 | |
David Srbecky | ce0db62 | 2015-05-26 23:40:18 +0000 | [diff] [blame^] | 78 | // Whether to produce 64-bit ELF files for 64-bit targets. |
| 79 | static constexpr bool kProduce64BitELFFiles = true; |
Andreas Gampe | 3773cd0 | 2015-04-10 09:28:22 -0700 | [diff] [blame] | 80 | |
Andreas Gampe | 70bef0d | 2015-04-15 02:37:28 -0700 | [diff] [blame] | 81 | // Whether classes-to-compile and methods-to-compile are only applied to the boot image, or, when |
| 82 | // given, too all compilations. |
Andreas Gampe | b1fcead | 2015-04-20 18:53:51 -0700 | [diff] [blame] | 83 | static constexpr bool kRestrictCompilationFiltersToImage = true; |
| 84 | |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 85 | static double Percentage(size_t x, size_t y) { |
| 86 | return 100.0 * (static_cast<double>(x)) / (static_cast<double>(x + y)); |
| 87 | } |
| 88 | |
| 89 | static void DumpStat(size_t x, size_t y, const char* str) { |
| 90 | if (x == 0 && y == 0) { |
| 91 | return; |
| 92 | } |
Ian Rogers | e732ef1 | 2013-10-09 15:22:24 -0700 | [diff] [blame] | 93 | LOG(INFO) << Percentage(x, y) << "% of " << str << " for " << (x + y) << " cases"; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 94 | } |
| 95 | |
Vladimir Marko | f096aad | 2014-01-23 15:51:58 +0000 | [diff] [blame] | 96 | class CompilerDriver::AOTCompilationStats { |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 97 | public: |
| 98 | AOTCompilationStats() |
| 99 | : stats_lock_("AOT compilation statistics lock"), |
| 100 | types_in_dex_cache_(0), types_not_in_dex_cache_(0), |
| 101 | strings_in_dex_cache_(0), strings_not_in_dex_cache_(0), |
| 102 | resolved_types_(0), unresolved_types_(0), |
| 103 | resolved_instance_fields_(0), unresolved_instance_fields_(0), |
| 104 | resolved_local_static_fields_(0), resolved_static_fields_(0), unresolved_static_fields_(0), |
| 105 | type_based_devirtualization_(0), |
| 106 | safe_casts_(0), not_safe_casts_(0) { |
| 107 | for (size_t i = 0; i <= kMaxInvokeType; i++) { |
| 108 | resolved_methods_[i] = 0; |
| 109 | unresolved_methods_[i] = 0; |
| 110 | virtual_made_direct_[i] = 0; |
| 111 | direct_calls_to_boot_[i] = 0; |
| 112 | direct_methods_to_boot_[i] = 0; |
| 113 | } |
| 114 | } |
| 115 | |
| 116 | void Dump() { |
| 117 | DumpStat(types_in_dex_cache_, types_not_in_dex_cache_, "types known to be in dex cache"); |
| 118 | DumpStat(strings_in_dex_cache_, strings_not_in_dex_cache_, "strings known to be in dex cache"); |
| 119 | DumpStat(resolved_types_, unresolved_types_, "types resolved"); |
| 120 | DumpStat(resolved_instance_fields_, unresolved_instance_fields_, "instance fields resolved"); |
| 121 | DumpStat(resolved_local_static_fields_ + resolved_static_fields_, unresolved_static_fields_, |
| 122 | "static fields resolved"); |
| 123 | DumpStat(resolved_local_static_fields_, resolved_static_fields_ + unresolved_static_fields_, |
| 124 | "static fields local to a class"); |
| 125 | DumpStat(safe_casts_, not_safe_casts_, "check-casts removed based on type information"); |
| 126 | // Note, the code below subtracts the stat value so that when added to the stat value we have |
| 127 | // 100% of samples. TODO: clean this up. |
| 128 | DumpStat(type_based_devirtualization_, |
| 129 | resolved_methods_[kVirtual] + unresolved_methods_[kVirtual] + |
| 130 | resolved_methods_[kInterface] + unresolved_methods_[kInterface] - |
| 131 | type_based_devirtualization_, |
| 132 | "virtual/interface calls made direct based on type information"); |
| 133 | |
| 134 | for (size_t i = 0; i <= kMaxInvokeType; i++) { |
| 135 | std::ostringstream oss; |
| 136 | oss << static_cast<InvokeType>(i) << " methods were AOT resolved"; |
| 137 | DumpStat(resolved_methods_[i], unresolved_methods_[i], oss.str().c_str()); |
| 138 | if (virtual_made_direct_[i] > 0) { |
| 139 | std::ostringstream oss2; |
| 140 | oss2 << static_cast<InvokeType>(i) << " methods made direct"; |
| 141 | DumpStat(virtual_made_direct_[i], |
| 142 | resolved_methods_[i] + unresolved_methods_[i] - virtual_made_direct_[i], |
| 143 | oss2.str().c_str()); |
| 144 | } |
| 145 | if (direct_calls_to_boot_[i] > 0) { |
| 146 | std::ostringstream oss2; |
| 147 | oss2 << static_cast<InvokeType>(i) << " method calls are direct into boot"; |
| 148 | DumpStat(direct_calls_to_boot_[i], |
| 149 | resolved_methods_[i] + unresolved_methods_[i] - direct_calls_to_boot_[i], |
| 150 | oss2.str().c_str()); |
| 151 | } |
| 152 | if (direct_methods_to_boot_[i] > 0) { |
| 153 | std::ostringstream oss2; |
| 154 | oss2 << static_cast<InvokeType>(i) << " method calls have methods in boot"; |
| 155 | DumpStat(direct_methods_to_boot_[i], |
| 156 | resolved_methods_[i] + unresolved_methods_[i] - direct_methods_to_boot_[i], |
| 157 | oss2.str().c_str()); |
| 158 | } |
| 159 | } |
| 160 | } |
| 161 | |
| 162 | // Allow lossy statistics in non-debug builds. |
| 163 | #ifndef NDEBUG |
| 164 | #define STATS_LOCK() MutexLock mu(Thread::Current(), stats_lock_) |
| 165 | #else |
| 166 | #define STATS_LOCK() |
| 167 | #endif |
| 168 | |
| 169 | void TypeInDexCache() { |
| 170 | STATS_LOCK(); |
| 171 | types_in_dex_cache_++; |
| 172 | } |
| 173 | |
| 174 | void TypeNotInDexCache() { |
| 175 | STATS_LOCK(); |
| 176 | types_not_in_dex_cache_++; |
| 177 | } |
| 178 | |
| 179 | void StringInDexCache() { |
| 180 | STATS_LOCK(); |
| 181 | strings_in_dex_cache_++; |
| 182 | } |
| 183 | |
| 184 | void StringNotInDexCache() { |
| 185 | STATS_LOCK(); |
| 186 | strings_not_in_dex_cache_++; |
| 187 | } |
| 188 | |
| 189 | void TypeDoesntNeedAccessCheck() { |
| 190 | STATS_LOCK(); |
| 191 | resolved_types_++; |
| 192 | } |
| 193 | |
| 194 | void TypeNeedsAccessCheck() { |
| 195 | STATS_LOCK(); |
| 196 | unresolved_types_++; |
| 197 | } |
| 198 | |
| 199 | void ResolvedInstanceField() { |
| 200 | STATS_LOCK(); |
| 201 | resolved_instance_fields_++; |
| 202 | } |
| 203 | |
| 204 | void UnresolvedInstanceField() { |
| 205 | STATS_LOCK(); |
| 206 | unresolved_instance_fields_++; |
| 207 | } |
| 208 | |
| 209 | void ResolvedLocalStaticField() { |
| 210 | STATS_LOCK(); |
| 211 | resolved_local_static_fields_++; |
| 212 | } |
| 213 | |
| 214 | void ResolvedStaticField() { |
| 215 | STATS_LOCK(); |
| 216 | resolved_static_fields_++; |
| 217 | } |
| 218 | |
| 219 | void UnresolvedStaticField() { |
| 220 | STATS_LOCK(); |
| 221 | unresolved_static_fields_++; |
| 222 | } |
| 223 | |
| 224 | // Indicate that type information from the verifier led to devirtualization. |
| 225 | void PreciseTypeDevirtualization() { |
| 226 | STATS_LOCK(); |
| 227 | type_based_devirtualization_++; |
| 228 | } |
| 229 | |
| 230 | // Indicate that a method of the given type was resolved at compile time. |
| 231 | void ResolvedMethod(InvokeType type) { |
| 232 | DCHECK_LE(type, kMaxInvokeType); |
| 233 | STATS_LOCK(); |
| 234 | resolved_methods_[type]++; |
| 235 | } |
| 236 | |
| 237 | // Indicate that a method of the given type was unresolved at compile time as it was in an |
| 238 | // unknown dex file. |
| 239 | void UnresolvedMethod(InvokeType type) { |
| 240 | DCHECK_LE(type, kMaxInvokeType); |
| 241 | STATS_LOCK(); |
| 242 | unresolved_methods_[type]++; |
| 243 | } |
| 244 | |
| 245 | // Indicate that a type of virtual method dispatch has been converted into a direct method |
| 246 | // dispatch. |
| 247 | void VirtualMadeDirect(InvokeType type) { |
| 248 | DCHECK(type == kVirtual || type == kInterface || type == kSuper); |
| 249 | STATS_LOCK(); |
| 250 | virtual_made_direct_[type]++; |
| 251 | } |
| 252 | |
| 253 | // Indicate that a method of the given type was able to call directly into boot. |
| 254 | void DirectCallsToBoot(InvokeType type) { |
| 255 | DCHECK_LE(type, kMaxInvokeType); |
| 256 | STATS_LOCK(); |
| 257 | direct_calls_to_boot_[type]++; |
| 258 | } |
| 259 | |
| 260 | // Indicate that a method of the given type was able to be resolved directly from boot. |
| 261 | void DirectMethodsToBoot(InvokeType type) { |
| 262 | DCHECK_LE(type, kMaxInvokeType); |
| 263 | STATS_LOCK(); |
| 264 | direct_methods_to_boot_[type]++; |
| 265 | } |
| 266 | |
Vladimir Marko | f096aad | 2014-01-23 15:51:58 +0000 | [diff] [blame] | 267 | void ProcessedInvoke(InvokeType type, int flags) { |
| 268 | STATS_LOCK(); |
| 269 | if (flags == 0) { |
| 270 | unresolved_methods_[type]++; |
| 271 | } else { |
| 272 | DCHECK_NE((flags & kFlagMethodResolved), 0); |
| 273 | resolved_methods_[type]++; |
| 274 | if ((flags & kFlagVirtualMadeDirect) != 0) { |
| 275 | virtual_made_direct_[type]++; |
| 276 | if ((flags & kFlagPreciseTypeDevirtualization) != 0) { |
| 277 | type_based_devirtualization_++; |
| 278 | } |
| 279 | } else { |
| 280 | DCHECK_EQ((flags & kFlagPreciseTypeDevirtualization), 0); |
| 281 | } |
| 282 | if ((flags & kFlagDirectCallToBoot) != 0) { |
| 283 | direct_calls_to_boot_[type]++; |
| 284 | } |
| 285 | if ((flags & kFlagDirectMethodToBoot) != 0) { |
| 286 | direct_methods_to_boot_[type]++; |
| 287 | } |
| 288 | } |
| 289 | } |
| 290 | |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 291 | // A check-cast could be eliminated due to verifier type analysis. |
| 292 | void SafeCast() { |
| 293 | STATS_LOCK(); |
| 294 | safe_casts_++; |
| 295 | } |
| 296 | |
| 297 | // A check-cast couldn't be eliminated due to verifier type analysis. |
| 298 | void NotASafeCast() { |
| 299 | STATS_LOCK(); |
| 300 | not_safe_casts_++; |
| 301 | } |
| 302 | |
| 303 | private: |
| 304 | Mutex stats_lock_; |
| 305 | |
| 306 | size_t types_in_dex_cache_; |
| 307 | size_t types_not_in_dex_cache_; |
| 308 | |
| 309 | size_t strings_in_dex_cache_; |
| 310 | size_t strings_not_in_dex_cache_; |
| 311 | |
| 312 | size_t resolved_types_; |
| 313 | size_t unresolved_types_; |
| 314 | |
| 315 | size_t resolved_instance_fields_; |
| 316 | size_t unresolved_instance_fields_; |
| 317 | |
| 318 | size_t resolved_local_static_fields_; |
| 319 | size_t resolved_static_fields_; |
| 320 | size_t unresolved_static_fields_; |
| 321 | // Type based devirtualization for invoke interface and virtual. |
| 322 | size_t type_based_devirtualization_; |
| 323 | |
| 324 | size_t resolved_methods_[kMaxInvokeType + 1]; |
| 325 | size_t unresolved_methods_[kMaxInvokeType + 1]; |
| 326 | size_t virtual_made_direct_[kMaxInvokeType + 1]; |
| 327 | size_t direct_calls_to_boot_[kMaxInvokeType + 1]; |
| 328 | size_t direct_methods_to_boot_[kMaxInvokeType + 1]; |
| 329 | |
| 330 | size_t safe_casts_; |
| 331 | size_t not_safe_casts_; |
| 332 | |
| 333 | DISALLOW_COPY_AND_ASSIGN(AOTCompilationStats); |
| 334 | }; |
| 335 | |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 336 | |
| 337 | extern "C" art::CompiledMethod* ArtCompileDEX(art::CompilerDriver& compiler, |
| 338 | const art::DexFile::CodeItem* code_item, |
| 339 | uint32_t access_flags, |
| 340 | art::InvokeType invoke_type, |
Ian Rogers | 8b2c0b9 | 2013-09-19 02:56:49 -0700 | [diff] [blame] | 341 | uint16_t class_def_idx, |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 342 | uint32_t method_idx, |
| 343 | jobject class_loader, |
| 344 | const art::DexFile& dex_file); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 345 | |
Brian Carlstrom | 6449c62 | 2014-02-10 23:48:36 -0800 | [diff] [blame] | 346 | CompilerDriver::CompilerDriver(const CompilerOptions* compiler_options, |
| 347 | VerificationResults* verification_results, |
Vladimir Marko | 5816ed4 | 2013-11-27 17:04:20 +0000 | [diff] [blame] | 348 | DexFileToMethodInlinerMap* method_inliner_map, |
Nicolas Geoffray | b34f69a | 2014-03-07 15:28:39 +0000 | [diff] [blame] | 349 | Compiler::Kind compiler_kind, |
Nicolas Geoffray | f5df897 | 2014-02-14 18:37:08 +0000 | [diff] [blame] | 350 | InstructionSet instruction_set, |
Ian Rogers | 6f3dbba | 2014-10-14 17:41:57 -0700 | [diff] [blame] | 351 | const InstructionSetFeatures* instruction_set_features, |
Andreas Gampe | b1fcead | 2015-04-20 18:53:51 -0700 | [diff] [blame] | 352 | bool image, std::unordered_set<std::string>* image_classes, |
| 353 | std::unordered_set<std::string>* compiled_classes, |
Andreas Gampe | 70bef0d | 2015-04-15 02:37:28 -0700 | [diff] [blame] | 354 | std::unordered_set<std::string>* compiled_methods, |
Andreas Gampe | b1fcead | 2015-04-20 18:53:51 -0700 | [diff] [blame] | 355 | size_t thread_count, bool dump_stats, bool dump_passes, |
David Brazdil | 866c031 | 2015-01-13 21:21:31 +0000 | [diff] [blame] | 356 | const std::string& dump_cfg_file_name, CumulativeLogger* timer, |
Andreas Gampe | e21dc3d | 2014-12-08 16:59:43 -0800 | [diff] [blame] | 357 | int swap_fd, const std::string& profile_file) |
| 358 | : swap_space_(swap_fd == -1 ? nullptr : new SwapSpace(swap_fd, 10 * MB)), |
| 359 | swap_space_allocator_(new SwapAllocator<void>(swap_space_.get())), |
| 360 | profile_present_(false), compiler_options_(compiler_options), |
Brian Carlstrom | 6449c62 | 2014-02-10 23:48:36 -0800 | [diff] [blame] | 361 | verification_results_(verification_results), |
Vladimir Marko | 5816ed4 | 2013-11-27 17:04:20 +0000 | [diff] [blame] | 362 | method_inliner_map_(method_inliner_map), |
Ian Rogers | 72d3262 | 2014-05-06 16:20:11 -0700 | [diff] [blame] | 363 | compiler_(Compiler::Create(this, compiler_kind)), |
Jeff Hao | 48699fb | 2015-04-06 14:21:37 -0700 | [diff] [blame] | 364 | compiler_kind_(compiler_kind), |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 365 | instruction_set_(instruction_set), |
Dave Allison | 7020278 | 2013-10-22 17:52:19 -0700 | [diff] [blame] | 366 | instruction_set_features_(instruction_set_features), |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 367 | freezing_constructor_lock_("freezing constructor lock"), |
| 368 | compiled_classes_lock_("compiled classes lock"), |
| 369 | compiled_methods_lock_("compiled method lock"), |
Andreas Gampe | e21dc3d | 2014-12-08 16:59:43 -0800 | [diff] [blame] | 370 | compiled_methods_(MethodTable::key_compare()), |
Vladimir Marko | f4da675 | 2014-08-01 19:04:18 +0100 | [diff] [blame] | 371 | non_relative_linker_patch_count_(0u), |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 372 | image_(image), |
| 373 | image_classes_(image_classes), |
Andreas Gampe | 4bf3ae9 | 2014-11-11 13:28:29 -0800 | [diff] [blame] | 374 | classes_to_compile_(compiled_classes), |
Andreas Gampe | 70bef0d | 2015-04-15 02:37:28 -0700 | [diff] [blame] | 375 | methods_to_compile_(compiled_methods), |
Andreas Gampe | 6cf49e5 | 2015-03-05 13:08:45 -0800 | [diff] [blame] | 376 | had_hard_verifier_failure_(false), |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 377 | thread_count_(thread_count), |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 378 | stats_(new AOTCompilationStats), |
Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 379 | dedupe_enabled_(true), |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 380 | dump_stats_(dump_stats), |
Nicolas Geoffray | ea3fa0b | 2014-02-10 11:59:41 +0000 | [diff] [blame] | 381 | dump_passes_(dump_passes), |
David Brazdil | 866c031 | 2015-01-13 21:21:31 +0000 | [diff] [blame] | 382 | dump_cfg_file_name_(dump_cfg_file_name), |
Nicolas Geoffray | ea3fa0b | 2014-02-10 11:59:41 +0000 | [diff] [blame] | 383 | timings_logger_(timer), |
Andreas Gampe | 2ed8def | 2014-08-28 14:41:02 -0700 | [diff] [blame] | 384 | compiler_context_(nullptr), |
Andreas Gampe | 57b3429 | 2015-01-14 15:45:59 -0800 | [diff] [blame] | 385 | support_boot_image_fixup_(instruction_set != kMips && instruction_set != kMips64), |
Andreas Gampe | e21dc3d | 2014-12-08 16:59:43 -0800 | [diff] [blame] | 386 | dedupe_code_("dedupe code", *swap_space_allocator_), |
| 387 | dedupe_src_mapping_table_("dedupe source mapping table", *swap_space_allocator_), |
| 388 | dedupe_mapping_table_("dedupe mapping table", *swap_space_allocator_), |
| 389 | dedupe_vmap_table_("dedupe vmap table", *swap_space_allocator_), |
| 390 | dedupe_gc_map_("dedupe gc map", *swap_space_allocator_), |
| 391 | dedupe_cfi_info_("dedupe cfi info", *swap_space_allocator_) { |
Brian Carlstrom | 6449c62 | 2014-02-10 23:48:36 -0800 | [diff] [blame] | 392 | DCHECK(compiler_options_ != nullptr); |
| 393 | DCHECK(verification_results_ != nullptr); |
| 394 | DCHECK(method_inliner_map_ != nullptr); |
Brian Carlstrom | 2ce745c | 2013-07-17 17:44:30 -0700 | [diff] [blame] | 395 | |
Sebastien Hertz | 7502122 | 2013-07-16 18:34:50 +0200 | [diff] [blame] | 396 | dex_to_dex_compiler_ = reinterpret_cast<DexToDexCompilerFn>(ArtCompileDEX); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 397 | |
Ian Rogers | 72d3262 | 2014-05-06 16:20:11 -0700 | [diff] [blame] | 398 | compiler_->Init(); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 399 | |
Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 400 | CHECK_EQ(image_, image_classes_.get() != nullptr); |
Mark Mendell | ae9fd93 | 2014-02-10 16:14:35 -0800 | [diff] [blame] | 401 | |
Calin Juravle | c1b643c | 2014-05-30 23:44:11 +0100 | [diff] [blame] | 402 | // Read the profile file if one is provided. |
| 403 | if (!profile_file.empty()) { |
| 404 | profile_present_ = profile_file_.LoadFile(profile_file); |
| 405 | if (profile_present_) { |
| 406 | LOG(INFO) << "Using profile data form file " << profile_file; |
| 407 | } else { |
| 408 | LOG(INFO) << "Failed to load profile file " << profile_file; |
| 409 | } |
| 410 | } |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 411 | } |
| 412 | |
Andreas Gampe | e21dc3d | 2014-12-08 16:59:43 -0800 | [diff] [blame] | 413 | SwapVector<uint8_t>* CompilerDriver::DeduplicateCode(const ArrayRef<const uint8_t>& code) { |
Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 414 | DCHECK(dedupe_enabled_); |
Mathieu Chartier | 193bad9 | 2013-08-29 18:46:00 -0700 | [diff] [blame] | 415 | return dedupe_code_.Add(Thread::Current(), code); |
| 416 | } |
| 417 | |
Andreas Gampe | e21dc3d | 2014-12-08 16:59:43 -0800 | [diff] [blame] | 418 | SwapSrcMap* CompilerDriver::DeduplicateSrcMappingTable(const ArrayRef<SrcMapElem>& src_map) { |
Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 419 | DCHECK(dedupe_enabled_); |
Yevgeny Rouban | e3ea838 | 2014-08-08 16:29:38 +0700 | [diff] [blame] | 420 | return dedupe_src_mapping_table_.Add(Thread::Current(), src_map); |
| 421 | } |
| 422 | |
Andreas Gampe | e21dc3d | 2014-12-08 16:59:43 -0800 | [diff] [blame] | 423 | SwapVector<uint8_t>* CompilerDriver::DeduplicateMappingTable(const ArrayRef<const uint8_t>& code) { |
Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 424 | DCHECK(dedupe_enabled_); |
Mathieu Chartier | 193bad9 | 2013-08-29 18:46:00 -0700 | [diff] [blame] | 425 | return dedupe_mapping_table_.Add(Thread::Current(), code); |
| 426 | } |
| 427 | |
Andreas Gampe | e21dc3d | 2014-12-08 16:59:43 -0800 | [diff] [blame] | 428 | SwapVector<uint8_t>* CompilerDriver::DeduplicateVMapTable(const ArrayRef<const uint8_t>& code) { |
Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 429 | DCHECK(dedupe_enabled_); |
Mathieu Chartier | 193bad9 | 2013-08-29 18:46:00 -0700 | [diff] [blame] | 430 | return dedupe_vmap_table_.Add(Thread::Current(), code); |
| 431 | } |
| 432 | |
Andreas Gampe | e21dc3d | 2014-12-08 16:59:43 -0800 | [diff] [blame] | 433 | SwapVector<uint8_t>* CompilerDriver::DeduplicateGCMap(const ArrayRef<const uint8_t>& code) { |
Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 434 | DCHECK(dedupe_enabled_); |
Mathieu Chartier | 193bad9 | 2013-08-29 18:46:00 -0700 | [diff] [blame] | 435 | return dedupe_gc_map_.Add(Thread::Current(), code); |
| 436 | } |
| 437 | |
Andreas Gampe | e21dc3d | 2014-12-08 16:59:43 -0800 | [diff] [blame] | 438 | SwapVector<uint8_t>* CompilerDriver::DeduplicateCFIInfo(const ArrayRef<const uint8_t>& cfi_info) { |
Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 439 | DCHECK(dedupe_enabled_); |
Andreas Gampe | e21dc3d | 2014-12-08 16:59:43 -0800 | [diff] [blame] | 440 | return dedupe_cfi_info_.Add(Thread::Current(), cfi_info); |
Mark Mendell | ae9fd93 | 2014-02-10 16:14:35 -0800 | [diff] [blame] | 441 | } |
| 442 | |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 443 | CompilerDriver::~CompilerDriver() { |
| 444 | Thread* self = Thread::Current(); |
| 445 | { |
| 446 | MutexLock mu(self, compiled_classes_lock_); |
| 447 | STLDeleteValues(&compiled_classes_); |
| 448 | } |
| 449 | { |
| 450 | MutexLock mu(self, compiled_methods_lock_); |
Andreas Gampe | e21dc3d | 2014-12-08 16:59:43 -0800 | [diff] [blame] | 451 | for (auto& pair : compiled_methods_) { |
| 452 | CompiledMethod::ReleaseSwapAllocatedCompiledMethod(this, pair.second); |
| 453 | } |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 454 | } |
Ian Rogers | 72d3262 | 2014-05-06 16:20:11 -0700 | [diff] [blame] | 455 | compiler_->UnInit(); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 456 | } |
| 457 | |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 458 | #define CREATE_TRAMPOLINE(type, abi, offset) \ |
Andreas Gampe | af13ad9 | 2014-04-11 12:07:48 -0700 | [diff] [blame] | 459 | if (Is64BitInstructionSet(instruction_set_)) { \ |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 460 | return CreateTrampoline64(instruction_set_, abi, \ |
| 461 | type ## _ENTRYPOINT_OFFSET(8, offset)); \ |
| 462 | } else { \ |
| 463 | return CreateTrampoline32(instruction_set_, abi, \ |
| 464 | type ## _ENTRYPOINT_OFFSET(4, offset)); \ |
| 465 | } |
| 466 | |
Ian Rogers | 848871b | 2013-08-05 10:56:33 -0700 | [diff] [blame] | 467 | const std::vector<uint8_t>* CompilerDriver::CreateInterpreterToInterpreterBridge() const { |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 468 | CREATE_TRAMPOLINE(INTERPRETER, kInterpreterAbi, pInterpreterToInterpreterBridge) |
Ian Rogers | 848871b | 2013-08-05 10:56:33 -0700 | [diff] [blame] | 469 | } |
| 470 | |
| 471 | const std::vector<uint8_t>* CompilerDriver::CreateInterpreterToCompiledCodeBridge() const { |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 472 | CREATE_TRAMPOLINE(INTERPRETER, kInterpreterAbi, pInterpreterToCompiledCodeBridge) |
Ian Rogers | 848871b | 2013-08-05 10:56:33 -0700 | [diff] [blame] | 473 | } |
| 474 | |
| 475 | const std::vector<uint8_t>* CompilerDriver::CreateJniDlsymLookup() const { |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 476 | CREATE_TRAMPOLINE(JNI, kJniAbi, pDlsymLookup) |
Ian Rogers | 848871b | 2013-08-05 10:56:33 -0700 | [diff] [blame] | 477 | } |
| 478 | |
Andreas Gampe | 2da8823 | 2014-02-27 12:26:20 -0800 | [diff] [blame] | 479 | const std::vector<uint8_t>* CompilerDriver::CreateQuickGenericJniTrampoline() const { |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 480 | CREATE_TRAMPOLINE(QUICK, kQuickAbi, pQuickGenericJniTrampoline) |
Andreas Gampe | 2da8823 | 2014-02-27 12:26:20 -0800 | [diff] [blame] | 481 | } |
| 482 | |
Jeff Hao | 88474b4 | 2013-10-23 16:24:40 -0700 | [diff] [blame] | 483 | const std::vector<uint8_t>* CompilerDriver::CreateQuickImtConflictTrampoline() const { |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 484 | CREATE_TRAMPOLINE(QUICK, kQuickAbi, pQuickImtConflictTrampoline) |
Jeff Hao | 88474b4 | 2013-10-23 16:24:40 -0700 | [diff] [blame] | 485 | } |
| 486 | |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 487 | const std::vector<uint8_t>* CompilerDriver::CreateQuickResolutionTrampoline() const { |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 488 | CREATE_TRAMPOLINE(QUICK, kQuickAbi, pQuickResolutionTrampoline) |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 489 | } |
| 490 | |
Ian Rogers | 848871b | 2013-08-05 10:56:33 -0700 | [diff] [blame] | 491 | const std::vector<uint8_t>* CompilerDriver::CreateQuickToInterpreterBridge() const { |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 492 | CREATE_TRAMPOLINE(QUICK, kQuickAbi, pQuickToInterpreterBridge) |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 493 | } |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 494 | #undef CREATE_TRAMPOLINE |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 495 | |
| 496 | void CompilerDriver::CompileAll(jobject class_loader, |
Brian Carlstrom | 4560248 | 2013-07-21 22:07:55 -0700 | [diff] [blame] | 497 | const std::vector<const DexFile*>& dex_files, |
Ian Rogers | 3d50407 | 2014-03-01 09:16:49 -0800 | [diff] [blame] | 498 | TimingLogger* timings) { |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 499 | DCHECK(!Runtime::Current()->IsStarted()); |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 500 | std::unique_ptr<ThreadPool> thread_pool( |
| 501 | new ThreadPool("Compiler driver thread pool", thread_count_ - 1)); |
Andreas Gampe | 8d295f8 | 2015-01-20 14:50:21 -0800 | [diff] [blame] | 502 | VLOG(compiler) << "Before precompile " << GetMemoryUsageString(false); |
Ian Rogers | 3d50407 | 2014-03-01 09:16:49 -0800 | [diff] [blame] | 503 | PreCompile(class_loader, dex_files, thread_pool.get(), timings); |
| 504 | Compile(class_loader, dex_files, thread_pool.get(), timings); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 505 | if (dump_stats_) { |
| 506 | stats_->Dump(); |
| 507 | } |
| 508 | } |
| 509 | |
Mathieu Chartier | e86deef | 2015-03-19 13:43:37 -0700 | [diff] [blame] | 510 | DexToDexCompilationLevel CompilerDriver::GetDexToDexCompilationlevel( |
Mathieu Chartier | 0cd8135 | 2014-05-22 16:48:55 -0700 | [diff] [blame] | 511 | Thread* self, Handle<mirror::ClassLoader> class_loader, const DexFile& dex_file, |
Mathieu Chartier | e86deef | 2015-03-19 13:43:37 -0700 | [diff] [blame] | 512 | const DexFile::ClassDef& class_def) { |
Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 513 | auto* const runtime = Runtime::Current(); |
Mathieu Chartier | e86deef | 2015-03-19 13:43:37 -0700 | [diff] [blame] | 514 | if (runtime->UseJit() || GetCompilerOptions().VerifyAtRuntime()) { |
| 515 | // Verify at runtime shouldn't dex to dex since we didn't resolve of verify. |
Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 516 | return kDontDexToDexCompile; |
| 517 | } |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 518 | const char* descriptor = dex_file.GetClassDescriptor(class_def); |
Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 519 | ClassLinker* class_linker = runtime->GetClassLinker(); |
Ian Rogers | 9837939 | 2014-02-24 16:53:16 -0800 | [diff] [blame] | 520 | mirror::Class* klass = class_linker->FindClass(self, descriptor, class_loader); |
Andreas Gampe | 2ed8def | 2014-08-28 14:41:02 -0700 | [diff] [blame] | 521 | if (klass == nullptr) { |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 522 | CHECK(self->IsExceptionPending()); |
| 523 | self->ClearException(); |
Sebastien Hertz | 7502122 | 2013-07-16 18:34:50 +0200 | [diff] [blame] | 524 | return kDontDexToDexCompile; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 525 | } |
Andreas Gampe | 2ed8def | 2014-08-28 14:41:02 -0700 | [diff] [blame] | 526 | // DexToDex at the kOptimize level may introduce quickened opcodes, which replace symbolic |
| 527 | // references with actual offsets. We cannot re-verify such instructions. |
| 528 | // |
| 529 | // We store the verification information in the class status in the oat file, which the linker |
| 530 | // can validate (checksums) and use to skip load-time verification. It is thus safe to |
| 531 | // optimize when a class has been fully verified before. |
| 532 | if (klass->IsVerified()) { |
Sebastien Hertz | 7502122 | 2013-07-16 18:34:50 +0200 | [diff] [blame] | 533 | // Class is verified so we can enable DEX-to-DEX compilation for performance. |
| 534 | return kOptimize; |
| 535 | } else if (klass->IsCompileTimeVerified()) { |
| 536 | // Class verification has soft-failed. Anyway, ensure at least correctness. |
| 537 | DCHECK_EQ(klass->GetStatus(), mirror::Class::kStatusRetryVerificationAtRuntime); |
| 538 | return kRequired; |
| 539 | } else { |
| 540 | // Class verification has failed: do not run DEX-to-DEX compilation. |
| 541 | return kDontDexToDexCompile; |
| 542 | } |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 543 | } |
| 544 | |
Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 545 | void CompilerDriver::CompileOne(Thread* self, mirror::ArtMethod* method, TimingLogger* timings) { |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 546 | DCHECK(!Runtime::Current()->IsStarted()); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 547 | jobject jclass_loader; |
| 548 | const DexFile* dex_file; |
Ian Rogers | 8b2c0b9 | 2013-09-19 02:56:49 -0700 | [diff] [blame] | 549 | uint16_t class_def_idx; |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 550 | uint32_t method_idx = method->GetDexMethodIndex(); |
| 551 | uint32_t access_flags = method->GetAccessFlags(); |
| 552 | InvokeType invoke_type = method->GetInvokeType(); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 553 | { |
| 554 | ScopedObjectAccessUnchecked soa(self); |
Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 555 | ScopedLocalRef<jobject> local_class_loader( |
| 556 | soa.Env(), soa.AddLocalReference<jobject>(method->GetDeclaringClass()->GetClassLoader())); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 557 | jclass_loader = soa.Env()->NewGlobalRef(local_class_loader.get()); |
| 558 | // Find the dex_file |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 559 | dex_file = method->GetDexFile(); |
| 560 | class_def_idx = method->GetClassDefIndex(); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 561 | } |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 562 | const DexFile::CodeItem* code_item = dex_file->GetCodeItem(method->GetCodeItemOffset()); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 563 | self->TransitionFromRunnableToSuspended(kNative); |
| 564 | |
| 565 | std::vector<const DexFile*> dex_files; |
| 566 | dex_files.push_back(dex_file); |
| 567 | |
Ian Rogers | 700a402 | 2014-05-19 16:49:03 -0700 | [diff] [blame] | 568 | std::unique_ptr<ThreadPool> thread_pool(new ThreadPool("Compiler driver thread pool", 0U)); |
Ian Rogers | 3d50407 | 2014-03-01 09:16:49 -0800 | [diff] [blame] | 569 | PreCompile(jclass_loader, dex_files, thread_pool.get(), timings); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 570 | |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 571 | // Can we run DEX-to-DEX compiler on this class ? |
Sebastien Hertz | 7502122 | 2013-07-16 18:34:50 +0200 | [diff] [blame] | 572 | DexToDexCompilationLevel dex_to_dex_compilation_level = kDontDexToDexCompile; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 573 | { |
Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 574 | ScopedObjectAccess soa(self); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 575 | const DexFile::ClassDef& class_def = dex_file->GetClassDef(class_def_idx); |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 576 | StackHandleScope<1> hs(soa.Self()); |
| 577 | Handle<mirror::ClassLoader> class_loader( |
| 578 | hs.NewHandle(soa.Decode<mirror::ClassLoader*>(jclass_loader))); |
Ian Rogers | 9837939 | 2014-02-24 16:53:16 -0800 | [diff] [blame] | 579 | dex_to_dex_compilation_level = GetDexToDexCompilationlevel(self, class_loader, *dex_file, |
| 580 | class_def); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 581 | } |
Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 582 | CompileMethod(self, code_item, access_flags, invoke_type, class_def_idx, method_idx, |
| 583 | jclass_loader, *dex_file, dex_to_dex_compilation_level, true); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 584 | |
| 585 | self->GetJniEnv()->DeleteGlobalRef(jclass_loader); |
Mathieu Chartier | 2535abe | 2015-02-17 10:38:49 -0800 | [diff] [blame] | 586 | self->TransitionFromSuspendedToRunnable(); |
Mathieu Chartier | 2535abe | 2015-02-17 10:38:49 -0800 | [diff] [blame] | 587 | } |
| 588 | |
Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 589 | CompiledMethod* CompilerDriver::CompileMethod(Thread* self, mirror::ArtMethod* method) { |
| 590 | const uint32_t method_idx = method->GetDexMethodIndex(); |
| 591 | const uint32_t access_flags = method->GetAccessFlags(); |
| 592 | const InvokeType invoke_type = method->GetInvokeType(); |
| 593 | StackHandleScope<1> hs(self); |
| 594 | Handle<mirror::ClassLoader> class_loader(hs.NewHandle( |
| 595 | method->GetDeclaringClass()->GetClassLoader())); |
| 596 | jobject jclass_loader = class_loader.ToJObject(); |
| 597 | const DexFile* dex_file = method->GetDexFile(); |
| 598 | const uint16_t class_def_idx = method->GetClassDefIndex(); |
| 599 | const DexFile::ClassDef& class_def = dex_file->GetClassDef(class_def_idx); |
| 600 | DexToDexCompilationLevel dex_to_dex_compilation_level = |
| 601 | GetDexToDexCompilationlevel(self, class_loader, *dex_file, class_def); |
| 602 | const DexFile::CodeItem* code_item = dex_file->GetCodeItem(method->GetCodeItemOffset()); |
| 603 | self->TransitionFromRunnableToSuspended(kNative); |
| 604 | CompileMethod(self, code_item, access_flags, invoke_type, class_def_idx, method_idx, |
| 605 | jclass_loader, *dex_file, dex_to_dex_compilation_level, true); |
| 606 | auto* compiled_method = GetCompiledMethod(MethodReference(dex_file, method_idx)); |
| 607 | self->TransitionFromSuspendedToRunnable(); |
| 608 | return compiled_method; |
| 609 | } |
| 610 | |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 611 | void CompilerDriver::Resolve(jobject class_loader, const std::vector<const DexFile*>& dex_files, |
Ian Rogers | 3d50407 | 2014-03-01 09:16:49 -0800 | [diff] [blame] | 612 | ThreadPool* thread_pool, TimingLogger* timings) { |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 613 | for (size_t i = 0; i != dex_files.size(); ++i) { |
| 614 | const DexFile* dex_file = dex_files[i]; |
Kenny Root | d518534 | 2014-05-13 14:47:05 -0700 | [diff] [blame] | 615 | CHECK(dex_file != nullptr); |
Andreas Gampe | de7b436 | 2014-07-28 18:38:57 -0700 | [diff] [blame] | 616 | ResolveDexFile(class_loader, *dex_file, dex_files, thread_pool, timings); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 617 | } |
| 618 | } |
| 619 | |
| 620 | void CompilerDriver::PreCompile(jobject class_loader, const std::vector<const DexFile*>& dex_files, |
Ian Rogers | 3d50407 | 2014-03-01 09:16:49 -0800 | [diff] [blame] | 621 | ThreadPool* thread_pool, TimingLogger* timings) { |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 622 | LoadImageClasses(timings); |
Andreas Gampe | 8d295f8 | 2015-01-20 14:50:21 -0800 | [diff] [blame] | 623 | VLOG(compiler) << "LoadImageClasses: " << GetMemoryUsageString(false); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 624 | |
Mathieu Chartier | e86deef | 2015-03-19 13:43:37 -0700 | [diff] [blame] | 625 | const bool verification_enabled = compiler_options_->IsVerificationEnabled(); |
| 626 | const bool never_verify = compiler_options_->NeverVerify(); |
Andreas Gampe | 2ed8def | 2014-08-28 14:41:02 -0700 | [diff] [blame] | 627 | |
Mathieu Chartier | e86deef | 2015-03-19 13:43:37 -0700 | [diff] [blame] | 628 | // We need to resolve for never_verify since it needs to run dex to dex to add the |
| 629 | // RETURN_VOID_NO_BARRIER. |
| 630 | if (never_verify || verification_enabled) { |
| 631 | Resolve(class_loader, dex_files, thread_pool, timings); |
| 632 | VLOG(compiler) << "Resolve: " << GetMemoryUsageString(false); |
| 633 | } |
| 634 | |
| 635 | if (never_verify) { |
Mathieu Chartier | ab972ef | 2014-12-03 17:38:22 -0800 | [diff] [blame] | 636 | VLOG(compiler) << "Verify none mode specified, skipping verification."; |
Andreas Gampe | 2ed8def | 2014-08-28 14:41:02 -0700 | [diff] [blame] | 637 | SetVerified(class_loader, dex_files, thread_pool, timings); |
Mathieu Chartier | e86deef | 2015-03-19 13:43:37 -0700 | [diff] [blame] | 638 | } |
| 639 | |
| 640 | if (!verification_enabled) { |
Jeff Hao | 4a200f5 | 2014-04-01 14:58:49 -0700 | [diff] [blame] | 641 | return; |
| 642 | } |
| 643 | |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 644 | Verify(class_loader, dex_files, thread_pool, timings); |
Andreas Gampe | 8d295f8 | 2015-01-20 14:50:21 -0800 | [diff] [blame] | 645 | VLOG(compiler) << "Verify: " << GetMemoryUsageString(false); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 646 | |
Andreas Gampe | 6cf49e5 | 2015-03-05 13:08:45 -0800 | [diff] [blame] | 647 | if (had_hard_verifier_failure_ && GetCompilerOptions().AbortOnHardVerifierFailure()) { |
| 648 | LOG(FATAL) << "Had a hard failure verifying all classes, and was asked to abort in such " |
| 649 | << "situations. Please check the log."; |
| 650 | } |
| 651 | |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 652 | InitializeClasses(class_loader, dex_files, thread_pool, timings); |
Andreas Gampe | 8d295f8 | 2015-01-20 14:50:21 -0800 | [diff] [blame] | 653 | VLOG(compiler) << "InitializeClasses: " << GetMemoryUsageString(false); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 654 | |
| 655 | UpdateImageClasses(timings); |
Andreas Gampe | 8d295f8 | 2015-01-20 14:50:21 -0800 | [diff] [blame] | 656 | VLOG(compiler) << "UpdateImageClasses: " << GetMemoryUsageString(false); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 657 | } |
| 658 | |
Ian Rogers | dfb325e | 2013-10-30 01:00:44 -0700 | [diff] [blame] | 659 | bool CompilerDriver::IsImageClass(const char* descriptor) const { |
Ian Rogers | e6bb3b2 | 2013-08-19 21:51:45 -0700 | [diff] [blame] | 660 | if (!IsImage()) { |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 661 | return true; |
Ian Rogers | e6bb3b2 | 2013-08-19 21:51:45 -0700 | [diff] [blame] | 662 | } else { |
Ian Rogers | dfb325e | 2013-10-30 01:00:44 -0700 | [diff] [blame] | 663 | return image_classes_->find(descriptor) != image_classes_->end(); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 664 | } |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 665 | } |
| 666 | |
Andreas Gampe | 4bf3ae9 | 2014-11-11 13:28:29 -0800 | [diff] [blame] | 667 | bool CompilerDriver::IsClassToCompile(const char* descriptor) const { |
Andreas Gampe | b1fcead | 2015-04-20 18:53:51 -0700 | [diff] [blame] | 668 | if (kRestrictCompilationFiltersToImage && !IsImage()) { |
Andreas Gampe | 4bf3ae9 | 2014-11-11 13:28:29 -0800 | [diff] [blame] | 669 | return true; |
Andreas Gampe | 4bf3ae9 | 2014-11-11 13:28:29 -0800 | [diff] [blame] | 670 | } |
Andreas Gampe | b1fcead | 2015-04-20 18:53:51 -0700 | [diff] [blame] | 671 | |
| 672 | if (classes_to_compile_ == nullptr) { |
| 673 | return true; |
| 674 | } |
| 675 | return classes_to_compile_->find(descriptor) != classes_to_compile_->end(); |
Andreas Gampe | 4bf3ae9 | 2014-11-11 13:28:29 -0800 | [diff] [blame] | 676 | } |
| 677 | |
Andreas Gampe | 70bef0d | 2015-04-15 02:37:28 -0700 | [diff] [blame] | 678 | bool CompilerDriver::IsMethodToCompile(const MethodReference& method_ref) const { |
| 679 | if (kRestrictCompilationFiltersToImage && !IsImage()) { |
| 680 | return true; |
| 681 | } |
| 682 | |
| 683 | if (methods_to_compile_ == nullptr) { |
| 684 | return true; |
| 685 | } |
| 686 | |
| 687 | std::string tmp = PrettyMethod(method_ref.dex_method_index, *method_ref.dex_file, true); |
| 688 | return methods_to_compile_->find(tmp.c_str()) != methods_to_compile_->end(); |
| 689 | } |
| 690 | |
Ian Rogers | e94652f | 2014-12-02 11:13:19 -0800 | [diff] [blame] | 691 | static void ResolveExceptionsForMethod(MutableHandle<mirror::ArtMethod> method_handle, |
Ian Rogers | 700a402 | 2014-05-19 16:49:03 -0700 | [diff] [blame] | 692 | std::set<std::pair<uint16_t, const DexFile*>>& exceptions_to_resolve) |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 693 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
Ian Rogers | e94652f | 2014-12-02 11:13:19 -0800 | [diff] [blame] | 694 | const DexFile::CodeItem* code_item = method_handle->GetCodeItem(); |
Andreas Gampe | 2ed8def | 2014-08-28 14:41:02 -0700 | [diff] [blame] | 695 | if (code_item == nullptr) { |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 696 | return; // native or abstract method |
| 697 | } |
| 698 | if (code_item->tries_size_ == 0) { |
| 699 | return; // nothing to process |
| 700 | } |
Ian Rogers | 1373595 | 2014-10-08 12:43:28 -0700 | [diff] [blame] | 701 | const uint8_t* encoded_catch_handler_list = DexFile::GetCatchHandlerData(*code_item, 0); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 702 | size_t num_encoded_catch_handlers = DecodeUnsignedLeb128(&encoded_catch_handler_list); |
| 703 | for (size_t i = 0; i < num_encoded_catch_handlers; i++) { |
| 704 | int32_t encoded_catch_handler_size = DecodeSignedLeb128(&encoded_catch_handler_list); |
| 705 | bool has_catch_all = false; |
| 706 | if (encoded_catch_handler_size <= 0) { |
| 707 | encoded_catch_handler_size = -encoded_catch_handler_size; |
| 708 | has_catch_all = true; |
| 709 | } |
| 710 | for (int32_t j = 0; j < encoded_catch_handler_size; j++) { |
| 711 | uint16_t encoded_catch_handler_handlers_type_idx = |
| 712 | DecodeUnsignedLeb128(&encoded_catch_handler_list); |
| 713 | // Add to set of types to resolve if not already in the dex cache resolved types |
Ian Rogers | e94652f | 2014-12-02 11:13:19 -0800 | [diff] [blame] | 714 | if (!method_handle->IsResolvedTypeIdx(encoded_catch_handler_handlers_type_idx)) { |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 715 | exceptions_to_resolve.insert( |
| 716 | std::pair<uint16_t, const DexFile*>(encoded_catch_handler_handlers_type_idx, |
Ian Rogers | e94652f | 2014-12-02 11:13:19 -0800 | [diff] [blame] | 717 | method_handle->GetDexFile())); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 718 | } |
| 719 | // ignore address associated with catch handler |
| 720 | DecodeUnsignedLeb128(&encoded_catch_handler_list); |
| 721 | } |
| 722 | if (has_catch_all) { |
| 723 | // ignore catch all address |
| 724 | DecodeUnsignedLeb128(&encoded_catch_handler_list); |
| 725 | } |
| 726 | } |
| 727 | } |
| 728 | |
| 729 | static bool ResolveCatchBlockExceptionsClassVisitor(mirror::Class* c, void* arg) |
| 730 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
Ian Rogers | 700a402 | 2014-05-19 16:49:03 -0700 | [diff] [blame] | 731 | std::set<std::pair<uint16_t, const DexFile*>>* exceptions_to_resolve = |
| 732 | reinterpret_cast<std::set<std::pair<uint16_t, const DexFile*>>*>(arg); |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 733 | StackHandleScope<1> hs(Thread::Current()); |
Ian Rogers | e94652f | 2014-12-02 11:13:19 -0800 | [diff] [blame] | 734 | MutableHandle<mirror::ArtMethod> method_handle(hs.NewHandle<mirror::ArtMethod>(nullptr)); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 735 | for (size_t i = 0; i < c->NumVirtualMethods(); ++i) { |
Ian Rogers | e94652f | 2014-12-02 11:13:19 -0800 | [diff] [blame] | 736 | method_handle.Assign(c->GetVirtualMethod(i)); |
| 737 | ResolveExceptionsForMethod(method_handle, *exceptions_to_resolve); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 738 | } |
| 739 | for (size_t i = 0; i < c->NumDirectMethods(); ++i) { |
Ian Rogers | e94652f | 2014-12-02 11:13:19 -0800 | [diff] [blame] | 740 | method_handle.Assign(c->GetDirectMethod(i)); |
| 741 | ResolveExceptionsForMethod(method_handle, *exceptions_to_resolve); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 742 | } |
| 743 | return true; |
| 744 | } |
| 745 | |
| 746 | static bool RecordImageClassesVisitor(mirror::Class* klass, void* arg) |
| 747 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
Andreas Gampe | b1fcead | 2015-04-20 18:53:51 -0700 | [diff] [blame] | 748 | std::unordered_set<std::string>* image_classes = |
| 749 | reinterpret_cast<std::unordered_set<std::string>*>(arg); |
Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 750 | std::string temp; |
| 751 | image_classes->insert(klass->GetDescriptor(&temp)); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 752 | return true; |
| 753 | } |
| 754 | |
| 755 | // Make a list of descriptors for classes to include in the image |
Ian Rogers | 3d50407 | 2014-03-01 09:16:49 -0800 | [diff] [blame] | 756 | void CompilerDriver::LoadImageClasses(TimingLogger* timings) |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 757 | LOCKS_EXCLUDED(Locks::mutator_lock_) { |
Kenny Root | d518534 | 2014-05-13 14:47:05 -0700 | [diff] [blame] | 758 | CHECK(timings != nullptr); |
Ian Rogers | e6bb3b2 | 2013-08-19 21:51:45 -0700 | [diff] [blame] | 759 | if (!IsImage()) { |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 760 | return; |
| 761 | } |
| 762 | |
Mathieu Chartier | f5997b4 | 2014-06-20 10:37:54 -0700 | [diff] [blame] | 763 | TimingLogger::ScopedTiming t("LoadImageClasses", timings); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 764 | // Make a first class to load all classes explicitly listed in the file |
| 765 | Thread* self = Thread::Current(); |
| 766 | ScopedObjectAccess soa(self); |
| 767 | ClassLinker* class_linker = Runtime::Current()->GetClassLinker(); |
Kenny Root | d518534 | 2014-05-13 14:47:05 -0700 | [diff] [blame] | 768 | CHECK(image_classes_.get() != nullptr); |
Mathieu Chartier | 02e2511 | 2013-08-14 16:14:24 -0700 | [diff] [blame] | 769 | for (auto it = image_classes_->begin(), end = image_classes_->end(); it != end;) { |
Vladimir Marko | e9c36b3 | 2013-11-21 15:49:16 +0000 | [diff] [blame] | 770 | const std::string& descriptor(*it); |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 771 | StackHandleScope<1> hs(self); |
| 772 | Handle<mirror::Class> klass( |
| 773 | hs.NewHandle(class_linker->FindSystemClass(self, descriptor.c_str()))); |
Andreas Gampe | 2ed8def | 2014-08-28 14:41:02 -0700 | [diff] [blame] | 774 | if (klass.Get() == nullptr) { |
Ian Rogers | e6bb3b2 | 2013-08-19 21:51:45 -0700 | [diff] [blame] | 775 | VLOG(compiler) << "Failed to find class " << descriptor; |
Vladimir Marko | e9c36b3 | 2013-11-21 15:49:16 +0000 | [diff] [blame] | 776 | image_classes_->erase(it++); |
Ian Rogers | a436fde | 2013-08-27 23:34:06 -0700 | [diff] [blame] | 777 | self->ClearException(); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 778 | } else { |
| 779 | ++it; |
| 780 | } |
| 781 | } |
| 782 | |
| 783 | // Resolve exception classes referenced by the loaded classes. The catch logic assumes |
| 784 | // exceptions are resolved by the verifier when there is a catch block in an interested method. |
| 785 | // Do this here so that exception classes appear to have been specified image classes. |
Ian Rogers | 700a402 | 2014-05-19 16:49:03 -0700 | [diff] [blame] | 786 | std::set<std::pair<uint16_t, const DexFile*>> unresolved_exception_types; |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 787 | StackHandleScope<1> hs(self); |
| 788 | Handle<mirror::Class> java_lang_Throwable( |
| 789 | hs.NewHandle(class_linker->FindSystemClass(self, "Ljava/lang/Throwable;"))); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 790 | do { |
| 791 | unresolved_exception_types.clear(); |
| 792 | class_linker->VisitClasses(ResolveCatchBlockExceptionsClassVisitor, |
| 793 | &unresolved_exception_types); |
Mathieu Chartier | 02e2511 | 2013-08-14 16:14:24 -0700 | [diff] [blame] | 794 | for (const std::pair<uint16_t, const DexFile*>& exception_type : unresolved_exception_types) { |
| 795 | uint16_t exception_type_idx = exception_type.first; |
| 796 | const DexFile* dex_file = exception_type.second; |
Andreas Gampe | 277ccbd | 2014-11-03 21:36:10 -0800 | [diff] [blame] | 797 | StackHandleScope<2> hs2(self); |
| 798 | Handle<mirror::DexCache> dex_cache(hs2.NewHandle(class_linker->FindDexCache(*dex_file))); |
| 799 | Handle<mirror::Class> klass(hs2.NewHandle( |
Mathieu Chartier | 0cd8135 | 2014-05-22 16:48:55 -0700 | [diff] [blame] | 800 | class_linker->ResolveType(*dex_file, exception_type_idx, dex_cache, |
| 801 | NullHandle<mirror::ClassLoader>()))); |
Andreas Gampe | 2ed8def | 2014-08-28 14:41:02 -0700 | [diff] [blame] | 802 | if (klass.Get() == nullptr) { |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 803 | const DexFile::TypeId& type_id = dex_file->GetTypeId(exception_type_idx); |
| 804 | const char* descriptor = dex_file->GetTypeDescriptor(type_id); |
| 805 | LOG(FATAL) << "Failed to resolve class " << descriptor; |
| 806 | } |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 807 | DCHECK(java_lang_Throwable->IsAssignableFrom(klass.Get())); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 808 | } |
| 809 | // Resolving exceptions may load classes that reference more exceptions, iterate until no |
| 810 | // more are found |
| 811 | } while (!unresolved_exception_types.empty()); |
| 812 | |
| 813 | // We walk the roots looking for classes so that we'll pick up the |
| 814 | // above classes plus any classes them depend on such super |
| 815 | // classes, interfaces, and the required ClassLinker roots. |
| 816 | class_linker->VisitClasses(RecordImageClassesVisitor, image_classes_.get()); |
| 817 | |
| 818 | CHECK_NE(image_classes_->size(), 0U); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 819 | } |
| 820 | |
Andreas Gampe | b1fcead | 2015-04-20 18:53:51 -0700 | [diff] [blame] | 821 | static void MaybeAddToImageClasses(Handle<mirror::Class> c, |
| 822 | std::unordered_set<std::string>* image_classes) |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 823 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
Mathieu Chartier | f832284 | 2014-05-16 10:59:25 -0700 | [diff] [blame] | 824 | Thread* self = Thread::Current(); |
| 825 | StackHandleScope<1> hs(self); |
| 826 | // Make a copy of the handle so that we don't clobber it doing Assign. |
Andreas Gampe | 5a4b8a2 | 2014-09-11 08:30:08 -0700 | [diff] [blame] | 827 | MutableHandle<mirror::Class> klass(hs.NewHandle(c.Get())); |
Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 828 | std::string temp; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 829 | while (!klass->IsObjectClass()) { |
Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 830 | const char* descriptor = klass->GetDescriptor(&temp); |
Andreas Gampe | b1fcead | 2015-04-20 18:53:51 -0700 | [diff] [blame] | 831 | std::pair<std::unordered_set<std::string>::iterator, bool> result = |
| 832 | image_classes->insert(descriptor); |
Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 833 | if (!result.second) { // Previously inserted. |
| 834 | break; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 835 | } |
Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 836 | VLOG(compiler) << "Adding " << descriptor << " to image classes"; |
Mathieu Chartier | f832284 | 2014-05-16 10:59:25 -0700 | [diff] [blame] | 837 | for (size_t i = 0; i < klass->NumDirectInterfaces(); ++i) { |
Andreas Gampe | 277ccbd | 2014-11-03 21:36:10 -0800 | [diff] [blame] | 838 | StackHandleScope<1> hs2(self); |
| 839 | MaybeAddToImageClasses(hs2.NewHandle(mirror::Class::GetDirectInterface(self, klass, i)), |
Mathieu Chartier | f832284 | 2014-05-16 10:59:25 -0700 | [diff] [blame] | 840 | image_classes); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 841 | } |
| 842 | if (klass->IsArrayClass()) { |
Andreas Gampe | 277ccbd | 2014-11-03 21:36:10 -0800 | [diff] [blame] | 843 | StackHandleScope<1> hs2(self); |
| 844 | MaybeAddToImageClasses(hs2.NewHandle(klass->GetComponentType()), image_classes); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 845 | } |
Mathieu Chartier | f832284 | 2014-05-16 10:59:25 -0700 | [diff] [blame] | 846 | klass.Assign(klass->GetSuperClass()); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 847 | } |
| 848 | } |
| 849 | |
Andreas Gampe | b0f370e | 2014-09-25 22:51:40 -0700 | [diff] [blame] | 850 | // Keeps all the data for the update together. Also doubles as the reference visitor. |
| 851 | // Note: we can use object pointers because we suspend all threads. |
| 852 | class ClinitImageUpdate { |
| 853 | public: |
Andreas Gampe | b1fcead | 2015-04-20 18:53:51 -0700 | [diff] [blame] | 854 | static ClinitImageUpdate* Create(std::unordered_set<std::string>* image_class_descriptors, |
| 855 | Thread* self, ClassLinker* linker, std::string* error_msg) { |
Andreas Gampe | b0f370e | 2014-09-25 22:51:40 -0700 | [diff] [blame] | 856 | std::unique_ptr<ClinitImageUpdate> res(new ClinitImageUpdate(image_class_descriptors, self, |
| 857 | linker)); |
| 858 | if (res->art_method_class_ == nullptr) { |
| 859 | *error_msg = "Could not find ArtMethod class."; |
| 860 | return nullptr; |
| 861 | } else if (res->dex_cache_class_ == nullptr) { |
| 862 | *error_msg = "Could not find DexCache class."; |
| 863 | return nullptr; |
| 864 | } |
| 865 | |
| 866 | return res.release(); |
| 867 | } |
| 868 | |
| 869 | ~ClinitImageUpdate() { |
| 870 | // Allow others to suspend again. |
| 871 | self_->EndAssertNoThreadSuspension(old_cause_); |
| 872 | } |
| 873 | |
| 874 | // Visitor for VisitReferences. |
| 875 | void operator()(mirror::Object* object, MemberOffset field_offset, bool /* is_static */) const |
| 876 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
| 877 | mirror::Object* ref = object->GetFieldObject<mirror::Object>(field_offset); |
| 878 | if (ref != nullptr) { |
| 879 | VisitClinitClassesObject(ref); |
| 880 | } |
| 881 | } |
| 882 | |
| 883 | // java.lang.Reference visitor for VisitReferences. |
Andreas Gampe | dc8b63c | 2014-12-02 14:39:52 -0800 | [diff] [blame] | 884 | void operator()(mirror::Class* /* klass */, mirror::Reference* /* ref */) const { |
Andreas Gampe | b0f370e | 2014-09-25 22:51:40 -0700 | [diff] [blame] | 885 | } |
| 886 | |
| 887 | void Walk() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
| 888 | // Use the initial classes as roots for a search. |
| 889 | for (mirror::Class* klass_root : image_classes_) { |
| 890 | VisitClinitClassesObject(klass_root); |
| 891 | } |
| 892 | } |
| 893 | |
| 894 | private: |
Andreas Gampe | b1fcead | 2015-04-20 18:53:51 -0700 | [diff] [blame] | 895 | ClinitImageUpdate(std::unordered_set<std::string>* image_class_descriptors, Thread* self, |
Andreas Gampe | b0f370e | 2014-09-25 22:51:40 -0700 | [diff] [blame] | 896 | ClassLinker* linker) |
| 897 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) : |
| 898 | image_class_descriptors_(image_class_descriptors), self_(self) { |
| 899 | CHECK(linker != nullptr); |
| 900 | CHECK(image_class_descriptors != nullptr); |
| 901 | |
| 902 | // Make sure nobody interferes with us. |
| 903 | old_cause_ = self->StartAssertNoThreadSuspension("Boot image closure"); |
| 904 | |
| 905 | // Find the interesting classes. |
Andreas Gampe | dc8b63c | 2014-12-02 14:39:52 -0800 | [diff] [blame] | 906 | art_method_class_ = linker->LookupClass(self, "Ljava/lang/reflect/ArtMethod;", |
| 907 | ComputeModifiedUtf8Hash("Ljava/lang/reflect/ArtMethod;"), nullptr); |
| 908 | dex_cache_class_ = linker->LookupClass(self, "Ljava/lang/DexCache;", |
| 909 | ComputeModifiedUtf8Hash("Ljava/lang/DexCache;"), nullptr); |
Andreas Gampe | b0f370e | 2014-09-25 22:51:40 -0700 | [diff] [blame] | 910 | |
| 911 | // Find all the already-marked classes. |
| 912 | WriterMutexLock mu(self, *Locks::heap_bitmap_lock_); |
| 913 | linker->VisitClasses(FindImageClasses, this); |
| 914 | } |
| 915 | |
| 916 | static bool FindImageClasses(mirror::Class* klass, void* arg) |
| 917 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
| 918 | ClinitImageUpdate* data = reinterpret_cast<ClinitImageUpdate*>(arg); |
| 919 | std::string temp; |
| 920 | const char* name = klass->GetDescriptor(&temp); |
| 921 | if (data->image_class_descriptors_->find(name) != data->image_class_descriptors_->end()) { |
| 922 | data->image_classes_.push_back(klass); |
Andreas Gampe | 4d4eff7 | 2015-03-04 22:46:35 -0800 | [diff] [blame] | 923 | } else { |
| 924 | // Check whether it is initialized and has a clinit. They must be kept, too. |
| 925 | if (klass->IsInitialized() && klass->FindClassInitializer() != nullptr) { |
| 926 | data->image_classes_.push_back(klass); |
| 927 | } |
Andreas Gampe | b0f370e | 2014-09-25 22:51:40 -0700 | [diff] [blame] | 928 | } |
| 929 | |
| 930 | return true; |
| 931 | } |
| 932 | |
| 933 | void VisitClinitClassesObject(mirror::Object* object) const |
| 934 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
| 935 | DCHECK(object != nullptr); |
| 936 | if (marked_objects_.find(object) != marked_objects_.end()) { |
| 937 | // Already processed. |
| 938 | return; |
| 939 | } |
| 940 | |
| 941 | // Mark it. |
| 942 | marked_objects_.insert(object); |
| 943 | |
| 944 | if (object->IsClass()) { |
| 945 | // If it is a class, add it. |
| 946 | StackHandleScope<1> hs(self_); |
| 947 | MaybeAddToImageClasses(hs.NewHandle(object->AsClass()), image_class_descriptors_); |
| 948 | } else { |
| 949 | // Else visit the object's class. |
| 950 | VisitClinitClassesObject(object->GetClass()); |
| 951 | } |
| 952 | |
| 953 | // If it is not a dex cache or an ArtMethod, visit all references. |
| 954 | mirror::Class* klass = object->GetClass(); |
| 955 | if (klass != art_method_class_ && klass != dex_cache_class_) { |
| 956 | object->VisitReferences<false /* visit class */>(*this, *this); |
| 957 | } |
| 958 | } |
| 959 | |
| 960 | mutable std::unordered_set<mirror::Object*> marked_objects_; |
Andreas Gampe | b1fcead | 2015-04-20 18:53:51 -0700 | [diff] [blame] | 961 | std::unordered_set<std::string>* const image_class_descriptors_; |
Andreas Gampe | b0f370e | 2014-09-25 22:51:40 -0700 | [diff] [blame] | 962 | std::vector<mirror::Class*> image_classes_; |
| 963 | const mirror::Class* art_method_class_; |
| 964 | const mirror::Class* dex_cache_class_; |
| 965 | Thread* const self_; |
| 966 | const char* old_cause_; |
| 967 | |
| 968 | DISALLOW_COPY_AND_ASSIGN(ClinitImageUpdate); |
| 969 | }; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 970 | |
Ian Rogers | 3d50407 | 2014-03-01 09:16:49 -0800 | [diff] [blame] | 971 | void CompilerDriver::UpdateImageClasses(TimingLogger* timings) { |
Ian Rogers | e6bb3b2 | 2013-08-19 21:51:45 -0700 | [diff] [blame] | 972 | if (IsImage()) { |
Mathieu Chartier | f5997b4 | 2014-06-20 10:37:54 -0700 | [diff] [blame] | 973 | TimingLogger::ScopedTiming t("UpdateImageClasses", timings); |
Andreas Gampe | b0f370e | 2014-09-25 22:51:40 -0700 | [diff] [blame] | 974 | |
| 975 | Runtime* current = Runtime::Current(); |
| 976 | |
| 977 | // Suspend all threads. |
Mathieu Chartier | bf9fc58 | 2015-03-13 17:21:25 -0700 | [diff] [blame] | 978 | current->GetThreadList()->SuspendAll(__FUNCTION__); |
Andreas Gampe | b0f370e | 2014-09-25 22:51:40 -0700 | [diff] [blame] | 979 | |
| 980 | std::string error_msg; |
| 981 | std::unique_ptr<ClinitImageUpdate> update(ClinitImageUpdate::Create(image_classes_.get(), |
| 982 | Thread::Current(), |
| 983 | current->GetClassLinker(), |
| 984 | &error_msg)); |
| 985 | CHECK(update.get() != nullptr) << error_msg; // TODO: Soft failure? |
| 986 | |
| 987 | // Do the marking. |
| 988 | update->Walk(); |
| 989 | |
| 990 | // Resume threads. |
| 991 | current->GetThreadList()->ResumeAll(); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 992 | } |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 993 | } |
| 994 | |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 995 | bool CompilerDriver::CanAssumeTypeIsPresentInDexCache(const DexFile& dex_file, uint32_t type_idx) { |
Ian Rogers | fc0e94b | 2013-09-23 23:51:32 -0700 | [diff] [blame] | 996 | if (IsImage() && |
Ian Rogers | dfb325e | 2013-10-30 01:00:44 -0700 | [diff] [blame] | 997 | IsImageClass(dex_file.StringDataByIdx(dex_file.GetTypeId(type_idx).descriptor_idx_))) { |
Andreas Gampe | 58a5af8 | 2014-07-31 16:23:49 -0700 | [diff] [blame] | 998 | { |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 999 | ScopedObjectAccess soa(Thread::Current()); |
| 1000 | mirror::DexCache* dex_cache = Runtime::Current()->GetClassLinker()->FindDexCache(dex_file); |
| 1001 | mirror::Class* resolved_class = dex_cache->GetResolvedType(type_idx); |
Andreas Gampe | 58a5af8 | 2014-07-31 16:23:49 -0700 | [diff] [blame] | 1002 | if (resolved_class == nullptr) { |
| 1003 | // Erroneous class. |
| 1004 | stats_->TypeNotInDexCache(); |
| 1005 | return false; |
| 1006 | } |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1007 | } |
| 1008 | stats_->TypeInDexCache(); |
| 1009 | return true; |
| 1010 | } else { |
| 1011 | stats_->TypeNotInDexCache(); |
| 1012 | return false; |
| 1013 | } |
| 1014 | } |
| 1015 | |
| 1016 | bool CompilerDriver::CanAssumeStringIsPresentInDexCache(const DexFile& dex_file, |
| 1017 | uint32_t string_idx) { |
| 1018 | // See also Compiler::ResolveDexFile |
| 1019 | |
| 1020 | bool result = false; |
| 1021 | if (IsImage()) { |
| 1022 | // We resolve all const-string strings when building for the image. |
| 1023 | ScopedObjectAccess soa(Thread::Current()); |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 1024 | StackHandleScope<1> hs(soa.Self()); |
| 1025 | Handle<mirror::DexCache> dex_cache( |
| 1026 | hs.NewHandle(Runtime::Current()->GetClassLinker()->FindDexCache(dex_file))); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1027 | Runtime::Current()->GetClassLinker()->ResolveString(dex_file, string_idx, dex_cache); |
| 1028 | result = true; |
| 1029 | } |
| 1030 | if (result) { |
| 1031 | stats_->StringInDexCache(); |
| 1032 | } else { |
| 1033 | stats_->StringNotInDexCache(); |
| 1034 | } |
| 1035 | return result; |
| 1036 | } |
| 1037 | |
| 1038 | bool CompilerDriver::CanAccessTypeWithoutChecks(uint32_t referrer_idx, const DexFile& dex_file, |
| 1039 | uint32_t type_idx, |
| 1040 | bool* type_known_final, bool* type_known_abstract, |
| 1041 | bool* equals_referrers_class) { |
Andreas Gampe | 2ed8def | 2014-08-28 14:41:02 -0700 | [diff] [blame] | 1042 | if (type_known_final != nullptr) { |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1043 | *type_known_final = false; |
| 1044 | } |
Andreas Gampe | 2ed8def | 2014-08-28 14:41:02 -0700 | [diff] [blame] | 1045 | if (type_known_abstract != nullptr) { |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1046 | *type_known_abstract = false; |
| 1047 | } |
Andreas Gampe | 2ed8def | 2014-08-28 14:41:02 -0700 | [diff] [blame] | 1048 | if (equals_referrers_class != nullptr) { |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1049 | *equals_referrers_class = false; |
| 1050 | } |
| 1051 | ScopedObjectAccess soa(Thread::Current()); |
| 1052 | mirror::DexCache* dex_cache = Runtime::Current()->GetClassLinker()->FindDexCache(dex_file); |
| 1053 | // Get type from dex cache assuming it was populated by the verifier |
| 1054 | mirror::Class* resolved_class = dex_cache->GetResolvedType(type_idx); |
Andreas Gampe | 2ed8def | 2014-08-28 14:41:02 -0700 | [diff] [blame] | 1055 | if (resolved_class == nullptr) { |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1056 | stats_->TypeNeedsAccessCheck(); |
| 1057 | return false; // Unknown class needs access checks. |
| 1058 | } |
| 1059 | const DexFile::MethodId& method_id = dex_file.GetMethodId(referrer_idx); |
Andreas Gampe | 2ed8def | 2014-08-28 14:41:02 -0700 | [diff] [blame] | 1060 | if (equals_referrers_class != nullptr) { |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1061 | *equals_referrers_class = (method_id.class_idx_ == type_idx); |
| 1062 | } |
| 1063 | mirror::Class* referrer_class = dex_cache->GetResolvedType(method_id.class_idx_); |
Andreas Gampe | 2ed8def | 2014-08-28 14:41:02 -0700 | [diff] [blame] | 1064 | if (referrer_class == nullptr) { |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1065 | stats_->TypeNeedsAccessCheck(); |
| 1066 | return false; // Incomplete referrer knowledge needs access check. |
| 1067 | } |
| 1068 | // Perform access check, will return true if access is ok or false if we're going to have to |
| 1069 | // check this at runtime (for example for class loaders). |
| 1070 | bool result = referrer_class->CanAccess(resolved_class); |
| 1071 | if (result) { |
| 1072 | stats_->TypeDoesntNeedAccessCheck(); |
Andreas Gampe | 2ed8def | 2014-08-28 14:41:02 -0700 | [diff] [blame] | 1073 | if (type_known_final != nullptr) { |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1074 | *type_known_final = resolved_class->IsFinal() && !resolved_class->IsArrayClass(); |
| 1075 | } |
Andreas Gampe | 2ed8def | 2014-08-28 14:41:02 -0700 | [diff] [blame] | 1076 | if (type_known_abstract != nullptr) { |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1077 | *type_known_abstract = resolved_class->IsAbstract() && !resolved_class->IsArrayClass(); |
| 1078 | } |
| 1079 | } else { |
| 1080 | stats_->TypeNeedsAccessCheck(); |
| 1081 | } |
| 1082 | return result; |
| 1083 | } |
| 1084 | |
| 1085 | bool CompilerDriver::CanAccessInstantiableTypeWithoutChecks(uint32_t referrer_idx, |
| 1086 | const DexFile& dex_file, |
| 1087 | uint32_t type_idx) { |
| 1088 | ScopedObjectAccess soa(Thread::Current()); |
| 1089 | mirror::DexCache* dex_cache = Runtime::Current()->GetClassLinker()->FindDexCache(dex_file); |
| 1090 | // Get type from dex cache assuming it was populated by the verifier. |
| 1091 | mirror::Class* resolved_class = dex_cache->GetResolvedType(type_idx); |
Andreas Gampe | 2ed8def | 2014-08-28 14:41:02 -0700 | [diff] [blame] | 1092 | if (resolved_class == nullptr) { |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1093 | stats_->TypeNeedsAccessCheck(); |
| 1094 | return false; // Unknown class needs access checks. |
| 1095 | } |
| 1096 | const DexFile::MethodId& method_id = dex_file.GetMethodId(referrer_idx); |
| 1097 | mirror::Class* referrer_class = dex_cache->GetResolvedType(method_id.class_idx_); |
Andreas Gampe | 2ed8def | 2014-08-28 14:41:02 -0700 | [diff] [blame] | 1098 | if (referrer_class == nullptr) { |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1099 | stats_->TypeNeedsAccessCheck(); |
| 1100 | return false; // Incomplete referrer knowledge needs access check. |
| 1101 | } |
| 1102 | // Perform access and instantiable checks, will return true if access is ok or false if we're |
| 1103 | // going to have to check this at runtime (for example for class loaders). |
| 1104 | bool result = referrer_class->CanAccess(resolved_class) && resolved_class->IsInstantiable(); |
| 1105 | if (result) { |
| 1106 | stats_->TypeDoesntNeedAccessCheck(); |
| 1107 | } else { |
| 1108 | stats_->TypeNeedsAccessCheck(); |
| 1109 | } |
| 1110 | return result; |
| 1111 | } |
| 1112 | |
Hiroshi Yamauchi | be1ca55 | 2014-01-15 11:46:48 -0800 | [diff] [blame] | 1113 | bool CompilerDriver::CanEmbedTypeInCode(const DexFile& dex_file, uint32_t type_idx, |
| 1114 | bool* is_type_initialized, bool* use_direct_type_ptr, |
Mathieu Chartier | 8668c3c | 2014-04-24 16:48:11 -0700 | [diff] [blame] | 1115 | uintptr_t* direct_type_ptr, bool* out_is_finalizable) { |
Hiroshi Yamauchi | be1ca55 | 2014-01-15 11:46:48 -0800 | [diff] [blame] | 1116 | ScopedObjectAccess soa(Thread::Current()); |
Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 1117 | Runtime* runtime = Runtime::Current(); |
| 1118 | mirror::DexCache* dex_cache = runtime->GetClassLinker()->FindDexCache(dex_file); |
Hiroshi Yamauchi | be1ca55 | 2014-01-15 11:46:48 -0800 | [diff] [blame] | 1119 | mirror::Class* resolved_class = dex_cache->GetResolvedType(type_idx); |
| 1120 | if (resolved_class == nullptr) { |
| 1121 | return false; |
| 1122 | } |
Igor Murashkin | d6dee67 | 2014-10-16 18:36:16 -0700 | [diff] [blame] | 1123 | if (GetCompilerOptions().GetCompilePic()) { |
| 1124 | // Do not allow a direct class pointer to be used when compiling for position-independent |
| 1125 | return false; |
| 1126 | } |
Mathieu Chartier | 8668c3c | 2014-04-24 16:48:11 -0700 | [diff] [blame] | 1127 | *out_is_finalizable = resolved_class->IsFinalizable(); |
Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 1128 | gc::Heap* heap = runtime->GetHeap(); |
| 1129 | const bool compiling_boot = heap->IsCompilingBoot(); |
Alex Light | 6e183f2 | 2014-07-18 14:57:04 -0700 | [diff] [blame] | 1130 | const bool support_boot_image_fixup = GetSupportBootImageFixup(); |
Hiroshi Yamauchi | be1ca55 | 2014-01-15 11:46:48 -0800 | [diff] [blame] | 1131 | if (compiling_boot) { |
| 1132 | // boot -> boot class pointers. |
| 1133 | // True if the class is in the image at boot compiling time. |
| 1134 | const bool is_image_class = IsImage() && IsImageClass( |
| 1135 | dex_file.StringDataByIdx(dex_file.GetTypeId(type_idx).descriptor_idx_)); |
| 1136 | // True if pc relative load works. |
Hiroshi Yamauchi | be1ca55 | 2014-01-15 11:46:48 -0800 | [diff] [blame] | 1137 | if (is_image_class && support_boot_image_fixup) { |
| 1138 | *is_type_initialized = resolved_class->IsInitialized(); |
| 1139 | *use_direct_type_ptr = false; |
| 1140 | *direct_type_ptr = 0; |
| 1141 | return true; |
| 1142 | } else { |
| 1143 | return false; |
| 1144 | } |
Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 1145 | } else if (runtime->UseJit() && !heap->IsMovableObject(resolved_class)) { |
| 1146 | *is_type_initialized = resolved_class->IsInitialized(); |
| 1147 | // If the class may move around, then don't embed it as a direct pointer. |
| 1148 | *use_direct_type_ptr = true; |
| 1149 | *direct_type_ptr = reinterpret_cast<uintptr_t>(resolved_class); |
| 1150 | return true; |
Hiroshi Yamauchi | be1ca55 | 2014-01-15 11:46:48 -0800 | [diff] [blame] | 1151 | } else { |
| 1152 | // True if the class is in the image at app compiling time. |
Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 1153 | const bool class_in_image = heap->FindSpaceFromObject(resolved_class, false)->IsImageSpace(); |
Alex Light | 6e183f2 | 2014-07-18 14:57:04 -0700 | [diff] [blame] | 1154 | if (class_in_image && support_boot_image_fixup) { |
Hiroshi Yamauchi | be1ca55 | 2014-01-15 11:46:48 -0800 | [diff] [blame] | 1155 | // boot -> app class pointers. |
| 1156 | *is_type_initialized = resolved_class->IsInitialized(); |
Alex Light | a59dd80 | 2014-07-02 16:28:08 -0700 | [diff] [blame] | 1157 | // TODO This is somewhat hacky. We should refactor all of this invoke codepath. |
| 1158 | *use_direct_type_ptr = !GetCompilerOptions().GetIncludePatchInformation(); |
Hiroshi Yamauchi | be1ca55 | 2014-01-15 11:46:48 -0800 | [diff] [blame] | 1159 | *direct_type_ptr = reinterpret_cast<uintptr_t>(resolved_class); |
| 1160 | return true; |
| 1161 | } else { |
| 1162 | // app -> app class pointers. |
| 1163 | // Give up because app does not have an image and class |
| 1164 | // isn't created at compile time. TODO: implement this |
| 1165 | // if/when each app gets an image. |
| 1166 | return false; |
| 1167 | } |
| 1168 | } |
| 1169 | } |
| 1170 | |
Fred Shih | e7f82e2 | 2014-08-06 10:46:37 -0700 | [diff] [blame] | 1171 | bool CompilerDriver::CanEmbedReferenceTypeInCode(ClassReference* ref, |
| 1172 | bool* use_direct_ptr, |
| 1173 | uintptr_t* direct_type_ptr) { |
| 1174 | CHECK(ref != nullptr); |
| 1175 | CHECK(use_direct_ptr != nullptr); |
| 1176 | CHECK(direct_type_ptr != nullptr); |
| 1177 | |
| 1178 | ScopedObjectAccess soa(Thread::Current()); |
| 1179 | mirror::Class* reference_class = mirror::Reference::GetJavaLangRefReference(); |
Andreas Gampe | 928f72b | 2014-09-09 19:53:48 -0700 | [diff] [blame] | 1180 | bool is_initialized = false; |
Fred Shih | e7f82e2 | 2014-08-06 10:46:37 -0700 | [diff] [blame] | 1181 | bool unused_finalizable; |
| 1182 | // Make sure we have a finished Reference class object before attempting to use it. |
| 1183 | if (!CanEmbedTypeInCode(*reference_class->GetDexCache()->GetDexFile(), |
| 1184 | reference_class->GetDexTypeIndex(), &is_initialized, |
| 1185 | use_direct_ptr, direct_type_ptr, &unused_finalizable) || |
| 1186 | !is_initialized) { |
| 1187 | return false; |
| 1188 | } |
| 1189 | ref->first = &reference_class->GetDexFile(); |
| 1190 | ref->second = reference_class->GetDexClassDefIndex(); |
| 1191 | return true; |
| 1192 | } |
| 1193 | |
| 1194 | uint32_t CompilerDriver::GetReferenceSlowFlagOffset() const { |
| 1195 | ScopedObjectAccess soa(Thread::Current()); |
| 1196 | mirror::Class* klass = mirror::Reference::GetJavaLangRefReference(); |
| 1197 | DCHECK(klass->IsInitialized()); |
| 1198 | return klass->GetSlowPathFlagOffset().Uint32Value(); |
| 1199 | } |
| 1200 | |
| 1201 | uint32_t CompilerDriver::GetReferenceDisableFlagOffset() const { |
| 1202 | ScopedObjectAccess soa(Thread::Current()); |
| 1203 | mirror::Class* klass = mirror::Reference::GetJavaLangRefReference(); |
| 1204 | DCHECK(klass->IsInitialized()); |
| 1205 | return klass->GetDisableIntrinsicFlagOffset().Uint32Value(); |
| 1206 | } |
| 1207 | |
Vladimir Marko | 20f8559 | 2015-03-19 10:07:02 +0000 | [diff] [blame] | 1208 | DexCacheArraysLayout CompilerDriver::GetDexCacheArraysLayout(const DexFile* dex_file) { |
| 1209 | // Currently only image dex caches have fixed array layout. |
| 1210 | return IsImage() && GetSupportBootImageFixup() |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 1211 | ? DexCacheArraysLayout(GetInstructionSetPointerSize(instruction_set_), dex_file) |
Vladimir Marko | 20f8559 | 2015-03-19 10:07:02 +0000 | [diff] [blame] | 1212 | : DexCacheArraysLayout(); |
| 1213 | } |
| 1214 | |
Vladimir Marko | be0e546 | 2014-02-26 11:24:15 +0000 | [diff] [blame] | 1215 | void CompilerDriver::ProcessedInstanceField(bool resolved) { |
| 1216 | if (!resolved) { |
| 1217 | stats_->UnresolvedInstanceField(); |
| 1218 | } else { |
| 1219 | stats_->ResolvedInstanceField(); |
| 1220 | } |
| 1221 | } |
| 1222 | |
| 1223 | void CompilerDriver::ProcessedStaticField(bool resolved, bool local) { |
| 1224 | if (!resolved) { |
| 1225 | stats_->UnresolvedStaticField(); |
| 1226 | } else if (local) { |
| 1227 | stats_->ResolvedLocalStaticField(); |
| 1228 | } else { |
| 1229 | stats_->ResolvedStaticField(); |
| 1230 | } |
| 1231 | } |
| 1232 | |
Vladimir Marko | f096aad | 2014-01-23 15:51:58 +0000 | [diff] [blame] | 1233 | void CompilerDriver::ProcessedInvoke(InvokeType invoke_type, int flags) { |
| 1234 | stats_->ProcessedInvoke(invoke_type, flags); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1235 | } |
| 1236 | |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 1237 | ArtField* CompilerDriver::ComputeInstanceFieldInfo(uint32_t field_idx, |
| 1238 | const DexCompilationUnit* mUnit, bool is_put, |
| 1239 | const ScopedObjectAccess& soa) { |
Vladimir Marko | be0e546 | 2014-02-26 11:24:15 +0000 | [diff] [blame] | 1240 | // Try to resolve the field and compiling method's class. |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 1241 | ArtField* resolved_field; |
Vladimir Marko | be0e546 | 2014-02-26 11:24:15 +0000 | [diff] [blame] | 1242 | mirror::Class* referrer_class; |
| 1243 | mirror::DexCache* dex_cache; |
| 1244 | { |
Roland Levillain | 2b846ed | 2015-05-19 10:44:25 +0100 | [diff] [blame] | 1245 | StackHandleScope<2> hs(soa.Self()); |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 1246 | Handle<mirror::DexCache> dex_cache_handle( |
| 1247 | hs.NewHandle(mUnit->GetClassLinker()->FindDexCache(*mUnit->GetDexFile()))); |
| 1248 | Handle<mirror::ClassLoader> class_loader_handle( |
| 1249 | hs.NewHandle(soa.Decode<mirror::ClassLoader*>(mUnit->GetClassLoader()))); |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 1250 | resolved_field = |
| 1251 | ResolveField(soa, dex_cache_handle, class_loader_handle, mUnit, field_idx, false); |
| 1252 | referrer_class = resolved_field != nullptr |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 1253 | ? ResolveCompilingMethodsClass(soa, dex_cache_handle, class_loader_handle, mUnit) : nullptr; |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 1254 | dex_cache = dex_cache_handle.Get(); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1255 | } |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 1256 | bool can_link = false; |
Vladimir Marko | be0e546 | 2014-02-26 11:24:15 +0000 | [diff] [blame] | 1257 | if (resolved_field != nullptr && referrer_class != nullptr) { |
Vladimir Marko | be0e546 | 2014-02-26 11:24:15 +0000 | [diff] [blame] | 1258 | std::pair<bool, bool> fast_path = IsFastInstanceField( |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 1259 | dex_cache, referrer_class, resolved_field, field_idx); |
| 1260 | can_link = is_put ? fast_path.second : fast_path.first; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1261 | } |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 1262 | ProcessedInstanceField(can_link); |
| 1263 | return can_link ? resolved_field : nullptr; |
| 1264 | } |
| 1265 | |
| 1266 | bool CompilerDriver::ComputeInstanceFieldInfo(uint32_t field_idx, const DexCompilationUnit* mUnit, |
| 1267 | bool is_put, MemberOffset* field_offset, |
| 1268 | bool* is_volatile) { |
| 1269 | ScopedObjectAccess soa(Thread::Current()); |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 1270 | ArtField* resolved_field = ComputeInstanceFieldInfo(field_idx, mUnit, is_put, soa); |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 1271 | |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 1272 | if (resolved_field == nullptr) { |
Vladimir Marko | be0e546 | 2014-02-26 11:24:15 +0000 | [diff] [blame] | 1273 | // Conservative defaults. |
| 1274 | *is_volatile = true; |
| 1275 | *field_offset = MemberOffset(static_cast<size_t>(-1)); |
Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 1276 | return false; |
| 1277 | } else { |
| 1278 | *is_volatile = resolved_field->IsVolatile(); |
| 1279 | *field_offset = resolved_field->GetOffset(); |
| 1280 | return true; |
Vladimir Marko | be0e546 | 2014-02-26 11:24:15 +0000 | [diff] [blame] | 1281 | } |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1282 | } |
| 1283 | |
| 1284 | bool CompilerDriver::ComputeStaticFieldInfo(uint32_t field_idx, const DexCompilationUnit* mUnit, |
Vladimir Marko | be0e546 | 2014-02-26 11:24:15 +0000 | [diff] [blame] | 1285 | bool is_put, MemberOffset* field_offset, |
| 1286 | uint32_t* storage_index, bool* is_referrers_class, |
Nicolas Geoffray | 19a19cf | 2014-10-22 16:07:05 +0100 | [diff] [blame] | 1287 | bool* is_volatile, bool* is_initialized, |
| 1288 | Primitive::Type* type) { |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1289 | ScopedObjectAccess soa(Thread::Current()); |
Vladimir Marko | be0e546 | 2014-02-26 11:24:15 +0000 | [diff] [blame] | 1290 | // Try to resolve the field and compiling method's class. |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 1291 | ArtField* resolved_field; |
Vladimir Marko | be0e546 | 2014-02-26 11:24:15 +0000 | [diff] [blame] | 1292 | mirror::Class* referrer_class; |
| 1293 | mirror::DexCache* dex_cache; |
| 1294 | { |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 1295 | StackHandleScope<2> hs(soa.Self()); |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 1296 | Handle<mirror::DexCache> dex_cache_handle( |
| 1297 | hs.NewHandle(mUnit->GetClassLinker()->FindDexCache(*mUnit->GetDexFile()))); |
| 1298 | Handle<mirror::ClassLoader> class_loader_handle( |
| 1299 | hs.NewHandle(soa.Decode<mirror::ClassLoader*>(mUnit->GetClassLoader()))); |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 1300 | resolved_field = |
| 1301 | ResolveField(soa, dex_cache_handle, class_loader_handle, mUnit, field_idx, true); |
| 1302 | referrer_class = resolved_field != nullptr |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 1303 | ? ResolveCompilingMethodsClass(soa, dex_cache_handle, class_loader_handle, mUnit) : nullptr; |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 1304 | dex_cache = dex_cache_handle.Get(); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1305 | } |
Vladimir Marko | be0e546 | 2014-02-26 11:24:15 +0000 | [diff] [blame] | 1306 | bool result = false; |
| 1307 | if (resolved_field != nullptr && referrer_class != nullptr) { |
| 1308 | *is_volatile = IsFieldVolatile(resolved_field); |
| 1309 | std::pair<bool, bool> fast_path = IsFastStaticField( |
Vladimir Marko | 66c6d7b | 2014-10-16 15:41:48 +0100 | [diff] [blame] | 1310 | dex_cache, referrer_class, resolved_field, field_idx, storage_index); |
Vladimir Marko | be0e546 | 2014-02-26 11:24:15 +0000 | [diff] [blame] | 1311 | result = is_put ? fast_path.second : fast_path.first; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1312 | } |
Vladimir Marko | 66c6d7b | 2014-10-16 15:41:48 +0100 | [diff] [blame] | 1313 | if (result) { |
| 1314 | *field_offset = GetFieldOffset(resolved_field); |
| 1315 | *is_referrers_class = IsStaticFieldInReferrerClass(referrer_class, resolved_field); |
| 1316 | // *is_referrers_class == true implies no worrying about class initialization. |
| 1317 | *is_initialized = (*is_referrers_class) || |
| 1318 | (IsStaticFieldsClassInitialized(referrer_class, resolved_field) && |
| 1319 | CanAssumeTypeIsPresentInDexCache(*mUnit->GetDexFile(), *storage_index)); |
Nicolas Geoffray | 19a19cf | 2014-10-22 16:07:05 +0100 | [diff] [blame] | 1320 | *type = resolved_field->GetTypeAsPrimitiveType(); |
Vladimir Marko | 66c6d7b | 2014-10-16 15:41:48 +0100 | [diff] [blame] | 1321 | } else { |
Vladimir Marko | be0e546 | 2014-02-26 11:24:15 +0000 | [diff] [blame] | 1322 | // Conservative defaults. |
| 1323 | *is_volatile = true; |
| 1324 | *field_offset = MemberOffset(static_cast<size_t>(-1)); |
| 1325 | *storage_index = -1; |
| 1326 | *is_referrers_class = false; |
| 1327 | *is_initialized = false; |
Nicolas Geoffray | 19a19cf | 2014-10-22 16:07:05 +0100 | [diff] [blame] | 1328 | *type = Primitive::kPrimVoid; |
Vladimir Marko | be0e546 | 2014-02-26 11:24:15 +0000 | [diff] [blame] | 1329 | } |
| 1330 | ProcessedStaticField(result, *is_referrers_class); |
| 1331 | return result; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1332 | } |
| 1333 | |
Ian Rogers | 83883d7 | 2013-10-21 21:07:24 -0700 | [diff] [blame] | 1334 | void CompilerDriver::GetCodeAndMethodForDirectCall(InvokeType* type, InvokeType sharp_type, |
| 1335 | bool no_guarantee_of_dex_cache_entry, |
Igor Murashkin | d6dee67 | 2014-10-16 18:36:16 -0700 | [diff] [blame] | 1336 | const mirror::Class* referrer_class, |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 1337 | mirror::ArtMethod* method, |
Vladimir Marko | f096aad | 2014-01-23 15:51:58 +0000 | [diff] [blame] | 1338 | int* stats_flags, |
Ian Rogers | 83883d7 | 2013-10-21 21:07:24 -0700 | [diff] [blame] | 1339 | MethodReference* target_method, |
Ian Rogers | 65ec92c | 2013-09-06 10:49:58 -0700 | [diff] [blame] | 1340 | uintptr_t* direct_code, |
| 1341 | uintptr_t* direct_method) { |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1342 | // For direct and static methods compute possible direct_code and direct_method values, ie |
| 1343 | // an address for the Method* being invoked and an address of the code for that Method*. |
| 1344 | // For interface calls compute a value for direct_method that is the interface method being |
| 1345 | // invoked, so this can be passed to the out-of-line runtime support code. |
Ian Rogers | 65ec92c | 2013-09-06 10:49:58 -0700 | [diff] [blame] | 1346 | *direct_code = 0; |
| 1347 | *direct_method = 0; |
Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 1348 | Runtime* const runtime = Runtime::Current(); |
| 1349 | gc::Heap* const heap = runtime->GetHeap(); |
Igor Murashkin | d6dee67 | 2014-10-16 18:36:16 -0700 | [diff] [blame] | 1350 | bool use_dex_cache = GetCompilerOptions().GetCompilePic(); // Off by default |
Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 1351 | const bool compiling_boot = heap->IsCompilingBoot(); |
Alex Light | a59dd80 | 2014-07-02 16:28:08 -0700 | [diff] [blame] | 1352 | // TODO This is somewhat hacky. We should refactor all of this invoke codepath. |
| 1353 | const bool force_relocations = (compiling_boot || |
| 1354 | GetCompilerOptions().GetIncludePatchInformation()); |
Elliott Hughes | 956af0f | 2014-12-11 14:34:28 -0800 | [diff] [blame] | 1355 | if (sharp_type != kStatic && sharp_type != kDirect) { |
| 1356 | return; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1357 | } |
Elliott Hughes | 956af0f | 2014-12-11 14:34:28 -0800 | [diff] [blame] | 1358 | // TODO: support patching on all architectures. |
| 1359 | use_dex_cache = use_dex_cache || (force_relocations && !support_boot_image_fixup_); |
Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 1360 | mirror::Class* declaring_class = method->GetDeclaringClass(); |
| 1361 | bool method_code_in_boot = declaring_class->GetClassLoader() == nullptr; |
Ian Rogers | 83883d7 | 2013-10-21 21:07:24 -0700 | [diff] [blame] | 1362 | if (!use_dex_cache) { |
| 1363 | if (!method_code_in_boot) { |
| 1364 | use_dex_cache = true; |
| 1365 | } else { |
Brian Carlstrom | 14247b6 | 2015-01-31 21:35:32 -0800 | [diff] [blame] | 1366 | bool has_clinit_trampoline = |
Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 1367 | method->IsStatic() && !declaring_class->IsInitialized(); |
| 1368 | if (has_clinit_trampoline && declaring_class != referrer_class) { |
Ian Rogers | 83883d7 | 2013-10-21 21:07:24 -0700 | [diff] [blame] | 1369 | // Ensure we run the clinit trampoline unless we are invoking a static method in the same |
| 1370 | // class. |
| 1371 | use_dex_cache = true; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1372 | } |
| 1373 | } |
Ian Rogers | 83883d7 | 2013-10-21 21:07:24 -0700 | [diff] [blame] | 1374 | } |
Mathieu Chartier | 28a3588 | 2015-02-26 18:28:07 -0800 | [diff] [blame] | 1375 | if (runtime->UseJit()) { |
| 1376 | // If we are the JIT, then don't allow a direct call to the interpreter bridge since this will |
| 1377 | // never be updated even after we compile the method. |
| 1378 | if (runtime->GetClassLinker()->IsQuickToInterpreterBridge( |
| 1379 | reinterpret_cast<const void*>(compiler_->GetEntryPointOf(method)))) { |
| 1380 | use_dex_cache = true; |
| 1381 | } |
| 1382 | } |
Vladimir Marko | f096aad | 2014-01-23 15:51:58 +0000 | [diff] [blame] | 1383 | if (method_code_in_boot) { |
| 1384 | *stats_flags |= kFlagDirectCallToBoot | kFlagDirectMethodToBoot; |
Ian Rogers | 83883d7 | 2013-10-21 21:07:24 -0700 | [diff] [blame] | 1385 | } |
Alex Light | a59dd80 | 2014-07-02 16:28:08 -0700 | [diff] [blame] | 1386 | if (!use_dex_cache && force_relocations) { |
Jeff Hao | a0acc2d | 2015-01-27 11:22:04 -0800 | [diff] [blame] | 1387 | bool is_in_image; |
| 1388 | if (IsImage()) { |
| 1389 | is_in_image = IsImageClass(method->GetDeclaringClassDescriptor()); |
| 1390 | } else { |
| 1391 | is_in_image = instruction_set_ != kX86 && instruction_set_ != kX86_64 && |
| 1392 | Runtime::Current()->GetHeap()->FindSpaceFromObject(method->GetDeclaringClass(), |
| 1393 | false)->IsImageSpace(); |
| 1394 | } |
| 1395 | if (!is_in_image) { |
Ian Rogers | 83883d7 | 2013-10-21 21:07:24 -0700 | [diff] [blame] | 1396 | // We can only branch directly to Methods that are resolved in the DexCache. |
| 1397 | // Otherwise we won't invoke the resolution trampoline. |
| 1398 | use_dex_cache = true; |
| 1399 | } |
| 1400 | } |
| 1401 | // The method is defined not within this dex file. We need a dex cache slot within the current |
| 1402 | // dex file or direct pointers. |
| 1403 | bool must_use_direct_pointers = false; |
Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 1404 | mirror::DexCache* dex_cache = declaring_class->GetDexCache(); |
| 1405 | if (target_method->dex_file == dex_cache->GetDexFile() && |
| 1406 | !(runtime->UseJit() && dex_cache->GetResolvedMethod(method->GetDexMethodIndex()) == nullptr)) { |
Ian Rogers | 83883d7 | 2013-10-21 21:07:24 -0700 | [diff] [blame] | 1407 | target_method->dex_method_index = method->GetDexMethodIndex(); |
| 1408 | } else { |
Ian Rogers | 83883d7 | 2013-10-21 21:07:24 -0700 | [diff] [blame] | 1409 | if (no_guarantee_of_dex_cache_entry) { |
| 1410 | // See if the method is also declared in this dex cache. |
Ian Rogers | e0a02da | 2014-12-02 14:10:53 -0800 | [diff] [blame] | 1411 | uint32_t dex_method_idx = |
| 1412 | method->FindDexMethodIndexInOtherDexFile(*target_method->dex_file, |
| 1413 | target_method->dex_method_index); |
Ian Rogers | 83883d7 | 2013-10-21 21:07:24 -0700 | [diff] [blame] | 1414 | if (dex_method_idx != DexFile::kDexNoIndex) { |
| 1415 | target_method->dex_method_index = dex_method_idx; |
| 1416 | } else { |
Alex Light | a59dd80 | 2014-07-02 16:28:08 -0700 | [diff] [blame] | 1417 | if (force_relocations && !use_dex_cache) { |
Jeff Hao | 49161ce | 2014-03-12 11:05:25 -0700 | [diff] [blame] | 1418 | target_method->dex_method_index = method->GetDexMethodIndex(); |
Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 1419 | target_method->dex_file = dex_cache->GetDexFile(); |
Jeff Hao | 49161ce | 2014-03-12 11:05:25 -0700 | [diff] [blame] | 1420 | } |
Ian Rogers | 83883d7 | 2013-10-21 21:07:24 -0700 | [diff] [blame] | 1421 | must_use_direct_pointers = true; |
| 1422 | } |
| 1423 | } |
| 1424 | } |
| 1425 | if (use_dex_cache) { |
| 1426 | if (must_use_direct_pointers) { |
| 1427 | // Fail. Test above showed the only safe dispatch was via the dex cache, however, the direct |
| 1428 | // pointers are required as the dex cache lacks an appropriate entry. |
| 1429 | VLOG(compiler) << "Dex cache devirtualization failed for: " << PrettyMethod(method); |
| 1430 | } else { |
| 1431 | *type = sharp_type; |
| 1432 | } |
| 1433 | } else { |
Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 1434 | bool method_in_image = heap->FindSpaceFromObject(method, false)->IsImageSpace(); |
Mathieu Chartier | 6ced409 | 2015-02-27 16:10:48 -0800 | [diff] [blame] | 1435 | if (method_in_image || compiling_boot || runtime->UseJit()) { |
Alex Light | a59dd80 | 2014-07-02 16:28:08 -0700 | [diff] [blame] | 1436 | // We know we must be able to get to the method in the image, so use that pointer. |
Mathieu Chartier | 6ced409 | 2015-02-27 16:10:48 -0800 | [diff] [blame] | 1437 | // In the case where we are the JIT, we can always use direct pointers since we know where |
| 1438 | // the method and its code are / will be. We don't sharpen to interpreter bridge since we |
| 1439 | // check IsQuickToInterpreterBridge above. |
Vladimir Marko | a51a0b0 | 2014-05-21 12:08:39 +0100 | [diff] [blame] | 1440 | CHECK(!method->IsAbstract()); |
Ian Rogers | 83883d7 | 2013-10-21 21:07:24 -0700 | [diff] [blame] | 1441 | *type = sharp_type; |
Alex Light | a59dd80 | 2014-07-02 16:28:08 -0700 | [diff] [blame] | 1442 | *direct_method = force_relocations ? -1 : reinterpret_cast<uintptr_t>(method); |
| 1443 | *direct_code = force_relocations ? -1 : compiler_->GetEntryPointOf(method); |
Brian Carlstrom | 14247b6 | 2015-01-31 21:35:32 -0800 | [diff] [blame] | 1444 | target_method->dex_file = method->GetDeclaringClass()->GetDexCache()->GetDexFile(); |
Vladimir Marko | a51a0b0 | 2014-05-21 12:08:39 +0100 | [diff] [blame] | 1445 | target_method->dex_method_index = method->GetDexMethodIndex(); |
| 1446 | } else if (!must_use_direct_pointers) { |
| 1447 | // Set the code and rely on the dex cache for the method. |
| 1448 | *type = sharp_type; |
Alex Light | a59dd80 | 2014-07-02 16:28:08 -0700 | [diff] [blame] | 1449 | if (force_relocations) { |
| 1450 | *direct_code = -1; |
Brian Carlstrom | 14247b6 | 2015-01-31 21:35:32 -0800 | [diff] [blame] | 1451 | target_method->dex_file = method->GetDeclaringClass()->GetDexCache()->GetDexFile(); |
Alex Light | a59dd80 | 2014-07-02 16:28:08 -0700 | [diff] [blame] | 1452 | target_method->dex_method_index = method->GetDexMethodIndex(); |
| 1453 | } else { |
| 1454 | *direct_code = compiler_->GetEntryPointOf(method); |
| 1455 | } |
Ian Rogers | 83883d7 | 2013-10-21 21:07:24 -0700 | [diff] [blame] | 1456 | } else { |
Vladimir Marko | a51a0b0 | 2014-05-21 12:08:39 +0100 | [diff] [blame] | 1457 | // Direct pointers were required but none were available. |
| 1458 | VLOG(compiler) << "Dex cache devirtualization failed for: " << PrettyMethod(method); |
Ian Rogers | 83883d7 | 2013-10-21 21:07:24 -0700 | [diff] [blame] | 1459 | } |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1460 | } |
| 1461 | } |
| 1462 | |
| 1463 | bool CompilerDriver::ComputeInvokeInfo(const DexCompilationUnit* mUnit, const uint32_t dex_pc, |
Ian Rogers | 65ec92c | 2013-09-06 10:49:58 -0700 | [diff] [blame] | 1464 | bool update_stats, bool enable_devirtualization, |
| 1465 | InvokeType* invoke_type, MethodReference* target_method, |
| 1466 | int* vtable_idx, uintptr_t* direct_code, |
| 1467 | uintptr_t* direct_method) { |
Vladimir Marko | f096aad | 2014-01-23 15:51:58 +0000 | [diff] [blame] | 1468 | InvokeType orig_invoke_type = *invoke_type; |
| 1469 | int stats_flags = 0; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1470 | ScopedObjectAccess soa(Thread::Current()); |
Vladimir Marko | f096aad | 2014-01-23 15:51:58 +0000 | [diff] [blame] | 1471 | // Try to resolve the method and compiling method's class. |
| 1472 | mirror::ArtMethod* resolved_method; |
| 1473 | mirror::Class* referrer_class; |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 1474 | StackHandleScope<3> hs(soa.Self()); |
| 1475 | Handle<mirror::DexCache> dex_cache( |
| 1476 | hs.NewHandle(mUnit->GetClassLinker()->FindDexCache(*mUnit->GetDexFile()))); |
| 1477 | Handle<mirror::ClassLoader> class_loader(hs.NewHandle( |
| 1478 | soa.Decode<mirror::ClassLoader*>(mUnit->GetClassLoader()))); |
Vladimir Marko | f096aad | 2014-01-23 15:51:58 +0000 | [diff] [blame] | 1479 | { |
| 1480 | uint32_t method_idx = target_method->dex_method_index; |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 1481 | Handle<mirror::ArtMethod> resolved_method_handle(hs.NewHandle( |
| 1482 | ResolveMethod(soa, dex_cache, class_loader, mUnit, method_idx, orig_invoke_type))); |
| 1483 | referrer_class = (resolved_method_handle.Get() != nullptr) |
Vladimir Marko | f096aad | 2014-01-23 15:51:58 +0000 | [diff] [blame] | 1484 | ? ResolveCompilingMethodsClass(soa, dex_cache, class_loader, mUnit) : nullptr; |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 1485 | resolved_method = resolved_method_handle.Get(); |
Vladimir Marko | f096aad | 2014-01-23 15:51:58 +0000 | [diff] [blame] | 1486 | } |
| 1487 | bool result = false; |
| 1488 | if (resolved_method != nullptr) { |
| 1489 | *vtable_idx = GetResolvedMethodVTableIndex(resolved_method, orig_invoke_type); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1490 | |
Nicolas Geoffray | e53798a | 2014-12-01 10:31:54 +0000 | [diff] [blame] | 1491 | if (enable_devirtualization && mUnit->GetVerifiedMethod() != nullptr) { |
Vladimir Marko | f096aad | 2014-01-23 15:51:58 +0000 | [diff] [blame] | 1492 | const MethodReference* devirt_target = mUnit->GetVerifiedMethod()->GetDevirtTarget(dex_pc); |
| 1493 | |
| 1494 | stats_flags = IsFastInvoke( |
| 1495 | soa, dex_cache, class_loader, mUnit, referrer_class, resolved_method, |
| 1496 | invoke_type, target_method, devirt_target, direct_code, direct_method); |
| 1497 | result = stats_flags != 0; |
| 1498 | } else { |
| 1499 | // Devirtualization not enabled. Inline IsFastInvoke(), dropping the devirtualization parts. |
| 1500 | if (UNLIKELY(referrer_class == nullptr) || |
| 1501 | UNLIKELY(!referrer_class->CanAccessResolvedMethod(resolved_method->GetDeclaringClass(), |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 1502 | resolved_method, dex_cache.Get(), |
Vladimir Marko | f096aad | 2014-01-23 15:51:58 +0000 | [diff] [blame] | 1503 | target_method->dex_method_index)) || |
| 1504 | *invoke_type == kSuper) { |
| 1505 | // Slow path. (Without devirtualization, all super calls go slow path as well.) |
| 1506 | } else { |
| 1507 | // Sharpening failed so generate a regular resolved method dispatch. |
| 1508 | stats_flags = kFlagMethodResolved; |
| 1509 | GetCodeAndMethodForDirectCall(invoke_type, *invoke_type, false, referrer_class, resolved_method, |
| 1510 | &stats_flags, target_method, direct_code, direct_method); |
| 1511 | result = true; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1512 | } |
| 1513 | } |
| 1514 | } |
Vladimir Marko | f096aad | 2014-01-23 15:51:58 +0000 | [diff] [blame] | 1515 | if (!result) { |
| 1516 | // Conservative defaults. |
| 1517 | *vtable_idx = -1; |
| 1518 | *direct_code = 0u; |
| 1519 | *direct_method = 0u; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1520 | } |
| 1521 | if (update_stats) { |
Vladimir Marko | f096aad | 2014-01-23 15:51:58 +0000 | [diff] [blame] | 1522 | ProcessedInvoke(orig_invoke_type, stats_flags); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1523 | } |
Vladimir Marko | f096aad | 2014-01-23 15:51:58 +0000 | [diff] [blame] | 1524 | return result; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1525 | } |
| 1526 | |
Vladimir Marko | 2730db0 | 2014-01-27 11:15:17 +0000 | [diff] [blame] | 1527 | const VerifiedMethod* CompilerDriver::GetVerifiedMethod(const DexFile* dex_file, |
| 1528 | uint32_t method_idx) const { |
| 1529 | MethodReference ref(dex_file, method_idx); |
| 1530 | return verification_results_->GetVerifiedMethod(ref); |
| 1531 | } |
| 1532 | |
| 1533 | bool CompilerDriver::IsSafeCast(const DexCompilationUnit* mUnit, uint32_t dex_pc) { |
Andreas Gampe | 2ed8def | 2014-08-28 14:41:02 -0700 | [diff] [blame] | 1534 | if (!compiler_options_->IsVerificationEnabled()) { |
| 1535 | // If we didn't verify, every cast has to be treated as non-safe. |
| 1536 | return false; |
| 1537 | } |
Vladimir Marko | 2730db0 | 2014-01-27 11:15:17 +0000 | [diff] [blame] | 1538 | DCHECK(mUnit->GetVerifiedMethod() != nullptr); |
| 1539 | bool result = mUnit->GetVerifiedMethod()->IsSafeCast(dex_pc); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1540 | if (result) { |
| 1541 | stats_->SafeCast(); |
| 1542 | } else { |
| 1543 | stats_->NotASafeCast(); |
| 1544 | } |
| 1545 | return result; |
| 1546 | } |
| 1547 | |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1548 | class ParallelCompilationManager { |
| 1549 | public: |
| 1550 | typedef void Callback(const ParallelCompilationManager* manager, size_t index); |
| 1551 | |
| 1552 | ParallelCompilationManager(ClassLinker* class_linker, |
| 1553 | jobject class_loader, |
| 1554 | CompilerDriver* compiler, |
| 1555 | const DexFile* dex_file, |
Andreas Gampe | de7b436 | 2014-07-28 18:38:57 -0700 | [diff] [blame] | 1556 | const std::vector<const DexFile*>& dex_files, |
Ian Rogers | 3d50407 | 2014-03-01 09:16:49 -0800 | [diff] [blame] | 1557 | ThreadPool* thread_pool) |
Mathieu Chartier | 0b3eb39 | 2013-08-23 14:56:59 -0700 | [diff] [blame] | 1558 | : index_(0), |
| 1559 | class_linker_(class_linker), |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1560 | class_loader_(class_loader), |
| 1561 | compiler_(compiler), |
| 1562 | dex_file_(dex_file), |
Andreas Gampe | de7b436 | 2014-07-28 18:38:57 -0700 | [diff] [blame] | 1563 | dex_files_(dex_files), |
Ian Rogers | 3d50407 | 2014-03-01 09:16:49 -0800 | [diff] [blame] | 1564 | thread_pool_(thread_pool) {} |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1565 | |
| 1566 | ClassLinker* GetClassLinker() const { |
Andreas Gampe | 2ed8def | 2014-08-28 14:41:02 -0700 | [diff] [blame] | 1567 | CHECK(class_linker_ != nullptr); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1568 | return class_linker_; |
| 1569 | } |
| 1570 | |
| 1571 | jobject GetClassLoader() const { |
| 1572 | return class_loader_; |
| 1573 | } |
| 1574 | |
| 1575 | CompilerDriver* GetCompiler() const { |
Andreas Gampe | 2ed8def | 2014-08-28 14:41:02 -0700 | [diff] [blame] | 1576 | CHECK(compiler_ != nullptr); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1577 | return compiler_; |
| 1578 | } |
| 1579 | |
| 1580 | const DexFile* GetDexFile() const { |
Andreas Gampe | 2ed8def | 2014-08-28 14:41:02 -0700 | [diff] [blame] | 1581 | CHECK(dex_file_ != nullptr); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1582 | return dex_file_; |
| 1583 | } |
| 1584 | |
Andreas Gampe | de7b436 | 2014-07-28 18:38:57 -0700 | [diff] [blame] | 1585 | const std::vector<const DexFile*>& GetDexFiles() const { |
| 1586 | return dex_files_; |
| 1587 | } |
| 1588 | |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1589 | void ForAll(size_t begin, size_t end, Callback callback, size_t work_units) { |
| 1590 | Thread* self = Thread::Current(); |
| 1591 | self->AssertNoPendingException(); |
| 1592 | CHECK_GT(work_units, 0U); |
| 1593 | |
Ian Rogers | 3e5cf30 | 2014-05-20 16:40:37 -0700 | [diff] [blame] | 1594 | index_.StoreRelaxed(begin); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1595 | for (size_t i = 0; i < work_units; ++i) { |
Sebastien Hertz | 501baec | 2013-12-13 12:02:36 +0100 | [diff] [blame] | 1596 | thread_pool_->AddTask(self, new ForAllClosure(this, end, callback)); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1597 | } |
| 1598 | thread_pool_->StartWorkers(self); |
| 1599 | |
| 1600 | // Ensure we're suspended while we're blocked waiting for the other threads to finish (worker |
| 1601 | // thread destructor's called below perform join). |
| 1602 | CHECK_NE(self->GetState(), kRunnable); |
| 1603 | |
| 1604 | // Wait for all the worker threads to finish. |
| 1605 | thread_pool_->Wait(self, true, false); |
| 1606 | } |
| 1607 | |
Mathieu Chartier | 0b3eb39 | 2013-08-23 14:56:59 -0700 | [diff] [blame] | 1608 | size_t NextIndex() { |
Ian Rogers | 3e5cf30 | 2014-05-20 16:40:37 -0700 | [diff] [blame] | 1609 | return index_.FetchAndAddSequentiallyConsistent(1); |
Mathieu Chartier | 0b3eb39 | 2013-08-23 14:56:59 -0700 | [diff] [blame] | 1610 | } |
| 1611 | |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1612 | private: |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1613 | class ForAllClosure : public Task { |
| 1614 | public: |
Mathieu Chartier | 0b3eb39 | 2013-08-23 14:56:59 -0700 | [diff] [blame] | 1615 | ForAllClosure(ParallelCompilationManager* manager, size_t end, Callback* callback) |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1616 | : manager_(manager), |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1617 | end_(end), |
Mathieu Chartier | 0b3eb39 | 2013-08-23 14:56:59 -0700 | [diff] [blame] | 1618 | callback_(callback) {} |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1619 | |
| 1620 | virtual void Run(Thread* self) { |
Mathieu Chartier | 0b3eb39 | 2013-08-23 14:56:59 -0700 | [diff] [blame] | 1621 | while (true) { |
| 1622 | const size_t index = manager_->NextIndex(); |
| 1623 | if (UNLIKELY(index >= end_)) { |
| 1624 | break; |
| 1625 | } |
| 1626 | callback_(manager_, index); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1627 | self->AssertNoPendingException(); |
| 1628 | } |
| 1629 | } |
| 1630 | |
| 1631 | virtual void Finalize() { |
| 1632 | delete this; |
| 1633 | } |
Brian Carlstrom | 0cd7ec2 | 2013-07-17 23:40:20 -0700 | [diff] [blame] | 1634 | |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1635 | private: |
Mathieu Chartier | 0b3eb39 | 2013-08-23 14:56:59 -0700 | [diff] [blame] | 1636 | ParallelCompilationManager* const manager_; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1637 | const size_t end_; |
Bernhard Rosenkränzer | 4605362 | 2013-12-12 02:15:52 +0100 | [diff] [blame] | 1638 | Callback* const callback_; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1639 | }; |
| 1640 | |
Mathieu Chartier | 0b3eb39 | 2013-08-23 14:56:59 -0700 | [diff] [blame] | 1641 | AtomicInteger index_; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1642 | ClassLinker* const class_linker_; |
| 1643 | const jobject class_loader_; |
| 1644 | CompilerDriver* const compiler_; |
| 1645 | const DexFile* const dex_file_; |
Andreas Gampe | de7b436 | 2014-07-28 18:38:57 -0700 | [diff] [blame] | 1646 | const std::vector<const DexFile*>& dex_files_; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1647 | ThreadPool* const thread_pool_; |
Mathieu Chartier | 0b3eb39 | 2013-08-23 14:56:59 -0700 | [diff] [blame] | 1648 | |
| 1649 | DISALLOW_COPY_AND_ASSIGN(ParallelCompilationManager); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1650 | }; |
| 1651 | |
Jeff Hao | 0e49b42 | 2013-11-08 12:16:56 -0800 | [diff] [blame] | 1652 | // A fast version of SkipClass above if the class pointer is available |
| 1653 | // that avoids the expensive FindInClassPath search. |
| 1654 | static bool SkipClass(jobject class_loader, const DexFile& dex_file, mirror::Class* klass) |
| 1655 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
Andreas Gampe | 2ed8def | 2014-08-28 14:41:02 -0700 | [diff] [blame] | 1656 | DCHECK(klass != nullptr); |
Jeff Hao | 0e49b42 | 2013-11-08 12:16:56 -0800 | [diff] [blame] | 1657 | const DexFile& original_dex_file = *klass->GetDexCache()->GetDexFile(); |
| 1658 | if (&dex_file != &original_dex_file) { |
Andreas Gampe | 2ed8def | 2014-08-28 14:41:02 -0700 | [diff] [blame] | 1659 | if (class_loader == nullptr) { |
Jeff Hao | 0e49b42 | 2013-11-08 12:16:56 -0800 | [diff] [blame] | 1660 | LOG(WARNING) << "Skipping class " << PrettyDescriptor(klass) << " from " |
| 1661 | << dex_file.GetLocation() << " previously found in " |
| 1662 | << original_dex_file.GetLocation(); |
| 1663 | } |
| 1664 | return true; |
| 1665 | } |
| 1666 | return false; |
| 1667 | } |
| 1668 | |
Mathieu Chartier | 70b6348 | 2014-06-27 17:19:04 -0700 | [diff] [blame] | 1669 | static void CheckAndClearResolveException(Thread* self) |
| 1670 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
| 1671 | CHECK(self->IsExceptionPending()); |
Nicolas Geoffray | 14691c5 | 2015-03-05 10:40:17 +0000 | [diff] [blame] | 1672 | mirror::Throwable* exception = self->GetException(); |
Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 1673 | std::string temp; |
| 1674 | const char* descriptor = exception->GetClass()->GetDescriptor(&temp); |
| 1675 | const char* expected_exceptions[] = { |
| 1676 | "Ljava/lang/IllegalAccessError;", |
| 1677 | "Ljava/lang/IncompatibleClassChangeError;", |
| 1678 | "Ljava/lang/InstantiationError;", |
Brian Carlstrom | 898fcb5 | 2014-08-25 23:07:30 -0700 | [diff] [blame] | 1679 | "Ljava/lang/LinkageError;", |
Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 1680 | "Ljava/lang/NoClassDefFoundError;", |
| 1681 | "Ljava/lang/NoSuchFieldError;", |
| 1682 | "Ljava/lang/NoSuchMethodError;" |
| 1683 | }; |
| 1684 | bool found = false; |
| 1685 | for (size_t i = 0; (found == false) && (i < arraysize(expected_exceptions)); ++i) { |
| 1686 | if (strcmp(descriptor, expected_exceptions[i]) == 0) { |
| 1687 | found = true; |
| 1688 | } |
| 1689 | } |
| 1690 | if (!found) { |
Brian Carlstrom | 898fcb5 | 2014-08-25 23:07:30 -0700 | [diff] [blame] | 1691 | LOG(FATAL) << "Unexpected exception " << exception->Dump(); |
Mathieu Chartier | 70b6348 | 2014-06-27 17:19:04 -0700 | [diff] [blame] | 1692 | } |
| 1693 | self->ClearException(); |
| 1694 | } |
| 1695 | |
Ian Rogers | e6bb3b2 | 2013-08-19 21:51:45 -0700 | [diff] [blame] | 1696 | static void ResolveClassFieldsAndMethods(const ParallelCompilationManager* manager, |
| 1697 | size_t class_def_index) |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1698 | LOCKS_EXCLUDED(Locks::mutator_lock_) { |
Ian Rogers | 8f3c9ae | 2013-08-20 17:26:41 -0700 | [diff] [blame] | 1699 | ATRACE_CALL(); |
Ian Rogers | be7149f | 2013-08-20 09:29:39 -0700 | [diff] [blame] | 1700 | Thread* self = Thread::Current(); |
| 1701 | jobject jclass_loader = manager->GetClassLoader(); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1702 | const DexFile& dex_file = *manager->GetDexFile(); |
Ian Rogers | be7149f | 2013-08-20 09:29:39 -0700 | [diff] [blame] | 1703 | ClassLinker* class_linker = manager->GetClassLinker(); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1704 | |
Ian Rogers | e6bb3b2 | 2013-08-19 21:51:45 -0700 | [diff] [blame] | 1705 | // If an instance field is final then we need to have a barrier on the return, static final |
| 1706 | // fields are assigned within the lock held for class initialization. Conservatively assume |
| 1707 | // constructor barriers are always required. |
| 1708 | bool requires_constructor_barrier = true; |
| 1709 | |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1710 | // Method and Field are the worst. We can't resolve without either |
| 1711 | // context from the code use (to disambiguate virtual vs direct |
| 1712 | // method and instance vs static field) or from class |
| 1713 | // definitions. While the compiler will resolve what it can as it |
| 1714 | // needs it, here we try to resolve fields and methods used in class |
| 1715 | // definitions, since many of them many never be referenced by |
| 1716 | // generated code. |
| 1717 | const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index); |
Ian Rogers | 68b5685 | 2014-08-29 20:19:11 -0700 | [diff] [blame] | 1718 | ScopedObjectAccess soa(self); |
| 1719 | StackHandleScope<2> hs(soa.Self()); |
| 1720 | Handle<mirror::ClassLoader> class_loader( |
| 1721 | hs.NewHandle(soa.Decode<mirror::ClassLoader*>(jclass_loader))); |
| 1722 | Handle<mirror::DexCache> dex_cache(hs.NewHandle(class_linker->FindDexCache(dex_file))); |
| 1723 | // Resolve the class. |
| 1724 | mirror::Class* klass = class_linker->ResolveType(dex_file, class_def.class_idx_, dex_cache, |
| 1725 | class_loader); |
| 1726 | bool resolve_fields_and_methods; |
| 1727 | if (klass == nullptr) { |
| 1728 | // Class couldn't be resolved, for example, super-class is in a different dex file. Don't |
| 1729 | // attempt to resolve methods and fields when there is no declaring class. |
| 1730 | CheckAndClearResolveException(soa.Self()); |
| 1731 | resolve_fields_and_methods = false; |
| 1732 | } else { |
| 1733 | // We successfully resolved a class, should we skip it? |
| 1734 | if (SkipClass(jclass_loader, dex_file, klass)) { |
| 1735 | return; |
Brian Carlstrom | cb5f5e5 | 2013-09-23 17:48:16 -0700 | [diff] [blame] | 1736 | } |
Ian Rogers | 68b5685 | 2014-08-29 20:19:11 -0700 | [diff] [blame] | 1737 | // We want to resolve the methods and fields eagerly. |
| 1738 | resolve_fields_and_methods = true; |
| 1739 | } |
| 1740 | // Note the class_data pointer advances through the headers, |
| 1741 | // static fields, instance fields, direct methods, and virtual |
| 1742 | // methods. |
Ian Rogers | 1373595 | 2014-10-08 12:43:28 -0700 | [diff] [blame] | 1743 | const uint8_t* class_data = dex_file.GetClassData(class_def); |
Andreas Gampe | 2ed8def | 2014-08-28 14:41:02 -0700 | [diff] [blame] | 1744 | if (class_data == nullptr) { |
Ian Rogers | 68b5685 | 2014-08-29 20:19:11 -0700 | [diff] [blame] | 1745 | // Empty class such as a marker interface. |
| 1746 | requires_constructor_barrier = false; |
| 1747 | } else { |
| 1748 | ClassDataItemIterator it(dex_file, class_data); |
| 1749 | while (it.HasNextStaticField()) { |
| 1750 | if (resolve_fields_and_methods) { |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 1751 | ArtField* field = class_linker->ResolveField(dex_file, it.GetMemberIndex(), |
Ian Rogers | 68b5685 | 2014-08-29 20:19:11 -0700 | [diff] [blame] | 1752 | dex_cache, class_loader, true); |
Andreas Gampe | 2ed8def | 2014-08-28 14:41:02 -0700 | [diff] [blame] | 1753 | if (field == nullptr) { |
Ian Rogers | 68b5685 | 2014-08-29 20:19:11 -0700 | [diff] [blame] | 1754 | CheckAndClearResolveException(soa.Self()); |
Ian Rogers | e6bb3b2 | 2013-08-19 21:51:45 -0700 | [diff] [blame] | 1755 | } |
Ian Rogers | e6bb3b2 | 2013-08-19 21:51:45 -0700 | [diff] [blame] | 1756 | } |
Ian Rogers | 68b5685 | 2014-08-29 20:19:11 -0700 | [diff] [blame] | 1757 | it.Next(); |
| 1758 | } |
| 1759 | // We require a constructor barrier if there are final instance fields. |
| 1760 | requires_constructor_barrier = false; |
| 1761 | while (it.HasNextInstanceField()) { |
Andreas Gampe | 5182932 | 2014-08-25 15:05:04 -0700 | [diff] [blame] | 1762 | if (it.MemberIsFinal()) { |
Ian Rogers | 68b5685 | 2014-08-29 20:19:11 -0700 | [diff] [blame] | 1763 | requires_constructor_barrier = true; |
Ian Rogers | e6bb3b2 | 2013-08-19 21:51:45 -0700 | [diff] [blame] | 1764 | } |
| 1765 | if (resolve_fields_and_methods) { |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 1766 | ArtField* field = class_linker->ResolveField(dex_file, it.GetMemberIndex(), |
Ian Rogers | 68b5685 | 2014-08-29 20:19:11 -0700 | [diff] [blame] | 1767 | dex_cache, class_loader, false); |
Andreas Gampe | 2ed8def | 2014-08-28 14:41:02 -0700 | [diff] [blame] | 1768 | if (field == nullptr) { |
Ian Rogers | 68b5685 | 2014-08-29 20:19:11 -0700 | [diff] [blame] | 1769 | CheckAndClearResolveException(soa.Self()); |
Ian Rogers | e6bb3b2 | 2013-08-19 21:51:45 -0700 | [diff] [blame] | 1770 | } |
Ian Rogers | e6bb3b2 | 2013-08-19 21:51:45 -0700 | [diff] [blame] | 1771 | } |
Ian Rogers | 68b5685 | 2014-08-29 20:19:11 -0700 | [diff] [blame] | 1772 | it.Next(); |
| 1773 | } |
| 1774 | if (resolve_fields_and_methods) { |
| 1775 | while (it.HasNextDirectMethod()) { |
| 1776 | mirror::ArtMethod* method = class_linker->ResolveMethod(dex_file, it.GetMemberIndex(), |
| 1777 | dex_cache, class_loader, |
| 1778 | NullHandle<mirror::ArtMethod>(), |
| 1779 | it.GetMethodInvokeType(class_def)); |
Andreas Gampe | 2ed8def | 2014-08-28 14:41:02 -0700 | [diff] [blame] | 1780 | if (method == nullptr) { |
Ian Rogers | 68b5685 | 2014-08-29 20:19:11 -0700 | [diff] [blame] | 1781 | CheckAndClearResolveException(soa.Self()); |
| 1782 | } |
| 1783 | it.Next(); |
| 1784 | } |
| 1785 | while (it.HasNextVirtualMethod()) { |
| 1786 | mirror::ArtMethod* method = class_linker->ResolveMethod(dex_file, it.GetMemberIndex(), |
| 1787 | dex_cache, class_loader, |
| 1788 | NullHandle<mirror::ArtMethod>(), |
| 1789 | it.GetMethodInvokeType(class_def)); |
Andreas Gampe | 2ed8def | 2014-08-28 14:41:02 -0700 | [diff] [blame] | 1790 | if (method == nullptr) { |
Ian Rogers | 68b5685 | 2014-08-29 20:19:11 -0700 | [diff] [blame] | 1791 | CheckAndClearResolveException(soa.Self()); |
| 1792 | } |
| 1793 | it.Next(); |
| 1794 | } |
| 1795 | DCHECK(!it.HasNext()); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1796 | } |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1797 | } |
| 1798 | if (requires_constructor_barrier) { |
Ian Rogers | be7149f | 2013-08-20 09:29:39 -0700 | [diff] [blame] | 1799 | manager->GetCompiler()->AddRequiresConstructorBarrier(self, &dex_file, class_def_index); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1800 | } |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1801 | } |
| 1802 | |
| 1803 | static void ResolveType(const ParallelCompilationManager* manager, size_t type_idx) |
| 1804 | LOCKS_EXCLUDED(Locks::mutator_lock_) { |
| 1805 | // Class derived values are more complicated, they require the linker and loader. |
| 1806 | ScopedObjectAccess soa(Thread::Current()); |
| 1807 | ClassLinker* class_linker = manager->GetClassLinker(); |
| 1808 | const DexFile& dex_file = *manager->GetDexFile(); |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 1809 | StackHandleScope<2> hs(soa.Self()); |
| 1810 | Handle<mirror::DexCache> dex_cache(hs.NewHandle(class_linker->FindDexCache(dex_file))); |
| 1811 | Handle<mirror::ClassLoader> class_loader( |
| 1812 | hs.NewHandle(soa.Decode<mirror::ClassLoader*>(manager->GetClassLoader()))); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1813 | mirror::Class* klass = class_linker->ResolveType(dex_file, type_idx, dex_cache, class_loader); |
| 1814 | |
Andreas Gampe | 2ed8def | 2014-08-28 14:41:02 -0700 | [diff] [blame] | 1815 | if (klass == nullptr) { |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1816 | CHECK(soa.Self()->IsExceptionPending()); |
Nicolas Geoffray | 14691c5 | 2015-03-05 10:40:17 +0000 | [diff] [blame] | 1817 | mirror::Throwable* exception = soa.Self()->GetException(); |
Ian Rogers | a436fde | 2013-08-27 23:34:06 -0700 | [diff] [blame] | 1818 | VLOG(compiler) << "Exception during type resolution: " << exception->Dump(); |
Mathieu Chartier | f832284 | 2014-05-16 10:59:25 -0700 | [diff] [blame] | 1819 | if (exception->GetClass()->DescriptorEquals("Ljava/lang/OutOfMemoryError;")) { |
Ian Rogers | a436fde | 2013-08-27 23:34:06 -0700 | [diff] [blame] | 1820 | // There's little point continuing compilation if the heap is exhausted. |
| 1821 | LOG(FATAL) << "Out of memory during type resolution for compilation"; |
| 1822 | } |
| 1823 | soa.Self()->ClearException(); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1824 | } |
| 1825 | } |
| 1826 | |
| 1827 | void CompilerDriver::ResolveDexFile(jobject class_loader, const DexFile& dex_file, |
Andreas Gampe | de7b436 | 2014-07-28 18:38:57 -0700 | [diff] [blame] | 1828 | const std::vector<const DexFile*>& dex_files, |
Ian Rogers | 3d50407 | 2014-03-01 09:16:49 -0800 | [diff] [blame] | 1829 | ThreadPool* thread_pool, TimingLogger* timings) { |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1830 | ClassLinker* class_linker = Runtime::Current()->GetClassLinker(); |
| 1831 | |
| 1832 | // TODO: we could resolve strings here, although the string table is largely filled with class |
| 1833 | // and method names. |
| 1834 | |
Andreas Gampe | de7b436 | 2014-07-28 18:38:57 -0700 | [diff] [blame] | 1835 | ParallelCompilationManager context(class_linker, class_loader, this, &dex_file, dex_files, |
| 1836 | thread_pool); |
Ian Rogers | e6bb3b2 | 2013-08-19 21:51:45 -0700 | [diff] [blame] | 1837 | if (IsImage()) { |
| 1838 | // For images we resolve all types, such as array, whereas for applications just those with |
| 1839 | // classdefs are resolved by ResolveClassFieldsAndMethods. |
Mathieu Chartier | f5997b4 | 2014-06-20 10:37:54 -0700 | [diff] [blame] | 1840 | TimingLogger::ScopedTiming t("Resolve Types", timings); |
Ian Rogers | e6bb3b2 | 2013-08-19 21:51:45 -0700 | [diff] [blame] | 1841 | context.ForAll(0, dex_file.NumTypeIds(), ResolveType, thread_count_); |
| 1842 | } |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1843 | |
Mathieu Chartier | f5997b4 | 2014-06-20 10:37:54 -0700 | [diff] [blame] | 1844 | TimingLogger::ScopedTiming t("Resolve MethodsAndFields", timings); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1845 | context.ForAll(0, dex_file.NumClassDefs(), ResolveClassFieldsAndMethods, thread_count_); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1846 | } |
| 1847 | |
Andreas Gampe | 2ed8def | 2014-08-28 14:41:02 -0700 | [diff] [blame] | 1848 | void CompilerDriver::SetVerified(jobject class_loader, const std::vector<const DexFile*>& dex_files, |
| 1849 | ThreadPool* thread_pool, TimingLogger* timings) { |
| 1850 | for (size_t i = 0; i != dex_files.size(); ++i) { |
| 1851 | const DexFile* dex_file = dex_files[i]; |
| 1852 | CHECK(dex_file != nullptr); |
| 1853 | SetVerifiedDexFile(class_loader, *dex_file, dex_files, thread_pool, timings); |
| 1854 | } |
| 1855 | } |
| 1856 | |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1857 | void CompilerDriver::Verify(jobject class_loader, const std::vector<const DexFile*>& dex_files, |
Ian Rogers | 3d50407 | 2014-03-01 09:16:49 -0800 | [diff] [blame] | 1858 | ThreadPool* thread_pool, TimingLogger* timings) { |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1859 | for (size_t i = 0; i != dex_files.size(); ++i) { |
| 1860 | const DexFile* dex_file = dex_files[i]; |
Andreas Gampe | 2ed8def | 2014-08-28 14:41:02 -0700 | [diff] [blame] | 1861 | CHECK(dex_file != nullptr); |
Andreas Gampe | de7b436 | 2014-07-28 18:38:57 -0700 | [diff] [blame] | 1862 | VerifyDexFile(class_loader, *dex_file, dex_files, thread_pool, timings); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1863 | } |
| 1864 | } |
| 1865 | |
| 1866 | static void VerifyClass(const ParallelCompilationManager* manager, size_t class_def_index) |
| 1867 | LOCKS_EXCLUDED(Locks::mutator_lock_) { |
Anwar Ghuloum | 67f9941 | 2013-08-12 14:19:48 -0700 | [diff] [blame] | 1868 | ATRACE_CALL(); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1869 | ScopedObjectAccess soa(Thread::Current()); |
Jeff Hao | 0e49b42 | 2013-11-08 12:16:56 -0800 | [diff] [blame] | 1870 | const DexFile& dex_file = *manager->GetDexFile(); |
| 1871 | const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index); |
| 1872 | const char* descriptor = dex_file.GetClassDescriptor(class_def); |
| 1873 | ClassLinker* class_linker = manager->GetClassLinker(); |
| 1874 | jobject jclass_loader = manager->GetClassLoader(); |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 1875 | StackHandleScope<3> hs(soa.Self()); |
| 1876 | Handle<mirror::ClassLoader> class_loader( |
| 1877 | hs.NewHandle(soa.Decode<mirror::ClassLoader*>(jclass_loader))); |
| 1878 | Handle<mirror::Class> klass( |
| 1879 | hs.NewHandle(class_linker->FindClass(soa.Self(), descriptor, class_loader))); |
| 1880 | if (klass.Get() == nullptr) { |
Ian Rogers | e6bb3b2 | 2013-08-19 21:51:45 -0700 | [diff] [blame] | 1881 | CHECK(soa.Self()->IsExceptionPending()); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1882 | soa.Self()->ClearException(); |
| 1883 | |
| 1884 | /* |
| 1885 | * At compile time, we can still structurally verify the class even if FindClass fails. |
| 1886 | * This is to ensure the class is structurally sound for compilation. An unsound class |
| 1887 | * will be rejected by the verifier and later skipped during compilation in the compiler. |
| 1888 | */ |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 1889 | Handle<mirror::DexCache> dex_cache(hs.NewHandle(class_linker->FindDexCache(dex_file))); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1890 | std::string error_msg; |
Ian Rogers | 7b078e8 | 2014-09-10 14:44:24 -0700 | [diff] [blame] | 1891 | if (verifier::MethodVerifier::VerifyClass(soa.Self(), &dex_file, dex_cache, class_loader, |
| 1892 | &class_def, true, &error_msg) == |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1893 | verifier::MethodVerifier::kHardFailure) { |
Jeff Hao | 0e49b42 | 2013-11-08 12:16:56 -0800 | [diff] [blame] | 1894 | LOG(ERROR) << "Verification failed on class " << PrettyDescriptor(descriptor) |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1895 | << " because: " << error_msg; |
Andreas Gampe | 6cf49e5 | 2015-03-05 13:08:45 -0800 | [diff] [blame] | 1896 | manager->GetCompiler()->SetHadHardVerifierFailure(); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1897 | } |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 1898 | } else if (!SkipClass(jclass_loader, dex_file, klass.Get())) { |
| 1899 | CHECK(klass->IsResolved()) << PrettyClass(klass.Get()); |
Ian Rogers | 7b078e8 | 2014-09-10 14:44:24 -0700 | [diff] [blame] | 1900 | class_linker->VerifyClass(soa.Self(), klass); |
Ian Rogers | e6bb3b2 | 2013-08-19 21:51:45 -0700 | [diff] [blame] | 1901 | |
| 1902 | if (klass->IsErroneous()) { |
| 1903 | // ClassLinker::VerifyClass throws, which isn't useful in the compiler. |
| 1904 | CHECK(soa.Self()->IsExceptionPending()); |
| 1905 | soa.Self()->ClearException(); |
Andreas Gampe | 6cf49e5 | 2015-03-05 13:08:45 -0800 | [diff] [blame] | 1906 | manager->GetCompiler()->SetHadHardVerifierFailure(); |
Ian Rogers | e6bb3b2 | 2013-08-19 21:51:45 -0700 | [diff] [blame] | 1907 | } |
| 1908 | |
| 1909 | CHECK(klass->IsCompileTimeVerified() || klass->IsErroneous()) |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 1910 | << PrettyDescriptor(klass.Get()) << ": state=" << klass->GetStatus(); |
Andreas Gampe | 7ae063b | 2014-11-24 23:50:13 -0800 | [diff] [blame] | 1911 | |
| 1912 | // It is *very* problematic if there are verification errors in the boot classpath. For example, |
| 1913 | // we rely on things working OK without verification when the decryption dialog is brought up. |
| 1914 | // So abort in a debug build if we find this violated. |
| 1915 | DCHECK(!manager->GetCompiler()->IsImage() || klass->IsVerified()) << "Boot classpath class " << |
| 1916 | PrettyClass(klass.Get()) << " failed to fully verify."; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1917 | } |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1918 | soa.Self()->AssertNoPendingException(); |
| 1919 | } |
| 1920 | |
| 1921 | void CompilerDriver::VerifyDexFile(jobject class_loader, const DexFile& dex_file, |
Andreas Gampe | de7b436 | 2014-07-28 18:38:57 -0700 | [diff] [blame] | 1922 | const std::vector<const DexFile*>& dex_files, |
Ian Rogers | 3d50407 | 2014-03-01 09:16:49 -0800 | [diff] [blame] | 1923 | ThreadPool* thread_pool, TimingLogger* timings) { |
Mathieu Chartier | f5997b4 | 2014-06-20 10:37:54 -0700 | [diff] [blame] | 1924 | TimingLogger::ScopedTiming t("Verify Dex File", timings); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1925 | ClassLinker* class_linker = Runtime::Current()->GetClassLinker(); |
Andreas Gampe | de7b436 | 2014-07-28 18:38:57 -0700 | [diff] [blame] | 1926 | ParallelCompilationManager context(class_linker, class_loader, this, &dex_file, dex_files, |
| 1927 | thread_pool); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1928 | context.ForAll(0, dex_file.NumClassDefs(), VerifyClass, thread_count_); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1929 | } |
| 1930 | |
Andreas Gampe | 2ed8def | 2014-08-28 14:41:02 -0700 | [diff] [blame] | 1931 | static void SetVerifiedClass(const ParallelCompilationManager* manager, size_t class_def_index) |
| 1932 | LOCKS_EXCLUDED(Locks::mutator_lock_) { |
| 1933 | ATRACE_CALL(); |
| 1934 | ScopedObjectAccess soa(Thread::Current()); |
| 1935 | const DexFile& dex_file = *manager->GetDexFile(); |
| 1936 | const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index); |
| 1937 | const char* descriptor = dex_file.GetClassDescriptor(class_def); |
| 1938 | ClassLinker* class_linker = manager->GetClassLinker(); |
| 1939 | jobject jclass_loader = manager->GetClassLoader(); |
| 1940 | StackHandleScope<3> hs(soa.Self()); |
| 1941 | Handle<mirror::ClassLoader> class_loader( |
| 1942 | hs.NewHandle(soa.Decode<mirror::ClassLoader*>(jclass_loader))); |
| 1943 | Handle<mirror::Class> klass( |
| 1944 | hs.NewHandle(class_linker->FindClass(soa.Self(), descriptor, class_loader))); |
| 1945 | // Class might have failed resolution. Then don't set it to verified. |
| 1946 | if (klass.Get() != nullptr) { |
| 1947 | // Only do this if the class is resolved. If even resolution fails, quickening will go very, |
| 1948 | // very wrong. |
| 1949 | if (klass->IsResolved()) { |
| 1950 | if (klass->GetStatus() < mirror::Class::kStatusVerified) { |
| 1951 | ObjectLock<mirror::Class> lock(soa.Self(), klass); |
Hiroshi Yamauchi | 5b783e6 | 2015-03-18 17:20:11 -0700 | [diff] [blame] | 1952 | mirror::Class::SetStatus(klass, mirror::Class::kStatusVerified, soa.Self()); |
Andreas Gampe | 2ed8def | 2014-08-28 14:41:02 -0700 | [diff] [blame] | 1953 | } |
| 1954 | // Record the final class status if necessary. |
| 1955 | ClassReference ref(manager->GetDexFile(), class_def_index); |
| 1956 | manager->GetCompiler()->RecordClassStatus(ref, klass->GetStatus()); |
| 1957 | } |
Andreas Gampe | 61ff009 | 2014-09-16 11:23:23 -0700 | [diff] [blame] | 1958 | } else { |
| 1959 | Thread* self = soa.Self(); |
| 1960 | DCHECK(self->IsExceptionPending()); |
| 1961 | self->ClearException(); |
Andreas Gampe | 2ed8def | 2014-08-28 14:41:02 -0700 | [diff] [blame] | 1962 | } |
Andreas Gampe | 2ed8def | 2014-08-28 14:41:02 -0700 | [diff] [blame] | 1963 | } |
| 1964 | |
| 1965 | void CompilerDriver::SetVerifiedDexFile(jobject class_loader, const DexFile& dex_file, |
| 1966 | const std::vector<const DexFile*>& dex_files, |
| 1967 | ThreadPool* thread_pool, TimingLogger* timings) { |
| 1968 | TimingLogger::ScopedTiming t("Verify Dex File", timings); |
| 1969 | ClassLinker* class_linker = Runtime::Current()->GetClassLinker(); |
| 1970 | ParallelCompilationManager context(class_linker, class_loader, this, &dex_file, dex_files, |
| 1971 | thread_pool); |
| 1972 | context.ForAll(0, dex_file.NumClassDefs(), SetVerifiedClass, thread_count_); |
| 1973 | } |
| 1974 | |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1975 | static void InitializeClass(const ParallelCompilationManager* manager, size_t class_def_index) |
| 1976 | LOCKS_EXCLUDED(Locks::mutator_lock_) { |
Ian Rogers | 8f3c9ae | 2013-08-20 17:26:41 -0700 | [diff] [blame] | 1977 | ATRACE_CALL(); |
Jeff Hao | 0e49b42 | 2013-11-08 12:16:56 -0800 | [diff] [blame] | 1978 | jobject jclass_loader = manager->GetClassLoader(); |
| 1979 | const DexFile& dex_file = *manager->GetDexFile(); |
| 1980 | const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index); |
Jeff Hao | bcdbbfe | 2013-11-08 18:03:22 -0800 | [diff] [blame] | 1981 | const DexFile::TypeId& class_type_id = dex_file.GetTypeId(class_def.class_idx_); |
| 1982 | const char* descriptor = dex_file.StringDataByIdx(class_type_id.descriptor_idx_); |
Ian Rogers | fc0e94b | 2013-09-23 23:51:32 -0700 | [diff] [blame] | 1983 | |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1984 | ScopedObjectAccess soa(Thread::Current()); |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 1985 | StackHandleScope<3> hs(soa.Self()); |
| 1986 | Handle<mirror::ClassLoader> class_loader( |
| 1987 | hs.NewHandle(soa.Decode<mirror::ClassLoader*>(jclass_loader))); |
| 1988 | Handle<mirror::Class> klass( |
| 1989 | hs.NewHandle(manager->GetClassLinker()->FindClass(soa.Self(), descriptor, class_loader))); |
Jeff Hao | 0e49b42 | 2013-11-08 12:16:56 -0800 | [diff] [blame] | 1990 | |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 1991 | if (klass.Get() != nullptr && !SkipClass(jclass_loader, dex_file, klass.Get())) { |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1992 | // Only try to initialize classes that were successfully verified. |
| 1993 | if (klass->IsVerified()) { |
Ian Rogers | 8f3c9ae | 2013-08-20 17:26:41 -0700 | [diff] [blame] | 1994 | // Attempt to initialize the class but bail if we either need to initialize the super-class |
| 1995 | // or static fields. |
Ian Rogers | 7b078e8 | 2014-09-10 14:44:24 -0700 | [diff] [blame] | 1996 | manager->GetClassLinker()->EnsureInitialized(soa.Self(), klass, false, false); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1997 | if (!klass->IsInitialized()) { |
Ian Rogers | 8f3c9ae | 2013-08-20 17:26:41 -0700 | [diff] [blame] | 1998 | // We don't want non-trivial class initialization occurring on multiple threads due to |
| 1999 | // deadlock problems. For example, a parent class is initialized (holding its lock) that |
| 2000 | // refers to a sub-class in its static/class initializer causing it to try to acquire the |
| 2001 | // sub-class' lock. While on a second thread the sub-class is initialized (holding its lock) |
| 2002 | // after first initializing its parents, whose locks are acquired. This leads to a |
| 2003 | // parent-to-child and a child-to-parent lock ordering and consequent potential deadlock. |
| 2004 | // We need to use an ObjectLock due to potential suspension in the interpreting code. Rather |
| 2005 | // than use a special Object for the purpose we use the Class of java.lang.Class. |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 2006 | Handle<mirror::Class> h_klass(hs.NewHandle(klass->GetClass())); |
Mathieu Chartier | db2633c | 2014-05-16 09:59:29 -0700 | [diff] [blame] | 2007 | ObjectLock<mirror::Class> lock(soa.Self(), h_klass); |
Ian Rogers | 8f3c9ae | 2013-08-20 17:26:41 -0700 | [diff] [blame] | 2008 | // Attempt to initialize allowing initialization of parent classes but still not static |
| 2009 | // fields. |
Ian Rogers | 7b078e8 | 2014-09-10 14:44:24 -0700 | [diff] [blame] | 2010 | manager->GetClassLinker()->EnsureInitialized(soa.Self(), klass, false, true); |
Ian Rogers | 8f3c9ae | 2013-08-20 17:26:41 -0700 | [diff] [blame] | 2011 | if (!klass->IsInitialized()) { |
| 2012 | // We need to initialize static fields, we only do this for image classes that aren't |
Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 2013 | // marked with the $NoPreloadHolder (which implies this should not be initialized early). |
Ian Rogers | 8f3c9ae | 2013-08-20 17:26:41 -0700 | [diff] [blame] | 2014 | bool can_init_static_fields = manager->GetCompiler()->IsImage() && |
Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 2015 | manager->GetCompiler()->IsImageClass(descriptor) && |
| 2016 | !StringPiece(descriptor).ends_with("$NoPreloadHolder;"); |
Ian Rogers | 8f3c9ae | 2013-08-20 17:26:41 -0700 | [diff] [blame] | 2017 | if (can_init_static_fields) { |
Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 2018 | VLOG(compiler) << "Initializing: " << descriptor; |
Ian Rogers | c45b8b5 | 2014-05-03 01:39:59 -0700 | [diff] [blame] | 2019 | // TODO multithreading support. We should ensure the current compilation thread has |
| 2020 | // exclusive access to the runtime and the transaction. To achieve this, we could use |
| 2021 | // a ReaderWriterMutex but we're holding the mutator lock so we fail mutex sanity |
| 2022 | // checks in Thread::AssertThreadSuspensionIsAllowable. |
| 2023 | Runtime* const runtime = Runtime::Current(); |
| 2024 | Transaction transaction; |
Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 2025 | |
Ian Rogers | c45b8b5 | 2014-05-03 01:39:59 -0700 | [diff] [blame] | 2026 | // Run the class initializer in transaction mode. |
| 2027 | runtime->EnterTransactionMode(&transaction); |
| 2028 | const mirror::Class::Status old_status = klass->GetStatus(); |
Ian Rogers | 7b078e8 | 2014-09-10 14:44:24 -0700 | [diff] [blame] | 2029 | bool success = manager->GetClassLinker()->EnsureInitialized(soa.Self(), klass, true, |
| 2030 | true); |
Ian Rogers | c45b8b5 | 2014-05-03 01:39:59 -0700 | [diff] [blame] | 2031 | // TODO we detach transaction from runtime to indicate we quit the transactional |
| 2032 | // mode which prevents the GC from visiting objects modified during the transaction. |
| 2033 | // Ensure GC is not run so don't access freed objects when aborting transaction. |
Mathieu Chartier | 2d5f39e | 2014-09-19 17:52:37 -0700 | [diff] [blame] | 2034 | |
| 2035 | ScopedAssertNoThreadSuspension ants(soa.Self(), "Transaction end"); |
Ian Rogers | c45b8b5 | 2014-05-03 01:39:59 -0700 | [diff] [blame] | 2036 | runtime->ExitTransactionMode(); |
Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 2037 | |
Ian Rogers | c45b8b5 | 2014-05-03 01:39:59 -0700 | [diff] [blame] | 2038 | if (!success) { |
| 2039 | CHECK(soa.Self()->IsExceptionPending()); |
Nicolas Geoffray | 14691c5 | 2015-03-05 10:40:17 +0000 | [diff] [blame] | 2040 | mirror::Throwable* exception = soa.Self()->GetException(); |
Ian Rogers | c45b8b5 | 2014-05-03 01:39:59 -0700 | [diff] [blame] | 2041 | VLOG(compiler) << "Initialization of " << descriptor << " aborted because of " |
| 2042 | << exception->Dump(); |
Andreas Gampe | dbfe254 | 2014-11-25 22:21:42 -0800 | [diff] [blame] | 2043 | std::ostream* file_log = manager->GetCompiler()-> |
| 2044 | GetCompilerOptions().GetInitFailureOutput(); |
| 2045 | if (file_log != nullptr) { |
| 2046 | *file_log << descriptor << "\n"; |
| 2047 | *file_log << exception->Dump() << "\n"; |
| 2048 | } |
Ian Rogers | c45b8b5 | 2014-05-03 01:39:59 -0700 | [diff] [blame] | 2049 | soa.Self()->ClearException(); |
Sebastien Hertz | 1c80bec | 2015-02-03 11:58:06 +0100 | [diff] [blame] | 2050 | transaction.Rollback(); |
Ian Rogers | c45b8b5 | 2014-05-03 01:39:59 -0700 | [diff] [blame] | 2051 | CHECK_EQ(old_status, klass->GetStatus()) << "Previous class status not restored"; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 2052 | } |
| 2053 | } |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 2054 | } |
Ian Rogers | 8f3c9ae | 2013-08-20 17:26:41 -0700 | [diff] [blame] | 2055 | soa.Self()->AssertNoPendingException(); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 2056 | } |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 2057 | } |
| 2058 | // Record the final class status if necessary. |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 2059 | ClassReference ref(manager->GetDexFile(), class_def_index); |
Ian Rogers | 8f3c9ae | 2013-08-20 17:26:41 -0700 | [diff] [blame] | 2060 | manager->GetCompiler()->RecordClassStatus(ref, klass->GetStatus()); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 2061 | } |
| 2062 | // Clear any class not found or verification exceptions. |
| 2063 | soa.Self()->ClearException(); |
| 2064 | } |
| 2065 | |
| 2066 | void CompilerDriver::InitializeClasses(jobject jni_class_loader, const DexFile& dex_file, |
Andreas Gampe | de7b436 | 2014-07-28 18:38:57 -0700 | [diff] [blame] | 2067 | const std::vector<const DexFile*>& dex_files, |
Ian Rogers | 3d50407 | 2014-03-01 09:16:49 -0800 | [diff] [blame] | 2068 | ThreadPool* thread_pool, TimingLogger* timings) { |
Mathieu Chartier | f5997b4 | 2014-06-20 10:37:54 -0700 | [diff] [blame] | 2069 | TimingLogger::ScopedTiming t("InitializeNoClinit", timings); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 2070 | ClassLinker* class_linker = Runtime::Current()->GetClassLinker(); |
Andreas Gampe | de7b436 | 2014-07-28 18:38:57 -0700 | [diff] [blame] | 2071 | ParallelCompilationManager context(class_linker, jni_class_loader, this, &dex_file, dex_files, |
| 2072 | thread_pool); |
Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 2073 | size_t thread_count; |
| 2074 | if (IsImage()) { |
| 2075 | // TODO: remove this when transactional mode supports multithreading. |
| 2076 | thread_count = 1U; |
| 2077 | } else { |
| 2078 | thread_count = thread_count_; |
| 2079 | } |
| 2080 | context.ForAll(0, dex_file.NumClassDefs(), InitializeClass, thread_count); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 2081 | } |
| 2082 | |
| 2083 | void CompilerDriver::InitializeClasses(jobject class_loader, |
| 2084 | const std::vector<const DexFile*>& dex_files, |
Ian Rogers | 3d50407 | 2014-03-01 09:16:49 -0800 | [diff] [blame] | 2085 | ThreadPool* thread_pool, TimingLogger* timings) { |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 2086 | for (size_t i = 0; i != dex_files.size(); ++i) { |
| 2087 | const DexFile* dex_file = dex_files[i]; |
Andreas Gampe | 2ed8def | 2014-08-28 14:41:02 -0700 | [diff] [blame] | 2088 | CHECK(dex_file != nullptr); |
Andreas Gampe | de7b436 | 2014-07-28 18:38:57 -0700 | [diff] [blame] | 2089 | InitializeClasses(class_loader, *dex_file, dex_files, thread_pool, timings); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 2090 | } |
Mathieu Chartier | 093ef21 | 2014-08-11 13:52:12 -0700 | [diff] [blame] | 2091 | if (IsImage()) { |
| 2092 | // Prune garbage objects created during aborted transactions. |
| 2093 | Runtime::Current()->GetHeap()->CollectGarbage(true); |
| 2094 | } |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 2095 | } |
| 2096 | |
| 2097 | void CompilerDriver::Compile(jobject class_loader, const std::vector<const DexFile*>& dex_files, |
Ian Rogers | 3d50407 | 2014-03-01 09:16:49 -0800 | [diff] [blame] | 2098 | ThreadPool* thread_pool, TimingLogger* timings) { |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 2099 | for (size_t i = 0; i != dex_files.size(); ++i) { |
| 2100 | const DexFile* dex_file = dex_files[i]; |
Andreas Gampe | 2ed8def | 2014-08-28 14:41:02 -0700 | [diff] [blame] | 2101 | CHECK(dex_file != nullptr); |
Andreas Gampe | de7b436 | 2014-07-28 18:38:57 -0700 | [diff] [blame] | 2102 | CompileDexFile(class_loader, *dex_file, dex_files, thread_pool, timings); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 2103 | } |
Andreas Gampe | 8d295f8 | 2015-01-20 14:50:21 -0800 | [diff] [blame] | 2104 | VLOG(compiler) << "Compile: " << GetMemoryUsageString(false); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 2105 | } |
| 2106 | |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 2107 | void CompilerDriver::CompileClass(const ParallelCompilationManager* manager, |
| 2108 | size_t class_def_index) { |
Anwar Ghuloum | 67f9941 | 2013-08-12 14:19:48 -0700 | [diff] [blame] | 2109 | ATRACE_CALL(); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 2110 | const DexFile& dex_file = *manager->GetDexFile(); |
| 2111 | const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index); |
Ian Rogers | be7149f | 2013-08-20 09:29:39 -0700 | [diff] [blame] | 2112 | ClassLinker* class_linker = manager->GetClassLinker(); |
Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 2113 | jobject jclass_loader = manager->GetClassLoader(); |
Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 2114 | Thread* self = Thread::Current(); |
Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 2115 | { |
| 2116 | // Use a scoped object access to perform to the quick SkipClass check. |
| 2117 | const char* descriptor = dex_file.GetClassDescriptor(class_def); |
Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 2118 | ScopedObjectAccess soa(self); |
Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 2119 | StackHandleScope<3> hs(soa.Self()); |
| 2120 | Handle<mirror::ClassLoader> class_loader( |
| 2121 | hs.NewHandle(soa.Decode<mirror::ClassLoader*>(jclass_loader))); |
| 2122 | Handle<mirror::Class> klass( |
| 2123 | hs.NewHandle(class_linker->FindClass(soa.Self(), descriptor, class_loader))); |
| 2124 | if (klass.Get() == nullptr) { |
| 2125 | CHECK(soa.Self()->IsExceptionPending()); |
| 2126 | soa.Self()->ClearException(); |
| 2127 | } else if (SkipClass(jclass_loader, dex_file, klass.Get())) { |
| 2128 | return; |
| 2129 | } |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 2130 | } |
| 2131 | ClassReference ref(&dex_file, class_def_index); |
| 2132 | // Skip compiling classes with generic verifier failures since they will still fail at runtime |
Vladimir Marko | c7f8320 | 2014-01-24 17:55:18 +0000 | [diff] [blame] | 2133 | if (manager->GetCompiler()->verification_results_->IsClassRejected(ref)) { |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 2134 | return; |
| 2135 | } |
Ian Rogers | 1373595 | 2014-10-08 12:43:28 -0700 | [diff] [blame] | 2136 | const uint8_t* class_data = dex_file.GetClassData(class_def); |
Andreas Gampe | 2ed8def | 2014-08-28 14:41:02 -0700 | [diff] [blame] | 2137 | if (class_data == nullptr) { |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 2138 | // empty class, probably a marker interface |
| 2139 | return; |
| 2140 | } |
Anwar Ghuloum | 67f9941 | 2013-08-12 14:19:48 -0700 | [diff] [blame] | 2141 | |
Mathieu Chartier | e86deef | 2015-03-19 13:43:37 -0700 | [diff] [blame] | 2142 | CompilerDriver* const driver = manager->GetCompiler(); |
| 2143 | |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 2144 | // Can we run DEX-to-DEX compiler on this class ? |
Sebastien Hertz | 7502122 | 2013-07-16 18:34:50 +0200 | [diff] [blame] | 2145 | DexToDexCompilationLevel dex_to_dex_compilation_level = kDontDexToDexCompile; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 2146 | { |
Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 2147 | ScopedObjectAccess soa(self); |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 2148 | StackHandleScope<1> hs(soa.Self()); |
| 2149 | Handle<mirror::ClassLoader> class_loader( |
| 2150 | hs.NewHandle(soa.Decode<mirror::ClassLoader*>(jclass_loader))); |
Mathieu Chartier | e86deef | 2015-03-19 13:43:37 -0700 | [diff] [blame] | 2151 | dex_to_dex_compilation_level = driver->GetDexToDexCompilationlevel( |
| 2152 | soa.Self(), class_loader, dex_file, class_def); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 2153 | } |
| 2154 | ClassDataItemIterator it(dex_file, class_data); |
| 2155 | // Skip fields |
| 2156 | while (it.HasNextStaticField()) { |
| 2157 | it.Next(); |
| 2158 | } |
| 2159 | while (it.HasNextInstanceField()) { |
| 2160 | it.Next(); |
| 2161 | } |
Andreas Gampe | 4bf3ae9 | 2014-11-11 13:28:29 -0800 | [diff] [blame] | 2162 | |
| 2163 | bool compilation_enabled = driver->IsClassToCompile( |
| 2164 | dex_file.StringByTypeIdx(class_def.class_idx_)); |
| 2165 | |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 2166 | // Compile direct methods |
| 2167 | int64_t previous_direct_method_idx = -1; |
| 2168 | while (it.HasNextDirectMethod()) { |
| 2169 | uint32_t method_idx = it.GetMemberIndex(); |
| 2170 | if (method_idx == previous_direct_method_idx) { |
| 2171 | // smali can create dex files with two encoded_methods sharing the same method_idx |
| 2172 | // http://code.google.com/p/smali/issues/detail?id=119 |
| 2173 | it.Next(); |
| 2174 | continue; |
| 2175 | } |
| 2176 | previous_direct_method_idx = method_idx; |
Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 2177 | driver->CompileMethod(self, it.GetMethodCodeItem(), it.GetMethodAccessFlags(), |
Ian Rogers | be7149f | 2013-08-20 09:29:39 -0700 | [diff] [blame] | 2178 | it.GetMethodInvokeType(class_def), class_def_index, |
Andreas Gampe | 4bf3ae9 | 2014-11-11 13:28:29 -0800 | [diff] [blame] | 2179 | method_idx, jclass_loader, dex_file, dex_to_dex_compilation_level, |
| 2180 | compilation_enabled); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 2181 | it.Next(); |
| 2182 | } |
| 2183 | // Compile virtual methods |
| 2184 | int64_t previous_virtual_method_idx = -1; |
| 2185 | while (it.HasNextVirtualMethod()) { |
| 2186 | uint32_t method_idx = it.GetMemberIndex(); |
| 2187 | if (method_idx == previous_virtual_method_idx) { |
| 2188 | // smali can create dex files with two encoded_methods sharing the same method_idx |
| 2189 | // http://code.google.com/p/smali/issues/detail?id=119 |
| 2190 | it.Next(); |
| 2191 | continue; |
| 2192 | } |
| 2193 | previous_virtual_method_idx = method_idx; |
Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 2194 | driver->CompileMethod(self, it.GetMethodCodeItem(), it.GetMethodAccessFlags(), |
Ian Rogers | be7149f | 2013-08-20 09:29:39 -0700 | [diff] [blame] | 2195 | it.GetMethodInvokeType(class_def), class_def_index, |
Andreas Gampe | 4bf3ae9 | 2014-11-11 13:28:29 -0800 | [diff] [blame] | 2196 | method_idx, jclass_loader, dex_file, dex_to_dex_compilation_level, |
| 2197 | compilation_enabled); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 2198 | it.Next(); |
| 2199 | } |
| 2200 | DCHECK(!it.HasNext()); |
| 2201 | } |
| 2202 | |
| 2203 | void CompilerDriver::CompileDexFile(jobject class_loader, const DexFile& dex_file, |
Andreas Gampe | de7b436 | 2014-07-28 18:38:57 -0700 | [diff] [blame] | 2204 | const std::vector<const DexFile*>& dex_files, |
Ian Rogers | 3d50407 | 2014-03-01 09:16:49 -0800 | [diff] [blame] | 2205 | ThreadPool* thread_pool, TimingLogger* timings) { |
Mathieu Chartier | f5997b4 | 2014-06-20 10:37:54 -0700 | [diff] [blame] | 2206 | TimingLogger::ScopedTiming t("Compile Dex File", timings); |
Ian Rogers | be7149f | 2013-08-20 09:29:39 -0700 | [diff] [blame] | 2207 | ParallelCompilationManager context(Runtime::Current()->GetClassLinker(), class_loader, this, |
Andreas Gampe | de7b436 | 2014-07-28 18:38:57 -0700 | [diff] [blame] | 2208 | &dex_file, dex_files, thread_pool); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 2209 | context.ForAll(0, dex_file.NumClassDefs(), CompilerDriver::CompileClass, thread_count_); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 2210 | } |
| 2211 | |
Ian Rogers | a4a3f40 | 2014-10-20 18:10:34 -0700 | [diff] [blame] | 2212 | // Does the runtime for the InstructionSet provide an implementation returned by |
| 2213 | // GetQuickGenericJniStub allowing down calls that aren't compiled using a JNI compiler? |
| 2214 | static bool InstructionSetHasGenericJniStub(InstructionSet isa) { |
| 2215 | switch (isa) { |
| 2216 | case kArm: |
| 2217 | case kArm64: |
| 2218 | case kThumb2: |
Douglas Leung | 735b855 | 2014-10-31 12:21:40 -0700 | [diff] [blame] | 2219 | case kMips: |
Andreas Gampe | 57b3429 | 2015-01-14 15:45:59 -0800 | [diff] [blame] | 2220 | case kMips64: |
Ian Rogers | a4a3f40 | 2014-10-20 18:10:34 -0700 | [diff] [blame] | 2221 | case kX86: |
| 2222 | case kX86_64: return true; |
| 2223 | default: return false; |
| 2224 | } |
| 2225 | } |
| 2226 | |
Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 2227 | void CompilerDriver::CompileMethod(Thread* self, const DexFile::CodeItem* code_item, |
| 2228 | uint32_t access_flags, InvokeType invoke_type, |
| 2229 | uint16_t class_def_idx, uint32_t method_idx, |
| 2230 | jobject class_loader, const DexFile& dex_file, |
Andreas Gampe | 4bf3ae9 | 2014-11-11 13:28:29 -0800 | [diff] [blame] | 2231 | DexToDexCompilationLevel dex_to_dex_compilation_level, |
| 2232 | bool compilation_enabled) { |
Andreas Gampe | 2ed8def | 2014-08-28 14:41:02 -0700 | [diff] [blame] | 2233 | CompiledMethod* compiled_method = nullptr; |
Mathieu Chartier | 8e219ae | 2014-08-19 14:29:46 -0700 | [diff] [blame] | 2234 | uint64_t start_ns = kTimeCompileMethod ? NanoTime() : 0; |
Mathieu Chartier | ab972ef | 2014-12-03 17:38:22 -0800 | [diff] [blame] | 2235 | MethodReference method_ref(&dex_file, method_idx); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 2236 | |
| 2237 | if ((access_flags & kAccNative) != 0) { |
Ian Rogers | 0188ab7 | 2014-03-17 16:51:53 -0700 | [diff] [blame] | 2238 | // Are we interpreting only and have support for generic JNI down calls? |
Jeff Hao | 4a200f5 | 2014-04-01 14:58:49 -0700 | [diff] [blame] | 2239 | if (!compiler_options_->IsCompilationEnabled() && |
Ian Rogers | a4a3f40 | 2014-10-20 18:10:34 -0700 | [diff] [blame] | 2240 | InstructionSetHasGenericJniStub(instruction_set_)) { |
Ian Rogers | 5b27149 | 2014-03-14 13:20:26 -0700 | [diff] [blame] | 2241 | // Leaving this empty will trigger the generic JNI version |
| 2242 | } else { |
Goran Jakovljevic | 75c40d4 | 2015-04-03 15:45:21 +0200 | [diff] [blame] | 2243 | compiled_method = compiler_->JniCompile(access_flags, method_idx, dex_file); |
| 2244 | CHECK(compiled_method != nullptr); |
Ian Rogers | 5b27149 | 2014-03-14 13:20:26 -0700 | [diff] [blame] | 2245 | } |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 2246 | } else if ((access_flags & kAccAbstract) != 0) { |
Ian Rogers | a4a3f40 | 2014-10-20 18:10:34 -0700 | [diff] [blame] | 2247 | // Abstract methods don't have code. |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 2248 | } else { |
Andreas Gampe | 6c170c9 | 2014-12-17 14:35:46 -0800 | [diff] [blame] | 2249 | bool has_verified_method = verification_results_->GetVerifiedMethod(method_ref) != nullptr; |
Andreas Gampe | 4bf3ae9 | 2014-11-11 13:28:29 -0800 | [diff] [blame] | 2250 | bool compile = compilation_enabled && |
Andreas Gampe | 6c170c9 | 2014-12-17 14:35:46 -0800 | [diff] [blame] | 2251 | // Basic checks, e.g., not <clinit>. |
| 2252 | verification_results_->IsCandidateForCompilation(method_ref, access_flags) && |
| 2253 | // Did not fail to create VerifiedMethod metadata. |
Andreas Gampe | 70bef0d | 2015-04-15 02:37:28 -0700 | [diff] [blame] | 2254 | has_verified_method && |
| 2255 | // Is eligable for compilation by methods-to-compile filter. |
| 2256 | IsMethodToCompile(method_ref); |
Sebastien Hertz | 4d4adb1 | 2013-07-24 16:14:19 +0200 | [diff] [blame] | 2257 | if (compile) { |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 2258 | // NOTE: if compiler declines to compile this method, it will return null. |
Ian Rogers | 72d3262 | 2014-05-06 16:20:11 -0700 | [diff] [blame] | 2259 | compiled_method = compiler_->Compile(code_item, access_flags, invoke_type, class_def_idx, |
| 2260 | method_idx, class_loader, dex_file); |
Sebastien Hertz | 17965ed | 2014-04-04 15:59:53 +0200 | [diff] [blame] | 2261 | } |
| 2262 | if (compiled_method == nullptr && dex_to_dex_compilation_level != kDontDexToDexCompile) { |
| 2263 | // TODO: add a command-line option to disable DEX-to-DEX compilation ? |
Andreas Gampe | 6c170c9 | 2014-12-17 14:35:46 -0800 | [diff] [blame] | 2264 | // Do not optimize if a VerifiedMethod is missing. SafeCast elision, for example, relies on |
| 2265 | // it. |
Sebastien Hertz | 7502122 | 2013-07-16 18:34:50 +0200 | [diff] [blame] | 2266 | (*dex_to_dex_compiler_)(*this, code_item, access_flags, |
| 2267 | invoke_type, class_def_idx, |
| 2268 | method_idx, class_loader, dex_file, |
Andreas Gampe | 6c170c9 | 2014-12-17 14:35:46 -0800 | [diff] [blame] | 2269 | has_verified_method ? dex_to_dex_compilation_level : kRequired); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 2270 | } |
| 2271 | } |
Mathieu Chartier | 8e219ae | 2014-08-19 14:29:46 -0700 | [diff] [blame] | 2272 | if (kTimeCompileMethod) { |
| 2273 | uint64_t duration_ns = NanoTime() - start_ns; |
| 2274 | if (duration_ns > MsToNs(compiler_->GetMaximumCompilationTimeBeforeWarning())) { |
| 2275 | LOG(WARNING) << "Compilation of " << PrettyMethod(method_idx, dex_file) |
| 2276 | << " took " << PrettyDuration(duration_ns); |
| 2277 | } |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 2278 | } |
| 2279 | |
Andreas Gampe | 2ed8def | 2014-08-28 14:41:02 -0700 | [diff] [blame] | 2280 | if (compiled_method != nullptr) { |
Vladimir Marko | f4da675 | 2014-08-01 19:04:18 +0100 | [diff] [blame] | 2281 | // Count non-relative linker patches. |
| 2282 | size_t non_relative_linker_patch_count = 0u; |
| 2283 | for (const LinkerPatch& patch : compiled_method->GetPatches()) { |
Vladimir Marko | 20f8559 | 2015-03-19 10:07:02 +0000 | [diff] [blame] | 2284 | if (!patch.IsPcRelative()) { |
Vladimir Marko | f4da675 | 2014-08-01 19:04:18 +0100 | [diff] [blame] | 2285 | ++non_relative_linker_patch_count; |
| 2286 | } |
| 2287 | } |
Igor Murashkin | d6dee67 | 2014-10-16 18:36:16 -0700 | [diff] [blame] | 2288 | bool compile_pic = GetCompilerOptions().GetCompilePic(); // Off by default |
| 2289 | // When compiling with PIC, there should be zero non-relative linker patches |
| 2290 | CHECK(!compile_pic || non_relative_linker_patch_count == 0u); |
| 2291 | |
Mathieu Chartier | ab972ef | 2014-12-03 17:38:22 -0800 | [diff] [blame] | 2292 | DCHECK(GetCompiledMethod(method_ref) == nullptr) << PrettyMethod(method_idx, dex_file); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 2293 | { |
| 2294 | MutexLock mu(self, compiled_methods_lock_); |
Mathieu Chartier | ab972ef | 2014-12-03 17:38:22 -0800 | [diff] [blame] | 2295 | compiled_methods_.Put(method_ref, compiled_method); |
Vladimir Marko | f4da675 | 2014-08-01 19:04:18 +0100 | [diff] [blame] | 2296 | non_relative_linker_patch_count_ += non_relative_linker_patch_count; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 2297 | } |
Mathieu Chartier | ab972ef | 2014-12-03 17:38:22 -0800 | [diff] [blame] | 2298 | DCHECK(GetCompiledMethod(method_ref) != nullptr) << PrettyMethod(method_idx, dex_file); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 2299 | } |
| 2300 | |
Jeff Hao | 48699fb | 2015-04-06 14:21:37 -0700 | [diff] [blame] | 2301 | // Done compiling, delete the verified method to reduce native memory usage. Do not delete in |
| 2302 | // optimizing compiler, which may need the verified method again for inlining. |
| 2303 | if (compiler_kind_ != Compiler::kOptimizing) { |
| 2304 | verification_results_->RemoveVerifiedMethod(method_ref); |
| 2305 | } |
Mathieu Chartier | ab972ef | 2014-12-03 17:38:22 -0800 | [diff] [blame] | 2306 | |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 2307 | if (self->IsExceptionPending()) { |
| 2308 | ScopedObjectAccess soa(self); |
| 2309 | LOG(FATAL) << "Unexpected exception compiling: " << PrettyMethod(method_idx, dex_file) << "\n" |
Nicolas Geoffray | 14691c5 | 2015-03-05 10:40:17 +0000 | [diff] [blame] | 2310 | << self->GetException()->Dump(); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 2311 | } |
| 2312 | } |
| 2313 | |
Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 2314 | void CompilerDriver::RemoveCompiledMethod(const MethodReference& method_ref) { |
| 2315 | CompiledMethod* compiled_method = nullptr; |
| 2316 | { |
| 2317 | MutexLock mu(Thread::Current(), compiled_methods_lock_); |
| 2318 | auto it = compiled_methods_.find(method_ref); |
| 2319 | if (it != compiled_methods_.end()) { |
| 2320 | compiled_method = it->second; |
| 2321 | compiled_methods_.erase(it); |
| 2322 | } |
| 2323 | } |
| 2324 | if (compiled_method != nullptr) { |
| 2325 | CompiledMethod::ReleaseSwapAllocatedCompiledMethod(this, compiled_method); |
| 2326 | } |
| 2327 | } |
| 2328 | |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 2329 | CompiledClass* CompilerDriver::GetCompiledClass(ClassReference ref) const { |
| 2330 | MutexLock mu(Thread::Current(), compiled_classes_lock_); |
| 2331 | ClassTable::const_iterator it = compiled_classes_.find(ref); |
| 2332 | if (it == compiled_classes_.end()) { |
Andreas Gampe | 2ed8def | 2014-08-28 14:41:02 -0700 | [diff] [blame] | 2333 | return nullptr; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 2334 | } |
Andreas Gampe | 2ed8def | 2014-08-28 14:41:02 -0700 | [diff] [blame] | 2335 | CHECK(it->second != nullptr); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 2336 | return it->second; |
| 2337 | } |
| 2338 | |
Ian Rogers | 8f3c9ae | 2013-08-20 17:26:41 -0700 | [diff] [blame] | 2339 | void CompilerDriver::RecordClassStatus(ClassReference ref, mirror::Class::Status status) { |
| 2340 | MutexLock mu(Thread::Current(), compiled_classes_lock_); |
| 2341 | auto it = compiled_classes_.find(ref); |
| 2342 | if (it == compiled_classes_.end() || it->second->GetStatus() != status) { |
| 2343 | // An entry doesn't exist or the status is lower than the new status. |
| 2344 | if (it != compiled_classes_.end()) { |
| 2345 | CHECK_GT(status, it->second->GetStatus()); |
| 2346 | delete it->second; |
| 2347 | } |
| 2348 | switch (status) { |
| 2349 | case mirror::Class::kStatusNotReady: |
| 2350 | case mirror::Class::kStatusError: |
| 2351 | case mirror::Class::kStatusRetryVerificationAtRuntime: |
| 2352 | case mirror::Class::kStatusVerified: |
| 2353 | case mirror::Class::kStatusInitialized: |
| 2354 | break; // Expected states. |
| 2355 | default: |
| 2356 | LOG(FATAL) << "Unexpected class status for class " |
| 2357 | << PrettyDescriptor(ref.first->GetClassDescriptor(ref.first->GetClassDef(ref.second))) |
| 2358 | << " of " << status; |
| 2359 | } |
| 2360 | CompiledClass* compiled_class = new CompiledClass(status); |
| 2361 | compiled_classes_.Overwrite(ref, compiled_class); |
| 2362 | } |
| 2363 | } |
| 2364 | |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 2365 | CompiledMethod* CompilerDriver::GetCompiledMethod(MethodReference ref) const { |
| 2366 | MutexLock mu(Thread::Current(), compiled_methods_lock_); |
| 2367 | MethodTable::const_iterator it = compiled_methods_.find(ref); |
| 2368 | if (it == compiled_methods_.end()) { |
Andreas Gampe | 2ed8def | 2014-08-28 14:41:02 -0700 | [diff] [blame] | 2369 | return nullptr; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 2370 | } |
Andreas Gampe | 2ed8def | 2014-08-28 14:41:02 -0700 | [diff] [blame] | 2371 | CHECK(it->second != nullptr); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 2372 | return it->second; |
| 2373 | } |
| 2374 | |
Calin Juravle | f1c6d9e | 2015-04-13 18:42:21 +0100 | [diff] [blame] | 2375 | bool CompilerDriver::IsMethodVerifiedWithoutFailures(uint32_t method_idx, |
| 2376 | uint16_t class_def_idx, |
| 2377 | const DexFile& dex_file) const { |
| 2378 | const VerifiedMethod* verified_method = GetVerifiedMethod(&dex_file, method_idx); |
| 2379 | if (verified_method != nullptr) { |
| 2380 | return !verified_method->HasVerificationFailures(); |
| 2381 | } |
| 2382 | |
| 2383 | // If we can't find verification metadata, check if this is a system class (we trust that system |
| 2384 | // classes have their methods verified). If it's not, be conservative and assume the method |
| 2385 | // has not been verified successfully. |
| 2386 | |
| 2387 | // TODO: When compiling the boot image it should be safe to assume that everything is verified, |
| 2388 | // even if methods are not found in the verification cache. |
| 2389 | const char* descriptor = dex_file.GetClassDescriptor(dex_file.GetClassDef(class_def_idx)); |
| 2390 | ClassLinker* class_linker = Runtime::Current()->GetClassLinker(); |
| 2391 | Thread* self = Thread::Current(); |
| 2392 | ScopedObjectAccess soa(self); |
| 2393 | bool is_system_class = class_linker->FindSystemClass(self, descriptor) != nullptr; |
| 2394 | if (!is_system_class) { |
| 2395 | self->ClearException(); |
| 2396 | } |
| 2397 | return is_system_class; |
| 2398 | } |
| 2399 | |
Vladimir Marko | f4da675 | 2014-08-01 19:04:18 +0100 | [diff] [blame] | 2400 | size_t CompilerDriver::GetNonRelativeLinkerPatchCount() const { |
| 2401 | MutexLock mu(Thread::Current(), compiled_methods_lock_); |
| 2402 | return non_relative_linker_patch_count_; |
| 2403 | } |
| 2404 | |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 2405 | void CompilerDriver::AddRequiresConstructorBarrier(Thread* self, const DexFile* dex_file, |
Ian Rogers | 8b2c0b9 | 2013-09-19 02:56:49 -0700 | [diff] [blame] | 2406 | uint16_t class_def_index) { |
Ian Rogers | 8f3c9ae | 2013-08-20 17:26:41 -0700 | [diff] [blame] | 2407 | WriterMutexLock mu(self, freezing_constructor_lock_); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 2408 | freezing_constructor_classes_.insert(ClassReference(dex_file, class_def_index)); |
| 2409 | } |
| 2410 | |
| 2411 | bool CompilerDriver::RequiresConstructorBarrier(Thread* self, const DexFile* dex_file, |
Calin Juravle | 27df758 | 2015-04-17 19:12:31 +0100 | [diff] [blame] | 2412 | uint16_t class_def_index) const { |
Ian Rogers | 8f3c9ae | 2013-08-20 17:26:41 -0700 | [diff] [blame] | 2413 | ReaderMutexLock mu(self, freezing_constructor_lock_); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 2414 | return freezing_constructor_classes_.count(ClassReference(dex_file, class_def_index)) != 0; |
| 2415 | } |
| 2416 | |
| 2417 | bool CompilerDriver::WriteElf(const std::string& android_root, |
| 2418 | bool is_host, |
| 2419 | const std::vector<const art::DexFile*>& dex_files, |
Ian Rogers | 3d50407 | 2014-03-01 09:16:49 -0800 | [diff] [blame] | 2420 | OatWriter* oat_writer, |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 2421 | art::File* file) |
| 2422 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
Andreas Gampe | 3773cd0 | 2015-04-10 09:28:22 -0700 | [diff] [blame] | 2423 | if (kProduce64BitELFFiles && Is64BitInstructionSet(GetInstructionSet())) { |
| 2424 | return art::ElfWriterQuick64::Create(file, oat_writer, dex_files, android_root, is_host, *this); |
| 2425 | } else { |
| 2426 | return art::ElfWriterQuick32::Create(file, oat_writer, dex_files, android_root, is_host, *this); |
| 2427 | } |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 2428 | } |
Dave Allison | 39c3bfb | 2014-01-28 18:33:52 -0800 | [diff] [blame] | 2429 | |
Dave Allison | 39c3bfb | 2014-01-28 18:33:52 -0800 | [diff] [blame] | 2430 | bool CompilerDriver::SkipCompilation(const std::string& method_name) { |
Calin Juravle | c1b643c | 2014-05-30 23:44:11 +0100 | [diff] [blame] | 2431 | if (!profile_present_) { |
Dave Allison | 644789f | 2014-04-10 13:06:10 -0700 | [diff] [blame] | 2432 | return false; |
Dave Allison | 39c3bfb | 2014-01-28 18:33:52 -0800 | [diff] [blame] | 2433 | } |
Calin Juravle | bb0b53f | 2014-05-23 17:33:29 +0100 | [diff] [blame] | 2434 | // First find the method in the profile file. |
| 2435 | ProfileFile::ProfileData data; |
| 2436 | if (!profile_file_.GetProfileData(&data, method_name)) { |
Dave Allison | 39c3bfb | 2014-01-28 18:33:52 -0800 | [diff] [blame] | 2437 | // Not in profile, no information can be determined. |
Calin Juravle | 08f7a2d | 2014-06-23 15:22:29 +0100 | [diff] [blame] | 2438 | if (kIsDebugBuild) { |
| 2439 | VLOG(compiler) << "not compiling " << method_name << " because it's not in the profile"; |
| 2440 | } |
Dave Allison | 39c3bfb | 2014-01-28 18:33:52 -0800 | [diff] [blame] | 2441 | return true; |
| 2442 | } |
Calin Juravle | bb0b53f | 2014-05-23 17:33:29 +0100 | [diff] [blame] | 2443 | |
| 2444 | // Methods that comprise top_k_threshold % of the total samples will be compiled. |
Calin Juravle | f6a4cee | 2014-04-02 17:03:08 +0100 | [diff] [blame] | 2445 | // Compare against the start of the topK percentage bucket just in case the threshold |
Calin Juravle | 04ff226 | 2014-04-02 19:08:47 +0100 | [diff] [blame] | 2446 | // falls inside a bucket. |
Calin Juravle | c1b643c | 2014-05-30 23:44:11 +0100 | [diff] [blame] | 2447 | bool compile = data.GetTopKUsedPercentage() - data.GetUsedPercent() |
| 2448 | <= compiler_options_->GetTopKProfileThreshold(); |
Calin Juravle | 08f7a2d | 2014-06-23 15:22:29 +0100 | [diff] [blame] | 2449 | if (kIsDebugBuild) { |
| 2450 | if (compile) { |
| 2451 | LOG(INFO) << "compiling method " << method_name << " because its usage is part of top " |
| 2452 | << data.GetTopKUsedPercentage() << "% with a percent of " << data.GetUsedPercent() << "%" |
| 2453 | << " (topKThreshold=" << compiler_options_->GetTopKProfileThreshold() << ")"; |
| 2454 | } else { |
| 2455 | VLOG(compiler) << "not compiling method " << method_name |
| 2456 | << " because it's not part of leading " << compiler_options_->GetTopKProfileThreshold() |
| 2457 | << "% samples)"; |
| 2458 | } |
Dave Allison | 39c3bfb | 2014-01-28 18:33:52 -0800 | [diff] [blame] | 2459 | } |
| 2460 | return !compile; |
| 2461 | } |
Mathieu Chartier | ab972ef | 2014-12-03 17:38:22 -0800 | [diff] [blame] | 2462 | |
Andreas Gampe | 8d295f8 | 2015-01-20 14:50:21 -0800 | [diff] [blame] | 2463 | std::string CompilerDriver::GetMemoryUsageString(bool extended) const { |
Mathieu Chartier | ab972ef | 2014-12-03 17:38:22 -0800 | [diff] [blame] | 2464 | std::ostringstream oss; |
Mathieu Chartier | 9b34b24 | 2015-03-09 11:30:17 -0700 | [diff] [blame] | 2465 | Runtime* const runtime = Runtime::Current(); |
| 2466 | const ArenaPool* arena_pool = runtime->GetArenaPool(); |
| 2467 | gc::Heap* const heap = runtime->GetHeap(); |
Mathieu Chartier | ab972ef | 2014-12-03 17:38:22 -0800 | [diff] [blame] | 2468 | oss << "arena alloc=" << PrettySize(arena_pool->GetBytesAllocated()); |
| 2469 | oss << " java alloc=" << PrettySize(heap->GetBytesAllocated()); |
Elliott Hughes | 7bf5a26 | 2015-04-02 20:55:07 -0700 | [diff] [blame] | 2470 | #if defined(__BIONIC__) || defined(__GLIBC__) |
Mathieu Chartier | ab972ef | 2014-12-03 17:38:22 -0800 | [diff] [blame] | 2471 | struct mallinfo info = mallinfo(); |
| 2472 | const size_t allocated_space = static_cast<size_t>(info.uordblks); |
| 2473 | const size_t free_space = static_cast<size_t>(info.fordblks); |
| 2474 | oss << " native alloc=" << PrettySize(allocated_space) << " free=" |
| 2475 | << PrettySize(free_space); |
| 2476 | #endif |
Andreas Gampe | e21dc3d | 2014-12-08 16:59:43 -0800 | [diff] [blame] | 2477 | if (swap_space_.get() != nullptr) { |
| 2478 | oss << " swap=" << PrettySize(swap_space_->GetSize()); |
| 2479 | } |
Andreas Gampe | 8d295f8 | 2015-01-20 14:50:21 -0800 | [diff] [blame] | 2480 | if (extended) { |
| 2481 | oss << "\nCode dedupe: " << dedupe_code_.DumpStats(); |
| 2482 | oss << "\nMapping table dedupe: " << dedupe_mapping_table_.DumpStats(); |
| 2483 | oss << "\nVmap table dedupe: " << dedupe_vmap_table_.DumpStats(); |
| 2484 | oss << "\nGC map dedupe: " << dedupe_gc_map_.DumpStats(); |
| 2485 | oss << "\nCFI info dedupe: " << dedupe_cfi_info_.DumpStats(); |
| 2486 | } |
Mathieu Chartier | ab972ef | 2014-12-03 17:38:22 -0800 | [diff] [blame] | 2487 | return oss.str(); |
| 2488 | } |
| 2489 | |
Jeff Hao | 848f70a | 2014-01-15 13:49:50 -0800 | [diff] [blame] | 2490 | bool CompilerDriver::IsStringTypeIndex(uint16_t type_index, const DexFile* dex_file) { |
| 2491 | const char* type = dex_file->GetTypeDescriptor(dex_file->GetTypeId(type_index)); |
| 2492 | return strcmp(type, "Ljava/lang/String;") == 0; |
| 2493 | } |
| 2494 | |
| 2495 | bool CompilerDriver::IsStringInit(uint32_t method_index, const DexFile* dex_file, int32_t* offset) { |
| 2496 | DexFileMethodInliner* inliner = GetMethodInlinerMap()->GetMethodInliner(dex_file); |
| 2497 | size_t pointer_size = InstructionSetPointerSize(GetInstructionSet()); |
| 2498 | *offset = inliner->GetOffsetForStringInit(method_index, pointer_size); |
| 2499 | return inliner->IsStringInitMethodIndex(method_index); |
| 2500 | } |
| 2501 | |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 2502 | } // namespace art |