blob: 53c9b2efbb4c287cfcbe88a24018f88c7522d6ce [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"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080050#include "mirror/throwable.h"
Elliott Hughes32d6e1e2011-10-11 14:47:44 -070051#include "monitor.h"
Brian Carlstrome24fa612011-09-29 00:53:55 -070052#include "oat_file.h"
Elliott Hughes726079d2011-10-07 18:43:44 -070053#include "ScopedLocalRef.h"
Ian Rogers00f7d0e2012-07-19 15:28:27 -070054#include "scoped_thread_state_change.h"
Elliott Hughese27955c2011-08-26 15:21:24 -070055#include "signal_catcher.h"
Elliott Hughes457005c2012-04-16 13:54:25 -070056#include "signal_set.h"
Ian Rogers1f539342012-10-03 21:09:42 -070057#include "sirt_ref.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070058#include "thread.h"
Elliott Hughes8daa0922011-09-11 13:46:25 -070059#include "thread_list.h"
jeffhaob5e81852012-03-12 11:15:45 -070060#include "trace.h"
Elliott Hughes3bb81562011-10-21 18:52:59 -070061#include "UniquePtr.h"
Ian Rogers776ac1f2012-04-13 23:36:36 -070062#include "verifier/method_verifier.h"
Elliott Hugheseac76672012-05-24 21:56:51 -070063#include "well_known_classes.h"
Carl Shapiro61e019d2011-07-14 16:53:09 -070064
Brian Carlstrom7934ac22013-07-26 10:54:15 -070065#include "JniConstants.h" // Last to avoid LOG redefinition in ics-mr1-plus-art.
Elliott Hughes90a33692011-08-30 13:27:07 -070066
Carl Shapiro1fb86202011-06-27 17:43:13 -070067namespace art {
68
Carl Shapiro2ed144c2011-07-26 16:52:08 -070069Runtime* Runtime::instance_ = NULL;
70
Elliott Hughesdcc24742011-09-07 14:02:44 -070071Runtime::Runtime()
Elliott Hughesd9c67be2012-02-02 19:54:06 -080072 : is_compiler_(false),
73 is_zygote_(false),
Mathieu Chartier069387a2012-06-18 12:01:01 -070074 is_concurrent_gc_enabled_(true),
Anwar Ghuloum87183592013-08-14 12:12:19 -070075 is_explicit_gc_disabled_(false),
Elliott Hughes6cf23882012-06-15 15:42:07 -070076 default_stack_size_(0),
Elliott Hughesb3bd5f02012-03-08 21:05:27 -080077 heap_(NULL),
Ian Rogersd9c4fc92013-10-01 19:45:43 -070078 max_spins_before_thin_lock_inflation_(Monitor::kDefaultMaxSpinsBeforeThinLockInflation),
Elliott Hughesc33a32b2011-10-11 18:18:07 -070079 monitor_list_(NULL),
Elliott Hughesdcc24742011-09-07 14:02:44 -070080 thread_list_(NULL),
81 intern_table_(NULL),
82 class_linker_(NULL),
83 signal_catcher_(NULL),
84 java_vm_(NULL),
Elliott Hughes225f5a12012-06-11 11:23:48 -070085 pre_allocated_OutOfMemoryError_(NULL),
Ian Rogers19846512012-02-24 11:42:47 -080086 resolution_method_(NULL),
Jeff Hao88474b42013-10-23 16:24:40 -070087 imt_conflict_method_(NULL),
88 default_imt_(NULL),
Ian Rogers120f1c72012-09-28 17:17:10 -070089 threads_being_born_(0),
Ian Rogersc604d732012-10-14 16:09:54 -070090 shutdown_cond_(new ConditionVariable("Runtime shutdown", *Locks::runtime_shutdown_lock_)),
Elliott Hughes6b355752012-01-13 16:49:08 -080091 shutting_down_(false),
Ian Rogers120f1c72012-09-28 17:17:10 -070092 shutting_down_started_(false),
Elliott Hughesdcc24742011-09-07 14:02:44 -070093 started_(false),
Mathieu Chartier7664f5c2012-06-08 18:15:32 -070094 finished_starting_(false),
Elliott Hughesdcc24742011-09-07 14:02:44 -070095 vfprintf_(NULL),
96 exit_(NULL),
Elliott Hughes9d5ccec2011-09-19 13:19:50 -070097 abort_(NULL),
jeffhao2692b572011-12-16 15:42:28 -080098 stats_enabled_(false),
Ian Rogers776ac1f2012-04-13 23:36:36 -070099 method_trace_(0),
100 method_trace_file_size_(0),
Ian Rogers62d6c772013-02-27 08:32:07 -0800101 instrumentation_(),
Ian Rogers365c1022012-06-22 15:05:28 -0700102 use_compile_time_class_path_(false),
103 main_thread_group_(NULL),
Hiroshi Yamauchi3b4c1892013-09-12 21:33:12 -0700104 system_thread_group_(NULL),
Ian Rogersfa824272013-11-05 16:12:57 -0800105 system_class_loader_(NULL) {
Ian Rogers4f0d07c2011-10-06 23:38:47 -0700106 for (int i = 0; i < Runtime::kLastCalleeSaveType; i++) {
Elliott Hughes225f5a12012-06-11 11:23:48 -0700107 callee_save_methods_[i] = NULL;
Ian Rogers4f0d07c2011-10-06 23:38:47 -0700108 }
Elliott Hughesdcc24742011-09-07 14:02:44 -0700109}
110
Carl Shapiro61e019d2011-07-14 16:53:09 -0700111Runtime::~Runtime() {
Ian Rogers120f1c72012-09-28 17:17:10 -0700112 Thread* self = Thread::Current();
113 {
114 MutexLock mu(self, *Locks::runtime_shutdown_lock_);
115 shutting_down_started_ = true;
116 while (threads_being_born_ > 0) {
Ian Rogersc604d732012-10-14 16:09:54 -0700117 shutdown_cond_->Wait(self);
Ian Rogers120f1c72012-09-28 17:17:10 -0700118 }
119 shutting_down_ = true;
120 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800121 Trace::Shutdown();
jeffhaob5e81852012-03-12 11:15:45 -0700122
Mathieu Chartiera6399032012-06-11 18:49:50 -0700123 // Make sure to let the GC complete if it is running.
Ian Rogers120f1c72012-09-28 17:17:10 -0700124 heap_->WaitForConcurrentGcToComplete(self);
Mathieu Chartier35883cc2012-11-13 14:08:12 -0800125 heap_->DeleteThreadPool();
Mathieu Chartiera6399032012-06-11 18:49:50 -0700126
Elliott Hughes5fe594f2011-09-08 12:33:17 -0700127 // Make sure our internal threads are dead before we start tearing down things they're using.
Elliott Hughese52e49b2012-04-02 16:05:44 -0700128 Dbg::StopJdwp();
Elliott Hughes5fe594f2011-09-08 12:33:17 -0700129 delete signal_catcher_;
130
Elliott Hughes038a8062011-09-18 14:12:41 -0700131 // Make sure all other non-daemon threads have terminated, and all daemon threads are suspended.
Elliott Hughes93e74e82011-09-13 11:07:03 -0700132 delete thread_list_;
Elliott Hughesc33a32b2011-10-11 18:18:07 -0700133 delete monitor_list_;
Carl Shapiro61e019d2011-07-14 16:53:09 -0700134 delete class_linker_;
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800135 delete heap_;
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700136 delete intern_table_;
Elliott Hughesc5f7c912011-08-18 14:00:42 -0700137 delete java_vm_;
Elliott Hughesc1674ed2011-08-25 18:09:09 -0700138 Thread::Shutdown();
Elliott Hughes7c6169d2012-05-02 16:11:48 -0700139 QuasiAtomic::Shutdown();
Sebastien Hertz4d4adb12013-07-24 16:14:19 +0200140 verifier::MethodVerifier::Shutdown();
Carl Shapiro4acf4642011-07-26 18:54:13 -0700141 // TODO: acquire a static mutex on Runtime to avoid racing.
Brian Carlstrom4a289ed2011-08-16 17:17:49 -0700142 CHECK(instance_ == NULL || instance_ == this);
Carl Shapiro4acf4642011-07-26 18:54:13 -0700143 instance_ = NULL;
Carl Shapiro61e019d2011-07-14 16:53:09 -0700144}
145
Elliott Hughese0918552011-10-28 17:18:29 -0700146struct AbortState {
147 void Dump(std::ostream& os) {
Ian Rogersf08e4732013-04-09 09:45:49 -0700148 if (gAborting > 1) {
Elliott Hughescac6cc72011-11-03 20:31:21 -0700149 os << "Runtime aborting --- recursively, so no thread-specific detail!\n";
150 return;
151 }
Ian Rogersf08e4732013-04-09 09:45:49 -0700152 gAborting++;
Elliott Hughese0918552011-10-28 17:18:29 -0700153 os << "Runtime aborting...\n";
Elliott Hughes6c7d2442012-02-01 18:40:47 -0800154 if (Runtime::Current() == NULL) {
155 os << "(Runtime does not yet exist!)\n";
156 return;
157 }
Elliott Hughese0918552011-10-28 17:18:29 -0700158 Thread* self = Thread::Current();
159 if (self == NULL) {
160 os << "(Aborting thread was not attached to runtime!)\n";
161 } else {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700162 // TODO: we're aborting and the ScopedObjectAccess may attempt to acquire the mutator_lock_
163 // which may block indefinitely if there's a misbehaving thread holding it exclusively.
164 // The code below should be made robust to this.
165 ScopedObjectAccess soa(self);
Ian Rogers2f7f9b62012-10-10 18:24:05 -0700166 os << "Aborting thread:\n";
Elliott Hughes899e7892012-01-24 14:57:32 -0800167 self->Dump(os);
168 if (self->IsExceptionPending()) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800169 ThrowLocation throw_location;
170 mirror::Throwable* exception = self->GetException(&throw_location);
171 os << "Pending exception " << PrettyTypeOf(exception)
Ian Rogersbc939662013-08-15 10:26:54 -0700172 << " thrown by '" << throw_location.Dump() << "'\n"
Ian Rogers62d6c772013-02-27 08:32:07 -0800173 << exception->Dump();
Elliott Hughes899e7892012-01-24 14:57:32 -0800174 }
Elliott Hughese0918552011-10-28 17:18:29 -0700175 }
Ian Rogers2f7f9b62012-10-10 18:24:05 -0700176 DumpAllThreads(os, self);
177 }
178
179 void DumpAllThreads(std::ostream& os, Thread* self) NO_THREAD_SAFETY_ANALYSIS {
180 bool tll_already_held = Locks::thread_list_lock_->IsExclusiveHeld(self);
181 bool ml_already_held = Locks::mutator_lock_->IsSharedHeld(self);
Ian Rogersfbd22912012-10-12 14:21:10 -0700182 if (!tll_already_held || !ml_already_held) {
183 os << "Dumping all threads without appropriate locks held:"
184 << (!tll_already_held ? " thread list lock" : "")
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700185 << (!ml_already_held ? " mutator lock" : "")
186 << "\n";
Ian Rogers2f7f9b62012-10-10 18:24:05 -0700187 }
Ian Rogersfbd22912012-10-12 14:21:10 -0700188 os << "All threads:\n";
189 Runtime::Current()->GetThreadList()->DumpLocked(os);
Elliott Hughese0918552011-10-28 17:18:29 -0700190 }
191};
192
Elliott Hughes8593fdb2012-04-21 20:53:44 -0700193void Runtime::Abort() {
Ian Rogersf08e4732013-04-09 09:45:49 -0700194 gAborting++; // set before taking any locks
Brian Carlstrom81b88712012-11-05 19:21:30 -0800195
Elliott Hughes131aef82012-01-27 11:53:35 -0800196 // Ensure that we don't have multiple threads trying to abort at once,
197 // which would result in significantly worse diagnostics.
Ian Rogers50b35e22012-10-04 10:09:15 -0700198 MutexLock mu(Thread::Current(), *Locks::abort_lock_);
Elliott Hughes131aef82012-01-27 11:53:35 -0800199
Elliott Hughesffe67362011-07-17 12:09:27 -0700200 // Get any pending output out of the way.
201 fflush(NULL);
202
203 // Many people have difficulty distinguish aborts from crashes,
204 // so be explicit.
Elliott Hughese0918552011-10-28 17:18:29 -0700205 AbortState state;
Elliott Hughes9ee5f9c2012-02-03 18:33:16 -0800206 LOG(INTERNAL_FATAL) << Dumpable<AbortState>(state);
Elliott Hughesffe67362011-07-17 12:09:27 -0700207
Elliott Hughes8593fdb2012-04-21 20:53:44 -0700208 // Call the abort hook if we have one.
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700209 if (Runtime::Current() != NULL && Runtime::Current()->abort_ != NULL) {
Elliott Hughes6c1c69e2012-04-23 16:12:51 -0700210 LOG(INTERNAL_FATAL) << "Calling abort hook...";
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700211 Runtime::Current()->abort_();
212 // notreached
Elliott Hughes6c1c69e2012-04-23 16:12:51 -0700213 LOG(INTERNAL_FATAL) << "Unexpectedly returned from abort hook!";
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700214 }
215
Elliott Hughesdd623db2013-06-11 11:20:23 -0700216#if defined(__GLIBC__)
Elliott Hughesd06a6c72012-05-30 17:59:06 -0700217 // TODO: we ought to be able to use pthread_kill(3) here (or abort(3),
218 // which POSIX defines in terms of raise(3), which POSIX defines in terms
219 // of pthread_kill(3)). On Linux, though, libcorkscrew can't unwind through
220 // libpthread, which means the stacks we dump would be useless. Calling
221 // tgkill(2) directly avoids that.
222 syscall(__NR_tgkill, getpid(), GetTid(), SIGABRT);
Elliott Hughesdd623db2013-06-11 11:20:23 -0700223 // TODO: LLVM installs it's own SIGABRT handler so exit to be safe... Can we disable that in LLVM?
224 // 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 -0800225 exit(1);
Elliott Hughesdd623db2013-06-11 11:20:23 -0700226#else
227 abort();
Elliott Hughesd06a6c72012-05-30 17:59:06 -0700228#endif
Elliott Hughesffe67362011-07-17 12:09:27 -0700229 // notreached
230}
231
Mathieu Chartiercc236d72012-07-20 10:29:05 -0700232bool Runtime::PreZygoteFork() {
233 heap_->PreZygoteFork();
234 return true;
235}
236
Elliott Hughesbf86d042011-08-31 17:53:14 -0700237void Runtime::CallExitHook(jint status) {
238 if (exit_ != NULL) {
Elliott Hughes34e06962012-04-09 13:55:55 -0700239 ScopedThreadStateChange tsc(Thread::Current(), kNative);
Elliott Hughesbf86d042011-08-31 17:53:14 -0700240 exit_(status);
241 LOG(WARNING) << "Exit hook returned instead of exiting!";
242 }
243}
244
Brian Carlstrom8a436592011-08-15 21:27:23 -0700245// Parse a string of the form /[0-9]+[kKmMgG]?/, which is used to specify
246// memory sizes. [kK] indicates kilobytes, [mM] megabytes, and
247// [gG] gigabytes.
248//
249// "s" should point just past the "-Xm?" part of the string.
Brian Carlstrom8a436592011-08-15 21:27:23 -0700250// "div" specifies a divisor, e.g. 1024 if the value must be a multiple
251// of 1024.
252//
253// The spec says the -Xmx and -Xms options must be multiples of 1024. It
254// doesn't say anything about -Xss.
255//
256// Returns 0 (a useless size) if "s" is malformed or specifies a low or
257// non-evenly-divisible value.
258//
Elliott Hughesc1f143d2011-12-01 17:31:10 -0800259size_t ParseMemoryOption(const char* s, size_t div) {
Brian Carlstrom8a436592011-08-15 21:27:23 -0700260 // strtoul accepts a leading [+-], which we don't want,
261 // so make sure our string starts with a decimal digit.
262 if (isdigit(*s)) {
Elliott Hughes398f64b2012-03-26 18:05:48 -0700263 char* s2;
264 size_t val = strtoul(s, &s2, 10);
Brian Carlstrom8a436592011-08-15 21:27:23 -0700265 if (s2 != s) {
266 // s2 should be pointing just after the number.
267 // If this is the end of the string, the user
268 // has specified a number of bytes. Otherwise,
269 // there should be exactly one more character
270 // that specifies a multiplier.
271 if (*s2 != '\0') {
Brian Carlstromf734cf52011-08-17 16:28:14 -0700272 // The remainder of the string is either a single multiplier
273 // character, or nothing to indicate that the value is in
274 // bytes.
275 char c = *s2++;
276 if (*s2 == '\0') {
277 size_t mul;
278 if (c == '\0') {
279 mul = 1;
280 } else if (c == 'k' || c == 'K') {
281 mul = KB;
282 } else if (c == 'm' || c == 'M') {
283 mul = MB;
284 } else if (c == 'g' || c == 'G') {
285 mul = GB;
Brian Carlstrom8a436592011-08-15 21:27:23 -0700286 } else {
Brian Carlstromf734cf52011-08-17 16:28:14 -0700287 // Unknown multiplier character.
Brian Carlstrom8a436592011-08-15 21:27:23 -0700288 return 0;
289 }
Brian Carlstromf734cf52011-08-17 16:28:14 -0700290
291 if (val <= std::numeric_limits<size_t>::max() / mul) {
292 val *= mul;
293 } else {
294 // Clamp to a multiple of 1024.
295 val = std::numeric_limits<size_t>::max() & ~(1024-1);
296 }
297 } else {
298 // There's more than one character after the numeric part.
299 return 0;
300 }
Brian Carlstrom8a436592011-08-15 21:27:23 -0700301 }
302 // The man page says that a -Xm value must be a multiple of 1024.
303 if (val % div == 0) {
304 return val;
305 }
Carl Shapirofc322c72011-07-27 00:20:01 -0700306 }
307 }
Brian Carlstrom8a436592011-08-15 21:27:23 -0700308 return 0;
Carl Shapirofc322c72011-07-27 00:20:01 -0700309}
310
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800311size_t ParseIntegerOrDie(const std::string& s) {
312 std::string::size_type colon = s.find(':');
313 if (colon == std::string::npos) {
Elliott Hughesbb1e8f02011-10-18 14:14:25 -0700314 LOG(FATAL) << "Missing integer: " << s;
315 }
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800316 const char* begin = &s[colon + 1];
Elliott Hughesbb1e8f02011-10-18 14:14:25 -0700317 char* end;
318 size_t result = strtoul(begin, &end, 10);
319 if (begin == end || *end != '\0') {
320 LOG(FATAL) << "Failed to parse integer in: " << s;
321 }
322 return result;
323}
324
Mathieu Chartier6aa3df92013-09-17 15:17:28 -0700325void Runtime::SweepSystemWeaks(RootVisitor* visitor, void* arg) {
326 GetInternTable()->SweepInternTableWeaks(visitor, arg);
327 GetMonitorList()->SweepMonitorList(visitor, arg);
328 GetJavaVM()->SweepJniWeakGlobals(visitor, arg);
329}
330
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700331Runtime::ParsedOptions* Runtime::ParsedOptions::Create(const Options& options, bool ignore_unrecognized) {
Elliott Hughes90a33692011-08-30 13:27:07 -0700332 UniquePtr<ParsedOptions> parsed(new ParsedOptions());
Brian Carlstroma004aa92012-02-08 18:05:09 -0800333 const char* boot_class_path_string = getenv("BOOTCLASSPATH");
334 if (boot_class_path_string != NULL) {
335 parsed->boot_class_path_string_ = boot_class_path_string;
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700336 }
Brian Carlstroma004aa92012-02-08 18:05:09 -0800337 const char* class_path_string = getenv("CLASSPATH");
338 if (class_path_string != NULL) {
339 parsed->class_path_string_ = class_path_string;
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700340 }
Elliott Hughes67d92002012-03-26 15:08:51 -0700341 // -Xcheck:jni is off by default for regular builds but on by default in debug builds.
342 parsed->check_jni_ = kIsDebugBuild;
Elliott Hughes85d15452011-09-16 17:33:01 -0700343
Ian Rogers1d54e732013-05-02 21:10:01 -0700344 parsed->heap_initial_size_ = gc::Heap::kDefaultInitialSize;
345 parsed->heap_maximum_size_ = gc::Heap::kDefaultMaximumSize;
346 parsed->heap_min_free_ = gc::Heap::kDefaultMinFree;
347 parsed->heap_max_free_ = gc::Heap::kDefaultMaxFree;
348 parsed->heap_target_utilization_ = gc::Heap::kDefaultTargetUtilization;
Elliott Hughes6cf23882012-06-15 15:42:07 -0700349 parsed->heap_growth_limit_ = 0; // 0 means no growth limit.
Mathieu Chartier63a54342013-07-23 13:17:59 -0700350 // Default to number of processors minus one since the main GC thread also does work.
Mathieu Chartier2775ee42013-08-20 17:43:47 -0700351 parsed->parallel_gc_threads_ = sysconf(_SC_NPROCESSORS_CONF) - 1;
352 // Only the main GC thread, no workers.
353 parsed->conc_gc_threads_ = 0;
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700354 parsed->stack_size_ = 0; // 0 means default.
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700355 parsed->max_spins_before_thin_lock_inflation_ = Monitor::kDefaultMaxSpinsBeforeThinLockInflation;
Mathieu Chartiere0a53e92013-08-05 10:17:40 -0700356 parsed->low_memory_mode_ = false;
Brian Carlstromf734cf52011-08-17 16:28:14 -0700357
Elliott Hughesd9c67be2012-02-02 19:54:06 -0800358 parsed->is_compiler_ = false;
Elliott Hughes9ca7a1f2011-10-11 14:29:52 -0700359 parsed->is_zygote_ = false;
Ian Rogers50ffee22012-11-20 11:47:44 -0800360 parsed->interpreter_only_ = false;
Mathieu Chartier069387a2012-06-18 12:01:01 -0700361 parsed->is_concurrent_gc_enabled_ = true;
Anwar Ghuloum87183592013-08-14 12:12:19 -0700362 parsed->is_explicit_gc_disabled_ = false;
Elliott Hughes9ca7a1f2011-10-11 14:29:52 -0700363
Mathieu Chartier2775ee42013-08-20 17:43:47 -0700364 parsed->long_pause_log_threshold_ = gc::Heap::kDefaultLongPauseLogThreshold;
365 parsed->long_gc_log_threshold_ = gc::Heap::kDefaultLongGCLogThreshold;
366 parsed->ignore_max_footprint_ = false;
367
Elliott Hughesfc861622011-10-17 17:57:47 -0700368 parsed->lock_profiling_threshold_ = 0;
369 parsed->hook_is_sensitive_thread_ = NULL;
370
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700371 parsed->hook_vfprintf_ = vfprintf;
372 parsed->hook_exit_ = exit;
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700373 parsed->hook_abort_ = NULL; // We don't call abort(3) by default; see Runtime::Abort.
Brian Carlstrom8a436592011-08-15 21:27:23 -0700374
buzbeea024a062013-07-31 10:47:37 -0700375 parsed->compiler_filter_ = Runtime::kDefaultCompilerFilter;
376 parsed->huge_method_threshold_ = Runtime::kDefaultHugeMethodThreshold;
377 parsed->large_method_threshold_ = Runtime::kDefaultLargeMethodThreshold;
378 parsed->small_method_threshold_ = Runtime::kDefaultSmallMethodThreshold;
379 parsed->tiny_method_threshold_ = Runtime::kDefaultTinyMethodThreshold;
380 parsed->num_dex_methods_threshold_ = Runtime::kDefaultNumDexMethodsThreshold;
Anwar Ghuloum8447d842013-04-30 17:27:40 -0700381
Dragos Sbirlea7467ee02013-06-21 09:20:34 -0700382 parsed->sea_ir_mode_ = false;
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700383// gLogVerbosity.class_linker = true; // TODO: don't check this in!
384// gLogVerbosity.compiler = true; // TODO: don't check this in!
Anwar Ghuloum75a43f12013-08-13 17:22:14 -0700385// gLogVerbosity.verifier = true; // TODO: don't check this in!
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700386// gLogVerbosity.heap = true; // TODO: don't check this in!
387// gLogVerbosity.gc = true; // TODO: don't check this in!
388// gLogVerbosity.jdwp = true; // TODO: don't check this in!
389// gLogVerbosity.jni = true; // TODO: don't check this in!
390// gLogVerbosity.monitor = true; // TODO: don't check this in!
391// gLogVerbosity.startup = true; // TODO: don't check this in!
392// gLogVerbosity.third_party_jni = true; // TODO: don't check this in!
393// gLogVerbosity.threads = true; // TODO: don't check this in!
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800394
jeffhaob5e81852012-03-12 11:15:45 -0700395 parsed->method_trace_ = false;
396 parsed->method_trace_file_ = "/data/method-trace-file.bin";
397 parsed->method_trace_file_size_ = 10 * MB;
398
Brian Carlstrom8a436592011-08-15 21:27:23 -0700399 for (size_t i = 0; i < options.size(); ++i) {
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800400 const std::string option(options[i].first);
Brian Carlstrom0796af02011-10-12 14:31:45 -0700401 if (true && options[0].first == "-Xzygote") {
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700402 LOG(INFO) << "option[" << i << "]=" << option;
403 }
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800404 if (StartsWith(option, "-Xbootclasspath:")) {
Brian Carlstroma004aa92012-02-08 18:05:09 -0800405 parsed->boot_class_path_string_ = option.substr(strlen("-Xbootclasspath:")).data();
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700406 } else if (option == "-classpath" || option == "-cp") {
407 // TODO: support -Djava.class.path
408 i++;
409 if (i == options.size()) {
410 // TODO: usage
411 LOG(FATAL) << "Missing required class path value for " << option;
412 return NULL;
413 }
Brian Carlstroma004aa92012-02-08 18:05:09 -0800414 const StringPiece& value = options[i].first;
415 parsed->class_path_string_ = value.data();
416 } else if (option == "bootclasspath") {
417 parsed->boot_class_path_
418 = reinterpret_cast<const std::vector<const DexFile*>*>(options[i].second);
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800419 } else if (StartsWith(option, "-Ximage:")) {
Brian Carlstroma004aa92012-02-08 18:05:09 -0800420 parsed->image_ = option.substr(strlen("-Ximage:")).data();
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800421 } else if (StartsWith(option, "-Xcheck:jni")) {
Elliott Hughes515a5bc2011-08-17 11:08:34 -0700422 parsed->check_jni_ = true;
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800423 } else if (StartsWith(option, "-Xrunjdwp:") || StartsWith(option, "-agentlib:jdwp=")) {
424 std::string tail(option.substr(option[1] == 'X' ? 10 : 15));
Elliott Hughes3bb81562011-10-21 18:52:59 -0700425 if (tail == "help" || !Dbg::ParseJdwpOptions(tail)) {
426 LOG(FATAL) << "Example: -Xrunjdwp:transport=dt_socket,address=8000,server=y\n"
427 << "Example: -Xrunjdwp:transport=dt_socket,address=localhost:6500,server=n";
428 return NULL;
429 }
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800430 } else if (StartsWith(option, "-Xms")) {
431 size_t size = ParseMemoryOption(option.substr(strlen("-Xms")).c_str(), 1024);
Brian Carlstromf734cf52011-08-17 16:28:14 -0700432 if (size == 0) {
433 if (ignore_unrecognized) {
434 continue;
435 }
Brian Carlstrom4a289ed2011-08-16 17:17:49 -0700436 // TODO: usage
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700437 LOG(FATAL) << "Failed to parse " << option;
Brian Carlstromf734cf52011-08-17 16:28:14 -0700438 return NULL;
439 }
440 parsed->heap_initial_size_ = size;
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800441 } else if (StartsWith(option, "-Xmx")) {
442 size_t size = ParseMemoryOption(option.substr(strlen("-Xmx")).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_maximum_size_ = size;
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800452 } else if (StartsWith(option, "-XX:HeapGrowthLimit=")) {
453 size_t size = ParseMemoryOption(option.substr(strlen("-XX:HeapGrowthLimit=")).c_str(), 1024);
jeffhaoc1160702011-10-27 15:48:45 -0700454 if (size == 0) {
455 if (ignore_unrecognized) {
456 continue;
457 }
458 // TODO: usage
459 LOG(FATAL) << "Failed to parse " << option;
460 return NULL;
461 }
462 parsed->heap_growth_limit_ = size;
Mathieu Chartier0051be62012-10-12 17:47:11 -0700463 } else if (StartsWith(option, "-XX:HeapMinFree=")) {
464 size_t size = ParseMemoryOption(option.substr(strlen("-XX:HeapMinFree=")).c_str(), 1024);
465 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_min_free_ = size;
474 } else if (StartsWith(option, "-XX:HeapMaxFree=")) {
475 size_t size = ParseMemoryOption(option.substr(strlen("-XX:HeapMaxFree=")).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_max_free_ = size;
485 } else if (StartsWith(option, "-XX:HeapTargetUtilization=")) {
486 std::istringstream iss(option.substr(strlen("-XX:HeapTargetUtilization=")));
487 double value;
488 iss >> value;
489 // 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 -0700490 const bool sane_val = iss.eof() && (value >= 0.1) && (value <= 0.9);
Mathieu Chartier0051be62012-10-12 17:47:11 -0700491 if (!sane_val) {
492 if (ignore_unrecognized) {
493 continue;
494 }
495 LOG(FATAL) << "Invalid option '" << option << "'";
496 return NULL;
497 }
498 parsed->heap_target_utilization_ = value;
Mathieu Chartier2775ee42013-08-20 17:43:47 -0700499 } else if (StartsWith(option, "-XX:ParallelGCThreads=")) {
500 parsed->parallel_gc_threads_ =
501 ParseMemoryOption(option.substr(strlen("-XX:ParallelGCThreads=")).c_str(), 1024);
502 } else if (StartsWith(option, "-XX:ConcGCThreads=")) {
503 parsed->conc_gc_threads_ =
504 ParseMemoryOption(option.substr(strlen("-XX:ConcGCThreads=")).c_str(), 1024);
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800505 } else if (StartsWith(option, "-Xss")) {
506 size_t size = ParseMemoryOption(option.substr(strlen("-Xss")).c_str(), 1);
Brian Carlstromf734cf52011-08-17 16:28:14 -0700507 if (size == 0) {
508 if (ignore_unrecognized) {
509 continue;
510 }
Brian Carlstrom4a289ed2011-08-16 17:17:49 -0700511 // TODO: usage
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700512 LOG(FATAL) << "Failed to parse " << option;
Brian Carlstromf734cf52011-08-17 16:28:14 -0700513 return NULL;
514 }
515 parsed->stack_size_ = size;
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700516 } else if (StartsWith(option, "-XX:MaxSpinsBeforeThinLockInflation=")) {
517 parsed->max_spins_before_thin_lock_inflation_ =
518 strtoul(option.substr(strlen("-XX:MaxSpinsBeforeThinLockInflation=")).c_str(),
519 nullptr, 10);
Mathieu Chartier2775ee42013-08-20 17:43:47 -0700520 } else if (option == "-XX:LongPauseLogThreshold") {
521 parsed->long_pause_log_threshold_ =
522 ParseMemoryOption(option.substr(strlen("-XX:LongPauseLogThreshold=")).c_str(), 1024);
523 } else if (option == "-XX:LongGCLogThreshold") {
524 parsed->long_gc_log_threshold_ =
525 ParseMemoryOption(option.substr(strlen("-XX:LongGCLogThreshold")).c_str(), 1024);
526 } else if (option == "-XX:IgnoreMaxFootprint") {
527 parsed->ignore_max_footprint_ = true;
Mathieu Chartiere0a53e92013-08-05 10:17:40 -0700528 } else if (option == "-XX:LowMemoryMode") {
529 parsed->low_memory_mode_ = true;
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800530 } else if (StartsWith(option, "-D")) {
531 parsed->properties_.push_back(option.substr(strlen("-D")));
532 } else if (StartsWith(option, "-Xjnitrace:")) {
533 parsed->jni_trace_ = option.substr(strlen("-Xjnitrace:"));
Brian Carlstrom5de8fe52011-10-16 14:10:09 -0700534 } else if (option == "compiler") {
Elliott Hughesd9c67be2012-02-02 19:54:06 -0800535 parsed->is_compiler_ = true;
Elliott Hughes9ca7a1f2011-10-11 14:29:52 -0700536 } else if (option == "-Xzygote") {
537 parsed->is_zygote_ = true;
Ian Rogers50ffee22012-11-20 11:47:44 -0800538 } else if (option == "-Xint") {
539 parsed->interpreter_only_ = true;
Mathieu Chartier069387a2012-06-18 12:01:01 -0700540 } else if (StartsWith(option, "-Xgc:")) {
541 std::vector<std::string> gc_options;
542 Split(option.substr(strlen("-Xgc:")), ',', gc_options);
543 for (size_t i = 0; i < gc_options.size(); ++i) {
544 if (gc_options[i] == "noconcurrent") {
545 parsed->is_concurrent_gc_enabled_ = false;
546 } else if (gc_options[i] == "concurrent") {
547 parsed->is_concurrent_gc_enabled_ = true;
548 } else {
549 LOG(WARNING) << "Ignoring unknown -Xgc option: " << gc_options[i];
550 }
551 }
Anwar Ghuloum87183592013-08-14 12:12:19 -0700552 } else if (option == "-XX:+DisableExplicitGC") {
553 parsed->is_explicit_gc_disabled_ = true;
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800554 } else if (StartsWith(option, "-verbose:")) {
Elliott Hughes0af55432011-08-17 18:37:28 -0700555 std::vector<std::string> verbose_options;
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800556 Split(option.substr(strlen("-verbose:")), ',', verbose_options);
Elliott Hughes0af55432011-08-17 18:37:28 -0700557 for (size_t i = 0; i < verbose_options.size(); ++i) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800558 if (verbose_options[i] == "class") {
559 gLogVerbosity.class_linker = true;
Anwar Ghuloum75a43f12013-08-13 17:22:14 -0700560 } else if (verbose_options[i] == "verifier") {
561 gLogVerbosity.verifier = true;
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800562 } else if (verbose_options[i] == "compiler") {
563 gLogVerbosity.compiler = true;
564 } else if (verbose_options[i] == "heap") {
565 gLogVerbosity.heap = true;
566 } else if (verbose_options[i] == "gc") {
567 gLogVerbosity.gc = true;
568 } else if (verbose_options[i] == "jdwp") {
569 gLogVerbosity.jdwp = true;
570 } else if (verbose_options[i] == "jni") {
571 gLogVerbosity.jni = true;
572 } else if (verbose_options[i] == "monitor") {
573 gLogVerbosity.monitor = true;
574 } else if (verbose_options[i] == "startup") {
575 gLogVerbosity.startup = true;
576 } else if (verbose_options[i] == "third-party-jni") {
577 gLogVerbosity.third_party_jni = true;
578 } else if (verbose_options[i] == "threads") {
579 gLogVerbosity.threads = true;
580 } else {
581 LOG(WARNING) << "Ignoring unknown -verbose option: " << verbose_options[i];
582 }
Elliott Hughes0af55432011-08-17 18:37:28 -0700583 }
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800584 } else if (StartsWith(option, "-Xjnigreflimit:")) {
Elliott Hughes2010a602013-07-02 14:17:23 -0700585 // Silently ignored for backwards compatibility.
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800586 } else if (StartsWith(option, "-Xlockprofthreshold:")) {
Elliott Hughesbb1e8f02011-10-18 14:14:25 -0700587 parsed->lock_profiling_threshold_ = ParseIntegerOrDie(option);
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800588 } else if (StartsWith(option, "-Xstacktracefile:")) {
Elliott Hughes206c20d2012-06-28 11:05:37 -0700589 parsed->stack_trace_file_ = option.substr(strlen("-Xstacktracefile:"));
Elliott Hughesfc861622011-10-17 17:57:47 -0700590 } else if (option == "sensitiveThread") {
Ian Rogers1b09b092012-08-20 15:35:52 -0700591 parsed->hook_is_sensitive_thread_ = reinterpret_cast<bool (*)()>(const_cast<void*>(options[i].second));
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700592 } else if (option == "vfprintf") {
Ian Rogers1b09b092012-08-20 15:35:52 -0700593 parsed->hook_vfprintf_ =
594 reinterpret_cast<int (*)(FILE *, const char*, va_list)>(const_cast<void*>(options[i].second));
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700595 } else if (option == "exit") {
Ian Rogers1b09b092012-08-20 15:35:52 -0700596 parsed->hook_exit_ = reinterpret_cast<void(*)(jint)>(const_cast<void*>(options[i].second));
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700597 } else if (option == "abort") {
Ian Rogers1b09b092012-08-20 15:35:52 -0700598 parsed->hook_abort_ = reinterpret_cast<void(*)()>(const_cast<void*>(options[i].second));
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700599 } else if (option == "host-prefix") {
600 parsed->host_prefix_ = reinterpret_cast<const char*>(options[i].second);
Elliott Hughesb3e66df2012-01-12 14:49:18 -0800601 } else if (option == "-Xgenregmap" || option == "-Xgc:precise") {
602 // We silently ignore these for backwards compatibility.
jeffhaob5e81852012-03-12 11:15:45 -0700603 } else if (option == "-Xmethod-trace") {
604 parsed->method_trace_ = true;
605 } else if (StartsWith(option, "-Xmethod-trace-file:")) {
606 parsed->method_trace_file_ = option.substr(strlen("-Xmethod-trace-file:"));
607 } else if (StartsWith(option, "-Xmethod-trace-file-size:")) {
608 parsed->method_trace_file_size_ = ParseIntegerOrDie(option);
Elliott Hughese119a362012-05-22 17:37:06 -0700609 } else if (option == "-Xprofile:threadcpuclock") {
610 Trace::SetDefaultClockSource(kProfilerClockSourceThreadCpu);
611 } else if (option == "-Xprofile:wallclock") {
612 Trace::SetDefaultClockSource(kProfilerClockSourceWall);
613 } else if (option == "-Xprofile:dualclock") {
614 Trace::SetDefaultClockSource(kProfilerClockSourceDual);
buzbeea024a062013-07-31 10:47:37 -0700615 } else if (option == "-compiler-filter:interpret-only") {
616 parsed->compiler_filter_ = kInterpretOnly;
buzbeea024a062013-07-31 10:47:37 -0700617 } else if (option == "-compiler-filter:space") {
618 parsed->compiler_filter_ = kSpace;
619 } else if (option == "-compiler-filter:balanced") {
620 parsed->compiler_filter_ = kBalanced;
621 } else if (option == "-compiler-filter:speed") {
622 parsed->compiler_filter_ = kSpeed;
buzbeefe9ca402013-08-21 09:48:11 -0700623 } else if (option == "-compiler-filter:everything") {
624 parsed->compiler_filter_ = kEverything;
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700625 } else if (option == "-sea_ir") {
Dragos Sbirlea7467ee02013-06-21 09:20:34 -0700626 parsed->sea_ir_mode_ = true;
buzbeea024a062013-07-31 10:47:37 -0700627 } else if (StartsWith(option, "-huge-method-max:")) {
628 parsed->huge_method_threshold_ = ParseIntegerOrDie(option);
629 } else if (StartsWith(option, "-large-method-max:")) {
630 parsed->large_method_threshold_ = ParseIntegerOrDie(option);
631 } else if (StartsWith(option, "-small-method-max:")) {
632 parsed->small_method_threshold_ = ParseIntegerOrDie(option);
633 } else if (StartsWith(option, "-tiny-method-max:")) {
634 parsed->tiny_method_threshold_ = ParseIntegerOrDie(option);
635 } else if (StartsWith(option, "-num-dex-methods-max:")) {
636 parsed->num_dex_methods_threshold_ = ParseIntegerOrDie(option);
Brian Carlstrom8a436592011-08-15 21:27:23 -0700637 } else {
638 if (!ignore_unrecognized) {
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700639 // TODO: print usage via vfprintf
Brian Carlstrom27ec9612011-09-19 20:20:38 -0700640 LOG(ERROR) << "Unrecognized option " << option;
641 // TODO: this should exit, but for now tolerate unknown options
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700642 // return NULL;
Brian Carlstrom8a436592011-08-15 21:27:23 -0700643 }
644 }
645 }
646
Brian Carlstromfb67b722013-06-24 23:41:51 -0700647 // If a reference to the dalvik core.jar snuck in, replace it with
648 // the art specific version. This can happen with on device
649 // boot.art/boot.oat generation by GenerateImage which relies on the
650 // value of BOOTCLASSPATH.
651 std::string core_jar("/core.jar");
652 size_t core_jar_pos = parsed->boot_class_path_string_.find(core_jar);
653 if (core_jar_pos != std::string::npos) {
654 parsed->boot_class_path_string_.replace(core_jar_pos, core_jar.size(), "/core-libart.jar");
655 }
656
Brian Carlstrom223f20f2012-02-04 23:06:55 -0800657 if (!parsed->is_compiler_ && parsed->image_.empty()) {
658 parsed->image_ += GetAndroidRoot();
659 parsed->image_ += "/framework/boot.art";
Brian Carlstrom5de8fe52011-10-16 14:10:09 -0700660 }
jeffhaoc1160702011-10-27 15:48:45 -0700661 if (parsed->heap_growth_limit_ == 0) {
662 parsed->heap_growth_limit_ = parsed->heap_maximum_size_;
663 }
Brian Carlstrom5de8fe52011-10-16 14:10:09 -0700664
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700665 return parsed.release();
Brian Carlstrom8a436592011-08-15 21:27:23 -0700666}
667
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700668bool Runtime::Create(const Options& options, bool ignore_unrecognized) {
Carl Shapiro2ed144c2011-07-26 16:52:08 -0700669 // TODO: acquire a static mutex on Runtime to avoid racing.
670 if (Runtime::instance_ != NULL) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700671 return false;
Carl Shapiro2ed144c2011-07-26 16:52:08 -0700672 }
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700673 InitLogging(NULL); // Calls Locks::Init() as a side effect.
Elliott Hughesdcc24742011-09-07 14:02:44 -0700674 instance_ = new Runtime;
675 if (!instance_->Init(options, ignore_unrecognized)) {
676 delete instance_;
677 instance_ = NULL;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700678 return false;
Carl Shapiro61e019d2011-07-14 16:53:09 -0700679 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700680 return true;
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700681}
Elliott Hughes0af55432011-08-17 18:37:28 -0700682
Brian Carlstromce888532013-10-10 00:32:58 -0700683jobject CreateSystemClassLoader() {
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800684 if (Runtime::Current()->UseCompileTimeClassPath()) {
Brian Carlstromce888532013-10-10 00:32:58 -0700685 return NULL;
Brian Carlstromaded5f72011-10-07 17:15:04 -0700686 }
687
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700688 ScopedObjectAccess soa(Thread::Current());
Brian Carlstromaded5f72011-10-07 17:15:04 -0700689
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800690 mirror::Class* class_loader_class =
691 soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_ClassLoader);
Ian Rogers365c1022012-06-22 15:05:28 -0700692 CHECK(Runtime::Current()->GetClassLinker()->EnsureInitialized(class_loader_class, true, true));
Brian Carlstromaded5f72011-10-07 17:15:04 -0700693
Brian Carlstromea46f952013-07-30 01:26:50 -0700694 mirror::ArtMethod* getSystemClassLoader =
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800695 class_loader_class->FindDirectMethod("getSystemClassLoader", "()Ljava/lang/ClassLoader;");
Brian Carlstromdf143242011-10-10 18:05:34 -0700696 CHECK(getSystemClassLoader != NULL);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700697
Jeff Hao5d917302013-02-27 17:57:33 -0800698 JValue result;
Jeff Hao5d917302013-02-27 17:57:33 -0800699 ArgArray arg_array(NULL, 0);
Jeff Hao6474d192013-03-26 14:08:09 -0700700 InvokeWithArgArray(soa, getSystemClassLoader, &arg_array, &result, 'L');
Jeff Hao5d917302013-02-27 17:57:33 -0800701 mirror::ClassLoader* class_loader = down_cast<mirror::ClassLoader*>(result.GetL());
Ian Rogers365c1022012-06-22 15:05:28 -0700702 CHECK(class_loader != NULL);
Jesse Wilson1b2b2f22011-11-22 11:47:44 -0500703
Brian Carlstromce888532013-10-10 00:32:58 -0700704 JNIEnv* env = soa.Self()->GetJniEnv();
705 ScopedLocalRef<jobject> system_class_loader(env, soa.AddLocalReference<jobject>(class_loader));
706 CHECK(system_class_loader.get() != NULL);
707
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700708 soa.Self()->SetClassLoaderOverride(class_loader);
Ian Rogers365c1022012-06-22 15:05:28 -0700709
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800710 mirror::Class* thread_class = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_Thread);
Ian Rogers365c1022012-06-22 15:05:28 -0700711 CHECK(Runtime::Current()->GetClassLinker()->EnsureInitialized(thread_class, true, true));
712
Brian Carlstromea46f952013-07-30 01:26:50 -0700713 mirror::ArtField* contextClassLoader = thread_class->FindDeclaredInstanceField("contextClassLoader",
714 "Ljava/lang/ClassLoader;");
Jesse Wilson1b2b2f22011-11-22 11:47:44 -0500715 CHECK(contextClassLoader != NULL);
Ian Rogers365c1022012-06-22 15:05:28 -0700716
Ian Rogerscfaa4552012-11-26 21:00:08 -0800717 contextClassLoader->SetObject(soa.Self()->GetPeer(), class_loader);
Brian Carlstromce888532013-10-10 00:32:58 -0700718
719 return env->NewGlobalRef(system_class_loader.get());
Brian Carlstromaded5f72011-10-07 17:15:04 -0700720}
721
Brian Carlstrombd86bcc2013-03-10 20:26:16 -0700722bool Runtime::Start() {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800723 VLOG(startup) << "Runtime::Start entering";
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700724
725 CHECK(host_prefix_.empty()) << host_prefix_;
726
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700727 // Restore main thread state to kNative as expected by native code.
Ian Rogersa436fde2013-08-27 23:34:06 -0700728 Thread* self = Thread::Current();
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700729 self->TransitionFromRunnableToSuspended(kNative);
730
Brian Carlstrom5d40f182011-09-26 22:29:18 -0700731 started_ = true;
732
Brian Carlstromae826982011-11-09 01:33:42 -0800733 // InitNativeMethods needs to be after started_ so that the classes
734 // it touches will have methods linked to the oat file if necessary.
735 InitNativeMethods();
736
Ian Rogers365c1022012-06-22 15:05:28 -0700737 // Initialize well known thread group values that may be accessed threads while attaching.
738 InitThreadGroups(self);
739
Jesse Wilson9a6bae82011-11-14 14:57:30 -0500740 Thread::FinishStartup();
741
Brian Carlstrombd86bcc2013-03-10 20:26:16 -0700742 if (is_zygote_) {
743 if (!InitZygote()) {
744 return false;
745 }
746 } else {
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700747 DidForkFromZygote();
748 }
Elliott Hughes9ca7a1f2011-10-11 14:29:52 -0700749
Elliott Hughes85d15452011-09-16 17:33:01 -0700750 StartDaemonThreads();
Brian Carlstrom0a5b14d2011-09-27 13:29:15 -0700751
Brian Carlstromce888532013-10-10 00:32:58 -0700752 system_class_loader_ = CreateSystemClassLoader();
Brian Carlstromaded5f72011-10-07 17:15:04 -0700753
Elliott Hughes225f5a12012-06-11 11:23:48 -0700754 self->GetJniEnv()->locals.AssertEmpty();
Elliott Hughes726079d2011-10-07 18:43:44 -0700755
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800756 VLOG(startup) << "Runtime::Start exiting";
Mathieu Chartier7664f5c2012-06-08 18:15:32 -0700757
758 finished_starting_ = true;
Brian Carlstrombd86bcc2013-03-10 20:26:16 -0700759
760 return true;
Elliott Hughes85d15452011-09-16 17:33:01 -0700761}
762
Ian Rogers120f1c72012-09-28 17:17:10 -0700763void Runtime::EndThreadBirth() EXCLUSIVE_LOCKS_REQUIRED(Locks::runtime_shutdown_lock_) {
764 DCHECK_GT(threads_being_born_, 0U);
765 threads_being_born_--;
766 if (shutting_down_started_ && threads_being_born_ == 0) {
Ian Rogersc604d732012-10-14 16:09:54 -0700767 shutdown_cond_->Broadcast(Thread::Current());
Ian Rogers120f1c72012-09-28 17:17:10 -0700768 }
769}
770
Brian Carlstrombd86bcc2013-03-10 20:26:16 -0700771// Do zygote-mode-only initialization.
772bool Runtime::InitZygote() {
773 // zygote goes into its own process group
Brian Carlstromb1eba212013-07-17 18:07:19 -0700774 setpgid(0, 0);
Brian Carlstrombd86bcc2013-03-10 20:26:16 -0700775
776 // See storage config details at http://source.android.com/tech/storage/
777 // Create private mount namespace shared by all children
778 if (unshare(CLONE_NEWNS) == -1) {
779 PLOG(WARNING) << "Failed to unshare()";
780 return false;
781 }
782
783 // Mark rootfs as being a slave so that changes from default
784 // namespace only flow into our children.
785 if (mount("rootfs", "/", NULL, (MS_SLAVE | MS_REC), NULL) == -1) {
786 PLOG(WARNING) << "Failed to mount() rootfs as MS_SLAVE";
787 return false;
788 }
789
790 // Create a staging tmpfs that is shared by our children; they will
791 // bind mount storage into their respective private namespaces, which
792 // are isolated from each other.
793 const char* target_base = getenv("EMULATED_STORAGE_TARGET");
794 if (target_base != NULL) {
795 if (mount("tmpfs", target_base, "tmpfs", MS_NOSUID | MS_NODEV,
Jeff Sharkey52cd1e82013-09-17 16:25:12 -0700796 "uid=0,gid=1028,mode=0751") == -1) {
Brian Carlstrombd86bcc2013-03-10 20:26:16 -0700797 LOG(WARNING) << "Failed to mount tmpfs to " << target_base;
798 return false;
799 }
800 }
801
802 return true;
803}
804
Brian Carlstromcaabb1b2011-10-11 18:09:13 -0700805void Runtime::DidForkFromZygote() {
Brian Carlstromcaabb1b2011-10-11 18:09:13 -0700806 is_zygote_ = false;
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700807
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700808 // Create the thread pool.
809 heap_->CreateThreadPool();
810
Brian Carlstromcaabb1b2011-10-11 18:09:13 -0700811 StartSignalCatcher();
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700812
813 // Start the JDWP thread. If the command-line debugger flags specified "suspend=y",
814 // this will pause the runtime, so we probably want this to come last.
815 Dbg::StartJdwp();
Brian Carlstromcaabb1b2011-10-11 18:09:13 -0700816}
817
818void Runtime::StartSignalCatcher() {
819 if (!is_zygote_) {
Elliott Hughes94ce37a2011-10-18 15:07:48 -0700820 signal_catcher_ = new SignalCatcher(stack_trace_file_);
Brian Carlstromcaabb1b2011-10-11 18:09:13 -0700821 }
822}
823
Elliott Hughes85d15452011-09-16 17:33:01 -0700824void Runtime::StartDaemonThreads() {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800825 VLOG(startup) << "Runtime::StartDaemonThreads entering";
Elliott Hughes85d15452011-09-16 17:33:01 -0700826
Elliott Hughes719b3232011-09-25 17:42:19 -0700827 Thread* self = Thread::Current();
Brian Carlstromaded5f72011-10-07 17:15:04 -0700828
829 // Must be in the kNative state for calling native methods.
Ian Rogers50b35e22012-10-04 10:09:15 -0700830 CHECK_EQ(self->GetState(), kNative);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700831
Elliott Hughes719b3232011-09-25 17:42:19 -0700832 JNIEnv* env = self->GetJniEnv();
Ian Rogers2fa6b2e2012-10-17 00:10:17 -0700833 env->CallStaticVoidMethod(WellKnownClasses::java_lang_Daemons,
834 WellKnownClasses::java_lang_Daemons_start);
835 if (env->ExceptionCheck()) {
836 env->ExceptionDescribe();
837 LOG(FATAL) << "Error starting java.lang.Daemons";
838 }
Elliott Hughes9ca7a1f2011-10-11 14:29:52 -0700839
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800840 VLOG(startup) << "Runtime::StartDaemonThreads exiting";
Carl Shapiro61e019d2011-07-14 16:53:09 -0700841}
842
Elliott Hughes0af55432011-08-17 18:37:28 -0700843bool Runtime::Init(const Options& raw_options, bool ignore_unrecognized) {
Elliott Hughesc1674ed2011-08-25 18:09:09 -0700844 CHECK_EQ(sysconf(_SC_PAGE_SIZE), kPageSize);
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700845
Elliott Hughes90a33692011-08-30 13:27:07 -0700846 UniquePtr<ParsedOptions> options(ParsedOptions::Create(raw_options, ignore_unrecognized));
847 if (options.get() == NULL) {
Brian Carlstrome24fa612011-09-29 00:53:55 -0700848 LOG(ERROR) << "Failed to parse options";
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700849 return false;
850 }
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800851 VLOG(startup) << "Runtime::Init -verbose:startup enabled";
Elliott Hughes7ede61e2011-09-14 18:18:06 -0700852
Elliott Hughes7c6169d2012-05-02 16:11:48 -0700853 QuasiAtomic::Startup();
854
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800855 Monitor::Init(options->lock_profiling_threshold_, options->hook_is_sensitive_thread_);
Elliott Hughes32d6e1e2011-10-11 14:47:44 -0700856
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700857 host_prefix_ = options->host_prefix_;
Brian Carlstroma004aa92012-02-08 18:05:09 -0800858 boot_class_path_string_ = options->boot_class_path_string_;
859 class_path_string_ = options->class_path_string_;
Elliott Hughes7ede61e2011-09-14 18:18:06 -0700860 properties_ = options->properties_;
861
Elliott Hughesd9c67be2012-02-02 19:54:06 -0800862 is_compiler_ = options->is_compiler_;
Elliott Hughes9ca7a1f2011-10-11 14:29:52 -0700863 is_zygote_ = options->is_zygote_;
Mathieu Chartier069387a2012-06-18 12:01:01 -0700864 is_concurrent_gc_enabled_ = options->is_concurrent_gc_enabled_;
Anwar Ghuloum87183592013-08-14 12:12:19 -0700865 is_explicit_gc_disabled_ = options->is_explicit_gc_disabled_;
Elliott Hughes9ca7a1f2011-10-11 14:29:52 -0700866
buzbeea024a062013-07-31 10:47:37 -0700867 compiler_filter_ = options->compiler_filter_;
868 huge_method_threshold_ = options->huge_method_threshold_;
869 large_method_threshold_ = options->large_method_threshold_;
870 small_method_threshold_ = options->small_method_threshold_;
871 tiny_method_threshold_ = options->tiny_method_threshold_;
872 num_dex_methods_threshold_ = options->num_dex_methods_threshold_;
Anwar Ghuloum8447d842013-04-30 17:27:40 -0700873
Dragos Sbirlea7467ee02013-06-21 09:20:34 -0700874 sea_ir_mode_ = options->sea_ir_mode_;
Elliott Hughes0af55432011-08-17 18:37:28 -0700875 vfprintf_ = options->hook_vfprintf_;
876 exit_ = options->hook_exit_;
877 abort_ = options->hook_abort_;
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700878
Elliott Hughesbe759c62011-09-08 19:38:21 -0700879 default_stack_size_ = options->stack_size_;
Elliott Hughes94ce37a2011-10-18 15:07:48 -0700880 stack_trace_file_ = options->stack_trace_file_;
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700881
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700882 max_spins_before_thin_lock_inflation_ = options->max_spins_before_thin_lock_inflation_;
883
Elliott Hughesc33a32b2011-10-11 18:18:07 -0700884 monitor_list_ = new MonitorList;
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800885 thread_list_ = new ThreadList;
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700886 intern_table_ = new InternTable;
887
Logan Chiendd361c92012-04-10 23:40:37 +0800888
Ian Rogers62d6c772013-02-27 08:32:07 -0800889 if (options->interpreter_only_) {
890 GetInstrumentation()->ForceInterpretOnly();
891 }
892
Ian Rogers1d54e732013-05-02 21:10:01 -0700893 heap_ = new gc::Heap(options->heap_initial_size_,
894 options->heap_growth_limit_,
895 options->heap_min_free_,
896 options->heap_max_free_,
897 options->heap_target_utilization_,
898 options->heap_maximum_size_,
899 options->image_,
Mathieu Chartier63a54342013-07-23 13:17:59 -0700900 options->is_concurrent_gc_enabled_,
Mathieu Chartier2775ee42013-08-20 17:43:47 -0700901 options->parallel_gc_threads_,
902 options->conc_gc_threads_,
903 options->low_memory_mode_,
904 options->long_pause_log_threshold_,
905 options->long_gc_log_threshold_,
906 options->ignore_max_footprint_);
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700907
Elliott Hughesc1674ed2011-08-25 18:09:09 -0700908 BlockSignals();
Elliott Hughes457005c2012-04-16 13:54:25 -0700909 InitPlatformSignalHandlers();
Elliott Hughesc1674ed2011-08-25 18:09:09 -0700910
Elliott Hughesa0957642011-09-02 14:27:33 -0700911 java_vm_ = new JavaVMExt(this, options.get());
Elliott Hughes515a5bc2011-08-17 11:08:34 -0700912
Elliott Hughesbe759c62011-09-08 19:38:21 -0700913 Thread::Startup();
Elliott Hughesd92bec42011-09-02 17:04:36 -0700914
Mathieu Chartier664bebf2012-11-12 16:54:11 -0800915 // ClassLinker needs an attached thread, but we can't fully attach a thread without creating
916 // objects. We can't supply a thread group yet; it will be fixed later. Since we are the main
917 // thread, we do not get a java peer.
918 Thread* self = Thread::Attach("main", false, NULL, false);
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700919 CHECK_EQ(self->thin_lock_thread_id_, ThreadList::kMainThreadId);
Ian Rogers120f1c72012-09-28 17:17:10 -0700920 CHECK(self != NULL);
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700921
Brian Carlstromf28bc5b2011-10-26 01:15:03 -0700922 // Set us to runnable so tools using a runtime can allocate and GC by default
Ian Rogers120f1c72012-09-28 17:17:10 -0700923 self->TransitionFromSuspendedToRunnable();
Brian Carlstromf28bc5b2011-10-26 01:15:03 -0700924
Ian Rogersa436fde2013-08-27 23:34:06 -0700925 // Now we're attached, we can take the heap locks and validate the heap.
Ian Rogers141d6222012-04-05 12:23:06 -0700926 GetHeap()->EnableObjectValidation();
927
Ian Rogers1d54e732013-05-02 21:10:01 -0700928 CHECK_GE(GetHeap()->GetContinuousSpaces().size(), 1U);
929 if (GetHeap()->GetContinuousSpaces()[0]->IsImageSpace()) {
Brian Carlstroma004aa92012-02-08 18:05:09 -0800930 class_linker_ = ClassLinker::CreateFromImage(intern_table_);
931 } else {
932 CHECK(options->boot_class_path_ != NULL);
933 CHECK_NE(options->boot_class_path_->size(), 0U);
934 class_linker_ = ClassLinker::CreateFromCompiler(*options->boot_class_path_, intern_table_);
935 }
936 CHECK(class_linker_ != NULL);
Sameer Abu Asal51a5fb72013-02-19 14:25:01 -0800937 verifier::MethodVerifier::Init();
Brian Carlstrom6ea095a2011-08-16 15:26:54 -0700938
jeffhaob5e81852012-03-12 11:15:45 -0700939 method_trace_ = options->method_trace_;
940 method_trace_file_ = options->method_trace_file_;
941 method_trace_file_size_ = options->method_trace_file_size_;
942
943 if (options->method_trace_) {
Jeff Hao23009dc2013-08-22 15:36:42 -0700944 Trace::Start(options->method_trace_file_.c_str(), -1, options->method_trace_file_size_, 0,
945 false, false, 0);
jeffhaob5e81852012-03-12 11:15:45 -0700946 }
947
Ian Rogersa436fde2013-08-27 23:34:06 -0700948 // Pre-allocate an OutOfMemoryError for the double-OOME case.
949 self->ThrowNewException(ThrowLocation(), "Ljava/lang/OutOfMemoryError;",
950 "OutOfMemoryError thrown while trying to throw OutOfMemoryError; no stack available");
951 pre_allocated_OutOfMemoryError_ = self->GetException(NULL);
952 self->ClearException();
953
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800954 VLOG(startup) << "Runtime::Init exiting";
Carl Shapiro1fb86202011-06-27 17:43:13 -0700955 return true;
956}
957
Elliott Hughes038a8062011-09-18 14:12:41 -0700958void Runtime::InitNativeMethods() {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800959 VLOG(startup) << "Runtime::InitNativeMethods entering";
Elliott Hughesad7c2a32011-08-31 11:58:10 -0700960 Thread* self = Thread::Current();
961 JNIEnv* env = self->GetJniEnv();
962
Elliott Hughes418d20f2011-09-22 14:00:39 -0700963 // Must be in the kNative state for calling native methods (JNI_OnLoad code).
Ian Rogers50b35e22012-10-04 10:09:15 -0700964 CHECK_EQ(self->GetState(), kNative);
Elliott Hughesad7c2a32011-08-31 11:58:10 -0700965
Elliott Hughes418d20f2011-09-22 14:00:39 -0700966 // First set up JniConstants, which is used by both the runtime's built-in native
967 // methods and libcore.
Elliott Hughesfea966e2011-09-22 10:26:20 -0700968 JniConstants::init(env);
Elliott Hugheseac76672012-05-24 21:56:51 -0700969 WellKnownClasses::Init(env);
Elliott Hughesfea966e2011-09-22 10:26:20 -0700970
Elliott Hughes418d20f2011-09-22 14:00:39 -0700971 // Then set up the native methods provided by the runtime itself.
Elliott Hughesad7c2a32011-08-31 11:58:10 -0700972 RegisterRuntimeNativeMethods(env);
973
Elliott Hughes418d20f2011-09-22 14:00:39 -0700974 // Then set up libcore, which is just a regular JNI library with a regular JNI_OnLoad.
975 // Most JNI libraries can just use System.loadLibrary, but libcore can't because it's
976 // the library that implements System.loadLibrary!
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700977 {
978 std::string mapped_name(StringPrintf(OS_SHARED_LIB_FORMAT_STR, "javacore"));
979 std::string reason;
980 self->TransitionFromSuspendedToRunnable();
Ian Rogers1eb512d2013-10-18 15:42:20 -0700981 if (!instance_->java_vm_->LoadNativeLibrary(mapped_name, NULL, &reason)) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700982 LOG(FATAL) << "LoadNativeLibrary failed for \"" << mapped_name << "\": " << reason;
983 }
984 self->TransitionFromRunnableToSuspended(kNative);
985 }
Ian Rogersef28b142012-11-30 14:22:18 -0800986
987 // Initialize well known classes that may invoke runtime native methods.
988 WellKnownClasses::LateInit(env);
989
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800990 VLOG(startup) << "Runtime::InitNativeMethods exiting";
Elliott Hughesad7c2a32011-08-31 11:58:10 -0700991}
992
Ian Rogers365c1022012-06-22 15:05:28 -0700993void Runtime::InitThreadGroups(Thread* self) {
994 JNIEnvExt* env = self->GetJniEnv();
995 ScopedJniEnvLocalRefState env_state(env);
996 main_thread_group_ =
997 env->NewGlobalRef(env->GetStaticObjectField(WellKnownClasses::java_lang_ThreadGroup,
998 WellKnownClasses::java_lang_ThreadGroup_mainThreadGroup));
Brian Carlstrom034f76b2012-08-01 15:51:58 -0700999 CHECK(main_thread_group_ != NULL || IsCompiler());
Ian Rogers365c1022012-06-22 15:05:28 -07001000 system_thread_group_ =
1001 env->NewGlobalRef(env->GetStaticObjectField(WellKnownClasses::java_lang_ThreadGroup,
1002 WellKnownClasses::java_lang_ThreadGroup_systemThreadGroup));
Brian Carlstrom034f76b2012-08-01 15:51:58 -07001003 CHECK(system_thread_group_ != NULL || IsCompiler());
1004}
1005
1006jobject Runtime::GetMainThreadGroup() const {
1007 CHECK(main_thread_group_ != NULL || IsCompiler());
1008 return main_thread_group_;
1009}
1010
1011jobject Runtime::GetSystemThreadGroup() const {
1012 CHECK(system_thread_group_ != NULL || IsCompiler());
1013 return system_thread_group_;
Ian Rogers365c1022012-06-22 15:05:28 -07001014}
1015
Brian Carlstromce888532013-10-10 00:32:58 -07001016jobject Runtime::GetSystemClassLoader() const {
1017 CHECK(system_class_loader_ != NULL || IsCompiler());
1018 return system_class_loader_;
1019}
1020
Elliott Hughesad7c2a32011-08-31 11:58:10 -07001021void Runtime::RegisterRuntimeNativeMethods(JNIEnv* env) {
1022#define REGISTER(FN) extern void FN(JNIEnv*); FN(env)
Ian Rogers5167c972012-02-03 10:41:20 -08001023 // Register Throwable first so that registration of other native methods can throw exceptions
1024 REGISTER(register_java_lang_Throwable);
Brian Carlstromf91c8c32011-09-21 17:30:34 -07001025 REGISTER(register_dalvik_system_DexFile);
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07001026 REGISTER(register_dalvik_system_VMDebug);
Elliott Hughes7ede61e2011-09-14 18:18:06 -07001027 REGISTER(register_dalvik_system_VMRuntime);
Elliott Hughes8daa0922011-09-11 13:46:25 -07001028 REGISTER(register_dalvik_system_VMStack);
Elliott Hughes01158d72011-09-19 19:47:10 -07001029 REGISTER(register_dalvik_system_Zygote);
Elliott Hughesd369bb72011-09-12 14:41:14 -07001030 REGISTER(register_java_lang_Class);
Ian Rogers8b2c0b92013-09-19 02:56:49 -07001031 REGISTER(register_java_lang_DexCache);
Elliott Hughesbf86d042011-08-31 17:53:14 -07001032 REGISTER(register_java_lang_Object);
1033 REGISTER(register_java_lang_Runtime);
1034 REGISTER(register_java_lang_String);
1035 REGISTER(register_java_lang_System);
Elliott Hughes8daa0922011-09-11 13:46:25 -07001036 REGISTER(register_java_lang_Thread);
Elliott Hughes64bf5a32011-09-20 14:43:12 -07001037 REGISTER(register_java_lang_VMClassLoader);
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001038 REGISTER(register_java_lang_reflect_Array);
Elliott Hughes2a20cfd2011-09-23 19:30:41 -07001039 REGISTER(register_java_lang_reflect_Constructor);
Brian Carlstromf867b6f2011-09-16 12:17:25 -07001040 REGISTER(register_java_lang_reflect_Field);
1041 REGISTER(register_java_lang_reflect_Method);
Jesse Wilson95caa792011-10-12 18:14:17 -04001042 REGISTER(register_java_lang_reflect_Proxy);
Elliott Hughesbf86d042011-08-31 17:53:14 -07001043 REGISTER(register_java_util_concurrent_atomic_AtomicLong);
Brian Carlstrom395520e2011-09-25 19:35:00 -07001044 REGISTER(register_org_apache_harmony_dalvik_ddmc_DdmServer);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07001045 REGISTER(register_org_apache_harmony_dalvik_ddmc_DdmVmInternal);
Elliott Hughes5ee7a8b2011-09-13 16:40:07 -07001046 REGISTER(register_sun_misc_Unsafe);
Elliott Hughesad7c2a32011-08-31 11:58:10 -07001047#undef REGISTER
1048}
1049
Elliott Hughesc967f782012-04-16 10:23:15 -07001050void Runtime::DumpForSigQuit(std::ostream& os) {
Elliott Hughescac6cc72011-11-03 20:31:21 -07001051 GetClassLinker()->DumpForSigQuit(os);
1052 GetInternTable()->DumpForSigQuit(os);
Elliott Hughesae80b492012-04-24 10:43:17 -07001053 GetJavaVM()->DumpForSigQuit(os);
Elliott Hughesc967f782012-04-16 10:23:15 -07001054 GetHeap()->DumpForSigQuit(os);
Elliott Hughes42ee1422011-09-06 12:33:32 -07001055 os << "\n";
Elliott Hughes8daa0922011-09-11 13:46:25 -07001056
Elliott Hughesc967f782012-04-16 10:23:15 -07001057 thread_list_->DumpForSigQuit(os);
Ian Rogers56edc432013-01-18 16:51:51 -08001058 BaseMutex::DumpAll(os);
Elliott Hughese27955c2011-08-26 15:21:24 -07001059}
1060
Elliott Hughes21a5bf22011-12-07 14:35:20 -08001061void Runtime::DumpLockHolders(std::ostream& os) {
Ian Rogersb726dcb2012-09-05 08:57:23 -07001062 uint64_t mutator_lock_owner = Locks::mutator_lock_->GetExclusiveOwnerTid();
Elliott Hughes21a5bf22011-12-07 14:35:20 -08001063 pid_t thread_list_lock_owner = GetThreadList()->GetLockOwner();
1064 pid_t classes_lock_owner = GetClassLinker()->GetClassesLockOwner();
1065 pid_t dex_lock_owner = GetClassLinker()->GetDexLockOwner();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001066 if ((thread_list_lock_owner | classes_lock_owner | dex_lock_owner) != 0) {
1067 os << "Mutator lock exclusive owner tid: " << mutator_lock_owner << "\n"
Elliott Hughes21a5bf22011-12-07 14:35:20 -08001068 << "ThreadList lock owner tid: " << thread_list_lock_owner << "\n"
1069 << "ClassLinker classes lock owner tid: " << classes_lock_owner << "\n"
1070 << "ClassLinker dex lock owner tid: " << dex_lock_owner << "\n";
1071 }
1072}
1073
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07001074void Runtime::SetStatsEnabled(bool new_state) {
1075 if (new_state == true) {
1076 GetStats()->Clear(~0);
1077 // TODO: wouldn't it make more sense to clear _all_ threads' stats?
1078 Thread::Current()->GetStats()->Clear(~0);
Ian Rogersfa824272013-11-05 16:12:57 -08001079 GetInstrumentation()->InstrumentQuickAllocEntryPoints();
Hiroshi Yamauchi3b4c1892013-09-12 21:33:12 -07001080 } else {
Ian Rogersfa824272013-11-05 16:12:57 -08001081 GetInstrumentation()->UninstrumentQuickAllocEntryPoints();
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07001082 }
1083 stats_enabled_ = new_state;
1084}
1085
1086void Runtime::ResetStats(int kinds) {
1087 GetStats()->Clear(kinds & 0xffff);
1088 // TODO: wouldn't it make more sense to clear _all_ threads' stats?
1089 Thread::Current()->GetStats()->Clear(kinds >> 16);
1090}
1091
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07001092int32_t Runtime::GetStat(int kind) {
1093 RuntimeStats* stats;
1094 if (kind < (1<<16)) {
1095 stats = GetStats();
1096 } else {
1097 stats = Thread::Current()->GetStats();
1098 kind >>= 16;
1099 }
1100 switch (kind) {
1101 case KIND_ALLOCATED_OBJECTS:
1102 return stats->allocated_objects;
1103 case KIND_ALLOCATED_BYTES:
1104 return stats->allocated_bytes;
1105 case KIND_FREED_OBJECTS:
1106 return stats->freed_objects;
1107 case KIND_FREED_BYTES:
1108 return stats->freed_bytes;
1109 case KIND_GC_INVOCATIONS:
1110 return stats->gc_for_alloc_count;
1111 case KIND_CLASS_INIT_COUNT:
1112 return stats->class_init_count;
1113 case KIND_CLASS_INIT_TIME:
1114 // Convert ns to us, reduce to 32 bits.
Elliott Hughes398f64b2012-03-26 18:05:48 -07001115 return static_cast<int>(stats->class_init_time_ns / 1000);
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07001116 case KIND_EXT_ALLOCATED_OBJECTS:
1117 case KIND_EXT_ALLOCATED_BYTES:
1118 case KIND_EXT_FREED_OBJECTS:
1119 case KIND_EXT_FREED_BYTES:
1120 return 0; // backward compatibility
1121 default:
Elliott Hughes7b9d9962012-04-20 18:48:18 -07001122 LOG(FATAL) << "Unknown statistic " << kind;
Brian Carlstrom7934ac22013-07-26 10:54:15 -07001123 return -1; // unreachable
Elliott Hughes9d5ccec2011-09-19 13:19:50 -07001124 }
1125}
1126
Elliott Hughesc1674ed2011-08-25 18:09:09 -07001127void Runtime::BlockSignals() {
Elliott Hughes457005c2012-04-16 13:54:25 -07001128 SignalSet signals;
1129 signals.Add(SIGPIPE);
Elliott Hughesc1674ed2011-08-25 18:09:09 -07001130 // SIGQUIT is used to dump the runtime's state (including stack traces).
Elliott Hughes457005c2012-04-16 13:54:25 -07001131 signals.Add(SIGQUIT);
Elliott Hughes08795042012-04-03 14:48:52 -07001132 // SIGUSR1 is used to initiate a GC.
Elliott Hughes457005c2012-04-16 13:54:25 -07001133 signals.Add(SIGUSR1);
1134 signals.Block();
Elliott Hughesc1674ed2011-08-25 18:09:09 -07001135}
1136
Mathieu Chartier664bebf2012-11-12 16:54:11 -08001137bool Runtime::AttachCurrentThread(const char* thread_name, bool as_daemon, jobject thread_group,
1138 bool create_peer) {
1139 bool success = Thread::Attach(thread_name, as_daemon, thread_group, create_peer) != NULL;
Elliott Hughes22869a92012-03-27 14:08:24 -07001140 if (thread_name == NULL) {
1141 LOG(WARNING) << *Thread::Current() << " attached without supplying a name";
1142 }
Ian Rogers120f1c72012-09-28 17:17:10 -07001143 return success;
Carl Shapiro61e019d2011-07-14 16:53:09 -07001144}
1145
Elliott Hughesd92bec42011-09-02 17:04:36 -07001146void Runtime::DetachCurrentThread() {
Brian Carlstrom4d571432012-05-16 00:21:41 -07001147 Thread* self = Thread::Current();
1148 if (self == NULL) {
1149 LOG(FATAL) << "attempting to detach thread that is not attached";
1150 }
Ian Rogers0399dde2012-06-06 17:09:28 -07001151 if (self->HasManagedStack()) {
Elliott Hughes22869a92012-03-27 14:08:24 -07001152 LOG(FATAL) << *Thread::Current() << " attempting to detach while still running code";
1153 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001154 thread_list_->Unregister(self);
Carl Shapiro1fb86202011-06-27 17:43:13 -07001155}
1156
Ian Rogersa436fde2013-08-27 23:34:06 -07001157 mirror::Throwable* Runtime::GetPreAllocatedOutOfMemoryError() const {
1158 if (pre_allocated_OutOfMemoryError_ == NULL) {
1159 LOG(ERROR) << "Failed to return pre-allocated OOME";
1160 }
1161 return pre_allocated_OutOfMemoryError_;
1162}
1163
Ian Rogers1d54e732013-05-02 21:10:01 -07001164void Runtime::VisitConcurrentRoots(RootVisitor* visitor, void* arg, bool only_dirty,
1165 bool clean_dirty) {
Mathieu Chartierc4621982013-09-16 19:43:47 -07001166 intern_table_->VisitRoots(visitor, arg, only_dirty, clean_dirty);
1167 class_linker_->VisitRoots(visitor, arg, only_dirty, clean_dirty);
Mathieu Chartier9ebae1f2012-10-15 17:38:16 -07001168}
1169
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001170void Runtime::VisitNonThreadRoots(RootVisitor* visitor, void* arg) {
Brian Carlstrome24fa612011-09-29 00:53:55 -07001171 java_vm_->VisitRoots(visitor, arg);
Mathieu Chartier423d2a32013-09-12 17:33:56 -07001172 if (pre_allocated_OutOfMemoryError_ != nullptr) {
1173 pre_allocated_OutOfMemoryError_ = reinterpret_cast<mirror::Throwable*>(
1174 visitor(pre_allocated_OutOfMemoryError_, arg));
1175 DCHECK(pre_allocated_OutOfMemoryError_ != nullptr);
Elliott Hughes225f5a12012-06-11 11:23:48 -07001176 }
Mathieu Chartier423d2a32013-09-12 17:33:56 -07001177 resolution_method_ = reinterpret_cast<mirror::ArtMethod*>(visitor(resolution_method_, arg));
1178 DCHECK(resolution_method_ != nullptr);
Jeff Hao88474b42013-10-23 16:24:40 -07001179 imt_conflict_method_ = reinterpret_cast<mirror::ArtMethod*>(visitor(imt_conflict_method_, arg));
1180 DCHECK(imt_conflict_method_ != nullptr);
1181 default_imt_ = reinterpret_cast<mirror::ObjectArray<mirror::ArtMethod>*>(visitor(default_imt_, arg));
1182 DCHECK(default_imt_ != nullptr);
Ian Rogers4f0d07c2011-10-06 23:38:47 -07001183 for (int i = 0; i < Runtime::kLastCalleeSaveType; i++) {
Mathieu Chartier423d2a32013-09-12 17:33:56 -07001184 callee_save_methods_[i] = reinterpret_cast<mirror::ArtMethod*>(
1185 visitor(callee_save_methods_[i], arg));
1186 DCHECK(callee_save_methods_[i] != nullptr);
Ian Rogers4f0d07c2011-10-06 23:38:47 -07001187 }
Brian Carlstrome24fa612011-09-29 00:53:55 -07001188}
1189
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001190void Runtime::VisitNonConcurrentRoots(RootVisitor* visitor, void* arg) {
Mathieu Chartier858f1c52012-10-17 17:45:55 -07001191 thread_list_->VisitRoots(visitor, arg);
1192 VisitNonThreadRoots(visitor, arg);
1193}
1194
Ian Rogers1d54e732013-05-02 21:10:01 -07001195void Runtime::VisitRoots(RootVisitor* visitor, void* arg, bool only_dirty, bool clean_dirty) {
1196 VisitConcurrentRoots(visitor, arg, only_dirty, clean_dirty);
Mathieu Chartier9ebae1f2012-10-15 17:38:16 -07001197 VisitNonConcurrentRoots(visitor, arg);
1198}
1199
Jeff Hao88474b42013-10-23 16:24:40 -07001200mirror::ObjectArray<mirror::ArtMethod>* Runtime::CreateDefaultImt(ClassLinker* cl) {
1201 Thread* self = Thread::Current();
1202 SirtRef<mirror::ObjectArray<mirror::ArtMethod> > imtable(self, cl->AllocArtMethodArray(self, 64));
1203 mirror::ArtMethod* imt_conflict_method = Runtime::Current()->GetImtConflictMethod();
1204 for (size_t i = 0; i < 64; i++) {
1205 imtable->Set(i, imt_conflict_method);
1206 }
1207 return imtable.get();
1208}
1209
1210mirror::ArtMethod* Runtime::CreateImtConflictMethod() {
1211 mirror::Class* method_class = mirror::ArtMethod::GetJavaLangReflectArtMethod();
1212 Thread* self = Thread::Current();
1213 SirtRef<mirror::ArtMethod>
1214 method(self, down_cast<mirror::ArtMethod*>(method_class->AllocObject(self)));
1215 method->SetDeclaringClass(method_class);
1216 // TODO: use a special method for imt conflict method saves
1217 method->SetDexMethodIndex(DexFile::kDexNoIndex);
1218 // When compiling, the code pointer will get set later when the image is loaded.
1219 Runtime* r = Runtime::Current();
1220 ClassLinker* cl = r->GetClassLinker();
1221 method->SetEntryPointFromCompiledCode(r->IsCompiler() ? NULL : GetImtConflictTrampoline(cl));
1222 return method.get();
1223}
1224
Brian Carlstromea46f952013-07-30 01:26:50 -07001225mirror::ArtMethod* Runtime::CreateResolutionMethod() {
1226 mirror::Class* method_class = mirror::ArtMethod::GetJavaLangReflectArtMethod();
Ian Rogers50b35e22012-10-04 10:09:15 -07001227 Thread* self = Thread::Current();
Brian Carlstromea46f952013-07-30 01:26:50 -07001228 SirtRef<mirror::ArtMethod>
1229 method(self, down_cast<mirror::ArtMethod*>(method_class->AllocObject(self)));
Ian Rogers19846512012-02-24 11:42:47 -08001230 method->SetDeclaringClass(method_class);
1231 // TODO: use a special method for resolution method saves
Ian Rogers8b2c0b92013-09-19 02:56:49 -07001232 method->SetDexMethodIndex(DexFile::kDexNoIndex);
Jeff Hao58df3272013-04-22 15:28:53 -07001233 // When compiling, the code pointer will get set later when the image is loaded.
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001234 Runtime* r = Runtime::Current();
1235 ClassLinker* cl = r->GetClassLinker();
1236 method->SetEntryPointFromCompiledCode(r->IsCompiler() ? NULL : GetResolutionTrampoline(cl));
Ian Rogers19846512012-02-24 11:42:47 -08001237 return method.get();
1238}
1239
Brian Carlstromea46f952013-07-30 01:26:50 -07001240mirror::ArtMethod* Runtime::CreateCalleeSaveMethod(InstructionSet instruction_set,
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001241 CalleeSaveType type) {
Brian Carlstromea46f952013-07-30 01:26:50 -07001242 mirror::Class* method_class = mirror::ArtMethod::GetJavaLangReflectArtMethod();
Ian Rogers50b35e22012-10-04 10:09:15 -07001243 Thread* self = Thread::Current();
Brian Carlstromea46f952013-07-30 01:26:50 -07001244 SirtRef<mirror::ArtMethod>
1245 method(self, down_cast<mirror::ArtMethod*>(method_class->AllocObject(self)));
Ian Rogersff1ed472011-09-20 13:46:24 -07001246 method->SetDeclaringClass(method_class);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001247 // TODO: use a special method for callee saves
Ian Rogers8b2c0b92013-09-19 02:56:49 -07001248 method->SetDexMethodIndex(DexFile::kDexNoIndex);
Jeff Haoaa4a7932013-05-13 11:28:27 -07001249 method->SetEntryPointFromCompiledCode(NULL);
Brian Carlstromae826982011-11-09 01:33:42 -08001250 if ((instruction_set == kThumb2) || (instruction_set == kArm)) {
Ian Rogers4f0d07c2011-10-06 23:38:47 -07001251 uint32_t ref_spills = (1 << art::arm::R5) | (1 << art::arm::R6) | (1 << art::arm::R7) |
1252 (1 << art::arm::R8) | (1 << art::arm::R10) | (1 << art::arm::R11);
1253 uint32_t arg_spills = (1 << art::arm::R1) | (1 << art::arm::R2) | (1 << art::arm::R3);
1254 uint32_t all_spills = (1 << art::arm::R4) | (1 << art::arm::R9);
jeffhaofa147e22012-10-12 17:03:32 -07001255 uint32_t core_spills = ref_spills | (type == kRefsAndArgs ? arg_spills : 0) |
1256 (type == kSaveAll ? all_spills : 0) | (1 << art::arm::LR);
Ian Rogers4f0d07c2011-10-06 23:38:47 -07001257 uint32_t fp_all_spills = (1 << art::arm::S0) | (1 << art::arm::S1) | (1 << art::arm::S2) |
1258 (1 << art::arm::S3) | (1 << art::arm::S4) | (1 << art::arm::S5) |
1259 (1 << art::arm::S6) | (1 << art::arm::S7) | (1 << art::arm::S8) |
1260 (1 << art::arm::S9) | (1 << art::arm::S10) | (1 << art::arm::S11) |
1261 (1 << art::arm::S12) | (1 << art::arm::S13) | (1 << art::arm::S14) |
1262 (1 << art::arm::S15) | (1 << art::arm::S16) | (1 << art::arm::S17) |
1263 (1 << art::arm::S18) | (1 << art::arm::S19) | (1 << art::arm::S20) |
1264 (1 << art::arm::S21) | (1 << art::arm::S22) | (1 << art::arm::S23) |
1265 (1 << art::arm::S24) | (1 << art::arm::S25) | (1 << art::arm::S26) |
1266 (1 << art::arm::S27) | (1 << art::arm::S28) | (1 << art::arm::S29) |
1267 (1 << art::arm::S30) | (1 << art::arm::S31);
1268 uint32_t fp_spills = type == kSaveAll ? fp_all_spills : 0;
1269 size_t frame_size = RoundUp((__builtin_popcount(core_spills) /* gprs */ +
1270 __builtin_popcount(fp_spills) /* fprs */ +
1271 1 /* Method* */) * kPointerSize, kStackAlignment);
Ian Rogers15fdb8c2011-09-25 15:45:07 -07001272 method->SetFrameSizeInBytes(frame_size);
Ian Rogers4f0d07c2011-10-06 23:38:47 -07001273 method->SetCoreSpillMask(core_spills);
1274 method->SetFpSpillMask(fp_spills);
jeffhao7fbee072012-08-24 17:56:54 -07001275 } else if (instruction_set == kMips) {
1276 uint32_t ref_spills = (1 << art::mips::S2) | (1 << art::mips::S3) | (1 << art::mips::S4) |
1277 (1 << art::mips::S5) | (1 << art::mips::S6) | (1 << art::mips::S7) |
Jeff Hao1f3bc2f2013-04-30 15:17:19 -07001278 (1 << art::mips::GP) | (1 << art::mips::FP);
jeffhao7fbee072012-08-24 17:56:54 -07001279 uint32_t arg_spills = (1 << art::mips::A1) | (1 << art::mips::A2) | (1 << art::mips::A3);
jeffhaofa147e22012-10-12 17:03:32 -07001280 uint32_t all_spills = (1 << art::mips::S0) | (1 << art::mips::S1);
jeffhao7fbee072012-08-24 17:56:54 -07001281 uint32_t core_spills = ref_spills | (type == kRefsAndArgs ? arg_spills : 0) |
jeffhaofa147e22012-10-12 17:03:32 -07001282 (type == kSaveAll ? all_spills : 0) | (1 << art::mips::RA);
jeffhao7fbee072012-08-24 17:56:54 -07001283 size_t frame_size = RoundUp((__builtin_popcount(core_spills) /* gprs */ +
Jeff Hao1f3bc2f2013-04-30 15:17:19 -07001284 (type == kRefsAndArgs ? 0 : 3) + 1 /* Method* */) *
1285 kPointerSize, kStackAlignment);
jeffhao7fbee072012-08-24 17:56:54 -07001286 method->SetFrameSizeInBytes(frame_size);
1287 method->SetCoreSpillMask(core_spills);
jeffhao07030602012-09-26 14:33:14 -07001288 method->SetFpSpillMask(0);
Brian Carlstromae826982011-11-09 01:33:42 -08001289 } else if (instruction_set == kX86) {
Ian Rogers7caad772012-03-30 01:07:54 -07001290 uint32_t ref_spills = (1 << art::x86::EBP) | (1 << art::x86::ESI) | (1 << art::x86::EDI);
1291 uint32_t arg_spills = (1 << art::x86::ECX) | (1 << art::x86::EDX) | (1 << art::x86::EBX);
1292 uint32_t core_spills = ref_spills | (type == kRefsAndArgs ? arg_spills : 0) |
1293 (1 << art::x86::kNumberOfCpuRegisters); // fake return address callee save
1294 size_t frame_size = RoundUp((__builtin_popcount(core_spills) /* gprs */ +
1295 1 /* Method* */) * kPointerSize, kStackAlignment);
1296 method->SetFrameSizeInBytes(frame_size);
1297 method->SetCoreSpillMask(core_spills);
Ian Rogersff1ed472011-09-20 13:46:24 -07001298 method->SetFpSpillMask(0);
1299 } else {
1300 UNIMPLEMENTED(FATAL);
1301 }
Brian Carlstrom40381fb2011-10-19 14:13:40 -07001302 return method.get();
Ian Rogersff1ed472011-09-20 13:46:24 -07001303}
1304
Mathieu Chartierc11d9b82013-09-19 10:01:59 -07001305void Runtime::DisallowNewSystemWeaks() {
1306 monitor_list_->DisallowNewMonitors();
1307 intern_table_->DisallowNewInterns();
1308 java_vm_->DisallowNewWeakGlobals();
1309}
1310
1311void Runtime::AllowNewSystemWeaks() {
1312 monitor_list_->AllowNewMonitors();
1313 intern_table_->AllowNewInterns();
1314 java_vm_->AllowNewWeakGlobals();
1315}
1316
Brian Carlstromea46f952013-07-30 01:26:50 -07001317void Runtime::SetCalleeSaveMethod(mirror::ArtMethod* method, CalleeSaveType type) {
Ian Rogers4f0d07c2011-10-06 23:38:47 -07001318 DCHECK_LT(static_cast<int>(type), static_cast<int>(kLastCalleeSaveType));
Elliott Hughes225f5a12012-06-11 11:23:48 -07001319 callee_save_methods_[type] = method;
Brian Carlstrome24fa612011-09-29 00:53:55 -07001320}
1321
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001322const std::vector<const DexFile*>& Runtime::GetCompileTimeClassPath(jobject class_loader) {
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08001323 if (class_loader == NULL) {
1324 return GetClassLinker()->GetBootClassPath();
1325 }
1326 CHECK(UseCompileTimeClassPath());
1327 CompileTimeClassPaths::const_iterator it = compile_time_class_paths_.find(class_loader);
1328 CHECK(it != compile_time_class_paths_.end());
1329 return it->second;
1330}
1331
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001332void Runtime::SetCompileTimeClassPath(jobject class_loader, std::vector<const DexFile*>& class_path) {
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08001333 CHECK(!IsStarted());
1334 use_compile_time_class_path_ = true;
Elliott Hughesa0e18062012-04-13 15:59:59 -07001335 compile_time_class_paths_.Put(class_loader, class_path);
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08001336}
1337
Carl Shapiro1fb86202011-06-27 17:43:13 -07001338} // namespace art