blob: 278bc57412ffddee962521ae13acc31a5fd2334b [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 Gampe542451c2016-07-26 09:02:02 -070022#include "base/enums.h"
Andreas Gampe57943812017-12-06 21:39:13 -080023#include "base/logging.h" // For VLOG.
Andreas Gampe0897e1c2017-05-16 08:36:56 -070024#include "base/memory_tool.h"
Andreas Gampedcc528d2017-12-07 13:37:10 -080025#include "base/runtime_debug.h"
Andreas Gampe2a5c4682015-08-14 08:22:54 -070026#include "debugger.h"
Mathieu Chartiere5f13e52015-02-24 09:37:21 -080027#include "entrypoints/runtime_asm_entrypoints.h"
28#include "interpreter/interpreter.h"
Andreas Gampec15a2f42017-04-21 12:09:39 -070029#include "java_vm_ext.h"
Mathieu Chartiere5f13e52015-02-24 09:37:21 -080030#include "jit_code_cache.h"
Calin Juravle31f2c152015-10-23 17:56:15 +010031#include "oat_file_manager.h"
Nicolas Geoffrayb331feb2016-02-05 16:51:53 +000032#include "oat_quick_method_header.h"
Calin Juravle33083d62017-01-18 15:29:12 -080033#include "profile_compilation_info.h"
Calin Juravle4d77b6a2015-12-01 18:38:09 +000034#include "profile_saver.h"
Mathieu Chartiere5f13e52015-02-24 09:37:21 -080035#include "runtime.h"
36#include "runtime_options.h"
Andreas Gampe513061a2017-06-01 09:17:34 -070037#include "stack.h"
Nicolas Geoffrayb331feb2016-02-05 16:51:53 +000038#include "stack_map.h"
Andreas Gampe513061a2017-06-01 09:17:34 -070039#include "thread-inl.h"
Nicolas Geoffray274fe4a2016-04-12 16:33:24 +010040#include "thread_list.h"
Mathieu Chartiere5f13e52015-02-24 09:37:21 -080041#include "utils.h"
42
43namespace art {
44namespace jit {
45
Nicolas Geoffrayd186dd82016-02-16 10:03:44 +000046static constexpr bool kEnableOnStackReplacement = true;
Nicolas Geoffray274fe4a2016-04-12 16:33:24 +010047// At what priority to schedule jit threads. 9 is the lowest foreground priority on device.
48static constexpr int kJitPoolThreadPthreadPriority = 9;
Nicolas Geoffraye8662132016-02-15 10:00:42 +000049
Andreas Gampe7897cec2017-07-19 16:28:59 -070050// Different compilation threshold constants. These can be overridden on the command line.
51static constexpr size_t kJitDefaultCompileThreshold = 10000; // Non-debug default.
52static constexpr size_t kJitStressDefaultCompileThreshold = 100; // Fast-debug build.
53static constexpr size_t kJitSlowStressDefaultCompileThreshold = 2; // Slow-debug build.
54
Mathieu Chartier72918ea2016-03-24 11:07:06 -070055// JIT compiler
Igor Murashkin2ffb7032017-11-08 13:35:21 -080056void* Jit::jit_library_handle_ = nullptr;
Mathieu Chartier72918ea2016-03-24 11:07:06 -070057void* Jit::jit_compiler_handle_ = nullptr;
58void* (*Jit::jit_load_)(bool*) = nullptr;
59void (*Jit::jit_unload_)(void*) = nullptr;
60bool (*Jit::jit_compile_method_)(void*, ArtMethod*, Thread*, bool) = nullptr;
61void (*Jit::jit_types_loaded_)(void*, mirror::Class**, size_t count) = nullptr;
62bool Jit::generate_debug_info_ = false;
63
Andreas Gampe7897cec2017-07-19 16:28:59 -070064struct StressModeHelper {
65 DECLARE_RUNTIME_DEBUG_FLAG(kSlowMode);
66};
67DEFINE_RUNTIME_DEBUG_FLAG(StressModeHelper, kSlowMode);
68
Mathieu Chartiere5f13e52015-02-24 09:37:21 -080069JitOptions* JitOptions::CreateFromRuntimeArguments(const RuntimeArgumentMap& options) {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -080070 auto* jit_options = new JitOptions;
Calin Juravleffc87072016-04-20 14:22:09 +010071 jit_options->use_jit_compilation_ = options.GetOrDefault(RuntimeArgumentMap::UseJitCompilation);
Nicolas Geoffray83f080a2016-03-08 16:50:21 +000072
Nicolas Geoffray0a3be162015-11-18 11:15:22 +000073 jit_options->code_cache_initial_capacity_ =
74 options.GetOrDefault(RuntimeArgumentMap::JITCodeCacheInitialCapacity);
75 jit_options->code_cache_max_capacity_ =
76 options.GetOrDefault(RuntimeArgumentMap::JITCodeCacheMaxCapacity);
Mathieu Chartiera4885cb2015-03-09 15:38:54 -070077 jit_options->dump_info_on_shutdown_ =
78 options.Exists(RuntimeArgumentMap::DumpJITInfoOnShutdown);
Calin Juravle138dbff2016-06-28 19:36:58 +010079 jit_options->profile_saver_options_ =
80 options.GetOrDefault(RuntimeArgumentMap::ProfileSaverOpts);
Nicolas Geoffray83f080a2016-03-08 16:50:21 +000081
Andreas Gampe7897cec2017-07-19 16:28:59 -070082 if (options.Exists(RuntimeArgumentMap::JITCompileThreshold)) {
83 jit_options->compile_threshold_ = *options.Get(RuntimeArgumentMap::JITCompileThreshold);
84 } else {
85 jit_options->compile_threshold_ =
86 kIsDebugBuild
87 ? (StressModeHelper::kSlowMode
88 ? kJitSlowStressDefaultCompileThreshold
89 : kJitStressDefaultCompileThreshold)
90 : kJitDefaultCompileThreshold;
91 }
Nicolas Geoffray83f080a2016-03-08 16:50:21 +000092 if (jit_options->compile_threshold_ > std::numeric_limits<uint16_t>::max()) {
93 LOG(FATAL) << "Method compilation threshold is above its internal limit.";
94 }
95
96 if (options.Exists(RuntimeArgumentMap::JITWarmupThreshold)) {
97 jit_options->warmup_threshold_ = *options.Get(RuntimeArgumentMap::JITWarmupThreshold);
98 if (jit_options->warmup_threshold_ > std::numeric_limits<uint16_t>::max()) {
99 LOG(FATAL) << "Method warmup threshold is above its internal limit.";
100 }
101 } else {
102 jit_options->warmup_threshold_ = jit_options->compile_threshold_ / 2;
103 }
104
105 if (options.Exists(RuntimeArgumentMap::JITOsrThreshold)) {
106 jit_options->osr_threshold_ = *options.Get(RuntimeArgumentMap::JITOsrThreshold);
107 if (jit_options->osr_threshold_ > std::numeric_limits<uint16_t>::max()) {
108 LOG(FATAL) << "Method on stack replacement threshold is above its internal limit.";
109 }
110 } else {
111 jit_options->osr_threshold_ = jit_options->compile_threshold_ * 2;
112 if (jit_options->osr_threshold_ > std::numeric_limits<uint16_t>::max()) {
113 jit_options->osr_threshold_ = std::numeric_limits<uint16_t>::max();
114 }
115 }
116
Calin Juravleb2771b42016-04-07 17:09:25 +0100117 if (options.Exists(RuntimeArgumentMap::JITPriorityThreadWeight)) {
118 jit_options->priority_thread_weight_ =
119 *options.Get(RuntimeArgumentMap::JITPriorityThreadWeight);
120 if (jit_options->priority_thread_weight_ > jit_options->warmup_threshold_) {
121 LOG(FATAL) << "Priority thread weight is above the warmup threshold.";
122 } else if (jit_options->priority_thread_weight_ == 0) {
123 LOG(FATAL) << "Priority thread weight cannot be 0.";
124 }
125 } else {
Nicolas Geoffray71cd50f2016-04-14 15:00:33 +0100126 jit_options->priority_thread_weight_ = std::max(
127 jit_options->warmup_threshold_ / Jit::kDefaultPriorityThreadWeightRatio,
128 static_cast<size_t>(1));
Calin Juravleb2771b42016-04-07 17:09:25 +0100129 }
130
Calin Juravle155ff3d2016-04-27 14:14:58 +0100131 if (options.Exists(RuntimeArgumentMap::JITInvokeTransitionWeight)) {
Nicolas Geoffray7c9f3ba2016-05-06 16:52:36 +0100132 jit_options->invoke_transition_weight_ =
133 *options.Get(RuntimeArgumentMap::JITInvokeTransitionWeight);
Calin Juravle155ff3d2016-04-27 14:14:58 +0100134 if (jit_options->invoke_transition_weight_ > jit_options->warmup_threshold_) {
135 LOG(FATAL) << "Invoke transition weight is above the warmup threshold.";
136 } else if (jit_options->invoke_transition_weight_ == 0) {
Nicolas Geoffray7c9f3ba2016-05-06 16:52:36 +0100137 LOG(FATAL) << "Invoke transition weight cannot be 0.";
Calin Juravle155ff3d2016-04-27 14:14:58 +0100138 }
Calin Juravle155ff3d2016-04-27 14:14:58 +0100139 } else {
140 jit_options->invoke_transition_weight_ = std::max(
141 jit_options->warmup_threshold_ / Jit::kDefaultInvokeTransitionWeightRatio,
Mathieu Chartier6beced42016-11-15 15:51:31 -0800142 static_cast<size_t>(1));
Calin Juravle155ff3d2016-04-27 14:14:58 +0100143 }
144
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800145 return jit_options;
146}
147
Vladimir Markoa710d912017-09-12 14:56:07 +0100148bool Jit::ShouldUsePriorityThreadWeight(Thread* self) {
149 return self->IsJitSensitiveThread() && Runtime::Current()->InJankPerceptibleProcessState();
Calin Juravleb2771b42016-04-07 17:09:25 +0100150}
151
Mathieu Chartiera4885cb2015-03-09 15:38:54 -0700152void Jit::DumpInfo(std::ostream& os) {
Nicolas Geoffraybcd94c82016-03-03 13:23:33 +0000153 code_cache_->Dump(os);
Mathieu Chartiera4885cb2015-03-09 15:38:54 -0700154 cumulative_timings_.Dump(os);
Nicolas Geoffraya4f81542016-03-08 16:57:48 +0000155 MutexLock mu(Thread::Current(), lock_);
156 memory_use_.PrintMemoryUse(os);
Mathieu Chartiera4885cb2015-03-09 15:38:54 -0700157}
158
Calin Juravleb8e69992016-03-09 15:37:48 +0000159void Jit::DumpForSigQuit(std::ostream& os) {
160 DumpInfo(os);
161 ProfileSaver::DumpInstanceInfo(os);
162}
163
Mathieu Chartiera4885cb2015-03-09 15:38:54 -0700164void Jit::AddTimingLogger(const TimingLogger& logger) {
165 cumulative_timings_.AddLogger(logger);
166}
167
Mathieu Chartier72918ea2016-03-24 11:07:06 -0700168Jit::Jit() : dump_info_on_shutdown_(false),
Nicolas Geoffraya25dce92016-01-12 16:41:10 +0000169 cumulative_timings_("JIT timings"),
Nicolas Geoffraya4f81542016-03-08 16:57:48 +0000170 memory_use_("Memory used for compilation", 16),
171 lock_("JIT memory use lock"),
Andreas Gampe4471e4f2017-01-30 16:40:49 +0000172 use_jit_compilation_(true),
173 hot_method_threshold_(0),
174 warm_method_threshold_(0),
175 osr_method_threshold_(0),
176 priority_thread_weight_(0),
177 invoke_transition_weight_(0) {}
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800178
179Jit* Jit::Create(JitOptions* options, std::string* error_msg) {
Calin Juravle138dbff2016-06-28 19:36:58 +0100180 DCHECK(options->UseJitCompilation() || options->GetProfileSaverOptions().IsEnabled());
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800181 std::unique_ptr<Jit> jit(new Jit);
Mathieu Chartiera4885cb2015-03-09 15:38:54 -0700182 jit->dump_info_on_shutdown_ = options->DumpJitInfoOnShutdown();
Mathieu Chartier72918ea2016-03-24 11:07:06 -0700183 if (jit_compiler_handle_ == nullptr && !LoadCompiler(error_msg)) {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800184 return nullptr;
185 }
Nicolas Geoffray0a3be162015-11-18 11:15:22 +0000186 jit->code_cache_.reset(JitCodeCache::Create(
Nicolas Geoffraya25dce92016-01-12 16:41:10 +0000187 options->GetCodeCacheInitialCapacity(),
188 options->GetCodeCacheMaxCapacity(),
189 jit->generate_debug_info_,
190 error_msg));
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800191 if (jit->GetCodeCache() == nullptr) {
192 return nullptr;
193 }
Calin Juravleffc87072016-04-20 14:22:09 +0100194 jit->use_jit_compilation_ = options->UseJitCompilation();
Calin Juravle138dbff2016-06-28 19:36:58 +0100195 jit->profile_saver_options_ = options->GetProfileSaverOptions();
Nicolas Geoffraybcd94c82016-03-03 13:23:33 +0000196 VLOG(jit) << "JIT created with initial_capacity="
Nicolas Geoffray0a3be162015-11-18 11:15:22 +0000197 << PrettySize(options->GetCodeCacheInitialCapacity())
198 << ", max_capacity=" << PrettySize(options->GetCodeCacheMaxCapacity())
Calin Juravle4d77b6a2015-12-01 18:38:09 +0000199 << ", compile_threshold=" << options->GetCompileThreshold()
Calin Juravle138dbff2016-06-28 19:36:58 +0100200 << ", profile_saver_options=" << options->GetProfileSaverOptions();
Nicolas Geoffray274fe4a2016-04-12 16:33:24 +0100201
202
203 jit->hot_method_threshold_ = options->GetCompileThreshold();
204 jit->warm_method_threshold_ = options->GetWarmupThreshold();
205 jit->osr_method_threshold_ = options->GetOsrThreshold();
Nicolas Geoffrayba6aae02016-04-14 14:17:29 +0100206 jit->priority_thread_weight_ = options->GetPriorityThreadWeight();
Calin Juravle155ff3d2016-04-27 14:14:58 +0100207 jit->invoke_transition_weight_ = options->GetInvokeTransitionWeight();
Nicolas Geoffray274fe4a2016-04-12 16:33:24 +0100208
209 jit->CreateThreadPool();
210
211 // Notify native debugger about the classes already loaded before the creation of the jit.
212 jit->DumpTypeInfoForLoadedTypes(Runtime::Current()->GetClassLinker());
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800213 return jit.release();
214}
215
Mathieu Chartierc1bc4152016-03-24 17:22:52 -0700216bool Jit::LoadCompilerLibrary(std::string* error_msg) {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800217 jit_library_handle_ = dlopen(
218 kIsDebugBuild ? "libartd-compiler.so" : "libart-compiler.so", RTLD_NOW);
219 if (jit_library_handle_ == nullptr) {
220 std::ostringstream oss;
221 oss << "JIT could not load libart-compiler.so: " << dlerror();
222 *error_msg = oss.str();
223 return false;
224 }
Nicolas Geoffray5b82d332016-02-18 14:22:32 +0000225 jit_load_ = reinterpret_cast<void* (*)(bool*)>(dlsym(jit_library_handle_, "jit_load"));
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800226 if (jit_load_ == nullptr) {
227 dlclose(jit_library_handle_);
228 *error_msg = "JIT couldn't find jit_load entry point";
229 return false;
230 }
231 jit_unload_ = reinterpret_cast<void (*)(void*)>(
232 dlsym(jit_library_handle_, "jit_unload"));
233 if (jit_unload_ == nullptr) {
234 dlclose(jit_library_handle_);
235 *error_msg = "JIT couldn't find jit_unload entry point";
236 return false;
237 }
Nicolas Geoffrayb331feb2016-02-05 16:51:53 +0000238 jit_compile_method_ = reinterpret_cast<bool (*)(void*, ArtMethod*, Thread*, bool)>(
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800239 dlsym(jit_library_handle_, "jit_compile_method"));
240 if (jit_compile_method_ == nullptr) {
241 dlclose(jit_library_handle_);
242 *error_msg = "JIT couldn't find jit_compile_method entry point";
243 return false;
244 }
Tamas Berghammerfffbee42016-01-15 13:09:34 +0000245 jit_types_loaded_ = reinterpret_cast<void (*)(void*, mirror::Class**, size_t)>(
246 dlsym(jit_library_handle_, "jit_types_loaded"));
247 if (jit_types_loaded_ == nullptr) {
Tamas Berghammer160e6df2016-01-05 14:29:02 +0000248 dlclose(jit_library_handle_);
Tamas Berghammerfffbee42016-01-15 13:09:34 +0000249 *error_msg = "JIT couldn't find jit_types_loaded entry point";
Tamas Berghammer160e6df2016-01-05 14:29:02 +0000250 return false;
251 }
Mathieu Chartierc1bc4152016-03-24 17:22:52 -0700252 return true;
253}
254
255bool Jit::LoadCompiler(std::string* error_msg) {
256 if (jit_library_handle_ == nullptr && !LoadCompilerLibrary(error_msg)) {
257 return false;
258 }
Nicolas Geoffraya25dce92016-01-12 16:41:10 +0000259 bool will_generate_debug_symbols = false;
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800260 VLOG(jit) << "Calling JitLoad interpreter_only="
261 << Runtime::Current()->GetInstrumentation()->InterpretOnly();
Nicolas Geoffray5b82d332016-02-18 14:22:32 +0000262 jit_compiler_handle_ = (jit_load_)(&will_generate_debug_symbols);
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800263 if (jit_compiler_handle_ == nullptr) {
264 dlclose(jit_library_handle_);
265 *error_msg = "JIT couldn't load compiler";
266 return false;
267 }
Nicolas Geoffraya25dce92016-01-12 16:41:10 +0000268 generate_debug_info_ = will_generate_debug_symbols;
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800269 return true;
270}
271
Nicolas Geoffrayb331feb2016-02-05 16:51:53 +0000272bool Jit::CompileMethod(ArtMethod* method, Thread* self, bool osr) {
Calin Juravleffc87072016-04-20 14:22:09 +0100273 DCHECK(Runtime::Current()->UseJitCompilation());
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800274 DCHECK(!method->IsRuntimeMethod());
Nicolas Geoffrayd9994f02016-02-11 17:35:55 +0000275
Alex Light0fa17862017-10-24 13:43:05 -0700276 RuntimeCallbacks* cb = Runtime::Current()->GetRuntimeCallbacks();
Nicolas Geoffray73be1e82015-09-17 15:22:56 +0100277 // Don't compile the method if it has breakpoints.
Alex Light0fa17862017-10-24 13:43:05 -0700278 if (cb->IsMethodBeingInspected(method) && !cb->IsMethodSafeToJit(method)) {
279 VLOG(jit) << "JIT not compiling " << method->PrettyMethod()
280 << " due to not being safe to jit according to runtime-callbacks. For example, there"
281 << " could be breakpoints in this method.";
Mathieu Chartierd8565452015-03-26 09:41:50 -0700282 return false;
283 }
Nicolas Geoffray73be1e82015-09-17 15:22:56 +0100284
285 // Don't compile the method if we are supposed to be deoptimized.
286 instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation();
287 if (instrumentation->AreAllMethodsDeoptimized() || instrumentation->IsDeoptimized(method)) {
David Sehr709b0702016-10-13 09:12:37 -0700288 VLOG(jit) << "JIT not compiling " << method->PrettyMethod() << " due to deoptimization";
Nicolas Geoffray73be1e82015-09-17 15:22:56 +0100289 return false;
290 }
291
Nicolas Geoffrayd9994f02016-02-11 17:35:55 +0000292 // If we get a request to compile a proxy method, we pass the actual Java method
293 // of that proxy method, as the compiler does not expect a proxy method.
Andreas Gampe542451c2016-07-26 09:02:02 -0700294 ArtMethod* method_to_compile = method->GetInterfaceMethodIfProxy(kRuntimePointerSize);
Nicolas Geoffrayd9994f02016-02-11 17:35:55 +0000295 if (!code_cache_->NotifyCompilationOf(method_to_compile, self, osr)) {
Nicolas Geoffray73be1e82015-09-17 15:22:56 +0100296 return false;
297 }
Nicolas Geoffray71cd50f2016-04-14 15:00:33 +0100298
299 VLOG(jit) << "Compiling method "
David Sehr709b0702016-10-13 09:12:37 -0700300 << ArtMethod::PrettyMethod(method_to_compile)
Nicolas Geoffray71cd50f2016-04-14 15:00:33 +0100301 << " osr=" << std::boolalpha << osr;
Nicolas Geoffrayd9994f02016-02-11 17:35:55 +0000302 bool success = jit_compile_method_(jit_compiler_handle_, method_to_compile, self, osr);
buzbee454b3b62016-04-07 14:42:47 -0700303 code_cache_->DoneCompiling(method_to_compile, self, osr);
Nicolas Geoffray71cd50f2016-04-14 15:00:33 +0100304 if (!success) {
305 VLOG(jit) << "Failed to compile method "
David Sehr709b0702016-10-13 09:12:37 -0700306 << ArtMethod::PrettyMethod(method_to_compile)
Nicolas Geoffray71cd50f2016-04-14 15:00:33 +0100307 << " osr=" << std::boolalpha << osr;
308 }
Andreas Gampe320ba912016-11-18 17:39:45 -0800309 if (kIsDebugBuild) {
310 if (self->IsExceptionPending()) {
311 mirror::Throwable* exception = self->GetException();
312 LOG(FATAL) << "No pending exception expected after compiling "
313 << ArtMethod::PrettyMethod(method)
314 << ": "
315 << exception->Dump();
316 }
317 }
Nicolas Geoffray73be1e82015-09-17 15:22:56 +0100318 return success;
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800319}
320
321void Jit::CreateThreadPool() {
Nicolas Geoffray274fe4a2016-04-12 16:33:24 +0100322 // There is a DCHECK in the 'AddSamples' method to ensure the tread pool
323 // is not null when we instrument.
Andreas Gampe4471e4f2017-01-30 16:40:49 +0000324
325 // We need peers as we may report the JIT thread, e.g., in the debugger.
326 constexpr bool kJitPoolNeedsPeers = true;
327 thread_pool_.reset(new ThreadPool("Jit thread pool", 1, kJitPoolNeedsPeers));
328
Nicolas Geoffray274fe4a2016-04-12 16:33:24 +0100329 thread_pool_->SetPthreadPriority(kJitPoolThreadPthreadPriority);
Nicolas Geoffray021c5f22016-12-16 11:22:05 +0000330 Start();
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800331}
332
333void Jit::DeleteThreadPool() {
Nicolas Geoffray274fe4a2016-04-12 16:33:24 +0100334 Thread* self = Thread::Current();
335 DCHECK(Runtime::Current()->IsShuttingDown(self));
336 if (thread_pool_ != nullptr) {
Andreas Gampe0897e1c2017-05-16 08:36:56 -0700337 std::unique_ptr<ThreadPool> pool;
Nicolas Geoffray274fe4a2016-04-12 16:33:24 +0100338 {
339 ScopedSuspendAll ssa(__FUNCTION__);
340 // Clear thread_pool_ field while the threads are suspended.
341 // A mutator in the 'AddSamples' method will check against it.
Andreas Gampe0897e1c2017-05-16 08:36:56 -0700342 pool = std::move(thread_pool_);
Nicolas Geoffray274fe4a2016-04-12 16:33:24 +0100343 }
Andreas Gampe0897e1c2017-05-16 08:36:56 -0700344
345 // When running sanitized, let all tasks finish to not leak. Otherwise just clear the queue.
346 if (!RUNNING_ON_MEMORY_TOOL) {
347 pool->StopWorkers(self);
348 pool->RemoveAllTasks(self);
349 }
Nicolas Geoffray274fe4a2016-04-12 16:33:24 +0100350 // We could just suspend all threads, but we know those threads
351 // will finish in a short period, so it's not worth adding a suspend logic
352 // here. Besides, this is only done for shutdown.
Andreas Gampe0897e1c2017-05-16 08:36:56 -0700353 pool->Wait(self, false, false);
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800354 }
355}
356
Calin Juravle4d77b6a2015-12-01 18:38:09 +0000357void Jit::StartProfileSaver(const std::string& filename,
Calin Juravle77651c42017-03-03 18:04:02 -0800358 const std::vector<std::string>& code_paths) {
Calin Juravle138dbff2016-06-28 19:36:58 +0100359 if (profile_saver_options_.IsEnabled()) {
360 ProfileSaver::Start(profile_saver_options_,
361 filename,
362 code_cache_.get(),
Calin Juravle77651c42017-03-03 18:04:02 -0800363 code_paths);
Calin Juravle31f2c152015-10-23 17:56:15 +0100364 }
Calin Juravle4d77b6a2015-12-01 18:38:09 +0000365}
366
367void Jit::StopProfileSaver() {
Calin Juravle138dbff2016-06-28 19:36:58 +0100368 if (profile_saver_options_.IsEnabled() && ProfileSaver::IsStarted()) {
Calin Juravleb8e69992016-03-09 15:37:48 +0000369 ProfileSaver::Stop(dump_info_on_shutdown_);
Calin Juravle31f2c152015-10-23 17:56:15 +0100370 }
371}
372
Siva Chandra05d24152016-01-05 17:43:17 -0800373bool Jit::JitAtFirstUse() {
Nicolas Geoffray274fe4a2016-04-12 16:33:24 +0100374 return HotMethodThreshold() == 0;
Siva Chandra05d24152016-01-05 17:43:17 -0800375}
376
Nicolas Geoffray35122442016-03-02 12:05:30 +0000377bool Jit::CanInvokeCompiledCode(ArtMethod* method) {
378 return code_cache_->ContainsPc(method->GetEntryPointFromQuickCompiledCode());
379}
380
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800381Jit::~Jit() {
Calin Juravle138dbff2016-06-28 19:36:58 +0100382 DCHECK(!profile_saver_options_.IsEnabled() || !ProfileSaver::IsStarted());
Mathieu Chartiera4885cb2015-03-09 15:38:54 -0700383 if (dump_info_on_shutdown_) {
Andreas Gampe3fec9ac2016-09-13 10:47:28 -0700384 DumpInfo(LOG_STREAM(INFO));
Nicolas Geoffray4e92c3c2017-05-08 09:34:26 +0100385 Runtime::Current()->DumpDeoptimizations(LOG_STREAM(INFO));
Mathieu Chartiera4885cb2015-03-09 15:38:54 -0700386 }
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800387 DeleteThreadPool();
388 if (jit_compiler_handle_ != nullptr) {
389 jit_unload_(jit_compiler_handle_);
Mathieu Chartier72918ea2016-03-24 11:07:06 -0700390 jit_compiler_handle_ = nullptr;
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800391 }
392 if (jit_library_handle_ != nullptr) {
393 dlclose(jit_library_handle_);
Mathieu Chartier72918ea2016-03-24 11:07:06 -0700394 jit_library_handle_ = nullptr;
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800395 }
396}
397
Tamas Berghammer160e6df2016-01-05 14:29:02 +0000398void Jit::NewTypeLoadedIfUsingJit(mirror::Class* type) {
Calin Juravleffc87072016-04-20 14:22:09 +0100399 if (!Runtime::Current()->UseJitCompilation()) {
400 // No need to notify if we only use the JIT to save profiles.
401 return;
402 }
Tamas Berghammer160e6df2016-01-05 14:29:02 +0000403 jit::Jit* jit = Runtime::Current()->GetJit();
Calin Juravleffc87072016-04-20 14:22:09 +0100404 if (jit->generate_debug_info_) {
Tamas Berghammerfffbee42016-01-15 13:09:34 +0000405 DCHECK(jit->jit_types_loaded_ != nullptr);
406 jit->jit_types_loaded_(jit->jit_compiler_handle_, &type, 1);
407 }
408}
409
410void Jit::DumpTypeInfoForLoadedTypes(ClassLinker* linker) {
411 struct CollectClasses : public ClassVisitor {
Mathieu Chartier28357fa2016-10-18 16:27:40 -0700412 bool operator()(ObjPtr<mirror::Class> klass) OVERRIDE REQUIRES_SHARED(Locks::mutator_lock_) {
413 classes_.push_back(klass.Ptr());
Tamas Berghammerfffbee42016-01-15 13:09:34 +0000414 return true;
415 }
Mathieu Chartier9b1c9b72016-02-02 10:09:58 -0800416 std::vector<mirror::Class*> classes_;
Tamas Berghammerfffbee42016-01-15 13:09:34 +0000417 };
418
419 if (generate_debug_info_) {
420 ScopedObjectAccess so(Thread::Current());
421
422 CollectClasses visitor;
423 linker->VisitClasses(&visitor);
424 jit_types_loaded_(jit_compiler_handle_, visitor.classes_.data(), visitor.classes_.size());
Tamas Berghammer160e6df2016-01-05 14:29:02 +0000425 }
426}
427
Nicolas Geoffrayb331feb2016-02-05 16:51:53 +0000428extern "C" void art_quick_osr_stub(void** stack,
429 uint32_t stack_size_in_bytes,
430 const uint8_t* native_pc,
431 JValue* result,
432 const char* shorty,
433 Thread* self);
434
435bool Jit::MaybeDoOnStackReplacement(Thread* thread,
436 ArtMethod* method,
437 uint32_t dex_pc,
438 int32_t dex_pc_offset,
439 JValue* result) {
Nicolas Geoffraye8662132016-02-15 10:00:42 +0000440 if (!kEnableOnStackReplacement) {
441 return false;
442 }
443
Nicolas Geoffrayb331feb2016-02-05 16:51:53 +0000444 Jit* jit = Runtime::Current()->GetJit();
445 if (jit == nullptr) {
446 return false;
447 }
448
Nicolas Geoffrayb88d59e2016-02-17 11:31:49 +0000449 if (UNLIKELY(__builtin_frame_address(0) < thread->GetStackEnd())) {
450 // Don't attempt to do an OSR if we are close to the stack limit. Since
451 // the interpreter frames are still on stack, OSR has the potential
452 // to stack overflow even for a simple loop.
453 // b/27094810.
454 return false;
455 }
456
Nicolas Geoffrayd9bc4332016-02-05 23:32:25 +0000457 // Get the actual Java method if this method is from a proxy class. The compiler
458 // and the JIT code cache do not expect methods from proxy classes.
Andreas Gampe542451c2016-07-26 09:02:02 -0700459 method = method->GetInterfaceMethodIfProxy(kRuntimePointerSize);
Nicolas Geoffrayd9bc4332016-02-05 23:32:25 +0000460
Nicolas Geoffrayb331feb2016-02-05 16:51:53 +0000461 // Cheap check if the method has been compiled already. That's an indicator that we should
462 // osr into it.
463 if (!jit->GetCodeCache()->ContainsPc(method->GetEntryPointFromQuickCompiledCode())) {
464 return false;
465 }
466
Nicolas Geoffrayc0b27962016-02-16 12:06:05 +0000467 // Fetch some data before looking up for an OSR method. We don't want thread
468 // suspension once we hold an OSR method, as the JIT code cache could delete the OSR
469 // method while we are being suspended.
Nicolas Geoffrayb331feb2016-02-05 16:51:53 +0000470 const size_t number_of_vregs = method->GetCodeItem()->registers_size_;
Nicolas Geoffrayd186dd82016-02-16 10:03:44 +0000471 const char* shorty = method->GetShorty();
David Sehr709b0702016-10-13 09:12:37 -0700472 std::string method_name(VLOG_IS_ON(jit) ? method->PrettyMethod() : "");
Nicolas Geoffrayd186dd82016-02-16 10:03:44 +0000473 void** memory = nullptr;
474 size_t frame_size = 0;
475 ShadowFrame* shadow_frame = nullptr;
476 const uint8_t* native_pc = nullptr;
Nicolas Geoffrayb331feb2016-02-05 16:51:53 +0000477
Nicolas Geoffrayd186dd82016-02-16 10:03:44 +0000478 {
Mathieu Chartier268764d2016-09-13 12:09:38 -0700479 ScopedAssertNoThreadSuspension sts("Holding OSR method");
Nicolas Geoffrayd186dd82016-02-16 10:03:44 +0000480 const OatQuickMethodHeader* osr_method = jit->GetCodeCache()->LookupOsrMethodHeader(method);
481 if (osr_method == nullptr) {
482 // No osr method yet, just return to the interpreter.
483 return false;
Nicolas Geoffrayb331feb2016-02-05 16:51:53 +0000484 }
Nicolas Geoffrayd186dd82016-02-16 10:03:44 +0000485
486 CodeInfo code_info = osr_method->GetOptimizedCodeInfo();
David Srbecky09ed0982016-02-12 21:58:43 +0000487 CodeInfoEncoding encoding = code_info.ExtractEncoding();
Nicolas Geoffrayd186dd82016-02-16 10:03:44 +0000488
489 // Find stack map starting at the target dex_pc.
490 StackMap stack_map = code_info.GetOsrStackMapForDexPc(dex_pc + dex_pc_offset, encoding);
491 if (!stack_map.IsValid()) {
492 // There is no OSR stack map for this dex pc offset. Just return to the interpreter in the
493 // hope that the next branch has one.
494 return false;
495 }
496
Alex Light21611932017-09-26 13:07:39 -0700497 // Before allowing the jump, make sure no code is actively inspecting the method to avoid
498 // jumping from interpreter to OSR while e.g. single stepping. Note that we could selectively
499 // disable OSR when single stepping, but that's currently hard to know at this point.
500 if (Runtime::Current()->GetRuntimeCallbacks()->IsMethodBeingInspected(method)) {
Aart Bik29bdaee2016-05-18 15:44:07 -0700501 return false;
502 }
503
Nicolas Geoffrayd186dd82016-02-16 10:03:44 +0000504 // We found a stack map, now fill the frame with dex register values from the interpreter's
505 // shadow frame.
506 DexRegisterMap vreg_map =
507 code_info.GetDexRegisterMapOf(stack_map, encoding, number_of_vregs);
508
509 frame_size = osr_method->GetFrameSizeInBytes();
510
511 // Allocate memory to put shadow frame values. The osr stub will copy that memory to
512 // stack.
513 // Note that we could pass the shadow frame to the stub, and let it copy the values there,
514 // but that is engineering complexity not worth the effort for something like OSR.
515 memory = reinterpret_cast<void**>(malloc(frame_size));
516 CHECK(memory != nullptr);
517 memset(memory, 0, frame_size);
518
519 // Art ABI: ArtMethod is at the bottom of the stack.
520 memory[0] = method;
521
522 shadow_frame = thread->PopShadowFrame();
523 if (!vreg_map.IsValid()) {
524 // If we don't have a dex register map, then there are no live dex registers at
525 // this dex pc.
526 } else {
527 for (uint16_t vreg = 0; vreg < number_of_vregs; ++vreg) {
528 DexRegisterLocation::Kind location =
529 vreg_map.GetLocationKind(vreg, number_of_vregs, code_info, encoding);
530 if (location == DexRegisterLocation::Kind::kNone) {
Nicolas Geoffrayc0b27962016-02-16 12:06:05 +0000531 // Dex register is dead or uninitialized.
Nicolas Geoffrayd186dd82016-02-16 10:03:44 +0000532 continue;
533 }
534
535 if (location == DexRegisterLocation::Kind::kConstant) {
536 // We skip constants because the compiled code knows how to handle them.
537 continue;
538 }
539
David Srbecky7dc11782016-02-25 13:23:56 +0000540 DCHECK_EQ(location, DexRegisterLocation::Kind::kInStack);
Nicolas Geoffrayd186dd82016-02-16 10:03:44 +0000541
542 int32_t vreg_value = shadow_frame->GetVReg(vreg);
543 int32_t slot_offset = vreg_map.GetStackOffsetInBytes(vreg,
544 number_of_vregs,
545 code_info,
546 encoding);
547 DCHECK_LT(slot_offset, static_cast<int32_t>(frame_size));
548 DCHECK_GT(slot_offset, 0);
549 (reinterpret_cast<int32_t*>(memory))[slot_offset / sizeof(int32_t)] = vreg_value;
550 }
551 }
552
Mathieu Chartier575d3e62017-02-06 11:00:40 -0800553 native_pc = stack_map.GetNativePcOffset(encoding.stack_map.encoding, kRuntimeISA) +
David Srbecky09ed0982016-02-12 21:58:43 +0000554 osr_method->GetEntryPoint();
Nicolas Geoffrayd186dd82016-02-16 10:03:44 +0000555 VLOG(jit) << "Jumping to "
556 << method_name
557 << "@"
558 << std::hex << reinterpret_cast<uintptr_t>(native_pc);
Nicolas Geoffrayb331feb2016-02-05 16:51:53 +0000559 }
560
Nicolas Geoffrayb331feb2016-02-05 16:51:53 +0000561 {
562 ManagedStack fragment;
563 thread->PushManagedStackFragment(&fragment);
564 (*art_quick_osr_stub)(memory,
565 frame_size,
566 native_pc,
567 result,
Nicolas Geoffrayd186dd82016-02-16 10:03:44 +0000568 shorty,
Nicolas Geoffrayb331feb2016-02-05 16:51:53 +0000569 thread);
Nicolas Geoffrayd186dd82016-02-16 10:03:44 +0000570
Nicolas Geoffrayb331feb2016-02-05 16:51:53 +0000571 if (UNLIKELY(thread->GetException() == Thread::GetDeoptimizationException())) {
572 thread->DeoptimizeWithDeoptimizationException(result);
573 }
574 thread->PopManagedStackFragment(fragment);
575 }
576 free(memory);
577 thread->PushShadowFrame(shadow_frame);
Nicolas Geoffrayd186dd82016-02-16 10:03:44 +0000578 VLOG(jit) << "Done running OSR code for " << method_name;
Nicolas Geoffrayb331feb2016-02-05 16:51:53 +0000579 return true;
580}
581
Nicolas Geoffraya4f81542016-03-08 16:57:48 +0000582void Jit::AddMemoryUsage(ArtMethod* method, size_t bytes) {
583 if (bytes > 4 * MB) {
584 LOG(INFO) << "Compiler allocated "
585 << PrettySize(bytes)
586 << " to compile "
David Sehr709b0702016-10-13 09:12:37 -0700587 << ArtMethod::PrettyMethod(method);
Nicolas Geoffraya4f81542016-03-08 16:57:48 +0000588 }
589 MutexLock mu(Thread::Current(), lock_);
590 memory_use_.AddValue(bytes);
591}
592
Nicolas Geoffray274fe4a2016-04-12 16:33:24 +0100593class JitCompileTask FINAL : public Task {
594 public:
595 enum TaskKind {
596 kAllocateProfile,
597 kCompile,
598 kCompileOsr
599 };
600
601 JitCompileTask(ArtMethod* method, TaskKind kind) : method_(method), kind_(kind) {
602 ScopedObjectAccess soa(Thread::Current());
603 // Add a global ref to the class to prevent class unloading until compilation is done.
604 klass_ = soa.Vm()->AddGlobalRef(soa.Self(), method_->GetDeclaringClass());
605 CHECK(klass_ != nullptr);
606 }
607
608 ~JitCompileTask() {
609 ScopedObjectAccess soa(Thread::Current());
610 soa.Vm()->DeleteGlobalRef(soa.Self(), klass_);
611 }
612
613 void Run(Thread* self) OVERRIDE {
614 ScopedObjectAccess soa(self);
615 if (kind_ == kCompile) {
Nicolas Geoffray71cd50f2016-04-14 15:00:33 +0100616 Runtime::Current()->GetJit()->CompileMethod(method_, self, /* osr */ false);
Nicolas Geoffray274fe4a2016-04-12 16:33:24 +0100617 } else if (kind_ == kCompileOsr) {
Nicolas Geoffray71cd50f2016-04-14 15:00:33 +0100618 Runtime::Current()->GetJit()->CompileMethod(method_, self, /* osr */ true);
Nicolas Geoffray274fe4a2016-04-12 16:33:24 +0100619 } else {
620 DCHECK(kind_ == kAllocateProfile);
621 if (ProfilingInfo::Create(self, method_, /* retry_allocation */ true)) {
David Sehr709b0702016-10-13 09:12:37 -0700622 VLOG(jit) << "Start profiling " << ArtMethod::PrettyMethod(method_);
Nicolas Geoffray274fe4a2016-04-12 16:33:24 +0100623 }
624 }
Calin Juravlea2638922016-04-29 16:44:11 +0100625 ProfileSaver::NotifyJitActivity();
Nicolas Geoffray274fe4a2016-04-12 16:33:24 +0100626 }
627
628 void Finalize() OVERRIDE {
629 delete this;
630 }
631
632 private:
633 ArtMethod* const method_;
634 const TaskKind kind_;
635 jobject klass_;
636
637 DISALLOW_IMPLICIT_CONSTRUCTORS(JitCompileTask);
638};
639
Nicolas Geoffray71cd50f2016-04-14 15:00:33 +0100640void Jit::AddSamples(Thread* self, ArtMethod* method, uint16_t count, bool with_backedges) {
Nicolas Geoffray274fe4a2016-04-12 16:33:24 +0100641 if (thread_pool_ == nullptr) {
642 // Should only see this when shutting down.
643 DCHECK(Runtime::Current()->IsShuttingDown(self));
644 return;
645 }
646
Vladimir Marko2196c652017-11-30 16:16:07 +0000647 if (method->IsClassInitializer() || !method->IsCompilable()) {
Nicolas Geoffray274fe4a2016-04-12 16:33:24 +0100648 // We do not want to compile such methods.
649 return;
650 }
David Srbeckyf4886df2017-12-11 16:06:29 +0000651 if (hot_method_threshold_ == 0) {
652 // Tests might request JIT on first use (compiled synchronously in the interpreter).
653 return;
654 }
Nicolas Geoffray274fe4a2016-04-12 16:33:24 +0100655 DCHECK(thread_pool_ != nullptr);
656 DCHECK_GT(warm_method_threshold_, 0);
657 DCHECK_GT(hot_method_threshold_, warm_method_threshold_);
658 DCHECK_GT(osr_method_threshold_, hot_method_threshold_);
659 DCHECK_GE(priority_thread_weight_, 1);
660 DCHECK_LE(priority_thread_weight_, hot_method_threshold_);
661
662 int32_t starting_count = method->GetCounter();
Vladimir Markoa710d912017-09-12 14:56:07 +0100663 if (Jit::ShouldUsePriorityThreadWeight(self)) {
Nicolas Geoffray274fe4a2016-04-12 16:33:24 +0100664 count *= priority_thread_weight_;
665 }
666 int32_t new_count = starting_count + count; // int32 here to avoid wrap-around;
Vladimir Marko2196c652017-11-30 16:16:07 +0000667 // Note: Native method have no "warm" state or profiling info.
668 if (LIKELY(!method->IsNative()) && starting_count < warm_method_threshold_) {
Nicolas Geoffray941c6ec2017-06-09 11:53:23 +0000669 if ((new_count >= warm_method_threshold_) &&
670 (method->GetProfilingInfo(kRuntimePointerSize) == nullptr)) {
671 bool success = ProfilingInfo::Create(self, method, /* retry_allocation */ false);
672 if (success) {
673 VLOG(jit) << "Start profiling " << method->PrettyMethod();
674 }
Nicolas Geoffray274fe4a2016-04-12 16:33:24 +0100675
Nicolas Geoffray941c6ec2017-06-09 11:53:23 +0000676 if (thread_pool_ == nullptr) {
677 // Calling ProfilingInfo::Create might put us in a suspended state, which could
678 // lead to the thread pool being deleted when we are shutting down.
679 DCHECK(Runtime::Current()->IsShuttingDown(self));
680 return;
681 }
Nicolas Geoffray274fe4a2016-04-12 16:33:24 +0100682
Nicolas Geoffray941c6ec2017-06-09 11:53:23 +0000683 if (!success) {
684 // We failed allocating. Instead of doing the collection on the Java thread, we push
685 // an allocation to a compiler thread, that will do the collection.
686 thread_pool_->AddTask(self, new JitCompileTask(method, JitCompileTask::kAllocateProfile));
687 }
Nicolas Geoffray274fe4a2016-04-12 16:33:24 +0100688 }
689 // Avoid jumping more than one state at a time.
690 new_count = std::min(new_count, hot_method_threshold_ - 1);
Calin Juravleffc87072016-04-20 14:22:09 +0100691 } else if (use_jit_compilation_) {
692 if (starting_count < hot_method_threshold_) {
693 if ((new_count >= hot_method_threshold_) &&
694 !code_cache_->ContainsPc(method->GetEntryPointFromQuickCompiledCode())) {
695 DCHECK(thread_pool_ != nullptr);
696 thread_pool_->AddTask(self, new JitCompileTask(method, JitCompileTask::kCompile));
697 }
698 // Avoid jumping more than one state at a time.
699 new_count = std::min(new_count, osr_method_threshold_ - 1);
700 } else if (starting_count < osr_method_threshold_) {
701 if (!with_backedges) {
702 // If the samples don't contain any back edge, we don't increment the hotness.
703 return;
704 }
Vladimir Marko2196c652017-11-30 16:16:07 +0000705 DCHECK(!method->IsNative()); // No back edges reported for native methods.
Calin Juravleffc87072016-04-20 14:22:09 +0100706 if ((new_count >= osr_method_threshold_) && !code_cache_->IsOsrCompiled(method)) {
707 DCHECK(thread_pool_ != nullptr);
708 thread_pool_->AddTask(self, new JitCompileTask(method, JitCompileTask::kCompileOsr));
709 }
Nicolas Geoffray274fe4a2016-04-12 16:33:24 +0100710 }
711 }
712 // Update hotness counter
713 method->SetCounter(new_count);
714}
715
716void Jit::MethodEntered(Thread* thread, ArtMethod* method) {
Calin Juravleffc87072016-04-20 14:22:09 +0100717 Runtime* runtime = Runtime::Current();
718 if (UNLIKELY(runtime->UseJitCompilation() && runtime->GetJit()->JitAtFirstUse())) {
Nicolas Geoffray274fe4a2016-04-12 16:33:24 +0100719 // The compiler requires a ProfilingInfo object.
720 ProfilingInfo::Create(thread, method, /* retry_allocation */ true);
721 JitCompileTask compile_task(method, JitCompileTask::kCompile);
722 compile_task.Run(thread);
723 return;
724 }
725
Andreas Gampe542451c2016-07-26 09:02:02 -0700726 ProfilingInfo* profiling_info = method->GetProfilingInfo(kRuntimePointerSize);
Nicolas Geoffray274fe4a2016-04-12 16:33:24 +0100727 // Update the entrypoint if the ProfilingInfo has one. The interpreter will call it
728 // instead of interpreting the method.
Nicolas Geoffray480d5102016-04-18 12:09:30 +0100729 if ((profiling_info != nullptr) && (profiling_info->GetSavedEntryPoint() != nullptr)) {
730 Runtime::Current()->GetInstrumentation()->UpdateMethodsCode(
731 method, profiling_info->GetSavedEntryPoint());
Nicolas Geoffray274fe4a2016-04-12 16:33:24 +0100732 } else {
Nicolas Geoffray71cd50f2016-04-14 15:00:33 +0100733 AddSamples(thread, method, 1, /* with_backedges */false);
Nicolas Geoffray274fe4a2016-04-12 16:33:24 +0100734 }
735}
736
Mathieu Chartieref41db72016-10-25 15:08:01 -0700737void Jit::InvokeVirtualOrInterface(ObjPtr<mirror::Object> this_object,
Nicolas Geoffray274fe4a2016-04-12 16:33:24 +0100738 ArtMethod* caller,
739 uint32_t dex_pc,
740 ArtMethod* callee ATTRIBUTE_UNUSED) {
Mathieu Chartier268764d2016-09-13 12:09:38 -0700741 ScopedAssertNoThreadSuspension ants(__FUNCTION__);
Nicolas Geoffray274fe4a2016-04-12 16:33:24 +0100742 DCHECK(this_object != nullptr);
Andreas Gampe542451c2016-07-26 09:02:02 -0700743 ProfilingInfo* info = caller->GetProfilingInfo(kRuntimePointerSize);
Nicolas Geoffray274fe4a2016-04-12 16:33:24 +0100744 if (info != nullptr) {
Nicolas Geoffray274fe4a2016-04-12 16:33:24 +0100745 info->AddInvokeInfo(dex_pc, this_object->GetClass());
746 }
747}
748
749void Jit::WaitForCompilationToFinish(Thread* self) {
750 if (thread_pool_ != nullptr) {
751 thread_pool_->Wait(self, false, false);
752 }
753}
754
Nicolas Geoffray021c5f22016-12-16 11:22:05 +0000755void Jit::Stop() {
756 Thread* self = Thread::Current();
757 // TODO(ngeoffray): change API to not require calling WaitForCompilationToFinish twice.
758 WaitForCompilationToFinish(self);
759 GetThreadPool()->StopWorkers(self);
760 WaitForCompilationToFinish(self);
761}
762
763void Jit::Start() {
764 GetThreadPool()->StartWorkers(Thread::Current());
765}
766
Andreas Gampef149b3f2016-11-16 14:58:24 -0800767ScopedJitSuspend::ScopedJitSuspend() {
768 jit::Jit* jit = Runtime::Current()->GetJit();
769 was_on_ = (jit != nullptr) && (jit->GetThreadPool() != nullptr);
770 if (was_on_) {
Nicolas Geoffray021c5f22016-12-16 11:22:05 +0000771 jit->Stop();
Andreas Gampef149b3f2016-11-16 14:58:24 -0800772 }
773}
774
775ScopedJitSuspend::~ScopedJitSuspend() {
776 if (was_on_) {
777 DCHECK(Runtime::Current()->GetJit() != nullptr);
778 DCHECK(Runtime::Current()->GetJit()->GetThreadPool() != nullptr);
Nicolas Geoffray021c5f22016-12-16 11:22:05 +0000779 Runtime::Current()->GetJit()->Start();
Andreas Gampef149b3f2016-11-16 14:58:24 -0800780 }
781}
782
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800783} // namespace jit
784} // namespace art