blob: d8399b4e0bc8c23aa74db81300753c2af6dd9f80 [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"
Nicolas Geoffrayde1b2a22019-02-27 09:10:57 +000023#include "base/file_utils.h"
Andreas Gampe57943812017-12-06 21:39:13 -080024#include "base/logging.h" // For VLOG.
Andreas Gampe0897e1c2017-05-16 08:36:56 -070025#include "base/memory_tool.h"
Andreas Gampedcc528d2017-12-07 13:37:10 -080026#include "base/runtime_debug.h"
Nicolas Geoffrayde1b2a22019-02-27 09:10:57 +000027#include "base/scoped_flock.h"
David Sehrc431b9d2018-03-02 12:01:51 -080028#include "base/utils.h"
Vladimir Markoc7aa87e2018-05-24 15:19:52 +010029#include "class_root.h"
Andreas Gampe2a5c4682015-08-14 08:22:54 -070030#include "debugger.h"
Nicolas Geoffraydc2fbb62019-04-11 22:55:50 +010031#include "dex/type_lookup_table.h"
Mathieu Chartiere5f13e52015-02-24 09:37:21 -080032#include "entrypoints/runtime_asm_entrypoints.h"
33#include "interpreter/interpreter.h"
David Srbeckye3fc2d12018-11-30 13:41:14 +000034#include "jit-inl.h"
Mathieu Chartiere5f13e52015-02-24 09:37:21 -080035#include "jit_code_cache.h"
Vladimir Markoa3ad0cd2018-05-04 10:06:38 +010036#include "jni/java_vm_ext.h"
Orion Hodson52f5a1f2018-05-02 11:05:44 +010037#include "mirror/method_handle_impl.h"
38#include "mirror/var_handle.h"
Nicolas Geoffraydc2fbb62019-04-11 22:55:50 +010039#include "oat_file.h"
Calin Juravle31f2c152015-10-23 17:56:15 +010040#include "oat_file_manager.h"
Nicolas Geoffrayb331feb2016-02-05 16:51:53 +000041#include "oat_quick_method_header.h"
David Sehr82d046e2018-04-23 08:14:19 -070042#include "profile/profile_compilation_info.h"
Calin Juravle4d77b6a2015-12-01 18:38:09 +000043#include "profile_saver.h"
Mathieu Chartiere5f13e52015-02-24 09:37:21 -080044#include "runtime.h"
45#include "runtime_options.h"
Andreas Gampe513061a2017-06-01 09:17:34 -070046#include "stack.h"
Nicolas Geoffrayb331feb2016-02-05 16:51:53 +000047#include "stack_map.h"
Andreas Gampe513061a2017-06-01 09:17:34 -070048#include "thread-inl.h"
Nicolas Geoffray274fe4a2016-04-12 16:33:24 +010049#include "thread_list.h"
Mathieu Chartiere5f13e52015-02-24 09:37:21 -080050
51namespace art {
52namespace jit {
53
Nicolas Geoffrayd186dd82016-02-16 10:03:44 +000054static constexpr bool kEnableOnStackReplacement = true;
Nicolas Geoffraye8662132016-02-15 10:00:42 +000055
Andreas Gampe7897cec2017-07-19 16:28:59 -070056// Different compilation threshold constants. These can be overridden on the command line.
57static constexpr size_t kJitDefaultCompileThreshold = 10000; // Non-debug default.
58static constexpr size_t kJitStressDefaultCompileThreshold = 100; // Fast-debug build.
59static constexpr size_t kJitSlowStressDefaultCompileThreshold = 2; // Slow-debug build.
60
Mathieu Chartier72918ea2016-03-24 11:07:06 -070061// JIT compiler
Igor Murashkin2ffb7032017-11-08 13:35:21 -080062void* Jit::jit_library_handle_ = nullptr;
Mathieu Chartier72918ea2016-03-24 11:07:06 -070063void* Jit::jit_compiler_handle_ = nullptr;
Nicolas Geoffrayc9de61c2018-11-27 17:34:31 +000064void* (*Jit::jit_load_)(void) = nullptr;
Mathieu Chartier72918ea2016-03-24 11:07:06 -070065void (*Jit::jit_unload_)(void*) = nullptr;
Nicolas Geoffray7f7539b2019-06-06 16:20:54 +010066bool (*Jit::jit_compile_method_)(void*, JitMemoryRegion*, ArtMethod*, Thread*, bool, bool)
67 = nullptr;
Mathieu Chartier72918ea2016-03-24 11:07:06 -070068void (*Jit::jit_types_loaded_)(void*, mirror::Class**, size_t count) = nullptr;
Nicolas Geoffrayc9de61c2018-11-27 17:34:31 +000069bool (*Jit::jit_generate_debug_info_)(void*) = nullptr;
70void (*Jit::jit_update_options_)(void*) = nullptr;
Mathieu Chartier72918ea2016-03-24 11:07:06 -070071
Andreas Gampe7897cec2017-07-19 16:28:59 -070072struct StressModeHelper {
73 DECLARE_RUNTIME_DEBUG_FLAG(kSlowMode);
74};
75DEFINE_RUNTIME_DEBUG_FLAG(StressModeHelper, kSlowMode);
76
David Srbeckye3fc2d12018-11-30 13:41:14 +000077uint32_t JitOptions::RoundUpThreshold(uint32_t threshold) {
78 if (threshold > kJitSamplesBatchSize) {
79 threshold = RoundUp(threshold, kJitSamplesBatchSize);
80 }
81 CHECK_LE(threshold, std::numeric_limits<uint16_t>::max());
82 return threshold;
83}
84
Mathieu Chartiere5f13e52015-02-24 09:37:21 -080085JitOptions* JitOptions::CreateFromRuntimeArguments(const RuntimeArgumentMap& options) {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -080086 auto* jit_options = new JitOptions;
Calin Juravleffc87072016-04-20 14:22:09 +010087 jit_options->use_jit_compilation_ = options.GetOrDefault(RuntimeArgumentMap::UseJitCompilation);
Nicolas Geoffray83f080a2016-03-08 16:50:21 +000088
Nicolas Geoffray0a3be162015-11-18 11:15:22 +000089 jit_options->code_cache_initial_capacity_ =
90 options.GetOrDefault(RuntimeArgumentMap::JITCodeCacheInitialCapacity);
91 jit_options->code_cache_max_capacity_ =
92 options.GetOrDefault(RuntimeArgumentMap::JITCodeCacheMaxCapacity);
Mathieu Chartiera4885cb2015-03-09 15:38:54 -070093 jit_options->dump_info_on_shutdown_ =
94 options.Exists(RuntimeArgumentMap::DumpJITInfoOnShutdown);
Calin Juravle138dbff2016-06-28 19:36:58 +010095 jit_options->profile_saver_options_ =
96 options.GetOrDefault(RuntimeArgumentMap::ProfileSaverOpts);
Nicolas Geoffray47b95802018-05-16 15:42:17 +010097 jit_options->thread_pool_pthread_priority_ =
98 options.GetOrDefault(RuntimeArgumentMap::JITPoolThreadPthreadPriority);
Nicolas Geoffray83f080a2016-03-08 16:50:21 +000099
Andreas Gampe7897cec2017-07-19 16:28:59 -0700100 if (options.Exists(RuntimeArgumentMap::JITCompileThreshold)) {
101 jit_options->compile_threshold_ = *options.Get(RuntimeArgumentMap::JITCompileThreshold);
102 } else {
103 jit_options->compile_threshold_ =
104 kIsDebugBuild
105 ? (StressModeHelper::kSlowMode
106 ? kJitSlowStressDefaultCompileThreshold
107 : kJitStressDefaultCompileThreshold)
108 : kJitDefaultCompileThreshold;
109 }
David Srbeckye3fc2d12018-11-30 13:41:14 +0000110 jit_options->compile_threshold_ = RoundUpThreshold(jit_options->compile_threshold_);
Nicolas Geoffray83f080a2016-03-08 16:50:21 +0000111
112 if (options.Exists(RuntimeArgumentMap::JITWarmupThreshold)) {
113 jit_options->warmup_threshold_ = *options.Get(RuntimeArgumentMap::JITWarmupThreshold);
Nicolas Geoffray83f080a2016-03-08 16:50:21 +0000114 } else {
115 jit_options->warmup_threshold_ = jit_options->compile_threshold_ / 2;
116 }
David Srbeckye3fc2d12018-11-30 13:41:14 +0000117 jit_options->warmup_threshold_ = RoundUpThreshold(jit_options->warmup_threshold_);
Nicolas Geoffray83f080a2016-03-08 16:50:21 +0000118
119 if (options.Exists(RuntimeArgumentMap::JITOsrThreshold)) {
120 jit_options->osr_threshold_ = *options.Get(RuntimeArgumentMap::JITOsrThreshold);
Nicolas Geoffray83f080a2016-03-08 16:50:21 +0000121 } else {
122 jit_options->osr_threshold_ = jit_options->compile_threshold_ * 2;
123 if (jit_options->osr_threshold_ > std::numeric_limits<uint16_t>::max()) {
David Srbeckye3fc2d12018-11-30 13:41:14 +0000124 jit_options->osr_threshold_ =
125 RoundDown(std::numeric_limits<uint16_t>::max(), kJitSamplesBatchSize);
Nicolas Geoffray83f080a2016-03-08 16:50:21 +0000126 }
127 }
David Srbeckye3fc2d12018-11-30 13:41:14 +0000128 jit_options->osr_threshold_ = RoundUpThreshold(jit_options->osr_threshold_);
Nicolas Geoffray83f080a2016-03-08 16:50:21 +0000129
Calin Juravleb2771b42016-04-07 17:09:25 +0100130 if (options.Exists(RuntimeArgumentMap::JITPriorityThreadWeight)) {
131 jit_options->priority_thread_weight_ =
132 *options.Get(RuntimeArgumentMap::JITPriorityThreadWeight);
133 if (jit_options->priority_thread_weight_ > jit_options->warmup_threshold_) {
134 LOG(FATAL) << "Priority thread weight is above the warmup threshold.";
135 } else if (jit_options->priority_thread_weight_ == 0) {
136 LOG(FATAL) << "Priority thread weight cannot be 0.";
137 }
138 } else {
Nicolas Geoffray71cd50f2016-04-14 15:00:33 +0100139 jit_options->priority_thread_weight_ = std::max(
140 jit_options->warmup_threshold_ / Jit::kDefaultPriorityThreadWeightRatio,
141 static_cast<size_t>(1));
Calin Juravleb2771b42016-04-07 17:09:25 +0100142 }
143
Calin Juravle155ff3d2016-04-27 14:14:58 +0100144 if (options.Exists(RuntimeArgumentMap::JITInvokeTransitionWeight)) {
Nicolas Geoffray7c9f3ba2016-05-06 16:52:36 +0100145 jit_options->invoke_transition_weight_ =
146 *options.Get(RuntimeArgumentMap::JITInvokeTransitionWeight);
Calin Juravle155ff3d2016-04-27 14:14:58 +0100147 if (jit_options->invoke_transition_weight_ > jit_options->warmup_threshold_) {
148 LOG(FATAL) << "Invoke transition weight is above the warmup threshold.";
149 } else if (jit_options->invoke_transition_weight_ == 0) {
Nicolas Geoffray7c9f3ba2016-05-06 16:52:36 +0100150 LOG(FATAL) << "Invoke transition weight cannot be 0.";
Calin Juravle155ff3d2016-04-27 14:14:58 +0100151 }
Calin Juravle155ff3d2016-04-27 14:14:58 +0100152 } else {
153 jit_options->invoke_transition_weight_ = std::max(
154 jit_options->warmup_threshold_ / Jit::kDefaultInvokeTransitionWeightRatio,
Mathieu Chartier6beced42016-11-15 15:51:31 -0800155 static_cast<size_t>(1));
Calin Juravle155ff3d2016-04-27 14:14:58 +0100156 }
157
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800158 return jit_options;
159}
160
Mathieu Chartiera4885cb2015-03-09 15:38:54 -0700161void Jit::DumpInfo(std::ostream& os) {
Nicolas Geoffraybcd94c82016-03-03 13:23:33 +0000162 code_cache_->Dump(os);
Mathieu Chartiera4885cb2015-03-09 15:38:54 -0700163 cumulative_timings_.Dump(os);
Nicolas Geoffraya4f81542016-03-08 16:57:48 +0000164 MutexLock mu(Thread::Current(), lock_);
165 memory_use_.PrintMemoryUse(os);
Mathieu Chartiera4885cb2015-03-09 15:38:54 -0700166}
167
Calin Juravleb8e69992016-03-09 15:37:48 +0000168void Jit::DumpForSigQuit(std::ostream& os) {
169 DumpInfo(os);
170 ProfileSaver::DumpInstanceInfo(os);
171}
172
Mathieu Chartiera4885cb2015-03-09 15:38:54 -0700173void Jit::AddTimingLogger(const TimingLogger& logger) {
174 cumulative_timings_.AddLogger(logger);
175}
176
Orion Hodsonad28f5e2018-10-17 09:08:17 +0100177Jit::Jit(JitCodeCache* code_cache, JitOptions* options)
178 : code_cache_(code_cache),
179 options_(options),
180 cumulative_timings_("JIT timings"),
181 memory_use_("Memory used for compilation", 16),
182 lock_("JIT memory use lock") {}
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800183
Orion Hodsonad28f5e2018-10-17 09:08:17 +0100184Jit* Jit::Create(JitCodeCache* code_cache, JitOptions* options) {
Nicolas Geoffraya7edd0d2018-11-07 03:18:16 +0000185 if (jit_load_ == nullptr) {
186 LOG(WARNING) << "Not creating JIT: library not loaded";
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800187 return nullptr;
188 }
Nicolas Geoffrayc9de61c2018-11-27 17:34:31 +0000189 jit_compiler_handle_ = (jit_load_)();
Nicolas Geoffraya7edd0d2018-11-07 03:18:16 +0000190 if (jit_compiler_handle_ == nullptr) {
191 LOG(WARNING) << "Not creating JIT: failed to allocate a compiler";
192 return nullptr;
193 }
194 std::unique_ptr<Jit> jit(new Jit(code_cache, options));
Nicolas Geoffraya7edd0d2018-11-07 03:18:16 +0000195
Nicolas Geoffrayc9de61c2018-11-27 17:34:31 +0000196 // If the code collector is enabled, check if that still holds:
Nicolas Geoffraya7edd0d2018-11-07 03:18:16 +0000197 // With 'perf', we want a 1-1 mapping between an address and a method.
198 // We aren't able to keep method pointers live during the instrumentation method entry trampoline
199 // so we will just disable jit-gc if we are doing that.
Nicolas Geoffrayc9de61c2018-11-27 17:34:31 +0000200 if (code_cache->GetGarbageCollectCode()) {
201 code_cache->SetGarbageCollectCode(!jit_generate_debug_info_(jit_compiler_handle_) &&
202 !Runtime::Current()->GetInstrumentation()->AreExitStubsInstalled());
203 }
Orion Hodsonad28f5e2018-10-17 09:08:17 +0100204
Nicolas Geoffraybcd94c82016-03-03 13:23:33 +0000205 VLOG(jit) << "JIT created with initial_capacity="
Nicolas Geoffray0a3be162015-11-18 11:15:22 +0000206 << PrettySize(options->GetCodeCacheInitialCapacity())
207 << ", max_capacity=" << PrettySize(options->GetCodeCacheMaxCapacity())
Calin Juravle4d77b6a2015-12-01 18:38:09 +0000208 << ", compile_threshold=" << options->GetCompileThreshold()
Calin Juravle138dbff2016-06-28 19:36:58 +0100209 << ", profile_saver_options=" << options->GetProfileSaverOptions();
Nicolas Geoffray274fe4a2016-04-12 16:33:24 +0100210
Nicolas Geoffray274fe4a2016-04-12 16:33:24 +0100211 // 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
Nicolas Geoffrayc9de61c2018-11-27 17:34:31 +0000216template <typename T>
217bool Jit::LoadSymbol(T* address, const char* name, std::string* error_msg) {
218 *address = reinterpret_cast<T>(dlsym(jit_library_handle_, name));
219 if (*address == nullptr) {
220 *error_msg = std::string("JIT couldn't find ") + name + std::string(" entry point");
221 return false;
222 }
223 return true;
224}
225
Nicolas Geoffraya7edd0d2018-11-07 03:18:16 +0000226bool Jit::LoadCompilerLibrary(std::string* error_msg) {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800227 jit_library_handle_ = dlopen(
228 kIsDebugBuild ? "libartd-compiler.so" : "libart-compiler.so", RTLD_NOW);
229 if (jit_library_handle_ == nullptr) {
230 std::ostringstream oss;
231 oss << "JIT could not load libart-compiler.so: " << dlerror();
232 *error_msg = oss.str();
233 return false;
234 }
Nicolas Geoffrayc9de61c2018-11-27 17:34:31 +0000235 bool all_resolved = true;
236 all_resolved = all_resolved && LoadSymbol(&jit_load_, "jit_load", error_msg);
237 all_resolved = all_resolved && LoadSymbol(&jit_unload_, "jit_unload", error_msg);
238 all_resolved = all_resolved && LoadSymbol(&jit_compile_method_, "jit_compile_method", error_msg);
239 all_resolved = all_resolved && LoadSymbol(&jit_types_loaded_, "jit_types_loaded", error_msg);
240 all_resolved = all_resolved && LoadSymbol(&jit_update_options_, "jit_update_options", error_msg);
241 all_resolved = all_resolved &&
242 LoadSymbol(&jit_generate_debug_info_, "jit_generate_debug_info", error_msg);
243 if (!all_resolved) {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800244 dlclose(jit_library_handle_);
Tamas Berghammer160e6df2016-01-05 14:29:02 +0000245 return false;
246 }
Mathieu Chartierc1bc4152016-03-24 17:22:52 -0700247 return true;
248}
249
Nicolas Geoffrayd2f13ba2019-06-04 16:48:58 +0100250bool Jit::CompileMethod(ArtMethod* method, Thread* self, bool baseline, bool osr, bool prejit) {
Calin Juravleffc87072016-04-20 14:22:09 +0100251 DCHECK(Runtime::Current()->UseJitCompilation());
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800252 DCHECK(!method->IsRuntimeMethod());
Nicolas Geoffrayd9994f02016-02-11 17:35:55 +0000253
Alex Light0fa17862017-10-24 13:43:05 -0700254 RuntimeCallbacks* cb = Runtime::Current()->GetRuntimeCallbacks();
Nicolas Geoffray73be1e82015-09-17 15:22:56 +0100255 // Don't compile the method if it has breakpoints.
Alex Light0fa17862017-10-24 13:43:05 -0700256 if (cb->IsMethodBeingInspected(method) && !cb->IsMethodSafeToJit(method)) {
257 VLOG(jit) << "JIT not compiling " << method->PrettyMethod()
258 << " due to not being safe to jit according to runtime-callbacks. For example, there"
259 << " could be breakpoints in this method.";
Mathieu Chartierd8565452015-03-26 09:41:50 -0700260 return false;
261 }
Nicolas Geoffray73be1e82015-09-17 15:22:56 +0100262
263 // Don't compile the method if we are supposed to be deoptimized.
264 instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation();
265 if (instrumentation->AreAllMethodsDeoptimized() || instrumentation->IsDeoptimized(method)) {
David Sehr709b0702016-10-13 09:12:37 -0700266 VLOG(jit) << "JIT not compiling " << method->PrettyMethod() << " due to deoptimization";
Nicolas Geoffray73be1e82015-09-17 15:22:56 +0100267 return false;
268 }
269
Nicolas Geoffrayd9994f02016-02-11 17:35:55 +0000270 // If we get a request to compile a proxy method, we pass the actual Java method
271 // of that proxy method, as the compiler does not expect a proxy method.
Andreas Gampe542451c2016-07-26 09:02:02 -0700272 ArtMethod* method_to_compile = method->GetInterfaceMethodIfProxy(kRuntimePointerSize);
Nicolas Geoffrayd2f13ba2019-06-04 16:48:58 +0100273 if (!code_cache_->NotifyCompilationOf(method_to_compile, self, osr, prejit)) {
Nicolas Geoffray73be1e82015-09-17 15:22:56 +0100274 return false;
275 }
Nicolas Geoffray71cd50f2016-04-14 15:00:33 +0100276
Nicolas Geoffray7f7539b2019-06-06 16:20:54 +0100277 JitMemoryRegion* region = GetCodeCache()->GetPrivateRegion();
278
Nicolas Geoffray71cd50f2016-04-14 15:00:33 +0100279 VLOG(jit) << "Compiling method "
David Sehr709b0702016-10-13 09:12:37 -0700280 << ArtMethod::PrettyMethod(method_to_compile)
Nicolas Geoffray71cd50f2016-04-14 15:00:33 +0100281 << " osr=" << std::boolalpha << osr;
Nicolas Geoffray7f7539b2019-06-06 16:20:54 +0100282 bool success = jit_compile_method_(
283 jit_compiler_handle_, region, method_to_compile, self, baseline, osr);
buzbee454b3b62016-04-07 14:42:47 -0700284 code_cache_->DoneCompiling(method_to_compile, self, osr);
Nicolas Geoffray71cd50f2016-04-14 15:00:33 +0100285 if (!success) {
286 VLOG(jit) << "Failed to compile method "
David Sehr709b0702016-10-13 09:12:37 -0700287 << ArtMethod::PrettyMethod(method_to_compile)
Nicolas Geoffray71cd50f2016-04-14 15:00:33 +0100288 << " osr=" << std::boolalpha << osr;
289 }
Andreas Gampe320ba912016-11-18 17:39:45 -0800290 if (kIsDebugBuild) {
291 if (self->IsExceptionPending()) {
292 mirror::Throwable* exception = self->GetException();
293 LOG(FATAL) << "No pending exception expected after compiling "
294 << ArtMethod::PrettyMethod(method)
295 << ": "
296 << exception->Dump();
297 }
298 }
Nicolas Geoffray73be1e82015-09-17 15:22:56 +0100299 return success;
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800300}
301
Mathieu Chartier93c21ba2018-12-10 13:08:30 -0800302void Jit::WaitForWorkersToBeCreated() {
303 if (thread_pool_ != nullptr) {
304 thread_pool_->WaitForWorkersToBeCreated();
305 }
306}
307
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800308void Jit::DeleteThreadPool() {
Nicolas Geoffray274fe4a2016-04-12 16:33:24 +0100309 Thread* self = Thread::Current();
310 DCHECK(Runtime::Current()->IsShuttingDown(self));
311 if (thread_pool_ != nullptr) {
Andreas Gampe0897e1c2017-05-16 08:36:56 -0700312 std::unique_ptr<ThreadPool> pool;
Nicolas Geoffray274fe4a2016-04-12 16:33:24 +0100313 {
314 ScopedSuspendAll ssa(__FUNCTION__);
315 // Clear thread_pool_ field while the threads are suspended.
316 // A mutator in the 'AddSamples' method will check against it.
Andreas Gampe0897e1c2017-05-16 08:36:56 -0700317 pool = std::move(thread_pool_);
Nicolas Geoffray274fe4a2016-04-12 16:33:24 +0100318 }
Andreas Gampe0897e1c2017-05-16 08:36:56 -0700319
320 // When running sanitized, let all tasks finish to not leak. Otherwise just clear the queue.
Roland Levillain05e34f42018-05-24 13:19:05 +0000321 if (!kRunningOnMemoryTool) {
Andreas Gampe0897e1c2017-05-16 08:36:56 -0700322 pool->StopWorkers(self);
323 pool->RemoveAllTasks(self);
324 }
Nicolas Geoffray274fe4a2016-04-12 16:33:24 +0100325 // We could just suspend all threads, but we know those threads
326 // will finish in a short period, so it's not worth adding a suspend logic
327 // here. Besides, this is only done for shutdown.
Andreas Gampe0897e1c2017-05-16 08:36:56 -0700328 pool->Wait(self, false, false);
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800329 }
330}
331
Calin Juravle4d77b6a2015-12-01 18:38:09 +0000332void Jit::StartProfileSaver(const std::string& filename,
Calin Juravle77651c42017-03-03 18:04:02 -0800333 const std::vector<std::string>& code_paths) {
Nicolas Geoffray47b95802018-05-16 15:42:17 +0100334 if (options_->GetSaveProfilingInfo()) {
Orion Hodsonad28f5e2018-10-17 09:08:17 +0100335 ProfileSaver::Start(options_->GetProfileSaverOptions(), filename, code_cache_, code_paths);
Calin Juravle31f2c152015-10-23 17:56:15 +0100336 }
Calin Juravle4d77b6a2015-12-01 18:38:09 +0000337}
338
339void Jit::StopProfileSaver() {
Nicolas Geoffray47b95802018-05-16 15:42:17 +0100340 if (options_->GetSaveProfilingInfo() && ProfileSaver::IsStarted()) {
341 ProfileSaver::Stop(options_->DumpJitInfoOnShutdown());
Calin Juravle31f2c152015-10-23 17:56:15 +0100342 }
343}
344
Siva Chandra05d24152016-01-05 17:43:17 -0800345bool Jit::JitAtFirstUse() {
Nicolas Geoffray274fe4a2016-04-12 16:33:24 +0100346 return HotMethodThreshold() == 0;
Siva Chandra05d24152016-01-05 17:43:17 -0800347}
348
Nicolas Geoffray35122442016-03-02 12:05:30 +0000349bool Jit::CanInvokeCompiledCode(ArtMethod* method) {
350 return code_cache_->ContainsPc(method->GetEntryPointFromQuickCompiledCode());
351}
352
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800353Jit::~Jit() {
Nicolas Geoffray47b95802018-05-16 15:42:17 +0100354 DCHECK(!options_->GetSaveProfilingInfo() || !ProfileSaver::IsStarted());
355 if (options_->DumpJitInfoOnShutdown()) {
Andreas Gampe3fec9ac2016-09-13 10:47:28 -0700356 DumpInfo(LOG_STREAM(INFO));
Nicolas Geoffray4e92c3c2017-05-08 09:34:26 +0100357 Runtime::Current()->DumpDeoptimizations(LOG_STREAM(INFO));
Mathieu Chartiera4885cb2015-03-09 15:38:54 -0700358 }
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800359 DeleteThreadPool();
360 if (jit_compiler_handle_ != nullptr) {
361 jit_unload_(jit_compiler_handle_);
Mathieu Chartier72918ea2016-03-24 11:07:06 -0700362 jit_compiler_handle_ = nullptr;
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800363 }
364 if (jit_library_handle_ != nullptr) {
365 dlclose(jit_library_handle_);
Mathieu Chartier72918ea2016-03-24 11:07:06 -0700366 jit_library_handle_ = nullptr;
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800367 }
368}
369
Tamas Berghammer160e6df2016-01-05 14:29:02 +0000370void Jit::NewTypeLoadedIfUsingJit(mirror::Class* type) {
Calin Juravleffc87072016-04-20 14:22:09 +0100371 if (!Runtime::Current()->UseJitCompilation()) {
372 // No need to notify if we only use the JIT to save profiles.
373 return;
374 }
Tamas Berghammer160e6df2016-01-05 14:29:02 +0000375 jit::Jit* jit = Runtime::Current()->GetJit();
Nicolas Geoffrayc9de61c2018-11-27 17:34:31 +0000376 if (jit_generate_debug_info_(jit->jit_compiler_handle_)) {
Tamas Berghammerfffbee42016-01-15 13:09:34 +0000377 DCHECK(jit->jit_types_loaded_ != nullptr);
378 jit->jit_types_loaded_(jit->jit_compiler_handle_, &type, 1);
379 }
380}
381
382void Jit::DumpTypeInfoForLoadedTypes(ClassLinker* linker) {
383 struct CollectClasses : public ClassVisitor {
Roland Levillainbbc6e7e2018-08-24 16:58:47 +0100384 bool operator()(ObjPtr<mirror::Class> klass) override REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartier28357fa2016-10-18 16:27:40 -0700385 classes_.push_back(klass.Ptr());
Tamas Berghammerfffbee42016-01-15 13:09:34 +0000386 return true;
387 }
Mathieu Chartier9b1c9b72016-02-02 10:09:58 -0800388 std::vector<mirror::Class*> classes_;
Tamas Berghammerfffbee42016-01-15 13:09:34 +0000389 };
390
Nicolas Geoffrayc9de61c2018-11-27 17:34:31 +0000391 if (jit_generate_debug_info_(jit_compiler_handle_)) {
Tamas Berghammerfffbee42016-01-15 13:09:34 +0000392 ScopedObjectAccess so(Thread::Current());
393
394 CollectClasses visitor;
395 linker->VisitClasses(&visitor);
396 jit_types_loaded_(jit_compiler_handle_, visitor.classes_.data(), visitor.classes_.size());
Tamas Berghammer160e6df2016-01-05 14:29:02 +0000397 }
398}
399
Nicolas Geoffrayb331feb2016-02-05 16:51:53 +0000400extern "C" void art_quick_osr_stub(void** stack,
Evgenii Stepanov6d90fde2018-09-04 17:50:38 -0700401 size_t stack_size_in_bytes,
Nicolas Geoffrayb331feb2016-02-05 16:51:53 +0000402 const uint8_t* native_pc,
403 JValue* result,
404 const char* shorty,
405 Thread* self);
406
407bool Jit::MaybeDoOnStackReplacement(Thread* thread,
408 ArtMethod* method,
409 uint32_t dex_pc,
410 int32_t dex_pc_offset,
411 JValue* result) {
Nicolas Geoffraye8662132016-02-15 10:00:42 +0000412 if (!kEnableOnStackReplacement) {
413 return false;
414 }
415
Nicolas Geoffrayb331feb2016-02-05 16:51:53 +0000416 Jit* jit = Runtime::Current()->GetJit();
417 if (jit == nullptr) {
418 return false;
419 }
420
Nicolas Geoffrayb88d59e2016-02-17 11:31:49 +0000421 if (UNLIKELY(__builtin_frame_address(0) < thread->GetStackEnd())) {
422 // Don't attempt to do an OSR if we are close to the stack limit. Since
423 // the interpreter frames are still on stack, OSR has the potential
424 // to stack overflow even for a simple loop.
425 // b/27094810.
426 return false;
427 }
428
Nicolas Geoffrayd9bc4332016-02-05 23:32:25 +0000429 // Get the actual Java method if this method is from a proxy class. The compiler
430 // and the JIT code cache do not expect methods from proxy classes.
Andreas Gampe542451c2016-07-26 09:02:02 -0700431 method = method->GetInterfaceMethodIfProxy(kRuntimePointerSize);
Nicolas Geoffrayd9bc4332016-02-05 23:32:25 +0000432
Nicolas Geoffrayb331feb2016-02-05 16:51:53 +0000433 // Cheap check if the method has been compiled already. That's an indicator that we should
434 // osr into it.
435 if (!jit->GetCodeCache()->ContainsPc(method->GetEntryPointFromQuickCompiledCode())) {
436 return false;
437 }
438
Nicolas Geoffrayc0b27962016-02-16 12:06:05 +0000439 // Fetch some data before looking up for an OSR method. We don't want thread
440 // suspension once we hold an OSR method, as the JIT code cache could delete the OSR
441 // method while we are being suspended.
David Sehr0225f8e2018-01-31 08:52:24 +0000442 CodeItemDataAccessor accessor(method->DexInstructionData());
Mathieu Chartier808c7a52017-12-15 11:19:33 -0800443 const size_t number_of_vregs = accessor.RegistersSize();
Nicolas Geoffrayd186dd82016-02-16 10:03:44 +0000444 const char* shorty = method->GetShorty();
David Sehr709b0702016-10-13 09:12:37 -0700445 std::string method_name(VLOG_IS_ON(jit) ? method->PrettyMethod() : "");
Nicolas Geoffrayd186dd82016-02-16 10:03:44 +0000446 void** memory = nullptr;
447 size_t frame_size = 0;
448 ShadowFrame* shadow_frame = nullptr;
449 const uint8_t* native_pc = nullptr;
Nicolas Geoffrayb331feb2016-02-05 16:51:53 +0000450
Nicolas Geoffrayd186dd82016-02-16 10:03:44 +0000451 {
Mathieu Chartier268764d2016-09-13 12:09:38 -0700452 ScopedAssertNoThreadSuspension sts("Holding OSR method");
Nicolas Geoffrayd186dd82016-02-16 10:03:44 +0000453 const OatQuickMethodHeader* osr_method = jit->GetCodeCache()->LookupOsrMethodHeader(method);
454 if (osr_method == nullptr) {
455 // No osr method yet, just return to the interpreter.
456 return false;
Nicolas Geoffrayb331feb2016-02-05 16:51:53 +0000457 }
Nicolas Geoffrayd186dd82016-02-16 10:03:44 +0000458
David Srbecky052f8ca2018-04-26 15:42:54 +0100459 CodeInfo code_info(osr_method);
Nicolas Geoffrayd186dd82016-02-16 10:03:44 +0000460
461 // Find stack map starting at the target dex_pc.
David Srbecky052f8ca2018-04-26 15:42:54 +0100462 StackMap stack_map = code_info.GetOsrStackMapForDexPc(dex_pc + dex_pc_offset);
Nicolas Geoffrayd186dd82016-02-16 10:03:44 +0000463 if (!stack_map.IsValid()) {
464 // There is no OSR stack map for this dex pc offset. Just return to the interpreter in the
465 // hope that the next branch has one.
466 return false;
467 }
468
Alex Light21611932017-09-26 13:07:39 -0700469 // Before allowing the jump, make sure no code is actively inspecting the method to avoid
470 // jumping from interpreter to OSR while e.g. single stepping. Note that we could selectively
471 // disable OSR when single stepping, but that's currently hard to know at this point.
472 if (Runtime::Current()->GetRuntimeCallbacks()->IsMethodBeingInspected(method)) {
Aart Bik29bdaee2016-05-18 15:44:07 -0700473 return false;
474 }
475
Nicolas Geoffrayd186dd82016-02-16 10:03:44 +0000476 // We found a stack map, now fill the frame with dex register values from the interpreter's
477 // shadow frame.
David Srbeckyfd89b072018-06-03 12:00:22 +0100478 DexRegisterMap vreg_map = code_info.GetDexRegisterMapOf(stack_map);
Nicolas Geoffrayd186dd82016-02-16 10:03:44 +0000479
480 frame_size = osr_method->GetFrameSizeInBytes();
481
482 // Allocate memory to put shadow frame values. The osr stub will copy that memory to
483 // stack.
484 // Note that we could pass the shadow frame to the stub, and let it copy the values there,
485 // but that is engineering complexity not worth the effort for something like OSR.
486 memory = reinterpret_cast<void**>(malloc(frame_size));
487 CHECK(memory != nullptr);
488 memset(memory, 0, frame_size);
489
490 // Art ABI: ArtMethod is at the bottom of the stack.
491 memory[0] = method;
492
493 shadow_frame = thread->PopShadowFrame();
David Srbeckyfd89b072018-06-03 12:00:22 +0100494 if (vreg_map.empty()) {
Nicolas Geoffrayd186dd82016-02-16 10:03:44 +0000495 // If we don't have a dex register map, then there are no live dex registers at
496 // this dex pc.
497 } else {
David Srbeckyfd89b072018-06-03 12:00:22 +0100498 DCHECK_EQ(vreg_map.size(), number_of_vregs);
Nicolas Geoffrayd186dd82016-02-16 10:03:44 +0000499 for (uint16_t vreg = 0; vreg < number_of_vregs; ++vreg) {
David Srbeckye1402122018-06-13 18:20:45 +0100500 DexRegisterLocation::Kind location = vreg_map[vreg].GetKind();
Nicolas Geoffrayd186dd82016-02-16 10:03:44 +0000501 if (location == DexRegisterLocation::Kind::kNone) {
Nicolas Geoffrayc0b27962016-02-16 12:06:05 +0000502 // Dex register is dead or uninitialized.
Nicolas Geoffrayd186dd82016-02-16 10:03:44 +0000503 continue;
504 }
505
506 if (location == DexRegisterLocation::Kind::kConstant) {
507 // We skip constants because the compiled code knows how to handle them.
508 continue;
509 }
510
David Srbecky7dc11782016-02-25 13:23:56 +0000511 DCHECK_EQ(location, DexRegisterLocation::Kind::kInStack);
Nicolas Geoffrayd186dd82016-02-16 10:03:44 +0000512
513 int32_t vreg_value = shadow_frame->GetVReg(vreg);
David Srbeckye1402122018-06-13 18:20:45 +0100514 int32_t slot_offset = vreg_map[vreg].GetStackOffsetInBytes();
Nicolas Geoffrayd186dd82016-02-16 10:03:44 +0000515 DCHECK_LT(slot_offset, static_cast<int32_t>(frame_size));
516 DCHECK_GT(slot_offset, 0);
517 (reinterpret_cast<int32_t*>(memory))[slot_offset / sizeof(int32_t)] = vreg_value;
518 }
519 }
520
David Srbecky052f8ca2018-04-26 15:42:54 +0100521 native_pc = stack_map.GetNativePcOffset(kRuntimeISA) +
David Srbecky09ed0982016-02-12 21:58:43 +0000522 osr_method->GetEntryPoint();
Nicolas Geoffrayd186dd82016-02-16 10:03:44 +0000523 VLOG(jit) << "Jumping to "
524 << method_name
525 << "@"
526 << std::hex << reinterpret_cast<uintptr_t>(native_pc);
Nicolas Geoffrayb331feb2016-02-05 16:51:53 +0000527 }
528
Nicolas Geoffrayb331feb2016-02-05 16:51:53 +0000529 {
530 ManagedStack fragment;
531 thread->PushManagedStackFragment(&fragment);
532 (*art_quick_osr_stub)(memory,
533 frame_size,
534 native_pc,
535 result,
Nicolas Geoffrayd186dd82016-02-16 10:03:44 +0000536 shorty,
Nicolas Geoffrayb331feb2016-02-05 16:51:53 +0000537 thread);
Nicolas Geoffrayd186dd82016-02-16 10:03:44 +0000538
Nicolas Geoffrayb331feb2016-02-05 16:51:53 +0000539 if (UNLIKELY(thread->GetException() == Thread::GetDeoptimizationException())) {
540 thread->DeoptimizeWithDeoptimizationException(result);
541 }
542 thread->PopManagedStackFragment(fragment);
543 }
544 free(memory);
545 thread->PushShadowFrame(shadow_frame);
Nicolas Geoffrayd186dd82016-02-16 10:03:44 +0000546 VLOG(jit) << "Done running OSR code for " << method_name;
Nicolas Geoffrayb331feb2016-02-05 16:51:53 +0000547 return true;
548}
549
Nicolas Geoffraya4f81542016-03-08 16:57:48 +0000550void Jit::AddMemoryUsage(ArtMethod* method, size_t bytes) {
551 if (bytes > 4 * MB) {
552 LOG(INFO) << "Compiler allocated "
553 << PrettySize(bytes)
554 << " to compile "
David Sehr709b0702016-10-13 09:12:37 -0700555 << ArtMethod::PrettyMethod(method);
Nicolas Geoffraya4f81542016-03-08 16:57:48 +0000556 }
557 MutexLock mu(Thread::Current(), lock_);
558 memory_use_.AddValue(bytes);
559}
560
Roland Levillainbbc6e7e2018-08-24 16:58:47 +0100561class JitCompileTask final : public Task {
Nicolas Geoffray274fe4a2016-04-12 16:33:24 +0100562 public:
Nicolas Geoffrayce9ed362018-11-29 03:19:28 +0000563 enum class TaskKind {
Nicolas Geoffray274fe4a2016-04-12 16:33:24 +0100564 kAllocateProfile,
565 kCompile,
Nicolas Geoffray075456e2018-12-14 08:54:21 +0000566 kCompileBaseline,
Nicolas Geoffrayce9ed362018-11-29 03:19:28 +0000567 kCompileOsr,
Nicolas Geoffrayd2f13ba2019-06-04 16:48:58 +0100568 kPreCompile,
Nicolas Geoffray274fe4a2016-04-12 16:33:24 +0100569 };
570
Nicolas Geoffrayde1b2a22019-02-27 09:10:57 +0000571 JitCompileTask(ArtMethod* method, TaskKind kind) : method_(method), kind_(kind), klass_(nullptr) {
Nicolas Geoffray274fe4a2016-04-12 16:33:24 +0100572 ScopedObjectAccess soa(Thread::Current());
Nicolas Geoffray1d077ac2019-02-27 15:53:28 +0000573 // For a non-bootclasspath class, add a global ref to the class to prevent class unloading
574 // until compilation is done.
575 if (method->GetDeclaringClass()->GetClassLoader() != nullptr) {
576 klass_ = soa.Vm()->AddGlobalRef(soa.Self(), method_->GetDeclaringClass());
577 CHECK(klass_ != nullptr);
578 }
Nicolas Geoffray274fe4a2016-04-12 16:33:24 +0100579 }
580
581 ~JitCompileTask() {
Nicolas Geoffray1d077ac2019-02-27 15:53:28 +0000582 if (klass_ != nullptr) {
583 ScopedObjectAccess soa(Thread::Current());
584 soa.Vm()->DeleteGlobalRef(soa.Self(), klass_);
585 }
Nicolas Geoffray274fe4a2016-04-12 16:33:24 +0100586 }
587
Roland Levillainbbc6e7e2018-08-24 16:58:47 +0100588 void Run(Thread* self) override {
Nicolas Geoffray274fe4a2016-04-12 16:33:24 +0100589 ScopedObjectAccess soa(self);
Nicolas Geoffrayce9ed362018-11-29 03:19:28 +0000590 switch (kind_) {
Nicolas Geoffrayd2f13ba2019-06-04 16:48:58 +0100591 case TaskKind::kPreCompile:
Nicolas Geoffrayce9ed362018-11-29 03:19:28 +0000592 case TaskKind::kCompile:
Nicolas Geoffray075456e2018-12-14 08:54:21 +0000593 case TaskKind::kCompileBaseline:
Nicolas Geoffrayce9ed362018-11-29 03:19:28 +0000594 case TaskKind::kCompileOsr: {
595 Runtime::Current()->GetJit()->CompileMethod(
596 method_,
597 self,
Nicolas Geoffray075456e2018-12-14 08:54:21 +0000598 /* baseline= */ (kind_ == TaskKind::kCompileBaseline),
Nicolas Geoffrayd2f13ba2019-06-04 16:48:58 +0100599 /* osr= */ (kind_ == TaskKind::kCompileOsr),
600 /* prejit= */ (kind_ == TaskKind::kPreCompile));
Nicolas Geoffrayce9ed362018-11-29 03:19:28 +0000601 break;
602 }
603 case TaskKind::kAllocateProfile: {
604 if (ProfilingInfo::Create(self, method_, /* retry_allocation= */ true)) {
605 VLOG(jit) << "Start profiling " << ArtMethod::PrettyMethod(method_);
606 }
607 break;
Nicolas Geoffray274fe4a2016-04-12 16:33:24 +0100608 }
609 }
Calin Juravlea2638922016-04-29 16:44:11 +0100610 ProfileSaver::NotifyJitActivity();
Nicolas Geoffray274fe4a2016-04-12 16:33:24 +0100611 }
612
Roland Levillainbbc6e7e2018-08-24 16:58:47 +0100613 void Finalize() override {
Nicolas Geoffray274fe4a2016-04-12 16:33:24 +0100614 delete this;
615 }
616
617 private:
618 ArtMethod* const method_;
619 const TaskKind kind_;
620 jobject klass_;
621
622 DISALLOW_IMPLICIT_CONSTRUCTORS(JitCompileTask);
623};
624
Nicolas Geoffrayde1b2a22019-02-27 09:10:57 +0000625class ZygoteTask final : public Task {
626 public:
627 ZygoteTask() {}
628
629 void Run(Thread* self) override {
Nicolas Geoffray9ac09ee2019-05-08 23:38:27 +0100630 Runtime* runtime = Runtime::Current();
631 std::string profile_file;
632 for (const std::string& option : runtime->GetImageCompilerOptions()) {
633 if (android::base::StartsWith(option, "--profile-file=")) {
634 profile_file = option.substr(strlen("--profile-file="));
635 break;
636 }
637 }
638
639 const std::vector<const DexFile*>& boot_class_path =
640 runtime->GetClassLinker()->GetBootClassPath();
641 ScopedNullHandle<mirror::ClassLoader> null_handle;
642 // We add to the queue for zygote so that we can fork processes in-between
643 // compilations.
644 runtime->GetJit()->CompileMethodsFromProfile(
645 self, boot_class_path, profile_file, null_handle, /* add_to_queue= */ true);
646 }
647
648 void Finalize() override {
649 delete this;
Nicolas Geoffrayde1b2a22019-02-27 09:10:57 +0000650 }
651
652 private:
653 DISALLOW_COPY_AND_ASSIGN(ZygoteTask);
654};
655
Nicolas Geoffray9ac09ee2019-05-08 23:38:27 +0100656static std::string GetProfileFile(const std::string& dex_location) {
657 // Hardcoded assumption where the profile file is.
658 // TODO(ngeoffray): this is brittle and we would need to change change if we
659 // wanted to do more eager JITting of methods in a profile. This is
660 // currently only for system server.
661 return dex_location + ".prof";
662}
663
664class JitProfileTask final : public Task {
665 public:
666 JitProfileTask(const std::vector<std::unique_ptr<const DexFile>>& dex_files,
Nicolas Geoffray741a0702019-06-10 11:18:11 +0100667 jobject class_loader) {
668 ScopedObjectAccess soa(Thread::Current());
669 StackHandleScope<1> hs(soa.Self());
670 Handle<mirror::ClassLoader> h_loader(hs.NewHandle(
671 soa.Decode<mirror::ClassLoader>(class_loader)));
Nicolas Geoffray9ac09ee2019-05-08 23:38:27 +0100672 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
673 for (const auto& dex_file : dex_files) {
674 dex_files_.push_back(dex_file.get());
675 // Register the dex file so that we can guarantee it doesn't get deleted
676 // while reading it during the task.
Nicolas Geoffray741a0702019-06-10 11:18:11 +0100677 class_linker->RegisterDexFile(*dex_file.get(), h_loader.Get());
Nicolas Geoffray9ac09ee2019-05-08 23:38:27 +0100678 }
Nicolas Geoffray741a0702019-06-10 11:18:11 +0100679 // We also create our own global ref to use this class loader later.
680 class_loader_ = soa.Vm()->AddGlobalRef(soa.Self(), h_loader.Get());
Nicolas Geoffray9ac09ee2019-05-08 23:38:27 +0100681 }
682
683 void Run(Thread* self) override {
684 ScopedObjectAccess soa(self);
685 StackHandleScope<1> hs(self);
686 Handle<mirror::ClassLoader> loader = hs.NewHandle<mirror::ClassLoader>(
687 soa.Decode<mirror::ClassLoader>(class_loader_));
688 Runtime::Current()->GetJit()->CompileMethodsFromProfile(
689 self,
690 dex_files_,
691 GetProfileFile(dex_files_[0]->GetLocation()),
692 loader,
693 /* add_to_queue= */ false);
694 }
695
696 void Finalize() override {
697 delete this;
698 }
699
700 private:
701 std::vector<const DexFile*> dex_files_;
702 jobject class_loader_;
703
704 DISALLOW_COPY_AND_ASSIGN(JitProfileTask);
705};
706
Nicolas Geoffrayce9ed362018-11-29 03:19:28 +0000707void Jit::CreateThreadPool() {
708 // There is a DCHECK in the 'AddSamples' method to ensure the tread pool
709 // is not null when we instrument.
710
711 // We need peers as we may report the JIT thread, e.g., in the debugger.
712 constexpr bool kJitPoolNeedsPeers = true;
713 thread_pool_.reset(new ThreadPool("Jit thread pool", 1, kJitPoolNeedsPeers));
714
715 thread_pool_->SetPthreadPriority(options_->GetThreadPoolPthreadPriority());
716 Start();
Nicolas Geoffrayde1b2a22019-02-27 09:10:57 +0000717
718 // If we're not using the default boot image location, request a JIT task to
719 // compile all methods in the boot image profile.
720 Runtime* runtime = Runtime::Current();
David Srbecky3db3d372019-04-17 18:19:17 +0100721 if (runtime->IsZygote() && runtime->IsUsingApexBootImageLocation() && UseJitCompilation()) {
Nicolas Geoffrayde1b2a22019-02-27 09:10:57 +0000722 thread_pool_->AddTask(Thread::Current(), new ZygoteTask());
723 }
724}
725
Nicolas Geoffray9ac09ee2019-05-08 23:38:27 +0100726void Jit::RegisterDexFiles(const std::vector<std::unique_ptr<const DexFile>>& dex_files,
Nicolas Geoffray741a0702019-06-10 11:18:11 +0100727 jobject class_loader) {
Nicolas Geoffray9ac09ee2019-05-08 23:38:27 +0100728 if (dex_files.empty()) {
729 return;
Nicolas Geoffrayde1b2a22019-02-27 09:10:57 +0000730 }
Nicolas Geoffray9ac09ee2019-05-08 23:38:27 +0100731 Runtime* runtime = Runtime::Current();
732 if (runtime->IsSystemServer() && runtime->IsUsingApexBootImageLocation() && UseJitCompilation()) {
733 thread_pool_->AddTask(Thread::Current(), new JitProfileTask(dex_files, class_loader));
734 }
735}
736
737void Jit::CompileMethodsFromProfile(
738 Thread* self,
739 const std::vector<const DexFile*>& dex_files,
740 const std::string& profile_file,
741 Handle<mirror::ClassLoader> class_loader,
742 bool add_to_queue) {
743
744 if (profile_file.empty()) {
745 LOG(WARNING) << "Expected a profile file in JIT zygote mode";
Nicolas Geoffrayde1b2a22019-02-27 09:10:57 +0000746 return;
747 }
748
749 std::string error_msg;
Nicolas Geoffray9ac09ee2019-05-08 23:38:27 +0100750 ScopedFlock profile = LockedFile::Open(
751 profile_file.c_str(), O_RDONLY, /* block= */ false, &error_msg);
Nicolas Geoffrayde1b2a22019-02-27 09:10:57 +0000752
753 // Return early if we're unable to obtain a lock on the profile.
Nicolas Geoffray9ac09ee2019-05-08 23:38:27 +0100754 if (profile.get() == nullptr) {
Nicolas Geoffrayde1b2a22019-02-27 09:10:57 +0000755 LOG(ERROR) << "Cannot lock profile: " << error_msg;
756 return;
757 }
758
759 ProfileCompilationInfo profile_info;
Nicolas Geoffray9ac09ee2019-05-08 23:38:27 +0100760 if (!profile_info.Load(profile->Fd())) {
Nicolas Geoffrayde1b2a22019-02-27 09:10:57 +0000761 LOG(ERROR) << "Could not load profile file";
762 return;
763 }
Nicolas Geoffrayde1b2a22019-02-27 09:10:57 +0000764 ScopedObjectAccess soa(self);
765 StackHandleScope<1> hs(self);
766 MutableHandle<mirror::DexCache> dex_cache = hs.NewHandle<mirror::DexCache>(nullptr);
Nicolas Geoffray9ac09ee2019-05-08 23:38:27 +0100767 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
768 for (const DexFile* dex_file : dex_files) {
Nicolas Geoffrayf59bc112019-04-03 10:29:29 +0100769 if (LocationIsOnRuntimeModule(dex_file->GetLocation().c_str())) {
770 // The runtime module jars are already preopted.
771 continue;
772 }
Nicolas Geoffraydc2fbb62019-04-11 22:55:50 +0100773 // To speed up class lookups, generate a type lookup table for
774 // the dex file.
Nicolas Geoffrayc5e3a522019-04-30 09:47:55 +0100775 if (dex_file->GetOatDexFile() == nullptr) {
776 TypeLookupTable type_lookup_table = TypeLookupTable::Create(*dex_file);
777 type_lookup_tables_.push_back(
778 std::make_unique<art::OatDexFile>(std::move(type_lookup_table)));
779 dex_file->SetOatDexFile(type_lookup_tables_.back().get());
780 }
Nicolas Geoffraydc2fbb62019-04-11 22:55:50 +0100781
Nicolas Geoffrayde1b2a22019-02-27 09:10:57 +0000782 std::set<dex::TypeIndex> class_types;
Nicolas Geoffray1d077ac2019-02-27 15:53:28 +0000783 std::set<uint16_t> all_methods;
Nicolas Geoffrayde1b2a22019-02-27 09:10:57 +0000784 if (!profile_info.GetClassesAndMethods(*dex_file,
785 &class_types,
Nicolas Geoffray1d077ac2019-02-27 15:53:28 +0000786 &all_methods,
787 &all_methods,
788 &all_methods)) {
Nicolas Geoffrayf59bc112019-04-03 10:29:29 +0100789 // This means the profile file did not reference the dex file, which is the case
790 // if there's no classes and methods of that dex file in the profile.
Nicolas Geoffrayde1b2a22019-02-27 09:10:57 +0000791 continue;
792 }
793 dex_cache.Assign(class_linker->FindDexCache(self, *dex_file));
794 CHECK(dex_cache != nullptr) << "Could not find dex cache for " << dex_file->GetLocation();
Nicolas Geoffray1d077ac2019-02-27 15:53:28 +0000795
796 for (uint16_t method_idx : all_methods) {
Nicolas Geoffrayde1b2a22019-02-27 09:10:57 +0000797 ArtMethod* method = class_linker->ResolveMethodWithoutInvokeType(
Nicolas Geoffray9ac09ee2019-05-08 23:38:27 +0100798 method_idx, dex_cache, class_loader);
Nicolas Geoffrayde1b2a22019-02-27 09:10:57 +0000799 if (method == nullptr) {
800 self->ClearException();
801 continue;
802 }
803 if (!method->IsCompilable() || !method->IsInvokable()) {
804 continue;
805 }
806 const void* entry_point = method->GetEntryPointFromQuickCompiledCode();
807 if (class_linker->IsQuickToInterpreterBridge(entry_point) ||
Nicolas Geoffray7989ac92019-04-10 12:42:30 +0100808 class_linker->IsQuickGenericJniStub(entry_point) ||
809 class_linker->IsQuickResolutionStub(entry_point)) {
Nicolas Geoffrayb10f0282019-04-12 17:30:52 +0100810 // Special case ZygoteServer class so that it gets compiled before the
811 // zygote enters it. This avoids needing to do OSR during app startup.
812 // TODO: have a profile instead.
Nicolas Geoffray9ac09ee2019-05-08 23:38:27 +0100813 if (!add_to_queue || method->GetDeclaringClass()->DescriptorEquals(
Nicolas Geoffrayb10f0282019-04-12 17:30:52 +0100814 "Lcom/android/internal/os/ZygoteServer;")) {
Nicolas Geoffrayd2f13ba2019-06-04 16:48:58 +0100815 CompileMethod(method, self, /* baseline= */ false, /* osr= */ false, /* prejit= */ true);
Nicolas Geoffrayb10f0282019-04-12 17:30:52 +0100816 } else {
817 thread_pool_->AddTask(self,
Nicolas Geoffrayd2f13ba2019-06-04 16:48:58 +0100818 new JitCompileTask(method, JitCompileTask::TaskKind::kPreCompile));
Nicolas Geoffrayb10f0282019-04-12 17:30:52 +0100819 }
Nicolas Geoffrayde1b2a22019-02-27 09:10:57 +0000820 }
821 }
822 }
Nicolas Geoffrayce9ed362018-11-29 03:19:28 +0000823}
824
Orion Hodson52f5a1f2018-05-02 11:05:44 +0100825static bool IgnoreSamplesForMethod(ArtMethod* method) REQUIRES_SHARED(Locks::mutator_lock_) {
826 if (method->IsClassInitializer() || !method->IsCompilable()) {
827 // We do not want to compile such methods.
828 return true;
829 }
830 if (method->IsNative()) {
831 ObjPtr<mirror::Class> klass = method->GetDeclaringClass();
Vladimir Markoc7aa87e2018-05-24 15:19:52 +0100832 if (klass == GetClassRoot<mirror::MethodHandle>() ||
833 klass == GetClassRoot<mirror::VarHandle>()) {
Orion Hodson52f5a1f2018-05-02 11:05:44 +0100834 // MethodHandle and VarHandle invocation methods are required to throw an
835 // UnsupportedOperationException if invoked reflectively. We achieve this by having native
836 // implementations that arise the exception. We need to disable JIT compilation of these JNI
837 // methods as it can lead to transitioning between JIT compiled JNI stubs and generic JNI
838 // stubs. Since these stubs have different stack representations we can then crash in stack
839 // walking (b/78151261).
840 return true;
841 }
842 }
843 return false;
844}
845
David Srbeckye3fc2d12018-11-30 13:41:14 +0000846bool Jit::MaybeCompileMethod(Thread* self,
847 ArtMethod* method,
848 uint32_t old_count,
849 uint32_t new_count,
850 bool with_backedges) {
Nicolas Geoffray274fe4a2016-04-12 16:33:24 +0100851 if (thread_pool_ == nullptr) {
Nicolas Geoffrayce9ed362018-11-29 03:19:28 +0000852 // Should only see this when shutting down, starting up, or in safe mode.
Nicolas Geoffrayc9de61c2018-11-27 17:34:31 +0000853 DCHECK(Runtime::Current()->IsShuttingDown(self) ||
854 !Runtime::Current()->IsFinishedStarting() ||
Nicolas Geoffrayce9ed362018-11-29 03:19:28 +0000855 Runtime::Current()->IsSafeMode());
David Srbeckye3fc2d12018-11-30 13:41:14 +0000856 return false;
Nicolas Geoffray274fe4a2016-04-12 16:33:24 +0100857 }
Orion Hodson52f5a1f2018-05-02 11:05:44 +0100858 if (IgnoreSamplesForMethod(method)) {
David Srbeckye3fc2d12018-11-30 13:41:14 +0000859 return false;
Nicolas Geoffray274fe4a2016-04-12 16:33:24 +0100860 }
Nicolas Geoffray47b95802018-05-16 15:42:17 +0100861 if (HotMethodThreshold() == 0) {
David Srbeckyf4886df2017-12-11 16:06:29 +0000862 // Tests might request JIT on first use (compiled synchronously in the interpreter).
David Srbeckye3fc2d12018-11-30 13:41:14 +0000863 return false;
David Srbeckyf4886df2017-12-11 16:06:29 +0000864 }
Nicolas Geoffray274fe4a2016-04-12 16:33:24 +0100865 DCHECK(thread_pool_ != nullptr);
Nicolas Geoffray47b95802018-05-16 15:42:17 +0100866 DCHECK_GT(WarmMethodThreshold(), 0);
867 DCHECK_GT(HotMethodThreshold(), WarmMethodThreshold());
868 DCHECK_GT(OSRMethodThreshold(), HotMethodThreshold());
869 DCHECK_GE(PriorityThreadWeight(), 1);
870 DCHECK_LE(PriorityThreadWeight(), HotMethodThreshold());
Nicolas Geoffray274fe4a2016-04-12 16:33:24 +0100871
David Srbeckye3fc2d12018-11-30 13:41:14 +0000872 if (old_count < WarmMethodThreshold() && new_count >= WarmMethodThreshold()) {
873 // Note: Native method have no "warm" state or profiling info.
874 if (!method->IsNative() && method->GetProfilingInfo(kRuntimePointerSize) == nullptr) {
Andreas Gampe98ea9d92018-10-19 14:06:15 -0700875 bool success = ProfilingInfo::Create(self, method, /* retry_allocation= */ false);
Nicolas Geoffray941c6ec2017-06-09 11:53:23 +0000876 if (success) {
877 VLOG(jit) << "Start profiling " << method->PrettyMethod();
878 }
Nicolas Geoffray274fe4a2016-04-12 16:33:24 +0100879
Nicolas Geoffray941c6ec2017-06-09 11:53:23 +0000880 if (thread_pool_ == nullptr) {
881 // Calling ProfilingInfo::Create might put us in a suspended state, which could
882 // lead to the thread pool being deleted when we are shutting down.
883 DCHECK(Runtime::Current()->IsShuttingDown(self));
David Srbeckye3fc2d12018-11-30 13:41:14 +0000884 return false;
Nicolas Geoffray941c6ec2017-06-09 11:53:23 +0000885 }
Nicolas Geoffray274fe4a2016-04-12 16:33:24 +0100886
Nicolas Geoffray941c6ec2017-06-09 11:53:23 +0000887 if (!success) {
888 // We failed allocating. Instead of doing the collection on the Java thread, we push
889 // an allocation to a compiler thread, that will do the collection.
Nicolas Geoffrayce9ed362018-11-29 03:19:28 +0000890 thread_pool_->AddTask(
891 self, new JitCompileTask(method, JitCompileTask::TaskKind::kAllocateProfile));
Nicolas Geoffray941c6ec2017-06-09 11:53:23 +0000892 }
Nicolas Geoffray274fe4a2016-04-12 16:33:24 +0100893 }
David Srbeckye3fc2d12018-11-30 13:41:14 +0000894 }
895 if (UseJitCompilation()) {
David Srbeckyc45b5892019-04-24 10:32:04 +0100896 if (old_count == 0 &&
897 method->IsNative() &&
898 Runtime::Current()->IsUsingApexBootImageLocation()) {
899 // jitzygote: Compile JNI stub on first use to avoid the expensive generic stub.
Nicolas Geoffrayd2f13ba2019-06-04 16:48:58 +0100900 CompileMethod(method, self, /* baseline= */ false, /* osr= */ false, /* prejit= */ false);
David Srbeckyc45b5892019-04-24 10:32:04 +0100901 return true;
902 }
David Srbeckye3fc2d12018-11-30 13:41:14 +0000903 if (old_count < HotMethodThreshold() && new_count >= HotMethodThreshold()) {
904 if (!code_cache_->ContainsPc(method->GetEntryPointFromQuickCompiledCode())) {
Calin Juravleffc87072016-04-20 14:22:09 +0100905 DCHECK(thread_pool_ != nullptr);
Nicolas Geoffrayce9ed362018-11-29 03:19:28 +0000906 thread_pool_->AddTask(self, new JitCompileTask(method, JitCompileTask::TaskKind::kCompile));
Calin Juravleffc87072016-04-20 14:22:09 +0100907 }
David Srbeckye3fc2d12018-11-30 13:41:14 +0000908 }
909 if (old_count < OSRMethodThreshold() && new_count >= OSRMethodThreshold()) {
Calin Juravleffc87072016-04-20 14:22:09 +0100910 if (!with_backedges) {
David Srbeckye3fc2d12018-11-30 13:41:14 +0000911 return false;
Calin Juravleffc87072016-04-20 14:22:09 +0100912 }
Vladimir Marko2196c652017-11-30 16:16:07 +0000913 DCHECK(!method->IsNative()); // No back edges reported for native methods.
David Srbeckye3fc2d12018-11-30 13:41:14 +0000914 if (!code_cache_->IsOsrCompiled(method)) {
Calin Juravleffc87072016-04-20 14:22:09 +0100915 DCHECK(thread_pool_ != nullptr);
Nicolas Geoffrayce9ed362018-11-29 03:19:28 +0000916 thread_pool_->AddTask(
917 self, new JitCompileTask(method, JitCompileTask::TaskKind::kCompileOsr));
Calin Juravleffc87072016-04-20 14:22:09 +0100918 }
Nicolas Geoffray274fe4a2016-04-12 16:33:24 +0100919 }
920 }
David Srbeckye3fc2d12018-11-30 13:41:14 +0000921 return true;
Nicolas Geoffray274fe4a2016-04-12 16:33:24 +0100922}
923
Alex Light59b950f2018-10-08 10:43:06 -0700924class ScopedSetRuntimeThread {
925 public:
926 explicit ScopedSetRuntimeThread(Thread* self)
927 : self_(self), was_runtime_thread_(self_->IsRuntimeThread()) {
928 self_->SetIsRuntimeThread(true);
929 }
930
931 ~ScopedSetRuntimeThread() {
932 self_->SetIsRuntimeThread(was_runtime_thread_);
933 }
934
935 private:
936 Thread* self_;
937 bool was_runtime_thread_;
938};
939
Nicolas Geoffray274fe4a2016-04-12 16:33:24 +0100940void Jit::MethodEntered(Thread* thread, ArtMethod* method) {
Calin Juravleffc87072016-04-20 14:22:09 +0100941 Runtime* runtime = Runtime::Current();
942 if (UNLIKELY(runtime->UseJitCompilation() && runtime->GetJit()->JitAtFirstUse())) {
Vladimir Markobe0c7cf2018-03-19 13:40:56 +0000943 ArtMethod* np_method = method->GetInterfaceMethodIfProxy(kRuntimePointerSize);
Vladimir Markobe0c7cf2018-03-19 13:40:56 +0000944 if (np_method->IsCompilable()) {
Nicolas Geoffray29bb8032019-06-06 10:32:24 +0100945 if (!np_method->IsNative()) {
946 // The compiler requires a ProfilingInfo object for non-native methods.
947 ProfilingInfo::Create(thread, np_method, /* retry_allocation= */ true);
948 }
949 // TODO(ngeoffray): For JIT at first use, use kPreCompile. Currently we don't due to
950 // conflicts with jitzygote optimizations.
951 JitCompileTask compile_task(method, JitCompileTask::TaskKind::kCompile);
Alex Light59b950f2018-10-08 10:43:06 -0700952 // Fake being in a runtime thread so that class-load behavior will be the same as normal jit.
953 ScopedSetRuntimeThread ssrt(thread);
Vladimir Markobe0c7cf2018-03-19 13:40:56 +0000954 compile_task.Run(thread);
955 }
Nicolas Geoffray274fe4a2016-04-12 16:33:24 +0100956 return;
957 }
958
Andreas Gampe542451c2016-07-26 09:02:02 -0700959 ProfilingInfo* profiling_info = method->GetProfilingInfo(kRuntimePointerSize);
Nicolas Geoffray274fe4a2016-04-12 16:33:24 +0100960 // Update the entrypoint if the ProfilingInfo has one. The interpreter will call it
Alex Light2d441b12018-06-08 15:33:21 -0700961 // instead of interpreting the method. We don't update it for instrumentation as the entrypoint
962 // must remain the instrumentation entrypoint.
963 if ((profiling_info != nullptr) &&
964 (profiling_info->GetSavedEntryPoint() != nullptr) &&
965 (method->GetEntryPointFromQuickCompiledCode() != GetQuickInstrumentationEntryPoint())) {
Nicolas Geoffray480d5102016-04-18 12:09:30 +0100966 Runtime::Current()->GetInstrumentation()->UpdateMethodsCode(
967 method, profiling_info->GetSavedEntryPoint());
Nicolas Geoffray274fe4a2016-04-12 16:33:24 +0100968 } else {
Andreas Gampe98ea9d92018-10-19 14:06:15 -0700969 AddSamples(thread, method, 1, /* with_backedges= */false);
Nicolas Geoffray274fe4a2016-04-12 16:33:24 +0100970 }
971}
972
Mathieu Chartieref41db72016-10-25 15:08:01 -0700973void Jit::InvokeVirtualOrInterface(ObjPtr<mirror::Object> this_object,
Nicolas Geoffray274fe4a2016-04-12 16:33:24 +0100974 ArtMethod* caller,
975 uint32_t dex_pc,
976 ArtMethod* callee ATTRIBUTE_UNUSED) {
Mathieu Chartier268764d2016-09-13 12:09:38 -0700977 ScopedAssertNoThreadSuspension ants(__FUNCTION__);
Nicolas Geoffray274fe4a2016-04-12 16:33:24 +0100978 DCHECK(this_object != nullptr);
Andreas Gampe542451c2016-07-26 09:02:02 -0700979 ProfilingInfo* info = caller->GetProfilingInfo(kRuntimePointerSize);
Nicolas Geoffray274fe4a2016-04-12 16:33:24 +0100980 if (info != nullptr) {
Nicolas Geoffray274fe4a2016-04-12 16:33:24 +0100981 info->AddInvokeInfo(dex_pc, this_object->GetClass());
982 }
983}
984
985void Jit::WaitForCompilationToFinish(Thread* self) {
986 if (thread_pool_ != nullptr) {
987 thread_pool_->Wait(self, false, false);
988 }
989}
990
Nicolas Geoffray021c5f22016-12-16 11:22:05 +0000991void Jit::Stop() {
992 Thread* self = Thread::Current();
993 // TODO(ngeoffray): change API to not require calling WaitForCompilationToFinish twice.
994 WaitForCompilationToFinish(self);
995 GetThreadPool()->StopWorkers(self);
996 WaitForCompilationToFinish(self);
997}
998
999void Jit::Start() {
David Srbeckyd25eb2c2018-07-19 12:17:04 +00001000 GetThreadPool()->StartWorkers(Thread::Current());
Nicolas Geoffray021c5f22016-12-16 11:22:05 +00001001}
1002
Andreas Gampef149b3f2016-11-16 14:58:24 -08001003ScopedJitSuspend::ScopedJitSuspend() {
1004 jit::Jit* jit = Runtime::Current()->GetJit();
1005 was_on_ = (jit != nullptr) && (jit->GetThreadPool() != nullptr);
1006 if (was_on_) {
Nicolas Geoffray021c5f22016-12-16 11:22:05 +00001007 jit->Stop();
Andreas Gampef149b3f2016-11-16 14:58:24 -08001008 }
1009}
1010
1011ScopedJitSuspend::~ScopedJitSuspend() {
1012 if (was_on_) {
1013 DCHECK(Runtime::Current()->GetJit() != nullptr);
1014 DCHECK(Runtime::Current()->GetJit()->GetThreadPool() != nullptr);
Nicolas Geoffray021c5f22016-12-16 11:22:05 +00001015 Runtime::Current()->GetJit()->Start();
Andreas Gampef149b3f2016-11-16 14:58:24 -08001016 }
1017}
1018
Nicolas Geoffray0d54cfb2019-05-03 09:13:52 +01001019void Jit::PostForkChildAction(bool is_system_server, bool is_zygote) {
Nicolas Geoffrayce9ed362018-11-29 03:19:28 +00001020 if (is_zygote) {
Nicolas Geoffray953da542019-03-04 10:09:11 +00001021 // Remove potential tasks that have been inherited from the zygote. Child zygotes
1022 // currently don't need the whole boot image compiled (ie webview_zygote).
1023 thread_pool_->RemoveAllTasks(Thread::Current());
Nicolas Geoffrayce9ed362018-11-29 03:19:28 +00001024 // Don't transition if this is for a child zygote.
1025 return;
1026 }
1027 if (Runtime::Current()->IsSafeMode()) {
1028 // Delete the thread pool, we are not going to JIT.
1029 thread_pool_.reset(nullptr);
1030 return;
1031 }
Nicolas Geoffrayc9de61c2018-11-27 17:34:31 +00001032 // At this point, the compiler options have been adjusted to the particular configuration
1033 // of the forked child. Parse them again.
1034 jit_update_options_(jit_compiler_handle_);
1035
1036 // Adjust the status of code cache collection: the status from zygote was to not collect.
1037 code_cache_->SetGarbageCollectCode(!jit_generate_debug_info_(jit_compiler_handle_) &&
1038 !Runtime::Current()->GetInstrumentation()->AreExitStubsInstalled());
Nicolas Geoffrayce9ed362018-11-29 03:19:28 +00001039
1040 if (thread_pool_ != nullptr) {
Nicolas Geoffray0d54cfb2019-05-03 09:13:52 +01001041 if (!is_system_server) {
1042 // Remove potential tasks that have been inherited from the zygote.
1043 // We keep the queue for system server, as not having those methods compiled
1044 // impacts app startup.
1045 thread_pool_->RemoveAllTasks(Thread::Current());
Nicolas Geoffray9ac09ee2019-05-08 23:38:27 +01001046 } else if (Runtime::Current()->IsUsingApexBootImageLocation() && UseJitCompilation()) {
1047 // Disable garbage collection: we don't want it to delete methods we're compiling
1048 // through boot and system server profiles.
1049 // TODO(ngeoffray): Fix this so we still collect deoptimized and unused code.
1050 code_cache_->SetGarbageCollectCode(false);
Nicolas Geoffray0d54cfb2019-05-03 09:13:52 +01001051 }
Nicolas Geoffrayce9ed362018-11-29 03:19:28 +00001052
1053 // Resume JIT compilation.
1054 thread_pool_->CreateThreads();
1055 }
1056}
1057
1058void Jit::PreZygoteFork() {
1059 if (thread_pool_ == nullptr) {
1060 return;
1061 }
1062 thread_pool_->DeleteThreads();
1063}
1064
1065void Jit::PostZygoteFork() {
1066 if (thread_pool_ == nullptr) {
1067 return;
1068 }
1069 thread_pool_->CreateThreads();
Nicolas Geoffrayc9de61c2018-11-27 17:34:31 +00001070}
1071
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08001072} // namespace jit
1073} // namespace art