| 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 |  | 
| Andreas Gampe | 8cf9cb3 | 2017-07-19 09:28:38 -0700 | [diff] [blame] | 19 | #include <unistd.h> | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 20 |  | 
| Mathieu Chartier | ab972ef | 2014-12-03 17:38:22 -0800 | [diff] [blame] | 21 | #ifndef __APPLE__ | 
|  | 22 | #include <malloc.h>  // For mallinfo | 
|  | 23 | #endif | 
|  | 24 |  | 
| Vladimir Marko | 2ef0110 | 2019-02-05 15:05:10 +0000 | [diff] [blame] | 25 | #include <string_view> | 
|  | 26 | #include <unordered_set> | 
|  | 27 | #include <vector> | 
|  | 28 |  | 
| Andreas Gampe | 5c80311 | 2018-04-13 17:28:34 -0700 | [diff] [blame] | 29 | #include "android-base/logging.h" | 
| Narayan Kamath | e3eae5e | 2016-10-27 11:47:30 +0100 | [diff] [blame] | 30 | #include "android-base/strings.h" | 
|  | 31 |  | 
| Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 32 | #include "art_field-inl.h" | 
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 33 | #include "art_method-inl.h" | 
| Andreas Gampe | f0446e9 | 2017-05-16 13:51:57 -0700 | [diff] [blame] | 34 | #include "base/arena_allocator.h" | 
| David Brazdil | d9c9037 | 2016-09-14 16:53:55 +0100 | [diff] [blame] | 35 | #include "base/array_ref.h" | 
| Vladimir Marko | 492a7fa | 2016-06-01 18:38:43 +0100 | [diff] [blame] | 36 | #include "base/bit_vector.h" | 
| Andreas Gampe | 542451c | 2016-07-26 09:02:02 -0700 | [diff] [blame] | 37 | #include "base/enums.h" | 
| Andreas Gampe | 170331f | 2017-12-07 18:41:03 -0800 | [diff] [blame] | 38 | #include "base/logging.h"  // For VLOG | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 39 | #include "base/stl_util.h" | 
| Vladimir Marko | 2ef0110 | 2019-02-05 15:05:10 +0000 | [diff] [blame] | 40 | #include "base/string_view_cpp20.h" | 
| Mathieu Chartier | 32ce2ad | 2016-03-04 14:58:03 -0800 | [diff] [blame] | 41 | #include "base/systrace.h" | 
| Vladimir Marko | 80afd02 | 2015-05-19 18:08:00 +0100 | [diff] [blame] | 42 | #include "base/time_utils.h" | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 43 | #include "base/timing_logger.h" | 
| Vladimir Marko | 3481ba2 | 2015-04-13 12:22:36 +0100 | [diff] [blame] | 44 | #include "class_linker-inl.h" | 
| Vladimir Marko | d8dbc8d | 2017-09-20 13:37:47 +0100 | [diff] [blame] | 45 | #include "compiled_method-inl.h" | 
| Nicolas Geoffray | b34f69a | 2014-03-07 15:28:39 +0000 | [diff] [blame] | 46 | #include "compiler.h" | 
| Nicolas Geoffray | 6bb7f1b | 2016-11-03 10:52:49 +0000 | [diff] [blame] | 47 | #include "compiler_callbacks.h" | 
| Vladimir Marko | be0e546 | 2014-02-26 11:24:15 +0000 | [diff] [blame] | 48 | #include "compiler_driver-inl.h" | 
| Mathieu Chartier | c8c8d5f | 2018-05-22 11:56:14 -0700 | [diff] [blame] | 49 | #include "dex/class_accessor-inl.h" | 
| David Sehr | b2ec9f5 | 2018-02-21 13:20:31 -0800 | [diff] [blame] | 50 | #include "dex/descriptors_names.h" | 
| David Sehr | 9e734c7 | 2018-01-04 17:56:19 -0800 | [diff] [blame] | 51 | #include "dex/dex_file-inl.h" | 
|  | 52 | #include "dex/dex_file_annotations.h" | 
|  | 53 | #include "dex/dex_instruction-inl.h" | 
| Andreas Gampe | 5eb0d38 | 2015-07-23 01:19:26 -0700 | [diff] [blame] | 54 | #include "dex/dex_to_dex_compiler.h" | 
| Vladimir Marko | c7f8320 | 2014-01-24 17:55:18 +0000 | [diff] [blame] | 55 | #include "dex/verification_results.h" | 
| Vladimir Marko | 2730db0 | 2014-01-27 11:15:17 +0000 | [diff] [blame] | 56 | #include "dex/verified_method.h" | 
| Mark Mendell | ae9fd93 | 2014-02-10 16:14:35 -0800 | [diff] [blame] | 57 | #include "driver/compiler_options.h" | 
| Vladimir Marko | 327497e | 2019-03-04 12:53:20 +0000 | [diff] [blame] | 58 | #include "driver/dex_compilation_unit.h" | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 59 | #include "gc/accounting/card_table-inl.h" | 
|  | 60 | #include "gc/accounting/heap_bitmap.h" | 
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 61 | #include "gc/space/image_space.h" | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 62 | #include "gc/space/space.h" | 
| Steven Moreland | e431e27 | 2017-07-18 16:53:49 -0700 | [diff] [blame] | 63 | #include "handle_scope-inl.h" | 
|  | 64 | #include "intrinsics_enum.h" | 
| Vladimir Marko | a3ad0cd | 2018-05-04 10:06:38 +0100 | [diff] [blame] | 65 | #include "jni/jni_internal.h" | 
| Vladimir Marko | d8dbc8d | 2017-09-20 13:37:47 +0100 | [diff] [blame] | 66 | #include "linker/linker_patch.h" | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 67 | #include "mirror/class-inl.h" | 
| Steven Moreland | e431e27 | 2017-07-18 16:53:49 -0700 | [diff] [blame] | 68 | #include "mirror/class_loader.h" | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 69 | #include "mirror/dex_cache-inl.h" | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 70 | #include "mirror/object-inl.h" | 
| Andreas Gampe | c6ea7d0 | 2017-02-01 16:46:28 -0800 | [diff] [blame] | 71 | #include "mirror/object-refvisitor-inl.h" | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 72 | #include "mirror/object_array-inl.h" | 
|  | 73 | #include "mirror/throwable.h" | 
| Steven Moreland | e431e27 | 2017-07-18 16:53:49 -0700 | [diff] [blame] | 74 | #include "object_lock.h" | 
| David Sehr | 82d046e | 2018-04-23 08:14:19 -0700 | [diff] [blame] | 75 | #include "profile/profile_compilation_info.h" | 
| Steven Moreland | e431e27 | 2017-07-18 16:53:49 -0700 | [diff] [blame] | 76 | #include "runtime.h" | 
| Orion Hodson | 26ef34c | 2017-11-01 13:32:41 +0000 | [diff] [blame] | 77 | #include "runtime_intrinsics.h" | 
| Mathieu Chartier | 0795f23 | 2016-09-27 18:43:30 -0700 | [diff] [blame] | 78 | #include "scoped_thread_state_change-inl.h" | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 79 | #include "thread.h" | 
| Andreas Gampe | b0f370e | 2014-09-25 22:51:40 -0700 | [diff] [blame] | 80 | #include "thread_list.h" | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 81 | #include "thread_pool.h" | 
| Ian Rogers | 848871b | 2013-08-05 10:56:33 -0700 | [diff] [blame] | 82 | #include "trampolines/trampoline_compiler.h" | 
| Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 83 | #include "transaction.h" | 
| Mathieu Chartier | 93764b8 | 2017-07-17 14:51:53 -0700 | [diff] [blame] | 84 | #include "utils/atomic_dex_ref_map-inl.h" | 
| Vladimir Marko | 20f8559 | 2015-03-19 10:07:02 +0000 | [diff] [blame] | 85 | #include "utils/dex_cache_arrays_layout-inl.h" | 
| Andreas Gampe | e21dc3d | 2014-12-08 16:59:43 -0800 | [diff] [blame] | 86 | #include "utils/swap_space.h" | 
| Nicolas Geoffray | b0bbe8e | 2016-11-19 10:42:37 +0000 | [diff] [blame] | 87 | #include "vdex_file.h" | 
| Andreas Gampe | a43ba3d | 2019-03-13 15:49:20 -0700 | [diff] [blame] | 88 | #include "verifier/class_verifier.h" | 
| Nicolas Geoffray | 0802518 | 2016-10-25 17:20:18 +0100 | [diff] [blame] | 89 | #include "verifier/verifier_deps.h" | 
| Andreas Gampe | 6d7abbd | 2017-04-24 13:19:09 -0700 | [diff] [blame] | 90 | #include "verifier/verifier_enums.h" | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 91 |  | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 92 | namespace art { | 
|  | 93 |  | 
| Mathieu Chartier | 8e219ae | 2014-08-19 14:29:46 -0700 | [diff] [blame] | 94 | static constexpr bool kTimeCompileMethod = !kIsDebugBuild; | 
|  | 95 |  | 
| Calin Juravle | 226501b | 2015-12-11 14:41:31 +0000 | [diff] [blame] | 96 | // Print additional info during profile guided compilation. | 
|  | 97 | static constexpr bool kDebugProfileGuidedCompilation = false; | 
|  | 98 |  | 
| Chang Xing | 70f689d | 2017-06-08 17:16:12 -0700 | [diff] [blame] | 99 | // Max encoded fields allowed for initializing app image. Hardcode the number for now | 
|  | 100 | // because 5000 should be large enough. | 
|  | 101 | static constexpr uint32_t kMaxEncodedFields = 5000; | 
|  | 102 |  | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 103 | static double Percentage(size_t x, size_t y) { | 
|  | 104 | return 100.0 * (static_cast<double>(x)) / (static_cast<double>(x + y)); | 
|  | 105 | } | 
|  | 106 |  | 
|  | 107 | static void DumpStat(size_t x, size_t y, const char* str) { | 
|  | 108 | if (x == 0 && y == 0) { | 
|  | 109 | return; | 
|  | 110 | } | 
| Ian Rogers | e732ef1 | 2013-10-09 15:22:24 -0700 | [diff] [blame] | 111 | LOG(INFO) << Percentage(x, y) << "% of " << str << " for " << (x + y) << " cases"; | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 112 | } | 
|  | 113 |  | 
| Vladimir Marko | f096aad | 2014-01-23 15:51:58 +0000 | [diff] [blame] | 114 | class CompilerDriver::AOTCompilationStats { | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 115 | public: | 
|  | 116 | AOTCompilationStats() | 
| Mathieu Chartier | 41dba67 | 2018-12-21 15:06:17 -0800 | [diff] [blame] | 117 | : stats_lock_("AOT compilation statistics lock") {} | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 118 |  | 
|  | 119 | void Dump() { | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 120 | DumpStat(resolved_instance_fields_, unresolved_instance_fields_, "instance fields resolved"); | 
|  | 121 | DumpStat(resolved_local_static_fields_ + resolved_static_fields_, unresolved_static_fields_, | 
|  | 122 | "static fields resolved"); | 
|  | 123 | DumpStat(resolved_local_static_fields_, resolved_static_fields_ + unresolved_static_fields_, | 
|  | 124 | "static fields local to a class"); | 
|  | 125 | DumpStat(safe_casts_, not_safe_casts_, "check-casts removed based on type information"); | 
|  | 126 | // Note, the code below subtracts the stat value so that when added to the stat value we have | 
|  | 127 | // 100% of samples. TODO: clean this up. | 
|  | 128 | DumpStat(type_based_devirtualization_, | 
|  | 129 | resolved_methods_[kVirtual] + unresolved_methods_[kVirtual] + | 
|  | 130 | resolved_methods_[kInterface] + unresolved_methods_[kInterface] - | 
|  | 131 | type_based_devirtualization_, | 
|  | 132 | "virtual/interface calls made direct based on type information"); | 
|  | 133 |  | 
| Mathieu Chartier | 41dba67 | 2018-12-21 15:06:17 -0800 | [diff] [blame] | 134 | const size_t total = std::accumulate( | 
|  | 135 | class_status_count_, | 
|  | 136 | class_status_count_ + static_cast<size_t>(ClassStatus::kLast) + 1, | 
|  | 137 | 0u); | 
|  | 138 | for (size_t i = 0; i <= static_cast<size_t>(ClassStatus::kLast); ++i) { | 
|  | 139 | std::ostringstream oss; | 
|  | 140 | oss << "classes with status " << static_cast<ClassStatus>(i); | 
|  | 141 | DumpStat(class_status_count_[i], total - class_status_count_[i], oss.str().c_str()); | 
|  | 142 | } | 
|  | 143 |  | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 144 | for (size_t i = 0; i <= kMaxInvokeType; i++) { | 
|  | 145 | std::ostringstream oss; | 
|  | 146 | oss << static_cast<InvokeType>(i) << " methods were AOT resolved"; | 
|  | 147 | DumpStat(resolved_methods_[i], unresolved_methods_[i], oss.str().c_str()); | 
|  | 148 | if (virtual_made_direct_[i] > 0) { | 
|  | 149 | std::ostringstream oss2; | 
|  | 150 | oss2 << static_cast<InvokeType>(i) << " methods made direct"; | 
|  | 151 | DumpStat(virtual_made_direct_[i], | 
|  | 152 | resolved_methods_[i] + unresolved_methods_[i] - virtual_made_direct_[i], | 
|  | 153 | oss2.str().c_str()); | 
|  | 154 | } | 
|  | 155 | if (direct_calls_to_boot_[i] > 0) { | 
|  | 156 | std::ostringstream oss2; | 
|  | 157 | oss2 << static_cast<InvokeType>(i) << " method calls are direct into boot"; | 
|  | 158 | DumpStat(direct_calls_to_boot_[i], | 
|  | 159 | resolved_methods_[i] + unresolved_methods_[i] - direct_calls_to_boot_[i], | 
|  | 160 | oss2.str().c_str()); | 
|  | 161 | } | 
|  | 162 | if (direct_methods_to_boot_[i] > 0) { | 
|  | 163 | std::ostringstream oss2; | 
|  | 164 | oss2 << static_cast<InvokeType>(i) << " method calls have methods in boot"; | 
|  | 165 | DumpStat(direct_methods_to_boot_[i], | 
|  | 166 | resolved_methods_[i] + unresolved_methods_[i] - direct_methods_to_boot_[i], | 
|  | 167 | oss2.str().c_str()); | 
|  | 168 | } | 
|  | 169 | } | 
|  | 170 | } | 
|  | 171 |  | 
|  | 172 | // Allow lossy statistics in non-debug builds. | 
|  | 173 | #ifndef NDEBUG | 
|  | 174 | #define STATS_LOCK() MutexLock mu(Thread::Current(), stats_lock_) | 
|  | 175 | #else | 
|  | 176 | #define STATS_LOCK() | 
|  | 177 | #endif | 
|  | 178 |  | 
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 179 | void ResolvedInstanceField() REQUIRES(!stats_lock_) { | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 180 | STATS_LOCK(); | 
|  | 181 | resolved_instance_fields_++; | 
|  | 182 | } | 
|  | 183 |  | 
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 184 | void UnresolvedInstanceField() REQUIRES(!stats_lock_) { | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 185 | STATS_LOCK(); | 
|  | 186 | unresolved_instance_fields_++; | 
|  | 187 | } | 
|  | 188 |  | 
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 189 | void ResolvedLocalStaticField() REQUIRES(!stats_lock_) { | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 190 | STATS_LOCK(); | 
|  | 191 | resolved_local_static_fields_++; | 
|  | 192 | } | 
|  | 193 |  | 
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 194 | void ResolvedStaticField() REQUIRES(!stats_lock_) { | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 195 | STATS_LOCK(); | 
|  | 196 | resolved_static_fields_++; | 
|  | 197 | } | 
|  | 198 |  | 
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 199 | void UnresolvedStaticField() REQUIRES(!stats_lock_) { | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 200 | STATS_LOCK(); | 
|  | 201 | unresolved_static_fields_++; | 
|  | 202 | } | 
|  | 203 |  | 
|  | 204 | // Indicate that type information from the verifier led to devirtualization. | 
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 205 | void PreciseTypeDevirtualization() REQUIRES(!stats_lock_) { | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 206 | STATS_LOCK(); | 
|  | 207 | type_based_devirtualization_++; | 
|  | 208 | } | 
|  | 209 |  | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 210 | // A check-cast could be eliminated due to verifier type analysis. | 
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 211 | void SafeCast() REQUIRES(!stats_lock_) { | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 212 | STATS_LOCK(); | 
|  | 213 | safe_casts_++; | 
|  | 214 | } | 
|  | 215 |  | 
|  | 216 | // A check-cast couldn't be eliminated due to verifier type analysis. | 
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 217 | void NotASafeCast() REQUIRES(!stats_lock_) { | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 218 | STATS_LOCK(); | 
|  | 219 | not_safe_casts_++; | 
|  | 220 | } | 
|  | 221 |  | 
| Mathieu Chartier | 41dba67 | 2018-12-21 15:06:17 -0800 | [diff] [blame] | 222 | // Register a class status. | 
|  | 223 | void AddClassStatus(ClassStatus status) REQUIRES(!stats_lock_) { | 
|  | 224 | STATS_LOCK(); | 
|  | 225 | ++class_status_count_[static_cast<size_t>(status)]; | 
|  | 226 | } | 
|  | 227 |  | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 228 | private: | 
|  | 229 | Mutex stats_lock_; | 
|  | 230 |  | 
| Mathieu Chartier | 41dba67 | 2018-12-21 15:06:17 -0800 | [diff] [blame] | 231 | size_t resolved_instance_fields_ = 0u; | 
|  | 232 | size_t unresolved_instance_fields_ = 0u; | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 233 |  | 
| Mathieu Chartier | 41dba67 | 2018-12-21 15:06:17 -0800 | [diff] [blame] | 234 | size_t resolved_local_static_fields_ = 0u; | 
|  | 235 | size_t resolved_static_fields_ = 0u; | 
|  | 236 | size_t unresolved_static_fields_ = 0u; | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 237 | // Type based devirtualization for invoke interface and virtual. | 
| Mathieu Chartier | 41dba67 | 2018-12-21 15:06:17 -0800 | [diff] [blame] | 238 | size_t type_based_devirtualization_ = 0u; | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 239 |  | 
| Mathieu Chartier | 41dba67 | 2018-12-21 15:06:17 -0800 | [diff] [blame] | 240 | size_t resolved_methods_[kMaxInvokeType + 1] = {}; | 
|  | 241 | size_t unresolved_methods_[kMaxInvokeType + 1] = {}; | 
|  | 242 | size_t virtual_made_direct_[kMaxInvokeType + 1] = {}; | 
|  | 243 | size_t direct_calls_to_boot_[kMaxInvokeType + 1] = {}; | 
|  | 244 | size_t direct_methods_to_boot_[kMaxInvokeType + 1] = {}; | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 245 |  | 
| Mathieu Chartier | 41dba67 | 2018-12-21 15:06:17 -0800 | [diff] [blame] | 246 | size_t safe_casts_ = 0u; | 
|  | 247 | size_t not_safe_casts_ = 0u; | 
|  | 248 |  | 
|  | 249 | size_t class_status_count_[static_cast<size_t>(ClassStatus::kLast) + 1] = {}; | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 250 |  | 
|  | 251 | DISALLOW_COPY_AND_ASSIGN(AOTCompilationStats); | 
|  | 252 | }; | 
|  | 253 |  | 
| Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 254 | CompilerDriver::CompilerDriver( | 
|  | 255 | const CompilerOptions* compiler_options, | 
| Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 256 | Compiler::Kind compiler_kind, | 
| Vladimir Marko | 944da60 | 2016-02-19 12:27:55 +0000 | [diff] [blame] | 257 | size_t thread_count, | 
| Vladimir Marko | 1a2a5cd | 2018-11-07 15:39:48 +0000 | [diff] [blame] | 258 | int swap_fd) | 
| Calin Juravle | 226501b | 2015-12-11 14:41:31 +0000 | [diff] [blame] | 259 | : compiler_options_(compiler_options), | 
| Vladimir Marko | 038924b | 2019-02-19 15:09:35 +0000 | [diff] [blame] | 260 | compiler_(), | 
| Jeff Hao | 48699fb | 2015-04-06 14:21:37 -0700 | [diff] [blame] | 261 | compiler_kind_(compiler_kind), | 
| Andreas Gampe | f39208f | 2017-10-19 15:06:59 -0700 | [diff] [blame] | 262 | number_of_soft_verifier_failures_(0), | 
| Andreas Gampe | 6cf49e5 | 2015-03-05 13:08:45 -0800 | [diff] [blame] | 263 | had_hard_verifier_failure_(false), | 
| Andreas Gampe | ace0dc1 | 2016-01-20 13:33:13 -0800 | [diff] [blame] | 264 | parallel_thread_count_(thread_count), | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 265 | stats_(new AOTCompilationStats), | 
| Calin Juravle | 998c216 | 2015-12-21 15:39:33 +0200 | [diff] [blame] | 266 | compiled_method_storage_(swap_fd), | 
| Vladimir Marko | 492a7fa | 2016-06-01 18:38:43 +0100 | [diff] [blame] | 267 | max_arena_alloc_(0), | 
| Mathieu Chartier | a79efdb | 2018-01-18 16:31:01 -0800 | [diff] [blame] | 268 | dex_to_dex_compiler_(this) { | 
| Brian Carlstrom | 6449c62 | 2014-02-10 23:48:36 -0800 | [diff] [blame] | 269 | DCHECK(compiler_options_ != nullptr); | 
| Brian Carlstrom | 2ce745c | 2013-07-17 17:44:30 -0700 | [diff] [blame] | 270 |  | 
| Andreas Gampe | cac31ad | 2017-11-06 20:01:17 -0800 | [diff] [blame] | 271 | compiled_method_storage_.SetDedupeEnabled(compiler_options_->DeduplicateCode()); | 
| Vladimir Marko | 038924b | 2019-02-19 15:09:35 +0000 | [diff] [blame] | 272 | compiler_.reset(Compiler::Create(*compiler_options, &compiled_method_storage_, compiler_kind)); | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 273 | } | 
|  | 274 |  | 
|  | 275 | CompilerDriver::~CompilerDriver() { | 
| Mathieu Chartier | 93764b8 | 2017-07-17 14:51:53 -0700 | [diff] [blame] | 276 | compiled_methods_.Visit([this](const DexFileReference& ref ATTRIBUTE_UNUSED, | 
| Mathieu Chartier | acab8d4 | 2016-11-23 13:45:58 -0800 | [diff] [blame] | 277 | CompiledMethod* method) { | 
|  | 278 | if (method != nullptr) { | 
| Vladimir Marko | 33f7c8a | 2018-11-19 10:22:01 +0000 | [diff] [blame] | 279 | CompiledMethod::ReleaseSwapAllocatedCompiledMethod(GetCompiledMethodStorage(), method); | 
| Andreas Gampe | e21dc3d | 2014-12-08 16:59:43 -0800 | [diff] [blame] | 280 | } | 
| Mathieu Chartier | acab8d4 | 2016-11-23 13:45:58 -0800 | [diff] [blame] | 281 | }); | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 282 | } | 
|  | 283 |  | 
| Vladimir Marko | 35831e8 | 2015-09-11 11:59:18 +0100 | [diff] [blame] | 284 |  | 
| Vladimir Marko | a043111 | 2018-06-25 09:32:54 +0100 | [diff] [blame] | 285 | #define CREATE_TRAMPOLINE(type, abi, offset)                                            \ | 
|  | 286 | if (Is64BitInstructionSet(GetCompilerOptions().GetInstructionSet())) {              \ | 
|  | 287 | return CreateTrampoline64(GetCompilerOptions().GetInstructionSet(),               \ | 
|  | 288 | abi,                                                    \ | 
|  | 289 | type ## _ENTRYPOINT_OFFSET(PointerSize::k64, offset));  \ | 
|  | 290 | } else {                                                                            \ | 
|  | 291 | return CreateTrampoline32(GetCompilerOptions().GetInstructionSet(),               \ | 
|  | 292 | abi,                                                    \ | 
|  | 293 | type ## _ENTRYPOINT_OFFSET(PointerSize::k32, offset));  \ | 
| Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 294 | } | 
|  | 295 |  | 
| Vladimir Marko | 93205e3 | 2016-04-13 11:59:46 +0100 | [diff] [blame] | 296 | std::unique_ptr<const std::vector<uint8_t>> CompilerDriver::CreateJniDlsymLookup() const { | 
| Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 297 | CREATE_TRAMPOLINE(JNI, kJniAbi, pDlsymLookup) | 
| Ian Rogers | 848871b | 2013-08-05 10:56:33 -0700 | [diff] [blame] | 298 | } | 
|  | 299 |  | 
| Vladimir Marko | 93205e3 | 2016-04-13 11:59:46 +0100 | [diff] [blame] | 300 | std::unique_ptr<const std::vector<uint8_t>> CompilerDriver::CreateQuickGenericJniTrampoline() | 
|  | 301 | const { | 
| Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 302 | CREATE_TRAMPOLINE(QUICK, kQuickAbi, pQuickGenericJniTrampoline) | 
| Andreas Gampe | 2da8823 | 2014-02-27 12:26:20 -0800 | [diff] [blame] | 303 | } | 
|  | 304 |  | 
| Vladimir Marko | 93205e3 | 2016-04-13 11:59:46 +0100 | [diff] [blame] | 305 | std::unique_ptr<const std::vector<uint8_t>> CompilerDriver::CreateQuickImtConflictTrampoline() | 
|  | 306 | const { | 
| Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 307 | CREATE_TRAMPOLINE(QUICK, kQuickAbi, pQuickImtConflictTrampoline) | 
| Jeff Hao | 88474b4 | 2013-10-23 16:24:40 -0700 | [diff] [blame] | 308 | } | 
|  | 309 |  | 
| Vladimir Marko | 93205e3 | 2016-04-13 11:59:46 +0100 | [diff] [blame] | 310 | std::unique_ptr<const std::vector<uint8_t>> CompilerDriver::CreateQuickResolutionTrampoline() | 
|  | 311 | const { | 
| Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 312 | CREATE_TRAMPOLINE(QUICK, kQuickAbi, pQuickResolutionTrampoline) | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 313 | } | 
|  | 314 |  | 
| Vladimir Marko | 93205e3 | 2016-04-13 11:59:46 +0100 | [diff] [blame] | 315 | std::unique_ptr<const std::vector<uint8_t>> CompilerDriver::CreateQuickToInterpreterBridge() | 
|  | 316 | const { | 
| Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 317 | CREATE_TRAMPOLINE(QUICK, kQuickAbi, pQuickToInterpreterBridge) | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 318 | } | 
| Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 319 | #undef CREATE_TRAMPOLINE | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 320 |  | 
|  | 321 | void CompilerDriver::CompileAll(jobject class_loader, | 
| Brian Carlstrom | 4560248 | 2013-07-21 22:07:55 -0700 | [diff] [blame] | 322 | const std::vector<const DexFile*>& dex_files, | 
| Ian Rogers | 3d50407 | 2014-03-01 09:16:49 -0800 | [diff] [blame] | 323 | TimingLogger* timings) { | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 324 | DCHECK(!Runtime::Current()->IsStarted()); | 
| Andreas Gampe | ace0dc1 | 2016-01-20 13:33:13 -0800 | [diff] [blame] | 325 |  | 
| Vladimir Marko | 2afaff7 | 2018-11-30 17:01:50 +0000 | [diff] [blame] | 326 | CheckThreadPools(); | 
| Andreas Gampe | ace0dc1 | 2016-01-20 13:33:13 -0800 | [diff] [blame] | 327 |  | 
| Vladimir Marko | aad75c6 | 2016-10-03 08:46:48 +0000 | [diff] [blame] | 328 | if (GetCompilerOptions().IsBootImage()) { | 
| Nicolas Geoffray | 762869d | 2016-07-15 15:28:35 +0100 | [diff] [blame] | 329 | // We don't need to setup the intrinsics for non boot image compilation, as | 
|  | 330 | // those compilations will pick up a boot image that have the ArtMethod already | 
|  | 331 | // set with the intrinsics flag. | 
| Orion Hodson | 26ef34c | 2017-11-01 13:32:41 +0000 | [diff] [blame] | 332 | InitializeIntrinsics(); | 
| Nicolas Geoffray | 762869d | 2016-07-15 15:28:35 +0100 | [diff] [blame] | 333 | } | 
| Andreas Gampe | 740667a | 2015-09-15 17:55:06 -0700 | [diff] [blame] | 334 | // Compile: | 
|  | 335 | // 1) Compile all classes and methods enabled for compilation. May fall back to dex-to-dex | 
|  | 336 | //    compilation. | 
| Nicolas Geoffray | 49cda06 | 2017-04-21 13:08:25 +0100 | [diff] [blame] | 337 | if (GetCompilerOptions().IsAnyCompilationEnabled()) { | 
| Andreas Gampe | ace0dc1 | 2016-01-20 13:33:13 -0800 | [diff] [blame] | 338 | Compile(class_loader, dex_files, timings); | 
| Andreas Gampe | 740667a | 2015-09-15 17:55:06 -0700 | [diff] [blame] | 339 | } | 
| Nicolas Geoffray | 2d8801f | 2017-11-28 15:50:07 +0000 | [diff] [blame] | 340 | if (GetCompilerOptions().GetDumpStats()) { | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 341 | stats_->Dump(); | 
|  | 342 | } | 
|  | 343 | } | 
|  | 344 |  | 
| Mathieu Chartier | a79efdb | 2018-01-18 16:31:01 -0800 | [diff] [blame] | 345 | static optimizer::DexToDexCompiler::CompilationLevel GetDexToDexCompilationLevel( | 
| Andreas Gampe | 5eb0d38 | 2015-07-23 01:19:26 -0700 | [diff] [blame] | 346 | Thread* self, const CompilerDriver& driver, Handle<mirror::ClassLoader> class_loader, | 
| Andreas Gampe | 3f1dcd3 | 2018-12-28 09:39:56 -0800 | [diff] [blame] | 347 | const DexFile& dex_file, const dex::ClassDef& class_def) | 
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 348 | REQUIRES_SHARED(Locks::mutator_lock_) { | 
| Nicolas Geoffray | f307527 | 2018-01-08 12:41:19 +0000 | [diff] [blame] | 349 | // When the dex file is uncompressed in the APK, we do not generate a copy in the .vdex | 
|  | 350 | // file. As a result, dex2oat will map the dex file read-only, and we only need to check | 
|  | 351 | // that to know if we can do quickening. | 
|  | 352 | if (dex_file.GetContainer() != nullptr && dex_file.GetContainer()->IsReadOnly()) { | 
|  | 353 | return optimizer::DexToDexCompiler::CompilationLevel::kDontDexToDexCompile; | 
|  | 354 | } | 
| Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 355 | auto* const runtime = Runtime::Current(); | 
| Nicolas Geoffray | 49cda06 | 2017-04-21 13:08:25 +0100 | [diff] [blame] | 356 | DCHECK(driver.GetCompilerOptions().IsQuickeningCompilationEnabled()); | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 357 | const char* descriptor = dex_file.GetClassDescriptor(class_def); | 
| Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 358 | ClassLinker* class_linker = runtime->GetClassLinker(); | 
| Vladimir Marko | a8bba7d | 2018-05-30 15:18:48 +0100 | [diff] [blame] | 359 | ObjPtr<mirror::Class> klass = class_linker->FindClass(self, descriptor, class_loader); | 
| Andreas Gampe | 2ed8def | 2014-08-28 14:41:02 -0700 | [diff] [blame] | 360 | if (klass == nullptr) { | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 361 | CHECK(self->IsExceptionPending()); | 
|  | 362 | self->ClearException(); | 
| Mathieu Chartier | a79efdb | 2018-01-18 16:31:01 -0800 | [diff] [blame] | 363 | return optimizer::DexToDexCompiler::CompilationLevel::kDontDexToDexCompile; | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 364 | } | 
| Andreas Gampe | 2ed8def | 2014-08-28 14:41:02 -0700 | [diff] [blame] | 365 | // DexToDex at the kOptimize level may introduce quickened opcodes, which replace symbolic | 
|  | 366 | // references with actual offsets. We cannot re-verify such instructions. | 
|  | 367 | // | 
|  | 368 | // We store the verification information in the class status in the oat file, which the linker | 
|  | 369 | // can validate (checksums) and use to skip load-time verification. It is thus safe to | 
|  | 370 | // optimize when a class has been fully verified before. | 
| Mathieu Chartier | a79efdb | 2018-01-18 16:31:01 -0800 | [diff] [blame] | 371 | optimizer::DexToDexCompiler::CompilationLevel max_level = | 
|  | 372 | optimizer::DexToDexCompiler::CompilationLevel::kOptimize; | 
| Alex Light | e40dd38 | 2017-01-25 17:44:53 -0800 | [diff] [blame] | 373 | if (driver.GetCompilerOptions().GetDebuggable()) { | 
|  | 374 | // We are debuggable so definitions of classes might be changed. We don't want to do any | 
|  | 375 | // optimizations that could break that. | 
| Mathieu Chartier | a79efdb | 2018-01-18 16:31:01 -0800 | [diff] [blame] | 376 | max_level = optimizer::DexToDexCompiler::CompilationLevel::kDontDexToDexCompile; | 
| Alex Light | e40dd38 | 2017-01-25 17:44:53 -0800 | [diff] [blame] | 377 | } | 
| Andreas Gampe | 2ed8def | 2014-08-28 14:41:02 -0700 | [diff] [blame] | 378 | if (klass->IsVerified()) { | 
| Sebastien Hertz | 7502122 | 2013-07-16 18:34:50 +0200 | [diff] [blame] | 379 | // Class is verified so we can enable DEX-to-DEX compilation for performance. | 
| Alex Light | e40dd38 | 2017-01-25 17:44:53 -0800 | [diff] [blame] | 380 | return max_level; | 
| Sebastien Hertz | 7502122 | 2013-07-16 18:34:50 +0200 | [diff] [blame] | 381 | } else { | 
| Andreas Gampe | 1a4bc7f | 2017-03-27 14:57:30 -0700 | [diff] [blame] | 382 | // Class verification has failed: do not run DEX-to-DEX optimizations. | 
| Mathieu Chartier | a79efdb | 2018-01-18 16:31:01 -0800 | [diff] [blame] | 383 | return optimizer::DexToDexCompiler::CompilationLevel::kDontDexToDexCompile; | 
| Andreas Gampe | 5eb0d38 | 2015-07-23 01:19:26 -0700 | [diff] [blame] | 384 | } | 
|  | 385 | } | 
|  | 386 |  | 
| Mathieu Chartier | a79efdb | 2018-01-18 16:31:01 -0800 | [diff] [blame] | 387 | static optimizer::DexToDexCompiler::CompilationLevel GetDexToDexCompilationLevel( | 
| Andreas Gampe | 5eb0d38 | 2015-07-23 01:19:26 -0700 | [diff] [blame] | 388 | Thread* self, | 
|  | 389 | const CompilerDriver& driver, | 
|  | 390 | jobject jclass_loader, | 
|  | 391 | const DexFile& dex_file, | 
| Andreas Gampe | 3f1dcd3 | 2018-12-28 09:39:56 -0800 | [diff] [blame] | 392 | const dex::ClassDef& class_def) { | 
| Andreas Gampe | 5eb0d38 | 2015-07-23 01:19:26 -0700 | [diff] [blame] | 393 | ScopedObjectAccess soa(self); | 
|  | 394 | StackHandleScope<1> hs(soa.Self()); | 
|  | 395 | Handle<mirror::ClassLoader> class_loader( | 
| Mathieu Chartier | 0795f23 | 2016-09-27 18:43:30 -0700 | [diff] [blame] | 396 | hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader))); | 
| Andreas Gampe | 5eb0d38 | 2015-07-23 01:19:26 -0700 | [diff] [blame] | 397 | return GetDexToDexCompilationLevel(self, driver, class_loader, dex_file, class_def); | 
|  | 398 | } | 
|  | 399 |  | 
|  | 400 | // Does the runtime for the InstructionSet provide an implementation returned by | 
|  | 401 | // GetQuickGenericJniStub allowing down calls that aren't compiled using a JNI compiler? | 
|  | 402 | static bool InstructionSetHasGenericJniStub(InstructionSet isa) { | 
|  | 403 | switch (isa) { | 
| Vladimir Marko | 33bff25 | 2017-11-01 14:35:42 +0000 | [diff] [blame] | 404 | case InstructionSet::kArm: | 
|  | 405 | case InstructionSet::kArm64: | 
|  | 406 | case InstructionSet::kThumb2: | 
|  | 407 | case InstructionSet::kMips: | 
|  | 408 | case InstructionSet::kMips64: | 
|  | 409 | case InstructionSet::kX86: | 
|  | 410 | case InstructionSet::kX86_64: return true; | 
| Andreas Gampe | 5eb0d38 | 2015-07-23 01:19:26 -0700 | [diff] [blame] | 411 | default: return false; | 
|  | 412 | } | 
|  | 413 | } | 
|  | 414 |  | 
| Andreas Gampe | 3c060ad | 2018-01-22 13:07:49 -0800 | [diff] [blame] | 415 | template <typename CompileFn> | 
|  | 416 | static void CompileMethodHarness( | 
|  | 417 | Thread* self, | 
|  | 418 | CompilerDriver* driver, | 
| Andreas Gampe | 3f1dcd3 | 2018-12-28 09:39:56 -0800 | [diff] [blame] | 419 | const dex::CodeItem* code_item, | 
| Andreas Gampe | 3c060ad | 2018-01-22 13:07:49 -0800 | [diff] [blame] | 420 | uint32_t access_flags, | 
|  | 421 | InvokeType invoke_type, | 
|  | 422 | uint16_t class_def_idx, | 
|  | 423 | uint32_t method_idx, | 
|  | 424 | Handle<mirror::ClassLoader> class_loader, | 
|  | 425 | const DexFile& dex_file, | 
|  | 426 | optimizer::DexToDexCompiler::CompilationLevel dex_to_dex_compilation_level, | 
| Andreas Gampe | 3c060ad | 2018-01-22 13:07:49 -0800 | [diff] [blame] | 427 | Handle<mirror::DexCache> dex_cache, | 
|  | 428 | CompileFn compile_fn) { | 
| Andreas Gampe | 5eb0d38 | 2015-07-23 01:19:26 -0700 | [diff] [blame] | 429 | DCHECK(driver != nullptr); | 
| Andreas Gampe | 3c060ad | 2018-01-22 13:07:49 -0800 | [diff] [blame] | 430 | CompiledMethod* compiled_method; | 
| Andreas Gampe | 5eb0d38 | 2015-07-23 01:19:26 -0700 | [diff] [blame] | 431 | uint64_t start_ns = kTimeCompileMethod ? NanoTime() : 0; | 
|  | 432 | MethodReference method_ref(&dex_file, method_idx); | 
|  | 433 |  | 
| Andreas Gampe | 3c060ad | 2018-01-22 13:07:49 -0800 | [diff] [blame] | 434 | compiled_method = compile_fn(self, | 
|  | 435 | driver, | 
|  | 436 | code_item, | 
|  | 437 | access_flags, | 
|  | 438 | invoke_type, | 
|  | 439 | class_def_idx, | 
|  | 440 | method_idx, | 
|  | 441 | class_loader, | 
|  | 442 | dex_file, | 
|  | 443 | dex_to_dex_compilation_level, | 
| Andreas Gampe | 3c060ad | 2018-01-22 13:07:49 -0800 | [diff] [blame] | 444 | dex_cache); | 
| Igor Murashkin | 9d4b6da | 2016-07-29 09:51:58 -0700 | [diff] [blame] | 445 |  | 
| Andreas Gampe | 5eb0d38 | 2015-07-23 01:19:26 -0700 | [diff] [blame] | 446 | if (kTimeCompileMethod) { | 
|  | 447 | uint64_t duration_ns = NanoTime() - start_ns; | 
|  | 448 | if (duration_ns > MsToNs(driver->GetCompiler()->GetMaximumCompilationTimeBeforeWarning())) { | 
| David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 449 | LOG(WARNING) << "Compilation of " << dex_file.PrettyMethod(method_idx) | 
| Andreas Gampe | 5eb0d38 | 2015-07-23 01:19:26 -0700 | [diff] [blame] | 450 | << " took " << PrettyDuration(duration_ns); | 
|  | 451 | } | 
|  | 452 | } | 
|  | 453 |  | 
|  | 454 | if (compiled_method != nullptr) { | 
| Vladimir Marko | 8e524ad | 2018-07-13 10:27:43 +0100 | [diff] [blame] | 455 | driver->AddCompiledMethod(method_ref, compiled_method); | 
| Andreas Gampe | 5eb0d38 | 2015-07-23 01:19:26 -0700 | [diff] [blame] | 456 | } | 
|  | 457 |  | 
| Andreas Gampe | 5eb0d38 | 2015-07-23 01:19:26 -0700 | [diff] [blame] | 458 | if (self->IsExceptionPending()) { | 
|  | 459 | ScopedObjectAccess soa(self); | 
| David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 460 | LOG(FATAL) << "Unexpected exception compiling: " << dex_file.PrettyMethod(method_idx) << "\n" | 
| Andreas Gampe | 5eb0d38 | 2015-07-23 01:19:26 -0700 | [diff] [blame] | 461 | << self->GetException()->Dump(); | 
| Sebastien Hertz | 7502122 | 2013-07-16 18:34:50 +0200 | [diff] [blame] | 462 | } | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 463 | } | 
|  | 464 |  | 
| Andreas Gampe | 3c060ad | 2018-01-22 13:07:49 -0800 | [diff] [blame] | 465 | static void CompileMethodDex2Dex( | 
|  | 466 | Thread* self, | 
|  | 467 | CompilerDriver* driver, | 
| Andreas Gampe | 3f1dcd3 | 2018-12-28 09:39:56 -0800 | [diff] [blame] | 468 | const dex::CodeItem* code_item, | 
| Andreas Gampe | 3c060ad | 2018-01-22 13:07:49 -0800 | [diff] [blame] | 469 | uint32_t access_flags, | 
|  | 470 | InvokeType invoke_type, | 
|  | 471 | uint16_t class_def_idx, | 
|  | 472 | uint32_t method_idx, | 
|  | 473 | Handle<mirror::ClassLoader> class_loader, | 
|  | 474 | const DexFile& dex_file, | 
|  | 475 | optimizer::DexToDexCompiler::CompilationLevel dex_to_dex_compilation_level, | 
| Andreas Gampe | 3c060ad | 2018-01-22 13:07:49 -0800 | [diff] [blame] | 476 | Handle<mirror::DexCache> dex_cache) { | 
|  | 477 | auto dex_2_dex_fn = [](Thread* self ATTRIBUTE_UNUSED, | 
|  | 478 | CompilerDriver* driver, | 
| Andreas Gampe | 3f1dcd3 | 2018-12-28 09:39:56 -0800 | [diff] [blame] | 479 | const dex::CodeItem* code_item, | 
| Andreas Gampe | 3c060ad | 2018-01-22 13:07:49 -0800 | [diff] [blame] | 480 | uint32_t access_flags, | 
|  | 481 | InvokeType invoke_type, | 
|  | 482 | uint16_t class_def_idx, | 
|  | 483 | uint32_t method_idx, | 
|  | 484 | Handle<mirror::ClassLoader> class_loader, | 
|  | 485 | const DexFile& dex_file, | 
|  | 486 | optimizer::DexToDexCompiler::CompilationLevel dex_to_dex_compilation_level, | 
| Andreas Gampe | 3c060ad | 2018-01-22 13:07:49 -0800 | [diff] [blame] | 487 | Handle<mirror::DexCache> dex_cache ATTRIBUTE_UNUSED) -> CompiledMethod* { | 
|  | 488 | DCHECK(driver != nullptr); | 
|  | 489 | MethodReference method_ref(&dex_file, method_idx); | 
|  | 490 |  | 
|  | 491 | optimizer::DexToDexCompiler* const compiler = &driver->GetDexToDexCompiler(); | 
|  | 492 |  | 
|  | 493 | if (compiler->ShouldCompileMethod(method_ref)) { | 
| Vladimir Marko | 2afaff7 | 2018-11-30 17:01:50 +0000 | [diff] [blame] | 494 | const VerificationResults* results = driver->GetCompilerOptions().GetVerificationResults(); | 
| Andreas Gampe | 3c060ad | 2018-01-22 13:07:49 -0800 | [diff] [blame] | 495 | DCHECK(results != nullptr); | 
|  | 496 | const VerifiedMethod* verified_method = results->GetVerifiedMethod(method_ref); | 
|  | 497 | // Do not optimize if a VerifiedMethod is missing. SafeCast elision, | 
|  | 498 | // for example, relies on it. | 
|  | 499 | return compiler->CompileMethod( | 
|  | 500 | code_item, | 
|  | 501 | access_flags, | 
|  | 502 | invoke_type, | 
|  | 503 | class_def_idx, | 
|  | 504 | method_idx, | 
|  | 505 | class_loader, | 
|  | 506 | dex_file, | 
|  | 507 | (verified_method != nullptr) | 
|  | 508 | ? dex_to_dex_compilation_level | 
|  | 509 | : optimizer::DexToDexCompiler::CompilationLevel::kDontDexToDexCompile); | 
|  | 510 | } | 
|  | 511 | return nullptr; | 
|  | 512 | }; | 
|  | 513 | CompileMethodHarness(self, | 
|  | 514 | driver, | 
|  | 515 | code_item, | 
|  | 516 | access_flags, | 
|  | 517 | invoke_type, | 
|  | 518 | class_def_idx, | 
|  | 519 | method_idx, | 
|  | 520 | class_loader, | 
|  | 521 | dex_file, | 
|  | 522 | dex_to_dex_compilation_level, | 
| Andreas Gampe | 3c060ad | 2018-01-22 13:07:49 -0800 | [diff] [blame] | 523 | dex_cache, | 
|  | 524 | dex_2_dex_fn); | 
|  | 525 | } | 
|  | 526 |  | 
|  | 527 | static void CompileMethodQuick( | 
|  | 528 | Thread* self, | 
|  | 529 | CompilerDriver* driver, | 
| Andreas Gampe | 3f1dcd3 | 2018-12-28 09:39:56 -0800 | [diff] [blame] | 530 | const dex::CodeItem* code_item, | 
| Andreas Gampe | 3c060ad | 2018-01-22 13:07:49 -0800 | [diff] [blame] | 531 | uint32_t access_flags, | 
|  | 532 | InvokeType invoke_type, | 
|  | 533 | uint16_t class_def_idx, | 
|  | 534 | uint32_t method_idx, | 
|  | 535 | Handle<mirror::ClassLoader> class_loader, | 
|  | 536 | const DexFile& dex_file, | 
|  | 537 | optimizer::DexToDexCompiler::CompilationLevel dex_to_dex_compilation_level, | 
| Andreas Gampe | 3c060ad | 2018-01-22 13:07:49 -0800 | [diff] [blame] | 538 | Handle<mirror::DexCache> dex_cache) { | 
|  | 539 | auto quick_fn = []( | 
|  | 540 | Thread* self, | 
|  | 541 | CompilerDriver* driver, | 
| Andreas Gampe | 3f1dcd3 | 2018-12-28 09:39:56 -0800 | [diff] [blame] | 542 | const dex::CodeItem* code_item, | 
| Andreas Gampe | 3c060ad | 2018-01-22 13:07:49 -0800 | [diff] [blame] | 543 | uint32_t access_flags, | 
|  | 544 | InvokeType invoke_type, | 
|  | 545 | uint16_t class_def_idx, | 
|  | 546 | uint32_t method_idx, | 
|  | 547 | Handle<mirror::ClassLoader> class_loader, | 
|  | 548 | const DexFile& dex_file, | 
|  | 549 | optimizer::DexToDexCompiler::CompilationLevel dex_to_dex_compilation_level, | 
| Andreas Gampe | 3c060ad | 2018-01-22 13:07:49 -0800 | [diff] [blame] | 550 | Handle<mirror::DexCache> dex_cache) { | 
|  | 551 | DCHECK(driver != nullptr); | 
|  | 552 | CompiledMethod* compiled_method = nullptr; | 
|  | 553 | MethodReference method_ref(&dex_file, method_idx); | 
|  | 554 |  | 
|  | 555 | if ((access_flags & kAccNative) != 0) { | 
|  | 556 | // Are we extracting only and have support for generic JNI down calls? | 
|  | 557 | if (!driver->GetCompilerOptions().IsJniCompilationEnabled() && | 
| Vladimir Marko | a043111 | 2018-06-25 09:32:54 +0100 | [diff] [blame] | 558 | InstructionSetHasGenericJniStub(driver->GetCompilerOptions().GetInstructionSet())) { | 
| Andreas Gampe | 3c060ad | 2018-01-22 13:07:49 -0800 | [diff] [blame] | 559 | // Leaving this empty will trigger the generic JNI version | 
|  | 560 | } else { | 
|  | 561 | // Query any JNI optimization annotations such as @FastNative or @CriticalNative. | 
|  | 562 | access_flags |= annotations::GetNativeMethodAnnotationAccessFlags( | 
|  | 563 | dex_file, dex_file.GetClassDef(class_def_idx), method_idx); | 
|  | 564 |  | 
|  | 565 | compiled_method = driver->GetCompiler()->JniCompile( | 
|  | 566 | access_flags, method_idx, dex_file, dex_cache); | 
|  | 567 | CHECK(compiled_method != nullptr); | 
|  | 568 | } | 
|  | 569 | } else if ((access_flags & kAccAbstract) != 0) { | 
|  | 570 | // Abstract methods don't have code. | 
|  | 571 | } else { | 
| Vladimir Marko | 2afaff7 | 2018-11-30 17:01:50 +0000 | [diff] [blame] | 572 | const VerificationResults* results = driver->GetCompilerOptions().GetVerificationResults(); | 
| Andreas Gampe | 3c060ad | 2018-01-22 13:07:49 -0800 | [diff] [blame] | 573 | DCHECK(results != nullptr); | 
|  | 574 | const VerifiedMethod* verified_method = results->GetVerifiedMethod(method_ref); | 
| Mathieu Chartier | a297b55 | 2018-11-07 11:41:01 -0800 | [diff] [blame] | 575 | bool compile = | 
| Andreas Gampe | 3c060ad | 2018-01-22 13:07:49 -0800 | [diff] [blame] | 576 | // Basic checks, e.g., not <clinit>. | 
|  | 577 | results->IsCandidateForCompilation(method_ref, access_flags) && | 
|  | 578 | // Did not fail to create VerifiedMethod metadata. | 
|  | 579 | verified_method != nullptr && | 
|  | 580 | // Do not have failures that should punt to the interpreter. | 
|  | 581 | !verified_method->HasRuntimeThrow() && | 
|  | 582 | (verified_method->GetEncounteredVerificationFailures() & | 
|  | 583 | (verifier::VERIFY_ERROR_FORCE_INTERPRETER | verifier::VERIFY_ERROR_LOCKING)) == 0 && | 
|  | 584 | // Is eligable for compilation by methods-to-compile filter. | 
| Andreas Gampe | 3c060ad | 2018-01-22 13:07:49 -0800 | [diff] [blame] | 585 | driver->ShouldCompileBasedOnProfile(method_ref); | 
|  | 586 |  | 
|  | 587 | if (compile) { | 
|  | 588 | // NOTE: if compiler declines to compile this method, it will return null. | 
|  | 589 | compiled_method = driver->GetCompiler()->Compile(code_item, | 
|  | 590 | access_flags, | 
|  | 591 | invoke_type, | 
|  | 592 | class_def_idx, | 
|  | 593 | method_idx, | 
|  | 594 | class_loader, | 
|  | 595 | dex_file, | 
|  | 596 | dex_cache); | 
| Andreas Gampe | 5c80311 | 2018-04-13 17:28:34 -0700 | [diff] [blame] | 597 | ProfileMethodsCheck check_type = | 
|  | 598 | driver->GetCompilerOptions().CheckProfiledMethodsCompiled(); | 
|  | 599 | if (UNLIKELY(check_type != ProfileMethodsCheck::kNone)) { | 
|  | 600 | bool violation = driver->ShouldCompileBasedOnProfile(method_ref) && | 
|  | 601 | (compiled_method == nullptr); | 
|  | 602 | if (violation) { | 
|  | 603 | std::ostringstream oss; | 
|  | 604 | oss << "Failed to compile " | 
|  | 605 | << method_ref.dex_file->PrettyMethod(method_ref.index) | 
|  | 606 | << "[" << method_ref.dex_file->GetLocation() << "]" | 
|  | 607 | << " as expected by profile"; | 
|  | 608 | switch (check_type) { | 
|  | 609 | case ProfileMethodsCheck::kNone: | 
|  | 610 | break; | 
|  | 611 | case ProfileMethodsCheck::kLog: | 
|  | 612 | LOG(ERROR) << oss.str(); | 
|  | 613 | break; | 
|  | 614 | case ProfileMethodsCheck::kAbort: | 
|  | 615 | LOG(FATAL_WITHOUT_ABORT) << oss.str(); | 
|  | 616 | _exit(1); | 
|  | 617 | } | 
|  | 618 | } | 
|  | 619 | } | 
| Andreas Gampe | 3c060ad | 2018-01-22 13:07:49 -0800 | [diff] [blame] | 620 | } | 
|  | 621 | if (compiled_method == nullptr && | 
|  | 622 | dex_to_dex_compilation_level != | 
|  | 623 | optimizer::DexToDexCompiler::CompilationLevel::kDontDexToDexCompile) { | 
|  | 624 | DCHECK(!Runtime::Current()->UseJitCompilation()); | 
|  | 625 | // TODO: add a command-line option to disable DEX-to-DEX compilation ? | 
| Mathieu Chartier | 279e3a3 | 2018-01-24 18:17:55 -0800 | [diff] [blame] | 626 | driver->GetDexToDexCompiler().MarkForCompilation(self, method_ref); | 
| Andreas Gampe | 3c060ad | 2018-01-22 13:07:49 -0800 | [diff] [blame] | 627 | } | 
|  | 628 | } | 
|  | 629 | return compiled_method; | 
|  | 630 | }; | 
|  | 631 | CompileMethodHarness(self, | 
|  | 632 | driver, | 
|  | 633 | code_item, | 
|  | 634 | access_flags, | 
|  | 635 | invoke_type, | 
|  | 636 | class_def_idx, | 
|  | 637 | method_idx, | 
|  | 638 | class_loader, | 
|  | 639 | dex_file, | 
|  | 640 | dex_to_dex_compilation_level, | 
| Andreas Gampe | 3c060ad | 2018-01-22 13:07:49 -0800 | [diff] [blame] | 641 | dex_cache, | 
|  | 642 | quick_fn); | 
|  | 643 | } | 
|  | 644 |  | 
| Andreas Gampe | ace0dc1 | 2016-01-20 13:33:13 -0800 | [diff] [blame] | 645 | void CompilerDriver::Resolve(jobject class_loader, | 
|  | 646 | const std::vector<const DexFile*>& dex_files, | 
|  | 647 | TimingLogger* timings) { | 
|  | 648 | // Resolution allocates classes and needs to run single-threaded to be deterministic. | 
|  | 649 | bool force_determinism = GetCompilerOptions().IsForceDeterminism(); | 
|  | 650 | ThreadPool* resolve_thread_pool = force_determinism | 
|  | 651 | ? single_thread_pool_.get() | 
|  | 652 | : parallel_thread_pool_.get(); | 
|  | 653 | size_t resolve_thread_count = force_determinism ? 1U : parallel_thread_count_; | 
|  | 654 |  | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 655 | for (size_t i = 0; i != dex_files.size(); ++i) { | 
|  | 656 | const DexFile* dex_file = dex_files[i]; | 
| Kenny Root | d518534 | 2014-05-13 14:47:05 -0700 | [diff] [blame] | 657 | CHECK(dex_file != nullptr); | 
| Andreas Gampe | ace0dc1 | 2016-01-20 13:33:13 -0800 | [diff] [blame] | 658 | ResolveDexFile(class_loader, | 
|  | 659 | *dex_file, | 
|  | 660 | dex_files, | 
|  | 661 | resolve_thread_pool, | 
|  | 662 | resolve_thread_count, | 
|  | 663 | timings); | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 664 | } | 
|  | 665 | } | 
|  | 666 |  | 
| Mathieu Chartier | cd0f38f | 2018-10-15 09:44:35 -0700 | [diff] [blame] | 667 | void CompilerDriver::ResolveConstStrings(const std::vector<const DexFile*>& dex_files, | 
|  | 668 | bool only_startup_strings, | 
|  | 669 | TimingLogger* timings) { | 
| Nicolas Geoffray | 571d234 | 2016-10-12 13:03:15 +0000 | [diff] [blame] | 670 | ScopedObjectAccess soa(Thread::Current()); | 
|  | 671 | StackHandleScope<1> hs(soa.Self()); | 
|  | 672 | ClassLinker* const class_linker = Runtime::Current()->GetClassLinker(); | 
|  | 673 | MutableHandle<mirror::DexCache> dex_cache(hs.NewHandle<mirror::DexCache>(nullptr)); | 
| Mathieu Chartier | 2275277 | 2018-10-18 14:18:59 -0700 | [diff] [blame] | 674 | size_t num_instructions = 0u; | 
| Nicolas Geoffray | 571d234 | 2016-10-12 13:03:15 +0000 | [diff] [blame] | 675 |  | 
| Andreas Gampe | ace0dc1 | 2016-01-20 13:33:13 -0800 | [diff] [blame] | 676 | for (const DexFile* dex_file : dex_files) { | 
| Vladimir Marko | cd556b0 | 2017-02-03 11:47:34 +0000 | [diff] [blame] | 677 | dex_cache.Assign(class_linker->FindDexCache(soa.Self(), *dex_file)); | 
| Mathieu Chartier | 1ca718e | 2018-10-23 12:55:34 -0700 | [diff] [blame] | 678 | if (only_startup_strings) { | 
|  | 679 | // When resolving startup strings, create the preresolved strings array. | 
|  | 680 | dex_cache->AddPreResolvedStringsArray(); | 
|  | 681 | } | 
| Andreas Gampe | ace0dc1 | 2016-01-20 13:33:13 -0800 | [diff] [blame] | 682 | TimingLogger::ScopedTiming t("Resolve const-string Strings", timings); | 
|  | 683 |  | 
| Mathieu Chartier | a297b55 | 2018-11-07 11:41:01 -0800 | [diff] [blame] | 684 | // TODO: Implement a profile-based filter for the boot image. See b/76145463. | 
| Mathieu Chartier | c8c8d5f | 2018-05-22 11:56:14 -0700 | [diff] [blame] | 685 | for (ClassAccessor accessor : dex_file->GetClasses()) { | 
| Vladimir Marko | 1a2a5cd | 2018-11-07 15:39:48 +0000 | [diff] [blame] | 686 | const ProfileCompilationInfo* profile_compilation_info = | 
|  | 687 | GetCompilerOptions().GetProfileCompilationInfo(); | 
| Mathieu Chartier | a297b55 | 2018-11-07 11:41:01 -0800 | [diff] [blame] | 688 |  | 
| Mathieu Chartier | 2275277 | 2018-10-18 14:18:59 -0700 | [diff] [blame] | 689 | const bool is_startup_class = | 
| Vladimir Marko | 1a2a5cd | 2018-11-07 15:39:48 +0000 | [diff] [blame] | 690 | profile_compilation_info != nullptr && | 
|  | 691 | profile_compilation_info->ContainsClass(*dex_file, accessor.GetClassIdx()); | 
| Mathieu Chartier | 2275277 | 2018-10-18 14:18:59 -0700 | [diff] [blame] | 692 |  | 
| Mathieu Chartier | c2109c6 | 2019-03-20 13:34:39 -0700 | [diff] [blame^] | 693 | // Skip methods that failed to verify since they may contain invalid Dex code. | 
|  | 694 | if (GetClassStatus(ClassReference(dex_file, accessor.GetClassDefIndex())) < | 
|  | 695 | ClassStatus::kRetryVerificationAtRuntime) { | 
|  | 696 | continue; | 
|  | 697 | } | 
|  | 698 |  | 
| Mathieu Chartier | 0d896bd | 2018-05-25 00:20:27 -0700 | [diff] [blame] | 699 | for (const ClassAccessor::Method& method : accessor.GetMethods()) { | 
| Mathieu Chartier | 2275277 | 2018-10-18 14:18:59 -0700 | [diff] [blame] | 700 | const bool is_clinit = (method.GetAccessFlags() & kAccConstructor) != 0 && | 
|  | 701 | (method.GetAccessFlags() & kAccStatic) != 0; | 
|  | 702 | const bool is_startup_clinit = is_startup_class && is_clinit; | 
|  | 703 |  | 
| Vladimir Marko | 8809c9c | 2019-03-11 15:55:21 +0000 | [diff] [blame] | 704 | if (profile_compilation_info != nullptr && !is_startup_clinit) { | 
|  | 705 | ProfileCompilationInfo::MethodHotness hotness = | 
|  | 706 | profile_compilation_info->GetMethodHotness(method.GetReference()); | 
|  | 707 | if (only_startup_strings ? !hotness.IsStartup() : !hotness.IsInProfile()) { | 
|  | 708 | continue; | 
|  | 709 | } | 
| Mathieu Chartier | cd0f38f | 2018-10-15 09:44:35 -0700 | [diff] [blame] | 710 | } | 
|  | 711 |  | 
| Mathieu Chartier | c8c8d5f | 2018-05-22 11:56:14 -0700 | [diff] [blame] | 712 | // Resolve const-strings in the code. Done to have deterministic allocation behavior. Right | 
|  | 713 | // now this is single-threaded for simplicity. | 
|  | 714 | // TODO: Collect the relevant string indices in parallel, then allocate them sequentially | 
|  | 715 | // in a stable order. | 
|  | 716 | for (const DexInstructionPcPair& inst : method.GetInstructions()) { | 
|  | 717 | switch (inst->Opcode()) { | 
|  | 718 | case Instruction::CONST_STRING: | 
|  | 719 | case Instruction::CONST_STRING_JUMBO: { | 
|  | 720 | dex::StringIndex string_index((inst->Opcode() == Instruction::CONST_STRING) | 
|  | 721 | ? inst->VRegB_21c() | 
|  | 722 | : inst->VRegB_31c()); | 
|  | 723 | ObjPtr<mirror::String> string = class_linker->ResolveString(string_index, dex_cache); | 
|  | 724 | CHECK(string != nullptr) << "Could not allocate a string when forcing determinism"; | 
| Mathieu Chartier | 1ca718e | 2018-10-23 12:55:34 -0700 | [diff] [blame] | 725 | if (only_startup_strings) { | 
|  | 726 | dex_cache->GetPreResolvedStrings()[string_index.index_] = | 
|  | 727 | GcRoot<mirror::String>(string); | 
|  | 728 | } | 
| Mathieu Chartier | 2275277 | 2018-10-18 14:18:59 -0700 | [diff] [blame] | 729 | ++num_instructions; | 
| Mathieu Chartier | c8c8d5f | 2018-05-22 11:56:14 -0700 | [diff] [blame] | 730 | break; | 
|  | 731 | } | 
| Andreas Gampe | ace0dc1 | 2016-01-20 13:33:13 -0800 | [diff] [blame] | 732 |  | 
| Mathieu Chartier | c8c8d5f | 2018-05-22 11:56:14 -0700 | [diff] [blame] | 733 | default: | 
|  | 734 | break; | 
|  | 735 | } | 
|  | 736 | } | 
| Mathieu Chartier | 0d896bd | 2018-05-25 00:20:27 -0700 | [diff] [blame] | 737 | } | 
| Vladimir Marko | 175e786 | 2018-03-27 09:03:13 +0000 | [diff] [blame] | 738 | } | 
|  | 739 | } | 
| Mathieu Chartier | 2275277 | 2018-10-18 14:18:59 -0700 | [diff] [blame] | 740 | VLOG(compiler) << "Resolved " << num_instructions << " const string instructions"; | 
| Vladimir Marko | 175e786 | 2018-03-27 09:03:13 +0000 | [diff] [blame] | 741 | } | 
|  | 742 |  | 
|  | 743 | // Initialize type check bit strings for check-cast and instance-of in the code. Done to have | 
|  | 744 | // deterministic allocation behavior. Right now this is single-threaded for simplicity. | 
|  | 745 | // TODO: Collect the relevant type indices in parallel, then process them sequentially in a | 
|  | 746 | //       stable order. | 
|  | 747 |  | 
|  | 748 | static void InitializeTypeCheckBitstrings(CompilerDriver* driver, | 
|  | 749 | ClassLinker* class_linker, | 
|  | 750 | Handle<mirror::DexCache> dex_cache, | 
|  | 751 | const DexFile& dex_file, | 
| Mathieu Chartier | c8c8d5f | 2018-05-22 11:56:14 -0700 | [diff] [blame] | 752 | const ClassAccessor::Method& method) | 
| Vladimir Marko | 175e786 | 2018-03-27 09:03:13 +0000 | [diff] [blame] | 753 | REQUIRES_SHARED(Locks::mutator_lock_) { | 
| Mathieu Chartier | c8c8d5f | 2018-05-22 11:56:14 -0700 | [diff] [blame] | 754 | for (const DexInstructionPcPair& inst : method.GetInstructions()) { | 
| Vladimir Marko | 175e786 | 2018-03-27 09:03:13 +0000 | [diff] [blame] | 755 | switch (inst->Opcode()) { | 
|  | 756 | case Instruction::CHECK_CAST: | 
|  | 757 | case Instruction::INSTANCE_OF: { | 
|  | 758 | dex::TypeIndex type_index( | 
|  | 759 | (inst->Opcode() == Instruction::CHECK_CAST) ? inst->VRegB_21c() : inst->VRegC_22c()); | 
|  | 760 | const char* descriptor = dex_file.StringByTypeIdx(type_index); | 
|  | 761 | // We currently do not use the bitstring type check for array or final (including | 
|  | 762 | // primitive) classes. We may reconsider this in future if it's deemed to be beneficial. | 
|  | 763 | // And we cannot use it for classes outside the boot image as we do not know the runtime | 
|  | 764 | // value of their bitstring when compiling (it may not even get assigned at runtime). | 
| Vladimir Marko | dc4bcce | 2018-06-21 16:15:42 +0100 | [diff] [blame] | 765 | if (descriptor[0] == 'L' && driver->GetCompilerOptions().IsImageClass(descriptor)) { | 
| Vladimir Marko | 175e786 | 2018-03-27 09:03:13 +0000 | [diff] [blame] | 766 | ObjPtr<mirror::Class> klass = | 
|  | 767 | class_linker->LookupResolvedType(type_index, | 
|  | 768 | dex_cache.Get(), | 
| Andreas Gampe | 3db7068 | 2018-12-26 15:12:03 -0800 | [diff] [blame] | 769 | /* class_loader= */ nullptr); | 
| Vladimir Marko | 175e786 | 2018-03-27 09:03:13 +0000 | [diff] [blame] | 770 | CHECK(klass != nullptr) << descriptor << " should have been previously resolved."; | 
|  | 771 | // Now assign the bitstring if the class is not final. Keep this in sync with sharpening. | 
|  | 772 | if (!klass->IsFinal()) { | 
|  | 773 | MutexLock subtype_check_lock(Thread::Current(), *Locks::subtype_check_lock_); | 
|  | 774 | SubtypeCheck<ObjPtr<mirror::Class>>::EnsureAssigned(klass); | 
|  | 775 | } | 
| Andreas Gampe | ace0dc1 | 2016-01-20 13:33:13 -0800 | [diff] [blame] | 776 | } | 
| Vladimir Marko | 175e786 | 2018-03-27 09:03:13 +0000 | [diff] [blame] | 777 | break; | 
|  | 778 | } | 
|  | 779 |  | 
|  | 780 | default: | 
|  | 781 | break; | 
|  | 782 | } | 
|  | 783 | } | 
|  | 784 | } | 
|  | 785 |  | 
|  | 786 | static void InitializeTypeCheckBitstrings(CompilerDriver* driver, | 
|  | 787 | const std::vector<const DexFile*>& dex_files, | 
|  | 788 | TimingLogger* timings) { | 
|  | 789 | ScopedObjectAccess soa(Thread::Current()); | 
|  | 790 | StackHandleScope<1> hs(soa.Self()); | 
|  | 791 | ClassLinker* const class_linker = Runtime::Current()->GetClassLinker(); | 
|  | 792 | MutableHandle<mirror::DexCache> dex_cache(hs.NewHandle<mirror::DexCache>(nullptr)); | 
|  | 793 |  | 
|  | 794 | for (const DexFile* dex_file : dex_files) { | 
|  | 795 | dex_cache.Assign(class_linker->FindDexCache(soa.Self(), *dex_file)); | 
|  | 796 | TimingLogger::ScopedTiming t("Initialize type check bitstrings", timings); | 
|  | 797 |  | 
| Mathieu Chartier | c8c8d5f | 2018-05-22 11:56:14 -0700 | [diff] [blame] | 798 | for (ClassAccessor accessor : dex_file->GetClasses()) { | 
| Vladimir Marko | 175e786 | 2018-03-27 09:03:13 +0000 | [diff] [blame] | 799 | // Direct and virtual methods. | 
| Mathieu Chartier | 0d896bd | 2018-05-25 00:20:27 -0700 | [diff] [blame] | 800 | for (const ClassAccessor::Method& method : accessor.GetMethods()) { | 
| Mathieu Chartier | c8c8d5f | 2018-05-22 11:56:14 -0700 | [diff] [blame] | 801 | InitializeTypeCheckBitstrings(driver, class_linker, dex_cache, *dex_file, method); | 
| Mathieu Chartier | 0d896bd | 2018-05-25 00:20:27 -0700 | [diff] [blame] | 802 | } | 
| Andreas Gampe | ace0dc1 | 2016-01-20 13:33:13 -0800 | [diff] [blame] | 803 | } | 
|  | 804 | } | 
|  | 805 | } | 
|  | 806 |  | 
|  | 807 | inline void CompilerDriver::CheckThreadPools() { | 
|  | 808 | DCHECK(parallel_thread_pool_ != nullptr); | 
|  | 809 | DCHECK(single_thread_pool_ != nullptr); | 
|  | 810 | } | 
|  | 811 |  | 
| Nicolas Geoffray | 0a27fd0 | 2017-01-25 16:18:54 +0000 | [diff] [blame] | 812 | static void EnsureVerifiedOrVerifyAtRuntime(jobject jclass_loader, | 
|  | 813 | const std::vector<const DexFile*>& dex_files) { | 
|  | 814 | ScopedObjectAccess soa(Thread::Current()); | 
|  | 815 | StackHandleScope<2> hs(soa.Self()); | 
|  | 816 | Handle<mirror::ClassLoader> class_loader( | 
|  | 817 | hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader))); | 
|  | 818 | MutableHandle<mirror::Class> cls(hs.NewHandle<mirror::Class>(nullptr)); | 
|  | 819 | ClassLinker* class_linker = Runtime::Current()->GetClassLinker(); | 
|  | 820 |  | 
|  | 821 | for (const DexFile* dex_file : dex_files) { | 
| Mathieu Chartier | c8c8d5f | 2018-05-22 11:56:14 -0700 | [diff] [blame] | 822 | for (ClassAccessor accessor : dex_file->GetClasses()) { | 
|  | 823 | cls.Assign(class_linker->FindClass(soa.Self(), accessor.GetDescriptor(), class_loader)); | 
| Andreas Gampe | fa4333d | 2017-02-14 11:10:34 -0800 | [diff] [blame] | 824 | if (cls == nullptr) { | 
| Nicolas Geoffray | 0a27fd0 | 2017-01-25 16:18:54 +0000 | [diff] [blame] | 825 | soa.Self()->ClearException(); | 
|  | 826 | } else if (&cls->GetDexFile() == dex_file) { | 
| Nicolas Geoffray | 7cc3ae5 | 2017-03-07 14:33:37 +0000 | [diff] [blame] | 827 | DCHECK(cls->IsErroneous() || cls->IsVerified() || cls->ShouldVerifyAtRuntime()) | 
| Nicolas Geoffray | 0a27fd0 | 2017-01-25 16:18:54 +0000 | [diff] [blame] | 828 | << cls->PrettyClass() | 
|  | 829 | << " " << cls->GetStatus(); | 
|  | 830 | } | 
|  | 831 | } | 
|  | 832 | } | 
|  | 833 | } | 
|  | 834 |  | 
| Andreas Gampe | ace0dc1 | 2016-01-20 13:33:13 -0800 | [diff] [blame] | 835 | void CompilerDriver::PreCompile(jobject class_loader, | 
|  | 836 | const std::vector<const DexFile*>& dex_files, | 
| Vladimir Marko | 2afaff7 | 2018-11-30 17:01:50 +0000 | [diff] [blame] | 837 | TimingLogger* timings, | 
|  | 838 | /*inout*/ HashSet<std::string>* image_classes, | 
|  | 839 | /*out*/ VerificationResults* verification_results) { | 
| Andreas Gampe | ace0dc1 | 2016-01-20 13:33:13 -0800 | [diff] [blame] | 840 | CheckThreadPools(); | 
| Vladimir Marko | 213ee2d | 2018-06-22 11:56:34 +0100 | [diff] [blame] | 841 |  | 
| Vladimir Marko | dc4bcce | 2018-06-21 16:15:42 +0100 | [diff] [blame] | 842 | VLOG(compiler) << "Before precompile " << GetMemoryUsageString(false); | 
|  | 843 |  | 
| Vladimir Marko | 213ee2d | 2018-06-22 11:56:34 +0100 | [diff] [blame] | 844 | compiled_classes_.AddDexFiles(GetCompilerOptions().GetDexFilesForOatFile()); | 
|  | 845 | dex_to_dex_compiler_.SetDexFiles(GetCompilerOptions().GetDexFilesForOatFile()); | 
|  | 846 |  | 
| Vladimir Marko | dc4bcce | 2018-06-21 16:15:42 +0100 | [diff] [blame] | 847 | // Precompile: | 
|  | 848 | // 1) Load image classes. | 
|  | 849 | // 2) Resolve all classes. | 
|  | 850 | // 3) For deterministic boot image, resolve strings for const-string instructions. | 
|  | 851 | // 4) Attempt to verify all classes. | 
|  | 852 | // 5) Attempt to initialize image classes, and trivially initialized classes. | 
|  | 853 | // 6) Update the set of image classes. | 
|  | 854 | // 7) For deterministic boot image, initialize bitstrings for type checking. | 
| Andreas Gampe | ace0dc1 | 2016-01-20 13:33:13 -0800 | [diff] [blame] | 855 |  | 
| Vladimir Marko | 2afaff7 | 2018-11-30 17:01:50 +0000 | [diff] [blame] | 856 | LoadImageClasses(timings, image_classes); | 
| Andreas Gampe | 8d295f8 | 2015-01-20 14:50:21 -0800 | [diff] [blame] | 857 | VLOG(compiler) << "LoadImageClasses: " << GetMemoryUsageString(false); | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 858 |  | 
| Nicolas Geoffray | 49cda06 | 2017-04-21 13:08:25 +0100 | [diff] [blame] | 859 | if (compiler_options_->IsAnyCompilationEnabled()) { | 
| Mathieu Chartier | 88b74b6 | 2017-07-16 17:08:19 -0700 | [diff] [blame] | 860 | // Avoid adding the dex files in the case where we aren't going to add compiled methods. | 
|  | 861 | // This reduces RAM usage for this case. | 
|  | 862 | for (const DexFile* dex_file : dex_files) { | 
| Vladimir Marko | 815d5e5 | 2019-03-04 10:18:31 +0000 | [diff] [blame] | 863 | // Can be already inserted. This happens for gtests. | 
| Mathieu Chartier | 88b74b6 | 2017-07-16 17:08:19 -0700 | [diff] [blame] | 864 | if (!compiled_methods_.HaveDexFile(dex_file)) { | 
| Mathieu Chartier | fc8b422 | 2017-09-17 13:44:24 -0700 | [diff] [blame] | 865 | compiled_methods_.AddDexFile(dex_file); | 
| Mathieu Chartier | 88b74b6 | 2017-07-16 17:08:19 -0700 | [diff] [blame] | 866 | } | 
|  | 867 | } | 
| Nicolas Geoffray | 49cda06 | 2017-04-21 13:08:25 +0100 | [diff] [blame] | 868 | // Resolve eagerly to prepare for compilation. | 
| Andreas Gampe | ace0dc1 | 2016-01-20 13:33:13 -0800 | [diff] [blame] | 869 | Resolve(class_loader, dex_files, timings); | 
| Mathieu Chartier | e86deef | 2015-03-19 13:43:37 -0700 | [diff] [blame] | 870 | VLOG(compiler) << "Resolve: " << GetMemoryUsageString(false); | 
|  | 871 | } | 
|  | 872 |  | 
| Nicolas Geoffray | 60ca949 | 2016-12-20 21:15:00 +0000 | [diff] [blame] | 873 | if (compiler_options_->AssumeClassesAreVerified()) { | 
| Mathieu Chartier | ab972ef | 2014-12-03 17:38:22 -0800 | [diff] [blame] | 874 | VLOG(compiler) << "Verify none mode specified, skipping verification."; | 
| Andreas Gampe | ace0dc1 | 2016-01-20 13:33:13 -0800 | [diff] [blame] | 875 | SetVerified(class_loader, dex_files, timings); | 
| Mathieu Chartier | e86deef | 2015-03-19 13:43:37 -0700 | [diff] [blame] | 876 | } | 
|  | 877 |  | 
| Nicolas Geoffray | 60ca949 | 2016-12-20 21:15:00 +0000 | [diff] [blame] | 878 | if (!compiler_options_->IsVerificationEnabled()) { | 
| Jeff Hao | 4a200f5 | 2014-04-01 14:58:49 -0700 | [diff] [blame] | 879 | return; | 
|  | 880 | } | 
|  | 881 |  | 
| Mathieu Chartier | c2109c6 | 2019-03-20 13:34:39 -0700 | [diff] [blame^] | 882 | Verify(class_loader, dex_files, timings, verification_results); | 
|  | 883 | VLOG(compiler) << "Verify: " << GetMemoryUsageString(false); | 
|  | 884 |  | 
| Vladimir Marko | aad75c6 | 2016-10-03 08:46:48 +0000 | [diff] [blame] | 885 | if (GetCompilerOptions().IsForceDeterminism() && GetCompilerOptions().IsBootImage()) { | 
| Andreas Gampe | ace0dc1 | 2016-01-20 13:33:13 -0800 | [diff] [blame] | 886 | // Resolve strings from const-string. Do this now to have a deterministic image. | 
| Mathieu Chartier | cd0f38f | 2018-10-15 09:44:35 -0700 | [diff] [blame] | 887 | ResolveConstStrings(dex_files, /*only_startup_strings=*/ false, timings); | 
| Andreas Gampe | ace0dc1 | 2016-01-20 13:33:13 -0800 | [diff] [blame] | 888 | VLOG(compiler) << "Resolve const-strings: " << GetMemoryUsageString(false); | 
| Mathieu Chartier | cd0f38f | 2018-10-15 09:44:35 -0700 | [diff] [blame] | 889 | } else if (GetCompilerOptions().ResolveStartupConstStrings()) { | 
|  | 890 | ResolveConstStrings(dex_files, /*only_startup_strings=*/ true, timings); | 
| Andreas Gampe | ace0dc1 | 2016-01-20 13:33:13 -0800 | [diff] [blame] | 891 | } | 
|  | 892 |  | 
| Andreas Gampe | 6cf49e5 | 2015-03-05 13:08:45 -0800 | [diff] [blame] | 893 | if (had_hard_verifier_failure_ && GetCompilerOptions().AbortOnHardVerifierFailure()) { | 
| Andreas Gampe | fdfb4d4 | 2017-07-27 12:12:22 -0700 | [diff] [blame] | 894 | // Avoid dumping threads. Even if we shut down the thread pools, there will still be three | 
|  | 895 | // instances of this thread's stack. | 
|  | 896 | LOG(FATAL_WITHOUT_ABORT) << "Had a hard failure verifying all classes, and was asked to abort " | 
|  | 897 | << "in such situations. Please check the log."; | 
| Andreas Gampe | 56c9b7c | 2018-02-27 18:49:26 -0800 | [diff] [blame] | 898 | _exit(1); | 
| Andreas Gampe | f39208f | 2017-10-19 15:06:59 -0700 | [diff] [blame] | 899 | } else if (number_of_soft_verifier_failures_ > 0 && | 
|  | 900 | GetCompilerOptions().AbortOnSoftVerifierFailure()) { | 
|  | 901 | LOG(FATAL_WITHOUT_ABORT) << "Had " << number_of_soft_verifier_failures_ << " soft failure(s) " | 
|  | 902 | << "verifying all classes, and was asked to abort in such situations. " | 
|  | 903 | << "Please check the log."; | 
| Andreas Gampe | 56c9b7c | 2018-02-27 18:49:26 -0800 | [diff] [blame] | 904 | _exit(1); | 
| Andreas Gampe | 6cf49e5 | 2015-03-05 13:08:45 -0800 | [diff] [blame] | 905 | } | 
|  | 906 |  | 
| Nicolas Geoffray | 49cda06 | 2017-04-21 13:08:25 +0100 | [diff] [blame] | 907 | if (compiler_options_->IsAnyCompilationEnabled()) { | 
| Nicolas Geoffray | 0a27fd0 | 2017-01-25 16:18:54 +0000 | [diff] [blame] | 908 | if (kIsDebugBuild) { | 
|  | 909 | EnsureVerifiedOrVerifyAtRuntime(class_loader, dex_files); | 
|  | 910 | } | 
| Nicolas Geoffray | ade72d6 | 2016-12-15 13:20:02 +0000 | [diff] [blame] | 911 | InitializeClasses(class_loader, dex_files, timings); | 
|  | 912 | VLOG(compiler) << "InitializeClasses: " << GetMemoryUsageString(false); | 
|  | 913 | } | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 914 |  | 
| Vladimir Marko | 2afaff7 | 2018-11-30 17:01:50 +0000 | [diff] [blame] | 915 | UpdateImageClasses(timings, image_classes); | 
| Andreas Gampe | 8d295f8 | 2015-01-20 14:50:21 -0800 | [diff] [blame] | 916 | VLOG(compiler) << "UpdateImageClasses: " << GetMemoryUsageString(false); | 
| Vladimir Marko | 175e786 | 2018-03-27 09:03:13 +0000 | [diff] [blame] | 917 |  | 
|  | 918 | if (kBitstringSubtypeCheckEnabled && | 
|  | 919 | GetCompilerOptions().IsForceDeterminism() && GetCompilerOptions().IsBootImage()) { | 
|  | 920 | // Initialize type check bit string used by check-cast and instanceof. | 
|  | 921 | // Do this now to have a deterministic image. | 
|  | 922 | // Note: This is done after UpdateImageClasses() at it relies on the image classes to be final. | 
|  | 923 | InitializeTypeCheckBitstrings(this, dex_files, timings); | 
|  | 924 | } | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 925 | } | 
|  | 926 |  | 
| Calin Juravle | 226501b | 2015-12-11 14:41:31 +0000 | [diff] [blame] | 927 | bool CompilerDriver::ShouldCompileBasedOnProfile(const MethodReference& method_ref) const { | 
| Mathieu Chartier | 97ab5e3 | 2017-02-22 13:35:44 -0800 | [diff] [blame] | 928 | // Profile compilation info may be null if no profile is passed. | 
| Mathieu Chartier | d0af56c | 2017-02-17 12:56:25 -0800 | [diff] [blame] | 929 | if (!CompilerFilter::DependsOnProfile(compiler_options_->GetCompilerFilter())) { | 
|  | 930 | // Use the compiler filter instead of the presence of profile_compilation_info_ since | 
|  | 931 | // we may want to have full speed compilation along with profile based layout optimizations. | 
| Calin Juravle | 226501b | 2015-12-11 14:41:31 +0000 | [diff] [blame] | 932 | return true; | 
|  | 933 | } | 
| Mathieu Chartier | 97ab5e3 | 2017-02-22 13:35:44 -0800 | [diff] [blame] | 934 | // If we are using a profile filter but do not have a profile compilation info, compile nothing. | 
| Vladimir Marko | 1a2a5cd | 2018-11-07 15:39:48 +0000 | [diff] [blame] | 935 | const ProfileCompilationInfo* profile_compilation_info = | 
|  | 936 | GetCompilerOptions().GetProfileCompilationInfo(); | 
|  | 937 | if (profile_compilation_info == nullptr) { | 
| Mathieu Chartier | 97ab5e3 | 2017-02-22 13:35:44 -0800 | [diff] [blame] | 938 | return false; | 
|  | 939 | } | 
| Mathieu Chartier | 7b135c8 | 2017-06-05 12:54:01 -0700 | [diff] [blame] | 940 | // Compile only hot methods, it is the profile saver's job to decide what startup methods to mark | 
|  | 941 | // as hot. | 
| Vladimir Marko | 1a2a5cd | 2018-11-07 15:39:48 +0000 | [diff] [blame] | 942 | bool result = profile_compilation_info->GetMethodHotness(method_ref).IsHot(); | 
| Calin Juravle | 226501b | 2015-12-11 14:41:31 +0000 | [diff] [blame] | 943 |  | 
|  | 944 | if (kDebugProfileGuidedCompilation) { | 
|  | 945 | LOG(INFO) << "[ProfileGuidedCompilation] " | 
| Mathieu Chartier | fc8b422 | 2017-09-17 13:44:24 -0700 | [diff] [blame] | 946 | << (result ? "Compiled" : "Skipped") << " method:" << method_ref.PrettyMethod(true); | 
| Calin Juravle | 226501b | 2015-12-11 14:41:31 +0000 | [diff] [blame] | 947 | } | 
|  | 948 | return result; | 
|  | 949 | } | 
|  | 950 |  | 
| Mathieu Chartier | e0671ce | 2015-07-28 17:23:28 -0700 | [diff] [blame] | 951 | class ResolveCatchBlockExceptionsClassVisitor : public ClassVisitor { | 
|  | 952 | public: | 
| Vladimir Marko | 8d6768d | 2017-03-14 10:13:21 +0000 | [diff] [blame] | 953 | ResolveCatchBlockExceptionsClassVisitor() : classes_() {} | 
| Mathieu Chartier | e0671ce | 2015-07-28 17:23:28 -0700 | [diff] [blame] | 954 |  | 
| Roland Levillain | f73caca | 2018-08-24 17:19:07 +0100 | [diff] [blame] | 955 | bool operator()(ObjPtr<mirror::Class> c) override REQUIRES_SHARED(Locks::mutator_lock_) { | 
| Vladimir Marko | 8d6768d | 2017-03-14 10:13:21 +0000 | [diff] [blame] | 956 | classes_.push_back(c); | 
| Mathieu Chartier | e4275c0 | 2015-08-06 15:34:15 -0700 | [diff] [blame] | 957 | return true; | 
|  | 958 | } | 
|  | 959 |  | 
| Vladimir Marko | 8d6768d | 2017-03-14 10:13:21 +0000 | [diff] [blame] | 960 | void FindExceptionTypesToResolve( | 
|  | 961 | std::set<std::pair<dex::TypeIndex, const DexFile*>>* exceptions_to_resolve) | 
| Vladimir Marko | bfb80d2 | 2017-02-14 14:08:12 +0000 | [diff] [blame] | 962 | REQUIRES_SHARED(Locks::mutator_lock_) { | 
| Vladimir Marko | 8d6768d | 2017-03-14 10:13:21 +0000 | [diff] [blame] | 963 | const auto pointer_size = Runtime::Current()->GetClassLinker()->GetImagePointerSize(); | 
|  | 964 | for (ObjPtr<mirror::Class> klass : classes_) { | 
|  | 965 | for (ArtMethod& method : klass->GetMethods(pointer_size)) { | 
|  | 966 | FindExceptionTypesToResolveForMethod(&method, exceptions_to_resolve); | 
|  | 967 | } | 
|  | 968 | } | 
|  | 969 | } | 
|  | 970 |  | 
|  | 971 | private: | 
|  | 972 | void FindExceptionTypesToResolveForMethod( | 
|  | 973 | ArtMethod* method, | 
|  | 974 | std::set<std::pair<dex::TypeIndex, const DexFile*>>* exceptions_to_resolve) | 
|  | 975 | REQUIRES_SHARED(Locks::mutator_lock_) { | 
| Mathieu Chartier | 808c7a5 | 2017-12-15 11:19:33 -0800 | [diff] [blame] | 976 | if (method->GetCodeItem() == nullptr) { | 
| Mathieu Chartier | e0671ce | 2015-07-28 17:23:28 -0700 | [diff] [blame] | 977 | return;  // native or abstract method | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 978 | } | 
| David Sehr | 0225f8e | 2018-01-31 08:52:24 +0000 | [diff] [blame] | 979 | CodeItemDataAccessor accessor(method->DexInstructionData()); | 
| Mathieu Chartier | 808c7a5 | 2017-12-15 11:19:33 -0800 | [diff] [blame] | 980 | if (accessor.TriesSize() == 0) { | 
| Mathieu Chartier | e0671ce | 2015-07-28 17:23:28 -0700 | [diff] [blame] | 981 | return;  // nothing to process | 
|  | 982 | } | 
| Mathieu Chartier | 808c7a5 | 2017-12-15 11:19:33 -0800 | [diff] [blame] | 983 | const uint8_t* encoded_catch_handler_list = accessor.GetCatchHandlerData(); | 
| Mathieu Chartier | e0671ce | 2015-07-28 17:23:28 -0700 | [diff] [blame] | 984 | size_t num_encoded_catch_handlers = DecodeUnsignedLeb128(&encoded_catch_handler_list); | 
|  | 985 | for (size_t i = 0; i < num_encoded_catch_handlers; i++) { | 
|  | 986 | int32_t encoded_catch_handler_size = DecodeSignedLeb128(&encoded_catch_handler_list); | 
|  | 987 | bool has_catch_all = false; | 
|  | 988 | if (encoded_catch_handler_size <= 0) { | 
|  | 989 | encoded_catch_handler_size = -encoded_catch_handler_size; | 
|  | 990 | has_catch_all = true; | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 991 | } | 
| Mathieu Chartier | e0671ce | 2015-07-28 17:23:28 -0700 | [diff] [blame] | 992 | for (int32_t j = 0; j < encoded_catch_handler_size; j++) { | 
| Andreas Gampe | a5b09a6 | 2016-11-17 15:21:22 -0800 | [diff] [blame] | 993 | dex::TypeIndex encoded_catch_handler_handlers_type_idx = | 
|  | 994 | dex::TypeIndex(DecodeUnsignedLeb128(&encoded_catch_handler_list)); | 
| Mathieu Chartier | e0671ce | 2015-07-28 17:23:28 -0700 | [diff] [blame] | 995 | // Add to set of types to resolve if not already in the dex cache resolved types | 
| Vladimir Marko | 8d6768d | 2017-03-14 10:13:21 +0000 | [diff] [blame] | 996 | if (!method->IsResolvedTypeIdx(encoded_catch_handler_handlers_type_idx)) { | 
|  | 997 | exceptions_to_resolve->emplace(encoded_catch_handler_handlers_type_idx, | 
|  | 998 | method->GetDexFile()); | 
| Mathieu Chartier | e0671ce | 2015-07-28 17:23:28 -0700 | [diff] [blame] | 999 | } | 
|  | 1000 | // ignore address associated with catch handler | 
|  | 1001 | DecodeUnsignedLeb128(&encoded_catch_handler_list); | 
|  | 1002 | } | 
|  | 1003 | if (has_catch_all) { | 
|  | 1004 | // ignore catch all address | 
|  | 1005 | DecodeUnsignedLeb128(&encoded_catch_handler_list); | 
|  | 1006 | } | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1007 | } | 
|  | 1008 | } | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1009 |  | 
| Vladimir Marko | 8d6768d | 2017-03-14 10:13:21 +0000 | [diff] [blame] | 1010 | std::vector<ObjPtr<mirror::Class>> classes_; | 
| Mathieu Chartier | e0671ce | 2015-07-28 17:23:28 -0700 | [diff] [blame] | 1011 | }; | 
|  | 1012 |  | 
|  | 1013 | class RecordImageClassesVisitor : public ClassVisitor { | 
|  | 1014 | public: | 
| Vladimir Marko | 54159c6 | 2018-06-20 14:30:08 +0100 | [diff] [blame] | 1015 | explicit RecordImageClassesVisitor(HashSet<std::string>* image_classes) | 
| Mathieu Chartier | e0671ce | 2015-07-28 17:23:28 -0700 | [diff] [blame] | 1016 | : image_classes_(image_classes) {} | 
|  | 1017 |  | 
| Roland Levillain | bbc6e7e | 2018-08-24 16:58:47 +0100 | [diff] [blame] | 1018 | bool operator()(ObjPtr<mirror::Class> klass) override REQUIRES_SHARED(Locks::mutator_lock_) { | 
| Mathieu Chartier | e0671ce | 2015-07-28 17:23:28 -0700 | [diff] [blame] | 1019 | std::string temp; | 
|  | 1020 | image_classes_->insert(klass->GetDescriptor(&temp)); | 
|  | 1021 | return true; | 
|  | 1022 | } | 
|  | 1023 |  | 
|  | 1024 | private: | 
| Vladimir Marko | 54159c6 | 2018-06-20 14:30:08 +0100 | [diff] [blame] | 1025 | HashSet<std::string>* const image_classes_; | 
| Mathieu Chartier | e0671ce | 2015-07-28 17:23:28 -0700 | [diff] [blame] | 1026 | }; | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1027 |  | 
|  | 1028 | // Make a list of descriptors for classes to include in the image | 
| Vladimir Marko | 2afaff7 | 2018-11-30 17:01:50 +0000 | [diff] [blame] | 1029 | void CompilerDriver::LoadImageClasses(TimingLogger* timings, | 
|  | 1030 | /*inout*/ HashSet<std::string>* image_classes) { | 
| Kenny Root | d518534 | 2014-05-13 14:47:05 -0700 | [diff] [blame] | 1031 | CHECK(timings != nullptr); | 
| Vladimir Marko | aad75c6 | 2016-10-03 08:46:48 +0000 | [diff] [blame] | 1032 | if (!GetCompilerOptions().IsBootImage()) { | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1033 | return; | 
|  | 1034 | } | 
|  | 1035 |  | 
| Mathieu Chartier | f5997b4 | 2014-06-20 10:37:54 -0700 | [diff] [blame] | 1036 | TimingLogger::ScopedTiming t("LoadImageClasses", timings); | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1037 | // Make a first class to load all classes explicitly listed in the file | 
|  | 1038 | Thread* self = Thread::Current(); | 
|  | 1039 | ScopedObjectAccess soa(self); | 
|  | 1040 | ClassLinker* class_linker = Runtime::Current()->GetClassLinker(); | 
| Vladimir Marko | 2afaff7 | 2018-11-30 17:01:50 +0000 | [diff] [blame] | 1041 | CHECK(image_classes != nullptr); | 
|  | 1042 | for (auto it = image_classes->begin(), end = image_classes->end(); it != end;) { | 
| Vladimir Marko | e9c36b3 | 2013-11-21 15:49:16 +0000 | [diff] [blame] | 1043 | const std::string& descriptor(*it); | 
| Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 1044 | StackHandleScope<1> hs(self); | 
|  | 1045 | Handle<mirror::Class> klass( | 
|  | 1046 | hs.NewHandle(class_linker->FindSystemClass(self, descriptor.c_str()))); | 
| Andreas Gampe | fa4333d | 2017-02-14 11:10:34 -0800 | [diff] [blame] | 1047 | if (klass == nullptr) { | 
| Ian Rogers | e6bb3b2 | 2013-08-19 21:51:45 -0700 | [diff] [blame] | 1048 | VLOG(compiler) << "Failed to find class " << descriptor; | 
| Vladimir Marko | 2afaff7 | 2018-11-30 17:01:50 +0000 | [diff] [blame] | 1049 | it = image_classes->erase(it); | 
| Ian Rogers | a436fde | 2013-08-27 23:34:06 -0700 | [diff] [blame] | 1050 | self->ClearException(); | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1051 | } else { | 
|  | 1052 | ++it; | 
|  | 1053 | } | 
|  | 1054 | } | 
|  | 1055 |  | 
|  | 1056 | // Resolve exception classes referenced by the loaded classes. The catch logic assumes | 
|  | 1057 | // exceptions are resolved by the verifier when there is a catch block in an interested method. | 
|  | 1058 | // Do this here so that exception classes appear to have been specified image classes. | 
| Andreas Gampe | a5b09a6 | 2016-11-17 15:21:22 -0800 | [diff] [blame] | 1059 | std::set<std::pair<dex::TypeIndex, const DexFile*>> unresolved_exception_types; | 
| Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 1060 | StackHandleScope<1> hs(self); | 
|  | 1061 | Handle<mirror::Class> java_lang_Throwable( | 
|  | 1062 | hs.NewHandle(class_linker->FindSystemClass(self, "Ljava/lang/Throwable;"))); | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1063 | do { | 
|  | 1064 | unresolved_exception_types.clear(); | 
| Vladimir Marko | 8d6768d | 2017-03-14 10:13:21 +0000 | [diff] [blame] | 1065 | { | 
|  | 1066 | // Thread suspension is not allowed while ResolveCatchBlockExceptionsClassVisitor | 
|  | 1067 | // is using a std::vector<ObjPtr<mirror::Class>>. | 
|  | 1068 | ScopedAssertNoThreadSuspension ants(__FUNCTION__); | 
|  | 1069 | ResolveCatchBlockExceptionsClassVisitor visitor; | 
|  | 1070 | class_linker->VisitClasses(&visitor); | 
|  | 1071 | visitor.FindExceptionTypesToResolve(&unresolved_exception_types); | 
|  | 1072 | } | 
| Andreas Gampe | a5b09a6 | 2016-11-17 15:21:22 -0800 | [diff] [blame] | 1073 | for (const auto& exception_type : unresolved_exception_types) { | 
|  | 1074 | dex::TypeIndex exception_type_idx = exception_type.first; | 
| Mathieu Chartier | 02e2511 | 2013-08-14 16:14:24 -0700 | [diff] [blame] | 1075 | const DexFile* dex_file = exception_type.second; | 
| Vladimir Marko | 666ee3d | 2017-12-11 18:37:36 +0000 | [diff] [blame] | 1076 | StackHandleScope<1> hs2(self); | 
| Mathieu Chartier | f284d44 | 2016-06-02 11:48:30 -0700 | [diff] [blame] | 1077 | Handle<mirror::DexCache> dex_cache(hs2.NewHandle(class_linker->RegisterDexFile(*dex_file, | 
|  | 1078 | nullptr))); | 
| Vladimir Marko | 666ee3d | 2017-12-11 18:37:36 +0000 | [diff] [blame] | 1079 | ObjPtr<mirror::Class> klass = | 
| Andreas Gampe | fa4333d | 2017-02-14 11:10:34 -0800 | [diff] [blame] | 1080 | (dex_cache != nullptr) | 
| Vladimir Marko | 666ee3d | 2017-12-11 18:37:36 +0000 | [diff] [blame] | 1081 | ? class_linker->ResolveType(exception_type_idx, | 
| Vladimir Marko | cd556b0 | 2017-02-03 11:47:34 +0000 | [diff] [blame] | 1082 | dex_cache, | 
|  | 1083 | ScopedNullHandle<mirror::ClassLoader>()) | 
| Vladimir Marko | 666ee3d | 2017-12-11 18:37:36 +0000 | [diff] [blame] | 1084 | : nullptr; | 
| Andreas Gampe | fa4333d | 2017-02-14 11:10:34 -0800 | [diff] [blame] | 1085 | if (klass == nullptr) { | 
| Andreas Gampe | 3f1dcd3 | 2018-12-28 09:39:56 -0800 | [diff] [blame] | 1086 | const dex::TypeId& type_id = dex_file->GetTypeId(exception_type_idx); | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1087 | const char* descriptor = dex_file->GetTypeDescriptor(type_id); | 
|  | 1088 | LOG(FATAL) << "Failed to resolve class " << descriptor; | 
|  | 1089 | } | 
| Vladimir Marko | 666ee3d | 2017-12-11 18:37:36 +0000 | [diff] [blame] | 1090 | DCHECK(java_lang_Throwable->IsAssignableFrom(klass)); | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1091 | } | 
|  | 1092 | // Resolving exceptions may load classes that reference more exceptions, iterate until no | 
|  | 1093 | // more are found | 
|  | 1094 | } while (!unresolved_exception_types.empty()); | 
|  | 1095 |  | 
|  | 1096 | // We walk the roots looking for classes so that we'll pick up the | 
|  | 1097 | // above classes plus any classes them depend on such super | 
|  | 1098 | // classes, interfaces, and the required ClassLinker roots. | 
| Vladimir Marko | 2afaff7 | 2018-11-30 17:01:50 +0000 | [diff] [blame] | 1099 | RecordImageClassesVisitor visitor(image_classes); | 
| Mathieu Chartier | e0671ce | 2015-07-28 17:23:28 -0700 | [diff] [blame] | 1100 | class_linker->VisitClasses(&visitor); | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1101 |  | 
| Vladimir Marko | 2afaff7 | 2018-11-30 17:01:50 +0000 | [diff] [blame] | 1102 | CHECK(!image_classes->empty()); | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1103 | } | 
|  | 1104 |  | 
| Vladimir Marko | 19a4d37 | 2016-12-08 14:41:46 +0000 | [diff] [blame] | 1105 | static void MaybeAddToImageClasses(Thread* self, | 
|  | 1106 | ObjPtr<mirror::Class> klass, | 
| Vladimir Marko | 54159c6 | 2018-06-20 14:30:08 +0100 | [diff] [blame] | 1107 | HashSet<std::string>* image_classes) | 
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 1108 | REQUIRES_SHARED(Locks::mutator_lock_) { | 
| Vladimir Marko | 19a4d37 | 2016-12-08 14:41:46 +0000 | [diff] [blame] | 1109 | DCHECK_EQ(self, Thread::Current()); | 
| Mathieu Chartier | f832284 | 2014-05-16 10:59:25 -0700 | [diff] [blame] | 1110 | StackHandleScope<1> hs(self); | 
| Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 1111 | std::string temp; | 
| Andreas Gampe | 542451c | 2016-07-26 09:02:02 -0700 | [diff] [blame] | 1112 | const PointerSize pointer_size = Runtime::Current()->GetClassLinker()->GetImagePointerSize(); | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1113 | while (!klass->IsObjectClass()) { | 
| Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 1114 | const char* descriptor = klass->GetDescriptor(&temp); | 
| Vladimir Marko | 2ef0110 | 2019-02-05 15:05:10 +0000 | [diff] [blame] | 1115 | if (image_classes->find(std::string_view(descriptor)) != image_classes->end()) { | 
| Vladimir Marko | 54159c6 | 2018-06-20 14:30:08 +0100 | [diff] [blame] | 1116 | break;  // Previously inserted. | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1117 | } | 
| Vladimir Marko | 54159c6 | 2018-06-20 14:30:08 +0100 | [diff] [blame] | 1118 | image_classes->insert(descriptor); | 
| Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 1119 | VLOG(compiler) << "Adding " << descriptor << " to image classes"; | 
| Vladimir Marko | 19a4d37 | 2016-12-08 14:41:46 +0000 | [diff] [blame] | 1120 | for (size_t i = 0, num_interfaces = klass->NumDirectInterfaces(); i != num_interfaces; ++i) { | 
|  | 1121 | ObjPtr<mirror::Class> interface = mirror::Class::GetDirectInterface(self, klass, i); | 
|  | 1122 | DCHECK(interface != nullptr); | 
|  | 1123 | MaybeAddToImageClasses(self, interface, image_classes); | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1124 | } | 
| Vladimir Marko | 19a4d37 | 2016-12-08 14:41:46 +0000 | [diff] [blame] | 1125 | for (auto& m : klass->GetVirtualMethods(pointer_size)) { | 
|  | 1126 | MaybeAddToImageClasses(self, m.GetDeclaringClass(), image_classes); | 
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1127 | } | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1128 | if (klass->IsArrayClass()) { | 
| Vladimir Marko | 19a4d37 | 2016-12-08 14:41:46 +0000 | [diff] [blame] | 1129 | MaybeAddToImageClasses(self, klass->GetComponentType(), image_classes); | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1130 | } | 
| Andreas Gampe | 9810499 | 2018-10-16 12:49:47 -0700 | [diff] [blame] | 1131 | klass = klass->GetSuperClass(); | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1132 | } | 
|  | 1133 | } | 
|  | 1134 |  | 
| Andreas Gampe | b0f370e | 2014-09-25 22:51:40 -0700 | [diff] [blame] | 1135 | // Keeps all the data for the update together. Also doubles as the reference visitor. | 
|  | 1136 | // Note: we can use object pointers because we suspend all threads. | 
|  | 1137 | class ClinitImageUpdate { | 
|  | 1138 | public: | 
| Mathieu Chartier | 31e8822 | 2016-10-14 18:43:19 -0700 | [diff] [blame] | 1139 | static ClinitImageUpdate* Create(VariableSizedHandleScope& hs, | 
| Vladimir Marko | 54159c6 | 2018-06-20 14:30:08 +0100 | [diff] [blame] | 1140 | HashSet<std::string>* image_class_descriptors, | 
| Mathieu Chartier | 31e8822 | 2016-10-14 18:43:19 -0700 | [diff] [blame] | 1141 | Thread* self, | 
|  | 1142 | ClassLinker* linker) { | 
|  | 1143 | std::unique_ptr<ClinitImageUpdate> res(new ClinitImageUpdate(hs, | 
|  | 1144 | image_class_descriptors, | 
|  | 1145 | self, | 
| Andreas Gampe | b0f370e | 2014-09-25 22:51:40 -0700 | [diff] [blame] | 1146 | linker)); | 
| Andreas Gampe | b0f370e | 2014-09-25 22:51:40 -0700 | [diff] [blame] | 1147 | return res.release(); | 
|  | 1148 | } | 
|  | 1149 |  | 
|  | 1150 | ~ClinitImageUpdate() { | 
|  | 1151 | // Allow others to suspend again. | 
|  | 1152 | self_->EndAssertNoThreadSuspension(old_cause_); | 
|  | 1153 | } | 
|  | 1154 |  | 
|  | 1155 | // Visitor for VisitReferences. | 
| Mathieu Chartier | 31e8822 | 2016-10-14 18:43:19 -0700 | [diff] [blame] | 1156 | void operator()(ObjPtr<mirror::Object> object, | 
|  | 1157 | MemberOffset field_offset, | 
| Andreas Gampe | 3db7068 | 2018-12-26 15:12:03 -0800 | [diff] [blame] | 1158 | bool is_static ATTRIBUTE_UNUSED) const | 
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 1159 | REQUIRES_SHARED(Locks::mutator_lock_) { | 
| Andreas Gampe | b0f370e | 2014-09-25 22:51:40 -0700 | [diff] [blame] | 1160 | mirror::Object* ref = object->GetFieldObject<mirror::Object>(field_offset); | 
|  | 1161 | if (ref != nullptr) { | 
|  | 1162 | VisitClinitClassesObject(ref); | 
|  | 1163 | } | 
|  | 1164 | } | 
|  | 1165 |  | 
| Roland Levillain | 5e8d5f0 | 2016-10-18 18:03:43 +0100 | [diff] [blame] | 1166 | // java.lang.ref.Reference visitor for VisitReferences. | 
| Mathieu Chartier | 31e8822 | 2016-10-14 18:43:19 -0700 | [diff] [blame] | 1167 | void operator()(ObjPtr<mirror::Class> klass ATTRIBUTE_UNUSED, | 
|  | 1168 | ObjPtr<mirror::Reference> ref ATTRIBUTE_UNUSED) const {} | 
| Mathieu Chartier | da7c650 | 2015-07-23 16:01:26 -0700 | [diff] [blame] | 1169 |  | 
|  | 1170 | // Ignore class native roots. | 
|  | 1171 | void VisitRootIfNonNull(mirror::CompressedReference<mirror::Object>* root ATTRIBUTE_UNUSED) | 
|  | 1172 | const {} | 
|  | 1173 | void VisitRoot(mirror::CompressedReference<mirror::Object>* root ATTRIBUTE_UNUSED) const {} | 
| Andreas Gampe | b0f370e | 2014-09-25 22:51:40 -0700 | [diff] [blame] | 1174 |  | 
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 1175 | void Walk() REQUIRES_SHARED(Locks::mutator_lock_) { | 
| Andreas Gampe | b0f370e | 2014-09-25 22:51:40 -0700 | [diff] [blame] | 1176 | // Use the initial classes as roots for a search. | 
| Mathieu Chartier | 28357fa | 2016-10-18 16:27:40 -0700 | [diff] [blame] | 1177 | for (Handle<mirror::Class> klass_root : image_classes_) { | 
|  | 1178 | VisitClinitClassesObject(klass_root.Get()); | 
| Andreas Gampe | b0f370e | 2014-09-25 22:51:40 -0700 | [diff] [blame] | 1179 | } | 
| Vladimir Marko | 19a4d37 | 2016-12-08 14:41:46 +0000 | [diff] [blame] | 1180 | Thread* self = Thread::Current(); | 
|  | 1181 | ScopedAssertNoThreadSuspension ants(__FUNCTION__); | 
| Mathieu Chartier | 31e8822 | 2016-10-14 18:43:19 -0700 | [diff] [blame] | 1182 | for (Handle<mirror::Class> h_klass : to_insert_) { | 
| Vladimir Marko | 19a4d37 | 2016-12-08 14:41:46 +0000 | [diff] [blame] | 1183 | MaybeAddToImageClasses(self, h_klass.Get(), image_class_descriptors_); | 
| Mathieu Chartier | 31e8822 | 2016-10-14 18:43:19 -0700 | [diff] [blame] | 1184 | } | 
| Andreas Gampe | b0f370e | 2014-09-25 22:51:40 -0700 | [diff] [blame] | 1185 | } | 
|  | 1186 |  | 
|  | 1187 | private: | 
| Mathieu Chartier | e0671ce | 2015-07-28 17:23:28 -0700 | [diff] [blame] | 1188 | class FindImageClassesVisitor : public ClassVisitor { | 
|  | 1189 | public: | 
| Mathieu Chartier | 28357fa | 2016-10-18 16:27:40 -0700 | [diff] [blame] | 1190 | explicit FindImageClassesVisitor(VariableSizedHandleScope& hs, | 
|  | 1191 | ClinitImageUpdate* data) | 
|  | 1192 | : data_(data), | 
|  | 1193 | hs_(hs) {} | 
| Mathieu Chartier | e0671ce | 2015-07-28 17:23:28 -0700 | [diff] [blame] | 1194 |  | 
| Roland Levillain | bbc6e7e | 2018-08-24 16:58:47 +0100 | [diff] [blame] | 1195 | bool operator()(ObjPtr<mirror::Class> klass) override REQUIRES_SHARED(Locks::mutator_lock_) { | 
| Mathieu Chartier | e0671ce | 2015-07-28 17:23:28 -0700 | [diff] [blame] | 1196 | std::string temp; | 
| Vladimir Marko | 2ef0110 | 2019-02-05 15:05:10 +0000 | [diff] [blame] | 1197 | std::string_view name(klass->GetDescriptor(&temp)); | 
| Vladimir Marko | 29a533e | 2018-10-23 12:42:00 +0100 | [diff] [blame] | 1198 | auto it = data_->image_class_descriptors_->find(name); | 
|  | 1199 | if (it != data_->image_class_descriptors_->end()) { | 
|  | 1200 | if (LIKELY(klass->IsResolved())) { | 
|  | 1201 | data_->image_classes_.push_back(hs_.NewHandle(klass)); | 
|  | 1202 | } else { | 
|  | 1203 | DCHECK(klass->IsErroneousUnresolved()); | 
|  | 1204 | VLOG(compiler) << "Removing unresolved class from image classes: " << name; | 
|  | 1205 | data_->image_class_descriptors_->erase(it); | 
|  | 1206 | } | 
| Mathieu Chartier | e0671ce | 2015-07-28 17:23:28 -0700 | [diff] [blame] | 1207 | } else { | 
|  | 1208 | // Check whether it is initialized and has a clinit. They must be kept, too. | 
|  | 1209 | if (klass->IsInitialized() && klass->FindClassInitializer( | 
|  | 1210 | Runtime::Current()->GetClassLinker()->GetImagePointerSize()) != nullptr) { | 
| Mathieu Chartier | 28357fa | 2016-10-18 16:27:40 -0700 | [diff] [blame] | 1211 | data_->image_classes_.push_back(hs_.NewHandle(klass)); | 
| Mathieu Chartier | e0671ce | 2015-07-28 17:23:28 -0700 | [diff] [blame] | 1212 | } | 
|  | 1213 | } | 
|  | 1214 | return true; | 
|  | 1215 | } | 
|  | 1216 |  | 
|  | 1217 | private: | 
|  | 1218 | ClinitImageUpdate* const data_; | 
| Mathieu Chartier | 28357fa | 2016-10-18 16:27:40 -0700 | [diff] [blame] | 1219 | VariableSizedHandleScope& hs_; | 
| Mathieu Chartier | e0671ce | 2015-07-28 17:23:28 -0700 | [diff] [blame] | 1220 | }; | 
|  | 1221 |  | 
| Mathieu Chartier | 31e8822 | 2016-10-14 18:43:19 -0700 | [diff] [blame] | 1222 | ClinitImageUpdate(VariableSizedHandleScope& hs, | 
| Vladimir Marko | 54159c6 | 2018-06-20 14:30:08 +0100 | [diff] [blame] | 1223 | HashSet<std::string>* image_class_descriptors, | 
| Mathieu Chartier | 31e8822 | 2016-10-14 18:43:19 -0700 | [diff] [blame] | 1224 | Thread* self, | 
|  | 1225 | ClassLinker* linker) REQUIRES_SHARED(Locks::mutator_lock_) | 
|  | 1226 | : hs_(hs), | 
|  | 1227 | image_class_descriptors_(image_class_descriptors), | 
|  | 1228 | self_(self) { | 
| Andreas Gampe | b0f370e | 2014-09-25 22:51:40 -0700 | [diff] [blame] | 1229 | CHECK(linker != nullptr); | 
|  | 1230 | CHECK(image_class_descriptors != nullptr); | 
|  | 1231 |  | 
|  | 1232 | // Make sure nobody interferes with us. | 
|  | 1233 | old_cause_ = self->StartAssertNoThreadSuspension("Boot image closure"); | 
|  | 1234 |  | 
| Andreas Gampe | b0f370e | 2014-09-25 22:51:40 -0700 | [diff] [blame] | 1235 | // Find all the already-marked classes. | 
|  | 1236 | WriterMutexLock mu(self, *Locks::heap_bitmap_lock_); | 
| Mathieu Chartier | 28357fa | 2016-10-18 16:27:40 -0700 | [diff] [blame] | 1237 | FindImageClassesVisitor visitor(hs_, this); | 
| Mathieu Chartier | e0671ce | 2015-07-28 17:23:28 -0700 | [diff] [blame] | 1238 | linker->VisitClasses(&visitor); | 
| Andreas Gampe | b0f370e | 2014-09-25 22:51:40 -0700 | [diff] [blame] | 1239 | } | 
|  | 1240 |  | 
|  | 1241 | void VisitClinitClassesObject(mirror::Object* object) const | 
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 1242 | REQUIRES_SHARED(Locks::mutator_lock_) { | 
| Andreas Gampe | b0f370e | 2014-09-25 22:51:40 -0700 | [diff] [blame] | 1243 | DCHECK(object != nullptr); | 
|  | 1244 | if (marked_objects_.find(object) != marked_objects_.end()) { | 
|  | 1245 | // Already processed. | 
|  | 1246 | return; | 
|  | 1247 | } | 
|  | 1248 |  | 
|  | 1249 | // Mark it. | 
|  | 1250 | marked_objects_.insert(object); | 
|  | 1251 |  | 
|  | 1252 | if (object->IsClass()) { | 
| Mathieu Chartier | 31e8822 | 2016-10-14 18:43:19 -0700 | [diff] [blame] | 1253 | // Add to the TODO list since MaybeAddToImageClasses may cause thread suspension. Thread | 
|  | 1254 | // suspensionb is not safe to do in VisitObjects or VisitReferences. | 
|  | 1255 | to_insert_.push_back(hs_.NewHandle(object->AsClass())); | 
| Andreas Gampe | b0f370e | 2014-09-25 22:51:40 -0700 | [diff] [blame] | 1256 | } else { | 
|  | 1257 | // Else visit the object's class. | 
|  | 1258 | VisitClinitClassesObject(object->GetClass()); | 
|  | 1259 | } | 
|  | 1260 |  | 
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1261 | // If it is not a DexCache, visit all references. | 
| Mathieu Chartier | 31e8822 | 2016-10-14 18:43:19 -0700 | [diff] [blame] | 1262 | if (!object->IsDexCache()) { | 
| Mathieu Chartier | 059ef3d | 2015-08-18 13:54:21 -0700 | [diff] [blame] | 1263 | object->VisitReferences(*this, *this); | 
| Andreas Gampe | b0f370e | 2014-09-25 22:51:40 -0700 | [diff] [blame] | 1264 | } | 
|  | 1265 | } | 
|  | 1266 |  | 
| Mathieu Chartier | 31e8822 | 2016-10-14 18:43:19 -0700 | [diff] [blame] | 1267 | VariableSizedHandleScope& hs_; | 
|  | 1268 | mutable std::vector<Handle<mirror::Class>> to_insert_; | 
| Andreas Gampe | b0f370e | 2014-09-25 22:51:40 -0700 | [diff] [blame] | 1269 | mutable std::unordered_set<mirror::Object*> marked_objects_; | 
| Vladimir Marko | 54159c6 | 2018-06-20 14:30:08 +0100 | [diff] [blame] | 1270 | HashSet<std::string>* const image_class_descriptors_; | 
| Mathieu Chartier | 28357fa | 2016-10-18 16:27:40 -0700 | [diff] [blame] | 1271 | std::vector<Handle<mirror::Class>> image_classes_; | 
| Andreas Gampe | b0f370e | 2014-09-25 22:51:40 -0700 | [diff] [blame] | 1272 | Thread* const self_; | 
|  | 1273 | const char* old_cause_; | 
|  | 1274 |  | 
|  | 1275 | DISALLOW_COPY_AND_ASSIGN(ClinitImageUpdate); | 
|  | 1276 | }; | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1277 |  | 
| Vladimir Marko | 2afaff7 | 2018-11-30 17:01:50 +0000 | [diff] [blame] | 1278 | void CompilerDriver::UpdateImageClasses(TimingLogger* timings, | 
|  | 1279 | /*inout*/ HashSet<std::string>* image_classes) { | 
| Vladimir Marko | aad75c6 | 2016-10-03 08:46:48 +0000 | [diff] [blame] | 1280 | if (GetCompilerOptions().IsBootImage()) { | 
| Mathieu Chartier | f5997b4 | 2014-06-20 10:37:54 -0700 | [diff] [blame] | 1281 | TimingLogger::ScopedTiming t("UpdateImageClasses", timings); | 
| Andreas Gampe | b0f370e | 2014-09-25 22:51:40 -0700 | [diff] [blame] | 1282 |  | 
| Mathieu Chartier | 4f55e22 | 2015-09-04 13:26:21 -0700 | [diff] [blame] | 1283 | Runtime* runtime = Runtime::Current(); | 
| Andreas Gampe | b0f370e | 2014-09-25 22:51:40 -0700 | [diff] [blame] | 1284 |  | 
|  | 1285 | // Suspend all threads. | 
| Mathieu Chartier | 4f55e22 | 2015-09-04 13:26:21 -0700 | [diff] [blame] | 1286 | ScopedSuspendAll ssa(__FUNCTION__); | 
| Andreas Gampe | b0f370e | 2014-09-25 22:51:40 -0700 | [diff] [blame] | 1287 |  | 
| Mathieu Chartier | 31e8822 | 2016-10-14 18:43:19 -0700 | [diff] [blame] | 1288 | VariableSizedHandleScope hs(Thread::Current()); | 
| Andreas Gampe | b0f370e | 2014-09-25 22:51:40 -0700 | [diff] [blame] | 1289 | std::string error_msg; | 
| Mathieu Chartier | 31e8822 | 2016-10-14 18:43:19 -0700 | [diff] [blame] | 1290 | std::unique_ptr<ClinitImageUpdate> update(ClinitImageUpdate::Create(hs, | 
| Vladimir Marko | 2afaff7 | 2018-11-30 17:01:50 +0000 | [diff] [blame] | 1291 | image_classes, | 
| Andreas Gampe | b0f370e | 2014-09-25 22:51:40 -0700 | [diff] [blame] | 1292 | Thread::Current(), | 
| Mathieu Chartier | 31e8822 | 2016-10-14 18:43:19 -0700 | [diff] [blame] | 1293 | runtime->GetClassLinker())); | 
| Andreas Gampe | b0f370e | 2014-09-25 22:51:40 -0700 | [diff] [blame] | 1294 |  | 
|  | 1295 | // Do the marking. | 
|  | 1296 | update->Walk(); | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1297 | } | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1298 | } | 
|  | 1299 |  | 
| Vladimir Marko | be0e546 | 2014-02-26 11:24:15 +0000 | [diff] [blame] | 1300 | void CompilerDriver::ProcessedInstanceField(bool resolved) { | 
|  | 1301 | if (!resolved) { | 
|  | 1302 | stats_->UnresolvedInstanceField(); | 
|  | 1303 | } else { | 
|  | 1304 | stats_->ResolvedInstanceField(); | 
|  | 1305 | } | 
|  | 1306 | } | 
|  | 1307 |  | 
|  | 1308 | void CompilerDriver::ProcessedStaticField(bool resolved, bool local) { | 
|  | 1309 | if (!resolved) { | 
|  | 1310 | stats_->UnresolvedStaticField(); | 
|  | 1311 | } else if (local) { | 
|  | 1312 | stats_->ResolvedLocalStaticField(); | 
|  | 1313 | } else { | 
|  | 1314 | stats_->ResolvedStaticField(); | 
|  | 1315 | } | 
|  | 1316 | } | 
|  | 1317 |  | 
| Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 1318 | ArtField* CompilerDriver::ComputeInstanceFieldInfo(uint32_t field_idx, | 
| Vladimir Marko | e11dd50 | 2017-12-08 14:09:45 +0000 | [diff] [blame] | 1319 | const DexCompilationUnit* mUnit, | 
|  | 1320 | bool is_put, | 
| Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 1321 | const ScopedObjectAccess& soa) { | 
| Vladimir Marko | be0e546 | 2014-02-26 11:24:15 +0000 | [diff] [blame] | 1322 | // Try to resolve the field and compiling method's class. | 
| Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 1323 | ArtField* resolved_field; | 
| Vladimir Marko | 28e012a | 2017-12-07 11:22:59 +0000 | [diff] [blame] | 1324 | ObjPtr<mirror::Class> referrer_class; | 
| Mathieu Chartier | 736b560 | 2015-09-02 14:54:11 -0700 | [diff] [blame] | 1325 | Handle<mirror::DexCache> dex_cache(mUnit->GetDexCache()); | 
| Vladimir Marko | be0e546 | 2014-02-26 11:24:15 +0000 | [diff] [blame] | 1326 | { | 
| Vladimir Marko | e11dd50 | 2017-12-08 14:09:45 +0000 | [diff] [blame] | 1327 | Handle<mirror::ClassLoader> class_loader = mUnit->GetClassLoader(); | 
| Andreas Gampe | 3db7068 | 2018-12-26 15:12:03 -0800 | [diff] [blame] | 1328 | resolved_field = ResolveField(soa, dex_cache, class_loader, field_idx, /* is_static= */ false); | 
| Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 1329 | referrer_class = resolved_field != nullptr | 
| Vladimir Marko | e11dd50 | 2017-12-08 14:09:45 +0000 | [diff] [blame] | 1330 | ? ResolveCompilingMethodsClass(soa, dex_cache, class_loader, mUnit) : nullptr; | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1331 | } | 
| Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 1332 | bool can_link = false; | 
| Vladimir Marko | be0e546 | 2014-02-26 11:24:15 +0000 | [diff] [blame] | 1333 | if (resolved_field != nullptr && referrer_class != nullptr) { | 
| Vladimir Marko | be0e546 | 2014-02-26 11:24:15 +0000 | [diff] [blame] | 1334 | std::pair<bool, bool> fast_path = IsFastInstanceField( | 
| Mathieu Chartier | 736b560 | 2015-09-02 14:54:11 -0700 | [diff] [blame] | 1335 | dex_cache.Get(), referrer_class, resolved_field, field_idx); | 
| Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 1336 | can_link = is_put ? fast_path.second : fast_path.first; | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1337 | } | 
| Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 1338 | ProcessedInstanceField(can_link); | 
|  | 1339 | return can_link ? resolved_field : nullptr; | 
|  | 1340 | } | 
|  | 1341 |  | 
|  | 1342 | bool CompilerDriver::ComputeInstanceFieldInfo(uint32_t field_idx, const DexCompilationUnit* mUnit, | 
|  | 1343 | bool is_put, MemberOffset* field_offset, | 
|  | 1344 | bool* is_volatile) { | 
|  | 1345 | ScopedObjectAccess soa(Thread::Current()); | 
| Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 1346 | ArtField* resolved_field = ComputeInstanceFieldInfo(field_idx, mUnit, is_put, soa); | 
| Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 1347 |  | 
| Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 1348 | if (resolved_field == nullptr) { | 
| Vladimir Marko | be0e546 | 2014-02-26 11:24:15 +0000 | [diff] [blame] | 1349 | // Conservative defaults. | 
|  | 1350 | *is_volatile = true; | 
|  | 1351 | *field_offset = MemberOffset(static_cast<size_t>(-1)); | 
| Nicolas Geoffray | e503832 | 2014-07-04 09:41:32 +0100 | [diff] [blame] | 1352 | return false; | 
|  | 1353 | } else { | 
|  | 1354 | *is_volatile = resolved_field->IsVolatile(); | 
|  | 1355 | *field_offset = resolved_field->GetOffset(); | 
|  | 1356 | return true; | 
| Vladimir Marko | be0e546 | 2014-02-26 11:24:15 +0000 | [diff] [blame] | 1357 | } | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1358 | } | 
|  | 1359 |  | 
| Vladimir Marko | 2730db0 | 2014-01-27 11:15:17 +0000 | [diff] [blame] | 1360 | bool CompilerDriver::IsSafeCast(const DexCompilationUnit* mUnit, uint32_t dex_pc) { | 
| Andreas Gampe | 2ed8def | 2014-08-28 14:41:02 -0700 | [diff] [blame] | 1361 | if (!compiler_options_->IsVerificationEnabled()) { | 
|  | 1362 | // If we didn't verify, every cast has to be treated as non-safe. | 
|  | 1363 | return false; | 
|  | 1364 | } | 
| Vladimir Marko | 2730db0 | 2014-01-27 11:15:17 +0000 | [diff] [blame] | 1365 | DCHECK(mUnit->GetVerifiedMethod() != nullptr); | 
|  | 1366 | bool result = mUnit->GetVerifiedMethod()->IsSafeCast(dex_pc); | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1367 | if (result) { | 
|  | 1368 | stats_->SafeCast(); | 
|  | 1369 | } else { | 
|  | 1370 | stats_->NotASafeCast(); | 
|  | 1371 | } | 
|  | 1372 | return result; | 
|  | 1373 | } | 
|  | 1374 |  | 
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 1375 | class CompilationVisitor { | 
|  | 1376 | public: | 
|  | 1377 | virtual ~CompilationVisitor() {} | 
|  | 1378 | virtual void Visit(size_t index) = 0; | 
|  | 1379 | }; | 
|  | 1380 |  | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1381 | class ParallelCompilationManager { | 
|  | 1382 | public: | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1383 | ParallelCompilationManager(ClassLinker* class_linker, | 
|  | 1384 | jobject class_loader, | 
|  | 1385 | CompilerDriver* compiler, | 
|  | 1386 | const DexFile* dex_file, | 
| Andreas Gampe | de7b436 | 2014-07-28 18:38:57 -0700 | [diff] [blame] | 1387 | const std::vector<const DexFile*>& dex_files, | 
| Ian Rogers | 3d50407 | 2014-03-01 09:16:49 -0800 | [diff] [blame] | 1388 | ThreadPool* thread_pool) | 
| Mathieu Chartier | 0b3eb39 | 2013-08-23 14:56:59 -0700 | [diff] [blame] | 1389 | : index_(0), | 
|  | 1390 | class_linker_(class_linker), | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1391 | class_loader_(class_loader), | 
|  | 1392 | compiler_(compiler), | 
|  | 1393 | dex_file_(dex_file), | 
| Andreas Gampe | de7b436 | 2014-07-28 18:38:57 -0700 | [diff] [blame] | 1394 | dex_files_(dex_files), | 
| Ian Rogers | 3d50407 | 2014-03-01 09:16:49 -0800 | [diff] [blame] | 1395 | thread_pool_(thread_pool) {} | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1396 |  | 
|  | 1397 | ClassLinker* GetClassLinker() const { | 
| Andreas Gampe | 2ed8def | 2014-08-28 14:41:02 -0700 | [diff] [blame] | 1398 | CHECK(class_linker_ != nullptr); | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1399 | return class_linker_; | 
|  | 1400 | } | 
|  | 1401 |  | 
|  | 1402 | jobject GetClassLoader() const { | 
|  | 1403 | return class_loader_; | 
|  | 1404 | } | 
|  | 1405 |  | 
|  | 1406 | CompilerDriver* GetCompiler() const { | 
| Andreas Gampe | 2ed8def | 2014-08-28 14:41:02 -0700 | [diff] [blame] | 1407 | CHECK(compiler_ != nullptr); | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1408 | return compiler_; | 
|  | 1409 | } | 
|  | 1410 |  | 
|  | 1411 | const DexFile* GetDexFile() const { | 
| Andreas Gampe | 2ed8def | 2014-08-28 14:41:02 -0700 | [diff] [blame] | 1412 | CHECK(dex_file_ != nullptr); | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1413 | return dex_file_; | 
|  | 1414 | } | 
|  | 1415 |  | 
| Andreas Gampe | de7b436 | 2014-07-28 18:38:57 -0700 | [diff] [blame] | 1416 | const std::vector<const DexFile*>& GetDexFiles() const { | 
|  | 1417 | return dex_files_; | 
|  | 1418 | } | 
|  | 1419 |  | 
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 1420 | void ForAll(size_t begin, size_t end, CompilationVisitor* visitor, size_t work_units) | 
|  | 1421 | REQUIRES(!*Locks::mutator_lock_) { | 
| Andreas Gampe | 3c060ad | 2018-01-22 13:07:49 -0800 | [diff] [blame] | 1422 | ForAllLambda(begin, end, [visitor](size_t index) { visitor->Visit(index); }, work_units); | 
|  | 1423 | } | 
|  | 1424 |  | 
|  | 1425 | template <typename Fn> | 
|  | 1426 | void ForAllLambda(size_t begin, size_t end, Fn fn, size_t work_units) | 
|  | 1427 | REQUIRES(!*Locks::mutator_lock_) { | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1428 | Thread* self = Thread::Current(); | 
|  | 1429 | self->AssertNoPendingException(); | 
|  | 1430 | CHECK_GT(work_units, 0U); | 
|  | 1431 |  | 
| Orion Hodson | 88591fe | 2018-03-06 13:35:43 +0000 | [diff] [blame] | 1432 | index_.store(begin, std::memory_order_relaxed); | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1433 | for (size_t i = 0; i < work_units; ++i) { | 
| Andreas Gampe | 3c060ad | 2018-01-22 13:07:49 -0800 | [diff] [blame] | 1434 | thread_pool_->AddTask(self, new ForAllClosureLambda<Fn>(this, end, fn)); | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1435 | } | 
|  | 1436 | thread_pool_->StartWorkers(self); | 
|  | 1437 |  | 
|  | 1438 | // Ensure we're suspended while we're blocked waiting for the other threads to finish (worker | 
|  | 1439 | // thread destructor's called below perform join). | 
|  | 1440 | CHECK_NE(self->GetState(), kRunnable); | 
|  | 1441 |  | 
|  | 1442 | // Wait for all the worker threads to finish. | 
|  | 1443 | thread_pool_->Wait(self, true, false); | 
| Andreas Gampe | ace0dc1 | 2016-01-20 13:33:13 -0800 | [diff] [blame] | 1444 |  | 
|  | 1445 | // And stop the workers accepting jobs. | 
|  | 1446 | thread_pool_->StopWorkers(self); | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1447 | } | 
|  | 1448 |  | 
| Mathieu Chartier | 0b3eb39 | 2013-08-23 14:56:59 -0700 | [diff] [blame] | 1449 | size_t NextIndex() { | 
| Orion Hodson | 88591fe | 2018-03-06 13:35:43 +0000 | [diff] [blame] | 1450 | return index_.fetch_add(1, std::memory_order_seq_cst); | 
| Mathieu Chartier | 0b3eb39 | 2013-08-23 14:56:59 -0700 | [diff] [blame] | 1451 | } | 
|  | 1452 |  | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1453 | private: | 
| Andreas Gampe | 3c060ad | 2018-01-22 13:07:49 -0800 | [diff] [blame] | 1454 | template <typename Fn> | 
|  | 1455 | class ForAllClosureLambda : public Task { | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1456 | public: | 
| Andreas Gampe | 3c060ad | 2018-01-22 13:07:49 -0800 | [diff] [blame] | 1457 | ForAllClosureLambda(ParallelCompilationManager* manager, size_t end, Fn fn) | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1458 | : manager_(manager), | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1459 | end_(end), | 
| Andreas Gampe | 3c060ad | 2018-01-22 13:07:49 -0800 | [diff] [blame] | 1460 | fn_(fn) {} | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1461 |  | 
| Roland Levillain | bbc6e7e | 2018-08-24 16:58:47 +0100 | [diff] [blame] | 1462 | void Run(Thread* self) override { | 
| Mathieu Chartier | 0b3eb39 | 2013-08-23 14:56:59 -0700 | [diff] [blame] | 1463 | while (true) { | 
|  | 1464 | const size_t index = manager_->NextIndex(); | 
|  | 1465 | if (UNLIKELY(index >= end_)) { | 
|  | 1466 | break; | 
|  | 1467 | } | 
| Andreas Gampe | 3c060ad | 2018-01-22 13:07:49 -0800 | [diff] [blame] | 1468 | fn_(index); | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1469 | self->AssertNoPendingException(); | 
|  | 1470 | } | 
|  | 1471 | } | 
|  | 1472 |  | 
| Roland Levillain | bbc6e7e | 2018-08-24 16:58:47 +0100 | [diff] [blame] | 1473 | void Finalize() override { | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1474 | delete this; | 
|  | 1475 | } | 
| Brian Carlstrom | 0cd7ec2 | 2013-07-17 23:40:20 -0700 | [diff] [blame] | 1476 |  | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1477 | private: | 
| Mathieu Chartier | 0b3eb39 | 2013-08-23 14:56:59 -0700 | [diff] [blame] | 1478 | ParallelCompilationManager* const manager_; | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1479 | const size_t end_; | 
| Andreas Gampe | 3c060ad | 2018-01-22 13:07:49 -0800 | [diff] [blame] | 1480 | Fn fn_; | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1481 | }; | 
|  | 1482 |  | 
| Mathieu Chartier | 0b3eb39 | 2013-08-23 14:56:59 -0700 | [diff] [blame] | 1483 | AtomicInteger index_; | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1484 | ClassLinker* const class_linker_; | 
|  | 1485 | const jobject class_loader_; | 
|  | 1486 | CompilerDriver* const compiler_; | 
|  | 1487 | const DexFile* const dex_file_; | 
| Andreas Gampe | de7b436 | 2014-07-28 18:38:57 -0700 | [diff] [blame] | 1488 | const std::vector<const DexFile*>& dex_files_; | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1489 | ThreadPool* const thread_pool_; | 
| Mathieu Chartier | 0b3eb39 | 2013-08-23 14:56:59 -0700 | [diff] [blame] | 1490 |  | 
|  | 1491 | DISALLOW_COPY_AND_ASSIGN(ParallelCompilationManager); | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1492 | }; | 
|  | 1493 |  | 
| Jeff Hao | 0e49b42 | 2013-11-08 12:16:56 -0800 | [diff] [blame] | 1494 | // A fast version of SkipClass above if the class pointer is available | 
|  | 1495 | // that avoids the expensive FindInClassPath search. | 
| Vladimir Marko | 28e012a | 2017-12-07 11:22:59 +0000 | [diff] [blame] | 1496 | static bool SkipClass(jobject class_loader, const DexFile& dex_file, ObjPtr<mirror::Class> klass) | 
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 1497 | REQUIRES_SHARED(Locks::mutator_lock_) { | 
| Andreas Gampe | 2ed8def | 2014-08-28 14:41:02 -0700 | [diff] [blame] | 1498 | DCHECK(klass != nullptr); | 
| Jeff Hao | 0e49b42 | 2013-11-08 12:16:56 -0800 | [diff] [blame] | 1499 | const DexFile& original_dex_file = *klass->GetDexCache()->GetDexFile(); | 
|  | 1500 | if (&dex_file != &original_dex_file) { | 
| Andreas Gampe | 2ed8def | 2014-08-28 14:41:02 -0700 | [diff] [blame] | 1501 | if (class_loader == nullptr) { | 
| David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 1502 | LOG(WARNING) << "Skipping class " << klass->PrettyDescriptor() << " from " | 
| Jeff Hao | 0e49b42 | 2013-11-08 12:16:56 -0800 | [diff] [blame] | 1503 | << dex_file.GetLocation() << " previously found in " | 
|  | 1504 | << original_dex_file.GetLocation(); | 
|  | 1505 | } | 
|  | 1506 | return true; | 
|  | 1507 | } | 
|  | 1508 | return false; | 
|  | 1509 | } | 
|  | 1510 |  | 
| Mathieu Chartier | 70b6348 | 2014-06-27 17:19:04 -0700 | [diff] [blame] | 1511 | static void CheckAndClearResolveException(Thread* self) | 
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 1512 | REQUIRES_SHARED(Locks::mutator_lock_) { | 
| Mathieu Chartier | 70b6348 | 2014-06-27 17:19:04 -0700 | [diff] [blame] | 1513 | CHECK(self->IsExceptionPending()); | 
| Nicolas Geoffray | 14691c5 | 2015-03-05 10:40:17 +0000 | [diff] [blame] | 1514 | mirror::Throwable* exception = self->GetException(); | 
| Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 1515 | std::string temp; | 
|  | 1516 | const char* descriptor = exception->GetClass()->GetDescriptor(&temp); | 
|  | 1517 | const char* expected_exceptions[] = { | 
|  | 1518 | "Ljava/lang/IllegalAccessError;", | 
|  | 1519 | "Ljava/lang/IncompatibleClassChangeError;", | 
|  | 1520 | "Ljava/lang/InstantiationError;", | 
| Brian Carlstrom | 898fcb5 | 2014-08-25 23:07:30 -0700 | [diff] [blame] | 1521 | "Ljava/lang/LinkageError;", | 
| Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 1522 | "Ljava/lang/NoClassDefFoundError;", | 
|  | 1523 | "Ljava/lang/NoSuchFieldError;", | 
|  | 1524 | "Ljava/lang/NoSuchMethodError;" | 
|  | 1525 | }; | 
|  | 1526 | bool found = false; | 
|  | 1527 | for (size_t i = 0; (found == false) && (i < arraysize(expected_exceptions)); ++i) { | 
|  | 1528 | if (strcmp(descriptor, expected_exceptions[i]) == 0) { | 
|  | 1529 | found = true; | 
|  | 1530 | } | 
|  | 1531 | } | 
|  | 1532 | if (!found) { | 
| Brian Carlstrom | 898fcb5 | 2014-08-25 23:07:30 -0700 | [diff] [blame] | 1533 | LOG(FATAL) << "Unexpected exception " << exception->Dump(); | 
| Mathieu Chartier | 70b6348 | 2014-06-27 17:19:04 -0700 | [diff] [blame] | 1534 | } | 
|  | 1535 | self->ClearException(); | 
|  | 1536 | } | 
|  | 1537 |  | 
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 1538 | class ResolveClassFieldsAndMethodsVisitor : public CompilationVisitor { | 
|  | 1539 | public: | 
|  | 1540 | explicit ResolveClassFieldsAndMethodsVisitor(const ParallelCompilationManager* manager) | 
|  | 1541 | : manager_(manager) {} | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1542 |  | 
| Roland Levillain | bbc6e7e | 2018-08-24 16:58:47 +0100 | [diff] [blame] | 1543 | void Visit(size_t class_def_index) override REQUIRES(!Locks::mutator_lock_) { | 
| Andreas Gampe | 9b827ab | 2017-12-07 19:32:48 -0800 | [diff] [blame] | 1544 | ScopedTrace trace(__FUNCTION__); | 
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 1545 | Thread* const self = Thread::Current(); | 
|  | 1546 | jobject jclass_loader = manager_->GetClassLoader(); | 
|  | 1547 | const DexFile& dex_file = *manager_->GetDexFile(); | 
|  | 1548 | ClassLinker* class_linker = manager_->GetClassLinker(); | 
| Ian Rogers | e6bb3b2 | 2013-08-19 21:51:45 -0700 | [diff] [blame] | 1549 |  | 
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 1550 | // Method and Field are the worst. We can't resolve without either | 
|  | 1551 | // context from the code use (to disambiguate virtual vs direct | 
|  | 1552 | // method and instance vs static field) or from class | 
|  | 1553 | // definitions. While the compiler will resolve what it can as it | 
|  | 1554 | // needs it, here we try to resolve fields and methods used in class | 
|  | 1555 | // definitions, since many of them many never be referenced by | 
|  | 1556 | // generated code. | 
| Andreas Gampe | 3f1dcd3 | 2018-12-28 09:39:56 -0800 | [diff] [blame] | 1557 | const dex::ClassDef& class_def = dex_file.GetClassDef(class_def_index); | 
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 1558 | ScopedObjectAccess soa(self); | 
|  | 1559 | StackHandleScope<2> hs(soa.Self()); | 
|  | 1560 | Handle<mirror::ClassLoader> class_loader( | 
| Mathieu Chartier | 0795f23 | 2016-09-27 18:43:30 -0700 | [diff] [blame] | 1561 | hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader))); | 
| Mathieu Chartier | 673ed3d | 2015-08-28 14:56:43 -0700 | [diff] [blame] | 1562 | Handle<mirror::DexCache> dex_cache(hs.NewHandle(class_linker->FindDexCache( | 
| Vladimir Marko | cd556b0 | 2017-02-03 11:47:34 +0000 | [diff] [blame] | 1563 | soa.Self(), dex_file))); | 
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 1564 | // Resolve the class. | 
| Vladimir Marko | 28e012a | 2017-12-07 11:22:59 +0000 | [diff] [blame] | 1565 | ObjPtr<mirror::Class> klass = | 
| Vladimir Marko | 666ee3d | 2017-12-11 18:37:36 +0000 | [diff] [blame] | 1566 | class_linker->ResolveType(class_def.class_idx_, dex_cache, class_loader); | 
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 1567 | bool resolve_fields_and_methods; | 
|  | 1568 | if (klass == nullptr) { | 
|  | 1569 | // Class couldn't be resolved, for example, super-class is in a different dex file. Don't | 
|  | 1570 | // attempt to resolve methods and fields when there is no declaring class. | 
|  | 1571 | CheckAndClearResolveException(soa.Self()); | 
|  | 1572 | resolve_fields_and_methods = false; | 
|  | 1573 | } else { | 
|  | 1574 | // We successfully resolved a class, should we skip it? | 
|  | 1575 | if (SkipClass(jclass_loader, dex_file, klass)) { | 
|  | 1576 | return; | 
| Ian Rogers | e6bb3b2 | 2013-08-19 21:51:45 -0700 | [diff] [blame] | 1577 | } | 
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 1578 | // We want to resolve the methods and fields eagerly. | 
|  | 1579 | resolve_fields_and_methods = true; | 
| Ian Rogers | 68b5685 | 2014-08-29 20:19:11 -0700 | [diff] [blame] | 1580 | } | 
| Mathieu Chartier | c8c8d5f | 2018-05-22 11:56:14 -0700 | [diff] [blame] | 1581 |  | 
| Vladimir Marko | c1c3452 | 2018-10-31 13:56:49 +0000 | [diff] [blame] | 1582 | if (resolve_fields_and_methods) { | 
|  | 1583 | ClassAccessor accessor(dex_file, class_def_index); | 
|  | 1584 | // Optionally resolve fields and methods and figure out if we need a constructor barrier. | 
|  | 1585 | auto method_visitor = [&](const ClassAccessor::Method& method) | 
|  | 1586 | REQUIRES_SHARED(Locks::mutator_lock_) { | 
| Mathieu Chartier | c8c8d5f | 2018-05-22 11:56:14 -0700 | [diff] [blame] | 1587 | ArtMethod* resolved = class_linker->ResolveMethod<ClassLinker::ResolveMode::kNoChecks>( | 
|  | 1588 | method.GetIndex(), | 
|  | 1589 | dex_cache, | 
|  | 1590 | class_loader, | 
| Vladimir Marko | c1c3452 | 2018-10-31 13:56:49 +0000 | [diff] [blame] | 1591 | /*referrer=*/ nullptr, | 
| Mathieu Chartier | c8c8d5f | 2018-05-22 11:56:14 -0700 | [diff] [blame] | 1592 | method.GetInvokeType(class_def.access_flags_)); | 
|  | 1593 | if (resolved == nullptr) { | 
|  | 1594 | CheckAndClearResolveException(soa.Self()); | 
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 1595 | } | 
| Vladimir Marko | c1c3452 | 2018-10-31 13:56:49 +0000 | [diff] [blame] | 1596 | }; | 
|  | 1597 | accessor.VisitFieldsAndMethods( | 
|  | 1598 | // static fields | 
|  | 1599 | [&](ClassAccessor::Field& field) REQUIRES_SHARED(Locks::mutator_lock_) { | 
| Mathieu Chartier | c8c8d5f | 2018-05-22 11:56:14 -0700 | [diff] [blame] | 1600 | ArtField* resolved = class_linker->ResolveField( | 
| Vladimir Marko | c1c3452 | 2018-10-31 13:56:49 +0000 | [diff] [blame] | 1601 | field.GetIndex(), dex_cache, class_loader, /*is_static=*/ true); | 
| Mathieu Chartier | c8c8d5f | 2018-05-22 11:56:14 -0700 | [diff] [blame] | 1602 | if (resolved == nullptr) { | 
|  | 1603 | CheckAndClearResolveException(soa.Self()); | 
|  | 1604 | } | 
| Vladimir Marko | c1c3452 | 2018-10-31 13:56:49 +0000 | [diff] [blame] | 1605 | }, | 
|  | 1606 | // instance fields | 
|  | 1607 | [&](ClassAccessor::Field& field) REQUIRES_SHARED(Locks::mutator_lock_) { | 
| Mathieu Chartier | c8c8d5f | 2018-05-22 11:56:14 -0700 | [diff] [blame] | 1608 | ArtField* resolved = class_linker->ResolveField( | 
| Vladimir Marko | c1c3452 | 2018-10-31 13:56:49 +0000 | [diff] [blame] | 1609 | field.GetIndex(), dex_cache, class_loader, /*is_static=*/ false); | 
| Mathieu Chartier | c8c8d5f | 2018-05-22 11:56:14 -0700 | [diff] [blame] | 1610 | if (resolved == nullptr) { | 
|  | 1611 | CheckAndClearResolveException(soa.Self()); | 
|  | 1612 | } | 
| Vladimir Marko | c1c3452 | 2018-10-31 13:56:49 +0000 | [diff] [blame] | 1613 | }, | 
|  | 1614 | /*direct_method_visitor=*/ method_visitor, | 
|  | 1615 | /*virtual_method_visitor=*/ method_visitor); | 
|  | 1616 | } | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1617 | } | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1618 |  | 
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 1619 | private: | 
|  | 1620 | const ParallelCompilationManager* const manager_; | 
|  | 1621 | }; | 
|  | 1622 |  | 
|  | 1623 | class ResolveTypeVisitor : public CompilationVisitor { | 
|  | 1624 | public: | 
|  | 1625 | explicit ResolveTypeVisitor(const ParallelCompilationManager* manager) : manager_(manager) { | 
|  | 1626 | } | 
| Roland Levillain | bbc6e7e | 2018-08-24 16:58:47 +0100 | [diff] [blame] | 1627 | void Visit(size_t type_idx) override REQUIRES(!Locks::mutator_lock_) { | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1628 | // Class derived values are more complicated, they require the linker and loader. | 
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 1629 | ScopedObjectAccess soa(Thread::Current()); | 
|  | 1630 | ClassLinker* class_linker = manager_->GetClassLinker(); | 
|  | 1631 | const DexFile& dex_file = *manager_->GetDexFile(); | 
|  | 1632 | StackHandleScope<2> hs(soa.Self()); | 
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 1633 | Handle<mirror::ClassLoader> class_loader( | 
| Mathieu Chartier | 0795f23 | 2016-09-27 18:43:30 -0700 | [diff] [blame] | 1634 | hs.NewHandle(soa.Decode<mirror::ClassLoader>(manager_->GetClassLoader()))); | 
| Mathieu Chartier | d57d454 | 2015-10-14 10:55:30 -0700 | [diff] [blame] | 1635 | Handle<mirror::DexCache> dex_cache(hs.NewHandle(class_linker->RegisterDexFile( | 
|  | 1636 | dex_file, | 
| Mathieu Chartier | f284d44 | 2016-06-02 11:48:30 -0700 | [diff] [blame] | 1637 | class_loader.Get()))); | 
| Andreas Gampe | fa4333d | 2017-02-14 11:10:34 -0800 | [diff] [blame] | 1638 | ObjPtr<mirror::Class> klass = (dex_cache != nullptr) | 
| Vladimir Marko | 666ee3d | 2017-12-11 18:37:36 +0000 | [diff] [blame] | 1639 | ? class_linker->ResolveType(dex::TypeIndex(type_idx), dex_cache, class_loader) | 
| Vladimir Marko | cd556b0 | 2017-02-03 11:47:34 +0000 | [diff] [blame] | 1640 | : nullptr; | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1641 |  | 
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 1642 | if (klass == nullptr) { | 
|  | 1643 | soa.Self()->AssertPendingException(); | 
|  | 1644 | mirror::Throwable* exception = soa.Self()->GetException(); | 
|  | 1645 | VLOG(compiler) << "Exception during type resolution: " << exception->Dump(); | 
|  | 1646 | if (exception->GetClass()->DescriptorEquals("Ljava/lang/OutOfMemoryError;")) { | 
|  | 1647 | // There's little point continuing compilation if the heap is exhausted. | 
|  | 1648 | LOG(FATAL) << "Out of memory during type resolution for compilation"; | 
|  | 1649 | } | 
|  | 1650 | soa.Self()->ClearException(); | 
| Ian Rogers | a436fde | 2013-08-27 23:34:06 -0700 | [diff] [blame] | 1651 | } | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1652 | } | 
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 1653 |  | 
|  | 1654 | private: | 
|  | 1655 | const ParallelCompilationManager* const manager_; | 
|  | 1656 | }; | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1657 |  | 
| Andreas Gampe | ace0dc1 | 2016-01-20 13:33:13 -0800 | [diff] [blame] | 1658 | void CompilerDriver::ResolveDexFile(jobject class_loader, | 
|  | 1659 | const DexFile& dex_file, | 
| Andreas Gampe | de7b436 | 2014-07-28 18:38:57 -0700 | [diff] [blame] | 1660 | const std::vector<const DexFile*>& dex_files, | 
| Andreas Gampe | ace0dc1 | 2016-01-20 13:33:13 -0800 | [diff] [blame] | 1661 | ThreadPool* thread_pool, | 
|  | 1662 | size_t thread_count, | 
|  | 1663 | TimingLogger* timings) { | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1664 | ClassLinker* class_linker = Runtime::Current()->GetClassLinker(); | 
|  | 1665 |  | 
|  | 1666 | // TODO: we could resolve strings here, although the string table is largely filled with class | 
|  | 1667 | //       and method names. | 
|  | 1668 |  | 
| Andreas Gampe | de7b436 | 2014-07-28 18:38:57 -0700 | [diff] [blame] | 1669 | ParallelCompilationManager context(class_linker, class_loader, this, &dex_file, dex_files, | 
|  | 1670 | thread_pool); | 
| Vladimir Marko | aad75c6 | 2016-10-03 08:46:48 +0000 | [diff] [blame] | 1671 | if (GetCompilerOptions().IsBootImage()) { | 
| Ian Rogers | e6bb3b2 | 2013-08-19 21:51:45 -0700 | [diff] [blame] | 1672 | // For images we resolve all types, such as array, whereas for applications just those with | 
|  | 1673 | // classdefs are resolved by ResolveClassFieldsAndMethods. | 
| Mathieu Chartier | f5997b4 | 2014-06-20 10:37:54 -0700 | [diff] [blame] | 1674 | TimingLogger::ScopedTiming t("Resolve Types", timings); | 
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 1675 | ResolveTypeVisitor visitor(&context); | 
| Andreas Gampe | ace0dc1 | 2016-01-20 13:33:13 -0800 | [diff] [blame] | 1676 | context.ForAll(0, dex_file.NumTypeIds(), &visitor, thread_count); | 
| Ian Rogers | e6bb3b2 | 2013-08-19 21:51:45 -0700 | [diff] [blame] | 1677 | } | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1678 |  | 
| Mathieu Chartier | f5997b4 | 2014-06-20 10:37:54 -0700 | [diff] [blame] | 1679 | TimingLogger::ScopedTiming t("Resolve MethodsAndFields", timings); | 
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 1680 | ResolveClassFieldsAndMethodsVisitor visitor(&context); | 
| Andreas Gampe | ace0dc1 | 2016-01-20 13:33:13 -0800 | [diff] [blame] | 1681 | context.ForAll(0, dex_file.NumClassDefs(), &visitor, thread_count); | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1682 | } | 
|  | 1683 |  | 
| Andreas Gampe | ace0dc1 | 2016-01-20 13:33:13 -0800 | [diff] [blame] | 1684 | void CompilerDriver::SetVerified(jobject class_loader, | 
|  | 1685 | const std::vector<const DexFile*>& dex_files, | 
|  | 1686 | TimingLogger* timings) { | 
|  | 1687 | // This can be run in parallel. | 
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 1688 | for (const DexFile* dex_file : dex_files) { | 
| Andreas Gampe | 2ed8def | 2014-08-28 14:41:02 -0700 | [diff] [blame] | 1689 | CHECK(dex_file != nullptr); | 
| Andreas Gampe | ace0dc1 | 2016-01-20 13:33:13 -0800 | [diff] [blame] | 1690 | SetVerifiedDexFile(class_loader, | 
|  | 1691 | *dex_file, | 
|  | 1692 | dex_files, | 
|  | 1693 | parallel_thread_pool_.get(), | 
|  | 1694 | parallel_thread_count_, | 
|  | 1695 | timings); | 
| Andreas Gampe | 2ed8def | 2014-08-28 14:41:02 -0700 | [diff] [blame] | 1696 | } | 
|  | 1697 | } | 
|  | 1698 |  | 
| Mathieu Chartier | c8c8d5f | 2018-05-22 11:56:14 -0700 | [diff] [blame] | 1699 | static void LoadAndUpdateStatus(const ClassAccessor& accessor, | 
| Vladimir Marko | 2c64a83 | 2018-01-04 11:31:56 +0000 | [diff] [blame] | 1700 | ClassStatus status, | 
| Nicolas Geoffray | 0a27fd0 | 2017-01-25 16:18:54 +0000 | [diff] [blame] | 1701 | Handle<mirror::ClassLoader> class_loader, | 
|  | 1702 | Thread* self) | 
|  | 1703 | REQUIRES_SHARED(Locks::mutator_lock_) { | 
|  | 1704 | StackHandleScope<1> hs(self); | 
| Mathieu Chartier | c8c8d5f | 2018-05-22 11:56:14 -0700 | [diff] [blame] | 1705 | const char* descriptor = accessor.GetDescriptor(); | 
| Nicolas Geoffray | 0a27fd0 | 2017-01-25 16:18:54 +0000 | [diff] [blame] | 1706 | ClassLinker* class_linker = Runtime::Current()->GetClassLinker(); | 
|  | 1707 | Handle<mirror::Class> cls(hs.NewHandle<mirror::Class>( | 
|  | 1708 | class_linker->FindClass(self, descriptor, class_loader))); | 
| Andreas Gampe | fa4333d | 2017-02-14 11:10:34 -0800 | [diff] [blame] | 1709 | if (cls != nullptr) { | 
| Nicolas Geoffray | 0a27fd0 | 2017-01-25 16:18:54 +0000 | [diff] [blame] | 1710 | // Check that the class is resolved with the current dex file. We might get | 
|  | 1711 | // a boot image class, or a class in a different dex file for multidex, and | 
|  | 1712 | // we should not update the status in that case. | 
| Mathieu Chartier | c8c8d5f | 2018-05-22 11:56:14 -0700 | [diff] [blame] | 1713 | if (&cls->GetDexFile() == &accessor.GetDexFile()) { | 
| Nicolas Geoffray | 0a27fd0 | 2017-01-25 16:18:54 +0000 | [diff] [blame] | 1714 | ObjectLock<mirror::Class> lock(self, cls); | 
|  | 1715 | mirror::Class::SetStatus(cls, status, self); | 
| Andreas Gampe | 5b20b35 | 2018-10-11 19:03:20 -0700 | [diff] [blame] | 1716 | if (status >= ClassStatus::kVerified) { | 
|  | 1717 | cls->SetVerificationAttempted(); | 
|  | 1718 | } | 
| Nicolas Geoffray | 0a27fd0 | 2017-01-25 16:18:54 +0000 | [diff] [blame] | 1719 | } | 
|  | 1720 | } else { | 
|  | 1721 | DCHECK(self->IsExceptionPending()); | 
|  | 1722 | self->ClearException(); | 
|  | 1723 | } | 
|  | 1724 | } | 
|  | 1725 |  | 
| Nicolas Geoffray | 7498105 | 2017-01-16 17:54:09 +0000 | [diff] [blame] | 1726 | bool CompilerDriver::FastVerify(jobject jclass_loader, | 
|  | 1727 | const std::vector<const DexFile*>& dex_files, | 
| Vladimir Marko | 2afaff7 | 2018-11-30 17:01:50 +0000 | [diff] [blame] | 1728 | TimingLogger* timings, | 
|  | 1729 | /*out*/ VerificationResults* verification_results) { | 
| Nicolas Geoffray | b0bbe8e | 2016-11-19 10:42:37 +0000 | [diff] [blame] | 1730 | verifier::VerifierDeps* verifier_deps = | 
|  | 1731 | Runtime::Current()->GetCompilerCallbacks()->GetVerifierDeps(); | 
| Mathieu Chartier | 72041a0 | 2017-07-14 18:23:25 -0700 | [diff] [blame] | 1732 | // If there exist VerifierDeps that aren't the ones we just created to output, use them to verify. | 
|  | 1733 | if (verifier_deps == nullptr || verifier_deps->OutputOnly()) { | 
| Nicolas Geoffray | 7498105 | 2017-01-16 17:54:09 +0000 | [diff] [blame] | 1734 | return false; | 
|  | 1735 | } | 
|  | 1736 | TimingLogger::ScopedTiming t("Fast Verify", timings); | 
| Calin Juravle | 5ffefaa | 2019-01-25 01:04:54 -0800 | [diff] [blame] | 1737 |  | 
| Nicolas Geoffray | 7498105 | 2017-01-16 17:54:09 +0000 | [diff] [blame] | 1738 | ScopedObjectAccess soa(Thread::Current()); | 
|  | 1739 | StackHandleScope<2> hs(soa.Self()); | 
|  | 1740 | Handle<mirror::ClassLoader> class_loader( | 
|  | 1741 | hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader))); | 
| David Brazdil | 8fd6722 | 2019-02-05 18:13:44 +0000 | [diff] [blame] | 1742 | std::string error_msg; | 
|  | 1743 |  | 
| David Brazdil | eda46e9 | 2019-02-18 12:38:19 +0000 | [diff] [blame] | 1744 | if (!verifier_deps->ValidateDependencies( | 
|  | 1745 | soa.Self(), | 
|  | 1746 | class_loader, | 
|  | 1747 | // This returns classpath dex files in no particular order but VerifierDeps | 
|  | 1748 | // does not care about the order. | 
|  | 1749 | classpath_classes_.GetDexFiles(), | 
|  | 1750 | &error_msg)) { | 
| David Brazdil | 8fd6722 | 2019-02-05 18:13:44 +0000 | [diff] [blame] | 1751 | LOG(WARNING) << "Fast verification failed: " << error_msg; | 
| Nicolas Geoffray | 7498105 | 2017-01-16 17:54:09 +0000 | [diff] [blame] | 1752 | return false; | 
|  | 1753 | } | 
|  | 1754 |  | 
| Nicolas Geoffray | 49cda06 | 2017-04-21 13:08:25 +0100 | [diff] [blame] | 1755 | bool compiler_only_verifies = !GetCompilerOptions().IsAnyCompilationEnabled(); | 
| Nicolas Geoffray | 0a27fd0 | 2017-01-25 16:18:54 +0000 | [diff] [blame] | 1756 |  | 
| Nicolas Geoffray | 7498105 | 2017-01-16 17:54:09 +0000 | [diff] [blame] | 1757 | // We successfully validated the dependencies, now update class status | 
|  | 1758 | // of verified classes. Note that the dependencies also record which classes | 
|  | 1759 | // could not be fully verified; we could try again, but that would hurt verification | 
|  | 1760 | // time. So instead we assume these classes still need to be verified at | 
|  | 1761 | // runtime. | 
|  | 1762 | for (const DexFile* dex_file : dex_files) { | 
| David Brazdil | feb2282 | 2019-02-13 21:25:57 +0000 | [diff] [blame] | 1763 | // Fetch the list of verified classes. | 
|  | 1764 | const std::vector<bool>& verified_classes = verifier_deps->GetVerifiedClasses(*dex_file); | 
|  | 1765 | DCHECK_EQ(verified_classes.size(), dex_file->NumClassDefs()); | 
| Mathieu Chartier | c8c8d5f | 2018-05-22 11:56:14 -0700 | [diff] [blame] | 1766 | for (ClassAccessor accessor : dex_file->GetClasses()) { | 
| David Brazdil | feb2282 | 2019-02-13 21:25:57 +0000 | [diff] [blame] | 1767 | if (verified_classes[accessor.GetClassDefIndex()]) { | 
| Nicolas Geoffray | 0a27fd0 | 2017-01-25 16:18:54 +0000 | [diff] [blame] | 1768 | if (compiler_only_verifies) { | 
| Nicolas Geoffray | 7498105 | 2017-01-16 17:54:09 +0000 | [diff] [blame] | 1769 | // Just update the compiled_classes_ map. The compiler doesn't need to resolve | 
|  | 1770 | // the type. | 
| Mathieu Chartier | 18e2687 | 2018-06-04 17:19:02 -0700 | [diff] [blame] | 1771 | ClassReference ref(dex_file, accessor.GetClassDefIndex()); | 
| Mathieu Chartier | 2eabc61 | 2018-05-25 14:31:16 -0700 | [diff] [blame] | 1772 | const ClassStatus existing = ClassStatus::kNotReady; | 
| Mathieu Chartier | 1a088d4 | 2017-07-18 11:43:57 -0700 | [diff] [blame] | 1773 | ClassStateTable::InsertResult result = | 
| Vladimir Marko | 2c64a83 | 2018-01-04 11:31:56 +0000 | [diff] [blame] | 1774 | compiled_classes_.Insert(ref, existing, ClassStatus::kVerified); | 
| Mathieu Chartier | 2eabc61 | 2018-05-25 14:31:16 -0700 | [diff] [blame] | 1775 | CHECK_EQ(result, ClassStateTable::kInsertResultSuccess) << ref.dex_file->GetLocation(); | 
| Nicolas Geoffray | 7498105 | 2017-01-16 17:54:09 +0000 | [diff] [blame] | 1776 | } else { | 
| Nicolas Geoffray | 0a27fd0 | 2017-01-25 16:18:54 +0000 | [diff] [blame] | 1777 | // Update the class status, so later compilation stages know they don't need to verify | 
| Nicolas Geoffray | 7498105 | 2017-01-16 17:54:09 +0000 | [diff] [blame] | 1778 | // the class. | 
| Mathieu Chartier | c8c8d5f | 2018-05-22 11:56:14 -0700 | [diff] [blame] | 1779 | LoadAndUpdateStatus(accessor, ClassStatus::kVerified, class_loader, soa.Self()); | 
| Nicolas Geoffray | 7498105 | 2017-01-16 17:54:09 +0000 | [diff] [blame] | 1780 | // Create `VerifiedMethod`s for each methods, the compiler expects one for | 
|  | 1781 | // quickening or compiling. | 
|  | 1782 | // Note that this means: | 
|  | 1783 | // - We're only going to compile methods that did verify. | 
|  | 1784 | // - Quickening will not do checkcast ellision. | 
|  | 1785 | // TODO(ngeoffray): Reconsider this once we refactor compiler filters. | 
| Mathieu Chartier | 0d896bd | 2018-05-25 00:20:27 -0700 | [diff] [blame] | 1786 | for (const ClassAccessor::Method& method : accessor.GetMethods()) { | 
| Vladimir Marko | 2afaff7 | 2018-11-30 17:01:50 +0000 | [diff] [blame] | 1787 | verification_results->CreateVerifiedMethodFor(method.GetReference()); | 
| Mathieu Chartier | 0d896bd | 2018-05-25 00:20:27 -0700 | [diff] [blame] | 1788 | } | 
| Nicolas Geoffray | 6bb7f1b | 2016-11-03 10:52:49 +0000 | [diff] [blame] | 1789 | } | 
| Nicolas Geoffray | 0a27fd0 | 2017-01-25 16:18:54 +0000 | [diff] [blame] | 1790 | } else if (!compiler_only_verifies) { | 
|  | 1791 | // Make sure later compilation stages know they should not try to verify | 
|  | 1792 | // this class again. | 
| Mathieu Chartier | c8c8d5f | 2018-05-22 11:56:14 -0700 | [diff] [blame] | 1793 | LoadAndUpdateStatus(accessor, | 
| Vladimir Marko | 2c64a83 | 2018-01-04 11:31:56 +0000 | [diff] [blame] | 1794 | ClassStatus::kRetryVerificationAtRuntime, | 
| Nicolas Geoffray | 0a27fd0 | 2017-01-25 16:18:54 +0000 | [diff] [blame] | 1795 | class_loader, | 
|  | 1796 | soa.Self()); | 
| Nicolas Geoffray | 6bb7f1b | 2016-11-03 10:52:49 +0000 | [diff] [blame] | 1797 | } | 
| Nicolas Geoffray | 6bb7f1b | 2016-11-03 10:52:49 +0000 | [diff] [blame] | 1798 | } | 
|  | 1799 | } | 
| Nicolas Geoffray | 7498105 | 2017-01-16 17:54:09 +0000 | [diff] [blame] | 1800 | return true; | 
|  | 1801 | } | 
|  | 1802 |  | 
|  | 1803 | void CompilerDriver::Verify(jobject jclass_loader, | 
|  | 1804 | const std::vector<const DexFile*>& dex_files, | 
| Vladimir Marko | 2afaff7 | 2018-11-30 17:01:50 +0000 | [diff] [blame] | 1805 | TimingLogger* timings, | 
|  | 1806 | /*out*/ VerificationResults* verification_results) { | 
|  | 1807 | if (FastVerify(jclass_loader, dex_files, timings, verification_results)) { | 
| Nicolas Geoffray | 7498105 | 2017-01-16 17:54:09 +0000 | [diff] [blame] | 1808 | return; | 
|  | 1809 | } | 
| Nicolas Geoffray | 6bb7f1b | 2016-11-03 10:52:49 +0000 | [diff] [blame] | 1810 |  | 
| Nicolas Geoffray | b0bbe8e | 2016-11-19 10:42:37 +0000 | [diff] [blame] | 1811 | // If there is no existing `verifier_deps` (because of non-existing vdex), or | 
|  | 1812 | // the existing `verifier_deps` is not valid anymore, create a new one for | 
| Nicolas Geoffray | 6bb7f1b | 2016-11-03 10:52:49 +0000 | [diff] [blame] | 1813 | // non boot image compilation. The verifier will need it to record the new dependencies. | 
|  | 1814 | // Then dex2oat can update the vdex file with these new dependencies. | 
|  | 1815 | if (!GetCompilerOptions().IsBootImage()) { | 
| Mathieu Chartier | 72041a0 | 2017-07-14 18:23:25 -0700 | [diff] [blame] | 1816 | // Dex2oat creates the verifier deps. | 
| Nicolas Geoffray | 340dafa | 2016-11-18 16:03:10 +0000 | [diff] [blame] | 1817 | // Create the main VerifierDeps, and set it to this thread. | 
| Mathieu Chartier | 72041a0 | 2017-07-14 18:23:25 -0700 | [diff] [blame] | 1818 | verifier::VerifierDeps* verifier_deps = | 
|  | 1819 | Runtime::Current()->GetCompilerCallbacks()->GetVerifierDeps(); | 
|  | 1820 | CHECK(verifier_deps != nullptr); | 
| Nicolas Geoffray | b0bbe8e | 2016-11-19 10:42:37 +0000 | [diff] [blame] | 1821 | Thread::Current()->SetVerifierDeps(verifier_deps); | 
| Nicolas Geoffray | 340dafa | 2016-11-18 16:03:10 +0000 | [diff] [blame] | 1822 | // Create per-thread VerifierDeps to avoid contention on the main one. | 
|  | 1823 | // We will merge them after verification. | 
|  | 1824 | for (ThreadPoolWorker* worker : parallel_thread_pool_->GetWorkers()) { | 
| Vladimir Marko | 213ee2d | 2018-06-22 11:56:34 +0100 | [diff] [blame] | 1825 | worker->GetThread()->SetVerifierDeps( | 
|  | 1826 | new verifier::VerifierDeps(GetCompilerOptions().GetDexFilesForOatFile())); | 
| Nicolas Geoffray | 340dafa | 2016-11-18 16:03:10 +0000 | [diff] [blame] | 1827 | } | 
| Nicolas Geoffray | 6bb7f1b | 2016-11-03 10:52:49 +0000 | [diff] [blame] | 1828 | } | 
| Nicolas Geoffray | 7498105 | 2017-01-16 17:54:09 +0000 | [diff] [blame] | 1829 |  | 
| Nicolas Geoffray | 4684739 | 2017-04-28 14:56:39 +0100 | [diff] [blame] | 1830 | // Verification updates VerifierDeps and needs to run single-threaded to be deterministic. | 
|  | 1831 | bool force_determinism = GetCompilerOptions().IsForceDeterminism(); | 
|  | 1832 | ThreadPool* verify_thread_pool = | 
|  | 1833 | force_determinism ? single_thread_pool_.get() : parallel_thread_pool_.get(); | 
|  | 1834 | size_t verify_thread_count = force_determinism ? 1U : parallel_thread_count_; | 
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 1835 | for (const DexFile* dex_file : dex_files) { | 
| Andreas Gampe | 2ed8def | 2014-08-28 14:41:02 -0700 | [diff] [blame] | 1836 | CHECK(dex_file != nullptr); | 
| Nicolas Geoffray | 6bb7f1b | 2016-11-03 10:52:49 +0000 | [diff] [blame] | 1837 | VerifyDexFile(jclass_loader, | 
| Andreas Gampe | ace0dc1 | 2016-01-20 13:33:13 -0800 | [diff] [blame] | 1838 | *dex_file, | 
|  | 1839 | dex_files, | 
| Nicolas Geoffray | 4684739 | 2017-04-28 14:56:39 +0100 | [diff] [blame] | 1840 | verify_thread_pool, | 
|  | 1841 | verify_thread_count, | 
| Andreas Gampe | ace0dc1 | 2016-01-20 13:33:13 -0800 | [diff] [blame] | 1842 | timings); | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1843 | } | 
| Nicolas Geoffray | 340dafa | 2016-11-18 16:03:10 +0000 | [diff] [blame] | 1844 |  | 
|  | 1845 | if (!GetCompilerOptions().IsBootImage()) { | 
| Nicolas Geoffray | 340dafa | 2016-11-18 16:03:10 +0000 | [diff] [blame] | 1846 | // Merge all VerifierDeps into the main one. | 
| Nicolas Geoffray | 7498105 | 2017-01-16 17:54:09 +0000 | [diff] [blame] | 1847 | verifier::VerifierDeps* verifier_deps = Thread::Current()->GetVerifierDeps(); | 
| Nicolas Geoffray | 340dafa | 2016-11-18 16:03:10 +0000 | [diff] [blame] | 1848 | for (ThreadPoolWorker* worker : parallel_thread_pool_->GetWorkers()) { | 
| Vladimir Marko | 6c70224 | 2019-02-07 16:17:33 +0000 | [diff] [blame] | 1849 | std::unique_ptr<verifier::VerifierDeps> thread_deps(worker->GetThread()->GetVerifierDeps()); | 
|  | 1850 | worker->GetThread()->SetVerifierDeps(nullptr);  // We just took ownership. | 
|  | 1851 | verifier_deps->MergeWith(std::move(thread_deps), | 
|  | 1852 | GetCompilerOptions().GetDexFilesForOatFile()); | 
| Nicolas Geoffray | 340dafa | 2016-11-18 16:03:10 +0000 | [diff] [blame] | 1853 | } | 
|  | 1854 | Thread::Current()->SetVerifierDeps(nullptr); | 
|  | 1855 | } | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1856 | } | 
|  | 1857 |  | 
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 1858 | class VerifyClassVisitor : public CompilationVisitor { | 
|  | 1859 | public: | 
| Andreas Gampe | 5fd66d0 | 2016-09-12 20:22:19 -0700 | [diff] [blame] | 1860 | VerifyClassVisitor(const ParallelCompilationManager* manager, verifier::HardFailLogMode log_level) | 
| Andreas Gampe | 6cc23ac | 2018-08-24 15:22:43 -0700 | [diff] [blame] | 1861 | : manager_(manager), | 
|  | 1862 | log_level_(log_level), | 
|  | 1863 | sdk_version_(Runtime::Current()->GetTargetSdkVersion()) {} | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1864 |  | 
| Roland Levillain | f73caca | 2018-08-24 17:19:07 +0100 | [diff] [blame] | 1865 | void Visit(size_t class_def_index) REQUIRES(!Locks::mutator_lock_) override { | 
| Andreas Gampe | 9b827ab | 2017-12-07 19:32:48 -0800 | [diff] [blame] | 1866 | ScopedTrace trace(__FUNCTION__); | 
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 1867 | ScopedObjectAccess soa(Thread::Current()); | 
|  | 1868 | const DexFile& dex_file = *manager_->GetDexFile(); | 
| Andreas Gampe | 3f1dcd3 | 2018-12-28 09:39:56 -0800 | [diff] [blame] | 1869 | const dex::ClassDef& class_def = dex_file.GetClassDef(class_def_index); | 
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 1870 | const char* descriptor = dex_file.GetClassDescriptor(class_def); | 
|  | 1871 | ClassLinker* class_linker = manager_->GetClassLinker(); | 
|  | 1872 | jobject jclass_loader = manager_->GetClassLoader(); | 
|  | 1873 | StackHandleScope<3> hs(soa.Self()); | 
|  | 1874 | Handle<mirror::ClassLoader> class_loader( | 
| Mathieu Chartier | 0795f23 | 2016-09-27 18:43:30 -0700 | [diff] [blame] | 1875 | hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader))); | 
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 1876 | Handle<mirror::Class> klass( | 
|  | 1877 | hs.NewHandle(class_linker->FindClass(soa.Self(), descriptor, class_loader))); | 
| Andreas Gampe | 6d7abbd | 2017-04-24 13:19:09 -0700 | [diff] [blame] | 1878 | verifier::FailureKind failure_kind; | 
| Andreas Gampe | fa4333d | 2017-02-14 11:10:34 -0800 | [diff] [blame] | 1879 | if (klass == nullptr) { | 
| Ian Rogers | e6bb3b2 | 2013-08-19 21:51:45 -0700 | [diff] [blame] | 1880 | CHECK(soa.Self()->IsExceptionPending()); | 
|  | 1881 | soa.Self()->ClearException(); | 
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 1882 |  | 
|  | 1883 | /* | 
|  | 1884 | * At compile time, we can still structurally verify the class even if FindClass fails. | 
|  | 1885 | * This is to ensure the class is structurally sound for compilation. An unsound class | 
|  | 1886 | * will be rejected by the verifier and later skipped during compilation in the compiler. | 
|  | 1887 | */ | 
| Mathieu Chartier | 673ed3d | 2015-08-28 14:56:43 -0700 | [diff] [blame] | 1888 | Handle<mirror::DexCache> dex_cache(hs.NewHandle(class_linker->FindDexCache( | 
| Vladimir Marko | cd556b0 | 2017-02-03 11:47:34 +0000 | [diff] [blame] | 1889 | soa.Self(), dex_file))); | 
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 1890 | std::string error_msg; | 
| Nicolas Geoffray | 0802518 | 2016-10-25 17:20:18 +0100 | [diff] [blame] | 1891 | failure_kind = | 
| Andreas Gampe | a43ba3d | 2019-03-13 15:49:20 -0700 | [diff] [blame] | 1892 | verifier::ClassVerifier::VerifyClass(soa.Self(), | 
|  | 1893 | &dex_file, | 
|  | 1894 | dex_cache, | 
|  | 1895 | class_loader, | 
|  | 1896 | class_def, | 
|  | 1897 | Runtime::Current()->GetCompilerCallbacks(), | 
|  | 1898 | true /* allow soft failures */, | 
|  | 1899 | log_level_, | 
|  | 1900 | sdk_version_, | 
|  | 1901 | &error_msg); | 
| Andreas Gampe | 6d7abbd | 2017-04-24 13:19:09 -0700 | [diff] [blame] | 1902 | if (failure_kind == verifier::FailureKind::kHardFailure) { | 
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 1903 | LOG(ERROR) << "Verification failed on class " << PrettyDescriptor(descriptor) | 
|  | 1904 | << " because: " << error_msg; | 
|  | 1905 | manager_->GetCompiler()->SetHadHardVerifierFailure(); | 
| Andreas Gampe | f39208f | 2017-10-19 15:06:59 -0700 | [diff] [blame] | 1906 | } else if (failure_kind == verifier::FailureKind::kSoftFailure) { | 
|  | 1907 | manager_->GetCompiler()->AddSoftVerifierFailure(); | 
| Nicolas Geoffray | 7cc3ae5 | 2017-03-07 14:33:37 +0000 | [diff] [blame] | 1908 | } else { | 
|  | 1909 | // Force a soft failure for the VerifierDeps. This is a sanity measure, as | 
|  | 1910 | // the vdex file already records that the class hasn't been resolved. It avoids | 
|  | 1911 | // trying to do future verification optimizations when processing the vdex file. | 
| Andreas Gampe | f39208f | 2017-10-19 15:06:59 -0700 | [diff] [blame] | 1912 | DCHECK(failure_kind == verifier::FailureKind::kNoFailure) << failure_kind; | 
| Andreas Gampe | 6d7abbd | 2017-04-24 13:19:09 -0700 | [diff] [blame] | 1913 | failure_kind = verifier::FailureKind::kSoftFailure; | 
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 1914 | } | 
| Andreas Gampe | bb30d5d | 2018-04-23 09:59:25 -0700 | [diff] [blame] | 1915 | } else if (&klass->GetDexFile() != &dex_file) { | 
|  | 1916 | // Skip a duplicate class (as the resolved class is from another, earlier dex file). | 
| David Brazdil | feb2282 | 2019-02-13 21:25:57 +0000 | [diff] [blame] | 1917 | // Record the information that we skipped this class in the vdex. | 
|  | 1918 | // If the class resolved to a dex file not covered by the vdex, e.g. boot class path, | 
|  | 1919 | // it is considered external, dependencies on it will be recorded and the vdex will | 
|  | 1920 | // remain usable regardless of whether the class remains redefined or not (in the | 
|  | 1921 | // latter case, this class will be verify-at-runtime). | 
|  | 1922 | // On the other hand, if the class resolved to a dex file covered by the vdex, i.e. | 
|  | 1923 | // a different dex file within the same APK, this class will always be eclipsed by it. | 
|  | 1924 | // Recording that it was redefined is not necessary but will save class resolution | 
|  | 1925 | // time during fast-verify. | 
|  | 1926 | verifier::VerifierDeps::MaybeRecordClassRedefinition(dex_file, class_def); | 
| Andreas Gampe | bb30d5d | 2018-04-23 09:59:25 -0700 | [diff] [blame] | 1927 | return;  // Do not update state. | 
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 1928 | } else if (!SkipClass(jclass_loader, dex_file, klass.Get())) { | 
| David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 1929 | CHECK(klass->IsResolved()) << klass->PrettyClass(); | 
| Nicolas Geoffray | 0802518 | 2016-10-25 17:20:18 +0100 | [diff] [blame] | 1930 | failure_kind = class_linker->VerifyClass(soa.Self(), klass, log_level_); | 
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 1931 |  | 
|  | 1932 | if (klass->IsErroneous()) { | 
|  | 1933 | // ClassLinker::VerifyClass throws, which isn't useful in the compiler. | 
|  | 1934 | CHECK(soa.Self()->IsExceptionPending()); | 
|  | 1935 | soa.Self()->ClearException(); | 
|  | 1936 | manager_->GetCompiler()->SetHadHardVerifierFailure(); | 
| Andreas Gampe | f39208f | 2017-10-19 15:06:59 -0700 | [diff] [blame] | 1937 | } else if (failure_kind == verifier::FailureKind::kSoftFailure) { | 
|  | 1938 | manager_->GetCompiler()->AddSoftVerifierFailure(); | 
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 1939 | } | 
|  | 1940 |  | 
| Nicolas Geoffray | 7cc3ae5 | 2017-03-07 14:33:37 +0000 | [diff] [blame] | 1941 | CHECK(klass->ShouldVerifyAtRuntime() || klass->IsVerified() || klass->IsErroneous()) | 
| David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 1942 | << klass->PrettyDescriptor() << ": state=" << klass->GetStatus(); | 
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 1943 |  | 
| Nicolas Geoffray | c7da1d6 | 2017-04-19 09:36:24 +0100 | [diff] [blame] | 1944 | // Class has a meaningful status for the compiler now, record it. | 
|  | 1945 | ClassReference ref(manager_->GetDexFile(), class_def_index); | 
|  | 1946 | manager_->GetCompiler()->RecordClassStatus(ref, klass->GetStatus()); | 
|  | 1947 |  | 
| Andreas Gampe | d278cb4 | 2017-11-22 14:13:00 -0800 | [diff] [blame] | 1948 | // It is *very* problematic if there are resolution errors in the boot classpath. | 
|  | 1949 | // | 
|  | 1950 | // It is also bad if classes fail verification. For example, we rely on things working | 
|  | 1951 | // OK without verification when the decryption dialog is brought up. It is thus highly | 
|  | 1952 | // recommended to compile the boot classpath with | 
|  | 1953 | //   --abort-on-hard-verifier-error --abort-on-soft-verifier-error | 
|  | 1954 | // which is the default build system configuration. | 
| Narayan Kamath | e3eae5e | 2016-10-27 11:47:30 +0100 | [diff] [blame] | 1955 | if (kIsDebugBuild) { | 
| Orion Hodson | c5e0d3f | 2017-08-22 19:00:04 +0100 | [diff] [blame] | 1956 | if (manager_->GetCompiler()->GetCompilerOptions().IsBootImage()) { | 
| Andreas Gampe | d278cb4 | 2017-11-22 14:13:00 -0800 | [diff] [blame] | 1957 | if (!klass->IsResolved() || klass->IsErroneous()) { | 
| Andreas Gampe | 12fadcd | 2017-08-03 05:06:28 -0700 | [diff] [blame] | 1958 | LOG(FATAL) << "Boot classpath class " << klass->PrettyClass() | 
| Andreas Gampe | d278cb4 | 2017-11-22 14:13:00 -0800 | [diff] [blame] | 1959 | << " failed to resolve/is erroneous: state= " << klass->GetStatus(); | 
|  | 1960 | UNREACHABLE(); | 
| Andreas Gampe | 12fadcd | 2017-08-03 05:06:28 -0700 | [diff] [blame] | 1961 | } | 
| Narayan Kamath | e3eae5e | 2016-10-27 11:47:30 +0100 | [diff] [blame] | 1962 | } | 
| Nicolas Geoffray | 7cc3ae5 | 2017-03-07 14:33:37 +0000 | [diff] [blame] | 1963 | if (klass->IsVerified()) { | 
| Andreas Gampe | 6d7abbd | 2017-04-24 13:19:09 -0700 | [diff] [blame] | 1964 | DCHECK_EQ(failure_kind, verifier::FailureKind::kNoFailure); | 
| Nicolas Geoffray | 7cc3ae5 | 2017-03-07 14:33:37 +0000 | [diff] [blame] | 1965 | } else if (klass->ShouldVerifyAtRuntime()) { | 
| Andreas Gampe | 6d7abbd | 2017-04-24 13:19:09 -0700 | [diff] [blame] | 1966 | DCHECK_EQ(failure_kind, verifier::FailureKind::kSoftFailure); | 
| Nicolas Geoffray | 7cc3ae5 | 2017-03-07 14:33:37 +0000 | [diff] [blame] | 1967 | } else { | 
| Andreas Gampe | 6d7abbd | 2017-04-24 13:19:09 -0700 | [diff] [blame] | 1968 | DCHECK_EQ(failure_kind, verifier::FailureKind::kHardFailure); | 
| Nicolas Geoffray | 7cc3ae5 | 2017-03-07 14:33:37 +0000 | [diff] [blame] | 1969 | } | 
| Narayan Kamath | e3eae5e | 2016-10-27 11:47:30 +0100 | [diff] [blame] | 1970 | } | 
| Nicolas Geoffray | 0802518 | 2016-10-25 17:20:18 +0100 | [diff] [blame] | 1971 | } else { | 
|  | 1972 | // Make the skip a soft failure, essentially being considered as verify at runtime. | 
| Andreas Gampe | 6d7abbd | 2017-04-24 13:19:09 -0700 | [diff] [blame] | 1973 | failure_kind = verifier::FailureKind::kSoftFailure; | 
| Ian Rogers | e6bb3b2 | 2013-08-19 21:51:45 -0700 | [diff] [blame] | 1974 | } | 
| David Brazdil | feb2282 | 2019-02-13 21:25:57 +0000 | [diff] [blame] | 1975 | verifier::VerifierDeps::MaybeRecordVerificationStatus(dex_file, class_def, failure_kind); | 
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 1976 | soa.Self()->AssertNoPendingException(); | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1977 | } | 
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 1978 |  | 
|  | 1979 | private: | 
|  | 1980 | const ParallelCompilationManager* const manager_; | 
| Andreas Gampe | 5fd66d0 | 2016-09-12 20:22:19 -0700 | [diff] [blame] | 1981 | const verifier::HardFailLogMode log_level_; | 
| Andreas Gampe | 6cc23ac | 2018-08-24 15:22:43 -0700 | [diff] [blame] | 1982 | const uint32_t sdk_version_; | 
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 1983 | }; | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1984 |  | 
| Andreas Gampe | ace0dc1 | 2016-01-20 13:33:13 -0800 | [diff] [blame] | 1985 | void CompilerDriver::VerifyDexFile(jobject class_loader, | 
|  | 1986 | const DexFile& dex_file, | 
| Andreas Gampe | de7b436 | 2014-07-28 18:38:57 -0700 | [diff] [blame] | 1987 | const std::vector<const DexFile*>& dex_files, | 
| Andreas Gampe | ace0dc1 | 2016-01-20 13:33:13 -0800 | [diff] [blame] | 1988 | ThreadPool* thread_pool, | 
|  | 1989 | size_t thread_count, | 
|  | 1990 | TimingLogger* timings) { | 
| Mathieu Chartier | f5997b4 | 2014-06-20 10:37:54 -0700 | [diff] [blame] | 1991 | TimingLogger::ScopedTiming t("Verify Dex File", timings); | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1992 | ClassLinker* class_linker = Runtime::Current()->GetClassLinker(); | 
| Andreas Gampe | de7b436 | 2014-07-28 18:38:57 -0700 | [diff] [blame] | 1993 | ParallelCompilationManager context(class_linker, class_loader, this, &dex_file, dex_files, | 
|  | 1994 | thread_pool); | 
| Andreas Gampe | f39208f | 2017-10-19 15:06:59 -0700 | [diff] [blame] | 1995 | bool abort_on_verifier_failures = GetCompilerOptions().AbortOnHardVerifierFailure() | 
|  | 1996 | || GetCompilerOptions().AbortOnSoftVerifierFailure(); | 
|  | 1997 | verifier::HardFailLogMode log_level = abort_on_verifier_failures | 
| Andreas Gampe | 5fd66d0 | 2016-09-12 20:22:19 -0700 | [diff] [blame] | 1998 | ? verifier::HardFailLogMode::kLogInternalFatal | 
|  | 1999 | : verifier::HardFailLogMode::kLogWarning; | 
| Andreas Gampe | 7fe3023 | 2016-03-25 16:58:00 -0700 | [diff] [blame] | 2000 | VerifyClassVisitor visitor(&context, log_level); | 
| Andreas Gampe | ace0dc1 | 2016-01-20 13:33:13 -0800 | [diff] [blame] | 2001 | context.ForAll(0, dex_file.NumClassDefs(), &visitor, thread_count); | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 2002 | } | 
|  | 2003 |  | 
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 2004 | class SetVerifiedClassVisitor : public CompilationVisitor { | 
|  | 2005 | public: | 
|  | 2006 | explicit SetVerifiedClassVisitor(const ParallelCompilationManager* manager) : manager_(manager) {} | 
|  | 2007 |  | 
| Roland Levillain | f73caca | 2018-08-24 17:19:07 +0100 | [diff] [blame] | 2008 | void Visit(size_t class_def_index) REQUIRES(!Locks::mutator_lock_) override { | 
| Andreas Gampe | 9b827ab | 2017-12-07 19:32:48 -0800 | [diff] [blame] | 2009 | ScopedTrace trace(__FUNCTION__); | 
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 2010 | ScopedObjectAccess soa(Thread::Current()); | 
|  | 2011 | const DexFile& dex_file = *manager_->GetDexFile(); | 
| Andreas Gampe | 3f1dcd3 | 2018-12-28 09:39:56 -0800 | [diff] [blame] | 2012 | const dex::ClassDef& class_def = dex_file.GetClassDef(class_def_index); | 
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 2013 | const char* descriptor = dex_file.GetClassDescriptor(class_def); | 
|  | 2014 | ClassLinker* class_linker = manager_->GetClassLinker(); | 
|  | 2015 | jobject jclass_loader = manager_->GetClassLoader(); | 
|  | 2016 | StackHandleScope<3> hs(soa.Self()); | 
|  | 2017 | Handle<mirror::ClassLoader> class_loader( | 
| Mathieu Chartier | 0795f23 | 2016-09-27 18:43:30 -0700 | [diff] [blame] | 2018 | hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader))); | 
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 2019 | Handle<mirror::Class> klass( | 
|  | 2020 | hs.NewHandle(class_linker->FindClass(soa.Self(), descriptor, class_loader))); | 
|  | 2021 | // Class might have failed resolution. Then don't set it to verified. | 
| Andreas Gampe | fa4333d | 2017-02-14 11:10:34 -0800 | [diff] [blame] | 2022 | if (klass != nullptr) { | 
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 2023 | // Only do this if the class is resolved. If even resolution fails, quickening will go very, | 
|  | 2024 | // very wrong. | 
| Vladimir Marko | 72ab684 | 2017-01-20 19:32:50 +0000 | [diff] [blame] | 2025 | if (klass->IsResolved() && !klass->IsErroneousResolved()) { | 
| Vladimir Marko | 2c64a83 | 2018-01-04 11:31:56 +0000 | [diff] [blame] | 2026 | if (klass->GetStatus() < ClassStatus::kVerified) { | 
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 2027 | ObjectLock<mirror::Class> lock(soa.Self(), klass); | 
|  | 2028 | // Set class status to verified. | 
| Vladimir Marko | 2c64a83 | 2018-01-04 11:31:56 +0000 | [diff] [blame] | 2029 | mirror::Class::SetStatus(klass, ClassStatus::kVerified, soa.Self()); | 
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 2030 | // Mark methods as pre-verified. If we don't do this, the interpreter will run with | 
|  | 2031 | // access checks. | 
| Vladimir Marko | a043111 | 2018-06-25 09:32:54 +0100 | [diff] [blame] | 2032 | InstructionSet instruction_set = | 
|  | 2033 | manager_->GetCompiler()->GetCompilerOptions().GetInstructionSet(); | 
|  | 2034 | klass->SetSkipAccessChecksFlagOnAllMethods(GetInstructionSetPointerSize(instruction_set)); | 
| Igor Murashkin | df707e4 | 2016-02-02 16:56:50 -0800 | [diff] [blame] | 2035 | klass->SetVerificationAttempted(); | 
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 2036 | } | 
|  | 2037 | // Record the final class status if necessary. | 
|  | 2038 | ClassReference ref(manager_->GetDexFile(), class_def_index); | 
|  | 2039 | manager_->GetCompiler()->RecordClassStatus(ref, klass->GetStatus()); | 
| Andreas Gampe | 2ed8def | 2014-08-28 14:41:02 -0700 | [diff] [blame] | 2040 | } | 
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 2041 | } else { | 
|  | 2042 | Thread* self = soa.Self(); | 
|  | 2043 | DCHECK(self->IsExceptionPending()); | 
|  | 2044 | self->ClearException(); | 
| Andreas Gampe | 2ed8def | 2014-08-28 14:41:02 -0700 | [diff] [blame] | 2045 | } | 
|  | 2046 | } | 
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 2047 |  | 
|  | 2048 | private: | 
|  | 2049 | const ParallelCompilationManager* const manager_; | 
|  | 2050 | }; | 
| Andreas Gampe | 2ed8def | 2014-08-28 14:41:02 -0700 | [diff] [blame] | 2051 |  | 
| Andreas Gampe | ace0dc1 | 2016-01-20 13:33:13 -0800 | [diff] [blame] | 2052 | void CompilerDriver::SetVerifiedDexFile(jobject class_loader, | 
|  | 2053 | const DexFile& dex_file, | 
| Andreas Gampe | 2ed8def | 2014-08-28 14:41:02 -0700 | [diff] [blame] | 2054 | const std::vector<const DexFile*>& dex_files, | 
| Andreas Gampe | ace0dc1 | 2016-01-20 13:33:13 -0800 | [diff] [blame] | 2055 | ThreadPool* thread_pool, | 
|  | 2056 | size_t thread_count, | 
|  | 2057 | TimingLogger* timings) { | 
| Andreas Gampe | 2ed8def | 2014-08-28 14:41:02 -0700 | [diff] [blame] | 2058 | TimingLogger::ScopedTiming t("Verify Dex File", timings); | 
| Mathieu Chartier | 1a088d4 | 2017-07-18 11:43:57 -0700 | [diff] [blame] | 2059 | if (!compiled_classes_.HaveDexFile(&dex_file)) { | 
| Mathieu Chartier | fc8b422 | 2017-09-17 13:44:24 -0700 | [diff] [blame] | 2060 | compiled_classes_.AddDexFile(&dex_file); | 
| Mathieu Chartier | 1a088d4 | 2017-07-18 11:43:57 -0700 | [diff] [blame] | 2061 | } | 
| Andreas Gampe | 2ed8def | 2014-08-28 14:41:02 -0700 | [diff] [blame] | 2062 | ClassLinker* class_linker = Runtime::Current()->GetClassLinker(); | 
|  | 2063 | ParallelCompilationManager context(class_linker, class_loader, this, &dex_file, dex_files, | 
|  | 2064 | thread_pool); | 
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 2065 | SetVerifiedClassVisitor visitor(&context); | 
| Andreas Gampe | ace0dc1 | 2016-01-20 13:33:13 -0800 | [diff] [blame] | 2066 | context.ForAll(0, dex_file.NumClassDefs(), &visitor, thread_count); | 
| Andreas Gampe | 2ed8def | 2014-08-28 14:41:02 -0700 | [diff] [blame] | 2067 | } | 
|  | 2068 |  | 
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 2069 | class InitializeClassVisitor : public CompilationVisitor { | 
|  | 2070 | public: | 
|  | 2071 | explicit InitializeClassVisitor(const ParallelCompilationManager* manager) : manager_(manager) {} | 
| Ian Rogers | fc0e94b | 2013-09-23 23:51:32 -0700 | [diff] [blame] | 2072 |  | 
| Roland Levillain | bbc6e7e | 2018-08-24 16:58:47 +0100 | [diff] [blame] | 2073 | void Visit(size_t class_def_index) override { | 
| Andreas Gampe | 9b827ab | 2017-12-07 19:32:48 -0800 | [diff] [blame] | 2074 | ScopedTrace trace(__FUNCTION__); | 
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 2075 | jobject jclass_loader = manager_->GetClassLoader(); | 
|  | 2076 | const DexFile& dex_file = *manager_->GetDexFile(); | 
| Andreas Gampe | 3f1dcd3 | 2018-12-28 09:39:56 -0800 | [diff] [blame] | 2077 | const dex::ClassDef& class_def = dex_file.GetClassDef(class_def_index); | 
|  | 2078 | const dex::TypeId& class_type_id = dex_file.GetTypeId(class_def.class_idx_); | 
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 2079 | const char* descriptor = dex_file.StringDataByIdx(class_type_id.descriptor_idx_); | 
| Jeff Hao | 0e49b42 | 2013-11-08 12:16:56 -0800 | [diff] [blame] | 2080 |  | 
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 2081 | ScopedObjectAccess soa(Thread::Current()); | 
|  | 2082 | StackHandleScope<3> hs(soa.Self()); | 
|  | 2083 | Handle<mirror::ClassLoader> class_loader( | 
| Mathieu Chartier | 0795f23 | 2016-09-27 18:43:30 -0700 | [diff] [blame] | 2084 | hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader))); | 
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 2085 | Handle<mirror::Class> klass( | 
|  | 2086 | hs.NewHandle(manager_->GetClassLinker()->FindClass(soa.Self(), descriptor, class_loader))); | 
|  | 2087 |  | 
| Mathieu Chartier | 41dba67 | 2018-12-21 15:06:17 -0800 | [diff] [blame] | 2088 | if (klass != nullptr) { | 
|  | 2089 | if (!SkipClass(manager_->GetClassLoader(), dex_file, klass.Get())) { | 
|  | 2090 | TryInitializeClass(klass, class_loader); | 
|  | 2091 | } | 
|  | 2092 | manager_->GetCompiler()->stats_->AddClassStatus(klass->GetStatus()); | 
| Mathieu Chartier | f1dd69a | 2017-06-08 23:30:15 +0000 | [diff] [blame] | 2093 | } | 
|  | 2094 | // Clear any class not found or verification exceptions. | 
|  | 2095 | soa.Self()->ClearException(); | 
|  | 2096 | } | 
|  | 2097 |  | 
|  | 2098 | // A helper function for initializing klass. | 
|  | 2099 | void TryInitializeClass(Handle<mirror::Class> klass, Handle<mirror::ClassLoader>& class_loader) | 
|  | 2100 | REQUIRES_SHARED(Locks::mutator_lock_) { | 
|  | 2101 | const DexFile& dex_file = klass->GetDexFile(); | 
| Andreas Gampe | 3f1dcd3 | 2018-12-28 09:39:56 -0800 | [diff] [blame] | 2102 | const dex::ClassDef* class_def = klass->GetClassDef(); | 
|  | 2103 | const dex::TypeId& class_type_id = dex_file.GetTypeId(class_def->class_idx_); | 
| Mathieu Chartier | f1dd69a | 2017-06-08 23:30:15 +0000 | [diff] [blame] | 2104 | const char* descriptor = dex_file.StringDataByIdx(class_type_id.descriptor_idx_); | 
|  | 2105 | ScopedObjectAccessUnchecked soa(Thread::Current()); | 
|  | 2106 | StackHandleScope<3> hs(soa.Self()); | 
| Mathieu Chartier | dabeb3a | 2017-06-12 17:10:07 -0700 | [diff] [blame] | 2107 | const bool is_boot_image = manager_->GetCompiler()->GetCompilerOptions().IsBootImage(); | 
| Mathieu Chartier | 17498e5 | 2017-06-13 11:35:04 -0700 | [diff] [blame] | 2108 | const bool is_app_image = manager_->GetCompiler()->GetCompilerOptions().IsAppImage(); | 
| Mathieu Chartier | f1dd69a | 2017-06-08 23:30:15 +0000 | [diff] [blame] | 2109 |  | 
| Vladimir Marko | 2c64a83 | 2018-01-04 11:31:56 +0000 | [diff] [blame] | 2110 | ClassStatus old_status = klass->GetStatus(); | 
| Mathieu Chartier | 1a088d4 | 2017-07-18 11:43:57 -0700 | [diff] [blame] | 2111 | // Don't initialize classes in boot space when compiling app image | 
|  | 2112 | if (is_app_image && klass->IsBootStrapClassLoaded()) { | 
|  | 2113 | // Also return early and don't store the class status in the recorded class status. | 
|  | 2114 | return; | 
|  | 2115 | } | 
| Mathieu Chartier | f1dd69a | 2017-06-08 23:30:15 +0000 | [diff] [blame] | 2116 | // Only try to initialize classes that were successfully verified. | 
|  | 2117 | if (klass->IsVerified()) { | 
|  | 2118 | // Attempt to initialize the class but bail if we either need to initialize the super-class | 
|  | 2119 | // or static fields. | 
| Nicolas Geoffray | abadf02 | 2017-08-03 08:25:41 +0000 | [diff] [blame] | 2120 | manager_->GetClassLinker()->EnsureInitialized(soa.Self(), klass, false, false); | 
| Mathieu Chartier | f1dd69a | 2017-06-08 23:30:15 +0000 | [diff] [blame] | 2121 | old_status = klass->GetStatus(); | 
|  | 2122 | if (!klass->IsInitialized()) { | 
|  | 2123 | // We don't want non-trivial class initialization occurring on multiple threads due to | 
|  | 2124 | // deadlock problems. For example, a parent class is initialized (holding its lock) that | 
|  | 2125 | // refers to a sub-class in its static/class initializer causing it to try to acquire the | 
|  | 2126 | // sub-class' lock. While on a second thread the sub-class is initialized (holding its lock) | 
|  | 2127 | // after first initializing its parents, whose locks are acquired. This leads to a | 
|  | 2128 | // parent-to-child and a child-to-parent lock ordering and consequent potential deadlock. | 
|  | 2129 | // We need to use an ObjectLock due to potential suspension in the interpreting code. Rather | 
|  | 2130 | // than use a special Object for the purpose we use the Class of java.lang.Class. | 
|  | 2131 | Handle<mirror::Class> h_klass(hs.NewHandle(klass->GetClass())); | 
|  | 2132 | ObjectLock<mirror::Class> lock(soa.Self(), h_klass); | 
|  | 2133 | // Attempt to initialize allowing initialization of parent classes but still not static | 
|  | 2134 | // fields. | 
| Chang Xing | e602b1c | 2017-06-30 11:55:01 -0700 | [diff] [blame] | 2135 | // Initialize dependencies first only for app image, to make TryInitialize recursive. | 
|  | 2136 | bool is_superclass_initialized = !is_app_image ? true : | 
|  | 2137 | InitializeDependencies(klass, class_loader, soa.Self()); | 
|  | 2138 | if (!is_app_image || (is_app_image && is_superclass_initialized)) { | 
| Nicolas Geoffray | abadf02 | 2017-08-03 08:25:41 +0000 | [diff] [blame] | 2139 | manager_->GetClassLinker()->EnsureInitialized(soa.Self(), klass, false, true); | 
| Chang Xing | e602b1c | 2017-06-30 11:55:01 -0700 | [diff] [blame] | 2140 | } | 
|  | 2141 | // Otherwise it's in app image but superclasses can't be initialized, no need to proceed. | 
| Mathieu Chartier | f1dd69a | 2017-06-08 23:30:15 +0000 | [diff] [blame] | 2142 | old_status = klass->GetStatus(); | 
| Chang Xing | 70f689d | 2017-06-08 17:16:12 -0700 | [diff] [blame] | 2143 |  | 
| Chris Wailes | 0c61be4 | 2018-09-26 17:27:34 -0700 | [diff] [blame] | 2144 | bool too_many_encoded_fields = !is_boot_image && | 
|  | 2145 | klass->NumStaticFields() > kMaxEncodedFields; | 
|  | 2146 |  | 
| Mathieu Chartier | dabeb3a | 2017-06-12 17:10:07 -0700 | [diff] [blame] | 2147 | // If the class was not initialized, we can proceed to see if we can initialize static | 
| Chang Xing | 70f689d | 2017-06-08 17:16:12 -0700 | [diff] [blame] | 2148 | // fields. Limit the max number of encoded fields. | 
| Mathieu Chartier | f1dd69a | 2017-06-08 23:30:15 +0000 | [diff] [blame] | 2149 | if (!klass->IsInitialized() && | 
| Mathieu Chartier | 17498e5 | 2017-06-13 11:35:04 -0700 | [diff] [blame] | 2150 | (is_app_image || is_boot_image) && | 
| Chang Xing | e602b1c | 2017-06-30 11:55:01 -0700 | [diff] [blame] | 2151 | is_superclass_initialized && | 
| Chang Xing | 70f689d | 2017-06-08 17:16:12 -0700 | [diff] [blame] | 2152 | !too_many_encoded_fields && | 
| Vladimir Marko | dc4bcce | 2018-06-21 16:15:42 +0100 | [diff] [blame] | 2153 | manager_->GetCompiler()->GetCompilerOptions().IsImageClass(descriptor)) { | 
| Mathieu Chartier | f1dd69a | 2017-06-08 23:30:15 +0000 | [diff] [blame] | 2154 | bool can_init_static_fields = false; | 
| Mathieu Chartier | dabeb3a | 2017-06-12 17:10:07 -0700 | [diff] [blame] | 2155 | if (is_boot_image) { | 
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 2156 | // We need to initialize static fields, we only do this for image classes that aren't | 
| Mathieu Chartier | dabeb3a | 2017-06-12 17:10:07 -0700 | [diff] [blame] | 2157 | // marked with the $NoPreloadHolder (which implies this should not be initialized | 
|  | 2158 | // early). | 
| Vladimir Marko | 2ef0110 | 2019-02-05 15:05:10 +0000 | [diff] [blame] | 2159 | can_init_static_fields = !EndsWith(std::string_view(descriptor), "$NoPreloadHolder;"); | 
| Mathieu Chartier | f1dd69a | 2017-06-08 23:30:15 +0000 | [diff] [blame] | 2160 | } else { | 
| Mathieu Chartier | 17498e5 | 2017-06-13 11:35:04 -0700 | [diff] [blame] | 2161 | CHECK(is_app_image); | 
| Mathieu Chartier | dabeb3a | 2017-06-12 17:10:07 -0700 | [diff] [blame] | 2162 | // The boot image case doesn't need to recursively initialize the dependencies with | 
|  | 2163 | // special logic since the class linker already does this. | 
| Mathieu Chartier | dabeb3a | 2017-06-12 17:10:07 -0700 | [diff] [blame] | 2164 | can_init_static_fields = | 
| Mathieu Chartier | 0933cc5 | 2018-03-23 14:25:08 -0700 | [diff] [blame] | 2165 | ClassLinker::kAppImageMayContainStrings && | 
| Mathieu Chartier | f1dd69a | 2017-06-08 23:30:15 +0000 | [diff] [blame] | 2166 | !soa.Self()->IsExceptionPending() && | 
| Nicolas Geoffray | abadf02 | 2017-08-03 08:25:41 +0000 | [diff] [blame] | 2167 | is_superclass_initialized && | 
|  | 2168 | NoClinitInDependency(klass, soa.Self(), &class_loader); | 
| Mathieu Chartier | f1dd69a | 2017-06-08 23:30:15 +0000 | [diff] [blame] | 2169 | // TODO The checking for clinit can be removed since it's already | 
|  | 2170 | // checked when init superclass. Currently keep it because it contains | 
|  | 2171 | // processing of intern strings. Will be removed later when intern strings | 
|  | 2172 | // and clinit are both initialized. | 
|  | 2173 | } | 
| Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 2174 |  | 
| Mathieu Chartier | f1dd69a | 2017-06-08 23:30:15 +0000 | [diff] [blame] | 2175 | if (can_init_static_fields) { | 
|  | 2176 | VLOG(compiler) << "Initializing: " << descriptor; | 
|  | 2177 | // TODO multithreading support. We should ensure the current compilation thread has | 
|  | 2178 | // exclusive access to the runtime and the transaction. To achieve this, we could use | 
|  | 2179 | // a ReaderWriterMutex but we're holding the mutator lock so we fail mutex sanity | 
|  | 2180 | // checks in Thread::AssertThreadSuspensionIsAllowable. | 
|  | 2181 | Runtime* const runtime = Runtime::Current(); | 
| Mathieu Chartier | f1dd69a | 2017-06-08 23:30:15 +0000 | [diff] [blame] | 2182 | // Run the class initializer in transaction mode. | 
| Chang Xing | 5a906fc | 2017-07-26 15:01:16 -0700 | [diff] [blame] | 2183 | runtime->EnterTransactionMode(is_app_image, klass.Get()); | 
| Mathieu Chartier | f1dd69a | 2017-06-08 23:30:15 +0000 | [diff] [blame] | 2184 | bool success = manager_->GetClassLinker()->EnsureInitialized(soa.Self(), klass, true, | 
|  | 2185 | true); | 
|  | 2186 | // TODO we detach transaction from runtime to indicate we quit the transactional | 
|  | 2187 | // mode which prevents the GC from visiting objects modified during the transaction. | 
|  | 2188 | // Ensure GC is not run so don't access freed objects when aborting transaction. | 
| Andreas Gampe | 9e7078b | 2017-03-02 13:50:36 -0800 | [diff] [blame] | 2189 |  | 
| Mathieu Chartier | f1dd69a | 2017-06-08 23:30:15 +0000 | [diff] [blame] | 2190 | { | 
|  | 2191 | ScopedAssertNoThreadSuspension ants("Transaction end"); | 
| Chang Xing | 16d1dd8 | 2017-07-20 17:56:26 -0700 | [diff] [blame] | 2192 |  | 
|  | 2193 | if (success) { | 
|  | 2194 | runtime->ExitTransactionMode(); | 
|  | 2195 | DCHECK(!runtime->IsActiveTransaction()); | 
| Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 2196 |  | 
| Chris Wailes | 0c61be4 | 2018-09-26 17:27:34 -0700 | [diff] [blame] | 2197 | if (is_boot_image) { | 
|  | 2198 | // For boot image, we want to put the updated status in the oat class since we | 
|  | 2199 | // can't reject the image anyways. | 
|  | 2200 | old_status = klass->GetStatus(); | 
|  | 2201 | } | 
|  | 2202 | } else { | 
| Mathieu Chartier | f1dd69a | 2017-06-08 23:30:15 +0000 | [diff] [blame] | 2203 | CHECK(soa.Self()->IsExceptionPending()); | 
|  | 2204 | mirror::Throwable* exception = soa.Self()->GetException(); | 
|  | 2205 | VLOG(compiler) << "Initialization of " << descriptor << " aborted because of " | 
|  | 2206 | << exception->Dump(); | 
|  | 2207 | std::ostream* file_log = manager_->GetCompiler()-> | 
|  | 2208 | GetCompilerOptions().GetInitFailureOutput(); | 
|  | 2209 | if (file_log != nullptr) { | 
|  | 2210 | *file_log << descriptor << "\n"; | 
|  | 2211 | *file_log << exception->Dump() << "\n"; | 
|  | 2212 | } | 
|  | 2213 | soa.Self()->ClearException(); | 
| Chang Xing | 605fe24 | 2017-07-20 15:57:21 -0700 | [diff] [blame] | 2214 | runtime->RollbackAllTransactions(); | 
| Mathieu Chartier | f1dd69a | 2017-06-08 23:30:15 +0000 | [diff] [blame] | 2215 | CHECK_EQ(old_status, klass->GetStatus()) << "Previous class status not restored"; | 
|  | 2216 | } | 
|  | 2217 | } | 
|  | 2218 |  | 
| Nicolas Geoffray | abadf02 | 2017-08-03 08:25:41 +0000 | [diff] [blame] | 2219 | if (!success) { | 
| Mathieu Chartier | f1dd69a | 2017-06-08 23:30:15 +0000 | [diff] [blame] | 2220 | // On failure, still intern strings of static fields and seen in <clinit>, as these | 
|  | 2221 | // will be created in the zygote. This is separated from the transaction code just | 
|  | 2222 | // above as we will allocate strings, so must be allowed to suspend. | 
|  | 2223 | if (&klass->GetDexFile() == manager_->GetDexFile()) { | 
| Andreas Gampe | 9e7078b | 2017-03-02 13:50:36 -0800 | [diff] [blame] | 2224 | InternStrings(klass, class_loader); | 
| Mathieu Chartier | dabeb3a | 2017-06-12 17:10:07 -0700 | [diff] [blame] | 2225 | } else { | 
|  | 2226 | DCHECK(!is_boot_image) << "Boot image must have equal dex files"; | 
| Andreas Gampe | dbfe254 | 2014-11-25 22:21:42 -0800 | [diff] [blame] | 2227 | } | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 2228 | } | 
|  | 2229 | } | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 2230 | } | 
| Jeff Hao | 0cb1728 | 2017-07-12 14:51:49 -0700 | [diff] [blame] | 2231 | // If the class still isn't initialized, at least try some checks that initialization | 
|  | 2232 | // would do so they can be skipped at runtime. | 
|  | 2233 | if (!klass->IsInitialized() && | 
|  | 2234 | manager_->GetClassLinker()->ValidateSuperClassDescriptors(klass)) { | 
| Vladimir Marko | 2c64a83 | 2018-01-04 11:31:56 +0000 | [diff] [blame] | 2235 | old_status = ClassStatus::kSuperclassValidated; | 
| Jeff Hao | 0cb1728 | 2017-07-12 14:51:49 -0700 | [diff] [blame] | 2236 | } else { | 
|  | 2237 | soa.Self()->ClearException(); | 
|  | 2238 | } | 
| Mathieu Chartier | f1dd69a | 2017-06-08 23:30:15 +0000 | [diff] [blame] | 2239 | soa.Self()->AssertNoPendingException(); | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 2240 | } | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 2241 | } | 
| Mathieu Chartier | f1dd69a | 2017-06-08 23:30:15 +0000 | [diff] [blame] | 2242 | // Record the final class status if necessary. | 
|  | 2243 | ClassReference ref(&dex_file, klass->GetDexClassDefIndex()); | 
|  | 2244 | // Back up the status before doing initialization for static encoded fields, | 
|  | 2245 | // because the static encoded branch wants to keep the status to uninitialized. | 
|  | 2246 | manager_->GetCompiler()->RecordClassStatus(ref, old_status); | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 2247 | } | 
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 2248 |  | 
|  | 2249 | private: | 
| Andreas Gampe | 9e7078b | 2017-03-02 13:50:36 -0800 | [diff] [blame] | 2250 | void InternStrings(Handle<mirror::Class> klass, Handle<mirror::ClassLoader> class_loader) | 
|  | 2251 | REQUIRES_SHARED(Locks::mutator_lock_) { | 
|  | 2252 | DCHECK(manager_->GetCompiler()->GetCompilerOptions().IsBootImage()); | 
|  | 2253 | DCHECK(klass->IsVerified()); | 
|  | 2254 | DCHECK(!klass->IsInitialized()); | 
|  | 2255 |  | 
|  | 2256 | StackHandleScope<1> hs(Thread::Current()); | 
| Vladimir Marko | e11dd50 | 2017-12-08 14:09:45 +0000 | [diff] [blame] | 2257 | Handle<mirror::DexCache> dex_cache = hs.NewHandle(klass->GetDexCache()); | 
| Andreas Gampe | 3f1dcd3 | 2018-12-28 09:39:56 -0800 | [diff] [blame] | 2258 | const dex::ClassDef* class_def = klass->GetClassDef(); | 
| Andreas Gampe | 9e7078b | 2017-03-02 13:50:36 -0800 | [diff] [blame] | 2259 | ClassLinker* class_linker = manager_->GetClassLinker(); | 
|  | 2260 |  | 
| Andreas Gampe | 7bf9048 | 2017-03-02 16:41:35 -0800 | [diff] [blame] | 2261 | // Check encoded final field values for strings and intern. | 
| Vladimir Marko | e11dd50 | 2017-12-08 14:09:45 +0000 | [diff] [blame] | 2262 | annotations::RuntimeEncodedStaticFieldValueIterator value_it(dex_cache, | 
|  | 2263 | class_loader, | 
| Andreas Gampe | 9e7078b | 2017-03-02 13:50:36 -0800 | [diff] [blame] | 2264 | manager_->GetClassLinker(), | 
|  | 2265 | *class_def); | 
|  | 2266 | for ( ; value_it.HasNext(); value_it.Next()) { | 
|  | 2267 | if (value_it.GetValueType() == annotations::RuntimeEncodedStaticFieldValueIterator::kString) { | 
|  | 2268 | // Resolve the string. This will intern the string. | 
|  | 2269 | art::ObjPtr<mirror::String> resolved = class_linker->ResolveString( | 
| Vladimir Marko | a64b52d | 2017-12-08 16:27:49 +0000 | [diff] [blame] | 2270 | dex::StringIndex(value_it.GetJavaValue().i), dex_cache); | 
| Andreas Gampe | 9e7078b | 2017-03-02 13:50:36 -0800 | [diff] [blame] | 2271 | CHECK(resolved != nullptr); | 
|  | 2272 | } | 
|  | 2273 | } | 
| Andreas Gampe | 7bf9048 | 2017-03-02 16:41:35 -0800 | [diff] [blame] | 2274 |  | 
|  | 2275 | // Intern strings seen in <clinit>. | 
|  | 2276 | ArtMethod* clinit = klass->FindClassInitializer(class_linker->GetImagePointerSize()); | 
|  | 2277 | if (clinit != nullptr) { | 
| Mathieu Chartier | 73f21d4 | 2018-01-02 14:26:50 -0800 | [diff] [blame] | 2278 | for (const DexInstructionPcPair& inst : clinit->DexInstructions()) { | 
| Mathieu Chartier | 2b2bef2 | 2017-10-26 17:10:19 -0700 | [diff] [blame] | 2279 | if (inst->Opcode() == Instruction::CONST_STRING) { | 
| Andreas Gampe | 7bf9048 | 2017-03-02 16:41:35 -0800 | [diff] [blame] | 2280 | ObjPtr<mirror::String> s = class_linker->ResolveString( | 
| Vladimir Marko | a64b52d | 2017-12-08 16:27:49 +0000 | [diff] [blame] | 2281 | dex::StringIndex(inst->VRegB_21c()), dex_cache); | 
| Andreas Gampe | 7bf9048 | 2017-03-02 16:41:35 -0800 | [diff] [blame] | 2282 | CHECK(s != nullptr); | 
| Mathieu Chartier | 2b2bef2 | 2017-10-26 17:10:19 -0700 | [diff] [blame] | 2283 | } else if (inst->Opcode() == Instruction::CONST_STRING_JUMBO) { | 
| Andreas Gampe | 7bf9048 | 2017-03-02 16:41:35 -0800 | [diff] [blame] | 2284 | ObjPtr<mirror::String> s = class_linker->ResolveString( | 
| Vladimir Marko | a64b52d | 2017-12-08 16:27:49 +0000 | [diff] [blame] | 2285 | dex::StringIndex(inst->VRegB_31c()), dex_cache); | 
| Andreas Gampe | 7bf9048 | 2017-03-02 16:41:35 -0800 | [diff] [blame] | 2286 | CHECK(s != nullptr); | 
|  | 2287 | } | 
| Andreas Gampe | 7bf9048 | 2017-03-02 16:41:35 -0800 | [diff] [blame] | 2288 | } | 
|  | 2289 | } | 
| Andreas Gampe | 9e7078b | 2017-03-02 13:50:36 -0800 | [diff] [blame] | 2290 | } | 
|  | 2291 |  | 
| Mathieu Chartier | f1dd69a | 2017-06-08 23:30:15 +0000 | [diff] [blame] | 2292 | bool ResolveTypesOfMethods(Thread* self, ArtMethod* m) | 
|  | 2293 | REQUIRES_SHARED(Locks::mutator_lock_) { | 
| Vladimir Marko | b45528c | 2017-07-27 14:14:28 +0100 | [diff] [blame] | 2294 | // Return value of ResolveReturnType() is discarded because resolve will be done internally. | 
|  | 2295 | ObjPtr<mirror::Class> rtn_type = m->ResolveReturnType(); | 
| Mathieu Chartier | 7a8bcfd | 2017-06-13 13:40:43 -0700 | [diff] [blame] | 2296 | if (rtn_type == nullptr) { | 
|  | 2297 | self->ClearException(); | 
|  | 2298 | return false; | 
|  | 2299 | } | 
| Andreas Gampe | 3f1dcd3 | 2018-12-28 09:39:56 -0800 | [diff] [blame] | 2300 | const dex::TypeList* types = m->GetParameterTypeList(); | 
| Mathieu Chartier | 7a8bcfd | 2017-06-13 13:40:43 -0700 | [diff] [blame] | 2301 | if (types != nullptr) { | 
|  | 2302 | for (uint32_t i = 0; i < types->Size(); ++i) { | 
|  | 2303 | dex::TypeIndex param_type_idx = types->GetTypeItem(i).type_idx_; | 
| Vladimir Marko | b45528c | 2017-07-27 14:14:28 +0100 | [diff] [blame] | 2304 | ObjPtr<mirror::Class> param_type = m->ResolveClassFromTypeIndex(param_type_idx); | 
| Mathieu Chartier | 7a8bcfd | 2017-06-13 13:40:43 -0700 | [diff] [blame] | 2305 | if (param_type == nullptr) { | 
|  | 2306 | self->ClearException(); | 
|  | 2307 | return false; | 
| Mathieu Chartier | f1dd69a | 2017-06-08 23:30:15 +0000 | [diff] [blame] | 2308 | } | 
|  | 2309 | } | 
| Mathieu Chartier | 7a8bcfd | 2017-06-13 13:40:43 -0700 | [diff] [blame] | 2310 | } | 
|  | 2311 | return true; | 
| Mathieu Chartier | f1dd69a | 2017-06-08 23:30:15 +0000 | [diff] [blame] | 2312 | } | 
|  | 2313 |  | 
|  | 2314 | // Pre resolve types mentioned in all method signatures before start a transaction | 
|  | 2315 | // since ResolveType doesn't work in transaction mode. | 
|  | 2316 | bool PreResolveTypes(Thread* self, const Handle<mirror::Class>& klass) | 
|  | 2317 | REQUIRES_SHARED(Locks::mutator_lock_) { | 
| Mathieu Chartier | 7a8bcfd | 2017-06-13 13:40:43 -0700 | [diff] [blame] | 2318 | PointerSize pointer_size = manager_->GetClassLinker()->GetImagePointerSize(); | 
|  | 2319 | for (ArtMethod& m : klass->GetMethods(pointer_size)) { | 
|  | 2320 | if (!ResolveTypesOfMethods(self, &m)) { | 
|  | 2321 | return false; | 
|  | 2322 | } | 
|  | 2323 | } | 
|  | 2324 | if (klass->IsInterface()) { | 
|  | 2325 | return true; | 
|  | 2326 | } else if (klass->HasSuperClass()) { | 
|  | 2327 | StackHandleScope<1> hs(self); | 
|  | 2328 | MutableHandle<mirror::Class> super_klass(hs.NewHandle<mirror::Class>(klass->GetSuperClass())); | 
|  | 2329 | for (int i = super_klass->GetVTableLength() - 1; i >= 0; --i) { | 
|  | 2330 | ArtMethod* m = klass->GetVTableEntry(i, pointer_size); | 
|  | 2331 | ArtMethod* super_m = super_klass->GetVTableEntry(i, pointer_size); | 
|  | 2332 | if (!ResolveTypesOfMethods(self, m) || !ResolveTypesOfMethods(self, super_m)) { | 
| Mathieu Chartier | f1dd69a | 2017-06-08 23:30:15 +0000 | [diff] [blame] | 2333 | return false; | 
|  | 2334 | } | 
|  | 2335 | } | 
| Mathieu Chartier | 7a8bcfd | 2017-06-13 13:40:43 -0700 | [diff] [blame] | 2336 | for (int32_t i = 0; i < klass->GetIfTableCount(); ++i) { | 
|  | 2337 | super_klass.Assign(klass->GetIfTable()->GetInterface(i)); | 
|  | 2338 | if (klass->GetClassLoader() != super_klass->GetClassLoader()) { | 
|  | 2339 | uint32_t num_methods = super_klass->NumVirtualMethods(); | 
|  | 2340 | for (uint32_t j = 0; j < num_methods; ++j) { | 
|  | 2341 | ArtMethod* m = klass->GetIfTable()->GetMethodArray(i)->GetElementPtrSize<ArtMethod*>( | 
|  | 2342 | j, pointer_size); | 
|  | 2343 | ArtMethod* super_m = super_klass->GetVirtualMethod(j, pointer_size); | 
|  | 2344 | if (!ResolveTypesOfMethods(self, m) || !ResolveTypesOfMethods(self, super_m)) { | 
|  | 2345 | return false; | 
| Mathieu Chartier | f1dd69a | 2017-06-08 23:30:15 +0000 | [diff] [blame] | 2346 | } | 
|  | 2347 | } | 
|  | 2348 | } | 
|  | 2349 | } | 
| Mathieu Chartier | 7a8bcfd | 2017-06-13 13:40:43 -0700 | [diff] [blame] | 2350 | } | 
|  | 2351 | return true; | 
| Mathieu Chartier | f1dd69a | 2017-06-08 23:30:15 +0000 | [diff] [blame] | 2352 | } | 
|  | 2353 |  | 
|  | 2354 | // Initialize the klass's dependencies recursively before initializing itself. | 
|  | 2355 | // Checking for interfaces is also necessary since interfaces can contain | 
|  | 2356 | // both default methods and static encoded fields. | 
|  | 2357 | bool InitializeDependencies(const Handle<mirror::Class>& klass, | 
|  | 2358 | Handle<mirror::ClassLoader> class_loader, | 
|  | 2359 | Thread* self) | 
|  | 2360 | REQUIRES_SHARED(Locks::mutator_lock_) { | 
|  | 2361 | if (klass->HasSuperClass()) { | 
|  | 2362 | ObjPtr<mirror::Class> super_class = klass->GetSuperClass(); | 
|  | 2363 | StackHandleScope<1> hs(self); | 
|  | 2364 | Handle<mirror::Class> handle_scope_super(hs.NewHandle(super_class)); | 
|  | 2365 | if (!handle_scope_super->IsInitialized()) { | 
|  | 2366 | this->TryInitializeClass(handle_scope_super, class_loader); | 
|  | 2367 | if (!handle_scope_super->IsInitialized()) { | 
|  | 2368 | return false; | 
|  | 2369 | } | 
|  | 2370 | } | 
|  | 2371 | } | 
|  | 2372 |  | 
|  | 2373 | uint32_t num_if = klass->NumDirectInterfaces(); | 
|  | 2374 | for (size_t i = 0; i < num_if; i++) { | 
|  | 2375 | ObjPtr<mirror::Class> | 
|  | 2376 | interface = mirror::Class::GetDirectInterface(self, klass.Get(), i); | 
|  | 2377 | StackHandleScope<1> hs(self); | 
|  | 2378 | Handle<mirror::Class> handle_interface(hs.NewHandle(interface)); | 
|  | 2379 |  | 
|  | 2380 | TryInitializeClass(handle_interface, class_loader); | 
|  | 2381 |  | 
|  | 2382 | if (!handle_interface->IsInitialized()) { | 
|  | 2383 | return false; | 
|  | 2384 | } | 
|  | 2385 | } | 
|  | 2386 |  | 
|  | 2387 | return PreResolveTypes(self, klass); | 
|  | 2388 | } | 
|  | 2389 |  | 
|  | 2390 | // In this phase the classes containing class initializers are ignored. Make sure no | 
|  | 2391 | // clinit appears in kalss's super class chain and interfaces. | 
|  | 2392 | bool NoClinitInDependency(const Handle<mirror::Class>& klass, | 
|  | 2393 | Thread* self, | 
|  | 2394 | Handle<mirror::ClassLoader>* class_loader) | 
|  | 2395 | REQUIRES_SHARED(Locks::mutator_lock_) { | 
|  | 2396 | ArtMethod* clinit = | 
|  | 2397 | klass->FindClassInitializer(manager_->GetClassLinker()->GetImagePointerSize()); | 
|  | 2398 | if (clinit != nullptr) { | 
|  | 2399 | VLOG(compiler) << klass->PrettyClass() << ' ' << clinit->PrettyMethod(true); | 
|  | 2400 | return false; | 
|  | 2401 | } | 
|  | 2402 | if (klass->HasSuperClass()) { | 
|  | 2403 | ObjPtr<mirror::Class> super_class = klass->GetSuperClass(); | 
|  | 2404 | StackHandleScope<1> hs(self); | 
|  | 2405 | Handle<mirror::Class> handle_scope_super(hs.NewHandle(super_class)); | 
|  | 2406 | if (!NoClinitInDependency(handle_scope_super, self, class_loader)) { | 
|  | 2407 | return false; | 
|  | 2408 | } | 
|  | 2409 | } | 
|  | 2410 |  | 
|  | 2411 | uint32_t num_if = klass->NumDirectInterfaces(); | 
|  | 2412 | for (size_t i = 0; i < num_if; i++) { | 
|  | 2413 | ObjPtr<mirror::Class> | 
|  | 2414 | interface = mirror::Class::GetDirectInterface(self, klass.Get(), i); | 
|  | 2415 | StackHandleScope<1> hs(self); | 
|  | 2416 | Handle<mirror::Class> handle_interface(hs.NewHandle(interface)); | 
|  | 2417 | if (!NoClinitInDependency(handle_interface, self, class_loader)) { | 
|  | 2418 | return false; | 
|  | 2419 | } | 
|  | 2420 | } | 
|  | 2421 |  | 
| Chang Xing | ba17dbd | 2017-06-28 21:27:56 +0000 | [diff] [blame] | 2422 | return true; | 
| Mathieu Chartier | f1dd69a | 2017-06-08 23:30:15 +0000 | [diff] [blame] | 2423 | } | 
|  | 2424 |  | 
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 2425 | const ParallelCompilationManager* const manager_; | 
|  | 2426 | }; | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 2427 |  | 
| Andreas Gampe | ace0dc1 | 2016-01-20 13:33:13 -0800 | [diff] [blame] | 2428 | void CompilerDriver::InitializeClasses(jobject jni_class_loader, | 
|  | 2429 | const DexFile& dex_file, | 
| Andreas Gampe | de7b436 | 2014-07-28 18:38:57 -0700 | [diff] [blame] | 2430 | const std::vector<const DexFile*>& dex_files, | 
| Andreas Gampe | ace0dc1 | 2016-01-20 13:33:13 -0800 | [diff] [blame] | 2431 | TimingLogger* timings) { | 
| Mathieu Chartier | f5997b4 | 2014-06-20 10:37:54 -0700 | [diff] [blame] | 2432 | TimingLogger::ScopedTiming t("InitializeNoClinit", timings); | 
| Andreas Gampe | ace0dc1 | 2016-01-20 13:33:13 -0800 | [diff] [blame] | 2433 |  | 
|  | 2434 | // Initialization allocates objects and needs to run single-threaded to be deterministic. | 
|  | 2435 | bool force_determinism = GetCompilerOptions().IsForceDeterminism(); | 
|  | 2436 | ThreadPool* init_thread_pool = force_determinism | 
|  | 2437 | ? single_thread_pool_.get() | 
|  | 2438 | : parallel_thread_pool_.get(); | 
|  | 2439 | size_t init_thread_count = force_determinism ? 1U : parallel_thread_count_; | 
|  | 2440 |  | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 2441 | ClassLinker* class_linker = Runtime::Current()->GetClassLinker(); | 
| Andreas Gampe | de7b436 | 2014-07-28 18:38:57 -0700 | [diff] [blame] | 2442 | ParallelCompilationManager context(class_linker, jni_class_loader, this, &dex_file, dex_files, | 
| Andreas Gampe | ace0dc1 | 2016-01-20 13:33:13 -0800 | [diff] [blame] | 2443 | init_thread_pool); | 
| Mathieu Chartier | f1dd69a | 2017-06-08 23:30:15 +0000 | [diff] [blame] | 2444 |  | 
|  | 2445 | if (GetCompilerOptions().IsBootImage() || GetCompilerOptions().IsAppImage()) { | 
|  | 2446 | // Set the concurrency thread to 1 to support initialization for App Images since transaction | 
|  | 2447 | // doesn't support multithreading now. | 
| Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 2448 | // TODO: remove this when transactional mode supports multithreading. | 
| Andreas Gampe | ace0dc1 | 2016-01-20 13:33:13 -0800 | [diff] [blame] | 2449 | init_thread_count = 1U; | 
| Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 2450 | } | 
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 2451 | InitializeClassVisitor visitor(&context); | 
| Andreas Gampe | ace0dc1 | 2016-01-20 13:33:13 -0800 | [diff] [blame] | 2452 | context.ForAll(0, dex_file.NumClassDefs(), &visitor, init_thread_count); | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 2453 | } | 
|  | 2454 |  | 
| Mathieu Chartier | 91288d8 | 2016-04-28 09:44:54 -0700 | [diff] [blame] | 2455 | class InitializeArrayClassesAndCreateConflictTablesVisitor : public ClassVisitor { | 
| Mathieu Chartier | 085a072 | 2016-04-01 17:33:31 -0700 | [diff] [blame] | 2456 | public: | 
| Mathieu Chartier | 28357fa | 2016-10-18 16:27:40 -0700 | [diff] [blame] | 2457 | explicit InitializeArrayClassesAndCreateConflictTablesVisitor(VariableSizedHandleScope& hs) | 
|  | 2458 | : hs_(hs) {} | 
|  | 2459 |  | 
| Roland Levillain | f73caca | 2018-08-24 17:19:07 +0100 | [diff] [blame] | 2460 | bool operator()(ObjPtr<mirror::Class> klass) override | 
| Mathieu Chartier | 28357fa | 2016-10-18 16:27:40 -0700 | [diff] [blame] | 2461 | REQUIRES_SHARED(Locks::mutator_lock_) { | 
| Mathieu Chartier | 91288d8 | 2016-04-28 09:44:54 -0700 | [diff] [blame] | 2462 | if (Runtime::Current()->GetHeap()->ObjectIsInBootImageSpace(klass)) { | 
|  | 2463 | return true; | 
|  | 2464 | } | 
| Mathieu Chartier | 085a072 | 2016-04-01 17:33:31 -0700 | [diff] [blame] | 2465 | if (klass->IsArrayClass()) { | 
|  | 2466 | StackHandleScope<1> hs(Thread::Current()); | 
| Mathieu Chartier | 28357fa | 2016-10-18 16:27:40 -0700 | [diff] [blame] | 2467 | auto h_klass = hs.NewHandleWrapper(&klass); | 
|  | 2468 | Runtime::Current()->GetClassLinker()->EnsureInitialized(hs.Self(), h_klass, true, true); | 
| Mathieu Chartier | 085a072 | 2016-04-01 17:33:31 -0700 | [diff] [blame] | 2469 | } | 
| Mathieu Chartier | 28357fa | 2016-10-18 16:27:40 -0700 | [diff] [blame] | 2470 | // Collect handles since there may be thread suspension in future EnsureInitialized. | 
|  | 2471 | to_visit_.push_back(hs_.NewHandle(klass)); | 
| Nicolas Geoffray | 88f288e | 2016-06-29 08:17:52 +0000 | [diff] [blame] | 2472 | return true; | 
| Nelli Kim | badee98 | 2016-05-13 13:08:53 +0300 | [diff] [blame] | 2473 | } | 
| Artem Udovichenko | a62cb9b | 2016-06-30 09:18:25 +0000 | [diff] [blame] | 2474 |  | 
| Mathieu Chartier | 28357fa | 2016-10-18 16:27:40 -0700 | [diff] [blame] | 2475 | void FillAllIMTAndConflictTables() REQUIRES_SHARED(Locks::mutator_lock_) { | 
|  | 2476 | for (Handle<mirror::Class> c : to_visit_) { | 
|  | 2477 | // Create the conflict tables. | 
|  | 2478 | FillIMTAndConflictTables(c.Get()); | 
|  | 2479 | } | 
|  | 2480 | } | 
|  | 2481 |  | 
| Artem Udovichenko | a62cb9b | 2016-06-30 09:18:25 +0000 | [diff] [blame] | 2482 | private: | 
| Mathieu Chartier | 28357fa | 2016-10-18 16:27:40 -0700 | [diff] [blame] | 2483 | void FillIMTAndConflictTables(ObjPtr<mirror::Class> klass) | 
|  | 2484 | REQUIRES_SHARED(Locks::mutator_lock_) { | 
| Artem Udovichenko | a62cb9b | 2016-06-30 09:18:25 +0000 | [diff] [blame] | 2485 | if (!klass->ShouldHaveImt()) { | 
|  | 2486 | return; | 
|  | 2487 | } | 
|  | 2488 | if (visited_classes_.find(klass) != visited_classes_.end()) { | 
|  | 2489 | return; | 
|  | 2490 | } | 
|  | 2491 | if (klass->HasSuperClass()) { | 
|  | 2492 | FillIMTAndConflictTables(klass->GetSuperClass()); | 
|  | 2493 | } | 
|  | 2494 | if (!klass->IsTemp()) { | 
|  | 2495 | Runtime::Current()->GetClassLinker()->FillIMTAndConflictTables(klass); | 
|  | 2496 | } | 
|  | 2497 | visited_classes_.insert(klass); | 
|  | 2498 | } | 
|  | 2499 |  | 
| Mathieu Chartier | 28357fa | 2016-10-18 16:27:40 -0700 | [diff] [blame] | 2500 | VariableSizedHandleScope& hs_; | 
|  | 2501 | std::vector<Handle<mirror::Class>> to_visit_; | 
|  | 2502 | std::unordered_set<ObjPtr<mirror::Class>, HashObjPtr> visited_classes_; | 
| Mathieu Chartier | 085a072 | 2016-04-01 17:33:31 -0700 | [diff] [blame] | 2503 | }; | 
|  | 2504 |  | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 2505 | void CompilerDriver::InitializeClasses(jobject class_loader, | 
|  | 2506 | const std::vector<const DexFile*>& dex_files, | 
| Andreas Gampe | ace0dc1 | 2016-01-20 13:33:13 -0800 | [diff] [blame] | 2507 | TimingLogger* timings) { | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 2508 | for (size_t i = 0; i != dex_files.size(); ++i) { | 
|  | 2509 | const DexFile* dex_file = dex_files[i]; | 
| Andreas Gampe | 2ed8def | 2014-08-28 14:41:02 -0700 | [diff] [blame] | 2510 | CHECK(dex_file != nullptr); | 
| Andreas Gampe | ace0dc1 | 2016-01-20 13:33:13 -0800 | [diff] [blame] | 2511 | InitializeClasses(class_loader, *dex_file, dex_files, timings); | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 2512 | } | 
| Vladimir Marko | aad75c6 | 2016-10-03 08:46:48 +0000 | [diff] [blame] | 2513 | if (GetCompilerOptions().IsBootImage() || GetCompilerOptions().IsAppImage()) { | 
| Mathieu Chartier | 085a072 | 2016-04-01 17:33:31 -0700 | [diff] [blame] | 2514 | // Make sure that we call EnsureIntiailized on all the array classes to call | 
|  | 2515 | // SetVerificationAttempted so that the access flags are set. If we do not do this they get | 
|  | 2516 | // changed at runtime resulting in more dirty image pages. | 
| Mathieu Chartier | 91288d8 | 2016-04-28 09:44:54 -0700 | [diff] [blame] | 2517 | // Also create conflict tables. | 
| Vladimir Marko | 2afaff7 | 2018-11-30 17:01:50 +0000 | [diff] [blame] | 2518 | // Only useful if we are compiling an image. | 
| Mathieu Chartier | 085a072 | 2016-04-01 17:33:31 -0700 | [diff] [blame] | 2519 | ScopedObjectAccess soa(Thread::Current()); | 
| Mathieu Chartier | 28357fa | 2016-10-18 16:27:40 -0700 | [diff] [blame] | 2520 | VariableSizedHandleScope hs(soa.Self()); | 
|  | 2521 | InitializeArrayClassesAndCreateConflictTablesVisitor visitor(hs); | 
| Mathieu Chartier | 91288d8 | 2016-04-28 09:44:54 -0700 | [diff] [blame] | 2522 | Runtime::Current()->GetClassLinker()->VisitClassesWithoutClassesLock(&visitor); | 
| Mathieu Chartier | 28357fa | 2016-10-18 16:27:40 -0700 | [diff] [blame] | 2523 | visitor.FillAllIMTAndConflictTables(); | 
| Mathieu Chartier | 085a072 | 2016-04-01 17:33:31 -0700 | [diff] [blame] | 2524 | } | 
| Vladimir Marko | aad75c6 | 2016-10-03 08:46:48 +0000 | [diff] [blame] | 2525 | if (GetCompilerOptions().IsBootImage()) { | 
| Mathieu Chartier | 093ef21 | 2014-08-11 13:52:12 -0700 | [diff] [blame] | 2526 | // Prune garbage objects created during aborted transactions. | 
| Andreas Gampe | 3db7068 | 2018-12-26 15:12:03 -0800 | [diff] [blame] | 2527 | Runtime::Current()->GetHeap()->CollectGarbage(/* clear_soft_references= */ true); | 
| Mathieu Chartier | 093ef21 | 2014-08-11 13:52:12 -0700 | [diff] [blame] | 2528 | } | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 2529 | } | 
|  | 2530 |  | 
| Andreas Gampe | 3c060ad | 2018-01-22 13:07:49 -0800 | [diff] [blame] | 2531 | template <typename CompileFn> | 
|  | 2532 | static void CompileDexFile(CompilerDriver* driver, | 
|  | 2533 | jobject class_loader, | 
|  | 2534 | const DexFile& dex_file, | 
|  | 2535 | const std::vector<const DexFile*>& dex_files, | 
|  | 2536 | ThreadPool* thread_pool, | 
|  | 2537 | size_t thread_count, | 
|  | 2538 | TimingLogger* timings, | 
|  | 2539 | const char* timing_name, | 
|  | 2540 | CompileFn compile_fn) { | 
|  | 2541 | TimingLogger::ScopedTiming t(timing_name, timings); | 
|  | 2542 | ParallelCompilationManager context(Runtime::Current()->GetClassLinker(), | 
|  | 2543 | class_loader, | 
|  | 2544 | driver, | 
|  | 2545 | &dex_file, | 
|  | 2546 | dex_files, | 
|  | 2547 | thread_pool); | 
| Vladimir Marko | 492a7fa | 2016-06-01 18:38:43 +0100 | [diff] [blame] | 2548 |  | 
| Andreas Gampe | 3c060ad | 2018-01-22 13:07:49 -0800 | [diff] [blame] | 2549 | auto compile = [&context, &compile_fn](size_t class_def_index) { | 
| Andreas Gampe | 3c060ad | 2018-01-22 13:07:49 -0800 | [diff] [blame] | 2550 | const DexFile& dex_file = *context.GetDexFile(); | 
| Andreas Gampe | 3e7f66b | 2018-09-06 10:08:18 -0700 | [diff] [blame] | 2551 | SCOPED_TRACE << "compile " << dex_file.GetLocation() << "@" << class_def_index; | 
| Andreas Gampe | 3c060ad | 2018-01-22 13:07:49 -0800 | [diff] [blame] | 2552 | ClassLinker* class_linker = context.GetClassLinker(); | 
|  | 2553 | jobject jclass_loader = context.GetClassLoader(); | 
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 2554 | ClassReference ref(&dex_file, class_def_index); | 
| Andreas Gampe | 3f1dcd3 | 2018-12-28 09:39:56 -0800 | [diff] [blame] | 2555 | const dex::ClassDef& class_def = dex_file.GetClassDef(class_def_index); | 
| Mathieu Chartier | 18e2687 | 2018-06-04 17:19:02 -0700 | [diff] [blame] | 2556 | ClassAccessor accessor(dex_file, class_def_index); | 
| Vladimir Marko | 2afaff7 | 2018-11-30 17:01:50 +0000 | [diff] [blame] | 2557 | CompilerDriver* const driver = context.GetCompiler(); | 
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 2558 | // Skip compiling classes with generic verifier failures since they will still fail at runtime | 
| Vladimir Marko | 2afaff7 | 2018-11-30 17:01:50 +0000 | [diff] [blame] | 2559 | if (driver->GetCompilerOptions().GetVerificationResults()->IsClassRejected(ref)) { | 
| Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 2560 | return; | 
|  | 2561 | } | 
| Mathieu Chartier | 736b560 | 2015-09-02 14:54:11 -0700 | [diff] [blame] | 2562 | // Use a scoped object access to perform to the quick SkipClass check. | 
| Mathieu Chartier | 736b560 | 2015-09-02 14:54:11 -0700 | [diff] [blame] | 2563 | ScopedObjectAccess soa(Thread::Current()); | 
|  | 2564 | StackHandleScope<3> hs(soa.Self()); | 
|  | 2565 | Handle<mirror::ClassLoader> class_loader( | 
| Mathieu Chartier | 0795f23 | 2016-09-27 18:43:30 -0700 | [diff] [blame] | 2566 | hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader))); | 
| Mathieu Chartier | 736b560 | 2015-09-02 14:54:11 -0700 | [diff] [blame] | 2567 | Handle<mirror::Class> klass( | 
| Mathieu Chartier | c8c8d5f | 2018-05-22 11:56:14 -0700 | [diff] [blame] | 2568 | hs.NewHandle(class_linker->FindClass(soa.Self(), accessor.GetDescriptor(), class_loader))); | 
| Mathieu Chartier | 736b560 | 2015-09-02 14:54:11 -0700 | [diff] [blame] | 2569 | Handle<mirror::DexCache> dex_cache; | 
| Andreas Gampe | fa4333d | 2017-02-14 11:10:34 -0800 | [diff] [blame] | 2570 | if (klass == nullptr) { | 
| Mathieu Chartier | 736b560 | 2015-09-02 14:54:11 -0700 | [diff] [blame] | 2571 | soa.Self()->AssertPendingException(); | 
|  | 2572 | soa.Self()->ClearException(); | 
|  | 2573 | dex_cache = hs.NewHandle(class_linker->FindDexCache(soa.Self(), dex_file)); | 
|  | 2574 | } else if (SkipClass(jclass_loader, dex_file, klass.Get())) { | 
|  | 2575 | return; | 
| Andreas Gampe | bb30d5d | 2018-04-23 09:59:25 -0700 | [diff] [blame] | 2576 | } else if (&klass->GetDexFile() != &dex_file) { | 
|  | 2577 | // Skip a duplicate class (as the resolved class is from another, earlier dex file). | 
|  | 2578 | return;  // Do not update state. | 
| Mathieu Chartier | 736b560 | 2015-09-02 14:54:11 -0700 | [diff] [blame] | 2579 | } else { | 
|  | 2580 | dex_cache = hs.NewHandle(klass->GetDexCache()); | 
|  | 2581 | } | 
|  | 2582 |  | 
| Mathieu Chartier | c8c8d5f | 2018-05-22 11:56:14 -0700 | [diff] [blame] | 2583 | // Avoid suspension if there are no methods to compile. | 
|  | 2584 | if (accessor.NumDirectMethods() + accessor.NumVirtualMethods() == 0) { | 
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 2585 | return; | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 2586 | } | 
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 2587 |  | 
| Mathieu Chartier | 736b560 | 2015-09-02 14:54:11 -0700 | [diff] [blame] | 2588 | // Go to native so that we don't block GC during compilation. | 
| Mathieu Chartier | f1d666e | 2015-09-03 16:13:34 -0700 | [diff] [blame] | 2589 | ScopedThreadSuspension sts(soa.Self(), kNative); | 
| Mathieu Chartier | 736b560 | 2015-09-02 14:54:11 -0700 | [diff] [blame] | 2590 |  | 
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 2591 | // Can we run DEX-to-DEX compiler on this class ? | 
| Mathieu Chartier | a79efdb | 2018-01-18 16:31:01 -0800 | [diff] [blame] | 2592 | optimizer::DexToDexCompiler::CompilationLevel dex_to_dex_compilation_level = | 
| Mathieu Chartier | 736b560 | 2015-09-02 14:54:11 -0700 | [diff] [blame] | 2593 | GetDexToDexCompilationLevel(soa.Self(), *driver, jclass_loader, dex_file, class_def); | 
| Andreas Gampe | 5eb0d38 | 2015-07-23 01:19:26 -0700 | [diff] [blame] | 2594 |  | 
| Mathieu Chartier | b7c273c | 2017-11-10 18:07:56 -0800 | [diff] [blame] | 2595 | // Compile direct and virtual methods. | 
|  | 2596 | int64_t previous_method_idx = -1; | 
| Mathieu Chartier | 0d896bd | 2018-05-25 00:20:27 -0700 | [diff] [blame] | 2597 | for (const ClassAccessor::Method& method : accessor.GetMethods()) { | 
| Mathieu Chartier | c8c8d5f | 2018-05-22 11:56:14 -0700 | [diff] [blame] | 2598 | const uint32_t method_idx = method.GetIndex(); | 
| Mathieu Chartier | b7c273c | 2017-11-10 18:07:56 -0800 | [diff] [blame] | 2599 | if (method_idx == previous_method_idx) { | 
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 2600 | // smali can create dex files with two encoded_methods sharing the same method_idx | 
|  | 2601 | // http://code.google.com/p/smali/issues/detail?id=119 | 
| Mathieu Chartier | 0d896bd | 2018-05-25 00:20:27 -0700 | [diff] [blame] | 2602 | continue; | 
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 2603 | } | 
| Mathieu Chartier | b7c273c | 2017-11-10 18:07:56 -0800 | [diff] [blame] | 2604 | previous_method_idx = method_idx; | 
| Andreas Gampe | 3c060ad | 2018-01-22 13:07:49 -0800 | [diff] [blame] | 2605 | compile_fn(soa.Self(), | 
|  | 2606 | driver, | 
| Mathieu Chartier | c8c8d5f | 2018-05-22 11:56:14 -0700 | [diff] [blame] | 2607 | method.GetCodeItem(), | 
|  | 2608 | method.GetAccessFlags(), | 
|  | 2609 | method.GetInvokeType(class_def.access_flags_), | 
| Andreas Gampe | 3c060ad | 2018-01-22 13:07:49 -0800 | [diff] [blame] | 2610 | class_def_index, | 
|  | 2611 | method_idx, | 
|  | 2612 | class_loader, | 
|  | 2613 | dex_file, | 
|  | 2614 | dex_to_dex_compilation_level, | 
| Andreas Gampe | 3c060ad | 2018-01-22 13:07:49 -0800 | [diff] [blame] | 2615 | dex_cache); | 
| Mathieu Chartier | 0d896bd | 2018-05-25 00:20:27 -0700 | [diff] [blame] | 2616 | } | 
| Andreas Gampe | 3c060ad | 2018-01-22 13:07:49 -0800 | [diff] [blame] | 2617 | }; | 
|  | 2618 | context.ForAllLambda(0, dex_file.NumClassDefs(), compile, thread_count); | 
|  | 2619 | } | 
|  | 2620 |  | 
|  | 2621 | void CompilerDriver::Compile(jobject class_loader, | 
|  | 2622 | const std::vector<const DexFile*>& dex_files, | 
|  | 2623 | TimingLogger* timings) { | 
|  | 2624 | if (kDebugProfileGuidedCompilation) { | 
| Vladimir Marko | 1a2a5cd | 2018-11-07 15:39:48 +0000 | [diff] [blame] | 2625 | const ProfileCompilationInfo* profile_compilation_info = | 
|  | 2626 | GetCompilerOptions().GetProfileCompilationInfo(); | 
| Andreas Gampe | 3c060ad | 2018-01-22 13:07:49 -0800 | [diff] [blame] | 2627 | LOG(INFO) << "[ProfileGuidedCompilation] " << | 
| Vladimir Marko | 1a2a5cd | 2018-11-07 15:39:48 +0000 | [diff] [blame] | 2628 | ((profile_compilation_info == nullptr) | 
| Andreas Gampe | 3c060ad | 2018-01-22 13:07:49 -0800 | [diff] [blame] | 2629 | ? "null" | 
| Vladimir Marko | 1a2a5cd | 2018-11-07 15:39:48 +0000 | [diff] [blame] | 2630 | : profile_compilation_info->DumpInfo(dex_files)); | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 2631 | } | 
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 2632 |  | 
| Andreas Gampe | 3c060ad | 2018-01-22 13:07:49 -0800 | [diff] [blame] | 2633 | dex_to_dex_compiler_.ClearState(); | 
|  | 2634 | for (const DexFile* dex_file : dex_files) { | 
|  | 2635 | CHECK(dex_file != nullptr); | 
|  | 2636 | CompileDexFile(this, | 
|  | 2637 | class_loader, | 
|  | 2638 | *dex_file, | 
|  | 2639 | dex_files, | 
|  | 2640 | parallel_thread_pool_.get(), | 
|  | 2641 | parallel_thread_count_, | 
|  | 2642 | timings, | 
|  | 2643 | "Compile Dex File Quick", | 
|  | 2644 | CompileMethodQuick); | 
|  | 2645 | const ArenaPool* const arena_pool = Runtime::Current()->GetArenaPool(); | 
|  | 2646 | const size_t arena_alloc = arena_pool->GetBytesAllocated(); | 
|  | 2647 | max_arena_alloc_ = std::max(arena_alloc, max_arena_alloc_); | 
|  | 2648 | Runtime::Current()->ReclaimArenaPoolMemory(); | 
|  | 2649 | } | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 2650 |  | 
| Mathieu Chartier | 279e3a3 | 2018-01-24 18:17:55 -0800 | [diff] [blame] | 2651 | if (dex_to_dex_compiler_.NumCodeItemsToQuicken(Thread::Current()) > 0u) { | 
| Andreas Gampe | 3c060ad | 2018-01-22 13:07:49 -0800 | [diff] [blame] | 2652 | // TODO: Not visit all of the dex files, its probably rare that only one would have quickened | 
|  | 2653 | // methods though. | 
|  | 2654 | for (const DexFile* dex_file : dex_files) { | 
|  | 2655 | CompileDexFile(this, | 
|  | 2656 | class_loader, | 
|  | 2657 | *dex_file, | 
|  | 2658 | dex_files, | 
|  | 2659 | parallel_thread_pool_.get(), | 
|  | 2660 | parallel_thread_count_, | 
|  | 2661 | timings, | 
|  | 2662 | "Compile Dex File Dex2Dex", | 
|  | 2663 | CompileMethodDex2Dex); | 
|  | 2664 | } | 
|  | 2665 | dex_to_dex_compiler_.ClearState(); | 
|  | 2666 | } | 
|  | 2667 |  | 
|  | 2668 | VLOG(compiler) << "Compile: " << GetMemoryUsageString(false); | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 2669 | } | 
|  | 2670 |  | 
| Andreas Gampe | 5eb0d38 | 2015-07-23 01:19:26 -0700 | [diff] [blame] | 2671 | void CompilerDriver::AddCompiledMethod(const MethodReference& method_ref, | 
| Vladimir Marko | 8e524ad | 2018-07-13 10:27:43 +0100 | [diff] [blame] | 2672 | CompiledMethod* const compiled_method) { | 
| Mathieu Chartier | fc8b422 | 2017-09-17 13:44:24 -0700 | [diff] [blame] | 2673 | DCHECK(GetCompiledMethod(method_ref) == nullptr) << method_ref.PrettyMethod(); | 
|  | 2674 | MethodTable::InsertResult result = compiled_methods_.Insert(method_ref, | 
|  | 2675 | /*expected*/ nullptr, | 
|  | 2676 | compiled_method); | 
| Mathieu Chartier | acab8d4 | 2016-11-23 13:45:58 -0800 | [diff] [blame] | 2677 | CHECK(result == MethodTable::kInsertResultSuccess); | 
| Mathieu Chartier | fc8b422 | 2017-09-17 13:44:24 -0700 | [diff] [blame] | 2678 | DCHECK(GetCompiledMethod(method_ref) != nullptr) << method_ref.PrettyMethod(); | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 2679 | } | 
|  | 2680 |  | 
| Mathieu Chartier | 279e3a3 | 2018-01-24 18:17:55 -0800 | [diff] [blame] | 2681 | CompiledMethod* CompilerDriver::RemoveCompiledMethod(const MethodReference& method_ref) { | 
|  | 2682 | CompiledMethod* ret = nullptr; | 
|  | 2683 | CHECK(compiled_methods_.Remove(method_ref, &ret)); | 
|  | 2684 | return ret; | 
|  | 2685 | } | 
|  | 2686 |  | 
| Vladimir Marko | 2c64a83 | 2018-01-04 11:31:56 +0000 | [diff] [blame] | 2687 | bool CompilerDriver::GetCompiledClass(const ClassReference& ref, ClassStatus* status) const { | 
| Andreas Gampe | bb84610 | 2017-05-11 21:03:35 -0700 | [diff] [blame] | 2688 | DCHECK(status != nullptr); | 
| Mathieu Chartier | 1a088d4 | 2017-07-18 11:43:57 -0700 | [diff] [blame] | 2689 | // The table doesn't know if something wasn't inserted. For this case it will return | 
| Vladimir Marko | 2c64a83 | 2018-01-04 11:31:56 +0000 | [diff] [blame] | 2690 | // ClassStatus::kNotReady. To handle this, just assume anything we didn't try to verify | 
|  | 2691 | // is not compiled. | 
| Mathieu Chartier | fc8b422 | 2017-09-17 13:44:24 -0700 | [diff] [blame] | 2692 | if (!compiled_classes_.Get(ref, status) || | 
| Vladimir Marko | 2c64a83 | 2018-01-04 11:31:56 +0000 | [diff] [blame] | 2693 | *status < ClassStatus::kRetryVerificationAtRuntime) { | 
| Andreas Gampe | bb84610 | 2017-05-11 21:03:35 -0700 | [diff] [blame] | 2694 | return false; | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 2695 | } | 
| Andreas Gampe | bb84610 | 2017-05-11 21:03:35 -0700 | [diff] [blame] | 2696 | return true; | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 2697 | } | 
|  | 2698 |  | 
| Vladimir Marko | 2c64a83 | 2018-01-04 11:31:56 +0000 | [diff] [blame] | 2699 | ClassStatus CompilerDriver::GetClassStatus(const ClassReference& ref) const { | 
|  | 2700 | ClassStatus status = ClassStatus::kNotReady; | 
| Nicolas Geoffray | 486dda0 | 2017-09-11 14:15:52 +0100 | [diff] [blame] | 2701 | if (!GetCompiledClass(ref, &status)) { | 
| Mathieu Chartier | fc8b422 | 2017-09-17 13:44:24 -0700 | [diff] [blame] | 2702 | classpath_classes_.Get(ref, &status); | 
| Nicolas Geoffray | 486dda0 | 2017-09-11 14:15:52 +0100 | [diff] [blame] | 2703 | } | 
|  | 2704 | return status; | 
|  | 2705 | } | 
|  | 2706 |  | 
| Vladimir Marko | 2c64a83 | 2018-01-04 11:31:56 +0000 | [diff] [blame] | 2707 | void CompilerDriver::RecordClassStatus(const ClassReference& ref, ClassStatus status) { | 
| Nicolas Geoffray | ade72d6 | 2016-12-15 13:20:02 +0000 | [diff] [blame] | 2708 | switch (status) { | 
| Vladimir Marko | 2c64a83 | 2018-01-04 11:31:56 +0000 | [diff] [blame] | 2709 | case ClassStatus::kErrorResolved: | 
|  | 2710 | case ClassStatus::kErrorUnresolved: | 
|  | 2711 | case ClassStatus::kNotReady: | 
|  | 2712 | case ClassStatus::kResolved: | 
|  | 2713 | case ClassStatus::kRetryVerificationAtRuntime: | 
|  | 2714 | case ClassStatus::kVerified: | 
|  | 2715 | case ClassStatus::kSuperclassValidated: | 
|  | 2716 | case ClassStatus::kInitialized: | 
| Nicolas Geoffray | ade72d6 | 2016-12-15 13:20:02 +0000 | [diff] [blame] | 2717 | break;  // Expected states. | 
|  | 2718 | default: | 
|  | 2719 | LOG(FATAL) << "Unexpected class status for class " | 
| Mathieu Chartier | fc8b422 | 2017-09-17 13:44:24 -0700 | [diff] [blame] | 2720 | << PrettyDescriptor( | 
|  | 2721 | ref.dex_file->GetClassDescriptor(ref.dex_file->GetClassDef(ref.index))) | 
| Nicolas Geoffray | ade72d6 | 2016-12-15 13:20:02 +0000 | [diff] [blame] | 2722 | << " of " << status; | 
|  | 2723 | } | 
|  | 2724 |  | 
| Mathieu Chartier | 1a088d4 | 2017-07-18 11:43:57 -0700 | [diff] [blame] | 2725 | ClassStateTable::InsertResult result; | 
| Nicolas Geoffray | 486dda0 | 2017-09-11 14:15:52 +0100 | [diff] [blame] | 2726 | ClassStateTable* table = &compiled_classes_; | 
| Mathieu Chartier | 1a088d4 | 2017-07-18 11:43:57 -0700 | [diff] [blame] | 2727 | do { | 
| Vladimir Marko | 2c64a83 | 2018-01-04 11:31:56 +0000 | [diff] [blame] | 2728 | ClassStatus existing = ClassStatus::kNotReady; | 
| Mathieu Chartier | fc8b422 | 2017-09-17 13:44:24 -0700 | [diff] [blame] | 2729 | if (!table->Get(ref, &existing)) { | 
| Nicolas Geoffray | 486dda0 | 2017-09-11 14:15:52 +0100 | [diff] [blame] | 2730 | // A classpath class. | 
| Mathieu Chartier | 010f5cc | 2017-07-24 15:53:46 -0700 | [diff] [blame] | 2731 | if (kIsDebugBuild) { | 
|  | 2732 | // Check to make sure it's not a dex file for an oat file we are compiling since these | 
|  | 2733 | // should always succeed. These do not include classes in for used libraries. | 
| Vladimir Marko | 213ee2d | 2018-06-22 11:56:34 +0100 | [diff] [blame] | 2734 | for (const DexFile* dex_file : GetCompilerOptions().GetDexFilesForOatFile()) { | 
| Mathieu Chartier | fc8b422 | 2017-09-17 13:44:24 -0700 | [diff] [blame] | 2735 | CHECK_NE(ref.dex_file, dex_file) << ref.dex_file->GetLocation(); | 
| Mathieu Chartier | 010f5cc | 2017-07-24 15:53:46 -0700 | [diff] [blame] | 2736 | } | 
|  | 2737 | } | 
| Mathieu Chartier | fc8b422 | 2017-09-17 13:44:24 -0700 | [diff] [blame] | 2738 | if (!classpath_classes_.HaveDexFile(ref.dex_file)) { | 
| Nicolas Geoffray | 486dda0 | 2017-09-11 14:15:52 +0100 | [diff] [blame] | 2739 | // Boot classpath dex file. | 
|  | 2740 | return; | 
|  | 2741 | } | 
|  | 2742 | table = &classpath_classes_; | 
| Mathieu Chartier | fc8b422 | 2017-09-17 13:44:24 -0700 | [diff] [blame] | 2743 | table->Get(ref, &existing); | 
| Mathieu Chartier | 010f5cc | 2017-07-24 15:53:46 -0700 | [diff] [blame] | 2744 | } | 
| Mathieu Chartier | 1a088d4 | 2017-07-18 11:43:57 -0700 | [diff] [blame] | 2745 | if (existing >= status) { | 
|  | 2746 | // Existing status is already better than we expect, break. | 
|  | 2747 | break; | 
|  | 2748 | } | 
| Nicolas Geoffray | ade72d6 | 2016-12-15 13:20:02 +0000 | [diff] [blame] | 2749 | // Update the status if we now have a greater one. This happens with vdex, | 
|  | 2750 | // which records a class is verified, but does not resolve it. | 
| Mathieu Chartier | fc8b422 | 2017-09-17 13:44:24 -0700 | [diff] [blame] | 2751 | result = table->Insert(ref, existing, status); | 
|  | 2752 | CHECK(result != ClassStateTable::kInsertResultInvalidDexFile) << ref.dex_file->GetLocation(); | 
| Mathieu Chartier | 1a088d4 | 2017-07-18 11:43:57 -0700 | [diff] [blame] | 2753 | } while (result != ClassStateTable::kInsertResultSuccess); | 
| Ian Rogers | 8f3c9ae | 2013-08-20 17:26:41 -0700 | [diff] [blame] | 2754 | } | 
|  | 2755 |  | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 2756 | CompiledMethod* CompilerDriver::GetCompiledMethod(MethodReference ref) const { | 
| Mathieu Chartier | acab8d4 | 2016-11-23 13:45:58 -0800 | [diff] [blame] | 2757 | CompiledMethod* compiled_method = nullptr; | 
| Mathieu Chartier | fc8b422 | 2017-09-17 13:44:24 -0700 | [diff] [blame] | 2758 | compiled_methods_.Get(ref, &compiled_method); | 
| Mathieu Chartier | acab8d4 | 2016-11-23 13:45:58 -0800 | [diff] [blame] | 2759 | return compiled_method; | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 2760 | } | 
|  | 2761 |  | 
| Andreas Gampe | 8d295f8 | 2015-01-20 14:50:21 -0800 | [diff] [blame] | 2762 | std::string CompilerDriver::GetMemoryUsageString(bool extended) const { | 
| Mathieu Chartier | ab972ef | 2014-12-03 17:38:22 -0800 | [diff] [blame] | 2763 | std::ostringstream oss; | 
| Calin Juravle | 6915898 | 2016-03-16 11:53:41 +0000 | [diff] [blame] | 2764 | const gc::Heap* const heap = Runtime::Current()->GetHeap(); | 
| Anton Kirilov | dd9473b | 2016-01-28 15:08:01 +0000 | [diff] [blame] | 2765 | const size_t java_alloc = heap->GetBytesAllocated(); | 
| Calin Juravle | 6915898 | 2016-03-16 11:53:41 +0000 | [diff] [blame] | 2766 | oss << "arena alloc=" << PrettySize(max_arena_alloc_) << " (" << max_arena_alloc_ << "B)"; | 
| Anton Kirilov | dd9473b | 2016-01-28 15:08:01 +0000 | [diff] [blame] | 2767 | oss << " java alloc=" << PrettySize(java_alloc) << " (" << java_alloc << "B)"; | 
| Elliott Hughes | 7bf5a26 | 2015-04-02 20:55:07 -0700 | [diff] [blame] | 2768 | #if defined(__BIONIC__) || defined(__GLIBC__) | 
| Anton Kirilov | dd9473b | 2016-01-28 15:08:01 +0000 | [diff] [blame] | 2769 | const struct mallinfo info = mallinfo(); | 
| Mathieu Chartier | ab972ef | 2014-12-03 17:38:22 -0800 | [diff] [blame] | 2770 | const size_t allocated_space = static_cast<size_t>(info.uordblks); | 
|  | 2771 | const size_t free_space = static_cast<size_t>(info.fordblks); | 
| Anton Kirilov | dd9473b | 2016-01-28 15:08:01 +0000 | [diff] [blame] | 2772 | oss << " native alloc=" << PrettySize(allocated_space) << " (" << allocated_space << "B)" | 
|  | 2773 | << " free=" << PrettySize(free_space) << " (" << free_space << "B)"; | 
| Mathieu Chartier | ab972ef | 2014-12-03 17:38:22 -0800 | [diff] [blame] | 2774 | #endif | 
| Vladimir Marko | 35831e8 | 2015-09-11 11:59:18 +0100 | [diff] [blame] | 2775 | compiled_method_storage_.DumpMemoryUsage(oss, extended); | 
| Mathieu Chartier | ab972ef | 2014-12-03 17:38:22 -0800 | [diff] [blame] | 2776 | return oss.str(); | 
|  | 2777 | } | 
|  | 2778 |  | 
| Andreas Gampe | ace0dc1 | 2016-01-20 13:33:13 -0800 | [diff] [blame] | 2779 | void CompilerDriver::InitializeThreadPools() { | 
|  | 2780 | size_t parallel_count = parallel_thread_count_ > 0 ? parallel_thread_count_ - 1 : 0; | 
|  | 2781 | parallel_thread_pool_.reset( | 
|  | 2782 | new ThreadPool("Compiler driver thread pool", parallel_count)); | 
|  | 2783 | single_thread_pool_.reset(new ThreadPool("Single-threaded Compiler driver thread pool", 0)); | 
|  | 2784 | } | 
|  | 2785 |  | 
|  | 2786 | void CompilerDriver::FreeThreadPools() { | 
|  | 2787 | parallel_thread_pool_.reset(); | 
|  | 2788 | single_thread_pool_.reset(); | 
|  | 2789 | } | 
|  | 2790 |  | 
| Nicolas Geoffray | 486dda0 | 2017-09-11 14:15:52 +0100 | [diff] [blame] | 2791 | void CompilerDriver::SetClasspathDexFiles(const std::vector<const DexFile*>& dex_files) { | 
|  | 2792 | classpath_classes_.AddDexFiles(dex_files); | 
| Mathieu Chartier | 72041a0 | 2017-07-14 18:23:25 -0700 | [diff] [blame] | 2793 | } | 
|  | 2794 |  | 
| Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 2795 | }  // namespace art |