Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2014 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
| 17 | #include "jit.h" |
| 18 | |
| 19 | #include <dlfcn.h> |
| 20 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 21 | #include "art_method-inl.h" |
Andreas Gampe | 2a5c468 | 2015-08-14 08:22:54 -0700 | [diff] [blame] | 22 | #include "debugger.h" |
Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 23 | #include "entrypoints/runtime_asm_entrypoints.h" |
| 24 | #include "interpreter/interpreter.h" |
| 25 | #include "jit_code_cache.h" |
| 26 | #include "jit_instrumentation.h" |
Calin Juravle | 31f2c15 | 2015-10-23 17:56:15 +0100 | [diff] [blame] | 27 | #include "oat_file_manager.h" |
Nicolas Geoffray | b331feb | 2016-02-05 16:51:53 +0000 | [diff] [blame] | 28 | #include "oat_quick_method_header.h" |
Calin Juravle | 31f2c15 | 2015-10-23 17:56:15 +0100 | [diff] [blame] | 29 | #include "offline_profiling_info.h" |
Calin Juravle | 4d77b6a | 2015-12-01 18:38:09 +0000 | [diff] [blame] | 30 | #include "profile_saver.h" |
Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 31 | #include "runtime.h" |
| 32 | #include "runtime_options.h" |
Nicolas Geoffray | b331feb | 2016-02-05 16:51:53 +0000 | [diff] [blame] | 33 | #include "stack_map.h" |
Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 34 | #include "utils.h" |
| 35 | |
| 36 | namespace art { |
| 37 | namespace jit { |
| 38 | |
Nicolas Geoffray | d186dd8 | 2016-02-16 10:03:44 +0000 | [diff] [blame] | 39 | static constexpr bool kEnableOnStackReplacement = true; |
Nicolas Geoffray | e866213 | 2016-02-15 10:00:42 +0000 | [diff] [blame] | 40 | |
Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 41 | JitOptions* JitOptions::CreateFromRuntimeArguments(const RuntimeArgumentMap& options) { |
Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 42 | auto* jit_options = new JitOptions; |
Mathieu Chartier | 455f67c | 2015-03-17 13:48:29 -0700 | [diff] [blame] | 43 | jit_options->use_jit_ = options.GetOrDefault(RuntimeArgumentMap::UseJIT); |
Nicolas Geoffray | 0a3be16 | 2015-11-18 11:15:22 +0000 | [diff] [blame] | 44 | jit_options->code_cache_initial_capacity_ = |
| 45 | options.GetOrDefault(RuntimeArgumentMap::JITCodeCacheInitialCapacity); |
| 46 | jit_options->code_cache_max_capacity_ = |
| 47 | options.GetOrDefault(RuntimeArgumentMap::JITCodeCacheMaxCapacity); |
Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 48 | jit_options->compile_threshold_ = |
| 49 | options.GetOrDefault(RuntimeArgumentMap::JITCompileThreshold); |
Nicolas Geoffray | b331feb | 2016-02-05 16:51:53 +0000 | [diff] [blame] | 50 | // TODO(ngeoffray): Make this a proper option. |
| 51 | jit_options->osr_threshold_ = jit_options->compile_threshold_ * 2; |
Nicolas Geoffray | 5550ca8 | 2015-08-21 18:38:30 +0100 | [diff] [blame] | 52 | jit_options->warmup_threshold_ = |
| 53 | options.GetOrDefault(RuntimeArgumentMap::JITWarmupThreshold); |
Mathieu Chartier | a4885cb | 2015-03-09 15:38:54 -0700 | [diff] [blame] | 54 | jit_options->dump_info_on_shutdown_ = |
| 55 | options.Exists(RuntimeArgumentMap::DumpJITInfoOnShutdown); |
Calin Juravle | 31f2c15 | 2015-10-23 17:56:15 +0100 | [diff] [blame] | 56 | jit_options->save_profiling_info_ = |
| 57 | options.GetOrDefault(RuntimeArgumentMap::JITSaveProfilingInfo);; |
Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 58 | return jit_options; |
| 59 | } |
| 60 | |
Mathieu Chartier | a4885cb | 2015-03-09 15:38:54 -0700 | [diff] [blame] | 61 | void Jit::DumpInfo(std::ostream& os) { |
Nicolas Geoffray | bcd94c8 | 2016-03-03 13:23:33 +0000 | [diff] [blame^] | 62 | code_cache_->Dump(os); |
Mathieu Chartier | a4885cb | 2015-03-09 15:38:54 -0700 | [diff] [blame] | 63 | cumulative_timings_.Dump(os); |
| 64 | } |
| 65 | |
| 66 | void Jit::AddTimingLogger(const TimingLogger& logger) { |
| 67 | cumulative_timings_.AddLogger(logger); |
| 68 | } |
| 69 | |
Nicolas Geoffray | a25dce9 | 2016-01-12 16:41:10 +0000 | [diff] [blame] | 70 | Jit::Jit() : jit_library_handle_(nullptr), |
| 71 | jit_compiler_handle_(nullptr), |
| 72 | jit_load_(nullptr), |
| 73 | jit_compile_method_(nullptr), |
| 74 | dump_info_on_shutdown_(false), |
| 75 | cumulative_timings_("JIT timings"), |
| 76 | save_profiling_info_(false), |
| 77 | generate_debug_info_(false) { |
Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 78 | } |
| 79 | |
| 80 | Jit* Jit::Create(JitOptions* options, std::string* error_msg) { |
| 81 | std::unique_ptr<Jit> jit(new Jit); |
Mathieu Chartier | a4885cb | 2015-03-09 15:38:54 -0700 | [diff] [blame] | 82 | jit->dump_info_on_shutdown_ = options->DumpJitInfoOnShutdown(); |
Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 83 | if (!jit->LoadCompiler(error_msg)) { |
| 84 | return nullptr; |
| 85 | } |
Nicolas Geoffray | 0a3be16 | 2015-11-18 11:15:22 +0000 | [diff] [blame] | 86 | jit->code_cache_.reset(JitCodeCache::Create( |
Nicolas Geoffray | a25dce9 | 2016-01-12 16:41:10 +0000 | [diff] [blame] | 87 | options->GetCodeCacheInitialCapacity(), |
| 88 | options->GetCodeCacheMaxCapacity(), |
| 89 | jit->generate_debug_info_, |
| 90 | error_msg)); |
Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 91 | if (jit->GetCodeCache() == nullptr) { |
| 92 | return nullptr; |
| 93 | } |
Calin Juravle | 4d77b6a | 2015-12-01 18:38:09 +0000 | [diff] [blame] | 94 | jit->save_profiling_info_ = options->GetSaveProfilingInfo(); |
Nicolas Geoffray | bcd94c8 | 2016-03-03 13:23:33 +0000 | [diff] [blame^] | 95 | VLOG(jit) << "JIT created with initial_capacity=" |
Nicolas Geoffray | 0a3be16 | 2015-11-18 11:15:22 +0000 | [diff] [blame] | 96 | << PrettySize(options->GetCodeCacheInitialCapacity()) |
| 97 | << ", max_capacity=" << PrettySize(options->GetCodeCacheMaxCapacity()) |
Calin Juravle | 4d77b6a | 2015-12-01 18:38:09 +0000 | [diff] [blame] | 98 | << ", compile_threshold=" << options->GetCompileThreshold() |
| 99 | << ", save_profiling_info=" << options->GetSaveProfilingInfo(); |
Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 100 | return jit.release(); |
| 101 | } |
| 102 | |
| 103 | bool Jit::LoadCompiler(std::string* error_msg) { |
| 104 | jit_library_handle_ = dlopen( |
| 105 | kIsDebugBuild ? "libartd-compiler.so" : "libart-compiler.so", RTLD_NOW); |
| 106 | if (jit_library_handle_ == nullptr) { |
| 107 | std::ostringstream oss; |
| 108 | oss << "JIT could not load libart-compiler.so: " << dlerror(); |
| 109 | *error_msg = oss.str(); |
| 110 | return false; |
| 111 | } |
Nicolas Geoffray | 5b82d33 | 2016-02-18 14:22:32 +0000 | [diff] [blame] | 112 | jit_load_ = reinterpret_cast<void* (*)(bool*)>(dlsym(jit_library_handle_, "jit_load")); |
Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 113 | if (jit_load_ == nullptr) { |
| 114 | dlclose(jit_library_handle_); |
| 115 | *error_msg = "JIT couldn't find jit_load entry point"; |
| 116 | return false; |
| 117 | } |
| 118 | jit_unload_ = reinterpret_cast<void (*)(void*)>( |
| 119 | dlsym(jit_library_handle_, "jit_unload")); |
| 120 | if (jit_unload_ == nullptr) { |
| 121 | dlclose(jit_library_handle_); |
| 122 | *error_msg = "JIT couldn't find jit_unload entry point"; |
| 123 | return false; |
| 124 | } |
Nicolas Geoffray | b331feb | 2016-02-05 16:51:53 +0000 | [diff] [blame] | 125 | jit_compile_method_ = reinterpret_cast<bool (*)(void*, ArtMethod*, Thread*, bool)>( |
Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 126 | dlsym(jit_library_handle_, "jit_compile_method")); |
| 127 | if (jit_compile_method_ == nullptr) { |
| 128 | dlclose(jit_library_handle_); |
| 129 | *error_msg = "JIT couldn't find jit_compile_method entry point"; |
| 130 | return false; |
| 131 | } |
Tamas Berghammer | fffbee4 | 2016-01-15 13:09:34 +0000 | [diff] [blame] | 132 | jit_types_loaded_ = reinterpret_cast<void (*)(void*, mirror::Class**, size_t)>( |
| 133 | dlsym(jit_library_handle_, "jit_types_loaded")); |
| 134 | if (jit_types_loaded_ == nullptr) { |
Tamas Berghammer | 160e6df | 2016-01-05 14:29:02 +0000 | [diff] [blame] | 135 | dlclose(jit_library_handle_); |
Tamas Berghammer | fffbee4 | 2016-01-15 13:09:34 +0000 | [diff] [blame] | 136 | *error_msg = "JIT couldn't find jit_types_loaded entry point"; |
Tamas Berghammer | 160e6df | 2016-01-05 14:29:02 +0000 | [diff] [blame] | 137 | return false; |
| 138 | } |
Nicolas Geoffray | a25dce9 | 2016-01-12 16:41:10 +0000 | [diff] [blame] | 139 | bool will_generate_debug_symbols = false; |
Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 140 | VLOG(jit) << "Calling JitLoad interpreter_only=" |
| 141 | << Runtime::Current()->GetInstrumentation()->InterpretOnly(); |
Nicolas Geoffray | 5b82d33 | 2016-02-18 14:22:32 +0000 | [diff] [blame] | 142 | jit_compiler_handle_ = (jit_load_)(&will_generate_debug_symbols); |
Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 143 | if (jit_compiler_handle_ == nullptr) { |
| 144 | dlclose(jit_library_handle_); |
| 145 | *error_msg = "JIT couldn't load compiler"; |
| 146 | return false; |
| 147 | } |
Nicolas Geoffray | a25dce9 | 2016-01-12 16:41:10 +0000 | [diff] [blame] | 148 | generate_debug_info_ = will_generate_debug_symbols; |
Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 149 | return true; |
| 150 | } |
| 151 | |
Nicolas Geoffray | b331feb | 2016-02-05 16:51:53 +0000 | [diff] [blame] | 152 | bool Jit::CompileMethod(ArtMethod* method, Thread* self, bool osr) { |
Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 153 | DCHECK(!method->IsRuntimeMethod()); |
Nicolas Geoffray | d9994f0 | 2016-02-11 17:35:55 +0000 | [diff] [blame] | 154 | |
Nicolas Geoffray | 73be1e8 | 2015-09-17 15:22:56 +0100 | [diff] [blame] | 155 | // Don't compile the method if it has breakpoints. |
Mathieu Chartier | d856545 | 2015-03-26 09:41:50 -0700 | [diff] [blame] | 156 | if (Dbg::IsDebuggerActive() && Dbg::MethodHasAnyBreakpoints(method)) { |
| 157 | VLOG(jit) << "JIT not compiling " << PrettyMethod(method) << " due to breakpoint"; |
| 158 | return false; |
| 159 | } |
Nicolas Geoffray | 73be1e8 | 2015-09-17 15:22:56 +0100 | [diff] [blame] | 160 | |
| 161 | // Don't compile the method if we are supposed to be deoptimized. |
| 162 | instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation(); |
| 163 | if (instrumentation->AreAllMethodsDeoptimized() || instrumentation->IsDeoptimized(method)) { |
Nicolas Geoffray | a42363f | 2015-12-17 14:57:09 +0000 | [diff] [blame] | 164 | VLOG(jit) << "JIT not compiling " << PrettyMethod(method) << " due to deoptimization"; |
Nicolas Geoffray | 73be1e8 | 2015-09-17 15:22:56 +0100 | [diff] [blame] | 165 | return false; |
| 166 | } |
| 167 | |
Nicolas Geoffray | d9994f0 | 2016-02-11 17:35:55 +0000 | [diff] [blame] | 168 | // If we get a request to compile a proxy method, we pass the actual Java method |
| 169 | // of that proxy method, as the compiler does not expect a proxy method. |
| 170 | ArtMethod* method_to_compile = method->GetInterfaceMethodIfProxy(sizeof(void*)); |
| 171 | if (!code_cache_->NotifyCompilationOf(method_to_compile, self, osr)) { |
Nicolas Geoffray | 73be1e8 | 2015-09-17 15:22:56 +0100 | [diff] [blame] | 172 | return false; |
| 173 | } |
Nicolas Geoffray | d9994f0 | 2016-02-11 17:35:55 +0000 | [diff] [blame] | 174 | bool success = jit_compile_method_(jit_compiler_handle_, method_to_compile, self, osr); |
| 175 | code_cache_->DoneCompiling(method_to_compile, self); |
Nicolas Geoffray | 73be1e8 | 2015-09-17 15:22:56 +0100 | [diff] [blame] | 176 | return success; |
Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 177 | } |
| 178 | |
| 179 | void Jit::CreateThreadPool() { |
| 180 | CHECK(instrumentation_cache_.get() != nullptr); |
| 181 | instrumentation_cache_->CreateThreadPool(); |
| 182 | } |
| 183 | |
| 184 | void Jit::DeleteThreadPool() { |
| 185 | if (instrumentation_cache_.get() != nullptr) { |
Nicolas Geoffray | 629e935 | 2015-11-04 17:22:16 +0000 | [diff] [blame] | 186 | instrumentation_cache_->DeleteThreadPool(Thread::Current()); |
Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 187 | } |
| 188 | } |
| 189 | |
Calin Juravle | 4d77b6a | 2015-12-01 18:38:09 +0000 | [diff] [blame] | 190 | void Jit::StartProfileSaver(const std::string& filename, |
| 191 | const std::vector<std::string>& code_paths) { |
| 192 | if (save_profiling_info_) { |
| 193 | ProfileSaver::Start(filename, code_cache_.get(), code_paths); |
Calin Juravle | 31f2c15 | 2015-10-23 17:56:15 +0100 | [diff] [blame] | 194 | } |
Calin Juravle | 4d77b6a | 2015-12-01 18:38:09 +0000 | [diff] [blame] | 195 | } |
| 196 | |
| 197 | void Jit::StopProfileSaver() { |
| 198 | if (save_profiling_info_ && ProfileSaver::IsStarted()) { |
| 199 | ProfileSaver::Stop(); |
Calin Juravle | 31f2c15 | 2015-10-23 17:56:15 +0100 | [diff] [blame] | 200 | } |
| 201 | } |
| 202 | |
Siva Chandra | 05d2415 | 2016-01-05 17:43:17 -0800 | [diff] [blame] | 203 | bool Jit::JitAtFirstUse() { |
| 204 | if (instrumentation_cache_ != nullptr) { |
| 205 | return instrumentation_cache_->HotMethodThreshold() == 0; |
| 206 | } |
| 207 | return false; |
| 208 | } |
| 209 | |
Nicolas Geoffray | 3512244 | 2016-03-02 12:05:30 +0000 | [diff] [blame] | 210 | bool Jit::CanInvokeCompiledCode(ArtMethod* method) { |
| 211 | return code_cache_->ContainsPc(method->GetEntryPointFromQuickCompiledCode()); |
| 212 | } |
| 213 | |
Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 214 | Jit::~Jit() { |
Calin Juravle | 4d77b6a | 2015-12-01 18:38:09 +0000 | [diff] [blame] | 215 | DCHECK(!save_profiling_info_ || !ProfileSaver::IsStarted()); |
Mathieu Chartier | a4885cb | 2015-03-09 15:38:54 -0700 | [diff] [blame] | 216 | if (dump_info_on_shutdown_) { |
| 217 | DumpInfo(LOG(INFO)); |
| 218 | } |
Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 219 | DeleteThreadPool(); |
| 220 | if (jit_compiler_handle_ != nullptr) { |
| 221 | jit_unload_(jit_compiler_handle_); |
| 222 | } |
| 223 | if (jit_library_handle_ != nullptr) { |
| 224 | dlclose(jit_library_handle_); |
| 225 | } |
| 226 | } |
| 227 | |
Nicolas Geoffray | b331feb | 2016-02-05 16:51:53 +0000 | [diff] [blame] | 228 | void Jit::CreateInstrumentationCache(size_t compile_threshold, |
| 229 | size_t warmup_threshold, |
| 230 | size_t osr_threshold) { |
Nicolas Geoffray | 5550ca8 | 2015-08-21 18:38:30 +0100 | [diff] [blame] | 231 | instrumentation_cache_.reset( |
Nicolas Geoffray | b331feb | 2016-02-05 16:51:53 +0000 | [diff] [blame] | 232 | new jit::JitInstrumentationCache(compile_threshold, warmup_threshold, osr_threshold)); |
Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 233 | } |
| 234 | |
Tamas Berghammer | 160e6df | 2016-01-05 14:29:02 +0000 | [diff] [blame] | 235 | void Jit::NewTypeLoadedIfUsingJit(mirror::Class* type) { |
| 236 | jit::Jit* jit = Runtime::Current()->GetJit(); |
| 237 | if (jit != nullptr && jit->generate_debug_info_) { |
Tamas Berghammer | fffbee4 | 2016-01-15 13:09:34 +0000 | [diff] [blame] | 238 | DCHECK(jit->jit_types_loaded_ != nullptr); |
| 239 | jit->jit_types_loaded_(jit->jit_compiler_handle_, &type, 1); |
| 240 | } |
| 241 | } |
| 242 | |
| 243 | void Jit::DumpTypeInfoForLoadedTypes(ClassLinker* linker) { |
| 244 | struct CollectClasses : public ClassVisitor { |
Mathieu Chartier | 1aa8ec2 | 2016-02-01 10:34:47 -0800 | [diff] [blame] | 245 | bool operator()(mirror::Class* klass) override { |
Tamas Berghammer | fffbee4 | 2016-01-15 13:09:34 +0000 | [diff] [blame] | 246 | classes_.push_back(klass); |
| 247 | return true; |
| 248 | } |
Mathieu Chartier | 9b1c9b7 | 2016-02-02 10:09:58 -0800 | [diff] [blame] | 249 | std::vector<mirror::Class*> classes_; |
Tamas Berghammer | fffbee4 | 2016-01-15 13:09:34 +0000 | [diff] [blame] | 250 | }; |
| 251 | |
| 252 | if (generate_debug_info_) { |
| 253 | ScopedObjectAccess so(Thread::Current()); |
| 254 | |
| 255 | CollectClasses visitor; |
| 256 | linker->VisitClasses(&visitor); |
| 257 | jit_types_loaded_(jit_compiler_handle_, visitor.classes_.data(), visitor.classes_.size()); |
Tamas Berghammer | 160e6df | 2016-01-05 14:29:02 +0000 | [diff] [blame] | 258 | } |
| 259 | } |
| 260 | |
Nicolas Geoffray | b331feb | 2016-02-05 16:51:53 +0000 | [diff] [blame] | 261 | extern "C" void art_quick_osr_stub(void** stack, |
| 262 | uint32_t stack_size_in_bytes, |
| 263 | const uint8_t* native_pc, |
| 264 | JValue* result, |
| 265 | const char* shorty, |
| 266 | Thread* self); |
| 267 | |
| 268 | bool Jit::MaybeDoOnStackReplacement(Thread* thread, |
| 269 | ArtMethod* method, |
| 270 | uint32_t dex_pc, |
| 271 | int32_t dex_pc_offset, |
| 272 | JValue* result) { |
Nicolas Geoffray | e866213 | 2016-02-15 10:00:42 +0000 | [diff] [blame] | 273 | if (!kEnableOnStackReplacement) { |
| 274 | return false; |
| 275 | } |
| 276 | |
Nicolas Geoffray | b331feb | 2016-02-05 16:51:53 +0000 | [diff] [blame] | 277 | Jit* jit = Runtime::Current()->GetJit(); |
| 278 | if (jit == nullptr) { |
| 279 | return false; |
| 280 | } |
| 281 | |
| 282 | if (kRuntimeISA == kMips || kRuntimeISA == kMips64) { |
Nicolas Geoffray | c0b2796 | 2016-02-16 12:06:05 +0000 | [diff] [blame] | 283 | VLOG(jit) << "OSR not supported on this platform: " << kRuntimeISA; |
Nicolas Geoffray | b331feb | 2016-02-05 16:51:53 +0000 | [diff] [blame] | 284 | return false; |
| 285 | } |
| 286 | |
Nicolas Geoffray | b88d59e | 2016-02-17 11:31:49 +0000 | [diff] [blame] | 287 | if (UNLIKELY(__builtin_frame_address(0) < thread->GetStackEnd())) { |
| 288 | // Don't attempt to do an OSR if we are close to the stack limit. Since |
| 289 | // the interpreter frames are still on stack, OSR has the potential |
| 290 | // to stack overflow even for a simple loop. |
| 291 | // b/27094810. |
| 292 | return false; |
| 293 | } |
| 294 | |
Nicolas Geoffray | d9bc433 | 2016-02-05 23:32:25 +0000 | [diff] [blame] | 295 | // Get the actual Java method if this method is from a proxy class. The compiler |
| 296 | // and the JIT code cache do not expect methods from proxy classes. |
| 297 | method = method->GetInterfaceMethodIfProxy(sizeof(void*)); |
| 298 | |
Nicolas Geoffray | b331feb | 2016-02-05 16:51:53 +0000 | [diff] [blame] | 299 | // Cheap check if the method has been compiled already. That's an indicator that we should |
| 300 | // osr into it. |
| 301 | if (!jit->GetCodeCache()->ContainsPc(method->GetEntryPointFromQuickCompiledCode())) { |
| 302 | return false; |
| 303 | } |
| 304 | |
Nicolas Geoffray | c0b2796 | 2016-02-16 12:06:05 +0000 | [diff] [blame] | 305 | // Fetch some data before looking up for an OSR method. We don't want thread |
| 306 | // suspension once we hold an OSR method, as the JIT code cache could delete the OSR |
| 307 | // method while we are being suspended. |
Nicolas Geoffray | b331feb | 2016-02-05 16:51:53 +0000 | [diff] [blame] | 308 | const size_t number_of_vregs = method->GetCodeItem()->registers_size_; |
Nicolas Geoffray | d186dd8 | 2016-02-16 10:03:44 +0000 | [diff] [blame] | 309 | const char* shorty = method->GetShorty(); |
| 310 | std::string method_name(VLOG_IS_ON(jit) ? PrettyMethod(method) : ""); |
| 311 | void** memory = nullptr; |
| 312 | size_t frame_size = 0; |
| 313 | ShadowFrame* shadow_frame = nullptr; |
| 314 | const uint8_t* native_pc = nullptr; |
Nicolas Geoffray | b331feb | 2016-02-05 16:51:53 +0000 | [diff] [blame] | 315 | |
Nicolas Geoffray | d186dd8 | 2016-02-16 10:03:44 +0000 | [diff] [blame] | 316 | { |
| 317 | ScopedAssertNoThreadSuspension sts(thread, "Holding OSR method"); |
| 318 | const OatQuickMethodHeader* osr_method = jit->GetCodeCache()->LookupOsrMethodHeader(method); |
| 319 | if (osr_method == nullptr) { |
| 320 | // No osr method yet, just return to the interpreter. |
| 321 | return false; |
Nicolas Geoffray | b331feb | 2016-02-05 16:51:53 +0000 | [diff] [blame] | 322 | } |
Nicolas Geoffray | d186dd8 | 2016-02-16 10:03:44 +0000 | [diff] [blame] | 323 | |
| 324 | CodeInfo code_info = osr_method->GetOptimizedCodeInfo(); |
| 325 | StackMapEncoding encoding = code_info.ExtractEncoding(); |
| 326 | |
| 327 | // Find stack map starting at the target dex_pc. |
| 328 | StackMap stack_map = code_info.GetOsrStackMapForDexPc(dex_pc + dex_pc_offset, encoding); |
| 329 | if (!stack_map.IsValid()) { |
| 330 | // There is no OSR stack map for this dex pc offset. Just return to the interpreter in the |
| 331 | // hope that the next branch has one. |
| 332 | return false; |
| 333 | } |
| 334 | |
| 335 | // We found a stack map, now fill the frame with dex register values from the interpreter's |
| 336 | // shadow frame. |
| 337 | DexRegisterMap vreg_map = |
| 338 | code_info.GetDexRegisterMapOf(stack_map, encoding, number_of_vregs); |
| 339 | |
| 340 | frame_size = osr_method->GetFrameSizeInBytes(); |
| 341 | |
| 342 | // Allocate memory to put shadow frame values. The osr stub will copy that memory to |
| 343 | // stack. |
| 344 | // Note that we could pass the shadow frame to the stub, and let it copy the values there, |
| 345 | // but that is engineering complexity not worth the effort for something like OSR. |
| 346 | memory = reinterpret_cast<void**>(malloc(frame_size)); |
| 347 | CHECK(memory != nullptr); |
| 348 | memset(memory, 0, frame_size); |
| 349 | |
| 350 | // Art ABI: ArtMethod is at the bottom of the stack. |
| 351 | memory[0] = method; |
| 352 | |
| 353 | shadow_frame = thread->PopShadowFrame(); |
| 354 | if (!vreg_map.IsValid()) { |
| 355 | // If we don't have a dex register map, then there are no live dex registers at |
| 356 | // this dex pc. |
| 357 | } else { |
| 358 | for (uint16_t vreg = 0; vreg < number_of_vregs; ++vreg) { |
| 359 | DexRegisterLocation::Kind location = |
| 360 | vreg_map.GetLocationKind(vreg, number_of_vregs, code_info, encoding); |
| 361 | if (location == DexRegisterLocation::Kind::kNone) { |
Nicolas Geoffray | c0b2796 | 2016-02-16 12:06:05 +0000 | [diff] [blame] | 362 | // Dex register is dead or uninitialized. |
Nicolas Geoffray | d186dd8 | 2016-02-16 10:03:44 +0000 | [diff] [blame] | 363 | continue; |
| 364 | } |
| 365 | |
| 366 | if (location == DexRegisterLocation::Kind::kConstant) { |
| 367 | // We skip constants because the compiled code knows how to handle them. |
| 368 | continue; |
| 369 | } |
| 370 | |
David Srbecky | 7dc1178 | 2016-02-25 13:23:56 +0000 | [diff] [blame] | 371 | DCHECK_EQ(location, DexRegisterLocation::Kind::kInStack); |
Nicolas Geoffray | d186dd8 | 2016-02-16 10:03:44 +0000 | [diff] [blame] | 372 | |
| 373 | int32_t vreg_value = shadow_frame->GetVReg(vreg); |
| 374 | int32_t slot_offset = vreg_map.GetStackOffsetInBytes(vreg, |
| 375 | number_of_vregs, |
| 376 | code_info, |
| 377 | encoding); |
| 378 | DCHECK_LT(slot_offset, static_cast<int32_t>(frame_size)); |
| 379 | DCHECK_GT(slot_offset, 0); |
| 380 | (reinterpret_cast<int32_t*>(memory))[slot_offset / sizeof(int32_t)] = vreg_value; |
| 381 | } |
| 382 | } |
| 383 | |
| 384 | native_pc = stack_map.GetNativePcOffset(encoding) + osr_method->GetEntryPoint(); |
| 385 | VLOG(jit) << "Jumping to " |
| 386 | << method_name |
| 387 | << "@" |
| 388 | << std::hex << reinterpret_cast<uintptr_t>(native_pc); |
Nicolas Geoffray | b331feb | 2016-02-05 16:51:53 +0000 | [diff] [blame] | 389 | } |
| 390 | |
Nicolas Geoffray | b331feb | 2016-02-05 16:51:53 +0000 | [diff] [blame] | 391 | { |
| 392 | ManagedStack fragment; |
| 393 | thread->PushManagedStackFragment(&fragment); |
| 394 | (*art_quick_osr_stub)(memory, |
| 395 | frame_size, |
| 396 | native_pc, |
| 397 | result, |
Nicolas Geoffray | d186dd8 | 2016-02-16 10:03:44 +0000 | [diff] [blame] | 398 | shorty, |
Nicolas Geoffray | b331feb | 2016-02-05 16:51:53 +0000 | [diff] [blame] | 399 | thread); |
Nicolas Geoffray | d186dd8 | 2016-02-16 10:03:44 +0000 | [diff] [blame] | 400 | |
Nicolas Geoffray | b331feb | 2016-02-05 16:51:53 +0000 | [diff] [blame] | 401 | if (UNLIKELY(thread->GetException() == Thread::GetDeoptimizationException())) { |
| 402 | thread->DeoptimizeWithDeoptimizationException(result); |
| 403 | } |
| 404 | thread->PopManagedStackFragment(fragment); |
| 405 | } |
| 406 | free(memory); |
| 407 | thread->PushShadowFrame(shadow_frame); |
Nicolas Geoffray | d186dd8 | 2016-02-16 10:03:44 +0000 | [diff] [blame] | 408 | VLOG(jit) << "Done running OSR code for " << method_name; |
Nicolas Geoffray | b331feb | 2016-02-05 16:51:53 +0000 | [diff] [blame] | 409 | return true; |
| 410 | } |
| 411 | |
Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 412 | } // namespace jit |
| 413 | } // namespace art |