blob: 07cd4c8d8d5d9804bedb438490ae0ee9e7b176d9 [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>
Elliott Hughesd06a6c72012-05-30 17:59:06 -070020#include <sys/syscall.h>
Brian Carlstromdbf05b72011-12-15 00:55:24 -080021
Elliott Hughesffe67362011-07-17 12:09:27 -070022#include <cstdio>
23#include <cstdlib>
Brian Carlstrom8a436592011-08-15 21:27:23 -070024#include <limits>
Carl Shapiro2ed144c2011-07-26 16:52:08 -070025#include <vector>
Elliott Hughesffe67362011-07-17 12:09:27 -070026
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080027#include "atomic.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070028#include "class_linker.h"
Elliott Hughes0f3c5532012-03-30 14:51:51 -070029#include "constants_arm.h"
jeffhao7fbee072012-08-24 17:56:54 -070030#include "constants_mips.h"
Elliott Hughes0f3c5532012-03-30 14:51:51 -070031#include "constants_x86.h"
Elliott Hughes3bb81562011-10-21 18:52:59 -070032#include "debugger.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080033#include "gc/card_table-inl.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070034#include "heap.h"
Brian Carlstrome24fa612011-09-29 00:53:55 -070035#include "image.h"
jeffhao725a9572012-11-13 18:20:12 -080036#include "instrumentation.h"
Elliott Hughescf4c6c42011-09-01 15:16:42 -070037#include "intern_table.h"
Elliott Hughesc5f7c912011-08-18 14:00:42 -070038#include "jni_internal.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080039#include "mirror/abstract_method-inl.h"
40#include "mirror/array.h"
41#include "mirror/class_loader.h"
42#include "mirror/field.h"
Ian Rogersc0fa3ad2013-02-05 00:11:55 -080043#include "mirror/field-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080044#include "mirror/throwable.h"
Elliott Hughes32d6e1e2011-10-11 14:47:44 -070045#include "monitor.h"
Brian Carlstrome24fa612011-09-29 00:53:55 -070046#include "oat_file.h"
Elliott Hughes726079d2011-10-07 18:43:44 -070047#include "ScopedLocalRef.h"
Ian Rogers00f7d0e2012-07-19 15:28:27 -070048#include "scoped_thread_state_change.h"
Elliott Hughese27955c2011-08-26 15:21:24 -070049#include "signal_catcher.h"
Elliott Hughes457005c2012-04-16 13:54:25 -070050#include "signal_set.h"
Ian Rogers1f539342012-10-03 21:09:42 -070051#include "sirt_ref.h"
Mathieu Chartier7469ebf2012-09-24 16:28:36 -070052#include "gc/space.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070053#include "thread.h"
Elliott Hughes8daa0922011-09-11 13:46:25 -070054#include "thread_list.h"
jeffhaob5e81852012-03-12 11:15:45 -070055#include "trace.h"
Elliott Hughes3bb81562011-10-21 18:52:59 -070056#include "UniquePtr.h"
Ian Rogers776ac1f2012-04-13 23:36:36 -070057#include "verifier/method_verifier.h"
Elliott Hugheseac76672012-05-24 21:56:51 -070058#include "well_known_classes.h"
Carl Shapiro61e019d2011-07-14 16:53:09 -070059
Logan Chien971bf3f2012-05-01 15:47:55 +080060#if defined(ART_USE_LLVM_COMPILER)
61#include "compiler_llvm/procedure_linkage_table.h"
62#endif
63
Elliott Hugheseac76672012-05-24 21:56:51 -070064#include "JniConstants.h" // Last to avoid LOG redefinition in ics-mr1-plus-art.
Elliott Hughes90a33692011-08-30 13:27:07 -070065
Carl Shapiro1fb86202011-06-27 17:43:13 -070066namespace art {
67
Carl Shapiro2ed144c2011-07-26 16:52:08 -070068Runtime* Runtime::instance_ = NULL;
69
Elliott Hughesdcc24742011-09-07 14:02:44 -070070Runtime::Runtime()
Elliott Hughesd9c67be2012-02-02 19:54:06 -080071 : is_compiler_(false),
72 is_zygote_(false),
Mathieu Chartier069387a2012-06-18 12:01:01 -070073 is_concurrent_gc_enabled_(true),
Elliott Hughes6cf23882012-06-15 15:42:07 -070074 default_stack_size_(0),
Elliott Hughesb3bd5f02012-03-08 21:05:27 -080075 heap_(NULL),
Elliott Hughesc33a32b2011-10-11 18:18:07 -070076 monitor_list_(NULL),
Elliott Hughesdcc24742011-09-07 14:02:44 -070077 thread_list_(NULL),
78 intern_table_(NULL),
79 class_linker_(NULL),
80 signal_catcher_(NULL),
81 java_vm_(NULL),
Elliott Hughes225f5a12012-06-11 11:23:48 -070082 pre_allocated_OutOfMemoryError_(NULL),
Brian Carlstrom16192862011-09-12 17:50:06 -070083 jni_stub_array_(NULL),
Brian Carlstrome24fa612011-09-29 00:53:55 -070084 abstract_method_error_stub_array_(NULL),
Ian Rogers19846512012-02-24 11:42:47 -080085 resolution_method_(NULL),
Ian Rogers7c3757f2012-02-15 17:18:53 -080086 system_class_loader_(NULL),
Ian Rogers120f1c72012-09-28 17:17:10 -070087 threads_being_born_(0),
Ian Rogersc604d732012-10-14 16:09:54 -070088 shutdown_cond_(new ConditionVariable("Runtime shutdown", *Locks::runtime_shutdown_lock_)),
Elliott Hughes6b355752012-01-13 16:49:08 -080089 shutting_down_(false),
Ian Rogers120f1c72012-09-28 17:17:10 -070090 shutting_down_started_(false),
Elliott Hughesdcc24742011-09-07 14:02:44 -070091 started_(false),
Mathieu Chartier7664f5c2012-06-08 18:15:32 -070092 finished_starting_(false),
Elliott Hughesdcc24742011-09-07 14:02:44 -070093 vfprintf_(NULL),
94 exit_(NULL),
Elliott Hughes9d5ccec2011-09-19 13:19:50 -070095 abort_(NULL),
jeffhao2692b572011-12-16 15:42:28 -080096 stats_enabled_(false),
Ian Rogers776ac1f2012-04-13 23:36:36 -070097 method_trace_(0),
98 method_trace_file_size_(0),
jeffhao725a9572012-11-13 18:20:12 -080099 instrumentation_(NULL),
Ian Rogers365c1022012-06-22 15:05:28 -0700100 use_compile_time_class_path_(false),
101 main_thread_group_(NULL),
Logan Chien971bf3f2012-05-01 15:47:55 +0800102 system_thread_group_(NULL)
103#if defined(ART_USE_LLVM_COMPILER)
104#if defined(__arm__)
105 , plt_(kArm)
106#elif defined(__mips__)
107 , plt_(kMips)
108#elif defined(__i386__)
109 , plt_(kX86)
110#endif
111#endif
112 {
Ian Rogers4f0d07c2011-10-06 23:38:47 -0700113 for (int i = 0; i < Runtime::kLastTrampolineMethodType; i++) {
114 resolution_stub_array_[i] = NULL;
115 }
116 for (int i = 0; i < Runtime::kLastCalleeSaveType; i++) {
Elliott Hughes225f5a12012-06-11 11:23:48 -0700117 callee_save_methods_[i] = NULL;
Ian Rogers4f0d07c2011-10-06 23:38:47 -0700118 }
Logan Chien971bf3f2012-05-01 15:47:55 +0800119
120#if defined(ART_USE_LLVM_COMPILER)
121 CHECK(plt_.AllocateTable()) << "Failed to allocate PLT";
122#endif
Elliott Hughesdcc24742011-09-07 14:02:44 -0700123}
124
Carl Shapiro61e019d2011-07-14 16:53:09 -0700125Runtime::~Runtime() {
Ian Rogers120f1c72012-09-28 17:17:10 -0700126 Thread* self = Thread::Current();
127 {
128 MutexLock mu(self, *Locks::runtime_shutdown_lock_);
129 shutting_down_started_ = true;
130 while (threads_being_born_ > 0) {
Ian Rogersc604d732012-10-14 16:09:54 -0700131 shutdown_cond_->Wait(self);
Ian Rogers120f1c72012-09-28 17:17:10 -0700132 }
133 shutting_down_ = true;
134 }
Elliott Hughes6b355752012-01-13 16:49:08 -0800135
jeffhaob5e81852012-03-12 11:15:45 -0700136 if (IsMethodTracingActive()) {
137 Trace::Shutdown();
138 }
jeffhao725a9572012-11-13 18:20:12 -0800139 delete instrumentation_;
jeffhaob5e81852012-03-12 11:15:45 -0700140
Mathieu Chartiera6399032012-06-11 18:49:50 -0700141 // Make sure to let the GC complete if it is running.
Ian Rogers120f1c72012-09-28 17:17:10 -0700142 heap_->WaitForConcurrentGcToComplete(self);
Mathieu Chartier35883cc2012-11-13 14:08:12 -0800143 heap_->DeleteThreadPool();
Mathieu Chartiera6399032012-06-11 18:49:50 -0700144
Elliott Hughes5fe594f2011-09-08 12:33:17 -0700145 // Make sure our internal threads are dead before we start tearing down things they're using.
Elliott Hughese52e49b2012-04-02 16:05:44 -0700146 Dbg::StopJdwp();
Elliott Hughes5fe594f2011-09-08 12:33:17 -0700147 delete signal_catcher_;
148
Elliott Hughes038a8062011-09-18 14:12:41 -0700149 // Make sure all other non-daemon threads have terminated, and all daemon threads are suspended.
Elliott Hughes93e74e82011-09-13 11:07:03 -0700150 delete thread_list_;
Elliott Hughesc33a32b2011-10-11 18:18:07 -0700151 delete monitor_list_;
Elliott Hughes93e74e82011-09-13 11:07:03 -0700152
Carl Shapiro61e019d2011-07-14 16:53:09 -0700153 delete class_linker_;
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800154 delete heap_;
Elliott Hughes0a1038b2012-06-14 16:24:17 -0700155 verifier::MethodVerifier::Shutdown();
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700156 delete intern_table_;
Elliott Hughesc5f7c912011-08-18 14:00:42 -0700157 delete java_vm_;
Elliott Hughesc1674ed2011-08-25 18:09:09 -0700158 Thread::Shutdown();
Elliott Hughes7c6169d2012-05-02 16:11:48 -0700159 QuasiAtomic::Shutdown();
160
Carl Shapiro4acf4642011-07-26 18:54:13 -0700161 // TODO: acquire a static mutex on Runtime to avoid racing.
Brian Carlstrom4a289ed2011-08-16 17:17:49 -0700162 CHECK(instance_ == NULL || instance_ == this);
Carl Shapiro4acf4642011-07-26 18:54:13 -0700163 instance_ = NULL;
Carl Shapiro61e019d2011-07-14 16:53:09 -0700164}
165
Elliott Hughese0918552011-10-28 17:18:29 -0700166struct AbortState {
167 void Dump(std::ostream& os) {
Elliott Hughescac6cc72011-11-03 20:31:21 -0700168 if (gAborting) {
169 os << "Runtime aborting --- recursively, so no thread-specific detail!\n";
170 return;
171 }
172 gAborting = true;
Elliott Hughese0918552011-10-28 17:18:29 -0700173 os << "Runtime aborting...\n";
Elliott Hughes6c7d2442012-02-01 18:40:47 -0800174 if (Runtime::Current() == NULL) {
175 os << "(Runtime does not yet exist!)\n";
176 return;
177 }
Elliott Hughese0918552011-10-28 17:18:29 -0700178 Thread* self = Thread::Current();
179 if (self == NULL) {
180 os << "(Aborting thread was not attached to runtime!)\n";
181 } else {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700182 // TODO: we're aborting and the ScopedObjectAccess may attempt to acquire the mutator_lock_
183 // which may block indefinitely if there's a misbehaving thread holding it exclusively.
184 // The code below should be made robust to this.
185 ScopedObjectAccess soa(self);
Ian Rogers2f7f9b62012-10-10 18:24:05 -0700186 os << "Aborting thread:\n";
Elliott Hughes899e7892012-01-24 14:57:32 -0800187 self->Dump(os);
188 if (self->IsExceptionPending()) {
189 os << "Pending " << PrettyTypeOf(self->GetException()) << " on thread:\n"
190 << self->GetException()->Dump();
191 }
Elliott Hughese0918552011-10-28 17:18:29 -0700192 }
Ian Rogers2f7f9b62012-10-10 18:24:05 -0700193 DumpAllThreads(os, self);
194 }
195
196 void DumpAllThreads(std::ostream& os, Thread* self) NO_THREAD_SAFETY_ANALYSIS {
197 bool tll_already_held = Locks::thread_list_lock_->IsExclusiveHeld(self);
198 bool ml_already_held = Locks::mutator_lock_->IsSharedHeld(self);
Ian Rogersfbd22912012-10-12 14:21:10 -0700199 if (!tll_already_held || !ml_already_held) {
200 os << "Dumping all threads without appropriate locks held:"
201 << (!tll_already_held ? " thread list lock" : "")
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700202 << (!ml_already_held ? " mutator lock" : "")
203 << "\n";
Ian Rogers2f7f9b62012-10-10 18:24:05 -0700204 }
Ian Rogersfbd22912012-10-12 14:21:10 -0700205 os << "All threads:\n";
206 Runtime::Current()->GetThreadList()->DumpLocked(os);
Elliott Hughese0918552011-10-28 17:18:29 -0700207 }
208};
209
Elliott Hughes8593fdb2012-04-21 20:53:44 -0700210void Runtime::Abort() {
Brian Carlstrom81b88712012-11-05 19:21:30 -0800211 gAborting = true; // set before taking any locks
212
Elliott Hughes131aef82012-01-27 11:53:35 -0800213 // Ensure that we don't have multiple threads trying to abort at once,
214 // which would result in significantly worse diagnostics.
Ian Rogers50b35e22012-10-04 10:09:15 -0700215 MutexLock mu(Thread::Current(), *Locks::abort_lock_);
Elliott Hughes131aef82012-01-27 11:53:35 -0800216
Elliott Hughesffe67362011-07-17 12:09:27 -0700217 // Get any pending output out of the way.
218 fflush(NULL);
219
220 // Many people have difficulty distinguish aborts from crashes,
221 // so be explicit.
Elliott Hughese0918552011-10-28 17:18:29 -0700222 AbortState state;
Elliott Hughes9ee5f9c2012-02-03 18:33:16 -0800223 LOG(INTERNAL_FATAL) << Dumpable<AbortState>(state);
Elliott Hughesffe67362011-07-17 12:09:27 -0700224
Elliott Hughes8593fdb2012-04-21 20:53:44 -0700225 // Call the abort hook if we have one.
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700226 if (Runtime::Current() != NULL && Runtime::Current()->abort_ != NULL) {
Elliott Hughes6c1c69e2012-04-23 16:12:51 -0700227 LOG(INTERNAL_FATAL) << "Calling abort hook...";
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700228 Runtime::Current()->abort_();
229 // notreached
Elliott Hughes6c1c69e2012-04-23 16:12:51 -0700230 LOG(INTERNAL_FATAL) << "Unexpectedly returned from abort hook!";
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700231 }
232
Elliott Hughesd06a6c72012-05-30 17:59:06 -0700233#if defined(__BIONIC__)
Elliott Hughes6c1c69e2012-04-23 16:12:51 -0700234 // TODO: finish merging patches to fix abort(3) in bionic, then lose this!
235 // Bionic doesn't implement POSIX semantics for abort(3) in a multi-threaded
236 // process, so if we call abort(3) on a device, all threads in the process
Carl Shapiro69759ea2011-07-21 18:13:35 -0700237 // receive SIGABRT. debuggerd dumps the stack trace of the main
238 // thread, whether or not that was the thread that failed. By
239 // stuffing a value into a bogus address, we cause a segmentation
Elliott Hughesffe67362011-07-17 12:09:27 -0700240 // fault in the current thread, and get a useful log from debuggerd.
Elliott Hughes81ff3182012-03-23 20:35:56 -0700241 // We can also trivially tell the difference between a crash and
Elliott Hughesffe67362011-07-17 12:09:27 -0700242 // a deliberate abort by looking at the fault address.
243 *reinterpret_cast<char*>(0xdeadd00d) = 38;
Elliott Hughesd06a6c72012-05-30 17:59:06 -0700244#elif defined(__APPLE__)
245 // TODO: check that this actually gives good stack traces on the Mac!
246 pthread_kill(pthread_self(), SIGABRT);
247#else
248 // TODO: we ought to be able to use pthread_kill(3) here (or abort(3),
249 // which POSIX defines in terms of raise(3), which POSIX defines in terms
250 // of pthread_kill(3)). On Linux, though, libcorkscrew can't unwind through
251 // libpthread, which means the stacks we dump would be useless. Calling
252 // tgkill(2) directly avoids that.
253 syscall(__NR_tgkill, getpid(), GetTid(), SIGABRT);
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800254 // TODO: LLVM installs it's own SIGABRT handler so exit to be safe... Can we disable that?
255 exit(1);
Elliott Hughesd06a6c72012-05-30 17:59:06 -0700256#endif
Elliott Hughesffe67362011-07-17 12:09:27 -0700257 // notreached
258}
259
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700260bool Runtime::PreZygoteFork() {
261 heap_->PreZygoteFork();
262 return true;
263}
264
Elliott Hughesbf86d042011-08-31 17:53:14 -0700265void Runtime::CallExitHook(jint status) {
266 if (exit_ != NULL) {
Elliott Hughes34e06962012-04-09 13:55:55 -0700267 ScopedThreadStateChange tsc(Thread::Current(), kNative);
Elliott Hughesbf86d042011-08-31 17:53:14 -0700268 exit_(status);
269 LOG(WARNING) << "Exit hook returned instead of exiting!";
270 }
271}
272
Brian Carlstrom8a436592011-08-15 21:27:23 -0700273// Parse a string of the form /[0-9]+[kKmMgG]?/, which is used to specify
274// memory sizes. [kK] indicates kilobytes, [mM] megabytes, and
275// [gG] gigabytes.
276//
277// "s" should point just past the "-Xm?" part of the string.
Brian Carlstrom8a436592011-08-15 21:27:23 -0700278// "div" specifies a divisor, e.g. 1024 if the value must be a multiple
279// of 1024.
280//
281// The spec says the -Xmx and -Xms options must be multiples of 1024. It
282// doesn't say anything about -Xss.
283//
284// Returns 0 (a useless size) if "s" is malformed or specifies a low or
285// non-evenly-divisible value.
286//
Elliott Hughesc1f143d2011-12-01 17:31:10 -0800287size_t ParseMemoryOption(const char* s, size_t div) {
Brian Carlstrom8a436592011-08-15 21:27:23 -0700288 // strtoul accepts a leading [+-], which we don't want,
289 // so make sure our string starts with a decimal digit.
290 if (isdigit(*s)) {
Elliott Hughes398f64b2012-03-26 18:05:48 -0700291 char* s2;
292 size_t val = strtoul(s, &s2, 10);
Brian Carlstrom8a436592011-08-15 21:27:23 -0700293 if (s2 != s) {
294 // s2 should be pointing just after the number.
295 // If this is the end of the string, the user
296 // has specified a number of bytes. Otherwise,
297 // there should be exactly one more character
298 // that specifies a multiplier.
299 if (*s2 != '\0') {
Brian Carlstromf734cf52011-08-17 16:28:14 -0700300 // The remainder of the string is either a single multiplier
301 // character, or nothing to indicate that the value is in
302 // bytes.
303 char c = *s2++;
304 if (*s2 == '\0') {
305 size_t mul;
306 if (c == '\0') {
307 mul = 1;
308 } else if (c == 'k' || c == 'K') {
309 mul = KB;
310 } else if (c == 'm' || c == 'M') {
311 mul = MB;
312 } else if (c == 'g' || c == 'G') {
313 mul = GB;
Brian Carlstrom8a436592011-08-15 21:27:23 -0700314 } else {
Brian Carlstromf734cf52011-08-17 16:28:14 -0700315 // Unknown multiplier character.
Brian Carlstrom8a436592011-08-15 21:27:23 -0700316 return 0;
317 }
Brian Carlstromf734cf52011-08-17 16:28:14 -0700318
319 if (val <= std::numeric_limits<size_t>::max() / mul) {
320 val *= mul;
321 } else {
322 // Clamp to a multiple of 1024.
323 val = std::numeric_limits<size_t>::max() & ~(1024-1);
324 }
325 } else {
326 // There's more than one character after the numeric part.
327 return 0;
328 }
Brian Carlstrom8a436592011-08-15 21:27:23 -0700329 }
330 // The man page says that a -Xm value must be a multiple of 1024.
331 if (val % div == 0) {
332 return val;
333 }
Carl Shapirofc322c72011-07-27 00:20:01 -0700334 }
335 }
Brian Carlstrom8a436592011-08-15 21:27:23 -0700336 return 0;
Carl Shapirofc322c72011-07-27 00:20:01 -0700337}
338
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800339size_t ParseIntegerOrDie(const std::string& s) {
340 std::string::size_type colon = s.find(':');
341 if (colon == std::string::npos) {
Elliott Hughesbb1e8f02011-10-18 14:14:25 -0700342 LOG(FATAL) << "Missing integer: " << s;
343 }
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800344 const char* begin = &s[colon + 1];
Elliott Hughesbb1e8f02011-10-18 14:14:25 -0700345 char* end;
346 size_t result = strtoul(begin, &end, 10);
347 if (begin == end || *end != '\0') {
348 LOG(FATAL) << "Failed to parse integer in: " << s;
349 }
350 return result;
351}
352
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700353Runtime::ParsedOptions* Runtime::ParsedOptions::Create(const Options& options, bool ignore_unrecognized) {
Elliott Hughes90a33692011-08-30 13:27:07 -0700354 UniquePtr<ParsedOptions> parsed(new ParsedOptions());
Brian Carlstroma004aa92012-02-08 18:05:09 -0800355 const char* boot_class_path_string = getenv("BOOTCLASSPATH");
356 if (boot_class_path_string != NULL) {
357 parsed->boot_class_path_string_ = boot_class_path_string;
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700358 }
Brian Carlstroma004aa92012-02-08 18:05:09 -0800359 const char* class_path_string = getenv("CLASSPATH");
360 if (class_path_string != NULL) {
361 parsed->class_path_string_ = class_path_string;
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700362 }
Elliott Hughes67d92002012-03-26 15:08:51 -0700363 // -Xcheck:jni is off by default for regular builds but on by default in debug builds.
364 parsed->check_jni_ = kIsDebugBuild;
Elliott Hughes85d15452011-09-16 17:33:01 -0700365
Mathieu Chartier0051be62012-10-12 17:47:11 -0700366 parsed->heap_initial_size_ = Heap::kDefaultInitialSize;
367 parsed->heap_maximum_size_ = Heap::kDefaultMaximumSize;
368 parsed->heap_min_free_ = Heap::kDefaultMinFree;
369 parsed->heap_max_free_ = Heap::kDefaultMaxFree;
370 parsed->heap_target_utilization_ = Heap::kDefaultTargetUtilization;
Elliott Hughes6cf23882012-06-15 15:42:07 -0700371 parsed->heap_growth_limit_ = 0; // 0 means no growth limit.
372 parsed->stack_size_ = 0; // 0 means default.
Brian Carlstromf734cf52011-08-17 16:28:14 -0700373
Elliott Hughesd9c67be2012-02-02 19:54:06 -0800374 parsed->is_compiler_ = false;
Elliott Hughes9ca7a1f2011-10-11 14:29:52 -0700375 parsed->is_zygote_ = false;
Ian Rogers50ffee22012-11-20 11:47:44 -0800376 parsed->interpreter_only_ = false;
Mathieu Chartier069387a2012-06-18 12:01:01 -0700377 parsed->is_concurrent_gc_enabled_ = true;
Elliott Hughes9ca7a1f2011-10-11 14:29:52 -0700378
Elliott Hughesbb1e8f02011-10-18 14:14:25 -0700379 parsed->jni_globals_max_ = 0;
Elliott Hughesfc861622011-10-17 17:57:47 -0700380 parsed->lock_profiling_threshold_ = 0;
381 parsed->hook_is_sensitive_thread_ = NULL;
382
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700383 parsed->hook_vfprintf_ = vfprintf;
384 parsed->hook_exit_ = exit;
Elliott Hughes6c1c69e2012-04-23 16:12:51 -0700385 parsed->hook_abort_ = NULL; // We don't call abort(3) by default; see Runtime::Abort.
Brian Carlstrom8a436592011-08-15 21:27:23 -0700386
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800387// gLogVerbosity.class_linker = true; // TODO: don't check this in!
388// gLogVerbosity.compiler = true; // TODO: don't check this in!
389// gLogVerbosity.heap = true; // TODO: don't check this in!
390// gLogVerbosity.gc = true; // TODO: don't check this in!
391// gLogVerbosity.jdwp = true; // TODO: don't check this in!
392// gLogVerbosity.jni = true; // TODO: don't check this in!
393// gLogVerbosity.monitor = true; // TODO: don't check this in!
394// gLogVerbosity.startup = true; // TODO: don't check this in!
395// gLogVerbosity.third_party_jni = true; // TODO: don't check this in!
396// gLogVerbosity.threads = true; // TODO: don't check this in!
397
jeffhaob5e81852012-03-12 11:15:45 -0700398 parsed->method_trace_ = false;
399 parsed->method_trace_file_ = "/data/method-trace-file.bin";
400 parsed->method_trace_file_size_ = 10 * MB;
401
Brian Carlstrom8a436592011-08-15 21:27:23 -0700402 for (size_t i = 0; i < options.size(); ++i) {
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800403 const std::string option(options[i].first);
Brian Carlstrom0796af02011-10-12 14:31:45 -0700404 if (true && options[0].first == "-Xzygote") {
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700405 LOG(INFO) << "option[" << i << "]=" << option;
406 }
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800407 if (StartsWith(option, "-Xbootclasspath:")) {
Brian Carlstroma004aa92012-02-08 18:05:09 -0800408 parsed->boot_class_path_string_ = option.substr(strlen("-Xbootclasspath:")).data();
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700409 } else if (option == "-classpath" || option == "-cp") {
410 // TODO: support -Djava.class.path
411 i++;
412 if (i == options.size()) {
413 // TODO: usage
414 LOG(FATAL) << "Missing required class path value for " << option;
415 return NULL;
416 }
Brian Carlstroma004aa92012-02-08 18:05:09 -0800417 const StringPiece& value = options[i].first;
418 parsed->class_path_string_ = value.data();
419 } else if (option == "bootclasspath") {
420 parsed->boot_class_path_
421 = reinterpret_cast<const std::vector<const DexFile*>*>(options[i].second);
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800422 } else if (StartsWith(option, "-Ximage:")) {
Brian Carlstroma004aa92012-02-08 18:05:09 -0800423 parsed->image_ = option.substr(strlen("-Ximage:")).data();
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800424 } else if (StartsWith(option, "-Xcheck:jni")) {
Elliott Hughes515a5bc2011-08-17 11:08:34 -0700425 parsed->check_jni_ = true;
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800426 } else if (StartsWith(option, "-Xrunjdwp:") || StartsWith(option, "-agentlib:jdwp=")) {
427 std::string tail(option.substr(option[1] == 'X' ? 10 : 15));
Elliott Hughes3bb81562011-10-21 18:52:59 -0700428 if (tail == "help" || !Dbg::ParseJdwpOptions(tail)) {
429 LOG(FATAL) << "Example: -Xrunjdwp:transport=dt_socket,address=8000,server=y\n"
430 << "Example: -Xrunjdwp:transport=dt_socket,address=localhost:6500,server=n";
431 return NULL;
432 }
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800433 } else if (StartsWith(option, "-Xms")) {
434 size_t size = ParseMemoryOption(option.substr(strlen("-Xms")).c_str(), 1024);
Brian Carlstromf734cf52011-08-17 16:28:14 -0700435 if (size == 0) {
436 if (ignore_unrecognized) {
437 continue;
438 }
Brian Carlstrom4a289ed2011-08-16 17:17:49 -0700439 // TODO: usage
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700440 LOG(FATAL) << "Failed to parse " << option;
Brian Carlstromf734cf52011-08-17 16:28:14 -0700441 return NULL;
442 }
443 parsed->heap_initial_size_ = size;
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800444 } else if (StartsWith(option, "-Xmx")) {
445 size_t size = ParseMemoryOption(option.substr(strlen("-Xmx")).c_str(), 1024);
Brian Carlstromf734cf52011-08-17 16:28:14 -0700446 if (size == 0) {
447 if (ignore_unrecognized) {
448 continue;
449 }
Brian Carlstrom4a289ed2011-08-16 17:17:49 -0700450 // TODO: usage
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700451 LOG(FATAL) << "Failed to parse " << option;
Brian Carlstromf734cf52011-08-17 16:28:14 -0700452 return NULL;
453 }
454 parsed->heap_maximum_size_ = size;
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800455 } else if (StartsWith(option, "-XX:HeapGrowthLimit=")) {
456 size_t size = ParseMemoryOption(option.substr(strlen("-XX:HeapGrowthLimit=")).c_str(), 1024);
jeffhaoc1160702011-10-27 15:48:45 -0700457 if (size == 0) {
458 if (ignore_unrecognized) {
459 continue;
460 }
461 // TODO: usage
462 LOG(FATAL) << "Failed to parse " << option;
463 return NULL;
464 }
465 parsed->heap_growth_limit_ = size;
Mathieu Chartier0051be62012-10-12 17:47:11 -0700466 } else if (StartsWith(option, "-XX:HeapMinFree=")) {
467 size_t size = ParseMemoryOption(option.substr(strlen("-XX:HeapMinFree=")).c_str(), 1024);
468 if (size == 0) {
469 if (ignore_unrecognized) {
470 continue;
471 }
472 // TODO: usage
473 LOG(FATAL) << "Failed to parse " << option;
474 return NULL;
475 }
476 parsed->heap_min_free_ = size;
477 } else if (StartsWith(option, "-XX:HeapMaxFree=")) {
478 size_t size = ParseMemoryOption(option.substr(strlen("-XX:HeapMaxFree=")).c_str(), 1024);
479 if (size == 0) {
480 if (ignore_unrecognized) {
481 continue;
482 }
483 // TODO: usage
484 LOG(FATAL) << "Failed to parse " << option;
485 return NULL;
486 }
487 parsed->heap_max_free_ = size;
488 } else if (StartsWith(option, "-XX:HeapTargetUtilization=")) {
489 std::istringstream iss(option.substr(strlen("-XX:HeapTargetUtilization=")));
490 double value;
491 iss >> value;
492 // Ensure that we have a value, there was no cruft after it and it satisfies a sensible range.
493 const bool sane_val = iss.good() && (value >= 0.1) && (value <= 0.9);
494 if (!sane_val) {
495 if (ignore_unrecognized) {
496 continue;
497 }
498 LOG(FATAL) << "Invalid option '" << option << "'";
499 return NULL;
500 }
501 parsed->heap_target_utilization_ = value;
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800502 } else if (StartsWith(option, "-Xss")) {
503 size_t size = ParseMemoryOption(option.substr(strlen("-Xss")).c_str(), 1);
Brian Carlstromf734cf52011-08-17 16:28:14 -0700504 if (size == 0) {
505 if (ignore_unrecognized) {
506 continue;
507 }
Brian Carlstrom4a289ed2011-08-16 17:17:49 -0700508 // TODO: usage
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700509 LOG(FATAL) << "Failed to parse " << option;
Brian Carlstromf734cf52011-08-17 16:28:14 -0700510 return NULL;
511 }
512 parsed->stack_size_ = size;
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800513 } else if (StartsWith(option, "-D")) {
514 parsed->properties_.push_back(option.substr(strlen("-D")));
515 } else if (StartsWith(option, "-Xjnitrace:")) {
516 parsed->jni_trace_ = option.substr(strlen("-Xjnitrace:"));
Brian Carlstrom5de8fe52011-10-16 14:10:09 -0700517 } else if (option == "compiler") {
Elliott Hughesd9c67be2012-02-02 19:54:06 -0800518 parsed->is_compiler_ = true;
Elliott Hughes9ca7a1f2011-10-11 14:29:52 -0700519 } else if (option == "-Xzygote") {
520 parsed->is_zygote_ = true;
Ian Rogers50ffee22012-11-20 11:47:44 -0800521 } else if (option == "-Xint") {
522 parsed->interpreter_only_ = true;
Mathieu Chartier069387a2012-06-18 12:01:01 -0700523 } else if (StartsWith(option, "-Xgc:")) {
524 std::vector<std::string> gc_options;
525 Split(option.substr(strlen("-Xgc:")), ',', gc_options);
526 for (size_t i = 0; i < gc_options.size(); ++i) {
527 if (gc_options[i] == "noconcurrent") {
528 parsed->is_concurrent_gc_enabled_ = false;
529 } else if (gc_options[i] == "concurrent") {
530 parsed->is_concurrent_gc_enabled_ = true;
531 } else {
532 LOG(WARNING) << "Ignoring unknown -Xgc option: " << gc_options[i];
533 }
534 }
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800535 } else if (StartsWith(option, "-verbose:")) {
Elliott Hughes0af55432011-08-17 18:37:28 -0700536 std::vector<std::string> verbose_options;
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800537 Split(option.substr(strlen("-verbose:")), ',', verbose_options);
Elliott Hughes0af55432011-08-17 18:37:28 -0700538 for (size_t i = 0; i < verbose_options.size(); ++i) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800539 if (verbose_options[i] == "class") {
540 gLogVerbosity.class_linker = true;
541 } else if (verbose_options[i] == "compiler") {
542 gLogVerbosity.compiler = true;
543 } else if (verbose_options[i] == "heap") {
544 gLogVerbosity.heap = true;
545 } else if (verbose_options[i] == "gc") {
546 gLogVerbosity.gc = true;
547 } else if (verbose_options[i] == "jdwp") {
548 gLogVerbosity.jdwp = true;
549 } else if (verbose_options[i] == "jni") {
550 gLogVerbosity.jni = true;
551 } else if (verbose_options[i] == "monitor") {
552 gLogVerbosity.monitor = true;
553 } else if (verbose_options[i] == "startup") {
554 gLogVerbosity.startup = true;
555 } else if (verbose_options[i] == "third-party-jni") {
556 gLogVerbosity.third_party_jni = true;
557 } else if (verbose_options[i] == "threads") {
558 gLogVerbosity.threads = true;
559 } else {
560 LOG(WARNING) << "Ignoring unknown -verbose option: " << verbose_options[i];
561 }
Elliott Hughes0af55432011-08-17 18:37:28 -0700562 }
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800563 } else if (StartsWith(option, "-Xjnigreflimit:")) {
Elliott Hughesbb1e8f02011-10-18 14:14:25 -0700564 parsed->jni_globals_max_ = ParseIntegerOrDie(option);
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800565 } else if (StartsWith(option, "-Xlockprofthreshold:")) {
Elliott Hughesbb1e8f02011-10-18 14:14:25 -0700566 parsed->lock_profiling_threshold_ = ParseIntegerOrDie(option);
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800567 } else if (StartsWith(option, "-Xstacktracefile:")) {
Elliott Hughes206c20d2012-06-28 11:05:37 -0700568 parsed->stack_trace_file_ = option.substr(strlen("-Xstacktracefile:"));
Elliott Hughesfc861622011-10-17 17:57:47 -0700569 } else if (option == "sensitiveThread") {
Ian Rogers1b09b092012-08-20 15:35:52 -0700570 parsed->hook_is_sensitive_thread_ = reinterpret_cast<bool (*)()>(const_cast<void*>(options[i].second));
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700571 } else if (option == "vfprintf") {
Ian Rogers1b09b092012-08-20 15:35:52 -0700572 parsed->hook_vfprintf_ =
573 reinterpret_cast<int (*)(FILE *, const char*, va_list)>(const_cast<void*>(options[i].second));
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700574 } else if (option == "exit") {
Ian Rogers1b09b092012-08-20 15:35:52 -0700575 parsed->hook_exit_ = reinterpret_cast<void(*)(jint)>(const_cast<void*>(options[i].second));
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700576 } else if (option == "abort") {
Ian Rogers1b09b092012-08-20 15:35:52 -0700577 parsed->hook_abort_ = reinterpret_cast<void(*)()>(const_cast<void*>(options[i].second));
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700578 } else if (option == "host-prefix") {
579 parsed->host_prefix_ = reinterpret_cast<const char*>(options[i].second);
Elliott Hughesb3e66df2012-01-12 14:49:18 -0800580 } else if (option == "-Xgenregmap" || option == "-Xgc:precise") {
581 // We silently ignore these for backwards compatibility.
jeffhaob5e81852012-03-12 11:15:45 -0700582 } else if (option == "-Xmethod-trace") {
583 parsed->method_trace_ = true;
584 } else if (StartsWith(option, "-Xmethod-trace-file:")) {
585 parsed->method_trace_file_ = option.substr(strlen("-Xmethod-trace-file:"));
586 } else if (StartsWith(option, "-Xmethod-trace-file-size:")) {
587 parsed->method_trace_file_size_ = ParseIntegerOrDie(option);
Elliott Hughese119a362012-05-22 17:37:06 -0700588 } else if (option == "-Xprofile:threadcpuclock") {
589 Trace::SetDefaultClockSource(kProfilerClockSourceThreadCpu);
590 } else if (option == "-Xprofile:wallclock") {
591 Trace::SetDefaultClockSource(kProfilerClockSourceWall);
592 } else if (option == "-Xprofile:dualclock") {
593 Trace::SetDefaultClockSource(kProfilerClockSourceDual);
Brian Carlstrom8a436592011-08-15 21:27:23 -0700594 } else {
595 if (!ignore_unrecognized) {
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700596 // TODO: print usage via vfprintf
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700597 LOG(ERROR) << "Unrecognized option " << option;
598 // TODO: this should exit, but for now tolerate unknown options
599 //return NULL;
Brian Carlstrom8a436592011-08-15 21:27:23 -0700600 }
601 }
602 }
603
Brian Carlstrom223f20f2012-02-04 23:06:55 -0800604 if (!parsed->is_compiler_ && parsed->image_.empty()) {
605 parsed->image_ += GetAndroidRoot();
606 parsed->image_ += "/framework/boot.art";
Brian Carlstrom5de8fe52011-10-16 14:10:09 -0700607 }
jeffhaoc1160702011-10-27 15:48:45 -0700608 if (parsed->heap_growth_limit_ == 0) {
609 parsed->heap_growth_limit_ = parsed->heap_maximum_size_;
610 }
Brian Carlstrom5de8fe52011-10-16 14:10:09 -0700611
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700612 return parsed.release();
Brian Carlstrom8a436592011-08-15 21:27:23 -0700613}
614
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700615bool Runtime::Create(const Options& options, bool ignore_unrecognized) {
Carl Shapiro2ed144c2011-07-26 16:52:08 -0700616 // TODO: acquire a static mutex on Runtime to avoid racing.
617 if (Runtime::instance_ != NULL) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700618 return false;
Carl Shapiro2ed144c2011-07-26 16:52:08 -0700619 }
Ian Rogersb726dcb2012-09-05 08:57:23 -0700620 Locks::Init();
Elliott Hughesdcc24742011-09-07 14:02:44 -0700621 instance_ = new Runtime;
622 if (!instance_->Init(options, ignore_unrecognized)) {
623 delete instance_;
624 instance_ = NULL;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700625 return false;
Carl Shapiro61e019d2011-07-14 16:53:09 -0700626 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700627 return true;
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700628}
Elliott Hughes0af55432011-08-17 18:37:28 -0700629
Ian Rogers365c1022012-06-22 15:05:28 -0700630static void CreateSystemClassLoader() {
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800631 if (Runtime::Current()->UseCompileTimeClassPath()) {
Brian Carlstromaded5f72011-10-07 17:15:04 -0700632 return;
633 }
634
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700635 ScopedObjectAccess soa(Thread::Current());
Brian Carlstromaded5f72011-10-07 17:15:04 -0700636
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800637 mirror::Class* class_loader_class =
638 soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_ClassLoader);
Ian Rogers365c1022012-06-22 15:05:28 -0700639 CHECK(Runtime::Current()->GetClassLinker()->EnsureInitialized(class_loader_class, true, true));
Brian Carlstromaded5f72011-10-07 17:15:04 -0700640
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800641 mirror::AbstractMethod* getSystemClassLoader =
642 class_loader_class->FindDirectMethod("getSystemClassLoader", "()Ljava/lang/ClassLoader;");
Brian Carlstromdf143242011-10-10 18:05:34 -0700643 CHECK(getSystemClassLoader != NULL);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700644
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800645 mirror::ClassLoader* class_loader =
646 down_cast<mirror::ClassLoader*>(InvokeWithJValues(soa, NULL, getSystemClassLoader, NULL).GetL());
Ian Rogers365c1022012-06-22 15:05:28 -0700647 CHECK(class_loader != NULL);
Jesse Wilson1b2b2f22011-11-22 11:47:44 -0500648
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700649 soa.Self()->SetClassLoaderOverride(class_loader);
Ian Rogers365c1022012-06-22 15:05:28 -0700650
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800651 mirror::Class* thread_class = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_Thread);
Ian Rogers365c1022012-06-22 15:05:28 -0700652 CHECK(Runtime::Current()->GetClassLinker()->EnsureInitialized(thread_class, true, true));
653
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800654 mirror::Field* contextClassLoader = thread_class->FindDeclaredInstanceField("contextClassLoader",
655 "Ljava/lang/ClassLoader;");
Jesse Wilson1b2b2f22011-11-22 11:47:44 -0500656 CHECK(contextClassLoader != NULL);
Ian Rogers365c1022012-06-22 15:05:28 -0700657
Ian Rogerscfaa4552012-11-26 21:00:08 -0800658 contextClassLoader->SetObject(soa.Self()->GetPeer(), class_loader);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700659}
660
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700661void Runtime::Start() {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800662 VLOG(startup) << "Runtime::Start entering";
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700663
664 CHECK(host_prefix_.empty()) << host_prefix_;
665
Elliott Hughes225f5a12012-06-11 11:23:48 -0700666 // Pre-allocate an OutOfMemoryError for the double-OOME case.
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700667 Thread* self = Thread::Current();
Elliott Hughes225f5a12012-06-11 11:23:48 -0700668 self->ThrowNewException("Ljava/lang/OutOfMemoryError;",
669 "OutOfMemoryError thrown while trying to throw OutOfMemoryError; no stack available");
670 pre_allocated_OutOfMemoryError_ = self->GetException();
671 self->ClearException();
Brian Carlstromf28bc5b2011-10-26 01:15:03 -0700672
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700673 // Restore main thread state to kNative as expected by native code.
674 self->TransitionFromRunnableToSuspended(kNative);
675
Brian Carlstrom5d40f182011-09-26 22:29:18 -0700676 started_ = true;
677
Brian Carlstromae826982011-11-09 01:33:42 -0800678 // InitNativeMethods needs to be after started_ so that the classes
679 // it touches will have methods linked to the oat file if necessary.
680 InitNativeMethods();
681
Ian Rogers365c1022012-06-22 15:05:28 -0700682 // Initialize well known thread group values that may be accessed threads while attaching.
683 InitThreadGroups(self);
684
Jesse Wilson9a6bae82011-11-14 14:57:30 -0500685 Thread::FinishStartup();
686
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700687 if (!is_zygote_) {
688 DidForkFromZygote();
689 }
Elliott Hughes9ca7a1f2011-10-11 14:29:52 -0700690
Elliott Hughes85d15452011-09-16 17:33:01 -0700691 StartDaemonThreads();
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700692
Brian Carlstromaded5f72011-10-07 17:15:04 -0700693 CreateSystemClassLoader();
694
Elliott Hughes225f5a12012-06-11 11:23:48 -0700695 self->GetJniEnv()->locals.AssertEmpty();
Elliott Hughes726079d2011-10-07 18:43:44 -0700696
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800697 VLOG(startup) << "Runtime::Start exiting";
Mathieu Chartier7664f5c2012-06-08 18:15:32 -0700698
699 finished_starting_ = true;
Elliott Hughes85d15452011-09-16 17:33:01 -0700700}
701
Ian Rogers120f1c72012-09-28 17:17:10 -0700702void Runtime::EndThreadBirth() EXCLUSIVE_LOCKS_REQUIRED(Locks::runtime_shutdown_lock_) {
703 DCHECK_GT(threads_being_born_, 0U);
704 threads_being_born_--;
705 if (shutting_down_started_ && threads_being_born_ == 0) {
Ian Rogersc604d732012-10-14 16:09:54 -0700706 shutdown_cond_->Broadcast(Thread::Current());
Ian Rogers120f1c72012-09-28 17:17:10 -0700707 }
708}
709
Brian Carlstromcaabb1b2011-10-11 18:09:13 -0700710void Runtime::DidForkFromZygote() {
Brian Carlstromcaabb1b2011-10-11 18:09:13 -0700711 is_zygote_ = false;
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700712
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700713 // Create the thread pool.
714 heap_->CreateThreadPool();
715
Brian Carlstromcaabb1b2011-10-11 18:09:13 -0700716 StartSignalCatcher();
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700717
718 // Start the JDWP thread. If the command-line debugger flags specified "suspend=y",
719 // this will pause the runtime, so we probably want this to come last.
720 Dbg::StartJdwp();
Brian Carlstromcaabb1b2011-10-11 18:09:13 -0700721}
722
723void Runtime::StartSignalCatcher() {
724 if (!is_zygote_) {
Elliott Hughes94ce37a2011-10-18 15:07:48 -0700725 signal_catcher_ = new SignalCatcher(stack_trace_file_);
Brian Carlstromcaabb1b2011-10-11 18:09:13 -0700726 }
727}
728
Elliott Hughes85d15452011-09-16 17:33:01 -0700729void Runtime::StartDaemonThreads() {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800730 VLOG(startup) << "Runtime::StartDaemonThreads entering";
Elliott Hughes85d15452011-09-16 17:33:01 -0700731
Elliott Hughes719b3232011-09-25 17:42:19 -0700732 Thread* self = Thread::Current();
Brian Carlstromaded5f72011-10-07 17:15:04 -0700733
734 // Must be in the kNative state for calling native methods.
Ian Rogers50b35e22012-10-04 10:09:15 -0700735 CHECK_EQ(self->GetState(), kNative);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700736
Elliott Hughes719b3232011-09-25 17:42:19 -0700737 JNIEnv* env = self->GetJniEnv();
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700738 env->CallStaticVoidMethod(WellKnownClasses::java_lang_Daemons,
739 WellKnownClasses::java_lang_Daemons_start);
740 if (env->ExceptionCheck()) {
741 env->ExceptionDescribe();
742 LOG(FATAL) << "Error starting java.lang.Daemons";
743 }
Elliott Hughes9ca7a1f2011-10-11 14:29:52 -0700744
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800745 VLOG(startup) << "Runtime::StartDaemonThreads exiting";
Carl Shapiro61e019d2011-07-14 16:53:09 -0700746}
747
Elliott Hughes0af55432011-08-17 18:37:28 -0700748bool Runtime::Init(const Options& raw_options, bool ignore_unrecognized) {
Elliott Hughesc1674ed2011-08-25 18:09:09 -0700749 CHECK_EQ(sysconf(_SC_PAGE_SIZE), kPageSize);
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700750
Elliott Hughes90a33692011-08-30 13:27:07 -0700751 UniquePtr<ParsedOptions> options(ParsedOptions::Create(raw_options, ignore_unrecognized));
752 if (options.get() == NULL) {
Brian Carlstrome24fa612011-09-29 00:53:55 -0700753 LOG(ERROR) << "Failed to parse options";
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700754 return false;
755 }
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800756 VLOG(startup) << "Runtime::Init -verbose:startup enabled";
Elliott Hughes7ede61e2011-09-14 18:18:06 -0700757
Elliott Hughes7c6169d2012-05-02 16:11:48 -0700758 QuasiAtomic::Startup();
759
Elliott Hughesbb1e8f02011-10-18 14:14:25 -0700760 SetJniGlobalsMax(options->jni_globals_max_);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800761 Monitor::Init(options->lock_profiling_threshold_, options->hook_is_sensitive_thread_);
Elliott Hughes32d6e1e2011-10-11 14:47:44 -0700762
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700763 host_prefix_ = options->host_prefix_;
Brian Carlstroma004aa92012-02-08 18:05:09 -0800764 boot_class_path_string_ = options->boot_class_path_string_;
765 class_path_string_ = options->class_path_string_;
Elliott Hughes7ede61e2011-09-14 18:18:06 -0700766 properties_ = options->properties_;
767
Elliott Hughesd9c67be2012-02-02 19:54:06 -0800768 is_compiler_ = options->is_compiler_;
Elliott Hughes9ca7a1f2011-10-11 14:29:52 -0700769 is_zygote_ = options->is_zygote_;
Ian Rogers50ffee22012-11-20 11:47:44 -0800770 interpreter_only_ = options->interpreter_only_;
Mathieu Chartier069387a2012-06-18 12:01:01 -0700771 is_concurrent_gc_enabled_ = options->is_concurrent_gc_enabled_;
Elliott Hughes9ca7a1f2011-10-11 14:29:52 -0700772
Elliott Hughes0af55432011-08-17 18:37:28 -0700773 vfprintf_ = options->hook_vfprintf_;
774 exit_ = options->hook_exit_;
775 abort_ = options->hook_abort_;
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700776
Elliott Hughesbe759c62011-09-08 19:38:21 -0700777 default_stack_size_ = options->stack_size_;
Elliott Hughes94ce37a2011-10-18 15:07:48 -0700778 stack_trace_file_ = options->stack_trace_file_;
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700779
Elliott Hughesc33a32b2011-10-11 18:18:07 -0700780 monitor_list_ = new MonitorList;
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800781 thread_list_ = new ThreadList;
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700782 intern_table_ = new InternTable;
783
Elliott Hughes0a1038b2012-06-14 16:24:17 -0700784 verifier::MethodVerifier::Init();
Logan Chiendd361c92012-04-10 23:40:37 +0800785
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800786 heap_ = new Heap(options->heap_initial_size_,
787 options->heap_growth_limit_,
Mathieu Chartier0051be62012-10-12 17:47:11 -0700788 options->heap_min_free_,
789 options->heap_max_free_,
790 options->heap_target_utilization_,
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800791 options->heap_maximum_size_,
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700792 options->image_,
793 options->is_concurrent_gc_enabled_);
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700794
Elliott Hughesc1674ed2011-08-25 18:09:09 -0700795 BlockSignals();
Elliott Hughes457005c2012-04-16 13:54:25 -0700796 InitPlatformSignalHandlers();
Elliott Hughesc1674ed2011-08-25 18:09:09 -0700797
Elliott Hughesa0957642011-09-02 14:27:33 -0700798 java_vm_ = new JavaVMExt(this, options.get());
Elliott Hughes515a5bc2011-08-17 11:08:34 -0700799
Elliott Hughesbe759c62011-09-08 19:38:21 -0700800 Thread::Startup();
Elliott Hughesd92bec42011-09-02 17:04:36 -0700801
Mathieu Chartier664bebf2012-11-12 16:54:11 -0800802 // ClassLinker needs an attached thread, but we can't fully attach a thread without creating
803 // objects. We can't supply a thread group yet; it will be fixed later. Since we are the main
804 // thread, we do not get a java peer.
805 Thread* self = Thread::Attach("main", false, NULL, false);
806 CHECK_EQ(self->thin_lock_id_, ThreadList::kMainId);
Ian Rogers120f1c72012-09-28 17:17:10 -0700807 CHECK(self != NULL);
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700808
Brian Carlstromf28bc5b2011-10-26 01:15:03 -0700809 // Set us to runnable so tools using a runtime can allocate and GC by default
Ian Rogers120f1c72012-09-28 17:17:10 -0700810 self->TransitionFromSuspendedToRunnable();
Brian Carlstromf28bc5b2011-10-26 01:15:03 -0700811
Ian Rogers141d6222012-04-05 12:23:06 -0700812 // Now we're attached, we can take the heap lock and validate the heap.
813 GetHeap()->EnableObjectValidation();
814
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800815 CHECK_GE(GetHeap()->GetSpaces().size(), 1U);
816 if (GetHeap()->GetSpaces()[0]->IsImageSpace()) {
Brian Carlstroma004aa92012-02-08 18:05:09 -0800817 class_linker_ = ClassLinker::CreateFromImage(intern_table_);
818 } else {
819 CHECK(options->boot_class_path_ != NULL);
820 CHECK_NE(options->boot_class_path_->size(), 0U);
821 class_linker_ = ClassLinker::CreateFromCompiler(*options->boot_class_path_, intern_table_);
822 }
823 CHECK(class_linker_ != NULL);
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700824
jeffhaob5e81852012-03-12 11:15:45 -0700825 method_trace_ = options->method_trace_;
826 method_trace_file_ = options->method_trace_file_;
827 method_trace_file_size_ = options->method_trace_file_size_;
828
829 if (options->method_trace_) {
830 Trace::Start(options->method_trace_file_.c_str(), -1, options->method_trace_file_size_, 0, false);
831 }
832
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800833 VLOG(startup) << "Runtime::Init exiting";
Carl Shapiro1fb86202011-06-27 17:43:13 -0700834 return true;
835}
836
Elliott Hughes038a8062011-09-18 14:12:41 -0700837void Runtime::InitNativeMethods() {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800838 VLOG(startup) << "Runtime::InitNativeMethods entering";
Elliott Hughesad7c2a32011-08-31 11:58:10 -0700839 Thread* self = Thread::Current();
840 JNIEnv* env = self->GetJniEnv();
841
Elliott Hughes418d20f2011-09-22 14:00:39 -0700842 // Must be in the kNative state for calling native methods (JNI_OnLoad code).
Ian Rogers50b35e22012-10-04 10:09:15 -0700843 CHECK_EQ(self->GetState(), kNative);
Elliott Hughesad7c2a32011-08-31 11:58:10 -0700844
Elliott Hughes418d20f2011-09-22 14:00:39 -0700845 // First set up JniConstants, which is used by both the runtime's built-in native
846 // methods and libcore.
Elliott Hughesfea966e2011-09-22 10:26:20 -0700847 JniConstants::init(env);
Elliott Hugheseac76672012-05-24 21:56:51 -0700848 WellKnownClasses::Init(env);
Elliott Hughesfea966e2011-09-22 10:26:20 -0700849
Elliott Hughes418d20f2011-09-22 14:00:39 -0700850 // Then set up the native methods provided by the runtime itself.
Elliott Hughesad7c2a32011-08-31 11:58:10 -0700851 RegisterRuntimeNativeMethods(env);
852
Elliott Hughes418d20f2011-09-22 14:00:39 -0700853 // Then set up libcore, which is just a regular JNI library with a regular JNI_OnLoad.
854 // Most JNI libraries can just use System.loadLibrary, but libcore can't because it's
855 // the library that implements System.loadLibrary!
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700856 {
857 std::string mapped_name(StringPrintf(OS_SHARED_LIB_FORMAT_STR, "javacore"));
858 std::string reason;
859 self->TransitionFromSuspendedToRunnable();
860 if (!instance_->java_vm_->LoadNativeLibrary(mapped_name, NULL, reason)) {
861 LOG(FATAL) << "LoadNativeLibrary failed for \"" << mapped_name << "\": " << reason;
862 }
863 self->TransitionFromRunnableToSuspended(kNative);
864 }
Ian Rogersef28b142012-11-30 14:22:18 -0800865
866 // Initialize well known classes that may invoke runtime native methods.
867 WellKnownClasses::LateInit(env);
868
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800869 VLOG(startup) << "Runtime::InitNativeMethods exiting";
Elliott Hughesad7c2a32011-08-31 11:58:10 -0700870}
871
Ian Rogers365c1022012-06-22 15:05:28 -0700872void Runtime::InitThreadGroups(Thread* self) {
873 JNIEnvExt* env = self->GetJniEnv();
874 ScopedJniEnvLocalRefState env_state(env);
875 main_thread_group_ =
876 env->NewGlobalRef(env->GetStaticObjectField(WellKnownClasses::java_lang_ThreadGroup,
877 WellKnownClasses::java_lang_ThreadGroup_mainThreadGroup));
Brian Carlstrom034f76b2012-08-01 15:51:58 -0700878 CHECK(main_thread_group_ != NULL || IsCompiler());
Ian Rogers365c1022012-06-22 15:05:28 -0700879 system_thread_group_ =
880 env->NewGlobalRef(env->GetStaticObjectField(WellKnownClasses::java_lang_ThreadGroup,
881 WellKnownClasses::java_lang_ThreadGroup_systemThreadGroup));
Brian Carlstrom034f76b2012-08-01 15:51:58 -0700882 CHECK(system_thread_group_ != NULL || IsCompiler());
883}
884
885jobject Runtime::GetMainThreadGroup() const {
886 CHECK(main_thread_group_ != NULL || IsCompiler());
887 return main_thread_group_;
888}
889
890jobject Runtime::GetSystemThreadGroup() const {
891 CHECK(system_thread_group_ != NULL || IsCompiler());
892 return system_thread_group_;
Ian Rogers365c1022012-06-22 15:05:28 -0700893}
894
Elliott Hughesad7c2a32011-08-31 11:58:10 -0700895void Runtime::RegisterRuntimeNativeMethods(JNIEnv* env) {
896#define REGISTER(FN) extern void FN(JNIEnv*); FN(env)
Ian Rogers5167c972012-02-03 10:41:20 -0800897 // Register Throwable first so that registration of other native methods can throw exceptions
898 REGISTER(register_java_lang_Throwable);
Brian Carlstromf91c8c32011-09-21 17:30:34 -0700899 REGISTER(register_dalvik_system_DexFile);
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700900 REGISTER(register_dalvik_system_VMDebug);
Elliott Hughes7ede61e2011-09-14 18:18:06 -0700901 REGISTER(register_dalvik_system_VMRuntime);
Elliott Hughes8daa0922011-09-11 13:46:25 -0700902 REGISTER(register_dalvik_system_VMStack);
Elliott Hughes01158d72011-09-19 19:47:10 -0700903 REGISTER(register_dalvik_system_Zygote);
Elliott Hughesd369bb72011-09-12 14:41:14 -0700904 REGISTER(register_java_lang_Class);
Elliott Hughesbf86d042011-08-31 17:53:14 -0700905 REGISTER(register_java_lang_Object);
906 REGISTER(register_java_lang_Runtime);
907 REGISTER(register_java_lang_String);
908 REGISTER(register_java_lang_System);
Elliott Hughes8daa0922011-09-11 13:46:25 -0700909 REGISTER(register_java_lang_Thread);
Elliott Hughes64bf5a32011-09-20 14:43:12 -0700910 REGISTER(register_java_lang_VMClassLoader);
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700911 REGISTER(register_java_lang_reflect_Array);
Elliott Hughes2a20cfd2011-09-23 19:30:41 -0700912 REGISTER(register_java_lang_reflect_Constructor);
Brian Carlstromf867b6f2011-09-16 12:17:25 -0700913 REGISTER(register_java_lang_reflect_Field);
914 REGISTER(register_java_lang_reflect_Method);
Jesse Wilson95caa792011-10-12 18:14:17 -0400915 REGISTER(register_java_lang_reflect_Proxy);
Elliott Hughesbf86d042011-08-31 17:53:14 -0700916 REGISTER(register_java_util_concurrent_atomic_AtomicLong);
Brian Carlstrom395520e2011-09-25 19:35:00 -0700917 REGISTER(register_org_apache_harmony_dalvik_ddmc_DdmServer);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -0700918 REGISTER(register_org_apache_harmony_dalvik_ddmc_DdmVmInternal);
Elliott Hughes5ee7a8b2011-09-13 16:40:07 -0700919 REGISTER(register_sun_misc_Unsafe);
Elliott Hughesad7c2a32011-08-31 11:58:10 -0700920#undef REGISTER
921}
922
Elliott Hughesc967f782012-04-16 10:23:15 -0700923void Runtime::DumpForSigQuit(std::ostream& os) {
Elliott Hughescac6cc72011-11-03 20:31:21 -0700924 GetClassLinker()->DumpForSigQuit(os);
925 GetInternTable()->DumpForSigQuit(os);
Elliott Hughesae80b492012-04-24 10:43:17 -0700926 GetJavaVM()->DumpForSigQuit(os);
Elliott Hughesc967f782012-04-16 10:23:15 -0700927 GetHeap()->DumpForSigQuit(os);
Elliott Hughes42ee1422011-09-06 12:33:32 -0700928 os << "\n";
Elliott Hughes8daa0922011-09-11 13:46:25 -0700929
Elliott Hughesc967f782012-04-16 10:23:15 -0700930 thread_list_->DumpForSigQuit(os);
Ian Rogers56edc432013-01-18 16:51:51 -0800931 BaseMutex::DumpAll(os);
Elliott Hughese27955c2011-08-26 15:21:24 -0700932}
933
Elliott Hughes21a5bf22011-12-07 14:35:20 -0800934void Runtime::DumpLockHolders(std::ostream& os) {
Ian Rogersb726dcb2012-09-05 08:57:23 -0700935 uint64_t mutator_lock_owner = Locks::mutator_lock_->GetExclusiveOwnerTid();
Elliott Hughes21a5bf22011-12-07 14:35:20 -0800936 pid_t thread_list_lock_owner = GetThreadList()->GetLockOwner();
937 pid_t classes_lock_owner = GetClassLinker()->GetClassesLockOwner();
938 pid_t dex_lock_owner = GetClassLinker()->GetDexLockOwner();
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700939 if ((thread_list_lock_owner | classes_lock_owner | dex_lock_owner) != 0) {
940 os << "Mutator lock exclusive owner tid: " << mutator_lock_owner << "\n"
Elliott Hughes21a5bf22011-12-07 14:35:20 -0800941 << "ThreadList lock owner tid: " << thread_list_lock_owner << "\n"
942 << "ClassLinker classes lock owner tid: " << classes_lock_owner << "\n"
943 << "ClassLinker dex lock owner tid: " << dex_lock_owner << "\n";
944 }
945}
946
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700947void Runtime::SetStatsEnabled(bool new_state) {
948 if (new_state == true) {
949 GetStats()->Clear(~0);
950 // TODO: wouldn't it make more sense to clear _all_ threads' stats?
951 Thread::Current()->GetStats()->Clear(~0);
952 }
953 stats_enabled_ = new_state;
954}
955
956void Runtime::ResetStats(int kinds) {
957 GetStats()->Clear(kinds & 0xffff);
958 // TODO: wouldn't it make more sense to clear _all_ threads' stats?
959 Thread::Current()->GetStats()->Clear(kinds >> 16);
960}
961
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700962int32_t Runtime::GetStat(int kind) {
963 RuntimeStats* stats;
964 if (kind < (1<<16)) {
965 stats = GetStats();
966 } else {
967 stats = Thread::Current()->GetStats();
968 kind >>= 16;
969 }
970 switch (kind) {
971 case KIND_ALLOCATED_OBJECTS:
972 return stats->allocated_objects;
973 case KIND_ALLOCATED_BYTES:
974 return stats->allocated_bytes;
975 case KIND_FREED_OBJECTS:
976 return stats->freed_objects;
977 case KIND_FREED_BYTES:
978 return stats->freed_bytes;
979 case KIND_GC_INVOCATIONS:
980 return stats->gc_for_alloc_count;
981 case KIND_CLASS_INIT_COUNT:
982 return stats->class_init_count;
983 case KIND_CLASS_INIT_TIME:
984 // Convert ns to us, reduce to 32 bits.
Elliott Hughes398f64b2012-03-26 18:05:48 -0700985 return static_cast<int>(stats->class_init_time_ns / 1000);
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700986 case KIND_EXT_ALLOCATED_OBJECTS:
987 case KIND_EXT_ALLOCATED_BYTES:
988 case KIND_EXT_FREED_OBJECTS:
989 case KIND_EXT_FREED_BYTES:
990 return 0; // backward compatibility
991 default:
Elliott Hughes7b9d9962012-04-20 18:48:18 -0700992 LOG(FATAL) << "Unknown statistic " << kind;
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700993 return -1; // unreachable
994 }
995}
996
Elliott Hughesc1674ed2011-08-25 18:09:09 -0700997void Runtime::BlockSignals() {
Elliott Hughes457005c2012-04-16 13:54:25 -0700998 SignalSet signals;
999 signals.Add(SIGPIPE);
Elliott Hughesc1674ed2011-08-25 18:09:09 -07001000 // SIGQUIT is used to dump the runtime's state (including stack traces).
Elliott Hughes457005c2012-04-16 13:54:25 -07001001 signals.Add(SIGQUIT);
Elliott Hughes08795042012-04-03 14:48:52 -07001002 // SIGUSR1 is used to initiate a GC.
Elliott Hughes457005c2012-04-16 13:54:25 -07001003 signals.Add(SIGUSR1);
1004 signals.Block();
Elliott Hughesc1674ed2011-08-25 18:09:09 -07001005}
1006
Mathieu Chartier664bebf2012-11-12 16:54:11 -08001007bool Runtime::AttachCurrentThread(const char* thread_name, bool as_daemon, jobject thread_group,
1008 bool create_peer) {
1009 bool success = Thread::Attach(thread_name, as_daemon, thread_group, create_peer) != NULL;
Elliott Hughes22869a92012-03-27 14:08:24 -07001010 if (thread_name == NULL) {
1011 LOG(WARNING) << *Thread::Current() << " attached without supplying a name";
1012 }
Ian Rogers120f1c72012-09-28 17:17:10 -07001013 return success;
Carl Shapiro61e019d2011-07-14 16:53:09 -07001014}
1015
Elliott Hughesd92bec42011-09-02 17:04:36 -07001016void Runtime::DetachCurrentThread() {
Brian Carlstrom4d571432012-05-16 00:21:41 -07001017 Thread* self = Thread::Current();
1018 if (self == NULL) {
1019 LOG(FATAL) << "attempting to detach thread that is not attached";
1020 }
Ian Rogers0399dde2012-06-06 17:09:28 -07001021 if (self->HasManagedStack()) {
Elliott Hughes22869a92012-03-27 14:08:24 -07001022 LOG(FATAL) << *Thread::Current() << " attempting to detach while still running code";
1023 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001024 thread_list_->Unregister(self);
Carl Shapiro1fb86202011-06-27 17:43:13 -07001025}
1026
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001027void Runtime::VisitConcurrentRoots(RootVisitor* visitor, void* arg) {
Mathieu Chartier9ebae1f2012-10-15 17:38:16 -07001028 if (intern_table_->IsDirty()) {
1029 intern_table_->VisitRoots(visitor, arg);
1030 }
1031 if (class_linker_->IsDirty()) {
1032 class_linker_->VisitRoots(visitor, arg);
1033 }
1034}
1035
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001036void Runtime::VisitNonThreadRoots(RootVisitor* visitor, void* arg) {
Brian Carlstrome24fa612011-09-29 00:53:55 -07001037 java_vm_->VisitRoots(visitor, arg);
Elliott Hughes225f5a12012-06-11 11:23:48 -07001038 if (pre_allocated_OutOfMemoryError_ != NULL) {
1039 visitor(pre_allocated_OutOfMemoryError_, arg);
1040 }
Brian Carlstrome24fa612011-09-29 00:53:55 -07001041 visitor(jni_stub_array_, arg);
1042 visitor(abstract_method_error_stub_array_, arg);
Ian Rogers4f0d07c2011-10-06 23:38:47 -07001043 for (int i = 0; i < Runtime::kLastTrampolineMethodType; i++) {
1044 visitor(resolution_stub_array_[i], arg);
1045 }
Ian Rogers19846512012-02-24 11:42:47 -08001046 visitor(resolution_method_, arg);
Ian Rogers4f0d07c2011-10-06 23:38:47 -07001047 for (int i = 0; i < Runtime::kLastCalleeSaveType; i++) {
Elliott Hughes225f5a12012-06-11 11:23:48 -07001048 visitor(callee_save_methods_[i], arg);
Ian Rogers4f0d07c2011-10-06 23:38:47 -07001049 }
Brian Carlstrome24fa612011-09-29 00:53:55 -07001050}
1051
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001052void Runtime::VisitNonConcurrentRoots(RootVisitor* visitor, void* arg) {
Mathieu Chartier858f1c52012-10-17 17:45:55 -07001053 thread_list_->VisitRoots(visitor, arg);
1054 VisitNonThreadRoots(visitor, arg);
1055}
1056
Mathieu Chartier9ebae1f2012-10-15 17:38:16 -07001057void Runtime::DirtyRoots() {
Mathieu Chartier02b6a782012-10-26 13:51:26 -07001058 CHECK(intern_table_ != NULL);
Mathieu Chartier9ebae1f2012-10-15 17:38:16 -07001059 intern_table_->Dirty();
Mathieu Chartier02b6a782012-10-26 13:51:26 -07001060 CHECK(class_linker_ != NULL);
Mathieu Chartier9ebae1f2012-10-15 17:38:16 -07001061 class_linker_->Dirty();
1062}
1063
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001064void Runtime::VisitRoots(RootVisitor* visitor, void* arg) {
Mathieu Chartier9ebae1f2012-10-15 17:38:16 -07001065 VisitConcurrentRoots(visitor, arg);
1066 VisitNonConcurrentRoots(visitor, arg);
1067}
1068
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001069void Runtime::SetJniDlsymLookupStub(mirror::ByteArray* jni_stub_array) {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001070 CHECK(jni_stub_array != NULL) << " jni_stub_array=" << jni_stub_array;
1071 CHECK(jni_stub_array_ == NULL || jni_stub_array_ == jni_stub_array)
1072 << "jni_stub_array_=" << jni_stub_array_ << " jni_stub_array=" << jni_stub_array;
Brian Carlstrome24fa612011-09-29 00:53:55 -07001073 jni_stub_array_ = jni_stub_array;
1074}
1075
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001076void Runtime::SetAbstractMethodErrorStubArray(mirror::ByteArray* abstract_method_error_stub_array) {
Brian Carlstrome24fa612011-09-29 00:53:55 -07001077 CHECK(abstract_method_error_stub_array != NULL);
1078 CHECK(abstract_method_error_stub_array_ == NULL || abstract_method_error_stub_array_ == abstract_method_error_stub_array);
1079 abstract_method_error_stub_array_ = abstract_method_error_stub_array;
1080}
1081
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001082void Runtime::SetResolutionStubArray(mirror::ByteArray* resolution_stub_array, TrampolineType type) {
Ian Rogersad25ac52011-10-04 19:13:33 -07001083 CHECK(resolution_stub_array != NULL);
Ian Rogers1cb0a1d2011-10-06 15:24:35 -07001084 CHECK(!HasResolutionStubArray(type) || resolution_stub_array_[type] == resolution_stub_array);
1085 resolution_stub_array_[type] = resolution_stub_array;
Ian Rogersad25ac52011-10-04 19:13:33 -07001086}
1087
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001088mirror::AbstractMethod* Runtime::CreateResolutionMethod() {
1089 mirror::Class* method_class = mirror::AbstractMethod::GetMethodClass();
Ian Rogers50b35e22012-10-04 10:09:15 -07001090 Thread* self = Thread::Current();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001091 SirtRef<mirror::AbstractMethod>
1092 method(self, down_cast<mirror::AbstractMethod*>(method_class->AllocObject(self)));
Ian Rogers19846512012-02-24 11:42:47 -08001093 method->SetDeclaringClass(method_class);
1094 // TODO: use a special method for resolution method saves
1095 method->SetDexMethodIndex(DexFile::kDexNoIndex16);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001096 mirror::ByteArray* unknown_resolution_stub = GetResolutionStubArray(kUnknownMethod);
Ian Rogers19846512012-02-24 11:42:47 -08001097 CHECK(unknown_resolution_stub != NULL);
1098 method->SetCode(unknown_resolution_stub->GetData());
1099 return method.get();
1100}
1101
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001102mirror::AbstractMethod* Runtime::CreateCalleeSaveMethod(InstructionSet instruction_set,
1103 CalleeSaveType type) {
1104 mirror::Class* method_class = mirror::AbstractMethod::GetMethodClass();
Ian Rogers50b35e22012-10-04 10:09:15 -07001105 Thread* self = Thread::Current();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001106 SirtRef<mirror::AbstractMethod>
1107 method(self, down_cast<mirror::AbstractMethod*>(method_class->AllocObject(self)));
Ian Rogersff1ed472011-09-20 13:46:24 -07001108 method->SetDeclaringClass(method_class);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001109 // TODO: use a special method for callee saves
Ian Rogers19846512012-02-24 11:42:47 -08001110 method->SetDexMethodIndex(DexFile::kDexNoIndex16);
Brian Carlstrom3320cf42011-10-04 14:58:28 -07001111 method->SetCode(NULL);
Brian Carlstromae826982011-11-09 01:33:42 -08001112 if ((instruction_set == kThumb2) || (instruction_set == kArm)) {
Ian Rogers4f0d07c2011-10-06 23:38:47 -07001113 uint32_t ref_spills = (1 << art::arm::R5) | (1 << art::arm::R6) | (1 << art::arm::R7) |
1114 (1 << art::arm::R8) | (1 << art::arm::R10) | (1 << art::arm::R11);
1115 uint32_t arg_spills = (1 << art::arm::R1) | (1 << art::arm::R2) | (1 << art::arm::R3);
1116 uint32_t all_spills = (1 << art::arm::R4) | (1 << art::arm::R9);
jeffhaofa147e22012-10-12 17:03:32 -07001117 uint32_t core_spills = ref_spills | (type == kRefsAndArgs ? arg_spills : 0) |
1118 (type == kSaveAll ? all_spills : 0) | (1 << art::arm::LR);
Ian Rogers4f0d07c2011-10-06 23:38:47 -07001119 uint32_t fp_all_spills = (1 << art::arm::S0) | (1 << art::arm::S1) | (1 << art::arm::S2) |
1120 (1 << art::arm::S3) | (1 << art::arm::S4) | (1 << art::arm::S5) |
1121 (1 << art::arm::S6) | (1 << art::arm::S7) | (1 << art::arm::S8) |
1122 (1 << art::arm::S9) | (1 << art::arm::S10) | (1 << art::arm::S11) |
1123 (1 << art::arm::S12) | (1 << art::arm::S13) | (1 << art::arm::S14) |
1124 (1 << art::arm::S15) | (1 << art::arm::S16) | (1 << art::arm::S17) |
1125 (1 << art::arm::S18) | (1 << art::arm::S19) | (1 << art::arm::S20) |
1126 (1 << art::arm::S21) | (1 << art::arm::S22) | (1 << art::arm::S23) |
1127 (1 << art::arm::S24) | (1 << art::arm::S25) | (1 << art::arm::S26) |
1128 (1 << art::arm::S27) | (1 << art::arm::S28) | (1 << art::arm::S29) |
1129 (1 << art::arm::S30) | (1 << art::arm::S31);
1130 uint32_t fp_spills = type == kSaveAll ? fp_all_spills : 0;
1131 size_t frame_size = RoundUp((__builtin_popcount(core_spills) /* gprs */ +
1132 __builtin_popcount(fp_spills) /* fprs */ +
1133 1 /* Method* */) * kPointerSize, kStackAlignment);
Ian Rogers15fdb8c2011-09-25 15:45:07 -07001134 method->SetFrameSizeInBytes(frame_size);
Ian Rogers4f0d07c2011-10-06 23:38:47 -07001135 method->SetCoreSpillMask(core_spills);
1136 method->SetFpSpillMask(fp_spills);
jeffhao7fbee072012-08-24 17:56:54 -07001137 } else if (instruction_set == kMips) {
1138 uint32_t ref_spills = (1 << art::mips::S2) | (1 << art::mips::S3) | (1 << art::mips::S4) |
1139 (1 << art::mips::S5) | (1 << art::mips::S6) | (1 << art::mips::S7) |
1140 (1 << art::mips::FP);
1141 uint32_t arg_spills = (1 << art::mips::A1) | (1 << art::mips::A2) | (1 << art::mips::A3);
jeffhaofa147e22012-10-12 17:03:32 -07001142 uint32_t all_spills = (1 << art::mips::S0) | (1 << art::mips::S1);
jeffhao7fbee072012-08-24 17:56:54 -07001143 uint32_t core_spills = ref_spills | (type == kRefsAndArgs ? arg_spills : 0) |
jeffhaofa147e22012-10-12 17:03:32 -07001144 (type == kSaveAll ? all_spills : 0) | (1 << art::mips::RA);
jeffhao7fbee072012-08-24 17:56:54 -07001145 size_t frame_size = RoundUp((__builtin_popcount(core_spills) /* gprs */ +
jeffhao4eb68ed2012-10-17 16:41:07 -07001146 (type == kRefsAndArgs ? 0 : 5) /* reserve arg space */ +
jeffhao7fbee072012-08-24 17:56:54 -07001147 1 /* Method* */) * kPointerSize, kStackAlignment);
1148 method->SetFrameSizeInBytes(frame_size);
1149 method->SetCoreSpillMask(core_spills);
jeffhao07030602012-09-26 14:33:14 -07001150 method->SetFpSpillMask(0);
Brian Carlstromae826982011-11-09 01:33:42 -08001151 } else if (instruction_set == kX86) {
Ian Rogers7caad772012-03-30 01:07:54 -07001152 uint32_t ref_spills = (1 << art::x86::EBP) | (1 << art::x86::ESI) | (1 << art::x86::EDI);
1153 uint32_t arg_spills = (1 << art::x86::ECX) | (1 << art::x86::EDX) | (1 << art::x86::EBX);
1154 uint32_t core_spills = ref_spills | (type == kRefsAndArgs ? arg_spills : 0) |
1155 (1 << art::x86::kNumberOfCpuRegisters); // fake return address callee save
1156 size_t frame_size = RoundUp((__builtin_popcount(core_spills) /* gprs */ +
1157 1 /* Method* */) * kPointerSize, kStackAlignment);
1158 method->SetFrameSizeInBytes(frame_size);
1159 method->SetCoreSpillMask(core_spills);
Ian Rogersff1ed472011-09-20 13:46:24 -07001160 method->SetFpSpillMask(0);
1161 } else {
1162 UNIMPLEMENTED(FATAL);
1163 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001164 return method.get();
Ian Rogersff1ed472011-09-20 13:46:24 -07001165}
1166
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001167void Runtime::SetCalleeSaveMethod(mirror::AbstractMethod* method, CalleeSaveType type) {
Ian Rogers4f0d07c2011-10-06 23:38:47 -07001168 DCHECK_LT(static_cast<int>(type), static_cast<int>(kLastCalleeSaveType));
Elliott Hughes225f5a12012-06-11 11:23:48 -07001169 callee_save_methods_[type] = method;
Brian Carlstrome24fa612011-09-29 00:53:55 -07001170}
1171
jeffhao725a9572012-11-13 18:20:12 -08001172void Runtime::EnableMethodTracing(Trace* trace) {
jeffhao2692b572011-12-16 15:42:28 -08001173 CHECK(!IsMethodTracingActive());
jeffhao725a9572012-11-13 18:20:12 -08001174 if (instrumentation_ == NULL) {
1175 instrumentation_ = new Instrumentation();
1176 }
1177 instrumentation_->SetTrace(trace);
jeffhao2692b572011-12-16 15:42:28 -08001178}
1179
1180void Runtime::DisableMethodTracing() {
1181 CHECK(IsMethodTracingActive());
jeffhao725a9572012-11-13 18:20:12 -08001182 instrumentation_->RemoveTrace();
1183}
1184
1185bool Runtime::IsMethodTracingActive() const {
1186 return instrumentation_ != NULL && instrumentation_->GetTrace() != NULL;
1187}
1188
1189Instrumentation* Runtime::GetInstrumentation() const {
1190 CHECK(IsMethodTracingActive());
1191 return instrumentation_;
jeffhao2692b572011-12-16 15:42:28 -08001192}
1193
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001194const std::vector<const DexFile*>& Runtime::GetCompileTimeClassPath(jobject class_loader) {
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08001195 if (class_loader == NULL) {
1196 return GetClassLinker()->GetBootClassPath();
1197 }
1198 CHECK(UseCompileTimeClassPath());
1199 CompileTimeClassPaths::const_iterator it = compile_time_class_paths_.find(class_loader);
1200 CHECK(it != compile_time_class_paths_.end());
1201 return it->second;
1202}
1203
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001204void Runtime::SetCompileTimeClassPath(jobject class_loader, std::vector<const DexFile*>& class_path) {
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08001205 CHECK(!IsStarted());
1206 use_compile_time_class_path_ = true;
Elliott Hughesa0e18062012-04-13 15:59:59 -07001207 compile_time_class_paths_.Put(class_loader, class_path);
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08001208}
1209
Carl Shapiro1fb86202011-06-27 17:43:13 -07001210} // namespace art