blob: a7824378c284ea4db241d585543ce46ff90a89d8 [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#ifndef ART_RUNTIME_JIT_JIT_H_
18#define ART_RUNTIME_JIT_JIT_H_
19
Nicolas Geoffraya4f81542016-03-08 16:57:48 +000020#include "base/arena_allocator.h"
21#include "base/histogram-inl.h"
Mathieu Chartiere5f13e52015-02-24 09:37:21 -080022#include "base/macros.h"
23#include "base/mutex.h"
Mathieu Chartiera4885cb2015-03-09 15:38:54 -070024#include "base/timing_logger.h"
Mathieu Chartieref41db72016-10-25 15:08:01 -070025#include "jit/profile_saver_options.h"
26#include "obj_ptr.h"
Mathieu Chartiere5f13e52015-02-24 09:37:21 -080027#include "object_callbacks.h"
Calin Juravle31f2c152015-10-23 17:56:15 +010028#include "offline_profiling_info.h"
Mathieu Chartiere5f13e52015-02-24 09:37:21 -080029#include "thread_pool.h"
30
31namespace art {
32
Mathieu Chartiere401d142015-04-22 13:56:20 -070033class ArtMethod;
David Sehr9323e6e2016-09-13 08:58:35 -070034class ClassLinker;
Mathieu Chartiere5f13e52015-02-24 09:37:21 -080035struct RuntimeArgumentMap;
Vladimir Marko3a21e382016-09-02 12:38:38 +010036union JValue;
Mathieu Chartiere5f13e52015-02-24 09:37:21 -080037
David Sehr709b0702016-10-13 09:12:37 -070038namespace mirror {
39class Object;
40class Class;
41} // namespace mirror
42
Mathieu Chartiere5f13e52015-02-24 09:37:21 -080043namespace jit {
44
45class JitCodeCache;
Mathieu Chartiere5f13e52015-02-24 09:37:21 -080046class JitOptions;
47
Nicolas Geoffray274fe4a2016-04-12 16:33:24 +010048static constexpr int16_t kJitCheckForOSR = -1;
49static constexpr int16_t kJitHotnessDisabled = -2;
50
Mathieu Chartiere5f13e52015-02-24 09:37:21 -080051class Jit {
52 public:
53 static constexpr bool kStressMode = kIsDebugBuild;
Nicolas Geoffray83f080a2016-03-08 16:50:21 +000054 static constexpr size_t kDefaultCompileThreshold = kStressMode ? 2 : 10000;
Nicolas Geoffray71cd50f2016-04-14 15:00:33 +010055 static constexpr size_t kDefaultPriorityThreadWeightRatio = 1000;
Nicolas Geoffraybd553eb2016-04-28 13:56:04 +010056 static constexpr size_t kDefaultInvokeTransitionWeightRatio = 500;
Mathieu Chartiere5f13e52015-02-24 09:37:21 -080057
58 virtual ~Jit();
59 static Jit* Create(JitOptions* options, std::string* error_msg);
Nicolas Geoffrayb331feb2016-02-05 16:51:53 +000060 bool CompileMethod(ArtMethod* method, Thread* self, bool osr)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -070061 REQUIRES_SHARED(Locks::mutator_lock_);
Mathieu Chartiere5f13e52015-02-24 09:37:21 -080062 void CreateThreadPool();
Nicolas Geoffray274fe4a2016-04-12 16:33:24 +010063
Mathieu Chartiere5f13e52015-02-24 09:37:21 -080064 const JitCodeCache* GetCodeCache() const {
65 return code_cache_.get();
66 }
Nicolas Geoffray274fe4a2016-04-12 16:33:24 +010067
Mathieu Chartiere5f13e52015-02-24 09:37:21 -080068 JitCodeCache* GetCodeCache() {
69 return code_cache_.get();
70 }
Nicolas Geoffray274fe4a2016-04-12 16:33:24 +010071
Mathieu Chartiere5f13e52015-02-24 09:37:21 -080072 void DeleteThreadPool();
Mathieu Chartiera4885cb2015-03-09 15:38:54 -070073 // Dump interesting info: #methods compiled, code vs data size, compile / verify cumulative
74 // loggers.
Nicolas Geoffraya4f81542016-03-08 16:57:48 +000075 void DumpInfo(std::ostream& os) REQUIRES(!lock_);
Mathieu Chartiera4885cb2015-03-09 15:38:54 -070076 // Add a timing logger to cumulative_timings_.
77 void AddTimingLogger(const TimingLogger& logger);
Nicolas Geoffraya4f81542016-03-08 16:57:48 +000078
79 void AddMemoryUsage(ArtMethod* method, size_t bytes)
80 REQUIRES(!lock_)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -070081 REQUIRES_SHARED(Locks::mutator_lock_);
Nicolas Geoffraya4f81542016-03-08 16:57:48 +000082
Nicolas Geoffray274fe4a2016-04-12 16:33:24 +010083 size_t OSRMethodThreshold() const {
84 return osr_method_threshold_;
Mathieu Chartiera50f9cf2015-09-25 11:34:45 -070085 }
Mathieu Chartiere5f13e52015-02-24 09:37:21 -080086
Nicolas Geoffray274fe4a2016-04-12 16:33:24 +010087 size_t HotMethodThreshold() const {
88 return hot_method_threshold_;
89 }
90
91 size_t WarmMethodThreshold() const {
92 return warm_method_threshold_;
93 }
94
95 uint16_t PriorityThreadWeight() const {
96 return priority_thread_weight_;
97 }
98
Calin Juravleffc87072016-04-20 14:22:09 +010099 // Returns false if we only need to save profile information and not compile methods.
100 bool UseJitCompilation() const {
101 return use_jit_compilation_;
102 }
103
Calin Juravle138dbff2016-06-28 19:36:58 +0100104 bool GetSaveProfilingInfo() const {
105 return profile_saver_options_.IsEnabled();
Calin Juravleffc87072016-04-20 14:22:09 +0100106 }
107
Nicolas Geoffray274fe4a2016-04-12 16:33:24 +0100108 // Wait until there is no more pending compilation tasks.
109 void WaitForCompilationToFinish(Thread* self);
110
111 // Profiling methods.
112 void MethodEntered(Thread* thread, ArtMethod* method)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700113 REQUIRES_SHARED(Locks::mutator_lock_);
Nicolas Geoffray274fe4a2016-04-12 16:33:24 +0100114
Nicolas Geoffray71cd50f2016-04-14 15:00:33 +0100115 void AddSamples(Thread* self, ArtMethod* method, uint16_t samples, bool with_backedges)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700116 REQUIRES_SHARED(Locks::mutator_lock_);
Nicolas Geoffray274fe4a2016-04-12 16:33:24 +0100117
Mathieu Chartieref41db72016-10-25 15:08:01 -0700118 void InvokeVirtualOrInterface(ObjPtr<mirror::Object> this_object,
Nicolas Geoffray274fe4a2016-04-12 16:33:24 +0100119 ArtMethod* caller,
120 uint32_t dex_pc,
121 ArtMethod* callee)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700122 REQUIRES_SHARED(Locks::mutator_lock_);
Nicolas Geoffray274fe4a2016-04-12 16:33:24 +0100123
Nicolas Geoffray71cd50f2016-04-14 15:00:33 +0100124 void NotifyInterpreterToCompiledCodeTransition(Thread* self, ArtMethod* caller)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700125 REQUIRES_SHARED(Locks::mutator_lock_) {
Calin Juravle155ff3d2016-04-27 14:14:58 +0100126 AddSamples(self, caller, invoke_transition_weight_, false);
Nicolas Geoffray71cd50f2016-04-14 15:00:33 +0100127 }
128
129 void NotifyCompiledCodeToInterpreterTransition(Thread* self, ArtMethod* callee)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700130 REQUIRES_SHARED(Locks::mutator_lock_) {
Calin Juravle155ff3d2016-04-27 14:14:58 +0100131 AddSamples(self, callee, invoke_transition_weight_, false);
Nicolas Geoffray71cd50f2016-04-14 15:00:33 +0100132 }
133
Calin Juravlec90bc922016-02-24 10:13:09 +0000134 // Starts the profile saver if the config options allow profile recording.
135 // The profile will be stored in the specified `filename` and will contain
136 // information collected from the given `code_paths` (a set of dex locations).
137 // The `foreign_dex_profile_path` is the path where the saver will put the
138 // profile markers for loaded dex files which are not owned by the application.
139 // The `app_dir` is the application directory and is used to decide which
140 // dex files belong to the application.
141 void StartProfileSaver(const std::string& filename,
142 const std::vector<std::string>& code_paths,
143 const std::string& foreign_dex_profile_path,
144 const std::string& app_dir);
Calin Juravle4d77b6a2015-12-01 18:38:09 +0000145 void StopProfileSaver();
Calin Juravle31f2c152015-10-23 17:56:15 +0100146
Calin Juravleb8e69992016-03-09 15:37:48 +0000147 void DumpForSigQuit(std::ostream& os) REQUIRES(!lock_);
Nicolas Geoffrayaee21562015-12-15 16:39:44 +0000148
Tamas Berghammer160e6df2016-01-05 14:29:02 +0000149 static void NewTypeLoadedIfUsingJit(mirror::Class* type)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700150 REQUIRES_SHARED(Locks::mutator_lock_);
Tamas Berghammer160e6df2016-01-05 14:29:02 +0000151
Tamas Berghammerfffbee42016-01-15 13:09:34 +0000152 // If debug info generation is turned on then write the type information for types already loaded
153 // into the specified class linker to the jit debug interface,
154 void DumpTypeInfoForLoadedTypes(ClassLinker* linker);
155
Nicolas Geoffray35122442016-03-02 12:05:30 +0000156 // Return whether we should try to JIT compiled code as soon as an ArtMethod is invoked.
Siva Chandra05d24152016-01-05 17:43:17 -0800157 bool JitAtFirstUse();
158
Nicolas Geoffray35122442016-03-02 12:05:30 +0000159 // Return whether we can invoke JIT code for `method`.
160 bool CanInvokeCompiledCode(ArtMethod* method);
161
Calin Juravleb2771b42016-04-07 17:09:25 +0100162 // Return whether the runtime should use a priority thread weight when sampling.
163 static bool ShouldUsePriorityThreadWeight();
164
Nicolas Geoffrayb331feb2016-02-05 16:51:53 +0000165 // If an OSR compiled version is available for `method`,
166 // and `dex_pc + dex_pc_offset` is an entry point of that compiled
167 // version, this method will jump to the compiled code, let it run,
168 // and return true afterwards. Return false otherwise.
169 static bool MaybeDoOnStackReplacement(Thread* thread,
170 ArtMethod* method,
171 uint32_t dex_pc,
172 int32_t dex_pc_offset,
173 JValue* result)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700174 REQUIRES_SHARED(Locks::mutator_lock_);
Nicolas Geoffrayb331feb2016-02-05 16:51:53 +0000175
Mathieu Chartierc1bc4152016-03-24 17:22:52 -0700176 static bool LoadCompilerLibrary(std::string* error_msg);
Mathieu Chartier72918ea2016-03-24 11:07:06 -0700177
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800178 private:
179 Jit();
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800180
Mathieu Chartierc1bc4152016-03-24 17:22:52 -0700181 static bool LoadCompiler(std::string* error_msg);
182
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800183 // JIT compiler
Mathieu Chartier72918ea2016-03-24 11:07:06 -0700184 static void* jit_library_handle_;
185 static void* jit_compiler_handle_;
186 static void* (*jit_load_)(bool*);
187 static void (*jit_unload_)(void*);
188 static bool (*jit_compile_method_)(void*, ArtMethod*, Thread*, bool);
189 static void (*jit_types_loaded_)(void*, mirror::Class**, size_t count);
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800190
Mathieu Chartiera4885cb2015-03-09 15:38:54 -0700191 // Performance monitoring.
192 bool dump_info_on_shutdown_;
193 CumulativeLogger cumulative_timings_;
Nicolas Geoffraya4f81542016-03-08 16:57:48 +0000194 Histogram<uint64_t> memory_use_ GUARDED_BY(lock_);
195 Mutex lock_ DEFAULT_MUTEX_ACQUIRED_AFTER;
Mathieu Chartiera4885cb2015-03-09 15:38:54 -0700196
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800197 std::unique_ptr<jit::JitCodeCache> code_cache_;
Mathieu Chartier3130cdf2015-05-03 15:20:23 -0700198
Calin Juravleffc87072016-04-20 14:22:09 +0100199 bool use_jit_compilation_;
Calin Juravle138dbff2016-06-28 19:36:58 +0100200 ProfileSaverOptions profile_saver_options_;
Mathieu Chartier72918ea2016-03-24 11:07:06 -0700201 static bool generate_debug_info_;
Nicolas Geoffray274fe4a2016-04-12 16:33:24 +0100202 uint16_t hot_method_threshold_;
203 uint16_t warm_method_threshold_;
204 uint16_t osr_method_threshold_;
205 uint16_t priority_thread_weight_;
Calin Juravle155ff3d2016-04-27 14:14:58 +0100206 uint16_t invoke_transition_weight_;
Nicolas Geoffray274fe4a2016-04-12 16:33:24 +0100207 std::unique_ptr<ThreadPool> thread_pool_;
Calin Juravle4d77b6a2015-12-01 18:38:09 +0000208
Mathieu Chartier3130cdf2015-05-03 15:20:23 -0700209 DISALLOW_COPY_AND_ASSIGN(Jit);
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800210};
211
212class JitOptions {
213 public:
214 static JitOptions* CreateFromRuntimeArguments(const RuntimeArgumentMap& options);
215 size_t GetCompileThreshold() const {
216 return compile_threshold_;
217 }
Nicolas Geoffray5550ca82015-08-21 18:38:30 +0100218 size_t GetWarmupThreshold() const {
219 return warmup_threshold_;
220 }
Nicolas Geoffrayb331feb2016-02-05 16:51:53 +0000221 size_t GetOsrThreshold() const {
222 return osr_threshold_;
223 }
Calin Juravleb2771b42016-04-07 17:09:25 +0100224 uint16_t GetPriorityThreadWeight() const {
225 return priority_thread_weight_;
226 }
Calin Juravle155ff3d2016-04-27 14:14:58 +0100227 size_t GetInvokeTransitionWeight() const {
228 return invoke_transition_weight_;
229 }
Nicolas Geoffray0a3be162015-11-18 11:15:22 +0000230 size_t GetCodeCacheInitialCapacity() const {
231 return code_cache_initial_capacity_;
232 }
233 size_t GetCodeCacheMaxCapacity() const {
234 return code_cache_max_capacity_;
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800235 }
Mathieu Chartiera4885cb2015-03-09 15:38:54 -0700236 bool DumpJitInfoOnShutdown() const {
237 return dump_info_on_shutdown_;
238 }
Calin Juravle138dbff2016-06-28 19:36:58 +0100239 const ProfileSaverOptions& GetProfileSaverOptions() const {
240 return profile_saver_options_;
241 }
Calin Juravle31f2c152015-10-23 17:56:15 +0100242 bool GetSaveProfilingInfo() const {
Calin Juravle138dbff2016-06-28 19:36:58 +0100243 return profile_saver_options_.IsEnabled();
Calin Juravle31f2c152015-10-23 17:56:15 +0100244 }
Calin Juravleffc87072016-04-20 14:22:09 +0100245 bool UseJitCompilation() const {
246 return use_jit_compilation_;
Mathieu Chartier455f67c2015-03-17 13:48:29 -0700247 }
Calin Juravleffc87072016-04-20 14:22:09 +0100248 void SetUseJitCompilation(bool b) {
249 use_jit_compilation_ = b;
Mathieu Chartier455f67c2015-03-17 13:48:29 -0700250 }
Calin Juravle138dbff2016-06-28 19:36:58 +0100251 void SetSaveProfilingInfo(bool save_profiling_info) {
252 profile_saver_options_.SetEnabled(save_profiling_info);
Calin Juravle31f2c152015-10-23 17:56:15 +0100253 }
Siva Chandra05d24152016-01-05 17:43:17 -0800254 void SetJitAtFirstUse() {
Calin Juravleffc87072016-04-20 14:22:09 +0100255 use_jit_compilation_ = true;
Siva Chandra05d24152016-01-05 17:43:17 -0800256 compile_threshold_ = 0;
257 }
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800258
259 private:
Calin Juravleffc87072016-04-20 14:22:09 +0100260 bool use_jit_compilation_;
Nicolas Geoffray0a3be162015-11-18 11:15:22 +0000261 size_t code_cache_initial_capacity_;
262 size_t code_cache_max_capacity_;
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800263 size_t compile_threshold_;
Nicolas Geoffray5550ca82015-08-21 18:38:30 +0100264 size_t warmup_threshold_;
Nicolas Geoffrayb331feb2016-02-05 16:51:53 +0000265 size_t osr_threshold_;
Calin Juravleb2771b42016-04-07 17:09:25 +0100266 uint16_t priority_thread_weight_;
Calin Juravle155ff3d2016-04-27 14:14:58 +0100267 size_t invoke_transition_weight_;
Mathieu Chartiera4885cb2015-03-09 15:38:54 -0700268 bool dump_info_on_shutdown_;
Calin Juravle138dbff2016-06-28 19:36:58 +0100269 ProfileSaverOptions profile_saver_options_;
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800270
Nicolas Geoffray0a3be162015-11-18 11:15:22 +0000271 JitOptions()
Calin Juravleffc87072016-04-20 14:22:09 +0100272 : use_jit_compilation_(false),
Nicolas Geoffray0a3be162015-11-18 11:15:22 +0000273 code_cache_initial_capacity_(0),
274 code_cache_max_capacity_(0),
275 compile_threshold_(0),
Calin Juravle138dbff2016-06-28 19:36:58 +0100276 dump_info_on_shutdown_(false) {}
Mathieu Chartier3130cdf2015-05-03 15:20:23 -0700277
278 DISALLOW_COPY_AND_ASSIGN(JitOptions);
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800279};
280
281} // namespace jit
282} // namespace art
283
284#endif // ART_RUNTIME_JIT_JIT_H_