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