blob: 3cdf28926bcf7f92ba908f4becb13de53646f2eb [file] [log] [blame]
Elliott Hughes2faa5f12012-01-30 14:42:07 -08001/*
2 * Copyright (C) 2011 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
Carl Shapiro1fb86202011-06-27 17:43:13 -070016
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070017#include "runtime.h"
Carl Shapiro1fb86202011-06-27 17:43:13 -070018
Brian Carlstrombd86bcc2013-03-10 20:26:16 -070019// sys/mount.h has to come before linux/fs.h due to redefinition of MS_RDONLY, MS_BIND, etc
20#include <sys/mount.h>
21#include <linux/fs.h>
22
Brian Carlstromdbf05b72011-12-15 00:55:24 -080023#include <signal.h>
Elliott Hughesd06a6c72012-05-30 17:59:06 -070024#include <sys/syscall.h>
Brian Carlstromdbf05b72011-12-15 00:55:24 -080025
Elliott Hughesffe67362011-07-17 12:09:27 -070026#include <cstdio>
27#include <cstdlib>
Brian Carlstrom8a436592011-08-15 21:27:23 -070028#include <limits>
Carl Shapiro2ed144c2011-07-26 16:52:08 -070029#include <vector>
Elliott Hughesffe67362011-07-17 12:09:27 -070030
Ian Rogers166db042013-07-26 12:05:57 -070031#include "arch/arm/registers_arm.h"
32#include "arch/mips/registers_mips.h"
33#include "arch/x86/registers_x86.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080034#include "atomic.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070035#include "class_linker.h"
Elliott Hughes3bb81562011-10-21 18:52:59 -070036#include "debugger.h"
Ian Rogers1d54e732013-05-02 21:10:01 -070037#include "gc/accounting/card_table-inl.h"
38#include "gc/heap.h"
39#include "gc/space/space.h"
Brian Carlstrome24fa612011-09-29 00:53:55 -070040#include "image.h"
jeffhao725a9572012-11-13 18:20:12 -080041#include "instrumentation.h"
Elliott Hughescf4c6c42011-09-01 15:16:42 -070042#include "intern_table.h"
Jeff Hao5d917302013-02-27 17:57:33 -080043#include "invoke_arg_array_builder.h"
Elliott Hughesc5f7c912011-08-18 14:00:42 -070044#include "jni_internal.h"
Brian Carlstromea46f952013-07-30 01:26:50 -070045#include "mirror/art_field-inl.h"
46#include "mirror/art_method-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080047#include "mirror/array.h"
Ian Rogers62d6c772013-02-27 08:32:07 -080048#include "mirror/class-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080049#include "mirror/class_loader.h"
Mathieu Chartierc528dba2013-11-26 12:00:11 -080050#include "mirror/stack_trace_element.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080051#include "mirror/throwable.h"
Elliott Hughes32d6e1e2011-10-11 14:47:44 -070052#include "monitor.h"
Brian Carlstrome24fa612011-09-29 00:53:55 -070053#include "oat_file.h"
Elliott Hughes726079d2011-10-07 18:43:44 -070054#include "ScopedLocalRef.h"
Ian Rogers00f7d0e2012-07-19 15:28:27 -070055#include "scoped_thread_state_change.h"
Elliott Hughese27955c2011-08-26 15:21:24 -070056#include "signal_catcher.h"
Elliott Hughes457005c2012-04-16 13:54:25 -070057#include "signal_set.h"
Ian Rogers1f539342012-10-03 21:09:42 -070058#include "sirt_ref.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070059#include "thread.h"
Elliott Hughes8daa0922011-09-11 13:46:25 -070060#include "thread_list.h"
jeffhaob5e81852012-03-12 11:15:45 -070061#include "trace.h"
Dave Allison0aded082013-11-07 13:15:11 -080062#include "profiler.h"
Elliott Hughes3bb81562011-10-21 18:52:59 -070063#include "UniquePtr.h"
Ian Rogers776ac1f2012-04-13 23:36:36 -070064#include "verifier/method_verifier.h"
Elliott Hugheseac76672012-05-24 21:56:51 -070065#include "well_known_classes.h"
Carl Shapiro61e019d2011-07-14 16:53:09 -070066
Brian Carlstrom7934ac22013-07-26 10:54:15 -070067#include "JniConstants.h" // Last to avoid LOG redefinition in ics-mr1-plus-art.
Elliott Hughes90a33692011-08-30 13:27:07 -070068
Carl Shapiro1fb86202011-06-27 17:43:13 -070069namespace art {
70
Carl Shapiro2ed144c2011-07-26 16:52:08 -070071Runtime* Runtime::instance_ = NULL;
72
Elliott Hughesdcc24742011-09-07 14:02:44 -070073Runtime::Runtime()
Vladimir Marko2b5eaa22013-12-13 13:59:30 +000074 : compiler_callbacks_(nullptr),
Elliott Hughesd9c67be2012-02-02 19:54:06 -080075 is_zygote_(false),
Mathieu Chartier069387a2012-06-18 12:01:01 -070076 is_concurrent_gc_enabled_(true),
Anwar Ghuloum87183592013-08-14 12:12:19 -070077 is_explicit_gc_disabled_(false),
Elliott Hughes6cf23882012-06-15 15:42:07 -070078 default_stack_size_(0),
Elliott Hughesb3bd5f02012-03-08 21:05:27 -080079 heap_(NULL),
Ian Rogersd9c4fc92013-10-01 19:45:43 -070080 max_spins_before_thin_lock_inflation_(Monitor::kDefaultMaxSpinsBeforeThinLockInflation),
Elliott Hughesc33a32b2011-10-11 18:18:07 -070081 monitor_list_(NULL),
Elliott Hughesdcc24742011-09-07 14:02:44 -070082 thread_list_(NULL),
83 intern_table_(NULL),
84 class_linker_(NULL),
85 signal_catcher_(NULL),
86 java_vm_(NULL),
Elliott Hughes225f5a12012-06-11 11:23:48 -070087 pre_allocated_OutOfMemoryError_(NULL),
Ian Rogers19846512012-02-24 11:42:47 -080088 resolution_method_(NULL),
Jeff Hao88474b42013-10-23 16:24:40 -070089 imt_conflict_method_(NULL),
90 default_imt_(NULL),
Mathieu Chartierc528dba2013-11-26 12:00:11 -080091 method_verifiers_lock_("Method verifiers lock"),
Ian Rogers120f1c72012-09-28 17:17:10 -070092 threads_being_born_(0),
Ian Rogersc604d732012-10-14 16:09:54 -070093 shutdown_cond_(new ConditionVariable("Runtime shutdown", *Locks::runtime_shutdown_lock_)),
Elliott Hughes6b355752012-01-13 16:49:08 -080094 shutting_down_(false),
Ian Rogers120f1c72012-09-28 17:17:10 -070095 shutting_down_started_(false),
Elliott Hughesdcc24742011-09-07 14:02:44 -070096 started_(false),
Mathieu Chartier7664f5c2012-06-08 18:15:32 -070097 finished_starting_(false),
Elliott Hughesdcc24742011-09-07 14:02:44 -070098 vfprintf_(NULL),
99 exit_(NULL),
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700100 abort_(NULL),
jeffhao2692b572011-12-16 15:42:28 -0800101 stats_enabled_(false),
Ian Rogers776ac1f2012-04-13 23:36:36 -0700102 method_trace_(0),
103 method_trace_file_size_(0),
Ian Rogers62d6c772013-02-27 08:32:07 -0800104 instrumentation_(),
Ian Rogers365c1022012-06-22 15:05:28 -0700105 use_compile_time_class_path_(false),
106 main_thread_group_(NULL),
Hiroshi Yamauchi3b4c1892013-09-12 21:33:12 -0700107 system_thread_group_(NULL),
Ian Rogersfa824272013-11-05 16:12:57 -0800108 system_class_loader_(NULL) {
Ian Rogers4f0d07c2011-10-06 23:38:47 -0700109 for (int i = 0; i < Runtime::kLastCalleeSaveType; i++) {
Elliott Hughes225f5a12012-06-11 11:23:48 -0700110 callee_save_methods_[i] = NULL;
Ian Rogers4f0d07c2011-10-06 23:38:47 -0700111 }
Elliott Hughesdcc24742011-09-07 14:02:44 -0700112}
113
Carl Shapiro61e019d2011-07-14 16:53:09 -0700114Runtime::~Runtime() {
Hiroshi Yamauchi2e899a92013-11-22 16:50:12 -0800115 if (dump_gc_performance_on_shutdown_) {
116 // This can't be called from the Heap destructor below because it
117 // could call RosAlloc::InspectAll() which needs the thread_list
118 // to be still alive.
119 heap_->DumpGcPerformanceInfo(LOG(INFO));
120 }
121
Ian Rogers120f1c72012-09-28 17:17:10 -0700122 Thread* self = Thread::Current();
123 {
124 MutexLock mu(self, *Locks::runtime_shutdown_lock_);
125 shutting_down_started_ = true;
126 while (threads_being_born_ > 0) {
Ian Rogersc604d732012-10-14 16:09:54 -0700127 shutdown_cond_->Wait(self);
Ian Rogers120f1c72012-09-28 17:17:10 -0700128 }
129 shutting_down_ = true;
130 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800131 Trace::Shutdown();
jeffhaob5e81852012-03-12 11:15:45 -0700132
Mathieu Chartiera6399032012-06-11 18:49:50 -0700133 // Make sure to let the GC complete if it is running.
Mathieu Chartier590fee92013-09-13 13:46:47 -0700134 heap_->WaitForGcToComplete(self);
Mathieu Chartier35883cc2012-11-13 14:08:12 -0800135 heap_->DeleteThreadPool();
Mathieu Chartiera6399032012-06-11 18:49:50 -0700136
Elliott Hughes5fe594f2011-09-08 12:33:17 -0700137 // Make sure our internal threads are dead before we start tearing down things they're using.
Elliott Hughese52e49b2012-04-02 16:05:44 -0700138 Dbg::StopJdwp();
Elliott Hughes5fe594f2011-09-08 12:33:17 -0700139 delete signal_catcher_;
140
Elliott Hughes038a8062011-09-18 14:12:41 -0700141 // Make sure all other non-daemon threads have terminated, and all daemon threads are suspended.
Elliott Hughes93e74e82011-09-13 11:07:03 -0700142 delete thread_list_;
Elliott Hughesc33a32b2011-10-11 18:18:07 -0700143 delete monitor_list_;
Carl Shapiro61e019d2011-07-14 16:53:09 -0700144 delete class_linker_;
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800145 delete heap_;
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();
Sebastien Hertz4d4adb12013-07-24 16:14:19 +0200150 verifier::MethodVerifier::Shutdown();
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 Hughese0918552011-10-28 17:18:29 -0700156struct AbortState {
157 void Dump(std::ostream& os) {
Ian Rogersf08e4732013-04-09 09:45:49 -0700158 if (gAborting > 1) {
Elliott Hughescac6cc72011-11-03 20:31:21 -0700159 os << "Runtime aborting --- recursively, so no thread-specific detail!\n";
160 return;
161 }
Ian Rogersf08e4732013-04-09 09:45:49 -0700162 gAborting++;
Elliott Hughese0918552011-10-28 17:18:29 -0700163 os << "Runtime aborting...\n";
Elliott Hughes6c7d2442012-02-01 18:40:47 -0800164 if (Runtime::Current() == NULL) {
165 os << "(Runtime does not yet exist!)\n";
166 return;
167 }
Elliott Hughese0918552011-10-28 17:18:29 -0700168 Thread* self = Thread::Current();
169 if (self == NULL) {
170 os << "(Aborting thread was not attached to runtime!)\n";
171 } else {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700172 // TODO: we're aborting and the ScopedObjectAccess may attempt to acquire the mutator_lock_
173 // which may block indefinitely if there's a misbehaving thread holding it exclusively.
174 // The code below should be made robust to this.
175 ScopedObjectAccess soa(self);
Ian Rogers2f7f9b62012-10-10 18:24:05 -0700176 os << "Aborting thread:\n";
Elliott Hughes899e7892012-01-24 14:57:32 -0800177 self->Dump(os);
178 if (self->IsExceptionPending()) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800179 ThrowLocation throw_location;
180 mirror::Throwable* exception = self->GetException(&throw_location);
181 os << "Pending exception " << PrettyTypeOf(exception)
Ian Rogersbc939662013-08-15 10:26:54 -0700182 << " thrown by '" << throw_location.Dump() << "'\n"
Ian Rogers62d6c772013-02-27 08:32:07 -0800183 << exception->Dump();
Elliott Hughes899e7892012-01-24 14:57:32 -0800184 }
Elliott Hughese0918552011-10-28 17:18:29 -0700185 }
Ian Rogers2f7f9b62012-10-10 18:24:05 -0700186 DumpAllThreads(os, self);
187 }
188
189 void DumpAllThreads(std::ostream& os, Thread* self) NO_THREAD_SAFETY_ANALYSIS {
190 bool tll_already_held = Locks::thread_list_lock_->IsExclusiveHeld(self);
191 bool ml_already_held = Locks::mutator_lock_->IsSharedHeld(self);
Ian Rogersfbd22912012-10-12 14:21:10 -0700192 if (!tll_already_held || !ml_already_held) {
193 os << "Dumping all threads without appropriate locks held:"
194 << (!tll_already_held ? " thread list lock" : "")
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700195 << (!ml_already_held ? " mutator lock" : "")
196 << "\n";
Ian Rogers2f7f9b62012-10-10 18:24:05 -0700197 }
Ian Rogersfbd22912012-10-12 14:21:10 -0700198 os << "All threads:\n";
199 Runtime::Current()->GetThreadList()->DumpLocked(os);
Elliott Hughese0918552011-10-28 17:18:29 -0700200 }
201};
202
Elliott Hughes8593fdb2012-04-21 20:53:44 -0700203void Runtime::Abort() {
Ian Rogersf08e4732013-04-09 09:45:49 -0700204 gAborting++; // set before taking any locks
Brian Carlstrom81b88712012-11-05 19:21:30 -0800205
Elliott Hughes131aef82012-01-27 11:53:35 -0800206 // Ensure that we don't have multiple threads trying to abort at once,
207 // which would result in significantly worse diagnostics.
Ian Rogers50b35e22012-10-04 10:09:15 -0700208 MutexLock mu(Thread::Current(), *Locks::abort_lock_);
Elliott Hughes131aef82012-01-27 11:53:35 -0800209
Elliott Hughesffe67362011-07-17 12:09:27 -0700210 // Get any pending output out of the way.
211 fflush(NULL);
212
213 // Many people have difficulty distinguish aborts from crashes,
214 // so be explicit.
Elliott Hughese0918552011-10-28 17:18:29 -0700215 AbortState state;
Elliott Hughes9ee5f9c2012-02-03 18:33:16 -0800216 LOG(INTERNAL_FATAL) << Dumpable<AbortState>(state);
Elliott Hughesffe67362011-07-17 12:09:27 -0700217
Elliott Hughes8593fdb2012-04-21 20:53:44 -0700218 // Call the abort hook if we have one.
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700219 if (Runtime::Current() != NULL && Runtime::Current()->abort_ != NULL) {
Elliott Hughes6c1c69e2012-04-23 16:12:51 -0700220 LOG(INTERNAL_FATAL) << "Calling abort hook...";
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700221 Runtime::Current()->abort_();
222 // notreached
Elliott Hughes6c1c69e2012-04-23 16:12:51 -0700223 LOG(INTERNAL_FATAL) << "Unexpectedly returned from abort hook!";
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700224 }
225
Elliott Hughesdd623db2013-06-11 11:20:23 -0700226#if defined(__GLIBC__)
Elliott Hughesd06a6c72012-05-30 17:59:06 -0700227 // TODO: we ought to be able to use pthread_kill(3) here (or abort(3),
228 // which POSIX defines in terms of raise(3), which POSIX defines in terms
229 // of pthread_kill(3)). On Linux, though, libcorkscrew can't unwind through
230 // libpthread, which means the stacks we dump would be useless. Calling
231 // tgkill(2) directly avoids that.
232 syscall(__NR_tgkill, getpid(), GetTid(), SIGABRT);
Elliott Hughesdd623db2013-06-11 11:20:23 -0700233 // TODO: LLVM installs it's own SIGABRT handler so exit to be safe... Can we disable that in LLVM?
234 // If not, we could use sigaction(3) before calling tgkill(2) and lose this call to exit(3).
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800235 exit(1);
Elliott Hughesdd623db2013-06-11 11:20:23 -0700236#else
237 abort();
Elliott Hughesd06a6c72012-05-30 17:59:06 -0700238#endif
Elliott Hughesffe67362011-07-17 12:09:27 -0700239 // notreached
240}
241
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700242bool Runtime::PreZygoteFork() {
243 heap_->PreZygoteFork();
244 return true;
245}
246
Elliott Hughesbf86d042011-08-31 17:53:14 -0700247void Runtime::CallExitHook(jint status) {
248 if (exit_ != NULL) {
Elliott Hughes34e06962012-04-09 13:55:55 -0700249 ScopedThreadStateChange tsc(Thread::Current(), kNative);
Elliott Hughesbf86d042011-08-31 17:53:14 -0700250 exit_(status);
251 LOG(WARNING) << "Exit hook returned instead of exiting!";
252 }
253}
254
Brian Carlstrom8a436592011-08-15 21:27:23 -0700255// Parse a string of the form /[0-9]+[kKmMgG]?/, which is used to specify
256// memory sizes. [kK] indicates kilobytes, [mM] megabytes, and
257// [gG] gigabytes.
258//
259// "s" should point just past the "-Xm?" part of the string.
Brian Carlstrom8a436592011-08-15 21:27:23 -0700260// "div" specifies a divisor, e.g. 1024 if the value must be a multiple
261// of 1024.
262//
263// The spec says the -Xmx and -Xms options must be multiples of 1024. It
264// doesn't say anything about -Xss.
265//
266// Returns 0 (a useless size) if "s" is malformed or specifies a low or
267// non-evenly-divisible value.
268//
Elliott Hughesc1f143d2011-12-01 17:31:10 -0800269size_t ParseMemoryOption(const char* s, size_t div) {
Brian Carlstrom8a436592011-08-15 21:27:23 -0700270 // strtoul accepts a leading [+-], which we don't want,
271 // so make sure our string starts with a decimal digit.
272 if (isdigit(*s)) {
Elliott Hughes398f64b2012-03-26 18:05:48 -0700273 char* s2;
274 size_t val = strtoul(s, &s2, 10);
Brian Carlstrom8a436592011-08-15 21:27:23 -0700275 if (s2 != s) {
276 // s2 should be pointing just after the number.
277 // If this is the end of the string, the user
278 // has specified a number of bytes. Otherwise,
279 // there should be exactly one more character
280 // that specifies a multiplier.
281 if (*s2 != '\0') {
Brian Carlstromf734cf52011-08-17 16:28:14 -0700282 // The remainder of the string is either a single multiplier
283 // character, or nothing to indicate that the value is in
284 // bytes.
285 char c = *s2++;
286 if (*s2 == '\0') {
287 size_t mul;
288 if (c == '\0') {
289 mul = 1;
290 } else if (c == 'k' || c == 'K') {
291 mul = KB;
292 } else if (c == 'm' || c == 'M') {
293 mul = MB;
294 } else if (c == 'g' || c == 'G') {
295 mul = GB;
Brian Carlstrom8a436592011-08-15 21:27:23 -0700296 } else {
Brian Carlstromf734cf52011-08-17 16:28:14 -0700297 // Unknown multiplier character.
Brian Carlstrom8a436592011-08-15 21:27:23 -0700298 return 0;
299 }
Brian Carlstromf734cf52011-08-17 16:28:14 -0700300
301 if (val <= std::numeric_limits<size_t>::max() / mul) {
302 val *= mul;
303 } else {
304 // Clamp to a multiple of 1024.
305 val = std::numeric_limits<size_t>::max() & ~(1024-1);
306 }
307 } else {
308 // There's more than one character after the numeric part.
309 return 0;
310 }
Brian Carlstrom8a436592011-08-15 21:27:23 -0700311 }
312 // The man page says that a -Xm value must be a multiple of 1024.
313 if (val % div == 0) {
314 return val;
315 }
Carl Shapirofc322c72011-07-27 00:20:01 -0700316 }
317 }
Brian Carlstrom8a436592011-08-15 21:27:23 -0700318 return 0;
Carl Shapirofc322c72011-07-27 00:20:01 -0700319}
320
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800321size_t ParseIntegerOrDie(const std::string& s) {
322 std::string::size_type colon = s.find(':');
323 if (colon == std::string::npos) {
Elliott Hughesbb1e8f02011-10-18 14:14:25 -0700324 LOG(FATAL) << "Missing integer: " << s;
325 }
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800326 const char* begin = &s[colon + 1];
Elliott Hughesbb1e8f02011-10-18 14:14:25 -0700327 char* end;
328 size_t result = strtoul(begin, &end, 10);
329 if (begin == end || *end != '\0') {
330 LOG(FATAL) << "Failed to parse integer in: " << s;
331 }
332 return result;
333}
334
Dave Allison0aded082013-11-07 13:15:11 -0800335double ParseDoubleOrDie(const std::string& option, const char* prefix,
336 double min, double max, bool ignore_unrecognized,
337 double defval) {
338 std::istringstream iss(option.substr(strlen(prefix)));
339 double value;
340 iss >> value;
341 // Ensure that we have a value, there was no cruft after it and it satisfies a sensible range.
342 const bool sane_val = iss.eof() && (value >= min) && (value <= max);
343 if (!sane_val) {
344 if (ignore_unrecognized) {
345 return defval;
346 }
347 LOG(FATAL)<< "Invalid option '" << option << "'";
348 return defval;
349 }
350 return value;
351}
352
Mathieu Chartier6aa3df92013-09-17 15:17:28 -0700353void Runtime::SweepSystemWeaks(RootVisitor* visitor, void* arg) {
354 GetInternTable()->SweepInternTableWeaks(visitor, arg);
355 GetMonitorList()->SweepMonitorList(visitor, arg);
356 GetJavaVM()->SweepJniWeakGlobals(visitor, arg);
357}
358
Mathieu Chartiere6da9af2013-12-16 11:54:42 -0800359static gc::CollectorType ParseCollectorType(const std::string& option) {
360 std::vector<std::string> gc_options;
361 Split(option, ',', gc_options);
362 gc::CollectorType collector_type = gc::kCollectorTypeNone;
363 for (size_t i = 0; i < gc_options.size(); ++i) {
364 if (gc_options[i] == "MS" || gc_options[i] == "nonconcurrent") {
365 collector_type = gc::kCollectorTypeMS;
366 } else if (gc_options[i] == "CMS" || gc_options[i] == "concurrent") {
367 collector_type = gc::kCollectorTypeCMS;
368 } else if (gc_options[i] == "SS") {
369 collector_type = gc::kCollectorTypeSS;
Hiroshi Yamauchi6f4ffe42014-01-13 12:30:44 -0800370 } else if (gc_options[i] == "GSS") {
371 collector_type = gc::kCollectorTypeGSS;
Mathieu Chartiere6da9af2013-12-16 11:54:42 -0800372 } else {
373 LOG(WARNING) << "Ignoring unknown -Xgc option: " << gc_options[i];
374 return gc::kCollectorTypeNone;
375 }
376 }
377 return collector_type;
378}
379
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700380Runtime::ParsedOptions* Runtime::ParsedOptions::Create(const Options& options, bool ignore_unrecognized) {
Elliott Hughes90a33692011-08-30 13:27:07 -0700381 UniquePtr<ParsedOptions> parsed(new ParsedOptions());
Brian Carlstroma004aa92012-02-08 18:05:09 -0800382 const char* boot_class_path_string = getenv("BOOTCLASSPATH");
383 if (boot_class_path_string != NULL) {
384 parsed->boot_class_path_string_ = boot_class_path_string;
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700385 }
Brian Carlstroma004aa92012-02-08 18:05:09 -0800386 const char* class_path_string = getenv("CLASSPATH");
387 if (class_path_string != NULL) {
388 parsed->class_path_string_ = class_path_string;
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700389 }
Elliott Hughes67d92002012-03-26 15:08:51 -0700390 // -Xcheck:jni is off by default for regular builds but on by default in debug builds.
391 parsed->check_jni_ = kIsDebugBuild;
Elliott Hughes85d15452011-09-16 17:33:01 -0700392
Ian Rogers1d54e732013-05-02 21:10:01 -0700393 parsed->heap_initial_size_ = gc::Heap::kDefaultInitialSize;
394 parsed->heap_maximum_size_ = gc::Heap::kDefaultMaximumSize;
395 parsed->heap_min_free_ = gc::Heap::kDefaultMinFree;
396 parsed->heap_max_free_ = gc::Heap::kDefaultMaxFree;
397 parsed->heap_target_utilization_ = gc::Heap::kDefaultTargetUtilization;
Mathieu Chartier692fafd2013-11-29 17:24:40 -0800398 parsed->heap_growth_limit_ = 0; // 0 means no growth limit .
Mathieu Chartier63a54342013-07-23 13:17:59 -0700399 // Default to number of processors minus one since the main GC thread also does work.
Mathieu Chartier2775ee42013-08-20 17:43:47 -0700400 parsed->parallel_gc_threads_ = sysconf(_SC_NPROCESSORS_CONF) - 1;
401 // Only the main GC thread, no workers.
402 parsed->conc_gc_threads_ = 0;
Mathieu Chartier0de9f732013-11-22 17:58:48 -0800403 // Default is CMS which is Sticky + Partial + Full CMS GC.
Hiroshi Yamauchi6f4ffe42014-01-13 12:30:44 -0800404 // parsed->collector_type_ = gc::kCollectorTypeCMS;
405 parsed->collector_type_ = gc::kCollectorTypeGSS;
Mathieu Chartiere6da9af2013-12-16 11:54:42 -0800406 // If background_collector_type_ is kCollectorTypeNone, it defaults to the collector_type_ after
407 // parsing options.
408 parsed->background_collector_type_ = gc::kCollectorTypeNone;
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700409 parsed->stack_size_ = 0; // 0 means default.
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700410 parsed->max_spins_before_thin_lock_inflation_ = Monitor::kDefaultMaxSpinsBeforeThinLockInflation;
Mathieu Chartiere0a53e92013-08-05 10:17:40 -0700411 parsed->low_memory_mode_ = false;
Mathieu Chartier692fafd2013-11-29 17:24:40 -0800412 parsed->use_tlab_ = false;
Brian Carlstromf734cf52011-08-17 16:28:14 -0700413
Vladimir Marko2b5eaa22013-12-13 13:59:30 +0000414 parsed->compiler_callbacks_ = nullptr;
Elliott Hughes9ca7a1f2011-10-11 14:29:52 -0700415 parsed->is_zygote_ = false;
Ian Rogers50ffee22012-11-20 11:47:44 -0800416 parsed->interpreter_only_ = false;
Anwar Ghuloum87183592013-08-14 12:12:19 -0700417 parsed->is_explicit_gc_disabled_ = false;
Elliott Hughes9ca7a1f2011-10-11 14:29:52 -0700418
Mathieu Chartier2775ee42013-08-20 17:43:47 -0700419 parsed->long_pause_log_threshold_ = gc::Heap::kDefaultLongPauseLogThreshold;
420 parsed->long_gc_log_threshold_ = gc::Heap::kDefaultLongGCLogThreshold;
Mathieu Chartierff3b24a2013-11-22 16:04:25 -0800421 parsed->dump_gc_performance_on_shutdown_ = false;
Mathieu Chartier2775ee42013-08-20 17:43:47 -0700422 parsed->ignore_max_footprint_ = false;
423
Elliott Hughesfc861622011-10-17 17:57:47 -0700424 parsed->lock_profiling_threshold_ = 0;
425 parsed->hook_is_sensitive_thread_ = NULL;
426
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700427 parsed->hook_vfprintf_ = vfprintf;
428 parsed->hook_exit_ = exit;
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700429 parsed->hook_abort_ = NULL; // We don't call abort(3) by default; see Runtime::Abort.
Brian Carlstrom8a436592011-08-15 21:27:23 -0700430
buzbeea024a062013-07-31 10:47:37 -0700431 parsed->compiler_filter_ = Runtime::kDefaultCompilerFilter;
432 parsed->huge_method_threshold_ = Runtime::kDefaultHugeMethodThreshold;
433 parsed->large_method_threshold_ = Runtime::kDefaultLargeMethodThreshold;
434 parsed->small_method_threshold_ = Runtime::kDefaultSmallMethodThreshold;
435 parsed->tiny_method_threshold_ = Runtime::kDefaultTinyMethodThreshold;
436 parsed->num_dex_methods_threshold_ = Runtime::kDefaultNumDexMethodsThreshold;
Anwar Ghuloum8447d842013-04-30 17:27:40 -0700437
Dragos Sbirlea7467ee02013-06-21 09:20:34 -0700438 parsed->sea_ir_mode_ = false;
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700439// gLogVerbosity.class_linker = true; // TODO: don't check this in!
440// gLogVerbosity.compiler = true; // TODO: don't check this in!
Anwar Ghuloum75a43f12013-08-13 17:22:14 -0700441// gLogVerbosity.verifier = true; // TODO: don't check this in!
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700442// gLogVerbosity.heap = true; // TODO: don't check this in!
443// gLogVerbosity.gc = true; // TODO: don't check this in!
444// gLogVerbosity.jdwp = true; // TODO: don't check this in!
445// gLogVerbosity.jni = true; // TODO: don't check this in!
446// gLogVerbosity.monitor = true; // TODO: don't check this in!
447// gLogVerbosity.startup = true; // TODO: don't check this in!
448// gLogVerbosity.third_party_jni = true; // TODO: don't check this in!
449// gLogVerbosity.threads = true; // TODO: don't check this in!
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800450
jeffhaob5e81852012-03-12 11:15:45 -0700451 parsed->method_trace_ = false;
452 parsed->method_trace_file_ = "/data/method-trace-file.bin";
453 parsed->method_trace_file_size_ = 10 * MB;
454
Dave Allison0aded082013-11-07 13:15:11 -0800455 parsed->profile_ = false;
456 parsed->profile_period_s_ = 10; // Seconds.
457 parsed->profile_duration_s_ = 20; // Seconds.
458 parsed->profile_interval_us_ = 500; // Microseconds.
459 parsed->profile_backoff_coefficient_ = 2.0;
460
Brian Carlstrom8a436592011-08-15 21:27:23 -0700461 for (size_t i = 0; i < options.size(); ++i) {
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800462 const std::string option(options[i].first);
Brian Carlstrom0796af02011-10-12 14:31:45 -0700463 if (true && options[0].first == "-Xzygote") {
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700464 LOG(INFO) << "option[" << i << "]=" << option;
465 }
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800466 if (StartsWith(option, "-Xbootclasspath:")) {
Brian Carlstroma004aa92012-02-08 18:05:09 -0800467 parsed->boot_class_path_string_ = option.substr(strlen("-Xbootclasspath:")).data();
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700468 } else if (option == "-classpath" || option == "-cp") {
469 // TODO: support -Djava.class.path
470 i++;
471 if (i == options.size()) {
472 // TODO: usage
473 LOG(FATAL) << "Missing required class path value for " << option;
474 return NULL;
475 }
Brian Carlstroma004aa92012-02-08 18:05:09 -0800476 const StringPiece& value = options[i].first;
477 parsed->class_path_string_ = value.data();
478 } else if (option == "bootclasspath") {
479 parsed->boot_class_path_
480 = reinterpret_cast<const std::vector<const DexFile*>*>(options[i].second);
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800481 } else if (StartsWith(option, "-Ximage:")) {
Brian Carlstroma004aa92012-02-08 18:05:09 -0800482 parsed->image_ = option.substr(strlen("-Ximage:")).data();
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800483 } else if (StartsWith(option, "-Xcheck:jni")) {
Elliott Hughes515a5bc2011-08-17 11:08:34 -0700484 parsed->check_jni_ = true;
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800485 } else if (StartsWith(option, "-Xrunjdwp:") || StartsWith(option, "-agentlib:jdwp=")) {
486 std::string tail(option.substr(option[1] == 'X' ? 10 : 15));
Elliott Hughes3bb81562011-10-21 18:52:59 -0700487 if (tail == "help" || !Dbg::ParseJdwpOptions(tail)) {
488 LOG(FATAL) << "Example: -Xrunjdwp:transport=dt_socket,address=8000,server=y\n"
489 << "Example: -Xrunjdwp:transport=dt_socket,address=localhost:6500,server=n";
490 return NULL;
491 }
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800492 } else if (StartsWith(option, "-Xms")) {
493 size_t size = ParseMemoryOption(option.substr(strlen("-Xms")).c_str(), 1024);
Brian Carlstromf734cf52011-08-17 16:28:14 -0700494 if (size == 0) {
495 if (ignore_unrecognized) {
496 continue;
497 }
Brian Carlstrom4a289ed2011-08-16 17:17:49 -0700498 // TODO: usage
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700499 LOG(FATAL) << "Failed to parse " << option;
Brian Carlstromf734cf52011-08-17 16:28:14 -0700500 return NULL;
501 }
502 parsed->heap_initial_size_ = size;
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800503 } else if (StartsWith(option, "-Xmx")) {
504 size_t size = ParseMemoryOption(option.substr(strlen("-Xmx")).c_str(), 1024);
Brian Carlstromf734cf52011-08-17 16:28:14 -0700505 if (size == 0) {
506 if (ignore_unrecognized) {
507 continue;
508 }
Brian Carlstrom4a289ed2011-08-16 17:17:49 -0700509 // TODO: usage
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700510 LOG(FATAL) << "Failed to parse " << option;
Brian Carlstromf734cf52011-08-17 16:28:14 -0700511 return NULL;
512 }
513 parsed->heap_maximum_size_ = size;
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800514 } else if (StartsWith(option, "-XX:HeapGrowthLimit=")) {
515 size_t size = ParseMemoryOption(option.substr(strlen("-XX:HeapGrowthLimit=")).c_str(), 1024);
jeffhaoc1160702011-10-27 15:48:45 -0700516 if (size == 0) {
517 if (ignore_unrecognized) {
518 continue;
519 }
520 // TODO: usage
521 LOG(FATAL) << "Failed to parse " << option;
522 return NULL;
523 }
524 parsed->heap_growth_limit_ = size;
Mathieu Chartier0051be62012-10-12 17:47:11 -0700525 } else if (StartsWith(option, "-XX:HeapMinFree=")) {
526 size_t size = ParseMemoryOption(option.substr(strlen("-XX:HeapMinFree=")).c_str(), 1024);
527 if (size == 0) {
528 if (ignore_unrecognized) {
529 continue;
530 }
531 // TODO: usage
532 LOG(FATAL) << "Failed to parse " << option;
533 return NULL;
534 }
535 parsed->heap_min_free_ = size;
536 } else if (StartsWith(option, "-XX:HeapMaxFree=")) {
537 size_t size = ParseMemoryOption(option.substr(strlen("-XX:HeapMaxFree=")).c_str(), 1024);
538 if (size == 0) {
539 if (ignore_unrecognized) {
540 continue;
541 }
542 // TODO: usage
543 LOG(FATAL) << "Failed to parse " << option;
544 return NULL;
545 }
546 parsed->heap_max_free_ = size;
547 } else if (StartsWith(option, "-XX:HeapTargetUtilization=")) {
Dave Allison0aded082013-11-07 13:15:11 -0800548 parsed->heap_target_utilization_ = ParseDoubleOrDie(option, "-XX:HeapTargetUtilization=",
549 0.1, 0.9, ignore_unrecognized,
550 parsed->heap_target_utilization_);
Mathieu Chartier2775ee42013-08-20 17:43:47 -0700551 } else if (StartsWith(option, "-XX:ParallelGCThreads=")) {
552 parsed->parallel_gc_threads_ =
553 ParseMemoryOption(option.substr(strlen("-XX:ParallelGCThreads=")).c_str(), 1024);
554 } else if (StartsWith(option, "-XX:ConcGCThreads=")) {
555 parsed->conc_gc_threads_ =
556 ParseMemoryOption(option.substr(strlen("-XX:ConcGCThreads=")).c_str(), 1024);
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800557 } else if (StartsWith(option, "-Xss")) {
558 size_t size = ParseMemoryOption(option.substr(strlen("-Xss")).c_str(), 1);
Brian Carlstromf734cf52011-08-17 16:28:14 -0700559 if (size == 0) {
560 if (ignore_unrecognized) {
561 continue;
562 }
Brian Carlstrom4a289ed2011-08-16 17:17:49 -0700563 // TODO: usage
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700564 LOG(FATAL) << "Failed to parse " << option;
Brian Carlstromf734cf52011-08-17 16:28:14 -0700565 return NULL;
566 }
567 parsed->stack_size_ = size;
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700568 } else if (StartsWith(option, "-XX:MaxSpinsBeforeThinLockInflation=")) {
569 parsed->max_spins_before_thin_lock_inflation_ =
570 strtoul(option.substr(strlen("-XX:MaxSpinsBeforeThinLockInflation=")).c_str(),
571 nullptr, 10);
Mathieu Chartier2775ee42013-08-20 17:43:47 -0700572 } else if (option == "-XX:LongPauseLogThreshold") {
573 parsed->long_pause_log_threshold_ =
574 ParseMemoryOption(option.substr(strlen("-XX:LongPauseLogThreshold=")).c_str(), 1024);
575 } else if (option == "-XX:LongGCLogThreshold") {
576 parsed->long_gc_log_threshold_ =
577 ParseMemoryOption(option.substr(strlen("-XX:LongGCLogThreshold")).c_str(), 1024);
Mathieu Chartierff3b24a2013-11-22 16:04:25 -0800578 } else if (option == "-XX:DumpGCPerformanceOnShutdown") {
579 parsed->dump_gc_performance_on_shutdown_ = true;
Mathieu Chartier2775ee42013-08-20 17:43:47 -0700580 } else if (option == "-XX:IgnoreMaxFootprint") {
581 parsed->ignore_max_footprint_ = true;
Mathieu Chartiere0a53e92013-08-05 10:17:40 -0700582 } else if (option == "-XX:LowMemoryMode") {
583 parsed->low_memory_mode_ = true;
Mathieu Chartier692fafd2013-11-29 17:24:40 -0800584 } else if (option == "-XX:UseTLAB") {
585 parsed->use_tlab_ = true;
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800586 } else if (StartsWith(option, "-D")) {
587 parsed->properties_.push_back(option.substr(strlen("-D")));
588 } else if (StartsWith(option, "-Xjnitrace:")) {
589 parsed->jni_trace_ = option.substr(strlen("-Xjnitrace:"));
Vladimir Marko2b5eaa22013-12-13 13:59:30 +0000590 } else if (option == "compilercallbacks") {
591 parsed->compiler_callbacks_ =
592 reinterpret_cast<CompilerCallbacks*>(const_cast<void*>(options[i].second));
Elliott Hughes9ca7a1f2011-10-11 14:29:52 -0700593 } else if (option == "-Xzygote") {
594 parsed->is_zygote_ = true;
Ian Rogers50ffee22012-11-20 11:47:44 -0800595 } else if (option == "-Xint") {
596 parsed->interpreter_only_ = true;
Mathieu Chartier069387a2012-06-18 12:01:01 -0700597 } else if (StartsWith(option, "-Xgc:")) {
Mathieu Chartiere6da9af2013-12-16 11:54:42 -0800598 gc::CollectorType collector_type = ParseCollectorType(option.substr(strlen("-Xgc:")));
599 if (collector_type != gc::kCollectorTypeNone) {
600 parsed->collector_type_ = collector_type;
601 }
602 } else if (StartsWith(option, "-XX:BackgroundGC=")) {
603 gc::CollectorType collector_type = ParseCollectorType(
604 option.substr(strlen("-XX:BackgroundGC=")));
605 if (collector_type != gc::kCollectorTypeNone) {
606 parsed->background_collector_type_ = collector_type;
Mathieu Chartier069387a2012-06-18 12:01:01 -0700607 }
Anwar Ghuloum87183592013-08-14 12:12:19 -0700608 } else if (option == "-XX:+DisableExplicitGC") {
609 parsed->is_explicit_gc_disabled_ = true;
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800610 } else if (StartsWith(option, "-verbose:")) {
Elliott Hughes0af55432011-08-17 18:37:28 -0700611 std::vector<std::string> verbose_options;
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800612 Split(option.substr(strlen("-verbose:")), ',', verbose_options);
Elliott Hughes0af55432011-08-17 18:37:28 -0700613 for (size_t i = 0; i < verbose_options.size(); ++i) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800614 if (verbose_options[i] == "class") {
615 gLogVerbosity.class_linker = true;
Anwar Ghuloum75a43f12013-08-13 17:22:14 -0700616 } else if (verbose_options[i] == "verifier") {
617 gLogVerbosity.verifier = true;
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800618 } else if (verbose_options[i] == "compiler") {
619 gLogVerbosity.compiler = true;
620 } else if (verbose_options[i] == "heap") {
621 gLogVerbosity.heap = true;
622 } else if (verbose_options[i] == "gc") {
623 gLogVerbosity.gc = true;
624 } else if (verbose_options[i] == "jdwp") {
625 gLogVerbosity.jdwp = true;
626 } else if (verbose_options[i] == "jni") {
627 gLogVerbosity.jni = true;
628 } else if (verbose_options[i] == "monitor") {
629 gLogVerbosity.monitor = true;
630 } else if (verbose_options[i] == "startup") {
631 gLogVerbosity.startup = true;
632 } else if (verbose_options[i] == "third-party-jni") {
633 gLogVerbosity.third_party_jni = true;
634 } else if (verbose_options[i] == "threads") {
635 gLogVerbosity.threads = true;
636 } else {
637 LOG(WARNING) << "Ignoring unknown -verbose option: " << verbose_options[i];
638 }
Elliott Hughes0af55432011-08-17 18:37:28 -0700639 }
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800640 } else if (StartsWith(option, "-Xjnigreflimit:")) {
Elliott Hughes2010a602013-07-02 14:17:23 -0700641 // Silently ignored for backwards compatibility.
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800642 } else if (StartsWith(option, "-Xlockprofthreshold:")) {
Elliott Hughesbb1e8f02011-10-18 14:14:25 -0700643 parsed->lock_profiling_threshold_ = ParseIntegerOrDie(option);
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800644 } else if (StartsWith(option, "-Xstacktracefile:")) {
Elliott Hughes206c20d2012-06-28 11:05:37 -0700645 parsed->stack_trace_file_ = option.substr(strlen("-Xstacktracefile:"));
Elliott Hughesfc861622011-10-17 17:57:47 -0700646 } else if (option == "sensitiveThread") {
Ian Rogers1b09b092012-08-20 15:35:52 -0700647 parsed->hook_is_sensitive_thread_ = reinterpret_cast<bool (*)()>(const_cast<void*>(options[i].second));
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700648 } else if (option == "vfprintf") {
Ian Rogers1b09b092012-08-20 15:35:52 -0700649 parsed->hook_vfprintf_ =
650 reinterpret_cast<int (*)(FILE *, const char*, va_list)>(const_cast<void*>(options[i].second));
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700651 } else if (option == "exit") {
Ian Rogers1b09b092012-08-20 15:35:52 -0700652 parsed->hook_exit_ = reinterpret_cast<void(*)(jint)>(const_cast<void*>(options[i].second));
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700653 } else if (option == "abort") {
Ian Rogers1b09b092012-08-20 15:35:52 -0700654 parsed->hook_abort_ = reinterpret_cast<void(*)()>(const_cast<void*>(options[i].second));
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700655 } else if (option == "host-prefix") {
656 parsed->host_prefix_ = reinterpret_cast<const char*>(options[i].second);
Elliott Hughesb3e66df2012-01-12 14:49:18 -0800657 } else if (option == "-Xgenregmap" || option == "-Xgc:precise") {
658 // We silently ignore these for backwards compatibility.
jeffhaob5e81852012-03-12 11:15:45 -0700659 } else if (option == "-Xmethod-trace") {
660 parsed->method_trace_ = true;
661 } else if (StartsWith(option, "-Xmethod-trace-file:")) {
662 parsed->method_trace_file_ = option.substr(strlen("-Xmethod-trace-file:"));
663 } else if (StartsWith(option, "-Xmethod-trace-file-size:")) {
664 parsed->method_trace_file_size_ = ParseIntegerOrDie(option);
Elliott Hughese119a362012-05-22 17:37:06 -0700665 } else if (option == "-Xprofile:threadcpuclock") {
666 Trace::SetDefaultClockSource(kProfilerClockSourceThreadCpu);
667 } else if (option == "-Xprofile:wallclock") {
668 Trace::SetDefaultClockSource(kProfilerClockSourceWall);
669 } else if (option == "-Xprofile:dualclock") {
670 Trace::SetDefaultClockSource(kProfilerClockSourceDual);
Dave Allison0aded082013-11-07 13:15:11 -0800671 } else if (StartsWith(option, "-Xprofile:")) {
672 parsed->profile_output_filename_ = option.substr(strlen("-Xprofile:"));
673 parsed->profile_ = true;
674 } else if (StartsWith(option, "-Xprofile-period:")) {
675 parsed->profile_period_s_ = ParseIntegerOrDie(option);
676 } else if (StartsWith(option, "-Xprofile-duration:")) {
677 parsed->profile_duration_s_ = ParseIntegerOrDie(option);
678 } else if (StartsWith(option, "-Xprofile-interval:")) {
679 parsed->profile_interval_us_ = ParseIntegerOrDie(option);
680 } else if (StartsWith(option, "-Xprofile-backoff:")) {
681 parsed->profile_backoff_coefficient_ = ParseDoubleOrDie(option, "-Xprofile-backoff:",
682 1.0, 10.0, ignore_unrecognized,
683 parsed->profile_backoff_coefficient_);
buzbeea024a062013-07-31 10:47:37 -0700684 } else if (option == "-compiler-filter:interpret-only") {
685 parsed->compiler_filter_ = kInterpretOnly;
buzbeea024a062013-07-31 10:47:37 -0700686 } else if (option == "-compiler-filter:space") {
687 parsed->compiler_filter_ = kSpace;
688 } else if (option == "-compiler-filter:balanced") {
689 parsed->compiler_filter_ = kBalanced;
690 } else if (option == "-compiler-filter:speed") {
691 parsed->compiler_filter_ = kSpeed;
buzbeefe9ca402013-08-21 09:48:11 -0700692 } else if (option == "-compiler-filter:everything") {
693 parsed->compiler_filter_ = kEverything;
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700694 } else if (option == "-sea_ir") {
Dragos Sbirlea7467ee02013-06-21 09:20:34 -0700695 parsed->sea_ir_mode_ = true;
buzbeea024a062013-07-31 10:47:37 -0700696 } else if (StartsWith(option, "-huge-method-max:")) {
697 parsed->huge_method_threshold_ = ParseIntegerOrDie(option);
698 } else if (StartsWith(option, "-large-method-max:")) {
699 parsed->large_method_threshold_ = ParseIntegerOrDie(option);
700 } else if (StartsWith(option, "-small-method-max:")) {
701 parsed->small_method_threshold_ = ParseIntegerOrDie(option);
702 } else if (StartsWith(option, "-tiny-method-max:")) {
703 parsed->tiny_method_threshold_ = ParseIntegerOrDie(option);
704 } else if (StartsWith(option, "-num-dex-methods-max:")) {
705 parsed->num_dex_methods_threshold_ = ParseIntegerOrDie(option);
Brian Carlstrom8a436592011-08-15 21:27:23 -0700706 } else {
707 if (!ignore_unrecognized) {
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700708 // TODO: print usage via vfprintf
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700709 LOG(ERROR) << "Unrecognized option " << option;
710 // TODO: this should exit, but for now tolerate unknown options
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700711 // return NULL;
Brian Carlstrom8a436592011-08-15 21:27:23 -0700712 }
713 }
714 }
715
Brian Carlstromfb67b722013-06-24 23:41:51 -0700716 // If a reference to the dalvik core.jar snuck in, replace it with
717 // the art specific version. This can happen with on device
718 // boot.art/boot.oat generation by GenerateImage which relies on the
719 // value of BOOTCLASSPATH.
720 std::string core_jar("/core.jar");
721 size_t core_jar_pos = parsed->boot_class_path_string_.find(core_jar);
722 if (core_jar_pos != std::string::npos) {
723 parsed->boot_class_path_string_.replace(core_jar_pos, core_jar.size(), "/core-libart.jar");
724 }
725
Vladimir Marko2b5eaa22013-12-13 13:59:30 +0000726 if (parsed->compiler_callbacks_ == nullptr && parsed->image_.empty()) {
Brian Carlstrom223f20f2012-02-04 23:06:55 -0800727 parsed->image_ += GetAndroidRoot();
728 parsed->image_ += "/framework/boot.art";
Brian Carlstrom5de8fe52011-10-16 14:10:09 -0700729 }
jeffhaoc1160702011-10-27 15:48:45 -0700730 if (parsed->heap_growth_limit_ == 0) {
731 parsed->heap_growth_limit_ = parsed->heap_maximum_size_;
732 }
Mathieu Chartiere6da9af2013-12-16 11:54:42 -0800733 if (parsed->background_collector_type_ == gc::kCollectorTypeNone) {
734 parsed->background_collector_type_ = parsed->collector_type_;
735 }
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700736 return parsed.release();
Brian Carlstrom8a436592011-08-15 21:27:23 -0700737}
738
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700739bool Runtime::Create(const Options& options, bool ignore_unrecognized) {
Carl Shapiro2ed144c2011-07-26 16:52:08 -0700740 // TODO: acquire a static mutex on Runtime to avoid racing.
741 if (Runtime::instance_ != NULL) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700742 return false;
Carl Shapiro2ed144c2011-07-26 16:52:08 -0700743 }
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700744 InitLogging(NULL); // Calls Locks::Init() as a side effect.
Elliott Hughesdcc24742011-09-07 14:02:44 -0700745 instance_ = new Runtime;
746 if (!instance_->Init(options, ignore_unrecognized)) {
747 delete instance_;
748 instance_ = NULL;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700749 return false;
Carl Shapiro61e019d2011-07-14 16:53:09 -0700750 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700751 return true;
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700752}
Elliott Hughes0af55432011-08-17 18:37:28 -0700753
Brian Carlstromce888532013-10-10 00:32:58 -0700754jobject CreateSystemClassLoader() {
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800755 if (Runtime::Current()->UseCompileTimeClassPath()) {
Brian Carlstromce888532013-10-10 00:32:58 -0700756 return NULL;
Brian Carlstromaded5f72011-10-07 17:15:04 -0700757 }
758
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700759 ScopedObjectAccess soa(Thread::Current());
Mathieu Chartierc528dba2013-11-26 12:00:11 -0800760 ClassLinker* cl = Runtime::Current()->GetClassLinker();
Brian Carlstromaded5f72011-10-07 17:15:04 -0700761
Mathieu Chartierc528dba2013-11-26 12:00:11 -0800762 SirtRef<mirror::Class> class_loader_class(
763 soa.Self(), soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_ClassLoader));
764 CHECK(cl->EnsureInitialized(class_loader_class, true, true));
Brian Carlstromaded5f72011-10-07 17:15:04 -0700765
Brian Carlstromea46f952013-07-30 01:26:50 -0700766 mirror::ArtMethod* getSystemClassLoader =
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800767 class_loader_class->FindDirectMethod("getSystemClassLoader", "()Ljava/lang/ClassLoader;");
Brian Carlstromdf143242011-10-10 18:05:34 -0700768 CHECK(getSystemClassLoader != NULL);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700769
Jeff Hao5d917302013-02-27 17:57:33 -0800770 JValue result;
Mathieu Chartierc528dba2013-11-26 12:00:11 -0800771 ArgArray arg_array(nullptr, 0);
Jeff Hao6474d192013-03-26 14:08:09 -0700772 InvokeWithArgArray(soa, getSystemClassLoader, &arg_array, &result, 'L');
Mathieu Chartierc528dba2013-11-26 12:00:11 -0800773 SirtRef<mirror::ClassLoader> class_loader(soa.Self(),
774 down_cast<mirror::ClassLoader*>(result.GetL()));
775 CHECK(class_loader.get() != nullptr);
Brian Carlstromce888532013-10-10 00:32:58 -0700776 JNIEnv* env = soa.Self()->GetJniEnv();
Mathieu Chartierc528dba2013-11-26 12:00:11 -0800777 ScopedLocalRef<jobject> system_class_loader(env,
778 soa.AddLocalReference<jobject>(class_loader.get()));
779 CHECK(system_class_loader.get() != nullptr);
Brian Carlstromce888532013-10-10 00:32:58 -0700780
Mathieu Chartierc528dba2013-11-26 12:00:11 -0800781 soa.Self()->SetClassLoaderOverride(class_loader.get());
Ian Rogers365c1022012-06-22 15:05:28 -0700782
Mathieu Chartierc528dba2013-11-26 12:00:11 -0800783 SirtRef<mirror::Class> thread_class(soa.Self(),
784 soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_Thread));
785 CHECK(cl->EnsureInitialized(thread_class, true, true));
Ian Rogers365c1022012-06-22 15:05:28 -0700786
Mathieu Chartierc528dba2013-11-26 12:00:11 -0800787 mirror::ArtField* contextClassLoader =
788 thread_class->FindDeclaredInstanceField("contextClassLoader", "Ljava/lang/ClassLoader;");
Jesse Wilson1b2b2f22011-11-22 11:47:44 -0500789 CHECK(contextClassLoader != NULL);
Ian Rogers365c1022012-06-22 15:05:28 -0700790
Mathieu Chartierc528dba2013-11-26 12:00:11 -0800791 contextClassLoader->SetObject(soa.Self()->GetPeer(), class_loader.get());
Brian Carlstromce888532013-10-10 00:32:58 -0700792
793 return env->NewGlobalRef(system_class_loader.get());
Brian Carlstromaded5f72011-10-07 17:15:04 -0700794}
795
Brian Carlstrombd86bcc2013-03-10 20:26:16 -0700796bool Runtime::Start() {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800797 VLOG(startup) << "Runtime::Start entering";
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700798
799 CHECK(host_prefix_.empty()) << host_prefix_;
800
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700801 // Restore main thread state to kNative as expected by native code.
Ian Rogersa436fde2013-08-27 23:34:06 -0700802 Thread* self = Thread::Current();
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700803 self->TransitionFromRunnableToSuspended(kNative);
804
Brian Carlstrom5d40f182011-09-26 22:29:18 -0700805 started_ = true;
806
Brian Carlstromae826982011-11-09 01:33:42 -0800807 // InitNativeMethods needs to be after started_ so that the classes
808 // it touches will have methods linked to the oat file if necessary.
809 InitNativeMethods();
810
Ian Rogers365c1022012-06-22 15:05:28 -0700811 // Initialize well known thread group values that may be accessed threads while attaching.
812 InitThreadGroups(self);
813
Jesse Wilson9a6bae82011-11-14 14:57:30 -0500814 Thread::FinishStartup();
815
Brian Carlstrombd86bcc2013-03-10 20:26:16 -0700816 if (is_zygote_) {
817 if (!InitZygote()) {
818 return false;
819 }
820 } else {
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700821 DidForkFromZygote();
822 }
Elliott Hughes9ca7a1f2011-10-11 14:29:52 -0700823
Elliott Hughes85d15452011-09-16 17:33:01 -0700824 StartDaemonThreads();
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700825
Brian Carlstromce888532013-10-10 00:32:58 -0700826 system_class_loader_ = CreateSystemClassLoader();
Brian Carlstromaded5f72011-10-07 17:15:04 -0700827
Elliott Hughes225f5a12012-06-11 11:23:48 -0700828 self->GetJniEnv()->locals.AssertEmpty();
Elliott Hughes726079d2011-10-07 18:43:44 -0700829
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800830 VLOG(startup) << "Runtime::Start exiting";
Mathieu Chartier7664f5c2012-06-08 18:15:32 -0700831
832 finished_starting_ = true;
Brian Carlstrombd86bcc2013-03-10 20:26:16 -0700833
Dave Allison0aded082013-11-07 13:15:11 -0800834 if (profile_) {
835 // User has asked for a profile using -Xprofile
836 StartProfiler(profile_output_filename_.c_str(), true);
837 }
838
Brian Carlstrombd86bcc2013-03-10 20:26:16 -0700839 return true;
Elliott Hughes85d15452011-09-16 17:33:01 -0700840}
841
Ian Rogers120f1c72012-09-28 17:17:10 -0700842void Runtime::EndThreadBirth() EXCLUSIVE_LOCKS_REQUIRED(Locks::runtime_shutdown_lock_) {
843 DCHECK_GT(threads_being_born_, 0U);
844 threads_being_born_--;
845 if (shutting_down_started_ && threads_being_born_ == 0) {
Ian Rogersc604d732012-10-14 16:09:54 -0700846 shutdown_cond_->Broadcast(Thread::Current());
Ian Rogers120f1c72012-09-28 17:17:10 -0700847 }
848}
849
Brian Carlstrombd86bcc2013-03-10 20:26:16 -0700850// Do zygote-mode-only initialization.
851bool Runtime::InitZygote() {
852 // zygote goes into its own process group
Brian Carlstromb1eba212013-07-17 18:07:19 -0700853 setpgid(0, 0);
Brian Carlstrombd86bcc2013-03-10 20:26:16 -0700854
855 // See storage config details at http://source.android.com/tech/storage/
856 // Create private mount namespace shared by all children
857 if (unshare(CLONE_NEWNS) == -1) {
858 PLOG(WARNING) << "Failed to unshare()";
859 return false;
860 }
861
862 // Mark rootfs as being a slave so that changes from default
863 // namespace only flow into our children.
864 if (mount("rootfs", "/", NULL, (MS_SLAVE | MS_REC), NULL) == -1) {
865 PLOG(WARNING) << "Failed to mount() rootfs as MS_SLAVE";
866 return false;
867 }
868
869 // Create a staging tmpfs that is shared by our children; they will
870 // bind mount storage into their respective private namespaces, which
871 // are isolated from each other.
872 const char* target_base = getenv("EMULATED_STORAGE_TARGET");
873 if (target_base != NULL) {
874 if (mount("tmpfs", target_base, "tmpfs", MS_NOSUID | MS_NODEV,
Jeff Sharkey52cd1e82013-09-17 16:25:12 -0700875 "uid=0,gid=1028,mode=0751") == -1) {
Brian Carlstrombd86bcc2013-03-10 20:26:16 -0700876 LOG(WARNING) << "Failed to mount tmpfs to " << target_base;
877 return false;
878 }
879 }
880
881 return true;
882}
883
Brian Carlstromcaabb1b2011-10-11 18:09:13 -0700884void Runtime::DidForkFromZygote() {
Brian Carlstromcaabb1b2011-10-11 18:09:13 -0700885 is_zygote_ = false;
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700886
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700887 // Create the thread pool.
888 heap_->CreateThreadPool();
889
Brian Carlstromcaabb1b2011-10-11 18:09:13 -0700890 StartSignalCatcher();
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700891
892 // Start the JDWP thread. If the command-line debugger flags specified "suspend=y",
893 // this will pause the runtime, so we probably want this to come last.
894 Dbg::StartJdwp();
Brian Carlstromcaabb1b2011-10-11 18:09:13 -0700895}
896
897void Runtime::StartSignalCatcher() {
898 if (!is_zygote_) {
Elliott Hughes94ce37a2011-10-18 15:07:48 -0700899 signal_catcher_ = new SignalCatcher(stack_trace_file_);
Brian Carlstromcaabb1b2011-10-11 18:09:13 -0700900 }
901}
902
Mathieu Chartier590fee92013-09-13 13:46:47 -0700903bool Runtime::IsShuttingDown(Thread* self) {
904 MutexLock mu(self, *Locks::runtime_shutdown_lock_);
905 return IsShuttingDownLocked();
906}
907
Elliott Hughes85d15452011-09-16 17:33:01 -0700908void Runtime::StartDaemonThreads() {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800909 VLOG(startup) << "Runtime::StartDaemonThreads entering";
Elliott Hughes85d15452011-09-16 17:33:01 -0700910
Elliott Hughes719b3232011-09-25 17:42:19 -0700911 Thread* self = Thread::Current();
Brian Carlstromaded5f72011-10-07 17:15:04 -0700912
913 // Must be in the kNative state for calling native methods.
Ian Rogers50b35e22012-10-04 10:09:15 -0700914 CHECK_EQ(self->GetState(), kNative);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700915
Elliott Hughes719b3232011-09-25 17:42:19 -0700916 JNIEnv* env = self->GetJniEnv();
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700917 env->CallStaticVoidMethod(WellKnownClasses::java_lang_Daemons,
918 WellKnownClasses::java_lang_Daemons_start);
919 if (env->ExceptionCheck()) {
920 env->ExceptionDescribe();
921 LOG(FATAL) << "Error starting java.lang.Daemons";
922 }
Elliott Hughes9ca7a1f2011-10-11 14:29:52 -0700923
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800924 VLOG(startup) << "Runtime::StartDaemonThreads exiting";
Carl Shapiro61e019d2011-07-14 16:53:09 -0700925}
926
Elliott Hughes0af55432011-08-17 18:37:28 -0700927bool Runtime::Init(const Options& raw_options, bool ignore_unrecognized) {
Elliott Hughesc1674ed2011-08-25 18:09:09 -0700928 CHECK_EQ(sysconf(_SC_PAGE_SIZE), kPageSize);
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700929
Elliott Hughes90a33692011-08-30 13:27:07 -0700930 UniquePtr<ParsedOptions> options(ParsedOptions::Create(raw_options, ignore_unrecognized));
931 if (options.get() == NULL) {
Brian Carlstrome24fa612011-09-29 00:53:55 -0700932 LOG(ERROR) << "Failed to parse options";
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700933 return false;
934 }
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800935 VLOG(startup) << "Runtime::Init -verbose:startup enabled";
Elliott Hughes7ede61e2011-09-14 18:18:06 -0700936
Elliott Hughes7c6169d2012-05-02 16:11:48 -0700937 QuasiAtomic::Startup();
938
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800939 Monitor::Init(options->lock_profiling_threshold_, options->hook_is_sensitive_thread_);
Elliott Hughes32d6e1e2011-10-11 14:47:44 -0700940
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700941 host_prefix_ = options->host_prefix_;
Brian Carlstroma004aa92012-02-08 18:05:09 -0800942 boot_class_path_string_ = options->boot_class_path_string_;
943 class_path_string_ = options->class_path_string_;
Elliott Hughes7ede61e2011-09-14 18:18:06 -0700944 properties_ = options->properties_;
945
Vladimir Marko2b5eaa22013-12-13 13:59:30 +0000946 compiler_callbacks_ = options->compiler_callbacks_;
Elliott Hughes9ca7a1f2011-10-11 14:29:52 -0700947 is_zygote_ = options->is_zygote_;
Anwar Ghuloum87183592013-08-14 12:12:19 -0700948 is_explicit_gc_disabled_ = options->is_explicit_gc_disabled_;
Elliott Hughes9ca7a1f2011-10-11 14:29:52 -0700949
buzbeea024a062013-07-31 10:47:37 -0700950 compiler_filter_ = options->compiler_filter_;
951 huge_method_threshold_ = options->huge_method_threshold_;
952 large_method_threshold_ = options->large_method_threshold_;
953 small_method_threshold_ = options->small_method_threshold_;
954 tiny_method_threshold_ = options->tiny_method_threshold_;
955 num_dex_methods_threshold_ = options->num_dex_methods_threshold_;
Anwar Ghuloum8447d842013-04-30 17:27:40 -0700956
Dragos Sbirlea7467ee02013-06-21 09:20:34 -0700957 sea_ir_mode_ = options->sea_ir_mode_;
Elliott Hughes0af55432011-08-17 18:37:28 -0700958 vfprintf_ = options->hook_vfprintf_;
959 exit_ = options->hook_exit_;
960 abort_ = options->hook_abort_;
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700961
Elliott Hughesbe759c62011-09-08 19:38:21 -0700962 default_stack_size_ = options->stack_size_;
Elliott Hughes94ce37a2011-10-18 15:07:48 -0700963 stack_trace_file_ = options->stack_trace_file_;
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700964
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700965 max_spins_before_thin_lock_inflation_ = options->max_spins_before_thin_lock_inflation_;
966
Elliott Hughesc33a32b2011-10-11 18:18:07 -0700967 monitor_list_ = new MonitorList;
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800968 thread_list_ = new ThreadList;
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700969 intern_table_ = new InternTable;
970
Logan Chiendd361c92012-04-10 23:40:37 +0800971
Ian Rogers62d6c772013-02-27 08:32:07 -0800972 if (options->interpreter_only_) {
973 GetInstrumentation()->ForceInterpretOnly();
974 }
975
Ian Rogers1d54e732013-05-02 21:10:01 -0700976 heap_ = new gc::Heap(options->heap_initial_size_,
977 options->heap_growth_limit_,
978 options->heap_min_free_,
979 options->heap_max_free_,
980 options->heap_target_utilization_,
981 options->heap_maximum_size_,
982 options->image_,
Mathieu Chartier0de9f732013-11-22 17:58:48 -0800983 options->collector_type_,
Mathieu Chartiere6da9af2013-12-16 11:54:42 -0800984 options->background_collector_type_,
Mathieu Chartier2775ee42013-08-20 17:43:47 -0700985 options->parallel_gc_threads_,
986 options->conc_gc_threads_,
987 options->low_memory_mode_,
988 options->long_pause_log_threshold_,
989 options->long_gc_log_threshold_,
Mathieu Chartier692fafd2013-11-29 17:24:40 -0800990 options->ignore_max_footprint_,
991 options->use_tlab_);
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700992
Hiroshi Yamauchi2e899a92013-11-22 16:50:12 -0800993 dump_gc_performance_on_shutdown_ = options->dump_gc_performance_on_shutdown_;
994
Elliott Hughesc1674ed2011-08-25 18:09:09 -0700995 BlockSignals();
Elliott Hughes457005c2012-04-16 13:54:25 -0700996 InitPlatformSignalHandlers();
Elliott Hughesc1674ed2011-08-25 18:09:09 -0700997
Elliott Hughesa0957642011-09-02 14:27:33 -0700998 java_vm_ = new JavaVMExt(this, options.get());
Elliott Hughes515a5bc2011-08-17 11:08:34 -0700999
Elliott Hughesbe759c62011-09-08 19:38:21 -07001000 Thread::Startup();
Elliott Hughesd92bec42011-09-02 17:04:36 -07001001
Mathieu Chartier664bebf2012-11-12 16:54:11 -08001002 // ClassLinker needs an attached thread, but we can't fully attach a thread without creating
1003 // objects. We can't supply a thread group yet; it will be fixed later. Since we are the main
1004 // thread, we do not get a java peer.
1005 Thread* self = Thread::Attach("main", false, NULL, false);
Ian Rogersd9c4fc92013-10-01 19:45:43 -07001006 CHECK_EQ(self->thin_lock_thread_id_, ThreadList::kMainThreadId);
Ian Rogers120f1c72012-09-28 17:17:10 -07001007 CHECK(self != NULL);
Brian Carlstrom6ea095a2011-08-16 15:26:54 -07001008
Brian Carlstromf28bc5b2011-10-26 01:15:03 -07001009 // Set us to runnable so tools using a runtime can allocate and GC by default
Ian Rogers120f1c72012-09-28 17:17:10 -07001010 self->TransitionFromSuspendedToRunnable();
Brian Carlstromf28bc5b2011-10-26 01:15:03 -07001011
Ian Rogersa436fde2013-08-27 23:34:06 -07001012 // Now we're attached, we can take the heap locks and validate the heap.
Ian Rogers141d6222012-04-05 12:23:06 -07001013 GetHeap()->EnableObjectValidation();
1014
Ian Rogers1d54e732013-05-02 21:10:01 -07001015 CHECK_GE(GetHeap()->GetContinuousSpaces().size(), 1U);
Mathieu Chartier590fee92013-09-13 13:46:47 -07001016 class_linker_ = new ClassLinker(intern_table_);
1017 if (GetHeap()->HasImageSpace()) {
1018 class_linker_->InitFromImage();
Brian Carlstroma004aa92012-02-08 18:05:09 -08001019 } else {
1020 CHECK(options->boot_class_path_ != NULL);
1021 CHECK_NE(options->boot_class_path_->size(), 0U);
Mathieu Chartier590fee92013-09-13 13:46:47 -07001022 class_linker_->InitFromCompiler(*options->boot_class_path_);
Brian Carlstroma004aa92012-02-08 18:05:09 -08001023 }
1024 CHECK(class_linker_ != NULL);
Sameer Abu Asal51a5fb72013-02-19 14:25:01 -08001025 verifier::MethodVerifier::Init();
Brian Carlstrom6ea095a2011-08-16 15:26:54 -07001026
jeffhaob5e81852012-03-12 11:15:45 -07001027 method_trace_ = options->method_trace_;
1028 method_trace_file_ = options->method_trace_file_;
1029 method_trace_file_size_ = options->method_trace_file_size_;
1030
Dave Allison0aded082013-11-07 13:15:11 -08001031 // Extract the profile options.
1032 profile_period_s_ = options->profile_period_s_;
1033 profile_duration_s_ = options->profile_duration_s_;
1034 profile_interval_us_ = options->profile_interval_us_;
1035 profile_backoff_coefficient_ = options->profile_backoff_coefficient_;
1036 profile_ = options->profile_;
1037 profile_output_filename_ = options->profile_output_filename_;
1038
jeffhaob5e81852012-03-12 11:15:45 -07001039 if (options->method_trace_) {
Jeff Hao23009dc2013-08-22 15:36:42 -07001040 Trace::Start(options->method_trace_file_.c_str(), -1, options->method_trace_file_size_, 0,
1041 false, false, 0);
jeffhaob5e81852012-03-12 11:15:45 -07001042 }
1043
Ian Rogersa436fde2013-08-27 23:34:06 -07001044 // Pre-allocate an OutOfMemoryError for the double-OOME case.
1045 self->ThrowNewException(ThrowLocation(), "Ljava/lang/OutOfMemoryError;",
1046 "OutOfMemoryError thrown while trying to throw OutOfMemoryError; no stack available");
1047 pre_allocated_OutOfMemoryError_ = self->GetException(NULL);
1048 self->ClearException();
1049
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08001050 VLOG(startup) << "Runtime::Init exiting";
Carl Shapiro1fb86202011-06-27 17:43:13 -07001051 return true;
1052}
1053
Elliott Hughes038a8062011-09-18 14:12:41 -07001054void Runtime::InitNativeMethods() {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08001055 VLOG(startup) << "Runtime::InitNativeMethods entering";
Elliott Hughesad7c2a32011-08-31 11:58:10 -07001056 Thread* self = Thread::Current();
1057 JNIEnv* env = self->GetJniEnv();
1058
Elliott Hughes418d20f2011-09-22 14:00:39 -07001059 // Must be in the kNative state for calling native methods (JNI_OnLoad code).
Ian Rogers50b35e22012-10-04 10:09:15 -07001060 CHECK_EQ(self->GetState(), kNative);
Elliott Hughesad7c2a32011-08-31 11:58:10 -07001061
Elliott Hughes418d20f2011-09-22 14:00:39 -07001062 // First set up JniConstants, which is used by both the runtime's built-in native
1063 // methods and libcore.
Elliott Hughesfea966e2011-09-22 10:26:20 -07001064 JniConstants::init(env);
Elliott Hugheseac76672012-05-24 21:56:51 -07001065 WellKnownClasses::Init(env);
Elliott Hughesfea966e2011-09-22 10:26:20 -07001066
Elliott Hughes418d20f2011-09-22 14:00:39 -07001067 // Then set up the native methods provided by the runtime itself.
Elliott Hughesad7c2a32011-08-31 11:58:10 -07001068 RegisterRuntimeNativeMethods(env);
1069
Elliott Hughes418d20f2011-09-22 14:00:39 -07001070 // Then set up libcore, which is just a regular JNI library with a regular JNI_OnLoad.
1071 // Most JNI libraries can just use System.loadLibrary, but libcore can't because it's
1072 // the library that implements System.loadLibrary!
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001073 {
1074 std::string mapped_name(StringPrintf(OS_SHARED_LIB_FORMAT_STR, "javacore"));
1075 std::string reason;
1076 self->TransitionFromSuspendedToRunnable();
Ian Rogers1eb512d2013-10-18 15:42:20 -07001077 if (!instance_->java_vm_->LoadNativeLibrary(mapped_name, NULL, &reason)) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001078 LOG(FATAL) << "LoadNativeLibrary failed for \"" << mapped_name << "\": " << reason;
1079 }
1080 self->TransitionFromRunnableToSuspended(kNative);
1081 }
Ian Rogersef28b142012-11-30 14:22:18 -08001082
1083 // Initialize well known classes that may invoke runtime native methods.
1084 WellKnownClasses::LateInit(env);
1085
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08001086 VLOG(startup) << "Runtime::InitNativeMethods exiting";
Elliott Hughesad7c2a32011-08-31 11:58:10 -07001087}
1088
Ian Rogers365c1022012-06-22 15:05:28 -07001089void Runtime::InitThreadGroups(Thread* self) {
1090 JNIEnvExt* env = self->GetJniEnv();
1091 ScopedJniEnvLocalRefState env_state(env);
1092 main_thread_group_ =
1093 env->NewGlobalRef(env->GetStaticObjectField(WellKnownClasses::java_lang_ThreadGroup,
1094 WellKnownClasses::java_lang_ThreadGroup_mainThreadGroup));
Brian Carlstrom034f76b2012-08-01 15:51:58 -07001095 CHECK(main_thread_group_ != NULL || IsCompiler());
Ian Rogers365c1022012-06-22 15:05:28 -07001096 system_thread_group_ =
1097 env->NewGlobalRef(env->GetStaticObjectField(WellKnownClasses::java_lang_ThreadGroup,
1098 WellKnownClasses::java_lang_ThreadGroup_systemThreadGroup));
Brian Carlstrom034f76b2012-08-01 15:51:58 -07001099 CHECK(system_thread_group_ != NULL || IsCompiler());
1100}
1101
1102jobject Runtime::GetMainThreadGroup() const {
1103 CHECK(main_thread_group_ != NULL || IsCompiler());
1104 return main_thread_group_;
1105}
1106
1107jobject Runtime::GetSystemThreadGroup() const {
1108 CHECK(system_thread_group_ != NULL || IsCompiler());
1109 return system_thread_group_;
Ian Rogers365c1022012-06-22 15:05:28 -07001110}
1111
Brian Carlstromce888532013-10-10 00:32:58 -07001112jobject Runtime::GetSystemClassLoader() const {
1113 CHECK(system_class_loader_ != NULL || IsCompiler());
1114 return system_class_loader_;
1115}
1116
Elliott Hughesad7c2a32011-08-31 11:58:10 -07001117void Runtime::RegisterRuntimeNativeMethods(JNIEnv* env) {
1118#define REGISTER(FN) extern void FN(JNIEnv*); FN(env)
Ian Rogers5167c972012-02-03 10:41:20 -08001119 // Register Throwable first so that registration of other native methods can throw exceptions
1120 REGISTER(register_java_lang_Throwable);
Brian Carlstromf91c8c32011-09-21 17:30:34 -07001121 REGISTER(register_dalvik_system_DexFile);
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07001122 REGISTER(register_dalvik_system_VMDebug);
Elliott Hughes7ede61e2011-09-14 18:18:06 -07001123 REGISTER(register_dalvik_system_VMRuntime);
Elliott Hughes8daa0922011-09-11 13:46:25 -07001124 REGISTER(register_dalvik_system_VMStack);
Elliott Hughes01158d72011-09-19 19:47:10 -07001125 REGISTER(register_dalvik_system_Zygote);
Elliott Hughesd369bb72011-09-12 14:41:14 -07001126 REGISTER(register_java_lang_Class);
Ian Rogers8b2c0b92013-09-19 02:56:49 -07001127 REGISTER(register_java_lang_DexCache);
Elliott Hughesbf86d042011-08-31 17:53:14 -07001128 REGISTER(register_java_lang_Object);
1129 REGISTER(register_java_lang_Runtime);
1130 REGISTER(register_java_lang_String);
1131 REGISTER(register_java_lang_System);
Elliott Hughes8daa0922011-09-11 13:46:25 -07001132 REGISTER(register_java_lang_Thread);
Elliott Hughes64bf5a32011-09-20 14:43:12 -07001133 REGISTER(register_java_lang_VMClassLoader);
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001134 REGISTER(register_java_lang_reflect_Array);
Elliott Hughes2a20cfd2011-09-23 19:30:41 -07001135 REGISTER(register_java_lang_reflect_Constructor);
Brian Carlstromf867b6f2011-09-16 12:17:25 -07001136 REGISTER(register_java_lang_reflect_Field);
1137 REGISTER(register_java_lang_reflect_Method);
Jesse Wilson95caa792011-10-12 18:14:17 -04001138 REGISTER(register_java_lang_reflect_Proxy);
Elliott Hughesbf86d042011-08-31 17:53:14 -07001139 REGISTER(register_java_util_concurrent_atomic_AtomicLong);
Brian Carlstrom395520e2011-09-25 19:35:00 -07001140 REGISTER(register_org_apache_harmony_dalvik_ddmc_DdmServer);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07001141 REGISTER(register_org_apache_harmony_dalvik_ddmc_DdmVmInternal);
Elliott Hughes5ee7a8b2011-09-13 16:40:07 -07001142 REGISTER(register_sun_misc_Unsafe);
Elliott Hughesad7c2a32011-08-31 11:58:10 -07001143#undef REGISTER
1144}
1145
Elliott Hughesc967f782012-04-16 10:23:15 -07001146void Runtime::DumpForSigQuit(std::ostream& os) {
Elliott Hughescac6cc72011-11-03 20:31:21 -07001147 GetClassLinker()->DumpForSigQuit(os);
1148 GetInternTable()->DumpForSigQuit(os);
Elliott Hughesae80b492012-04-24 10:43:17 -07001149 GetJavaVM()->DumpForSigQuit(os);
Elliott Hughesc967f782012-04-16 10:23:15 -07001150 GetHeap()->DumpForSigQuit(os);
Elliott Hughes42ee1422011-09-06 12:33:32 -07001151 os << "\n";
Elliott Hughes8daa0922011-09-11 13:46:25 -07001152
Elliott Hughesc967f782012-04-16 10:23:15 -07001153 thread_list_->DumpForSigQuit(os);
Ian Rogers56edc432013-01-18 16:51:51 -08001154 BaseMutex::DumpAll(os);
Elliott Hughese27955c2011-08-26 15:21:24 -07001155}
1156
Elliott Hughes21a5bf22011-12-07 14:35:20 -08001157void Runtime::DumpLockHolders(std::ostream& os) {
Ian Rogersb726dcb2012-09-05 08:57:23 -07001158 uint64_t mutator_lock_owner = Locks::mutator_lock_->GetExclusiveOwnerTid();
Elliott Hughes21a5bf22011-12-07 14:35:20 -08001159 pid_t thread_list_lock_owner = GetThreadList()->GetLockOwner();
1160 pid_t classes_lock_owner = GetClassLinker()->GetClassesLockOwner();
1161 pid_t dex_lock_owner = GetClassLinker()->GetDexLockOwner();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001162 if ((thread_list_lock_owner | classes_lock_owner | dex_lock_owner) != 0) {
1163 os << "Mutator lock exclusive owner tid: " << mutator_lock_owner << "\n"
Elliott Hughes21a5bf22011-12-07 14:35:20 -08001164 << "ThreadList lock owner tid: " << thread_list_lock_owner << "\n"
1165 << "ClassLinker classes lock owner tid: " << classes_lock_owner << "\n"
1166 << "ClassLinker dex lock owner tid: " << dex_lock_owner << "\n";
1167 }
1168}
1169
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07001170void Runtime::SetStatsEnabled(bool new_state) {
1171 if (new_state == true) {
1172 GetStats()->Clear(~0);
1173 // TODO: wouldn't it make more sense to clear _all_ threads' stats?
1174 Thread::Current()->GetStats()->Clear(~0);
Ian Rogersfa824272013-11-05 16:12:57 -08001175 GetInstrumentation()->InstrumentQuickAllocEntryPoints();
Hiroshi Yamauchi3b4c1892013-09-12 21:33:12 -07001176 } else {
Ian Rogersfa824272013-11-05 16:12:57 -08001177 GetInstrumentation()->UninstrumentQuickAllocEntryPoints();
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07001178 }
1179 stats_enabled_ = new_state;
1180}
1181
1182void Runtime::ResetStats(int kinds) {
1183 GetStats()->Clear(kinds & 0xffff);
1184 // TODO: wouldn't it make more sense to clear _all_ threads' stats?
1185 Thread::Current()->GetStats()->Clear(kinds >> 16);
1186}
1187
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07001188int32_t Runtime::GetStat(int kind) {
1189 RuntimeStats* stats;
1190 if (kind < (1<<16)) {
1191 stats = GetStats();
1192 } else {
1193 stats = Thread::Current()->GetStats();
1194 kind >>= 16;
1195 }
1196 switch (kind) {
1197 case KIND_ALLOCATED_OBJECTS:
1198 return stats->allocated_objects;
1199 case KIND_ALLOCATED_BYTES:
1200 return stats->allocated_bytes;
1201 case KIND_FREED_OBJECTS:
1202 return stats->freed_objects;
1203 case KIND_FREED_BYTES:
1204 return stats->freed_bytes;
1205 case KIND_GC_INVOCATIONS:
1206 return stats->gc_for_alloc_count;
1207 case KIND_CLASS_INIT_COUNT:
1208 return stats->class_init_count;
1209 case KIND_CLASS_INIT_TIME:
1210 // Convert ns to us, reduce to 32 bits.
Elliott Hughes398f64b2012-03-26 18:05:48 -07001211 return static_cast<int>(stats->class_init_time_ns / 1000);
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07001212 case KIND_EXT_ALLOCATED_OBJECTS:
1213 case KIND_EXT_ALLOCATED_BYTES:
1214 case KIND_EXT_FREED_OBJECTS:
1215 case KIND_EXT_FREED_BYTES:
1216 return 0; // backward compatibility
1217 default:
Elliott Hughes7b9d9962012-04-20 18:48:18 -07001218 LOG(FATAL) << "Unknown statistic " << kind;
Brian Carlstrom7934ac22013-07-26 10:54:15 -07001219 return -1; // unreachable
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07001220 }
1221}
1222
Elliott Hughesc1674ed2011-08-25 18:09:09 -07001223void Runtime::BlockSignals() {
Elliott Hughes457005c2012-04-16 13:54:25 -07001224 SignalSet signals;
1225 signals.Add(SIGPIPE);
Elliott Hughesc1674ed2011-08-25 18:09:09 -07001226 // SIGQUIT is used to dump the runtime's state (including stack traces).
Elliott Hughes457005c2012-04-16 13:54:25 -07001227 signals.Add(SIGQUIT);
Elliott Hughes08795042012-04-03 14:48:52 -07001228 // SIGUSR1 is used to initiate a GC.
Elliott Hughes457005c2012-04-16 13:54:25 -07001229 signals.Add(SIGUSR1);
1230 signals.Block();
Elliott Hughesc1674ed2011-08-25 18:09:09 -07001231}
1232
Mathieu Chartier664bebf2012-11-12 16:54:11 -08001233bool Runtime::AttachCurrentThread(const char* thread_name, bool as_daemon, jobject thread_group,
1234 bool create_peer) {
1235 bool success = Thread::Attach(thread_name, as_daemon, thread_group, create_peer) != NULL;
Elliott Hughes22869a92012-03-27 14:08:24 -07001236 if (thread_name == NULL) {
1237 LOG(WARNING) << *Thread::Current() << " attached without supplying a name";
1238 }
Ian Rogers120f1c72012-09-28 17:17:10 -07001239 return success;
Carl Shapiro61e019d2011-07-14 16:53:09 -07001240}
1241
Elliott Hughesd92bec42011-09-02 17:04:36 -07001242void Runtime::DetachCurrentThread() {
Brian Carlstrom4d571432012-05-16 00:21:41 -07001243 Thread* self = Thread::Current();
1244 if (self == NULL) {
1245 LOG(FATAL) << "attempting to detach thread that is not attached";
1246 }
Ian Rogers0399dde2012-06-06 17:09:28 -07001247 if (self->HasManagedStack()) {
Elliott Hughes22869a92012-03-27 14:08:24 -07001248 LOG(FATAL) << *Thread::Current() << " attempting to detach while still running code";
1249 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001250 thread_list_->Unregister(self);
Carl Shapiro1fb86202011-06-27 17:43:13 -07001251}
1252
Ian Rogersa436fde2013-08-27 23:34:06 -07001253 mirror::Throwable* Runtime::GetPreAllocatedOutOfMemoryError() const {
1254 if (pre_allocated_OutOfMemoryError_ == NULL) {
1255 LOG(ERROR) << "Failed to return pre-allocated OOME";
1256 }
1257 return pre_allocated_OutOfMemoryError_;
1258}
1259
Ian Rogers1d54e732013-05-02 21:10:01 -07001260void Runtime::VisitConcurrentRoots(RootVisitor* visitor, void* arg, bool only_dirty,
1261 bool clean_dirty) {
Mathieu Chartierc4621982013-09-16 19:43:47 -07001262 intern_table_->VisitRoots(visitor, arg, only_dirty, clean_dirty);
1263 class_linker_->VisitRoots(visitor, arg, only_dirty, clean_dirty);
Mathieu Chartier9ebae1f2012-10-15 17:38:16 -07001264}
1265
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001266void Runtime::VisitNonThreadRoots(RootVisitor* visitor, void* arg) {
Mathieu Chartierc528dba2013-11-26 12:00:11 -08001267 // Visit the classes held as static in mirror classes.
1268 mirror::ArtField::VisitRoots(visitor, arg);
1269 mirror::ArtMethod::VisitRoots(visitor, arg);
1270 mirror::Class::VisitRoots(visitor, arg);
1271 mirror::StackTraceElement::VisitRoots(visitor, arg);
1272 mirror::String::VisitRoots(visitor, arg);
1273 mirror::Throwable::VisitRoots(visitor, arg);
1274 // Visit all the primitive array types classes.
1275 mirror::PrimitiveArray<uint8_t>::VisitRoots(visitor, arg); // BooleanArray
1276 mirror::PrimitiveArray<int8_t>::VisitRoots(visitor, arg); // ByteArray
1277 mirror::PrimitiveArray<uint16_t>::VisitRoots(visitor, arg); // CharArray
1278 mirror::PrimitiveArray<double>::VisitRoots(visitor, arg); // DoubleArray
1279 mirror::PrimitiveArray<float>::VisitRoots(visitor, arg); // FloatArray
1280 mirror::PrimitiveArray<int32_t>::VisitRoots(visitor, arg); // IntArray
1281 mirror::PrimitiveArray<int64_t>::VisitRoots(visitor, arg); // LongArray
1282 mirror::PrimitiveArray<int16_t>::VisitRoots(visitor, arg); // ShortArray
Brian Carlstrome24fa612011-09-29 00:53:55 -07001283 java_vm_->VisitRoots(visitor, arg);
Mathieu Chartier423d2a32013-09-12 17:33:56 -07001284 if (pre_allocated_OutOfMemoryError_ != nullptr) {
Mathieu Chartierc528dba2013-11-26 12:00:11 -08001285 pre_allocated_OutOfMemoryError_ = down_cast<mirror::Throwable*>(
Mathieu Chartier423d2a32013-09-12 17:33:56 -07001286 visitor(pre_allocated_OutOfMemoryError_, arg));
1287 DCHECK(pre_allocated_OutOfMemoryError_ != nullptr);
Elliott Hughes225f5a12012-06-11 11:23:48 -07001288 }
Mathieu Chartier590fee92013-09-13 13:46:47 -07001289 resolution_method_ = down_cast<mirror::ArtMethod*>(visitor(resolution_method_, arg));
Mathieu Chartier423d2a32013-09-12 17:33:56 -07001290 DCHECK(resolution_method_ != nullptr);
Mathieu Chartier590fee92013-09-13 13:46:47 -07001291 if (HasImtConflictMethod()) {
1292 imt_conflict_method_ = down_cast<mirror::ArtMethod*>(visitor(imt_conflict_method_, arg));
1293 }
1294 if (HasDefaultImt()) {
1295 default_imt_ = down_cast<mirror::ObjectArray<mirror::ArtMethod>*>(visitor(default_imt_, arg));
1296 }
1297
Ian Rogers4f0d07c2011-10-06 23:38:47 -07001298 for (int i = 0; i < Runtime::kLastCalleeSaveType; i++) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001299 if (callee_save_methods_[i] != nullptr) {
1300 callee_save_methods_[i] = down_cast<mirror::ArtMethod*>(
1301 visitor(callee_save_methods_[i], arg));
1302 }
Ian Rogers4f0d07c2011-10-06 23:38:47 -07001303 }
Mathieu Chartierc528dba2013-11-26 12:00:11 -08001304 {
1305 MutexLock mu(Thread::Current(), method_verifiers_lock_);
1306 for (verifier::MethodVerifier* verifier : method_verifiers_) {
1307 verifier->VisitRoots(visitor, arg);
1308 }
1309 }
Brian Carlstrome24fa612011-09-29 00:53:55 -07001310}
1311
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001312void Runtime::VisitNonConcurrentRoots(RootVisitor* visitor, void* arg) {
Mathieu Chartier858f1c52012-10-17 17:45:55 -07001313 thread_list_->VisitRoots(visitor, arg);
1314 VisitNonThreadRoots(visitor, arg);
1315}
1316
Ian Rogers1d54e732013-05-02 21:10:01 -07001317void Runtime::VisitRoots(RootVisitor* visitor, void* arg, bool only_dirty, bool clean_dirty) {
1318 VisitConcurrentRoots(visitor, arg, only_dirty, clean_dirty);
Mathieu Chartier9ebae1f2012-10-15 17:38:16 -07001319 VisitNonConcurrentRoots(visitor, arg);
1320}
1321
Jeff Hao88474b42013-10-23 16:24:40 -07001322mirror::ObjectArray<mirror::ArtMethod>* Runtime::CreateDefaultImt(ClassLinker* cl) {
1323 Thread* self = Thread::Current();
1324 SirtRef<mirror::ObjectArray<mirror::ArtMethod> > imtable(self, cl->AllocArtMethodArray(self, 64));
1325 mirror::ArtMethod* imt_conflict_method = Runtime::Current()->GetImtConflictMethod();
Mathieu Chartier590fee92013-09-13 13:46:47 -07001326 for (size_t i = 0; i < static_cast<size_t>(imtable->GetLength()); i++) {
Jeff Hao88474b42013-10-23 16:24:40 -07001327 imtable->Set(i, imt_conflict_method);
1328 }
1329 return imtable.get();
1330}
1331
1332mirror::ArtMethod* Runtime::CreateImtConflictMethod() {
Jeff Hao88474b42013-10-23 16:24:40 -07001333 Thread* self = Thread::Current();
Mathieu Chartier590fee92013-09-13 13:46:47 -07001334 Runtime* r = Runtime::Current();
1335 ClassLinker* cl = r->GetClassLinker();
1336 SirtRef<mirror::ArtMethod> method(self, cl->AllocArtMethod(self));
1337 method->SetDeclaringClass(mirror::ArtMethod::GetJavaLangReflectArtMethod());
Jeff Hao88474b42013-10-23 16:24:40 -07001338 // TODO: use a special method for imt conflict method saves
1339 method->SetDexMethodIndex(DexFile::kDexNoIndex);
1340 // When compiling, the code pointer will get set later when the image is loaded.
Jeff Hao88474b42013-10-23 16:24:40 -07001341 method->SetEntryPointFromCompiledCode(r->IsCompiler() ? NULL : GetImtConflictTrampoline(cl));
1342 return method.get();
1343}
1344
Brian Carlstromea46f952013-07-30 01:26:50 -07001345mirror::ArtMethod* Runtime::CreateResolutionMethod() {
Ian Rogers50b35e22012-10-04 10:09:15 -07001346 Thread* self = Thread::Current();
Mathieu Chartier590fee92013-09-13 13:46:47 -07001347 Runtime* r = Runtime::Current();
1348 ClassLinker* cl = r->GetClassLinker();
1349 SirtRef<mirror::ArtMethod> method(self, cl->AllocArtMethod(self));
1350 method->SetDeclaringClass(mirror::ArtMethod::GetJavaLangReflectArtMethod());
Ian Rogers19846512012-02-24 11:42:47 -08001351 // TODO: use a special method for resolution method saves
Ian Rogers8b2c0b92013-09-19 02:56:49 -07001352 method->SetDexMethodIndex(DexFile::kDexNoIndex);
Jeff Hao58df3272013-04-22 15:28:53 -07001353 // When compiling, the code pointer will get set later when the image is loaded.
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001354 method->SetEntryPointFromCompiledCode(r->IsCompiler() ? NULL : GetResolutionTrampoline(cl));
Ian Rogers19846512012-02-24 11:42:47 -08001355 return method.get();
1356}
1357
Brian Carlstromea46f952013-07-30 01:26:50 -07001358mirror::ArtMethod* Runtime::CreateCalleeSaveMethod(InstructionSet instruction_set,
Mathieu Chartier590fee92013-09-13 13:46:47 -07001359 CalleeSaveType type) {
Ian Rogers50b35e22012-10-04 10:09:15 -07001360 Thread* self = Thread::Current();
Mathieu Chartier590fee92013-09-13 13:46:47 -07001361 Runtime* r = Runtime::Current();
1362 ClassLinker* cl = r->GetClassLinker();
1363 SirtRef<mirror::ArtMethod> method(self, cl->AllocArtMethod(self));
1364 method->SetDeclaringClass(mirror::ArtMethod::GetJavaLangReflectArtMethod());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001365 // TODO: use a special method for callee saves
Ian Rogers8b2c0b92013-09-19 02:56:49 -07001366 method->SetDexMethodIndex(DexFile::kDexNoIndex);
Jeff Haoaa4a7932013-05-13 11:28:27 -07001367 method->SetEntryPointFromCompiledCode(NULL);
Brian Carlstromae826982011-11-09 01:33:42 -08001368 if ((instruction_set == kThumb2) || (instruction_set == kArm)) {
Ian Rogers4f0d07c2011-10-06 23:38:47 -07001369 uint32_t ref_spills = (1 << art::arm::R5) | (1 << art::arm::R6) | (1 << art::arm::R7) |
1370 (1 << art::arm::R8) | (1 << art::arm::R10) | (1 << art::arm::R11);
1371 uint32_t arg_spills = (1 << art::arm::R1) | (1 << art::arm::R2) | (1 << art::arm::R3);
1372 uint32_t all_spills = (1 << art::arm::R4) | (1 << art::arm::R9);
jeffhaofa147e22012-10-12 17:03:32 -07001373 uint32_t core_spills = ref_spills | (type == kRefsAndArgs ? arg_spills : 0) |
1374 (type == kSaveAll ? all_spills : 0) | (1 << art::arm::LR);
Ian Rogers4f0d07c2011-10-06 23:38:47 -07001375 uint32_t fp_all_spills = (1 << art::arm::S0) | (1 << art::arm::S1) | (1 << art::arm::S2) |
1376 (1 << art::arm::S3) | (1 << art::arm::S4) | (1 << art::arm::S5) |
1377 (1 << art::arm::S6) | (1 << art::arm::S7) | (1 << art::arm::S8) |
1378 (1 << art::arm::S9) | (1 << art::arm::S10) | (1 << art::arm::S11) |
1379 (1 << art::arm::S12) | (1 << art::arm::S13) | (1 << art::arm::S14) |
1380 (1 << art::arm::S15) | (1 << art::arm::S16) | (1 << art::arm::S17) |
1381 (1 << art::arm::S18) | (1 << art::arm::S19) | (1 << art::arm::S20) |
1382 (1 << art::arm::S21) | (1 << art::arm::S22) | (1 << art::arm::S23) |
1383 (1 << art::arm::S24) | (1 << art::arm::S25) | (1 << art::arm::S26) |
1384 (1 << art::arm::S27) | (1 << art::arm::S28) | (1 << art::arm::S29) |
1385 (1 << art::arm::S30) | (1 << art::arm::S31);
1386 uint32_t fp_spills = type == kSaveAll ? fp_all_spills : 0;
1387 size_t frame_size = RoundUp((__builtin_popcount(core_spills) /* gprs */ +
1388 __builtin_popcount(fp_spills) /* fprs */ +
1389 1 /* Method* */) * kPointerSize, kStackAlignment);
Ian Rogers15fdb8c2011-09-25 15:45:07 -07001390 method->SetFrameSizeInBytes(frame_size);
Ian Rogers4f0d07c2011-10-06 23:38:47 -07001391 method->SetCoreSpillMask(core_spills);
1392 method->SetFpSpillMask(fp_spills);
jeffhao7fbee072012-08-24 17:56:54 -07001393 } else if (instruction_set == kMips) {
1394 uint32_t ref_spills = (1 << art::mips::S2) | (1 << art::mips::S3) | (1 << art::mips::S4) |
1395 (1 << art::mips::S5) | (1 << art::mips::S6) | (1 << art::mips::S7) |
Jeff Hao1f3bc2f2013-04-30 15:17:19 -07001396 (1 << art::mips::GP) | (1 << art::mips::FP);
jeffhao7fbee072012-08-24 17:56:54 -07001397 uint32_t arg_spills = (1 << art::mips::A1) | (1 << art::mips::A2) | (1 << art::mips::A3);
jeffhaofa147e22012-10-12 17:03:32 -07001398 uint32_t all_spills = (1 << art::mips::S0) | (1 << art::mips::S1);
jeffhao7fbee072012-08-24 17:56:54 -07001399 uint32_t core_spills = ref_spills | (type == kRefsAndArgs ? arg_spills : 0) |
jeffhaofa147e22012-10-12 17:03:32 -07001400 (type == kSaveAll ? all_spills : 0) | (1 << art::mips::RA);
jeffhao7fbee072012-08-24 17:56:54 -07001401 size_t frame_size = RoundUp((__builtin_popcount(core_spills) /* gprs */ +
Jeff Hao1f3bc2f2013-04-30 15:17:19 -07001402 (type == kRefsAndArgs ? 0 : 3) + 1 /* Method* */) *
1403 kPointerSize, kStackAlignment);
jeffhao7fbee072012-08-24 17:56:54 -07001404 method->SetFrameSizeInBytes(frame_size);
1405 method->SetCoreSpillMask(core_spills);
jeffhao07030602012-09-26 14:33:14 -07001406 method->SetFpSpillMask(0);
Brian Carlstromae826982011-11-09 01:33:42 -08001407 } else if (instruction_set == kX86) {
Ian Rogers7caad772012-03-30 01:07:54 -07001408 uint32_t ref_spills = (1 << art::x86::EBP) | (1 << art::x86::ESI) | (1 << art::x86::EDI);
1409 uint32_t arg_spills = (1 << art::x86::ECX) | (1 << art::x86::EDX) | (1 << art::x86::EBX);
1410 uint32_t core_spills = ref_spills | (type == kRefsAndArgs ? arg_spills : 0) |
1411 (1 << art::x86::kNumberOfCpuRegisters); // fake return address callee save
1412 size_t frame_size = RoundUp((__builtin_popcount(core_spills) /* gprs */ +
1413 1 /* Method* */) * kPointerSize, kStackAlignment);
1414 method->SetFrameSizeInBytes(frame_size);
1415 method->SetCoreSpillMask(core_spills);
Ian Rogersff1ed472011-09-20 13:46:24 -07001416 method->SetFpSpillMask(0);
1417 } else {
1418 UNIMPLEMENTED(FATAL);
1419 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001420 return method.get();
Ian Rogersff1ed472011-09-20 13:46:24 -07001421}
1422
Mathieu Chartierc11d9b82013-09-19 10:01:59 -07001423void Runtime::DisallowNewSystemWeaks() {
1424 monitor_list_->DisallowNewMonitors();
1425 intern_table_->DisallowNewInterns();
1426 java_vm_->DisallowNewWeakGlobals();
1427}
1428
1429void Runtime::AllowNewSystemWeaks() {
1430 monitor_list_->AllowNewMonitors();
1431 intern_table_->AllowNewInterns();
1432 java_vm_->AllowNewWeakGlobals();
1433}
1434
Brian Carlstromea46f952013-07-30 01:26:50 -07001435void Runtime::SetCalleeSaveMethod(mirror::ArtMethod* method, CalleeSaveType type) {
Ian Rogers4f0d07c2011-10-06 23:38:47 -07001436 DCHECK_LT(static_cast<int>(type), static_cast<int>(kLastCalleeSaveType));
Elliott Hughes225f5a12012-06-11 11:23:48 -07001437 callee_save_methods_[type] = method;
Brian Carlstrome24fa612011-09-29 00:53:55 -07001438}
1439
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001440const std::vector<const DexFile*>& Runtime::GetCompileTimeClassPath(jobject class_loader) {
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08001441 if (class_loader == NULL) {
1442 return GetClassLinker()->GetBootClassPath();
1443 }
1444 CHECK(UseCompileTimeClassPath());
1445 CompileTimeClassPaths::const_iterator it = compile_time_class_paths_.find(class_loader);
1446 CHECK(it != compile_time_class_paths_.end());
1447 return it->second;
1448}
1449
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001450void Runtime::SetCompileTimeClassPath(jobject class_loader, std::vector<const DexFile*>& class_path) {
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08001451 CHECK(!IsStarted());
1452 use_compile_time_class_path_ = true;
Elliott Hughesa0e18062012-04-13 15:59:59 -07001453 compile_time_class_paths_.Put(class_loader, class_path);
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08001454}
1455
Mathieu Chartierc528dba2013-11-26 12:00:11 -08001456void Runtime::AddMethodVerifier(verifier::MethodVerifier* verifier) {
1457 DCHECK(verifier != nullptr);
1458 MutexLock mu(Thread::Current(), method_verifiers_lock_);
1459 method_verifiers_.insert(verifier);
1460}
1461
1462void Runtime::RemoveMethodVerifier(verifier::MethodVerifier* verifier) {
1463 DCHECK(verifier != nullptr);
1464 MutexLock mu(Thread::Current(), method_verifiers_lock_);
1465 auto it = method_verifiers_.find(verifier);
1466 CHECK(it != method_verifiers_.end());
1467 method_verifiers_.erase(it);
1468}
1469
Dave Allison0aded082013-11-07 13:15:11 -08001470void Runtime::StartProfiler(const char *appDir, bool startImmediately) {
1471 BackgroundMethodSamplingProfiler::Start(profile_period_s_, profile_duration_s_, appDir, profile_interval_us_,
1472 profile_backoff_coefficient_, startImmediately);
1473}
Carl Shapiro1fb86202011-06-27 17:43:13 -07001474} // namespace art