blob: 79d1fb2604105ef135da2165d0ebbe5257ed1cd0 [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
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070027#include "class_linker.h"
Brian Carlstromaded5f72011-10-07 17:15:04 -070028#include "class_loader.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"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070033#include "heap.h"
Brian Carlstrome24fa612011-09-29 00:53:55 -070034#include "image.h"
Elliott Hughescf4c6c42011-09-01 15:16:42 -070035#include "intern_table.h"
Elliott Hughesc5f7c912011-08-18 14:00:42 -070036#include "jni_internal.h"
Elliott Hughes32d6e1e2011-10-11 14:47:44 -070037#include "monitor.h"
Brian Carlstrome24fa612011-09-29 00:53:55 -070038#include "oat_file.h"
Elliott Hughes726079d2011-10-07 18:43:44 -070039#include "ScopedLocalRef.h"
Ian Rogers00f7d0e2012-07-19 15:28:27 -070040#include "scoped_thread_state_change.h"
Elliott Hughese27955c2011-08-26 15:21:24 -070041#include "signal_catcher.h"
Elliott Hughes457005c2012-04-16 13:54:25 -070042#include "signal_set.h"
Ian Rogers1f539342012-10-03 21:09:42 -070043#include "sirt_ref.h"
Mathieu Chartier7469ebf2012-09-24 16:28:36 -070044#include "gc/space.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070045#include "thread.h"
Elliott Hughes8daa0922011-09-11 13:46:25 -070046#include "thread_list.h"
jeffhaob5e81852012-03-12 11:15:45 -070047#include "trace.h"
Elliott Hughes3bb81562011-10-21 18:52:59 -070048#include "UniquePtr.h"
Ian Rogers776ac1f2012-04-13 23:36:36 -070049#include "verifier/method_verifier.h"
Elliott Hugheseac76672012-05-24 21:56:51 -070050#include "well_known_classes.h"
Carl Shapiro61e019d2011-07-14 16:53:09 -070051
Logan Chien971bf3f2012-05-01 15:47:55 +080052#if defined(ART_USE_LLVM_COMPILER)
53#include "compiler_llvm/procedure_linkage_table.h"
54#endif
55
Elliott Hugheseac76672012-05-24 21:56:51 -070056#include "JniConstants.h" // Last to avoid LOG redefinition in ics-mr1-plus-art.
Elliott Hughes90a33692011-08-30 13:27:07 -070057
Carl Shapiro1fb86202011-06-27 17:43:13 -070058namespace art {
59
Carl Shapiro2ed144c2011-07-26 16:52:08 -070060Runtime* Runtime::instance_ = NULL;
61
Elliott Hughesdcc24742011-09-07 14:02:44 -070062Runtime::Runtime()
Elliott Hughesd9c67be2012-02-02 19:54:06 -080063 : is_compiler_(false),
64 is_zygote_(false),
Mathieu Chartier069387a2012-06-18 12:01:01 -070065 is_concurrent_gc_enabled_(true),
Elliott Hughes6cf23882012-06-15 15:42:07 -070066 default_stack_size_(0),
Elliott Hughesb3bd5f02012-03-08 21:05:27 -080067 heap_(NULL),
Elliott Hughesc33a32b2011-10-11 18:18:07 -070068 monitor_list_(NULL),
Elliott Hughesdcc24742011-09-07 14:02:44 -070069 thread_list_(NULL),
70 intern_table_(NULL),
71 class_linker_(NULL),
72 signal_catcher_(NULL),
73 java_vm_(NULL),
Elliott Hughes225f5a12012-06-11 11:23:48 -070074 pre_allocated_OutOfMemoryError_(NULL),
Brian Carlstrom16192862011-09-12 17:50:06 -070075 jni_stub_array_(NULL),
Brian Carlstrome24fa612011-09-29 00:53:55 -070076 abstract_method_error_stub_array_(NULL),
Ian Rogers19846512012-02-24 11:42:47 -080077 resolution_method_(NULL),
Ian Rogers7c3757f2012-02-15 17:18:53 -080078 system_class_loader_(NULL),
Ian Rogers120f1c72012-09-28 17:17:10 -070079 threads_being_born_(0),
Ian Rogersc604d732012-10-14 16:09:54 -070080 shutdown_cond_(new ConditionVariable("Runtime shutdown", *Locks::runtime_shutdown_lock_)),
Elliott Hughes6b355752012-01-13 16:49:08 -080081 shutting_down_(false),
Ian Rogers120f1c72012-09-28 17:17:10 -070082 shutting_down_started_(false),
Elliott Hughesdcc24742011-09-07 14:02:44 -070083 started_(false),
Mathieu Chartier7664f5c2012-06-08 18:15:32 -070084 finished_starting_(false),
Elliott Hughesdcc24742011-09-07 14:02:44 -070085 vfprintf_(NULL),
86 exit_(NULL),
Elliott Hughes9d5ccec2011-09-19 13:19:50 -070087 abort_(NULL),
jeffhao2692b572011-12-16 15:42:28 -080088 stats_enabled_(false),
Ian Rogers776ac1f2012-04-13 23:36:36 -070089 method_trace_(0),
90 method_trace_file_size_(0),
Elliott Hughesb3bd5f02012-03-08 21:05:27 -080091 tracer_(NULL),
Ian Rogers365c1022012-06-22 15:05:28 -070092 use_compile_time_class_path_(false),
93 main_thread_group_(NULL),
Logan Chien971bf3f2012-05-01 15:47:55 +080094 system_thread_group_(NULL)
95#if defined(ART_USE_LLVM_COMPILER)
96#if defined(__arm__)
97 , plt_(kArm)
98#elif defined(__mips__)
99 , plt_(kMips)
100#elif defined(__i386__)
101 , plt_(kX86)
102#endif
103#endif
104 {
Ian Rogers4f0d07c2011-10-06 23:38:47 -0700105 for (int i = 0; i < Runtime::kLastTrampolineMethodType; i++) {
106 resolution_stub_array_[i] = NULL;
107 }
108 for (int i = 0; i < Runtime::kLastCalleeSaveType; i++) {
Elliott Hughes225f5a12012-06-11 11:23:48 -0700109 callee_save_methods_[i] = NULL;
Ian Rogers4f0d07c2011-10-06 23:38:47 -0700110 }
Logan Chien971bf3f2012-05-01 15:47:55 +0800111
112#if defined(ART_USE_LLVM_COMPILER)
113 CHECK(plt_.AllocateTable()) << "Failed to allocate PLT";
114#endif
Elliott Hughesdcc24742011-09-07 14:02:44 -0700115}
116
Carl Shapiro61e019d2011-07-14 16:53:09 -0700117Runtime::~Runtime() {
Ian Rogers120f1c72012-09-28 17:17:10 -0700118 Thread* self = Thread::Current();
119 {
120 MutexLock mu(self, *Locks::runtime_shutdown_lock_);
121 shutting_down_started_ = true;
122 while (threads_being_born_ > 0) {
Ian Rogersc604d732012-10-14 16:09:54 -0700123 shutdown_cond_->Wait(self);
Ian Rogers120f1c72012-09-28 17:17:10 -0700124 }
125 shutting_down_ = true;
126 }
Elliott Hughes6b355752012-01-13 16:49:08 -0800127
jeffhaob5e81852012-03-12 11:15:45 -0700128 if (IsMethodTracingActive()) {
129 Trace::Shutdown();
130 }
131
Mathieu Chartiera6399032012-06-11 18:49:50 -0700132 // Make sure to let the GC complete if it is running.
Ian Rogers120f1c72012-09-28 17:17:10 -0700133 heap_->WaitForConcurrentGcToComplete(self);
Mathieu Chartiera6399032012-06-11 18:49:50 -0700134
Elliott Hughes5fe594f2011-09-08 12:33:17 -0700135 // Make sure our internal threads are dead before we start tearing down things they're using.
Elliott Hughese52e49b2012-04-02 16:05:44 -0700136 Dbg::StopJdwp();
Elliott Hughes5fe594f2011-09-08 12:33:17 -0700137 delete signal_catcher_;
138
Elliott Hughes038a8062011-09-18 14:12:41 -0700139 // Make sure all other non-daemon threads have terminated, and all daemon threads are suspended.
Elliott Hughes93e74e82011-09-13 11:07:03 -0700140 delete thread_list_;
Elliott Hughesc33a32b2011-10-11 18:18:07 -0700141 delete monitor_list_;
Elliott Hughes93e74e82011-09-13 11:07:03 -0700142
Carl Shapiro61e019d2011-07-14 16:53:09 -0700143 delete class_linker_;
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800144 delete heap_;
Elliott Hughes0a1038b2012-06-14 16:24:17 -0700145 verifier::MethodVerifier::Shutdown();
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700146 delete intern_table_;
Elliott Hughesc5f7c912011-08-18 14:00:42 -0700147 delete java_vm_;
Elliott Hughesc1674ed2011-08-25 18:09:09 -0700148 Thread::Shutdown();
Elliott Hughes7c6169d2012-05-02 16:11:48 -0700149 QuasiAtomic::Shutdown();
150
Carl Shapiro4acf4642011-07-26 18:54:13 -0700151 // TODO: acquire a static mutex on Runtime to avoid racing.
Brian Carlstrom4a289ed2011-08-16 17:17:49 -0700152 CHECK(instance_ == NULL || instance_ == this);
Carl Shapiro4acf4642011-07-26 18:54:13 -0700153 instance_ = NULL;
Carl Shapiro61e019d2011-07-14 16:53:09 -0700154}
155
Elliott Hughescac6cc72011-11-03 20:31:21 -0700156static bool gAborting = false;
157
Elliott Hughese0918552011-10-28 17:18:29 -0700158struct AbortState {
159 void Dump(std::ostream& os) {
Elliott Hughescac6cc72011-11-03 20:31:21 -0700160 if (gAborting) {
161 os << "Runtime aborting --- recursively, so no thread-specific detail!\n";
162 return;
163 }
164 gAborting = true;
Elliott Hughese0918552011-10-28 17:18:29 -0700165 os << "Runtime aborting...\n";
Elliott Hughes6c7d2442012-02-01 18:40:47 -0800166 if (Runtime::Current() == NULL) {
167 os << "(Runtime does not yet exist!)\n";
168 return;
169 }
Elliott Hughese0918552011-10-28 17:18:29 -0700170 Thread* self = Thread::Current();
171 if (self == NULL) {
172 os << "(Aborting thread was not attached to runtime!)\n";
173 } else {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700174 // TODO: we're aborting and the ScopedObjectAccess may attempt to acquire the mutator_lock_
175 // which may block indefinitely if there's a misbehaving thread holding it exclusively.
176 // The code below should be made robust to this.
177 ScopedObjectAccess soa(self);
Ian Rogers2f7f9b62012-10-10 18:24:05 -0700178 os << "Aborting thread:\n";
Elliott Hughes899e7892012-01-24 14:57:32 -0800179 self->Dump(os);
180 if (self->IsExceptionPending()) {
181 os << "Pending " << PrettyTypeOf(self->GetException()) << " on thread:\n"
182 << self->GetException()->Dump();
183 }
Elliott Hughese0918552011-10-28 17:18:29 -0700184 }
Ian Rogers2f7f9b62012-10-10 18:24:05 -0700185 DumpAllThreads(os, self);
186 }
187
188 void DumpAllThreads(std::ostream& os, Thread* self) NO_THREAD_SAFETY_ANALYSIS {
189 bool tll_already_held = Locks::thread_list_lock_->IsExclusiveHeld(self);
190 bool ml_already_held = Locks::mutator_lock_->IsSharedHeld(self);
Ian Rogersfbd22912012-10-12 14:21:10 -0700191 if (!tll_already_held || !ml_already_held) {
192 os << "Dumping all threads without appropriate locks held:"
193 << (!tll_already_held ? " thread list lock" : "")
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700194 << (!ml_already_held ? " mutator lock" : "")
195 << "\n";
Ian Rogers2f7f9b62012-10-10 18:24:05 -0700196 }
Ian Rogersfbd22912012-10-12 14:21:10 -0700197 os << "All threads:\n";
198 Runtime::Current()->GetThreadList()->DumpLocked(os);
Elliott Hughese0918552011-10-28 17:18:29 -0700199 }
200};
201
Elliott Hughes8593fdb2012-04-21 20:53:44 -0700202void Runtime::Abort() {
Elliott Hughes131aef82012-01-27 11:53:35 -0800203 // Ensure that we don't have multiple threads trying to abort at once,
204 // which would result in significantly worse diagnostics.
Ian Rogers50b35e22012-10-04 10:09:15 -0700205 MutexLock mu(Thread::Current(), *Locks::abort_lock_);
Elliott Hughes131aef82012-01-27 11:53:35 -0800206
Elliott Hughesffe67362011-07-17 12:09:27 -0700207 // Get any pending output out of the way.
208 fflush(NULL);
209
210 // Many people have difficulty distinguish aborts from crashes,
211 // so be explicit.
Elliott Hughese0918552011-10-28 17:18:29 -0700212 AbortState state;
Elliott Hughes9ee5f9c2012-02-03 18:33:16 -0800213 LOG(INTERNAL_FATAL) << Dumpable<AbortState>(state);
Elliott Hughesffe67362011-07-17 12:09:27 -0700214
Elliott Hughes8593fdb2012-04-21 20:53:44 -0700215 // Call the abort hook if we have one.
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700216 if (Runtime::Current() != NULL && Runtime::Current()->abort_ != NULL) {
Elliott Hughes6c1c69e2012-04-23 16:12:51 -0700217 LOG(INTERNAL_FATAL) << "Calling abort hook...";
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700218 Runtime::Current()->abort_();
219 // notreached
Elliott Hughes6c1c69e2012-04-23 16:12:51 -0700220 LOG(INTERNAL_FATAL) << "Unexpectedly returned from abort hook!";
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700221 }
222
Elliott Hughesd06a6c72012-05-30 17:59:06 -0700223#if defined(__BIONIC__)
Elliott Hughes6c1c69e2012-04-23 16:12:51 -0700224 // TODO: finish merging patches to fix abort(3) in bionic, then lose this!
225 // Bionic doesn't implement POSIX semantics for abort(3) in a multi-threaded
226 // process, so if we call abort(3) on a device, all threads in the process
Carl Shapiro69759ea2011-07-21 18:13:35 -0700227 // receive SIGABRT. debuggerd dumps the stack trace of the main
228 // thread, whether or not that was the thread that failed. By
229 // stuffing a value into a bogus address, we cause a segmentation
Elliott Hughesffe67362011-07-17 12:09:27 -0700230 // fault in the current thread, and get a useful log from debuggerd.
Elliott Hughes81ff3182012-03-23 20:35:56 -0700231 // We can also trivially tell the difference between a crash and
Elliott Hughesffe67362011-07-17 12:09:27 -0700232 // a deliberate abort by looking at the fault address.
233 *reinterpret_cast<char*>(0xdeadd00d) = 38;
Elliott Hughesd06a6c72012-05-30 17:59:06 -0700234#elif defined(__APPLE__)
235 // TODO: check that this actually gives good stack traces on the Mac!
236 pthread_kill(pthread_self(), SIGABRT);
237#else
238 // TODO: we ought to be able to use pthread_kill(3) here (or abort(3),
239 // which POSIX defines in terms of raise(3), which POSIX defines in terms
240 // of pthread_kill(3)). On Linux, though, libcorkscrew can't unwind through
241 // libpthread, which means the stacks we dump would be useless. Calling
242 // tgkill(2) directly avoids that.
243 syscall(__NR_tgkill, getpid(), GetTid(), SIGABRT);
244#endif
Elliott Hughesffe67362011-07-17 12:09:27 -0700245 // notreached
246}
247
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700248bool Runtime::PreZygoteFork() {
249 heap_->PreZygoteFork();
250 return true;
251}
252
Elliott Hughesbf86d042011-08-31 17:53:14 -0700253void Runtime::CallExitHook(jint status) {
254 if (exit_ != NULL) {
Elliott Hughes34e06962012-04-09 13:55:55 -0700255 ScopedThreadStateChange tsc(Thread::Current(), kNative);
Elliott Hughesbf86d042011-08-31 17:53:14 -0700256 exit_(status);
257 LOG(WARNING) << "Exit hook returned instead of exiting!";
258 }
259}
260
Brian Carlstrom8a436592011-08-15 21:27:23 -0700261// Parse a string of the form /[0-9]+[kKmMgG]?/, which is used to specify
262// memory sizes. [kK] indicates kilobytes, [mM] megabytes, and
263// [gG] gigabytes.
264//
265// "s" should point just past the "-Xm?" part of the string.
Brian Carlstrom8a436592011-08-15 21:27:23 -0700266// "div" specifies a divisor, e.g. 1024 if the value must be a multiple
267// of 1024.
268//
269// The spec says the -Xmx and -Xms options must be multiples of 1024. It
270// doesn't say anything about -Xss.
271//
272// Returns 0 (a useless size) if "s" is malformed or specifies a low or
273// non-evenly-divisible value.
274//
Elliott Hughesc1f143d2011-12-01 17:31:10 -0800275size_t ParseMemoryOption(const char* s, size_t div) {
Brian Carlstrom8a436592011-08-15 21:27:23 -0700276 // strtoul accepts a leading [+-], which we don't want,
277 // so make sure our string starts with a decimal digit.
278 if (isdigit(*s)) {
Elliott Hughes398f64b2012-03-26 18:05:48 -0700279 char* s2;
280 size_t val = strtoul(s, &s2, 10);
Brian Carlstrom8a436592011-08-15 21:27:23 -0700281 if (s2 != s) {
282 // s2 should be pointing just after the number.
283 // If this is the end of the string, the user
284 // has specified a number of bytes. Otherwise,
285 // there should be exactly one more character
286 // that specifies a multiplier.
287 if (*s2 != '\0') {
Brian Carlstromf734cf52011-08-17 16:28:14 -0700288 // The remainder of the string is either a single multiplier
289 // character, or nothing to indicate that the value is in
290 // bytes.
291 char c = *s2++;
292 if (*s2 == '\0') {
293 size_t mul;
294 if (c == '\0') {
295 mul = 1;
296 } else if (c == 'k' || c == 'K') {
297 mul = KB;
298 } else if (c == 'm' || c == 'M') {
299 mul = MB;
300 } else if (c == 'g' || c == 'G') {
301 mul = GB;
Brian Carlstrom8a436592011-08-15 21:27:23 -0700302 } else {
Brian Carlstromf734cf52011-08-17 16:28:14 -0700303 // Unknown multiplier character.
Brian Carlstrom8a436592011-08-15 21:27:23 -0700304 return 0;
305 }
Brian Carlstromf734cf52011-08-17 16:28:14 -0700306
307 if (val <= std::numeric_limits<size_t>::max() / mul) {
308 val *= mul;
309 } else {
310 // Clamp to a multiple of 1024.
311 val = std::numeric_limits<size_t>::max() & ~(1024-1);
312 }
313 } else {
314 // There's more than one character after the numeric part.
315 return 0;
316 }
Brian Carlstrom8a436592011-08-15 21:27:23 -0700317 }
318 // The man page says that a -Xm value must be a multiple of 1024.
319 if (val % div == 0) {
320 return val;
321 }
Carl Shapirofc322c72011-07-27 00:20:01 -0700322 }
323 }
Brian Carlstrom8a436592011-08-15 21:27:23 -0700324 return 0;
Carl Shapirofc322c72011-07-27 00:20:01 -0700325}
326
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800327size_t ParseIntegerOrDie(const std::string& s) {
328 std::string::size_type colon = s.find(':');
329 if (colon == std::string::npos) {
Elliott Hughesbb1e8f02011-10-18 14:14:25 -0700330 LOG(FATAL) << "Missing integer: " << s;
331 }
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800332 const char* begin = &s[colon + 1];
Elliott Hughesbb1e8f02011-10-18 14:14:25 -0700333 char* end;
334 size_t result = strtoul(begin, &end, 10);
335 if (begin == end || *end != '\0') {
336 LOG(FATAL) << "Failed to parse integer in: " << s;
337 }
338 return result;
339}
340
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700341Runtime::ParsedOptions* Runtime::ParsedOptions::Create(const Options& options, bool ignore_unrecognized) {
Elliott Hughes90a33692011-08-30 13:27:07 -0700342 UniquePtr<ParsedOptions> parsed(new ParsedOptions());
Brian Carlstroma004aa92012-02-08 18:05:09 -0800343 const char* boot_class_path_string = getenv("BOOTCLASSPATH");
344 if (boot_class_path_string != NULL) {
345 parsed->boot_class_path_string_ = boot_class_path_string;
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700346 }
Brian Carlstroma004aa92012-02-08 18:05:09 -0800347 const char* class_path_string = getenv("CLASSPATH");
348 if (class_path_string != NULL) {
349 parsed->class_path_string_ = class_path_string;
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700350 }
Elliott Hughes67d92002012-03-26 15:08:51 -0700351 // -Xcheck:jni is off by default for regular builds but on by default in debug builds.
352 parsed->check_jni_ = kIsDebugBuild;
Elliott Hughes85d15452011-09-16 17:33:01 -0700353
Mathieu Chartier0051be62012-10-12 17:47:11 -0700354 parsed->heap_initial_size_ = Heap::kDefaultInitialSize;
355 parsed->heap_maximum_size_ = Heap::kDefaultMaximumSize;
356 parsed->heap_min_free_ = Heap::kDefaultMinFree;
357 parsed->heap_max_free_ = Heap::kDefaultMaxFree;
358 parsed->heap_target_utilization_ = Heap::kDefaultTargetUtilization;
Elliott Hughes6cf23882012-06-15 15:42:07 -0700359 parsed->heap_growth_limit_ = 0; // 0 means no growth limit.
360 parsed->stack_size_ = 0; // 0 means default.
Brian Carlstromf734cf52011-08-17 16:28:14 -0700361
Elliott Hughesd9c67be2012-02-02 19:54:06 -0800362 parsed->is_compiler_ = false;
Elliott Hughes9ca7a1f2011-10-11 14:29:52 -0700363 parsed->is_zygote_ = 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.
480 const bool sane_val = iss.good() && (value >= 0.1) && (value <= 0.9);
481 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;
Mathieu Chartier069387a2012-06-18 12:01:01 -0700508 } else if (StartsWith(option, "-Xgc:")) {
509 std::vector<std::string> gc_options;
510 Split(option.substr(strlen("-Xgc:")), ',', gc_options);
511 for (size_t i = 0; i < gc_options.size(); ++i) {
512 if (gc_options[i] == "noconcurrent") {
513 parsed->is_concurrent_gc_enabled_ = false;
514 } else if (gc_options[i] == "concurrent") {
515 parsed->is_concurrent_gc_enabled_ = true;
516 } else {
517 LOG(WARNING) << "Ignoring unknown -Xgc option: " << gc_options[i];
518 }
519 }
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800520 } else if (StartsWith(option, "-verbose:")) {
Elliott Hughes0af55432011-08-17 18:37:28 -0700521 std::vector<std::string> verbose_options;
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800522 Split(option.substr(strlen("-verbose:")), ',', verbose_options);
Elliott Hughes0af55432011-08-17 18:37:28 -0700523 for (size_t i = 0; i < verbose_options.size(); ++i) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800524 if (verbose_options[i] == "class") {
525 gLogVerbosity.class_linker = true;
526 } else if (verbose_options[i] == "compiler") {
527 gLogVerbosity.compiler = true;
528 } else if (verbose_options[i] == "heap") {
529 gLogVerbosity.heap = true;
530 } else if (verbose_options[i] == "gc") {
531 gLogVerbosity.gc = true;
532 } else if (verbose_options[i] == "jdwp") {
533 gLogVerbosity.jdwp = true;
534 } else if (verbose_options[i] == "jni") {
535 gLogVerbosity.jni = true;
536 } else if (verbose_options[i] == "monitor") {
537 gLogVerbosity.monitor = true;
538 } else if (verbose_options[i] == "startup") {
539 gLogVerbosity.startup = true;
540 } else if (verbose_options[i] == "third-party-jni") {
541 gLogVerbosity.third_party_jni = true;
542 } else if (verbose_options[i] == "threads") {
543 gLogVerbosity.threads = true;
544 } else {
545 LOG(WARNING) << "Ignoring unknown -verbose option: " << verbose_options[i];
546 }
Elliott Hughes0af55432011-08-17 18:37:28 -0700547 }
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800548 } else if (StartsWith(option, "-Xjnigreflimit:")) {
Elliott Hughesbb1e8f02011-10-18 14:14:25 -0700549 parsed->jni_globals_max_ = ParseIntegerOrDie(option);
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800550 } else if (StartsWith(option, "-Xlockprofthreshold:")) {
Elliott Hughesbb1e8f02011-10-18 14:14:25 -0700551 parsed->lock_profiling_threshold_ = ParseIntegerOrDie(option);
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800552 } else if (StartsWith(option, "-Xstacktracefile:")) {
Elliott Hughes206c20d2012-06-28 11:05:37 -0700553 parsed->stack_trace_file_ = option.substr(strlen("-Xstacktracefile:"));
Elliott Hughesfc861622011-10-17 17:57:47 -0700554 } else if (option == "sensitiveThread") {
Ian Rogers1b09b092012-08-20 15:35:52 -0700555 parsed->hook_is_sensitive_thread_ = reinterpret_cast<bool (*)()>(const_cast<void*>(options[i].second));
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700556 } else if (option == "vfprintf") {
Ian Rogers1b09b092012-08-20 15:35:52 -0700557 parsed->hook_vfprintf_ =
558 reinterpret_cast<int (*)(FILE *, const char*, va_list)>(const_cast<void*>(options[i].second));
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700559 } else if (option == "exit") {
Ian Rogers1b09b092012-08-20 15:35:52 -0700560 parsed->hook_exit_ = reinterpret_cast<void(*)(jint)>(const_cast<void*>(options[i].second));
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700561 } else if (option == "abort") {
Ian Rogers1b09b092012-08-20 15:35:52 -0700562 parsed->hook_abort_ = reinterpret_cast<void(*)()>(const_cast<void*>(options[i].second));
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700563 } else if (option == "host-prefix") {
564 parsed->host_prefix_ = reinterpret_cast<const char*>(options[i].second);
Elliott Hughesb3e66df2012-01-12 14:49:18 -0800565 } else if (option == "-Xgenregmap" || option == "-Xgc:precise") {
566 // We silently ignore these for backwards compatibility.
jeffhaob5e81852012-03-12 11:15:45 -0700567 } else if (option == "-Xmethod-trace") {
568 parsed->method_trace_ = true;
569 } else if (StartsWith(option, "-Xmethod-trace-file:")) {
570 parsed->method_trace_file_ = option.substr(strlen("-Xmethod-trace-file:"));
571 } else if (StartsWith(option, "-Xmethod-trace-file-size:")) {
572 parsed->method_trace_file_size_ = ParseIntegerOrDie(option);
Elliott Hughese119a362012-05-22 17:37:06 -0700573 } else if (option == "-Xprofile:threadcpuclock") {
574 Trace::SetDefaultClockSource(kProfilerClockSourceThreadCpu);
575 } else if (option == "-Xprofile:wallclock") {
576 Trace::SetDefaultClockSource(kProfilerClockSourceWall);
577 } else if (option == "-Xprofile:dualclock") {
578 Trace::SetDefaultClockSource(kProfilerClockSourceDual);
Brian Carlstrom8a436592011-08-15 21:27:23 -0700579 } else {
580 if (!ignore_unrecognized) {
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700581 // TODO: print usage via vfprintf
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700582 LOG(ERROR) << "Unrecognized option " << option;
583 // TODO: this should exit, but for now tolerate unknown options
584 //return NULL;
Brian Carlstrom8a436592011-08-15 21:27:23 -0700585 }
586 }
587 }
588
Brian Carlstrom223f20f2012-02-04 23:06:55 -0800589 if (!parsed->is_compiler_ && parsed->image_.empty()) {
590 parsed->image_ += GetAndroidRoot();
591 parsed->image_ += "/framework/boot.art";
Brian Carlstrom5de8fe52011-10-16 14:10:09 -0700592 }
jeffhaoc1160702011-10-27 15:48:45 -0700593 if (parsed->heap_growth_limit_ == 0) {
594 parsed->heap_growth_limit_ = parsed->heap_maximum_size_;
595 }
Brian Carlstrom5de8fe52011-10-16 14:10:09 -0700596
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700597 return parsed.release();
Brian Carlstrom8a436592011-08-15 21:27:23 -0700598}
599
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700600bool Runtime::Create(const Options& options, bool ignore_unrecognized) {
Carl Shapiro2ed144c2011-07-26 16:52:08 -0700601 // TODO: acquire a static mutex on Runtime to avoid racing.
602 if (Runtime::instance_ != NULL) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700603 return false;
Carl Shapiro2ed144c2011-07-26 16:52:08 -0700604 }
Ian Rogersb726dcb2012-09-05 08:57:23 -0700605 Locks::Init();
Elliott Hughesdcc24742011-09-07 14:02:44 -0700606 instance_ = new Runtime;
607 if (!instance_->Init(options, ignore_unrecognized)) {
608 delete instance_;
609 instance_ = NULL;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700610 return false;
Carl Shapiro61e019d2011-07-14 16:53:09 -0700611 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700612 return true;
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700613}
Elliott Hughes0af55432011-08-17 18:37:28 -0700614
Ian Rogers365c1022012-06-22 15:05:28 -0700615static void CreateSystemClassLoader() {
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800616 if (Runtime::Current()->UseCompileTimeClassPath()) {
Brian Carlstromaded5f72011-10-07 17:15:04 -0700617 return;
618 }
619
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700620 ScopedObjectAccess soa(Thread::Current());
Brian Carlstromaded5f72011-10-07 17:15:04 -0700621
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700622 Class* class_loader_class = soa.Decode<Class*>(WellKnownClasses::java_lang_ClassLoader);
Ian Rogers365c1022012-06-22 15:05:28 -0700623 CHECK(Runtime::Current()->GetClassLinker()->EnsureInitialized(class_loader_class, true, true));
Brian Carlstromaded5f72011-10-07 17:15:04 -0700624
Mathieu Chartier66f19252012-09-18 08:57:04 -0700625 AbstractMethod* getSystemClassLoader = class_loader_class->FindDirectMethod("getSystemClassLoader", "()Ljava/lang/ClassLoader;");
Brian Carlstromdf143242011-10-10 18:05:34 -0700626 CHECK(getSystemClassLoader != NULL);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700627
Ian Rogers365c1022012-06-22 15:05:28 -0700628 ClassLoader* class_loader =
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700629 down_cast<ClassLoader*>(InvokeWithJValues(soa, NULL, getSystemClassLoader, NULL).GetL());
Ian Rogers365c1022012-06-22 15:05:28 -0700630 CHECK(class_loader != NULL);
Jesse Wilson1b2b2f22011-11-22 11:47:44 -0500631
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700632 soa.Self()->SetClassLoaderOverride(class_loader);
Ian Rogers365c1022012-06-22 15:05:28 -0700633
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700634 Class* thread_class = soa.Decode<Class*>(WellKnownClasses::java_lang_Thread);
Ian Rogers365c1022012-06-22 15:05:28 -0700635 CHECK(Runtime::Current()->GetClassLinker()->EnsureInitialized(thread_class, true, true));
636
637 Field* contextClassLoader = thread_class->FindDeclaredInstanceField("contextClassLoader",
638 "Ljava/lang/ClassLoader;");
Jesse Wilson1b2b2f22011-11-22 11:47:44 -0500639 CHECK(contextClassLoader != NULL);
Ian Rogers365c1022012-06-22 15:05:28 -0700640
Mathieu Chartierdbe6f462012-09-25 16:54:50 -0700641 contextClassLoader->SetObject(soa.Decode<Object*>(soa.Self()->GetPeer()), class_loader);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700642}
643
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700644void Runtime::Start() {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800645 VLOG(startup) << "Runtime::Start entering";
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700646
647 CHECK(host_prefix_.empty()) << host_prefix_;
648
Elliott Hughes225f5a12012-06-11 11:23:48 -0700649 // Relocate the OatFiles (ELF images).
Logan Chien0c717dd2012-03-28 18:31:07 +0800650 class_linker_->RelocateExecutable();
651
Elliott Hughes225f5a12012-06-11 11:23:48 -0700652 // Pre-allocate an OutOfMemoryError for the double-OOME case.
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700653 Thread* self = Thread::Current();
Elliott Hughes225f5a12012-06-11 11:23:48 -0700654 self->ThrowNewException("Ljava/lang/OutOfMemoryError;",
655 "OutOfMemoryError thrown while trying to throw OutOfMemoryError; no stack available");
656 pre_allocated_OutOfMemoryError_ = self->GetException();
657 self->ClearException();
Brian Carlstromf28bc5b2011-10-26 01:15:03 -0700658
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700659 // Restore main thread state to kNative as expected by native code.
660 self->TransitionFromRunnableToSuspended(kNative);
661
Brian Carlstrom5d40f182011-09-26 22:29:18 -0700662 started_ = true;
663
Brian Carlstromae826982011-11-09 01:33:42 -0800664 // InitNativeMethods needs to be after started_ so that the classes
665 // it touches will have methods linked to the oat file if necessary.
666 InitNativeMethods();
667
Ian Rogers365c1022012-06-22 15:05:28 -0700668 // Initialize well known thread group values that may be accessed threads while attaching.
669 InitThreadGroups(self);
670
Jesse Wilson9a6bae82011-11-14 14:57:30 -0500671 Thread::FinishStartup();
672
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700673 if (!is_zygote_) {
674 DidForkFromZygote();
675 }
Elliott Hughes9ca7a1f2011-10-11 14:29:52 -0700676
Elliott Hughes85d15452011-09-16 17:33:01 -0700677 StartDaemonThreads();
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700678
Brian Carlstromaded5f72011-10-07 17:15:04 -0700679 CreateSystemClassLoader();
680
Elliott Hughes225f5a12012-06-11 11:23:48 -0700681 self->GetJniEnv()->locals.AssertEmpty();
Elliott Hughes726079d2011-10-07 18:43:44 -0700682
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800683 VLOG(startup) << "Runtime::Start exiting";
Mathieu Chartier7664f5c2012-06-08 18:15:32 -0700684
685 finished_starting_ = true;
Elliott Hughes85d15452011-09-16 17:33:01 -0700686}
687
Ian Rogers120f1c72012-09-28 17:17:10 -0700688void Runtime::EndThreadBirth() EXCLUSIVE_LOCKS_REQUIRED(Locks::runtime_shutdown_lock_) {
689 DCHECK_GT(threads_being_born_, 0U);
690 threads_being_born_--;
691 if (shutting_down_started_ && threads_being_born_ == 0) {
Ian Rogersc604d732012-10-14 16:09:54 -0700692 shutdown_cond_->Broadcast(Thread::Current());
Ian Rogers120f1c72012-09-28 17:17:10 -0700693 }
694}
695
Brian Carlstromcaabb1b2011-10-11 18:09:13 -0700696void Runtime::DidForkFromZygote() {
Brian Carlstromcaabb1b2011-10-11 18:09:13 -0700697 is_zygote_ = false;
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700698
Brian Carlstromcaabb1b2011-10-11 18:09:13 -0700699 StartSignalCatcher();
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700700
701 // Start the JDWP thread. If the command-line debugger flags specified "suspend=y",
702 // this will pause the runtime, so we probably want this to come last.
703 Dbg::StartJdwp();
Brian Carlstromcaabb1b2011-10-11 18:09:13 -0700704}
705
706void Runtime::StartSignalCatcher() {
707 if (!is_zygote_) {
Elliott Hughes94ce37a2011-10-18 15:07:48 -0700708 signal_catcher_ = new SignalCatcher(stack_trace_file_);
Brian Carlstromcaabb1b2011-10-11 18:09:13 -0700709 }
710}
711
Elliott Hughes85d15452011-09-16 17:33:01 -0700712void Runtime::StartDaemonThreads() {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800713 VLOG(startup) << "Runtime::StartDaemonThreads entering";
Elliott Hughes85d15452011-09-16 17:33:01 -0700714
Elliott Hughes719b3232011-09-25 17:42:19 -0700715 Thread* self = Thread::Current();
Brian Carlstromaded5f72011-10-07 17:15:04 -0700716
717 // Must be in the kNative state for calling native methods.
Ian Rogers50b35e22012-10-04 10:09:15 -0700718 CHECK_EQ(self->GetState(), kNative);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700719
Elliott Hughes719b3232011-09-25 17:42:19 -0700720 JNIEnv* env = self->GetJniEnv();
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700721 env->CallStaticVoidMethod(WellKnownClasses::java_lang_Daemons,
722 WellKnownClasses::java_lang_Daemons_start);
723 if (env->ExceptionCheck()) {
724 env->ExceptionDescribe();
725 LOG(FATAL) << "Error starting java.lang.Daemons";
726 }
Elliott Hughes9ca7a1f2011-10-11 14:29:52 -0700727
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800728 VLOG(startup) << "Runtime::StartDaemonThreads exiting";
Carl Shapiro61e019d2011-07-14 16:53:09 -0700729}
730
Elliott Hughes0af55432011-08-17 18:37:28 -0700731bool Runtime::Init(const Options& raw_options, bool ignore_unrecognized) {
Elliott Hughesc1674ed2011-08-25 18:09:09 -0700732 CHECK_EQ(sysconf(_SC_PAGE_SIZE), kPageSize);
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700733
Elliott Hughes90a33692011-08-30 13:27:07 -0700734 UniquePtr<ParsedOptions> options(ParsedOptions::Create(raw_options, ignore_unrecognized));
735 if (options.get() == NULL) {
Brian Carlstrome24fa612011-09-29 00:53:55 -0700736 LOG(ERROR) << "Failed to parse options";
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700737 return false;
738 }
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800739 VLOG(startup) << "Runtime::Init -verbose:startup enabled";
Elliott Hughes7ede61e2011-09-14 18:18:06 -0700740
Elliott Hughes7c6169d2012-05-02 16:11:48 -0700741 QuasiAtomic::Startup();
742
Elliott Hughesbb1e8f02011-10-18 14:14:25 -0700743 SetJniGlobalsMax(options->jni_globals_max_);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800744 Monitor::Init(options->lock_profiling_threshold_, options->hook_is_sensitive_thread_);
Elliott Hughes32d6e1e2011-10-11 14:47:44 -0700745
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700746 host_prefix_ = options->host_prefix_;
Brian Carlstroma004aa92012-02-08 18:05:09 -0800747 boot_class_path_string_ = options->boot_class_path_string_;
748 class_path_string_ = options->class_path_string_;
Elliott Hughes7ede61e2011-09-14 18:18:06 -0700749 properties_ = options->properties_;
750
Elliott Hughesd9c67be2012-02-02 19:54:06 -0800751 is_compiler_ = options->is_compiler_;
Elliott Hughes9ca7a1f2011-10-11 14:29:52 -0700752 is_zygote_ = options->is_zygote_;
Mathieu Chartier069387a2012-06-18 12:01:01 -0700753 is_concurrent_gc_enabled_ = options->is_concurrent_gc_enabled_;
Elliott Hughes9ca7a1f2011-10-11 14:29:52 -0700754
Elliott Hughes0af55432011-08-17 18:37:28 -0700755 vfprintf_ = options->hook_vfprintf_;
756 exit_ = options->hook_exit_;
757 abort_ = options->hook_abort_;
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700758
Elliott Hughesbe759c62011-09-08 19:38:21 -0700759 default_stack_size_ = options->stack_size_;
Elliott Hughes94ce37a2011-10-18 15:07:48 -0700760 stack_trace_file_ = options->stack_trace_file_;
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700761
Elliott Hughesc33a32b2011-10-11 18:18:07 -0700762 monitor_list_ = new MonitorList;
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800763 thread_list_ = new ThreadList;
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700764 intern_table_ = new InternTable;
765
Elliott Hughes0a1038b2012-06-14 16:24:17 -0700766 verifier::MethodVerifier::Init();
Logan Chiendd361c92012-04-10 23:40:37 +0800767
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800768 heap_ = new Heap(options->heap_initial_size_,
769 options->heap_growth_limit_,
Mathieu Chartier0051be62012-10-12 17:47:11 -0700770 options->heap_min_free_,
771 options->heap_max_free_,
772 options->heap_target_utilization_,
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800773 options->heap_maximum_size_,
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700774 options->image_,
775 options->is_concurrent_gc_enabled_);
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700776
Elliott Hughesc1674ed2011-08-25 18:09:09 -0700777 BlockSignals();
Elliott Hughes457005c2012-04-16 13:54:25 -0700778 InitPlatformSignalHandlers();
Elliott Hughesc1674ed2011-08-25 18:09:09 -0700779
Elliott Hughesa0957642011-09-02 14:27:33 -0700780 java_vm_ = new JavaVMExt(this, options.get());
Elliott Hughes515a5bc2011-08-17 11:08:34 -0700781
Elliott Hughesbe759c62011-09-08 19:38:21 -0700782 Thread::Startup();
Elliott Hughesd92bec42011-09-02 17:04:36 -0700783
Elliott Hughes5fe594f2011-09-08 12:33:17 -0700784 // ClassLinker needs an attached thread, but we can't fully attach a thread
Elliott Hughes462c9442012-03-23 18:47:50 -0700785 // without creating objects. We can't supply a thread group yet; it will be fixed later.
Ian Rogers120f1c72012-09-28 17:17:10 -0700786 Thread* self = Thread::Attach("main", false, NULL);
787 CHECK(self != NULL);
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700788
Brian Carlstromf28bc5b2011-10-26 01:15:03 -0700789 // Set us to runnable so tools using a runtime can allocate and GC by default
Ian Rogers120f1c72012-09-28 17:17:10 -0700790 self->TransitionFromSuspendedToRunnable();
Brian Carlstromf28bc5b2011-10-26 01:15:03 -0700791
Ian Rogers141d6222012-04-05 12:23:06 -0700792 // Now we're attached, we can take the heap lock and validate the heap.
793 GetHeap()->EnableObjectValidation();
794
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800795 CHECK_GE(GetHeap()->GetSpaces().size(), 1U);
796 if (GetHeap()->GetSpaces()[0]->IsImageSpace()) {
Brian Carlstroma004aa92012-02-08 18:05:09 -0800797 class_linker_ = ClassLinker::CreateFromImage(intern_table_);
798 } else {
799 CHECK(options->boot_class_path_ != NULL);
800 CHECK_NE(options->boot_class_path_->size(), 0U);
801 class_linker_ = ClassLinker::CreateFromCompiler(*options->boot_class_path_, intern_table_);
802 }
803 CHECK(class_linker_ != NULL);
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700804
jeffhaob5e81852012-03-12 11:15:45 -0700805 method_trace_ = options->method_trace_;
806 method_trace_file_ = options->method_trace_file_;
807 method_trace_file_size_ = options->method_trace_file_size_;
808
809 if (options->method_trace_) {
810 Trace::Start(options->method_trace_file_.c_str(), -1, options->method_trace_file_size_, 0, false);
811 }
812
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800813 VLOG(startup) << "Runtime::Init exiting";
Carl Shapiro1fb86202011-06-27 17:43:13 -0700814 return true;
815}
816
Elliott Hughes038a8062011-09-18 14:12:41 -0700817void Runtime::InitNativeMethods() {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800818 VLOG(startup) << "Runtime::InitNativeMethods entering";
Elliott Hughesad7c2a32011-08-31 11:58:10 -0700819 Thread* self = Thread::Current();
820 JNIEnv* env = self->GetJniEnv();
821
Elliott Hughes418d20f2011-09-22 14:00:39 -0700822 // Must be in the kNative state for calling native methods (JNI_OnLoad code).
Ian Rogers50b35e22012-10-04 10:09:15 -0700823 CHECK_EQ(self->GetState(), kNative);
Elliott Hughesad7c2a32011-08-31 11:58:10 -0700824
Elliott Hughes418d20f2011-09-22 14:00:39 -0700825 // First set up JniConstants, which is used by both the runtime's built-in native
826 // methods and libcore.
Elliott Hughesfea966e2011-09-22 10:26:20 -0700827 JniConstants::init(env);
Elliott Hugheseac76672012-05-24 21:56:51 -0700828 WellKnownClasses::Init(env);
Elliott Hughesfea966e2011-09-22 10:26:20 -0700829
Elliott Hughes418d20f2011-09-22 14:00:39 -0700830 // Then set up the native methods provided by the runtime itself.
Elliott Hughesad7c2a32011-08-31 11:58:10 -0700831 RegisterRuntimeNativeMethods(env);
832
Elliott Hughes418d20f2011-09-22 14:00:39 -0700833 // Then set up libcore, which is just a regular JNI library with a regular JNI_OnLoad.
834 // Most JNI libraries can just use System.loadLibrary, but libcore can't because it's
835 // the library that implements System.loadLibrary!
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700836 {
837 std::string mapped_name(StringPrintf(OS_SHARED_LIB_FORMAT_STR, "javacore"));
838 std::string reason;
839 self->TransitionFromSuspendedToRunnable();
840 if (!instance_->java_vm_->LoadNativeLibrary(mapped_name, NULL, reason)) {
841 LOG(FATAL) << "LoadNativeLibrary failed for \"" << mapped_name << "\": " << reason;
842 }
843 self->TransitionFromRunnableToSuspended(kNative);
844 }
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800845 VLOG(startup) << "Runtime::InitNativeMethods exiting";
Elliott Hughesad7c2a32011-08-31 11:58:10 -0700846}
847
Ian Rogers365c1022012-06-22 15:05:28 -0700848void Runtime::InitThreadGroups(Thread* self) {
849 JNIEnvExt* env = self->GetJniEnv();
850 ScopedJniEnvLocalRefState env_state(env);
851 main_thread_group_ =
852 env->NewGlobalRef(env->GetStaticObjectField(WellKnownClasses::java_lang_ThreadGroup,
853 WellKnownClasses::java_lang_ThreadGroup_mainThreadGroup));
Brian Carlstrom034f76b2012-08-01 15:51:58 -0700854 CHECK(main_thread_group_ != NULL || IsCompiler());
Ian Rogers365c1022012-06-22 15:05:28 -0700855 system_thread_group_ =
856 env->NewGlobalRef(env->GetStaticObjectField(WellKnownClasses::java_lang_ThreadGroup,
857 WellKnownClasses::java_lang_ThreadGroup_systemThreadGroup));
Brian Carlstrom034f76b2012-08-01 15:51:58 -0700858 CHECK(system_thread_group_ != NULL || IsCompiler());
859}
860
861jobject Runtime::GetMainThreadGroup() const {
862 CHECK(main_thread_group_ != NULL || IsCompiler());
863 return main_thread_group_;
864}
865
866jobject Runtime::GetSystemThreadGroup() const {
867 CHECK(system_thread_group_ != NULL || IsCompiler());
868 return system_thread_group_;
Ian Rogers365c1022012-06-22 15:05:28 -0700869}
870
Elliott Hughesad7c2a32011-08-31 11:58:10 -0700871void Runtime::RegisterRuntimeNativeMethods(JNIEnv* env) {
872#define REGISTER(FN) extern void FN(JNIEnv*); FN(env)
Ian Rogers5167c972012-02-03 10:41:20 -0800873 // Register Throwable first so that registration of other native methods can throw exceptions
874 REGISTER(register_java_lang_Throwable);
Brian Carlstromf91c8c32011-09-21 17:30:34 -0700875 REGISTER(register_dalvik_system_DexFile);
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700876 REGISTER(register_dalvik_system_VMDebug);
Elliott Hughes7ede61e2011-09-14 18:18:06 -0700877 REGISTER(register_dalvik_system_VMRuntime);
Elliott Hughes8daa0922011-09-11 13:46:25 -0700878 REGISTER(register_dalvik_system_VMStack);
Elliott Hughes01158d72011-09-19 19:47:10 -0700879 REGISTER(register_dalvik_system_Zygote);
Elliott Hughesd369bb72011-09-12 14:41:14 -0700880 REGISTER(register_java_lang_Class);
Elliott Hughesbf86d042011-08-31 17:53:14 -0700881 REGISTER(register_java_lang_Object);
882 REGISTER(register_java_lang_Runtime);
883 REGISTER(register_java_lang_String);
884 REGISTER(register_java_lang_System);
Elliott Hughes8daa0922011-09-11 13:46:25 -0700885 REGISTER(register_java_lang_Thread);
Elliott Hughes64bf5a32011-09-20 14:43:12 -0700886 REGISTER(register_java_lang_VMClassLoader);
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700887 REGISTER(register_java_lang_reflect_Array);
Elliott Hughes2a20cfd2011-09-23 19:30:41 -0700888 REGISTER(register_java_lang_reflect_Constructor);
Brian Carlstromf867b6f2011-09-16 12:17:25 -0700889 REGISTER(register_java_lang_reflect_Field);
890 REGISTER(register_java_lang_reflect_Method);
Jesse Wilson95caa792011-10-12 18:14:17 -0400891 REGISTER(register_java_lang_reflect_Proxy);
Elliott Hughesbf86d042011-08-31 17:53:14 -0700892 REGISTER(register_java_util_concurrent_atomic_AtomicLong);
Brian Carlstrom395520e2011-09-25 19:35:00 -0700893 REGISTER(register_org_apache_harmony_dalvik_ddmc_DdmServer);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -0700894 REGISTER(register_org_apache_harmony_dalvik_ddmc_DdmVmInternal);
Elliott Hughes5ee7a8b2011-09-13 16:40:07 -0700895 REGISTER(register_sun_misc_Unsafe);
Elliott Hughesad7c2a32011-08-31 11:58:10 -0700896#undef REGISTER
897}
898
Elliott Hughesc967f782012-04-16 10:23:15 -0700899void Runtime::DumpForSigQuit(std::ostream& os) {
Elliott Hughescac6cc72011-11-03 20:31:21 -0700900 GetClassLinker()->DumpForSigQuit(os);
901 GetInternTable()->DumpForSigQuit(os);
Elliott Hughesae80b492012-04-24 10:43:17 -0700902 GetJavaVM()->DumpForSigQuit(os);
Elliott Hughesc967f782012-04-16 10:23:15 -0700903 GetHeap()->DumpForSigQuit(os);
Elliott Hughes42ee1422011-09-06 12:33:32 -0700904 os << "\n";
Elliott Hughes8daa0922011-09-11 13:46:25 -0700905
Elliott Hughesc967f782012-04-16 10:23:15 -0700906 thread_list_->DumpForSigQuit(os);
Elliott Hughese27955c2011-08-26 15:21:24 -0700907}
908
Elliott Hughes21a5bf22011-12-07 14:35:20 -0800909void Runtime::DumpLockHolders(std::ostream& os) {
Ian Rogersb726dcb2012-09-05 08:57:23 -0700910 uint64_t mutator_lock_owner = Locks::mutator_lock_->GetExclusiveOwnerTid();
Elliott Hughes21a5bf22011-12-07 14:35:20 -0800911 pid_t thread_list_lock_owner = GetThreadList()->GetLockOwner();
912 pid_t classes_lock_owner = GetClassLinker()->GetClassesLockOwner();
913 pid_t dex_lock_owner = GetClassLinker()->GetDexLockOwner();
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700914 if ((thread_list_lock_owner | classes_lock_owner | dex_lock_owner) != 0) {
915 os << "Mutator lock exclusive owner tid: " << mutator_lock_owner << "\n"
Elliott Hughes21a5bf22011-12-07 14:35:20 -0800916 << "ThreadList lock owner tid: " << thread_list_lock_owner << "\n"
917 << "ClassLinker classes lock owner tid: " << classes_lock_owner << "\n"
918 << "ClassLinker dex lock owner tid: " << dex_lock_owner << "\n";
919 }
920}
921
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700922void Runtime::SetStatsEnabled(bool new_state) {
923 if (new_state == true) {
924 GetStats()->Clear(~0);
925 // TODO: wouldn't it make more sense to clear _all_ threads' stats?
926 Thread::Current()->GetStats()->Clear(~0);
927 }
928 stats_enabled_ = new_state;
929}
930
931void Runtime::ResetStats(int kinds) {
932 GetStats()->Clear(kinds & 0xffff);
933 // TODO: wouldn't it make more sense to clear _all_ threads' stats?
934 Thread::Current()->GetStats()->Clear(kinds >> 16);
935}
936
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700937int32_t Runtime::GetStat(int kind) {
938 RuntimeStats* stats;
939 if (kind < (1<<16)) {
940 stats = GetStats();
941 } else {
942 stats = Thread::Current()->GetStats();
943 kind >>= 16;
944 }
945 switch (kind) {
946 case KIND_ALLOCATED_OBJECTS:
947 return stats->allocated_objects;
948 case KIND_ALLOCATED_BYTES:
949 return stats->allocated_bytes;
950 case KIND_FREED_OBJECTS:
951 return stats->freed_objects;
952 case KIND_FREED_BYTES:
953 return stats->freed_bytes;
954 case KIND_GC_INVOCATIONS:
955 return stats->gc_for_alloc_count;
956 case KIND_CLASS_INIT_COUNT:
957 return stats->class_init_count;
958 case KIND_CLASS_INIT_TIME:
959 // Convert ns to us, reduce to 32 bits.
Elliott Hughes398f64b2012-03-26 18:05:48 -0700960 return static_cast<int>(stats->class_init_time_ns / 1000);
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700961 case KIND_EXT_ALLOCATED_OBJECTS:
962 case KIND_EXT_ALLOCATED_BYTES:
963 case KIND_EXT_FREED_OBJECTS:
964 case KIND_EXT_FREED_BYTES:
965 return 0; // backward compatibility
966 default:
Elliott Hughes7b9d9962012-04-20 18:48:18 -0700967 LOG(FATAL) << "Unknown statistic " << kind;
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700968 return -1; // unreachable
969 }
970}
971
Elliott Hughesc1674ed2011-08-25 18:09:09 -0700972void Runtime::BlockSignals() {
Elliott Hughes457005c2012-04-16 13:54:25 -0700973 SignalSet signals;
974 signals.Add(SIGPIPE);
Elliott Hughesc1674ed2011-08-25 18:09:09 -0700975 // SIGQUIT is used to dump the runtime's state (including stack traces).
Elliott Hughes457005c2012-04-16 13:54:25 -0700976 signals.Add(SIGQUIT);
Elliott Hughes08795042012-04-03 14:48:52 -0700977 // SIGUSR1 is used to initiate a GC.
Elliott Hughes457005c2012-04-16 13:54:25 -0700978 signals.Add(SIGUSR1);
979 signals.Block();
Elliott Hughesc1674ed2011-08-25 18:09:09 -0700980}
981
Ian Rogers120f1c72012-09-28 17:17:10 -0700982bool Runtime::AttachCurrentThread(const char* thread_name, bool as_daemon, jobject thread_group) {
983 bool success = Thread::Attach(thread_name, as_daemon, thread_group) != NULL;
Elliott Hughes22869a92012-03-27 14:08:24 -0700984 if (thread_name == NULL) {
985 LOG(WARNING) << *Thread::Current() << " attached without supplying a name";
986 }
Ian Rogers120f1c72012-09-28 17:17:10 -0700987 return success;
Carl Shapiro61e019d2011-07-14 16:53:09 -0700988}
989
Elliott Hughesd92bec42011-09-02 17:04:36 -0700990void Runtime::DetachCurrentThread() {
Brian Carlstrom4d571432012-05-16 00:21:41 -0700991 Thread* self = Thread::Current();
992 if (self == NULL) {
993 LOG(FATAL) << "attempting to detach thread that is not attached";
994 }
Ian Rogers0399dde2012-06-06 17:09:28 -0700995 if (self->HasManagedStack()) {
Elliott Hughes22869a92012-03-27 14:08:24 -0700996 LOG(FATAL) << *Thread::Current() << " attempting to detach while still running code";
997 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700998 thread_list_->Unregister(self);
Carl Shapiro1fb86202011-06-27 17:43:13 -0700999}
1000
Mathieu Chartier9ebae1f2012-10-15 17:38:16 -07001001void Runtime::VisitConcurrentRoots(Heap::RootVisitor* visitor, void* arg) {
1002 if (intern_table_->IsDirty()) {
1003 intern_table_->VisitRoots(visitor, arg);
1004 }
1005 if (class_linker_->IsDirty()) {
1006 class_linker_->VisitRoots(visitor, arg);
1007 }
1008}
1009
Mathieu Chartier858f1c52012-10-17 17:45:55 -07001010void Runtime::VisitNonThreadRoots(Heap::RootVisitor* visitor, void* arg) {
Elliott Hughesbfe487b2011-10-26 15:48:55 -07001011 Dbg::VisitRoots(visitor, arg);
Brian Carlstrome24fa612011-09-29 00:53:55 -07001012 java_vm_->VisitRoots(visitor, arg);
Elliott Hughes225f5a12012-06-11 11:23:48 -07001013 if (pre_allocated_OutOfMemoryError_ != NULL) {
1014 visitor(pre_allocated_OutOfMemoryError_, arg);
1015 }
Brian Carlstrome24fa612011-09-29 00:53:55 -07001016 visitor(jni_stub_array_, arg);
1017 visitor(abstract_method_error_stub_array_, arg);
Ian Rogers4f0d07c2011-10-06 23:38:47 -07001018 for (int i = 0; i < Runtime::kLastTrampolineMethodType; i++) {
1019 visitor(resolution_stub_array_[i], arg);
1020 }
Ian Rogers19846512012-02-24 11:42:47 -08001021 visitor(resolution_method_, arg);
Ian Rogers4f0d07c2011-10-06 23:38:47 -07001022 for (int i = 0; i < Runtime::kLastCalleeSaveType; i++) {
Elliott Hughes225f5a12012-06-11 11:23:48 -07001023 visitor(callee_save_methods_[i], arg);
Ian Rogers4f0d07c2011-10-06 23:38:47 -07001024 }
Brian Carlstrome24fa612011-09-29 00:53:55 -07001025}
1026
Mathieu Chartier858f1c52012-10-17 17:45:55 -07001027void Runtime::VisitNonConcurrentRoots(Heap::RootVisitor* visitor, void* arg) {
1028 thread_list_->VisitRoots(visitor, arg);
1029 VisitNonThreadRoots(visitor, arg);
1030}
1031
Mathieu Chartier9ebae1f2012-10-15 17:38:16 -07001032void Runtime::DirtyRoots() {
1033 intern_table_->Dirty();
1034 class_linker_->Dirty();
1035}
1036
1037void Runtime::VisitRoots(Heap::RootVisitor* visitor, void* arg) {
1038 VisitConcurrentRoots(visitor, arg);
1039 VisitNonConcurrentRoots(visitor, arg);
1040}
1041
Ian Rogers169c9a72011-11-13 20:13:17 -08001042void Runtime::SetJniDlsymLookupStub(ByteArray* jni_stub_array) {
Brian Carlstromaded5f72011-10-07 17:15:04 -07001043 CHECK(jni_stub_array != NULL) << " jni_stub_array=" << jni_stub_array;
1044 CHECK(jni_stub_array_ == NULL || jni_stub_array_ == jni_stub_array)
1045 << "jni_stub_array_=" << jni_stub_array_ << " jni_stub_array=" << jni_stub_array;
Brian Carlstrome24fa612011-09-29 00:53:55 -07001046 jni_stub_array_ = jni_stub_array;
1047}
1048
Brian Carlstrome24fa612011-09-29 00:53:55 -07001049void Runtime::SetAbstractMethodErrorStubArray(ByteArray* abstract_method_error_stub_array) {
1050 CHECK(abstract_method_error_stub_array != NULL);
1051 CHECK(abstract_method_error_stub_array_ == NULL || abstract_method_error_stub_array_ == abstract_method_error_stub_array);
1052 abstract_method_error_stub_array_ = abstract_method_error_stub_array;
1053}
1054
Ian Rogers1cb0a1d2011-10-06 15:24:35 -07001055void Runtime::SetResolutionStubArray(ByteArray* resolution_stub_array, TrampolineType type) {
Ian Rogersad25ac52011-10-04 19:13:33 -07001056 CHECK(resolution_stub_array != NULL);
Ian Rogers1cb0a1d2011-10-06 15:24:35 -07001057 CHECK(!HasResolutionStubArray(type) || resolution_stub_array_[type] == resolution_stub_array);
1058 resolution_stub_array_[type] = resolution_stub_array;
Ian Rogersad25ac52011-10-04 19:13:33 -07001059}
1060
Mathieu Chartier66f19252012-09-18 08:57:04 -07001061AbstractMethod* Runtime::CreateResolutionMethod() {
1062 Class* method_class = AbstractMethod::GetMethodClass();
Ian Rogers50b35e22012-10-04 10:09:15 -07001063 Thread* self = Thread::Current();
1064 SirtRef<AbstractMethod> method(self, down_cast<AbstractMethod*>(method_class->AllocObject(self)));
Ian Rogers19846512012-02-24 11:42:47 -08001065 method->SetDeclaringClass(method_class);
1066 // TODO: use a special method for resolution method saves
1067 method->SetDexMethodIndex(DexFile::kDexNoIndex16);
1068 ByteArray* unknown_resolution_stub = GetResolutionStubArray(kUnknownMethod);
1069 CHECK(unknown_resolution_stub != NULL);
1070 method->SetCode(unknown_resolution_stub->GetData());
1071 return method.get();
1072}
1073
Ian Rogers1f539342012-10-03 21:09:42 -07001074AbstractMethod* Runtime::CreateCalleeSaveMethod(InstructionSet instruction_set,
1075 CalleeSaveType type) {
Mathieu Chartier66f19252012-09-18 08:57:04 -07001076 Class* method_class = AbstractMethod::GetMethodClass();
Ian Rogers50b35e22012-10-04 10:09:15 -07001077 Thread* self = Thread::Current();
1078 SirtRef<AbstractMethod> method(self, down_cast<AbstractMethod*>(method_class->AllocObject(self)));
Ian Rogersff1ed472011-09-20 13:46:24 -07001079 method->SetDeclaringClass(method_class);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001080 // TODO: use a special method for callee saves
Ian Rogers19846512012-02-24 11:42:47 -08001081 method->SetDexMethodIndex(DexFile::kDexNoIndex16);
Brian Carlstrom3320cf42011-10-04 14:58:28 -07001082 method->SetCode(NULL);
Brian Carlstromae826982011-11-09 01:33:42 -08001083 if ((instruction_set == kThumb2) || (instruction_set == kArm)) {
Ian Rogers4f0d07c2011-10-06 23:38:47 -07001084 uint32_t ref_spills = (1 << art::arm::R5) | (1 << art::arm::R6) | (1 << art::arm::R7) |
1085 (1 << art::arm::R8) | (1 << art::arm::R10) | (1 << art::arm::R11);
1086 uint32_t arg_spills = (1 << art::arm::R1) | (1 << art::arm::R2) | (1 << art::arm::R3);
1087 uint32_t all_spills = (1 << art::arm::R4) | (1 << art::arm::R9);
jeffhaofa147e22012-10-12 17:03:32 -07001088 uint32_t core_spills = ref_spills | (type == kRefsAndArgs ? arg_spills : 0) |
1089 (type == kSaveAll ? all_spills : 0) | (1 << art::arm::LR);
Ian Rogers4f0d07c2011-10-06 23:38:47 -07001090 uint32_t fp_all_spills = (1 << art::arm::S0) | (1 << art::arm::S1) | (1 << art::arm::S2) |
1091 (1 << art::arm::S3) | (1 << art::arm::S4) | (1 << art::arm::S5) |
1092 (1 << art::arm::S6) | (1 << art::arm::S7) | (1 << art::arm::S8) |
1093 (1 << art::arm::S9) | (1 << art::arm::S10) | (1 << art::arm::S11) |
1094 (1 << art::arm::S12) | (1 << art::arm::S13) | (1 << art::arm::S14) |
1095 (1 << art::arm::S15) | (1 << art::arm::S16) | (1 << art::arm::S17) |
1096 (1 << art::arm::S18) | (1 << art::arm::S19) | (1 << art::arm::S20) |
1097 (1 << art::arm::S21) | (1 << art::arm::S22) | (1 << art::arm::S23) |
1098 (1 << art::arm::S24) | (1 << art::arm::S25) | (1 << art::arm::S26) |
1099 (1 << art::arm::S27) | (1 << art::arm::S28) | (1 << art::arm::S29) |
1100 (1 << art::arm::S30) | (1 << art::arm::S31);
1101 uint32_t fp_spills = type == kSaveAll ? fp_all_spills : 0;
1102 size_t frame_size = RoundUp((__builtin_popcount(core_spills) /* gprs */ +
1103 __builtin_popcount(fp_spills) /* fprs */ +
1104 1 /* Method* */) * kPointerSize, kStackAlignment);
Ian Rogers15fdb8c2011-09-25 15:45:07 -07001105 method->SetFrameSizeInBytes(frame_size);
Ian Rogers4f0d07c2011-10-06 23:38:47 -07001106 method->SetCoreSpillMask(core_spills);
1107 method->SetFpSpillMask(fp_spills);
jeffhao7fbee072012-08-24 17:56:54 -07001108 } else if (instruction_set == kMips) {
1109 uint32_t ref_spills = (1 << art::mips::S2) | (1 << art::mips::S3) | (1 << art::mips::S4) |
1110 (1 << art::mips::S5) | (1 << art::mips::S6) | (1 << art::mips::S7) |
1111 (1 << art::mips::FP);
1112 uint32_t arg_spills = (1 << art::mips::A1) | (1 << art::mips::A2) | (1 << art::mips::A3);
jeffhaofa147e22012-10-12 17:03:32 -07001113 uint32_t all_spills = (1 << art::mips::S0) | (1 << art::mips::S1);
jeffhao7fbee072012-08-24 17:56:54 -07001114 uint32_t core_spills = ref_spills | (type == kRefsAndArgs ? arg_spills : 0) |
jeffhaofa147e22012-10-12 17:03:32 -07001115 (type == kSaveAll ? all_spills : 0) | (1 << art::mips::RA);
jeffhao7fbee072012-08-24 17:56:54 -07001116 size_t frame_size = RoundUp((__builtin_popcount(core_spills) /* gprs */ +
jeffhao4eb68ed2012-10-17 16:41:07 -07001117 (type == kRefsAndArgs ? 0 : 5) /* reserve arg space */ +
jeffhao7fbee072012-08-24 17:56:54 -07001118 1 /* Method* */) * kPointerSize, kStackAlignment);
1119 method->SetFrameSizeInBytes(frame_size);
1120 method->SetCoreSpillMask(core_spills);
jeffhao07030602012-09-26 14:33:14 -07001121 method->SetFpSpillMask(0);
Brian Carlstromae826982011-11-09 01:33:42 -08001122 } else if (instruction_set == kX86) {
Ian Rogers7caad772012-03-30 01:07:54 -07001123 uint32_t ref_spills = (1 << art::x86::EBP) | (1 << art::x86::ESI) | (1 << art::x86::EDI);
1124 uint32_t arg_spills = (1 << art::x86::ECX) | (1 << art::x86::EDX) | (1 << art::x86::EBX);
1125 uint32_t core_spills = ref_spills | (type == kRefsAndArgs ? arg_spills : 0) |
1126 (1 << art::x86::kNumberOfCpuRegisters); // fake return address callee save
1127 size_t frame_size = RoundUp((__builtin_popcount(core_spills) /* gprs */ +
1128 1 /* Method* */) * kPointerSize, kStackAlignment);
1129 method->SetFrameSizeInBytes(frame_size);
1130 method->SetCoreSpillMask(core_spills);
Ian Rogersff1ed472011-09-20 13:46:24 -07001131 method->SetFpSpillMask(0);
1132 } else {
1133 UNIMPLEMENTED(FATAL);
1134 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001135 return method.get();
Ian Rogersff1ed472011-09-20 13:46:24 -07001136}
1137
Mathieu Chartier66f19252012-09-18 08:57:04 -07001138void Runtime::SetCalleeSaveMethod(AbstractMethod* method, CalleeSaveType type) {
Ian Rogers4f0d07c2011-10-06 23:38:47 -07001139 DCHECK_LT(static_cast<int>(type), static_cast<int>(kLastCalleeSaveType));
Elliott Hughes225f5a12012-06-11 11:23:48 -07001140 callee_save_methods_[type] = method;
Brian Carlstrome24fa612011-09-29 00:53:55 -07001141}
1142
jeffhao2692b572011-12-16 15:42:28 -08001143void Runtime::EnableMethodTracing(Trace* tracer) {
1144 CHECK(!IsMethodTracingActive());
1145 tracer_ = tracer;
1146}
1147
1148void Runtime::DisableMethodTracing() {
1149 CHECK(IsMethodTracingActive());
1150 delete tracer_;
1151 tracer_ = NULL;
1152}
1153
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001154const std::vector<const DexFile*>& Runtime::GetCompileTimeClassPath(jobject class_loader) {
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08001155 if (class_loader == NULL) {
1156 return GetClassLinker()->GetBootClassPath();
1157 }
1158 CHECK(UseCompileTimeClassPath());
1159 CompileTimeClassPaths::const_iterator it = compile_time_class_paths_.find(class_loader);
1160 CHECK(it != compile_time_class_paths_.end());
1161 return it->second;
1162}
1163
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001164void Runtime::SetCompileTimeClassPath(jobject class_loader, std::vector<const DexFile*>& class_path) {
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08001165 CHECK(!IsStarted());
1166 use_compile_time_class_path_ = true;
Elliott Hughesa0e18062012-04-13 15:59:59 -07001167 compile_time_class_paths_.Put(class_loader, class_path);
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08001168}
1169
Carl Shapiro1fb86202011-06-27 17:43:13 -07001170} // namespace art