blob: 1ef15f7416d5e661255e6d2cdb8e53918e7667d9 [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 Rogersef7d42f2014-01-06 12:55:46 -080034#include "arch/x86_64/registers_x86_64.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080035#include "atomic.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070036#include "class_linker.h"
Elliott Hughes3bb81562011-10-21 18:52:59 -070037#include "debugger.h"
Ian Rogers1d54e732013-05-02 21:10:01 -070038#include "gc/accounting/card_table-inl.h"
39#include "gc/heap.h"
40#include "gc/space/space.h"
Brian Carlstrome24fa612011-09-29 00:53:55 -070041#include "image.h"
jeffhao725a9572012-11-13 18:20:12 -080042#include "instrumentation.h"
Elliott Hughescf4c6c42011-09-01 15:16:42 -070043#include "intern_table.h"
Jeff Hao5d917302013-02-27 17:57:33 -080044#include "invoke_arg_array_builder.h"
Elliott Hughesc5f7c912011-08-18 14:00:42 -070045#include "jni_internal.h"
Brian Carlstromea46f952013-07-30 01:26:50 -070046#include "mirror/art_field-inl.h"
47#include "mirror/art_method-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080048#include "mirror/array.h"
Ian Rogers62d6c772013-02-27 08:32:07 -080049#include "mirror/class-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080050#include "mirror/class_loader.h"
Mathieu Chartierc528dba2013-11-26 12:00:11 -080051#include "mirror/stack_trace_element.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080052#include "mirror/throwable.h"
Elliott Hughes32d6e1e2011-10-11 14:47:44 -070053#include "monitor.h"
Brian Carlstrome24fa612011-09-29 00:53:55 -070054#include "oat_file.h"
Elliott Hughes726079d2011-10-07 18:43:44 -070055#include "ScopedLocalRef.h"
Ian Rogers00f7d0e2012-07-19 15:28:27 -070056#include "scoped_thread_state_change.h"
Elliott Hughese27955c2011-08-26 15:21:24 -070057#include "signal_catcher.h"
Elliott Hughes457005c2012-04-16 13:54:25 -070058#include "signal_set.h"
Ian Rogers1f539342012-10-03 21:09:42 -070059#include "sirt_ref.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070060#include "thread.h"
Elliott Hughes8daa0922011-09-11 13:46:25 -070061#include "thread_list.h"
jeffhaob5e81852012-03-12 11:15:45 -070062#include "trace.h"
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +010063#include "transaction.h"
Dave Allison0aded082013-11-07 13:15:11 -080064#include "profiler.h"
Elliott Hughes3bb81562011-10-21 18:52:59 -070065#include "UniquePtr.h"
Ian Rogers776ac1f2012-04-13 23:36:36 -070066#include "verifier/method_verifier.h"
Elliott Hugheseac76672012-05-24 21:56:51 -070067#include "well_known_classes.h"
Carl Shapiro61e019d2011-07-14 16:53:09 -070068
Brian Carlstrom7934ac22013-07-26 10:54:15 -070069#include "JniConstants.h" // Last to avoid LOG redefinition in ics-mr1-plus-art.
Elliott Hughes90a33692011-08-30 13:27:07 -070070
Carl Shapiro1fb86202011-06-27 17:43:13 -070071namespace art {
72
Carl Shapiro2ed144c2011-07-26 16:52:08 -070073Runtime* Runtime::instance_ = NULL;
74
Elliott Hughesdcc24742011-09-07 14:02:44 -070075Runtime::Runtime()
Vladimir Marko2b5eaa22013-12-13 13:59:30 +000076 : compiler_callbacks_(nullptr),
Elliott Hughesd9c67be2012-02-02 19:54:06 -080077 is_zygote_(false),
Mathieu Chartier069387a2012-06-18 12:01:01 -070078 is_concurrent_gc_enabled_(true),
Anwar Ghuloum87183592013-08-14 12:12:19 -070079 is_explicit_gc_disabled_(false),
Elliott Hughes6cf23882012-06-15 15:42:07 -070080 default_stack_size_(0),
Ian Rogersef7d42f2014-01-06 12:55:46 -080081 heap_(nullptr),
Ian Rogersd9c4fc92013-10-01 19:45:43 -070082 max_spins_before_thin_lock_inflation_(Monitor::kDefaultMaxSpinsBeforeThinLockInflation),
Ian Rogersef7d42f2014-01-06 12:55:46 -080083 monitor_list_(nullptr),
84 monitor_pool_(nullptr),
85 thread_list_(nullptr),
86 intern_table_(nullptr),
87 class_linker_(nullptr),
88 signal_catcher_(nullptr),
89 java_vm_(nullptr),
90 pre_allocated_OutOfMemoryError_(nullptr),
91 resolution_method_(nullptr),
92 imt_conflict_method_(nullptr),
93 default_imt_(nullptr),
Mathieu Chartierc528dba2013-11-26 12:00:11 -080094 method_verifiers_lock_("Method verifiers lock"),
Ian Rogers120f1c72012-09-28 17:17:10 -070095 threads_being_born_(0),
Ian Rogersc604d732012-10-14 16:09:54 -070096 shutdown_cond_(new ConditionVariable("Runtime shutdown", *Locks::runtime_shutdown_lock_)),
Elliott Hughes6b355752012-01-13 16:49:08 -080097 shutting_down_(false),
Ian Rogers120f1c72012-09-28 17:17:10 -070098 shutting_down_started_(false),
Elliott Hughesdcc24742011-09-07 14:02:44 -070099 started_(false),
Mathieu Chartier7664f5c2012-06-08 18:15:32 -0700100 finished_starting_(false),
Ian Rogersef7d42f2014-01-06 12:55:46 -0800101 vfprintf_(nullptr),
102 exit_(nullptr),
103 abort_(nullptr),
jeffhao2692b572011-12-16 15:42:28 -0800104 stats_enabled_(false),
Ian Rogersef7d42f2014-01-06 12:55:46 -0800105 profile_(false),
106 profile_period_s_(0),
107 profile_duration_s_(0),
108 profile_interval_us_(0),
109 profile_backoff_coefficient_(0),
110 method_trace_(false),
Ian Rogers776ac1f2012-04-13 23:36:36 -0700111 method_trace_file_size_(0),
Ian Rogers62d6c772013-02-27 08:32:07 -0800112 instrumentation_(),
Ian Rogers365c1022012-06-22 15:05:28 -0700113 use_compile_time_class_path_(false),
Ian Rogersef7d42f2014-01-06 12:55:46 -0800114 main_thread_group_(nullptr),
115 system_thread_group_(nullptr),
116 system_class_loader_(nullptr),
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100117 dump_gc_performance_on_shutdown_(false),
118 preinitialization_transaction(nullptr) {
Ian Rogers4f0d07c2011-10-06 23:38:47 -0700119 for (int i = 0; i < Runtime::kLastCalleeSaveType; i++) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800120 callee_save_methods_[i] = nullptr;
Ian Rogers4f0d07c2011-10-06 23:38:47 -0700121 }
Elliott Hughesdcc24742011-09-07 14:02:44 -0700122}
123
Carl Shapiro61e019d2011-07-14 16:53:09 -0700124Runtime::~Runtime() {
Hiroshi Yamauchi2e899a92013-11-22 16:50:12 -0800125 if (dump_gc_performance_on_shutdown_) {
126 // This can't be called from the Heap destructor below because it
127 // could call RosAlloc::InspectAll() which needs the thread_list
128 // to be still alive.
129 heap_->DumpGcPerformanceInfo(LOG(INFO));
130 }
131
Ian Rogers120f1c72012-09-28 17:17:10 -0700132 Thread* self = Thread::Current();
133 {
134 MutexLock mu(self, *Locks::runtime_shutdown_lock_);
135 shutting_down_started_ = true;
136 while (threads_being_born_ > 0) {
Ian Rogersc604d732012-10-14 16:09:54 -0700137 shutdown_cond_->Wait(self);
Ian Rogers120f1c72012-09-28 17:17:10 -0700138 }
139 shutting_down_ = true;
140 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800141 Trace::Shutdown();
jeffhaob5e81852012-03-12 11:15:45 -0700142
Mathieu Chartiera6399032012-06-11 18:49:50 -0700143 // Make sure to let the GC complete if it is running.
Mathieu Chartier590fee92013-09-13 13:46:47 -0700144 heap_->WaitForGcToComplete(self);
Mathieu Chartier35883cc2012-11-13 14:08:12 -0800145 heap_->DeleteThreadPool();
Mathieu Chartiera6399032012-06-11 18:49:50 -0700146
Elliott Hughes5fe594f2011-09-08 12:33:17 -0700147 // Make sure our internal threads are dead before we start tearing down things they're using.
Elliott Hughese52e49b2012-04-02 16:05:44 -0700148 Dbg::StopJdwp();
Elliott Hughes5fe594f2011-09-08 12:33:17 -0700149 delete signal_catcher_;
150
Elliott Hughes038a8062011-09-18 14:12:41 -0700151 // Make sure all other non-daemon threads have terminated, and all daemon threads are suspended.
Elliott Hughes93e74e82011-09-13 11:07:03 -0700152 delete thread_list_;
Elliott Hughesc33a32b2011-10-11 18:18:07 -0700153 delete monitor_list_;
Ian Rogersef7d42f2014-01-06 12:55:46 -0800154 delete monitor_pool_;
Carl Shapiro61e019d2011-07-14 16:53:09 -0700155 delete class_linker_;
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800156 delete heap_;
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700157 delete intern_table_;
Elliott Hughesc5f7c912011-08-18 14:00:42 -0700158 delete java_vm_;
Elliott Hughesc1674ed2011-08-25 18:09:09 -0700159 Thread::Shutdown();
Elliott Hughes7c6169d2012-05-02 16:11:48 -0700160 QuasiAtomic::Shutdown();
Sebastien Hertz4d4adb12013-07-24 16:14:19 +0200161 verifier::MethodVerifier::Shutdown();
Carl Shapiro4acf4642011-07-26 18:54:13 -0700162 // TODO: acquire a static mutex on Runtime to avoid racing.
Ian Rogersef7d42f2014-01-06 12:55:46 -0800163 CHECK(instance_ == nullptr || instance_ == this);
164 instance_ = nullptr;
Carl Shapiro61e019d2011-07-14 16:53:09 -0700165}
166
Elliott Hughese0918552011-10-28 17:18:29 -0700167struct AbortState {
168 void Dump(std::ostream& os) {
Ian Rogersf08e4732013-04-09 09:45:49 -0700169 if (gAborting > 1) {
Elliott Hughescac6cc72011-11-03 20:31:21 -0700170 os << "Runtime aborting --- recursively, so no thread-specific detail!\n";
171 return;
172 }
Ian Rogersf08e4732013-04-09 09:45:49 -0700173 gAborting++;
Elliott Hughese0918552011-10-28 17:18:29 -0700174 os << "Runtime aborting...\n";
Elliott Hughes6c7d2442012-02-01 18:40:47 -0800175 if (Runtime::Current() == NULL) {
176 os << "(Runtime does not yet exist!)\n";
177 return;
178 }
Elliott Hughese0918552011-10-28 17:18:29 -0700179 Thread* self = Thread::Current();
180 if (self == NULL) {
181 os << "(Aborting thread was not attached to runtime!)\n";
182 } else {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700183 // TODO: we're aborting and the ScopedObjectAccess may attempt to acquire the mutator_lock_
184 // which may block indefinitely if there's a misbehaving thread holding it exclusively.
185 // The code below should be made robust to this.
186 ScopedObjectAccess soa(self);
Ian Rogers2f7f9b62012-10-10 18:24:05 -0700187 os << "Aborting thread:\n";
Elliott Hughes899e7892012-01-24 14:57:32 -0800188 self->Dump(os);
189 if (self->IsExceptionPending()) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800190 ThrowLocation throw_location;
191 mirror::Throwable* exception = self->GetException(&throw_location);
192 os << "Pending exception " << PrettyTypeOf(exception)
Ian Rogersbc939662013-08-15 10:26:54 -0700193 << " thrown by '" << throw_location.Dump() << "'\n"
Ian Rogers62d6c772013-02-27 08:32:07 -0800194 << exception->Dump();
Elliott Hughes899e7892012-01-24 14:57:32 -0800195 }
Elliott Hughese0918552011-10-28 17:18:29 -0700196 }
Ian Rogers2f7f9b62012-10-10 18:24:05 -0700197 DumpAllThreads(os, self);
198 }
199
200 void DumpAllThreads(std::ostream& os, Thread* self) NO_THREAD_SAFETY_ANALYSIS {
201 bool tll_already_held = Locks::thread_list_lock_->IsExclusiveHeld(self);
202 bool ml_already_held = Locks::mutator_lock_->IsSharedHeld(self);
Ian Rogersfbd22912012-10-12 14:21:10 -0700203 if (!tll_already_held || !ml_already_held) {
204 os << "Dumping all threads without appropriate locks held:"
205 << (!tll_already_held ? " thread list lock" : "")
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700206 << (!ml_already_held ? " mutator lock" : "")
207 << "\n";
Ian Rogers2f7f9b62012-10-10 18:24:05 -0700208 }
Ian Rogersfbd22912012-10-12 14:21:10 -0700209 os << "All threads:\n";
210 Runtime::Current()->GetThreadList()->DumpLocked(os);
Elliott Hughese0918552011-10-28 17:18:29 -0700211 }
212};
213
Elliott Hughes8593fdb2012-04-21 20:53:44 -0700214void Runtime::Abort() {
Ian Rogersf08e4732013-04-09 09:45:49 -0700215 gAborting++; // set before taking any locks
Brian Carlstrom81b88712012-11-05 19:21:30 -0800216
Elliott Hughes131aef82012-01-27 11:53:35 -0800217 // Ensure that we don't have multiple threads trying to abort at once,
218 // which would result in significantly worse diagnostics.
Ian Rogers50b35e22012-10-04 10:09:15 -0700219 MutexLock mu(Thread::Current(), *Locks::abort_lock_);
Elliott Hughes131aef82012-01-27 11:53:35 -0800220
Elliott Hughesffe67362011-07-17 12:09:27 -0700221 // Get any pending output out of the way.
222 fflush(NULL);
223
224 // Many people have difficulty distinguish aborts from crashes,
225 // so be explicit.
Elliott Hughese0918552011-10-28 17:18:29 -0700226 AbortState state;
Elliott Hughes9ee5f9c2012-02-03 18:33:16 -0800227 LOG(INTERNAL_FATAL) << Dumpable<AbortState>(state);
Elliott Hughesffe67362011-07-17 12:09:27 -0700228
Elliott Hughes8593fdb2012-04-21 20:53:44 -0700229 // Call the abort hook if we have one.
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700230 if (Runtime::Current() != NULL && Runtime::Current()->abort_ != NULL) {
Elliott Hughes6c1c69e2012-04-23 16:12:51 -0700231 LOG(INTERNAL_FATAL) << "Calling abort hook...";
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700232 Runtime::Current()->abort_();
233 // notreached
Elliott Hughes6c1c69e2012-04-23 16:12:51 -0700234 LOG(INTERNAL_FATAL) << "Unexpectedly returned from abort hook!";
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700235 }
236
Elliott Hughesdd623db2013-06-11 11:20:23 -0700237#if defined(__GLIBC__)
Elliott Hughesd06a6c72012-05-30 17:59:06 -0700238 // 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);
Elliott Hughesdd623db2013-06-11 11:20:23 -0700244 // TODO: LLVM installs it's own SIGABRT handler so exit to be safe... Can we disable that in LLVM?
245 // 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 -0800246 exit(1);
Elliott Hughesdd623db2013-06-11 11:20:23 -0700247#else
248 abort();
Elliott Hughesd06a6c72012-05-30 17:59:06 -0700249#endif
Elliott Hughesffe67362011-07-17 12:09:27 -0700250 // notreached
251}
252
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700253bool Runtime::PreZygoteFork() {
254 heap_->PreZygoteFork();
255 return true;
256}
257
Elliott Hughesbf86d042011-08-31 17:53:14 -0700258void Runtime::CallExitHook(jint status) {
259 if (exit_ != NULL) {
Elliott Hughes34e06962012-04-09 13:55:55 -0700260 ScopedThreadStateChange tsc(Thread::Current(), kNative);
Elliott Hughesbf86d042011-08-31 17:53:14 -0700261 exit_(status);
262 LOG(WARNING) << "Exit hook returned instead of exiting!";
263 }
264}
265
Brian Carlstrom8a436592011-08-15 21:27:23 -0700266// Parse a string of the form /[0-9]+[kKmMgG]?/, which is used to specify
267// memory sizes. [kK] indicates kilobytes, [mM] megabytes, and
268// [gG] gigabytes.
269//
270// "s" should point just past the "-Xm?" part of the string.
Brian Carlstrom8a436592011-08-15 21:27:23 -0700271// "div" specifies a divisor, e.g. 1024 if the value must be a multiple
272// of 1024.
273//
274// The spec says the -Xmx and -Xms options must be multiples of 1024. It
275// doesn't say anything about -Xss.
276//
277// Returns 0 (a useless size) if "s" is malformed or specifies a low or
278// non-evenly-divisible value.
279//
Elliott Hughesc1f143d2011-12-01 17:31:10 -0800280size_t ParseMemoryOption(const char* s, size_t div) {
Brian Carlstrom8a436592011-08-15 21:27:23 -0700281 // strtoul accepts a leading [+-], which we don't want,
282 // so make sure our string starts with a decimal digit.
283 if (isdigit(*s)) {
Elliott Hughes398f64b2012-03-26 18:05:48 -0700284 char* s2;
285 size_t val = strtoul(s, &s2, 10);
Brian Carlstrom8a436592011-08-15 21:27:23 -0700286 if (s2 != s) {
287 // s2 should be pointing just after the number.
288 // If this is the end of the string, the user
289 // has specified a number of bytes. Otherwise,
290 // there should be exactly one more character
291 // that specifies a multiplier.
292 if (*s2 != '\0') {
Brian Carlstromf734cf52011-08-17 16:28:14 -0700293 // The remainder of the string is either a single multiplier
294 // character, or nothing to indicate that the value is in
295 // bytes.
296 char c = *s2++;
297 if (*s2 == '\0') {
298 size_t mul;
299 if (c == '\0') {
300 mul = 1;
301 } else if (c == 'k' || c == 'K') {
302 mul = KB;
303 } else if (c == 'm' || c == 'M') {
304 mul = MB;
305 } else if (c == 'g' || c == 'G') {
306 mul = GB;
Brian Carlstrom8a436592011-08-15 21:27:23 -0700307 } else {
Brian Carlstromf734cf52011-08-17 16:28:14 -0700308 // Unknown multiplier character.
Brian Carlstrom8a436592011-08-15 21:27:23 -0700309 return 0;
310 }
Brian Carlstromf734cf52011-08-17 16:28:14 -0700311
312 if (val <= std::numeric_limits<size_t>::max() / mul) {
313 val *= mul;
314 } else {
315 // Clamp to a multiple of 1024.
316 val = std::numeric_limits<size_t>::max() & ~(1024-1);
317 }
318 } else {
319 // There's more than one character after the numeric part.
320 return 0;
321 }
Brian Carlstrom8a436592011-08-15 21:27:23 -0700322 }
323 // The man page says that a -Xm value must be a multiple of 1024.
324 if (val % div == 0) {
325 return val;
326 }
Carl Shapirofc322c72011-07-27 00:20:01 -0700327 }
328 }
Brian Carlstrom8a436592011-08-15 21:27:23 -0700329 return 0;
Carl Shapirofc322c72011-07-27 00:20:01 -0700330}
331
lzang16c2270b2014-01-29 14:21:25 +0800332static const std::string StringAfterChar(const std::string& s, char c) {
333 std::string::size_type colon = s.find(c);
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800334 if (colon == std::string::npos) {
lzang16c2270b2014-01-29 14:21:25 +0800335 LOG(FATAL) << "Missing char " << c << " in string " << s;
336 }
337 // Add one to remove the char we were trimming until.
338 return s.substr(colon + 1);
339}
340
341static size_t ParseIntegerOrDie(const std::string& s, char after_char) {
342 std::string::size_type colon = s.find(after_char);
343 if (colon == std::string::npos) {
344 LOG(FATAL) << "Missing char " << after_char << " in string " << s;
Elliott Hughesbb1e8f02011-10-18 14:14:25 -0700345 }
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800346 const char* begin = &s[colon + 1];
Elliott Hughesbb1e8f02011-10-18 14:14:25 -0700347 char* end;
348 size_t result = strtoul(begin, &end, 10);
349 if (begin == end || *end != '\0') {
350 LOG(FATAL) << "Failed to parse integer in: " << s;
351 }
352 return result;
353}
354
lzang16c2270b2014-01-29 14:21:25 +0800355
356static double ParseDoubleOrDie(const std::string& option, char after_char, double min, double max,
357 bool ignore_unrecognized, double defval) {
358 std::istringstream iss(StringAfterChar(option, after_char));
Dave Allison0aded082013-11-07 13:15:11 -0800359 double value;
360 iss >> value;
361 // Ensure that we have a value, there was no cruft after it and it satisfies a sensible range.
362 const bool sane_val = iss.eof() && (value >= min) && (value <= max);
363 if (!sane_val) {
364 if (ignore_unrecognized) {
365 return defval;
366 }
367 LOG(FATAL)<< "Invalid option '" << option << "'";
368 return defval;
369 }
370 return value;
371}
372
Mathieu Chartier83c8ee02014-01-28 14:50:23 -0800373void Runtime::SweepSystemWeaks(IsMarkedCallback* visitor, void* arg) {
Mathieu Chartier6aa3df92013-09-17 15:17:28 -0700374 GetInternTable()->SweepInternTableWeaks(visitor, arg);
375 GetMonitorList()->SweepMonitorList(visitor, arg);
376 GetJavaVM()->SweepJniWeakGlobals(visitor, arg);
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800377 Dbg::UpdateObjectPointers(visitor, arg);
Mathieu Chartier6aa3df92013-09-17 15:17:28 -0700378}
379
Mathieu Chartiere6da9af2013-12-16 11:54:42 -0800380static gc::CollectorType ParseCollectorType(const std::string& option) {
Mathieu Chartier938a03b2014-01-16 15:10:31 -0800381 if (option == "MS" || option == "nonconcurrent") {
382 return gc::kCollectorTypeMS;
383 } else if (option == "CMS" || option == "concurrent") {
384 return gc::kCollectorTypeCMS;
385 } else if (option == "SS") {
386 return gc::kCollectorTypeSS;
387 } else if (option == "GSS") {
388 return gc::kCollectorTypeGSS;
389 } else {
390 return gc::kCollectorTypeNone;
Mathieu Chartiere6da9af2013-12-16 11:54:42 -0800391 }
Mathieu Chartiere6da9af2013-12-16 11:54:42 -0800392}
393
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700394Runtime::ParsedOptions* Runtime::ParsedOptions::Create(const Options& options, bool ignore_unrecognized) {
Elliott Hughes90a33692011-08-30 13:27:07 -0700395 UniquePtr<ParsedOptions> parsed(new ParsedOptions());
Brian Carlstroma004aa92012-02-08 18:05:09 -0800396 const char* boot_class_path_string = getenv("BOOTCLASSPATH");
397 if (boot_class_path_string != NULL) {
398 parsed->boot_class_path_string_ = boot_class_path_string;
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700399 }
Brian Carlstroma004aa92012-02-08 18:05:09 -0800400 const char* class_path_string = getenv("CLASSPATH");
401 if (class_path_string != NULL) {
402 parsed->class_path_string_ = class_path_string;
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700403 }
Elliott Hughes67d92002012-03-26 15:08:51 -0700404 // -Xcheck:jni is off by default for regular builds but on by default in debug builds.
405 parsed->check_jni_ = kIsDebugBuild;
Elliott Hughes85d15452011-09-16 17:33:01 -0700406
Ian Rogers1d54e732013-05-02 21:10:01 -0700407 parsed->heap_initial_size_ = gc::Heap::kDefaultInitialSize;
408 parsed->heap_maximum_size_ = gc::Heap::kDefaultMaximumSize;
409 parsed->heap_min_free_ = gc::Heap::kDefaultMinFree;
410 parsed->heap_max_free_ = gc::Heap::kDefaultMaxFree;
411 parsed->heap_target_utilization_ = gc::Heap::kDefaultTargetUtilization;
Mathieu Chartier692fafd2013-11-29 17:24:40 -0800412 parsed->heap_growth_limit_ = 0; // 0 means no growth limit .
Mathieu Chartier63a54342013-07-23 13:17:59 -0700413 // Default to number of processors minus one since the main GC thread also does work.
Mathieu Chartier2775ee42013-08-20 17:43:47 -0700414 parsed->parallel_gc_threads_ = sysconf(_SC_NPROCESSORS_CONF) - 1;
415 // Only the main GC thread, no workers.
416 parsed->conc_gc_threads_ = 0;
Mathieu Chartier0de9f732013-11-22 17:58:48 -0800417 // Default is CMS which is Sticky + Partial + Full CMS GC.
Mathieu Chartier0f875ef2014-01-14 15:49:54 -0800418 parsed->collector_type_ = gc::kCollectorTypeCMS;
Mathieu Chartiere6da9af2013-12-16 11:54:42 -0800419 // If background_collector_type_ is kCollectorTypeNone, it defaults to the collector_type_ after
420 // parsing options.
421 parsed->background_collector_type_ = gc::kCollectorTypeNone;
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700422 parsed->stack_size_ = 0; // 0 means default.
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700423 parsed->max_spins_before_thin_lock_inflation_ = Monitor::kDefaultMaxSpinsBeforeThinLockInflation;
Mathieu Chartiere0a53e92013-08-05 10:17:40 -0700424 parsed->low_memory_mode_ = false;
Mathieu Chartier692fafd2013-11-29 17:24:40 -0800425 parsed->use_tlab_ = false;
Mathieu Chartier938a03b2014-01-16 15:10:31 -0800426 parsed->verify_pre_gc_heap_ = false;
427 parsed->verify_post_gc_heap_ = kIsDebugBuild;
Hiroshi Yamauchia4adbfd2014-02-04 18:12:17 -0800428 parsed->verify_pre_gc_rosalloc_ = kIsDebugBuild;
429 parsed->verify_post_gc_rosalloc_ = false;
Brian Carlstromf734cf52011-08-17 16:28:14 -0700430
Vladimir Marko2b5eaa22013-12-13 13:59:30 +0000431 parsed->compiler_callbacks_ = nullptr;
Elliott Hughes9ca7a1f2011-10-11 14:29:52 -0700432 parsed->is_zygote_ = false;
Ian Rogers50ffee22012-11-20 11:47:44 -0800433 parsed->interpreter_only_ = false;
Anwar Ghuloum87183592013-08-14 12:12:19 -0700434 parsed->is_explicit_gc_disabled_ = false;
Elliott Hughes9ca7a1f2011-10-11 14:29:52 -0700435
Mathieu Chartier2775ee42013-08-20 17:43:47 -0700436 parsed->long_pause_log_threshold_ = gc::Heap::kDefaultLongPauseLogThreshold;
437 parsed->long_gc_log_threshold_ = gc::Heap::kDefaultLongGCLogThreshold;
Mathieu Chartierff3b24a2013-11-22 16:04:25 -0800438 parsed->dump_gc_performance_on_shutdown_ = false;
Mathieu Chartier2775ee42013-08-20 17:43:47 -0700439 parsed->ignore_max_footprint_ = false;
440
Elliott Hughesfc861622011-10-17 17:57:47 -0700441 parsed->lock_profiling_threshold_ = 0;
442 parsed->hook_is_sensitive_thread_ = NULL;
443
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700444 parsed->hook_vfprintf_ = vfprintf;
445 parsed->hook_exit_ = exit;
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700446 parsed->hook_abort_ = NULL; // We don't call abort(3) by default; see Runtime::Abort.
Brian Carlstrom8a436592011-08-15 21:27:23 -0700447
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700448// gLogVerbosity.class_linker = true; // TODO: don't check this in!
449// gLogVerbosity.compiler = true; // TODO: don't check this in!
Anwar Ghuloum75a43f12013-08-13 17:22:14 -0700450// gLogVerbosity.verifier = true; // TODO: don't check this in!
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700451// gLogVerbosity.heap = true; // TODO: don't check this in!
452// gLogVerbosity.gc = true; // TODO: don't check this in!
453// gLogVerbosity.jdwp = true; // TODO: don't check this in!
454// gLogVerbosity.jni = true; // TODO: don't check this in!
455// gLogVerbosity.monitor = true; // TODO: don't check this in!
456// gLogVerbosity.startup = true; // TODO: don't check this in!
457// gLogVerbosity.third_party_jni = true; // TODO: don't check this in!
458// gLogVerbosity.threads = true; // TODO: don't check this in!
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800459
jeffhaob5e81852012-03-12 11:15:45 -0700460 parsed->method_trace_ = false;
461 parsed->method_trace_file_ = "/data/method-trace-file.bin";
462 parsed->method_trace_file_size_ = 10 * MB;
463
Dave Allison0aded082013-11-07 13:15:11 -0800464 parsed->profile_ = false;
465 parsed->profile_period_s_ = 10; // Seconds.
466 parsed->profile_duration_s_ = 20; // Seconds.
467 parsed->profile_interval_us_ = 500; // Microseconds.
468 parsed->profile_backoff_coefficient_ = 2.0;
469
Brian Carlstrom8a436592011-08-15 21:27:23 -0700470 for (size_t i = 0; i < options.size(); ++i) {
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800471 const std::string option(options[i].first);
Brian Carlstrom0796af02011-10-12 14:31:45 -0700472 if (true && options[0].first == "-Xzygote") {
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700473 LOG(INFO) << "option[" << i << "]=" << option;
474 }
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800475 if (StartsWith(option, "-Xbootclasspath:")) {
Brian Carlstroma004aa92012-02-08 18:05:09 -0800476 parsed->boot_class_path_string_ = option.substr(strlen("-Xbootclasspath:")).data();
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700477 } else if (option == "-classpath" || option == "-cp") {
478 // TODO: support -Djava.class.path
479 i++;
480 if (i == options.size()) {
481 // TODO: usage
482 LOG(FATAL) << "Missing required class path value for " << option;
483 return NULL;
484 }
Brian Carlstroma004aa92012-02-08 18:05:09 -0800485 const StringPiece& value = options[i].first;
486 parsed->class_path_string_ = value.data();
487 } else if (option == "bootclasspath") {
488 parsed->boot_class_path_
489 = reinterpret_cast<const std::vector<const DexFile*>*>(options[i].second);
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800490 } else if (StartsWith(option, "-Ximage:")) {
lzang16c2270b2014-01-29 14:21:25 +0800491 parsed->image_ = StringAfterChar(option, ':');
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800492 } else if (StartsWith(option, "-Xcheck:jni")) {
Elliott Hughes515a5bc2011-08-17 11:08:34 -0700493 parsed->check_jni_ = true;
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800494 } else if (StartsWith(option, "-Xrunjdwp:") || StartsWith(option, "-agentlib:jdwp=")) {
495 std::string tail(option.substr(option[1] == 'X' ? 10 : 15));
Elliott Hughes3bb81562011-10-21 18:52:59 -0700496 if (tail == "help" || !Dbg::ParseJdwpOptions(tail)) {
497 LOG(FATAL) << "Example: -Xrunjdwp:transport=dt_socket,address=8000,server=y\n"
498 << "Example: -Xrunjdwp:transport=dt_socket,address=localhost:6500,server=n";
499 return NULL;
500 }
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800501 } else if (StartsWith(option, "-Xms")) {
502 size_t size = ParseMemoryOption(option.substr(strlen("-Xms")).c_str(), 1024);
Brian Carlstromf734cf52011-08-17 16:28:14 -0700503 if (size == 0) {
504 if (ignore_unrecognized) {
505 continue;
506 }
Brian Carlstrom4a289ed2011-08-16 17:17:49 -0700507 // TODO: usage
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700508 LOG(FATAL) << "Failed to parse " << option;
Brian Carlstromf734cf52011-08-17 16:28:14 -0700509 return NULL;
510 }
511 parsed->heap_initial_size_ = size;
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800512 } else if (StartsWith(option, "-Xmx")) {
513 size_t size = ParseMemoryOption(option.substr(strlen("-Xmx")).c_str(), 1024);
Brian Carlstromf734cf52011-08-17 16:28:14 -0700514 if (size == 0) {
515 if (ignore_unrecognized) {
516 continue;
517 }
Brian Carlstrom4a289ed2011-08-16 17:17:49 -0700518 // TODO: usage
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700519 LOG(FATAL) << "Failed to parse " << option;
Brian Carlstromf734cf52011-08-17 16:28:14 -0700520 return NULL;
521 }
522 parsed->heap_maximum_size_ = size;
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800523 } else if (StartsWith(option, "-XX:HeapGrowthLimit=")) {
524 size_t size = ParseMemoryOption(option.substr(strlen("-XX:HeapGrowthLimit=")).c_str(), 1024);
jeffhaoc1160702011-10-27 15:48:45 -0700525 if (size == 0) {
526 if (ignore_unrecognized) {
527 continue;
528 }
529 // TODO: usage
530 LOG(FATAL) << "Failed to parse " << option;
531 return NULL;
532 }
533 parsed->heap_growth_limit_ = size;
Mathieu Chartier0051be62012-10-12 17:47:11 -0700534 } else if (StartsWith(option, "-XX:HeapMinFree=")) {
535 size_t size = ParseMemoryOption(option.substr(strlen("-XX:HeapMinFree=")).c_str(), 1024);
536 if (size == 0) {
537 if (ignore_unrecognized) {
538 continue;
539 }
540 // TODO: usage
541 LOG(FATAL) << "Failed to parse " << option;
542 return NULL;
543 }
544 parsed->heap_min_free_ = size;
545 } else if (StartsWith(option, "-XX:HeapMaxFree=")) {
546 size_t size = ParseMemoryOption(option.substr(strlen("-XX:HeapMaxFree=")).c_str(), 1024);
547 if (size == 0) {
548 if (ignore_unrecognized) {
549 continue;
550 }
551 // TODO: usage
552 LOG(FATAL) << "Failed to parse " << option;
553 return NULL;
554 }
555 parsed->heap_max_free_ = size;
556 } else if (StartsWith(option, "-XX:HeapTargetUtilization=")) {
lzang16c2270b2014-01-29 14:21:25 +0800557 parsed->heap_target_utilization_ = ParseDoubleOrDie(
558 option, '=', 0.1, 0.9, ignore_unrecognized, parsed->heap_target_utilization_);
Mathieu Chartier2775ee42013-08-20 17:43:47 -0700559 } else if (StartsWith(option, "-XX:ParallelGCThreads=")) {
lzang16c2270b2014-01-29 14:21:25 +0800560 parsed->parallel_gc_threads_ = ParseIntegerOrDie(option, '=');
Mathieu Chartier2775ee42013-08-20 17:43:47 -0700561 } else if (StartsWith(option, "-XX:ConcGCThreads=")) {
lzang16c2270b2014-01-29 14:21:25 +0800562 parsed->conc_gc_threads_ = ParseIntegerOrDie(option, '=');
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800563 } else if (StartsWith(option, "-Xss")) {
564 size_t size = ParseMemoryOption(option.substr(strlen("-Xss")).c_str(), 1);
Brian Carlstromf734cf52011-08-17 16:28:14 -0700565 if (size == 0) {
566 if (ignore_unrecognized) {
567 continue;
568 }
Brian Carlstrom4a289ed2011-08-16 17:17:49 -0700569 // TODO: usage
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700570 LOG(FATAL) << "Failed to parse " << option;
Brian Carlstromf734cf52011-08-17 16:28:14 -0700571 return NULL;
572 }
573 parsed->stack_size_ = size;
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700574 } else if (StartsWith(option, "-XX:MaxSpinsBeforeThinLockInflation=")) {
lzang16c2270b2014-01-29 14:21:25 +0800575 parsed->max_spins_before_thin_lock_inflation_ = ParseIntegerOrDie(option, '=');
576 } else if (StartsWith(option, "-XX:LongPauseLogThreshold=")) {
577 parsed->long_pause_log_threshold_ = MsToNs(ParseIntegerOrDie(option, '='));
578 } else if (StartsWith(option, "-XX:LongGCLogThreshold=")) {
579 parsed->long_gc_log_threshold_ = MsToNs(ParseIntegerOrDie(option, '='));
Mathieu Chartierff3b24a2013-11-22 16:04:25 -0800580 } else if (option == "-XX:DumpGCPerformanceOnShutdown") {
581 parsed->dump_gc_performance_on_shutdown_ = true;
Mathieu Chartier2775ee42013-08-20 17:43:47 -0700582 } else if (option == "-XX:IgnoreMaxFootprint") {
583 parsed->ignore_max_footprint_ = true;
Mathieu Chartiere0a53e92013-08-05 10:17:40 -0700584 } else if (option == "-XX:LowMemoryMode") {
585 parsed->low_memory_mode_ = true;
Mathieu Chartier692fafd2013-11-29 17:24:40 -0800586 } else if (option == "-XX:UseTLAB") {
587 parsed->use_tlab_ = true;
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800588 } else if (StartsWith(option, "-D")) {
589 parsed->properties_.push_back(option.substr(strlen("-D")));
590 } else if (StartsWith(option, "-Xjnitrace:")) {
591 parsed->jni_trace_ = option.substr(strlen("-Xjnitrace:"));
Vladimir Marko2b5eaa22013-12-13 13:59:30 +0000592 } else if (option == "compilercallbacks") {
593 parsed->compiler_callbacks_ =
594 reinterpret_cast<CompilerCallbacks*>(const_cast<void*>(options[i].second));
Elliott Hughes9ca7a1f2011-10-11 14:29:52 -0700595 } else if (option == "-Xzygote") {
596 parsed->is_zygote_ = true;
Ian Rogers50ffee22012-11-20 11:47:44 -0800597 } else if (option == "-Xint") {
598 parsed->interpreter_only_ = true;
Mathieu Chartier069387a2012-06-18 12:01:01 -0700599 } else if (StartsWith(option, "-Xgc:")) {
Mathieu Chartier938a03b2014-01-16 15:10:31 -0800600 std::vector<std::string> gc_options;
601 Split(option.substr(strlen("-Xgc:")), ',', gc_options);
602 for (const std::string& gc_option : gc_options) {
603 gc::CollectorType collector_type = ParseCollectorType(gc_option);
604 if (collector_type != gc::kCollectorTypeNone) {
Hiroshi Yamauchibe1ca552014-01-15 11:46:48 -0800605 parsed->collector_type_ = collector_type;
Mathieu Chartier938a03b2014-01-16 15:10:31 -0800606 } else if (gc_option == "preverify") {
607 parsed->verify_pre_gc_heap_ = true;
Hiroshi Yamauchia4adbfd2014-02-04 18:12:17 -0800608 } else if (gc_option == "nopreverify") {
Mathieu Chartier938a03b2014-01-16 15:10:31 -0800609 parsed->verify_pre_gc_heap_ = false;
610 } else if (gc_option == "postverify") {
611 parsed->verify_post_gc_heap_ = true;
612 } else if (gc_option == "nopostverify") {
613 parsed->verify_post_gc_heap_ = false;
Hiroshi Yamauchia4adbfd2014-02-04 18:12:17 -0800614 } else if (gc_option == "preverify_rosalloc") {
615 parsed->verify_pre_gc_rosalloc_ = true;
616 } else if (gc_option == "nopreverify_rosalloc") {
617 parsed->verify_pre_gc_rosalloc_ = false;
618 } else if (gc_option == "postverify_rosalloc") {
619 parsed->verify_post_gc_rosalloc_ = true;
620 } else if (gc_option == "nopostverify_rosalloc") {
621 parsed->verify_post_gc_rosalloc_ = false;
Mathieu Chartier938a03b2014-01-16 15:10:31 -0800622 } else {
623 LOG(WARNING) << "Ignoring unknown -Xgc option: " << gc_option;
624 }
Mathieu Chartiere6da9af2013-12-16 11:54:42 -0800625 }
626 } else if (StartsWith(option, "-XX:BackgroundGC=")) {
lzang16c2270b2014-01-29 14:21:25 +0800627 const std::string substring = StringAfterChar(option, '=');
Mathieu Chartier938a03b2014-01-16 15:10:31 -0800628 gc::CollectorType collector_type = ParseCollectorType(substring);
Mathieu Chartiere6da9af2013-12-16 11:54:42 -0800629 if (collector_type != gc::kCollectorTypeNone) {
630 parsed->background_collector_type_ = collector_type;
Mathieu Chartier938a03b2014-01-16 15:10:31 -0800631 } else {
632 LOG(WARNING) << "Ignoring unknown -XX:BackgroundGC option: " << substring;
Mathieu Chartier069387a2012-06-18 12:01:01 -0700633 }
Anwar Ghuloum87183592013-08-14 12:12:19 -0700634 } else if (option == "-XX:+DisableExplicitGC") {
635 parsed->is_explicit_gc_disabled_ = true;
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800636 } else if (StartsWith(option, "-verbose:")) {
Elliott Hughes0af55432011-08-17 18:37:28 -0700637 std::vector<std::string> verbose_options;
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800638 Split(option.substr(strlen("-verbose:")), ',', verbose_options);
Elliott Hughes0af55432011-08-17 18:37:28 -0700639 for (size_t i = 0; i < verbose_options.size(); ++i) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800640 if (verbose_options[i] == "class") {
641 gLogVerbosity.class_linker = true;
Anwar Ghuloum75a43f12013-08-13 17:22:14 -0700642 } else if (verbose_options[i] == "verifier") {
643 gLogVerbosity.verifier = true;
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800644 } else if (verbose_options[i] == "compiler") {
645 gLogVerbosity.compiler = true;
646 } else if (verbose_options[i] == "heap") {
647 gLogVerbosity.heap = true;
648 } else if (verbose_options[i] == "gc") {
649 gLogVerbosity.gc = true;
650 } else if (verbose_options[i] == "jdwp") {
651 gLogVerbosity.jdwp = true;
652 } else if (verbose_options[i] == "jni") {
653 gLogVerbosity.jni = true;
654 } else if (verbose_options[i] == "monitor") {
655 gLogVerbosity.monitor = true;
656 } else if (verbose_options[i] == "startup") {
657 gLogVerbosity.startup = true;
658 } else if (verbose_options[i] == "third-party-jni") {
659 gLogVerbosity.third_party_jni = true;
660 } else if (verbose_options[i] == "threads") {
661 gLogVerbosity.threads = true;
662 } else {
663 LOG(WARNING) << "Ignoring unknown -verbose option: " << verbose_options[i];
664 }
Elliott Hughes0af55432011-08-17 18:37:28 -0700665 }
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800666 } else if (StartsWith(option, "-Xjnigreflimit:")) {
Elliott Hughes2010a602013-07-02 14:17:23 -0700667 // Silently ignored for backwards compatibility.
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800668 } else if (StartsWith(option, "-Xlockprofthreshold:")) {
lzang16c2270b2014-01-29 14:21:25 +0800669 parsed->lock_profiling_threshold_ = ParseIntegerOrDie(option, ':');
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800670 } else if (StartsWith(option, "-Xstacktracefile:")) {
lzang16c2270b2014-01-29 14:21:25 +0800671 parsed->stack_trace_file_ = StringAfterChar(option, ':');
Elliott Hughesfc861622011-10-17 17:57:47 -0700672 } else if (option == "sensitiveThread") {
Ian Rogers1b09b092012-08-20 15:35:52 -0700673 parsed->hook_is_sensitive_thread_ = reinterpret_cast<bool (*)()>(const_cast<void*>(options[i].second));
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700674 } else if (option == "vfprintf") {
Ian Rogers1b09b092012-08-20 15:35:52 -0700675 parsed->hook_vfprintf_ =
676 reinterpret_cast<int (*)(FILE *, const char*, va_list)>(const_cast<void*>(options[i].second));
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700677 } else if (option == "exit") {
Ian Rogers1b09b092012-08-20 15:35:52 -0700678 parsed->hook_exit_ = reinterpret_cast<void(*)(jint)>(const_cast<void*>(options[i].second));
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700679 } else if (option == "abort") {
Ian Rogers1b09b092012-08-20 15:35:52 -0700680 parsed->hook_abort_ = reinterpret_cast<void(*)()>(const_cast<void*>(options[i].second));
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700681 } else if (option == "host-prefix") {
682 parsed->host_prefix_ = reinterpret_cast<const char*>(options[i].second);
Elliott Hughesb3e66df2012-01-12 14:49:18 -0800683 } else if (option == "-Xgenregmap" || option == "-Xgc:precise") {
684 // We silently ignore these for backwards compatibility.
jeffhaob5e81852012-03-12 11:15:45 -0700685 } else if (option == "-Xmethod-trace") {
686 parsed->method_trace_ = true;
687 } else if (StartsWith(option, "-Xmethod-trace-file:")) {
688 parsed->method_trace_file_ = option.substr(strlen("-Xmethod-trace-file:"));
689 } else if (StartsWith(option, "-Xmethod-trace-file-size:")) {
lzang16c2270b2014-01-29 14:21:25 +0800690 parsed->method_trace_file_size_ = ParseIntegerOrDie(option, ':');
Elliott Hughese119a362012-05-22 17:37:06 -0700691 } else if (option == "-Xprofile:threadcpuclock") {
692 Trace::SetDefaultClockSource(kProfilerClockSourceThreadCpu);
693 } else if (option == "-Xprofile:wallclock") {
694 Trace::SetDefaultClockSource(kProfilerClockSourceWall);
695 } else if (option == "-Xprofile:dualclock") {
696 Trace::SetDefaultClockSource(kProfilerClockSourceDual);
Dave Allison0aded082013-11-07 13:15:11 -0800697 } else if (StartsWith(option, "-Xprofile:")) {
lzang16c2270b2014-01-29 14:21:25 +0800698 parsed->profile_output_filename_ = StringAfterChar(option, ';');
Dave Allison0aded082013-11-07 13:15:11 -0800699 parsed->profile_ = true;
700 } else if (StartsWith(option, "-Xprofile-period:")) {
lzang16c2270b2014-01-29 14:21:25 +0800701 parsed->profile_period_s_ = ParseIntegerOrDie(option, ':');
Dave Allison0aded082013-11-07 13:15:11 -0800702 } else if (StartsWith(option, "-Xprofile-duration:")) {
lzang16c2270b2014-01-29 14:21:25 +0800703 parsed->profile_duration_s_ = ParseIntegerOrDie(option, ':');
Dave Allison0aded082013-11-07 13:15:11 -0800704 } else if (StartsWith(option, "-Xprofile-interval:")) {
lzang16c2270b2014-01-29 14:21:25 +0800705 parsed->profile_interval_us_ = ParseIntegerOrDie(option, ':');
Dave Allison0aded082013-11-07 13:15:11 -0800706 } else if (StartsWith(option, "-Xprofile-backoff:")) {
lzang16c2270b2014-01-29 14:21:25 +0800707 parsed->profile_backoff_coefficient_ = ParseDoubleOrDie(
708 option, ':', 1.0, 10.0, ignore_unrecognized, parsed->profile_backoff_coefficient_);
Brian Carlstrom6449c622014-02-10 23:48:36 -0800709 } else if (option == "-Xcompiler-option") {
710 i++;
711 if (i == options.size()) {
712 // TODO: usage
713 LOG(FATAL) << "Missing required compiler option for " << option;
714 return NULL;
715 }
716 parsed->compiler_options_.push_back(options[i].first);
717 } else if (option == "-Ximage-compiler-option") {
718 i++;
719 if (i == options.size()) {
720 // TODO: usage
721 LOG(FATAL) << "Missing required compiler option for " << option;
722 return NULL;
723 }
724 parsed->image_compiler_options_.push_back(options[i].first);
Brian Carlstrom8a436592011-08-15 21:27:23 -0700725 } else {
726 if (!ignore_unrecognized) {
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700727 // TODO: print usage via vfprintf
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700728 LOG(ERROR) << "Unrecognized option " << option;
729 // TODO: this should exit, but for now tolerate unknown options
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700730 // return NULL;
Brian Carlstrom8a436592011-08-15 21:27:23 -0700731 }
732 }
733 }
734
Brian Carlstromfb67b722013-06-24 23:41:51 -0700735 // If a reference to the dalvik core.jar snuck in, replace it with
736 // the art specific version. This can happen with on device
737 // boot.art/boot.oat generation by GenerateImage which relies on the
738 // value of BOOTCLASSPATH.
739 std::string core_jar("/core.jar");
740 size_t core_jar_pos = parsed->boot_class_path_string_.find(core_jar);
741 if (core_jar_pos != std::string::npos) {
742 parsed->boot_class_path_string_.replace(core_jar_pos, core_jar.size(), "/core-libart.jar");
743 }
744
Vladimir Marko2b5eaa22013-12-13 13:59:30 +0000745 if (parsed->compiler_callbacks_ == nullptr && parsed->image_.empty()) {
Brian Carlstrom223f20f2012-02-04 23:06:55 -0800746 parsed->image_ += GetAndroidRoot();
747 parsed->image_ += "/framework/boot.art";
Brian Carlstrom5de8fe52011-10-16 14:10:09 -0700748 }
jeffhaoc1160702011-10-27 15:48:45 -0700749 if (parsed->heap_growth_limit_ == 0) {
750 parsed->heap_growth_limit_ = parsed->heap_maximum_size_;
751 }
Mathieu Chartiere6da9af2013-12-16 11:54:42 -0800752 if (parsed->background_collector_type_ == gc::kCollectorTypeNone) {
753 parsed->background_collector_type_ = parsed->collector_type_;
754 }
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700755 return parsed.release();
Brian Carlstrom8a436592011-08-15 21:27:23 -0700756}
757
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700758bool Runtime::Create(const Options& options, bool ignore_unrecognized) {
Carl Shapiro2ed144c2011-07-26 16:52:08 -0700759 // TODO: acquire a static mutex on Runtime to avoid racing.
760 if (Runtime::instance_ != NULL) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700761 return false;
Carl Shapiro2ed144c2011-07-26 16:52:08 -0700762 }
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700763 InitLogging(NULL); // Calls Locks::Init() as a side effect.
Elliott Hughesdcc24742011-09-07 14:02:44 -0700764 instance_ = new Runtime;
765 if (!instance_->Init(options, ignore_unrecognized)) {
766 delete instance_;
767 instance_ = NULL;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700768 return false;
Carl Shapiro61e019d2011-07-14 16:53:09 -0700769 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700770 return true;
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700771}
Elliott Hughes0af55432011-08-17 18:37:28 -0700772
Brian Carlstromce888532013-10-10 00:32:58 -0700773jobject CreateSystemClassLoader() {
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800774 if (Runtime::Current()->UseCompileTimeClassPath()) {
Brian Carlstromce888532013-10-10 00:32:58 -0700775 return NULL;
Brian Carlstromaded5f72011-10-07 17:15:04 -0700776 }
777
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700778 ScopedObjectAccess soa(Thread::Current());
Mathieu Chartierc528dba2013-11-26 12:00:11 -0800779 ClassLinker* cl = Runtime::Current()->GetClassLinker();
Brian Carlstromaded5f72011-10-07 17:15:04 -0700780
Mathieu Chartierc528dba2013-11-26 12:00:11 -0800781 SirtRef<mirror::Class> class_loader_class(
782 soa.Self(), soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_ClassLoader));
783 CHECK(cl->EnsureInitialized(class_loader_class, true, true));
Brian Carlstromaded5f72011-10-07 17:15:04 -0700784
Brian Carlstromea46f952013-07-30 01:26:50 -0700785 mirror::ArtMethod* getSystemClassLoader =
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800786 class_loader_class->FindDirectMethod("getSystemClassLoader", "()Ljava/lang/ClassLoader;");
Brian Carlstromdf143242011-10-10 18:05:34 -0700787 CHECK(getSystemClassLoader != NULL);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700788
Jeff Hao5d917302013-02-27 17:57:33 -0800789 JValue result;
Mathieu Chartierc528dba2013-11-26 12:00:11 -0800790 ArgArray arg_array(nullptr, 0);
Ian Rogers0177e532014-02-11 16:30:46 -0800791 InvokeWithArgArray(soa, getSystemClassLoader, &arg_array, &result, "L");
Mathieu Chartierc528dba2013-11-26 12:00:11 -0800792 SirtRef<mirror::ClassLoader> class_loader(soa.Self(),
793 down_cast<mirror::ClassLoader*>(result.GetL()));
794 CHECK(class_loader.get() != nullptr);
Brian Carlstromce888532013-10-10 00:32:58 -0700795 JNIEnv* env = soa.Self()->GetJniEnv();
Mathieu Chartierc528dba2013-11-26 12:00:11 -0800796 ScopedLocalRef<jobject> system_class_loader(env,
797 soa.AddLocalReference<jobject>(class_loader.get()));
798 CHECK(system_class_loader.get() != nullptr);
Brian Carlstromce888532013-10-10 00:32:58 -0700799
Mathieu Chartierc528dba2013-11-26 12:00:11 -0800800 soa.Self()->SetClassLoaderOverride(class_loader.get());
Ian Rogers365c1022012-06-22 15:05:28 -0700801
Mathieu Chartierc528dba2013-11-26 12:00:11 -0800802 SirtRef<mirror::Class> thread_class(soa.Self(),
803 soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_Thread));
804 CHECK(cl->EnsureInitialized(thread_class, true, true));
Ian Rogers365c1022012-06-22 15:05:28 -0700805
Mathieu Chartierc528dba2013-11-26 12:00:11 -0800806 mirror::ArtField* contextClassLoader =
807 thread_class->FindDeclaredInstanceField("contextClassLoader", "Ljava/lang/ClassLoader;");
Jesse Wilson1b2b2f22011-11-22 11:47:44 -0500808 CHECK(contextClassLoader != NULL);
Ian Rogers365c1022012-06-22 15:05:28 -0700809
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100810 // We can't run in a transaction yet.
811 contextClassLoader->SetObject<false>(soa.Self()->GetPeer(), class_loader.get());
Brian Carlstromce888532013-10-10 00:32:58 -0700812
813 return env->NewGlobalRef(system_class_loader.get());
Brian Carlstromaded5f72011-10-07 17:15:04 -0700814}
815
Brian Carlstrombd86bcc2013-03-10 20:26:16 -0700816bool Runtime::Start() {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800817 VLOG(startup) << "Runtime::Start entering";
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700818
Ian Rogers97f44892014-02-14 23:10:04 +0000819 CHECK(host_prefix_.empty()) << host_prefix_;
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700820
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700821 // Restore main thread state to kNative as expected by native code.
Ian Rogersa436fde2013-08-27 23:34:06 -0700822 Thread* self = Thread::Current();
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700823 self->TransitionFromRunnableToSuspended(kNative);
824
Brian Carlstrom5d40f182011-09-26 22:29:18 -0700825 started_ = true;
826
Brian Carlstromae826982011-11-09 01:33:42 -0800827 // InitNativeMethods needs to be after started_ so that the classes
828 // it touches will have methods linked to the oat file if necessary.
829 InitNativeMethods();
830
Ian Rogers365c1022012-06-22 15:05:28 -0700831 // Initialize well known thread group values that may be accessed threads while attaching.
832 InitThreadGroups(self);
833
Jesse Wilson9a6bae82011-11-14 14:57:30 -0500834 Thread::FinishStartup();
835
Brian Carlstrombd86bcc2013-03-10 20:26:16 -0700836 if (is_zygote_) {
837 if (!InitZygote()) {
838 return false;
839 }
840 } else {
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700841 DidForkFromZygote();
842 }
Elliott Hughes9ca7a1f2011-10-11 14:29:52 -0700843
Elliott Hughes85d15452011-09-16 17:33:01 -0700844 StartDaemonThreads();
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700845
Brian Carlstromce888532013-10-10 00:32:58 -0700846 system_class_loader_ = CreateSystemClassLoader();
Brian Carlstromaded5f72011-10-07 17:15:04 -0700847
Elliott Hughes225f5a12012-06-11 11:23:48 -0700848 self->GetJniEnv()->locals.AssertEmpty();
Elliott Hughes726079d2011-10-07 18:43:44 -0700849
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800850 VLOG(startup) << "Runtime::Start exiting";
Mathieu Chartier7664f5c2012-06-08 18:15:32 -0700851
852 finished_starting_ = true;
Brian Carlstrombd86bcc2013-03-10 20:26:16 -0700853
Dave Allison0aded082013-11-07 13:15:11 -0800854 if (profile_) {
855 // User has asked for a profile using -Xprofile
856 StartProfiler(profile_output_filename_.c_str(), true);
857 }
858
Brian Carlstrombd86bcc2013-03-10 20:26:16 -0700859 return true;
Elliott Hughes85d15452011-09-16 17:33:01 -0700860}
861
Ian Rogers120f1c72012-09-28 17:17:10 -0700862void Runtime::EndThreadBirth() EXCLUSIVE_LOCKS_REQUIRED(Locks::runtime_shutdown_lock_) {
863 DCHECK_GT(threads_being_born_, 0U);
864 threads_being_born_--;
865 if (shutting_down_started_ && threads_being_born_ == 0) {
Ian Rogersc604d732012-10-14 16:09:54 -0700866 shutdown_cond_->Broadcast(Thread::Current());
Ian Rogers120f1c72012-09-28 17:17:10 -0700867 }
868}
869
Brian Carlstrombd86bcc2013-03-10 20:26:16 -0700870// Do zygote-mode-only initialization.
871bool Runtime::InitZygote() {
872 // zygote goes into its own process group
Brian Carlstromb1eba212013-07-17 18:07:19 -0700873 setpgid(0, 0);
Brian Carlstrombd86bcc2013-03-10 20:26:16 -0700874
875 // See storage config details at http://source.android.com/tech/storage/
876 // Create private mount namespace shared by all children
877 if (unshare(CLONE_NEWNS) == -1) {
878 PLOG(WARNING) << "Failed to unshare()";
879 return false;
880 }
881
882 // Mark rootfs as being a slave so that changes from default
883 // namespace only flow into our children.
884 if (mount("rootfs", "/", NULL, (MS_SLAVE | MS_REC), NULL) == -1) {
885 PLOG(WARNING) << "Failed to mount() rootfs as MS_SLAVE";
886 return false;
887 }
888
889 // Create a staging tmpfs that is shared by our children; they will
890 // bind mount storage into their respective private namespaces, which
891 // are isolated from each other.
892 const char* target_base = getenv("EMULATED_STORAGE_TARGET");
893 if (target_base != NULL) {
894 if (mount("tmpfs", target_base, "tmpfs", MS_NOSUID | MS_NODEV,
Jeff Sharkey52cd1e82013-09-17 16:25:12 -0700895 "uid=0,gid=1028,mode=0751") == -1) {
Brian Carlstrombd86bcc2013-03-10 20:26:16 -0700896 LOG(WARNING) << "Failed to mount tmpfs to " << target_base;
897 return false;
898 }
899 }
900
901 return true;
902}
903
Brian Carlstromcaabb1b2011-10-11 18:09:13 -0700904void Runtime::DidForkFromZygote() {
Brian Carlstromcaabb1b2011-10-11 18:09:13 -0700905 is_zygote_ = false;
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700906
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700907 // Create the thread pool.
908 heap_->CreateThreadPool();
909
Brian Carlstromcaabb1b2011-10-11 18:09:13 -0700910 StartSignalCatcher();
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700911
912 // Start the JDWP thread. If the command-line debugger flags specified "suspend=y",
913 // this will pause the runtime, so we probably want this to come last.
914 Dbg::StartJdwp();
Brian Carlstromcaabb1b2011-10-11 18:09:13 -0700915}
916
917void Runtime::StartSignalCatcher() {
918 if (!is_zygote_) {
Elliott Hughes94ce37a2011-10-18 15:07:48 -0700919 signal_catcher_ = new SignalCatcher(stack_trace_file_);
Brian Carlstromcaabb1b2011-10-11 18:09:13 -0700920 }
921}
922
Mathieu Chartier590fee92013-09-13 13:46:47 -0700923bool Runtime::IsShuttingDown(Thread* self) {
924 MutexLock mu(self, *Locks::runtime_shutdown_lock_);
925 return IsShuttingDownLocked();
926}
927
Elliott Hughes85d15452011-09-16 17:33:01 -0700928void Runtime::StartDaemonThreads() {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800929 VLOG(startup) << "Runtime::StartDaemonThreads entering";
Elliott Hughes85d15452011-09-16 17:33:01 -0700930
Elliott Hughes719b3232011-09-25 17:42:19 -0700931 Thread* self = Thread::Current();
Brian Carlstromaded5f72011-10-07 17:15:04 -0700932
933 // Must be in the kNative state for calling native methods.
Ian Rogers50b35e22012-10-04 10:09:15 -0700934 CHECK_EQ(self->GetState(), kNative);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700935
Elliott Hughes719b3232011-09-25 17:42:19 -0700936 JNIEnv* env = self->GetJniEnv();
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700937 env->CallStaticVoidMethod(WellKnownClasses::java_lang_Daemons,
938 WellKnownClasses::java_lang_Daemons_start);
939 if (env->ExceptionCheck()) {
940 env->ExceptionDescribe();
941 LOG(FATAL) << "Error starting java.lang.Daemons";
942 }
Elliott Hughes9ca7a1f2011-10-11 14:29:52 -0700943
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800944 VLOG(startup) << "Runtime::StartDaemonThreads exiting";
Carl Shapiro61e019d2011-07-14 16:53:09 -0700945}
946
Elliott Hughes0af55432011-08-17 18:37:28 -0700947bool Runtime::Init(const Options& raw_options, bool ignore_unrecognized) {
Elliott Hughesc1674ed2011-08-25 18:09:09 -0700948 CHECK_EQ(sysconf(_SC_PAGE_SIZE), kPageSize);
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700949
Elliott Hughes90a33692011-08-30 13:27:07 -0700950 UniquePtr<ParsedOptions> options(ParsedOptions::Create(raw_options, ignore_unrecognized));
951 if (options.get() == NULL) {
Brian Carlstrome24fa612011-09-29 00:53:55 -0700952 LOG(ERROR) << "Failed to parse options";
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700953 return false;
954 }
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800955 VLOG(startup) << "Runtime::Init -verbose:startup enabled";
Elliott Hughes7ede61e2011-09-14 18:18:06 -0700956
Elliott Hughes7c6169d2012-05-02 16:11:48 -0700957 QuasiAtomic::Startup();
958
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800959 Monitor::Init(options->lock_profiling_threshold_, options->hook_is_sensitive_thread_);
Elliott Hughes32d6e1e2011-10-11 14:47:44 -0700960
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700961 host_prefix_ = options->host_prefix_;
Brian Carlstroma004aa92012-02-08 18:05:09 -0800962 boot_class_path_string_ = options->boot_class_path_string_;
963 class_path_string_ = options->class_path_string_;
Elliott Hughes7ede61e2011-09-14 18:18:06 -0700964 properties_ = options->properties_;
965
Vladimir Marko2b5eaa22013-12-13 13:59:30 +0000966 compiler_callbacks_ = options->compiler_callbacks_;
Elliott Hughes9ca7a1f2011-10-11 14:29:52 -0700967 is_zygote_ = options->is_zygote_;
Anwar Ghuloum87183592013-08-14 12:12:19 -0700968 is_explicit_gc_disabled_ = options->is_explicit_gc_disabled_;
Elliott Hughes9ca7a1f2011-10-11 14:29:52 -0700969
Elliott Hughes0af55432011-08-17 18:37:28 -0700970 vfprintf_ = options->hook_vfprintf_;
971 exit_ = options->hook_exit_;
972 abort_ = options->hook_abort_;
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700973
Elliott Hughesbe759c62011-09-08 19:38:21 -0700974 default_stack_size_ = options->stack_size_;
Elliott Hughes94ce37a2011-10-18 15:07:48 -0700975 stack_trace_file_ = options->stack_trace_file_;
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700976
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700977 max_spins_before_thin_lock_inflation_ = options->max_spins_before_thin_lock_inflation_;
978
Elliott Hughesc33a32b2011-10-11 18:18:07 -0700979 monitor_list_ = new MonitorList;
Ian Rogersef7d42f2014-01-06 12:55:46 -0800980 monitor_pool_ = MonitorPool::Create();
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800981 thread_list_ = new ThreadList;
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700982 intern_table_ = new InternTable;
983
Logan Chiendd361c92012-04-10 23:40:37 +0800984
Ian Rogers62d6c772013-02-27 08:32:07 -0800985 if (options->interpreter_only_) {
986 GetInstrumentation()->ForceInterpretOnly();
987 }
988
Ian Rogers1d54e732013-05-02 21:10:01 -0700989 heap_ = new gc::Heap(options->heap_initial_size_,
990 options->heap_growth_limit_,
991 options->heap_min_free_,
992 options->heap_max_free_,
993 options->heap_target_utilization_,
994 options->heap_maximum_size_,
995 options->image_,
Mathieu Chartier0de9f732013-11-22 17:58:48 -0800996 options->collector_type_,
Mathieu Chartiere6da9af2013-12-16 11:54:42 -0800997 options->background_collector_type_,
Mathieu Chartier2775ee42013-08-20 17:43:47 -0700998 options->parallel_gc_threads_,
999 options->conc_gc_threads_,
1000 options->low_memory_mode_,
1001 options->long_pause_log_threshold_,
1002 options->long_gc_log_threshold_,
Mathieu Chartier692fafd2013-11-29 17:24:40 -08001003 options->ignore_max_footprint_,
Mathieu Chartier938a03b2014-01-16 15:10:31 -08001004 options->use_tlab_,
1005 options->verify_pre_gc_heap_,
Hiroshi Yamauchia4adbfd2014-02-04 18:12:17 -08001006 options->verify_post_gc_heap_,
1007 options->verify_pre_gc_rosalloc_,
1008 options->verify_post_gc_rosalloc_);
Brian Carlstrom6ea095a2011-08-16 15:26:54 -07001009
Hiroshi Yamauchi2e899a92013-11-22 16:50:12 -08001010 dump_gc_performance_on_shutdown_ = options->dump_gc_performance_on_shutdown_;
1011
Elliott Hughesc1674ed2011-08-25 18:09:09 -07001012 BlockSignals();
Elliott Hughes457005c2012-04-16 13:54:25 -07001013 InitPlatformSignalHandlers();
Elliott Hughesc1674ed2011-08-25 18:09:09 -07001014
Elliott Hughesa0957642011-09-02 14:27:33 -07001015 java_vm_ = new JavaVMExt(this, options.get());
Elliott Hughes515a5bc2011-08-17 11:08:34 -07001016
Elliott Hughesbe759c62011-09-08 19:38:21 -07001017 Thread::Startup();
Elliott Hughesd92bec42011-09-02 17:04:36 -07001018
Mathieu Chartier664bebf2012-11-12 16:54:11 -08001019 // ClassLinker needs an attached thread, but we can't fully attach a thread without creating
1020 // objects. We can't supply a thread group yet; it will be fixed later. Since we are the main
1021 // thread, we do not get a java peer.
1022 Thread* self = Thread::Attach("main", false, NULL, false);
Ian Rogersd9c4fc92013-10-01 19:45:43 -07001023 CHECK_EQ(self->thin_lock_thread_id_, ThreadList::kMainThreadId);
Ian Rogers120f1c72012-09-28 17:17:10 -07001024 CHECK(self != NULL);
Brian Carlstrom6ea095a2011-08-16 15:26:54 -07001025
Brian Carlstromf28bc5b2011-10-26 01:15:03 -07001026 // Set us to runnable so tools using a runtime can allocate and GC by default
Ian Rogers120f1c72012-09-28 17:17:10 -07001027 self->TransitionFromSuspendedToRunnable();
Brian Carlstromf28bc5b2011-10-26 01:15:03 -07001028
Ian Rogersa436fde2013-08-27 23:34:06 -07001029 // Now we're attached, we can take the heap locks and validate the heap.
Ian Rogers141d6222012-04-05 12:23:06 -07001030 GetHeap()->EnableObjectValidation();
1031
Ian Rogers1d54e732013-05-02 21:10:01 -07001032 CHECK_GE(GetHeap()->GetContinuousSpaces().size(), 1U);
Mathieu Chartier590fee92013-09-13 13:46:47 -07001033 class_linker_ = new ClassLinker(intern_table_);
1034 if (GetHeap()->HasImageSpace()) {
1035 class_linker_->InitFromImage();
Brian Carlstroma004aa92012-02-08 18:05:09 -08001036 } else {
1037 CHECK(options->boot_class_path_ != NULL);
1038 CHECK_NE(options->boot_class_path_->size(), 0U);
Mathieu Chartier590fee92013-09-13 13:46:47 -07001039 class_linker_->InitFromCompiler(*options->boot_class_path_);
Brian Carlstroma004aa92012-02-08 18:05:09 -08001040 }
1041 CHECK(class_linker_ != NULL);
Sameer Abu Asal51a5fb72013-02-19 14:25:01 -08001042 verifier::MethodVerifier::Init();
Brian Carlstrom6ea095a2011-08-16 15:26:54 -07001043
jeffhaob5e81852012-03-12 11:15:45 -07001044 method_trace_ = options->method_trace_;
1045 method_trace_file_ = options->method_trace_file_;
1046 method_trace_file_size_ = options->method_trace_file_size_;
1047
Dave Allison0aded082013-11-07 13:15:11 -08001048 // Extract the profile options.
1049 profile_period_s_ = options->profile_period_s_;
1050 profile_duration_s_ = options->profile_duration_s_;
1051 profile_interval_us_ = options->profile_interval_us_;
1052 profile_backoff_coefficient_ = options->profile_backoff_coefficient_;
1053 profile_ = options->profile_;
1054 profile_output_filename_ = options->profile_output_filename_;
1055
jeffhaob5e81852012-03-12 11:15:45 -07001056 if (options->method_trace_) {
Jeff Hao23009dc2013-08-22 15:36:42 -07001057 Trace::Start(options->method_trace_file_.c_str(), -1, options->method_trace_file_size_, 0,
1058 false, false, 0);
jeffhaob5e81852012-03-12 11:15:45 -07001059 }
1060
Ian Rogersa436fde2013-08-27 23:34:06 -07001061 // Pre-allocate an OutOfMemoryError for the double-OOME case.
1062 self->ThrowNewException(ThrowLocation(), "Ljava/lang/OutOfMemoryError;",
1063 "OutOfMemoryError thrown while trying to throw OutOfMemoryError; no stack available");
1064 pre_allocated_OutOfMemoryError_ = self->GetException(NULL);
1065 self->ClearException();
1066
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08001067 VLOG(startup) << "Runtime::Init exiting";
Carl Shapiro1fb86202011-06-27 17:43:13 -07001068 return true;
1069}
1070
Elliott Hughes038a8062011-09-18 14:12:41 -07001071void Runtime::InitNativeMethods() {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08001072 VLOG(startup) << "Runtime::InitNativeMethods entering";
Elliott Hughesad7c2a32011-08-31 11:58:10 -07001073 Thread* self = Thread::Current();
1074 JNIEnv* env = self->GetJniEnv();
1075
Elliott Hughes418d20f2011-09-22 14:00:39 -07001076 // Must be in the kNative state for calling native methods (JNI_OnLoad code).
Ian Rogers50b35e22012-10-04 10:09:15 -07001077 CHECK_EQ(self->GetState(), kNative);
Elliott Hughesad7c2a32011-08-31 11:58:10 -07001078
Elliott Hughes418d20f2011-09-22 14:00:39 -07001079 // First set up JniConstants, which is used by both the runtime's built-in native
1080 // methods and libcore.
Elliott Hughesfea966e2011-09-22 10:26:20 -07001081 JniConstants::init(env);
Elliott Hugheseac76672012-05-24 21:56:51 -07001082 WellKnownClasses::Init(env);
Elliott Hughesfea966e2011-09-22 10:26:20 -07001083
Elliott Hughes418d20f2011-09-22 14:00:39 -07001084 // Then set up the native methods provided by the runtime itself.
Elliott Hughesad7c2a32011-08-31 11:58:10 -07001085 RegisterRuntimeNativeMethods(env);
1086
Elliott Hughes418d20f2011-09-22 14:00:39 -07001087 // Then set up libcore, which is just a regular JNI library with a regular JNI_OnLoad.
1088 // Most JNI libraries can just use System.loadLibrary, but libcore can't because it's
1089 // the library that implements System.loadLibrary!
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001090 {
1091 std::string mapped_name(StringPrintf(OS_SHARED_LIB_FORMAT_STR, "javacore"));
1092 std::string reason;
1093 self->TransitionFromSuspendedToRunnable();
Mathieu Chartier055d46c2014-02-06 11:22:17 -08001094 SirtRef<mirror::ClassLoader> class_loader(self, nullptr);
1095 if (!instance_->java_vm_->LoadNativeLibrary(mapped_name, class_loader, &reason)) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001096 LOG(FATAL) << "LoadNativeLibrary failed for \"" << mapped_name << "\": " << reason;
1097 }
1098 self->TransitionFromRunnableToSuspended(kNative);
1099 }
Ian Rogersef28b142012-11-30 14:22:18 -08001100
1101 // Initialize well known classes that may invoke runtime native methods.
1102 WellKnownClasses::LateInit(env);
1103
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08001104 VLOG(startup) << "Runtime::InitNativeMethods exiting";
Elliott Hughesad7c2a32011-08-31 11:58:10 -07001105}
1106
Ian Rogers365c1022012-06-22 15:05:28 -07001107void Runtime::InitThreadGroups(Thread* self) {
1108 JNIEnvExt* env = self->GetJniEnv();
1109 ScopedJniEnvLocalRefState env_state(env);
1110 main_thread_group_ =
1111 env->NewGlobalRef(env->GetStaticObjectField(WellKnownClasses::java_lang_ThreadGroup,
1112 WellKnownClasses::java_lang_ThreadGroup_mainThreadGroup));
Brian Carlstrom034f76b2012-08-01 15:51:58 -07001113 CHECK(main_thread_group_ != NULL || IsCompiler());
Ian Rogers365c1022012-06-22 15:05:28 -07001114 system_thread_group_ =
1115 env->NewGlobalRef(env->GetStaticObjectField(WellKnownClasses::java_lang_ThreadGroup,
1116 WellKnownClasses::java_lang_ThreadGroup_systemThreadGroup));
Brian Carlstrom034f76b2012-08-01 15:51:58 -07001117 CHECK(system_thread_group_ != NULL || IsCompiler());
1118}
1119
1120jobject Runtime::GetMainThreadGroup() const {
1121 CHECK(main_thread_group_ != NULL || IsCompiler());
1122 return main_thread_group_;
1123}
1124
1125jobject Runtime::GetSystemThreadGroup() const {
1126 CHECK(system_thread_group_ != NULL || IsCompiler());
1127 return system_thread_group_;
Ian Rogers365c1022012-06-22 15:05:28 -07001128}
1129
Brian Carlstromce888532013-10-10 00:32:58 -07001130jobject Runtime::GetSystemClassLoader() const {
1131 CHECK(system_class_loader_ != NULL || IsCompiler());
1132 return system_class_loader_;
1133}
1134
Elliott Hughesad7c2a32011-08-31 11:58:10 -07001135void Runtime::RegisterRuntimeNativeMethods(JNIEnv* env) {
1136#define REGISTER(FN) extern void FN(JNIEnv*); FN(env)
Ian Rogers5167c972012-02-03 10:41:20 -08001137 // Register Throwable first so that registration of other native methods can throw exceptions
1138 REGISTER(register_java_lang_Throwable);
Brian Carlstromf91c8c32011-09-21 17:30:34 -07001139 REGISTER(register_dalvik_system_DexFile);
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07001140 REGISTER(register_dalvik_system_VMDebug);
Elliott Hughes7ede61e2011-09-14 18:18:06 -07001141 REGISTER(register_dalvik_system_VMRuntime);
Elliott Hughes8daa0922011-09-11 13:46:25 -07001142 REGISTER(register_dalvik_system_VMStack);
Elliott Hughes01158d72011-09-19 19:47:10 -07001143 REGISTER(register_dalvik_system_Zygote);
Elliott Hughesd369bb72011-09-12 14:41:14 -07001144 REGISTER(register_java_lang_Class);
Ian Rogers8b2c0b92013-09-19 02:56:49 -07001145 REGISTER(register_java_lang_DexCache);
Elliott Hughesbf86d042011-08-31 17:53:14 -07001146 REGISTER(register_java_lang_Object);
1147 REGISTER(register_java_lang_Runtime);
1148 REGISTER(register_java_lang_String);
1149 REGISTER(register_java_lang_System);
Elliott Hughes8daa0922011-09-11 13:46:25 -07001150 REGISTER(register_java_lang_Thread);
Elliott Hughes64bf5a32011-09-20 14:43:12 -07001151 REGISTER(register_java_lang_VMClassLoader);
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001152 REGISTER(register_java_lang_reflect_Array);
Elliott Hughes2a20cfd2011-09-23 19:30:41 -07001153 REGISTER(register_java_lang_reflect_Constructor);
Brian Carlstromf867b6f2011-09-16 12:17:25 -07001154 REGISTER(register_java_lang_reflect_Field);
1155 REGISTER(register_java_lang_reflect_Method);
Jesse Wilson95caa792011-10-12 18:14:17 -04001156 REGISTER(register_java_lang_reflect_Proxy);
Elliott Hughesbf86d042011-08-31 17:53:14 -07001157 REGISTER(register_java_util_concurrent_atomic_AtomicLong);
Brian Carlstrom395520e2011-09-25 19:35:00 -07001158 REGISTER(register_org_apache_harmony_dalvik_ddmc_DdmServer);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07001159 REGISTER(register_org_apache_harmony_dalvik_ddmc_DdmVmInternal);
Elliott Hughes5ee7a8b2011-09-13 16:40:07 -07001160 REGISTER(register_sun_misc_Unsafe);
Elliott Hughesad7c2a32011-08-31 11:58:10 -07001161#undef REGISTER
1162}
1163
Elliott Hughesc967f782012-04-16 10:23:15 -07001164void Runtime::DumpForSigQuit(std::ostream& os) {
Elliott Hughescac6cc72011-11-03 20:31:21 -07001165 GetClassLinker()->DumpForSigQuit(os);
1166 GetInternTable()->DumpForSigQuit(os);
Elliott Hughesae80b492012-04-24 10:43:17 -07001167 GetJavaVM()->DumpForSigQuit(os);
Elliott Hughesc967f782012-04-16 10:23:15 -07001168 GetHeap()->DumpForSigQuit(os);
Elliott Hughes42ee1422011-09-06 12:33:32 -07001169 os << "\n";
Elliott Hughes8daa0922011-09-11 13:46:25 -07001170
Elliott Hughesc967f782012-04-16 10:23:15 -07001171 thread_list_->DumpForSigQuit(os);
Ian Rogers56edc432013-01-18 16:51:51 -08001172 BaseMutex::DumpAll(os);
Elliott Hughese27955c2011-08-26 15:21:24 -07001173}
1174
Elliott Hughes21a5bf22011-12-07 14:35:20 -08001175void Runtime::DumpLockHolders(std::ostream& os) {
Ian Rogersb726dcb2012-09-05 08:57:23 -07001176 uint64_t mutator_lock_owner = Locks::mutator_lock_->GetExclusiveOwnerTid();
Elliott Hughes21a5bf22011-12-07 14:35:20 -08001177 pid_t thread_list_lock_owner = GetThreadList()->GetLockOwner();
1178 pid_t classes_lock_owner = GetClassLinker()->GetClassesLockOwner();
1179 pid_t dex_lock_owner = GetClassLinker()->GetDexLockOwner();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001180 if ((thread_list_lock_owner | classes_lock_owner | dex_lock_owner) != 0) {
1181 os << "Mutator lock exclusive owner tid: " << mutator_lock_owner << "\n"
Elliott Hughes21a5bf22011-12-07 14:35:20 -08001182 << "ThreadList lock owner tid: " << thread_list_lock_owner << "\n"
1183 << "ClassLinker classes lock owner tid: " << classes_lock_owner << "\n"
1184 << "ClassLinker dex lock owner tid: " << dex_lock_owner << "\n";
1185 }
1186}
1187
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07001188void Runtime::SetStatsEnabled(bool new_state) {
1189 if (new_state == true) {
1190 GetStats()->Clear(~0);
1191 // TODO: wouldn't it make more sense to clear _all_ threads' stats?
1192 Thread::Current()->GetStats()->Clear(~0);
Ian Rogersfa824272013-11-05 16:12:57 -08001193 GetInstrumentation()->InstrumentQuickAllocEntryPoints();
Hiroshi Yamauchi3b4c1892013-09-12 21:33:12 -07001194 } else {
Ian Rogersfa824272013-11-05 16:12:57 -08001195 GetInstrumentation()->UninstrumentQuickAllocEntryPoints();
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07001196 }
1197 stats_enabled_ = new_state;
1198}
1199
1200void Runtime::ResetStats(int kinds) {
1201 GetStats()->Clear(kinds & 0xffff);
1202 // TODO: wouldn't it make more sense to clear _all_ threads' stats?
1203 Thread::Current()->GetStats()->Clear(kinds >> 16);
1204}
1205
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07001206int32_t Runtime::GetStat(int kind) {
1207 RuntimeStats* stats;
1208 if (kind < (1<<16)) {
1209 stats = GetStats();
1210 } else {
1211 stats = Thread::Current()->GetStats();
1212 kind >>= 16;
1213 }
1214 switch (kind) {
1215 case KIND_ALLOCATED_OBJECTS:
1216 return stats->allocated_objects;
1217 case KIND_ALLOCATED_BYTES:
1218 return stats->allocated_bytes;
1219 case KIND_FREED_OBJECTS:
1220 return stats->freed_objects;
1221 case KIND_FREED_BYTES:
1222 return stats->freed_bytes;
1223 case KIND_GC_INVOCATIONS:
1224 return stats->gc_for_alloc_count;
1225 case KIND_CLASS_INIT_COUNT:
1226 return stats->class_init_count;
1227 case KIND_CLASS_INIT_TIME:
1228 // Convert ns to us, reduce to 32 bits.
Elliott Hughes398f64b2012-03-26 18:05:48 -07001229 return static_cast<int>(stats->class_init_time_ns / 1000);
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07001230 case KIND_EXT_ALLOCATED_OBJECTS:
1231 case KIND_EXT_ALLOCATED_BYTES:
1232 case KIND_EXT_FREED_OBJECTS:
1233 case KIND_EXT_FREED_BYTES:
1234 return 0; // backward compatibility
1235 default:
Elliott Hughes7b9d9962012-04-20 18:48:18 -07001236 LOG(FATAL) << "Unknown statistic " << kind;
Brian Carlstrom7934ac22013-07-26 10:54:15 -07001237 return -1; // unreachable
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07001238 }
1239}
1240
Elliott Hughesc1674ed2011-08-25 18:09:09 -07001241void Runtime::BlockSignals() {
Elliott Hughes457005c2012-04-16 13:54:25 -07001242 SignalSet signals;
1243 signals.Add(SIGPIPE);
Elliott Hughesc1674ed2011-08-25 18:09:09 -07001244 // SIGQUIT is used to dump the runtime's state (including stack traces).
Elliott Hughes457005c2012-04-16 13:54:25 -07001245 signals.Add(SIGQUIT);
Elliott Hughes08795042012-04-03 14:48:52 -07001246 // SIGUSR1 is used to initiate a GC.
Elliott Hughes457005c2012-04-16 13:54:25 -07001247 signals.Add(SIGUSR1);
1248 signals.Block();
Elliott Hughesc1674ed2011-08-25 18:09:09 -07001249}
1250
Mathieu Chartier664bebf2012-11-12 16:54:11 -08001251bool Runtime::AttachCurrentThread(const char* thread_name, bool as_daemon, jobject thread_group,
1252 bool create_peer) {
1253 bool success = Thread::Attach(thread_name, as_daemon, thread_group, create_peer) != NULL;
Elliott Hughes22869a92012-03-27 14:08:24 -07001254 if (thread_name == NULL) {
1255 LOG(WARNING) << *Thread::Current() << " attached without supplying a name";
1256 }
Ian Rogers120f1c72012-09-28 17:17:10 -07001257 return success;
Carl Shapiro61e019d2011-07-14 16:53:09 -07001258}
1259
Elliott Hughesd92bec42011-09-02 17:04:36 -07001260void Runtime::DetachCurrentThread() {
Brian Carlstrom4d571432012-05-16 00:21:41 -07001261 Thread* self = Thread::Current();
1262 if (self == NULL) {
1263 LOG(FATAL) << "attempting to detach thread that is not attached";
1264 }
Ian Rogers0399dde2012-06-06 17:09:28 -07001265 if (self->HasManagedStack()) {
Elliott Hughes22869a92012-03-27 14:08:24 -07001266 LOG(FATAL) << *Thread::Current() << " attempting to detach while still running code";
1267 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001268 thread_list_->Unregister(self);
Carl Shapiro1fb86202011-06-27 17:43:13 -07001269}
1270
Ian Rogersa436fde2013-08-27 23:34:06 -07001271 mirror::Throwable* Runtime::GetPreAllocatedOutOfMemoryError() const {
1272 if (pre_allocated_OutOfMemoryError_ == NULL) {
1273 LOG(ERROR) << "Failed to return pre-allocated OOME";
1274 }
1275 return pre_allocated_OutOfMemoryError_;
1276}
1277
Mathieu Chartier83c8ee02014-01-28 14:50:23 -08001278void Runtime::VisitConcurrentRoots(RootCallback* callback, void* arg, bool only_dirty,
Ian Rogers1d54e732013-05-02 21:10:01 -07001279 bool clean_dirty) {
Mathieu Chartier83c8ee02014-01-28 14:50:23 -08001280 intern_table_->VisitRoots(callback, arg, only_dirty, clean_dirty);
1281 class_linker_->VisitRoots(callback, arg, only_dirty, clean_dirty);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001282 // TODO: is it the right place ?
1283 if (preinitialization_transaction != nullptr) {
1284 preinitialization_transaction->VisitRoots(callback, arg);
1285 }
Mathieu Chartier9ebae1f2012-10-15 17:38:16 -07001286}
1287
Mathieu Chartier83c8ee02014-01-28 14:50:23 -08001288void Runtime::VisitNonThreadRoots(RootCallback* callback, void* arg) {
Mathieu Chartierc528dba2013-11-26 12:00:11 -08001289 // Visit the classes held as static in mirror classes.
Mathieu Chartier83c8ee02014-01-28 14:50:23 -08001290 mirror::ArtField::VisitRoots(callback, arg);
1291 mirror::ArtMethod::VisitRoots(callback, arg);
1292 mirror::Class::VisitRoots(callback, arg);
1293 mirror::StackTraceElement::VisitRoots(callback, arg);
1294 mirror::String::VisitRoots(callback, arg);
1295 mirror::Throwable::VisitRoots(callback, arg);
Mathieu Chartierc528dba2013-11-26 12:00:11 -08001296 // Visit all the primitive array types classes.
Mathieu Chartier83c8ee02014-01-28 14:50:23 -08001297 mirror::PrimitiveArray<uint8_t>::VisitRoots(callback, arg); // BooleanArray
1298 mirror::PrimitiveArray<int8_t>::VisitRoots(callback, arg); // ByteArray
1299 mirror::PrimitiveArray<uint16_t>::VisitRoots(callback, arg); // CharArray
1300 mirror::PrimitiveArray<double>::VisitRoots(callback, arg); // DoubleArray
1301 mirror::PrimitiveArray<float>::VisitRoots(callback, arg); // FloatArray
1302 mirror::PrimitiveArray<int32_t>::VisitRoots(callback, arg); // IntArray
1303 mirror::PrimitiveArray<int64_t>::VisitRoots(callback, arg); // LongArray
1304 mirror::PrimitiveArray<int16_t>::VisitRoots(callback, arg); // ShortArray
1305 java_vm_->VisitRoots(callback, arg);
Mathieu Chartier423d2a32013-09-12 17:33:56 -07001306 if (pre_allocated_OutOfMemoryError_ != nullptr) {
Mathieu Chartier815873e2014-02-13 18:02:13 -08001307 callback(reinterpret_cast<mirror::Object**>(&pre_allocated_OutOfMemoryError_), arg, 0,
1308 kRootVMInternal);
Mathieu Chartier423d2a32013-09-12 17:33:56 -07001309 DCHECK(pre_allocated_OutOfMemoryError_ != nullptr);
Elliott Hughes225f5a12012-06-11 11:23:48 -07001310 }
Mathieu Chartier815873e2014-02-13 18:02:13 -08001311 callback(reinterpret_cast<mirror::Object**>(&resolution_method_), arg, 0, kRootVMInternal);
Mathieu Chartier423d2a32013-09-12 17:33:56 -07001312 DCHECK(resolution_method_ != nullptr);
Mathieu Chartier590fee92013-09-13 13:46:47 -07001313 if (HasImtConflictMethod()) {
Mathieu Chartier815873e2014-02-13 18:02:13 -08001314 callback(reinterpret_cast<mirror::Object**>(&imt_conflict_method_), arg, 0, kRootVMInternal);
Mathieu Chartier590fee92013-09-13 13:46:47 -07001315 }
1316 if (HasDefaultImt()) {
Mathieu Chartier815873e2014-02-13 18:02:13 -08001317 callback(reinterpret_cast<mirror::Object**>(&default_imt_), arg, 0, kRootVMInternal);
Mathieu Chartier590fee92013-09-13 13:46:47 -07001318 }
1319
Ian Rogers4f0d07c2011-10-06 23:38:47 -07001320 for (int i = 0; i < Runtime::kLastCalleeSaveType; i++) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001321 if (callee_save_methods_[i] != nullptr) {
Mathieu Chartier815873e2014-02-13 18:02:13 -08001322 callback(reinterpret_cast<mirror::Object**>(&callee_save_methods_[i]), arg, 0,
1323 kRootVMInternal);
Mathieu Chartier590fee92013-09-13 13:46:47 -07001324 }
Ian Rogers4f0d07c2011-10-06 23:38:47 -07001325 }
Mathieu Chartierc528dba2013-11-26 12:00:11 -08001326 {
1327 MutexLock mu(Thread::Current(), method_verifiers_lock_);
1328 for (verifier::MethodVerifier* verifier : method_verifiers_) {
Mathieu Chartier83c8ee02014-01-28 14:50:23 -08001329 verifier->VisitRoots(callback, arg);
Mathieu Chartierc528dba2013-11-26 12:00:11 -08001330 }
1331 }
Brian Carlstrome24fa612011-09-29 00:53:55 -07001332}
1333
Mathieu Chartier83c8ee02014-01-28 14:50:23 -08001334void Runtime::VisitNonConcurrentRoots(RootCallback* callback, void* arg) {
1335 thread_list_->VisitRoots(callback, arg);
1336 VisitNonThreadRoots(callback, arg);
Mathieu Chartier858f1c52012-10-17 17:45:55 -07001337}
1338
Mathieu Chartier83c8ee02014-01-28 14:50:23 -08001339void Runtime::VisitRoots(RootCallback* callback, void* arg, bool only_dirty, bool clean_dirty) {
1340 VisitConcurrentRoots(callback, arg, only_dirty, clean_dirty);
1341 VisitNonConcurrentRoots(callback, arg);
Mathieu Chartier9ebae1f2012-10-15 17:38:16 -07001342}
1343
Jeff Hao88474b42013-10-23 16:24:40 -07001344mirror::ObjectArray<mirror::ArtMethod>* Runtime::CreateDefaultImt(ClassLinker* cl) {
1345 Thread* self = Thread::Current();
1346 SirtRef<mirror::ObjectArray<mirror::ArtMethod> > imtable(self, cl->AllocArtMethodArray(self, 64));
1347 mirror::ArtMethod* imt_conflict_method = Runtime::Current()->GetImtConflictMethod();
Mathieu Chartier590fee92013-09-13 13:46:47 -07001348 for (size_t i = 0; i < static_cast<size_t>(imtable->GetLength()); i++) {
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001349 imtable->Set<false>(i, imt_conflict_method);
Jeff Hao88474b42013-10-23 16:24:40 -07001350 }
1351 return imtable.get();
1352}
1353
1354mirror::ArtMethod* Runtime::CreateImtConflictMethod() {
Jeff Hao88474b42013-10-23 16:24:40 -07001355 Thread* self = Thread::Current();
Ian Rogersef7d42f2014-01-06 12:55:46 -08001356 Runtime* runtime = Runtime::Current();
1357 ClassLinker* class_linker = runtime->GetClassLinker();
1358 SirtRef<mirror::ArtMethod> method(self, class_linker->AllocArtMethod(self));
Mathieu Chartier590fee92013-09-13 13:46:47 -07001359 method->SetDeclaringClass(mirror::ArtMethod::GetJavaLangReflectArtMethod());
Ian Rogersef7d42f2014-01-06 12:55:46 -08001360 // TODO: use a special method for imt conflict method saves.
Jeff Hao88474b42013-10-23 16:24:40 -07001361 method->SetDexMethodIndex(DexFile::kDexNoIndex);
1362 // When compiling, the code pointer will get set later when the image is loaded.
Ian Rogersef7d42f2014-01-06 12:55:46 -08001363 if (runtime->IsCompiler()) {
1364 method->SetEntryPointFromPortableCompiledCode(nullptr);
1365 method->SetEntryPointFromQuickCompiledCode(nullptr);
1366 } else {
1367 method->SetEntryPointFromPortableCompiledCode(GetPortableImtConflictTrampoline(class_linker));
1368 method->SetEntryPointFromQuickCompiledCode(GetQuickImtConflictTrampoline(class_linker));
1369 }
Jeff Hao88474b42013-10-23 16:24:40 -07001370 return method.get();
1371}
1372
Brian Carlstromea46f952013-07-30 01:26:50 -07001373mirror::ArtMethod* Runtime::CreateResolutionMethod() {
Ian Rogers50b35e22012-10-04 10:09:15 -07001374 Thread* self = Thread::Current();
Ian Rogersef7d42f2014-01-06 12:55:46 -08001375 Runtime* runtime = Runtime::Current();
1376 ClassLinker* class_linker = runtime->GetClassLinker();
1377 SirtRef<mirror::ArtMethod> method(self, class_linker->AllocArtMethod(self));
Mathieu Chartier590fee92013-09-13 13:46:47 -07001378 method->SetDeclaringClass(mirror::ArtMethod::GetJavaLangReflectArtMethod());
Ian Rogers19846512012-02-24 11:42:47 -08001379 // TODO: use a special method for resolution method saves
Ian Rogers8b2c0b92013-09-19 02:56:49 -07001380 method->SetDexMethodIndex(DexFile::kDexNoIndex);
Jeff Hao58df3272013-04-22 15:28:53 -07001381 // When compiling, the code pointer will get set later when the image is loaded.
Ian Rogersef7d42f2014-01-06 12:55:46 -08001382 if (runtime->IsCompiler()) {
1383 method->SetEntryPointFromPortableCompiledCode(nullptr);
1384 method->SetEntryPointFromQuickCompiledCode(nullptr);
1385 } else {
1386 method->SetEntryPointFromPortableCompiledCode(GetPortableResolutionTrampoline(class_linker));
1387 method->SetEntryPointFromQuickCompiledCode(GetQuickResolutionTrampoline(class_linker));
1388 }
Ian Rogers19846512012-02-24 11:42:47 -08001389 return method.get();
1390}
1391
Brian Carlstromea46f952013-07-30 01:26:50 -07001392mirror::ArtMethod* Runtime::CreateCalleeSaveMethod(InstructionSet instruction_set,
Mathieu Chartier590fee92013-09-13 13:46:47 -07001393 CalleeSaveType type) {
Ian Rogers50b35e22012-10-04 10:09:15 -07001394 Thread* self = Thread::Current();
Ian Rogersef7d42f2014-01-06 12:55:46 -08001395 Runtime* runtime = Runtime::Current();
1396 ClassLinker* class_linker = runtime->GetClassLinker();
1397 SirtRef<mirror::ArtMethod> method(self, class_linker->AllocArtMethod(self));
Mathieu Chartier590fee92013-09-13 13:46:47 -07001398 method->SetDeclaringClass(mirror::ArtMethod::GetJavaLangReflectArtMethod());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001399 // TODO: use a special method for callee saves
Ian Rogers8b2c0b92013-09-19 02:56:49 -07001400 method->SetDexMethodIndex(DexFile::kDexNoIndex);
Ian Rogersef7d42f2014-01-06 12:55:46 -08001401 method->SetEntryPointFromPortableCompiledCode(nullptr);
1402 method->SetEntryPointFromQuickCompiledCode(nullptr);
Brian Carlstromae826982011-11-09 01:33:42 -08001403 if ((instruction_set == kThumb2) || (instruction_set == kArm)) {
Ian Rogers4f0d07c2011-10-06 23:38:47 -07001404 uint32_t ref_spills = (1 << art::arm::R5) | (1 << art::arm::R6) | (1 << art::arm::R7) |
1405 (1 << art::arm::R8) | (1 << art::arm::R10) | (1 << art::arm::R11);
1406 uint32_t arg_spills = (1 << art::arm::R1) | (1 << art::arm::R2) | (1 << art::arm::R3);
1407 uint32_t all_spills = (1 << art::arm::R4) | (1 << art::arm::R9);
jeffhaofa147e22012-10-12 17:03:32 -07001408 uint32_t core_spills = ref_spills | (type == kRefsAndArgs ? arg_spills : 0) |
1409 (type == kSaveAll ? all_spills : 0) | (1 << art::arm::LR);
Ian Rogers4f0d07c2011-10-06 23:38:47 -07001410 uint32_t fp_all_spills = (1 << art::arm::S0) | (1 << art::arm::S1) | (1 << art::arm::S2) |
1411 (1 << art::arm::S3) | (1 << art::arm::S4) | (1 << art::arm::S5) |
1412 (1 << art::arm::S6) | (1 << art::arm::S7) | (1 << art::arm::S8) |
1413 (1 << art::arm::S9) | (1 << art::arm::S10) | (1 << art::arm::S11) |
1414 (1 << art::arm::S12) | (1 << art::arm::S13) | (1 << art::arm::S14) |
1415 (1 << art::arm::S15) | (1 << art::arm::S16) | (1 << art::arm::S17) |
1416 (1 << art::arm::S18) | (1 << art::arm::S19) | (1 << art::arm::S20) |
1417 (1 << art::arm::S21) | (1 << art::arm::S22) | (1 << art::arm::S23) |
1418 (1 << art::arm::S24) | (1 << art::arm::S25) | (1 << art::arm::S26) |
1419 (1 << art::arm::S27) | (1 << art::arm::S28) | (1 << art::arm::S29) |
1420 (1 << art::arm::S30) | (1 << art::arm::S31);
1421 uint32_t fp_spills = type == kSaveAll ? fp_all_spills : 0;
1422 size_t frame_size = RoundUp((__builtin_popcount(core_spills) /* gprs */ +
1423 __builtin_popcount(fp_spills) /* fprs */ +
1424 1 /* Method* */) * kPointerSize, kStackAlignment);
Ian Rogers15fdb8c2011-09-25 15:45:07 -07001425 method->SetFrameSizeInBytes(frame_size);
Ian Rogers4f0d07c2011-10-06 23:38:47 -07001426 method->SetCoreSpillMask(core_spills);
1427 method->SetFpSpillMask(fp_spills);
jeffhao7fbee072012-08-24 17:56:54 -07001428 } else if (instruction_set == kMips) {
1429 uint32_t ref_spills = (1 << art::mips::S2) | (1 << art::mips::S3) | (1 << art::mips::S4) |
1430 (1 << art::mips::S5) | (1 << art::mips::S6) | (1 << art::mips::S7) |
Jeff Hao1f3bc2f2013-04-30 15:17:19 -07001431 (1 << art::mips::GP) | (1 << art::mips::FP);
jeffhao7fbee072012-08-24 17:56:54 -07001432 uint32_t arg_spills = (1 << art::mips::A1) | (1 << art::mips::A2) | (1 << art::mips::A3);
jeffhaofa147e22012-10-12 17:03:32 -07001433 uint32_t all_spills = (1 << art::mips::S0) | (1 << art::mips::S1);
jeffhao7fbee072012-08-24 17:56:54 -07001434 uint32_t core_spills = ref_spills | (type == kRefsAndArgs ? arg_spills : 0) |
jeffhaofa147e22012-10-12 17:03:32 -07001435 (type == kSaveAll ? all_spills : 0) | (1 << art::mips::RA);
jeffhao7fbee072012-08-24 17:56:54 -07001436 size_t frame_size = RoundUp((__builtin_popcount(core_spills) /* gprs */ +
Jeff Hao1f3bc2f2013-04-30 15:17:19 -07001437 (type == kRefsAndArgs ? 0 : 3) + 1 /* Method* */) *
1438 kPointerSize, kStackAlignment);
jeffhao7fbee072012-08-24 17:56:54 -07001439 method->SetFrameSizeInBytes(frame_size);
1440 method->SetCoreSpillMask(core_spills);
jeffhao07030602012-09-26 14:33:14 -07001441 method->SetFpSpillMask(0);
Brian Carlstromae826982011-11-09 01:33:42 -08001442 } else if (instruction_set == kX86) {
Ian Rogers7caad772012-03-30 01:07:54 -07001443 uint32_t ref_spills = (1 << art::x86::EBP) | (1 << art::x86::ESI) | (1 << art::x86::EDI);
1444 uint32_t arg_spills = (1 << art::x86::ECX) | (1 << art::x86::EDX) | (1 << art::x86::EBX);
1445 uint32_t core_spills = ref_spills | (type == kRefsAndArgs ? arg_spills : 0) |
1446 (1 << art::x86::kNumberOfCpuRegisters); // fake return address callee save
1447 size_t frame_size = RoundUp((__builtin_popcount(core_spills) /* gprs */ +
1448 1 /* Method* */) * kPointerSize, kStackAlignment);
1449 method->SetFrameSizeInBytes(frame_size);
1450 method->SetCoreSpillMask(core_spills);
Ian Rogersff1ed472011-09-20 13:46:24 -07001451 method->SetFpSpillMask(0);
Ian Rogersef7d42f2014-01-06 12:55:46 -08001452 } else if (instruction_set == kX86_64) {
1453 uint32_t ref_spills =
Ian Rogers0177e532014-02-11 16:30:46 -08001454 (1 << art::x86_64::RBX) | (1 << art::x86_64::RBP) | (1 << art::x86_64::R12) |
1455 (1 << art::x86_64::R13) | (1 << art::x86_64::R14) | (1 << art::x86_64::R15);
Ian Rogersef7d42f2014-01-06 12:55:46 -08001456 uint32_t arg_spills =
Ian Rogers0177e532014-02-11 16:30:46 -08001457 (1 << art::x86_64::RSI) | (1 << art::x86_64::RDX) | (1 << art::x86_64::RCX) |
1458 (1 << art::x86_64::R8) | (1 << art::x86_64::R9);
Ian Rogersef7d42f2014-01-06 12:55:46 -08001459 uint32_t core_spills = ref_spills | (type == kRefsAndArgs ? arg_spills : 0) |
Ian Rogers936b37f2014-02-14 00:52:24 -08001460 (1 << art::x86_64::kNumberOfCpuRegisters); // fake return address callee save
1461 uint32_t fp_arg_spills =
1462 (1 << art::x86_64::XMM0) | (1 << art::x86_64::XMM1) | (1 << art::x86_64::XMM2) |
1463 (1 << art::x86_64::XMM3) | (1 << art::x86_64::XMM4) | (1 << art::x86_64::XMM5) |
1464 (1 << art::x86_64::XMM6) | (1 << art::x86_64::XMM7);
1465 uint32_t fp_spills = (type == kRefsAndArgs ? fp_arg_spills : 0);
Ian Rogersef7d42f2014-01-06 12:55:46 -08001466 size_t frame_size = RoundUp((__builtin_popcount(core_spills) /* gprs */ +
Ian Rogers936b37f2014-02-14 00:52:24 -08001467 __builtin_popcount(fp_spills) /* fprs */ +
Ian Rogersef7d42f2014-01-06 12:55:46 -08001468 1 /* Method* */) * kPointerSize, kStackAlignment);
1469 method->SetFrameSizeInBytes(frame_size);
1470 method->SetCoreSpillMask(core_spills);
Ian Rogers936b37f2014-02-14 00:52:24 -08001471 method->SetFpSpillMask(fp_spills);
Ian Rogersff1ed472011-09-20 13:46:24 -07001472 } else {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001473 UNIMPLEMENTED(FATAL) << instruction_set;
Ian Rogersff1ed472011-09-20 13:46:24 -07001474 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001475 return method.get();
Ian Rogersff1ed472011-09-20 13:46:24 -07001476}
1477
Mathieu Chartierc11d9b82013-09-19 10:01:59 -07001478void Runtime::DisallowNewSystemWeaks() {
1479 monitor_list_->DisallowNewMonitors();
1480 intern_table_->DisallowNewInterns();
1481 java_vm_->DisallowNewWeakGlobals();
Mathieu Chartier412c7fc2014-02-07 12:18:39 -08001482 Dbg::DisallowNewObjectRegistryObjects();
Mathieu Chartierc11d9b82013-09-19 10:01:59 -07001483}
1484
1485void Runtime::AllowNewSystemWeaks() {
1486 monitor_list_->AllowNewMonitors();
1487 intern_table_->AllowNewInterns();
1488 java_vm_->AllowNewWeakGlobals();
Mathieu Chartier412c7fc2014-02-07 12:18:39 -08001489 Dbg::AllowNewObjectRegistryObjects();
Mathieu Chartierc11d9b82013-09-19 10:01:59 -07001490}
1491
Brian Carlstromea46f952013-07-30 01:26:50 -07001492void Runtime::SetCalleeSaveMethod(mirror::ArtMethod* method, CalleeSaveType type) {
Ian Rogers4f0d07c2011-10-06 23:38:47 -07001493 DCHECK_LT(static_cast<int>(type), static_cast<int>(kLastCalleeSaveType));
Elliott Hughes225f5a12012-06-11 11:23:48 -07001494 callee_save_methods_[type] = method;
Brian Carlstrome24fa612011-09-29 00:53:55 -07001495}
1496
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001497const std::vector<const DexFile*>& Runtime::GetCompileTimeClassPath(jobject class_loader) {
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08001498 if (class_loader == NULL) {
1499 return GetClassLinker()->GetBootClassPath();
1500 }
1501 CHECK(UseCompileTimeClassPath());
1502 CompileTimeClassPaths::const_iterator it = compile_time_class_paths_.find(class_loader);
1503 CHECK(it != compile_time_class_paths_.end());
1504 return it->second;
1505}
1506
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001507void Runtime::SetCompileTimeClassPath(jobject class_loader, std::vector<const DexFile*>& class_path) {
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08001508 CHECK(!IsStarted());
1509 use_compile_time_class_path_ = true;
Elliott Hughesa0e18062012-04-13 15:59:59 -07001510 compile_time_class_paths_.Put(class_loader, class_path);
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08001511}
1512
Mathieu Chartierc528dba2013-11-26 12:00:11 -08001513void Runtime::AddMethodVerifier(verifier::MethodVerifier* verifier) {
1514 DCHECK(verifier != nullptr);
1515 MutexLock mu(Thread::Current(), method_verifiers_lock_);
1516 method_verifiers_.insert(verifier);
1517}
1518
1519void Runtime::RemoveMethodVerifier(verifier::MethodVerifier* verifier) {
1520 DCHECK(verifier != nullptr);
1521 MutexLock mu(Thread::Current(), method_verifiers_lock_);
1522 auto it = method_verifiers_.find(verifier);
1523 CHECK(it != method_verifiers_.end());
1524 method_verifiers_.erase(it);
1525}
1526
Dave Allison0aded082013-11-07 13:15:11 -08001527void Runtime::StartProfiler(const char *appDir, bool startImmediately) {
1528 BackgroundMethodSamplingProfiler::Start(profile_period_s_, profile_duration_s_, appDir, profile_interval_us_,
1529 profile_backoff_coefficient_, startImmediately);
1530}
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001531
1532// Transaction support.
1533// TODO move them to header file for inlining.
1534bool Runtime::IsActiveTransaction() const {
1535 return preinitialization_transaction != nullptr;
1536}
1537
1538void Runtime::EnterTransactionMode(Transaction* transaction) {
1539 DCHECK(IsCompiler());
1540 DCHECK(transaction != nullptr);
1541 DCHECK(!IsActiveTransaction());
1542 preinitialization_transaction = transaction;
1543}
1544
1545void Runtime::ExitTransactionMode() {
1546 DCHECK(IsCompiler());
1547 DCHECK(IsActiveTransaction());
1548 preinitialization_transaction = nullptr;
1549}
1550
1551void Runtime::RecordWriteField32(mirror::Object* obj, MemberOffset field_offset,
1552 uint32_t value, bool is_volatile) const {
1553 DCHECK(IsCompiler());
1554 DCHECK(IsActiveTransaction());
1555 preinitialization_transaction->RecordWriteField32(obj, field_offset, value, is_volatile);
1556}
1557
1558void Runtime::RecordWriteField64(mirror::Object* obj, MemberOffset field_offset,
1559 uint64_t value, bool is_volatile) const {
1560 DCHECK(IsCompiler());
1561 DCHECK(IsActiveTransaction());
1562 preinitialization_transaction->RecordWriteField64(obj, field_offset, value, is_volatile);
1563}
1564
1565void Runtime::RecordWriteFieldReference(mirror::Object* obj, MemberOffset field_offset,
1566 mirror::Object* value, bool is_volatile) const {
1567 DCHECK(IsCompiler());
1568 DCHECK(IsActiveTransaction());
1569 preinitialization_transaction->RecordWriteFieldReference(obj, field_offset, value, is_volatile);
1570}
1571
1572void Runtime::RecordWriteArray(mirror::Array* array, size_t index, uint64_t value) const {
1573 DCHECK(IsCompiler());
1574 DCHECK(IsActiveTransaction());
1575 preinitialization_transaction->RecordWriteArray(array, index, value);
1576}
1577
1578void Runtime::RecordStrongStringInsertion(mirror::String* s, uint32_t hash_code) const {
1579 DCHECK(IsCompiler());
1580 DCHECK(IsActiveTransaction());
1581 preinitialization_transaction->RecordStrongStringInsertion(s, hash_code);
1582}
1583
1584void Runtime::RecordWeakStringInsertion(mirror::String* s, uint32_t hash_code) const {
1585 DCHECK(IsCompiler());
1586 DCHECK(IsActiveTransaction());
1587 preinitialization_transaction->RecordWeakStringInsertion(s, hash_code);
1588}
1589
1590void Runtime::RecordStrongStringRemoval(mirror::String* s, uint32_t hash_code) const {
1591 DCHECK(IsCompiler());
1592 DCHECK(IsActiveTransaction());
1593 preinitialization_transaction->RecordStrongStringRemoval(s, hash_code);
1594}
1595
1596void Runtime::RecordWeakStringRemoval(mirror::String* s, uint32_t hash_code) const {
1597 DCHECK(IsCompiler());
1598 DCHECK(IsActiveTransaction());
1599 preinitialization_transaction->RecordWeakStringRemoval(s, hash_code);
1600}
Carl Shapiro1fb86202011-06-27 17:43:13 -07001601} // namespace art