blob: e1b4d7ec3599fe6c1632a33e8719700d41d1eeb3 [file] [log] [blame]
Elliott Hughes2faa5f12012-01-30 14:42:07 -08001/*
2 * Copyright (C) 2011 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
Carl Shapiro1fb86202011-06-27 17:43:13 -070016
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070017#include "runtime.h"
Carl Shapiro1fb86202011-06-27 17:43:13 -070018
Brian Carlstrombd86bcc2013-03-10 20:26:16 -070019// sys/mount.h has to come before linux/fs.h due to redefinition of MS_RDONLY, MS_BIND, etc
20#include <sys/mount.h>
21#include <linux/fs.h>
22
Brian Carlstromdbf05b72011-12-15 00:55:24 -080023#include <signal.h>
Elliott Hughesd06a6c72012-05-30 17:59:06 -070024#include <sys/syscall.h>
Brian Carlstromdbf05b72011-12-15 00:55:24 -080025
Elliott Hughesffe67362011-07-17 12:09:27 -070026#include <cstdio>
27#include <cstdlib>
Brian Carlstrom8a436592011-08-15 21:27:23 -070028#include <limits>
Carl Shapiro2ed144c2011-07-26 16:52:08 -070029#include <vector>
Elliott Hughesffe67362011-07-17 12:09:27 -070030
Ian Rogers166db042013-07-26 12:05:57 -070031#include "arch/arm/registers_arm.h"
32#include "arch/mips/registers_mips.h"
33#include "arch/x86/registers_x86.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080034#include "atomic.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070035#include "class_linker.h"
Elliott Hughes3bb81562011-10-21 18:52:59 -070036#include "debugger.h"
Ian Rogers1d54e732013-05-02 21:10:01 -070037#include "gc/accounting/card_table-inl.h"
38#include "gc/heap.h"
39#include "gc/space/space.h"
Brian Carlstrome24fa612011-09-29 00:53:55 -070040#include "image.h"
jeffhao725a9572012-11-13 18:20:12 -080041#include "instrumentation.h"
Elliott Hughescf4c6c42011-09-01 15:16:42 -070042#include "intern_table.h"
Jeff Hao5d917302013-02-27 17:57:33 -080043#include "invoke_arg_array_builder.h"
Elliott Hughesc5f7c912011-08-18 14:00:42 -070044#include "jni_internal.h"
Brian Carlstromea46f952013-07-30 01:26:50 -070045#include "mirror/art_field-inl.h"
46#include "mirror/art_method-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080047#include "mirror/array.h"
Ian Rogers62d6c772013-02-27 08:32:07 -080048#include "mirror/class-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080049#include "mirror/class_loader.h"
Mathieu Chartierc528dba2013-11-26 12:00:11 -080050#include "mirror/stack_trace_element.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080051#include "mirror/throwable.h"
Elliott Hughes32d6e1e2011-10-11 14:47:44 -070052#include "monitor.h"
Brian Carlstrome24fa612011-09-29 00:53:55 -070053#include "oat_file.h"
Elliott Hughes726079d2011-10-07 18:43:44 -070054#include "ScopedLocalRef.h"
Ian Rogers00f7d0e2012-07-19 15:28:27 -070055#include "scoped_thread_state_change.h"
Elliott Hughese27955c2011-08-26 15:21:24 -070056#include "signal_catcher.h"
Elliott Hughes457005c2012-04-16 13:54:25 -070057#include "signal_set.h"
Ian Rogers1f539342012-10-03 21:09:42 -070058#include "sirt_ref.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070059#include "thread.h"
Elliott Hughes8daa0922011-09-11 13:46:25 -070060#include "thread_list.h"
jeffhaob5e81852012-03-12 11:15:45 -070061#include "trace.h"
Elliott Hughes3bb81562011-10-21 18:52:59 -070062#include "UniquePtr.h"
Ian Rogers776ac1f2012-04-13 23:36:36 -070063#include "verifier/method_verifier.h"
Elliott Hugheseac76672012-05-24 21:56:51 -070064#include "well_known_classes.h"
Carl Shapiro61e019d2011-07-14 16:53:09 -070065
Brian Carlstrom7934ac22013-07-26 10:54:15 -070066#include "JniConstants.h" // Last to avoid LOG redefinition in ics-mr1-plus-art.
Elliott Hughes90a33692011-08-30 13:27:07 -070067
Carl Shapiro1fb86202011-06-27 17:43:13 -070068namespace art {
69
Carl Shapiro2ed144c2011-07-26 16:52:08 -070070Runtime* Runtime::instance_ = NULL;
71
Elliott Hughesdcc24742011-09-07 14:02:44 -070072Runtime::Runtime()
Elliott Hughesd9c67be2012-02-02 19:54:06 -080073 : is_compiler_(false),
74 is_zygote_(false),
Mathieu Chartier069387a2012-06-18 12:01:01 -070075 is_concurrent_gc_enabled_(true),
Anwar Ghuloum87183592013-08-14 12:12:19 -070076 is_explicit_gc_disabled_(false),
Elliott Hughes6cf23882012-06-15 15:42:07 -070077 default_stack_size_(0),
Elliott Hughesb3bd5f02012-03-08 21:05:27 -080078 heap_(NULL),
Ian Rogersd9c4fc92013-10-01 19:45:43 -070079 max_spins_before_thin_lock_inflation_(Monitor::kDefaultMaxSpinsBeforeThinLockInflation),
Elliott Hughesc33a32b2011-10-11 18:18:07 -070080 monitor_list_(NULL),
Elliott Hughesdcc24742011-09-07 14:02:44 -070081 thread_list_(NULL),
82 intern_table_(NULL),
83 class_linker_(NULL),
84 signal_catcher_(NULL),
85 java_vm_(NULL),
Elliott Hughes225f5a12012-06-11 11:23:48 -070086 pre_allocated_OutOfMemoryError_(NULL),
Ian Rogers19846512012-02-24 11:42:47 -080087 resolution_method_(NULL),
Jeff Hao88474b42013-10-23 16:24:40 -070088 imt_conflict_method_(NULL),
89 default_imt_(NULL),
Mathieu Chartierc528dba2013-11-26 12:00:11 -080090 method_verifiers_lock_("Method verifiers lock"),
Ian Rogers120f1c72012-09-28 17:17:10 -070091 threads_being_born_(0),
Ian Rogersc604d732012-10-14 16:09:54 -070092 shutdown_cond_(new ConditionVariable("Runtime shutdown", *Locks::runtime_shutdown_lock_)),
Elliott Hughes6b355752012-01-13 16:49:08 -080093 shutting_down_(false),
Ian Rogers120f1c72012-09-28 17:17:10 -070094 shutting_down_started_(false),
Elliott Hughesdcc24742011-09-07 14:02:44 -070095 started_(false),
Mathieu Chartier7664f5c2012-06-08 18:15:32 -070096 finished_starting_(false),
Elliott Hughesdcc24742011-09-07 14:02:44 -070097 vfprintf_(NULL),
98 exit_(NULL),
Elliott Hughes9d5ccec2011-09-19 13:19:50 -070099 abort_(NULL),
jeffhao2692b572011-12-16 15:42:28 -0800100 stats_enabled_(false),
Ian Rogers776ac1f2012-04-13 23:36:36 -0700101 method_trace_(0),
102 method_trace_file_size_(0),
Ian Rogers62d6c772013-02-27 08:32:07 -0800103 instrumentation_(),
Ian Rogers365c1022012-06-22 15:05:28 -0700104 use_compile_time_class_path_(false),
105 main_thread_group_(NULL),
Hiroshi Yamauchi3b4c1892013-09-12 21:33:12 -0700106 system_thread_group_(NULL),
Ian Rogersfa824272013-11-05 16:12:57 -0800107 system_class_loader_(NULL) {
Ian Rogers4f0d07c2011-10-06 23:38:47 -0700108 for (int i = 0; i < Runtime::kLastCalleeSaveType; i++) {
Elliott Hughes225f5a12012-06-11 11:23:48 -0700109 callee_save_methods_[i] = NULL;
Ian Rogers4f0d07c2011-10-06 23:38:47 -0700110 }
Elliott Hughesdcc24742011-09-07 14:02:44 -0700111}
112
Carl Shapiro61e019d2011-07-14 16:53:09 -0700113Runtime::~Runtime() {
Hiroshi Yamauchi2e899a92013-11-22 16:50:12 -0800114 if (dump_gc_performance_on_shutdown_) {
115 // This can't be called from the Heap destructor below because it
116 // could call RosAlloc::InspectAll() which needs the thread_list
117 // to be still alive.
118 heap_->DumpGcPerformanceInfo(LOG(INFO));
119 }
120
Ian Rogers120f1c72012-09-28 17:17:10 -0700121 Thread* self = Thread::Current();
122 {
123 MutexLock mu(self, *Locks::runtime_shutdown_lock_);
124 shutting_down_started_ = true;
125 while (threads_being_born_ > 0) {
Ian Rogersc604d732012-10-14 16:09:54 -0700126 shutdown_cond_->Wait(self);
Ian Rogers120f1c72012-09-28 17:17:10 -0700127 }
128 shutting_down_ = true;
129 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800130 Trace::Shutdown();
jeffhaob5e81852012-03-12 11:15:45 -0700131
Mathieu Chartiera6399032012-06-11 18:49:50 -0700132 // Make sure to let the GC complete if it is running.
Mathieu Chartier590fee92013-09-13 13:46:47 -0700133 heap_->WaitForGcToComplete(self);
Mathieu Chartier35883cc2012-11-13 14:08:12 -0800134 heap_->DeleteThreadPool();
Mathieu Chartiera6399032012-06-11 18:49:50 -0700135
Elliott Hughes5fe594f2011-09-08 12:33:17 -0700136 // Make sure our internal threads are dead before we start tearing down things they're using.
Elliott Hughese52e49b2012-04-02 16:05:44 -0700137 Dbg::StopJdwp();
Elliott Hughes5fe594f2011-09-08 12:33:17 -0700138 delete signal_catcher_;
139
Elliott Hughes038a8062011-09-18 14:12:41 -0700140 // Make sure all other non-daemon threads have terminated, and all daemon threads are suspended.
Elliott Hughes93e74e82011-09-13 11:07:03 -0700141 delete thread_list_;
Elliott Hughesc33a32b2011-10-11 18:18:07 -0700142 delete monitor_list_;
Carl Shapiro61e019d2011-07-14 16:53:09 -0700143 delete class_linker_;
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800144 delete heap_;
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700145 delete intern_table_;
Elliott Hughesc5f7c912011-08-18 14:00:42 -0700146 delete java_vm_;
Elliott Hughesc1674ed2011-08-25 18:09:09 -0700147 Thread::Shutdown();
Elliott Hughes7c6169d2012-05-02 16:11:48 -0700148 QuasiAtomic::Shutdown();
Sebastien Hertz4d4adb12013-07-24 16:14:19 +0200149 verifier::MethodVerifier::Shutdown();
Carl Shapiro4acf4642011-07-26 18:54:13 -0700150 // TODO: acquire a static mutex on Runtime to avoid racing.
Brian Carlstrom4a289ed2011-08-16 17:17:49 -0700151 CHECK(instance_ == NULL || instance_ == this);
Carl Shapiro4acf4642011-07-26 18:54:13 -0700152 instance_ = NULL;
Carl Shapiro61e019d2011-07-14 16:53:09 -0700153}
154
Elliott Hughese0918552011-10-28 17:18:29 -0700155struct AbortState {
156 void Dump(std::ostream& os) {
Ian Rogersf08e4732013-04-09 09:45:49 -0700157 if (gAborting > 1) {
Elliott Hughescac6cc72011-11-03 20:31:21 -0700158 os << "Runtime aborting --- recursively, so no thread-specific detail!\n";
159 return;
160 }
Ian Rogersf08e4732013-04-09 09:45:49 -0700161 gAborting++;
Elliott Hughese0918552011-10-28 17:18:29 -0700162 os << "Runtime aborting...\n";
Elliott Hughes6c7d2442012-02-01 18:40:47 -0800163 if (Runtime::Current() == NULL) {
164 os << "(Runtime does not yet exist!)\n";
165 return;
166 }
Elliott Hughese0918552011-10-28 17:18:29 -0700167 Thread* self = Thread::Current();
168 if (self == NULL) {
169 os << "(Aborting thread was not attached to runtime!)\n";
170 } else {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700171 // TODO: we're aborting and the ScopedObjectAccess may attempt to acquire the mutator_lock_
172 // which may block indefinitely if there's a misbehaving thread holding it exclusively.
173 // The code below should be made robust to this.
174 ScopedObjectAccess soa(self);
Ian Rogers2f7f9b62012-10-10 18:24:05 -0700175 os << "Aborting thread:\n";
Elliott Hughes899e7892012-01-24 14:57:32 -0800176 self->Dump(os);
177 if (self->IsExceptionPending()) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800178 ThrowLocation throw_location;
179 mirror::Throwable* exception = self->GetException(&throw_location);
180 os << "Pending exception " << PrettyTypeOf(exception)
Ian Rogersbc939662013-08-15 10:26:54 -0700181 << " thrown by '" << throw_location.Dump() << "'\n"
Ian Rogers62d6c772013-02-27 08:32:07 -0800182 << exception->Dump();
Elliott Hughes899e7892012-01-24 14:57:32 -0800183 }
Elliott Hughese0918552011-10-28 17:18:29 -0700184 }
Ian Rogers2f7f9b62012-10-10 18:24:05 -0700185 DumpAllThreads(os, self);
186 }
187
188 void DumpAllThreads(std::ostream& os, Thread* self) NO_THREAD_SAFETY_ANALYSIS {
189 bool tll_already_held = Locks::thread_list_lock_->IsExclusiveHeld(self);
190 bool ml_already_held = Locks::mutator_lock_->IsSharedHeld(self);
Ian Rogersfbd22912012-10-12 14:21:10 -0700191 if (!tll_already_held || !ml_already_held) {
192 os << "Dumping all threads without appropriate locks held:"
193 << (!tll_already_held ? " thread list lock" : "")
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700194 << (!ml_already_held ? " mutator lock" : "")
195 << "\n";
Ian Rogers2f7f9b62012-10-10 18:24:05 -0700196 }
Ian Rogersfbd22912012-10-12 14:21:10 -0700197 os << "All threads:\n";
198 Runtime::Current()->GetThreadList()->DumpLocked(os);
Elliott Hughese0918552011-10-28 17:18:29 -0700199 }
200};
201
Elliott Hughes8593fdb2012-04-21 20:53:44 -0700202void Runtime::Abort() {
Ian Rogersf08e4732013-04-09 09:45:49 -0700203 gAborting++; // set before taking any locks
Brian Carlstrom81b88712012-11-05 19:21:30 -0800204
Elliott Hughes131aef82012-01-27 11:53:35 -0800205 // Ensure that we don't have multiple threads trying to abort at once,
206 // which would result in significantly worse diagnostics.
Ian Rogers50b35e22012-10-04 10:09:15 -0700207 MutexLock mu(Thread::Current(), *Locks::abort_lock_);
Elliott Hughes131aef82012-01-27 11:53:35 -0800208
Elliott Hughesffe67362011-07-17 12:09:27 -0700209 // Get any pending output out of the way.
210 fflush(NULL);
211
212 // Many people have difficulty distinguish aborts from crashes,
213 // so be explicit.
Elliott Hughese0918552011-10-28 17:18:29 -0700214 AbortState state;
Elliott Hughes9ee5f9c2012-02-03 18:33:16 -0800215 LOG(INTERNAL_FATAL) << Dumpable<AbortState>(state);
Elliott Hughesffe67362011-07-17 12:09:27 -0700216
Elliott Hughes8593fdb2012-04-21 20:53:44 -0700217 // Call the abort hook if we have one.
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700218 if (Runtime::Current() != NULL && Runtime::Current()->abort_ != NULL) {
Elliott Hughes6c1c69e2012-04-23 16:12:51 -0700219 LOG(INTERNAL_FATAL) << "Calling abort hook...";
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700220 Runtime::Current()->abort_();
221 // notreached
Elliott Hughes6c1c69e2012-04-23 16:12:51 -0700222 LOG(INTERNAL_FATAL) << "Unexpectedly returned from abort hook!";
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700223 }
224
Elliott Hughesdd623db2013-06-11 11:20:23 -0700225#if defined(__GLIBC__)
Elliott Hughesd06a6c72012-05-30 17:59:06 -0700226 // TODO: we ought to be able to use pthread_kill(3) here (or abort(3),
227 // which POSIX defines in terms of raise(3), which POSIX defines in terms
228 // of pthread_kill(3)). On Linux, though, libcorkscrew can't unwind through
229 // libpthread, which means the stacks we dump would be useless. Calling
230 // tgkill(2) directly avoids that.
231 syscall(__NR_tgkill, getpid(), GetTid(), SIGABRT);
Elliott Hughesdd623db2013-06-11 11:20:23 -0700232 // TODO: LLVM installs it's own SIGABRT handler so exit to be safe... Can we disable that in LLVM?
233 // 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 -0800234 exit(1);
Elliott Hughesdd623db2013-06-11 11:20:23 -0700235#else
236 abort();
Elliott Hughesd06a6c72012-05-30 17:59:06 -0700237#endif
Elliott Hughesffe67362011-07-17 12:09:27 -0700238 // notreached
239}
240
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700241bool Runtime::PreZygoteFork() {
242 heap_->PreZygoteFork();
243 return true;
244}
245
Elliott Hughesbf86d042011-08-31 17:53:14 -0700246void Runtime::CallExitHook(jint status) {
247 if (exit_ != NULL) {
Elliott Hughes34e06962012-04-09 13:55:55 -0700248 ScopedThreadStateChange tsc(Thread::Current(), kNative);
Elliott Hughesbf86d042011-08-31 17:53:14 -0700249 exit_(status);
250 LOG(WARNING) << "Exit hook returned instead of exiting!";
251 }
252}
253
Brian Carlstrom8a436592011-08-15 21:27:23 -0700254// Parse a string of the form /[0-9]+[kKmMgG]?/, which is used to specify
255// memory sizes. [kK] indicates kilobytes, [mM] megabytes, and
256// [gG] gigabytes.
257//
258// "s" should point just past the "-Xm?" part of the string.
Brian Carlstrom8a436592011-08-15 21:27:23 -0700259// "div" specifies a divisor, e.g. 1024 if the value must be a multiple
260// of 1024.
261//
262// The spec says the -Xmx and -Xms options must be multiples of 1024. It
263// doesn't say anything about -Xss.
264//
265// Returns 0 (a useless size) if "s" is malformed or specifies a low or
266// non-evenly-divisible value.
267//
Elliott Hughesc1f143d2011-12-01 17:31:10 -0800268size_t ParseMemoryOption(const char* s, size_t div) {
Brian Carlstrom8a436592011-08-15 21:27:23 -0700269 // strtoul accepts a leading [+-], which we don't want,
270 // so make sure our string starts with a decimal digit.
271 if (isdigit(*s)) {
Elliott Hughes398f64b2012-03-26 18:05:48 -0700272 char* s2;
273 size_t val = strtoul(s, &s2, 10);
Brian Carlstrom8a436592011-08-15 21:27:23 -0700274 if (s2 != s) {
275 // s2 should be pointing just after the number.
276 // If this is the end of the string, the user
277 // has specified a number of bytes. Otherwise,
278 // there should be exactly one more character
279 // that specifies a multiplier.
280 if (*s2 != '\0') {
Brian Carlstromf734cf52011-08-17 16:28:14 -0700281 // The remainder of the string is either a single multiplier
282 // character, or nothing to indicate that the value is in
283 // bytes.
284 char c = *s2++;
285 if (*s2 == '\0') {
286 size_t mul;
287 if (c == '\0') {
288 mul = 1;
289 } else if (c == 'k' || c == 'K') {
290 mul = KB;
291 } else if (c == 'm' || c == 'M') {
292 mul = MB;
293 } else if (c == 'g' || c == 'G') {
294 mul = GB;
Brian Carlstrom8a436592011-08-15 21:27:23 -0700295 } else {
Brian Carlstromf734cf52011-08-17 16:28:14 -0700296 // Unknown multiplier character.
Brian Carlstrom8a436592011-08-15 21:27:23 -0700297 return 0;
298 }
Brian Carlstromf734cf52011-08-17 16:28:14 -0700299
300 if (val <= std::numeric_limits<size_t>::max() / mul) {
301 val *= mul;
302 } else {
303 // Clamp to a multiple of 1024.
304 val = std::numeric_limits<size_t>::max() & ~(1024-1);
305 }
306 } else {
307 // There's more than one character after the numeric part.
308 return 0;
309 }
Brian Carlstrom8a436592011-08-15 21:27:23 -0700310 }
311 // The man page says that a -Xm value must be a multiple of 1024.
312 if (val % div == 0) {
313 return val;
314 }
Carl Shapirofc322c72011-07-27 00:20:01 -0700315 }
316 }
Brian Carlstrom8a436592011-08-15 21:27:23 -0700317 return 0;
Carl Shapirofc322c72011-07-27 00:20:01 -0700318}
319
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800320size_t ParseIntegerOrDie(const std::string& s) {
321 std::string::size_type colon = s.find(':');
322 if (colon == std::string::npos) {
Elliott Hughesbb1e8f02011-10-18 14:14:25 -0700323 LOG(FATAL) << "Missing integer: " << s;
324 }
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800325 const char* begin = &s[colon + 1];
Elliott Hughesbb1e8f02011-10-18 14:14:25 -0700326 char* end;
327 size_t result = strtoul(begin, &end, 10);
328 if (begin == end || *end != '\0') {
329 LOG(FATAL) << "Failed to parse integer in: " << s;
330 }
331 return result;
332}
333
Mathieu Chartier6aa3df92013-09-17 15:17:28 -0700334void Runtime::SweepSystemWeaks(RootVisitor* visitor, void* arg) {
335 GetInternTable()->SweepInternTableWeaks(visitor, arg);
336 GetMonitorList()->SweepMonitorList(visitor, arg);
337 GetJavaVM()->SweepJniWeakGlobals(visitor, arg);
338}
339
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700340Runtime::ParsedOptions* Runtime::ParsedOptions::Create(const Options& options, bool ignore_unrecognized) {
Elliott Hughes90a33692011-08-30 13:27:07 -0700341 UniquePtr<ParsedOptions> parsed(new ParsedOptions());
Brian Carlstroma004aa92012-02-08 18:05:09 -0800342 const char* boot_class_path_string = getenv("BOOTCLASSPATH");
343 if (boot_class_path_string != NULL) {
344 parsed->boot_class_path_string_ = boot_class_path_string;
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700345 }
Brian Carlstroma004aa92012-02-08 18:05:09 -0800346 const char* class_path_string = getenv("CLASSPATH");
347 if (class_path_string != NULL) {
348 parsed->class_path_string_ = class_path_string;
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700349 }
Elliott Hughes67d92002012-03-26 15:08:51 -0700350 // -Xcheck:jni is off by default for regular builds but on by default in debug builds.
351 parsed->check_jni_ = kIsDebugBuild;
Elliott Hughes85d15452011-09-16 17:33:01 -0700352
Ian Rogers1d54e732013-05-02 21:10:01 -0700353 parsed->heap_initial_size_ = gc::Heap::kDefaultInitialSize;
354 parsed->heap_maximum_size_ = gc::Heap::kDefaultMaximumSize;
355 parsed->heap_min_free_ = gc::Heap::kDefaultMinFree;
356 parsed->heap_max_free_ = gc::Heap::kDefaultMaxFree;
357 parsed->heap_target_utilization_ = gc::Heap::kDefaultTargetUtilization;
Elliott Hughes6cf23882012-06-15 15:42:07 -0700358 parsed->heap_growth_limit_ = 0; // 0 means no growth limit.
Mathieu Chartier63a54342013-07-23 13:17:59 -0700359 // Default to number of processors minus one since the main GC thread also does work.
Mathieu Chartier2775ee42013-08-20 17:43:47 -0700360 parsed->parallel_gc_threads_ = sysconf(_SC_NPROCESSORS_CONF) - 1;
361 // Only the main GC thread, no workers.
362 parsed->conc_gc_threads_ = 0;
Mathieu Chartier0de9f732013-11-22 17:58:48 -0800363 // Default is CMS which is Sticky + Partial + Full CMS GC.
364 parsed->collector_type_ = gc::kCollectorTypeCMS;
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700365 parsed->stack_size_ = 0; // 0 means default.
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700366 parsed->max_spins_before_thin_lock_inflation_ = Monitor::kDefaultMaxSpinsBeforeThinLockInflation;
Mathieu Chartiere0a53e92013-08-05 10:17:40 -0700367 parsed->low_memory_mode_ = false;
Brian Carlstromf734cf52011-08-17 16:28:14 -0700368
Elliott Hughesd9c67be2012-02-02 19:54:06 -0800369 parsed->is_compiler_ = false;
Elliott Hughes9ca7a1f2011-10-11 14:29:52 -0700370 parsed->is_zygote_ = false;
Ian Rogers50ffee22012-11-20 11:47:44 -0800371 parsed->interpreter_only_ = false;
Anwar Ghuloum87183592013-08-14 12:12:19 -0700372 parsed->is_explicit_gc_disabled_ = false;
Elliott Hughes9ca7a1f2011-10-11 14:29:52 -0700373
Mathieu Chartier2775ee42013-08-20 17:43:47 -0700374 parsed->long_pause_log_threshold_ = gc::Heap::kDefaultLongPauseLogThreshold;
375 parsed->long_gc_log_threshold_ = gc::Heap::kDefaultLongGCLogThreshold;
Mathieu Chartierff3b24a2013-11-22 16:04:25 -0800376 parsed->dump_gc_performance_on_shutdown_ = false;
Mathieu Chartier2775ee42013-08-20 17:43:47 -0700377 parsed->ignore_max_footprint_ = false;
378
Elliott Hughesfc861622011-10-17 17:57:47 -0700379 parsed->lock_profiling_threshold_ = 0;
380 parsed->hook_is_sensitive_thread_ = NULL;
381
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700382 parsed->hook_vfprintf_ = vfprintf;
383 parsed->hook_exit_ = exit;
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700384 parsed->hook_abort_ = NULL; // We don't call abort(3) by default; see Runtime::Abort.
Brian Carlstrom8a436592011-08-15 21:27:23 -0700385
buzbeea024a062013-07-31 10:47:37 -0700386 parsed->compiler_filter_ = Runtime::kDefaultCompilerFilter;
387 parsed->huge_method_threshold_ = Runtime::kDefaultHugeMethodThreshold;
388 parsed->large_method_threshold_ = Runtime::kDefaultLargeMethodThreshold;
389 parsed->small_method_threshold_ = Runtime::kDefaultSmallMethodThreshold;
390 parsed->tiny_method_threshold_ = Runtime::kDefaultTinyMethodThreshold;
391 parsed->num_dex_methods_threshold_ = Runtime::kDefaultNumDexMethodsThreshold;
Anwar Ghuloum8447d842013-04-30 17:27:40 -0700392
Dragos Sbirlea7467ee02013-06-21 09:20:34 -0700393 parsed->sea_ir_mode_ = false;
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700394// gLogVerbosity.class_linker = true; // TODO: don't check this in!
395// gLogVerbosity.compiler = true; // TODO: don't check this in!
Anwar Ghuloum75a43f12013-08-13 17:22:14 -0700396// gLogVerbosity.verifier = true; // TODO: don't check this in!
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700397// gLogVerbosity.heap = true; // TODO: don't check this in!
398// gLogVerbosity.gc = true; // TODO: don't check this in!
399// gLogVerbosity.jdwp = true; // TODO: don't check this in!
400// gLogVerbosity.jni = true; // TODO: don't check this in!
401// gLogVerbosity.monitor = true; // TODO: don't check this in!
402// gLogVerbosity.startup = true; // TODO: don't check this in!
403// gLogVerbosity.third_party_jni = true; // TODO: don't check this in!
404// gLogVerbosity.threads = true; // TODO: don't check this in!
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800405
jeffhaob5e81852012-03-12 11:15:45 -0700406 parsed->method_trace_ = false;
407 parsed->method_trace_file_ = "/data/method-trace-file.bin";
408 parsed->method_trace_file_size_ = 10 * MB;
409
Brian Carlstrom8a436592011-08-15 21:27:23 -0700410 for (size_t i = 0; i < options.size(); ++i) {
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800411 const std::string option(options[i].first);
Brian Carlstrom0796af02011-10-12 14:31:45 -0700412 if (true && options[0].first == "-Xzygote") {
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700413 LOG(INFO) << "option[" << i << "]=" << option;
414 }
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800415 if (StartsWith(option, "-Xbootclasspath:")) {
Brian Carlstroma004aa92012-02-08 18:05:09 -0800416 parsed->boot_class_path_string_ = option.substr(strlen("-Xbootclasspath:")).data();
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700417 } else if (option == "-classpath" || option == "-cp") {
418 // TODO: support -Djava.class.path
419 i++;
420 if (i == options.size()) {
421 // TODO: usage
422 LOG(FATAL) << "Missing required class path value for " << option;
423 return NULL;
424 }
Brian Carlstroma004aa92012-02-08 18:05:09 -0800425 const StringPiece& value = options[i].first;
426 parsed->class_path_string_ = value.data();
427 } else if (option == "bootclasspath") {
428 parsed->boot_class_path_
429 = reinterpret_cast<const std::vector<const DexFile*>*>(options[i].second);
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800430 } else if (StartsWith(option, "-Ximage:")) {
Brian Carlstroma004aa92012-02-08 18:05:09 -0800431 parsed->image_ = option.substr(strlen("-Ximage:")).data();
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800432 } else if (StartsWith(option, "-Xcheck:jni")) {
Elliott Hughes515a5bc2011-08-17 11:08:34 -0700433 parsed->check_jni_ = true;
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800434 } else if (StartsWith(option, "-Xrunjdwp:") || StartsWith(option, "-agentlib:jdwp=")) {
435 std::string tail(option.substr(option[1] == 'X' ? 10 : 15));
Elliott Hughes3bb81562011-10-21 18:52:59 -0700436 if (tail == "help" || !Dbg::ParseJdwpOptions(tail)) {
437 LOG(FATAL) << "Example: -Xrunjdwp:transport=dt_socket,address=8000,server=y\n"
438 << "Example: -Xrunjdwp:transport=dt_socket,address=localhost:6500,server=n";
439 return NULL;
440 }
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800441 } else if (StartsWith(option, "-Xms")) {
442 size_t size = ParseMemoryOption(option.substr(strlen("-Xms")).c_str(), 1024);
Brian Carlstromf734cf52011-08-17 16:28:14 -0700443 if (size == 0) {
444 if (ignore_unrecognized) {
445 continue;
446 }
Brian Carlstrom4a289ed2011-08-16 17:17:49 -0700447 // TODO: usage
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700448 LOG(FATAL) << "Failed to parse " << option;
Brian Carlstromf734cf52011-08-17 16:28:14 -0700449 return NULL;
450 }
451 parsed->heap_initial_size_ = size;
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800452 } else if (StartsWith(option, "-Xmx")) {
453 size_t size = ParseMemoryOption(option.substr(strlen("-Xmx")).c_str(), 1024);
Brian Carlstromf734cf52011-08-17 16:28:14 -0700454 if (size == 0) {
455 if (ignore_unrecognized) {
456 continue;
457 }
Brian Carlstrom4a289ed2011-08-16 17:17:49 -0700458 // TODO: usage
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700459 LOG(FATAL) << "Failed to parse " << option;
Brian Carlstromf734cf52011-08-17 16:28:14 -0700460 return NULL;
461 }
462 parsed->heap_maximum_size_ = size;
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800463 } else if (StartsWith(option, "-XX:HeapGrowthLimit=")) {
464 size_t size = ParseMemoryOption(option.substr(strlen("-XX:HeapGrowthLimit=")).c_str(), 1024);
jeffhaoc1160702011-10-27 15:48:45 -0700465 if (size == 0) {
466 if (ignore_unrecognized) {
467 continue;
468 }
469 // TODO: usage
470 LOG(FATAL) << "Failed to parse " << option;
471 return NULL;
472 }
473 parsed->heap_growth_limit_ = size;
Mathieu Chartier0051be62012-10-12 17:47:11 -0700474 } else if (StartsWith(option, "-XX:HeapMinFree=")) {
475 size_t size = ParseMemoryOption(option.substr(strlen("-XX:HeapMinFree=")).c_str(), 1024);
476 if (size == 0) {
477 if (ignore_unrecognized) {
478 continue;
479 }
480 // TODO: usage
481 LOG(FATAL) << "Failed to parse " << option;
482 return NULL;
483 }
484 parsed->heap_min_free_ = size;
485 } else if (StartsWith(option, "-XX:HeapMaxFree=")) {
486 size_t size = ParseMemoryOption(option.substr(strlen("-XX:HeapMaxFree=")).c_str(), 1024);
487 if (size == 0) {
488 if (ignore_unrecognized) {
489 continue;
490 }
491 // TODO: usage
492 LOG(FATAL) << "Failed to parse " << option;
493 return NULL;
494 }
495 parsed->heap_max_free_ = size;
496 } else if (StartsWith(option, "-XX:HeapTargetUtilization=")) {
497 std::istringstream iss(option.substr(strlen("-XX:HeapTargetUtilization=")));
498 double value;
499 iss >> value;
500 // Ensure that we have a value, there was no cruft after it and it satisfies a sensible range.
Brian Carlstrombd86bcc2013-03-10 20:26:16 -0700501 const bool sane_val = iss.eof() && (value >= 0.1) && (value <= 0.9);
Mathieu Chartier0051be62012-10-12 17:47:11 -0700502 if (!sane_val) {
503 if (ignore_unrecognized) {
504 continue;
505 }
506 LOG(FATAL) << "Invalid option '" << option << "'";
507 return NULL;
508 }
509 parsed->heap_target_utilization_ = value;
Mathieu Chartier2775ee42013-08-20 17:43:47 -0700510 } else if (StartsWith(option, "-XX:ParallelGCThreads=")) {
511 parsed->parallel_gc_threads_ =
512 ParseMemoryOption(option.substr(strlen("-XX:ParallelGCThreads=")).c_str(), 1024);
513 } else if (StartsWith(option, "-XX:ConcGCThreads=")) {
514 parsed->conc_gc_threads_ =
515 ParseMemoryOption(option.substr(strlen("-XX:ConcGCThreads=")).c_str(), 1024);
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800516 } else if (StartsWith(option, "-Xss")) {
517 size_t size = ParseMemoryOption(option.substr(strlen("-Xss")).c_str(), 1);
Brian Carlstromf734cf52011-08-17 16:28:14 -0700518 if (size == 0) {
519 if (ignore_unrecognized) {
520 continue;
521 }
Brian Carlstrom4a289ed2011-08-16 17:17:49 -0700522 // TODO: usage
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700523 LOG(FATAL) << "Failed to parse " << option;
Brian Carlstromf734cf52011-08-17 16:28:14 -0700524 return NULL;
525 }
526 parsed->stack_size_ = size;
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700527 } else if (StartsWith(option, "-XX:MaxSpinsBeforeThinLockInflation=")) {
528 parsed->max_spins_before_thin_lock_inflation_ =
529 strtoul(option.substr(strlen("-XX:MaxSpinsBeforeThinLockInflation=")).c_str(),
530 nullptr, 10);
Mathieu Chartier2775ee42013-08-20 17:43:47 -0700531 } else if (option == "-XX:LongPauseLogThreshold") {
532 parsed->long_pause_log_threshold_ =
533 ParseMemoryOption(option.substr(strlen("-XX:LongPauseLogThreshold=")).c_str(), 1024);
534 } else if (option == "-XX:LongGCLogThreshold") {
535 parsed->long_gc_log_threshold_ =
536 ParseMemoryOption(option.substr(strlen("-XX:LongGCLogThreshold")).c_str(), 1024);
Mathieu Chartierff3b24a2013-11-22 16:04:25 -0800537 } else if (option == "-XX:DumpGCPerformanceOnShutdown") {
538 parsed->dump_gc_performance_on_shutdown_ = true;
Mathieu Chartier2775ee42013-08-20 17:43:47 -0700539 } else if (option == "-XX:IgnoreMaxFootprint") {
540 parsed->ignore_max_footprint_ = true;
Mathieu Chartiere0a53e92013-08-05 10:17:40 -0700541 } else if (option == "-XX:LowMemoryMode") {
542 parsed->low_memory_mode_ = true;
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800543 } else if (StartsWith(option, "-D")) {
544 parsed->properties_.push_back(option.substr(strlen("-D")));
545 } else if (StartsWith(option, "-Xjnitrace:")) {
546 parsed->jni_trace_ = option.substr(strlen("-Xjnitrace:"));
Brian Carlstrom5de8fe52011-10-16 14:10:09 -0700547 } else if (option == "compiler") {
Elliott Hughesd9c67be2012-02-02 19:54:06 -0800548 parsed->is_compiler_ = true;
Elliott Hughes9ca7a1f2011-10-11 14:29:52 -0700549 } else if (option == "-Xzygote") {
550 parsed->is_zygote_ = true;
Ian Rogers50ffee22012-11-20 11:47:44 -0800551 } else if (option == "-Xint") {
552 parsed->interpreter_only_ = true;
Mathieu Chartier069387a2012-06-18 12:01:01 -0700553 } else if (StartsWith(option, "-Xgc:")) {
554 std::vector<std::string> gc_options;
555 Split(option.substr(strlen("-Xgc:")), ',', gc_options);
556 for (size_t i = 0; i < gc_options.size(); ++i) {
Mathieu Chartier0de9f732013-11-22 17:58:48 -0800557 if (gc_options[i] == "MS" || gc_options[i] == "nonconcurrent") {
558 parsed->collector_type_ = gc::kCollectorTypeMS;
559 } else if (gc_options[i] == "CMS" || gc_options[i] == "concurrent") {
560 parsed->collector_type_ = gc::kCollectorTypeCMS;
561 } else if (gc_options[i] == "SS") {
562 parsed->collector_type_ = gc::kCollectorTypeSS;
Mathieu Chartier069387a2012-06-18 12:01:01 -0700563 } else {
564 LOG(WARNING) << "Ignoring unknown -Xgc option: " << gc_options[i];
565 }
566 }
Anwar Ghuloum87183592013-08-14 12:12:19 -0700567 } else if (option == "-XX:+DisableExplicitGC") {
568 parsed->is_explicit_gc_disabled_ = true;
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800569 } else if (StartsWith(option, "-verbose:")) {
Elliott Hughes0af55432011-08-17 18:37:28 -0700570 std::vector<std::string> verbose_options;
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800571 Split(option.substr(strlen("-verbose:")), ',', verbose_options);
Elliott Hughes0af55432011-08-17 18:37:28 -0700572 for (size_t i = 0; i < verbose_options.size(); ++i) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800573 if (verbose_options[i] == "class") {
574 gLogVerbosity.class_linker = true;
Anwar Ghuloum75a43f12013-08-13 17:22:14 -0700575 } else if (verbose_options[i] == "verifier") {
576 gLogVerbosity.verifier = true;
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800577 } else if (verbose_options[i] == "compiler") {
578 gLogVerbosity.compiler = true;
579 } else if (verbose_options[i] == "heap") {
580 gLogVerbosity.heap = true;
581 } else if (verbose_options[i] == "gc") {
582 gLogVerbosity.gc = true;
583 } else if (verbose_options[i] == "jdwp") {
584 gLogVerbosity.jdwp = true;
585 } else if (verbose_options[i] == "jni") {
586 gLogVerbosity.jni = true;
587 } else if (verbose_options[i] == "monitor") {
588 gLogVerbosity.monitor = true;
589 } else if (verbose_options[i] == "startup") {
590 gLogVerbosity.startup = true;
591 } else if (verbose_options[i] == "third-party-jni") {
592 gLogVerbosity.third_party_jni = true;
593 } else if (verbose_options[i] == "threads") {
594 gLogVerbosity.threads = true;
595 } else {
596 LOG(WARNING) << "Ignoring unknown -verbose option: " << verbose_options[i];
597 }
Elliott Hughes0af55432011-08-17 18:37:28 -0700598 }
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800599 } else if (StartsWith(option, "-Xjnigreflimit:")) {
Elliott Hughes2010a602013-07-02 14:17:23 -0700600 // Silently ignored for backwards compatibility.
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800601 } else if (StartsWith(option, "-Xlockprofthreshold:")) {
Elliott Hughesbb1e8f02011-10-18 14:14:25 -0700602 parsed->lock_profiling_threshold_ = ParseIntegerOrDie(option);
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800603 } else if (StartsWith(option, "-Xstacktracefile:")) {
Elliott Hughes206c20d2012-06-28 11:05:37 -0700604 parsed->stack_trace_file_ = option.substr(strlen("-Xstacktracefile:"));
Elliott Hughesfc861622011-10-17 17:57:47 -0700605 } else if (option == "sensitiveThread") {
Ian Rogers1b09b092012-08-20 15:35:52 -0700606 parsed->hook_is_sensitive_thread_ = reinterpret_cast<bool (*)()>(const_cast<void*>(options[i].second));
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700607 } else if (option == "vfprintf") {
Ian Rogers1b09b092012-08-20 15:35:52 -0700608 parsed->hook_vfprintf_ =
609 reinterpret_cast<int (*)(FILE *, const char*, va_list)>(const_cast<void*>(options[i].second));
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700610 } else if (option == "exit") {
Ian Rogers1b09b092012-08-20 15:35:52 -0700611 parsed->hook_exit_ = reinterpret_cast<void(*)(jint)>(const_cast<void*>(options[i].second));
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700612 } else if (option == "abort") {
Ian Rogers1b09b092012-08-20 15:35:52 -0700613 parsed->hook_abort_ = reinterpret_cast<void(*)()>(const_cast<void*>(options[i].second));
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700614 } else if (option == "host-prefix") {
615 parsed->host_prefix_ = reinterpret_cast<const char*>(options[i].second);
Elliott Hughesb3e66df2012-01-12 14:49:18 -0800616 } else if (option == "-Xgenregmap" || option == "-Xgc:precise") {
617 // We silently ignore these for backwards compatibility.
jeffhaob5e81852012-03-12 11:15:45 -0700618 } else if (option == "-Xmethod-trace") {
619 parsed->method_trace_ = true;
620 } else if (StartsWith(option, "-Xmethod-trace-file:")) {
621 parsed->method_trace_file_ = option.substr(strlen("-Xmethod-trace-file:"));
622 } else if (StartsWith(option, "-Xmethod-trace-file-size:")) {
623 parsed->method_trace_file_size_ = ParseIntegerOrDie(option);
Elliott Hughese119a362012-05-22 17:37:06 -0700624 } else if (option == "-Xprofile:threadcpuclock") {
625 Trace::SetDefaultClockSource(kProfilerClockSourceThreadCpu);
626 } else if (option == "-Xprofile:wallclock") {
627 Trace::SetDefaultClockSource(kProfilerClockSourceWall);
628 } else if (option == "-Xprofile:dualclock") {
629 Trace::SetDefaultClockSource(kProfilerClockSourceDual);
buzbeea024a062013-07-31 10:47:37 -0700630 } else if (option == "-compiler-filter:interpret-only") {
631 parsed->compiler_filter_ = kInterpretOnly;
buzbeea024a062013-07-31 10:47:37 -0700632 } else if (option == "-compiler-filter:space") {
633 parsed->compiler_filter_ = kSpace;
634 } else if (option == "-compiler-filter:balanced") {
635 parsed->compiler_filter_ = kBalanced;
636 } else if (option == "-compiler-filter:speed") {
637 parsed->compiler_filter_ = kSpeed;
buzbeefe9ca402013-08-21 09:48:11 -0700638 } else if (option == "-compiler-filter:everything") {
639 parsed->compiler_filter_ = kEverything;
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700640 } else if (option == "-sea_ir") {
Dragos Sbirlea7467ee02013-06-21 09:20:34 -0700641 parsed->sea_ir_mode_ = true;
buzbeea024a062013-07-31 10:47:37 -0700642 } else if (StartsWith(option, "-huge-method-max:")) {
643 parsed->huge_method_threshold_ = ParseIntegerOrDie(option);
644 } else if (StartsWith(option, "-large-method-max:")) {
645 parsed->large_method_threshold_ = ParseIntegerOrDie(option);
646 } else if (StartsWith(option, "-small-method-max:")) {
647 parsed->small_method_threshold_ = ParseIntegerOrDie(option);
648 } else if (StartsWith(option, "-tiny-method-max:")) {
649 parsed->tiny_method_threshold_ = ParseIntegerOrDie(option);
650 } else if (StartsWith(option, "-num-dex-methods-max:")) {
651 parsed->num_dex_methods_threshold_ = ParseIntegerOrDie(option);
Brian Carlstrom8a436592011-08-15 21:27:23 -0700652 } else {
653 if (!ignore_unrecognized) {
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700654 // TODO: print usage via vfprintf
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700655 LOG(ERROR) << "Unrecognized option " << option;
656 // TODO: this should exit, but for now tolerate unknown options
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700657 // return NULL;
Brian Carlstrom8a436592011-08-15 21:27:23 -0700658 }
659 }
660 }
661
Brian Carlstromfb67b722013-06-24 23:41:51 -0700662 // If a reference to the dalvik core.jar snuck in, replace it with
663 // the art specific version. This can happen with on device
664 // boot.art/boot.oat generation by GenerateImage which relies on the
665 // value of BOOTCLASSPATH.
666 std::string core_jar("/core.jar");
667 size_t core_jar_pos = parsed->boot_class_path_string_.find(core_jar);
668 if (core_jar_pos != std::string::npos) {
669 parsed->boot_class_path_string_.replace(core_jar_pos, core_jar.size(), "/core-libart.jar");
670 }
671
Brian Carlstrom223f20f2012-02-04 23:06:55 -0800672 if (!parsed->is_compiler_ && parsed->image_.empty()) {
673 parsed->image_ += GetAndroidRoot();
674 parsed->image_ += "/framework/boot.art";
Brian Carlstrom5de8fe52011-10-16 14:10:09 -0700675 }
jeffhaoc1160702011-10-27 15:48:45 -0700676 if (parsed->heap_growth_limit_ == 0) {
677 parsed->heap_growth_limit_ = parsed->heap_maximum_size_;
678 }
Brian Carlstrom5de8fe52011-10-16 14:10:09 -0700679
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700680 return parsed.release();
Brian Carlstrom8a436592011-08-15 21:27:23 -0700681}
682
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700683bool Runtime::Create(const Options& options, bool ignore_unrecognized) {
Carl Shapiro2ed144c2011-07-26 16:52:08 -0700684 // TODO: acquire a static mutex on Runtime to avoid racing.
685 if (Runtime::instance_ != NULL) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700686 return false;
Carl Shapiro2ed144c2011-07-26 16:52:08 -0700687 }
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700688 InitLogging(NULL); // Calls Locks::Init() as a side effect.
Elliott Hughesdcc24742011-09-07 14:02:44 -0700689 instance_ = new Runtime;
690 if (!instance_->Init(options, ignore_unrecognized)) {
691 delete instance_;
692 instance_ = NULL;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700693 return false;
Carl Shapiro61e019d2011-07-14 16:53:09 -0700694 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700695 return true;
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700696}
Elliott Hughes0af55432011-08-17 18:37:28 -0700697
Brian Carlstromce888532013-10-10 00:32:58 -0700698jobject CreateSystemClassLoader() {
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800699 if (Runtime::Current()->UseCompileTimeClassPath()) {
Brian Carlstromce888532013-10-10 00:32:58 -0700700 return NULL;
Brian Carlstromaded5f72011-10-07 17:15:04 -0700701 }
702
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700703 ScopedObjectAccess soa(Thread::Current());
Mathieu Chartierc528dba2013-11-26 12:00:11 -0800704 ClassLinker* cl = Runtime::Current()->GetClassLinker();
Brian Carlstromaded5f72011-10-07 17:15:04 -0700705
Mathieu Chartierc528dba2013-11-26 12:00:11 -0800706 SirtRef<mirror::Class> class_loader_class(
707 soa.Self(), soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_ClassLoader));
708 CHECK(cl->EnsureInitialized(class_loader_class, true, true));
Brian Carlstromaded5f72011-10-07 17:15:04 -0700709
Brian Carlstromea46f952013-07-30 01:26:50 -0700710 mirror::ArtMethod* getSystemClassLoader =
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800711 class_loader_class->FindDirectMethod("getSystemClassLoader", "()Ljava/lang/ClassLoader;");
Brian Carlstromdf143242011-10-10 18:05:34 -0700712 CHECK(getSystemClassLoader != NULL);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700713
Jeff Hao5d917302013-02-27 17:57:33 -0800714 JValue result;
Mathieu Chartierc528dba2013-11-26 12:00:11 -0800715 ArgArray arg_array(nullptr, 0);
Jeff Hao6474d192013-03-26 14:08:09 -0700716 InvokeWithArgArray(soa, getSystemClassLoader, &arg_array, &result, 'L');
Mathieu Chartierc528dba2013-11-26 12:00:11 -0800717 SirtRef<mirror::ClassLoader> class_loader(soa.Self(),
718 down_cast<mirror::ClassLoader*>(result.GetL()));
719 CHECK(class_loader.get() != nullptr);
Brian Carlstromce888532013-10-10 00:32:58 -0700720 JNIEnv* env = soa.Self()->GetJniEnv();
Mathieu Chartierc528dba2013-11-26 12:00:11 -0800721 ScopedLocalRef<jobject> system_class_loader(env,
722 soa.AddLocalReference<jobject>(class_loader.get()));
723 CHECK(system_class_loader.get() != nullptr);
Brian Carlstromce888532013-10-10 00:32:58 -0700724
Mathieu Chartierc528dba2013-11-26 12:00:11 -0800725 soa.Self()->SetClassLoaderOverride(class_loader.get());
Ian Rogers365c1022012-06-22 15:05:28 -0700726
Mathieu Chartierc528dba2013-11-26 12:00:11 -0800727 SirtRef<mirror::Class> thread_class(soa.Self(),
728 soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_Thread));
729 CHECK(cl->EnsureInitialized(thread_class, true, true));
Ian Rogers365c1022012-06-22 15:05:28 -0700730
Mathieu Chartierc528dba2013-11-26 12:00:11 -0800731 mirror::ArtField* contextClassLoader =
732 thread_class->FindDeclaredInstanceField("contextClassLoader", "Ljava/lang/ClassLoader;");
Jesse Wilson1b2b2f22011-11-22 11:47:44 -0500733 CHECK(contextClassLoader != NULL);
Ian Rogers365c1022012-06-22 15:05:28 -0700734
Mathieu Chartierc528dba2013-11-26 12:00:11 -0800735 contextClassLoader->SetObject(soa.Self()->GetPeer(), class_loader.get());
Brian Carlstromce888532013-10-10 00:32:58 -0700736
737 return env->NewGlobalRef(system_class_loader.get());
Brian Carlstromaded5f72011-10-07 17:15:04 -0700738}
739
Brian Carlstrombd86bcc2013-03-10 20:26:16 -0700740bool Runtime::Start() {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800741 VLOG(startup) << "Runtime::Start entering";
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700742
743 CHECK(host_prefix_.empty()) << host_prefix_;
744
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700745 // Restore main thread state to kNative as expected by native code.
Ian Rogersa436fde2013-08-27 23:34:06 -0700746 Thread* self = Thread::Current();
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700747 self->TransitionFromRunnableToSuspended(kNative);
748
Brian Carlstrom5d40f182011-09-26 22:29:18 -0700749 started_ = true;
750
Brian Carlstromae826982011-11-09 01:33:42 -0800751 // InitNativeMethods needs to be after started_ so that the classes
752 // it touches will have methods linked to the oat file if necessary.
753 InitNativeMethods();
754
Ian Rogers365c1022012-06-22 15:05:28 -0700755 // Initialize well known thread group values that may be accessed threads while attaching.
756 InitThreadGroups(self);
757
Jesse Wilson9a6bae82011-11-14 14:57:30 -0500758 Thread::FinishStartup();
759
Brian Carlstrombd86bcc2013-03-10 20:26:16 -0700760 if (is_zygote_) {
761 if (!InitZygote()) {
762 return false;
763 }
764 } else {
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700765 DidForkFromZygote();
766 }
Elliott Hughes9ca7a1f2011-10-11 14:29:52 -0700767
Elliott Hughes85d15452011-09-16 17:33:01 -0700768 StartDaemonThreads();
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700769
Brian Carlstromce888532013-10-10 00:32:58 -0700770 system_class_loader_ = CreateSystemClassLoader();
Brian Carlstromaded5f72011-10-07 17:15:04 -0700771
Elliott Hughes225f5a12012-06-11 11:23:48 -0700772 self->GetJniEnv()->locals.AssertEmpty();
Elliott Hughes726079d2011-10-07 18:43:44 -0700773
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800774 VLOG(startup) << "Runtime::Start exiting";
Mathieu Chartier7664f5c2012-06-08 18:15:32 -0700775
776 finished_starting_ = true;
Brian Carlstrombd86bcc2013-03-10 20:26:16 -0700777
778 return true;
Elliott Hughes85d15452011-09-16 17:33:01 -0700779}
780
Ian Rogers120f1c72012-09-28 17:17:10 -0700781void Runtime::EndThreadBirth() EXCLUSIVE_LOCKS_REQUIRED(Locks::runtime_shutdown_lock_) {
782 DCHECK_GT(threads_being_born_, 0U);
783 threads_being_born_--;
784 if (shutting_down_started_ && threads_being_born_ == 0) {
Ian Rogersc604d732012-10-14 16:09:54 -0700785 shutdown_cond_->Broadcast(Thread::Current());
Ian Rogers120f1c72012-09-28 17:17:10 -0700786 }
787}
788
Brian Carlstrombd86bcc2013-03-10 20:26:16 -0700789// Do zygote-mode-only initialization.
790bool Runtime::InitZygote() {
791 // zygote goes into its own process group
Brian Carlstromb1eba212013-07-17 18:07:19 -0700792 setpgid(0, 0);
Brian Carlstrombd86bcc2013-03-10 20:26:16 -0700793
794 // See storage config details at http://source.android.com/tech/storage/
795 // Create private mount namespace shared by all children
796 if (unshare(CLONE_NEWNS) == -1) {
797 PLOG(WARNING) << "Failed to unshare()";
798 return false;
799 }
800
801 // Mark rootfs as being a slave so that changes from default
802 // namespace only flow into our children.
803 if (mount("rootfs", "/", NULL, (MS_SLAVE | MS_REC), NULL) == -1) {
804 PLOG(WARNING) << "Failed to mount() rootfs as MS_SLAVE";
805 return false;
806 }
807
808 // Create a staging tmpfs that is shared by our children; they will
809 // bind mount storage into their respective private namespaces, which
810 // are isolated from each other.
811 const char* target_base = getenv("EMULATED_STORAGE_TARGET");
812 if (target_base != NULL) {
813 if (mount("tmpfs", target_base, "tmpfs", MS_NOSUID | MS_NODEV,
Jeff Sharkey52cd1e82013-09-17 16:25:12 -0700814 "uid=0,gid=1028,mode=0751") == -1) {
Brian Carlstrombd86bcc2013-03-10 20:26:16 -0700815 LOG(WARNING) << "Failed to mount tmpfs to " << target_base;
816 return false;
817 }
818 }
819
820 return true;
821}
822
Brian Carlstromcaabb1b2011-10-11 18:09:13 -0700823void Runtime::DidForkFromZygote() {
Brian Carlstromcaabb1b2011-10-11 18:09:13 -0700824 is_zygote_ = false;
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700825
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700826 // Create the thread pool.
827 heap_->CreateThreadPool();
828
Brian Carlstromcaabb1b2011-10-11 18:09:13 -0700829 StartSignalCatcher();
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700830
831 // Start the JDWP thread. If the command-line debugger flags specified "suspend=y",
832 // this will pause the runtime, so we probably want this to come last.
833 Dbg::StartJdwp();
Brian Carlstromcaabb1b2011-10-11 18:09:13 -0700834}
835
836void Runtime::StartSignalCatcher() {
837 if (!is_zygote_) {
Elliott Hughes94ce37a2011-10-18 15:07:48 -0700838 signal_catcher_ = new SignalCatcher(stack_trace_file_);
Brian Carlstromcaabb1b2011-10-11 18:09:13 -0700839 }
840}
841
Mathieu Chartier590fee92013-09-13 13:46:47 -0700842bool Runtime::IsShuttingDown(Thread* self) {
843 MutexLock mu(self, *Locks::runtime_shutdown_lock_);
844 return IsShuttingDownLocked();
845}
846
Elliott Hughes85d15452011-09-16 17:33:01 -0700847void Runtime::StartDaemonThreads() {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800848 VLOG(startup) << "Runtime::StartDaemonThreads entering";
Elliott Hughes85d15452011-09-16 17:33:01 -0700849
Elliott Hughes719b3232011-09-25 17:42:19 -0700850 Thread* self = Thread::Current();
Brian Carlstromaded5f72011-10-07 17:15:04 -0700851
852 // Must be in the kNative state for calling native methods.
Ian Rogers50b35e22012-10-04 10:09:15 -0700853 CHECK_EQ(self->GetState(), kNative);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700854
Elliott Hughes719b3232011-09-25 17:42:19 -0700855 JNIEnv* env = self->GetJniEnv();
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700856 env->CallStaticVoidMethod(WellKnownClasses::java_lang_Daemons,
857 WellKnownClasses::java_lang_Daemons_start);
858 if (env->ExceptionCheck()) {
859 env->ExceptionDescribe();
860 LOG(FATAL) << "Error starting java.lang.Daemons";
861 }
Elliott Hughes9ca7a1f2011-10-11 14:29:52 -0700862
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800863 VLOG(startup) << "Runtime::StartDaemonThreads exiting";
Carl Shapiro61e019d2011-07-14 16:53:09 -0700864}
865
Elliott Hughes0af55432011-08-17 18:37:28 -0700866bool Runtime::Init(const Options& raw_options, bool ignore_unrecognized) {
Elliott Hughesc1674ed2011-08-25 18:09:09 -0700867 CHECK_EQ(sysconf(_SC_PAGE_SIZE), kPageSize);
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700868
Elliott Hughes90a33692011-08-30 13:27:07 -0700869 UniquePtr<ParsedOptions> options(ParsedOptions::Create(raw_options, ignore_unrecognized));
870 if (options.get() == NULL) {
Brian Carlstrome24fa612011-09-29 00:53:55 -0700871 LOG(ERROR) << "Failed to parse options";
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700872 return false;
873 }
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800874 VLOG(startup) << "Runtime::Init -verbose:startup enabled";
Elliott Hughes7ede61e2011-09-14 18:18:06 -0700875
Elliott Hughes7c6169d2012-05-02 16:11:48 -0700876 QuasiAtomic::Startup();
877
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800878 Monitor::Init(options->lock_profiling_threshold_, options->hook_is_sensitive_thread_);
Elliott Hughes32d6e1e2011-10-11 14:47:44 -0700879
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700880 host_prefix_ = options->host_prefix_;
Brian Carlstroma004aa92012-02-08 18:05:09 -0800881 boot_class_path_string_ = options->boot_class_path_string_;
882 class_path_string_ = options->class_path_string_;
Elliott Hughes7ede61e2011-09-14 18:18:06 -0700883 properties_ = options->properties_;
884
Elliott Hughesd9c67be2012-02-02 19:54:06 -0800885 is_compiler_ = options->is_compiler_;
Elliott Hughes9ca7a1f2011-10-11 14:29:52 -0700886 is_zygote_ = options->is_zygote_;
Anwar Ghuloum87183592013-08-14 12:12:19 -0700887 is_explicit_gc_disabled_ = options->is_explicit_gc_disabled_;
Elliott Hughes9ca7a1f2011-10-11 14:29:52 -0700888
buzbeea024a062013-07-31 10:47:37 -0700889 compiler_filter_ = options->compiler_filter_;
890 huge_method_threshold_ = options->huge_method_threshold_;
891 large_method_threshold_ = options->large_method_threshold_;
892 small_method_threshold_ = options->small_method_threshold_;
893 tiny_method_threshold_ = options->tiny_method_threshold_;
894 num_dex_methods_threshold_ = options->num_dex_methods_threshold_;
Anwar Ghuloum8447d842013-04-30 17:27:40 -0700895
Dragos Sbirlea7467ee02013-06-21 09:20:34 -0700896 sea_ir_mode_ = options->sea_ir_mode_;
Elliott Hughes0af55432011-08-17 18:37:28 -0700897 vfprintf_ = options->hook_vfprintf_;
898 exit_ = options->hook_exit_;
899 abort_ = options->hook_abort_;
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700900
Elliott Hughesbe759c62011-09-08 19:38:21 -0700901 default_stack_size_ = options->stack_size_;
Elliott Hughes94ce37a2011-10-18 15:07:48 -0700902 stack_trace_file_ = options->stack_trace_file_;
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700903
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700904 max_spins_before_thin_lock_inflation_ = options->max_spins_before_thin_lock_inflation_;
905
Elliott Hughesc33a32b2011-10-11 18:18:07 -0700906 monitor_list_ = new MonitorList;
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800907 thread_list_ = new ThreadList;
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700908 intern_table_ = new InternTable;
909
Logan Chiendd361c92012-04-10 23:40:37 +0800910
Ian Rogers62d6c772013-02-27 08:32:07 -0800911 if (options->interpreter_only_) {
912 GetInstrumentation()->ForceInterpretOnly();
913 }
914
Ian Rogers1d54e732013-05-02 21:10:01 -0700915 heap_ = new gc::Heap(options->heap_initial_size_,
916 options->heap_growth_limit_,
917 options->heap_min_free_,
918 options->heap_max_free_,
919 options->heap_target_utilization_,
920 options->heap_maximum_size_,
921 options->image_,
Mathieu Chartier0de9f732013-11-22 17:58:48 -0800922 options->collector_type_,
Mathieu Chartier2775ee42013-08-20 17:43:47 -0700923 options->parallel_gc_threads_,
924 options->conc_gc_threads_,
925 options->low_memory_mode_,
926 options->long_pause_log_threshold_,
927 options->long_gc_log_threshold_,
928 options->ignore_max_footprint_);
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700929
Hiroshi Yamauchi2e899a92013-11-22 16:50:12 -0800930 dump_gc_performance_on_shutdown_ = options->dump_gc_performance_on_shutdown_;
931
Elliott Hughesc1674ed2011-08-25 18:09:09 -0700932 BlockSignals();
Elliott Hughes457005c2012-04-16 13:54:25 -0700933 InitPlatformSignalHandlers();
Elliott Hughesc1674ed2011-08-25 18:09:09 -0700934
Elliott Hughesa0957642011-09-02 14:27:33 -0700935 java_vm_ = new JavaVMExt(this, options.get());
Elliott Hughes515a5bc2011-08-17 11:08:34 -0700936
Elliott Hughesbe759c62011-09-08 19:38:21 -0700937 Thread::Startup();
Elliott Hughesd92bec42011-09-02 17:04:36 -0700938
Mathieu Chartier664bebf2012-11-12 16:54:11 -0800939 // ClassLinker needs an attached thread, but we can't fully attach a thread without creating
940 // objects. We can't supply a thread group yet; it will be fixed later. Since we are the main
941 // thread, we do not get a java peer.
942 Thread* self = Thread::Attach("main", false, NULL, false);
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700943 CHECK_EQ(self->thin_lock_thread_id_, ThreadList::kMainThreadId);
Ian Rogers120f1c72012-09-28 17:17:10 -0700944 CHECK(self != NULL);
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700945
Brian Carlstromf28bc5b2011-10-26 01:15:03 -0700946 // Set us to runnable so tools using a runtime can allocate and GC by default
Ian Rogers120f1c72012-09-28 17:17:10 -0700947 self->TransitionFromSuspendedToRunnable();
Brian Carlstromf28bc5b2011-10-26 01:15:03 -0700948
Ian Rogersa436fde2013-08-27 23:34:06 -0700949 // Now we're attached, we can take the heap locks and validate the heap.
Ian Rogers141d6222012-04-05 12:23:06 -0700950 GetHeap()->EnableObjectValidation();
951
Ian Rogers1d54e732013-05-02 21:10:01 -0700952 CHECK_GE(GetHeap()->GetContinuousSpaces().size(), 1U);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700953 class_linker_ = new ClassLinker(intern_table_);
954 if (GetHeap()->HasImageSpace()) {
955 class_linker_->InitFromImage();
Brian Carlstroma004aa92012-02-08 18:05:09 -0800956 } else {
957 CHECK(options->boot_class_path_ != NULL);
958 CHECK_NE(options->boot_class_path_->size(), 0U);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700959 class_linker_->InitFromCompiler(*options->boot_class_path_);
Brian Carlstroma004aa92012-02-08 18:05:09 -0800960 }
961 CHECK(class_linker_ != NULL);
Sameer Abu Asal51a5fb72013-02-19 14:25:01 -0800962 verifier::MethodVerifier::Init();
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700963
jeffhaob5e81852012-03-12 11:15:45 -0700964 method_trace_ = options->method_trace_;
965 method_trace_file_ = options->method_trace_file_;
966 method_trace_file_size_ = options->method_trace_file_size_;
967
968 if (options->method_trace_) {
Jeff Hao23009dc2013-08-22 15:36:42 -0700969 Trace::Start(options->method_trace_file_.c_str(), -1, options->method_trace_file_size_, 0,
970 false, false, 0);
jeffhaob5e81852012-03-12 11:15:45 -0700971 }
972
Ian Rogersa436fde2013-08-27 23:34:06 -0700973 // Pre-allocate an OutOfMemoryError for the double-OOME case.
974 self->ThrowNewException(ThrowLocation(), "Ljava/lang/OutOfMemoryError;",
975 "OutOfMemoryError thrown while trying to throw OutOfMemoryError; no stack available");
976 pre_allocated_OutOfMemoryError_ = self->GetException(NULL);
977 self->ClearException();
978
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800979 VLOG(startup) << "Runtime::Init exiting";
Carl Shapiro1fb86202011-06-27 17:43:13 -0700980 return true;
981}
982
Elliott Hughes038a8062011-09-18 14:12:41 -0700983void Runtime::InitNativeMethods() {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800984 VLOG(startup) << "Runtime::InitNativeMethods entering";
Elliott Hughesad7c2a32011-08-31 11:58:10 -0700985 Thread* self = Thread::Current();
986 JNIEnv* env = self->GetJniEnv();
987
Elliott Hughes418d20f2011-09-22 14:00:39 -0700988 // Must be in the kNative state for calling native methods (JNI_OnLoad code).
Ian Rogers50b35e22012-10-04 10:09:15 -0700989 CHECK_EQ(self->GetState(), kNative);
Elliott Hughesad7c2a32011-08-31 11:58:10 -0700990
Elliott Hughes418d20f2011-09-22 14:00:39 -0700991 // First set up JniConstants, which is used by both the runtime's built-in native
992 // methods and libcore.
Elliott Hughesfea966e2011-09-22 10:26:20 -0700993 JniConstants::init(env);
Elliott Hugheseac76672012-05-24 21:56:51 -0700994 WellKnownClasses::Init(env);
Elliott Hughesfea966e2011-09-22 10:26:20 -0700995
Elliott Hughes418d20f2011-09-22 14:00:39 -0700996 // Then set up the native methods provided by the runtime itself.
Elliott Hughesad7c2a32011-08-31 11:58:10 -0700997 RegisterRuntimeNativeMethods(env);
998
Elliott Hughes418d20f2011-09-22 14:00:39 -0700999 // Then set up libcore, which is just a regular JNI library with a regular JNI_OnLoad.
1000 // Most JNI libraries can just use System.loadLibrary, but libcore can't because it's
1001 // the library that implements System.loadLibrary!
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001002 {
1003 std::string mapped_name(StringPrintf(OS_SHARED_LIB_FORMAT_STR, "javacore"));
1004 std::string reason;
1005 self->TransitionFromSuspendedToRunnable();
Ian Rogers1eb512d2013-10-18 15:42:20 -07001006 if (!instance_->java_vm_->LoadNativeLibrary(mapped_name, NULL, &reason)) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001007 LOG(FATAL) << "LoadNativeLibrary failed for \"" << mapped_name << "\": " << reason;
1008 }
1009 self->TransitionFromRunnableToSuspended(kNative);
1010 }
Ian Rogersef28b142012-11-30 14:22:18 -08001011
1012 // Initialize well known classes that may invoke runtime native methods.
1013 WellKnownClasses::LateInit(env);
1014
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08001015 VLOG(startup) << "Runtime::InitNativeMethods exiting";
Elliott Hughesad7c2a32011-08-31 11:58:10 -07001016}
1017
Ian Rogers365c1022012-06-22 15:05:28 -07001018void Runtime::InitThreadGroups(Thread* self) {
1019 JNIEnvExt* env = self->GetJniEnv();
1020 ScopedJniEnvLocalRefState env_state(env);
1021 main_thread_group_ =
1022 env->NewGlobalRef(env->GetStaticObjectField(WellKnownClasses::java_lang_ThreadGroup,
1023 WellKnownClasses::java_lang_ThreadGroup_mainThreadGroup));
Brian Carlstrom034f76b2012-08-01 15:51:58 -07001024 CHECK(main_thread_group_ != NULL || IsCompiler());
Ian Rogers365c1022012-06-22 15:05:28 -07001025 system_thread_group_ =
1026 env->NewGlobalRef(env->GetStaticObjectField(WellKnownClasses::java_lang_ThreadGroup,
1027 WellKnownClasses::java_lang_ThreadGroup_systemThreadGroup));
Brian Carlstrom034f76b2012-08-01 15:51:58 -07001028 CHECK(system_thread_group_ != NULL || IsCompiler());
1029}
1030
1031jobject Runtime::GetMainThreadGroup() const {
1032 CHECK(main_thread_group_ != NULL || IsCompiler());
1033 return main_thread_group_;
1034}
1035
1036jobject Runtime::GetSystemThreadGroup() const {
1037 CHECK(system_thread_group_ != NULL || IsCompiler());
1038 return system_thread_group_;
Ian Rogers365c1022012-06-22 15:05:28 -07001039}
1040
Brian Carlstromce888532013-10-10 00:32:58 -07001041jobject Runtime::GetSystemClassLoader() const {
1042 CHECK(system_class_loader_ != NULL || IsCompiler());
1043 return system_class_loader_;
1044}
1045
Elliott Hughesad7c2a32011-08-31 11:58:10 -07001046void Runtime::RegisterRuntimeNativeMethods(JNIEnv* env) {
1047#define REGISTER(FN) extern void FN(JNIEnv*); FN(env)
Ian Rogers5167c972012-02-03 10:41:20 -08001048 // Register Throwable first so that registration of other native methods can throw exceptions
1049 REGISTER(register_java_lang_Throwable);
Brian Carlstromf91c8c32011-09-21 17:30:34 -07001050 REGISTER(register_dalvik_system_DexFile);
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07001051 REGISTER(register_dalvik_system_VMDebug);
Elliott Hughes7ede61e2011-09-14 18:18:06 -07001052 REGISTER(register_dalvik_system_VMRuntime);
Elliott Hughes8daa0922011-09-11 13:46:25 -07001053 REGISTER(register_dalvik_system_VMStack);
Elliott Hughes01158d72011-09-19 19:47:10 -07001054 REGISTER(register_dalvik_system_Zygote);
Elliott Hughesd369bb72011-09-12 14:41:14 -07001055 REGISTER(register_java_lang_Class);
Ian Rogers8b2c0b92013-09-19 02:56:49 -07001056 REGISTER(register_java_lang_DexCache);
Elliott Hughesbf86d042011-08-31 17:53:14 -07001057 REGISTER(register_java_lang_Object);
1058 REGISTER(register_java_lang_Runtime);
1059 REGISTER(register_java_lang_String);
1060 REGISTER(register_java_lang_System);
Elliott Hughes8daa0922011-09-11 13:46:25 -07001061 REGISTER(register_java_lang_Thread);
Elliott Hughes64bf5a32011-09-20 14:43:12 -07001062 REGISTER(register_java_lang_VMClassLoader);
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001063 REGISTER(register_java_lang_reflect_Array);
Elliott Hughes2a20cfd2011-09-23 19:30:41 -07001064 REGISTER(register_java_lang_reflect_Constructor);
Brian Carlstromf867b6f2011-09-16 12:17:25 -07001065 REGISTER(register_java_lang_reflect_Field);
1066 REGISTER(register_java_lang_reflect_Method);
Jesse Wilson95caa792011-10-12 18:14:17 -04001067 REGISTER(register_java_lang_reflect_Proxy);
Elliott Hughesbf86d042011-08-31 17:53:14 -07001068 REGISTER(register_java_util_concurrent_atomic_AtomicLong);
Brian Carlstrom395520e2011-09-25 19:35:00 -07001069 REGISTER(register_org_apache_harmony_dalvik_ddmc_DdmServer);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07001070 REGISTER(register_org_apache_harmony_dalvik_ddmc_DdmVmInternal);
Elliott Hughes5ee7a8b2011-09-13 16:40:07 -07001071 REGISTER(register_sun_misc_Unsafe);
Elliott Hughesad7c2a32011-08-31 11:58:10 -07001072#undef REGISTER
1073}
1074
Elliott Hughesc967f782012-04-16 10:23:15 -07001075void Runtime::DumpForSigQuit(std::ostream& os) {
Elliott Hughescac6cc72011-11-03 20:31:21 -07001076 GetClassLinker()->DumpForSigQuit(os);
1077 GetInternTable()->DumpForSigQuit(os);
Elliott Hughesae80b492012-04-24 10:43:17 -07001078 GetJavaVM()->DumpForSigQuit(os);
Elliott Hughesc967f782012-04-16 10:23:15 -07001079 GetHeap()->DumpForSigQuit(os);
Elliott Hughes42ee1422011-09-06 12:33:32 -07001080 os << "\n";
Elliott Hughes8daa0922011-09-11 13:46:25 -07001081
Elliott Hughesc967f782012-04-16 10:23:15 -07001082 thread_list_->DumpForSigQuit(os);
Ian Rogers56edc432013-01-18 16:51:51 -08001083 BaseMutex::DumpAll(os);
Elliott Hughese27955c2011-08-26 15:21:24 -07001084}
1085
Elliott Hughes21a5bf22011-12-07 14:35:20 -08001086void Runtime::DumpLockHolders(std::ostream& os) {
Ian Rogersb726dcb2012-09-05 08:57:23 -07001087 uint64_t mutator_lock_owner = Locks::mutator_lock_->GetExclusiveOwnerTid();
Elliott Hughes21a5bf22011-12-07 14:35:20 -08001088 pid_t thread_list_lock_owner = GetThreadList()->GetLockOwner();
1089 pid_t classes_lock_owner = GetClassLinker()->GetClassesLockOwner();
1090 pid_t dex_lock_owner = GetClassLinker()->GetDexLockOwner();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001091 if ((thread_list_lock_owner | classes_lock_owner | dex_lock_owner) != 0) {
1092 os << "Mutator lock exclusive owner tid: " << mutator_lock_owner << "\n"
Elliott Hughes21a5bf22011-12-07 14:35:20 -08001093 << "ThreadList lock owner tid: " << thread_list_lock_owner << "\n"
1094 << "ClassLinker classes lock owner tid: " << classes_lock_owner << "\n"
1095 << "ClassLinker dex lock owner tid: " << dex_lock_owner << "\n";
1096 }
1097}
1098
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07001099void Runtime::SetStatsEnabled(bool new_state) {
1100 if (new_state == true) {
1101 GetStats()->Clear(~0);
1102 // TODO: wouldn't it make more sense to clear _all_ threads' stats?
1103 Thread::Current()->GetStats()->Clear(~0);
Ian Rogersfa824272013-11-05 16:12:57 -08001104 GetInstrumentation()->InstrumentQuickAllocEntryPoints();
Hiroshi Yamauchi3b4c1892013-09-12 21:33:12 -07001105 } else {
Ian Rogersfa824272013-11-05 16:12:57 -08001106 GetInstrumentation()->UninstrumentQuickAllocEntryPoints();
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07001107 }
1108 stats_enabled_ = new_state;
1109}
1110
1111void Runtime::ResetStats(int kinds) {
1112 GetStats()->Clear(kinds & 0xffff);
1113 // TODO: wouldn't it make more sense to clear _all_ threads' stats?
1114 Thread::Current()->GetStats()->Clear(kinds >> 16);
1115}
1116
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07001117int32_t Runtime::GetStat(int kind) {
1118 RuntimeStats* stats;
1119 if (kind < (1<<16)) {
1120 stats = GetStats();
1121 } else {
1122 stats = Thread::Current()->GetStats();
1123 kind >>= 16;
1124 }
1125 switch (kind) {
1126 case KIND_ALLOCATED_OBJECTS:
1127 return stats->allocated_objects;
1128 case KIND_ALLOCATED_BYTES:
1129 return stats->allocated_bytes;
1130 case KIND_FREED_OBJECTS:
1131 return stats->freed_objects;
1132 case KIND_FREED_BYTES:
1133 return stats->freed_bytes;
1134 case KIND_GC_INVOCATIONS:
1135 return stats->gc_for_alloc_count;
1136 case KIND_CLASS_INIT_COUNT:
1137 return stats->class_init_count;
1138 case KIND_CLASS_INIT_TIME:
1139 // Convert ns to us, reduce to 32 bits.
Elliott Hughes398f64b2012-03-26 18:05:48 -07001140 return static_cast<int>(stats->class_init_time_ns / 1000);
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07001141 case KIND_EXT_ALLOCATED_OBJECTS:
1142 case KIND_EXT_ALLOCATED_BYTES:
1143 case KIND_EXT_FREED_OBJECTS:
1144 case KIND_EXT_FREED_BYTES:
1145 return 0; // backward compatibility
1146 default:
Elliott Hughes7b9d9962012-04-20 18:48:18 -07001147 LOG(FATAL) << "Unknown statistic " << kind;
Brian Carlstrom7934ac22013-07-26 10:54:15 -07001148 return -1; // unreachable
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07001149 }
1150}
1151
Elliott Hughesc1674ed2011-08-25 18:09:09 -07001152void Runtime::BlockSignals() {
Elliott Hughes457005c2012-04-16 13:54:25 -07001153 SignalSet signals;
1154 signals.Add(SIGPIPE);
Elliott Hughesc1674ed2011-08-25 18:09:09 -07001155 // SIGQUIT is used to dump the runtime's state (including stack traces).
Elliott Hughes457005c2012-04-16 13:54:25 -07001156 signals.Add(SIGQUIT);
Elliott Hughes08795042012-04-03 14:48:52 -07001157 // SIGUSR1 is used to initiate a GC.
Elliott Hughes457005c2012-04-16 13:54:25 -07001158 signals.Add(SIGUSR1);
1159 signals.Block();
Elliott Hughesc1674ed2011-08-25 18:09:09 -07001160}
1161
Mathieu Chartier664bebf2012-11-12 16:54:11 -08001162bool Runtime::AttachCurrentThread(const char* thread_name, bool as_daemon, jobject thread_group,
1163 bool create_peer) {
1164 bool success = Thread::Attach(thread_name, as_daemon, thread_group, create_peer) != NULL;
Elliott Hughes22869a92012-03-27 14:08:24 -07001165 if (thread_name == NULL) {
1166 LOG(WARNING) << *Thread::Current() << " attached without supplying a name";
1167 }
Ian Rogers120f1c72012-09-28 17:17:10 -07001168 return success;
Carl Shapiro61e019d2011-07-14 16:53:09 -07001169}
1170
Elliott Hughesd92bec42011-09-02 17:04:36 -07001171void Runtime::DetachCurrentThread() {
Brian Carlstrom4d571432012-05-16 00:21:41 -07001172 Thread* self = Thread::Current();
1173 if (self == NULL) {
1174 LOG(FATAL) << "attempting to detach thread that is not attached";
1175 }
Ian Rogers0399dde2012-06-06 17:09:28 -07001176 if (self->HasManagedStack()) {
Elliott Hughes22869a92012-03-27 14:08:24 -07001177 LOG(FATAL) << *Thread::Current() << " attempting to detach while still running code";
1178 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001179 thread_list_->Unregister(self);
Carl Shapiro1fb86202011-06-27 17:43:13 -07001180}
1181
Ian Rogersa436fde2013-08-27 23:34:06 -07001182 mirror::Throwable* Runtime::GetPreAllocatedOutOfMemoryError() const {
1183 if (pre_allocated_OutOfMemoryError_ == NULL) {
1184 LOG(ERROR) << "Failed to return pre-allocated OOME";
1185 }
1186 return pre_allocated_OutOfMemoryError_;
1187}
1188
Ian Rogers1d54e732013-05-02 21:10:01 -07001189void Runtime::VisitConcurrentRoots(RootVisitor* visitor, void* arg, bool only_dirty,
1190 bool clean_dirty) {
Mathieu Chartierc4621982013-09-16 19:43:47 -07001191 intern_table_->VisitRoots(visitor, arg, only_dirty, clean_dirty);
1192 class_linker_->VisitRoots(visitor, arg, only_dirty, clean_dirty);
Mathieu Chartier9ebae1f2012-10-15 17:38:16 -07001193}
1194
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001195void Runtime::VisitNonThreadRoots(RootVisitor* visitor, void* arg) {
Mathieu Chartierc528dba2013-11-26 12:00:11 -08001196 // Visit the classes held as static in mirror classes.
1197 mirror::ArtField::VisitRoots(visitor, arg);
1198 mirror::ArtMethod::VisitRoots(visitor, arg);
1199 mirror::Class::VisitRoots(visitor, arg);
1200 mirror::StackTraceElement::VisitRoots(visitor, arg);
1201 mirror::String::VisitRoots(visitor, arg);
1202 mirror::Throwable::VisitRoots(visitor, arg);
1203 // Visit all the primitive array types classes.
1204 mirror::PrimitiveArray<uint8_t>::VisitRoots(visitor, arg); // BooleanArray
1205 mirror::PrimitiveArray<int8_t>::VisitRoots(visitor, arg); // ByteArray
1206 mirror::PrimitiveArray<uint16_t>::VisitRoots(visitor, arg); // CharArray
1207 mirror::PrimitiveArray<double>::VisitRoots(visitor, arg); // DoubleArray
1208 mirror::PrimitiveArray<float>::VisitRoots(visitor, arg); // FloatArray
1209 mirror::PrimitiveArray<int32_t>::VisitRoots(visitor, arg); // IntArray
1210 mirror::PrimitiveArray<int64_t>::VisitRoots(visitor, arg); // LongArray
1211 mirror::PrimitiveArray<int16_t>::VisitRoots(visitor, arg); // ShortArray
Brian Carlstrome24fa612011-09-29 00:53:55 -07001212 java_vm_->VisitRoots(visitor, arg);
Mathieu Chartier423d2a32013-09-12 17:33:56 -07001213 if (pre_allocated_OutOfMemoryError_ != nullptr) {
Mathieu Chartierc528dba2013-11-26 12:00:11 -08001214 pre_allocated_OutOfMemoryError_ = down_cast<mirror::Throwable*>(
Mathieu Chartier423d2a32013-09-12 17:33:56 -07001215 visitor(pre_allocated_OutOfMemoryError_, arg));
1216 DCHECK(pre_allocated_OutOfMemoryError_ != nullptr);
Elliott Hughes225f5a12012-06-11 11:23:48 -07001217 }
Mathieu Chartier590fee92013-09-13 13:46:47 -07001218 resolution_method_ = down_cast<mirror::ArtMethod*>(visitor(resolution_method_, arg));
Mathieu Chartier423d2a32013-09-12 17:33:56 -07001219 DCHECK(resolution_method_ != nullptr);
Mathieu Chartier590fee92013-09-13 13:46:47 -07001220 if (HasImtConflictMethod()) {
1221 imt_conflict_method_ = down_cast<mirror::ArtMethod*>(visitor(imt_conflict_method_, arg));
1222 }
1223 if (HasDefaultImt()) {
1224 default_imt_ = down_cast<mirror::ObjectArray<mirror::ArtMethod>*>(visitor(default_imt_, arg));
1225 }
1226
Ian Rogers4f0d07c2011-10-06 23:38:47 -07001227 for (int i = 0; i < Runtime::kLastCalleeSaveType; i++) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001228 if (callee_save_methods_[i] != nullptr) {
1229 callee_save_methods_[i] = down_cast<mirror::ArtMethod*>(
1230 visitor(callee_save_methods_[i], arg));
1231 }
Ian Rogers4f0d07c2011-10-06 23:38:47 -07001232 }
Mathieu Chartierc528dba2013-11-26 12:00:11 -08001233 {
1234 MutexLock mu(Thread::Current(), method_verifiers_lock_);
1235 for (verifier::MethodVerifier* verifier : method_verifiers_) {
1236 verifier->VisitRoots(visitor, arg);
1237 }
1238 }
Brian Carlstrome24fa612011-09-29 00:53:55 -07001239}
1240
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001241void Runtime::VisitNonConcurrentRoots(RootVisitor* visitor, void* arg) {
Mathieu Chartier858f1c52012-10-17 17:45:55 -07001242 thread_list_->VisitRoots(visitor, arg);
1243 VisitNonThreadRoots(visitor, arg);
1244}
1245
Ian Rogers1d54e732013-05-02 21:10:01 -07001246void Runtime::VisitRoots(RootVisitor* visitor, void* arg, bool only_dirty, bool clean_dirty) {
1247 VisitConcurrentRoots(visitor, arg, only_dirty, clean_dirty);
Mathieu Chartier9ebae1f2012-10-15 17:38:16 -07001248 VisitNonConcurrentRoots(visitor, arg);
1249}
1250
Jeff Hao88474b42013-10-23 16:24:40 -07001251mirror::ObjectArray<mirror::ArtMethod>* Runtime::CreateDefaultImt(ClassLinker* cl) {
1252 Thread* self = Thread::Current();
1253 SirtRef<mirror::ObjectArray<mirror::ArtMethod> > imtable(self, cl->AllocArtMethodArray(self, 64));
1254 mirror::ArtMethod* imt_conflict_method = Runtime::Current()->GetImtConflictMethod();
Mathieu Chartier590fee92013-09-13 13:46:47 -07001255 for (size_t i = 0; i < static_cast<size_t>(imtable->GetLength()); i++) {
Jeff Hao88474b42013-10-23 16:24:40 -07001256 imtable->Set(i, imt_conflict_method);
1257 }
1258 return imtable.get();
1259}
1260
1261mirror::ArtMethod* Runtime::CreateImtConflictMethod() {
Jeff Hao88474b42013-10-23 16:24:40 -07001262 Thread* self = Thread::Current();
Mathieu Chartier590fee92013-09-13 13:46:47 -07001263 Runtime* r = Runtime::Current();
1264 ClassLinker* cl = r->GetClassLinker();
1265 SirtRef<mirror::ArtMethod> method(self, cl->AllocArtMethod(self));
1266 method->SetDeclaringClass(mirror::ArtMethod::GetJavaLangReflectArtMethod());
Jeff Hao88474b42013-10-23 16:24:40 -07001267 // TODO: use a special method for imt conflict method saves
1268 method->SetDexMethodIndex(DexFile::kDexNoIndex);
1269 // When compiling, the code pointer will get set later when the image is loaded.
Jeff Hao88474b42013-10-23 16:24:40 -07001270 method->SetEntryPointFromCompiledCode(r->IsCompiler() ? NULL : GetImtConflictTrampoline(cl));
1271 return method.get();
1272}
1273
Brian Carlstromea46f952013-07-30 01:26:50 -07001274mirror::ArtMethod* Runtime::CreateResolutionMethod() {
Ian Rogers50b35e22012-10-04 10:09:15 -07001275 Thread* self = Thread::Current();
Mathieu Chartier590fee92013-09-13 13:46:47 -07001276 Runtime* r = Runtime::Current();
1277 ClassLinker* cl = r->GetClassLinker();
1278 SirtRef<mirror::ArtMethod> method(self, cl->AllocArtMethod(self));
1279 method->SetDeclaringClass(mirror::ArtMethod::GetJavaLangReflectArtMethod());
Ian Rogers19846512012-02-24 11:42:47 -08001280 // TODO: use a special method for resolution method saves
Ian Rogers8b2c0b92013-09-19 02:56:49 -07001281 method->SetDexMethodIndex(DexFile::kDexNoIndex);
Jeff Hao58df3272013-04-22 15:28:53 -07001282 // When compiling, the code pointer will get set later when the image is loaded.
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001283 method->SetEntryPointFromCompiledCode(r->IsCompiler() ? NULL : GetResolutionTrampoline(cl));
Ian Rogers19846512012-02-24 11:42:47 -08001284 return method.get();
1285}
1286
Brian Carlstromea46f952013-07-30 01:26:50 -07001287mirror::ArtMethod* Runtime::CreateCalleeSaveMethod(InstructionSet instruction_set,
Mathieu Chartier590fee92013-09-13 13:46:47 -07001288 CalleeSaveType type) {
Ian Rogers50b35e22012-10-04 10:09:15 -07001289 Thread* self = Thread::Current();
Mathieu Chartier590fee92013-09-13 13:46:47 -07001290 Runtime* r = Runtime::Current();
1291 ClassLinker* cl = r->GetClassLinker();
1292 SirtRef<mirror::ArtMethod> method(self, cl->AllocArtMethod(self));
1293 method->SetDeclaringClass(mirror::ArtMethod::GetJavaLangReflectArtMethod());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001294 // TODO: use a special method for callee saves
Ian Rogers8b2c0b92013-09-19 02:56:49 -07001295 method->SetDexMethodIndex(DexFile::kDexNoIndex);
Jeff Haoaa4a7932013-05-13 11:28:27 -07001296 method->SetEntryPointFromCompiledCode(NULL);
Brian Carlstromae826982011-11-09 01:33:42 -08001297 if ((instruction_set == kThumb2) || (instruction_set == kArm)) {
Ian Rogers4f0d07c2011-10-06 23:38:47 -07001298 uint32_t ref_spills = (1 << art::arm::R5) | (1 << art::arm::R6) | (1 << art::arm::R7) |
1299 (1 << art::arm::R8) | (1 << art::arm::R10) | (1 << art::arm::R11);
1300 uint32_t arg_spills = (1 << art::arm::R1) | (1 << art::arm::R2) | (1 << art::arm::R3);
1301 uint32_t all_spills = (1 << art::arm::R4) | (1 << art::arm::R9);
jeffhaofa147e22012-10-12 17:03:32 -07001302 uint32_t core_spills = ref_spills | (type == kRefsAndArgs ? arg_spills : 0) |
1303 (type == kSaveAll ? all_spills : 0) | (1 << art::arm::LR);
Ian Rogers4f0d07c2011-10-06 23:38:47 -07001304 uint32_t fp_all_spills = (1 << art::arm::S0) | (1 << art::arm::S1) | (1 << art::arm::S2) |
1305 (1 << art::arm::S3) | (1 << art::arm::S4) | (1 << art::arm::S5) |
1306 (1 << art::arm::S6) | (1 << art::arm::S7) | (1 << art::arm::S8) |
1307 (1 << art::arm::S9) | (1 << art::arm::S10) | (1 << art::arm::S11) |
1308 (1 << art::arm::S12) | (1 << art::arm::S13) | (1 << art::arm::S14) |
1309 (1 << art::arm::S15) | (1 << art::arm::S16) | (1 << art::arm::S17) |
1310 (1 << art::arm::S18) | (1 << art::arm::S19) | (1 << art::arm::S20) |
1311 (1 << art::arm::S21) | (1 << art::arm::S22) | (1 << art::arm::S23) |
1312 (1 << art::arm::S24) | (1 << art::arm::S25) | (1 << art::arm::S26) |
1313 (1 << art::arm::S27) | (1 << art::arm::S28) | (1 << art::arm::S29) |
1314 (1 << art::arm::S30) | (1 << art::arm::S31);
1315 uint32_t fp_spills = type == kSaveAll ? fp_all_spills : 0;
1316 size_t frame_size = RoundUp((__builtin_popcount(core_spills) /* gprs */ +
1317 __builtin_popcount(fp_spills) /* fprs */ +
1318 1 /* Method* */) * kPointerSize, kStackAlignment);
Ian Rogers15fdb8c2011-09-25 15:45:07 -07001319 method->SetFrameSizeInBytes(frame_size);
Ian Rogers4f0d07c2011-10-06 23:38:47 -07001320 method->SetCoreSpillMask(core_spills);
1321 method->SetFpSpillMask(fp_spills);
jeffhao7fbee072012-08-24 17:56:54 -07001322 } else if (instruction_set == kMips) {
1323 uint32_t ref_spills = (1 << art::mips::S2) | (1 << art::mips::S3) | (1 << art::mips::S4) |
1324 (1 << art::mips::S5) | (1 << art::mips::S6) | (1 << art::mips::S7) |
Jeff Hao1f3bc2f2013-04-30 15:17:19 -07001325 (1 << art::mips::GP) | (1 << art::mips::FP);
jeffhao7fbee072012-08-24 17:56:54 -07001326 uint32_t arg_spills = (1 << art::mips::A1) | (1 << art::mips::A2) | (1 << art::mips::A3);
jeffhaofa147e22012-10-12 17:03:32 -07001327 uint32_t all_spills = (1 << art::mips::S0) | (1 << art::mips::S1);
jeffhao7fbee072012-08-24 17:56:54 -07001328 uint32_t core_spills = ref_spills | (type == kRefsAndArgs ? arg_spills : 0) |
jeffhaofa147e22012-10-12 17:03:32 -07001329 (type == kSaveAll ? all_spills : 0) | (1 << art::mips::RA);
jeffhao7fbee072012-08-24 17:56:54 -07001330 size_t frame_size = RoundUp((__builtin_popcount(core_spills) /* gprs */ +
Jeff Hao1f3bc2f2013-04-30 15:17:19 -07001331 (type == kRefsAndArgs ? 0 : 3) + 1 /* Method* */) *
1332 kPointerSize, kStackAlignment);
jeffhao7fbee072012-08-24 17:56:54 -07001333 method->SetFrameSizeInBytes(frame_size);
1334 method->SetCoreSpillMask(core_spills);
jeffhao07030602012-09-26 14:33:14 -07001335 method->SetFpSpillMask(0);
Brian Carlstromae826982011-11-09 01:33:42 -08001336 } else if (instruction_set == kX86) {
Ian Rogers7caad772012-03-30 01:07:54 -07001337 uint32_t ref_spills = (1 << art::x86::EBP) | (1 << art::x86::ESI) | (1 << art::x86::EDI);
1338 uint32_t arg_spills = (1 << art::x86::ECX) | (1 << art::x86::EDX) | (1 << art::x86::EBX);
1339 uint32_t core_spills = ref_spills | (type == kRefsAndArgs ? arg_spills : 0) |
1340 (1 << art::x86::kNumberOfCpuRegisters); // fake return address callee save
1341 size_t frame_size = RoundUp((__builtin_popcount(core_spills) /* gprs */ +
1342 1 /* Method* */) * kPointerSize, kStackAlignment);
1343 method->SetFrameSizeInBytes(frame_size);
1344 method->SetCoreSpillMask(core_spills);
Ian Rogersff1ed472011-09-20 13:46:24 -07001345 method->SetFpSpillMask(0);
1346 } else {
1347 UNIMPLEMENTED(FATAL);
1348 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001349 return method.get();
Ian Rogersff1ed472011-09-20 13:46:24 -07001350}
1351
Mathieu Chartierc11d9b82013-09-19 10:01:59 -07001352void Runtime::DisallowNewSystemWeaks() {
1353 monitor_list_->DisallowNewMonitors();
1354 intern_table_->DisallowNewInterns();
1355 java_vm_->DisallowNewWeakGlobals();
1356}
1357
1358void Runtime::AllowNewSystemWeaks() {
1359 monitor_list_->AllowNewMonitors();
1360 intern_table_->AllowNewInterns();
1361 java_vm_->AllowNewWeakGlobals();
1362}
1363
Brian Carlstromea46f952013-07-30 01:26:50 -07001364void Runtime::SetCalleeSaveMethod(mirror::ArtMethod* method, CalleeSaveType type) {
Ian Rogers4f0d07c2011-10-06 23:38:47 -07001365 DCHECK_LT(static_cast<int>(type), static_cast<int>(kLastCalleeSaveType));
Elliott Hughes225f5a12012-06-11 11:23:48 -07001366 callee_save_methods_[type] = method;
Brian Carlstrome24fa612011-09-29 00:53:55 -07001367}
1368
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001369const std::vector<const DexFile*>& Runtime::GetCompileTimeClassPath(jobject class_loader) {
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08001370 if (class_loader == NULL) {
1371 return GetClassLinker()->GetBootClassPath();
1372 }
1373 CHECK(UseCompileTimeClassPath());
1374 CompileTimeClassPaths::const_iterator it = compile_time_class_paths_.find(class_loader);
1375 CHECK(it != compile_time_class_paths_.end());
1376 return it->second;
1377}
1378
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001379void Runtime::SetCompileTimeClassPath(jobject class_loader, std::vector<const DexFile*>& class_path) {
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08001380 CHECK(!IsStarted());
1381 use_compile_time_class_path_ = true;
Elliott Hughesa0e18062012-04-13 15:59:59 -07001382 compile_time_class_paths_.Put(class_loader, class_path);
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08001383}
1384
Mathieu Chartierc528dba2013-11-26 12:00:11 -08001385void Runtime::AddMethodVerifier(verifier::MethodVerifier* verifier) {
1386 DCHECK(verifier != nullptr);
1387 MutexLock mu(Thread::Current(), method_verifiers_lock_);
1388 method_verifiers_.insert(verifier);
1389}
1390
1391void Runtime::RemoveMethodVerifier(verifier::MethodVerifier* verifier) {
1392 DCHECK(verifier != nullptr);
1393 MutexLock mu(Thread::Current(), method_verifiers_lock_);
1394 auto it = method_verifiers_.find(verifier);
1395 CHECK(it != method_verifiers_.end());
1396 method_verifiers_.erase(it);
1397}
1398
Carl Shapiro1fb86202011-06-27 17:43:13 -07001399} // namespace art