blob: 1e7b000b543eae100ba7708577a4ea3cd156e9bb [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 Carlstrombd86bcc2013-03-10 20:26:16 -070019// sys/mount.h has to come before linux/fs.h due to redefinition of MS_RDONLY, MS_BIND, etc
20#include <sys/mount.h>
21#include <linux/fs.h>
22
Brian Carlstromdbf05b72011-12-15 00:55:24 -080023#include <signal.h>
Elliott Hughesd06a6c72012-05-30 17:59:06 -070024#include <sys/syscall.h>
Brian Carlstromdbf05b72011-12-15 00:55:24 -080025
Elliott Hughesffe67362011-07-17 12:09:27 -070026#include <cstdio>
27#include <cstdlib>
Brian Carlstrom8a436592011-08-15 21:27:23 -070028#include <limits>
Carl Shapiro2ed144c2011-07-26 16:52:08 -070029#include <vector>
Elliott Hughesffe67362011-07-17 12:09:27 -070030
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080031#include "atomic.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070032#include "class_linker.h"
Elliott Hughes0f3c5532012-03-30 14:51:51 -070033#include "constants_arm.h"
jeffhao7fbee072012-08-24 17:56:54 -070034#include "constants_mips.h"
Elliott Hughes0f3c5532012-03-30 14:51:51 -070035#include "constants_x86.h"
Elliott Hughes3bb81562011-10-21 18:52:59 -070036#include "debugger.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080037#include "gc/card_table-inl.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070038#include "heap.h"
Brian Carlstrome24fa612011-09-29 00:53:55 -070039#include "image.h"
jeffhao725a9572012-11-13 18:20:12 -080040#include "instrumentation.h"
Elliott Hughescf4c6c42011-09-01 15:16:42 -070041#include "intern_table.h"
Jeff Hao5d917302013-02-27 17:57:33 -080042#include "invoke_arg_array_builder.h"
Elliott Hughesc5f7c912011-08-18 14:00:42 -070043#include "jni_internal.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080044#include "mirror/abstract_method-inl.h"
45#include "mirror/array.h"
46#include "mirror/class_loader.h"
47#include "mirror/field.h"
Ian Rogersc0fa3ad2013-02-05 00:11:55 -080048#include "mirror/field-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080049#include "mirror/throwable.h"
Elliott Hughes32d6e1e2011-10-11 14:47:44 -070050#include "monitor.h"
Brian Carlstrome24fa612011-09-29 00:53:55 -070051#include "oat_file.h"
Elliott Hughes726079d2011-10-07 18:43:44 -070052#include "ScopedLocalRef.h"
Ian Rogers00f7d0e2012-07-19 15:28:27 -070053#include "scoped_thread_state_change.h"
Elliott Hughese27955c2011-08-26 15:21:24 -070054#include "signal_catcher.h"
Elliott Hughes457005c2012-04-16 13:54:25 -070055#include "signal_set.h"
Ian Rogers1f539342012-10-03 21:09:42 -070056#include "sirt_ref.h"
Mathieu Chartier7469ebf2012-09-24 16:28:36 -070057#include "gc/space.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070058#include "thread.h"
Elliott Hughes8daa0922011-09-11 13:46:25 -070059#include "thread_list.h"
jeffhaob5e81852012-03-12 11:15:45 -070060#include "trace.h"
Elliott Hughes3bb81562011-10-21 18:52:59 -070061#include "UniquePtr.h"
Ian Rogers776ac1f2012-04-13 23:36:36 -070062#include "verifier/method_verifier.h"
Elliott Hugheseac76672012-05-24 21:56:51 -070063#include "well_known_classes.h"
Carl Shapiro61e019d2011-07-14 16:53:09 -070064
Elliott Hugheseac76672012-05-24 21:56:51 -070065#include "JniConstants.h" // Last to avoid LOG redefinition in ics-mr1-plus-art.
Elliott Hughes90a33692011-08-30 13:27:07 -070066
Carl Shapiro1fb86202011-06-27 17:43:13 -070067namespace art {
68
Carl Shapiro2ed144c2011-07-26 16:52:08 -070069Runtime* Runtime::instance_ = NULL;
70
Elliott Hughesdcc24742011-09-07 14:02:44 -070071Runtime::Runtime()
Elliott Hughesd9c67be2012-02-02 19:54:06 -080072 : is_compiler_(false),
73 is_zygote_(false),
Mathieu Chartier069387a2012-06-18 12:01:01 -070074 is_concurrent_gc_enabled_(true),
Elliott Hughes6cf23882012-06-15 15:42:07 -070075 default_stack_size_(0),
Elliott Hughesb3bd5f02012-03-08 21:05:27 -080076 heap_(NULL),
Elliott Hughesc33a32b2011-10-11 18:18:07 -070077 monitor_list_(NULL),
Elliott Hughesdcc24742011-09-07 14:02:44 -070078 thread_list_(NULL),
79 intern_table_(NULL),
80 class_linker_(NULL),
81 signal_catcher_(NULL),
82 java_vm_(NULL),
Elliott Hughes225f5a12012-06-11 11:23:48 -070083 pre_allocated_OutOfMemoryError_(NULL),
Brian Carlstrom16192862011-09-12 17:50:06 -070084 jni_stub_array_(NULL),
Brian Carlstrome24fa612011-09-29 00:53:55 -070085 abstract_method_error_stub_array_(NULL),
Ian Rogers19846512012-02-24 11:42:47 -080086 resolution_method_(NULL),
Ian Rogers7c3757f2012-02-15 17:18:53 -080087 system_class_loader_(NULL),
Ian Rogers120f1c72012-09-28 17:17:10 -070088 threads_being_born_(0),
Ian Rogersc604d732012-10-14 16:09:54 -070089 shutdown_cond_(new ConditionVariable("Runtime shutdown", *Locks::runtime_shutdown_lock_)),
Elliott Hughes6b355752012-01-13 16:49:08 -080090 shutting_down_(false),
Ian Rogers120f1c72012-09-28 17:17:10 -070091 shutting_down_started_(false),
Elliott Hughesdcc24742011-09-07 14:02:44 -070092 started_(false),
Mathieu Chartier7664f5c2012-06-08 18:15:32 -070093 finished_starting_(false),
Elliott Hughesdcc24742011-09-07 14:02:44 -070094 vfprintf_(NULL),
95 exit_(NULL),
Elliott Hughes9d5ccec2011-09-19 13:19:50 -070096 abort_(NULL),
jeffhao2692b572011-12-16 15:42:28 -080097 stats_enabled_(false),
Ian Rogers776ac1f2012-04-13 23:36:36 -070098 method_trace_(0),
99 method_trace_file_size_(0),
jeffhao725a9572012-11-13 18:20:12 -0800100 instrumentation_(NULL),
Ian Rogers365c1022012-06-22 15:05:28 -0700101 use_compile_time_class_path_(false),
102 main_thread_group_(NULL),
Brian Carlstrom265091e2013-01-30 14:08:26 -0800103 system_thread_group_(NULL) {
Ian Rogers4f0d07c2011-10-06 23:38:47 -0700104 for (int i = 0; i < Runtime::kLastTrampolineMethodType; i++) {
105 resolution_stub_array_[i] = NULL;
106 }
107 for (int i = 0; i < Runtime::kLastCalleeSaveType; i++) {
Elliott Hughes225f5a12012-06-11 11:23:48 -0700108 callee_save_methods_[i] = NULL;
Ian Rogers4f0d07c2011-10-06 23:38:47 -0700109 }
Elliott Hughesdcc24742011-09-07 14:02:44 -0700110}
111
Carl Shapiro61e019d2011-07-14 16:53:09 -0700112Runtime::~Runtime() {
Ian Rogers120f1c72012-09-28 17:17:10 -0700113 Thread* self = Thread::Current();
114 {
115 MutexLock mu(self, *Locks::runtime_shutdown_lock_);
116 shutting_down_started_ = true;
117 while (threads_being_born_ > 0) {
Ian Rogersc604d732012-10-14 16:09:54 -0700118 shutdown_cond_->Wait(self);
Ian Rogers120f1c72012-09-28 17:17:10 -0700119 }
120 shutting_down_ = true;
121 }
Elliott Hughes6b355752012-01-13 16:49:08 -0800122
jeffhaob5e81852012-03-12 11:15:45 -0700123 if (IsMethodTracingActive()) {
124 Trace::Shutdown();
125 }
jeffhao725a9572012-11-13 18:20:12 -0800126 delete instrumentation_;
jeffhaob5e81852012-03-12 11:15:45 -0700127
Mathieu Chartiera6399032012-06-11 18:49:50 -0700128 // Make sure to let the GC complete if it is running.
Ian Rogers120f1c72012-09-28 17:17:10 -0700129 heap_->WaitForConcurrentGcToComplete(self);
Mathieu Chartier35883cc2012-11-13 14:08:12 -0800130 heap_->DeleteThreadPool();
Mathieu Chartiera6399032012-06-11 18:49:50 -0700131
Elliott Hughes5fe594f2011-09-08 12:33:17 -0700132 // Make sure our internal threads are dead before we start tearing down things they're using.
Elliott Hughese52e49b2012-04-02 16:05:44 -0700133 Dbg::StopJdwp();
Elliott Hughes5fe594f2011-09-08 12:33:17 -0700134 delete signal_catcher_;
135
Elliott Hughes038a8062011-09-18 14:12:41 -0700136 // Make sure all other non-daemon threads have terminated, and all daemon threads are suspended.
Elliott Hughes93e74e82011-09-13 11:07:03 -0700137 delete thread_list_;
Elliott Hughesc33a32b2011-10-11 18:18:07 -0700138 delete monitor_list_;
Elliott Hughes93e74e82011-09-13 11:07:03 -0700139
Carl Shapiro61e019d2011-07-14 16:53:09 -0700140 delete class_linker_;
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800141 delete heap_;
Elliott Hughes0a1038b2012-06-14 16:24:17 -0700142 verifier::MethodVerifier::Shutdown();
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700143 delete intern_table_;
Elliott Hughesc5f7c912011-08-18 14:00:42 -0700144 delete java_vm_;
Elliott Hughesc1674ed2011-08-25 18:09:09 -0700145 Thread::Shutdown();
Elliott Hughes7c6169d2012-05-02 16:11:48 -0700146 QuasiAtomic::Shutdown();
147
Carl Shapiro4acf4642011-07-26 18:54:13 -0700148 // TODO: acquire a static mutex on Runtime to avoid racing.
Brian Carlstrom4a289ed2011-08-16 17:17:49 -0700149 CHECK(instance_ == NULL || instance_ == this);
Carl Shapiro4acf4642011-07-26 18:54:13 -0700150 instance_ = NULL;
Carl Shapiro61e019d2011-07-14 16:53:09 -0700151}
152
Elliott Hughese0918552011-10-28 17:18:29 -0700153struct AbortState {
154 void Dump(std::ostream& os) {
Elliott Hughescac6cc72011-11-03 20:31:21 -0700155 if (gAborting) {
156 os << "Runtime aborting --- recursively, so no thread-specific detail!\n";
157 return;
158 }
159 gAborting = true;
Elliott Hughese0918552011-10-28 17:18:29 -0700160 os << "Runtime aborting...\n";
Elliott Hughes6c7d2442012-02-01 18:40:47 -0800161 if (Runtime::Current() == NULL) {
162 os << "(Runtime does not yet exist!)\n";
163 return;
164 }
Elliott Hughese0918552011-10-28 17:18:29 -0700165 Thread* self = Thread::Current();
166 if (self == NULL) {
167 os << "(Aborting thread was not attached to runtime!)\n";
168 } else {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700169 // TODO: we're aborting and the ScopedObjectAccess may attempt to acquire the mutator_lock_
170 // which may block indefinitely if there's a misbehaving thread holding it exclusively.
171 // The code below should be made robust to this.
172 ScopedObjectAccess soa(self);
Ian Rogers2f7f9b62012-10-10 18:24:05 -0700173 os << "Aborting thread:\n";
Elliott Hughes899e7892012-01-24 14:57:32 -0800174 self->Dump(os);
175 if (self->IsExceptionPending()) {
176 os << "Pending " << PrettyTypeOf(self->GetException()) << " on thread:\n"
177 << self->GetException()->Dump();
178 }
Elliott Hughese0918552011-10-28 17:18:29 -0700179 }
Ian Rogers2f7f9b62012-10-10 18:24:05 -0700180 DumpAllThreads(os, self);
181 }
182
183 void DumpAllThreads(std::ostream& os, Thread* self) NO_THREAD_SAFETY_ANALYSIS {
184 bool tll_already_held = Locks::thread_list_lock_->IsExclusiveHeld(self);
185 bool ml_already_held = Locks::mutator_lock_->IsSharedHeld(self);
Ian Rogersfbd22912012-10-12 14:21:10 -0700186 if (!tll_already_held || !ml_already_held) {
187 os << "Dumping all threads without appropriate locks held:"
188 << (!tll_already_held ? " thread list lock" : "")
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700189 << (!ml_already_held ? " mutator lock" : "")
190 << "\n";
Ian Rogers2f7f9b62012-10-10 18:24:05 -0700191 }
Ian Rogersfbd22912012-10-12 14:21:10 -0700192 os << "All threads:\n";
193 Runtime::Current()->GetThreadList()->DumpLocked(os);
Elliott Hughese0918552011-10-28 17:18:29 -0700194 }
195};
196
Elliott Hughes8593fdb2012-04-21 20:53:44 -0700197void Runtime::Abort() {
Brian Carlstrom81b88712012-11-05 19:21:30 -0800198 gAborting = true; // set before taking any locks
199
Elliott Hughes131aef82012-01-27 11:53:35 -0800200 // Ensure that we don't have multiple threads trying to abort at once,
201 // which would result in significantly worse diagnostics.
Ian Rogers50b35e22012-10-04 10:09:15 -0700202 MutexLock mu(Thread::Current(), *Locks::abort_lock_);
Elliott Hughes131aef82012-01-27 11:53:35 -0800203
Elliott Hughesffe67362011-07-17 12:09:27 -0700204 // Get any pending output out of the way.
205 fflush(NULL);
206
207 // Many people have difficulty distinguish aborts from crashes,
208 // so be explicit.
Elliott Hughese0918552011-10-28 17:18:29 -0700209 AbortState state;
Elliott Hughes9ee5f9c2012-02-03 18:33:16 -0800210 LOG(INTERNAL_FATAL) << Dumpable<AbortState>(state);
Elliott Hughesffe67362011-07-17 12:09:27 -0700211
Elliott Hughes8593fdb2012-04-21 20:53:44 -0700212 // Call the abort hook if we have one.
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700213 if (Runtime::Current() != NULL && Runtime::Current()->abort_ != NULL) {
Elliott Hughes6c1c69e2012-04-23 16:12:51 -0700214 LOG(INTERNAL_FATAL) << "Calling abort hook...";
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700215 Runtime::Current()->abort_();
216 // notreached
Elliott Hughes6c1c69e2012-04-23 16:12:51 -0700217 LOG(INTERNAL_FATAL) << "Unexpectedly returned from abort hook!";
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700218 }
219
Elliott Hughesd06a6c72012-05-30 17:59:06 -0700220#if defined(__BIONIC__)
Elliott Hughes6c1c69e2012-04-23 16:12:51 -0700221 // TODO: finish merging patches to fix abort(3) in bionic, then lose this!
222 // Bionic doesn't implement POSIX semantics for abort(3) in a multi-threaded
223 // process, so if we call abort(3) on a device, all threads in the process
Carl Shapiro69759ea2011-07-21 18:13:35 -0700224 // receive SIGABRT. debuggerd dumps the stack trace of the main
225 // thread, whether or not that was the thread that failed. By
226 // stuffing a value into a bogus address, we cause a segmentation
Elliott Hughesffe67362011-07-17 12:09:27 -0700227 // fault in the current thread, and get a useful log from debuggerd.
Elliott Hughes81ff3182012-03-23 20:35:56 -0700228 // We can also trivially tell the difference between a crash and
Elliott Hughesffe67362011-07-17 12:09:27 -0700229 // a deliberate abort by looking at the fault address.
230 *reinterpret_cast<char*>(0xdeadd00d) = 38;
Elliott Hughesd06a6c72012-05-30 17:59:06 -0700231#elif defined(__APPLE__)
232 // TODO: check that this actually gives good stack traces on the Mac!
233 pthread_kill(pthread_self(), SIGABRT);
234#else
235 // TODO: we ought to be able to use pthread_kill(3) here (or abort(3),
236 // which POSIX defines in terms of raise(3), which POSIX defines in terms
237 // of pthread_kill(3)). On Linux, though, libcorkscrew can't unwind through
238 // libpthread, which means the stacks we dump would be useless. Calling
239 // tgkill(2) directly avoids that.
240 syscall(__NR_tgkill, getpid(), GetTid(), SIGABRT);
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800241 // TODO: LLVM installs it's own SIGABRT handler so exit to be safe... Can we disable that?
242 exit(1);
Elliott Hughesd06a6c72012-05-30 17:59:06 -0700243#endif
Elliott Hughesffe67362011-07-17 12:09:27 -0700244 // notreached
245}
246
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700247bool Runtime::PreZygoteFork() {
248 heap_->PreZygoteFork();
249 return true;
250}
251
Elliott Hughesbf86d042011-08-31 17:53:14 -0700252void Runtime::CallExitHook(jint status) {
253 if (exit_ != NULL) {
Elliott Hughes34e06962012-04-09 13:55:55 -0700254 ScopedThreadStateChange tsc(Thread::Current(), kNative);
Elliott Hughesbf86d042011-08-31 17:53:14 -0700255 exit_(status);
256 LOG(WARNING) << "Exit hook returned instead of exiting!";
257 }
258}
259
Brian Carlstrom8a436592011-08-15 21:27:23 -0700260// Parse a string of the form /[0-9]+[kKmMgG]?/, which is used to specify
261// memory sizes. [kK] indicates kilobytes, [mM] megabytes, and
262// [gG] gigabytes.
263//
264// "s" should point just past the "-Xm?" part of the string.
Brian Carlstrom8a436592011-08-15 21:27:23 -0700265// "div" specifies a divisor, e.g. 1024 if the value must be a multiple
266// of 1024.
267//
268// The spec says the -Xmx and -Xms options must be multiples of 1024. It
269// doesn't say anything about -Xss.
270//
271// Returns 0 (a useless size) if "s" is malformed or specifies a low or
272// non-evenly-divisible value.
273//
Elliott Hughesc1f143d2011-12-01 17:31:10 -0800274size_t ParseMemoryOption(const char* s, size_t div) {
Brian Carlstrom8a436592011-08-15 21:27:23 -0700275 // strtoul accepts a leading [+-], which we don't want,
276 // so make sure our string starts with a decimal digit.
277 if (isdigit(*s)) {
Elliott Hughes398f64b2012-03-26 18:05:48 -0700278 char* s2;
279 size_t val = strtoul(s, &s2, 10);
Brian Carlstrom8a436592011-08-15 21:27:23 -0700280 if (s2 != s) {
281 // s2 should be pointing just after the number.
282 // If this is the end of the string, the user
283 // has specified a number of bytes. Otherwise,
284 // there should be exactly one more character
285 // that specifies a multiplier.
286 if (*s2 != '\0') {
Brian Carlstromf734cf52011-08-17 16:28:14 -0700287 // The remainder of the string is either a single multiplier
288 // character, or nothing to indicate that the value is in
289 // bytes.
290 char c = *s2++;
291 if (*s2 == '\0') {
292 size_t mul;
293 if (c == '\0') {
294 mul = 1;
295 } else if (c == 'k' || c == 'K') {
296 mul = KB;
297 } else if (c == 'm' || c == 'M') {
298 mul = MB;
299 } else if (c == 'g' || c == 'G') {
300 mul = GB;
Brian Carlstrom8a436592011-08-15 21:27:23 -0700301 } else {
Brian Carlstromf734cf52011-08-17 16:28:14 -0700302 // Unknown multiplier character.
Brian Carlstrom8a436592011-08-15 21:27:23 -0700303 return 0;
304 }
Brian Carlstromf734cf52011-08-17 16:28:14 -0700305
306 if (val <= std::numeric_limits<size_t>::max() / mul) {
307 val *= mul;
308 } else {
309 // Clamp to a multiple of 1024.
310 val = std::numeric_limits<size_t>::max() & ~(1024-1);
311 }
312 } else {
313 // There's more than one character after the numeric part.
314 return 0;
315 }
Brian Carlstrom8a436592011-08-15 21:27:23 -0700316 }
317 // The man page says that a -Xm value must be a multiple of 1024.
318 if (val % div == 0) {
319 return val;
320 }
Carl Shapirofc322c72011-07-27 00:20:01 -0700321 }
322 }
Brian Carlstrom8a436592011-08-15 21:27:23 -0700323 return 0;
Carl Shapirofc322c72011-07-27 00:20:01 -0700324}
325
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800326size_t ParseIntegerOrDie(const std::string& s) {
327 std::string::size_type colon = s.find(':');
328 if (colon == std::string::npos) {
Elliott Hughesbb1e8f02011-10-18 14:14:25 -0700329 LOG(FATAL) << "Missing integer: " << s;
330 }
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800331 const char* begin = &s[colon + 1];
Elliott Hughesbb1e8f02011-10-18 14:14:25 -0700332 char* end;
333 size_t result = strtoul(begin, &end, 10);
334 if (begin == end || *end != '\0') {
335 LOG(FATAL) << "Failed to parse integer in: " << s;
336 }
337 return result;
338}
339
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700340Runtime::ParsedOptions* Runtime::ParsedOptions::Create(const Options& options, bool ignore_unrecognized) {
Elliott Hughes90a33692011-08-30 13:27:07 -0700341 UniquePtr<ParsedOptions> parsed(new ParsedOptions());
Brian Carlstroma004aa92012-02-08 18:05:09 -0800342 const char* boot_class_path_string = getenv("BOOTCLASSPATH");
343 if (boot_class_path_string != NULL) {
344 parsed->boot_class_path_string_ = boot_class_path_string;
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700345 }
Brian Carlstroma004aa92012-02-08 18:05:09 -0800346 const char* class_path_string = getenv("CLASSPATH");
347 if (class_path_string != NULL) {
348 parsed->class_path_string_ = class_path_string;
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700349 }
Elliott Hughes67d92002012-03-26 15:08:51 -0700350 // -Xcheck:jni is off by default for regular builds but on by default in debug builds.
351 parsed->check_jni_ = kIsDebugBuild;
Elliott Hughes85d15452011-09-16 17:33:01 -0700352
Mathieu Chartier0051be62012-10-12 17:47:11 -0700353 parsed->heap_initial_size_ = Heap::kDefaultInitialSize;
354 parsed->heap_maximum_size_ = Heap::kDefaultMaximumSize;
355 parsed->heap_min_free_ = Heap::kDefaultMinFree;
356 parsed->heap_max_free_ = Heap::kDefaultMaxFree;
357 parsed->heap_target_utilization_ = Heap::kDefaultTargetUtilization;
Elliott Hughes6cf23882012-06-15 15:42:07 -0700358 parsed->heap_growth_limit_ = 0; // 0 means no growth limit.
359 parsed->stack_size_ = 0; // 0 means default.
Brian Carlstromf734cf52011-08-17 16:28:14 -0700360
Elliott Hughesd9c67be2012-02-02 19:54:06 -0800361 parsed->is_compiler_ = false;
Elliott Hughes9ca7a1f2011-10-11 14:29:52 -0700362 parsed->is_zygote_ = false;
Ian Rogers50ffee22012-11-20 11:47:44 -0800363 parsed->interpreter_only_ = false;
Mathieu Chartier069387a2012-06-18 12:01:01 -0700364 parsed->is_concurrent_gc_enabled_ = true;
Elliott Hughes9ca7a1f2011-10-11 14:29:52 -0700365
Elliott Hughesbb1e8f02011-10-18 14:14:25 -0700366 parsed->jni_globals_max_ = 0;
Elliott Hughesfc861622011-10-17 17:57:47 -0700367 parsed->lock_profiling_threshold_ = 0;
368 parsed->hook_is_sensitive_thread_ = NULL;
369
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700370 parsed->hook_vfprintf_ = vfprintf;
371 parsed->hook_exit_ = exit;
Elliott Hughes6c1c69e2012-04-23 16:12:51 -0700372 parsed->hook_abort_ = NULL; // We don't call abort(3) by default; see Runtime::Abort.
Brian Carlstrom8a436592011-08-15 21:27:23 -0700373
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800374// gLogVerbosity.class_linker = true; // TODO: don't check this in!
375// gLogVerbosity.compiler = true; // TODO: don't check this in!
376// gLogVerbosity.heap = true; // TODO: don't check this in!
377// gLogVerbosity.gc = true; // TODO: don't check this in!
378// gLogVerbosity.jdwp = true; // TODO: don't check this in!
379// gLogVerbosity.jni = true; // TODO: don't check this in!
380// gLogVerbosity.monitor = true; // TODO: don't check this in!
381// gLogVerbosity.startup = true; // TODO: don't check this in!
382// gLogVerbosity.third_party_jni = true; // TODO: don't check this in!
383// gLogVerbosity.threads = true; // TODO: don't check this in!
384
jeffhaob5e81852012-03-12 11:15:45 -0700385 parsed->method_trace_ = false;
386 parsed->method_trace_file_ = "/data/method-trace-file.bin";
387 parsed->method_trace_file_size_ = 10 * MB;
388
Brian Carlstrom8a436592011-08-15 21:27:23 -0700389 for (size_t i = 0; i < options.size(); ++i) {
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800390 const std::string option(options[i].first);
Brian Carlstrom0796af02011-10-12 14:31:45 -0700391 if (true && options[0].first == "-Xzygote") {
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700392 LOG(INFO) << "option[" << i << "]=" << option;
393 }
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800394 if (StartsWith(option, "-Xbootclasspath:")) {
Brian Carlstroma004aa92012-02-08 18:05:09 -0800395 parsed->boot_class_path_string_ = option.substr(strlen("-Xbootclasspath:")).data();
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700396 } else if (option == "-classpath" || option == "-cp") {
397 // TODO: support -Djava.class.path
398 i++;
399 if (i == options.size()) {
400 // TODO: usage
401 LOG(FATAL) << "Missing required class path value for " << option;
402 return NULL;
403 }
Brian Carlstroma004aa92012-02-08 18:05:09 -0800404 const StringPiece& value = options[i].first;
405 parsed->class_path_string_ = value.data();
406 } else if (option == "bootclasspath") {
407 parsed->boot_class_path_
408 = reinterpret_cast<const std::vector<const DexFile*>*>(options[i].second);
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800409 } else if (StartsWith(option, "-Ximage:")) {
Brian Carlstroma004aa92012-02-08 18:05:09 -0800410 parsed->image_ = option.substr(strlen("-Ximage:")).data();
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800411 } else if (StartsWith(option, "-Xcheck:jni")) {
Elliott Hughes515a5bc2011-08-17 11:08:34 -0700412 parsed->check_jni_ = true;
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800413 } else if (StartsWith(option, "-Xrunjdwp:") || StartsWith(option, "-agentlib:jdwp=")) {
414 std::string tail(option.substr(option[1] == 'X' ? 10 : 15));
Elliott Hughes3bb81562011-10-21 18:52:59 -0700415 if (tail == "help" || !Dbg::ParseJdwpOptions(tail)) {
416 LOG(FATAL) << "Example: -Xrunjdwp:transport=dt_socket,address=8000,server=y\n"
417 << "Example: -Xrunjdwp:transport=dt_socket,address=localhost:6500,server=n";
418 return NULL;
419 }
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800420 } else if (StartsWith(option, "-Xms")) {
421 size_t size = ParseMemoryOption(option.substr(strlen("-Xms")).c_str(), 1024);
Brian Carlstromf734cf52011-08-17 16:28:14 -0700422 if (size == 0) {
423 if (ignore_unrecognized) {
424 continue;
425 }
Brian Carlstrom4a289ed2011-08-16 17:17:49 -0700426 // TODO: usage
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700427 LOG(FATAL) << "Failed to parse " << option;
Brian Carlstromf734cf52011-08-17 16:28:14 -0700428 return NULL;
429 }
430 parsed->heap_initial_size_ = size;
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800431 } else if (StartsWith(option, "-Xmx")) {
432 size_t size = ParseMemoryOption(option.substr(strlen("-Xmx")).c_str(), 1024);
Brian Carlstromf734cf52011-08-17 16:28:14 -0700433 if (size == 0) {
434 if (ignore_unrecognized) {
435 continue;
436 }
Brian Carlstrom4a289ed2011-08-16 17:17:49 -0700437 // TODO: usage
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700438 LOG(FATAL) << "Failed to parse " << option;
Brian Carlstromf734cf52011-08-17 16:28:14 -0700439 return NULL;
440 }
441 parsed->heap_maximum_size_ = size;
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800442 } else if (StartsWith(option, "-XX:HeapGrowthLimit=")) {
443 size_t size = ParseMemoryOption(option.substr(strlen("-XX:HeapGrowthLimit=")).c_str(), 1024);
jeffhaoc1160702011-10-27 15:48:45 -0700444 if (size == 0) {
445 if (ignore_unrecognized) {
446 continue;
447 }
448 // TODO: usage
449 LOG(FATAL) << "Failed to parse " << option;
450 return NULL;
451 }
452 parsed->heap_growth_limit_ = size;
Mathieu Chartier0051be62012-10-12 17:47:11 -0700453 } else if (StartsWith(option, "-XX:HeapMinFree=")) {
454 size_t size = ParseMemoryOption(option.substr(strlen("-XX:HeapMinFree=")).c_str(), 1024);
455 if (size == 0) {
456 if (ignore_unrecognized) {
457 continue;
458 }
459 // TODO: usage
460 LOG(FATAL) << "Failed to parse " << option;
461 return NULL;
462 }
463 parsed->heap_min_free_ = size;
464 } else if (StartsWith(option, "-XX:HeapMaxFree=")) {
465 size_t size = ParseMemoryOption(option.substr(strlen("-XX:HeapMaxFree=")).c_str(), 1024);
466 if (size == 0) {
467 if (ignore_unrecognized) {
468 continue;
469 }
470 // TODO: usage
471 LOG(FATAL) << "Failed to parse " << option;
472 return NULL;
473 }
474 parsed->heap_max_free_ = size;
475 } else if (StartsWith(option, "-XX:HeapTargetUtilization=")) {
476 std::istringstream iss(option.substr(strlen("-XX:HeapTargetUtilization=")));
477 double value;
478 iss >> value;
479 // Ensure that we have a value, there was no cruft after it and it satisfies a sensible range.
Brian Carlstrombd86bcc2013-03-10 20:26:16 -0700480 const bool sane_val = iss.eof() && (value >= 0.1) && (value <= 0.9);
Mathieu Chartier0051be62012-10-12 17:47:11 -0700481 if (!sane_val) {
482 if (ignore_unrecognized) {
483 continue;
484 }
485 LOG(FATAL) << "Invalid option '" << option << "'";
486 return NULL;
487 }
488 parsed->heap_target_utilization_ = value;
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800489 } else if (StartsWith(option, "-Xss")) {
490 size_t size = ParseMemoryOption(option.substr(strlen("-Xss")).c_str(), 1);
Brian Carlstromf734cf52011-08-17 16:28:14 -0700491 if (size == 0) {
492 if (ignore_unrecognized) {
493 continue;
494 }
Brian Carlstrom4a289ed2011-08-16 17:17:49 -0700495 // TODO: usage
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700496 LOG(FATAL) << "Failed to parse " << option;
Brian Carlstromf734cf52011-08-17 16:28:14 -0700497 return NULL;
498 }
499 parsed->stack_size_ = size;
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800500 } else if (StartsWith(option, "-D")) {
501 parsed->properties_.push_back(option.substr(strlen("-D")));
502 } else if (StartsWith(option, "-Xjnitrace:")) {
503 parsed->jni_trace_ = option.substr(strlen("-Xjnitrace:"));
Brian Carlstrom5de8fe52011-10-16 14:10:09 -0700504 } else if (option == "compiler") {
Elliott Hughesd9c67be2012-02-02 19:54:06 -0800505 parsed->is_compiler_ = true;
Elliott Hughes9ca7a1f2011-10-11 14:29:52 -0700506 } else if (option == "-Xzygote") {
507 parsed->is_zygote_ = true;
Ian Rogers50ffee22012-11-20 11:47:44 -0800508 } else if (option == "-Xint") {
509 parsed->interpreter_only_ = true;
Mathieu Chartier069387a2012-06-18 12:01:01 -0700510 } else if (StartsWith(option, "-Xgc:")) {
511 std::vector<std::string> gc_options;
512 Split(option.substr(strlen("-Xgc:")), ',', gc_options);
513 for (size_t i = 0; i < gc_options.size(); ++i) {
514 if (gc_options[i] == "noconcurrent") {
515 parsed->is_concurrent_gc_enabled_ = false;
516 } else if (gc_options[i] == "concurrent") {
517 parsed->is_concurrent_gc_enabled_ = true;
518 } else {
519 LOG(WARNING) << "Ignoring unknown -Xgc option: " << gc_options[i];
520 }
521 }
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800522 } else if (StartsWith(option, "-verbose:")) {
Elliott Hughes0af55432011-08-17 18:37:28 -0700523 std::vector<std::string> verbose_options;
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800524 Split(option.substr(strlen("-verbose:")), ',', verbose_options);
Elliott Hughes0af55432011-08-17 18:37:28 -0700525 for (size_t i = 0; i < verbose_options.size(); ++i) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800526 if (verbose_options[i] == "class") {
527 gLogVerbosity.class_linker = true;
528 } else if (verbose_options[i] == "compiler") {
529 gLogVerbosity.compiler = true;
530 } else if (verbose_options[i] == "heap") {
531 gLogVerbosity.heap = true;
532 } else if (verbose_options[i] == "gc") {
533 gLogVerbosity.gc = true;
534 } else if (verbose_options[i] == "jdwp") {
535 gLogVerbosity.jdwp = true;
536 } else if (verbose_options[i] == "jni") {
537 gLogVerbosity.jni = true;
538 } else if (verbose_options[i] == "monitor") {
539 gLogVerbosity.monitor = true;
540 } else if (verbose_options[i] == "startup") {
541 gLogVerbosity.startup = true;
542 } else if (verbose_options[i] == "third-party-jni") {
543 gLogVerbosity.third_party_jni = true;
544 } else if (verbose_options[i] == "threads") {
545 gLogVerbosity.threads = true;
546 } else {
547 LOG(WARNING) << "Ignoring unknown -verbose option: " << verbose_options[i];
548 }
Elliott Hughes0af55432011-08-17 18:37:28 -0700549 }
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800550 } else if (StartsWith(option, "-Xjnigreflimit:")) {
Elliott Hughesbb1e8f02011-10-18 14:14:25 -0700551 parsed->jni_globals_max_ = ParseIntegerOrDie(option);
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800552 } else if (StartsWith(option, "-Xlockprofthreshold:")) {
Elliott Hughesbb1e8f02011-10-18 14:14:25 -0700553 parsed->lock_profiling_threshold_ = ParseIntegerOrDie(option);
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800554 } else if (StartsWith(option, "-Xstacktracefile:")) {
Elliott Hughes206c20d2012-06-28 11:05:37 -0700555 parsed->stack_trace_file_ = option.substr(strlen("-Xstacktracefile:"));
Elliott Hughesfc861622011-10-17 17:57:47 -0700556 } else if (option == "sensitiveThread") {
Ian Rogers1b09b092012-08-20 15:35:52 -0700557 parsed->hook_is_sensitive_thread_ = reinterpret_cast<bool (*)()>(const_cast<void*>(options[i].second));
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700558 } else if (option == "vfprintf") {
Ian Rogers1b09b092012-08-20 15:35:52 -0700559 parsed->hook_vfprintf_ =
560 reinterpret_cast<int (*)(FILE *, const char*, va_list)>(const_cast<void*>(options[i].second));
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700561 } else if (option == "exit") {
Ian Rogers1b09b092012-08-20 15:35:52 -0700562 parsed->hook_exit_ = reinterpret_cast<void(*)(jint)>(const_cast<void*>(options[i].second));
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700563 } else if (option == "abort") {
Ian Rogers1b09b092012-08-20 15:35:52 -0700564 parsed->hook_abort_ = reinterpret_cast<void(*)()>(const_cast<void*>(options[i].second));
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700565 } else if (option == "host-prefix") {
566 parsed->host_prefix_ = reinterpret_cast<const char*>(options[i].second);
Elliott Hughesb3e66df2012-01-12 14:49:18 -0800567 } else if (option == "-Xgenregmap" || option == "-Xgc:precise") {
568 // We silently ignore these for backwards compatibility.
jeffhaob5e81852012-03-12 11:15:45 -0700569 } else if (option == "-Xmethod-trace") {
570 parsed->method_trace_ = true;
571 } else if (StartsWith(option, "-Xmethod-trace-file:")) {
572 parsed->method_trace_file_ = option.substr(strlen("-Xmethod-trace-file:"));
573 } else if (StartsWith(option, "-Xmethod-trace-file-size:")) {
574 parsed->method_trace_file_size_ = ParseIntegerOrDie(option);
Elliott Hughese119a362012-05-22 17:37:06 -0700575 } else if (option == "-Xprofile:threadcpuclock") {
576 Trace::SetDefaultClockSource(kProfilerClockSourceThreadCpu);
577 } else if (option == "-Xprofile:wallclock") {
578 Trace::SetDefaultClockSource(kProfilerClockSourceWall);
579 } else if (option == "-Xprofile:dualclock") {
580 Trace::SetDefaultClockSource(kProfilerClockSourceDual);
Brian Carlstrom8a436592011-08-15 21:27:23 -0700581 } else {
582 if (!ignore_unrecognized) {
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700583 // TODO: print usage via vfprintf
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700584 LOG(ERROR) << "Unrecognized option " << option;
585 // TODO: this should exit, but for now tolerate unknown options
586 //return NULL;
Brian Carlstrom8a436592011-08-15 21:27:23 -0700587 }
588 }
589 }
590
Brian Carlstrom223f20f2012-02-04 23:06:55 -0800591 if (!parsed->is_compiler_ && parsed->image_.empty()) {
592 parsed->image_ += GetAndroidRoot();
593 parsed->image_ += "/framework/boot.art";
Brian Carlstrom5de8fe52011-10-16 14:10:09 -0700594 }
jeffhaoc1160702011-10-27 15:48:45 -0700595 if (parsed->heap_growth_limit_ == 0) {
596 parsed->heap_growth_limit_ = parsed->heap_maximum_size_;
597 }
Brian Carlstrom5de8fe52011-10-16 14:10:09 -0700598
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700599 return parsed.release();
Brian Carlstrom8a436592011-08-15 21:27:23 -0700600}
601
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700602bool Runtime::Create(const Options& options, bool ignore_unrecognized) {
Carl Shapiro2ed144c2011-07-26 16:52:08 -0700603 // TODO: acquire a static mutex on Runtime to avoid racing.
604 if (Runtime::instance_ != NULL) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700605 return false;
Carl Shapiro2ed144c2011-07-26 16:52:08 -0700606 }
Ian Rogersb726dcb2012-09-05 08:57:23 -0700607 Locks::Init();
Elliott Hughesdcc24742011-09-07 14:02:44 -0700608 instance_ = new Runtime;
609 if (!instance_->Init(options, ignore_unrecognized)) {
610 delete instance_;
611 instance_ = NULL;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700612 return false;
Carl Shapiro61e019d2011-07-14 16:53:09 -0700613 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700614 return true;
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700615}
Elliott Hughes0af55432011-08-17 18:37:28 -0700616
Ian Rogers365c1022012-06-22 15:05:28 -0700617static void CreateSystemClassLoader() {
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800618 if (Runtime::Current()->UseCompileTimeClassPath()) {
Brian Carlstromaded5f72011-10-07 17:15:04 -0700619 return;
620 }
621
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700622 ScopedObjectAccess soa(Thread::Current());
Brian Carlstromaded5f72011-10-07 17:15:04 -0700623
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800624 mirror::Class* class_loader_class =
625 soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_ClassLoader);
Ian Rogers365c1022012-06-22 15:05:28 -0700626 CHECK(Runtime::Current()->GetClassLinker()->EnsureInitialized(class_loader_class, true, true));
Brian Carlstromaded5f72011-10-07 17:15:04 -0700627
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800628 mirror::AbstractMethod* getSystemClassLoader =
629 class_loader_class->FindDirectMethod("getSystemClassLoader", "()Ljava/lang/ClassLoader;");
Brian Carlstromdf143242011-10-10 18:05:34 -0700630 CHECK(getSystemClassLoader != NULL);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700631
Jeff Hao5d917302013-02-27 17:57:33 -0800632 JValue result;
633 JValue float_result;
634 ArgArray arg_array(NULL, 0);
635 InvokeWithArgArray(soa, getSystemClassLoader, &arg_array, &result, &float_result);
636 mirror::ClassLoader* class_loader = down_cast<mirror::ClassLoader*>(result.GetL());
Ian Rogers365c1022012-06-22 15:05:28 -0700637 CHECK(class_loader != NULL);
Jesse Wilson1b2b2f22011-11-22 11:47:44 -0500638
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700639 soa.Self()->SetClassLoaderOverride(class_loader);
Ian Rogers365c1022012-06-22 15:05:28 -0700640
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800641 mirror::Class* thread_class = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_Thread);
Ian Rogers365c1022012-06-22 15:05:28 -0700642 CHECK(Runtime::Current()->GetClassLinker()->EnsureInitialized(thread_class, true, true));
643
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800644 mirror::Field* contextClassLoader = thread_class->FindDeclaredInstanceField("contextClassLoader",
645 "Ljava/lang/ClassLoader;");
Jesse Wilson1b2b2f22011-11-22 11:47:44 -0500646 CHECK(contextClassLoader != NULL);
Ian Rogers365c1022012-06-22 15:05:28 -0700647
Ian Rogerscfaa4552012-11-26 21:00:08 -0800648 contextClassLoader->SetObject(soa.Self()->GetPeer(), class_loader);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700649}
650
Brian Carlstrombd86bcc2013-03-10 20:26:16 -0700651bool Runtime::Start() {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800652 VLOG(startup) << "Runtime::Start entering";
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700653
654 CHECK(host_prefix_.empty()) << host_prefix_;
655
Elliott Hughes225f5a12012-06-11 11:23:48 -0700656 // Pre-allocate an OutOfMemoryError for the double-OOME case.
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700657 Thread* self = Thread::Current();
Elliott Hughes225f5a12012-06-11 11:23:48 -0700658 self->ThrowNewException("Ljava/lang/OutOfMemoryError;",
659 "OutOfMemoryError thrown while trying to throw OutOfMemoryError; no stack available");
660 pre_allocated_OutOfMemoryError_ = self->GetException();
661 self->ClearException();
Brian Carlstromf28bc5b2011-10-26 01:15:03 -0700662
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700663 // Restore main thread state to kNative as expected by native code.
664 self->TransitionFromRunnableToSuspended(kNative);
665
Brian Carlstrom5d40f182011-09-26 22:29:18 -0700666 started_ = true;
667
Brian Carlstromae826982011-11-09 01:33:42 -0800668 // InitNativeMethods needs to be after started_ so that the classes
669 // it touches will have methods linked to the oat file if necessary.
670 InitNativeMethods();
671
Ian Rogers365c1022012-06-22 15:05:28 -0700672 // Initialize well known thread group values that may be accessed threads while attaching.
673 InitThreadGroups(self);
674
Jesse Wilson9a6bae82011-11-14 14:57:30 -0500675 Thread::FinishStartup();
676
Brian Carlstrombd86bcc2013-03-10 20:26:16 -0700677 if (is_zygote_) {
678 if (!InitZygote()) {
679 return false;
680 }
681 } else {
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700682 DidForkFromZygote();
683 }
Elliott Hughes9ca7a1f2011-10-11 14:29:52 -0700684
Elliott Hughes85d15452011-09-16 17:33:01 -0700685 StartDaemonThreads();
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700686
Brian Carlstromaded5f72011-10-07 17:15:04 -0700687 CreateSystemClassLoader();
688
Elliott Hughes225f5a12012-06-11 11:23:48 -0700689 self->GetJniEnv()->locals.AssertEmpty();
Elliott Hughes726079d2011-10-07 18:43:44 -0700690
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800691 VLOG(startup) << "Runtime::Start exiting";
Mathieu Chartier7664f5c2012-06-08 18:15:32 -0700692
693 finished_starting_ = true;
Brian Carlstrombd86bcc2013-03-10 20:26:16 -0700694
695 return true;
Elliott Hughes85d15452011-09-16 17:33:01 -0700696}
697
Ian Rogers120f1c72012-09-28 17:17:10 -0700698void Runtime::EndThreadBirth() EXCLUSIVE_LOCKS_REQUIRED(Locks::runtime_shutdown_lock_) {
699 DCHECK_GT(threads_being_born_, 0U);
700 threads_being_born_--;
701 if (shutting_down_started_ && threads_being_born_ == 0) {
Ian Rogersc604d732012-10-14 16:09:54 -0700702 shutdown_cond_->Broadcast(Thread::Current());
Ian Rogers120f1c72012-09-28 17:17:10 -0700703 }
704}
705
Brian Carlstrombd86bcc2013-03-10 20:26:16 -0700706// Do zygote-mode-only initialization.
707bool Runtime::InitZygote() {
708 // zygote goes into its own process group
709 setpgid(0,0);
710
711 // See storage config details at http://source.android.com/tech/storage/
712 // Create private mount namespace shared by all children
713 if (unshare(CLONE_NEWNS) == -1) {
714 PLOG(WARNING) << "Failed to unshare()";
715 return false;
716 }
717
718 // Mark rootfs as being a slave so that changes from default
719 // namespace only flow into our children.
720 if (mount("rootfs", "/", NULL, (MS_SLAVE | MS_REC), NULL) == -1) {
721 PLOG(WARNING) << "Failed to mount() rootfs as MS_SLAVE";
722 return false;
723 }
724
725 // Create a staging tmpfs that is shared by our children; they will
726 // bind mount storage into their respective private namespaces, which
727 // are isolated from each other.
728 const char* target_base = getenv("EMULATED_STORAGE_TARGET");
729 if (target_base != NULL) {
730 if (mount("tmpfs", target_base, "tmpfs", MS_NOSUID | MS_NODEV,
731 "uid=0,gid=1028,mode=0050") == -1) {
732 LOG(WARNING) << "Failed to mount tmpfs to " << target_base;
733 return false;
734 }
735 }
736
737 return true;
738}
739
Brian Carlstromcaabb1b2011-10-11 18:09:13 -0700740void Runtime::DidForkFromZygote() {
Brian Carlstromcaabb1b2011-10-11 18:09:13 -0700741 is_zygote_ = false;
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700742
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700743 // Create the thread pool.
744 heap_->CreateThreadPool();
745
Brian Carlstromcaabb1b2011-10-11 18:09:13 -0700746 StartSignalCatcher();
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700747
748 // Start the JDWP thread. If the command-line debugger flags specified "suspend=y",
749 // this will pause the runtime, so we probably want this to come last.
750 Dbg::StartJdwp();
Brian Carlstromcaabb1b2011-10-11 18:09:13 -0700751}
752
753void Runtime::StartSignalCatcher() {
754 if (!is_zygote_) {
Elliott Hughes94ce37a2011-10-18 15:07:48 -0700755 signal_catcher_ = new SignalCatcher(stack_trace_file_);
Brian Carlstromcaabb1b2011-10-11 18:09:13 -0700756 }
757}
758
Elliott Hughes85d15452011-09-16 17:33:01 -0700759void Runtime::StartDaemonThreads() {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800760 VLOG(startup) << "Runtime::StartDaemonThreads entering";
Elliott Hughes85d15452011-09-16 17:33:01 -0700761
Elliott Hughes719b3232011-09-25 17:42:19 -0700762 Thread* self = Thread::Current();
Brian Carlstromaded5f72011-10-07 17:15:04 -0700763
764 // Must be in the kNative state for calling native methods.
Ian Rogers50b35e22012-10-04 10:09:15 -0700765 CHECK_EQ(self->GetState(), kNative);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700766
Elliott Hughes719b3232011-09-25 17:42:19 -0700767 JNIEnv* env = self->GetJniEnv();
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700768 env->CallStaticVoidMethod(WellKnownClasses::java_lang_Daemons,
769 WellKnownClasses::java_lang_Daemons_start);
770 if (env->ExceptionCheck()) {
771 env->ExceptionDescribe();
772 LOG(FATAL) << "Error starting java.lang.Daemons";
773 }
Elliott Hughes9ca7a1f2011-10-11 14:29:52 -0700774
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800775 VLOG(startup) << "Runtime::StartDaemonThreads exiting";
Carl Shapiro61e019d2011-07-14 16:53:09 -0700776}
777
Elliott Hughes0af55432011-08-17 18:37:28 -0700778bool Runtime::Init(const Options& raw_options, bool ignore_unrecognized) {
Elliott Hughesc1674ed2011-08-25 18:09:09 -0700779 CHECK_EQ(sysconf(_SC_PAGE_SIZE), kPageSize);
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700780
Elliott Hughes90a33692011-08-30 13:27:07 -0700781 UniquePtr<ParsedOptions> options(ParsedOptions::Create(raw_options, ignore_unrecognized));
782 if (options.get() == NULL) {
Brian Carlstrome24fa612011-09-29 00:53:55 -0700783 LOG(ERROR) << "Failed to parse options";
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700784 return false;
785 }
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800786 VLOG(startup) << "Runtime::Init -verbose:startup enabled";
Elliott Hughes7ede61e2011-09-14 18:18:06 -0700787
Elliott Hughes7c6169d2012-05-02 16:11:48 -0700788 QuasiAtomic::Startup();
789
Elliott Hughesbb1e8f02011-10-18 14:14:25 -0700790 SetJniGlobalsMax(options->jni_globals_max_);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800791 Monitor::Init(options->lock_profiling_threshold_, options->hook_is_sensitive_thread_);
Elliott Hughes32d6e1e2011-10-11 14:47:44 -0700792
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700793 host_prefix_ = options->host_prefix_;
Brian Carlstroma004aa92012-02-08 18:05:09 -0800794 boot_class_path_string_ = options->boot_class_path_string_;
795 class_path_string_ = options->class_path_string_;
Elliott Hughes7ede61e2011-09-14 18:18:06 -0700796 properties_ = options->properties_;
797
Elliott Hughesd9c67be2012-02-02 19:54:06 -0800798 is_compiler_ = options->is_compiler_;
Elliott Hughes9ca7a1f2011-10-11 14:29:52 -0700799 is_zygote_ = options->is_zygote_;
Ian Rogers50ffee22012-11-20 11:47:44 -0800800 interpreter_only_ = options->interpreter_only_;
Mathieu Chartier069387a2012-06-18 12:01:01 -0700801 is_concurrent_gc_enabled_ = options->is_concurrent_gc_enabled_;
Elliott Hughes9ca7a1f2011-10-11 14:29:52 -0700802
Elliott Hughes0af55432011-08-17 18:37:28 -0700803 vfprintf_ = options->hook_vfprintf_;
804 exit_ = options->hook_exit_;
805 abort_ = options->hook_abort_;
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700806
Elliott Hughesbe759c62011-09-08 19:38:21 -0700807 default_stack_size_ = options->stack_size_;
Elliott Hughes94ce37a2011-10-18 15:07:48 -0700808 stack_trace_file_ = options->stack_trace_file_;
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700809
Elliott Hughesc33a32b2011-10-11 18:18:07 -0700810 monitor_list_ = new MonitorList;
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800811 thread_list_ = new ThreadList;
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700812 intern_table_ = new InternTable;
813
Elliott Hughes0a1038b2012-06-14 16:24:17 -0700814 verifier::MethodVerifier::Init();
Logan Chiendd361c92012-04-10 23:40:37 +0800815
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800816 heap_ = new Heap(options->heap_initial_size_,
817 options->heap_growth_limit_,
Mathieu Chartier0051be62012-10-12 17:47:11 -0700818 options->heap_min_free_,
819 options->heap_max_free_,
820 options->heap_target_utilization_,
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800821 options->heap_maximum_size_,
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700822 options->image_,
823 options->is_concurrent_gc_enabled_);
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700824
Elliott Hughesc1674ed2011-08-25 18:09:09 -0700825 BlockSignals();
Elliott Hughes457005c2012-04-16 13:54:25 -0700826 InitPlatformSignalHandlers();
Elliott Hughesc1674ed2011-08-25 18:09:09 -0700827
Elliott Hughesa0957642011-09-02 14:27:33 -0700828 java_vm_ = new JavaVMExt(this, options.get());
Elliott Hughes515a5bc2011-08-17 11:08:34 -0700829
Elliott Hughesbe759c62011-09-08 19:38:21 -0700830 Thread::Startup();
Elliott Hughesd92bec42011-09-02 17:04:36 -0700831
Mathieu Chartier664bebf2012-11-12 16:54:11 -0800832 // ClassLinker needs an attached thread, but we can't fully attach a thread without creating
833 // objects. We can't supply a thread group yet; it will be fixed later. Since we are the main
834 // thread, we do not get a java peer.
835 Thread* self = Thread::Attach("main", false, NULL, false);
836 CHECK_EQ(self->thin_lock_id_, ThreadList::kMainId);
Ian Rogers120f1c72012-09-28 17:17:10 -0700837 CHECK(self != NULL);
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700838
Brian Carlstromf28bc5b2011-10-26 01:15:03 -0700839 // Set us to runnable so tools using a runtime can allocate and GC by default
Ian Rogers120f1c72012-09-28 17:17:10 -0700840 self->TransitionFromSuspendedToRunnable();
Brian Carlstromf28bc5b2011-10-26 01:15:03 -0700841
Ian Rogers141d6222012-04-05 12:23:06 -0700842 // Now we're attached, we can take the heap lock and validate the heap.
843 GetHeap()->EnableObjectValidation();
844
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800845 CHECK_GE(GetHeap()->GetSpaces().size(), 1U);
846 if (GetHeap()->GetSpaces()[0]->IsImageSpace()) {
Brian Carlstroma004aa92012-02-08 18:05:09 -0800847 class_linker_ = ClassLinker::CreateFromImage(intern_table_);
848 } else {
849 CHECK(options->boot_class_path_ != NULL);
850 CHECK_NE(options->boot_class_path_->size(), 0U);
851 class_linker_ = ClassLinker::CreateFromCompiler(*options->boot_class_path_, intern_table_);
852 }
853 CHECK(class_linker_ != NULL);
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700854
jeffhaob5e81852012-03-12 11:15:45 -0700855 method_trace_ = options->method_trace_;
856 method_trace_file_ = options->method_trace_file_;
857 method_trace_file_size_ = options->method_trace_file_size_;
858
859 if (options->method_trace_) {
860 Trace::Start(options->method_trace_file_.c_str(), -1, options->method_trace_file_size_, 0, false);
861 }
862
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800863 VLOG(startup) << "Runtime::Init exiting";
Carl Shapiro1fb86202011-06-27 17:43:13 -0700864 return true;
865}
866
Elliott Hughes038a8062011-09-18 14:12:41 -0700867void Runtime::InitNativeMethods() {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800868 VLOG(startup) << "Runtime::InitNativeMethods entering";
Elliott Hughesad7c2a32011-08-31 11:58:10 -0700869 Thread* self = Thread::Current();
870 JNIEnv* env = self->GetJniEnv();
871
Elliott Hughes418d20f2011-09-22 14:00:39 -0700872 // Must be in the kNative state for calling native methods (JNI_OnLoad code).
Ian Rogers50b35e22012-10-04 10:09:15 -0700873 CHECK_EQ(self->GetState(), kNative);
Elliott Hughesad7c2a32011-08-31 11:58:10 -0700874
Elliott Hughes418d20f2011-09-22 14:00:39 -0700875 // First set up JniConstants, which is used by both the runtime's built-in native
876 // methods and libcore.
Elliott Hughesfea966e2011-09-22 10:26:20 -0700877 JniConstants::init(env);
Elliott Hugheseac76672012-05-24 21:56:51 -0700878 WellKnownClasses::Init(env);
Elliott Hughesfea966e2011-09-22 10:26:20 -0700879
Elliott Hughes418d20f2011-09-22 14:00:39 -0700880 // Then set up the native methods provided by the runtime itself.
Elliott Hughesad7c2a32011-08-31 11:58:10 -0700881 RegisterRuntimeNativeMethods(env);
882
Elliott Hughes418d20f2011-09-22 14:00:39 -0700883 // Then set up libcore, which is just a regular JNI library with a regular JNI_OnLoad.
884 // Most JNI libraries can just use System.loadLibrary, but libcore can't because it's
885 // the library that implements System.loadLibrary!
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700886 {
887 std::string mapped_name(StringPrintf(OS_SHARED_LIB_FORMAT_STR, "javacore"));
888 std::string reason;
889 self->TransitionFromSuspendedToRunnable();
890 if (!instance_->java_vm_->LoadNativeLibrary(mapped_name, NULL, reason)) {
891 LOG(FATAL) << "LoadNativeLibrary failed for \"" << mapped_name << "\": " << reason;
892 }
893 self->TransitionFromRunnableToSuspended(kNative);
894 }
Ian Rogersef28b142012-11-30 14:22:18 -0800895
896 // Initialize well known classes that may invoke runtime native methods.
897 WellKnownClasses::LateInit(env);
898
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800899 VLOG(startup) << "Runtime::InitNativeMethods exiting";
Elliott Hughesad7c2a32011-08-31 11:58:10 -0700900}
901
Ian Rogers365c1022012-06-22 15:05:28 -0700902void Runtime::InitThreadGroups(Thread* self) {
903 JNIEnvExt* env = self->GetJniEnv();
904 ScopedJniEnvLocalRefState env_state(env);
905 main_thread_group_ =
906 env->NewGlobalRef(env->GetStaticObjectField(WellKnownClasses::java_lang_ThreadGroup,
907 WellKnownClasses::java_lang_ThreadGroup_mainThreadGroup));
Brian Carlstrom034f76b2012-08-01 15:51:58 -0700908 CHECK(main_thread_group_ != NULL || IsCompiler());
Ian Rogers365c1022012-06-22 15:05:28 -0700909 system_thread_group_ =
910 env->NewGlobalRef(env->GetStaticObjectField(WellKnownClasses::java_lang_ThreadGroup,
911 WellKnownClasses::java_lang_ThreadGroup_systemThreadGroup));
Brian Carlstrom034f76b2012-08-01 15:51:58 -0700912 CHECK(system_thread_group_ != NULL || IsCompiler());
913}
914
915jobject Runtime::GetMainThreadGroup() const {
916 CHECK(main_thread_group_ != NULL || IsCompiler());
917 return main_thread_group_;
918}
919
920jobject Runtime::GetSystemThreadGroup() const {
921 CHECK(system_thread_group_ != NULL || IsCompiler());
922 return system_thread_group_;
Ian Rogers365c1022012-06-22 15:05:28 -0700923}
924
Elliott Hughesad7c2a32011-08-31 11:58:10 -0700925void Runtime::RegisterRuntimeNativeMethods(JNIEnv* env) {
926#define REGISTER(FN) extern void FN(JNIEnv*); FN(env)
Ian Rogers5167c972012-02-03 10:41:20 -0800927 // Register Throwable first so that registration of other native methods can throw exceptions
928 REGISTER(register_java_lang_Throwable);
Brian Carlstromf91c8c32011-09-21 17:30:34 -0700929 REGISTER(register_dalvik_system_DexFile);
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700930 REGISTER(register_dalvik_system_VMDebug);
Elliott Hughes7ede61e2011-09-14 18:18:06 -0700931 REGISTER(register_dalvik_system_VMRuntime);
Elliott Hughes8daa0922011-09-11 13:46:25 -0700932 REGISTER(register_dalvik_system_VMStack);
Elliott Hughes01158d72011-09-19 19:47:10 -0700933 REGISTER(register_dalvik_system_Zygote);
Elliott Hughesd369bb72011-09-12 14:41:14 -0700934 REGISTER(register_java_lang_Class);
Elliott Hughesbf86d042011-08-31 17:53:14 -0700935 REGISTER(register_java_lang_Object);
936 REGISTER(register_java_lang_Runtime);
937 REGISTER(register_java_lang_String);
938 REGISTER(register_java_lang_System);
Elliott Hughes8daa0922011-09-11 13:46:25 -0700939 REGISTER(register_java_lang_Thread);
Elliott Hughes64bf5a32011-09-20 14:43:12 -0700940 REGISTER(register_java_lang_VMClassLoader);
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700941 REGISTER(register_java_lang_reflect_Array);
Elliott Hughes2a20cfd2011-09-23 19:30:41 -0700942 REGISTER(register_java_lang_reflect_Constructor);
Brian Carlstromf867b6f2011-09-16 12:17:25 -0700943 REGISTER(register_java_lang_reflect_Field);
944 REGISTER(register_java_lang_reflect_Method);
Jesse Wilson95caa792011-10-12 18:14:17 -0400945 REGISTER(register_java_lang_reflect_Proxy);
Elliott Hughesbf86d042011-08-31 17:53:14 -0700946 REGISTER(register_java_util_concurrent_atomic_AtomicLong);
Brian Carlstrom395520e2011-09-25 19:35:00 -0700947 REGISTER(register_org_apache_harmony_dalvik_ddmc_DdmServer);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -0700948 REGISTER(register_org_apache_harmony_dalvik_ddmc_DdmVmInternal);
Elliott Hughes5ee7a8b2011-09-13 16:40:07 -0700949 REGISTER(register_sun_misc_Unsafe);
Elliott Hughesad7c2a32011-08-31 11:58:10 -0700950#undef REGISTER
951}
952
Elliott Hughesc967f782012-04-16 10:23:15 -0700953void Runtime::DumpForSigQuit(std::ostream& os) {
Elliott Hughescac6cc72011-11-03 20:31:21 -0700954 GetClassLinker()->DumpForSigQuit(os);
955 GetInternTable()->DumpForSigQuit(os);
Elliott Hughesae80b492012-04-24 10:43:17 -0700956 GetJavaVM()->DumpForSigQuit(os);
Elliott Hughesc967f782012-04-16 10:23:15 -0700957 GetHeap()->DumpForSigQuit(os);
Elliott Hughes42ee1422011-09-06 12:33:32 -0700958 os << "\n";
Elliott Hughes8daa0922011-09-11 13:46:25 -0700959
Elliott Hughesc967f782012-04-16 10:23:15 -0700960 thread_list_->DumpForSigQuit(os);
Ian Rogers56edc432013-01-18 16:51:51 -0800961 BaseMutex::DumpAll(os);
Elliott Hughese27955c2011-08-26 15:21:24 -0700962}
963
Elliott Hughes21a5bf22011-12-07 14:35:20 -0800964void Runtime::DumpLockHolders(std::ostream& os) {
Ian Rogersb726dcb2012-09-05 08:57:23 -0700965 uint64_t mutator_lock_owner = Locks::mutator_lock_->GetExclusiveOwnerTid();
Elliott Hughes21a5bf22011-12-07 14:35:20 -0800966 pid_t thread_list_lock_owner = GetThreadList()->GetLockOwner();
967 pid_t classes_lock_owner = GetClassLinker()->GetClassesLockOwner();
968 pid_t dex_lock_owner = GetClassLinker()->GetDexLockOwner();
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700969 if ((thread_list_lock_owner | classes_lock_owner | dex_lock_owner) != 0) {
970 os << "Mutator lock exclusive owner tid: " << mutator_lock_owner << "\n"
Elliott Hughes21a5bf22011-12-07 14:35:20 -0800971 << "ThreadList lock owner tid: " << thread_list_lock_owner << "\n"
972 << "ClassLinker classes lock owner tid: " << classes_lock_owner << "\n"
973 << "ClassLinker dex lock owner tid: " << dex_lock_owner << "\n";
974 }
975}
976
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700977void Runtime::SetStatsEnabled(bool new_state) {
978 if (new_state == true) {
979 GetStats()->Clear(~0);
980 // TODO: wouldn't it make more sense to clear _all_ threads' stats?
981 Thread::Current()->GetStats()->Clear(~0);
982 }
983 stats_enabled_ = new_state;
984}
985
986void Runtime::ResetStats(int kinds) {
987 GetStats()->Clear(kinds & 0xffff);
988 // TODO: wouldn't it make more sense to clear _all_ threads' stats?
989 Thread::Current()->GetStats()->Clear(kinds >> 16);
990}
991
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700992int32_t Runtime::GetStat(int kind) {
993 RuntimeStats* stats;
994 if (kind < (1<<16)) {
995 stats = GetStats();
996 } else {
997 stats = Thread::Current()->GetStats();
998 kind >>= 16;
999 }
1000 switch (kind) {
1001 case KIND_ALLOCATED_OBJECTS:
1002 return stats->allocated_objects;
1003 case KIND_ALLOCATED_BYTES:
1004 return stats->allocated_bytes;
1005 case KIND_FREED_OBJECTS:
1006 return stats->freed_objects;
1007 case KIND_FREED_BYTES:
1008 return stats->freed_bytes;
1009 case KIND_GC_INVOCATIONS:
1010 return stats->gc_for_alloc_count;
1011 case KIND_CLASS_INIT_COUNT:
1012 return stats->class_init_count;
1013 case KIND_CLASS_INIT_TIME:
1014 // Convert ns to us, reduce to 32 bits.
Elliott Hughes398f64b2012-03-26 18:05:48 -07001015 return static_cast<int>(stats->class_init_time_ns / 1000);
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07001016 case KIND_EXT_ALLOCATED_OBJECTS:
1017 case KIND_EXT_ALLOCATED_BYTES:
1018 case KIND_EXT_FREED_OBJECTS:
1019 case KIND_EXT_FREED_BYTES:
1020 return 0; // backward compatibility
1021 default:
Elliott Hughes7b9d9962012-04-20 18:48:18 -07001022 LOG(FATAL) << "Unknown statistic " << kind;
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07001023 return -1; // unreachable
1024 }
1025}
1026
Elliott Hughesc1674ed2011-08-25 18:09:09 -07001027void Runtime::BlockSignals() {
Elliott Hughes457005c2012-04-16 13:54:25 -07001028 SignalSet signals;
1029 signals.Add(SIGPIPE);
Elliott Hughesc1674ed2011-08-25 18:09:09 -07001030 // SIGQUIT is used to dump the runtime's state (including stack traces).
Elliott Hughes457005c2012-04-16 13:54:25 -07001031 signals.Add(SIGQUIT);
Elliott Hughes08795042012-04-03 14:48:52 -07001032 // SIGUSR1 is used to initiate a GC.
Elliott Hughes457005c2012-04-16 13:54:25 -07001033 signals.Add(SIGUSR1);
1034 signals.Block();
Elliott Hughesc1674ed2011-08-25 18:09:09 -07001035}
1036
Mathieu Chartier664bebf2012-11-12 16:54:11 -08001037bool Runtime::AttachCurrentThread(const char* thread_name, bool as_daemon, jobject thread_group,
1038 bool create_peer) {
1039 bool success = Thread::Attach(thread_name, as_daemon, thread_group, create_peer) != NULL;
Elliott Hughes22869a92012-03-27 14:08:24 -07001040 if (thread_name == NULL) {
1041 LOG(WARNING) << *Thread::Current() << " attached without supplying a name";
1042 }
Ian Rogers120f1c72012-09-28 17:17:10 -07001043 return success;
Carl Shapiro61e019d2011-07-14 16:53:09 -07001044}
1045
Elliott Hughesd92bec42011-09-02 17:04:36 -07001046void Runtime::DetachCurrentThread() {
Brian Carlstrom4d571432012-05-16 00:21:41 -07001047 Thread* self = Thread::Current();
1048 if (self == NULL) {
1049 LOG(FATAL) << "attempting to detach thread that is not attached";
1050 }
Ian Rogers0399dde2012-06-06 17:09:28 -07001051 if (self->HasManagedStack()) {
Elliott Hughes22869a92012-03-27 14:08:24 -07001052 LOG(FATAL) << *Thread::Current() << " attempting to detach while still running code";
1053 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001054 thread_list_->Unregister(self);
Carl Shapiro1fb86202011-06-27 17:43:13 -07001055}
1056
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001057void Runtime::VisitConcurrentRoots(RootVisitor* visitor, void* arg) {
Mathieu Chartier9ebae1f2012-10-15 17:38:16 -07001058 if (intern_table_->IsDirty()) {
1059 intern_table_->VisitRoots(visitor, arg);
1060 }
1061 if (class_linker_->IsDirty()) {
1062 class_linker_->VisitRoots(visitor, arg);
1063 }
1064}
1065
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001066void Runtime::VisitNonThreadRoots(RootVisitor* visitor, void* arg) {
Brian Carlstrome24fa612011-09-29 00:53:55 -07001067 java_vm_->VisitRoots(visitor, arg);
Elliott Hughes225f5a12012-06-11 11:23:48 -07001068 if (pre_allocated_OutOfMemoryError_ != NULL) {
1069 visitor(pre_allocated_OutOfMemoryError_, arg);
1070 }
Brian Carlstrome24fa612011-09-29 00:53:55 -07001071 visitor(jni_stub_array_, arg);
1072 visitor(abstract_method_error_stub_array_, arg);
Ian Rogers4f0d07c2011-10-06 23:38:47 -07001073 for (int i = 0; i < Runtime::kLastTrampolineMethodType; i++) {
1074 visitor(resolution_stub_array_[i], arg);
1075 }
Ian Rogers19846512012-02-24 11:42:47 -08001076 visitor(resolution_method_, arg);
Ian Rogers4f0d07c2011-10-06 23:38:47 -07001077 for (int i = 0; i < Runtime::kLastCalleeSaveType; i++) {
Elliott Hughes225f5a12012-06-11 11:23:48 -07001078 visitor(callee_save_methods_[i], arg);
Ian Rogers4f0d07c2011-10-06 23:38:47 -07001079 }
Brian Carlstrome24fa612011-09-29 00:53:55 -07001080}
1081
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001082void Runtime::VisitNonConcurrentRoots(RootVisitor* visitor, void* arg) {
Mathieu Chartier858f1c52012-10-17 17:45:55 -07001083 thread_list_->VisitRoots(visitor, arg);
1084 VisitNonThreadRoots(visitor, arg);
1085}
1086
Mathieu Chartier9ebae1f2012-10-15 17:38:16 -07001087void Runtime::DirtyRoots() {
Mathieu Chartier02b6a782012-10-26 13:51:26 -07001088 CHECK(intern_table_ != NULL);
Mathieu Chartier9ebae1f2012-10-15 17:38:16 -07001089 intern_table_->Dirty();
Mathieu Chartier02b6a782012-10-26 13:51:26 -07001090 CHECK(class_linker_ != NULL);
Mathieu Chartier9ebae1f2012-10-15 17:38:16 -07001091 class_linker_->Dirty();
1092}
1093
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001094void Runtime::VisitRoots(RootVisitor* visitor, void* arg) {
Mathieu Chartier9ebae1f2012-10-15 17:38:16 -07001095 VisitConcurrentRoots(visitor, arg);
1096 VisitNonConcurrentRoots(visitor, arg);
1097}
1098
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001099void Runtime::SetJniDlsymLookupStub(mirror::ByteArray* jni_stub_array) {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001100 CHECK(jni_stub_array != NULL) << " jni_stub_array=" << jni_stub_array;
1101 CHECK(jni_stub_array_ == NULL || jni_stub_array_ == jni_stub_array)
1102 << "jni_stub_array_=" << jni_stub_array_ << " jni_stub_array=" << jni_stub_array;
Brian Carlstrome24fa612011-09-29 00:53:55 -07001103 jni_stub_array_ = jni_stub_array;
1104}
1105
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001106void Runtime::SetAbstractMethodErrorStubArray(mirror::ByteArray* abstract_method_error_stub_array) {
Brian Carlstrome24fa612011-09-29 00:53:55 -07001107 CHECK(abstract_method_error_stub_array != NULL);
1108 CHECK(abstract_method_error_stub_array_ == NULL || abstract_method_error_stub_array_ == abstract_method_error_stub_array);
1109 abstract_method_error_stub_array_ = abstract_method_error_stub_array;
1110}
1111
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001112void Runtime::SetResolutionStubArray(mirror::ByteArray* resolution_stub_array, TrampolineType type) {
Ian Rogersad25ac52011-10-04 19:13:33 -07001113 CHECK(resolution_stub_array != NULL);
Ian Rogers1cb0a1d2011-10-06 15:24:35 -07001114 CHECK(!HasResolutionStubArray(type) || resolution_stub_array_[type] == resolution_stub_array);
1115 resolution_stub_array_[type] = resolution_stub_array;
Ian Rogersad25ac52011-10-04 19:13:33 -07001116}
1117
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001118mirror::AbstractMethod* Runtime::CreateResolutionMethod() {
1119 mirror::Class* method_class = mirror::AbstractMethod::GetMethodClass();
Ian Rogers50b35e22012-10-04 10:09:15 -07001120 Thread* self = Thread::Current();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001121 SirtRef<mirror::AbstractMethod>
1122 method(self, down_cast<mirror::AbstractMethod*>(method_class->AllocObject(self)));
Ian Rogers19846512012-02-24 11:42:47 -08001123 method->SetDeclaringClass(method_class);
1124 // TODO: use a special method for resolution method saves
1125 method->SetDexMethodIndex(DexFile::kDexNoIndex16);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001126 mirror::ByteArray* unknown_resolution_stub = GetResolutionStubArray(kUnknownMethod);
Ian Rogers19846512012-02-24 11:42:47 -08001127 CHECK(unknown_resolution_stub != NULL);
1128 method->SetCode(unknown_resolution_stub->GetData());
1129 return method.get();
1130}
1131
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001132mirror::AbstractMethod* Runtime::CreateCalleeSaveMethod(InstructionSet instruction_set,
1133 CalleeSaveType type) {
1134 mirror::Class* method_class = mirror::AbstractMethod::GetMethodClass();
Ian Rogers50b35e22012-10-04 10:09:15 -07001135 Thread* self = Thread::Current();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001136 SirtRef<mirror::AbstractMethod>
1137 method(self, down_cast<mirror::AbstractMethod*>(method_class->AllocObject(self)));
Ian Rogersff1ed472011-09-20 13:46:24 -07001138 method->SetDeclaringClass(method_class);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001139 // TODO: use a special method for callee saves
Ian Rogers19846512012-02-24 11:42:47 -08001140 method->SetDexMethodIndex(DexFile::kDexNoIndex16);
Brian Carlstrom3320cf42011-10-04 14:58:28 -07001141 method->SetCode(NULL);
Brian Carlstromae826982011-11-09 01:33:42 -08001142 if ((instruction_set == kThumb2) || (instruction_set == kArm)) {
Ian Rogers4f0d07c2011-10-06 23:38:47 -07001143 uint32_t ref_spills = (1 << art::arm::R5) | (1 << art::arm::R6) | (1 << art::arm::R7) |
1144 (1 << art::arm::R8) | (1 << art::arm::R10) | (1 << art::arm::R11);
1145 uint32_t arg_spills = (1 << art::arm::R1) | (1 << art::arm::R2) | (1 << art::arm::R3);
1146 uint32_t all_spills = (1 << art::arm::R4) | (1 << art::arm::R9);
jeffhaofa147e22012-10-12 17:03:32 -07001147 uint32_t core_spills = ref_spills | (type == kRefsAndArgs ? arg_spills : 0) |
1148 (type == kSaveAll ? all_spills : 0) | (1 << art::arm::LR);
Ian Rogers4f0d07c2011-10-06 23:38:47 -07001149 uint32_t fp_all_spills = (1 << art::arm::S0) | (1 << art::arm::S1) | (1 << art::arm::S2) |
1150 (1 << art::arm::S3) | (1 << art::arm::S4) | (1 << art::arm::S5) |
1151 (1 << art::arm::S6) | (1 << art::arm::S7) | (1 << art::arm::S8) |
1152 (1 << art::arm::S9) | (1 << art::arm::S10) | (1 << art::arm::S11) |
1153 (1 << art::arm::S12) | (1 << art::arm::S13) | (1 << art::arm::S14) |
1154 (1 << art::arm::S15) | (1 << art::arm::S16) | (1 << art::arm::S17) |
1155 (1 << art::arm::S18) | (1 << art::arm::S19) | (1 << art::arm::S20) |
1156 (1 << art::arm::S21) | (1 << art::arm::S22) | (1 << art::arm::S23) |
1157 (1 << art::arm::S24) | (1 << art::arm::S25) | (1 << art::arm::S26) |
1158 (1 << art::arm::S27) | (1 << art::arm::S28) | (1 << art::arm::S29) |
1159 (1 << art::arm::S30) | (1 << art::arm::S31);
1160 uint32_t fp_spills = type == kSaveAll ? fp_all_spills : 0;
1161 size_t frame_size = RoundUp((__builtin_popcount(core_spills) /* gprs */ +
1162 __builtin_popcount(fp_spills) /* fprs */ +
1163 1 /* Method* */) * kPointerSize, kStackAlignment);
Ian Rogers15fdb8c2011-09-25 15:45:07 -07001164 method->SetFrameSizeInBytes(frame_size);
Ian Rogers4f0d07c2011-10-06 23:38:47 -07001165 method->SetCoreSpillMask(core_spills);
1166 method->SetFpSpillMask(fp_spills);
jeffhao7fbee072012-08-24 17:56:54 -07001167 } else if (instruction_set == kMips) {
1168 uint32_t ref_spills = (1 << art::mips::S2) | (1 << art::mips::S3) | (1 << art::mips::S4) |
1169 (1 << art::mips::S5) | (1 << art::mips::S6) | (1 << art::mips::S7) |
1170 (1 << art::mips::FP);
1171 uint32_t arg_spills = (1 << art::mips::A1) | (1 << art::mips::A2) | (1 << art::mips::A3);
jeffhaofa147e22012-10-12 17:03:32 -07001172 uint32_t all_spills = (1 << art::mips::S0) | (1 << art::mips::S1);
jeffhao7fbee072012-08-24 17:56:54 -07001173 uint32_t core_spills = ref_spills | (type == kRefsAndArgs ? arg_spills : 0) |
jeffhaofa147e22012-10-12 17:03:32 -07001174 (type == kSaveAll ? all_spills : 0) | (1 << art::mips::RA);
jeffhao7fbee072012-08-24 17:56:54 -07001175 size_t frame_size = RoundUp((__builtin_popcount(core_spills) /* gprs */ +
jeffhao4eb68ed2012-10-17 16:41:07 -07001176 (type == kRefsAndArgs ? 0 : 5) /* reserve arg space */ +
jeffhao7fbee072012-08-24 17:56:54 -07001177 1 /* Method* */) * kPointerSize, kStackAlignment);
1178 method->SetFrameSizeInBytes(frame_size);
1179 method->SetCoreSpillMask(core_spills);
jeffhao07030602012-09-26 14:33:14 -07001180 method->SetFpSpillMask(0);
Brian Carlstromae826982011-11-09 01:33:42 -08001181 } else if (instruction_set == kX86) {
Ian Rogers7caad772012-03-30 01:07:54 -07001182 uint32_t ref_spills = (1 << art::x86::EBP) | (1 << art::x86::ESI) | (1 << art::x86::EDI);
1183 uint32_t arg_spills = (1 << art::x86::ECX) | (1 << art::x86::EDX) | (1 << art::x86::EBX);
1184 uint32_t core_spills = ref_spills | (type == kRefsAndArgs ? arg_spills : 0) |
1185 (1 << art::x86::kNumberOfCpuRegisters); // fake return address callee save
1186 size_t frame_size = RoundUp((__builtin_popcount(core_spills) /* gprs */ +
1187 1 /* Method* */) * kPointerSize, kStackAlignment);
1188 method->SetFrameSizeInBytes(frame_size);
1189 method->SetCoreSpillMask(core_spills);
Ian Rogersff1ed472011-09-20 13:46:24 -07001190 method->SetFpSpillMask(0);
1191 } else {
1192 UNIMPLEMENTED(FATAL);
1193 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001194 return method.get();
Ian Rogersff1ed472011-09-20 13:46:24 -07001195}
1196
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001197void Runtime::SetCalleeSaveMethod(mirror::AbstractMethod* method, CalleeSaveType type) {
Ian Rogers4f0d07c2011-10-06 23:38:47 -07001198 DCHECK_LT(static_cast<int>(type), static_cast<int>(kLastCalleeSaveType));
Elliott Hughes225f5a12012-06-11 11:23:48 -07001199 callee_save_methods_[type] = method;
Brian Carlstrome24fa612011-09-29 00:53:55 -07001200}
1201
jeffhao725a9572012-11-13 18:20:12 -08001202void Runtime::EnableMethodTracing(Trace* trace) {
jeffhao2692b572011-12-16 15:42:28 -08001203 CHECK(!IsMethodTracingActive());
jeffhao725a9572012-11-13 18:20:12 -08001204 if (instrumentation_ == NULL) {
1205 instrumentation_ = new Instrumentation();
1206 }
1207 instrumentation_->SetTrace(trace);
jeffhao2692b572011-12-16 15:42:28 -08001208}
1209
1210void Runtime::DisableMethodTracing() {
1211 CHECK(IsMethodTracingActive());
jeffhao725a9572012-11-13 18:20:12 -08001212 instrumentation_->RemoveTrace();
1213}
1214
1215bool Runtime::IsMethodTracingActive() const {
1216 return instrumentation_ != NULL && instrumentation_->GetTrace() != NULL;
1217}
1218
1219Instrumentation* Runtime::GetInstrumentation() const {
1220 CHECK(IsMethodTracingActive());
1221 return instrumentation_;
jeffhao2692b572011-12-16 15:42:28 -08001222}
1223
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001224const std::vector<const DexFile*>& Runtime::GetCompileTimeClassPath(jobject class_loader) {
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08001225 if (class_loader == NULL) {
1226 return GetClassLinker()->GetBootClassPath();
1227 }
1228 CHECK(UseCompileTimeClassPath());
1229 CompileTimeClassPaths::const_iterator it = compile_time_class_paths_.find(class_loader);
1230 CHECK(it != compile_time_class_paths_.end());
1231 return it->second;
1232}
1233
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001234void Runtime::SetCompileTimeClassPath(jobject class_loader, std::vector<const DexFile*>& class_path) {
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08001235 CHECK(!IsStarted());
1236 use_compile_time_class_path_ = true;
Elliott Hughesa0e18062012-04-13 15:59:59 -07001237 compile_time_class_paths_.Put(class_loader, class_path);
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08001238}
1239
Carl Shapiro1fb86202011-06-27 17:43:13 -07001240} // namespace art