blob: 537aadb120723b0de6a5bc40697404aa1d941ac8 [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 Carlstrom578bbdc2011-07-21 14:07:47 -070017#include "runtime.h"
Carl Shapiro1fb86202011-06-27 17:43:13 -070018
Brian Carlstromdbf05b72011-12-15 00:55:24 -080019#include <signal.h>
20
Elliott Hughesffe67362011-07-17 12:09:27 -070021#include <cstdio>
22#include <cstdlib>
Brian Carlstrom8a436592011-08-15 21:27:23 -070023#include <limits>
Carl Shapiro2ed144c2011-07-26 16:52:08 -070024#include <vector>
Elliott Hughesffe67362011-07-17 12:09:27 -070025
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070026#include "class_linker.h"
Brian Carlstromaded5f72011-10-07 17:15:04 -070027#include "class_loader.h"
Elliott Hughes3bb81562011-10-21 18:52:59 -070028#include "debugger.h"
Elliott Hughes4d6850c2012-01-18 15:55:06 -080029#include "dex_verifier.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070030#include "heap.h"
Brian Carlstrome24fa612011-09-29 00:53:55 -070031#include "image.h"
Elliott Hughescf4c6c42011-09-01 15:16:42 -070032#include "intern_table.h"
Elliott Hughesc5f7c912011-08-18 14:00:42 -070033#include "jni_internal.h"
Elliott Hughes32d6e1e2011-10-11 14:47:44 -070034#include "monitor.h"
Brian Carlstrome24fa612011-09-29 00:53:55 -070035#include "oat_file.h"
Elliott Hughes726079d2011-10-07 18:43:44 -070036#include "ScopedLocalRef.h"
Elliott Hughese27955c2011-08-26 15:21:24 -070037#include "signal_catcher.h"
Brian Carlstrome24fa612011-09-29 00:53:55 -070038#include "space.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070039#include "thread.h"
Elliott Hughes8daa0922011-09-11 13:46:25 -070040#include "thread_list.h"
Elliott Hughes3bb81562011-10-21 18:52:59 -070041#include "UniquePtr.h"
Carl Shapiro61e019d2011-07-14 16:53:09 -070042
Elliott Hughes90a33692011-08-30 13:27:07 -070043// TODO: this drags in cutil/log.h, which conflicts with our logging.h.
44#include "JniConstants.h"
45
Carl Shapiro1fb86202011-06-27 17:43:13 -070046namespace art {
47
Carl Shapiro2ed144c2011-07-26 16:52:08 -070048Runtime* Runtime::instance_ = NULL;
49
Elliott Hughes131aef82012-01-27 11:53:35 -080050Mutex Runtime::abort_lock_("abort lock");
51
Elliott Hughesdcc24742011-09-07 14:02:44 -070052Runtime::Runtime()
Elliott Hughesd9c67be2012-02-02 19:54:06 -080053 : is_compiler_(false),
54 is_zygote_(false),
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -070055 default_stack_size_(Thread::kDefaultStackSize),
Elliott Hughesc33a32b2011-10-11 18:18:07 -070056 monitor_list_(NULL),
Elliott Hughesdcc24742011-09-07 14:02:44 -070057 thread_list_(NULL),
58 intern_table_(NULL),
59 class_linker_(NULL),
60 signal_catcher_(NULL),
61 java_vm_(NULL),
Brian Carlstrom16192862011-09-12 17:50:06 -070062 jni_stub_array_(NULL),
Brian Carlstrome24fa612011-09-29 00:53:55 -070063 abstract_method_error_stub_array_(NULL),
Ian Rogers7c3757f2012-02-15 17:18:53 -080064 system_class_loader_(NULL),
Elliott Hughes6b355752012-01-13 16:49:08 -080065 shutting_down_(false),
Elliott Hughesdcc24742011-09-07 14:02:44 -070066 started_(false),
67 vfprintf_(NULL),
68 exit_(NULL),
Elliott Hughes9d5ccec2011-09-19 13:19:50 -070069 abort_(NULL),
jeffhao2692b572011-12-16 15:42:28 -080070 stats_enabled_(false),
71 tracer_(NULL) {
Ian Rogers4f0d07c2011-10-06 23:38:47 -070072 for (int i = 0; i < Runtime::kLastTrampolineMethodType; i++) {
73 resolution_stub_array_[i] = NULL;
74 }
75 for (int i = 0; i < Runtime::kLastCalleeSaveType; i++) {
76 callee_save_method_[i] = NULL;
77 }
Elliott Hughesdcc24742011-09-07 14:02:44 -070078}
79
Carl Shapiro61e019d2011-07-14 16:53:09 -070080Runtime::~Runtime() {
Elliott Hughes6b355752012-01-13 16:49:08 -080081 shutting_down_ = true;
82
Elliott Hughesd1cc8362011-10-24 16:58:50 -070083 Dbg::StopJdwp();
84
Elliott Hughes5fe594f2011-09-08 12:33:17 -070085 // Make sure our internal threads are dead before we start tearing down things they're using.
86 delete signal_catcher_;
Elliott Hughes038a8062011-09-18 14:12:41 -070087 // TODO: GC thread.
Elliott Hughes5fe594f2011-09-08 12:33:17 -070088
Elliott Hughes038a8062011-09-18 14:12:41 -070089 // Make sure all other non-daemon threads have terminated, and all daemon threads are suspended.
Elliott Hughes93e74e82011-09-13 11:07:03 -070090 delete thread_list_;
Elliott Hughesc33a32b2011-10-11 18:18:07 -070091 delete monitor_list_;
Elliott Hughes93e74e82011-09-13 11:07:03 -070092
Carl Shapiro61e019d2011-07-14 16:53:09 -070093 delete class_linker_;
Carl Shapiro69759ea2011-07-21 18:13:35 -070094 Heap::Destroy();
Elliott Hughes4d6850c2012-01-18 15:55:06 -080095 verifier::DexVerifier::DeleteGcMaps();
Elliott Hughescf4c6c42011-09-01 15:16:42 -070096 delete intern_table_;
Elliott Hughesc5f7c912011-08-18 14:00:42 -070097 delete java_vm_;
Elliott Hughesc1674ed2011-08-25 18:09:09 -070098 Thread::Shutdown();
Carl Shapiro4acf4642011-07-26 18:54:13 -070099 // TODO: acquire a static mutex on Runtime to avoid racing.
Brian Carlstrom4a289ed2011-08-16 17:17:49 -0700100 CHECK(instance_ == NULL || instance_ == this);
Carl Shapiro4acf4642011-07-26 18:54:13 -0700101 instance_ = NULL;
Carl Shapiro61e019d2011-07-14 16:53:09 -0700102}
103
Elliott Hughescac6cc72011-11-03 20:31:21 -0700104static bool gAborting = false;
105
Elliott Hughese0918552011-10-28 17:18:29 -0700106struct AbortState {
107 void Dump(std::ostream& os) {
Elliott Hughescac6cc72011-11-03 20:31:21 -0700108 if (gAborting) {
109 os << "Runtime aborting --- recursively, so no thread-specific detail!\n";
110 return;
111 }
112 gAborting = true;
Elliott Hughese0918552011-10-28 17:18:29 -0700113 os << "Runtime aborting...\n";
Elliott Hughes6c7d2442012-02-01 18:40:47 -0800114 if (Runtime::Current() == NULL) {
115 os << "(Runtime does not yet exist!)\n";
116 return;
117 }
Elliott Hughese0918552011-10-28 17:18:29 -0700118 Thread* self = Thread::Current();
119 if (self == NULL) {
120 os << "(Aborting thread was not attached to runtime!)\n";
121 } else {
Elliott Hughes899e7892012-01-24 14:57:32 -0800122 self->Dump(os);
123 if (self->IsExceptionPending()) {
124 os << "Pending " << PrettyTypeOf(self->GetException()) << " on thread:\n"
125 << self->GetException()->Dump();
126 }
Elliott Hughese0918552011-10-28 17:18:29 -0700127 }
128 }
129};
130
Elliott Hughesffe67362011-07-17 12:09:27 -0700131void Runtime::Abort(const char* file, int line) {
Elliott Hughes131aef82012-01-27 11:53:35 -0800132 // Ensure that we don't have multiple threads trying to abort at once,
133 // which would result in significantly worse diagnostics.
134 MutexLock mu(abort_lock_);
135
Elliott Hughesffe67362011-07-17 12:09:27 -0700136 // Get any pending output out of the way.
137 fflush(NULL);
138
139 // Many people have difficulty distinguish aborts from crashes,
140 // so be explicit.
Elliott Hughese0918552011-10-28 17:18:29 -0700141 AbortState state;
Elliott Hughes9ee5f9c2012-02-03 18:33:16 -0800142 LOG(INTERNAL_FATAL) << Dumpable<AbortState>(state);
Elliott Hughesffe67362011-07-17 12:09:27 -0700143
Elliott Hughesffe67362011-07-17 12:09:27 -0700144 // Perform any platform-specific pre-abort actions.
145 PlatformAbort(file, line);
146
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700147 // use abort hook if we have one
148 if (Runtime::Current() != NULL && Runtime::Current()->abort_ != NULL) {
149 Runtime::Current()->abort_();
150 // notreached
151 }
152
Elliott Hughesffe67362011-07-17 12:09:27 -0700153 // If we call abort(3) on a device, all threads in the process
Carl Shapiro69759ea2011-07-21 18:13:35 -0700154 // receive SIGABRT. debuggerd dumps the stack trace of the main
155 // thread, whether or not that was the thread that failed. By
156 // stuffing a value into a bogus address, we cause a segmentation
Elliott Hughesffe67362011-07-17 12:09:27 -0700157 // fault in the current thread, and get a useful log from debuggerd.
158 // We can also trivially tell the difference between a VM crash and
159 // a deliberate abort by looking at the fault address.
160 *reinterpret_cast<char*>(0xdeadd00d) = 38;
161 abort();
Elliott Hughesffe67362011-07-17 12:09:27 -0700162 // notreached
163}
164
Elliott Hughesbf86d042011-08-31 17:53:14 -0700165void Runtime::CallExitHook(jint status) {
166 if (exit_ != NULL) {
167 ScopedThreadStateChange tsc(Thread::Current(), Thread::kNative);
168 exit_(status);
169 LOG(WARNING) << "Exit hook returned instead of exiting!";
170 }
171}
172
Brian Carlstrom8a436592011-08-15 21:27:23 -0700173// Parse a string of the form /[0-9]+[kKmMgG]?/, which is used to specify
174// memory sizes. [kK] indicates kilobytes, [mM] megabytes, and
175// [gG] gigabytes.
176//
177// "s" should point just past the "-Xm?" part of the string.
Brian Carlstrom8a436592011-08-15 21:27:23 -0700178// "div" specifies a divisor, e.g. 1024 if the value must be a multiple
179// of 1024.
180//
181// The spec says the -Xmx and -Xms options must be multiples of 1024. It
182// doesn't say anything about -Xss.
183//
184// Returns 0 (a useless size) if "s" is malformed or specifies a low or
185// non-evenly-divisible value.
186//
Elliott Hughesc1f143d2011-12-01 17:31:10 -0800187size_t ParseMemoryOption(const char* s, size_t div) {
Brian Carlstrom8a436592011-08-15 21:27:23 -0700188 // strtoul accepts a leading [+-], which we don't want,
189 // so make sure our string starts with a decimal digit.
190 if (isdigit(*s)) {
Elliott Hughesc1f143d2011-12-01 17:31:10 -0800191 const char* s2;
192 size_t val = strtoul(s, (char**)&s2, 10);
Brian Carlstrom8a436592011-08-15 21:27:23 -0700193 if (s2 != s) {
194 // s2 should be pointing just after the number.
195 // If this is the end of the string, the user
196 // has specified a number of bytes. Otherwise,
197 // there should be exactly one more character
198 // that specifies a multiplier.
199 if (*s2 != '\0') {
Brian Carlstromf734cf52011-08-17 16:28:14 -0700200 // The remainder of the string is either a single multiplier
201 // character, or nothing to indicate that the value is in
202 // bytes.
203 char c = *s2++;
204 if (*s2 == '\0') {
205 size_t mul;
206 if (c == '\0') {
207 mul = 1;
208 } else if (c == 'k' || c == 'K') {
209 mul = KB;
210 } else if (c == 'm' || c == 'M') {
211 mul = MB;
212 } else if (c == 'g' || c == 'G') {
213 mul = GB;
Brian Carlstrom8a436592011-08-15 21:27:23 -0700214 } else {
Brian Carlstromf734cf52011-08-17 16:28:14 -0700215 // Unknown multiplier character.
Brian Carlstrom8a436592011-08-15 21:27:23 -0700216 return 0;
217 }
Brian Carlstromf734cf52011-08-17 16:28:14 -0700218
219 if (val <= std::numeric_limits<size_t>::max() / mul) {
220 val *= mul;
221 } else {
222 // Clamp to a multiple of 1024.
223 val = std::numeric_limits<size_t>::max() & ~(1024-1);
224 }
225 } else {
226 // There's more than one character after the numeric part.
227 return 0;
228 }
Brian Carlstrom8a436592011-08-15 21:27:23 -0700229 }
230 // The man page says that a -Xm value must be a multiple of 1024.
231 if (val % div == 0) {
232 return val;
233 }
Carl Shapirofc322c72011-07-27 00:20:01 -0700234 }
235 }
Brian Carlstrom8a436592011-08-15 21:27:23 -0700236 return 0;
Carl Shapirofc322c72011-07-27 00:20:01 -0700237}
238
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800239size_t ParseIntegerOrDie(const std::string& s) {
240 std::string::size_type colon = s.find(':');
241 if (colon == std::string::npos) {
Elliott Hughesbb1e8f02011-10-18 14:14:25 -0700242 LOG(FATAL) << "Missing integer: " << s;
243 }
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800244 const char* begin = &s[colon + 1];
Elliott Hughesbb1e8f02011-10-18 14:14:25 -0700245 char* end;
246 size_t result = strtoul(begin, &end, 10);
247 if (begin == end || *end != '\0') {
248 LOG(FATAL) << "Failed to parse integer in: " << s;
249 }
250 return result;
251}
252
Elliott Hughes0af55432011-08-17 18:37:28 -0700253void LoadJniLibrary(JavaVMExt* vm, const char* name) {
Elliott Hughes6cc332e2012-01-20 22:59:20 -0800254 std::string mapped_name(StringPrintf(OS_SHARED_LIB_FORMAT_STR, name));
Elliott Hughes75770752011-08-24 17:52:38 -0700255 std::string reason;
256 if (!vm->LoadNativeLibrary(mapped_name, NULL, reason)) {
Elliott Hughes0af55432011-08-17 18:37:28 -0700257 LOG(FATAL) << "LoadNativeLibrary failed for \"" << mapped_name << "\": "
258 << reason;
259 }
260}
261
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700262Runtime::ParsedOptions* Runtime::ParsedOptions::Create(const Options& options, bool ignore_unrecognized) {
Elliott Hughes90a33692011-08-30 13:27:07 -0700263 UniquePtr<ParsedOptions> parsed(new ParsedOptions());
Brian Carlstroma004aa92012-02-08 18:05:09 -0800264 const char* boot_class_path_string = getenv("BOOTCLASSPATH");
265 if (boot_class_path_string != NULL) {
266 parsed->boot_class_path_string_ = boot_class_path_string;
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700267 }
Brian Carlstroma004aa92012-02-08 18:05:09 -0800268 const char* class_path_string = getenv("CLASSPATH");
269 if (class_path_string != NULL) {
270 parsed->class_path_string_ = class_path_string;
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700271 }
Elliott Hughes515a5bc2011-08-17 11:08:34 -0700272#ifdef NDEBUG
Elliott Hughes5174fe62011-08-23 15:12:35 -0700273 // -Xcheck:jni is off by default for regular builds...
Elliott Hughes515a5bc2011-08-17 11:08:34 -0700274 parsed->check_jni_ = false;
275#else
276 // ...but on by default in debug builds.
277 parsed->check_jni_ = true;
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700278#endif
Elliott Hughes85d15452011-09-16 17:33:01 -0700279
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700280 parsed->heap_initial_size_ = Heap::kInitialSize;
281 parsed->heap_maximum_size_ = Heap::kMaximumSize;
jeffhaoc1160702011-10-27 15:48:45 -0700282 parsed->heap_growth_limit_ = 0; // 0 means no growth limit
Brian Carlstromf734cf52011-08-17 16:28:14 -0700283 parsed->stack_size_ = Thread::kDefaultStackSize;
284
Elliott Hughesd9c67be2012-02-02 19:54:06 -0800285 parsed->is_compiler_ = false;
Elliott Hughes9ca7a1f2011-10-11 14:29:52 -0700286 parsed->is_zygote_ = false;
287
Elliott Hughesbb1e8f02011-10-18 14:14:25 -0700288 parsed->jni_globals_max_ = 0;
Elliott Hughesfc861622011-10-17 17:57:47 -0700289 parsed->lock_profiling_threshold_ = 0;
290 parsed->hook_is_sensitive_thread_ = NULL;
291
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700292 parsed->hook_vfprintf_ = vfprintf;
293 parsed->hook_exit_ = exit;
294 parsed->hook_abort_ = abort;
Brian Carlstrom8a436592011-08-15 21:27:23 -0700295
296 for (size_t i = 0; i < options.size(); ++i) {
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800297 const std::string option(options[i].first);
Brian Carlstrom0796af02011-10-12 14:31:45 -0700298 if (true && options[0].first == "-Xzygote") {
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700299 LOG(INFO) << "option[" << i << "]=" << option;
300 }
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800301 if (StartsWith(option, "-Xbootclasspath:")) {
Brian Carlstroma004aa92012-02-08 18:05:09 -0800302 parsed->boot_class_path_string_ = option.substr(strlen("-Xbootclasspath:")).data();
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700303 } else if (option == "-classpath" || option == "-cp") {
304 // TODO: support -Djava.class.path
305 i++;
306 if (i == options.size()) {
307 // TODO: usage
308 LOG(FATAL) << "Missing required class path value for " << option;
309 return NULL;
310 }
Brian Carlstroma004aa92012-02-08 18:05:09 -0800311 const StringPiece& value = options[i].first;
312 parsed->class_path_string_ = value.data();
313 } else if (option == "bootclasspath") {
314 parsed->boot_class_path_
315 = reinterpret_cast<const std::vector<const DexFile*>*>(options[i].second);
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800316 } else if (StartsWith(option, "-Ximage:")) {
Brian Carlstroma004aa92012-02-08 18:05:09 -0800317 parsed->image_ = option.substr(strlen("-Ximage:")).data();
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800318 } else if (StartsWith(option, "-Xcheck:jni")) {
Elliott Hughes515a5bc2011-08-17 11:08:34 -0700319 parsed->check_jni_ = true;
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800320 } else if (StartsWith(option, "-Xrunjdwp:") || StartsWith(option, "-agentlib:jdwp=")) {
321 std::string tail(option.substr(option[1] == 'X' ? 10 : 15));
Elliott Hughes3bb81562011-10-21 18:52:59 -0700322 if (tail == "help" || !Dbg::ParseJdwpOptions(tail)) {
323 LOG(FATAL) << "Example: -Xrunjdwp:transport=dt_socket,address=8000,server=y\n"
324 << "Example: -Xrunjdwp:transport=dt_socket,address=localhost:6500,server=n";
325 return NULL;
326 }
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800327 } else if (StartsWith(option, "-Xms")) {
328 size_t size = ParseMemoryOption(option.substr(strlen("-Xms")).c_str(), 1024);
Brian Carlstromf734cf52011-08-17 16:28:14 -0700329 if (size == 0) {
330 if (ignore_unrecognized) {
331 continue;
332 }
Brian Carlstrom4a289ed2011-08-16 17:17:49 -0700333 // TODO: usage
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700334 LOG(FATAL) << "Failed to parse " << option;
Brian Carlstromf734cf52011-08-17 16:28:14 -0700335 return NULL;
336 }
337 parsed->heap_initial_size_ = size;
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800338 } else if (StartsWith(option, "-Xmx")) {
339 size_t size = ParseMemoryOption(option.substr(strlen("-Xmx")).c_str(), 1024);
Brian Carlstromf734cf52011-08-17 16:28:14 -0700340 if (size == 0) {
341 if (ignore_unrecognized) {
342 continue;
343 }
Brian Carlstrom4a289ed2011-08-16 17:17:49 -0700344 // TODO: usage
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700345 LOG(FATAL) << "Failed to parse " << option;
Brian Carlstromf734cf52011-08-17 16:28:14 -0700346 return NULL;
347 }
348 parsed->heap_maximum_size_ = size;
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800349 } else if (StartsWith(option, "-XX:HeapGrowthLimit=")) {
350 size_t size = ParseMemoryOption(option.substr(strlen("-XX:HeapGrowthLimit=")).c_str(), 1024);
jeffhaoc1160702011-10-27 15:48:45 -0700351 if (size == 0) {
352 if (ignore_unrecognized) {
353 continue;
354 }
355 // TODO: usage
356 LOG(FATAL) << "Failed to parse " << option;
357 return NULL;
358 }
359 parsed->heap_growth_limit_ = size;
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800360 } else if (StartsWith(option, "-Xss")) {
361 size_t size = ParseMemoryOption(option.substr(strlen("-Xss")).c_str(), 1);
Brian Carlstromf734cf52011-08-17 16:28:14 -0700362 if (size == 0) {
363 if (ignore_unrecognized) {
364 continue;
365 }
Brian Carlstrom4a289ed2011-08-16 17:17:49 -0700366 // TODO: usage
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700367 LOG(FATAL) << "Failed to parse " << option;
Brian Carlstromf734cf52011-08-17 16:28:14 -0700368 return NULL;
369 }
370 parsed->stack_size_ = size;
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800371 } else if (StartsWith(option, "-D")) {
372 parsed->properties_.push_back(option.substr(strlen("-D")));
373 } else if (StartsWith(option, "-Xjnitrace:")) {
374 parsed->jni_trace_ = option.substr(strlen("-Xjnitrace:"));
Brian Carlstrom5de8fe52011-10-16 14:10:09 -0700375 } else if (option == "compiler") {
Elliott Hughesd9c67be2012-02-02 19:54:06 -0800376 parsed->is_compiler_ = true;
Elliott Hughes9ca7a1f2011-10-11 14:29:52 -0700377 } else if (option == "-Xzygote") {
378 parsed->is_zygote_ = true;
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800379 } else if (StartsWith(option, "-verbose:")) {
Elliott Hughes0af55432011-08-17 18:37:28 -0700380 std::vector<std::string> verbose_options;
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800381 Split(option.substr(strlen("-verbose:")), ',', verbose_options);
Elliott Hughes0af55432011-08-17 18:37:28 -0700382 for (size_t i = 0; i < verbose_options.size(); ++i) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800383 if (verbose_options[i] == "class") {
384 gLogVerbosity.class_linker = true;
385 } else if (verbose_options[i] == "compiler") {
386 gLogVerbosity.compiler = true;
387 } else if (verbose_options[i] == "heap") {
388 gLogVerbosity.heap = true;
389 } else if (verbose_options[i] == "gc") {
390 gLogVerbosity.gc = true;
391 } else if (verbose_options[i] == "jdwp") {
392 gLogVerbosity.jdwp = true;
393 } else if (verbose_options[i] == "jni") {
394 gLogVerbosity.jni = true;
395 } else if (verbose_options[i] == "monitor") {
396 gLogVerbosity.monitor = true;
397 } else if (verbose_options[i] == "startup") {
398 gLogVerbosity.startup = true;
399 } else if (verbose_options[i] == "third-party-jni") {
400 gLogVerbosity.third_party_jni = true;
401 } else if (verbose_options[i] == "threads") {
402 gLogVerbosity.threads = true;
403 } else {
404 LOG(WARNING) << "Ignoring unknown -verbose option: " << verbose_options[i];
405 }
Elliott Hughes0af55432011-08-17 18:37:28 -0700406 }
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800407 } else if (StartsWith(option, "-Xjnigreflimit:")) {
Elliott Hughesbb1e8f02011-10-18 14:14:25 -0700408 parsed->jni_globals_max_ = ParseIntegerOrDie(option);
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800409 } else if (StartsWith(option, "-Xlockprofthreshold:")) {
Elliott Hughesbb1e8f02011-10-18 14:14:25 -0700410 parsed->lock_profiling_threshold_ = ParseIntegerOrDie(option);
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800411 } else if (StartsWith(option, "-Xstacktracefile:")) {
Brian Carlstrom7c6deaa2011-10-21 12:05:06 -0700412// always show stack traces in debug builds
413#ifdef NDEBUG
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800414 parsed->stack_trace_file_ = option.substr(strlen("-Xstacktracefile:"));
Brian Carlstrom7c6deaa2011-10-21 12:05:06 -0700415#endif
Elliott Hughesfc861622011-10-17 17:57:47 -0700416 } else if (option == "sensitiveThread") {
417 parsed->hook_is_sensitive_thread_ = reinterpret_cast<bool (*)()>(options[i].second);
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700418 } else if (option == "vfprintf") {
419 parsed->hook_vfprintf_ = reinterpret_cast<int (*)(FILE *, const char*, va_list)>(options[i].second);
420 } else if (option == "exit") {
421 parsed->hook_exit_ = reinterpret_cast<void(*)(jint)>(options[i].second);
422 } else if (option == "abort") {
423 parsed->hook_abort_ = reinterpret_cast<void(*)()>(options[i].second);
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700424 } else if (option == "host-prefix") {
425 parsed->host_prefix_ = reinterpret_cast<const char*>(options[i].second);
Elliott Hughesb3e66df2012-01-12 14:49:18 -0800426 } else if (option == "-Xgenregmap" || option == "-Xgc:precise") {
427 // We silently ignore these for backwards compatibility.
Brian Carlstrom8a436592011-08-15 21:27:23 -0700428 } else {
429 if (!ignore_unrecognized) {
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700430 // TODO: print usage via vfprintf
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700431 LOG(ERROR) << "Unrecognized option " << option;
432 // TODO: this should exit, but for now tolerate unknown options
433 //return NULL;
Brian Carlstrom8a436592011-08-15 21:27:23 -0700434 }
435 }
436 }
437
Brian Carlstrom223f20f2012-02-04 23:06:55 -0800438 if (!parsed->is_compiler_ && parsed->image_.empty()) {
439 parsed->image_ += GetAndroidRoot();
440 parsed->image_ += "/framework/boot.art";
Brian Carlstrom5de8fe52011-10-16 14:10:09 -0700441 }
jeffhaoc1160702011-10-27 15:48:45 -0700442 if (parsed->heap_growth_limit_ == 0) {
443 parsed->heap_growth_limit_ = parsed->heap_maximum_size_;
444 }
Brian Carlstrom5de8fe52011-10-16 14:10:09 -0700445
Elliott Hughescac6cc72011-11-03 20:31:21 -0700446 LOG(INFO) << "Build type: "
447#ifndef NDEBUG
448 << "debug"
449#else
450 << "optimized"
451#endif
452 << "; CheckJNI: " << (parsed->check_jni_ ? "on" : "off");
Elliott Hughes85d15452011-09-16 17:33:01 -0700453
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700454 return parsed.release();
Brian Carlstrom8a436592011-08-15 21:27:23 -0700455}
456
457Runtime* Runtime::Create(const Options& options, bool ignore_unrecognized) {
Carl Shapiro2ed144c2011-07-26 16:52:08 -0700458 // TODO: acquire a static mutex on Runtime to avoid racing.
459 if (Runtime::instance_ != NULL) {
460 return NULL;
461 }
Elliott Hughesdcc24742011-09-07 14:02:44 -0700462 instance_ = new Runtime;
463 if (!instance_->Init(options, ignore_unrecognized)) {
464 delete instance_;
465 instance_ = NULL;
Carl Shapiro61e019d2011-07-14 16:53:09 -0700466 }
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700467 return instance_;
468}
Elliott Hughes0af55432011-08-17 18:37:28 -0700469
Brian Carlstromaded5f72011-10-07 17:15:04 -0700470void CreateSystemClassLoader() {
471 if (ClassLoader::UseCompileTimeClassPath()) {
472 return;
473 }
474
475 Thread* self = Thread::Current();
476
477 // Must be in the kNative state for calling native methods.
478 CHECK_EQ(self->GetState(), Thread::kNative);
479
480 JNIEnv* env = self->GetJniEnv();
Brian Carlstromdf143242011-10-10 18:05:34 -0700481 ScopedLocalRef<jclass> ClassLoader_class(env, env->FindClass("java/lang/ClassLoader"));
482 CHECK(ClassLoader_class.get() != NULL);
483 jmethodID getSystemClassLoader = env->GetStaticMethodID(ClassLoader_class.get(),
484 "getSystemClassLoader",
485 "()Ljava/lang/ClassLoader;");
486 CHECK(getSystemClassLoader != NULL);
487 ScopedLocalRef<jobject> class_loader(env, env->CallStaticObjectMethod(ClassLoader_class.get(),
488 getSystemClassLoader));
489 CHECK(class_loader.get() != NULL);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700490
Brian Carlstromdf143242011-10-10 18:05:34 -0700491 Thread::Current()->SetClassLoaderOverride(Decode<ClassLoader*>(env, class_loader.get()));
Jesse Wilson1b2b2f22011-11-22 11:47:44 -0500492
493 ScopedLocalRef<jclass> Thread_class(env, env->FindClass("java/lang/Thread"));
494 CHECK(Thread_class.get() != NULL);
495 jfieldID contextClassLoader = env->GetFieldID(Thread_class.get(),
496 "contextClassLoader",
497 "Ljava/lang/ClassLoader;");
498 CHECK(contextClassLoader != NULL);
499 ScopedLocalRef<jobject> self_jobject(env, AddLocalReference<jobject>(env, self->GetPeer()));
500 env->SetObjectField(self_jobject.get(), contextClassLoader, class_loader.get());
Brian Carlstromaded5f72011-10-07 17:15:04 -0700501}
502
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700503void Runtime::Start() {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800504 VLOG(startup) << "Runtime::Start entering";
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700505
506 CHECK(host_prefix_.empty()) << host_prefix_;
507
Brian Carlstromf28bc5b2011-10-26 01:15:03 -0700508 // Restore main thread state to kNative as expected by native code
509 Thread::Current()->SetState(Thread::kNative);
510
Brian Carlstrom5d40f182011-09-26 22:29:18 -0700511 started_ = true;
512
Brian Carlstromae826982011-11-09 01:33:42 -0800513 // InitNativeMethods needs to be after started_ so that the classes
514 // it touches will have methods linked to the oat file if necessary.
515 InitNativeMethods();
516
Jesse Wilson9a6bae82011-11-14 14:57:30 -0500517 Thread::FinishStartup();
518
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700519 if (!is_zygote_) {
520 DidForkFromZygote();
521 }
Elliott Hughes9ca7a1f2011-10-11 14:29:52 -0700522
Elliott Hughes85d15452011-09-16 17:33:01 -0700523 StartDaemonThreads();
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700524
Brian Carlstromaded5f72011-10-07 17:15:04 -0700525 CreateSystemClassLoader();
526
Elliott Hughes726079d2011-10-07 18:43:44 -0700527 Thread::Current()->GetJniEnv()->locals.AssertEmpty();
528
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800529 VLOG(startup) << "Runtime::Start exiting";
Elliott Hughes85d15452011-09-16 17:33:01 -0700530}
531
Brian Carlstromcaabb1b2011-10-11 18:09:13 -0700532void Runtime::DidForkFromZygote() {
Brian Carlstromcaabb1b2011-10-11 18:09:13 -0700533 is_zygote_ = false;
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700534
Brian Carlstromcaabb1b2011-10-11 18:09:13 -0700535 StartSignalCatcher();
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700536
537 // Start the JDWP thread. If the command-line debugger flags specified "suspend=y",
538 // this will pause the runtime, so we probably want this to come last.
539 Dbg::StartJdwp();
Brian Carlstromcaabb1b2011-10-11 18:09:13 -0700540}
541
542void Runtime::StartSignalCatcher() {
543 if (!is_zygote_) {
Elliott Hughes94ce37a2011-10-18 15:07:48 -0700544 signal_catcher_ = new SignalCatcher(stack_trace_file_);
Brian Carlstromcaabb1b2011-10-11 18:09:13 -0700545 }
546}
547
Elliott Hughes85d15452011-09-16 17:33:01 -0700548void Runtime::StartDaemonThreads() {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800549 VLOG(startup) << "Runtime::StartDaemonThreads entering";
Elliott Hughes85d15452011-09-16 17:33:01 -0700550
Elliott Hughes719b3232011-09-25 17:42:19 -0700551 Thread* self = Thread::Current();
Brian Carlstromaded5f72011-10-07 17:15:04 -0700552
553 // Must be in the kNative state for calling native methods.
554 CHECK_EQ(self->GetState(), Thread::kNative);
555
Elliott Hughes719b3232011-09-25 17:42:19 -0700556 JNIEnv* env = self->GetJniEnv();
Elliott Hughes726079d2011-10-07 18:43:44 -0700557 ScopedLocalRef<jclass> c(env, env->FindClass("java/lang/Daemons"));
558 CHECK(c.get() != NULL);
559 jmethodID mid = env->GetStaticMethodID(c.get(), "start", "()V");
Elliott Hughes719b3232011-09-25 17:42:19 -0700560 CHECK(mid != NULL);
Elliott Hughes726079d2011-10-07 18:43:44 -0700561 env->CallStaticVoidMethod(c.get(), mid);
Elliott Hughes8cf5bc02012-02-02 16:32:16 -0800562 CHECK(!env->ExceptionCheck());
Elliott Hughes9ca7a1f2011-10-11 14:29:52 -0700563
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800564 VLOG(startup) << "Runtime::StartDaemonThreads exiting";
Carl Shapiro61e019d2011-07-14 16:53:09 -0700565}
566
Elliott Hughes6b355752012-01-13 16:49:08 -0800567bool Runtime::IsShuttingDown() const {
568 return shutting_down_;
569}
570
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700571bool Runtime::IsStarted() const {
Elliott Hughesdcc24742011-09-07 14:02:44 -0700572 return started_;
573}
574
Elliott Hughes0af55432011-08-17 18:37:28 -0700575bool Runtime::Init(const Options& raw_options, bool ignore_unrecognized) {
Elliott Hughesc1674ed2011-08-25 18:09:09 -0700576 CHECK_EQ(sysconf(_SC_PAGE_SIZE), kPageSize);
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700577
Elliott Hughes90a33692011-08-30 13:27:07 -0700578 UniquePtr<ParsedOptions> options(ParsedOptions::Create(raw_options, ignore_unrecognized));
579 if (options.get() == NULL) {
Brian Carlstrome24fa612011-09-29 00:53:55 -0700580 LOG(ERROR) << "Failed to parse options";
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700581 return false;
582 }
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800583 VLOG(startup) << "Runtime::Init -verbose:startup enabled";
Elliott Hughes7ede61e2011-09-14 18:18:06 -0700584
Elliott Hughesbb1e8f02011-10-18 14:14:25 -0700585 SetJniGlobalsMax(options->jni_globals_max_);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800586 Monitor::Init(options->lock_profiling_threshold_, options->hook_is_sensitive_thread_);
Elliott Hughes32d6e1e2011-10-11 14:47:44 -0700587
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700588 host_prefix_ = options->host_prefix_;
Brian Carlstroma004aa92012-02-08 18:05:09 -0800589 boot_class_path_string_ = options->boot_class_path_string_;
590 class_path_string_ = options->class_path_string_;
Elliott Hughes7ede61e2011-09-14 18:18:06 -0700591 properties_ = options->properties_;
592
Elliott Hughesd9c67be2012-02-02 19:54:06 -0800593 is_compiler_ = options->is_compiler_;
Elliott Hughes9ca7a1f2011-10-11 14:29:52 -0700594 is_zygote_ = options->is_zygote_;
595
Elliott Hughes0af55432011-08-17 18:37:28 -0700596 vfprintf_ = options->hook_vfprintf_;
597 exit_ = options->hook_exit_;
598 abort_ = options->hook_abort_;
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700599
Elliott Hughesbe759c62011-09-08 19:38:21 -0700600 default_stack_size_ = options->stack_size_;
Elliott Hughes94ce37a2011-10-18 15:07:48 -0700601 stack_trace_file_ = options->stack_trace_file_;
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700602
Elliott Hughesc33a32b2011-10-11 18:18:07 -0700603 monitor_list_ = new MonitorList;
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800604 thread_list_ = new ThreadList;
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700605 intern_table_ = new InternTable;
606
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800607 Heap::Init(options->heap_initial_size_,
jeffhaoc1160702011-10-27 15:48:45 -0700608 options->heap_growth_limit_,
Ian Rogers30fab402012-01-23 15:43:46 -0800609 options->heap_maximum_size_,
Brian Carlstrom223f20f2012-02-04 23:06:55 -0800610 options->image_);
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700611
Elliott Hughesc1674ed2011-08-25 18:09:09 -0700612 BlockSignals();
613
Elliott Hughesa0957642011-09-02 14:27:33 -0700614 java_vm_ = new JavaVMExt(this, options.get());
Elliott Hughes515a5bc2011-08-17 11:08:34 -0700615
Elliott Hughesbe759c62011-09-08 19:38:21 -0700616 Thread::Startup();
Elliott Hughesd92bec42011-09-02 17:04:36 -0700617
Elliott Hughes5fe594f2011-09-08 12:33:17 -0700618 // ClassLinker needs an attached thread, but we can't fully attach a thread
619 // without creating objects.
620 Thread::Attach(this, "main", false);
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700621
Brian Carlstromf28bc5b2011-10-26 01:15:03 -0700622 // Set us to runnable so tools using a runtime can allocate and GC by default
623 Thread::Current()->SetState(Thread::kRunnable);
624
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700625 CHECK_GE(Heap::GetSpaces().size(), 1U);
Brian Carlstroma004aa92012-02-08 18:05:09 -0800626 if (Heap::GetSpaces()[0]->IsImageSpace()) {
627 class_linker_ = ClassLinker::CreateFromImage(intern_table_);
628 } else {
629 CHECK(options->boot_class_path_ != NULL);
630 CHECK_NE(options->boot_class_path_->size(), 0U);
631 class_linker_ = ClassLinker::CreateFromCompiler(*options->boot_class_path_, intern_table_);
632 }
633 CHECK(class_linker_ != NULL);
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700634
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800635 VLOG(startup) << "Runtime::Init exiting";
Carl Shapiro1fb86202011-06-27 17:43:13 -0700636 return true;
637}
638
Elliott Hughes038a8062011-09-18 14:12:41 -0700639void Runtime::InitNativeMethods() {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800640 VLOG(startup) << "Runtime::InitNativeMethods entering";
Elliott Hughesad7c2a32011-08-31 11:58:10 -0700641 Thread* self = Thread::Current();
642 JNIEnv* env = self->GetJniEnv();
643
Elliott Hughes418d20f2011-09-22 14:00:39 -0700644 // Must be in the kNative state for calling native methods (JNI_OnLoad code).
Brian Carlstromaded5f72011-10-07 17:15:04 -0700645 CHECK_EQ(self->GetState(), Thread::kNative);
Elliott Hughesad7c2a32011-08-31 11:58:10 -0700646
Elliott Hughes418d20f2011-09-22 14:00:39 -0700647 // First set up JniConstants, which is used by both the runtime's built-in native
648 // methods and libcore.
Elliott Hughesfea966e2011-09-22 10:26:20 -0700649 JniConstants::init(env);
650
Elliott Hughes418d20f2011-09-22 14:00:39 -0700651 // Then set up the native methods provided by the runtime itself.
Elliott Hughesad7c2a32011-08-31 11:58:10 -0700652 RegisterRuntimeNativeMethods(env);
653
Elliott Hughes418d20f2011-09-22 14:00:39 -0700654 // Then set up libcore, which is just a regular JNI library with a regular JNI_OnLoad.
655 // Most JNI libraries can just use System.loadLibrary, but libcore can't because it's
656 // the library that implements System.loadLibrary!
Elliott Hughesad7c2a32011-08-31 11:58:10 -0700657 LoadJniLibrary(instance_->GetJavaVM(), "javacore");
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800658 VLOG(startup) << "Runtime::InitNativeMethods exiting";
Elliott Hughesad7c2a32011-08-31 11:58:10 -0700659}
660
661void Runtime::RegisterRuntimeNativeMethods(JNIEnv* env) {
662#define REGISTER(FN) extern void FN(JNIEnv*); FN(env)
Ian Rogers5167c972012-02-03 10:41:20 -0800663 // Register Throwable first so that registration of other native methods can throw exceptions
664 REGISTER(register_java_lang_Throwable);
Brian Carlstromf91c8c32011-09-21 17:30:34 -0700665 REGISTER(register_dalvik_system_DexFile);
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700666 REGISTER(register_dalvik_system_VMDebug);
Elliott Hughes7ede61e2011-09-14 18:18:06 -0700667 REGISTER(register_dalvik_system_VMRuntime);
Elliott Hughes8daa0922011-09-11 13:46:25 -0700668 REGISTER(register_dalvik_system_VMStack);
Elliott Hughes01158d72011-09-19 19:47:10 -0700669 REGISTER(register_dalvik_system_Zygote);
Elliott Hughesd369bb72011-09-12 14:41:14 -0700670 REGISTER(register_java_lang_Class);
Elliott Hughesbf86d042011-08-31 17:53:14 -0700671 REGISTER(register_java_lang_Object);
672 REGISTER(register_java_lang_Runtime);
673 REGISTER(register_java_lang_String);
674 REGISTER(register_java_lang_System);
Elliott Hughes8daa0922011-09-11 13:46:25 -0700675 REGISTER(register_java_lang_Thread);
Elliott Hughes64bf5a32011-09-20 14:43:12 -0700676 REGISTER(register_java_lang_VMClassLoader);
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700677 REGISTER(register_java_lang_reflect_Array);
Elliott Hughes2a20cfd2011-09-23 19:30:41 -0700678 REGISTER(register_java_lang_reflect_Constructor);
Brian Carlstromf867b6f2011-09-16 12:17:25 -0700679 REGISTER(register_java_lang_reflect_Field);
680 REGISTER(register_java_lang_reflect_Method);
Jesse Wilson95caa792011-10-12 18:14:17 -0400681 REGISTER(register_java_lang_reflect_Proxy);
Elliott Hughesbf86d042011-08-31 17:53:14 -0700682 REGISTER(register_java_util_concurrent_atomic_AtomicLong);
Brian Carlstrom395520e2011-09-25 19:35:00 -0700683 REGISTER(register_org_apache_harmony_dalvik_ddmc_DdmServer);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -0700684 REGISTER(register_org_apache_harmony_dalvik_ddmc_DdmVmInternal);
Elliott Hughes5ee7a8b2011-09-13 16:40:07 -0700685 REGISTER(register_sun_misc_Unsafe);
Elliott Hughesad7c2a32011-08-31 11:58:10 -0700686#undef REGISTER
687}
688
Elliott Hughes8daa0922011-09-11 13:46:25 -0700689void Runtime::Dump(std::ostream& os) {
Elliott Hughese27955c2011-08-26 15:21:24 -0700690 // TODO: dump other runtime statistics?
Elliott Hughescac6cc72011-11-03 20:31:21 -0700691 GetClassLinker()->DumpForSigQuit(os);
692 GetInternTable()->DumpForSigQuit(os);
Elliott Hughes42ee1422011-09-06 12:33:32 -0700693 os << "\n";
Elliott Hughes8daa0922011-09-11 13:46:25 -0700694
695 thread_list_->Dump(os);
Elliott Hughese27955c2011-08-26 15:21:24 -0700696}
697
Elliott Hughes21a5bf22011-12-07 14:35:20 -0800698void Runtime::DumpLockHolders(std::ostream& os) {
699 pid_t heap_lock_owner = Heap::GetLockOwner();
700 pid_t thread_list_lock_owner = GetThreadList()->GetLockOwner();
701 pid_t classes_lock_owner = GetClassLinker()->GetClassesLockOwner();
702 pid_t dex_lock_owner = GetClassLinker()->GetDexLockOwner();
703 if ((heap_lock_owner | thread_list_lock_owner | classes_lock_owner | dex_lock_owner) != 0) {
704 os << "Heap lock owner tid: " << heap_lock_owner << "\n"
705 << "ThreadList lock owner tid: " << thread_list_lock_owner << "\n"
706 << "ClassLinker classes lock owner tid: " << classes_lock_owner << "\n"
707 << "ClassLinker dex lock owner tid: " << dex_lock_owner << "\n";
708 }
709}
710
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700711void Runtime::SetStatsEnabled(bool new_state) {
712 if (new_state == true) {
713 GetStats()->Clear(~0);
714 // TODO: wouldn't it make more sense to clear _all_ threads' stats?
715 Thread::Current()->GetStats()->Clear(~0);
716 }
717 stats_enabled_ = new_state;
718}
719
720void Runtime::ResetStats(int kinds) {
721 GetStats()->Clear(kinds & 0xffff);
722 // TODO: wouldn't it make more sense to clear _all_ threads' stats?
723 Thread::Current()->GetStats()->Clear(kinds >> 16);
724}
725
726RuntimeStats* Runtime::GetStats() {
727 return &stats_;
728}
729
730int32_t Runtime::GetStat(int kind) {
731 RuntimeStats* stats;
732 if (kind < (1<<16)) {
733 stats = GetStats();
734 } else {
735 stats = Thread::Current()->GetStats();
736 kind >>= 16;
737 }
738 switch (kind) {
739 case KIND_ALLOCATED_OBJECTS:
740 return stats->allocated_objects;
741 case KIND_ALLOCATED_BYTES:
742 return stats->allocated_bytes;
743 case KIND_FREED_OBJECTS:
744 return stats->freed_objects;
745 case KIND_FREED_BYTES:
746 return stats->freed_bytes;
747 case KIND_GC_INVOCATIONS:
748 return stats->gc_for_alloc_count;
749 case KIND_CLASS_INIT_COUNT:
750 return stats->class_init_count;
751 case KIND_CLASS_INIT_TIME:
752 // Convert ns to us, reduce to 32 bits.
753 return (int) (stats->class_init_time_ns / 1000);
754 case KIND_EXT_ALLOCATED_OBJECTS:
755 case KIND_EXT_ALLOCATED_BYTES:
756 case KIND_EXT_FREED_OBJECTS:
757 case KIND_EXT_FREED_BYTES:
758 return 0; // backward compatibility
759 default:
760 CHECK(false);
761 return -1; // unreachable
762 }
763}
764
Elliott Hughesc1674ed2011-08-25 18:09:09 -0700765void Runtime::BlockSignals() {
766 sigset_t sigset;
767 if (sigemptyset(&sigset) == -1) {
768 PLOG(FATAL) << "sigemptyset failed";
769 }
770 if (sigaddset(&sigset, SIGPIPE) == -1) {
771 PLOG(ERROR) << "sigaddset SIGPIPE failed";
772 }
773 // SIGQUIT is used to dump the runtime's state (including stack traces).
774 if (sigaddset(&sigset, SIGQUIT) == -1) {
775 PLOG(ERROR) << "sigaddset SIGQUIT failed";
776 }
777 // SIGUSR1 is used to initiate a heap dump.
778 if (sigaddset(&sigset, SIGUSR1) == -1) {
779 PLOG(ERROR) << "sigaddset SIGUSR1 failed";
780 }
781 CHECK_EQ(sigprocmask(SIG_BLOCK, &sigset, NULL), 0);
782}
783
Elliott Hughes5fe594f2011-09-08 12:33:17 -0700784void Runtime::AttachCurrentThread(const char* name, bool as_daemon) {
785 Thread::Attach(instance_, name, as_daemon);
Carl Shapiro61e019d2011-07-14 16:53:09 -0700786}
787
Elliott Hughesd92bec42011-09-02 17:04:36 -0700788void Runtime::DetachCurrentThread() {
Elliott Hughes038a8062011-09-18 14:12:41 -0700789 // TODO: check we're not calling DetachCurrentThread from a call stack that
790 // includes managed frames. (It's only valid if the stack is all-native.)
Elliott Hughes02b48d12011-09-07 17:15:51 -0700791 thread_list_->Unregister();
Carl Shapiro1fb86202011-06-27 17:43:13 -0700792}
793
Brian Carlstrome24fa612011-09-29 00:53:55 -0700794void Runtime::VisitRoots(Heap::RootVisitor* visitor, void* arg) const {
Elliott Hughesbfe487b2011-10-26 15:48:55 -0700795 Dbg::VisitRoots(visitor, arg);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700796 class_linker_->VisitRoots(visitor, arg);
797 intern_table_->VisitRoots(visitor, arg);
798 java_vm_->VisitRoots(visitor, arg);
799 thread_list_->VisitRoots(visitor, arg);
800 visitor(jni_stub_array_, arg);
801 visitor(abstract_method_error_stub_array_, arg);
Ian Rogers4f0d07c2011-10-06 23:38:47 -0700802 for (int i = 0; i < Runtime::kLastTrampolineMethodType; i++) {
803 visitor(resolution_stub_array_[i], arg);
804 }
805 for (int i = 0; i < Runtime::kLastCalleeSaveType; i++) {
806 visitor(callee_save_method_[i], arg);
807 }
Brian Carlstrome24fa612011-09-29 00:53:55 -0700808}
809
Ian Rogers169c9a72011-11-13 20:13:17 -0800810bool Runtime::HasJniDlsymLookupStub() const {
Brian Carlstrome24fa612011-09-29 00:53:55 -0700811 return jni_stub_array_ != NULL;
812}
813
Ian Rogers169c9a72011-11-13 20:13:17 -0800814ByteArray* Runtime::GetJniDlsymLookupStub() const {
Brian Carlstrome24fa612011-09-29 00:53:55 -0700815 CHECK(jni_stub_array_ != NULL);
816 return jni_stub_array_;
817}
818
Ian Rogers169c9a72011-11-13 20:13:17 -0800819void Runtime::SetJniDlsymLookupStub(ByteArray* jni_stub_array) {
Brian Carlstromaded5f72011-10-07 17:15:04 -0700820 CHECK(jni_stub_array != NULL) << " jni_stub_array=" << jni_stub_array;
821 CHECK(jni_stub_array_ == NULL || jni_stub_array_ == jni_stub_array)
822 << "jni_stub_array_=" << jni_stub_array_ << " jni_stub_array=" << jni_stub_array;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700823 jni_stub_array_ = jni_stub_array;
824}
825
826bool Runtime::HasAbstractMethodErrorStubArray() const {
827 return abstract_method_error_stub_array_ != NULL;
828}
829
830ByteArray* Runtime::GetAbstractMethodErrorStubArray() const {
831 CHECK(abstract_method_error_stub_array_ != NULL);
832 return abstract_method_error_stub_array_;
833}
834
835void Runtime::SetAbstractMethodErrorStubArray(ByteArray* abstract_method_error_stub_array) {
836 CHECK(abstract_method_error_stub_array != NULL);
837 CHECK(abstract_method_error_stub_array_ == NULL || abstract_method_error_stub_array_ == abstract_method_error_stub_array);
838 abstract_method_error_stub_array_ = abstract_method_error_stub_array;
839}
840
Ian Rogers1cb0a1d2011-10-06 15:24:35 -0700841
842Runtime::TrampolineType Runtime::GetTrampolineType(Method* method) {
843 if (method == NULL) {
844 return Runtime::kUnknownMethod;
845 } else if (method->IsStatic()) {
846 return Runtime::kStaticMethod;
847 } else {
848 return Runtime::kInstanceMethod;
849 }
Ian Rogersad25ac52011-10-04 19:13:33 -0700850}
851
Ian Rogers1cb0a1d2011-10-06 15:24:35 -0700852bool Runtime::HasResolutionStubArray(TrampolineType type) const {
853 return resolution_stub_array_[type] != NULL;
Ian Rogersad25ac52011-10-04 19:13:33 -0700854}
855
Ian Rogers1cb0a1d2011-10-06 15:24:35 -0700856ByteArray* Runtime::GetResolutionStubArray(TrampolineType type) const {
857 CHECK(HasResolutionStubArray(type));
Ian Rogers4f0d07c2011-10-06 23:38:47 -0700858 DCHECK_LT(static_cast<int>(type), static_cast<int>(kLastTrampolineMethodType));
Ian Rogers1cb0a1d2011-10-06 15:24:35 -0700859 return resolution_stub_array_[type];
860}
861
862void Runtime::SetResolutionStubArray(ByteArray* resolution_stub_array, TrampolineType type) {
Ian Rogersad25ac52011-10-04 19:13:33 -0700863 CHECK(resolution_stub_array != NULL);
Ian Rogers1cb0a1d2011-10-06 15:24:35 -0700864 CHECK(!HasResolutionStubArray(type) || resolution_stub_array_[type] == resolution_stub_array);
865 resolution_stub_array_[type] = resolution_stub_array;
Ian Rogersad25ac52011-10-04 19:13:33 -0700866}
867
Brian Carlstromae826982011-11-09 01:33:42 -0800868Method* Runtime::CreateCalleeSaveMethod(InstructionSet instruction_set, CalleeSaveType type) {
Ian Rogersff1ed472011-09-20 13:46:24 -0700869 Class* method_class = Method::GetMethodClass();
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700870 SirtRef<Method> method(down_cast<Method*>(method_class->AllocObject()));
Ian Rogersff1ed472011-09-20 13:46:24 -0700871 method->SetDeclaringClass(method_class);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800872 // TODO: use a special method for callee saves
873 method->SetMethodIndex(DexFile::kDexNoIndex16);
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700874 method->SetCode(NULL);
Brian Carlstromae826982011-11-09 01:33:42 -0800875 if ((instruction_set == kThumb2) || (instruction_set == kArm)) {
Ian Rogers4f0d07c2011-10-06 23:38:47 -0700876 uint32_t ref_spills = (1 << art::arm::R5) | (1 << art::arm::R6) | (1 << art::arm::R7) |
877 (1 << art::arm::R8) | (1 << art::arm::R10) | (1 << art::arm::R11);
878 uint32_t arg_spills = (1 << art::arm::R1) | (1 << art::arm::R2) | (1 << art::arm::R3);
879 uint32_t all_spills = (1 << art::arm::R4) | (1 << art::arm::R9);
880 uint32_t core_spills = ref_spills | (type == kRefsAndArgs ? arg_spills :0) |
881 (type == kSaveAll ? all_spills :0) | (1 << art::arm::LR);
882 uint32_t fp_all_spills = (1 << art::arm::S0) | (1 << art::arm::S1) | (1 << art::arm::S2) |
883 (1 << art::arm::S3) | (1 << art::arm::S4) | (1 << art::arm::S5) |
884 (1 << art::arm::S6) | (1 << art::arm::S7) | (1 << art::arm::S8) |
885 (1 << art::arm::S9) | (1 << art::arm::S10) | (1 << art::arm::S11) |
886 (1 << art::arm::S12) | (1 << art::arm::S13) | (1 << art::arm::S14) |
887 (1 << art::arm::S15) | (1 << art::arm::S16) | (1 << art::arm::S17) |
888 (1 << art::arm::S18) | (1 << art::arm::S19) | (1 << art::arm::S20) |
889 (1 << art::arm::S21) | (1 << art::arm::S22) | (1 << art::arm::S23) |
890 (1 << art::arm::S24) | (1 << art::arm::S25) | (1 << art::arm::S26) |
891 (1 << art::arm::S27) | (1 << art::arm::S28) | (1 << art::arm::S29) |
892 (1 << art::arm::S30) | (1 << art::arm::S31);
893 uint32_t fp_spills = type == kSaveAll ? fp_all_spills : 0;
894 size_t frame_size = RoundUp((__builtin_popcount(core_spills) /* gprs */ +
895 __builtin_popcount(fp_spills) /* fprs */ +
896 1 /* Method* */) * kPointerSize, kStackAlignment);
Ian Rogers15fdb8c2011-09-25 15:45:07 -0700897 method->SetFrameSizeInBytes(frame_size);
Ian Rogers4f0d07c2011-10-06 23:38:47 -0700898 method->SetCoreSpillMask(core_spills);
899 method->SetFpSpillMask(fp_spills);
Brian Carlstromae826982011-11-09 01:33:42 -0800900 } else if (instruction_set == kX86) {
Ian Rogersff1ed472011-09-20 13:46:24 -0700901 method->SetFrameSizeInBytes(32);
Ian Rogers4f0d07c2011-10-06 23:38:47 -0700902 method->SetCoreSpillMask((1 << art::x86::EBX) | (1 << art::x86::EBP) | (1 << art::x86::ESI) |
Ian Rogersff1ed472011-09-20 13:46:24 -0700903 (1 << art::x86::EDI));
904 method->SetFpSpillMask(0);
905 } else {
906 UNIMPLEMENTED(FATAL);
907 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700908 return method.get();
Ian Rogersff1ed472011-09-20 13:46:24 -0700909}
910
Ian Rogers4f0d07c2011-10-06 23:38:47 -0700911bool Runtime::HasCalleeSaveMethod(CalleeSaveType type) const {
912 return callee_save_method_[type] != NULL;
Brian Carlstrom1f870082011-08-23 16:02:11 -0700913}
914
Brian Carlstrome24fa612011-09-29 00:53:55 -0700915// Returns a special method that describes all callee saves being spilled to the stack.
Ian Rogers4f0d07c2011-10-06 23:38:47 -0700916Method* Runtime::GetCalleeSaveMethod(CalleeSaveType type) const {
917 CHECK(HasCalleeSaveMethod(type));
918 return callee_save_method_[type];
Brian Carlstrome24fa612011-09-29 00:53:55 -0700919}
920
Ian Rogers4f0d07c2011-10-06 23:38:47 -0700921void Runtime::SetCalleeSaveMethod(Method* method, CalleeSaveType type) {
922 DCHECK_LT(static_cast<int>(type), static_cast<int>(kLastCalleeSaveType));
923 callee_save_method_[type] = method;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700924}
925
jeffhao2692b572011-12-16 15:42:28 -0800926void Runtime::EnableMethodTracing(Trace* tracer) {
927 CHECK(!IsMethodTracingActive());
928 tracer_ = tracer;
929}
930
931void Runtime::DisableMethodTracing() {
932 CHECK(IsMethodTracingActive());
933 delete tracer_;
934 tracer_ = NULL;
935}
936
937bool Runtime::IsMethodTracingActive() const {
938 return (tracer_ != NULL);
939}
940
941Trace* Runtime::GetTracer() const {
942 CHECK(IsMethodTracingActive());
943 return tracer_;
944}
945
Carl Shapiro1fb86202011-06-27 17:43:13 -0700946} // namespace art