Elliott Hughes | 2faa5f1 | 2012-01-30 14:42:07 -0800 | [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 | */ |
Brian Carlstrom | 9ea1cb1 | 2011-08-24 23:18:18 -0700 | [diff] [blame] | 16 | |
| 17 | #include "compiler.h" |
| 18 | |
Elliott Hughes | d9c67be | 2012-02-02 19:54:06 -0800 | [diff] [blame] | 19 | #include <vector> |
| 20 | |
Elliott Hughes | b3bd5f0 | 2012-03-08 21:05:27 -0800 | [diff] [blame] | 21 | #include <dlfcn.h> |
Brian Carlstrom | 27ec961 | 2011-09-19 20:20:38 -0700 | [diff] [blame] | 22 | #include <sys/mman.h> |
Elliott Hughes | d9c67be | 2012-02-02 19:54:06 -0800 | [diff] [blame] | 23 | #include <unistd.h> |
Brian Carlstrom | 27ec961 | 2011-09-19 20:20:38 -0700 | [diff] [blame] | 24 | |
Brian Carlstrom | 9ea1cb1 | 2011-08-24 23:18:18 -0700 | [diff] [blame] | 25 | #include "class_linker.h" |
Brian Carlstrom | 1f87008 | 2011-08-23 16:02:11 -0700 | [diff] [blame] | 26 | #include "class_loader.h" |
Brian Carlstrom | 9ea1cb1 | 2011-08-24 23:18:18 -0700 | [diff] [blame] | 27 | #include "dex_cache.h" |
Brian Carlstrom | 9baa4ae | 2011-09-01 21:14:14 -0700 | [diff] [blame] | 28 | #include "jni_internal.h" |
Logan Chien | 4dd96f5 | 2012-02-29 01:26:58 +0800 | [diff] [blame] | 29 | #include "oat_compilation_unit.h" |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 30 | #include "oat_file.h" |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 31 | #include "object_utils.h" |
Brian Carlstrom | 1f87008 | 2011-08-23 16:02:11 -0700 | [diff] [blame] | 32 | #include "runtime.h" |
Elliott Hughes | b3bd5f0 | 2012-03-08 21:05:27 -0800 | [diff] [blame] | 33 | #include "space.h" |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 34 | #include "stl_util.h" |
Elliott Hughes | 601a123 | 2012-02-02 17:47:38 -0800 | [diff] [blame] | 35 | #include "timing_logger.h" |
Ian Rogers | 776ac1f | 2012-04-13 23:36:36 -0700 | [diff] [blame] | 36 | #include "verifier/method_verifier.h" |
Brian Carlstrom | 9ea1cb1 | 2011-08-24 23:18:18 -0700 | [diff] [blame] | 37 | |
Elliott Hughes | 059d5c1 | 2012-03-12 17:39:18 -0700 | [diff] [blame] | 38 | #if defined(__APPLE__) |
| 39 | #include <mach-o/dyld.h> |
| 40 | #endif |
| 41 | |
Brian Carlstrom | 9ea1cb1 | 2011-08-24 23:18:18 -0700 | [diff] [blame] | 42 | namespace art { |
| 43 | |
Shih-wei Liao | c486c11 | 2011-09-13 16:43:52 -0700 | [diff] [blame] | 44 | namespace arm { |
Ian Rogers | bdb0391 | 2011-09-14 00:55:44 -0700 | [diff] [blame] | 45 | ByteArray* CreateAbstractMethodErrorStub(); |
Ian Rogers | 1cb0a1d | 2011-10-06 15:24:35 -0700 | [diff] [blame] | 46 | ByteArray* ArmCreateResolutionTrampoline(Runtime::TrampolineType type); |
Elliott Hughes | 8add92d | 2012-01-18 18:18:43 -0800 | [diff] [blame] | 47 | ByteArray* CreateJniDlsymLookupStub(); |
Shih-wei Liao | c486c11 | 2011-09-13 16:43:52 -0700 | [diff] [blame] | 48 | } |
Shih-wei Liao | c486c11 | 2011-09-13 16:43:52 -0700 | [diff] [blame] | 49 | namespace x86 { |
Ian Rogers | bdb0391 | 2011-09-14 00:55:44 -0700 | [diff] [blame] | 50 | ByteArray* CreateAbstractMethodErrorStub(); |
Ian Rogers | 1cb0a1d | 2011-10-06 15:24:35 -0700 | [diff] [blame] | 51 | ByteArray* X86CreateResolutionTrampoline(Runtime::TrampolineType type); |
Elliott Hughes | 8add92d | 2012-01-18 18:18:43 -0800 | [diff] [blame] | 52 | ByteArray* CreateJniDlsymLookupStub(); |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 53 | } |
| 54 | |
Ian Rogers | 996cc58 | 2012-02-14 22:23:29 -0800 | [diff] [blame] | 55 | static double Percentage(size_t x, size_t y) { |
Elliott Hughes | 398f64b | 2012-03-26 18:05:48 -0700 | [diff] [blame] | 56 | return 100.0 * (static_cast<double>(x)) / (static_cast<double>(x + y)); |
Ian Rogers | 996cc58 | 2012-02-14 22:23:29 -0800 | [diff] [blame] | 57 | } |
| 58 | |
| 59 | static void DumpStat(size_t x, size_t y, const char* str) { |
| 60 | if (x == 0 && y == 0) { |
| 61 | return; |
| 62 | } |
| 63 | LOG(INFO) << Percentage(x, y) << "% of " << str << " for " << (x + y) << " cases"; |
| 64 | } |
| 65 | |
Ian Rogers | c8b306f | 2012-02-17 21:34:44 -0800 | [diff] [blame] | 66 | class AOTCompilationStats { |
| 67 | public: |
| 68 | AOTCompilationStats() : stats_lock_("AOT compilation statistics lock"), |
| 69 | types_in_dex_cache_(0), types_not_in_dex_cache_(0), |
| 70 | strings_in_dex_cache_(0), strings_not_in_dex_cache_(0), |
| 71 | resolved_types_(0), unresolved_types_(0), |
| 72 | resolved_instance_fields_(0), unresolved_instance_fields_(0), |
Ian Rogers | 2ed3b95 | 2012-03-17 11:49:39 -0700 | [diff] [blame] | 73 | resolved_local_static_fields_(0), resolved_static_fields_(0), unresolved_static_fields_(0) { |
| 74 | for (size_t i = 0; i <= kMaxInvokeType; i++) { |
Ian Rogers | c8b306f | 2012-02-17 21:34:44 -0800 | [diff] [blame] | 75 | resolved_methods_[i] = 0; |
| 76 | unresolved_methods_[i] = 0; |
Ian Rogers | 2ed3b95 | 2012-03-17 11:49:39 -0700 | [diff] [blame] | 77 | virtual_made_direct_[i] = 0; |
| 78 | direct_calls_to_boot_[i] = 0; |
| 79 | direct_methods_to_boot_[i] = 0; |
Elliott Hughes | b25c3f6 | 2012-03-26 16:35:06 -0700 | [diff] [blame] | 80 | } |
Ian Rogers | c8b306f | 2012-02-17 21:34:44 -0800 | [diff] [blame] | 81 | } |
| 82 | |
| 83 | void Dump() { |
| 84 | DumpStat(types_in_dex_cache_, types_not_in_dex_cache_, "types known to be in dex cache"); |
| 85 | DumpStat(strings_in_dex_cache_, strings_not_in_dex_cache_, "strings known to be in dex cache"); |
| 86 | DumpStat(resolved_types_, unresolved_types_, "types resolved"); |
| 87 | DumpStat(resolved_instance_fields_, unresolved_instance_fields_, "instance fields resolved"); |
| 88 | DumpStat(resolved_local_static_fields_ + resolved_static_fields_, unresolved_static_fields_, |
| 89 | "static fields resolved"); |
| 90 | DumpStat(resolved_local_static_fields_, resolved_static_fields_ + unresolved_static_fields_, |
| 91 | "static fields local to a class"); |
| 92 | |
Ian Rogers | 2ed3b95 | 2012-03-17 11:49:39 -0700 | [diff] [blame] | 93 | for (size_t i = 0; i <= kMaxInvokeType; i++) { |
Ian Rogers | c8b306f | 2012-02-17 21:34:44 -0800 | [diff] [blame] | 94 | std::ostringstream oss; |
Ian Rogers | 2ed3b95 | 2012-03-17 11:49:39 -0700 | [diff] [blame] | 95 | oss << static_cast<InvokeType>(i) << " methods were AOT resolved"; |
Ian Rogers | c8b306f | 2012-02-17 21:34:44 -0800 | [diff] [blame] | 96 | DumpStat(resolved_methods_[i], unresolved_methods_[i], oss.str().c_str()); |
Ian Rogers | 2ed3b95 | 2012-03-17 11:49:39 -0700 | [diff] [blame] | 97 | if (virtual_made_direct_[i] > 0) { |
| 98 | std::ostringstream oss2; |
| 99 | oss2 << static_cast<InvokeType>(i) << " methods made direct"; |
| 100 | DumpStat(virtual_made_direct_[i], |
| 101 | resolved_methods_[i] + unresolved_methods_[i] - virtual_made_direct_[i], |
| 102 | oss2.str().c_str()); |
| 103 | } |
| 104 | if (direct_calls_to_boot_[i] > 0) { |
| 105 | std::ostringstream oss2; |
| 106 | oss2 << static_cast<InvokeType>(i) << " method calls are direct into boot"; |
| 107 | DumpStat(direct_calls_to_boot_[i], |
| 108 | resolved_methods_[i] + unresolved_methods_[i] - direct_calls_to_boot_[i], |
| 109 | oss2.str().c_str()); |
| 110 | } |
| 111 | if (direct_methods_to_boot_[i] > 0) { |
| 112 | std::ostringstream oss2; |
| 113 | oss2 << static_cast<InvokeType>(i) << " method calls have methods in boot"; |
| 114 | DumpStat(direct_methods_to_boot_[i], |
| 115 | resolved_methods_[i] + unresolved_methods_[i] - direct_methods_to_boot_[i], |
| 116 | oss2.str().c_str()); |
| 117 | } |
Ian Rogers | c8b306f | 2012-02-17 21:34:44 -0800 | [diff] [blame] | 118 | } |
| 119 | } |
Ian Rogers | 996cc58 | 2012-02-14 22:23:29 -0800 | [diff] [blame] | 120 | |
| 121 | // Allow lossy statistics in non-debug builds |
| 122 | #ifndef NDEBUG |
| 123 | #define STATS_LOCK() MutexLock mu(stats_lock_) |
| 124 | #else |
| 125 | #define STATS_LOCK() |
| 126 | #endif |
| 127 | |
Ian Rogers | c8b306f | 2012-02-17 21:34:44 -0800 | [diff] [blame] | 128 | void TypeInDexCache() { |
| 129 | STATS_LOCK(); |
| 130 | types_in_dex_cache_++; |
Ian Rogers | 996cc58 | 2012-02-14 22:23:29 -0800 | [diff] [blame] | 131 | } |
Ian Rogers | 996cc58 | 2012-02-14 22:23:29 -0800 | [diff] [blame] | 132 | |
Ian Rogers | c8b306f | 2012-02-17 21:34:44 -0800 | [diff] [blame] | 133 | void TypeNotInDexCache() { |
| 134 | STATS_LOCK(); |
| 135 | types_not_in_dex_cache_++; |
Ian Rogers | 996cc58 | 2012-02-14 22:23:29 -0800 | [diff] [blame] | 136 | } |
Ian Rogers | c8b306f | 2012-02-17 21:34:44 -0800 | [diff] [blame] | 137 | |
| 138 | void StringInDexCache() { |
| 139 | STATS_LOCK(); |
| 140 | strings_in_dex_cache_++; |
| 141 | } |
| 142 | |
| 143 | void StringNotInDexCache() { |
| 144 | STATS_LOCK(); |
| 145 | strings_not_in_dex_cache_++; |
| 146 | } |
| 147 | |
| 148 | void TypeDoesntNeedAccessCheck() { |
| 149 | STATS_LOCK(); |
| 150 | resolved_types_++; |
| 151 | } |
| 152 | |
| 153 | void TypeNeedsAccessCheck() { |
| 154 | STATS_LOCK(); |
| 155 | unresolved_types_++; |
| 156 | } |
| 157 | |
| 158 | void ResolvedInstanceField() { |
| 159 | STATS_LOCK(); |
| 160 | resolved_instance_fields_++; |
| 161 | } |
| 162 | |
Elliott Hughes | b25c3f6 | 2012-03-26 16:35:06 -0700 | [diff] [blame] | 163 | void UnresolvedInstanceField() { |
Ian Rogers | c8b306f | 2012-02-17 21:34:44 -0800 | [diff] [blame] | 164 | STATS_LOCK(); |
| 165 | unresolved_instance_fields_++; |
| 166 | } |
| 167 | |
| 168 | void ResolvedLocalStaticField() { |
| 169 | STATS_LOCK(); |
| 170 | resolved_local_static_fields_++; |
| 171 | } |
| 172 | |
| 173 | void ResolvedStaticField() { |
| 174 | STATS_LOCK(); |
| 175 | resolved_static_fields_++; |
| 176 | } |
| 177 | |
| 178 | void UnresolvedStaticField() { |
| 179 | STATS_LOCK(); |
| 180 | unresolved_static_fields_++; |
| 181 | } |
| 182 | |
| 183 | void ResolvedMethod(InvokeType type) { |
| 184 | DCHECK_LE(type, kMaxInvokeType); |
| 185 | STATS_LOCK(); |
| 186 | resolved_methods_[type]++; |
| 187 | } |
| 188 | |
| 189 | void UnresolvedMethod(InvokeType type) { |
| 190 | DCHECK_LE(type, kMaxInvokeType); |
| 191 | STATS_LOCK(); |
| 192 | unresolved_methods_[type]++; |
| 193 | } |
| 194 | |
Ian Rogers | 2ed3b95 | 2012-03-17 11:49:39 -0700 | [diff] [blame] | 195 | void VirtualMadeDirect(InvokeType type) { |
| 196 | DCHECK_LE(type, kMaxInvokeType); |
Ian Rogers | fb6adba | 2012-03-04 21:51:51 -0800 | [diff] [blame] | 197 | STATS_LOCK(); |
Ian Rogers | 2ed3b95 | 2012-03-17 11:49:39 -0700 | [diff] [blame] | 198 | virtual_made_direct_[type]++; |
Ian Rogers | fb6adba | 2012-03-04 21:51:51 -0800 | [diff] [blame] | 199 | } |
Ian Rogers | 2ed3b95 | 2012-03-17 11:49:39 -0700 | [diff] [blame] | 200 | |
| 201 | void DirectCallsToBoot(InvokeType type) { |
| 202 | DCHECK_LE(type, kMaxInvokeType); |
| 203 | STATS_LOCK(); |
| 204 | direct_calls_to_boot_[type]++; |
| 205 | } |
| 206 | |
| 207 | void DirectMethodsToBoot(InvokeType type) { |
| 208 | DCHECK_LE(type, kMaxInvokeType); |
| 209 | STATS_LOCK(); |
| 210 | direct_methods_to_boot_[type]++; |
| 211 | } |
| 212 | |
Ian Rogers | c8b306f | 2012-02-17 21:34:44 -0800 | [diff] [blame] | 213 | private: |
| 214 | Mutex stats_lock_; |
| 215 | |
| 216 | size_t types_in_dex_cache_; |
| 217 | size_t types_not_in_dex_cache_; |
| 218 | |
| 219 | size_t strings_in_dex_cache_; |
| 220 | size_t strings_not_in_dex_cache_; |
| 221 | |
| 222 | size_t resolved_types_; |
| 223 | size_t unresolved_types_; |
| 224 | |
| 225 | size_t resolved_instance_fields_; |
| 226 | size_t unresolved_instance_fields_; |
| 227 | |
| 228 | size_t resolved_local_static_fields_; |
| 229 | size_t resolved_static_fields_; |
| 230 | size_t unresolved_static_fields_; |
| 231 | |
| 232 | size_t resolved_methods_[kMaxInvokeType + 1]; |
| 233 | size_t unresolved_methods_[kMaxInvokeType + 1]; |
Ian Rogers | 2ed3b95 | 2012-03-17 11:49:39 -0700 | [diff] [blame] | 234 | size_t virtual_made_direct_[kMaxInvokeType + 1]; |
| 235 | size_t direct_calls_to_boot_[kMaxInvokeType + 1]; |
| 236 | size_t direct_methods_to_boot_[kMaxInvokeType + 1]; |
Ian Rogers | c8b306f | 2012-02-17 21:34:44 -0800 | [diff] [blame] | 237 | |
Elliott Hughes | b25c3f6 | 2012-03-26 16:35:06 -0700 | [diff] [blame] | 238 | DISALLOW_COPY_AND_ASSIGN(AOTCompilationStats); |
Ian Rogers | c8b306f | 2012-02-17 21:34:44 -0800 | [diff] [blame] | 239 | }; |
Ian Rogers | 996cc58 | 2012-02-14 22:23:29 -0800 | [diff] [blame] | 240 | |
Elliott Hughes | b3bd5f0 | 2012-03-08 21:05:27 -0800 | [diff] [blame] | 241 | static std::string MakeCompilerSoName(InstructionSet instruction_set) { |
| 242 | // TODO: is the ARM/Thumb2 instruction set distinction really buying us anything, |
| 243 | // or just causing hassle like this? |
| 244 | if (instruction_set == kThumb2) { |
| 245 | instruction_set = kArm; |
| 246 | } |
| 247 | |
Elliott Hughes | 059d5c1 | 2012-03-12 17:39:18 -0700 | [diff] [blame] | 248 | // Capitalize the instruction set, because that's what we do in the build system. |
Elliott Hughes | b3bd5f0 | 2012-03-08 21:05:27 -0800 | [diff] [blame] | 249 | std::ostringstream instruction_set_name_os; |
| 250 | instruction_set_name_os << instruction_set; |
| 251 | std::string instruction_set_name(instruction_set_name_os.str()); |
| 252 | for (size_t i = 0; i < instruction_set_name.size(); ++i) { |
| 253 | instruction_set_name[i] = toupper(instruction_set_name[i]); |
| 254 | } |
Elliott Hughes | 059d5c1 | 2012-03-12 17:39:18 -0700 | [diff] [blame] | 255 | |
| 256 | // Bad things happen if we pull in the libartd-compiler to a libart dex2oat or vice versa, |
| 257 | // because we end up with both libart and libartd in the same address space! |
Elliott Hughes | 67d9200 | 2012-03-26 15:08:51 -0700 | [diff] [blame] | 258 | const char* suffix = (kIsDebugBuild ? "d" : ""); |
Elliott Hughes | 059d5c1 | 2012-03-12 17:39:18 -0700 | [diff] [blame] | 259 | |
| 260 | // Work out the filename for the compiler library. |
Shih-wei Liao | e94d9b2 | 2012-05-22 09:01:24 -0700 | [diff] [blame] | 261 | #if defined(ART_USE_LLVM_COMPILER) |
Shih-wei Liao | c4c9881 | 2012-03-10 21:55:51 -0800 | [diff] [blame] | 262 | std::string library_name(StringPrintf("art%s-compiler-llvm", suffix)); |
Shih-wei Liao | e94d9b2 | 2012-05-22 09:01:24 -0700 | [diff] [blame] | 263 | #elif defined(ART_USE_GREENLAND_COMPILER) |
| 264 | std::string library_name(StringPrintf("art%s-compiler-greenland", suffix)); |
| 265 | #else |
| 266 | std::string library_name(StringPrintf("art%s-compiler-%s", suffix, instruction_set_name.c_str())); |
Shih-wei Liao | c4c9881 | 2012-03-10 21:55:51 -0800 | [diff] [blame] | 267 | #endif |
Elliott Hughes | 059d5c1 | 2012-03-12 17:39:18 -0700 | [diff] [blame] | 268 | std::string filename(StringPrintf(OS_SHARED_LIB_FORMAT_STR, library_name.c_str())); |
| 269 | |
| 270 | #if defined(__APPLE__) |
| 271 | // On Linux, dex2oat will have been built with an RPATH of $ORIGIN/../lib, so dlopen(3) will find |
| 272 | // the .so by itself. On Mac OS, there isn't really an equivalent, so we have to manually do the |
| 273 | // same work. |
Elliott Hughes | 059d5c1 | 2012-03-12 17:39:18 -0700 | [diff] [blame] | 274 | uint32_t executable_path_length = 0; |
Elliott Hughes | 448e93c | 2012-03-28 22:30:06 -0700 | [diff] [blame] | 275 | _NSGetExecutablePath(NULL, &executable_path_length); |
| 276 | std::string path(executable_path_length, static_cast<char>(0)); |
| 277 | CHECK_EQ(_NSGetExecutablePath(&path[0], &executable_path_length), 0); |
Elliott Hughes | 059d5c1 | 2012-03-12 17:39:18 -0700 | [diff] [blame] | 278 | |
| 279 | // Strip the "/dex2oat". |
| 280 | size_t last_slash = path.find_last_of('/'); |
| 281 | CHECK_NE(last_slash, std::string::npos) << path; |
| 282 | path.resize(last_slash); |
| 283 | |
| 284 | // Strip the "/bin". |
| 285 | last_slash = path.find_last_of('/'); |
| 286 | path.resize(last_slash); |
| 287 | |
| 288 | filename = path + "/lib/" + filename; |
| 289 | #endif |
| 290 | return filename; |
Elliott Hughes | b3bd5f0 | 2012-03-08 21:05:27 -0800 | [diff] [blame] | 291 | } |
| 292 | |
Elliott Hughes | 46f060a | 2012-03-09 17:36:50 -0800 | [diff] [blame] | 293 | template<typename Fn> |
| 294 | static Fn FindFunction(const std::string& compiler_so_name, void* library, const char* name) { |
| 295 | Fn fn = reinterpret_cast<Fn>(dlsym(library, name)); |
| 296 | if (fn == NULL) { |
| 297 | LOG(FATAL) << "Couldn't find \"" << name << "\" in compiler library " << compiler_so_name << ": " << dlerror(); |
| 298 | } |
Elliott Hughes | 059d5c1 | 2012-03-12 17:39:18 -0700 | [diff] [blame] | 299 | VLOG(compiler) << "Found \"" << name << "\" at " << reinterpret_cast<void*>(fn); |
Elliott Hughes | 46f060a | 2012-03-09 17:36:50 -0800 | [diff] [blame] | 300 | return fn; |
| 301 | } |
| 302 | |
Elliott Hughes | 5523ee0 | 2012-02-03 18:18:34 -0800 | [diff] [blame] | 303 | Compiler::Compiler(InstructionSet instruction_set, bool image, size_t thread_count, |
Brian Carlstrom | ba0668e | 2012-03-26 13:14:07 -0700 | [diff] [blame] | 304 | bool support_debugging, const std::set<std::string>* image_classes, |
| 305 | bool dump_stats, bool dump_timings) |
Brian Carlstrom | aded5f7 | 2011-10-07 17:15:04 -0700 | [diff] [blame] | 306 | : instruction_set_(instruction_set), |
Elliott Hughes | c225caa | 2012-02-03 15:43:37 -0800 | [diff] [blame] | 307 | compiled_classes_lock_("compiled classes lock"), |
| 308 | compiled_methods_lock_("compiled method lock"), |
| 309 | compiled_invoke_stubs_lock_("compiled invoke stubs lock"), |
Logan Chien | 7a2a23a | 2012-06-06 11:01:00 +0800 | [diff] [blame^] | 310 | #if defined(ART_USE_LLVM_COMPILER) |
| 311 | compiled_proxy_stubs_lock_("compiled proxy stubs lock"), |
| 312 | #endif |
Brian Carlstrom | aded5f7 | 2011-10-07 17:15:04 -0700 | [diff] [blame] | 313 | image_(image), |
Elliott Hughes | 5523ee0 | 2012-02-03 18:18:34 -0800 | [diff] [blame] | 314 | thread_count_(thread_count), |
Elliott Hughes | de6e4cf | 2012-02-27 14:46:06 -0800 | [diff] [blame] | 315 | support_debugging_(support_debugging), |
Ian Rogers | c8b306f | 2012-02-17 21:34:44 -0800 | [diff] [blame] | 316 | stats_(new AOTCompilationStats), |
Brian Carlstrom | ba0668e | 2012-03-26 13:14:07 -0700 | [diff] [blame] | 317 | dump_stats_(dump_stats), |
| 318 | dump_timings_(dump_timings), |
Elliott Hughes | b3bd5f0 | 2012-03-08 21:05:27 -0800 | [diff] [blame] | 319 | image_classes_(image_classes), |
Elliott Hughes | b3bd5f0 | 2012-03-08 21:05:27 -0800 | [diff] [blame] | 320 | compiler_library_(NULL), |
Elliott Hughes | 46f060a | 2012-03-09 17:36:50 -0800 | [diff] [blame] | 321 | compiler_(NULL), |
Elliott Hughes | 6f4976c | 2012-03-13 21:19:01 -0700 | [diff] [blame] | 322 | compiler_context_(NULL), |
Elliott Hughes | 46f060a | 2012-03-09 17:36:50 -0800 | [diff] [blame] | 323 | jni_compiler_(NULL), |
Elliott Hughes | 5ddbe0b | 2012-06-01 12:58:24 -0700 | [diff] [blame] | 324 | #if !defined(ART_USE_LLVM_COMPILER) |
| 325 | create_invoke_stub_(NULL) { |
| 326 | #else |
| 327 | create_invoke_stub_(NULL), |
| 328 | compiler_enable_auto_elf_loading_(NULL), |
Logan Chien | f7015fd | 2012-03-18 01:19:37 +0800 | [diff] [blame] | 329 | compiler_get_method_code_addr_(NULL), |
Elliott Hughes | 5ddbe0b | 2012-06-01 12:58:24 -0700 | [diff] [blame] | 330 | compiler_get_method_invoke_stub_addr_(NULL) { |
Logan Chien | f7015fd | 2012-03-18 01:19:37 +0800 | [diff] [blame] | 331 | #endif |
Shih-wei Liao | c4c9881 | 2012-03-10 21:55:51 -0800 | [diff] [blame] | 332 | std::string compiler_so_name(MakeCompilerSoName(instruction_set_)); |
Elliott Hughes | b3bd5f0 | 2012-03-08 21:05:27 -0800 | [diff] [blame] | 333 | compiler_library_ = dlopen(compiler_so_name.c_str(), RTLD_LAZY); |
| 334 | if (compiler_library_ == NULL) { |
| 335 | LOG(FATAL) << "Couldn't find compiler library " << compiler_so_name << ": " << dlerror(); |
| 336 | } |
| 337 | VLOG(compiler) << "dlopen(\"" << compiler_so_name << "\", RTLD_LAZY) returned " << compiler_library_; |
| 338 | |
Shih-wei Liao | e94d9b2 | 2012-05-22 09:01:24 -0700 | [diff] [blame] | 339 | #if defined(ART_USE_LLVM_COMPILER) || defined(ART_USE_GREENLAND_COMPILER) |
Logan Chien | 106b2a0 | 2012-03-18 04:41:38 +0800 | [diff] [blame] | 340 | // Initialize compiler_context_ |
| 341 | typedef void (*InitCompilerContextFn)(Compiler&); |
| 342 | |
| 343 | InitCompilerContextFn init_compiler_context = |
| 344 | FindFunction<void (*)(Compiler&)>(compiler_so_name, |
| 345 | compiler_library_, |
| 346 | "ArtInitCompilerContext"); |
| 347 | |
| 348 | init_compiler_context(*this); |
| 349 | #endif |
| 350 | |
Elliott Hughes | 3fa1b7e | 2012-03-13 17:06:22 -0700 | [diff] [blame] | 351 | compiler_ = FindFunction<CompilerFn>(compiler_so_name, compiler_library_, "ArtCompileMethod"); |
Elliott Hughes | 46f060a | 2012-03-09 17:36:50 -0800 | [diff] [blame] | 352 | jni_compiler_ = FindFunction<JniCompilerFn>(compiler_so_name, compiler_library_, "ArtJniCompileMethod"); |
| 353 | create_invoke_stub_ = FindFunction<CreateInvokeStubFn>(compiler_so_name, compiler_library_, "ArtCreateInvokeStub"); |
Elliott Hughes | b3bd5f0 | 2012-03-08 21:05:27 -0800 | [diff] [blame] | 354 | |
Logan Chien | f7015fd | 2012-03-18 01:19:37 +0800 | [diff] [blame] | 355 | #if defined(ART_USE_LLVM_COMPILER) |
Logan Chien | 7a2a23a | 2012-06-06 11:01:00 +0800 | [diff] [blame^] | 356 | create_proxy_stub_ = FindFunction<CreateProxyStubFn>( |
| 357 | compiler_so_name, compiler_library_, "ArtCreateProxyStub"); |
Logan Chien | f7015fd | 2012-03-18 01:19:37 +0800 | [diff] [blame] | 358 | compiler_enable_auto_elf_loading_ = FindFunction<CompilerEnableAutoElfLoadingFn>( |
| 359 | compiler_so_name, compiler_library_, "compilerLLVMEnableAutoElfLoading"); |
| 360 | compiler_get_method_code_addr_ = FindFunction<CompilerGetMethodCodeAddrFn>( |
| 361 | compiler_so_name, compiler_library_, "compilerLLVMGetMethodCodeAddr"); |
| 362 | compiler_get_method_invoke_stub_addr_ = FindFunction<CompilerGetMethodInvokeStubAddrFn>( |
| 363 | compiler_so_name, compiler_library_, "compilerLLVMGetMethodInvokeStubAddr"); |
| 364 | #endif |
| 365 | |
Brian Carlstrom | 25c3325 | 2011-09-18 15:58:35 -0700 | [diff] [blame] | 366 | CHECK(!Runtime::Current()->IsStarted()); |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 367 | if (!image_) { |
| 368 | CHECK(image_classes_ == NULL); |
| 369 | } |
Shih-wei Liao | c486c11 | 2011-09-13 16:43:52 -0700 | [diff] [blame] | 370 | } |
| 371 | |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 372 | Compiler::~Compiler() { |
Elliott Hughes | c225caa | 2012-02-03 15:43:37 -0800 | [diff] [blame] | 373 | { |
| 374 | MutexLock mu(compiled_classes_lock_); |
| 375 | STLDeleteValues(&compiled_classes_); |
| 376 | } |
| 377 | { |
| 378 | MutexLock mu(compiled_methods_lock_); |
| 379 | STLDeleteValues(&compiled_methods_); |
| 380 | } |
| 381 | { |
| 382 | MutexLock mu(compiled_invoke_stubs_lock_); |
| 383 | STLDeleteValues(&compiled_invoke_stubs_); |
Elliott Hughes | bb551fa | 2012-01-25 16:35:29 -0800 | [diff] [blame] | 384 | } |
Brian Carlstrom | f582258 | 2012-03-19 22:34:31 -0700 | [diff] [blame] | 385 | { |
Logan Chien | 7a2a23a | 2012-06-06 11:01:00 +0800 | [diff] [blame^] | 386 | MutexLock mu(compiled_proxy_stubs_lock_); |
| 387 | STLDeleteValues(&compiled_proxy_stubs_); |
| 388 | } |
| 389 | { |
Brian Carlstrom | f582258 | 2012-03-19 22:34:31 -0700 | [diff] [blame] | 390 | MutexLock mu(compiled_methods_lock_); |
| 391 | STLDeleteElements(&code_to_patch_); |
| 392 | } |
| 393 | { |
| 394 | MutexLock mu(compiled_methods_lock_); |
| 395 | STLDeleteElements(&methods_to_patch_); |
| 396 | } |
Shih-wei Liao | c4c9881 | 2012-03-10 21:55:51 -0800 | [diff] [blame] | 397 | #if defined(ART_USE_LLVM_COMPILER) |
| 398 | CompilerCallbackFn f = FindFunction<CompilerCallbackFn>(MakeCompilerSoName(instruction_set_), |
| 399 | compiler_library_, |
| 400 | "compilerLLVMDispose"); |
| 401 | (*f)(*this); |
| 402 | #endif |
Elliott Hughes | b3bd5f0 | 2012-03-08 21:05:27 -0800 | [diff] [blame] | 403 | if (compiler_library_ != NULL) { |
| 404 | VLOG(compiler) << "dlclose(" << compiler_library_ << ")"; |
| 405 | dlclose(compiler_library_); |
| 406 | } |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 407 | } |
| 408 | |
Ian Rogers | 1cb0a1d | 2011-10-06 15:24:35 -0700 | [diff] [blame] | 409 | ByteArray* Compiler::CreateResolutionStub(InstructionSet instruction_set, |
| 410 | Runtime::TrampolineType type) { |
Ian Rogers | ad25ac5 | 2011-10-04 19:13:33 -0700 | [diff] [blame] | 411 | if (instruction_set == kX86) { |
Ian Rogers | 1cb0a1d | 2011-10-06 15:24:35 -0700 | [diff] [blame] | 412 | return x86::X86CreateResolutionTrampoline(type); |
Ian Rogers | ad25ac5 | 2011-10-04 19:13:33 -0700 | [diff] [blame] | 413 | } else { |
| 414 | CHECK(instruction_set == kArm || instruction_set == kThumb2); |
| 415 | // Generates resolution stub using ARM instruction set |
Ian Rogers | 1cb0a1d | 2011-10-06 15:24:35 -0700 | [diff] [blame] | 416 | return arm::ArmCreateResolutionTrampoline(type); |
Ian Rogers | ad25ac5 | 2011-10-04 19:13:33 -0700 | [diff] [blame] | 417 | } |
| 418 | } |
| 419 | |
Elliott Hughes | 8add92d | 2012-01-18 18:18:43 -0800 | [diff] [blame] | 420 | ByteArray* Compiler::CreateJniDlsymLookupStub(InstructionSet instruction_set) { |
Ian Rogers | 169c9a7 | 2011-11-13 20:13:17 -0800 | [diff] [blame] | 421 | switch (instruction_set) { |
| 422 | case kArm: |
| 423 | case kThumb2: |
Elliott Hughes | 8add92d | 2012-01-18 18:18:43 -0800 | [diff] [blame] | 424 | return arm::CreateJniDlsymLookupStub(); |
Ian Rogers | 169c9a7 | 2011-11-13 20:13:17 -0800 | [diff] [blame] | 425 | case kX86: |
Elliott Hughes | 8add92d | 2012-01-18 18:18:43 -0800 | [diff] [blame] | 426 | return x86::CreateJniDlsymLookupStub(); |
Ian Rogers | 169c9a7 | 2011-11-13 20:13:17 -0800 | [diff] [blame] | 427 | default: |
Ian Rogers | 49c4894 | 2012-03-11 15:15:37 -0700 | [diff] [blame] | 428 | LOG(FATAL) << "Unknown InstructionSet: " << instruction_set; |
Ian Rogers | 169c9a7 | 2011-11-13 20:13:17 -0800 | [diff] [blame] | 429 | return NULL; |
| 430 | } |
| 431 | } |
| 432 | |
Ian Rogers | ad25ac5 | 2011-10-04 19:13:33 -0700 | [diff] [blame] | 433 | ByteArray* Compiler::CreateAbstractMethodErrorStub(InstructionSet instruction_set) { |
| 434 | if (instruction_set == kX86) { |
| 435 | return x86::CreateAbstractMethodErrorStub(); |
| 436 | } else { |
| 437 | CHECK(instruction_set == kArm || instruction_set == kThumb2); |
| 438 | // Generates resolution stub using ARM instruction set |
| 439 | return arm::CreateAbstractMethodErrorStub(); |
| 440 | } |
| 441 | } |
| 442 | |
Jesse Wilson | 254db0f | 2011-11-16 16:44:11 -0500 | [diff] [blame] | 443 | void Compiler::CompileAll(const ClassLoader* class_loader, |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 444 | const std::vector<const DexFile*>& dex_files) { |
Brian Carlstrom | 25c3325 | 2011-09-18 15:58:35 -0700 | [diff] [blame] | 445 | DCHECK(!Runtime::Current()->IsStarted()); |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 446 | |
Elliott Hughes | 601a123 | 2012-02-02 17:47:38 -0800 | [diff] [blame] | 447 | TimingLogger timings("compiler"); |
| 448 | |
| 449 | PreCompile(class_loader, dex_files, timings); |
| 450 | |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 451 | Compile(class_loader, dex_files); |
Elliott Hughes | 601a123 | 2012-02-02 17:47:38 -0800 | [diff] [blame] | 452 | timings.AddSplit("Compile"); |
| 453 | |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 454 | PostCompile(class_loader, dex_files); |
Elliott Hughes | 601a123 | 2012-02-02 17:47:38 -0800 | [diff] [blame] | 455 | timings.AddSplit("PostCompile"); |
| 456 | |
Brian Carlstrom | ba0668e | 2012-03-26 13:14:07 -0700 | [diff] [blame] | 457 | if (dump_timings_ && timings.GetTotalNs() > MsToNs(1000)) { |
Elliott Hughes | 601a123 | 2012-02-02 17:47:38 -0800 | [diff] [blame] | 458 | timings.Dump(); |
| 459 | } |
Ian Rogers | 996cc58 | 2012-02-14 22:23:29 -0800 | [diff] [blame] | 460 | |
Brian Carlstrom | ba0668e | 2012-03-26 13:14:07 -0700 | [diff] [blame] | 461 | if (dump_stats_) { |
| 462 | stats_->Dump(); |
| 463 | } |
Brian Carlstrom | 8a48741 | 2011-08-29 20:08:52 -0700 | [diff] [blame] | 464 | } |
| 465 | |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 466 | void Compiler::CompileOne(const Method* method) { |
Brian Carlstrom | 25c3325 | 2011-09-18 15:58:35 -0700 | [diff] [blame] | 467 | DCHECK(!Runtime::Current()->IsStarted()); |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 468 | |
Brian Carlstrom | 8a48741 | 2011-08-29 20:08:52 -0700 | [diff] [blame] | 469 | const ClassLoader* class_loader = method->GetDeclaringClass()->GetClassLoader(); |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 470 | |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 471 | // Find the dex_file |
| 472 | const DexCache* dex_cache = method->GetDeclaringClass()->GetDexCache(); |
| 473 | const DexFile& dex_file = Runtime::Current()->GetClassLinker()->FindDexFile(dex_cache); |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 474 | std::vector<const DexFile*> dex_files; |
| 475 | dex_files.push_back(&dex_file); |
| 476 | |
Elliott Hughes | 601a123 | 2012-02-02 17:47:38 -0800 | [diff] [blame] | 477 | TimingLogger timings("CompileOne"); |
| 478 | PreCompile(class_loader, dex_files, timings); |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 479 | |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 480 | uint32_t method_idx = method->GetDexMethodIndex(); |
Ian Rogers | a3760aa | 2011-11-14 14:32:37 -0800 | [diff] [blame] | 481 | const DexFile::CodeItem* code_item = dex_file.GetCodeItem(method->GetCodeItemOffset()); |
| 482 | CompileMethod(code_item, method->GetAccessFlags(), method_idx, class_loader, dex_file); |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 483 | |
| 484 | PostCompile(class_loader, dex_files); |
Brian Carlstrom | 9ea1cb1 | 2011-08-24 23:18:18 -0700 | [diff] [blame] | 485 | } |
| 486 | |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 487 | void Compiler::Resolve(const ClassLoader* class_loader, |
Elliott Hughes | d9c67be | 2012-02-02 19:54:06 -0800 | [diff] [blame] | 488 | const std::vector<const DexFile*>& dex_files, TimingLogger& timings) { |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 489 | for (size_t i = 0; i != dex_files.size(); ++i) { |
| 490 | const DexFile* dex_file = dex_files[i]; |
Brian Carlstrom | 9ea1cb1 | 2011-08-24 23:18:18 -0700 | [diff] [blame] | 491 | CHECK(dex_file != NULL); |
Elliott Hughes | d9c67be | 2012-02-02 19:54:06 -0800 | [diff] [blame] | 492 | ResolveDexFile(class_loader, *dex_file, timings); |
Brian Carlstrom | 9ea1cb1 | 2011-08-24 23:18:18 -0700 | [diff] [blame] | 493 | } |
| 494 | } |
| 495 | |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 496 | void Compiler::PreCompile(const ClassLoader* class_loader, |
Elliott Hughes | 601a123 | 2012-02-02 17:47:38 -0800 | [diff] [blame] | 497 | const std::vector<const DexFile*>& dex_files, TimingLogger& timings) { |
Elliott Hughes | d9c67be | 2012-02-02 19:54:06 -0800 | [diff] [blame] | 498 | Resolve(class_loader, dex_files, timings); |
Elliott Hughes | 601a123 | 2012-02-02 17:47:38 -0800 | [diff] [blame] | 499 | |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 500 | Verify(class_loader, dex_files); |
Elliott Hughes | 601a123 | 2012-02-02 17:47:38 -0800 | [diff] [blame] | 501 | timings.AddSplit("PreCompile.Verify"); |
| 502 | |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 503 | InitializeClassesWithoutClinit(class_loader, dex_files); |
Elliott Hughes | 601a123 | 2012-02-02 17:47:38 -0800 | [diff] [blame] | 504 | timings.AddSplit("PreCompile.InitializeClassesWithoutClinit"); |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 505 | } |
| 506 | |
| 507 | void Compiler::PostCompile(const ClassLoader* class_loader, |
| 508 | const std::vector<const DexFile*>& dex_files) { |
Brian Carlstrom | e7d856b | 2012-01-11 18:10:55 -0800 | [diff] [blame] | 509 | SetGcMaps(class_loader, dex_files); |
Shih-wei Liao | d1fec81 | 2012-02-13 09:51:10 -0800 | [diff] [blame] | 510 | #if defined(ART_USE_LLVM_COMPILER) |
Shih-wei Liao | c4c9881 | 2012-03-10 21:55:51 -0800 | [diff] [blame] | 511 | CompilerCallbackFn f = FindFunction<CompilerCallbackFn>(MakeCompilerSoName(instruction_set_), |
| 512 | compiler_library_, |
| 513 | "compilerLLVMMaterializeRemainder"); |
| 514 | (*f)(*this); |
Shih-wei Liao | d1fec81 | 2012-02-13 09:51:10 -0800 | [diff] [blame] | 515 | #endif |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 516 | } |
| 517 | |
| 518 | bool Compiler::IsImageClass(const std::string& descriptor) const { |
| 519 | if (image_classes_ == NULL) { |
| 520 | return true; |
| 521 | } |
| 522 | return image_classes_->find(descriptor) != image_classes_->end(); |
| 523 | } |
| 524 | |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 525 | bool Compiler::CanAssumeTypeIsPresentInDexCache(const DexCache* dex_cache, |
Ian Rogers | 996cc58 | 2012-02-14 22:23:29 -0800 | [diff] [blame] | 526 | uint32_t type_idx) { |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 527 | if (!IsImage()) { |
Ian Rogers | c8b306f | 2012-02-17 21:34:44 -0800 | [diff] [blame] | 528 | stats_->TypeNotInDexCache(); |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 529 | return false; |
| 530 | } |
Ian Rogers | 1bddec3 | 2012-02-04 12:27:34 -0800 | [diff] [blame] | 531 | Class* resolved_class = dex_cache->GetResolvedType(type_idx); |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 532 | if (resolved_class == NULL) { |
Ian Rogers | c8b306f | 2012-02-17 21:34:44 -0800 | [diff] [blame] | 533 | stats_->TypeNotInDexCache(); |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 534 | return false; |
| 535 | } |
Ian Rogers | 996cc58 | 2012-02-14 22:23:29 -0800 | [diff] [blame] | 536 | bool result = IsImageClass(ClassHelper(resolved_class).GetDescriptor()); |
| 537 | if (result) { |
Ian Rogers | c8b306f | 2012-02-17 21:34:44 -0800 | [diff] [blame] | 538 | stats_->TypeInDexCache(); |
Ian Rogers | 996cc58 | 2012-02-14 22:23:29 -0800 | [diff] [blame] | 539 | } else { |
Ian Rogers | c8b306f | 2012-02-17 21:34:44 -0800 | [diff] [blame] | 540 | stats_->TypeNotInDexCache(); |
Ian Rogers | 996cc58 | 2012-02-14 22:23:29 -0800 | [diff] [blame] | 541 | } |
| 542 | return result; |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 543 | } |
| 544 | |
Ian Rogers | 1bddec3 | 2012-02-04 12:27:34 -0800 | [diff] [blame] | 545 | bool Compiler::CanAssumeStringIsPresentInDexCache(const DexCache* dex_cache, |
Ian Rogers | 996cc58 | 2012-02-14 22:23:29 -0800 | [diff] [blame] | 546 | uint32_t string_idx) { |
Ian Rogers | 1bddec3 | 2012-02-04 12:27:34 -0800 | [diff] [blame] | 547 | // TODO: Add support for loading strings referenced by image_classes_ |
| 548 | // See also Compiler::ResolveDexFile |
| 549 | |
| 550 | // The following is a test saying that if we're building the image without a restricted set of |
| 551 | // image classes then we can assume the string is present in the dex cache if it is there now |
Ian Rogers | 996cc58 | 2012-02-14 22:23:29 -0800 | [diff] [blame] | 552 | bool result = IsImage() && image_classes_ == NULL && dex_cache->GetResolvedString(string_idx) != NULL; |
| 553 | if (result) { |
Ian Rogers | c8b306f | 2012-02-17 21:34:44 -0800 | [diff] [blame] | 554 | stats_->StringInDexCache(); |
Ian Rogers | 996cc58 | 2012-02-14 22:23:29 -0800 | [diff] [blame] | 555 | } else { |
Ian Rogers | c8b306f | 2012-02-17 21:34:44 -0800 | [diff] [blame] | 556 | stats_->StringNotInDexCache(); |
Ian Rogers | 996cc58 | 2012-02-14 22:23:29 -0800 | [diff] [blame] | 557 | } |
| 558 | return result; |
Ian Rogers | 1bddec3 | 2012-02-04 12:27:34 -0800 | [diff] [blame] | 559 | } |
| 560 | |
| 561 | bool Compiler::CanAccessTypeWithoutChecks(uint32_t referrer_idx, const DexCache* dex_cache, |
Ian Rogers | 996cc58 | 2012-02-14 22:23:29 -0800 | [diff] [blame] | 562 | const DexFile& dex_file, uint32_t type_idx) { |
Ian Rogers | 1bddec3 | 2012-02-04 12:27:34 -0800 | [diff] [blame] | 563 | // Get type from dex cache assuming it was populated by the verifier |
| 564 | Class* resolved_class = dex_cache->GetResolvedType(type_idx); |
| 565 | if (resolved_class == NULL) { |
Ian Rogers | c8b306f | 2012-02-17 21:34:44 -0800 | [diff] [blame] | 566 | stats_->TypeNeedsAccessCheck(); |
Ian Rogers | 1bddec3 | 2012-02-04 12:27:34 -0800 | [diff] [blame] | 567 | return false; // Unknown class needs access checks. |
| 568 | } |
| 569 | const DexFile::MethodId& method_id = dex_file.GetMethodId(referrer_idx); |
| 570 | Class* referrer_class = dex_cache->GetResolvedType(method_id.class_idx_); |
| 571 | if (referrer_class == NULL) { |
Ian Rogers | c8b306f | 2012-02-17 21:34:44 -0800 | [diff] [blame] | 572 | stats_->TypeNeedsAccessCheck(); |
Ian Rogers | 1bddec3 | 2012-02-04 12:27:34 -0800 | [diff] [blame] | 573 | return false; // Incomplete referrer knowledge needs access check. |
| 574 | } |
| 575 | // Perform access check, will return true if access is ok or false if we're going to have to |
| 576 | // check this at runtime (for example for class loaders). |
Ian Rogers | 996cc58 | 2012-02-14 22:23:29 -0800 | [diff] [blame] | 577 | bool result = referrer_class->CanAccess(resolved_class); |
| 578 | if (result) { |
Ian Rogers | c8b306f | 2012-02-17 21:34:44 -0800 | [diff] [blame] | 579 | stats_->TypeDoesntNeedAccessCheck(); |
Ian Rogers | 996cc58 | 2012-02-14 22:23:29 -0800 | [diff] [blame] | 580 | } else { |
Ian Rogers | c8b306f | 2012-02-17 21:34:44 -0800 | [diff] [blame] | 581 | stats_->TypeNeedsAccessCheck(); |
Ian Rogers | 996cc58 | 2012-02-14 22:23:29 -0800 | [diff] [blame] | 582 | } |
| 583 | return result; |
Ian Rogers | 1bddec3 | 2012-02-04 12:27:34 -0800 | [diff] [blame] | 584 | } |
| 585 | |
| 586 | bool Compiler::CanAccessInstantiableTypeWithoutChecks(uint32_t referrer_idx, |
| 587 | const DexCache* dex_cache, |
| 588 | const DexFile& dex_file, |
Ian Rogers | 996cc58 | 2012-02-14 22:23:29 -0800 | [diff] [blame] | 589 | uint32_t type_idx) { |
Ian Rogers | 1bddec3 | 2012-02-04 12:27:34 -0800 | [diff] [blame] | 590 | // Get type from dex cache assuming it was populated by the verifier. |
| 591 | Class* resolved_class = dex_cache->GetResolvedType(type_idx); |
| 592 | if (resolved_class == NULL) { |
Ian Rogers | c8b306f | 2012-02-17 21:34:44 -0800 | [diff] [blame] | 593 | stats_->TypeNeedsAccessCheck(); |
Ian Rogers | 1bddec3 | 2012-02-04 12:27:34 -0800 | [diff] [blame] | 594 | return false; // Unknown class needs access checks. |
| 595 | } |
| 596 | const DexFile::MethodId& method_id = dex_file.GetMethodId(referrer_idx); |
| 597 | Class* referrer_class = dex_cache->GetResolvedType(method_id.class_idx_); |
| 598 | if (referrer_class == NULL) { |
Ian Rogers | c8b306f | 2012-02-17 21:34:44 -0800 | [diff] [blame] | 599 | stats_->TypeNeedsAccessCheck(); |
Ian Rogers | 1bddec3 | 2012-02-04 12:27:34 -0800 | [diff] [blame] | 600 | return false; // Incomplete referrer knowledge needs access check. |
| 601 | } |
| 602 | // Perform access and instantiable checks, will return true if access is ok or false if we're |
| 603 | // going to have to check this at runtime (for example for class loaders). |
Ian Rogers | 996cc58 | 2012-02-14 22:23:29 -0800 | [diff] [blame] | 604 | bool result = referrer_class->CanAccess(resolved_class) && resolved_class->IsInstantiable(); |
| 605 | if (result) { |
Ian Rogers | c8b306f | 2012-02-17 21:34:44 -0800 | [diff] [blame] | 606 | stats_->TypeDoesntNeedAccessCheck(); |
Ian Rogers | 996cc58 | 2012-02-14 22:23:29 -0800 | [diff] [blame] | 607 | } else { |
Ian Rogers | c8b306f | 2012-02-17 21:34:44 -0800 | [diff] [blame] | 608 | stats_->TypeNeedsAccessCheck(); |
Ian Rogers | 996cc58 | 2012-02-14 22:23:29 -0800 | [diff] [blame] | 609 | } |
| 610 | return result; |
Ian Rogers | 1bddec3 | 2012-02-04 12:27:34 -0800 | [diff] [blame] | 611 | } |
| 612 | |
Logan Chien | 4dd96f5 | 2012-02-29 01:26:58 +0800 | [diff] [blame] | 613 | static Class* ComputeReferrerClass(OatCompilationUnit* mUnit) { |
| 614 | const DexFile::MethodId& referrer_method_id = |
| 615 | mUnit->dex_file_->GetMethodId(mUnit->method_idx_); |
| 616 | |
| 617 | return mUnit->class_linker_->ResolveType( |
| 618 | *mUnit->dex_file_, referrer_method_id.class_idx_, |
| 619 | mUnit->dex_cache_, mUnit->class_loader_); |
Ian Rogers | a32a6fd | 2012-02-06 20:18:44 -0800 | [diff] [blame] | 620 | } |
| 621 | |
Logan Chien | 4dd96f5 | 2012-02-29 01:26:58 +0800 | [diff] [blame] | 622 | static Field* ComputeReferrerField(OatCompilationUnit* mUnit, uint32_t field_idx) { |
| 623 | return mUnit->class_linker_->ResolveField( |
| 624 | *mUnit->dex_file_, field_idx, mUnit->dex_cache_, |
| 625 | mUnit->class_loader_, false); |
Ian Rogers | a32a6fd | 2012-02-06 20:18:44 -0800 | [diff] [blame] | 626 | } |
| 627 | |
Logan Chien | 4dd96f5 | 2012-02-29 01:26:58 +0800 | [diff] [blame] | 628 | static Method* ComputeReferrerMethod(OatCompilationUnit* mUnit, uint32_t method_idx) { |
| 629 | return mUnit->class_linker_->ResolveMethod( |
| 630 | *mUnit->dex_file_, method_idx, mUnit->dex_cache_, |
| 631 | mUnit->class_loader_, true); |
Ian Rogers | a32a6fd | 2012-02-06 20:18:44 -0800 | [diff] [blame] | 632 | } |
| 633 | |
Logan Chien | 4dd96f5 | 2012-02-29 01:26:58 +0800 | [diff] [blame] | 634 | bool Compiler::ComputeInstanceFieldInfo(uint32_t field_idx, OatCompilationUnit* mUnit, |
jeffhao | 8cd6dda | 2012-02-22 10:15:34 -0800 | [diff] [blame] | 635 | int& field_offset, bool& is_volatile, bool is_put) { |
Ian Rogers | 1bddec3 | 2012-02-04 12:27:34 -0800 | [diff] [blame] | 636 | // Conservative defaults |
| 637 | field_offset = -1; |
| 638 | is_volatile = true; |
| 639 | // Try to resolve field |
Logan Chien | 4dd96f5 | 2012-02-29 01:26:58 +0800 | [diff] [blame] | 640 | Field* resolved_field = ComputeReferrerField(mUnit, field_idx); |
Ian Rogers | 1bddec3 | 2012-02-04 12:27:34 -0800 | [diff] [blame] | 641 | if (resolved_field != NULL) { |
Logan Chien | 4dd96f5 | 2012-02-29 01:26:58 +0800 | [diff] [blame] | 642 | Class* referrer_class = ComputeReferrerClass(mUnit); |
Ian Rogers | e2645d3 | 2012-04-11 14:42:42 -0700 | [diff] [blame] | 643 | if (referrer_class != NULL) { |
| 644 | Class* fields_class = resolved_field->GetDeclaringClass(); |
| 645 | bool access_ok = referrer_class->CanAccess(fields_class) && |
| 646 | referrer_class->CanAccessMember(fields_class, |
| 647 | resolved_field->GetAccessFlags()); |
| 648 | if (!access_ok) { |
| 649 | // The referring class can't access the resolved field, this may occur as a result of a |
| 650 | // protected field being made public by a sub-class. Resort to the dex file to determine |
| 651 | // the correct class for the access check. |
| 652 | const DexFile& dex_file = mUnit->class_linker_->FindDexFile(referrer_class->GetDexCache()); |
| 653 | Class* dex_fields_class = mUnit->class_linker_->ResolveType(dex_file, |
| 654 | dex_file.GetFieldId(field_idx).class_idx_, |
| 655 | referrer_class); |
| 656 | access_ok = referrer_class->CanAccess(dex_fields_class) && |
| 657 | referrer_class->CanAccessMember(dex_fields_class, |
| 658 | resolved_field->GetAccessFlags()); |
| 659 | } |
| 660 | bool is_write_to_final_from_wrong_class = is_put && resolved_field->IsFinal() && |
| 661 | fields_class != referrer_class; |
| 662 | if (access_ok && !is_write_to_final_from_wrong_class) { |
| 663 | field_offset = resolved_field->GetOffset().Int32Value(); |
| 664 | is_volatile = resolved_field->IsVolatile(); |
| 665 | stats_->ResolvedInstanceField(); |
| 666 | return true; // Fast path. |
| 667 | } |
Ian Rogers | 1bddec3 | 2012-02-04 12:27:34 -0800 | [diff] [blame] | 668 | } |
| 669 | } |
| 670 | // Clean up any exception left by field/type resolution |
| 671 | Thread* thread = Thread::Current(); |
| 672 | if (thread->IsExceptionPending()) { |
| 673 | thread->ClearException(); |
| 674 | } |
Ian Rogers | c8b306f | 2012-02-17 21:34:44 -0800 | [diff] [blame] | 675 | stats_->UnresolvedInstanceField(); |
Ian Rogers | 1bddec3 | 2012-02-04 12:27:34 -0800 | [diff] [blame] | 676 | return false; // Incomplete knowledge needs slow path. |
| 677 | } |
| 678 | |
Logan Chien | 4dd96f5 | 2012-02-29 01:26:58 +0800 | [diff] [blame] | 679 | bool Compiler::ComputeStaticFieldInfo(uint32_t field_idx, OatCompilationUnit* mUnit, |
Ian Rogers | 1bddec3 | 2012-02-04 12:27:34 -0800 | [diff] [blame] | 680 | int& field_offset, int& ssb_index, |
jeffhao | 8cd6dda | 2012-02-22 10:15:34 -0800 | [diff] [blame] | 681 | bool& is_referrers_class, bool& is_volatile, bool is_put) { |
Ian Rogers | 1bddec3 | 2012-02-04 12:27:34 -0800 | [diff] [blame] | 682 | // Conservative defaults |
| 683 | field_offset = -1; |
| 684 | ssb_index = -1; |
| 685 | is_referrers_class = false; |
| 686 | is_volatile = true; |
| 687 | // Try to resolve field |
Logan Chien | 4dd96f5 | 2012-02-29 01:26:58 +0800 | [diff] [blame] | 688 | Field* resolved_field = ComputeReferrerField(mUnit, field_idx); |
Ian Rogers | 1bddec3 | 2012-02-04 12:27:34 -0800 | [diff] [blame] | 689 | if (resolved_field != NULL) { |
Ian Rogers | a32a6fd | 2012-02-06 20:18:44 -0800 | [diff] [blame] | 690 | DCHECK(resolved_field->IsStatic()); |
Logan Chien | 4dd96f5 | 2012-02-29 01:26:58 +0800 | [diff] [blame] | 691 | Class* referrer_class = ComputeReferrerClass(mUnit); |
Ian Rogers | 1bddec3 | 2012-02-04 12:27:34 -0800 | [diff] [blame] | 692 | if (referrer_class != NULL) { |
jeffhao | 8cd6dda | 2012-02-22 10:15:34 -0800 | [diff] [blame] | 693 | Class* fields_class = resolved_field->GetDeclaringClass(); |
| 694 | if (fields_class == referrer_class) { |
Ian Rogers | 1bddec3 | 2012-02-04 12:27:34 -0800 | [diff] [blame] | 695 | is_referrers_class = true; // implies no worrying about class initialization |
| 696 | field_offset = resolved_field->GetOffset().Int32Value(); |
| 697 | is_volatile = resolved_field->IsVolatile(); |
Ian Rogers | c8b306f | 2012-02-17 21:34:44 -0800 | [diff] [blame] | 698 | stats_->ResolvedLocalStaticField(); |
Ian Rogers | 1bddec3 | 2012-02-04 12:27:34 -0800 | [diff] [blame] | 699 | return true; // fast path |
| 700 | } else { |
Ian Rogers | e2645d3 | 2012-04-11 14:42:42 -0700 | [diff] [blame] | 701 | bool access_ok = referrer_class->CanAccess(fields_class) && |
| 702 | referrer_class->CanAccessMember(fields_class, |
| 703 | resolved_field->GetAccessFlags()); |
| 704 | if (!access_ok) { |
| 705 | // The referring class can't access the resolved field, this may occur as a result of a |
| 706 | // protected field being made public by a sub-class. Resort to the dex file to determine |
| 707 | // the correct class for the access check. Don't change the field's class as that is |
| 708 | // used to identify the SSB. |
| 709 | const DexFile& dex_file = mUnit->class_linker_->FindDexFile(referrer_class->GetDexCache()); |
| 710 | Class* dex_fields_class = |
| 711 | mUnit->class_linker_->ResolveType(dex_file, |
| 712 | dex_file.GetFieldId(field_idx).class_idx_, |
| 713 | referrer_class); |
| 714 | access_ok = referrer_class->CanAccess(dex_fields_class) && |
| 715 | referrer_class->CanAccessMember(dex_fields_class, |
| 716 | resolved_field->GetAccessFlags()); |
| 717 | } |
jeffhao | 8cd6dda | 2012-02-22 10:15:34 -0800 | [diff] [blame] | 718 | bool is_write_to_final_from_wrong_class = is_put && resolved_field->IsFinal(); |
Ian Rogers | e2645d3 | 2012-04-11 14:42:42 -0700 | [diff] [blame] | 719 | if (access_ok && !is_write_to_final_from_wrong_class) { |
Ian Rogers | 1bddec3 | 2012-02-04 12:27:34 -0800 | [diff] [blame] | 720 | // We have the resolved field, we must make it into a ssbIndex for the referrer |
| 721 | // in its static storage base (which may fail if it doesn't have a slot for it) |
Ian Rogers | 4103ad2 | 2012-02-06 09:18:25 -0800 | [diff] [blame] | 722 | // TODO: for images we can elide the static storage base null check |
| 723 | // if we know there's a non-null entry in the image |
Logan Chien | 4dd96f5 | 2012-02-29 01:26:58 +0800 | [diff] [blame] | 724 | if (fields_class->GetDexCache() == mUnit->dex_cache_) { |
Ian Rogers | 4103ad2 | 2012-02-06 09:18:25 -0800 | [diff] [blame] | 725 | // common case where the dex cache of both the referrer and the field are the same, |
| 726 | // no need to search the dex file |
| 727 | ssb_index = fields_class->GetDexTypeIndex(); |
| 728 | field_offset = resolved_field->GetOffset().Int32Value(); |
| 729 | is_volatile = resolved_field->IsVolatile(); |
Ian Rogers | c8b306f | 2012-02-17 21:34:44 -0800 | [diff] [blame] | 730 | stats_->ResolvedStaticField(); |
Ian Rogers | 4103ad2 | 2012-02-06 09:18:25 -0800 | [diff] [blame] | 731 | return true; |
| 732 | } |
Ian Rogers | e2645d3 | 2012-04-11 14:42:42 -0700 | [diff] [blame] | 733 | // Search dex file for localized ssb index, may fail if field's class is a parent |
| 734 | // of the class mentioned in the dex file and there is no dex cache entry. |
Ian Rogers | 1bddec3 | 2012-02-04 12:27:34 -0800 | [diff] [blame] | 735 | std::string descriptor(FieldHelper(resolved_field).GetDeclaringClassDescriptor()); |
| 736 | const DexFile::StringId* string_id = |
Logan Chien | 4dd96f5 | 2012-02-29 01:26:58 +0800 | [diff] [blame] | 737 | mUnit->dex_file_->FindStringId(descriptor); |
Ian Rogers | 1bddec3 | 2012-02-04 12:27:34 -0800 | [diff] [blame] | 738 | if (string_id != NULL) { |
| 739 | const DexFile::TypeId* type_id = |
Logan Chien | 4dd96f5 | 2012-02-29 01:26:58 +0800 | [diff] [blame] | 740 | mUnit->dex_file_->FindTypeId(mUnit->dex_file_->GetIndexForStringId(*string_id)); |
Elliott Hughes | b25c3f6 | 2012-03-26 16:35:06 -0700 | [diff] [blame] | 741 | if (type_id != NULL) { |
Ian Rogers | 1bddec3 | 2012-02-04 12:27:34 -0800 | [diff] [blame] | 742 | // medium path, needs check of static storage base being initialized |
Logan Chien | 4dd96f5 | 2012-02-29 01:26:58 +0800 | [diff] [blame] | 743 | ssb_index = mUnit->dex_file_->GetIndexForTypeId(*type_id); |
Ian Rogers | 1bddec3 | 2012-02-04 12:27:34 -0800 | [diff] [blame] | 744 | field_offset = resolved_field->GetOffset().Int32Value(); |
| 745 | is_volatile = resolved_field->IsVolatile(); |
Ian Rogers | c8b306f | 2012-02-17 21:34:44 -0800 | [diff] [blame] | 746 | stats_->ResolvedStaticField(); |
Ian Rogers | 1bddec3 | 2012-02-04 12:27:34 -0800 | [diff] [blame] | 747 | return true; |
| 748 | } |
| 749 | } |
| 750 | } |
| 751 | } |
| 752 | } |
| 753 | } |
| 754 | // Clean up any exception left by field/type resolution |
| 755 | Thread* thread = Thread::Current(); |
| 756 | if (thread->IsExceptionPending()) { |
| 757 | thread->ClearException(); |
| 758 | } |
Ian Rogers | c8b306f | 2012-02-17 21:34:44 -0800 | [diff] [blame] | 759 | stats_->UnresolvedStaticField(); |
Ian Rogers | 1bddec3 | 2012-02-04 12:27:34 -0800 | [diff] [blame] | 760 | return false; // Incomplete knowledge needs slow path. |
| 761 | } |
| 762 | |
Ian Rogers | 2ed3b95 | 2012-03-17 11:49:39 -0700 | [diff] [blame] | 763 | void Compiler::GetCodeAndMethodForDirectCall(InvokeType type, InvokeType sharp_type, Method* method, |
| 764 | uintptr_t& direct_code, uintptr_t& direct_method) { |
| 765 | direct_code = 0; |
| 766 | direct_method = 0; |
| 767 | if (sharp_type != kStatic && sharp_type != kDirect) { |
| 768 | return; |
| 769 | } |
Ian Rogers | 2ed3b95 | 2012-03-17 11:49:39 -0700 | [diff] [blame] | 770 | bool method_code_in_boot = method->GetDeclaringClass()->GetClassLoader() == NULL; |
| 771 | if (!method_code_in_boot) { |
| 772 | return; |
| 773 | } |
| 774 | bool has_clinit_trampoline = method->IsStatic() && !method->GetDeclaringClass()->IsInitialized(); |
| 775 | if (has_clinit_trampoline) { |
| 776 | return; |
| 777 | } |
| 778 | stats_->DirectCallsToBoot(type); |
| 779 | stats_->DirectMethodsToBoot(type); |
Ian Rogers | 3fa1379 | 2012-03-18 15:53:45 -0700 | [diff] [blame] | 780 | bool compiling_boot = Runtime::Current()->GetHeap()->GetSpaces().size() == 1; |
| 781 | if (compiling_boot) { |
Brian Carlstrom | 0637e27 | 2012-03-20 01:07:52 -0700 | [diff] [blame] | 782 | const bool kSupportBootImageFixup = true; |
Ian Rogers | 3fa1379 | 2012-03-18 15:53:45 -0700 | [diff] [blame] | 783 | if (kSupportBootImageFixup) { |
| 784 | MethodHelper mh(method); |
| 785 | if (IsImageClass(mh.GetDeclaringClassDescriptor())) { |
Brian Carlstrom | 0637e27 | 2012-03-20 01:07:52 -0700 | [diff] [blame] | 786 | // We can only branch directly to Methods that are resolved in the DexCache. |
| 787 | // Otherwise we won't invoke the resolution trampoline. |
Ian Rogers | 3fa1379 | 2012-03-18 15:53:45 -0700 | [diff] [blame] | 788 | direct_method = -1; |
Brian Carlstrom | 0637e27 | 2012-03-20 01:07:52 -0700 | [diff] [blame] | 789 | direct_code = -1; |
Ian Rogers | 3fa1379 | 2012-03-18 15:53:45 -0700 | [diff] [blame] | 790 | } |
Ian Rogers | 3fa1379 | 2012-03-18 15:53:45 -0700 | [diff] [blame] | 791 | } |
| 792 | } else { |
| 793 | if (Runtime::Current()->GetHeap()->GetImageSpace()->Contains(method)) { |
| 794 | direct_method = reinterpret_cast<uintptr_t>(method); |
| 795 | } |
| 796 | direct_code = reinterpret_cast<uintptr_t>(method->GetCode()); |
Ian Rogers | 2ed3b95 | 2012-03-17 11:49:39 -0700 | [diff] [blame] | 797 | } |
Ian Rogers | 2ed3b95 | 2012-03-17 11:49:39 -0700 | [diff] [blame] | 798 | } |
| 799 | |
Ian Rogers | fb6adba | 2012-03-04 21:51:51 -0800 | [diff] [blame] | 800 | bool Compiler::ComputeInvokeInfo(uint32_t method_idx, OatCompilationUnit* mUnit, InvokeType& type, |
Ian Rogers | 2ed3b95 | 2012-03-17 11:49:39 -0700 | [diff] [blame] | 801 | int& vtable_idx, uintptr_t& direct_code, |
| 802 | uintptr_t& direct_method) { |
Ian Rogers | a32a6fd | 2012-02-06 20:18:44 -0800 | [diff] [blame] | 803 | vtable_idx = -1; |
Ian Rogers | 2ed3b95 | 2012-03-17 11:49:39 -0700 | [diff] [blame] | 804 | direct_code = 0; |
| 805 | direct_method = 0; |
Logan Chien | 4dd96f5 | 2012-02-29 01:26:58 +0800 | [diff] [blame] | 806 | Method* resolved_method = ComputeReferrerMethod(mUnit, method_idx); |
Ian Rogers | a32a6fd | 2012-02-06 20:18:44 -0800 | [diff] [blame] | 807 | if (resolved_method != NULL) { |
Logan Chien | 4dd96f5 | 2012-02-29 01:26:58 +0800 | [diff] [blame] | 808 | Class* referrer_class = ComputeReferrerClass(mUnit); |
Ian Rogers | a32a6fd | 2012-02-06 20:18:44 -0800 | [diff] [blame] | 809 | if (referrer_class != NULL) { |
| 810 | Class* methods_class = resolved_method->GetDeclaringClass(); |
| 811 | if (!referrer_class->CanAccess(methods_class) || |
| 812 | !referrer_class->CanAccessMember(methods_class, |
Ian Rogers | 996cc58 | 2012-02-14 22:23:29 -0800 | [diff] [blame] | 813 | resolved_method->GetAccessFlags())) { |
Ian Rogers | a32a6fd | 2012-02-06 20:18:44 -0800 | [diff] [blame] | 814 | // The referring class can't access the resolved method, this may occur as a result of a |
| 815 | // protected method being made public by implementing an interface that re-declares the |
| 816 | // method public. Resort to the dex file to determine the correct class for the access check |
Logan Chien | 4dd96f5 | 2012-02-29 01:26:58 +0800 | [diff] [blame] | 817 | const DexFile& dex_file = mUnit->class_linker_->FindDexFile(referrer_class->GetDexCache()); |
Ian Rogers | a32a6fd | 2012-02-06 20:18:44 -0800 | [diff] [blame] | 818 | methods_class = |
Logan Chien | 4dd96f5 | 2012-02-29 01:26:58 +0800 | [diff] [blame] | 819 | mUnit->class_linker_->ResolveType(dex_file, |
| 820 | dex_file.GetMethodId(method_idx).class_idx_, |
| 821 | referrer_class); |
Ian Rogers | a32a6fd | 2012-02-06 20:18:44 -0800 | [diff] [blame] | 822 | } |
| 823 | if (referrer_class->CanAccess(methods_class) && |
| 824 | referrer_class->CanAccessMember(methods_class, |
| 825 | resolved_method->GetAccessFlags())) { |
| 826 | vtable_idx = resolved_method->GetMethodIndex(); |
Ian Rogers | f320b63 | 2012-03-13 18:47:47 -0700 | [diff] [blame] | 827 | const bool kEnableSharpening = true; |
Ian Rogers | 2ed3b95 | 2012-03-17 11:49:39 -0700 | [diff] [blame] | 828 | // Sharpen a virtual call into a direct call when the target is known. |
| 829 | bool can_sharpen = type == kVirtual && (resolved_method->IsFinal() || |
| 830 | methods_class->IsFinal()); |
| 831 | // ensure the vtable index will be correct to dispatch in the vtable of the super class |
jeffhao | 4155fcd | 2012-03-21 11:42:12 -0700 | [diff] [blame] | 832 | can_sharpen = can_sharpen || (type == kSuper && referrer_class != methods_class && |
Ian Rogers | 2ed3b95 | 2012-03-17 11:49:39 -0700 | [diff] [blame] | 833 | referrer_class->IsSubClass(methods_class) && |
jeffhao | 4155fcd | 2012-03-21 11:42:12 -0700 | [diff] [blame] | 834 | vtable_idx < methods_class->GetVTable()->GetLength() && |
| 835 | methods_class->GetVTable()->Get(vtable_idx) == resolved_method); |
Ian Rogers | 2ed3b95 | 2012-03-17 11:49:39 -0700 | [diff] [blame] | 836 | if (kEnableSharpening && can_sharpen) { |
| 837 | stats_->ResolvedMethod(type); |
Ian Rogers | fb6adba | 2012-03-04 21:51:51 -0800 | [diff] [blame] | 838 | // Sharpen a virtual call into a direct call. The method_idx is into referrer's |
| 839 | // dex cache, check that this resolved method is where we expect it. |
| 840 | CHECK(referrer_class->GetDexCache()->GetResolvedMethod(method_idx) == resolved_method) |
| 841 | << PrettyMethod(resolved_method); |
Ian Rogers | 2ed3b95 | 2012-03-17 11:49:39 -0700 | [diff] [blame] | 842 | stats_->VirtualMadeDirect(type); |
| 843 | GetCodeAndMethodForDirectCall(type, kDirect, resolved_method, direct_code, direct_method); |
| 844 | type = kDirect; |
| 845 | return true; |
| 846 | } else if (type == kSuper) { |
| 847 | // Unsharpened super calls are suspicious so go slowpath. |
| 848 | } else { |
| 849 | stats_->ResolvedMethod(type); |
| 850 | GetCodeAndMethodForDirectCall(type, type, resolved_method, direct_code, direct_method); |
| 851 | return true; |
Ian Rogers | a32a6fd | 2012-02-06 20:18:44 -0800 | [diff] [blame] | 852 | } |
| 853 | } |
| 854 | } |
| 855 | } |
| 856 | // Clean up any exception left by method/type resolution |
| 857 | Thread* thread = Thread::Current(); |
| 858 | if (thread->IsExceptionPending()) { |
| 859 | thread->ClearException(); |
| 860 | } |
Ian Rogers | c8b306f | 2012-02-17 21:34:44 -0800 | [diff] [blame] | 861 | stats_->UnresolvedMethod(type); |
Ian Rogers | a32a6fd | 2012-02-06 20:18:44 -0800 | [diff] [blame] | 862 | return false; // Incomplete knowledge needs slow path. |
| 863 | } |
| 864 | |
Brian Carlstrom | f582258 | 2012-03-19 22:34:31 -0700 | [diff] [blame] | 865 | void Compiler::AddCodePatch(DexCache* dex_cache, |
| 866 | const DexFile* dex_file, |
| 867 | uint32_t referrer_method_idx, |
| 868 | uint32_t referrer_access_flags, |
| 869 | uint32_t target_method_idx, |
| 870 | bool target_is_direct, |
Ian Rogers | 3fa1379 | 2012-03-18 15:53:45 -0700 | [diff] [blame] | 871 | size_t literal_offset) { |
| 872 | MutexLock mu(compiled_methods_lock_); |
Brian Carlstrom | f582258 | 2012-03-19 22:34:31 -0700 | [diff] [blame] | 873 | code_to_patch_.push_back(new PatchInformation(dex_cache, |
| 874 | dex_file, |
| 875 | referrer_method_idx, |
| 876 | referrer_access_flags, |
| 877 | target_method_idx, |
| 878 | target_is_direct, |
| 879 | literal_offset)); |
Ian Rogers | 3fa1379 | 2012-03-18 15:53:45 -0700 | [diff] [blame] | 880 | } |
Brian Carlstrom | f582258 | 2012-03-19 22:34:31 -0700 | [diff] [blame] | 881 | void Compiler::AddMethodPatch(DexCache* dex_cache, |
| 882 | const DexFile* dex_file, |
| 883 | uint32_t referrer_method_idx, |
| 884 | uint32_t referrer_access_flags, |
| 885 | uint32_t target_method_idx, |
| 886 | bool target_is_direct, |
Ian Rogers | 3fa1379 | 2012-03-18 15:53:45 -0700 | [diff] [blame] | 887 | size_t literal_offset) { |
| 888 | MutexLock mu(compiled_methods_lock_); |
Brian Carlstrom | f582258 | 2012-03-19 22:34:31 -0700 | [diff] [blame] | 889 | methods_to_patch_.push_back(new PatchInformation(dex_cache, |
| 890 | dex_file, |
| 891 | referrer_method_idx, |
| 892 | referrer_access_flags, |
| 893 | target_method_idx, |
| 894 | target_is_direct, |
| 895 | literal_offset)); |
Ian Rogers | 3fa1379 | 2012-03-18 15:53:45 -0700 | [diff] [blame] | 896 | } |
| 897 | |
Brian Carlstrom | 5ead095 | 2011-11-28 22:55:52 -0800 | [diff] [blame] | 898 | // Return true if the class should be skipped during compilation. We |
| 899 | // never skip classes in the boot class loader. However, if we have a |
| 900 | // non-boot class loader and we can resolve the class in the boot |
| 901 | // class loader, we do skip the class. This happens if an app bundles |
| 902 | // classes found in the boot classpath. Since at runtime we will |
| 903 | // select the class from the boot classpath, do not attempt to resolve |
| 904 | // or compile it now. |
| 905 | static bool SkipClass(const ClassLoader* class_loader, |
| 906 | const DexFile& dex_file, |
| 907 | const DexFile::ClassDef& class_def) { |
| 908 | if (class_loader == NULL) { |
| 909 | return false; |
| 910 | } |
| 911 | const char* descriptor = dex_file.GetClassDescriptor(class_def); |
| 912 | ClassLinker* class_linker = Runtime::Current()->GetClassLinker(); |
| 913 | Class* klass = class_linker->FindClass(descriptor, NULL); |
| 914 | if (klass == NULL) { |
| 915 | Thread* self = Thread::Current(); |
| 916 | CHECK(self->IsExceptionPending()); |
| 917 | self->ClearException(); |
| 918 | return false; |
| 919 | } |
| 920 | return true; |
| 921 | } |
| 922 | |
Brian Carlstrom | 731b2ab | 2012-03-06 16:53:35 -0800 | [diff] [blame] | 923 | class Context { |
| 924 | public: |
| 925 | Context(ClassLinker* class_linker, |
| 926 | const ClassLoader* class_loader, |
| 927 | Compiler* compiler, |
| 928 | DexCache* dex_cache, |
| 929 | const DexFile* dex_file) |
| 930 | : class_linker_(class_linker), |
| 931 | class_loader_(class_loader), |
| 932 | compiler_(compiler), |
| 933 | dex_cache_(dex_cache), |
| 934 | dex_file_(dex_file) {} |
| 935 | |
| 936 | ClassLinker* GetClassLinker() { |
| 937 | CHECK(class_linker_ != NULL); |
| 938 | return class_linker_; |
| 939 | } |
| 940 | const ClassLoader* GetClassLoader() { |
| 941 | return class_loader_; |
| 942 | } |
| 943 | Compiler* GetCompiler() { |
| 944 | CHECK(compiler_ != NULL); |
| 945 | return compiler_; |
| 946 | } |
| 947 | DexCache* GetDexCache() { |
| 948 | CHECK(dex_cache_ != NULL); |
| 949 | return dex_cache_; |
| 950 | } |
| 951 | const DexFile* GetDexFile() { |
| 952 | CHECK(dex_file_ != NULL); |
| 953 | return dex_file_; |
| 954 | } |
| 955 | |
| 956 | private: |
| 957 | ClassLinker* class_linker_; |
| 958 | const ClassLoader* class_loader_; |
| 959 | Compiler* compiler_; |
| 960 | DexCache* dex_cache_; |
| 961 | const DexFile* dex_file_; |
Elliott Hughes | d9c67be | 2012-02-02 19:54:06 -0800 | [diff] [blame] | 962 | }; |
| 963 | |
| 964 | typedef void Callback(Context* context, size_t index); |
| 965 | |
| 966 | class WorkerThread { |
| 967 | public: |
Elliott Hughes | 1e40925 | 2012-02-06 11:21:27 -0800 | [diff] [blame] | 968 | WorkerThread(Context* context, size_t begin, size_t end, Callback callback, size_t stripe, bool spawn) |
| 969 | : spawn_(spawn), context_(context), begin_(begin), end_(end), callback_(callback), stripe_(stripe) { |
| 970 | if (spawn_) { |
Elliott Hughes | bf1b457 | 2012-05-24 19:11:39 -0700 | [diff] [blame] | 971 | // Mac OS stacks are only 512KiB. Make sure we have the same stack size on all platforms. |
| 972 | pthread_attr_t attr; |
| 973 | CHECK_PTHREAD_CALL(pthread_attr_init, (&attr), "new compiler worker thread"); |
| 974 | CHECK_PTHREAD_CALL(pthread_attr_setstacksize, (&attr, 1*MB), "new compiler worker thread"); |
| 975 | CHECK_PTHREAD_CALL(pthread_create, (&pthread_, &attr, &Go, this), "new compiler worker thread"); |
| 976 | CHECK_PTHREAD_CALL(pthread_attr_destroy, (&attr), "new compiler worker thread"); |
Elliott Hughes | 1e40925 | 2012-02-06 11:21:27 -0800 | [diff] [blame] | 977 | } |
Elliott Hughes | d9c67be | 2012-02-02 19:54:06 -0800 | [diff] [blame] | 978 | } |
| 979 | |
| 980 | ~WorkerThread() { |
Elliott Hughes | 1e40925 | 2012-02-06 11:21:27 -0800 | [diff] [blame] | 981 | if (spawn_) { |
| 982 | CHECK_PTHREAD_CALL(pthread_join, (pthread_, NULL), "compiler worker shutdown"); |
| 983 | } |
Elliott Hughes | d9c67be | 2012-02-02 19:54:06 -0800 | [diff] [blame] | 984 | } |
| 985 | |
| 986 | private: |
Elliott Hughes | 1e40925 | 2012-02-06 11:21:27 -0800 | [diff] [blame] | 987 | static void* Go(void* arg) { |
Elliott Hughes | d9c67be | 2012-02-02 19:54:06 -0800 | [diff] [blame] | 988 | WorkerThread* worker = reinterpret_cast<WorkerThread*>(arg); |
| 989 | Runtime* runtime = Runtime::Current(); |
Elliott Hughes | 1e40925 | 2012-02-06 11:21:27 -0800 | [diff] [blame] | 990 | if (worker->spawn_) { |
Elliott Hughes | 462c944 | 2012-03-23 18:47:50 -0700 | [diff] [blame] | 991 | runtime->AttachCurrentThread("Compiler Worker", true, NULL); |
Elliott Hughes | 1e40925 | 2012-02-06 11:21:27 -0800 | [diff] [blame] | 992 | } |
Elliott Hughes | 34e0696 | 2012-04-09 13:55:55 -0700 | [diff] [blame] | 993 | Thread::Current()->SetState(kRunnable); |
Elliott Hughes | d9c67be | 2012-02-02 19:54:06 -0800 | [diff] [blame] | 994 | worker->Run(); |
Elliott Hughes | 1e40925 | 2012-02-06 11:21:27 -0800 | [diff] [blame] | 995 | if (worker->spawn_) { |
Elliott Hughes | 34e0696 | 2012-04-09 13:55:55 -0700 | [diff] [blame] | 996 | Thread::Current()->SetState(kNative); |
Elliott Hughes | 1e40925 | 2012-02-06 11:21:27 -0800 | [diff] [blame] | 997 | runtime->DetachCurrentThread(); |
| 998 | } |
Elliott Hughes | d9c67be | 2012-02-02 19:54:06 -0800 | [diff] [blame] | 999 | return NULL; |
| 1000 | } |
| 1001 | |
Elliott Hughes | 1e40925 | 2012-02-06 11:21:27 -0800 | [diff] [blame] | 1002 | void Go() { |
| 1003 | Go(this); |
| 1004 | } |
| 1005 | |
Elliott Hughes | d9c67be | 2012-02-02 19:54:06 -0800 | [diff] [blame] | 1006 | void Run() { |
Brian Carlstrom | 64277f3 | 2012-03-26 23:53:34 -0700 | [diff] [blame] | 1007 | Thread* self = Thread::Current(); |
Elliott Hughes | d9c67be | 2012-02-02 19:54:06 -0800 | [diff] [blame] | 1008 | for (size_t i = begin_; i < end_; i += stripe_) { |
| 1009 | callback_(context_, i); |
Brian Carlstrom | 64277f3 | 2012-03-26 23:53:34 -0700 | [diff] [blame] | 1010 | CHECK(!self->IsExceptionPending()) << PrettyTypeOf(self->GetException()) << " " << i; |
Elliott Hughes | d9c67be | 2012-02-02 19:54:06 -0800 | [diff] [blame] | 1011 | } |
| 1012 | } |
| 1013 | |
| 1014 | pthread_t pthread_; |
Elliott Hughes | 1e40925 | 2012-02-06 11:21:27 -0800 | [diff] [blame] | 1015 | bool spawn_; |
Elliott Hughes | d9c67be | 2012-02-02 19:54:06 -0800 | [diff] [blame] | 1016 | |
| 1017 | Context* context_; |
| 1018 | size_t begin_; |
| 1019 | size_t end_; |
| 1020 | Callback* callback_; |
| 1021 | size_t stripe_; |
Elliott Hughes | 1e40925 | 2012-02-06 11:21:27 -0800 | [diff] [blame] | 1022 | |
| 1023 | friend void ForAll(Context*, size_t, size_t, Callback, size_t); |
Elliott Hughes | d9c67be | 2012-02-02 19:54:06 -0800 | [diff] [blame] | 1024 | }; |
| 1025 | |
Elliott Hughes | 5523ee0 | 2012-02-03 18:18:34 -0800 | [diff] [blame] | 1026 | void ForAll(Context* context, size_t begin, size_t end, Callback callback, size_t thread_count) { |
Brian Carlstrom | 64277f3 | 2012-03-26 23:53:34 -0700 | [diff] [blame] | 1027 | Thread* self = Thread::Current(); |
| 1028 | CHECK(!self->IsExceptionPending()) << PrettyTypeOf(self->GetException()); |
Elliott Hughes | 1e40925 | 2012-02-06 11:21:27 -0800 | [diff] [blame] | 1029 | CHECK_GT(thread_count, 0U); |
Elliott Hughes | 81d9151 | 2012-02-03 16:38:43 -0800 | [diff] [blame] | 1030 | |
Elliott Hughes | 1e40925 | 2012-02-06 11:21:27 -0800 | [diff] [blame] | 1031 | std::vector<WorkerThread*> threads; |
Elliott Hughes | 81d9151 | 2012-02-03 16:38:43 -0800 | [diff] [blame] | 1032 | for (size_t i = 0; i < thread_count; ++i) { |
Elliott Hughes | 1e40925 | 2012-02-06 11:21:27 -0800 | [diff] [blame] | 1033 | threads.push_back(new WorkerThread(context, begin + i, end, callback, thread_count, (i != 0))); |
Elliott Hughes | d9c67be | 2012-02-02 19:54:06 -0800 | [diff] [blame] | 1034 | } |
Elliott Hughes | 1e40925 | 2012-02-06 11:21:27 -0800 | [diff] [blame] | 1035 | threads[0]->Go(); |
Elliott Hughes | d9c67be | 2012-02-02 19:54:06 -0800 | [diff] [blame] | 1036 | |
Elliott Hughes | 81d9151 | 2012-02-03 16:38:43 -0800 | [diff] [blame] | 1037 | // Switch to kVmWait while we're blocked waiting for the other threads to finish. |
Elliott Hughes | 34e0696 | 2012-04-09 13:55:55 -0700 | [diff] [blame] | 1038 | ScopedThreadStateChange tsc(self, kVmWait); |
Elliott Hughes | 81d9151 | 2012-02-03 16:38:43 -0800 | [diff] [blame] | 1039 | STLDeleteElements(&threads); |
| 1040 | } |
Elliott Hughes | d9c67be | 2012-02-02 19:54:06 -0800 | [diff] [blame] | 1041 | |
| 1042 | static void ResolveClassFieldsAndMethods(Context* context, size_t class_def_index) { |
Brian Carlstrom | 731b2ab | 2012-03-06 16:53:35 -0800 | [diff] [blame] | 1043 | const DexFile& dex_file = *context->GetDexFile(); |
Elliott Hughes | d9c67be | 2012-02-02 19:54:06 -0800 | [diff] [blame] | 1044 | |
| 1045 | // Method and Field are the worst. We can't resolve without either |
| 1046 | // context from the code use (to disambiguate virtual vs direct |
| 1047 | // method and instance vs static field) or from class |
| 1048 | // definitions. While the compiler will resolve what it can as it |
| 1049 | // needs it, here we try to resolve fields and methods used in class |
| 1050 | // definitions, since many of them many never be referenced by |
| 1051 | // generated code. |
| 1052 | const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index); |
Brian Carlstrom | 731b2ab | 2012-03-06 16:53:35 -0800 | [diff] [blame] | 1053 | if (SkipClass(context->GetClassLoader(), dex_file, class_def)) { |
Elliott Hughes | d9c67be | 2012-02-02 19:54:06 -0800 | [diff] [blame] | 1054 | return; |
| 1055 | } |
| 1056 | |
| 1057 | // Note the class_data pointer advances through the headers, |
| 1058 | // static fields, instance fields, direct methods, and virtual |
| 1059 | // methods. |
| 1060 | const byte* class_data = dex_file.GetClassData(class_def); |
| 1061 | if (class_data == NULL) { |
| 1062 | // empty class such as a marker interface |
| 1063 | return; |
| 1064 | } |
Brian Carlstrom | 5ead095 | 2011-11-28 22:55:52 -0800 | [diff] [blame] | 1065 | Thread* self = Thread::Current(); |
Brian Carlstrom | 731b2ab | 2012-03-06 16:53:35 -0800 | [diff] [blame] | 1066 | ClassLinker* class_linker = context->GetClassLinker(); |
Elliott Hughes | d9c67be | 2012-02-02 19:54:06 -0800 | [diff] [blame] | 1067 | DexCache* dex_cache = class_linker->FindDexCache(dex_file); |
| 1068 | ClassDataItemIterator it(dex_file, class_data); |
| 1069 | while (it.HasNextStaticField()) { |
| 1070 | Field* field = class_linker->ResolveField(dex_file, it.GetMemberIndex(), dex_cache, |
Brian Carlstrom | 731b2ab | 2012-03-06 16:53:35 -0800 | [diff] [blame] | 1071 | context->GetClassLoader(), true); |
Elliott Hughes | d9c67be | 2012-02-02 19:54:06 -0800 | [diff] [blame] | 1072 | if (field == NULL) { |
| 1073 | CHECK(self->IsExceptionPending()); |
| 1074 | self->ClearException(); |
| 1075 | } |
| 1076 | it.Next(); |
| 1077 | } |
| 1078 | while (it.HasNextInstanceField()) { |
| 1079 | Field* field = class_linker->ResolveField(dex_file, it.GetMemberIndex(), dex_cache, |
Brian Carlstrom | 731b2ab | 2012-03-06 16:53:35 -0800 | [diff] [blame] | 1080 | context->GetClassLoader(), false); |
Elliott Hughes | d9c67be | 2012-02-02 19:54:06 -0800 | [diff] [blame] | 1081 | if (field == NULL) { |
| 1082 | CHECK(self->IsExceptionPending()); |
| 1083 | self->ClearException(); |
| 1084 | } |
| 1085 | it.Next(); |
| 1086 | } |
| 1087 | while (it.HasNextDirectMethod()) { |
| 1088 | Method* method = class_linker->ResolveMethod(dex_file, it.GetMemberIndex(), dex_cache, |
Brian Carlstrom | 731b2ab | 2012-03-06 16:53:35 -0800 | [diff] [blame] | 1089 | context->GetClassLoader(), true); |
Elliott Hughes | d9c67be | 2012-02-02 19:54:06 -0800 | [diff] [blame] | 1090 | if (method == NULL) { |
| 1091 | CHECK(self->IsExceptionPending()); |
| 1092 | self->ClearException(); |
| 1093 | } |
| 1094 | it.Next(); |
| 1095 | } |
| 1096 | while (it.HasNextVirtualMethod()) { |
| 1097 | Method* method = class_linker->ResolveMethod(dex_file, it.GetMemberIndex(), dex_cache, |
Brian Carlstrom | 731b2ab | 2012-03-06 16:53:35 -0800 | [diff] [blame] | 1098 | context->GetClassLoader(), false); |
Elliott Hughes | d9c67be | 2012-02-02 19:54:06 -0800 | [diff] [blame] | 1099 | if (method == NULL) { |
| 1100 | CHECK(self->IsExceptionPending()); |
| 1101 | self->ClearException(); |
| 1102 | } |
| 1103 | it.Next(); |
| 1104 | } |
| 1105 | DCHECK(!it.HasNext()); |
| 1106 | } |
| 1107 | |
| 1108 | static void ResolveType(Context* context, size_t type_idx) { |
| 1109 | // Class derived values are more complicated, they require the linker and loader. |
| 1110 | Thread* self = Thread::Current(); |
Brian Carlstrom | 731b2ab | 2012-03-06 16:53:35 -0800 | [diff] [blame] | 1111 | Class* klass = context->GetClassLinker()->ResolveType(*context->GetDexFile(), |
| 1112 | type_idx, |
| 1113 | context->GetDexCache(), |
| 1114 | context->GetClassLoader()); |
Elliott Hughes | d9c67be | 2012-02-02 19:54:06 -0800 | [diff] [blame] | 1115 | if (klass == NULL) { |
| 1116 | CHECK(self->IsExceptionPending()); |
| 1117 | Thread::Current()->ClearException(); |
| 1118 | } |
| 1119 | } |
| 1120 | |
| 1121 | void Compiler::ResolveDexFile(const ClassLoader* class_loader, const DexFile& dex_file, TimingLogger& timings) { |
Brian Carlstrom | 9ea1cb1 | 2011-08-24 23:18:18 -0700 | [diff] [blame] | 1122 | ClassLinker* class_linker = Runtime::Current()->GetClassLinker(); |
Brian Carlstrom | aded5f7 | 2011-10-07 17:15:04 -0700 | [diff] [blame] | 1123 | DexCache* dex_cache = class_linker->FindDexCache(dex_file); |
Brian Carlstrom | 9ea1cb1 | 2011-08-24 23:18:18 -0700 | [diff] [blame] | 1124 | |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 1125 | // Strings are easy in that they always are simply resolved to literals in the same file |
| 1126 | if (image_ && image_classes_ == NULL) { |
| 1127 | // TODO: Add support for loading strings referenced by image_classes_ |
| 1128 | // See also Compiler::CanAssumeTypeIsPresentInDexCache. |
Brian Carlstrom | aded5f7 | 2011-10-07 17:15:04 -0700 | [diff] [blame] | 1129 | for (size_t string_idx = 0; string_idx < dex_cache->NumStrings(); string_idx++) { |
| 1130 | class_linker->ResolveString(dex_file, string_idx, dex_cache); |
| 1131 | } |
Elliott Hughes | ff73806 | 2012-02-03 15:00:42 -0800 | [diff] [blame] | 1132 | timings.AddSplit("Resolve " + dex_file.GetLocation() + " Strings"); |
Brian Carlstrom | 9ea1cb1 | 2011-08-24 23:18:18 -0700 | [diff] [blame] | 1133 | } |
| 1134 | |
Brian Carlstrom | 731b2ab | 2012-03-06 16:53:35 -0800 | [diff] [blame] | 1135 | Context context(class_linker, class_loader, this, dex_cache, &dex_file); |
Elliott Hughes | 5523ee0 | 2012-02-03 18:18:34 -0800 | [diff] [blame] | 1136 | ForAll(&context, 0, dex_cache->NumResolvedTypes(), ResolveType, thread_count_); |
Elliott Hughes | ff73806 | 2012-02-03 15:00:42 -0800 | [diff] [blame] | 1137 | timings.AddSplit("Resolve " + dex_file.GetLocation() + " Types"); |
Brian Carlstrom | 845490b | 2011-09-19 15:56:53 -0700 | [diff] [blame] | 1138 | |
Elliott Hughes | 5523ee0 | 2012-02-03 18:18:34 -0800 | [diff] [blame] | 1139 | ForAll(&context, 0, dex_file.NumClassDefs(), ResolveClassFieldsAndMethods, thread_count_); |
Elliott Hughes | ff73806 | 2012-02-03 15:00:42 -0800 | [diff] [blame] | 1140 | timings.AddSplit("Resolve " + dex_file.GetLocation() + " MethodsAndFields"); |
Brian Carlstrom | 9ea1cb1 | 2011-08-24 23:18:18 -0700 | [diff] [blame] | 1141 | } |
| 1142 | |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 1143 | void Compiler::Verify(const ClassLoader* class_loader, |
| 1144 | const std::vector<const DexFile*>& dex_files) { |
| 1145 | for (size_t i = 0; i != dex_files.size(); ++i) { |
| 1146 | const DexFile* dex_file = dex_files[i]; |
jeffhao | 98eacac | 2011-09-14 16:11:53 -0700 | [diff] [blame] | 1147 | CHECK(dex_file != NULL); |
| 1148 | VerifyDexFile(class_loader, *dex_file); |
| 1149 | } |
| 1150 | } |
| 1151 | |
Elliott Hughes | d9c67be | 2012-02-02 19:54:06 -0800 | [diff] [blame] | 1152 | static void VerifyClass(Context* context, size_t class_def_index) { |
Brian Carlstrom | 731b2ab | 2012-03-06 16:53:35 -0800 | [diff] [blame] | 1153 | const DexFile::ClassDef& class_def = context->GetDexFile()->GetClassDef(class_def_index); |
| 1154 | const char* descriptor = context->GetDexFile()->GetClassDescriptor(class_def); |
| 1155 | Class* klass = context->GetClassLinker()->FindClass(descriptor, context->GetClassLoader()); |
Elliott Hughes | d9c67be | 2012-02-02 19:54:06 -0800 | [diff] [blame] | 1156 | if (klass == NULL) { |
| 1157 | Thread* self = Thread::Current(); |
| 1158 | CHECK(self->IsExceptionPending()); |
| 1159 | self->ClearException(); |
jeffhao | f56197c | 2012-03-05 18:01:54 -0800 | [diff] [blame] | 1160 | |
| 1161 | /* |
| 1162 | * At compile time, we can still structurally verify the class even if FindClass fails. |
| 1163 | * This is to ensure the class is structurally sound for compilation. An unsound class |
| 1164 | * will be rejected by the verifier and later skipped during compilation in the compiler. |
| 1165 | */ |
| 1166 | std::string error_msg; |
jeffhao | f1e6b7c | 2012-06-05 18:33:30 -0700 | [diff] [blame] | 1167 | if (verifier::MethodVerifier::VerifyClass(context->GetDexFile(), context->GetDexCache(), |
| 1168 | context->GetClassLoader(), class_def_index, error_msg) == verifier::MethodVerifier::kHardFailure) { |
Brian Carlstrom | 731b2ab | 2012-03-06 16:53:35 -0800 | [diff] [blame] | 1169 | const DexFile::ClassDef& class_def = context->GetDexFile()->GetClassDef(class_def_index); |
jeffhao | f56197c | 2012-03-05 18:01:54 -0800 | [diff] [blame] | 1170 | LOG(ERROR) << "Verification failed on class " |
Brian Carlstrom | 731b2ab | 2012-03-06 16:53:35 -0800 | [diff] [blame] | 1171 | << PrettyDescriptor(context->GetDexFile()->GetClassDescriptor(class_def)) |
jeffhao | f56197c | 2012-03-05 18:01:54 -0800 | [diff] [blame] | 1172 | << " because: " << error_msg; |
| 1173 | } |
Elliott Hughes | d9c67be | 2012-02-02 19:54:06 -0800 | [diff] [blame] | 1174 | return; |
| 1175 | } |
| 1176 | CHECK(klass->IsResolved()) << PrettyClass(klass); |
Brian Carlstrom | 731b2ab | 2012-03-06 16:53:35 -0800 | [diff] [blame] | 1177 | context->GetClassLinker()->VerifyClass(klass); |
Elliott Hughes | d9c67be | 2012-02-02 19:54:06 -0800 | [diff] [blame] | 1178 | |
| 1179 | if (klass->IsErroneous()) { |
| 1180 | // ClassLinker::VerifyClass throws, which isn't useful in the compiler. |
| 1181 | CHECK(Thread::Current()->IsExceptionPending()); |
| 1182 | Thread::Current()->ClearException(); |
jeffhao | 1ac2944 | 2012-03-26 11:37:32 -0700 | [diff] [blame] | 1183 | art::Compiler::ClassReference ref(context->GetDexFile(), class_def_index); |
Elliott Hughes | d9c67be | 2012-02-02 19:54:06 -0800 | [diff] [blame] | 1184 | } |
| 1185 | |
jeffhao | f1e6b7c | 2012-06-05 18:33:30 -0700 | [diff] [blame] | 1186 | CHECK(klass->IsCompileTimeVerified() || klass->IsErroneous()) << PrettyClass(klass); |
Elliott Hughes | d9c67be | 2012-02-02 19:54:06 -0800 | [diff] [blame] | 1187 | CHECK(!Thread::Current()->IsExceptionPending()) << PrettyTypeOf(Thread::Current()->GetException()); |
| 1188 | } |
| 1189 | |
jeffhao | 98eacac | 2011-09-14 16:11:53 -0700 | [diff] [blame] | 1190 | void Compiler::VerifyDexFile(const ClassLoader* class_loader, const DexFile& dex_file) { |
jeffhao | b4df514 | 2011-09-19 20:25:32 -0700 | [diff] [blame] | 1191 | dex_file.ChangePermissions(PROT_READ | PROT_WRITE); |
Elliott Hughes | d9cdfe9 | 2011-10-06 16:09:04 -0700 | [diff] [blame] | 1192 | |
Brian Carlstrom | 731b2ab | 2012-03-06 16:53:35 -0800 | [diff] [blame] | 1193 | ClassLinker* class_linker = Runtime::Current()->GetClassLinker(); |
| 1194 | Context context(class_linker, class_loader, this, class_linker->FindDexCache(dex_file), &dex_file); |
Elliott Hughes | 5523ee0 | 2012-02-03 18:18:34 -0800 | [diff] [blame] | 1195 | ForAll(&context, 0, dex_file.NumClassDefs(), VerifyClass, thread_count_); |
Elliott Hughes | d9cdfe9 | 2011-10-06 16:09:04 -0700 | [diff] [blame] | 1196 | |
jeffhao | b4df514 | 2011-09-19 20:25:32 -0700 | [diff] [blame] | 1197 | dex_file.ChangePermissions(PROT_READ); |
Brian Carlstrom | a5a97a2 | 2011-09-15 14:08:49 -0700 | [diff] [blame] | 1198 | } |
| 1199 | |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 1200 | void Compiler::InitializeClassesWithoutClinit(const ClassLoader* class_loader, |
| 1201 | const std::vector<const DexFile*>& dex_files) { |
| 1202 | for (size_t i = 0; i != dex_files.size(); ++i) { |
| 1203 | const DexFile* dex_file = dex_files[i]; |
Brian Carlstrom | a5a97a2 | 2011-09-15 14:08:49 -0700 | [diff] [blame] | 1204 | CHECK(dex_file != NULL); |
| 1205 | InitializeClassesWithoutClinit(class_loader, *dex_file); |
| 1206 | } |
| 1207 | } |
| 1208 | |
| 1209 | void Compiler::InitializeClassesWithoutClinit(const ClassLoader* class_loader, const DexFile& dex_file) { |
| 1210 | ClassLinker* class_linker = Runtime::Current()->GetClassLinker(); |
Brian Carlstrom | ffca45d | 2011-09-16 12:10:49 -0700 | [diff] [blame] | 1211 | for (size_t class_def_index = 0; class_def_index < dex_file.NumClassDefs(); class_def_index++) { |
| 1212 | const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index); |
Brian Carlstrom | a5a97a2 | 2011-09-15 14:08:49 -0700 | [diff] [blame] | 1213 | const char* descriptor = dex_file.GetClassDescriptor(class_def); |
| 1214 | Class* klass = class_linker->FindClass(descriptor, class_loader); |
Brian Carlstrom | 27ec961 | 2011-09-19 20:20:38 -0700 | [diff] [blame] | 1215 | if (klass != NULL) { |
jeffhao | 1ac2944 | 2012-03-26 11:37:32 -0700 | [diff] [blame] | 1216 | if (klass->IsVerified()) { |
| 1217 | // Only try to initialize classes that were successfully verified. |
Ian Rogers | 0045a29 | 2012-03-31 21:08:41 -0700 | [diff] [blame] | 1218 | bool compiling_boot = Runtime::Current()->GetHeap()->GetSpaces().size() == 1; |
| 1219 | bool can_init_static_fields = compiling_boot && |
| 1220 | IsImageClass(descriptor); |
| 1221 | class_linker->EnsureInitialized(klass, false, can_init_static_fields); |
jeffhao | 1ac2944 | 2012-03-26 11:37:32 -0700 | [diff] [blame] | 1222 | } |
Brian Carlstrom | 0755ec5 | 2012-01-11 15:19:46 -0800 | [diff] [blame] | 1223 | // record the final class status if necessary |
| 1224 | Class::Status status = klass->GetStatus(); |
| 1225 | ClassReference ref(&dex_file, class_def_index); |
Elliott Hughes | c225caa | 2012-02-03 15:43:37 -0800 | [diff] [blame] | 1226 | MutexLock mu(compiled_classes_lock_); |
Brian Carlstrom | 0755ec5 | 2012-01-11 15:19:46 -0800 | [diff] [blame] | 1227 | CompiledClass* compiled_class = GetCompiledClass(ref); |
| 1228 | if (compiled_class == NULL) { |
| 1229 | compiled_class = new CompiledClass(status); |
Elliott Hughes | a0e1806 | 2012-04-13 15:59:59 -0700 | [diff] [blame] | 1230 | compiled_classes_.Put(ref, compiled_class); |
Brian Carlstrom | 0755ec5 | 2012-01-11 15:19:46 -0800 | [diff] [blame] | 1231 | } else { |
| 1232 | DCHECK_EQ(status, compiled_class->GetStatus()); |
| 1233 | } |
Brian Carlstrom | 27ec961 | 2011-09-19 20:20:38 -0700 | [diff] [blame] | 1234 | } |
| 1235 | // clear any class not found or verification exceptions |
| 1236 | Thread::Current()->ClearException(); |
Brian Carlstrom | ffca45d | 2011-09-16 12:10:49 -0700 | [diff] [blame] | 1237 | } |
| 1238 | |
| 1239 | DexCache* dex_cache = class_linker->FindDexCache(dex_file); |
| 1240 | for (size_t type_idx = 0; type_idx < dex_cache->NumResolvedTypes(); type_idx++) { |
| 1241 | Class* klass = class_linker->ResolveType(dex_file, type_idx, dex_cache, class_loader); |
Brian Carlstrom | 27ec961 | 2011-09-19 20:20:38 -0700 | [diff] [blame] | 1242 | if (klass == NULL) { |
| 1243 | Thread::Current()->ClearException(); |
| 1244 | } else if (klass->IsInitialized()) { |
Brian Carlstrom | ffca45d | 2011-09-16 12:10:49 -0700 | [diff] [blame] | 1245 | dex_cache->GetInitializedStaticStorage()->Set(type_idx, klass); |
| 1246 | } |
jeffhao | 98eacac | 2011-09-14 16:11:53 -0700 | [diff] [blame] | 1247 | } |
| 1248 | } |
| 1249 | |
Shih-wei Liao | 90dc30f | 2012-04-23 02:03:30 -0700 | [diff] [blame] | 1250 | // TODO: This class shares some implementation with WorkerThread. We don't want |
| 1251 | // to perturb the non-LLVM side at the same time. Staging the refactoring for |
| 1252 | // the future. |
| 1253 | class DexFilesWorkerThread { |
| 1254 | public: |
| 1255 | DexFilesWorkerThread(Context *worker_context, Callback class_callback, |
| 1256 | const std::vector<const DexFile*>& dex_files, |
| 1257 | volatile int32_t* shared_class_index, bool spawn) |
| 1258 | : spawn_(spawn), worker_context_(worker_context), |
| 1259 | class_callback_(class_callback), dex_files_(dex_files), |
| 1260 | context_(NULL), shared_class_index_(shared_class_index) { |
| 1261 | if (spawn_) { |
TDYa127 | 8cea5fd | 2012-05-29 22:22:32 -0700 | [diff] [blame] | 1262 | pthread_attr_t attr; |
| 1263 | CHECK_PTHREAD_CALL(pthread_attr_init, (&attr), "new compiler worker thread"); |
Shih-wei Liao | b5c4922 | 2012-05-30 00:40:26 -0700 | [diff] [blame] | 1264 | CHECK_PTHREAD_CALL(pthread_attr_setstacksize, (&attr, 8*MB), "new compiler worker thread"); |
TDYa127 | 8cea5fd | 2012-05-29 22:22:32 -0700 | [diff] [blame] | 1265 | CHECK_PTHREAD_CALL(pthread_create, (&pthread_, &attr, &Go, this), "new compiler worker thread"); |
| 1266 | CHECK_PTHREAD_CALL(pthread_attr_destroy, (&attr), "new compiler worker thread"); |
Shih-wei Liao | 90dc30f | 2012-04-23 02:03:30 -0700 | [diff] [blame] | 1267 | } |
| 1268 | } |
| 1269 | |
| 1270 | ~DexFilesWorkerThread() { |
| 1271 | if (spawn_) { |
| 1272 | CHECK_PTHREAD_CALL(pthread_join, (pthread_, NULL), "compiler worker shutdown"); |
| 1273 | } |
| 1274 | delete context_; |
| 1275 | } |
| 1276 | |
| 1277 | private: |
| 1278 | static void* Go(void* arg) { |
| 1279 | DexFilesWorkerThread* worker = reinterpret_cast<DexFilesWorkerThread*>(arg); |
| 1280 | Runtime* runtime = Runtime::Current(); |
| 1281 | if (worker->spawn_) { |
| 1282 | runtime->AttachCurrentThread("Compiler Worker", true, NULL); |
| 1283 | } |
| 1284 | Thread::Current()->SetState(kRunnable); |
| 1285 | worker->Run(); |
| 1286 | if (worker->spawn_) { |
| 1287 | Thread::Current()->SetState(kNative); |
| 1288 | runtime->DetachCurrentThread(); |
| 1289 | } |
| 1290 | return NULL; |
| 1291 | } |
| 1292 | |
| 1293 | void Go() { |
| 1294 | Go(this); |
| 1295 | } |
| 1296 | |
| 1297 | void SwitchToDexFile(size_t dex_file_index) { |
| 1298 | CHECK (dex_file_index < dex_files_.size()); |
| 1299 | |
| 1300 | const DexFile* dex_file = dex_files_[dex_file_index]; |
| 1301 | CHECK(dex_file != NULL); |
| 1302 | |
| 1303 | // Destroy the old context |
| 1304 | delete context_; |
| 1305 | |
| 1306 | // TODO: Add a callback to let the client specify the class_linker and |
| 1307 | // dex_cache in the context for the current working dex file. |
| 1308 | context_ = new Context(/* class_linker */NULL, |
| 1309 | worker_context_->GetClassLoader(), |
| 1310 | worker_context_->GetCompiler(), |
| 1311 | /* dex_cache */NULL, dex_file); |
| 1312 | |
| 1313 | CHECK(context_ != NULL); |
| 1314 | } |
| 1315 | |
| 1316 | void Run() { |
| 1317 | Thread* self = Thread::Current(); |
| 1318 | size_t cur_dex_file_index = 0; |
| 1319 | size_t class_index_base = 0; |
| 1320 | |
| 1321 | SwitchToDexFile(0); |
| 1322 | |
| 1323 | while (true) { |
| 1324 | size_t class_index = |
| 1325 | static_cast<size_t>(android_atomic_inc(shared_class_index_)); |
| 1326 | |
| 1327 | const DexFile* dex_file; |
| 1328 | do { |
| 1329 | dex_file = dex_files_[cur_dex_file_index]; |
| 1330 | |
| 1331 | if (class_index < (class_index_base + dex_file->NumClassDefs())) { |
| 1332 | break; |
| 1333 | } |
| 1334 | class_index_base += dex_file->NumClassDefs(); |
| 1335 | |
| 1336 | cur_dex_file_index++; |
| 1337 | } while (cur_dex_file_index < dex_files_.size()); |
| 1338 | |
| 1339 | if (cur_dex_file_index >= dex_files_.size()) { |
| 1340 | return; |
| 1341 | } |
| 1342 | |
| 1343 | if (dex_file != context_->GetDexFile()) { |
| 1344 | SwitchToDexFile(cur_dex_file_index); |
| 1345 | } |
| 1346 | |
| 1347 | class_index -= class_index_base; |
| 1348 | class_callback_(context_, class_index); |
| 1349 | CHECK(!self->IsExceptionPending()) << PrettyTypeOf(self->GetException()); |
| 1350 | } |
| 1351 | } |
| 1352 | |
| 1353 | pthread_t pthread_; |
| 1354 | bool spawn_; |
| 1355 | |
| 1356 | Context* worker_context_; |
| 1357 | Callback* class_callback_; |
| 1358 | const std::vector<const DexFile*>& dex_files_; |
| 1359 | |
| 1360 | Context* context_; |
| 1361 | volatile int32_t* shared_class_index_; |
| 1362 | |
| 1363 | friend void ForClassesInAllDexFiles(Context*, |
| 1364 | const std::vector<const DexFile*>&, |
| 1365 | Callback, size_t); |
| 1366 | }; |
| 1367 | |
| 1368 | void ForClassesInAllDexFiles(Context* worker_context, |
| 1369 | const std::vector<const DexFile*>& dex_files, |
| 1370 | Callback class_callback, size_t thread_count) { |
| 1371 | Thread* self = Thread::Current(); |
| 1372 | CHECK(!self->IsExceptionPending()) << PrettyTypeOf(self->GetException()); |
| 1373 | CHECK_GT(thread_count, 0U); |
| 1374 | |
| 1375 | std::vector<DexFilesWorkerThread*> threads; |
| 1376 | volatile int32_t shared_class_index = 0; |
| 1377 | |
| 1378 | for (size_t i = 0; i < thread_count; ++i) { |
| 1379 | threads.push_back(new DexFilesWorkerThread(worker_context, class_callback, |
| 1380 | dex_files, &shared_class_index, |
| 1381 | /* spawn */ (i != 0))); |
| 1382 | } |
| 1383 | threads[0]->Go(); |
| 1384 | |
| 1385 | // Switch to kVmWait while we're blocked waiting for the other threads to finish. |
| 1386 | ScopedThreadStateChange tsc(self, kVmWait); |
| 1387 | STLDeleteElements(&threads); |
| 1388 | } |
| 1389 | |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 1390 | void Compiler::Compile(const ClassLoader* class_loader, |
| 1391 | const std::vector<const DexFile*>& dex_files) { |
Shih-wei Liao | 90dc30f | 2012-04-23 02:03:30 -0700 | [diff] [blame] | 1392 | #if defined(ART_USE_LLVM_COMPILER) |
| 1393 | if (dex_files.size() <= 0) { |
| 1394 | return; // No dex file |
| 1395 | } |
| 1396 | Context context(NULL, class_loader, this, NULL, NULL); |
| 1397 | ForClassesInAllDexFiles(&context, dex_files, Compiler::CompileClass, thread_count_); |
| 1398 | #else |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 1399 | for (size_t i = 0; i != dex_files.size(); ++i) { |
| 1400 | const DexFile* dex_file = dex_files[i]; |
Brian Carlstrom | 83db772 | 2011-08-26 17:32:56 -0700 | [diff] [blame] | 1401 | CHECK(dex_file != NULL); |
| 1402 | CompileDexFile(class_loader, *dex_file); |
| 1403 | } |
Shih-wei Liao | 90dc30f | 2012-04-23 02:03:30 -0700 | [diff] [blame] | 1404 | #endif |
Brian Carlstrom | 83db772 | 2011-08-26 17:32:56 -0700 | [diff] [blame] | 1405 | } |
| 1406 | |
Elliott Hughes | c225caa | 2012-02-03 15:43:37 -0800 | [diff] [blame] | 1407 | void Compiler::CompileClass(Context* context, size_t class_def_index) { |
Brian Carlstrom | 731b2ab | 2012-03-06 16:53:35 -0800 | [diff] [blame] | 1408 | const ClassLoader* class_loader = context->GetClassLoader(); |
| 1409 | const DexFile& dex_file = *context->GetDexFile(); |
Elliott Hughes | c225caa | 2012-02-03 15:43:37 -0800 | [diff] [blame] | 1410 | const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index); |
Brian Carlstrom | 5ead095 | 2011-11-28 22:55:52 -0800 | [diff] [blame] | 1411 | if (SkipClass(class_loader, dex_file, class_def)) { |
| 1412 | return; |
| 1413 | } |
jeffhao | d1224c7 | 2012-02-29 13:43:08 -0800 | [diff] [blame] | 1414 | ClassReference ref(&dex_file, class_def_index); |
| 1415 | // Skip compiling classes with generic verifier failures since they will still fail at runtime |
Ian Rogers | 776ac1f | 2012-04-13 23:36:36 -0700 | [diff] [blame] | 1416 | if (verifier::MethodVerifier::IsClassRejected(ref)) { |
jeffhao | d1224c7 | 2012-02-29 13:43:08 -0800 | [diff] [blame] | 1417 | return; |
| 1418 | } |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 1419 | const byte* class_data = dex_file.GetClassData(class_def); |
| 1420 | if (class_data == NULL) { |
| 1421 | // empty class, probably a marker interface |
| 1422 | return; |
Brian Carlstrom | 9ea1cb1 | 2011-08-24 23:18:18 -0700 | [diff] [blame] | 1423 | } |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 1424 | ClassDataItemIterator it(dex_file, class_data); |
| 1425 | // Skip fields |
| 1426 | while (it.HasNextStaticField()) { |
| 1427 | it.Next(); |
Brian Carlstrom | 9ea1cb1 | 2011-08-24 23:18:18 -0700 | [diff] [blame] | 1428 | } |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 1429 | while (it.HasNextInstanceField()) { |
| 1430 | it.Next(); |
| 1431 | } |
| 1432 | // Compile direct methods |
Brian Carlstrom | 68adbe4 | 2012-05-11 17:18:08 -0700 | [diff] [blame] | 1433 | int64_t previous_direct_method_idx = -1; |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 1434 | while (it.HasNextDirectMethod()) { |
Brian Carlstrom | 6f29d0e | 2012-05-11 15:50:29 -0700 | [diff] [blame] | 1435 | uint32_t method_idx = it.GetMemberIndex(); |
| 1436 | if (method_idx == previous_direct_method_idx) { |
| 1437 | // smali can create dex files with two encoded_methods sharing the same method_idx |
| 1438 | // http://code.google.com/p/smali/issues/detail?id=119 |
| 1439 | it.Next(); |
| 1440 | continue; |
| 1441 | } |
| 1442 | previous_direct_method_idx = method_idx; |
Brian Carlstrom | 731b2ab | 2012-03-06 16:53:35 -0800 | [diff] [blame] | 1443 | context->GetCompiler()->CompileMethod(it.GetMethodCodeItem(), it.GetMemberAccessFlags(), |
Brian Carlstrom | 6f29d0e | 2012-05-11 15:50:29 -0700 | [diff] [blame] | 1444 | method_idx, class_loader, dex_file); |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 1445 | it.Next(); |
| 1446 | } |
| 1447 | // Compile virtual methods |
Brian Carlstrom | 68adbe4 | 2012-05-11 17:18:08 -0700 | [diff] [blame] | 1448 | int64_t previous_virtual_method_idx = -1; |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 1449 | while (it.HasNextVirtualMethod()) { |
Brian Carlstrom | 6f29d0e | 2012-05-11 15:50:29 -0700 | [diff] [blame] | 1450 | uint32_t method_idx = it.GetMemberIndex(); |
| 1451 | if (method_idx == previous_virtual_method_idx) { |
| 1452 | // smali can create dex files with two encoded_methods sharing the same method_idx |
| 1453 | // http://code.google.com/p/smali/issues/detail?id=119 |
| 1454 | it.Next(); |
| 1455 | continue; |
| 1456 | } |
| 1457 | previous_virtual_method_idx = method_idx; |
Brian Carlstrom | 731b2ab | 2012-03-06 16:53:35 -0800 | [diff] [blame] | 1458 | context->GetCompiler()->CompileMethod(it.GetMethodCodeItem(), it.GetMemberAccessFlags(), |
Brian Carlstrom | 6f29d0e | 2012-05-11 15:50:29 -0700 | [diff] [blame] | 1459 | method_idx, class_loader, dex_file); |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 1460 | it.Next(); |
| 1461 | } |
| 1462 | DCHECK(!it.HasNext()); |
Brian Carlstrom | 9ea1cb1 | 2011-08-24 23:18:18 -0700 | [diff] [blame] | 1463 | } |
| 1464 | |
Elliott Hughes | c225caa | 2012-02-03 15:43:37 -0800 | [diff] [blame] | 1465 | void Compiler::CompileDexFile(const ClassLoader* class_loader, const DexFile& dex_file) { |
Brian Carlstrom | 731b2ab | 2012-03-06 16:53:35 -0800 | [diff] [blame] | 1466 | Context context(NULL, class_loader, this, NULL, &dex_file); |
Elliott Hughes | 5523ee0 | 2012-02-03 18:18:34 -0800 | [diff] [blame] | 1467 | ForAll(&context, 0, dex_file.NumClassDefs(), Compiler::CompileClass, thread_count_); |
Elliott Hughes | c225caa | 2012-02-03 15:43:37 -0800 | [diff] [blame] | 1468 | } |
| 1469 | |
Elliott Hughes | a0e1806 | 2012-04-13 15:59:59 -0700 | [diff] [blame] | 1470 | static std::string MakeInvokeStubKey(bool is_static, const char* shorty) { |
| 1471 | std::string key(shorty); |
| 1472 | if (is_static) { |
| 1473 | key += "$"; // Must not be a shorty type character. |
| 1474 | } |
| 1475 | return key; |
| 1476 | } |
| 1477 | |
Ian Rogers | a3760aa | 2011-11-14 14:32:37 -0800 | [diff] [blame] | 1478 | void Compiler::CompileMethod(const DexFile::CodeItem* code_item, uint32_t access_flags, |
| 1479 | uint32_t method_idx, const ClassLoader* class_loader, |
| 1480 | const DexFile& dex_file) { |
Elliott Hughes | f09afe8 | 2011-10-16 14:24:21 -0700 | [diff] [blame] | 1481 | CompiledMethod* compiled_method = NULL; |
Elliott Hughes | bb551fa | 2012-01-25 16:35:29 -0800 | [diff] [blame] | 1482 | uint64_t start_ns = NanoTime(); |
Logan Chien | 4dd96f5 | 2012-02-29 01:26:58 +0800 | [diff] [blame] | 1483 | |
Ian Rogers | 169c9a7 | 2011-11-13 20:13:17 -0800 | [diff] [blame] | 1484 | if ((access_flags & kAccNative) != 0) { |
Ian Rogers | 57b86d4 | 2012-03-27 16:05:41 -0700 | [diff] [blame] | 1485 | compiled_method = (*jni_compiler_)(*this, access_flags, method_idx, dex_file); |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 1486 | CHECK(compiled_method != NULL); |
Ian Rogers | 169c9a7 | 2011-11-13 20:13:17 -0800 | [diff] [blame] | 1487 | } else if ((access_flags & kAccAbstract) != 0) { |
Brian Carlstrom | 2cc022b | 2011-08-25 10:05:39 -0700 | [diff] [blame] | 1488 | } else { |
Elliott Hughes | b3bd5f0 | 2012-03-08 21:05:27 -0800 | [diff] [blame] | 1489 | compiled_method = (*compiler_)(*this, code_item, access_flags, method_idx, class_loader, |
| 1490 | dex_file); |
Elliott Hughes | bb551fa | 2012-01-25 16:35:29 -0800 | [diff] [blame] | 1491 | CHECK(compiled_method != NULL) << PrettyMethod(method_idx, dex_file); |
| 1492 | } |
Ian Rogers | 3bb17a6 | 2012-01-27 23:56:44 -0800 | [diff] [blame] | 1493 | uint64_t duration_ns = NanoTime() - start_ns; |
buzbee | 5abfa3e | 2012-01-31 17:01:43 -0800 | [diff] [blame] | 1494 | if (duration_ns > MsToNs(100)) { |
Elliott Hughes | bb551fa | 2012-01-25 16:35:29 -0800 | [diff] [blame] | 1495 | LOG(WARNING) << "Compilation of " << PrettyMethod(method_idx, dex_file) |
Ian Rogers | 3bb17a6 | 2012-01-27 23:56:44 -0800 | [diff] [blame] | 1496 | << " took " << PrettyDuration(duration_ns); |
Elliott Hughes | f09afe8 | 2011-10-16 14:24:21 -0700 | [diff] [blame] | 1497 | } |
| 1498 | |
| 1499 | if (compiled_method != NULL) { |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 1500 | MethodReference ref(&dex_file, method_idx); |
Brian Carlstrom | 0755ec5 | 2012-01-11 15:19:46 -0800 | [diff] [blame] | 1501 | CHECK(GetCompiledMethod(ref) == NULL) << PrettyMethod(method_idx, dex_file); |
Elliott Hughes | c225caa | 2012-02-03 15:43:37 -0800 | [diff] [blame] | 1502 | MutexLock mu(compiled_methods_lock_); |
Elliott Hughes | a0e1806 | 2012-04-13 15:59:59 -0700 | [diff] [blame] | 1503 | compiled_methods_.Put(ref, compiled_method); |
Brian Carlstrom | 0755ec5 | 2012-01-11 15:19:46 -0800 | [diff] [blame] | 1504 | DCHECK(GetCompiledMethod(ref) != NULL) << PrettyMethod(method_idx, dex_file); |
Brian Carlstrom | 2cc022b | 2011-08-25 10:05:39 -0700 | [diff] [blame] | 1505 | } |
Brian Carlstrom | 9baa4ae | 2011-09-01 21:14:14 -0700 | [diff] [blame] | 1506 | |
Ian Rogers | 45619fc | 2012-02-29 11:15:25 -0800 | [diff] [blame] | 1507 | uint32_t shorty_len; |
| 1508 | const char* shorty = dex_file.GetMethodShorty(dex_file.GetMethodId(method_idx), &shorty_len); |
Ian Rogers | 169c9a7 | 2011-11-13 20:13:17 -0800 | [diff] [blame] | 1509 | bool is_static = (access_flags & kAccStatic) != 0; |
Elliott Hughes | a0e1806 | 2012-04-13 15:59:59 -0700 | [diff] [blame] | 1510 | std::string key(MakeInvokeStubKey(is_static, shorty)); |
| 1511 | const CompiledInvokeStub* compiled_invoke_stub = FindInvokeStub(key); |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 1512 | if (compiled_invoke_stub == NULL) { |
Shih-wei Liao | c4c9881 | 2012-03-10 21:55:51 -0800 | [diff] [blame] | 1513 | compiled_invoke_stub = (*create_invoke_stub_)(*this, is_static, shorty, shorty_len); |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 1514 | CHECK(compiled_invoke_stub != NULL); |
Elliott Hughes | a0e1806 | 2012-04-13 15:59:59 -0700 | [diff] [blame] | 1515 | InsertInvokeStub(key, compiled_invoke_stub); |
Ian Rogers | 2c8f653 | 2011-09-02 17:16:34 -0700 | [diff] [blame] | 1516 | } |
Logan Chien | 7a2a23a | 2012-06-06 11:01:00 +0800 | [diff] [blame^] | 1517 | |
| 1518 | #if defined(ART_USE_LLVM_COMPILER) |
| 1519 | if (!is_static) { |
| 1520 | const CompiledInvokeStub* compiled_proxy_stub = FindProxyStub(shorty); |
| 1521 | if (compiled_proxy_stub == NULL) { |
| 1522 | compiled_proxy_stub = (*create_proxy_stub_)(*this, shorty, shorty_len); |
| 1523 | CHECK(compiled_proxy_stub != NULL); |
| 1524 | InsertProxyStub(shorty, compiled_proxy_stub); |
| 1525 | } |
| 1526 | } |
| 1527 | #endif |
| 1528 | |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 1529 | CHECK(!Thread::Current()->IsExceptionPending()) << PrettyMethod(method_idx, dex_file); |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 1530 | } |
| 1531 | |
Elliott Hughes | a0e1806 | 2012-04-13 15:59:59 -0700 | [diff] [blame] | 1532 | const CompiledInvokeStub* Compiler::FindInvokeStub(bool is_static, const char* shorty) const { |
| 1533 | const std::string key(MakeInvokeStubKey(is_static, shorty)); |
| 1534 | return FindInvokeStub(key); |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 1535 | } |
| 1536 | |
Elliott Hughes | a0e1806 | 2012-04-13 15:59:59 -0700 | [diff] [blame] | 1537 | const CompiledInvokeStub* Compiler::FindInvokeStub(const std::string& key) const { |
Elliott Hughes | c225caa | 2012-02-03 15:43:37 -0800 | [diff] [blame] | 1538 | MutexLock mu(compiled_invoke_stubs_lock_); |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 1539 | InvokeStubTable::const_iterator it = compiled_invoke_stubs_.find(key); |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 1540 | if (it == compiled_invoke_stubs_.end()) { |
| 1541 | return NULL; |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 1542 | } else { |
| 1543 | DCHECK(it->second != NULL); |
| 1544 | return it->second; |
| 1545 | } |
| 1546 | } |
| 1547 | |
Elliott Hughes | a0e1806 | 2012-04-13 15:59:59 -0700 | [diff] [blame] | 1548 | void Compiler::InsertInvokeStub(const std::string& key, |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 1549 | const CompiledInvokeStub* compiled_invoke_stub) { |
Elliott Hughes | c225caa | 2012-02-03 15:43:37 -0800 | [diff] [blame] | 1550 | MutexLock mu(compiled_invoke_stubs_lock_); |
Elliott Hughes | a0e1806 | 2012-04-13 15:59:59 -0700 | [diff] [blame] | 1551 | InvokeStubTable::iterator it = compiled_invoke_stubs_.find(key); |
| 1552 | if (it != compiled_invoke_stubs_.end()) { |
| 1553 | // Someone else won the race. |
| 1554 | delete compiled_invoke_stub; |
| 1555 | } else { |
| 1556 | compiled_invoke_stubs_.Put(key, compiled_invoke_stub); |
| 1557 | } |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 1558 | } |
| 1559 | |
Logan Chien | 7a2a23a | 2012-06-06 11:01:00 +0800 | [diff] [blame^] | 1560 | #if defined(ART_USE_LLVM_COMPILER) |
| 1561 | const CompiledInvokeStub* Compiler::FindProxyStub(const char* shorty) const { |
| 1562 | MutexLock mu(compiled_proxy_stubs_lock_); |
| 1563 | ProxyStubTable::const_iterator it = compiled_proxy_stubs_.find(shorty); |
| 1564 | if (it == compiled_proxy_stubs_.end()) { |
| 1565 | return NULL; |
| 1566 | } else { |
| 1567 | DCHECK(it->second != NULL); |
| 1568 | return it->second; |
| 1569 | } |
| 1570 | } |
| 1571 | |
| 1572 | void Compiler::InsertProxyStub(const char* shorty, |
| 1573 | const CompiledInvokeStub* compiled_proxy_stub) { |
| 1574 | MutexLock mu(compiled_proxy_stubs_lock_); |
| 1575 | InvokeStubTable::iterator it = compiled_proxy_stubs_.find(shorty); |
| 1576 | if (it != compiled_proxy_stubs_.end()) { |
| 1577 | // Someone else won the race. |
| 1578 | delete compiled_proxy_stub; |
| 1579 | } else { |
| 1580 | compiled_proxy_stubs_.Put(shorty, compiled_proxy_stub); |
| 1581 | } |
| 1582 | } |
| 1583 | #endif |
| 1584 | |
Brian Carlstrom | 0755ec5 | 2012-01-11 15:19:46 -0800 | [diff] [blame] | 1585 | CompiledClass* Compiler::GetCompiledClass(ClassReference ref) const { |
Elliott Hughes | c225caa | 2012-02-03 15:43:37 -0800 | [diff] [blame] | 1586 | MutexLock mu(compiled_classes_lock_); |
Brian Carlstrom | 0755ec5 | 2012-01-11 15:19:46 -0800 | [diff] [blame] | 1587 | ClassTable::const_iterator it = compiled_classes_.find(ref); |
| 1588 | if (it == compiled_classes_.end()) { |
| 1589 | return NULL; |
| 1590 | } |
| 1591 | CHECK(it->second != NULL); |
| 1592 | return it->second; |
| 1593 | } |
| 1594 | |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 1595 | CompiledMethod* Compiler::GetCompiledMethod(MethodReference ref) const { |
Elliott Hughes | c225caa | 2012-02-03 15:43:37 -0800 | [diff] [blame] | 1596 | MutexLock mu(compiled_methods_lock_); |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 1597 | MethodTable::const_iterator it = compiled_methods_.find(ref); |
| 1598 | if (it == compiled_methods_.end()) { |
| 1599 | return NULL; |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 1600 | } |
| 1601 | CHECK(it->second != NULL); |
| 1602 | return it->second; |
Brian Carlstrom | 9ea1cb1 | 2011-08-24 23:18:18 -0700 | [diff] [blame] | 1603 | } |
| 1604 | |
Brian Carlstrom | e7d856b | 2012-01-11 18:10:55 -0800 | [diff] [blame] | 1605 | void Compiler::SetGcMaps(const ClassLoader* class_loader, const std::vector<const DexFile*>& dex_files) { |
| 1606 | for (size_t i = 0; i != dex_files.size(); ++i) { |
| 1607 | const DexFile* dex_file = dex_files[i]; |
| 1608 | CHECK(dex_file != NULL); |
| 1609 | SetGcMapsDexFile(class_loader, *dex_file); |
| 1610 | } |
| 1611 | } |
| 1612 | |
| 1613 | void Compiler::SetGcMapsDexFile(const ClassLoader* class_loader, const DexFile& dex_file) { |
| 1614 | ClassLinker* class_linker = Runtime::Current()->GetClassLinker(); |
| 1615 | DexCache* dex_cache = class_linker->FindDexCache(dex_file); |
| 1616 | for (size_t class_def_index = 0; class_def_index < dex_file.NumClassDefs(); class_def_index++) { |
| 1617 | const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index); |
| 1618 | const char* descriptor = dex_file.GetClassDescriptor(class_def); |
| 1619 | Class* klass = class_linker->FindClass(descriptor, class_loader); |
| 1620 | if (klass == NULL || !klass->IsVerified()) { |
| 1621 | Thread::Current()->ClearException(); |
| 1622 | continue; |
| 1623 | } |
| 1624 | const byte* class_data = dex_file.GetClassData(class_def); |
| 1625 | if (class_data == NULL) { |
| 1626 | // empty class such as a marker interface |
| 1627 | continue; |
| 1628 | } |
| 1629 | ClassDataItemIterator it(dex_file, class_data); |
| 1630 | while (it.HasNextStaticField()) { |
| 1631 | it.Next(); |
| 1632 | } |
| 1633 | while (it.HasNextInstanceField()) { |
| 1634 | it.Next(); |
| 1635 | } |
| 1636 | while (it.HasNextDirectMethod()) { |
| 1637 | Method* method = class_linker->ResolveMethod(dex_file, it.GetMemberIndex(), dex_cache, |
| 1638 | class_loader, true); |
| 1639 | SetGcMapsMethod(dex_file, method); |
| 1640 | it.Next(); |
| 1641 | } |
| 1642 | while (it.HasNextVirtualMethod()) { |
| 1643 | Method* method = class_linker->ResolveMethod(dex_file, it.GetMemberIndex(), dex_cache, |
| 1644 | class_loader, false); |
| 1645 | SetGcMapsMethod(dex_file, method); |
| 1646 | it.Next(); |
| 1647 | } |
| 1648 | } |
| 1649 | } |
| 1650 | |
| 1651 | void Compiler::SetGcMapsMethod(const DexFile& dex_file, Method* method) { |
| 1652 | if (method == NULL) { |
| 1653 | Thread::Current()->ClearException(); |
| 1654 | return; |
| 1655 | } |
| 1656 | uint16_t method_idx = method->GetDexMethodIndex(); |
| 1657 | MethodReference ref(&dex_file, method_idx); |
| 1658 | CompiledMethod* compiled_method = GetCompiledMethod(ref); |
| 1659 | if (compiled_method == NULL) { |
| 1660 | return; |
| 1661 | } |
Ian Rogers | 776ac1f | 2012-04-13 23:36:36 -0700 | [diff] [blame] | 1662 | const std::vector<uint8_t>* gc_map = verifier::MethodVerifier::GetGcMap(ref); |
Brian Carlstrom | e7d856b | 2012-01-11 18:10:55 -0800 | [diff] [blame] | 1663 | if (gc_map == NULL) { |
| 1664 | return; |
| 1665 | } |
| 1666 | compiled_method->SetGcMap(*gc_map); |
| 1667 | } |
| 1668 | |
Logan Chien | 8b977d3 | 2012-02-21 19:14:55 +0800 | [diff] [blame] | 1669 | #if defined(ART_USE_LLVM_COMPILER) |
Logan Chien | 8b977d3 | 2012-02-21 19:14:55 +0800 | [diff] [blame] | 1670 | void Compiler::SetBitcodeFileName(std::string const& filename) { |
Logan Chien | 106b2a0 | 2012-03-18 04:41:38 +0800 | [diff] [blame] | 1671 | typedef void (*SetBitcodeFileNameFn)(Compiler&, std::string const&); |
| 1672 | |
| 1673 | SetBitcodeFileNameFn set_bitcode_file_name = |
| 1674 | FindFunction<SetBitcodeFileNameFn>(MakeCompilerSoName(instruction_set_), |
| 1675 | compiler_library_, |
| 1676 | "compilerLLVMSetBitcodeFileName"); |
| 1677 | |
| 1678 | set_bitcode_file_name(*this, filename); |
Logan Chien | 8b977d3 | 2012-02-21 19:14:55 +0800 | [diff] [blame] | 1679 | } |
Logan Chien | f7015fd | 2012-03-18 01:19:37 +0800 | [diff] [blame] | 1680 | |
| 1681 | void Compiler::EnableAutoElfLoading() { |
| 1682 | compiler_enable_auto_elf_loading_(*this); |
| 1683 | } |
| 1684 | |
| 1685 | const void* Compiler::GetMethodCodeAddr(const CompiledMethod* cm, |
| 1686 | const Method* method) const { |
| 1687 | return compiler_get_method_code_addr_(*this, cm, method); |
| 1688 | } |
| 1689 | |
| 1690 | const Method::InvokeStub* Compiler::GetMethodInvokeStubAddr(const CompiledInvokeStub* cm, |
| 1691 | const Method* method) const { |
| 1692 | return compiler_get_method_invoke_stub_addr_(*this, cm, method); |
| 1693 | } |
Logan Chien | df57614 | 2012-03-20 17:36:32 +0800 | [diff] [blame] | 1694 | |
| 1695 | std::vector<ElfImage> Compiler::GetElfImages() const { |
| 1696 | typedef std::vector<ElfImage> (*GetElfImagesFn)(const Compiler&); |
| 1697 | |
| 1698 | GetElfImagesFn get_elf_images = |
| 1699 | FindFunction<GetElfImagesFn>(MakeCompilerSoName(instruction_set_), |
| 1700 | compiler_library_, |
| 1701 | "compilerLLVMGetElfImages"); |
| 1702 | |
| 1703 | return get_elf_images(*this); |
| 1704 | } |
Logan Chien | 8b977d3 | 2012-02-21 19:14:55 +0800 | [diff] [blame] | 1705 | #endif |
| 1706 | |
Brian Carlstrom | 9ea1cb1 | 2011-08-24 23:18:18 -0700 | [diff] [blame] | 1707 | } // namespace art |