blob: 3344346f0612f767c47e549a3b266c196360dee2 [file] [log] [blame]
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08001/*
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 Chartiere401d142015-04-22 13:56:20 -070021#include "art_method-inl.h"
Andreas Gampe2a5c4682015-08-14 08:22:54 -070022#include "debugger.h"
Mathieu Chartiere5f13e52015-02-24 09:37:21 -080023#include "entrypoints/runtime_asm_entrypoints.h"
24#include "interpreter/interpreter.h"
25#include "jit_code_cache.h"
26#include "jit_instrumentation.h"
Calin Juravle31f2c152015-10-23 17:56:15 +010027#include "oat_file_manager.h"
Nicolas Geoffrayb331feb2016-02-05 16:51:53 +000028#include "oat_quick_method_header.h"
Calin Juravle31f2c152015-10-23 17:56:15 +010029#include "offline_profiling_info.h"
Calin Juravle4d77b6a2015-12-01 18:38:09 +000030#include "profile_saver.h"
Mathieu Chartiere5f13e52015-02-24 09:37:21 -080031#include "runtime.h"
32#include "runtime_options.h"
Nicolas Geoffrayb331feb2016-02-05 16:51:53 +000033#include "stack_map.h"
Mathieu Chartiere5f13e52015-02-24 09:37:21 -080034#include "utils.h"
35
36namespace art {
37namespace jit {
38
Nicolas Geoffrayd186dd82016-02-16 10:03:44 +000039static constexpr bool kEnableOnStackReplacement = true;
Nicolas Geoffraye8662132016-02-15 10:00:42 +000040
Mathieu Chartier72918ea2016-03-24 11:07:06 -070041// JIT compiler
42void* Jit::jit_library_handle_= nullptr;
43void* Jit::jit_compiler_handle_ = nullptr;
44void* (*Jit::jit_load_)(bool*) = nullptr;
45void (*Jit::jit_unload_)(void*) = nullptr;
46bool (*Jit::jit_compile_method_)(void*, ArtMethod*, Thread*, bool) = nullptr;
47void (*Jit::jit_types_loaded_)(void*, mirror::Class**, size_t count) = nullptr;
48bool Jit::generate_debug_info_ = false;
49
Mathieu Chartiere5f13e52015-02-24 09:37:21 -080050JitOptions* JitOptions::CreateFromRuntimeArguments(const RuntimeArgumentMap& options) {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -080051 auto* jit_options = new JitOptions;
Mathieu Chartier455f67c2015-03-17 13:48:29 -070052 jit_options->use_jit_ = options.GetOrDefault(RuntimeArgumentMap::UseJIT);
Nicolas Geoffray83f080a2016-03-08 16:50:21 +000053
Nicolas Geoffray0a3be162015-11-18 11:15:22 +000054 jit_options->code_cache_initial_capacity_ =
55 options.GetOrDefault(RuntimeArgumentMap::JITCodeCacheInitialCapacity);
56 jit_options->code_cache_max_capacity_ =
57 options.GetOrDefault(RuntimeArgumentMap::JITCodeCacheMaxCapacity);
Mathieu Chartiera4885cb2015-03-09 15:38:54 -070058 jit_options->dump_info_on_shutdown_ =
59 options.Exists(RuntimeArgumentMap::DumpJITInfoOnShutdown);
Calin Juravle31f2c152015-10-23 17:56:15 +010060 jit_options->save_profiling_info_ =
Nicolas Geoffray83f080a2016-03-08 16:50:21 +000061 options.GetOrDefault(RuntimeArgumentMap::JITSaveProfilingInfo);
62
63 jit_options->compile_threshold_ = options.GetOrDefault(RuntimeArgumentMap::JITCompileThreshold);
64 if (jit_options->compile_threshold_ > std::numeric_limits<uint16_t>::max()) {
65 LOG(FATAL) << "Method compilation threshold is above its internal limit.";
66 }
67
68 if (options.Exists(RuntimeArgumentMap::JITWarmupThreshold)) {
69 jit_options->warmup_threshold_ = *options.Get(RuntimeArgumentMap::JITWarmupThreshold);
70 if (jit_options->warmup_threshold_ > std::numeric_limits<uint16_t>::max()) {
71 LOG(FATAL) << "Method warmup threshold is above its internal limit.";
72 }
73 } else {
74 jit_options->warmup_threshold_ = jit_options->compile_threshold_ / 2;
75 }
76
77 if (options.Exists(RuntimeArgumentMap::JITOsrThreshold)) {
78 jit_options->osr_threshold_ = *options.Get(RuntimeArgumentMap::JITOsrThreshold);
79 if (jit_options->osr_threshold_ > std::numeric_limits<uint16_t>::max()) {
80 LOG(FATAL) << "Method on stack replacement threshold is above its internal limit.";
81 }
82 } else {
83 jit_options->osr_threshold_ = jit_options->compile_threshold_ * 2;
84 if (jit_options->osr_threshold_ > std::numeric_limits<uint16_t>::max()) {
85 jit_options->osr_threshold_ = std::numeric_limits<uint16_t>::max();
86 }
87 }
88
Calin Juravleb2771b42016-04-07 17:09:25 +010089 if (options.Exists(RuntimeArgumentMap::JITPriorityThreadWeight)) {
90 jit_options->priority_thread_weight_ =
91 *options.Get(RuntimeArgumentMap::JITPriorityThreadWeight);
92 if (jit_options->priority_thread_weight_ > jit_options->warmup_threshold_) {
93 LOG(FATAL) << "Priority thread weight is above the warmup threshold.";
94 } else if (jit_options->priority_thread_weight_ == 0) {
95 LOG(FATAL) << "Priority thread weight cannot be 0.";
96 }
97 } else {
98 jit_options->priority_thread_weight_ =
99 std::max(jit_options->compile_threshold_ / 2000, static_cast<size_t>(1));
100 }
101
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800102 return jit_options;
103}
104
Calin Juravleb2771b42016-04-07 17:09:25 +0100105bool Jit::ShouldUsePriorityThreadWeight() {
106 // TODO(calin): verify that IsSensitiveThread covers only the cases we are interested on.
107 // In particular if apps can set StrictMode policies for any of their threads, case in which
108 // we need to find another way to track sensitive threads.
109 return Runtime::Current()->InJankPerceptibleProcessState() && Thread::IsSensitiveThread();
110}
111
Mathieu Chartiera4885cb2015-03-09 15:38:54 -0700112void Jit::DumpInfo(std::ostream& os) {
Nicolas Geoffraybcd94c82016-03-03 13:23:33 +0000113 code_cache_->Dump(os);
Mathieu Chartiera4885cb2015-03-09 15:38:54 -0700114 cumulative_timings_.Dump(os);
Nicolas Geoffraya4f81542016-03-08 16:57:48 +0000115 MutexLock mu(Thread::Current(), lock_);
116 memory_use_.PrintMemoryUse(os);
Mathieu Chartiera4885cb2015-03-09 15:38:54 -0700117}
118
119void Jit::AddTimingLogger(const TimingLogger& logger) {
120 cumulative_timings_.AddLogger(logger);
121}
122
Mathieu Chartier72918ea2016-03-24 11:07:06 -0700123Jit::Jit() : dump_info_on_shutdown_(false),
Nicolas Geoffraya25dce92016-01-12 16:41:10 +0000124 cumulative_timings_("JIT timings"),
Nicolas Geoffraya4f81542016-03-08 16:57:48 +0000125 memory_use_("Memory used for compilation", 16),
126 lock_("JIT memory use lock"),
Mathieu Chartier72918ea2016-03-24 11:07:06 -0700127 save_profiling_info_(false) {}
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800128
129Jit* Jit::Create(JitOptions* options, std::string* error_msg) {
130 std::unique_ptr<Jit> jit(new Jit);
Mathieu Chartiera4885cb2015-03-09 15:38:54 -0700131 jit->dump_info_on_shutdown_ = options->DumpJitInfoOnShutdown();
Mathieu Chartier72918ea2016-03-24 11:07:06 -0700132 if (jit_compiler_handle_ == nullptr && !LoadCompiler(error_msg)) {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800133 return nullptr;
134 }
Nicolas Geoffray0a3be162015-11-18 11:15:22 +0000135 jit->code_cache_.reset(JitCodeCache::Create(
Nicolas Geoffraya25dce92016-01-12 16:41:10 +0000136 options->GetCodeCacheInitialCapacity(),
137 options->GetCodeCacheMaxCapacity(),
138 jit->generate_debug_info_,
139 error_msg));
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800140 if (jit->GetCodeCache() == nullptr) {
141 return nullptr;
142 }
Calin Juravle4d77b6a2015-12-01 18:38:09 +0000143 jit->save_profiling_info_ = options->GetSaveProfilingInfo();
Nicolas Geoffraybcd94c82016-03-03 13:23:33 +0000144 VLOG(jit) << "JIT created with initial_capacity="
Nicolas Geoffray0a3be162015-11-18 11:15:22 +0000145 << PrettySize(options->GetCodeCacheInitialCapacity())
146 << ", max_capacity=" << PrettySize(options->GetCodeCacheMaxCapacity())
Calin Juravle4d77b6a2015-12-01 18:38:09 +0000147 << ", compile_threshold=" << options->GetCompileThreshold()
148 << ", save_profiling_info=" << options->GetSaveProfilingInfo();
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800149 return jit.release();
150}
151
Mathieu Chartierc1bc4152016-03-24 17:22:52 -0700152bool Jit::LoadCompilerLibrary(std::string* error_msg) {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800153 jit_library_handle_ = dlopen(
154 kIsDebugBuild ? "libartd-compiler.so" : "libart-compiler.so", RTLD_NOW);
155 if (jit_library_handle_ == nullptr) {
156 std::ostringstream oss;
157 oss << "JIT could not load libart-compiler.so: " << dlerror();
158 *error_msg = oss.str();
159 return false;
160 }
Nicolas Geoffray5b82d332016-02-18 14:22:32 +0000161 jit_load_ = reinterpret_cast<void* (*)(bool*)>(dlsym(jit_library_handle_, "jit_load"));
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800162 if (jit_load_ == nullptr) {
163 dlclose(jit_library_handle_);
164 *error_msg = "JIT couldn't find jit_load entry point";
165 return false;
166 }
167 jit_unload_ = reinterpret_cast<void (*)(void*)>(
168 dlsym(jit_library_handle_, "jit_unload"));
169 if (jit_unload_ == nullptr) {
170 dlclose(jit_library_handle_);
171 *error_msg = "JIT couldn't find jit_unload entry point";
172 return false;
173 }
Nicolas Geoffrayb331feb2016-02-05 16:51:53 +0000174 jit_compile_method_ = reinterpret_cast<bool (*)(void*, ArtMethod*, Thread*, bool)>(
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800175 dlsym(jit_library_handle_, "jit_compile_method"));
176 if (jit_compile_method_ == nullptr) {
177 dlclose(jit_library_handle_);
178 *error_msg = "JIT couldn't find jit_compile_method entry point";
179 return false;
180 }
Tamas Berghammerfffbee42016-01-15 13:09:34 +0000181 jit_types_loaded_ = reinterpret_cast<void (*)(void*, mirror::Class**, size_t)>(
182 dlsym(jit_library_handle_, "jit_types_loaded"));
183 if (jit_types_loaded_ == nullptr) {
Tamas Berghammer160e6df2016-01-05 14:29:02 +0000184 dlclose(jit_library_handle_);
Tamas Berghammerfffbee42016-01-15 13:09:34 +0000185 *error_msg = "JIT couldn't find jit_types_loaded entry point";
Tamas Berghammer160e6df2016-01-05 14:29:02 +0000186 return false;
187 }
Mathieu Chartierc1bc4152016-03-24 17:22:52 -0700188 return true;
189}
190
191bool Jit::LoadCompiler(std::string* error_msg) {
192 if (jit_library_handle_ == nullptr && !LoadCompilerLibrary(error_msg)) {
193 return false;
194 }
Nicolas Geoffraya25dce92016-01-12 16:41:10 +0000195 bool will_generate_debug_symbols = false;
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800196 VLOG(jit) << "Calling JitLoad interpreter_only="
197 << Runtime::Current()->GetInstrumentation()->InterpretOnly();
Nicolas Geoffray5b82d332016-02-18 14:22:32 +0000198 jit_compiler_handle_ = (jit_load_)(&will_generate_debug_symbols);
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800199 if (jit_compiler_handle_ == nullptr) {
200 dlclose(jit_library_handle_);
201 *error_msg = "JIT couldn't load compiler";
202 return false;
203 }
Nicolas Geoffraya25dce92016-01-12 16:41:10 +0000204 generate_debug_info_ = will_generate_debug_symbols;
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800205 return true;
206}
207
Nicolas Geoffrayb331feb2016-02-05 16:51:53 +0000208bool Jit::CompileMethod(ArtMethod* method, Thread* self, bool osr) {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800209 DCHECK(!method->IsRuntimeMethod());
Nicolas Geoffrayd9994f02016-02-11 17:35:55 +0000210
Nicolas Geoffray73be1e82015-09-17 15:22:56 +0100211 // Don't compile the method if it has breakpoints.
Mathieu Chartierd8565452015-03-26 09:41:50 -0700212 if (Dbg::IsDebuggerActive() && Dbg::MethodHasAnyBreakpoints(method)) {
213 VLOG(jit) << "JIT not compiling " << PrettyMethod(method) << " due to breakpoint";
214 return false;
215 }
Nicolas Geoffray73be1e82015-09-17 15:22:56 +0100216
217 // Don't compile the method if we are supposed to be deoptimized.
218 instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation();
219 if (instrumentation->AreAllMethodsDeoptimized() || instrumentation->IsDeoptimized(method)) {
Nicolas Geoffraya42363f2015-12-17 14:57:09 +0000220 VLOG(jit) << "JIT not compiling " << PrettyMethod(method) << " due to deoptimization";
Nicolas Geoffray73be1e82015-09-17 15:22:56 +0100221 return false;
222 }
223
Nicolas Geoffrayd9994f02016-02-11 17:35:55 +0000224 // If we get a request to compile a proxy method, we pass the actual Java method
225 // of that proxy method, as the compiler does not expect a proxy method.
226 ArtMethod* method_to_compile = method->GetInterfaceMethodIfProxy(sizeof(void*));
227 if (!code_cache_->NotifyCompilationOf(method_to_compile, self, osr)) {
Nicolas Geoffray73be1e82015-09-17 15:22:56 +0100228 return false;
229 }
Nicolas Geoffrayd9994f02016-02-11 17:35:55 +0000230 bool success = jit_compile_method_(jit_compiler_handle_, method_to_compile, self, osr);
buzbee454b3b62016-04-07 14:42:47 -0700231 code_cache_->DoneCompiling(method_to_compile, self, osr);
Nicolas Geoffray73be1e82015-09-17 15:22:56 +0100232 return success;
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800233}
234
235void Jit::CreateThreadPool() {
236 CHECK(instrumentation_cache_.get() != nullptr);
237 instrumentation_cache_->CreateThreadPool();
238}
239
240void Jit::DeleteThreadPool() {
241 if (instrumentation_cache_.get() != nullptr) {
Nicolas Geoffray629e9352015-11-04 17:22:16 +0000242 instrumentation_cache_->DeleteThreadPool(Thread::Current());
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800243 }
244}
245
Calin Juravle4d77b6a2015-12-01 18:38:09 +0000246void Jit::StartProfileSaver(const std::string& filename,
Calin Juravlec90bc922016-02-24 10:13:09 +0000247 const std::vector<std::string>& code_paths,
248 const std::string& foreign_dex_profile_path,
249 const std::string& app_dir) {
Calin Juravle4d77b6a2015-12-01 18:38:09 +0000250 if (save_profiling_info_) {
Calin Juravlec90bc922016-02-24 10:13:09 +0000251 ProfileSaver::Start(filename, code_cache_.get(), code_paths, foreign_dex_profile_path, app_dir);
Calin Juravle31f2c152015-10-23 17:56:15 +0100252 }
Calin Juravle4d77b6a2015-12-01 18:38:09 +0000253}
254
255void Jit::StopProfileSaver() {
256 if (save_profiling_info_ && ProfileSaver::IsStarted()) {
257 ProfileSaver::Stop();
Calin Juravle31f2c152015-10-23 17:56:15 +0100258 }
259}
260
Siva Chandra05d24152016-01-05 17:43:17 -0800261bool Jit::JitAtFirstUse() {
262 if (instrumentation_cache_ != nullptr) {
263 return instrumentation_cache_->HotMethodThreshold() == 0;
264 }
265 return false;
266}
267
Nicolas Geoffray35122442016-03-02 12:05:30 +0000268bool Jit::CanInvokeCompiledCode(ArtMethod* method) {
269 return code_cache_->ContainsPc(method->GetEntryPointFromQuickCompiledCode());
270}
271
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800272Jit::~Jit() {
Calin Juravle4d77b6a2015-12-01 18:38:09 +0000273 DCHECK(!save_profiling_info_ || !ProfileSaver::IsStarted());
Mathieu Chartiera4885cb2015-03-09 15:38:54 -0700274 if (dump_info_on_shutdown_) {
275 DumpInfo(LOG(INFO));
276 }
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800277 DeleteThreadPool();
278 if (jit_compiler_handle_ != nullptr) {
279 jit_unload_(jit_compiler_handle_);
Mathieu Chartier72918ea2016-03-24 11:07:06 -0700280 jit_compiler_handle_ = nullptr;
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800281 }
282 if (jit_library_handle_ != nullptr) {
283 dlclose(jit_library_handle_);
Mathieu Chartier72918ea2016-03-24 11:07:06 -0700284 jit_library_handle_ = nullptr;
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800285 }
286}
287
Nicolas Geoffrayb331feb2016-02-05 16:51:53 +0000288void Jit::CreateInstrumentationCache(size_t compile_threshold,
289 size_t warmup_threshold,
Calin Juravleb2771b42016-04-07 17:09:25 +0100290 size_t osr_threshold,
291 uint16_t priority_thread_weight) {
Nicolas Geoffray5550ca82015-08-21 18:38:30 +0100292 instrumentation_cache_.reset(
Calin Juravleb2771b42016-04-07 17:09:25 +0100293 new jit::JitInstrumentationCache(compile_threshold,
294 warmup_threshold,
295 osr_threshold,
296 priority_thread_weight));
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800297}
298
Tamas Berghammer160e6df2016-01-05 14:29:02 +0000299void Jit::NewTypeLoadedIfUsingJit(mirror::Class* type) {
300 jit::Jit* jit = Runtime::Current()->GetJit();
301 if (jit != nullptr && jit->generate_debug_info_) {
Tamas Berghammerfffbee42016-01-15 13:09:34 +0000302 DCHECK(jit->jit_types_loaded_ != nullptr);
303 jit->jit_types_loaded_(jit->jit_compiler_handle_, &type, 1);
304 }
305}
306
307void Jit::DumpTypeInfoForLoadedTypes(ClassLinker* linker) {
308 struct CollectClasses : public ClassVisitor {
Mathieu Chartier1aa8ec22016-02-01 10:34:47 -0800309 bool operator()(mirror::Class* klass) override {
Tamas Berghammerfffbee42016-01-15 13:09:34 +0000310 classes_.push_back(klass);
311 return true;
312 }
Mathieu Chartier9b1c9b72016-02-02 10:09:58 -0800313 std::vector<mirror::Class*> classes_;
Tamas Berghammerfffbee42016-01-15 13:09:34 +0000314 };
315
316 if (generate_debug_info_) {
317 ScopedObjectAccess so(Thread::Current());
318
319 CollectClasses visitor;
320 linker->VisitClasses(&visitor);
321 jit_types_loaded_(jit_compiler_handle_, visitor.classes_.data(), visitor.classes_.size());
Tamas Berghammer160e6df2016-01-05 14:29:02 +0000322 }
323}
324
Nicolas Geoffrayb331feb2016-02-05 16:51:53 +0000325extern "C" void art_quick_osr_stub(void** stack,
326 uint32_t stack_size_in_bytes,
327 const uint8_t* native_pc,
328 JValue* result,
329 const char* shorty,
330 Thread* self);
331
332bool Jit::MaybeDoOnStackReplacement(Thread* thread,
333 ArtMethod* method,
334 uint32_t dex_pc,
335 int32_t dex_pc_offset,
336 JValue* result) {
Nicolas Geoffraye8662132016-02-15 10:00:42 +0000337 if (!kEnableOnStackReplacement) {
338 return false;
339 }
340
Nicolas Geoffrayb331feb2016-02-05 16:51:53 +0000341 Jit* jit = Runtime::Current()->GetJit();
342 if (jit == nullptr) {
343 return false;
344 }
345
Nicolas Geoffrayb88d59e2016-02-17 11:31:49 +0000346 if (UNLIKELY(__builtin_frame_address(0) < thread->GetStackEnd())) {
347 // Don't attempt to do an OSR if we are close to the stack limit. Since
348 // the interpreter frames are still on stack, OSR has the potential
349 // to stack overflow even for a simple loop.
350 // b/27094810.
351 return false;
352 }
353
Nicolas Geoffrayd9bc4332016-02-05 23:32:25 +0000354 // Get the actual Java method if this method is from a proxy class. The compiler
355 // and the JIT code cache do not expect methods from proxy classes.
356 method = method->GetInterfaceMethodIfProxy(sizeof(void*));
357
Nicolas Geoffrayb331feb2016-02-05 16:51:53 +0000358 // Cheap check if the method has been compiled already. That's an indicator that we should
359 // osr into it.
360 if (!jit->GetCodeCache()->ContainsPc(method->GetEntryPointFromQuickCompiledCode())) {
361 return false;
362 }
363
Nicolas Geoffrayc0b27962016-02-16 12:06:05 +0000364 // Fetch some data before looking up for an OSR method. We don't want thread
365 // suspension once we hold an OSR method, as the JIT code cache could delete the OSR
366 // method while we are being suspended.
Nicolas Geoffrayb331feb2016-02-05 16:51:53 +0000367 const size_t number_of_vregs = method->GetCodeItem()->registers_size_;
Nicolas Geoffrayd186dd82016-02-16 10:03:44 +0000368 const char* shorty = method->GetShorty();
369 std::string method_name(VLOG_IS_ON(jit) ? PrettyMethod(method) : "");
370 void** memory = nullptr;
371 size_t frame_size = 0;
372 ShadowFrame* shadow_frame = nullptr;
373 const uint8_t* native_pc = nullptr;
Nicolas Geoffrayb331feb2016-02-05 16:51:53 +0000374
Nicolas Geoffrayd186dd82016-02-16 10:03:44 +0000375 {
376 ScopedAssertNoThreadSuspension sts(thread, "Holding OSR method");
377 const OatQuickMethodHeader* osr_method = jit->GetCodeCache()->LookupOsrMethodHeader(method);
378 if (osr_method == nullptr) {
379 // No osr method yet, just return to the interpreter.
380 return false;
Nicolas Geoffrayb331feb2016-02-05 16:51:53 +0000381 }
Nicolas Geoffrayd186dd82016-02-16 10:03:44 +0000382
383 CodeInfo code_info = osr_method->GetOptimizedCodeInfo();
David Srbecky09ed0982016-02-12 21:58:43 +0000384 CodeInfoEncoding encoding = code_info.ExtractEncoding();
Nicolas Geoffrayd186dd82016-02-16 10:03:44 +0000385
386 // Find stack map starting at the target dex_pc.
387 StackMap stack_map = code_info.GetOsrStackMapForDexPc(dex_pc + dex_pc_offset, encoding);
388 if (!stack_map.IsValid()) {
389 // There is no OSR stack map for this dex pc offset. Just return to the interpreter in the
390 // hope that the next branch has one.
391 return false;
392 }
393
394 // We found a stack map, now fill the frame with dex register values from the interpreter's
395 // shadow frame.
396 DexRegisterMap vreg_map =
397 code_info.GetDexRegisterMapOf(stack_map, encoding, number_of_vregs);
398
399 frame_size = osr_method->GetFrameSizeInBytes();
400
401 // Allocate memory to put shadow frame values. The osr stub will copy that memory to
402 // stack.
403 // Note that we could pass the shadow frame to the stub, and let it copy the values there,
404 // but that is engineering complexity not worth the effort for something like OSR.
405 memory = reinterpret_cast<void**>(malloc(frame_size));
406 CHECK(memory != nullptr);
407 memset(memory, 0, frame_size);
408
409 // Art ABI: ArtMethod is at the bottom of the stack.
410 memory[0] = method;
411
412 shadow_frame = thread->PopShadowFrame();
413 if (!vreg_map.IsValid()) {
414 // If we don't have a dex register map, then there are no live dex registers at
415 // this dex pc.
416 } else {
417 for (uint16_t vreg = 0; vreg < number_of_vregs; ++vreg) {
418 DexRegisterLocation::Kind location =
419 vreg_map.GetLocationKind(vreg, number_of_vregs, code_info, encoding);
420 if (location == DexRegisterLocation::Kind::kNone) {
Nicolas Geoffrayc0b27962016-02-16 12:06:05 +0000421 // Dex register is dead or uninitialized.
Nicolas Geoffrayd186dd82016-02-16 10:03:44 +0000422 continue;
423 }
424
425 if (location == DexRegisterLocation::Kind::kConstant) {
426 // We skip constants because the compiled code knows how to handle them.
427 continue;
428 }
429
David Srbecky7dc11782016-02-25 13:23:56 +0000430 DCHECK_EQ(location, DexRegisterLocation::Kind::kInStack);
Nicolas Geoffrayd186dd82016-02-16 10:03:44 +0000431
432 int32_t vreg_value = shadow_frame->GetVReg(vreg);
433 int32_t slot_offset = vreg_map.GetStackOffsetInBytes(vreg,
434 number_of_vregs,
435 code_info,
436 encoding);
437 DCHECK_LT(slot_offset, static_cast<int32_t>(frame_size));
438 DCHECK_GT(slot_offset, 0);
439 (reinterpret_cast<int32_t*>(memory))[slot_offset / sizeof(int32_t)] = vreg_value;
440 }
441 }
442
David Srbecky09ed0982016-02-12 21:58:43 +0000443 native_pc = stack_map.GetNativePcOffset(encoding.stack_map_encoding) +
444 osr_method->GetEntryPoint();
Nicolas Geoffrayd186dd82016-02-16 10:03:44 +0000445 VLOG(jit) << "Jumping to "
446 << method_name
447 << "@"
448 << std::hex << reinterpret_cast<uintptr_t>(native_pc);
Nicolas Geoffrayb331feb2016-02-05 16:51:53 +0000449 }
450
Nicolas Geoffrayb331feb2016-02-05 16:51:53 +0000451 {
452 ManagedStack fragment;
453 thread->PushManagedStackFragment(&fragment);
454 (*art_quick_osr_stub)(memory,
455 frame_size,
456 native_pc,
457 result,
Nicolas Geoffrayd186dd82016-02-16 10:03:44 +0000458 shorty,
Nicolas Geoffrayb331feb2016-02-05 16:51:53 +0000459 thread);
Nicolas Geoffrayd186dd82016-02-16 10:03:44 +0000460
Nicolas Geoffrayb331feb2016-02-05 16:51:53 +0000461 if (UNLIKELY(thread->GetException() == Thread::GetDeoptimizationException())) {
462 thread->DeoptimizeWithDeoptimizationException(result);
463 }
464 thread->PopManagedStackFragment(fragment);
465 }
466 free(memory);
467 thread->PushShadowFrame(shadow_frame);
Nicolas Geoffrayd186dd82016-02-16 10:03:44 +0000468 VLOG(jit) << "Done running OSR code for " << method_name;
Nicolas Geoffrayb331feb2016-02-05 16:51:53 +0000469 return true;
470}
471
Nicolas Geoffraya4f81542016-03-08 16:57:48 +0000472void Jit::AddMemoryUsage(ArtMethod* method, size_t bytes) {
473 if (bytes > 4 * MB) {
474 LOG(INFO) << "Compiler allocated "
475 << PrettySize(bytes)
476 << " to compile "
477 << PrettyMethod(method);
478 }
479 MutexLock mu(Thread::Current(), lock_);
480 memory_use_.AddValue(bytes);
481}
482
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800483} // namespace jit
484} // namespace art