blob: e6951d90bb05924df741967f380528043b5b3a31 [file] [log] [blame]
Elliott Hughes2faa5f12012-01-30 14:42:07 -08001/*
2 * Copyright (C) 2011 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 */
Carl Shapiro1fb86202011-06-27 17:43:13 -070016
Brian Carlstromfc0e3212013-07-17 14:40:12 -070017#ifndef ART_RUNTIME_RUNTIME_H_
18#define ART_RUNTIME_RUNTIME_H_
Carl Shapiro1fb86202011-06-27 17:43:13 -070019
Elliott Hughesa0e18062012-04-13 15:59:59 -070020#include <jni.h>
Elliott Hughesc5f7c912011-08-18 14:00:42 -070021#include <stdio.h>
22
Elliott Hughese27955c2011-08-26 15:21:24 -070023#include <iosfwd>
Brian Carlstrom6ea095a2011-08-16 15:26:54 -070024#include <string>
Carl Shapirofc322c72011-07-27 00:20:01 -070025#include <utility>
Brian Carlstrom6ea095a2011-08-16 15:26:54 -070026#include <vector>
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070027
Elliott Hughes76160052012-12-12 16:31:20 -080028#include "base/macros.h"
Elliott Hughese222ee02012-12-13 14:41:43 -080029#include "base/stringpiece.h"
Mathieu Chartier0de9f732013-11-22 17:58:48 -080030#include "gc/collector_type.h"
Ian Rogers1d54e732013-05-02 21:10:01 -070031#include "gc/heap.h"
Elliott Hughesa0e18062012-04-13 15:59:59 -070032#include "globals.h"
Elliott Hughes0f3c5532012-03-30 14:51:51 -070033#include "instruction_set.h"
Ian Rogers62d6c772013-02-27 08:32:07 -080034#include "instrumentation.h"
Ian Rogers00f7d0e2012-07-19 15:28:27 -070035#include "jobject_comparator.h"
Ian Rogers120f1c72012-09-28 17:17:10 -070036#include "locks.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080037#include "root_visitor.h"
Elliott Hughes9d5ccec2011-09-19 13:19:50 -070038#include "runtime_stats.h"
Elliott Hughesa0e18062012-04-13 15:59:59 -070039#include "safe_map.h"
Carl Shapirob5573532011-07-12 18:22:59 -070040
Carl Shapiro1fb86202011-06-27 17:43:13 -070041namespace art {
42
Ian Rogers1d54e732013-05-02 21:10:01 -070043namespace gc {
44 class Heap;
45}
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080046namespace mirror {
Brian Carlstromea46f952013-07-30 01:26:50 -070047 class ArtMethod;
Ian Rogers1d54e732013-05-02 21:10:01 -070048 class ClassLoader;
Jeff Hao88474b42013-10-23 16:24:40 -070049 template<class T> class ObjectArray;
Ian Rogers1d54e732013-05-02 21:10:01 -070050 template<class T> class PrimitiveArray;
51 typedef PrimitiveArray<int8_t> ByteArray;
52 class String;
53 class Throwable;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080054} // namespace mirror
Carl Shapiro61e019d2011-07-14 16:53:09 -070055class ClassLinker;
Carl Shapirofc322c72011-07-27 00:20:01 -070056class DexFile;
Elliott Hughescf4c6c42011-09-01 15:16:42 -070057class InternTable;
Ian Rogers1b09b092012-08-20 15:35:52 -070058struct JavaVMExt;
Elliott Hughesc33a32b2011-10-11 18:18:07 -070059class MonitorList;
Elliott Hughese27955c2011-08-26 15:21:24 -070060class SignalCatcher;
Carl Shapiro61e019d2011-07-14 16:53:09 -070061class ThreadList;
jeffhao2692b572011-12-16 15:42:28 -080062class Trace;
Carl Shapiro61e019d2011-07-14 16:53:09 -070063
Carl Shapiro1fb86202011-06-27 17:43:13 -070064class Runtime {
65 public:
Elliott Hughesf1a5adc2012-02-10 18:09:35 -080066 typedef std::vector<std::pair<std::string, const void*> > Options;
Brian Carlstrom8a436592011-08-15 21:27:23 -070067
buzbeea024a062013-07-31 10:47:37 -070068 enum CompilerFilter {
69 kInterpretOnly, // Compile nothing.
buzbeea024a062013-07-31 10:47:37 -070070 kSpace, // Maximize space savings.
71 kBalanced, // Try to get the best performance return on compilation investment.
buzbeefe9ca402013-08-21 09:48:11 -070072 kSpeed, // Maximize runtime performance.
73 kEverything // Force compilation (Note: excludes compilaton of class initializers).
buzbeea024a062013-07-31 10:47:37 -070074 };
Anwar Ghuloumc44f68f2013-05-10 13:24:54 -070075
buzbeea024a062013-07-31 10:47:37 -070076 // Guide heuristics to determine whether to compile method if profile data not available.
77#if ART_SMALL_MODE
78 static const CompilerFilter kDefaultCompilerFilter = kInterpretOnly;
79#else
80 static const CompilerFilter kDefaultCompilerFilter = kSpeed;
81#endif
buzbeefe9ca402013-08-21 09:48:11 -070082 static const size_t kDefaultHugeMethodThreshold = 10000;
83 static const size_t kDefaultLargeMethodThreshold = 600;
84 static const size_t kDefaultSmallMethodThreshold = 60;
85 static const size_t kDefaultTinyMethodThreshold = 20;
buzbeea024a062013-07-31 10:47:37 -070086 static const size_t kDefaultNumDexMethodsThreshold = 900;
Anwar Ghuloum8447d842013-04-30 17:27:40 -070087
Brian Carlstrom8a436592011-08-15 21:27:23 -070088 class ParsedOptions {
89 public:
Brian Carlstrom6ea095a2011-08-16 15:26:54 -070090 // returns null if problem parsing and ignore_unrecognized is false
91 static ParsedOptions* Create(const Options& options, bool ignore_unrecognized);
Brian Carlstrom8a436592011-08-15 21:27:23 -070092
Brian Carlstroma004aa92012-02-08 18:05:09 -080093 const std::vector<const DexFile*>* boot_class_path_;
94 std::string boot_class_path_string_;
95 std::string class_path_string_;
Brian Carlstrom58ae9412011-10-04 00:56:06 -070096 std::string host_prefix_;
Brian Carlstrom223f20f2012-02-04 23:06:55 -080097 std::string image_;
Elliott Hughes515a5bc2011-08-17 11:08:34 -070098 bool check_jni_;
Elliott Hughesa0957642011-09-02 14:27:33 -070099 std::string jni_trace_;
Elliott Hughesd9c67be2012-02-02 19:54:06 -0800100 bool is_compiler_;
Elliott Hughes9ca7a1f2011-10-11 14:29:52 -0700101 bool is_zygote_;
Ian Rogers50ffee22012-11-20 11:47:44 -0800102 bool interpreter_only_;
Anwar Ghuloum87183592013-08-14 12:12:19 -0700103 bool is_explicit_gc_disabled_;
Mathieu Chartier2775ee42013-08-20 17:43:47 -0700104 size_t long_pause_log_threshold_;
105 size_t long_gc_log_threshold_;
Mathieu Chartierff3b24a2013-11-22 16:04:25 -0800106 bool dump_gc_performance_on_shutdown_;
Mathieu Chartier2775ee42013-08-20 17:43:47 -0700107 bool ignore_max_footprint_;
Brian Carlstrom8a436592011-08-15 21:27:23 -0700108 size_t heap_initial_size_;
109 size_t heap_maximum_size_;
jeffhaoc1160702011-10-27 15:48:45 -0700110 size_t heap_growth_limit_;
Mathieu Chartier0051be62012-10-12 17:47:11 -0700111 size_t heap_min_free_;
112 size_t heap_max_free_;
113 double heap_target_utilization_;
Mathieu Chartier2775ee42013-08-20 17:43:47 -0700114 size_t parallel_gc_threads_;
115 size_t conc_gc_threads_;
Mathieu Chartier0de9f732013-11-22 17:58:48 -0800116 gc::CollectorType collector_type_;
Brian Carlstromf734cf52011-08-17 16:28:14 -0700117 size_t stack_size_;
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700118 size_t max_spins_before_thin_lock_inflation_;
Mathieu Chartiere0a53e92013-08-05 10:17:40 -0700119 bool low_memory_mode_;
Elliott Hughesbb1e8f02011-10-18 14:14:25 -0700120 size_t lock_profiling_threshold_;
Elliott Hughes94ce37a2011-10-18 15:07:48 -0700121 std::string stack_trace_file_;
jeffhaob5e81852012-03-12 11:15:45 -0700122 bool method_trace_;
123 std::string method_trace_file_;
124 size_t method_trace_file_size_;
Elliott Hughesfc861622011-10-17 17:57:47 -0700125 bool (*hook_is_sensitive_thread_)();
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700126 jint (*hook_vfprintf_)(FILE* stream, const char* format, va_list ap);
127 void (*hook_exit_)(jint status);
128 void (*hook_abort_)();
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700129 std::vector<std::string> properties_;
buzbeea024a062013-07-31 10:47:37 -0700130 CompilerFilter compiler_filter_;
131 size_t huge_method_threshold_;
132 size_t large_method_threshold_;
133 size_t small_method_threshold_;
134 size_t tiny_method_threshold_;
135 size_t num_dex_methods_threshold_;
Dragos Sbirlea7467ee02013-06-21 09:20:34 -0700136 bool sea_ir_mode_;
137
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700138 private:
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700139 ParsedOptions() {}
Brian Carlstrom8a436592011-08-15 21:27:23 -0700140 };
Carl Shapiro2ed144c2011-07-26 16:52:08 -0700141
Carl Shapiro61e019d2011-07-14 16:53:09 -0700142 // Creates and initializes a new runtime.
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700143 static bool Create(const Options& options, bool ignore_unrecognized)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700144 SHARED_TRYLOCK_FUNCTION(true, Locks::mutator_lock_);
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700145
Elliott Hughesd9c67be2012-02-02 19:54:06 -0800146 bool IsCompiler() const {
147 return is_compiler_;
148 }
149
Brian Carlstromcaabb1b2011-10-11 18:09:13 -0700150 bool IsZygote() const {
151 return is_zygote_;
152 }
153
Anwar Ghuloum87183592013-08-14 12:12:19 -0700154 bool IsExplicitGcDisabled() const {
155 return is_explicit_gc_disabled_;
156 }
157
Brian Carlstrom51c24672013-07-11 16:00:56 -0700158#ifdef ART_SEA_IR_MODE
Dragos Sbirlea7467ee02013-06-21 09:20:34 -0700159 bool IsSeaIRMode() const {
160 return sea_ir_mode_;
161 }
Brian Carlstrom51c24672013-07-11 16:00:56 -0700162#endif
Dragos Sbirlea7467ee02013-06-21 09:20:34 -0700163
164 void SetSeaIRMode(bool sea_ir_mode) {
165 sea_ir_mode_ = sea_ir_mode;
166 }
167
buzbeea024a062013-07-31 10:47:37 -0700168 CompilerFilter GetCompilerFilter() const {
169 return compiler_filter_;
Anwar Ghuloum8447d842013-04-30 17:27:40 -0700170 }
171
buzbeea024a062013-07-31 10:47:37 -0700172 void SetCompilerFilter(CompilerFilter compiler_filter) {
173 compiler_filter_ = compiler_filter;
Anwar Ghuloum8447d842013-04-30 17:27:40 -0700174 }
175
buzbeea024a062013-07-31 10:47:37 -0700176 size_t GetHugeMethodThreshold() const {
177 return huge_method_threshold_;
Anwar Ghuloum8447d842013-04-30 17:27:40 -0700178 }
179
buzbeea024a062013-07-31 10:47:37 -0700180 size_t GetLargeMethodThreshold() const {
181 return large_method_threshold_;
182 }
183
184 size_t GetSmallMethodThreshold() const {
185 return small_method_threshold_;
186 }
187
188 size_t GetTinyMethodThreshold() const {
189 return tiny_method_threshold_;
190 }
191
192 size_t GetNumDexMethodsThreshold() const {
193 return num_dex_methods_threshold_;
Anwar Ghuloum8447d842013-04-30 17:27:40 -0700194 }
195
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700196 const std::string& GetHostPrefix() const {
Elliott Hughes307f75d2011-10-12 18:04:40 -0700197 DCHECK(!IsStarted());
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700198 return host_prefix_;
199 }
200
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700201 // Starts a runtime, which may cause threads to be started and code to run.
Brian Carlstrombd86bcc2013-03-10 20:26:16 -0700202 bool Start() UNLOCK_FUNCTION(Locks::mutator_lock_);
Carl Shapiro2ed144c2011-07-26 16:52:08 -0700203
Mathieu Chartier590fee92013-09-13 13:46:47 -0700204 bool IsShuttingDown(Thread* self);
205 bool IsShuttingDownLocked() const EXCLUSIVE_LOCKS_REQUIRED(Locks::runtime_shutdown_lock_) {
Ian Rogers9af209c2012-06-03 20:50:30 -0700206 return shutting_down_;
207 }
208
Ian Rogers120f1c72012-09-28 17:17:10 -0700209 size_t NumberOfThreadsBeingBorn() const EXCLUSIVE_LOCKS_REQUIRED(Locks::runtime_shutdown_lock_) {
210 return threads_being_born_;
211 }
212
213 void StartThreadBirth() EXCLUSIVE_LOCKS_REQUIRED(Locks::runtime_shutdown_lock_) {
214 threads_being_born_++;
215 }
216
217 void EndThreadBirth() EXCLUSIVE_LOCKS_REQUIRED(Locks::runtime_shutdown_lock_);
218
Ian Rogers9af209c2012-06-03 20:50:30 -0700219 bool IsStarted() const {
220 return started_;
221 }
Elliott Hughesdcc24742011-09-07 14:02:44 -0700222
Mathieu Chartier7664f5c2012-06-08 18:15:32 -0700223 bool IsFinishedStarting() const {
224 return finished_starting_;
225 }
226
Carl Shapiro2ed144c2011-07-26 16:52:08 -0700227 static Runtime* Current() {
228 return instance_;
229 }
Carl Shapiro1fb86202011-06-27 17:43:13 -0700230
Elliott Hughesffe67362011-07-17 12:09:27 -0700231 // Aborts semi-cleanly. Used in the implementation of LOG(FATAL), which most
232 // callers should prefer.
233 // This isn't marked ((noreturn)) because then gcc will merge multiple calls
234 // in a single function together. This reduces code size slightly, but means
235 // that the native stack trace we get may point at the wrong call site.
Ian Rogersb726dcb2012-09-05 08:57:23 -0700236 static void Abort() LOCKS_EXCLUDED(Locks::abort_lock_);
Elliott Hughesffe67362011-07-17 12:09:27 -0700237
Ian Rogers365c1022012-06-22 15:05:28 -0700238 // Returns the "main" ThreadGroup, used when attaching user threads.
Brian Carlstrom034f76b2012-08-01 15:51:58 -0700239 jobject GetMainThreadGroup() const;
Ian Rogers365c1022012-06-22 15:05:28 -0700240
241 // Returns the "system" ThreadGroup, used when attaching our internal threads.
Brian Carlstrom034f76b2012-08-01 15:51:58 -0700242 jobject GetSystemThreadGroup() const;
Ian Rogers365c1022012-06-22 15:05:28 -0700243
Brian Carlstromce888532013-10-10 00:32:58 -0700244 // Returns the system ClassLoader which represents the CLASSPATH.
245 jobject GetSystemClassLoader() const;
246
Elliott Hughes462c9442012-03-23 18:47:50 -0700247 // Attaches the calling native thread to the runtime.
Mathieu Chartier664bebf2012-11-12 16:54:11 -0800248 bool AttachCurrentThread(const char* thread_name, bool as_daemon, jobject thread_group,
249 bool create_peer);
Carl Shapiro61e019d2011-07-14 16:53:09 -0700250
Elliott Hughesbf86d042011-08-31 17:53:14 -0700251 void CallExitHook(jint status);
252
Carl Shapiro61e019d2011-07-14 16:53:09 -0700253 // Detaches the current native thread from the runtime.
Ian Rogersb726dcb2012-09-05 08:57:23 -0700254 void DetachCurrentThread() LOCKS_EXCLUDED(Locks::mutator_lock_);
Carl Shapiro61e019d2011-07-14 16:53:09 -0700255
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700256 void DumpForSigQuit(std::ostream& os)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700257 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes21a5bf22011-12-07 14:35:20 -0800258 void DumpLockHolders(std::ostream& os);
Elliott Hughese27955c2011-08-26 15:21:24 -0700259
Carl Shapiro61e019d2011-07-14 16:53:09 -0700260 ~Runtime();
Carl Shapirob5573532011-07-12 18:22:59 -0700261
Brian Carlstroma004aa92012-02-08 18:05:09 -0800262 const std::string& GetBootClassPathString() const {
263 return boot_class_path_string_;
264 }
265
266 const std::string& GetClassPathString() const {
267 return class_path_string_;
Brian Carlstromb765be02011-08-17 23:54:10 -0700268 }
269
270 ClassLinker* GetClassLinker() const {
Carl Shapiro7a909592011-07-24 19:21:59 -0700271 return class_linker_;
272 }
273
Elliott Hughes7ede61e2011-09-14 18:18:06 -0700274 size_t GetDefaultStackSize() const {
275 return default_stack_size_;
276 }
277
Ian Rogers1d54e732013-05-02 21:10:01 -0700278 gc::Heap* GetHeap() const {
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800279 return heap_;
280 }
281
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700282 InternTable* GetInternTable() const {
Brian Carlstrome8104522013-10-15 21:56:36 -0700283 DCHECK(intern_table_ != NULL);
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700284 return intern_table_;
285 }
286
Elliott Hughes0af55432011-08-17 18:37:28 -0700287 JavaVMExt* GetJavaVM() const {
Elliott Hughesc5f7c912011-08-18 14:00:42 -0700288 return java_vm_;
Elliott Hughesf2682d52011-08-15 16:37:04 -0700289 }
290
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700291 size_t GetMaxSpinsBeforeThinkLockInflation() const {
292 return max_spins_before_thin_lock_inflation_;
293 }
294
Elliott Hughesc33a32b2011-10-11 18:18:07 -0700295 MonitorList* GetMonitorList() const {
296 return monitor_list_;
297 }
298
Ian Rogersa436fde2013-08-27 23:34:06 -0700299 mirror::Throwable* GetPreAllocatedOutOfMemoryError() const
300 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes225f5a12012-06-11 11:23:48 -0700301
302 const std::vector<std::string>& GetProperties() const {
303 return properties_;
304 }
305
Elliott Hughesd92bec42011-09-02 17:04:36 -0700306 ThreadList* GetThreadList() const {
307 return thread_list_;
308 }
309
Elliott Hughes7ede61e2011-09-14 18:18:06 -0700310 const char* GetVersion() const {
311 return "2.0.0";
312 }
313
Mathieu Chartierc11d9b82013-09-19 10:01:59 -0700314 void DisallowNewSystemWeaks() EXCLUSIVE_LOCKS_REQUIRED(Locks::mutator_lock_);
315 void AllowNewSystemWeaks() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
316
Ian Rogers1d54e732013-05-02 21:10:01 -0700317 // Visit all the roots. If only_dirty is true then non-dirty roots won't be visited. If
318 // clean_dirty is true then dirty roots will be marked as non-dirty after visiting.
319 void VisitRoots(RootVisitor* visitor, void* arg, bool only_dirty, bool clean_dirty)
320 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700321
Mathieu Chartier9ebae1f2012-10-15 17:38:16 -0700322 // Visit all of the roots we can do safely do concurrently.
Ian Rogers1d54e732013-05-02 21:10:01 -0700323 void VisitConcurrentRoots(RootVisitor* visitor, void* arg, bool only_dirty, bool clean_dirty);
Mathieu Chartier9ebae1f2012-10-15 17:38:16 -0700324
Mathieu Chartier858f1c52012-10-17 17:45:55 -0700325 // Visit all of the non thread roots, we can do this with mutators unpaused.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800326 void VisitNonThreadRoots(RootVisitor* visitor, void* arg);
Mathieu Chartier858f1c52012-10-17 17:45:55 -0700327
Mathieu Chartier9ebae1f2012-10-15 17:38:16 -0700328 // Visit all other roots which must be done with mutators suspended.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800329 void VisitNonConcurrentRoots(RootVisitor* visitor, void* arg)
Mathieu Chartier9ebae1f2012-10-15 17:38:16 -0700330 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
331
Mathieu Chartier6aa3df92013-09-17 15:17:28 -0700332 // Sweep system weaks, the system weak is deleted if the visitor return nullptr. Otherwise, the
333 // system weak is updated to be the visitor's returned value.
Mathieu Chartierad2541a2013-10-25 10:05:23 -0700334 void SweepSystemWeaks(RootVisitor* visitor, void* arg)
335 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Mathieu Chartier6aa3df92013-09-17 15:17:28 -0700336
Ian Rogers9af209c2012-06-03 20:50:30 -0700337 // Returns a special method that calls into a trampoline for runtime method resolution
Brian Carlstromea46f952013-07-30 01:26:50 -0700338 mirror::ArtMethod* GetResolutionMethod() const {
Ian Rogers9af209c2012-06-03 20:50:30 -0700339 CHECK(HasResolutionMethod());
340 return resolution_method_;
341 }
342
343 bool HasResolutionMethod() const {
344 return resolution_method_ != NULL;
345 }
346
Brian Carlstromea46f952013-07-30 01:26:50 -0700347 void SetResolutionMethod(mirror::ArtMethod* method) {
Ian Rogers9af209c2012-06-03 20:50:30 -0700348 resolution_method_ = method;
349 }
350
Brian Carlstromea46f952013-07-30 01:26:50 -0700351 mirror::ArtMethod* CreateResolutionMethod() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers19846512012-02-24 11:42:47 -0800352
Jeff Hao88474b42013-10-23 16:24:40 -0700353 // Returns a special method that calls into a trampoline for runtime imt conflicts
354 mirror::ArtMethod* GetImtConflictMethod() const {
355 CHECK(HasImtConflictMethod());
356 return imt_conflict_method_;
357 }
358
359 bool HasImtConflictMethod() const {
360 return imt_conflict_method_ != NULL;
361 }
362
363 void SetImtConflictMethod(mirror::ArtMethod* method) {
364 imt_conflict_method_ = method;
365 }
366
367 mirror::ArtMethod* CreateImtConflictMethod() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
368
369 // Returns an imt with every entry set to conflict, used as default imt for all classes.
370 mirror::ObjectArray<mirror::ArtMethod>* GetDefaultImt() const {
371 CHECK(HasDefaultImt());
372 return default_imt_;
373 }
374
375 bool HasDefaultImt() const {
376 return default_imt_ != NULL;
377 }
378
379 void SetDefaultImt(mirror::ObjectArray<mirror::ArtMethod>* imt) {
380 default_imt_ = imt;
381 }
382
383 mirror::ObjectArray<mirror::ArtMethod>* CreateDefaultImt(ClassLinker* cl)
384 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
385
Ian Rogersff1ed472011-09-20 13:46:24 -0700386 // Returns a special method that describes all callee saves being spilled to the stack.
Ian Rogers4f0d07c2011-10-06 23:38:47 -0700387 enum CalleeSaveType {
388 kSaveAll,
389 kRefsOnly,
390 kRefsAndArgs,
391 kLastCalleeSaveType // Value used for iteration
392 };
Ian Rogers9af209c2012-06-03 20:50:30 -0700393
394 bool HasCalleeSaveMethod(CalleeSaveType type) const {
Elliott Hughes225f5a12012-06-11 11:23:48 -0700395 return callee_save_methods_[type] != NULL;
Ian Rogers9af209c2012-06-03 20:50:30 -0700396 }
397
Brian Carlstromea46f952013-07-30 01:26:50 -0700398 mirror::ArtMethod* GetCalleeSaveMethod(CalleeSaveType type) const {
Ian Rogersdf1ce912012-11-27 17:07:11 -0800399 DCHECK(HasCalleeSaveMethod(type));
Elliott Hughes225f5a12012-06-11 11:23:48 -0700400 return callee_save_methods_[type];
Ian Rogers9af209c2012-06-03 20:50:30 -0700401 }
402
Brian Carlstromea46f952013-07-30 01:26:50 -0700403 void SetCalleeSaveMethod(mirror::ArtMethod* method, CalleeSaveType type);
Ian Rogers4f0d07c2011-10-06 23:38:47 -0700404
Brian Carlstromea46f952013-07-30 01:26:50 -0700405 mirror::ArtMethod* CreateCalleeSaveMethod(InstructionSet instruction_set,
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800406 CalleeSaveType type)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700407 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers9af209c2012-06-03 20:50:30 -0700408
Brian Carlstromea46f952013-07-30 01:26:50 -0700409 mirror::ArtMethod* CreateRefOnlyCalleeSaveMethod(InstructionSet instruction_set)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700410 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700411
Brian Carlstromea46f952013-07-30 01:26:50 -0700412 mirror::ArtMethod* CreateRefAndArgsCalleeSaveMethod(InstructionSet instruction_set)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700413 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogersff1ed472011-09-20 13:46:24 -0700414
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700415 int32_t GetStat(int kind);
416
Ian Rogers9af209c2012-06-03 20:50:30 -0700417 RuntimeStats* GetStats() {
418 return &stats_;
419 }
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700420
421 bool HasStatsEnabled() const {
422 return stats_enabled_;
423 }
424
425 void ResetStats(int kinds);
426
427 void SetStatsEnabled(bool new_state);
428
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700429 bool PreZygoteFork();
Brian Carlstrombd86bcc2013-03-10 20:26:16 -0700430 bool InitZygote();
431 void DidForkFromZygote();
Brian Carlstromcaabb1b2011-10-11 18:09:13 -0700432
Ian Rogers62d6c772013-02-27 08:32:07 -0800433 instrumentation::Instrumentation* GetInstrumentation() {
434 return &instrumentation_;
435 }
jeffhao2692b572011-12-16 15:42:28 -0800436
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800437 bool UseCompileTimeClassPath() const {
438 return use_compile_time_class_path_;
439 }
Ian Rogers9af209c2012-06-03 20:50:30 -0700440
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700441 const std::vector<const DexFile*>& GetCompileTimeClassPath(jobject class_loader);
442 void SetCompileTimeClassPath(jobject class_loader, std::vector<const DexFile*>& class_path);
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800443
Carl Shapirob5573532011-07-12 18:22:59 -0700444 private:
Elliott Hughes457005c2012-04-16 13:54:25 -0700445 static void InitPlatformSignalHandlers();
Elliott Hughesffe67362011-07-17 12:09:27 -0700446
Elliott Hughesdcc24742011-09-07 14:02:44 -0700447 Runtime();
Carl Shapiro61e019d2011-07-14 16:53:09 -0700448
Elliott Hughesc1674ed2011-08-25 18:09:09 -0700449 void BlockSignals();
450
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700451 bool Init(const Options& options, bool ignore_unrecognized)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700452 SHARED_TRYLOCK_FUNCTION(true, Locks::mutator_lock_);
453 void InitNativeMethods() LOCKS_EXCLUDED(Locks::mutator_lock_);
Ian Rogers365c1022012-06-22 15:05:28 -0700454 void InitThreadGroups(Thread* self);
Elliott Hughesff17f1f2012-01-24 18:12:29 -0800455 void RegisterRuntimeNativeMethods(JNIEnv* env);
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700456
Elliott Hughes85d15452011-09-16 17:33:01 -0700457 void StartDaemonThreads();
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700458 void StartSignalCatcher();
Carl Shapiro61e019d2011-07-14 16:53:09 -0700459
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800460 // A pointer to the active runtime or NULL.
461 static Runtime* instance_;
462
Elliott Hughesd9c67be2012-02-02 19:54:06 -0800463 bool is_compiler_;
Elliott Hughes9ca7a1f2011-10-11 14:29:52 -0700464 bool is_zygote_;
Mathieu Chartier069387a2012-06-18 12:01:01 -0700465 bool is_concurrent_gc_enabled_;
Anwar Ghuloum87183592013-08-14 12:12:19 -0700466 bool is_explicit_gc_disabled_;
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700467
buzbeea024a062013-07-31 10:47:37 -0700468 CompilerFilter compiler_filter_;
469 size_t huge_method_threshold_;
470 size_t large_method_threshold_;
471 size_t small_method_threshold_;
472 size_t tiny_method_threshold_;
473 size_t num_dex_methods_threshold_;
Anwar Ghuloum8447d842013-04-30 17:27:40 -0700474
Dragos Sbirlea7467ee02013-06-21 09:20:34 -0700475 bool sea_ir_mode_;
476
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700477 // The host prefix is used during cross compilation. It is removed
478 // from the start of host paths such as:
Brian Carlstrom29e7ac72011-12-05 23:42:57 -0800479 // $ANDROID_PRODUCT_OUT/system/framework/boot.oat
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700480 // to produce target paths such as
Brian Carlstrom47a0d5a2011-10-12 21:20:05 -0700481 // /system/framework/boot.oat
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700482 // Similarly it is prepended to target paths to arrive back at a
483 // host past. In both cases this is necessary because image and oat
484 // files embedded expect paths of dependent files (an image points
485 // to an oat file and an oat files to one or more dex files). These
486 // files contain the expected target path.
487 std::string host_prefix_;
488
Brian Carlstroma004aa92012-02-08 18:05:09 -0800489 std::string boot_class_path_string_;
490 std::string class_path_string_;
Elliott Hughes7ede61e2011-09-14 18:18:06 -0700491 std::vector<std::string> properties_;
492
Brian Carlstromb765be02011-08-17 23:54:10 -0700493 // The default stack size for managed threads created by the runtime.
Elliott Hughesbe759c62011-09-08 19:38:21 -0700494 size_t default_stack_size_;
Brian Carlstromb765be02011-08-17 23:54:10 -0700495
Ian Rogers1d54e732013-05-02 21:10:01 -0700496 gc::Heap* heap_;
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800497
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700498 // The number of spins that are done before thread suspension is used to forcibly inflate.
499 size_t max_spins_before_thin_lock_inflation_;
Elliott Hughesc33a32b2011-10-11 18:18:07 -0700500 MonitorList* monitor_list_;
501
Carl Shapirob5573532011-07-12 18:22:59 -0700502 ThreadList* thread_list_;
Carl Shapiro61e019d2011-07-14 16:53:09 -0700503
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700504 InternTable* intern_table_;
505
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700506 ClassLinker* class_linker_;
507
Elliott Hughese27955c2011-08-26 15:21:24 -0700508 SignalCatcher* signal_catcher_;
Elliott Hughes94ce37a2011-10-18 15:07:48 -0700509 std::string stack_trace_file_;
Elliott Hughese27955c2011-08-26 15:21:24 -0700510
Elliott Hughesc5f7c912011-08-18 14:00:42 -0700511 JavaVMExt* java_vm_;
Elliott Hughesf2682d52011-08-15 16:37:04 -0700512
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800513 mirror::Throwable* pre_allocated_OutOfMemoryError_;
Elliott Hughes225f5a12012-06-11 11:23:48 -0700514
Brian Carlstromea46f952013-07-30 01:26:50 -0700515 mirror::ArtMethod* callee_save_methods_[kLastCalleeSaveType];
Ian Rogersff1ed472011-09-20 13:46:24 -0700516
Brian Carlstromea46f952013-07-30 01:26:50 -0700517 mirror::ArtMethod* resolution_method_;
Ian Rogers19846512012-02-24 11:42:47 -0800518
Jeff Hao88474b42013-10-23 16:24:40 -0700519 mirror::ArtMethod* imt_conflict_method_;
520
521 mirror::ObjectArray<mirror::ArtMethod>* default_imt_;
522
Ian Rogers120f1c72012-09-28 17:17:10 -0700523 // A non-zero value indicates that a thread has been created but not yet initialized. Guarded by
524 // the shutdown lock so that threads aren't born while we're shutting down.
525 size_t threads_being_born_ GUARDED_BY(Locks::runtime_shutdown_lock_);
526
527 // Waited upon until no threads are being born.
528 UniquePtr<ConditionVariable> shutdown_cond_ GUARDED_BY(Locks::runtime_shutdown_lock_);
529
530 // Set when runtime shutdown is past the point that new threads may attach.
531 bool shutting_down_ GUARDED_BY(Locks::runtime_shutdown_lock_);
532
533 // The runtime is starting to shutdown but is blocked waiting on shutdown_cond_.
534 bool shutting_down_started_ GUARDED_BY(Locks::runtime_shutdown_lock_);
535
Elliott Hughesdcc24742011-09-07 14:02:44 -0700536 bool started_;
537
Mathieu Chartier7664f5c2012-06-08 18:15:32 -0700538 // New flag added which tells us if the runtime has finished starting. If
539 // this flag is set then the Daemon threads are created and the class loader
540 // is created. This flag is needed for knowing if its safe to request CMS.
541 bool finished_starting_;
542
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700543 // Hooks supported by JNI_CreateJavaVM
544 jint (*vfprintf_)(FILE* stream, const char* format, va_list ap);
545 void (*exit_)(jint status);
546 void (*abort_)();
547
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700548 bool stats_enabled_;
549 RuntimeStats stats_;
550
jeffhaob5e81852012-03-12 11:15:45 -0700551 bool method_trace_;
552 std::string method_trace_file_;
553 size_t method_trace_file_size_;
Ian Rogers62d6c772013-02-27 08:32:07 -0800554 instrumentation::Instrumentation instrumentation_;
jeffhao2692b572011-12-16 15:42:28 -0800555
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700556 typedef SafeMap<jobject, std::vector<const DexFile*>, JobjectComparator> CompileTimeClassPaths;
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800557 CompileTimeClassPaths compile_time_class_paths_;
558 bool use_compile_time_class_path_;
Elliott Hughes131aef82012-01-27 11:53:35 -0800559
Ian Rogers365c1022012-06-22 15:05:28 -0700560 jobject main_thread_group_;
561 jobject system_thread_group_;
562
Brian Carlstromce888532013-10-10 00:32:58 -0700563 // As returned by ClassLoader.getSystemClassLoader().
564 jobject system_class_loader_;
565
Hiroshi Yamauchi2e899a92013-11-22 16:50:12 -0800566 // If true, then we dump the GC cumulative timings on shutdown.
567 bool dump_gc_performance_on_shutdown_;
568
Carl Shapiro61e019d2011-07-14 16:53:09 -0700569 DISALLOW_COPY_AND_ASSIGN(Runtime);
Carl Shapiro1fb86202011-06-27 17:43:13 -0700570};
571
572} // namespace art
573
Brian Carlstromfc0e3212013-07-17 14:40:12 -0700574#endif // ART_RUNTIME_RUNTIME_H_