blob: 17afb4323a290cbc9455a50b90baa286aa58114f [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"
Dave Allison0aded082013-11-07 13:15:11 -080063#include "profiler.h"
Elliott Hughes3bb81562011-10-21 18:52:59 -070064#include "UniquePtr.h"
Ian Rogers776ac1f2012-04-13 23:36:36 -070065#include "verifier/method_verifier.h"
Elliott Hugheseac76672012-05-24 21:56:51 -070066#include "well_known_classes.h"
Carl Shapiro61e019d2011-07-14 16:53:09 -070067
Brian Carlstrom7934ac22013-07-26 10:54:15 -070068#include "JniConstants.h" // Last to avoid LOG redefinition in ics-mr1-plus-art.
Elliott Hughes90a33692011-08-30 13:27:07 -070069
Carl Shapiro1fb86202011-06-27 17:43:13 -070070namespace art {
71
Carl Shapiro2ed144c2011-07-26 16:52:08 -070072Runtime* Runtime::instance_ = NULL;
73
Elliott Hughesdcc24742011-09-07 14:02:44 -070074Runtime::Runtime()
Vladimir Marko2b5eaa22013-12-13 13:59:30 +000075 : compiler_callbacks_(nullptr),
Elliott Hughesd9c67be2012-02-02 19:54:06 -080076 is_zygote_(false),
Mathieu Chartier069387a2012-06-18 12:01:01 -070077 is_concurrent_gc_enabled_(true),
Anwar Ghuloum87183592013-08-14 12:12:19 -070078 is_explicit_gc_disabled_(false),
Ian Rogersef7d42f2014-01-06 12:55:46 -080079 compiler_filter_(kSpeed),
80 huge_method_threshold_(0),
81 large_method_threshold_(0),
82 small_method_threshold_(0),
83 tiny_method_threshold_(0),
84 num_dex_methods_threshold_(0),
85 sea_ir_mode_(false),
Elliott Hughes6cf23882012-06-15 15:42:07 -070086 default_stack_size_(0),
Ian Rogersef7d42f2014-01-06 12:55:46 -080087 heap_(nullptr),
Ian Rogersd9c4fc92013-10-01 19:45:43 -070088 max_spins_before_thin_lock_inflation_(Monitor::kDefaultMaxSpinsBeforeThinLockInflation),
Ian Rogersef7d42f2014-01-06 12:55:46 -080089 monitor_list_(nullptr),
90 monitor_pool_(nullptr),
91 thread_list_(nullptr),
92 intern_table_(nullptr),
93 class_linker_(nullptr),
94 signal_catcher_(nullptr),
95 java_vm_(nullptr),
96 pre_allocated_OutOfMemoryError_(nullptr),
97 resolution_method_(nullptr),
98 imt_conflict_method_(nullptr),
99 default_imt_(nullptr),
Mathieu Chartierc528dba2013-11-26 12:00:11 -0800100 method_verifiers_lock_("Method verifiers lock"),
Ian Rogers120f1c72012-09-28 17:17:10 -0700101 threads_being_born_(0),
Ian Rogersc604d732012-10-14 16:09:54 -0700102 shutdown_cond_(new ConditionVariable("Runtime shutdown", *Locks::runtime_shutdown_lock_)),
Elliott Hughes6b355752012-01-13 16:49:08 -0800103 shutting_down_(false),
Ian Rogers120f1c72012-09-28 17:17:10 -0700104 shutting_down_started_(false),
Elliott Hughesdcc24742011-09-07 14:02:44 -0700105 started_(false),
Mathieu Chartier7664f5c2012-06-08 18:15:32 -0700106 finished_starting_(false),
Ian Rogersef7d42f2014-01-06 12:55:46 -0800107 vfprintf_(nullptr),
108 exit_(nullptr),
109 abort_(nullptr),
jeffhao2692b572011-12-16 15:42:28 -0800110 stats_enabled_(false),
Ian Rogersef7d42f2014-01-06 12:55:46 -0800111 profile_(false),
112 profile_period_s_(0),
113 profile_duration_s_(0),
114 profile_interval_us_(0),
115 profile_backoff_coefficient_(0),
116 method_trace_(false),
Ian Rogers776ac1f2012-04-13 23:36:36 -0700117 method_trace_file_size_(0),
Ian Rogers62d6c772013-02-27 08:32:07 -0800118 instrumentation_(),
Ian Rogers365c1022012-06-22 15:05:28 -0700119 use_compile_time_class_path_(false),
Ian Rogersef7d42f2014-01-06 12:55:46 -0800120 main_thread_group_(nullptr),
121 system_thread_group_(nullptr),
122 system_class_loader_(nullptr),
123 dump_gc_performance_on_shutdown_(false) {
Ian Rogers4f0d07c2011-10-06 23:38:47 -0700124 for (int i = 0; i < Runtime::kLastCalleeSaveType; i++) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800125 callee_save_methods_[i] = nullptr;
Ian Rogers4f0d07c2011-10-06 23:38:47 -0700126 }
Elliott Hughesdcc24742011-09-07 14:02:44 -0700127}
128
Carl Shapiro61e019d2011-07-14 16:53:09 -0700129Runtime::~Runtime() {
Hiroshi Yamauchi2e899a92013-11-22 16:50:12 -0800130 if (dump_gc_performance_on_shutdown_) {
131 // This can't be called from the Heap destructor below because it
132 // could call RosAlloc::InspectAll() which needs the thread_list
133 // to be still alive.
134 heap_->DumpGcPerformanceInfo(LOG(INFO));
135 }
136
Ian Rogers120f1c72012-09-28 17:17:10 -0700137 Thread* self = Thread::Current();
138 {
139 MutexLock mu(self, *Locks::runtime_shutdown_lock_);
140 shutting_down_started_ = true;
141 while (threads_being_born_ > 0) {
Ian Rogersc604d732012-10-14 16:09:54 -0700142 shutdown_cond_->Wait(self);
Ian Rogers120f1c72012-09-28 17:17:10 -0700143 }
144 shutting_down_ = true;
145 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800146 Trace::Shutdown();
jeffhaob5e81852012-03-12 11:15:45 -0700147
Mathieu Chartiera6399032012-06-11 18:49:50 -0700148 // Make sure to let the GC complete if it is running.
Mathieu Chartier590fee92013-09-13 13:46:47 -0700149 heap_->WaitForGcToComplete(self);
Mathieu Chartier35883cc2012-11-13 14:08:12 -0800150 heap_->DeleteThreadPool();
Mathieu Chartiera6399032012-06-11 18:49:50 -0700151
Elliott Hughes5fe594f2011-09-08 12:33:17 -0700152 // Make sure our internal threads are dead before we start tearing down things they're using.
Elliott Hughese52e49b2012-04-02 16:05:44 -0700153 Dbg::StopJdwp();
Elliott Hughes5fe594f2011-09-08 12:33:17 -0700154 delete signal_catcher_;
155
Elliott Hughes038a8062011-09-18 14:12:41 -0700156 // Make sure all other non-daemon threads have terminated, and all daemon threads are suspended.
Elliott Hughes93e74e82011-09-13 11:07:03 -0700157 delete thread_list_;
Elliott Hughesc33a32b2011-10-11 18:18:07 -0700158 delete monitor_list_;
Ian Rogersef7d42f2014-01-06 12:55:46 -0800159 delete monitor_pool_;
Carl Shapiro61e019d2011-07-14 16:53:09 -0700160 delete class_linker_;
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800161 delete heap_;
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700162 delete intern_table_;
Elliott Hughesc5f7c912011-08-18 14:00:42 -0700163 delete java_vm_;
Elliott Hughesc1674ed2011-08-25 18:09:09 -0700164 Thread::Shutdown();
Elliott Hughes7c6169d2012-05-02 16:11:48 -0700165 QuasiAtomic::Shutdown();
Sebastien Hertz4d4adb12013-07-24 16:14:19 +0200166 verifier::MethodVerifier::Shutdown();
Carl Shapiro4acf4642011-07-26 18:54:13 -0700167 // TODO: acquire a static mutex on Runtime to avoid racing.
Ian Rogersef7d42f2014-01-06 12:55:46 -0800168 CHECK(instance_ == nullptr || instance_ == this);
169 instance_ = nullptr;
Carl Shapiro61e019d2011-07-14 16:53:09 -0700170}
171
Elliott Hughese0918552011-10-28 17:18:29 -0700172struct AbortState {
173 void Dump(std::ostream& os) {
Ian Rogersf08e4732013-04-09 09:45:49 -0700174 if (gAborting > 1) {
Elliott Hughescac6cc72011-11-03 20:31:21 -0700175 os << "Runtime aborting --- recursively, so no thread-specific detail!\n";
176 return;
177 }
Ian Rogersf08e4732013-04-09 09:45:49 -0700178 gAborting++;
Elliott Hughese0918552011-10-28 17:18:29 -0700179 os << "Runtime aborting...\n";
Elliott Hughes6c7d2442012-02-01 18:40:47 -0800180 if (Runtime::Current() == NULL) {
181 os << "(Runtime does not yet exist!)\n";
182 return;
183 }
Elliott Hughese0918552011-10-28 17:18:29 -0700184 Thread* self = Thread::Current();
185 if (self == NULL) {
186 os << "(Aborting thread was not attached to runtime!)\n";
187 } else {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700188 // TODO: we're aborting and the ScopedObjectAccess may attempt to acquire the mutator_lock_
189 // which may block indefinitely if there's a misbehaving thread holding it exclusively.
190 // The code below should be made robust to this.
191 ScopedObjectAccess soa(self);
Ian Rogers2f7f9b62012-10-10 18:24:05 -0700192 os << "Aborting thread:\n";
Elliott Hughes899e7892012-01-24 14:57:32 -0800193 self->Dump(os);
194 if (self->IsExceptionPending()) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800195 ThrowLocation throw_location;
196 mirror::Throwable* exception = self->GetException(&throw_location);
197 os << "Pending exception " << PrettyTypeOf(exception)
Ian Rogersbc939662013-08-15 10:26:54 -0700198 << " thrown by '" << throw_location.Dump() << "'\n"
Ian Rogers62d6c772013-02-27 08:32:07 -0800199 << exception->Dump();
Elliott Hughes899e7892012-01-24 14:57:32 -0800200 }
Elliott Hughese0918552011-10-28 17:18:29 -0700201 }
Ian Rogers2f7f9b62012-10-10 18:24:05 -0700202 DumpAllThreads(os, self);
203 }
204
205 void DumpAllThreads(std::ostream& os, Thread* self) NO_THREAD_SAFETY_ANALYSIS {
206 bool tll_already_held = Locks::thread_list_lock_->IsExclusiveHeld(self);
207 bool ml_already_held = Locks::mutator_lock_->IsSharedHeld(self);
Ian Rogersfbd22912012-10-12 14:21:10 -0700208 if (!tll_already_held || !ml_already_held) {
209 os << "Dumping all threads without appropriate locks held:"
210 << (!tll_already_held ? " thread list lock" : "")
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700211 << (!ml_already_held ? " mutator lock" : "")
212 << "\n";
Ian Rogers2f7f9b62012-10-10 18:24:05 -0700213 }
Ian Rogersfbd22912012-10-12 14:21:10 -0700214 os << "All threads:\n";
215 Runtime::Current()->GetThreadList()->DumpLocked(os);
Elliott Hughese0918552011-10-28 17:18:29 -0700216 }
217};
218
Elliott Hughes8593fdb2012-04-21 20:53:44 -0700219void Runtime::Abort() {
Ian Rogersf08e4732013-04-09 09:45:49 -0700220 gAborting++; // set before taking any locks
Brian Carlstrom81b88712012-11-05 19:21:30 -0800221
Elliott Hughes131aef82012-01-27 11:53:35 -0800222 // Ensure that we don't have multiple threads trying to abort at once,
223 // which would result in significantly worse diagnostics.
Ian Rogers50b35e22012-10-04 10:09:15 -0700224 MutexLock mu(Thread::Current(), *Locks::abort_lock_);
Elliott Hughes131aef82012-01-27 11:53:35 -0800225
Elliott Hughesffe67362011-07-17 12:09:27 -0700226 // Get any pending output out of the way.
227 fflush(NULL);
228
229 // Many people have difficulty distinguish aborts from crashes,
230 // so be explicit.
Elliott Hughese0918552011-10-28 17:18:29 -0700231 AbortState state;
Elliott Hughes9ee5f9c2012-02-03 18:33:16 -0800232 LOG(INTERNAL_FATAL) << Dumpable<AbortState>(state);
Elliott Hughesffe67362011-07-17 12:09:27 -0700233
Elliott Hughes8593fdb2012-04-21 20:53:44 -0700234 // Call the abort hook if we have one.
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700235 if (Runtime::Current() != NULL && Runtime::Current()->abort_ != NULL) {
Elliott Hughes6c1c69e2012-04-23 16:12:51 -0700236 LOG(INTERNAL_FATAL) << "Calling abort hook...";
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700237 Runtime::Current()->abort_();
238 // notreached
Elliott Hughes6c1c69e2012-04-23 16:12:51 -0700239 LOG(INTERNAL_FATAL) << "Unexpectedly returned from abort hook!";
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700240 }
241
Elliott Hughesdd623db2013-06-11 11:20:23 -0700242#if defined(__GLIBC__)
Elliott Hughesd06a6c72012-05-30 17:59:06 -0700243 // TODO: we ought to be able to use pthread_kill(3) here (or abort(3),
244 // which POSIX defines in terms of raise(3), which POSIX defines in terms
245 // of pthread_kill(3)). On Linux, though, libcorkscrew can't unwind through
246 // libpthread, which means the stacks we dump would be useless. Calling
247 // tgkill(2) directly avoids that.
248 syscall(__NR_tgkill, getpid(), GetTid(), SIGABRT);
Elliott Hughesdd623db2013-06-11 11:20:23 -0700249 // TODO: LLVM installs it's own SIGABRT handler so exit to be safe... Can we disable that in LLVM?
250 // 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 -0800251 exit(1);
Elliott Hughesdd623db2013-06-11 11:20:23 -0700252#else
253 abort();
Elliott Hughesd06a6c72012-05-30 17:59:06 -0700254#endif
Elliott Hughesffe67362011-07-17 12:09:27 -0700255 // notreached
256}
257
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700258bool Runtime::PreZygoteFork() {
259 heap_->PreZygoteFork();
260 return true;
261}
262
Elliott Hughesbf86d042011-08-31 17:53:14 -0700263void Runtime::CallExitHook(jint status) {
264 if (exit_ != NULL) {
Elliott Hughes34e06962012-04-09 13:55:55 -0700265 ScopedThreadStateChange tsc(Thread::Current(), kNative);
Elliott Hughesbf86d042011-08-31 17:53:14 -0700266 exit_(status);
267 LOG(WARNING) << "Exit hook returned instead of exiting!";
268 }
269}
270
Brian Carlstrom8a436592011-08-15 21:27:23 -0700271// Parse a string of the form /[0-9]+[kKmMgG]?/, which is used to specify
272// memory sizes. [kK] indicates kilobytes, [mM] megabytes, and
273// [gG] gigabytes.
274//
275// "s" should point just past the "-Xm?" part of the string.
Brian Carlstrom8a436592011-08-15 21:27:23 -0700276// "div" specifies a divisor, e.g. 1024 if the value must be a multiple
277// of 1024.
278//
279// The spec says the -Xmx and -Xms options must be multiples of 1024. It
280// doesn't say anything about -Xss.
281//
282// Returns 0 (a useless size) if "s" is malformed or specifies a low or
283// non-evenly-divisible value.
284//
Elliott Hughesc1f143d2011-12-01 17:31:10 -0800285size_t ParseMemoryOption(const char* s, size_t div) {
Brian Carlstrom8a436592011-08-15 21:27:23 -0700286 // strtoul accepts a leading [+-], which we don't want,
287 // so make sure our string starts with a decimal digit.
288 if (isdigit(*s)) {
Elliott Hughes398f64b2012-03-26 18:05:48 -0700289 char* s2;
290 size_t val = strtoul(s, &s2, 10);
Brian Carlstrom8a436592011-08-15 21:27:23 -0700291 if (s2 != s) {
292 // s2 should be pointing just after the number.
293 // If this is the end of the string, the user
294 // has specified a number of bytes. Otherwise,
295 // there should be exactly one more character
296 // that specifies a multiplier.
297 if (*s2 != '\0') {
Brian Carlstromf734cf52011-08-17 16:28:14 -0700298 // The remainder of the string is either a single multiplier
299 // character, or nothing to indicate that the value is in
300 // bytes.
301 char c = *s2++;
302 if (*s2 == '\0') {
303 size_t mul;
304 if (c == '\0') {
305 mul = 1;
306 } else if (c == 'k' || c == 'K') {
307 mul = KB;
308 } else if (c == 'm' || c == 'M') {
309 mul = MB;
310 } else if (c == 'g' || c == 'G') {
311 mul = GB;
Brian Carlstrom8a436592011-08-15 21:27:23 -0700312 } else {
Brian Carlstromf734cf52011-08-17 16:28:14 -0700313 // Unknown multiplier character.
Brian Carlstrom8a436592011-08-15 21:27:23 -0700314 return 0;
315 }
Brian Carlstromf734cf52011-08-17 16:28:14 -0700316
317 if (val <= std::numeric_limits<size_t>::max() / mul) {
318 val *= mul;
319 } else {
320 // Clamp to a multiple of 1024.
321 val = std::numeric_limits<size_t>::max() & ~(1024-1);
322 }
323 } else {
324 // There's more than one character after the numeric part.
325 return 0;
326 }
Brian Carlstrom8a436592011-08-15 21:27:23 -0700327 }
328 // The man page says that a -Xm value must be a multiple of 1024.
329 if (val % div == 0) {
330 return val;
331 }
Carl Shapirofc322c72011-07-27 00:20:01 -0700332 }
333 }
Brian Carlstrom8a436592011-08-15 21:27:23 -0700334 return 0;
Carl Shapirofc322c72011-07-27 00:20:01 -0700335}
336
lzang16c2270b2014-01-29 14:21:25 +0800337static const std::string StringAfterChar(const std::string& s, char c) {
338 std::string::size_type colon = s.find(c);
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800339 if (colon == std::string::npos) {
lzang16c2270b2014-01-29 14:21:25 +0800340 LOG(FATAL) << "Missing char " << c << " in string " << s;
341 }
342 // Add one to remove the char we were trimming until.
343 return s.substr(colon + 1);
344}
345
346static size_t ParseIntegerOrDie(const std::string& s, char after_char) {
347 std::string::size_type colon = s.find(after_char);
348 if (colon == std::string::npos) {
349 LOG(FATAL) << "Missing char " << after_char << " in string " << s;
Elliott Hughesbb1e8f02011-10-18 14:14:25 -0700350 }
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800351 const char* begin = &s[colon + 1];
Elliott Hughesbb1e8f02011-10-18 14:14:25 -0700352 char* end;
353 size_t result = strtoul(begin, &end, 10);
354 if (begin == end || *end != '\0') {
355 LOG(FATAL) << "Failed to parse integer in: " << s;
356 }
357 return result;
358}
359
lzang16c2270b2014-01-29 14:21:25 +0800360
361static double ParseDoubleOrDie(const std::string& option, char after_char, double min, double max,
362 bool ignore_unrecognized, double defval) {
363 std::istringstream iss(StringAfterChar(option, after_char));
Dave Allison0aded082013-11-07 13:15:11 -0800364 double value;
365 iss >> value;
366 // Ensure that we have a value, there was no cruft after it and it satisfies a sensible range.
367 const bool sane_val = iss.eof() && (value >= min) && (value <= max);
368 if (!sane_val) {
369 if (ignore_unrecognized) {
370 return defval;
371 }
372 LOG(FATAL)<< "Invalid option '" << option << "'";
373 return defval;
374 }
375 return value;
376}
377
Mathieu Chartier6aa3df92013-09-17 15:17:28 -0700378void Runtime::SweepSystemWeaks(RootVisitor* visitor, void* arg) {
379 GetInternTable()->SweepInternTableWeaks(visitor, arg);
380 GetMonitorList()->SweepMonitorList(visitor, arg);
381 GetJavaVM()->SweepJniWeakGlobals(visitor, arg);
382}
383
Mathieu Chartiere6da9af2013-12-16 11:54:42 -0800384static gc::CollectorType ParseCollectorType(const std::string& option) {
Mathieu Chartier938a03b2014-01-16 15:10:31 -0800385 if (option == "MS" || option == "nonconcurrent") {
386 return gc::kCollectorTypeMS;
387 } else if (option == "CMS" || option == "concurrent") {
388 return gc::kCollectorTypeCMS;
389 } else if (option == "SS") {
390 return gc::kCollectorTypeSS;
391 } else if (option == "GSS") {
392 return gc::kCollectorTypeGSS;
393 } else {
394 return gc::kCollectorTypeNone;
Mathieu Chartiere6da9af2013-12-16 11:54:42 -0800395 }
Mathieu Chartiere6da9af2013-12-16 11:54:42 -0800396}
397
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700398Runtime::ParsedOptions* Runtime::ParsedOptions::Create(const Options& options, bool ignore_unrecognized) {
Elliott Hughes90a33692011-08-30 13:27:07 -0700399 UniquePtr<ParsedOptions> parsed(new ParsedOptions());
Brian Carlstroma004aa92012-02-08 18:05:09 -0800400 const char* boot_class_path_string = getenv("BOOTCLASSPATH");
401 if (boot_class_path_string != NULL) {
402 parsed->boot_class_path_string_ = boot_class_path_string;
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700403 }
Brian Carlstroma004aa92012-02-08 18:05:09 -0800404 const char* class_path_string = getenv("CLASSPATH");
405 if (class_path_string != NULL) {
406 parsed->class_path_string_ = class_path_string;
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700407 }
Elliott Hughes67d92002012-03-26 15:08:51 -0700408 // -Xcheck:jni is off by default for regular builds but on by default in debug builds.
409 parsed->check_jni_ = kIsDebugBuild;
Elliott Hughes85d15452011-09-16 17:33:01 -0700410
Ian Rogers1d54e732013-05-02 21:10:01 -0700411 parsed->heap_initial_size_ = gc::Heap::kDefaultInitialSize;
412 parsed->heap_maximum_size_ = gc::Heap::kDefaultMaximumSize;
413 parsed->heap_min_free_ = gc::Heap::kDefaultMinFree;
414 parsed->heap_max_free_ = gc::Heap::kDefaultMaxFree;
415 parsed->heap_target_utilization_ = gc::Heap::kDefaultTargetUtilization;
Mathieu Chartier692fafd2013-11-29 17:24:40 -0800416 parsed->heap_growth_limit_ = 0; // 0 means no growth limit .
Mathieu Chartier63a54342013-07-23 13:17:59 -0700417 // Default to number of processors minus one since the main GC thread also does work.
Mathieu Chartier2775ee42013-08-20 17:43:47 -0700418 parsed->parallel_gc_threads_ = sysconf(_SC_NPROCESSORS_CONF) - 1;
419 // Only the main GC thread, no workers.
420 parsed->conc_gc_threads_ = 0;
Mathieu Chartier0de9f732013-11-22 17:58:48 -0800421 // Default is CMS which is Sticky + Partial + Full CMS GC.
Mathieu Chartier0f875ef2014-01-14 15:49:54 -0800422 parsed->collector_type_ = gc::kCollectorTypeCMS;
Mathieu Chartiere6da9af2013-12-16 11:54:42 -0800423 // If background_collector_type_ is kCollectorTypeNone, it defaults to the collector_type_ after
424 // parsing options.
425 parsed->background_collector_type_ = gc::kCollectorTypeNone;
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700426 parsed->stack_size_ = 0; // 0 means default.
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700427 parsed->max_spins_before_thin_lock_inflation_ = Monitor::kDefaultMaxSpinsBeforeThinLockInflation;
Mathieu Chartiere0a53e92013-08-05 10:17:40 -0700428 parsed->low_memory_mode_ = false;
Mathieu Chartier692fafd2013-11-29 17:24:40 -0800429 parsed->use_tlab_ = false;
Mathieu Chartier938a03b2014-01-16 15:10:31 -0800430 parsed->verify_pre_gc_heap_ = false;
431 parsed->verify_post_gc_heap_ = kIsDebugBuild;
Hiroshi Yamauchia4adbfd2014-02-04 18:12:17 -0800432 parsed->verify_pre_gc_rosalloc_ = kIsDebugBuild;
433 parsed->verify_post_gc_rosalloc_ = false;
Brian Carlstromf734cf52011-08-17 16:28:14 -0700434
Vladimir Marko2b5eaa22013-12-13 13:59:30 +0000435 parsed->compiler_callbacks_ = nullptr;
Elliott Hughes9ca7a1f2011-10-11 14:29:52 -0700436 parsed->is_zygote_ = false;
Ian Rogers50ffee22012-11-20 11:47:44 -0800437 parsed->interpreter_only_ = false;
Anwar Ghuloum87183592013-08-14 12:12:19 -0700438 parsed->is_explicit_gc_disabled_ = false;
Elliott Hughes9ca7a1f2011-10-11 14:29:52 -0700439
Mathieu Chartier2775ee42013-08-20 17:43:47 -0700440 parsed->long_pause_log_threshold_ = gc::Heap::kDefaultLongPauseLogThreshold;
441 parsed->long_gc_log_threshold_ = gc::Heap::kDefaultLongGCLogThreshold;
Mathieu Chartierff3b24a2013-11-22 16:04:25 -0800442 parsed->dump_gc_performance_on_shutdown_ = false;
Mathieu Chartier2775ee42013-08-20 17:43:47 -0700443 parsed->ignore_max_footprint_ = false;
444
Elliott Hughesfc861622011-10-17 17:57:47 -0700445 parsed->lock_profiling_threshold_ = 0;
446 parsed->hook_is_sensitive_thread_ = NULL;
447
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700448 parsed->hook_vfprintf_ = vfprintf;
449 parsed->hook_exit_ = exit;
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700450 parsed->hook_abort_ = NULL; // We don't call abort(3) by default; see Runtime::Abort.
Brian Carlstrom8a436592011-08-15 21:27:23 -0700451
buzbeea024a062013-07-31 10:47:37 -0700452 parsed->compiler_filter_ = Runtime::kDefaultCompilerFilter;
453 parsed->huge_method_threshold_ = Runtime::kDefaultHugeMethodThreshold;
454 parsed->large_method_threshold_ = Runtime::kDefaultLargeMethodThreshold;
455 parsed->small_method_threshold_ = Runtime::kDefaultSmallMethodThreshold;
456 parsed->tiny_method_threshold_ = Runtime::kDefaultTinyMethodThreshold;
457 parsed->num_dex_methods_threshold_ = Runtime::kDefaultNumDexMethodsThreshold;
Anwar Ghuloum8447d842013-04-30 17:27:40 -0700458
Dragos Sbirlea7467ee02013-06-21 09:20:34 -0700459 parsed->sea_ir_mode_ = false;
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700460// gLogVerbosity.class_linker = true; // TODO: don't check this in!
461// gLogVerbosity.compiler = true; // TODO: don't check this in!
Anwar Ghuloum75a43f12013-08-13 17:22:14 -0700462// gLogVerbosity.verifier = true; // TODO: don't check this in!
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700463// gLogVerbosity.heap = true; // TODO: don't check this in!
464// gLogVerbosity.gc = true; // TODO: don't check this in!
465// gLogVerbosity.jdwp = true; // TODO: don't check this in!
466// gLogVerbosity.jni = true; // TODO: don't check this in!
467// gLogVerbosity.monitor = true; // TODO: don't check this in!
468// gLogVerbosity.startup = true; // TODO: don't check this in!
469// gLogVerbosity.third_party_jni = true; // TODO: don't check this in!
470// gLogVerbosity.threads = true; // TODO: don't check this in!
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800471
jeffhaob5e81852012-03-12 11:15:45 -0700472 parsed->method_trace_ = false;
473 parsed->method_trace_file_ = "/data/method-trace-file.bin";
474 parsed->method_trace_file_size_ = 10 * MB;
475
Dave Allison0aded082013-11-07 13:15:11 -0800476 parsed->profile_ = false;
477 parsed->profile_period_s_ = 10; // Seconds.
478 parsed->profile_duration_s_ = 20; // Seconds.
479 parsed->profile_interval_us_ = 500; // Microseconds.
480 parsed->profile_backoff_coefficient_ = 2.0;
481
Brian Carlstrom8a436592011-08-15 21:27:23 -0700482 for (size_t i = 0; i < options.size(); ++i) {
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800483 const std::string option(options[i].first);
Brian Carlstrom0796af02011-10-12 14:31:45 -0700484 if (true && options[0].first == "-Xzygote") {
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700485 LOG(INFO) << "option[" << i << "]=" << option;
486 }
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800487 if (StartsWith(option, "-Xbootclasspath:")) {
Brian Carlstroma004aa92012-02-08 18:05:09 -0800488 parsed->boot_class_path_string_ = option.substr(strlen("-Xbootclasspath:")).data();
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700489 } else if (option == "-classpath" || option == "-cp") {
490 // TODO: support -Djava.class.path
491 i++;
492 if (i == options.size()) {
493 // TODO: usage
494 LOG(FATAL) << "Missing required class path value for " << option;
495 return NULL;
496 }
Brian Carlstroma004aa92012-02-08 18:05:09 -0800497 const StringPiece& value = options[i].first;
498 parsed->class_path_string_ = value.data();
499 } else if (option == "bootclasspath") {
500 parsed->boot_class_path_
501 = reinterpret_cast<const std::vector<const DexFile*>*>(options[i].second);
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800502 } else if (StartsWith(option, "-Ximage:")) {
lzang16c2270b2014-01-29 14:21:25 +0800503 parsed->image_ = StringAfterChar(option, ':');
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800504 } else if (StartsWith(option, "-Xcheck:jni")) {
Elliott Hughes515a5bc2011-08-17 11:08:34 -0700505 parsed->check_jni_ = true;
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800506 } else if (StartsWith(option, "-Xrunjdwp:") || StartsWith(option, "-agentlib:jdwp=")) {
507 std::string tail(option.substr(option[1] == 'X' ? 10 : 15));
Elliott Hughes3bb81562011-10-21 18:52:59 -0700508 if (tail == "help" || !Dbg::ParseJdwpOptions(tail)) {
509 LOG(FATAL) << "Example: -Xrunjdwp:transport=dt_socket,address=8000,server=y\n"
510 << "Example: -Xrunjdwp:transport=dt_socket,address=localhost:6500,server=n";
511 return NULL;
512 }
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800513 } else if (StartsWith(option, "-Xms")) {
514 size_t size = ParseMemoryOption(option.substr(strlen("-Xms")).c_str(), 1024);
Brian Carlstromf734cf52011-08-17 16:28:14 -0700515 if (size == 0) {
516 if (ignore_unrecognized) {
517 continue;
518 }
Brian Carlstrom4a289ed2011-08-16 17:17:49 -0700519 // TODO: usage
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700520 LOG(FATAL) << "Failed to parse " << option;
Brian Carlstromf734cf52011-08-17 16:28:14 -0700521 return NULL;
522 }
523 parsed->heap_initial_size_ = size;
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800524 } else if (StartsWith(option, "-Xmx")) {
525 size_t size = ParseMemoryOption(option.substr(strlen("-Xmx")).c_str(), 1024);
Brian Carlstromf734cf52011-08-17 16:28:14 -0700526 if (size == 0) {
527 if (ignore_unrecognized) {
528 continue;
529 }
Brian Carlstrom4a289ed2011-08-16 17:17:49 -0700530 // TODO: usage
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700531 LOG(FATAL) << "Failed to parse " << option;
Brian Carlstromf734cf52011-08-17 16:28:14 -0700532 return NULL;
533 }
534 parsed->heap_maximum_size_ = size;
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800535 } else if (StartsWith(option, "-XX:HeapGrowthLimit=")) {
536 size_t size = ParseMemoryOption(option.substr(strlen("-XX:HeapGrowthLimit=")).c_str(), 1024);
jeffhaoc1160702011-10-27 15:48:45 -0700537 if (size == 0) {
538 if (ignore_unrecognized) {
539 continue;
540 }
541 // TODO: usage
542 LOG(FATAL) << "Failed to parse " << option;
543 return NULL;
544 }
545 parsed->heap_growth_limit_ = size;
Mathieu Chartier0051be62012-10-12 17:47:11 -0700546 } else if (StartsWith(option, "-XX:HeapMinFree=")) {
547 size_t size = ParseMemoryOption(option.substr(strlen("-XX:HeapMinFree=")).c_str(), 1024);
548 if (size == 0) {
549 if (ignore_unrecognized) {
550 continue;
551 }
552 // TODO: usage
553 LOG(FATAL) << "Failed to parse " << option;
554 return NULL;
555 }
556 parsed->heap_min_free_ = size;
557 } else if (StartsWith(option, "-XX:HeapMaxFree=")) {
558 size_t size = ParseMemoryOption(option.substr(strlen("-XX:HeapMaxFree=")).c_str(), 1024);
559 if (size == 0) {
560 if (ignore_unrecognized) {
561 continue;
562 }
563 // TODO: usage
564 LOG(FATAL) << "Failed to parse " << option;
565 return NULL;
566 }
567 parsed->heap_max_free_ = size;
568 } else if (StartsWith(option, "-XX:HeapTargetUtilization=")) {
lzang16c2270b2014-01-29 14:21:25 +0800569 parsed->heap_target_utilization_ = ParseDoubleOrDie(
570 option, '=', 0.1, 0.9, ignore_unrecognized, parsed->heap_target_utilization_);
Mathieu Chartier2775ee42013-08-20 17:43:47 -0700571 } else if (StartsWith(option, "-XX:ParallelGCThreads=")) {
lzang16c2270b2014-01-29 14:21:25 +0800572 parsed->parallel_gc_threads_ = ParseIntegerOrDie(option, '=');
Mathieu Chartier2775ee42013-08-20 17:43:47 -0700573 } else if (StartsWith(option, "-XX:ConcGCThreads=")) {
lzang16c2270b2014-01-29 14:21:25 +0800574 parsed->conc_gc_threads_ = ParseIntegerOrDie(option, '=');
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800575 } else if (StartsWith(option, "-Xss")) {
576 size_t size = ParseMemoryOption(option.substr(strlen("-Xss")).c_str(), 1);
Brian Carlstromf734cf52011-08-17 16:28:14 -0700577 if (size == 0) {
578 if (ignore_unrecognized) {
579 continue;
580 }
Brian Carlstrom4a289ed2011-08-16 17:17:49 -0700581 // TODO: usage
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700582 LOG(FATAL) << "Failed to parse " << option;
Brian Carlstromf734cf52011-08-17 16:28:14 -0700583 return NULL;
584 }
585 parsed->stack_size_ = size;
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700586 } else if (StartsWith(option, "-XX:MaxSpinsBeforeThinLockInflation=")) {
lzang16c2270b2014-01-29 14:21:25 +0800587 parsed->max_spins_before_thin_lock_inflation_ = ParseIntegerOrDie(option, '=');
588 } else if (StartsWith(option, "-XX:LongPauseLogThreshold=")) {
589 parsed->long_pause_log_threshold_ = MsToNs(ParseIntegerOrDie(option, '='));
590 } else if (StartsWith(option, "-XX:LongGCLogThreshold=")) {
591 parsed->long_gc_log_threshold_ = MsToNs(ParseIntegerOrDie(option, '='));
Mathieu Chartierff3b24a2013-11-22 16:04:25 -0800592 } else if (option == "-XX:DumpGCPerformanceOnShutdown") {
593 parsed->dump_gc_performance_on_shutdown_ = true;
Mathieu Chartier2775ee42013-08-20 17:43:47 -0700594 } else if (option == "-XX:IgnoreMaxFootprint") {
595 parsed->ignore_max_footprint_ = true;
Mathieu Chartiere0a53e92013-08-05 10:17:40 -0700596 } else if (option == "-XX:LowMemoryMode") {
597 parsed->low_memory_mode_ = true;
Mathieu Chartier692fafd2013-11-29 17:24:40 -0800598 } else if (option == "-XX:UseTLAB") {
599 parsed->use_tlab_ = true;
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800600 } else if (StartsWith(option, "-D")) {
601 parsed->properties_.push_back(option.substr(strlen("-D")));
602 } else if (StartsWith(option, "-Xjnitrace:")) {
603 parsed->jni_trace_ = option.substr(strlen("-Xjnitrace:"));
Vladimir Marko2b5eaa22013-12-13 13:59:30 +0000604 } else if (option == "compilercallbacks") {
605 parsed->compiler_callbacks_ =
606 reinterpret_cast<CompilerCallbacks*>(const_cast<void*>(options[i].second));
Elliott Hughes9ca7a1f2011-10-11 14:29:52 -0700607 } else if (option == "-Xzygote") {
608 parsed->is_zygote_ = true;
Ian Rogers50ffee22012-11-20 11:47:44 -0800609 } else if (option == "-Xint") {
610 parsed->interpreter_only_ = true;
Mathieu Chartier069387a2012-06-18 12:01:01 -0700611 } else if (StartsWith(option, "-Xgc:")) {
Mathieu Chartier938a03b2014-01-16 15:10:31 -0800612 std::vector<std::string> gc_options;
613 Split(option.substr(strlen("-Xgc:")), ',', gc_options);
614 for (const std::string& gc_option : gc_options) {
615 gc::CollectorType collector_type = ParseCollectorType(gc_option);
616 if (collector_type != gc::kCollectorTypeNone) {
Hiroshi Yamauchibe1ca552014-01-15 11:46:48 -0800617 parsed->collector_type_ = collector_type;
Mathieu Chartier938a03b2014-01-16 15:10:31 -0800618 } else if (gc_option == "preverify") {
619 parsed->verify_pre_gc_heap_ = true;
Hiroshi Yamauchia4adbfd2014-02-04 18:12:17 -0800620 } else if (gc_option == "nopreverify") {
Mathieu Chartier938a03b2014-01-16 15:10:31 -0800621 parsed->verify_pre_gc_heap_ = false;
622 } else if (gc_option == "postverify") {
623 parsed->verify_post_gc_heap_ = true;
624 } else if (gc_option == "nopostverify") {
625 parsed->verify_post_gc_heap_ = false;
Hiroshi Yamauchia4adbfd2014-02-04 18:12:17 -0800626 } else if (gc_option == "preverify_rosalloc") {
627 parsed->verify_pre_gc_rosalloc_ = true;
628 } else if (gc_option == "nopreverify_rosalloc") {
629 parsed->verify_pre_gc_rosalloc_ = false;
630 } else if (gc_option == "postverify_rosalloc") {
631 parsed->verify_post_gc_rosalloc_ = true;
632 } else if (gc_option == "nopostverify_rosalloc") {
633 parsed->verify_post_gc_rosalloc_ = false;
Mathieu Chartier938a03b2014-01-16 15:10:31 -0800634 } else {
635 LOG(WARNING) << "Ignoring unknown -Xgc option: " << gc_option;
636 }
Mathieu Chartiere6da9af2013-12-16 11:54:42 -0800637 }
638 } else if (StartsWith(option, "-XX:BackgroundGC=")) {
lzang16c2270b2014-01-29 14:21:25 +0800639 const std::string substring = StringAfterChar(option, '=');
Mathieu Chartier938a03b2014-01-16 15:10:31 -0800640 gc::CollectorType collector_type = ParseCollectorType(substring);
Mathieu Chartiere6da9af2013-12-16 11:54:42 -0800641 if (collector_type != gc::kCollectorTypeNone) {
642 parsed->background_collector_type_ = collector_type;
Mathieu Chartier938a03b2014-01-16 15:10:31 -0800643 } else {
644 LOG(WARNING) << "Ignoring unknown -XX:BackgroundGC option: " << substring;
Mathieu Chartier069387a2012-06-18 12:01:01 -0700645 }
Anwar Ghuloum87183592013-08-14 12:12:19 -0700646 } else if (option == "-XX:+DisableExplicitGC") {
647 parsed->is_explicit_gc_disabled_ = true;
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800648 } else if (StartsWith(option, "-verbose:")) {
Elliott Hughes0af55432011-08-17 18:37:28 -0700649 std::vector<std::string> verbose_options;
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800650 Split(option.substr(strlen("-verbose:")), ',', verbose_options);
Elliott Hughes0af55432011-08-17 18:37:28 -0700651 for (size_t i = 0; i < verbose_options.size(); ++i) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800652 if (verbose_options[i] == "class") {
653 gLogVerbosity.class_linker = true;
Anwar Ghuloum75a43f12013-08-13 17:22:14 -0700654 } else if (verbose_options[i] == "verifier") {
655 gLogVerbosity.verifier = true;
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800656 } else if (verbose_options[i] == "compiler") {
657 gLogVerbosity.compiler = true;
658 } else if (verbose_options[i] == "heap") {
659 gLogVerbosity.heap = true;
660 } else if (verbose_options[i] == "gc") {
661 gLogVerbosity.gc = true;
662 } else if (verbose_options[i] == "jdwp") {
663 gLogVerbosity.jdwp = true;
664 } else if (verbose_options[i] == "jni") {
665 gLogVerbosity.jni = true;
666 } else if (verbose_options[i] == "monitor") {
667 gLogVerbosity.monitor = true;
668 } else if (verbose_options[i] == "startup") {
669 gLogVerbosity.startup = true;
670 } else if (verbose_options[i] == "third-party-jni") {
671 gLogVerbosity.third_party_jni = true;
672 } else if (verbose_options[i] == "threads") {
673 gLogVerbosity.threads = true;
674 } else {
675 LOG(WARNING) << "Ignoring unknown -verbose option: " << verbose_options[i];
676 }
Elliott Hughes0af55432011-08-17 18:37:28 -0700677 }
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800678 } else if (StartsWith(option, "-Xjnigreflimit:")) {
Elliott Hughes2010a602013-07-02 14:17:23 -0700679 // Silently ignored for backwards compatibility.
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800680 } else if (StartsWith(option, "-Xlockprofthreshold:")) {
lzang16c2270b2014-01-29 14:21:25 +0800681 parsed->lock_profiling_threshold_ = ParseIntegerOrDie(option, ':');
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800682 } else if (StartsWith(option, "-Xstacktracefile:")) {
lzang16c2270b2014-01-29 14:21:25 +0800683 parsed->stack_trace_file_ = StringAfterChar(option, ':');
Elliott Hughesfc861622011-10-17 17:57:47 -0700684 } else if (option == "sensitiveThread") {
Ian Rogers1b09b092012-08-20 15:35:52 -0700685 parsed->hook_is_sensitive_thread_ = reinterpret_cast<bool (*)()>(const_cast<void*>(options[i].second));
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700686 } else if (option == "vfprintf") {
Ian Rogers1b09b092012-08-20 15:35:52 -0700687 parsed->hook_vfprintf_ =
688 reinterpret_cast<int (*)(FILE *, const char*, va_list)>(const_cast<void*>(options[i].second));
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700689 } else if (option == "exit") {
Ian Rogers1b09b092012-08-20 15:35:52 -0700690 parsed->hook_exit_ = reinterpret_cast<void(*)(jint)>(const_cast<void*>(options[i].second));
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700691 } else if (option == "abort") {
Ian Rogers1b09b092012-08-20 15:35:52 -0700692 parsed->hook_abort_ = reinterpret_cast<void(*)()>(const_cast<void*>(options[i].second));
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700693 } else if (option == "host-prefix") {
694 parsed->host_prefix_ = reinterpret_cast<const char*>(options[i].second);
Elliott Hughesb3e66df2012-01-12 14:49:18 -0800695 } else if (option == "-Xgenregmap" || option == "-Xgc:precise") {
696 // We silently ignore these for backwards compatibility.
jeffhaob5e81852012-03-12 11:15:45 -0700697 } else if (option == "-Xmethod-trace") {
698 parsed->method_trace_ = true;
699 } else if (StartsWith(option, "-Xmethod-trace-file:")) {
700 parsed->method_trace_file_ = option.substr(strlen("-Xmethod-trace-file:"));
701 } else if (StartsWith(option, "-Xmethod-trace-file-size:")) {
lzang16c2270b2014-01-29 14:21:25 +0800702 parsed->method_trace_file_size_ = ParseIntegerOrDie(option, ':');
Elliott Hughese119a362012-05-22 17:37:06 -0700703 } else if (option == "-Xprofile:threadcpuclock") {
704 Trace::SetDefaultClockSource(kProfilerClockSourceThreadCpu);
705 } else if (option == "-Xprofile:wallclock") {
706 Trace::SetDefaultClockSource(kProfilerClockSourceWall);
707 } else if (option == "-Xprofile:dualclock") {
708 Trace::SetDefaultClockSource(kProfilerClockSourceDual);
Dave Allison0aded082013-11-07 13:15:11 -0800709 } else if (StartsWith(option, "-Xprofile:")) {
lzang16c2270b2014-01-29 14:21:25 +0800710 parsed->profile_output_filename_ = StringAfterChar(option, ';');
Dave Allison0aded082013-11-07 13:15:11 -0800711 parsed->profile_ = true;
712 } else if (StartsWith(option, "-Xprofile-period:")) {
lzang16c2270b2014-01-29 14:21:25 +0800713 parsed->profile_period_s_ = ParseIntegerOrDie(option, ':');
Dave Allison0aded082013-11-07 13:15:11 -0800714 } else if (StartsWith(option, "-Xprofile-duration:")) {
lzang16c2270b2014-01-29 14:21:25 +0800715 parsed->profile_duration_s_ = ParseIntegerOrDie(option, ':');
Dave Allison0aded082013-11-07 13:15:11 -0800716 } else if (StartsWith(option, "-Xprofile-interval:")) {
lzang16c2270b2014-01-29 14:21:25 +0800717 parsed->profile_interval_us_ = ParseIntegerOrDie(option, ':');
Dave Allison0aded082013-11-07 13:15:11 -0800718 } else if (StartsWith(option, "-Xprofile-backoff:")) {
lzang16c2270b2014-01-29 14:21:25 +0800719 parsed->profile_backoff_coefficient_ = ParseDoubleOrDie(
720 option, ':', 1.0, 10.0, ignore_unrecognized, parsed->profile_backoff_coefficient_);
buzbeea024a062013-07-31 10:47:37 -0700721 } else if (option == "-compiler-filter:interpret-only") {
722 parsed->compiler_filter_ = kInterpretOnly;
buzbeea024a062013-07-31 10:47:37 -0700723 } else if (option == "-compiler-filter:space") {
724 parsed->compiler_filter_ = kSpace;
725 } else if (option == "-compiler-filter:balanced") {
726 parsed->compiler_filter_ = kBalanced;
727 } else if (option == "-compiler-filter:speed") {
728 parsed->compiler_filter_ = kSpeed;
buzbeefe9ca402013-08-21 09:48:11 -0700729 } else if (option == "-compiler-filter:everything") {
730 parsed->compiler_filter_ = kEverything;
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700731 } else if (option == "-sea_ir") {
Dragos Sbirlea7467ee02013-06-21 09:20:34 -0700732 parsed->sea_ir_mode_ = true;
buzbeea024a062013-07-31 10:47:37 -0700733 } else if (StartsWith(option, "-huge-method-max:")) {
lzang16c2270b2014-01-29 14:21:25 +0800734 parsed->huge_method_threshold_ = ParseIntegerOrDie(option, ':');
buzbeea024a062013-07-31 10:47:37 -0700735 } else if (StartsWith(option, "-large-method-max:")) {
lzang16c2270b2014-01-29 14:21:25 +0800736 parsed->large_method_threshold_ = ParseIntegerOrDie(option, ':');
buzbeea024a062013-07-31 10:47:37 -0700737 } else if (StartsWith(option, "-small-method-max:")) {
lzang16c2270b2014-01-29 14:21:25 +0800738 parsed->small_method_threshold_ = ParseIntegerOrDie(option, ':');
buzbeea024a062013-07-31 10:47:37 -0700739 } else if (StartsWith(option, "-tiny-method-max:")) {
lzang16c2270b2014-01-29 14:21:25 +0800740 parsed->tiny_method_threshold_ = ParseIntegerOrDie(option, ':');
buzbeea024a062013-07-31 10:47:37 -0700741 } else if (StartsWith(option, "-num-dex-methods-max:")) {
lzang16c2270b2014-01-29 14:21:25 +0800742 parsed->num_dex_methods_threshold_ = ParseIntegerOrDie(option, ':');
Brian Carlstrom8a436592011-08-15 21:27:23 -0700743 } else {
744 if (!ignore_unrecognized) {
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700745 // TODO: print usage via vfprintf
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700746 LOG(ERROR) << "Unrecognized option " << option;
747 // TODO: this should exit, but for now tolerate unknown options
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700748 // return NULL;
Brian Carlstrom8a436592011-08-15 21:27:23 -0700749 }
750 }
751 }
752
Brian Carlstromfb67b722013-06-24 23:41:51 -0700753 // If a reference to the dalvik core.jar snuck in, replace it with
754 // the art specific version. This can happen with on device
755 // boot.art/boot.oat generation by GenerateImage which relies on the
756 // value of BOOTCLASSPATH.
757 std::string core_jar("/core.jar");
758 size_t core_jar_pos = parsed->boot_class_path_string_.find(core_jar);
759 if (core_jar_pos != std::string::npos) {
760 parsed->boot_class_path_string_.replace(core_jar_pos, core_jar.size(), "/core-libart.jar");
761 }
762
Vladimir Marko2b5eaa22013-12-13 13:59:30 +0000763 if (parsed->compiler_callbacks_ == nullptr && parsed->image_.empty()) {
Brian Carlstrom223f20f2012-02-04 23:06:55 -0800764 parsed->image_ += GetAndroidRoot();
765 parsed->image_ += "/framework/boot.art";
Brian Carlstrom5de8fe52011-10-16 14:10:09 -0700766 }
jeffhaoc1160702011-10-27 15:48:45 -0700767 if (parsed->heap_growth_limit_ == 0) {
768 parsed->heap_growth_limit_ = parsed->heap_maximum_size_;
769 }
Mathieu Chartiere6da9af2013-12-16 11:54:42 -0800770 if (parsed->background_collector_type_ == gc::kCollectorTypeNone) {
771 parsed->background_collector_type_ = parsed->collector_type_;
772 }
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700773 return parsed.release();
Brian Carlstrom8a436592011-08-15 21:27:23 -0700774}
775
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700776bool Runtime::Create(const Options& options, bool ignore_unrecognized) {
Carl Shapiro2ed144c2011-07-26 16:52:08 -0700777 // TODO: acquire a static mutex on Runtime to avoid racing.
778 if (Runtime::instance_ != NULL) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700779 return false;
Carl Shapiro2ed144c2011-07-26 16:52:08 -0700780 }
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700781 InitLogging(NULL); // Calls Locks::Init() as a side effect.
Elliott Hughesdcc24742011-09-07 14:02:44 -0700782 instance_ = new Runtime;
783 if (!instance_->Init(options, ignore_unrecognized)) {
784 delete instance_;
785 instance_ = NULL;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700786 return false;
Carl Shapiro61e019d2011-07-14 16:53:09 -0700787 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700788 return true;
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700789}
Elliott Hughes0af55432011-08-17 18:37:28 -0700790
Brian Carlstromce888532013-10-10 00:32:58 -0700791jobject CreateSystemClassLoader() {
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800792 if (Runtime::Current()->UseCompileTimeClassPath()) {
Brian Carlstromce888532013-10-10 00:32:58 -0700793 return NULL;
Brian Carlstromaded5f72011-10-07 17:15:04 -0700794 }
795
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700796 ScopedObjectAccess soa(Thread::Current());
Mathieu Chartierc528dba2013-11-26 12:00:11 -0800797 ClassLinker* cl = Runtime::Current()->GetClassLinker();
Brian Carlstromaded5f72011-10-07 17:15:04 -0700798
Mathieu Chartierc528dba2013-11-26 12:00:11 -0800799 SirtRef<mirror::Class> class_loader_class(
800 soa.Self(), soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_ClassLoader));
801 CHECK(cl->EnsureInitialized(class_loader_class, true, true));
Brian Carlstromaded5f72011-10-07 17:15:04 -0700802
Brian Carlstromea46f952013-07-30 01:26:50 -0700803 mirror::ArtMethod* getSystemClassLoader =
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800804 class_loader_class->FindDirectMethod("getSystemClassLoader", "()Ljava/lang/ClassLoader;");
Brian Carlstromdf143242011-10-10 18:05:34 -0700805 CHECK(getSystemClassLoader != NULL);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700806
Jeff Hao5d917302013-02-27 17:57:33 -0800807 JValue result;
Mathieu Chartierc528dba2013-11-26 12:00:11 -0800808 ArgArray arg_array(nullptr, 0);
Jeff Hao6474d192013-03-26 14:08:09 -0700809 InvokeWithArgArray(soa, getSystemClassLoader, &arg_array, &result, 'L');
Mathieu Chartierc528dba2013-11-26 12:00:11 -0800810 SirtRef<mirror::ClassLoader> class_loader(soa.Self(),
811 down_cast<mirror::ClassLoader*>(result.GetL()));
812 CHECK(class_loader.get() != nullptr);
Brian Carlstromce888532013-10-10 00:32:58 -0700813 JNIEnv* env = soa.Self()->GetJniEnv();
Mathieu Chartierc528dba2013-11-26 12:00:11 -0800814 ScopedLocalRef<jobject> system_class_loader(env,
815 soa.AddLocalReference<jobject>(class_loader.get()));
816 CHECK(system_class_loader.get() != nullptr);
Brian Carlstromce888532013-10-10 00:32:58 -0700817
Mathieu Chartierc528dba2013-11-26 12:00:11 -0800818 soa.Self()->SetClassLoaderOverride(class_loader.get());
Ian Rogers365c1022012-06-22 15:05:28 -0700819
Mathieu Chartierc528dba2013-11-26 12:00:11 -0800820 SirtRef<mirror::Class> thread_class(soa.Self(),
821 soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_Thread));
822 CHECK(cl->EnsureInitialized(thread_class, true, true));
Ian Rogers365c1022012-06-22 15:05:28 -0700823
Mathieu Chartierc528dba2013-11-26 12:00:11 -0800824 mirror::ArtField* contextClassLoader =
825 thread_class->FindDeclaredInstanceField("contextClassLoader", "Ljava/lang/ClassLoader;");
Jesse Wilson1b2b2f22011-11-22 11:47:44 -0500826 CHECK(contextClassLoader != NULL);
Ian Rogers365c1022012-06-22 15:05:28 -0700827
Mathieu Chartierc528dba2013-11-26 12:00:11 -0800828 contextClassLoader->SetObject(soa.Self()->GetPeer(), class_loader.get());
Brian Carlstromce888532013-10-10 00:32:58 -0700829
830 return env->NewGlobalRef(system_class_loader.get());
Brian Carlstromaded5f72011-10-07 17:15:04 -0700831}
832
Brian Carlstrombd86bcc2013-03-10 20:26:16 -0700833bool Runtime::Start() {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800834 VLOG(startup) << "Runtime::Start entering";
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700835
836 CHECK(host_prefix_.empty()) << host_prefix_;
837
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700838 // Restore main thread state to kNative as expected by native code.
Ian Rogersa436fde2013-08-27 23:34:06 -0700839 Thread* self = Thread::Current();
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700840 self->TransitionFromRunnableToSuspended(kNative);
841
Brian Carlstrom5d40f182011-09-26 22:29:18 -0700842 started_ = true;
843
Brian Carlstromae826982011-11-09 01:33:42 -0800844 // InitNativeMethods needs to be after started_ so that the classes
845 // it touches will have methods linked to the oat file if necessary.
846 InitNativeMethods();
847
Ian Rogers365c1022012-06-22 15:05:28 -0700848 // Initialize well known thread group values that may be accessed threads while attaching.
849 InitThreadGroups(self);
850
Jesse Wilson9a6bae82011-11-14 14:57:30 -0500851 Thread::FinishStartup();
852
Brian Carlstrombd86bcc2013-03-10 20:26:16 -0700853 if (is_zygote_) {
854 if (!InitZygote()) {
855 return false;
856 }
857 } else {
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700858 DidForkFromZygote();
859 }
Elliott Hughes9ca7a1f2011-10-11 14:29:52 -0700860
Elliott Hughes85d15452011-09-16 17:33:01 -0700861 StartDaemonThreads();
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700862
Brian Carlstromce888532013-10-10 00:32:58 -0700863 system_class_loader_ = CreateSystemClassLoader();
Brian Carlstromaded5f72011-10-07 17:15:04 -0700864
Elliott Hughes225f5a12012-06-11 11:23:48 -0700865 self->GetJniEnv()->locals.AssertEmpty();
Elliott Hughes726079d2011-10-07 18:43:44 -0700866
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800867 VLOG(startup) << "Runtime::Start exiting";
Mathieu Chartier7664f5c2012-06-08 18:15:32 -0700868
869 finished_starting_ = true;
Brian Carlstrombd86bcc2013-03-10 20:26:16 -0700870
Dave Allison0aded082013-11-07 13:15:11 -0800871 if (profile_) {
872 // User has asked for a profile using -Xprofile
873 StartProfiler(profile_output_filename_.c_str(), true);
874 }
875
Brian Carlstrombd86bcc2013-03-10 20:26:16 -0700876 return true;
Elliott Hughes85d15452011-09-16 17:33:01 -0700877}
878
Ian Rogers120f1c72012-09-28 17:17:10 -0700879void Runtime::EndThreadBirth() EXCLUSIVE_LOCKS_REQUIRED(Locks::runtime_shutdown_lock_) {
880 DCHECK_GT(threads_being_born_, 0U);
881 threads_being_born_--;
882 if (shutting_down_started_ && threads_being_born_ == 0) {
Ian Rogersc604d732012-10-14 16:09:54 -0700883 shutdown_cond_->Broadcast(Thread::Current());
Ian Rogers120f1c72012-09-28 17:17:10 -0700884 }
885}
886
Brian Carlstrombd86bcc2013-03-10 20:26:16 -0700887// Do zygote-mode-only initialization.
888bool Runtime::InitZygote() {
889 // zygote goes into its own process group
Brian Carlstromb1eba212013-07-17 18:07:19 -0700890 setpgid(0, 0);
Brian Carlstrombd86bcc2013-03-10 20:26:16 -0700891
892 // See storage config details at http://source.android.com/tech/storage/
893 // Create private mount namespace shared by all children
894 if (unshare(CLONE_NEWNS) == -1) {
895 PLOG(WARNING) << "Failed to unshare()";
896 return false;
897 }
898
899 // Mark rootfs as being a slave so that changes from default
900 // namespace only flow into our children.
901 if (mount("rootfs", "/", NULL, (MS_SLAVE | MS_REC), NULL) == -1) {
902 PLOG(WARNING) << "Failed to mount() rootfs as MS_SLAVE";
903 return false;
904 }
905
906 // Create a staging tmpfs that is shared by our children; they will
907 // bind mount storage into their respective private namespaces, which
908 // are isolated from each other.
909 const char* target_base = getenv("EMULATED_STORAGE_TARGET");
910 if (target_base != NULL) {
911 if (mount("tmpfs", target_base, "tmpfs", MS_NOSUID | MS_NODEV,
Jeff Sharkey52cd1e82013-09-17 16:25:12 -0700912 "uid=0,gid=1028,mode=0751") == -1) {
Brian Carlstrombd86bcc2013-03-10 20:26:16 -0700913 LOG(WARNING) << "Failed to mount tmpfs to " << target_base;
914 return false;
915 }
916 }
917
918 return true;
919}
920
Brian Carlstromcaabb1b2011-10-11 18:09:13 -0700921void Runtime::DidForkFromZygote() {
Brian Carlstromcaabb1b2011-10-11 18:09:13 -0700922 is_zygote_ = false;
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700923
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700924 // Create the thread pool.
925 heap_->CreateThreadPool();
926
Brian Carlstromcaabb1b2011-10-11 18:09:13 -0700927 StartSignalCatcher();
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700928
929 // Start the JDWP thread. If the command-line debugger flags specified "suspend=y",
930 // this will pause the runtime, so we probably want this to come last.
931 Dbg::StartJdwp();
Brian Carlstromcaabb1b2011-10-11 18:09:13 -0700932}
933
934void Runtime::StartSignalCatcher() {
935 if (!is_zygote_) {
Elliott Hughes94ce37a2011-10-18 15:07:48 -0700936 signal_catcher_ = new SignalCatcher(stack_trace_file_);
Brian Carlstromcaabb1b2011-10-11 18:09:13 -0700937 }
938}
939
Mathieu Chartier590fee92013-09-13 13:46:47 -0700940bool Runtime::IsShuttingDown(Thread* self) {
941 MutexLock mu(self, *Locks::runtime_shutdown_lock_);
942 return IsShuttingDownLocked();
943}
944
Elliott Hughes85d15452011-09-16 17:33:01 -0700945void Runtime::StartDaemonThreads() {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800946 VLOG(startup) << "Runtime::StartDaemonThreads entering";
Elliott Hughes85d15452011-09-16 17:33:01 -0700947
Elliott Hughes719b3232011-09-25 17:42:19 -0700948 Thread* self = Thread::Current();
Brian Carlstromaded5f72011-10-07 17:15:04 -0700949
950 // Must be in the kNative state for calling native methods.
Ian Rogers50b35e22012-10-04 10:09:15 -0700951 CHECK_EQ(self->GetState(), kNative);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700952
Elliott Hughes719b3232011-09-25 17:42:19 -0700953 JNIEnv* env = self->GetJniEnv();
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700954 env->CallStaticVoidMethod(WellKnownClasses::java_lang_Daemons,
955 WellKnownClasses::java_lang_Daemons_start);
956 if (env->ExceptionCheck()) {
957 env->ExceptionDescribe();
958 LOG(FATAL) << "Error starting java.lang.Daemons";
959 }
Elliott Hughes9ca7a1f2011-10-11 14:29:52 -0700960
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800961 VLOG(startup) << "Runtime::StartDaemonThreads exiting";
Carl Shapiro61e019d2011-07-14 16:53:09 -0700962}
963
Elliott Hughes0af55432011-08-17 18:37:28 -0700964bool Runtime::Init(const Options& raw_options, bool ignore_unrecognized) {
Elliott Hughesc1674ed2011-08-25 18:09:09 -0700965 CHECK_EQ(sysconf(_SC_PAGE_SIZE), kPageSize);
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700966
Elliott Hughes90a33692011-08-30 13:27:07 -0700967 UniquePtr<ParsedOptions> options(ParsedOptions::Create(raw_options, ignore_unrecognized));
968 if (options.get() == NULL) {
Brian Carlstrome24fa612011-09-29 00:53:55 -0700969 LOG(ERROR) << "Failed to parse options";
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700970 return false;
971 }
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800972 VLOG(startup) << "Runtime::Init -verbose:startup enabled";
Elliott Hughes7ede61e2011-09-14 18:18:06 -0700973
Elliott Hughes7c6169d2012-05-02 16:11:48 -0700974 QuasiAtomic::Startup();
975
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800976 Monitor::Init(options->lock_profiling_threshold_, options->hook_is_sensitive_thread_);
Elliott Hughes32d6e1e2011-10-11 14:47:44 -0700977
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700978 host_prefix_ = options->host_prefix_;
Brian Carlstroma004aa92012-02-08 18:05:09 -0800979 boot_class_path_string_ = options->boot_class_path_string_;
980 class_path_string_ = options->class_path_string_;
Elliott Hughes7ede61e2011-09-14 18:18:06 -0700981 properties_ = options->properties_;
982
Vladimir Marko2b5eaa22013-12-13 13:59:30 +0000983 compiler_callbacks_ = options->compiler_callbacks_;
Elliott Hughes9ca7a1f2011-10-11 14:29:52 -0700984 is_zygote_ = options->is_zygote_;
Anwar Ghuloum87183592013-08-14 12:12:19 -0700985 is_explicit_gc_disabled_ = options->is_explicit_gc_disabled_;
Elliott Hughes9ca7a1f2011-10-11 14:29:52 -0700986
buzbeea024a062013-07-31 10:47:37 -0700987 compiler_filter_ = options->compiler_filter_;
988 huge_method_threshold_ = options->huge_method_threshold_;
989 large_method_threshold_ = options->large_method_threshold_;
990 small_method_threshold_ = options->small_method_threshold_;
991 tiny_method_threshold_ = options->tiny_method_threshold_;
992 num_dex_methods_threshold_ = options->num_dex_methods_threshold_;
Anwar Ghuloum8447d842013-04-30 17:27:40 -0700993
Dragos Sbirlea7467ee02013-06-21 09:20:34 -0700994 sea_ir_mode_ = options->sea_ir_mode_;
Elliott Hughes0af55432011-08-17 18:37:28 -0700995 vfprintf_ = options->hook_vfprintf_;
996 exit_ = options->hook_exit_;
997 abort_ = options->hook_abort_;
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700998
Elliott Hughesbe759c62011-09-08 19:38:21 -0700999 default_stack_size_ = options->stack_size_;
Elliott Hughes94ce37a2011-10-18 15:07:48 -07001000 stack_trace_file_ = options->stack_trace_file_;
Brian Carlstrom6ea095a2011-08-16 15:26:54 -07001001
Ian Rogersd9c4fc92013-10-01 19:45:43 -07001002 max_spins_before_thin_lock_inflation_ = options->max_spins_before_thin_lock_inflation_;
1003
Elliott Hughesc33a32b2011-10-11 18:18:07 -07001004 monitor_list_ = new MonitorList;
Ian Rogersef7d42f2014-01-06 12:55:46 -08001005 monitor_pool_ = MonitorPool::Create();
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08001006 thread_list_ = new ThreadList;
Elliott Hughescf4c6c42011-09-01 15:16:42 -07001007 intern_table_ = new InternTable;
1008
Logan Chiendd361c92012-04-10 23:40:37 +08001009
Ian Rogers62d6c772013-02-27 08:32:07 -08001010 if (options->interpreter_only_) {
1011 GetInstrumentation()->ForceInterpretOnly();
1012 }
1013
Ian Rogers1d54e732013-05-02 21:10:01 -07001014 heap_ = new gc::Heap(options->heap_initial_size_,
1015 options->heap_growth_limit_,
1016 options->heap_min_free_,
1017 options->heap_max_free_,
1018 options->heap_target_utilization_,
1019 options->heap_maximum_size_,
1020 options->image_,
Mathieu Chartier0de9f732013-11-22 17:58:48 -08001021 options->collector_type_,
Mathieu Chartiere6da9af2013-12-16 11:54:42 -08001022 options->background_collector_type_,
Mathieu Chartier2775ee42013-08-20 17:43:47 -07001023 options->parallel_gc_threads_,
1024 options->conc_gc_threads_,
1025 options->low_memory_mode_,
1026 options->long_pause_log_threshold_,
1027 options->long_gc_log_threshold_,
Mathieu Chartier692fafd2013-11-29 17:24:40 -08001028 options->ignore_max_footprint_,
Mathieu Chartier938a03b2014-01-16 15:10:31 -08001029 options->use_tlab_,
1030 options->verify_pre_gc_heap_,
Hiroshi Yamauchia4adbfd2014-02-04 18:12:17 -08001031 options->verify_post_gc_heap_,
1032 options->verify_pre_gc_rosalloc_,
1033 options->verify_post_gc_rosalloc_);
Brian Carlstrom6ea095a2011-08-16 15:26:54 -07001034
Hiroshi Yamauchi2e899a92013-11-22 16:50:12 -08001035 dump_gc_performance_on_shutdown_ = options->dump_gc_performance_on_shutdown_;
1036
Elliott Hughesc1674ed2011-08-25 18:09:09 -07001037 BlockSignals();
Elliott Hughes457005c2012-04-16 13:54:25 -07001038 InitPlatformSignalHandlers();
Elliott Hughesc1674ed2011-08-25 18:09:09 -07001039
Elliott Hughesa0957642011-09-02 14:27:33 -07001040 java_vm_ = new JavaVMExt(this, options.get());
Elliott Hughes515a5bc2011-08-17 11:08:34 -07001041
Elliott Hughesbe759c62011-09-08 19:38:21 -07001042 Thread::Startup();
Elliott Hughesd92bec42011-09-02 17:04:36 -07001043
Mathieu Chartier664bebf2012-11-12 16:54:11 -08001044 // ClassLinker needs an attached thread, but we can't fully attach a thread without creating
1045 // objects. We can't supply a thread group yet; it will be fixed later. Since we are the main
1046 // thread, we do not get a java peer.
1047 Thread* self = Thread::Attach("main", false, NULL, false);
Ian Rogersd9c4fc92013-10-01 19:45:43 -07001048 CHECK_EQ(self->thin_lock_thread_id_, ThreadList::kMainThreadId);
Ian Rogers120f1c72012-09-28 17:17:10 -07001049 CHECK(self != NULL);
Brian Carlstrom6ea095a2011-08-16 15:26:54 -07001050
Brian Carlstromf28bc5b2011-10-26 01:15:03 -07001051 // Set us to runnable so tools using a runtime can allocate and GC by default
Ian Rogers120f1c72012-09-28 17:17:10 -07001052 self->TransitionFromSuspendedToRunnable();
Brian Carlstromf28bc5b2011-10-26 01:15:03 -07001053
Ian Rogersa436fde2013-08-27 23:34:06 -07001054 // Now we're attached, we can take the heap locks and validate the heap.
Ian Rogers141d6222012-04-05 12:23:06 -07001055 GetHeap()->EnableObjectValidation();
1056
Ian Rogers1d54e732013-05-02 21:10:01 -07001057 CHECK_GE(GetHeap()->GetContinuousSpaces().size(), 1U);
Mathieu Chartier590fee92013-09-13 13:46:47 -07001058 class_linker_ = new ClassLinker(intern_table_);
1059 if (GetHeap()->HasImageSpace()) {
1060 class_linker_->InitFromImage();
Brian Carlstroma004aa92012-02-08 18:05:09 -08001061 } else {
1062 CHECK(options->boot_class_path_ != NULL);
1063 CHECK_NE(options->boot_class_path_->size(), 0U);
Mathieu Chartier590fee92013-09-13 13:46:47 -07001064 class_linker_->InitFromCompiler(*options->boot_class_path_);
Brian Carlstroma004aa92012-02-08 18:05:09 -08001065 }
1066 CHECK(class_linker_ != NULL);
Sameer Abu Asal51a5fb72013-02-19 14:25:01 -08001067 verifier::MethodVerifier::Init();
Brian Carlstrom6ea095a2011-08-16 15:26:54 -07001068
jeffhaob5e81852012-03-12 11:15:45 -07001069 method_trace_ = options->method_trace_;
1070 method_trace_file_ = options->method_trace_file_;
1071 method_trace_file_size_ = options->method_trace_file_size_;
1072
Dave Allison0aded082013-11-07 13:15:11 -08001073 // Extract the profile options.
1074 profile_period_s_ = options->profile_period_s_;
1075 profile_duration_s_ = options->profile_duration_s_;
1076 profile_interval_us_ = options->profile_interval_us_;
1077 profile_backoff_coefficient_ = options->profile_backoff_coefficient_;
1078 profile_ = options->profile_;
1079 profile_output_filename_ = options->profile_output_filename_;
1080
jeffhaob5e81852012-03-12 11:15:45 -07001081 if (options->method_trace_) {
Jeff Hao23009dc2013-08-22 15:36:42 -07001082 Trace::Start(options->method_trace_file_.c_str(), -1, options->method_trace_file_size_, 0,
1083 false, false, 0);
jeffhaob5e81852012-03-12 11:15:45 -07001084 }
1085
Ian Rogersa436fde2013-08-27 23:34:06 -07001086 // Pre-allocate an OutOfMemoryError for the double-OOME case.
1087 self->ThrowNewException(ThrowLocation(), "Ljava/lang/OutOfMemoryError;",
1088 "OutOfMemoryError thrown while trying to throw OutOfMemoryError; no stack available");
1089 pre_allocated_OutOfMemoryError_ = self->GetException(NULL);
1090 self->ClearException();
1091
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08001092 VLOG(startup) << "Runtime::Init exiting";
Carl Shapiro1fb86202011-06-27 17:43:13 -07001093 return true;
1094}
1095
Elliott Hughes038a8062011-09-18 14:12:41 -07001096void Runtime::InitNativeMethods() {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08001097 VLOG(startup) << "Runtime::InitNativeMethods entering";
Elliott Hughesad7c2a32011-08-31 11:58:10 -07001098 Thread* self = Thread::Current();
1099 JNIEnv* env = self->GetJniEnv();
1100
Elliott Hughes418d20f2011-09-22 14:00:39 -07001101 // Must be in the kNative state for calling native methods (JNI_OnLoad code).
Ian Rogers50b35e22012-10-04 10:09:15 -07001102 CHECK_EQ(self->GetState(), kNative);
Elliott Hughesad7c2a32011-08-31 11:58:10 -07001103
Elliott Hughes418d20f2011-09-22 14:00:39 -07001104 // First set up JniConstants, which is used by both the runtime's built-in native
1105 // methods and libcore.
Elliott Hughesfea966e2011-09-22 10:26:20 -07001106 JniConstants::init(env);
Elliott Hugheseac76672012-05-24 21:56:51 -07001107 WellKnownClasses::Init(env);
Elliott Hughesfea966e2011-09-22 10:26:20 -07001108
Elliott Hughes418d20f2011-09-22 14:00:39 -07001109 // Then set up the native methods provided by the runtime itself.
Elliott Hughesad7c2a32011-08-31 11:58:10 -07001110 RegisterRuntimeNativeMethods(env);
1111
Elliott Hughes418d20f2011-09-22 14:00:39 -07001112 // Then set up libcore, which is just a regular JNI library with a regular JNI_OnLoad.
1113 // Most JNI libraries can just use System.loadLibrary, but libcore can't because it's
1114 // the library that implements System.loadLibrary!
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001115 {
1116 std::string mapped_name(StringPrintf(OS_SHARED_LIB_FORMAT_STR, "javacore"));
1117 std::string reason;
1118 self->TransitionFromSuspendedToRunnable();
Mathieu Chartier055d46c2014-02-06 11:22:17 -08001119 SirtRef<mirror::ClassLoader> class_loader(self, nullptr);
1120 if (!instance_->java_vm_->LoadNativeLibrary(mapped_name, class_loader, &reason)) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001121 LOG(FATAL) << "LoadNativeLibrary failed for \"" << mapped_name << "\": " << reason;
1122 }
1123 self->TransitionFromRunnableToSuspended(kNative);
1124 }
Ian Rogersef28b142012-11-30 14:22:18 -08001125
1126 // Initialize well known classes that may invoke runtime native methods.
1127 WellKnownClasses::LateInit(env);
1128
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08001129 VLOG(startup) << "Runtime::InitNativeMethods exiting";
Elliott Hughesad7c2a32011-08-31 11:58:10 -07001130}
1131
Ian Rogers365c1022012-06-22 15:05:28 -07001132void Runtime::InitThreadGroups(Thread* self) {
1133 JNIEnvExt* env = self->GetJniEnv();
1134 ScopedJniEnvLocalRefState env_state(env);
1135 main_thread_group_ =
1136 env->NewGlobalRef(env->GetStaticObjectField(WellKnownClasses::java_lang_ThreadGroup,
1137 WellKnownClasses::java_lang_ThreadGroup_mainThreadGroup));
Brian Carlstrom034f76b2012-08-01 15:51:58 -07001138 CHECK(main_thread_group_ != NULL || IsCompiler());
Ian Rogers365c1022012-06-22 15:05:28 -07001139 system_thread_group_ =
1140 env->NewGlobalRef(env->GetStaticObjectField(WellKnownClasses::java_lang_ThreadGroup,
1141 WellKnownClasses::java_lang_ThreadGroup_systemThreadGroup));
Brian Carlstrom034f76b2012-08-01 15:51:58 -07001142 CHECK(system_thread_group_ != NULL || IsCompiler());
1143}
1144
1145jobject Runtime::GetMainThreadGroup() const {
1146 CHECK(main_thread_group_ != NULL || IsCompiler());
1147 return main_thread_group_;
1148}
1149
1150jobject Runtime::GetSystemThreadGroup() const {
1151 CHECK(system_thread_group_ != NULL || IsCompiler());
1152 return system_thread_group_;
Ian Rogers365c1022012-06-22 15:05:28 -07001153}
1154
Brian Carlstromce888532013-10-10 00:32:58 -07001155jobject Runtime::GetSystemClassLoader() const {
1156 CHECK(system_class_loader_ != NULL || IsCompiler());
1157 return system_class_loader_;
1158}
1159
Elliott Hughesad7c2a32011-08-31 11:58:10 -07001160void Runtime::RegisterRuntimeNativeMethods(JNIEnv* env) {
1161#define REGISTER(FN) extern void FN(JNIEnv*); FN(env)
Ian Rogers5167c972012-02-03 10:41:20 -08001162 // Register Throwable first so that registration of other native methods can throw exceptions
1163 REGISTER(register_java_lang_Throwable);
Brian Carlstromf91c8c32011-09-21 17:30:34 -07001164 REGISTER(register_dalvik_system_DexFile);
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07001165 REGISTER(register_dalvik_system_VMDebug);
Elliott Hughes7ede61e2011-09-14 18:18:06 -07001166 REGISTER(register_dalvik_system_VMRuntime);
Elliott Hughes8daa0922011-09-11 13:46:25 -07001167 REGISTER(register_dalvik_system_VMStack);
Elliott Hughes01158d72011-09-19 19:47:10 -07001168 REGISTER(register_dalvik_system_Zygote);
Elliott Hughesd369bb72011-09-12 14:41:14 -07001169 REGISTER(register_java_lang_Class);
Ian Rogers8b2c0b92013-09-19 02:56:49 -07001170 REGISTER(register_java_lang_DexCache);
Elliott Hughesbf86d042011-08-31 17:53:14 -07001171 REGISTER(register_java_lang_Object);
1172 REGISTER(register_java_lang_Runtime);
1173 REGISTER(register_java_lang_String);
1174 REGISTER(register_java_lang_System);
Elliott Hughes8daa0922011-09-11 13:46:25 -07001175 REGISTER(register_java_lang_Thread);
Elliott Hughes64bf5a32011-09-20 14:43:12 -07001176 REGISTER(register_java_lang_VMClassLoader);
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001177 REGISTER(register_java_lang_reflect_Array);
Elliott Hughes2a20cfd2011-09-23 19:30:41 -07001178 REGISTER(register_java_lang_reflect_Constructor);
Brian Carlstromf867b6f2011-09-16 12:17:25 -07001179 REGISTER(register_java_lang_reflect_Field);
1180 REGISTER(register_java_lang_reflect_Method);
Jesse Wilson95caa792011-10-12 18:14:17 -04001181 REGISTER(register_java_lang_reflect_Proxy);
Elliott Hughesbf86d042011-08-31 17:53:14 -07001182 REGISTER(register_java_util_concurrent_atomic_AtomicLong);
Brian Carlstrom395520e2011-09-25 19:35:00 -07001183 REGISTER(register_org_apache_harmony_dalvik_ddmc_DdmServer);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07001184 REGISTER(register_org_apache_harmony_dalvik_ddmc_DdmVmInternal);
Elliott Hughes5ee7a8b2011-09-13 16:40:07 -07001185 REGISTER(register_sun_misc_Unsafe);
Elliott Hughesad7c2a32011-08-31 11:58:10 -07001186#undef REGISTER
1187}
1188
Elliott Hughesc967f782012-04-16 10:23:15 -07001189void Runtime::DumpForSigQuit(std::ostream& os) {
Elliott Hughescac6cc72011-11-03 20:31:21 -07001190 GetClassLinker()->DumpForSigQuit(os);
1191 GetInternTable()->DumpForSigQuit(os);
Elliott Hughesae80b492012-04-24 10:43:17 -07001192 GetJavaVM()->DumpForSigQuit(os);
Elliott Hughesc967f782012-04-16 10:23:15 -07001193 GetHeap()->DumpForSigQuit(os);
Elliott Hughes42ee1422011-09-06 12:33:32 -07001194 os << "\n";
Elliott Hughes8daa0922011-09-11 13:46:25 -07001195
Elliott Hughesc967f782012-04-16 10:23:15 -07001196 thread_list_->DumpForSigQuit(os);
Ian Rogers56edc432013-01-18 16:51:51 -08001197 BaseMutex::DumpAll(os);
Elliott Hughese27955c2011-08-26 15:21:24 -07001198}
1199
Elliott Hughes21a5bf22011-12-07 14:35:20 -08001200void Runtime::DumpLockHolders(std::ostream& os) {
Ian Rogersb726dcb2012-09-05 08:57:23 -07001201 uint64_t mutator_lock_owner = Locks::mutator_lock_->GetExclusiveOwnerTid();
Elliott Hughes21a5bf22011-12-07 14:35:20 -08001202 pid_t thread_list_lock_owner = GetThreadList()->GetLockOwner();
1203 pid_t classes_lock_owner = GetClassLinker()->GetClassesLockOwner();
1204 pid_t dex_lock_owner = GetClassLinker()->GetDexLockOwner();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001205 if ((thread_list_lock_owner | classes_lock_owner | dex_lock_owner) != 0) {
1206 os << "Mutator lock exclusive owner tid: " << mutator_lock_owner << "\n"
Elliott Hughes21a5bf22011-12-07 14:35:20 -08001207 << "ThreadList lock owner tid: " << thread_list_lock_owner << "\n"
1208 << "ClassLinker classes lock owner tid: " << classes_lock_owner << "\n"
1209 << "ClassLinker dex lock owner tid: " << dex_lock_owner << "\n";
1210 }
1211}
1212
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07001213void Runtime::SetStatsEnabled(bool new_state) {
1214 if (new_state == true) {
1215 GetStats()->Clear(~0);
1216 // TODO: wouldn't it make more sense to clear _all_ threads' stats?
1217 Thread::Current()->GetStats()->Clear(~0);
Ian Rogersfa824272013-11-05 16:12:57 -08001218 GetInstrumentation()->InstrumentQuickAllocEntryPoints();
Hiroshi Yamauchi3b4c1892013-09-12 21:33:12 -07001219 } else {
Ian Rogersfa824272013-11-05 16:12:57 -08001220 GetInstrumentation()->UninstrumentQuickAllocEntryPoints();
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07001221 }
1222 stats_enabled_ = new_state;
1223}
1224
1225void Runtime::ResetStats(int kinds) {
1226 GetStats()->Clear(kinds & 0xffff);
1227 // TODO: wouldn't it make more sense to clear _all_ threads' stats?
1228 Thread::Current()->GetStats()->Clear(kinds >> 16);
1229}
1230
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07001231int32_t Runtime::GetStat(int kind) {
1232 RuntimeStats* stats;
1233 if (kind < (1<<16)) {
1234 stats = GetStats();
1235 } else {
1236 stats = Thread::Current()->GetStats();
1237 kind >>= 16;
1238 }
1239 switch (kind) {
1240 case KIND_ALLOCATED_OBJECTS:
1241 return stats->allocated_objects;
1242 case KIND_ALLOCATED_BYTES:
1243 return stats->allocated_bytes;
1244 case KIND_FREED_OBJECTS:
1245 return stats->freed_objects;
1246 case KIND_FREED_BYTES:
1247 return stats->freed_bytes;
1248 case KIND_GC_INVOCATIONS:
1249 return stats->gc_for_alloc_count;
1250 case KIND_CLASS_INIT_COUNT:
1251 return stats->class_init_count;
1252 case KIND_CLASS_INIT_TIME:
1253 // Convert ns to us, reduce to 32 bits.
Elliott Hughes398f64b2012-03-26 18:05:48 -07001254 return static_cast<int>(stats->class_init_time_ns / 1000);
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07001255 case KIND_EXT_ALLOCATED_OBJECTS:
1256 case KIND_EXT_ALLOCATED_BYTES:
1257 case KIND_EXT_FREED_OBJECTS:
1258 case KIND_EXT_FREED_BYTES:
1259 return 0; // backward compatibility
1260 default:
Elliott Hughes7b9d9962012-04-20 18:48:18 -07001261 LOG(FATAL) << "Unknown statistic " << kind;
Brian Carlstrom7934ac22013-07-26 10:54:15 -07001262 return -1; // unreachable
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07001263 }
1264}
1265
Elliott Hughesc1674ed2011-08-25 18:09:09 -07001266void Runtime::BlockSignals() {
Elliott Hughes457005c2012-04-16 13:54:25 -07001267 SignalSet signals;
1268 signals.Add(SIGPIPE);
Elliott Hughesc1674ed2011-08-25 18:09:09 -07001269 // SIGQUIT is used to dump the runtime's state (including stack traces).
Elliott Hughes457005c2012-04-16 13:54:25 -07001270 signals.Add(SIGQUIT);
Elliott Hughes08795042012-04-03 14:48:52 -07001271 // SIGUSR1 is used to initiate a GC.
Elliott Hughes457005c2012-04-16 13:54:25 -07001272 signals.Add(SIGUSR1);
1273 signals.Block();
Elliott Hughesc1674ed2011-08-25 18:09:09 -07001274}
1275
Mathieu Chartier664bebf2012-11-12 16:54:11 -08001276bool Runtime::AttachCurrentThread(const char* thread_name, bool as_daemon, jobject thread_group,
1277 bool create_peer) {
1278 bool success = Thread::Attach(thread_name, as_daemon, thread_group, create_peer) != NULL;
Elliott Hughes22869a92012-03-27 14:08:24 -07001279 if (thread_name == NULL) {
1280 LOG(WARNING) << *Thread::Current() << " attached without supplying a name";
1281 }
Ian Rogers120f1c72012-09-28 17:17:10 -07001282 return success;
Carl Shapiro61e019d2011-07-14 16:53:09 -07001283}
1284
Elliott Hughesd92bec42011-09-02 17:04:36 -07001285void Runtime::DetachCurrentThread() {
Brian Carlstrom4d571432012-05-16 00:21:41 -07001286 Thread* self = Thread::Current();
1287 if (self == NULL) {
1288 LOG(FATAL) << "attempting to detach thread that is not attached";
1289 }
Ian Rogers0399dde2012-06-06 17:09:28 -07001290 if (self->HasManagedStack()) {
Elliott Hughes22869a92012-03-27 14:08:24 -07001291 LOG(FATAL) << *Thread::Current() << " attempting to detach while still running code";
1292 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001293 thread_list_->Unregister(self);
Carl Shapiro1fb86202011-06-27 17:43:13 -07001294}
1295
Ian Rogersa436fde2013-08-27 23:34:06 -07001296 mirror::Throwable* Runtime::GetPreAllocatedOutOfMemoryError() const {
1297 if (pre_allocated_OutOfMemoryError_ == NULL) {
1298 LOG(ERROR) << "Failed to return pre-allocated OOME";
1299 }
1300 return pre_allocated_OutOfMemoryError_;
1301}
1302
Ian Rogers1d54e732013-05-02 21:10:01 -07001303void Runtime::VisitConcurrentRoots(RootVisitor* visitor, void* arg, bool only_dirty,
1304 bool clean_dirty) {
Mathieu Chartierc4621982013-09-16 19:43:47 -07001305 intern_table_->VisitRoots(visitor, arg, only_dirty, clean_dirty);
1306 class_linker_->VisitRoots(visitor, arg, only_dirty, clean_dirty);
Mathieu Chartier9ebae1f2012-10-15 17:38:16 -07001307}
1308
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001309void Runtime::VisitNonThreadRoots(RootVisitor* visitor, void* arg) {
Mathieu Chartierc528dba2013-11-26 12:00:11 -08001310 // Visit the classes held as static in mirror classes.
1311 mirror::ArtField::VisitRoots(visitor, arg);
1312 mirror::ArtMethod::VisitRoots(visitor, arg);
1313 mirror::Class::VisitRoots(visitor, arg);
1314 mirror::StackTraceElement::VisitRoots(visitor, arg);
1315 mirror::String::VisitRoots(visitor, arg);
1316 mirror::Throwable::VisitRoots(visitor, arg);
1317 // Visit all the primitive array types classes.
1318 mirror::PrimitiveArray<uint8_t>::VisitRoots(visitor, arg); // BooleanArray
1319 mirror::PrimitiveArray<int8_t>::VisitRoots(visitor, arg); // ByteArray
1320 mirror::PrimitiveArray<uint16_t>::VisitRoots(visitor, arg); // CharArray
1321 mirror::PrimitiveArray<double>::VisitRoots(visitor, arg); // DoubleArray
1322 mirror::PrimitiveArray<float>::VisitRoots(visitor, arg); // FloatArray
1323 mirror::PrimitiveArray<int32_t>::VisitRoots(visitor, arg); // IntArray
1324 mirror::PrimitiveArray<int64_t>::VisitRoots(visitor, arg); // LongArray
1325 mirror::PrimitiveArray<int16_t>::VisitRoots(visitor, arg); // ShortArray
Brian Carlstrome24fa612011-09-29 00:53:55 -07001326 java_vm_->VisitRoots(visitor, arg);
Mathieu Chartier423d2a32013-09-12 17:33:56 -07001327 if (pre_allocated_OutOfMemoryError_ != nullptr) {
Mathieu Chartierc528dba2013-11-26 12:00:11 -08001328 pre_allocated_OutOfMemoryError_ = down_cast<mirror::Throwable*>(
Mathieu Chartier423d2a32013-09-12 17:33:56 -07001329 visitor(pre_allocated_OutOfMemoryError_, arg));
1330 DCHECK(pre_allocated_OutOfMemoryError_ != nullptr);
Elliott Hughes225f5a12012-06-11 11:23:48 -07001331 }
Mathieu Chartier590fee92013-09-13 13:46:47 -07001332 resolution_method_ = down_cast<mirror::ArtMethod*>(visitor(resolution_method_, arg));
Mathieu Chartier423d2a32013-09-12 17:33:56 -07001333 DCHECK(resolution_method_ != nullptr);
Mathieu Chartier590fee92013-09-13 13:46:47 -07001334 if (HasImtConflictMethod()) {
1335 imt_conflict_method_ = down_cast<mirror::ArtMethod*>(visitor(imt_conflict_method_, arg));
1336 }
1337 if (HasDefaultImt()) {
1338 default_imt_ = down_cast<mirror::ObjectArray<mirror::ArtMethod>*>(visitor(default_imt_, arg));
1339 }
1340
Ian Rogers4f0d07c2011-10-06 23:38:47 -07001341 for (int i = 0; i < Runtime::kLastCalleeSaveType; i++) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001342 if (callee_save_methods_[i] != nullptr) {
1343 callee_save_methods_[i] = down_cast<mirror::ArtMethod*>(
1344 visitor(callee_save_methods_[i], arg));
1345 }
Ian Rogers4f0d07c2011-10-06 23:38:47 -07001346 }
Mathieu Chartierc528dba2013-11-26 12:00:11 -08001347 {
1348 MutexLock mu(Thread::Current(), method_verifiers_lock_);
1349 for (verifier::MethodVerifier* verifier : method_verifiers_) {
1350 verifier->VisitRoots(visitor, arg);
1351 }
1352 }
Brian Carlstrome24fa612011-09-29 00:53:55 -07001353}
1354
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001355void Runtime::VisitNonConcurrentRoots(RootVisitor* visitor, void* arg) {
Mathieu Chartier858f1c52012-10-17 17:45:55 -07001356 thread_list_->VisitRoots(visitor, arg);
1357 VisitNonThreadRoots(visitor, arg);
1358}
1359
Ian Rogers1d54e732013-05-02 21:10:01 -07001360void Runtime::VisitRoots(RootVisitor* visitor, void* arg, bool only_dirty, bool clean_dirty) {
1361 VisitConcurrentRoots(visitor, arg, only_dirty, clean_dirty);
Mathieu Chartier9ebae1f2012-10-15 17:38:16 -07001362 VisitNonConcurrentRoots(visitor, arg);
1363}
1364
Jeff Hao88474b42013-10-23 16:24:40 -07001365mirror::ObjectArray<mirror::ArtMethod>* Runtime::CreateDefaultImt(ClassLinker* cl) {
1366 Thread* self = Thread::Current();
1367 SirtRef<mirror::ObjectArray<mirror::ArtMethod> > imtable(self, cl->AllocArtMethodArray(self, 64));
1368 mirror::ArtMethod* imt_conflict_method = Runtime::Current()->GetImtConflictMethod();
Mathieu Chartier590fee92013-09-13 13:46:47 -07001369 for (size_t i = 0; i < static_cast<size_t>(imtable->GetLength()); i++) {
Jeff Hao88474b42013-10-23 16:24:40 -07001370 imtable->Set(i, imt_conflict_method);
1371 }
1372 return imtable.get();
1373}
1374
1375mirror::ArtMethod* Runtime::CreateImtConflictMethod() {
Jeff Hao88474b42013-10-23 16:24:40 -07001376 Thread* self = Thread::Current();
Ian Rogersef7d42f2014-01-06 12:55:46 -08001377 Runtime* runtime = Runtime::Current();
1378 ClassLinker* class_linker = runtime->GetClassLinker();
1379 SirtRef<mirror::ArtMethod> method(self, class_linker->AllocArtMethod(self));
Mathieu Chartier590fee92013-09-13 13:46:47 -07001380 method->SetDeclaringClass(mirror::ArtMethod::GetJavaLangReflectArtMethod());
Ian Rogersef7d42f2014-01-06 12:55:46 -08001381 // TODO: use a special method for imt conflict method saves.
Jeff Hao88474b42013-10-23 16:24:40 -07001382 method->SetDexMethodIndex(DexFile::kDexNoIndex);
1383 // When compiling, the code pointer will get set later when the image is loaded.
Ian Rogersef7d42f2014-01-06 12:55:46 -08001384 if (runtime->IsCompiler()) {
1385 method->SetEntryPointFromPortableCompiledCode(nullptr);
1386 method->SetEntryPointFromQuickCompiledCode(nullptr);
1387 } else {
1388 method->SetEntryPointFromPortableCompiledCode(GetPortableImtConflictTrampoline(class_linker));
1389 method->SetEntryPointFromQuickCompiledCode(GetQuickImtConflictTrampoline(class_linker));
1390 }
Jeff Hao88474b42013-10-23 16:24:40 -07001391 return method.get();
1392}
1393
Brian Carlstromea46f952013-07-30 01:26:50 -07001394mirror::ArtMethod* Runtime::CreateResolutionMethod() {
Ian Rogers50b35e22012-10-04 10:09:15 -07001395 Thread* self = Thread::Current();
Ian Rogersef7d42f2014-01-06 12:55:46 -08001396 Runtime* runtime = Runtime::Current();
1397 ClassLinker* class_linker = runtime->GetClassLinker();
1398 SirtRef<mirror::ArtMethod> method(self, class_linker->AllocArtMethod(self));
Mathieu Chartier590fee92013-09-13 13:46:47 -07001399 method->SetDeclaringClass(mirror::ArtMethod::GetJavaLangReflectArtMethod());
Ian Rogers19846512012-02-24 11:42:47 -08001400 // TODO: use a special method for resolution method saves
Ian Rogers8b2c0b92013-09-19 02:56:49 -07001401 method->SetDexMethodIndex(DexFile::kDexNoIndex);
Jeff Hao58df3272013-04-22 15:28:53 -07001402 // When compiling, the code pointer will get set later when the image is loaded.
Ian Rogersef7d42f2014-01-06 12:55:46 -08001403 if (runtime->IsCompiler()) {
1404 method->SetEntryPointFromPortableCompiledCode(nullptr);
1405 method->SetEntryPointFromQuickCompiledCode(nullptr);
1406 } else {
1407 method->SetEntryPointFromPortableCompiledCode(GetPortableResolutionTrampoline(class_linker));
1408 method->SetEntryPointFromQuickCompiledCode(GetQuickResolutionTrampoline(class_linker));
1409 }
Ian Rogers19846512012-02-24 11:42:47 -08001410 return method.get();
1411}
1412
Brian Carlstromea46f952013-07-30 01:26:50 -07001413mirror::ArtMethod* Runtime::CreateCalleeSaveMethod(InstructionSet instruction_set,
Mathieu Chartier590fee92013-09-13 13:46:47 -07001414 CalleeSaveType type) {
Ian Rogers50b35e22012-10-04 10:09:15 -07001415 Thread* self = Thread::Current();
Ian Rogersef7d42f2014-01-06 12:55:46 -08001416 Runtime* runtime = Runtime::Current();
1417 ClassLinker* class_linker = runtime->GetClassLinker();
1418 SirtRef<mirror::ArtMethod> method(self, class_linker->AllocArtMethod(self));
Mathieu Chartier590fee92013-09-13 13:46:47 -07001419 method->SetDeclaringClass(mirror::ArtMethod::GetJavaLangReflectArtMethod());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001420 // TODO: use a special method for callee saves
Ian Rogers8b2c0b92013-09-19 02:56:49 -07001421 method->SetDexMethodIndex(DexFile::kDexNoIndex);
Ian Rogersef7d42f2014-01-06 12:55:46 -08001422 method->SetEntryPointFromPortableCompiledCode(nullptr);
1423 method->SetEntryPointFromQuickCompiledCode(nullptr);
Brian Carlstromae826982011-11-09 01:33:42 -08001424 if ((instruction_set == kThumb2) || (instruction_set == kArm)) {
Ian Rogers4f0d07c2011-10-06 23:38:47 -07001425 uint32_t ref_spills = (1 << art::arm::R5) | (1 << art::arm::R6) | (1 << art::arm::R7) |
1426 (1 << art::arm::R8) | (1 << art::arm::R10) | (1 << art::arm::R11);
1427 uint32_t arg_spills = (1 << art::arm::R1) | (1 << art::arm::R2) | (1 << art::arm::R3);
1428 uint32_t all_spills = (1 << art::arm::R4) | (1 << art::arm::R9);
jeffhaofa147e22012-10-12 17:03:32 -07001429 uint32_t core_spills = ref_spills | (type == kRefsAndArgs ? arg_spills : 0) |
1430 (type == kSaveAll ? all_spills : 0) | (1 << art::arm::LR);
Ian Rogers4f0d07c2011-10-06 23:38:47 -07001431 uint32_t fp_all_spills = (1 << art::arm::S0) | (1 << art::arm::S1) | (1 << art::arm::S2) |
1432 (1 << art::arm::S3) | (1 << art::arm::S4) | (1 << art::arm::S5) |
1433 (1 << art::arm::S6) | (1 << art::arm::S7) | (1 << art::arm::S8) |
1434 (1 << art::arm::S9) | (1 << art::arm::S10) | (1 << art::arm::S11) |
1435 (1 << art::arm::S12) | (1 << art::arm::S13) | (1 << art::arm::S14) |
1436 (1 << art::arm::S15) | (1 << art::arm::S16) | (1 << art::arm::S17) |
1437 (1 << art::arm::S18) | (1 << art::arm::S19) | (1 << art::arm::S20) |
1438 (1 << art::arm::S21) | (1 << art::arm::S22) | (1 << art::arm::S23) |
1439 (1 << art::arm::S24) | (1 << art::arm::S25) | (1 << art::arm::S26) |
1440 (1 << art::arm::S27) | (1 << art::arm::S28) | (1 << art::arm::S29) |
1441 (1 << art::arm::S30) | (1 << art::arm::S31);
1442 uint32_t fp_spills = type == kSaveAll ? fp_all_spills : 0;
1443 size_t frame_size = RoundUp((__builtin_popcount(core_spills) /* gprs */ +
1444 __builtin_popcount(fp_spills) /* fprs */ +
1445 1 /* Method* */) * kPointerSize, kStackAlignment);
Ian Rogers15fdb8c2011-09-25 15:45:07 -07001446 method->SetFrameSizeInBytes(frame_size);
Ian Rogers4f0d07c2011-10-06 23:38:47 -07001447 method->SetCoreSpillMask(core_spills);
1448 method->SetFpSpillMask(fp_spills);
jeffhao7fbee072012-08-24 17:56:54 -07001449 } else if (instruction_set == kMips) {
1450 uint32_t ref_spills = (1 << art::mips::S2) | (1 << art::mips::S3) | (1 << art::mips::S4) |
1451 (1 << art::mips::S5) | (1 << art::mips::S6) | (1 << art::mips::S7) |
Jeff Hao1f3bc2f2013-04-30 15:17:19 -07001452 (1 << art::mips::GP) | (1 << art::mips::FP);
jeffhao7fbee072012-08-24 17:56:54 -07001453 uint32_t arg_spills = (1 << art::mips::A1) | (1 << art::mips::A2) | (1 << art::mips::A3);
jeffhaofa147e22012-10-12 17:03:32 -07001454 uint32_t all_spills = (1 << art::mips::S0) | (1 << art::mips::S1);
jeffhao7fbee072012-08-24 17:56:54 -07001455 uint32_t core_spills = ref_spills | (type == kRefsAndArgs ? arg_spills : 0) |
jeffhaofa147e22012-10-12 17:03:32 -07001456 (type == kSaveAll ? all_spills : 0) | (1 << art::mips::RA);
jeffhao7fbee072012-08-24 17:56:54 -07001457 size_t frame_size = RoundUp((__builtin_popcount(core_spills) /* gprs */ +
Jeff Hao1f3bc2f2013-04-30 15:17:19 -07001458 (type == kRefsAndArgs ? 0 : 3) + 1 /* Method* */) *
1459 kPointerSize, kStackAlignment);
jeffhao7fbee072012-08-24 17:56:54 -07001460 method->SetFrameSizeInBytes(frame_size);
1461 method->SetCoreSpillMask(core_spills);
jeffhao07030602012-09-26 14:33:14 -07001462 method->SetFpSpillMask(0);
Brian Carlstromae826982011-11-09 01:33:42 -08001463 } else if (instruction_set == kX86) {
Ian Rogers7caad772012-03-30 01:07:54 -07001464 uint32_t ref_spills = (1 << art::x86::EBP) | (1 << art::x86::ESI) | (1 << art::x86::EDI);
1465 uint32_t arg_spills = (1 << art::x86::ECX) | (1 << art::x86::EDX) | (1 << art::x86::EBX);
1466 uint32_t core_spills = ref_spills | (type == kRefsAndArgs ? arg_spills : 0) |
1467 (1 << art::x86::kNumberOfCpuRegisters); // fake return address callee save
1468 size_t frame_size = RoundUp((__builtin_popcount(core_spills) /* gprs */ +
1469 1 /* Method* */) * kPointerSize, kStackAlignment);
1470 method->SetFrameSizeInBytes(frame_size);
1471 method->SetCoreSpillMask(core_spills);
Ian Rogersff1ed472011-09-20 13:46:24 -07001472 method->SetFpSpillMask(0);
Ian Rogersef7d42f2014-01-06 12:55:46 -08001473 } else if (instruction_set == kX86_64) {
1474 uint32_t ref_spills =
1475 (1 << art::x86_64::RBP) | (1 << art::x86_64::RSI) | (1 << art::x86_64::RDI) |
1476 (1 << art::x86_64::R8) | (1 << art::x86_64::R9) | (1 << art::x86_64::R10) |
1477 (1 << art::x86_64::R11) | (1 << art::x86_64::R12) | (1 << art::x86_64::R13) |
1478 (1 << art::x86_64::R14) | (1 << art::x86_64::R15);
1479 uint32_t arg_spills =
1480 (1 << art::x86_64::RCX) | (1 << art::x86_64::RDX) | (1 << art::x86_64::RBX);
1481 uint32_t core_spills = ref_spills | (type == kRefsAndArgs ? arg_spills : 0) |
1482 (1 << art::x86::kNumberOfCpuRegisters); // fake return address callee save
1483 size_t frame_size = RoundUp((__builtin_popcount(core_spills) /* gprs */ +
1484 1 /* Method* */) * kPointerSize, kStackAlignment);
1485 method->SetFrameSizeInBytes(frame_size);
1486 method->SetCoreSpillMask(core_spills);
1487 method->SetFpSpillMask(0);
Ian Rogersff1ed472011-09-20 13:46:24 -07001488 } else {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001489 UNIMPLEMENTED(FATAL) << instruction_set;
Ian Rogersff1ed472011-09-20 13:46:24 -07001490 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001491 return method.get();
Ian Rogersff1ed472011-09-20 13:46:24 -07001492}
1493
Mathieu Chartierc11d9b82013-09-19 10:01:59 -07001494void Runtime::DisallowNewSystemWeaks() {
1495 monitor_list_->DisallowNewMonitors();
1496 intern_table_->DisallowNewInterns();
1497 java_vm_->DisallowNewWeakGlobals();
1498}
1499
1500void Runtime::AllowNewSystemWeaks() {
1501 monitor_list_->AllowNewMonitors();
1502 intern_table_->AllowNewInterns();
1503 java_vm_->AllowNewWeakGlobals();
1504}
1505
Brian Carlstromea46f952013-07-30 01:26:50 -07001506void Runtime::SetCalleeSaveMethod(mirror::ArtMethod* method, CalleeSaveType type) {
Ian Rogers4f0d07c2011-10-06 23:38:47 -07001507 DCHECK_LT(static_cast<int>(type), static_cast<int>(kLastCalleeSaveType));
Elliott Hughes225f5a12012-06-11 11:23:48 -07001508 callee_save_methods_[type] = method;
Brian Carlstrome24fa612011-09-29 00:53:55 -07001509}
1510
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001511const std::vector<const DexFile*>& Runtime::GetCompileTimeClassPath(jobject class_loader) {
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08001512 if (class_loader == NULL) {
1513 return GetClassLinker()->GetBootClassPath();
1514 }
1515 CHECK(UseCompileTimeClassPath());
1516 CompileTimeClassPaths::const_iterator it = compile_time_class_paths_.find(class_loader);
1517 CHECK(it != compile_time_class_paths_.end());
1518 return it->second;
1519}
1520
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001521void Runtime::SetCompileTimeClassPath(jobject class_loader, std::vector<const DexFile*>& class_path) {
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08001522 CHECK(!IsStarted());
1523 use_compile_time_class_path_ = true;
Elliott Hughesa0e18062012-04-13 15:59:59 -07001524 compile_time_class_paths_.Put(class_loader, class_path);
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08001525}
1526
Mathieu Chartierc528dba2013-11-26 12:00:11 -08001527void Runtime::AddMethodVerifier(verifier::MethodVerifier* verifier) {
1528 DCHECK(verifier != nullptr);
1529 MutexLock mu(Thread::Current(), method_verifiers_lock_);
1530 method_verifiers_.insert(verifier);
1531}
1532
1533void Runtime::RemoveMethodVerifier(verifier::MethodVerifier* verifier) {
1534 DCHECK(verifier != nullptr);
1535 MutexLock mu(Thread::Current(), method_verifiers_lock_);
1536 auto it = method_verifiers_.find(verifier);
1537 CHECK(it != method_verifiers_.end());
1538 method_verifiers_.erase(it);
1539}
1540
Dave Allison0aded082013-11-07 13:15:11 -08001541void Runtime::StartProfiler(const char *appDir, bool startImmediately) {
1542 BackgroundMethodSamplingProfiler::Start(profile_period_s_, profile_duration_s_, appDir, profile_interval_us_,
1543 profile_backoff_coefficient_, startImmediately);
1544}
Carl Shapiro1fb86202011-06-27 17:43:13 -07001545} // namespace art