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