Elliott Hughes | 2faa5f1 | 2012-01-30 14:42:07 -0800 | [diff] [blame] | 1 | /* |
| 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 Shapiro | 1fb8620 | 2011-06-27 17:43:13 -0700 | [diff] [blame] | 16 | |
Brian Carlstrom | 578bbdc | 2011-07-21 14:07:47 -0700 | [diff] [blame] | 17 | #include "runtime.h" |
Carl Shapiro | 1fb8620 | 2011-06-27 17:43:13 -0700 | [diff] [blame] | 18 | |
Brian Carlstrom | bd86bcc | 2013-03-10 20:26:16 -0700 | [diff] [blame] | 19 | // sys/mount.h has to come before linux/fs.h due to redefinition of MS_RDONLY, MS_BIND, etc |
| 20 | #include <sys/mount.h> |
Ian Rogers | c5f1773 | 2014-06-05 20:48:42 -0700 | [diff] [blame] | 21 | #ifdef __linux__ |
Brian Carlstrom | bd86bcc | 2013-03-10 20:26:16 -0700 | [diff] [blame] | 22 | #include <linux/fs.h> |
Ian Rogers | c5f1773 | 2014-06-05 20:48:42 -0700 | [diff] [blame] | 23 | #endif |
Brian Carlstrom | bd86bcc | 2013-03-10 20:26:16 -0700 | [diff] [blame] | 24 | |
Brian Carlstrom | dbf05b7 | 2011-12-15 00:55:24 -0800 | [diff] [blame] | 25 | #include <signal.h> |
Elliott Hughes | d06a6c7 | 2012-05-30 17:59:06 -0700 | [diff] [blame] | 26 | #include <sys/syscall.h> |
Mathieu Chartier | da44d77 | 2014-04-01 15:01:46 -0700 | [diff] [blame] | 27 | #include <valgrind.h> |
Brian Carlstrom | dbf05b7 | 2011-12-15 00:55:24 -0800 | [diff] [blame] | 28 | |
Elliott Hughes | ffe6736 | 2011-07-17 12:09:27 -0700 | [diff] [blame] | 29 | #include <cstdio> |
| 30 | #include <cstdlib> |
Brian Carlstrom | 8a43659 | 2011-08-15 21:27:23 -0700 | [diff] [blame] | 31 | #include <limits> |
Igor Murashkin | aaebaa0 | 2015-01-26 10:55:53 -0800 | [diff] [blame] | 32 | #include <memory_representation.h> |
Carl Shapiro | 2ed144c | 2011-07-26 16:52:08 -0700 | [diff] [blame] | 33 | #include <vector> |
Dave Allison | 39c3bfb | 2014-01-28 18:33:52 -0800 | [diff] [blame] | 34 | #include <fcntl.h> |
Elliott Hughes | ffe6736 | 2011-07-17 12:09:27 -0700 | [diff] [blame] | 35 | |
Brian Carlstrom | 02c5f4d | 2015-01-30 10:18:03 -0800 | [diff] [blame] | 36 | #include "JniConstants.h" |
| 37 | #include "ScopedLocalRef.h" |
Vladimir Marko | 7624d25 | 2014-05-02 14:40:15 +0100 | [diff] [blame] | 38 | #include "arch/arm/quick_method_frame_info_arm.h" |
Ian Rogers | 166db04 | 2013-07-26 12:05:57 -0700 | [diff] [blame] | 39 | #include "arch/arm/registers_arm.h" |
Vladimir Marko | 7624d25 | 2014-05-02 14:40:15 +0100 | [diff] [blame] | 40 | #include "arch/arm64/quick_method_frame_info_arm64.h" |
Stuart Monteith | b95a534 | 2014-03-12 13:32:32 +0000 | [diff] [blame] | 41 | #include "arch/arm64/registers_arm64.h" |
Ian Rogers | d582fa4 | 2014-11-05 23:46:43 -0800 | [diff] [blame] | 42 | #include "arch/instruction_set_features.h" |
Vladimir Marko | 7624d25 | 2014-05-02 14:40:15 +0100 | [diff] [blame] | 43 | #include "arch/mips/quick_method_frame_info_mips.h" |
Ian Rogers | 166db04 | 2013-07-26 12:05:57 -0700 | [diff] [blame] | 44 | #include "arch/mips/registers_mips.h" |
Andreas Gampe | 57b3429 | 2015-01-14 15:45:59 -0800 | [diff] [blame] | 45 | #include "arch/mips64/quick_method_frame_info_mips64.h" |
| 46 | #include "arch/mips64/registers_mips64.h" |
Vladimir Marko | 7624d25 | 2014-05-02 14:40:15 +0100 | [diff] [blame] | 47 | #include "arch/x86/quick_method_frame_info_x86.h" |
Ian Rogers | 166db04 | 2013-07-26 12:05:57 -0700 | [diff] [blame] | 48 | #include "arch/x86/registers_x86.h" |
Vladimir Marko | 7624d25 | 2014-05-02 14:40:15 +0100 | [diff] [blame] | 49 | #include "arch/x86_64/quick_method_frame_info_x86_64.h" |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 50 | #include "arch/x86_64/registers_x86_64.h" |
Ian Rogers | 1d8cdbc | 2014-09-22 22:51:09 -0700 | [diff] [blame] | 51 | #include "asm_support.h" |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 52 | #include "atomic.h" |
Ian Rogers | c7dd295 | 2014-10-21 23:31:19 -0700 | [diff] [blame] | 53 | #include "base/dumpable.h" |
Ian Rogers | 1d8cdbc | 2014-09-22 22:51:09 -0700 | [diff] [blame] | 54 | #include "base/unix_file/fd_file.h" |
Brian Carlstrom | 578bbdc | 2011-07-21 14:07:47 -0700 | [diff] [blame] | 55 | #include "class_linker.h" |
Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 56 | #include "debugger.h" |
Alex Light | 84d7605 | 2014-08-22 17:49:35 -0700 | [diff] [blame] | 57 | #include "elf_file.h" |
Ian Rogers | 6f3dbba | 2014-10-14 17:41:57 -0700 | [diff] [blame] | 58 | #include "entrypoints/runtime_asm_entrypoints.h" |
Ian Rogers | 576ca0c | 2014-06-06 15:58:22 -0700 | [diff] [blame] | 59 | #include "fault_handler.h" |
Ian Rogers | 1d54e73 | 2013-05-02 21:10:01 -0700 | [diff] [blame] | 60 | #include "gc/accounting/card_table-inl.h" |
| 61 | #include "gc/heap.h" |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 62 | #include "gc/space/image_space.h" |
Ian Rogers | 1d54e73 | 2013-05-02 21:10:01 -0700 | [diff] [blame] | 63 | #include "gc/space/space.h" |
Brian Carlstrom | 02c5f4d | 2015-01-30 10:18:03 -0800 | [diff] [blame] | 64 | #include "handle_scope-inl.h" |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 65 | #include "image.h" |
jeffhao | 725a957 | 2012-11-13 18:20:12 -0800 | [diff] [blame] | 66 | #include "instrumentation.h" |
Elliott Hughes | cf4c6c4 | 2011-09-01 15:16:42 -0700 | [diff] [blame] | 67 | #include "intern_table.h" |
Elliott Hughes | c5f7c91 | 2011-08-18 14:00:42 -0700 | [diff] [blame] | 68 | #include "jni_internal.h" |
Brian Carlstrom | 02c5f4d | 2015-01-30 10:18:03 -0800 | [diff] [blame] | 69 | #include "mirror/array.h" |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 70 | #include "mirror/art_field-inl.h" |
| 71 | #include "mirror/art_method-inl.h" |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 72 | #include "mirror/class-inl.h" |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 73 | #include "mirror/class_loader.h" |
Mathieu Chartier | c528dba | 2013-11-26 12:00:11 -0800 | [diff] [blame] | 74 | #include "mirror/stack_trace_element.h" |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 75 | #include "mirror/throwable.h" |
Elliott Hughes | 32d6e1e | 2011-10-11 14:47:44 -0700 | [diff] [blame] | 76 | #include "monitor.h" |
Andreas Gampe | 277ccbd | 2014-11-03 21:36:10 -0800 | [diff] [blame] | 77 | #include "native/dalvik_system_DexFile.h" |
| 78 | #include "native/dalvik_system_VMDebug.h" |
| 79 | #include "native/dalvik_system_VMRuntime.h" |
| 80 | #include "native/dalvik_system_VMStack.h" |
| 81 | #include "native/dalvik_system_ZygoteHooks.h" |
| 82 | #include "native/java_lang_Class.h" |
| 83 | #include "native/java_lang_DexCache.h" |
| 84 | #include "native/java_lang_Object.h" |
Andreas Gampe | 277ccbd | 2014-11-03 21:36:10 -0800 | [diff] [blame] | 85 | #include "native/java_lang_Runtime.h" |
| 86 | #include "native/java_lang_String.h" |
| 87 | #include "native/java_lang_System.h" |
| 88 | #include "native/java_lang_Thread.h" |
| 89 | #include "native/java_lang_Throwable.h" |
| 90 | #include "native/java_lang_VMClassLoader.h" |
Brian Carlstrom | 02c5f4d | 2015-01-30 10:18:03 -0800 | [diff] [blame] | 91 | #include "native/java_lang_ref_FinalizerReference.h" |
| 92 | #include "native/java_lang_ref_Reference.h" |
| 93 | #include "native/java_lang_reflect_Array.h" |
| 94 | #include "native/java_lang_reflect_Constructor.h" |
| 95 | #include "native/java_lang_reflect_Field.h" |
| 96 | #include "native/java_lang_reflect_Method.h" |
| 97 | #include "native/java_lang_reflect_Proxy.h" |
Andreas Gampe | 277ccbd | 2014-11-03 21:36:10 -0800 | [diff] [blame] | 98 | #include "native/java_util_concurrent_atomic_AtomicLong.h" |
| 99 | #include "native/org_apache_harmony_dalvik_ddmc_DdmServer.h" |
| 100 | #include "native/org_apache_harmony_dalvik_ddmc_DdmVmInternal.h" |
| 101 | #include "native/sun_misc_Unsafe.h" |
Brian Carlstrom | 02c5f4d | 2015-01-30 10:18:03 -0800 | [diff] [blame] | 102 | #include "native_bridge_art_interface.h" |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 103 | #include "oat_file.h" |
Alex Light | 84d7605 | 2014-08-22 17:49:35 -0700 | [diff] [blame] | 104 | #include "os.h" |
Brian Carlstrom | 02c5f4d | 2015-01-30 10:18:03 -0800 | [diff] [blame] | 105 | #include "parsed_options.h" |
| 106 | #include "profiler.h" |
Vladimir Marko | 7624d25 | 2014-05-02 14:40:15 +0100 | [diff] [blame] | 107 | #include "quick/quick_method_frame_info.h" |
Ian Rogers | 53b8b09 | 2014-03-13 23:45:53 -0700 | [diff] [blame] | 108 | #include "reflection.h" |
Igor Murashkin | aaebaa0 | 2015-01-26 10:55:53 -0800 | [diff] [blame] | 109 | #include "runtime_options.h" |
| 110 | #include "ScopedLocalRef.h" |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 111 | #include "scoped_thread_state_change.h" |
Dave Allison | cefcea8 | 2014-09-16 10:01:01 -0700 | [diff] [blame] | 112 | #include "sigchain.h" |
Elliott Hughes | e27955c | 2011-08-26 15:21:24 -0700 | [diff] [blame] | 113 | #include "signal_catcher.h" |
Elliott Hughes | 457005c | 2012-04-16 13:54:25 -0700 | [diff] [blame] | 114 | #include "signal_set.h" |
Brian Carlstrom | 578bbdc | 2011-07-21 14:07:47 -0700 | [diff] [blame] | 115 | #include "thread.h" |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 116 | #include "thread_list.h" |
jeffhao | b5e8185 | 2012-03-12 11:15:45 -0700 | [diff] [blame] | 117 | #include "trace.h" |
Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 118 | #include "transaction.h" |
Ian Rogers | 776ac1f | 2012-04-13 23:36:36 -0700 | [diff] [blame] | 119 | #include "verifier/method_verifier.h" |
Elliott Hughes | eac7667 | 2012-05-24 21:56:51 -0700 | [diff] [blame] | 120 | #include "well_known_classes.h" |
Carl Shapiro | 61e019d | 2011-07-14 16:53:09 -0700 | [diff] [blame] | 121 | |
Carl Shapiro | 1fb8620 | 2011-06-27 17:43:13 -0700 | [diff] [blame] | 122 | namespace art { |
| 123 | |
Ian Rogers | 6f3dbba | 2014-10-14 17:41:57 -0700 | [diff] [blame] | 124 | // If a signal isn't handled properly, enable a handler that attempts to dump the Java stack. |
Brian Carlstrom | b57f1c7 | 2014-10-08 13:56:25 -0700 | [diff] [blame] | 125 | static constexpr bool kEnableJavaStackTraceHandler = false; |
Ian Rogers | 6f3dbba | 2014-10-14 17:41:57 -0700 | [diff] [blame] | 126 | Runtime* Runtime::instance_ = nullptr; |
Carl Shapiro | 2ed144c | 2011-07-26 16:52:08 -0700 | [diff] [blame] | 127 | |
Elliott Hughes | dcc2474 | 2011-09-07 14:02:44 -0700 | [diff] [blame] | 128 | Runtime::Runtime() |
Hiroshi Yamauchi | 94f7b49 | 2014-07-22 18:08:23 -0700 | [diff] [blame] | 129 | : instruction_set_(kNone), |
Ian Rogers | 6ed19fd | 2014-03-20 08:10:17 -0700 | [diff] [blame] | 130 | compiler_callbacks_(nullptr), |
Elliott Hughes | d9c67be | 2012-02-02 19:54:06 -0800 | [diff] [blame] | 131 | is_zygote_(false), |
Alex Light | a59dd80 | 2014-07-02 16:28:08 -0700 | [diff] [blame] | 132 | must_relocate_(false), |
Mathieu Chartier | 069387a | 2012-06-18 12:01:01 -0700 | [diff] [blame] | 133 | is_concurrent_gc_enabled_(true), |
Anwar Ghuloum | 8718359 | 2013-08-14 12:12:19 -0700 | [diff] [blame] | 134 | is_explicit_gc_disabled_(false), |
Nicolas Geoffray | 4fcdc94 | 2014-07-22 10:48:00 +0100 | [diff] [blame] | 135 | dex2oat_enabled_(true), |
Alex Light | 64ad14d | 2014-08-19 14:23:13 -0700 | [diff] [blame] | 136 | image_dex2oat_enabled_(true), |
Elliott Hughes | 6cf2388 | 2012-06-15 15:42:07 -0700 | [diff] [blame] | 137 | default_stack_size_(0), |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 138 | heap_(nullptr), |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 139 | max_spins_before_thin_lock_inflation_(Monitor::kDefaultMaxSpinsBeforeThinLockInflation), |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 140 | monitor_list_(nullptr), |
| 141 | monitor_pool_(nullptr), |
| 142 | thread_list_(nullptr), |
| 143 | intern_table_(nullptr), |
| 144 | class_linker_(nullptr), |
| 145 | signal_catcher_(nullptr), |
| 146 | java_vm_(nullptr), |
Mathieu Chartier | 15d3402 | 2014-02-26 17:16:38 -0800 | [diff] [blame] | 147 | fault_message_lock_("Fault message lock"), |
| 148 | fault_message_(""), |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 149 | method_verifier_lock_("Method verifiers lock"), |
Ian Rogers | 120f1c7 | 2012-09-28 17:17:10 -0700 | [diff] [blame] | 150 | threads_being_born_(0), |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 151 | shutdown_cond_(new ConditionVariable("Runtime shutdown", *Locks::runtime_shutdown_lock_)), |
Elliott Hughes | 6b35575 | 2012-01-13 16:49:08 -0800 | [diff] [blame] | 152 | shutting_down_(false), |
Ian Rogers | 120f1c7 | 2012-09-28 17:17:10 -0700 | [diff] [blame] | 153 | shutting_down_started_(false), |
Elliott Hughes | dcc2474 | 2011-09-07 14:02:44 -0700 | [diff] [blame] | 154 | started_(false), |
Mathieu Chartier | 7664f5c | 2012-06-08 18:15:32 -0700 | [diff] [blame] | 155 | finished_starting_(false), |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 156 | vfprintf_(nullptr), |
| 157 | exit_(nullptr), |
| 158 | abort_(nullptr), |
jeffhao | 2692b57 | 2011-12-16 15:42:28 -0800 | [diff] [blame] | 159 | stats_enabled_(false), |
Mathieu Chartier | da44d77 | 2014-04-01 15:01:46 -0700 | [diff] [blame] | 160 | running_on_valgrind_(RUNNING_ON_VALGRIND > 0), |
Calin Juravle | c1b643c | 2014-05-30 23:44:11 +0100 | [diff] [blame] | 161 | profiler_started_(false), |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 162 | method_trace_(false), |
Ian Rogers | 776ac1f | 2012-04-13 23:36:36 -0700 | [diff] [blame] | 163 | method_trace_file_size_(0), |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 164 | instrumentation_(), |
Ian Rogers | 365c102 | 2012-06-22 15:05:28 -0700 | [diff] [blame] | 165 | use_compile_time_class_path_(false), |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 166 | main_thread_group_(nullptr), |
| 167 | system_thread_group_(nullptr), |
| 168 | system_class_loader_(nullptr), |
Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 169 | dump_gc_performance_on_shutdown_(false), |
Sebastien Hertz | ee1d79a | 2014-02-21 15:46:30 +0100 | [diff] [blame] | 170 | preinitialization_transaction_(nullptr), |
Jeff Hao | f00571c | 2014-05-29 17:29:47 -0700 | [diff] [blame] | 171 | verify_(false), |
Jean Christophe Beyler | 24e04aa | 2014-09-12 12:03:25 -0700 | [diff] [blame] | 172 | allow_dex_file_fallback_(true), |
Dave Allison | 69dfe51 | 2014-07-11 17:11:58 +0000 | [diff] [blame] | 173 | target_sdk_version_(0), |
| 174 | implicit_null_checks_(false), |
| 175 | implicit_so_checks_(false), |
Calin Juravle | 07d83c7 | 2014-10-22 21:02:23 +0100 | [diff] [blame] | 176 | implicit_suspend_checks_(false), |
Narayan Kamath | 5a2be3f | 2015-02-16 13:51:51 +0000 | [diff] [blame] | 177 | is_native_bridge_loaded_(false), |
| 178 | zygote_max_failed_boots_(0) { |
Ian Rogers | 1d8cdbc | 2014-09-22 22:51:09 -0700 | [diff] [blame] | 179 | CheckAsmSupportOffsetsAndSizes(); |
Elliott Hughes | dcc2474 | 2011-09-07 14:02:44 -0700 | [diff] [blame] | 180 | } |
| 181 | |
Carl Shapiro | 61e019d | 2011-07-14 16:53:09 -0700 | [diff] [blame] | 182 | Runtime::~Runtime() { |
Calin Juravle | 07d83c7 | 2014-10-22 21:02:23 +0100 | [diff] [blame] | 183 | if (is_native_bridge_loaded_) { |
| 184 | UnloadNativeBridge(); |
| 185 | } |
Hiroshi Yamauchi | 2e899a9 | 2013-11-22 16:50:12 -0800 | [diff] [blame] | 186 | if (dump_gc_performance_on_shutdown_) { |
| 187 | // This can't be called from the Heap destructor below because it |
| 188 | // could call RosAlloc::InspectAll() which needs the thread_list |
| 189 | // to be still alive. |
| 190 | heap_->DumpGcPerformanceInfo(LOG(INFO)); |
| 191 | } |
| 192 | |
Ian Rogers | 120f1c7 | 2012-09-28 17:17:10 -0700 | [diff] [blame] | 193 | Thread* self = Thread::Current(); |
Mathieu Chartier | 05d1461 | 2015-02-23 15:31:58 -0800 | [diff] [blame] | 194 | const bool attach_shutdown_thread = self == nullptr; |
| 195 | if (attach_shutdown_thread) { |
Mathieu Chartier | cef50f0 | 2014-12-09 17:38:52 -0800 | [diff] [blame] | 196 | CHECK(AttachCurrentThread("Shutdown thread", false, nullptr, false)); |
| 197 | self = Thread::Current(); |
| 198 | } else { |
| 199 | LOG(WARNING) << "Current thread not detached in Runtime shutdown"; |
| 200 | } |
| 201 | |
Ian Rogers | 120f1c7 | 2012-09-28 17:17:10 -0700 | [diff] [blame] | 202 | { |
| 203 | MutexLock mu(self, *Locks::runtime_shutdown_lock_); |
| 204 | shutting_down_started_ = true; |
| 205 | while (threads_being_born_ > 0) { |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 206 | shutdown_cond_->Wait(self); |
Ian Rogers | 120f1c7 | 2012-09-28 17:17:10 -0700 | [diff] [blame] | 207 | } |
| 208 | shutting_down_ = true; |
| 209 | } |
Mathieu Chartier | cef50f0 | 2014-12-09 17:38:52 -0800 | [diff] [blame] | 210 | // Shutdown and wait for the daemons. |
| 211 | CHECK(self != nullptr); |
| 212 | if (IsFinishedStarting()) { |
| 213 | self->ClearException(); |
| 214 | self->GetJniEnv()->CallStaticVoidMethod(WellKnownClasses::java_lang_Daemons, |
| 215 | WellKnownClasses::java_lang_Daemons_stop); |
| 216 | } |
Mathieu Chartier | 05d1461 | 2015-02-23 15:31:58 -0800 | [diff] [blame] | 217 | if (attach_shutdown_thread) { |
| 218 | DetachCurrentThread(); |
| 219 | self = nullptr; |
| 220 | } |
Mathieu Chartier | cef50f0 | 2014-12-09 17:38:52 -0800 | [diff] [blame] | 221 | |
Wei Jin | 6a58691 | 2014-05-21 16:07:40 -0700 | [diff] [blame] | 222 | // Shut down background profiler before the runtime exits. |
Calin Juravle | c1b643c | 2014-05-30 23:44:11 +0100 | [diff] [blame] | 223 | if (profiler_started_) { |
Wei Jin | 6a58691 | 2014-05-21 16:07:40 -0700 | [diff] [blame] | 224 | BackgroundMethodSamplingProfiler::Shutdown(); |
| 225 | } |
| 226 | |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 227 | Trace::Shutdown(); |
jeffhao | b5e8185 | 2012-03-12 11:15:45 -0700 | [diff] [blame] | 228 | |
Mathieu Chartier | a639903 | 2012-06-11 18:49:50 -0700 | [diff] [blame] | 229 | // Make sure to let the GC complete if it is running. |
Mathieu Chartier | 89a201e | 2014-05-02 10:27:26 -0700 | [diff] [blame] | 230 | heap_->WaitForGcToComplete(gc::kGcCauseBackground, self); |
Mathieu Chartier | 35883cc | 2012-11-13 14:08:12 -0800 | [diff] [blame] | 231 | heap_->DeleteThreadPool(); |
Mathieu Chartier | a639903 | 2012-06-11 18:49:50 -0700 | [diff] [blame] | 232 | |
Elliott Hughes | 5fe594f | 2011-09-08 12:33:17 -0700 | [diff] [blame] | 233 | // Make sure our internal threads are dead before we start tearing down things they're using. |
Elliott Hughes | e52e49b | 2012-04-02 16:05:44 -0700 | [diff] [blame] | 234 | Dbg::StopJdwp(); |
Elliott Hughes | 5fe594f | 2011-09-08 12:33:17 -0700 | [diff] [blame] | 235 | delete signal_catcher_; |
| 236 | |
Elliott Hughes | 038a806 | 2011-09-18 14:12:41 -0700 | [diff] [blame] | 237 | // Make sure all other non-daemon threads have terminated, and all daemon threads are suspended. |
Elliott Hughes | 93e74e8 | 2011-09-13 11:07:03 -0700 | [diff] [blame] | 238 | delete thread_list_; |
Vladimir Marko | 2beeb82 | 2014-10-20 18:13:22 +0100 | [diff] [blame] | 239 | |
| 240 | // Shutdown the fault manager if it was initialized. |
| 241 | fault_manager.Shutdown(); |
| 242 | |
Elliott Hughes | c33a32b | 2011-10-11 18:18:07 -0700 | [diff] [blame] | 243 | delete monitor_list_; |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 244 | delete monitor_pool_; |
Carl Shapiro | 61e019d | 2011-07-14 16:53:09 -0700 | [diff] [blame] | 245 | delete class_linker_; |
Elliott Hughes | b3bd5f0 | 2012-03-08 21:05:27 -0800 | [diff] [blame] | 246 | delete heap_; |
Elliott Hughes | cf4c6c4 | 2011-09-01 15:16:42 -0700 | [diff] [blame] | 247 | delete intern_table_; |
Elliott Hughes | c5f7c91 | 2011-08-18 14:00:42 -0700 | [diff] [blame] | 248 | delete java_vm_; |
Elliott Hughes | c1674ed | 2011-08-25 18:09:09 -0700 | [diff] [blame] | 249 | Thread::Shutdown(); |
Elliott Hughes | 7c6169d | 2012-05-02 16:11:48 -0700 | [diff] [blame] | 250 | QuasiAtomic::Shutdown(); |
Sebastien Hertz | 4d4adb1 | 2013-07-24 16:14:19 +0200 | [diff] [blame] | 251 | verifier::MethodVerifier::Shutdown(); |
Mathieu Chartier | 6e88ef6 | 2014-10-14 15:01:24 -0700 | [diff] [blame] | 252 | MemMap::Shutdown(); |
Carl Shapiro | 4acf464 | 2011-07-26 18:54:13 -0700 | [diff] [blame] | 253 | // TODO: acquire a static mutex on Runtime to avoid racing. |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 254 | CHECK(instance_ == nullptr || instance_ == this); |
| 255 | instance_ = nullptr; |
Carl Shapiro | 61e019d | 2011-07-14 16:53:09 -0700 | [diff] [blame] | 256 | } |
| 257 | |
Elliott Hughes | e091855 | 2011-10-28 17:18:29 -0700 | [diff] [blame] | 258 | struct AbortState { |
Ian Rogers | c7dd295 | 2014-10-21 23:31:19 -0700 | [diff] [blame] | 259 | void Dump(std::ostream& os) const { |
Nicolas Geoffray | db97871 | 2014-12-09 13:33:38 +0000 | [diff] [blame] | 260 | if (gAborting > 1) { |
| 261 | os << "Runtime aborting --- recursively, so no thread-specific detail!\n"; |
| 262 | return; |
| 263 | } |
| 264 | gAborting++; |
Elliott Hughes | e091855 | 2011-10-28 17:18:29 -0700 | [diff] [blame] | 265 | os << "Runtime aborting...\n"; |
Nicolas Geoffray | db97871 | 2014-12-09 13:33:38 +0000 | [diff] [blame] | 266 | if (Runtime::Current() == NULL) { |
Elliott Hughes | 6c7d244 | 2012-02-01 18:40:47 -0800 | [diff] [blame] | 267 | os << "(Runtime does not yet exist!)\n"; |
| 268 | return; |
| 269 | } |
Elliott Hughes | e091855 | 2011-10-28 17:18:29 -0700 | [diff] [blame] | 270 | Thread* self = Thread::Current(); |
Mathieu Chartier | c7a966d | 2014-04-10 18:06:32 -0700 | [diff] [blame] | 271 | if (self == nullptr) { |
Elliott Hughes | e091855 | 2011-10-28 17:18:29 -0700 | [diff] [blame] | 272 | os << "(Aborting thread was not attached to runtime!)\n"; |
Ian Rogers | 37eecbd | 2014-05-11 02:08:15 -0700 | [diff] [blame] | 273 | DumpKernelStack(os, GetTid(), " kernel: ", false); |
| 274 | DumpNativeStack(os, GetTid(), " native: ", nullptr); |
Elliott Hughes | e091855 | 2011-10-28 17:18:29 -0700 | [diff] [blame] | 275 | } else { |
Ian Rogers | 2f7f9b6 | 2012-10-10 18:24:05 -0700 | [diff] [blame] | 276 | os << "Aborting thread:\n"; |
Mathieu Chartier | c7a966d | 2014-04-10 18:06:32 -0700 | [diff] [blame] | 277 | if (Locks::mutator_lock_->IsExclusiveHeld(self) || Locks::mutator_lock_->IsSharedHeld(self)) { |
| 278 | DumpThread(os, self); |
| 279 | } else { |
| 280 | if (Locks::mutator_lock_->SharedTryLock(self)) { |
| 281 | DumpThread(os, self); |
| 282 | Locks::mutator_lock_->SharedUnlock(self); |
| 283 | } |
Elliott Hughes | 899e789 | 2012-01-24 14:57:32 -0800 | [diff] [blame] | 284 | } |
Elliott Hughes | e091855 | 2011-10-28 17:18:29 -0700 | [diff] [blame] | 285 | } |
Ian Rogers | 2f7f9b6 | 2012-10-10 18:24:05 -0700 | [diff] [blame] | 286 | DumpAllThreads(os, self); |
| 287 | } |
| 288 | |
Ian Rogers | 7b078e8 | 2014-09-10 14:44:24 -0700 | [diff] [blame] | 289 | // No thread-safety analysis as we do explicitly test for holding the mutator lock. |
Ian Rogers | c7dd295 | 2014-10-21 23:31:19 -0700 | [diff] [blame] | 290 | void DumpThread(std::ostream& os, Thread* self) const NO_THREAD_SAFETY_ANALYSIS { |
Ian Rogers | 7b078e8 | 2014-09-10 14:44:24 -0700 | [diff] [blame] | 291 | DCHECK(Locks::mutator_lock_->IsExclusiveHeld(self) || Locks::mutator_lock_->IsSharedHeld(self)); |
Mathieu Chartier | c7a966d | 2014-04-10 18:06:32 -0700 | [diff] [blame] | 292 | self->Dump(os); |
| 293 | if (self->IsExceptionPending()) { |
| 294 | ThrowLocation throw_location; |
| 295 | mirror::Throwable* exception = self->GetException(&throw_location); |
| 296 | os << "Pending exception " << PrettyTypeOf(exception) |
| 297 | << " thrown by '" << throw_location.Dump() << "'\n" |
| 298 | << exception->Dump(); |
| 299 | } |
| 300 | } |
| 301 | |
Ian Rogers | c7dd295 | 2014-10-21 23:31:19 -0700 | [diff] [blame] | 302 | void DumpAllThreads(std::ostream& os, Thread* self) const { |
Ian Rogers | 4e14e72 | 2014-06-27 17:32:56 -0700 | [diff] [blame] | 303 | Runtime* runtime = Runtime::Current(); |
| 304 | if (runtime != nullptr) { |
| 305 | ThreadList* thread_list = runtime->GetThreadList(); |
| 306 | if (thread_list != nullptr) { |
| 307 | bool tll_already_held = Locks::thread_list_lock_->IsExclusiveHeld(self); |
| 308 | bool ml_already_held = Locks::mutator_lock_->IsSharedHeld(self); |
| 309 | if (!tll_already_held || !ml_already_held) { |
| 310 | os << "Dumping all threads without appropriate locks held:" |
| 311 | << (!tll_already_held ? " thread list lock" : "") |
| 312 | << (!ml_already_held ? " mutator lock" : "") |
| 313 | << "\n"; |
| 314 | } |
| 315 | os << "All threads:\n"; |
Ian Rogers | 7b078e8 | 2014-09-10 14:44:24 -0700 | [diff] [blame] | 316 | thread_list->Dump(os); |
Ian Rogers | 4e14e72 | 2014-06-27 17:32:56 -0700 | [diff] [blame] | 317 | } |
Ian Rogers | 2f7f9b6 | 2012-10-10 18:24:05 -0700 | [diff] [blame] | 318 | } |
Elliott Hughes | e091855 | 2011-10-28 17:18:29 -0700 | [diff] [blame] | 319 | } |
| 320 | }; |
| 321 | |
Elliott Hughes | 8593fdb | 2012-04-21 20:53:44 -0700 | [diff] [blame] | 322 | void Runtime::Abort() { |
Ian Rogers | f08e473 | 2013-04-09 09:45:49 -0700 | [diff] [blame] | 323 | gAborting++; // set before taking any locks |
Brian Carlstrom | 81b8871 | 2012-11-05 19:21:30 -0800 | [diff] [blame] | 324 | |
Elliott Hughes | 131aef8 | 2012-01-27 11:53:35 -0800 | [diff] [blame] | 325 | // Ensure that we don't have multiple threads trying to abort at once, |
| 326 | // which would result in significantly worse diagnostics. |
Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 327 | MutexLock mu(Thread::Current(), *Locks::abort_lock_); |
Elliott Hughes | 131aef8 | 2012-01-27 11:53:35 -0800 | [diff] [blame] | 328 | |
Elliott Hughes | ffe6736 | 2011-07-17 12:09:27 -0700 | [diff] [blame] | 329 | // Get any pending output out of the way. |
Nicolas Geoffray | db97871 | 2014-12-09 13:33:38 +0000 | [diff] [blame] | 330 | fflush(NULL); |
Elliott Hughes | ffe6736 | 2011-07-17 12:09:27 -0700 | [diff] [blame] | 331 | |
| 332 | // Many people have difficulty distinguish aborts from crashes, |
| 333 | // so be explicit. |
Elliott Hughes | e091855 | 2011-10-28 17:18:29 -0700 | [diff] [blame] | 334 | AbortState state; |
Elliott Hughes | 9ee5f9c | 2012-02-03 18:33:16 -0800 | [diff] [blame] | 335 | LOG(INTERNAL_FATAL) << Dumpable<AbortState>(state); |
Elliott Hughes | ffe6736 | 2011-07-17 12:09:27 -0700 | [diff] [blame] | 336 | |
Elliott Hughes | 8593fdb | 2012-04-21 20:53:44 -0700 | [diff] [blame] | 337 | // Call the abort hook if we have one. |
Nicolas Geoffray | db97871 | 2014-12-09 13:33:38 +0000 | [diff] [blame] | 338 | if (Runtime::Current() != NULL && Runtime::Current()->abort_ != NULL) { |
Elliott Hughes | 6c1c69e | 2012-04-23 16:12:51 -0700 | [diff] [blame] | 339 | LOG(INTERNAL_FATAL) << "Calling abort hook..."; |
Brian Carlstrom | 6ea095a | 2011-08-16 15:26:54 -0700 | [diff] [blame] | 340 | Runtime::Current()->abort_(); |
| 341 | // notreached |
Elliott Hughes | 6c1c69e | 2012-04-23 16:12:51 -0700 | [diff] [blame] | 342 | LOG(INTERNAL_FATAL) << "Unexpectedly returned from abort hook!"; |
Brian Carlstrom | 6ea095a | 2011-08-16 15:26:54 -0700 | [diff] [blame] | 343 | } |
| 344 | |
Elliott Hughes | dd623db | 2013-06-11 11:20:23 -0700 | [diff] [blame] | 345 | #if defined(__GLIBC__) |
Elliott Hughes | d06a6c7 | 2012-05-30 17:59:06 -0700 | [diff] [blame] | 346 | // TODO: we ought to be able to use pthread_kill(3) here (or abort(3), |
| 347 | // which POSIX defines in terms of raise(3), which POSIX defines in terms |
| 348 | // of pthread_kill(3)). On Linux, though, libcorkscrew can't unwind through |
| 349 | // libpthread, which means the stacks we dump would be useless. Calling |
| 350 | // tgkill(2) directly avoids that. |
| 351 | syscall(__NR_tgkill, getpid(), GetTid(), SIGABRT); |
Elliott Hughes | dd623db | 2013-06-11 11:20:23 -0700 | [diff] [blame] | 352 | // TODO: LLVM installs it's own SIGABRT handler so exit to be safe... Can we disable that in LLVM? |
| 353 | // If not, we could use sigaction(3) before calling tgkill(2) and lose this call to exit(3). |
Brian Carlstrom | 700c8d3 | 2012-11-05 10:42:02 -0800 | [diff] [blame] | 354 | exit(1); |
Elliott Hughes | dd623db | 2013-06-11 11:20:23 -0700 | [diff] [blame] | 355 | #else |
| 356 | abort(); |
Elliott Hughes | d06a6c7 | 2012-05-30 17:59:06 -0700 | [diff] [blame] | 357 | #endif |
Elliott Hughes | ffe6736 | 2011-07-17 12:09:27 -0700 | [diff] [blame] | 358 | // notreached |
| 359 | } |
| 360 | |
Narayan Kamath | 3de95a7 | 2014-04-02 12:54:23 +0100 | [diff] [blame] | 361 | void Runtime::PreZygoteFork() { |
Mathieu Chartier | cc236d7 | 2012-07-20 10:29:05 -0700 | [diff] [blame] | 362 | heap_->PreZygoteFork(); |
Mathieu Chartier | cc236d7 | 2012-07-20 10:29:05 -0700 | [diff] [blame] | 363 | } |
| 364 | |
Elliott Hughes | bf86d04 | 2011-08-31 17:53:14 -0700 | [diff] [blame] | 365 | void Runtime::CallExitHook(jint status) { |
Nicolas Geoffray | db97871 | 2014-12-09 13:33:38 +0000 | [diff] [blame] | 366 | if (exit_ != NULL) { |
Elliott Hughes | 34e0696 | 2012-04-09 13:55:55 -0700 | [diff] [blame] | 367 | ScopedThreadStateChange tsc(Thread::Current(), kNative); |
Elliott Hughes | bf86d04 | 2011-08-31 17:53:14 -0700 | [diff] [blame] | 368 | exit_(status); |
| 369 | LOG(WARNING) << "Exit hook returned instead of exiting!"; |
| 370 | } |
| 371 | } |
| 372 | |
Mathieu Chartier | 83c8ee0 | 2014-01-28 14:50:23 -0800 | [diff] [blame] | 373 | void Runtime::SweepSystemWeaks(IsMarkedCallback* visitor, void* arg) { |
Mathieu Chartier | 6aa3df9 | 2013-09-17 15:17:28 -0700 | [diff] [blame] | 374 | GetInternTable()->SweepInternTableWeaks(visitor, arg); |
| 375 | GetMonitorList()->SweepMonitorList(visitor, arg); |
| 376 | GetJavaVM()->SweepJniWeakGlobals(visitor, arg); |
| 377 | } |
| 378 | |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 379 | bool Runtime::Create(const RuntimeOptions& options, bool ignore_unrecognized) { |
Carl Shapiro | 2ed144c | 2011-07-26 16:52:08 -0700 | [diff] [blame] | 380 | // TODO: acquire a static mutex on Runtime to avoid racing. |
Nicolas Geoffray | db97871 | 2014-12-09 13:33:38 +0000 | [diff] [blame] | 381 | if (Runtime::instance_ != NULL) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 382 | return false; |
Carl Shapiro | 2ed144c | 2011-07-26 16:52:08 -0700 | [diff] [blame] | 383 | } |
Nicolas Geoffray | db97871 | 2014-12-09 13:33:38 +0000 | [diff] [blame] | 384 | InitLogging(NULL); // Calls Locks::Init() as a side effect. |
Elliott Hughes | dcc2474 | 2011-09-07 14:02:44 -0700 | [diff] [blame] | 385 | instance_ = new Runtime; |
| 386 | if (!instance_->Init(options, ignore_unrecognized)) { |
Jean Christophe Beyler | 24e04aa | 2014-09-12 12:03:25 -0700 | [diff] [blame] | 387 | // TODO: Currently deleting the instance will abort the runtime on destruction. Now This will |
| 388 | // leak memory, instead. Fix the destructor. b/19100793. |
| 389 | // delete instance_; |
Nicolas Geoffray | db97871 | 2014-12-09 13:33:38 +0000 | [diff] [blame] | 390 | instance_ = NULL; |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 391 | return false; |
Carl Shapiro | 61e019d | 2011-07-14 16:53:09 -0700 | [diff] [blame] | 392 | } |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 393 | return true; |
Brian Carlstrom | 69b15fb | 2011-09-03 12:25:21 -0700 | [diff] [blame] | 394 | } |
Elliott Hughes | 0af5543 | 2011-08-17 18:37:28 -0700 | [diff] [blame] | 395 | |
Andreas Gampe | 277ccbd | 2014-11-03 21:36:10 -0800 | [diff] [blame] | 396 | static jobject CreateSystemClassLoader() { |
Elliott Hughes | b3bd5f0 | 2012-03-08 21:05:27 -0800 | [diff] [blame] | 397 | if (Runtime::Current()->UseCompileTimeClassPath()) { |
Nicolas Geoffray | db97871 | 2014-12-09 13:33:38 +0000 | [diff] [blame] | 398 | return NULL; |
Brian Carlstrom | aded5f7 | 2011-10-07 17:15:04 -0700 | [diff] [blame] | 399 | } |
| 400 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 401 | ScopedObjectAccess soa(Thread::Current()); |
Mathieu Chartier | c528dba | 2013-11-26 12:00:11 -0800 | [diff] [blame] | 402 | ClassLinker* cl = Runtime::Current()->GetClassLinker(); |
Brian Carlstrom | aded5f7 | 2011-10-07 17:15:04 -0700 | [diff] [blame] | 403 | |
Ian Rogers | 68d8b42 | 2014-07-17 11:09:10 -0700 | [diff] [blame] | 404 | StackHandleScope<2> hs(soa.Self()); |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 405 | Handle<mirror::Class> class_loader_class( |
| 406 | hs.NewHandle(soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_ClassLoader))); |
Ian Rogers | 7b078e8 | 2014-09-10 14:44:24 -0700 | [diff] [blame] | 407 | CHECK(cl->EnsureInitialized(soa.Self(), class_loader_class, true, true)); |
Brian Carlstrom | aded5f7 | 2011-10-07 17:15:04 -0700 | [diff] [blame] | 408 | |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 409 | mirror::ArtMethod* getSystemClassLoader = |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 410 | class_loader_class->FindDirectMethod("getSystemClassLoader", "()Ljava/lang/ClassLoader;"); |
Nicolas Geoffray | db97871 | 2014-12-09 13:33:38 +0000 | [diff] [blame] | 411 | CHECK(getSystemClassLoader != NULL); |
Brian Carlstrom | aded5f7 | 2011-10-07 17:15:04 -0700 | [diff] [blame] | 412 | |
Ian Rogers | 53b8b09 | 2014-03-13 23:45:53 -0700 | [diff] [blame] | 413 | JValue result = InvokeWithJValues(soa, nullptr, soa.EncodeMethod(getSystemClassLoader), nullptr); |
Brian Carlstrom | ce88853 | 2013-10-10 00:32:58 -0700 | [diff] [blame] | 414 | JNIEnv* env = soa.Self()->GetJniEnv(); |
Mathieu Chartier | c528dba | 2013-11-26 12:00:11 -0800 | [diff] [blame] | 415 | ScopedLocalRef<jobject> system_class_loader(env, |
Ian Rogers | 68d8b42 | 2014-07-17 11:09:10 -0700 | [diff] [blame] | 416 | soa.AddLocalReference<jobject>(result.GetL())); |
Mathieu Chartier | c528dba | 2013-11-26 12:00:11 -0800 | [diff] [blame] | 417 | CHECK(system_class_loader.get() != nullptr); |
Brian Carlstrom | ce88853 | 2013-10-10 00:32:58 -0700 | [diff] [blame] | 418 | |
Ian Rogers | 68d8b42 | 2014-07-17 11:09:10 -0700 | [diff] [blame] | 419 | soa.Self()->SetClassLoaderOverride(system_class_loader.get()); |
Ian Rogers | 365c102 | 2012-06-22 15:05:28 -0700 | [diff] [blame] | 420 | |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 421 | Handle<mirror::Class> thread_class( |
| 422 | hs.NewHandle(soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_Thread))); |
Ian Rogers | 7b078e8 | 2014-09-10 14:44:24 -0700 | [diff] [blame] | 423 | CHECK(cl->EnsureInitialized(soa.Self(), thread_class, true, true)); |
Ian Rogers | 365c102 | 2012-06-22 15:05:28 -0700 | [diff] [blame] | 424 | |
Mathieu Chartier | c528dba | 2013-11-26 12:00:11 -0800 | [diff] [blame] | 425 | mirror::ArtField* contextClassLoader = |
| 426 | thread_class->FindDeclaredInstanceField("contextClassLoader", "Ljava/lang/ClassLoader;"); |
Nicolas Geoffray | db97871 | 2014-12-09 13:33:38 +0000 | [diff] [blame] | 427 | CHECK(contextClassLoader != NULL); |
Ian Rogers | 365c102 | 2012-06-22 15:05:28 -0700 | [diff] [blame] | 428 | |
Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 429 | // We can't run in a transaction yet. |
Ian Rogers | 68d8b42 | 2014-07-17 11:09:10 -0700 | [diff] [blame] | 430 | contextClassLoader->SetObject<false>(soa.Self()->GetPeer(), |
| 431 | soa.Decode<mirror::ClassLoader*>(system_class_loader.get())); |
Brian Carlstrom | ce88853 | 2013-10-10 00:32:58 -0700 | [diff] [blame] | 432 | |
| 433 | return env->NewGlobalRef(system_class_loader.get()); |
Brian Carlstrom | aded5f7 | 2011-10-07 17:15:04 -0700 | [diff] [blame] | 434 | } |
| 435 | |
Alex Light | a59dd80 | 2014-07-02 16:28:08 -0700 | [diff] [blame] | 436 | std::string Runtime::GetPatchoatExecutable() const { |
| 437 | if (!patchoat_executable_.empty()) { |
| 438 | return patchoat_executable_; |
| 439 | } |
Andreas Gampe | 277ccbd | 2014-11-03 21:36:10 -0800 | [diff] [blame] | 440 | std::string patchoat_executable(GetAndroidRoot()); |
| 441 | patchoat_executable += (kIsDebugBuild ? "/bin/patchoatd" : "/bin/patchoat"); |
| 442 | return patchoat_executable; |
Alex Light | a59dd80 | 2014-07-02 16:28:08 -0700 | [diff] [blame] | 443 | } |
| 444 | |
Tsu Chiang Chuang | 12e6d74 | 2014-05-22 10:22:25 -0700 | [diff] [blame] | 445 | std::string Runtime::GetCompilerExecutable() const { |
| 446 | if (!compiler_executable_.empty()) { |
| 447 | return compiler_executable_; |
| 448 | } |
| 449 | std::string compiler_executable(GetAndroidRoot()); |
| 450 | compiler_executable += (kIsDebugBuild ? "/bin/dex2oatd" : "/bin/dex2oat"); |
| 451 | return compiler_executable; |
| 452 | } |
| 453 | |
Brian Carlstrom | bd86bcc | 2013-03-10 20:26:16 -0700 | [diff] [blame] | 454 | bool Runtime::Start() { |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 455 | VLOG(startup) << "Runtime::Start entering"; |
Brian Carlstrom | 58ae941 | 2011-10-04 00:56:06 -0700 | [diff] [blame] | 456 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 457 | // Restore main thread state to kNative as expected by native code. |
Ian Rogers | a436fde | 2013-08-27 23:34:06 -0700 | [diff] [blame] | 458 | Thread* self = Thread::Current(); |
Alex Light | 64ad14d | 2014-08-19 14:23:13 -0700 | [diff] [blame] | 459 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 460 | self->TransitionFromRunnableToSuspended(kNative); |
| 461 | |
Brian Carlstrom | 5d40f18 | 2011-09-26 22:29:18 -0700 | [diff] [blame] | 462 | started_ = true; |
| 463 | |
Nicolas Geoffray | a5ca888 | 2015-02-24 08:10:57 +0000 | [diff] [blame] | 464 | // Use !IsCompiler so that we get test coverage, tests are never the zygote. |
| 465 | if (!IsCompiler()) { |
Mathieu Chartier | eb175f7 | 2014-10-31 11:49:27 -0700 | [diff] [blame] | 466 | ScopedObjectAccess soa(self); |
Mathieu Chartier | bc58ede | 2014-11-17 12:36:24 -0800 | [diff] [blame] | 467 | gc::space::ImageSpace* image_space = heap_->GetImageSpace(); |
| 468 | if (image_space != nullptr) { |
Nicolas Geoffray | a5ca888 | 2015-02-24 08:10:57 +0000 | [diff] [blame] | 469 | Runtime::Current()->GetInternTable()->AddImageStringsToTable(image_space); |
| 470 | Runtime::Current()->GetClassLinker()->MoveImageClassesToClassTable(); |
Mathieu Chartier | bc58ede | 2014-11-17 12:36:24 -0800 | [diff] [blame] | 471 | } |
Mathieu Chartier | eb175f7 | 2014-10-31 11:49:27 -0700 | [diff] [blame] | 472 | } |
| 473 | |
Nicolas Geoffray | a5ca888 | 2015-02-24 08:10:57 +0000 | [diff] [blame] | 474 | if (!IsImageDex2OatEnabled() || !Runtime::Current()->GetHeap()->HasImageSpace()) { |
Mathieu Chartier | eb175f7 | 2014-10-31 11:49:27 -0700 | [diff] [blame] | 475 | ScopedObjectAccess soa(self); |
Alex Light | 64ad14d | 2014-08-19 14:23:13 -0700 | [diff] [blame] | 476 | StackHandleScope<1> hs(soa.Self()); |
| 477 | auto klass(hs.NewHandle<mirror::Class>(mirror::Class::GetJavaLangClass())); |
Ian Rogers | 7b078e8 | 2014-09-10 14:44:24 -0700 | [diff] [blame] | 478 | class_linker_->EnsureInitialized(soa.Self(), klass, true, true); |
Alex Light | 64ad14d | 2014-08-19 14:23:13 -0700 | [diff] [blame] | 479 | } |
| 480 | |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 481 | // InitNativeMethods needs to be after started_ so that the classes |
| 482 | // it touches will have methods linked to the oat file if necessary. |
| 483 | InitNativeMethods(); |
| 484 | |
Ian Rogers | 365c102 | 2012-06-22 15:05:28 -0700 | [diff] [blame] | 485 | // Initialize well known thread group values that may be accessed threads while attaching. |
| 486 | InitThreadGroups(self); |
| 487 | |
Jesse Wilson | 9a6bae8 | 2011-11-14 14:57:30 -0500 | [diff] [blame] | 488 | Thread::FinishStartup(); |
| 489 | |
jgu21 | a6da74e | 2014-09-10 06:57:17 -0400 | [diff] [blame] | 490 | system_class_loader_ = CreateSystemClassLoader(); |
| 491 | |
Brian Carlstrom | bd86bcc | 2013-03-10 20:26:16 -0700 | [diff] [blame] | 492 | if (is_zygote_) { |
| 493 | if (!InitZygote()) { |
| 494 | return false; |
| 495 | } |
| 496 | } else { |
Calin Juravle | 07d83c7 | 2014-10-22 21:02:23 +0100 | [diff] [blame] | 497 | if (is_native_bridge_loaded_) { |
jgu21 | a6da74e | 2014-09-10 06:57:17 -0400 | [diff] [blame] | 498 | PreInitializeNativeBridge("."); |
| 499 | } |
Calin Juravle | 07d83c7 | 2014-10-22 21:02:23 +0100 | [diff] [blame] | 500 | DidForkFromZygote(self->GetJniEnv(), NativeBridgeAction::kInitialize, |
| 501 | GetInstructionSetString(kRuntimeISA)); |
Elliott Hughes | d1cc836 | 2011-10-24 16:58:50 -0700 | [diff] [blame] | 502 | } |
Elliott Hughes | 9ca7a1f | 2011-10-11 14:29:52 -0700 | [diff] [blame] | 503 | |
Elliott Hughes | 85d1545 | 2011-09-16 17:33:01 -0700 | [diff] [blame] | 504 | StartDaemonThreads(); |
Brian Carlstrom | 0a5b14d | 2011-09-27 13:29:15 -0700 | [diff] [blame] | 505 | |
Yevgeny Rouban | 35aef2c | 2014-05-19 16:19:36 +0700 | [diff] [blame] | 506 | { |
| 507 | ScopedObjectAccess soa(self); |
| 508 | self->GetJniEnv()->locals.AssertEmpty(); |
| 509 | } |
Elliott Hughes | 726079d | 2011-10-07 18:43:44 -0700 | [diff] [blame] | 510 | |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 511 | VLOG(startup) << "Runtime::Start exiting"; |
Mathieu Chartier | 7664f5c | 2012-06-08 18:15:32 -0700 | [diff] [blame] | 512 | finished_starting_ = true; |
Brian Carlstrom | bd86bcc | 2013-03-10 20:26:16 -0700 | [diff] [blame] | 513 | |
Calin Juravle | c1b643c | 2014-05-30 23:44:11 +0100 | [diff] [blame] | 514 | if (profiler_options_.IsEnabled() && !profile_output_filename_.empty()) { |
| 515 | // User has asked for a profile using -Xenable-profiler. |
Dave Allison | 39c3bfb | 2014-01-28 18:33:52 -0800 | [diff] [blame] | 516 | // Create the profile file if it doesn't exist. |
| 517 | int fd = open(profile_output_filename_.c_str(), O_RDWR|O_CREAT|O_EXCL, 0660); |
| 518 | if (fd >= 0) { |
| 519 | close(fd); |
Wei Jin | a93b0bb | 2014-06-09 16:19:15 -0700 | [diff] [blame] | 520 | } else if (errno != EEXIST) { |
| 521 | LOG(INFO) << "Failed to access the profile file. Profiler disabled."; |
| 522 | return true; |
Dave Allison | 39c3bfb | 2014-01-28 18:33:52 -0800 | [diff] [blame] | 523 | } |
Calin Juravle | c1b643c | 2014-05-30 23:44:11 +0100 | [diff] [blame] | 524 | StartProfiler(profile_output_filename_.c_str()); |
Dave Allison | 0aded08 | 2013-11-07 13:15:11 -0800 | [diff] [blame] | 525 | } |
| 526 | |
Brian Carlstrom | bd86bcc | 2013-03-10 20:26:16 -0700 | [diff] [blame] | 527 | return true; |
Elliott Hughes | 85d1545 | 2011-09-16 17:33:01 -0700 | [diff] [blame] | 528 | } |
| 529 | |
Ian Rogers | 120f1c7 | 2012-09-28 17:17:10 -0700 | [diff] [blame] | 530 | void Runtime::EndThreadBirth() EXCLUSIVE_LOCKS_REQUIRED(Locks::runtime_shutdown_lock_) { |
| 531 | DCHECK_GT(threads_being_born_, 0U); |
| 532 | threads_being_born_--; |
| 533 | if (shutting_down_started_ && threads_being_born_ == 0) { |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 534 | shutdown_cond_->Broadcast(Thread::Current()); |
Ian Rogers | 120f1c7 | 2012-09-28 17:17:10 -0700 | [diff] [blame] | 535 | } |
| 536 | } |
| 537 | |
Brian Carlstrom | bd86bcc | 2013-03-10 20:26:16 -0700 | [diff] [blame] | 538 | // Do zygote-mode-only initialization. |
| 539 | bool Runtime::InitZygote() { |
Ian Rogers | c5f1773 | 2014-06-05 20:48:42 -0700 | [diff] [blame] | 540 | #ifdef __linux__ |
Brian Carlstrom | bd86bcc | 2013-03-10 20:26:16 -0700 | [diff] [blame] | 541 | // zygote goes into its own process group |
Brian Carlstrom | b1eba21 | 2013-07-17 18:07:19 -0700 | [diff] [blame] | 542 | setpgid(0, 0); |
Brian Carlstrom | bd86bcc | 2013-03-10 20:26:16 -0700 | [diff] [blame] | 543 | |
| 544 | // See storage config details at http://source.android.com/tech/storage/ |
| 545 | // Create private mount namespace shared by all children |
| 546 | if (unshare(CLONE_NEWNS) == -1) { |
| 547 | PLOG(WARNING) << "Failed to unshare()"; |
| 548 | return false; |
| 549 | } |
| 550 | |
| 551 | // Mark rootfs as being a slave so that changes from default |
| 552 | // namespace only flow into our children. |
Nicolas Geoffray | db97871 | 2014-12-09 13:33:38 +0000 | [diff] [blame] | 553 | if (mount("rootfs", "/", NULL, (MS_SLAVE | MS_REC), NULL) == -1) { |
Brian Carlstrom | bd86bcc | 2013-03-10 20:26:16 -0700 | [diff] [blame] | 554 | PLOG(WARNING) << "Failed to mount() rootfs as MS_SLAVE"; |
| 555 | return false; |
| 556 | } |
| 557 | |
| 558 | // Create a staging tmpfs that is shared by our children; they will |
| 559 | // bind mount storage into their respective private namespaces, which |
| 560 | // are isolated from each other. |
| 561 | const char* target_base = getenv("EMULATED_STORAGE_TARGET"); |
Nicolas Geoffray | db97871 | 2014-12-09 13:33:38 +0000 | [diff] [blame] | 562 | if (target_base != NULL) { |
Brian Carlstrom | bd86bcc | 2013-03-10 20:26:16 -0700 | [diff] [blame] | 563 | if (mount("tmpfs", target_base, "tmpfs", MS_NOSUID | MS_NODEV, |
Jeff Sharkey | 52cd1e8 | 2013-09-17 16:25:12 -0700 | [diff] [blame] | 564 | "uid=0,gid=1028,mode=0751") == -1) { |
Brian Carlstrom | bd86bcc | 2013-03-10 20:26:16 -0700 | [diff] [blame] | 565 | LOG(WARNING) << "Failed to mount tmpfs to " << target_base; |
| 566 | return false; |
| 567 | } |
| 568 | } |
| 569 | |
| 570 | return true; |
Ian Rogers | c5f1773 | 2014-06-05 20:48:42 -0700 | [diff] [blame] | 571 | #else |
| 572 | UNIMPLEMENTED(FATAL); |
| 573 | return false; |
| 574 | #endif |
Brian Carlstrom | bd86bcc | 2013-03-10 20:26:16 -0700 | [diff] [blame] | 575 | } |
| 576 | |
jgu21 | a6da74e | 2014-09-10 06:57:17 -0400 | [diff] [blame] | 577 | void Runtime::DidForkFromZygote(JNIEnv* env, NativeBridgeAction action, const char* isa) { |
Brian Carlstrom | caabb1b | 2011-10-11 18:09:13 -0700 | [diff] [blame] | 578 | is_zygote_ = false; |
Elliott Hughes | d1cc836 | 2011-10-24 16:58:50 -0700 | [diff] [blame] | 579 | |
Calin Juravle | 07d83c7 | 2014-10-22 21:02:23 +0100 | [diff] [blame] | 580 | if (is_native_bridge_loaded_) { |
| 581 | switch (action) { |
| 582 | case NativeBridgeAction::kUnload: |
| 583 | UnloadNativeBridge(); |
| 584 | is_native_bridge_loaded_ = false; |
| 585 | break; |
Andreas Gampe | 6be67ee | 2014-09-02 21:22:18 -0700 | [diff] [blame] | 586 | |
Calin Juravle | 07d83c7 | 2014-10-22 21:02:23 +0100 | [diff] [blame] | 587 | case NativeBridgeAction::kInitialize: |
| 588 | InitializeNativeBridge(env, isa); |
| 589 | break; |
| 590 | } |
Andreas Gampe | 6be67ee | 2014-09-02 21:22:18 -0700 | [diff] [blame] | 591 | } |
| 592 | |
Nicolas Geoffray | a5ca888 | 2015-02-24 08:10:57 +0000 | [diff] [blame] | 593 | // Create the thread pool. |
Mathieu Chartier | 02b6a78 | 2012-10-26 13:51:26 -0700 | [diff] [blame] | 594 | heap_->CreateThreadPool(); |
| 595 | |
Brian Carlstrom | caabb1b | 2011-10-11 18:09:13 -0700 | [diff] [blame] | 596 | StartSignalCatcher(); |
Elliott Hughes | d1cc836 | 2011-10-24 16:58:50 -0700 | [diff] [blame] | 597 | |
| 598 | // Start the JDWP thread. If the command-line debugger flags specified "suspend=y", |
| 599 | // this will pause the runtime, so we probably want this to come last. |
Sebastien Hertz | b3b173b | 2015-02-06 09:16:32 +0100 | [diff] [blame] | 600 | Dbg::StartJdwp(); |
Brian Carlstrom | caabb1b | 2011-10-11 18:09:13 -0700 | [diff] [blame] | 601 | } |
| 602 | |
| 603 | void Runtime::StartSignalCatcher() { |
| 604 | if (!is_zygote_) { |
Elliott Hughes | 94ce37a | 2011-10-18 15:07:48 -0700 | [diff] [blame] | 605 | signal_catcher_ = new SignalCatcher(stack_trace_file_); |
Brian Carlstrom | caabb1b | 2011-10-11 18:09:13 -0700 | [diff] [blame] | 606 | } |
| 607 | } |
| 608 | |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 609 | bool Runtime::IsShuttingDown(Thread* self) { |
| 610 | MutexLock mu(self, *Locks::runtime_shutdown_lock_); |
| 611 | return IsShuttingDownLocked(); |
| 612 | } |
| 613 | |
Elliott Hughes | 85d1545 | 2011-09-16 17:33:01 -0700 | [diff] [blame] | 614 | void Runtime::StartDaemonThreads() { |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 615 | VLOG(startup) << "Runtime::StartDaemonThreads entering"; |
Elliott Hughes | 85d1545 | 2011-09-16 17:33:01 -0700 | [diff] [blame] | 616 | |
Elliott Hughes | 719b323 | 2011-09-25 17:42:19 -0700 | [diff] [blame] | 617 | Thread* self = Thread::Current(); |
Brian Carlstrom | aded5f7 | 2011-10-07 17:15:04 -0700 | [diff] [blame] | 618 | |
| 619 | // Must be in the kNative state for calling native methods. |
Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 620 | CHECK_EQ(self->GetState(), kNative); |
Brian Carlstrom | aded5f7 | 2011-10-07 17:15:04 -0700 | [diff] [blame] | 621 | |
Elliott Hughes | 719b323 | 2011-09-25 17:42:19 -0700 | [diff] [blame] | 622 | JNIEnv* env = self->GetJniEnv(); |
Ian Rogers | 2fa6b2e | 2012-10-17 00:10:17 -0700 | [diff] [blame] | 623 | env->CallStaticVoidMethod(WellKnownClasses::java_lang_Daemons, |
| 624 | WellKnownClasses::java_lang_Daemons_start); |
| 625 | if (env->ExceptionCheck()) { |
| 626 | env->ExceptionDescribe(); |
| 627 | LOG(FATAL) << "Error starting java.lang.Daemons"; |
| 628 | } |
Elliott Hughes | 9ca7a1f | 2011-10-11 14:29:52 -0700 | [diff] [blame] | 629 | |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 630 | VLOG(startup) << "Runtime::StartDaemonThreads exiting"; |
Carl Shapiro | 61e019d | 2011-07-14 16:53:09 -0700 | [diff] [blame] | 631 | } |
| 632 | |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame] | 633 | static bool OpenDexFilesFromImage(const std::string& image_location, |
Richard Uhler | fbef44d | 2014-12-23 09:48:51 -0800 | [diff] [blame] | 634 | std::vector<std::unique_ptr<const DexFile>>* dex_files, |
Alex Light | 84d7605 | 2014-08-22 17:49:35 -0700 | [diff] [blame] | 635 | size_t* failures) { |
Richard Uhler | fbef44d | 2014-12-23 09:48:51 -0800 | [diff] [blame] | 636 | DCHECK(dex_files != nullptr) << "OpenDexFilesFromImage: out-param is NULL"; |
Alex Light | 84d7605 | 2014-08-22 17:49:35 -0700 | [diff] [blame] | 637 | std::string system_filename; |
| 638 | bool has_system = false; |
| 639 | std::string cache_filename_unused; |
| 640 | bool dalvik_cache_exists_unused; |
| 641 | bool has_cache_unused; |
Andreas Gampe | 3c13a79 | 2014-09-18 20:56:04 -0700 | [diff] [blame] | 642 | bool is_global_cache_unused; |
Alex Light | 84d7605 | 2014-08-22 17:49:35 -0700 | [diff] [blame] | 643 | bool found_image = gc::space::ImageSpace::FindImageFilename(image_location.c_str(), |
| 644 | kRuntimeISA, |
| 645 | &system_filename, |
| 646 | &has_system, |
| 647 | &cache_filename_unused, |
| 648 | &dalvik_cache_exists_unused, |
Andreas Gampe | 3c13a79 | 2014-09-18 20:56:04 -0700 | [diff] [blame] | 649 | &has_cache_unused, |
| 650 | &is_global_cache_unused); |
Alex Light | 84d7605 | 2014-08-22 17:49:35 -0700 | [diff] [blame] | 651 | *failures = 0; |
| 652 | if (!found_image || !has_system) { |
| 653 | return false; |
| 654 | } |
| 655 | std::string error_msg; |
| 656 | // We are falling back to non-executable use of the oat file because patching failed, presumably |
| 657 | // due to lack of space. |
| 658 | std::string oat_filename = ImageHeader::GetOatLocationFromImageLocation(system_filename.c_str()); |
| 659 | std::string oat_location = ImageHeader::GetOatLocationFromImageLocation(image_location.c_str()); |
| 660 | std::unique_ptr<File> file(OS::OpenFileForReading(oat_filename.c_str())); |
| 661 | if (file.get() == nullptr) { |
| 662 | return false; |
| 663 | } |
| 664 | std::unique_ptr<ElfFile> elf_file(ElfFile::Open(file.release(), false, false, &error_msg)); |
| 665 | if (elf_file.get() == nullptr) { |
| 666 | return false; |
| 667 | } |
| 668 | std::unique_ptr<OatFile> oat_file(OatFile::OpenWithElfFile(elf_file.release(), oat_location, |
| 669 | &error_msg)); |
| 670 | if (oat_file.get() == nullptr) { |
| 671 | LOG(INFO) << "Unable to use '" << oat_filename << "' because " << error_msg; |
| 672 | return false; |
| 673 | } |
| 674 | |
Vladimir Marko | aa4497d | 2014-09-05 14:01:17 +0100 | [diff] [blame] | 675 | for (const OatFile::OatDexFile* oat_dex_file : oat_file->GetOatDexFiles()) { |
Alex Light | 84d7605 | 2014-08-22 17:49:35 -0700 | [diff] [blame] | 676 | if (oat_dex_file == nullptr) { |
| 677 | *failures += 1; |
| 678 | continue; |
| 679 | } |
Richard Uhler | fbef44d | 2014-12-23 09:48:51 -0800 | [diff] [blame] | 680 | std::unique_ptr<const DexFile> dex_file = oat_dex_file->OpenDexFile(&error_msg); |
| 681 | if (dex_file.get() == nullptr) { |
Alex Light | 84d7605 | 2014-08-22 17:49:35 -0700 | [diff] [blame] | 682 | *failures += 1; |
| 683 | } else { |
Richard Uhler | fbef44d | 2014-12-23 09:48:51 -0800 | [diff] [blame] | 684 | dex_files->push_back(std::move(dex_file)); |
Alex Light | 84d7605 | 2014-08-22 17:49:35 -0700 | [diff] [blame] | 685 | } |
| 686 | } |
| 687 | Runtime::Current()->GetClassLinker()->RegisterOatFile(oat_file.release()); |
| 688 | return true; |
| 689 | } |
| 690 | |
| 691 | |
Alex Light | 64ad14d | 2014-08-19 14:23:13 -0700 | [diff] [blame] | 692 | static size_t OpenDexFiles(const std::vector<std::string>& dex_filenames, |
Richard Uhler | c275259 | 2015-01-02 13:28:22 -0800 | [diff] [blame] | 693 | const std::vector<std::string>& dex_locations, |
Alex Light | 84d7605 | 2014-08-22 17:49:35 -0700 | [diff] [blame] | 694 | const std::string& image_location, |
Richard Uhler | fbef44d | 2014-12-23 09:48:51 -0800 | [diff] [blame] | 695 | std::vector<std::unique_ptr<const DexFile>>* dex_files) { |
| 696 | DCHECK(dex_files != nullptr) << "OpenDexFiles: out-param is NULL"; |
Alex Light | 64ad14d | 2014-08-19 14:23:13 -0700 | [diff] [blame] | 697 | size_t failure_count = 0; |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame] | 698 | if (!image_location.empty() && OpenDexFilesFromImage(image_location, dex_files, &failure_count)) { |
Alex Light | 84d7605 | 2014-08-22 17:49:35 -0700 | [diff] [blame] | 699 | return failure_count; |
| 700 | } |
| 701 | failure_count = 0; |
Alex Light | 64ad14d | 2014-08-19 14:23:13 -0700 | [diff] [blame] | 702 | for (size_t i = 0; i < dex_filenames.size(); i++) { |
| 703 | const char* dex_filename = dex_filenames[i].c_str(); |
Richard Uhler | c275259 | 2015-01-02 13:28:22 -0800 | [diff] [blame] | 704 | const char* dex_location = dex_locations[i].c_str(); |
Alex Light | 64ad14d | 2014-08-19 14:23:13 -0700 | [diff] [blame] | 705 | std::string error_msg; |
| 706 | if (!OS::FileExists(dex_filename)) { |
| 707 | LOG(WARNING) << "Skipping non-existent dex file '" << dex_filename << "'"; |
| 708 | continue; |
| 709 | } |
Richard Uhler | fbef44d | 2014-12-23 09:48:51 -0800 | [diff] [blame] | 710 | if (!DexFile::Open(dex_filename, dex_location, &error_msg, dex_files)) { |
Alex Light | 64ad14d | 2014-08-19 14:23:13 -0700 | [diff] [blame] | 711 | LOG(WARNING) << "Failed to open .dex from file '" << dex_filename << "': " << error_msg; |
| 712 | ++failure_count; |
| 713 | } |
| 714 | } |
| 715 | return failure_count; |
| 716 | } |
| 717 | |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 718 | bool Runtime::Init(const RuntimeOptions& raw_options, bool ignore_unrecognized) { |
Elliott Hughes | c1674ed | 2011-08-25 18:09:09 -0700 | [diff] [blame] | 719 | CHECK_EQ(sysconf(_SC_PAGE_SIZE), kPageSize); |
Brian Carlstrom | 6ea095a | 2011-08-16 15:26:54 -0700 | [diff] [blame] | 720 | |
Mathieu Chartier | 6e88ef6 | 2014-10-14 15:01:24 -0700 | [diff] [blame] | 721 | MemMap::Init(); |
| 722 | |
Igor Murashkin | aaebaa0 | 2015-01-26 10:55:53 -0800 | [diff] [blame] | 723 | using Opt = RuntimeArgumentMap; |
| 724 | RuntimeArgumentMap runtime_options; |
| 725 | std::unique_ptr<ParsedOptions> parsed_options( |
| 726 | ParsedOptions::Create(raw_options, ignore_unrecognized, &runtime_options)); |
| 727 | if (parsed_options.get() == nullptr) { |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 728 | LOG(ERROR) << "Failed to parse options"; |
Brian Carlstrom | 6ea095a | 2011-08-16 15:26:54 -0700 | [diff] [blame] | 729 | return false; |
| 730 | } |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 731 | VLOG(startup) << "Runtime::Init -verbose:startup enabled"; |
Elliott Hughes | 7ede61e | 2011-09-14 18:18:06 -0700 | [diff] [blame] | 732 | |
Elliott Hughes | 7c6169d | 2012-05-02 16:11:48 -0700 | [diff] [blame] | 733 | QuasiAtomic::Startup(); |
| 734 | |
Igor Murashkin | aaebaa0 | 2015-01-26 10:55:53 -0800 | [diff] [blame] | 735 | Monitor::Init(runtime_options.GetOrDefault(Opt::LockProfThreshold), |
| 736 | runtime_options.GetOrDefault(Opt::HookIsSensitiveThread)); |
Elliott Hughes | 32d6e1e | 2011-10-11 14:47:44 -0700 | [diff] [blame] | 737 | |
Igor Murashkin | aaebaa0 | 2015-01-26 10:55:53 -0800 | [diff] [blame] | 738 | boot_class_path_string_ = runtime_options.ReleaseOrDefault(Opt::BootClassPath); |
| 739 | class_path_string_ = runtime_options.ReleaseOrDefault(Opt::ClassPath); |
| 740 | properties_ = runtime_options.ReleaseOrDefault(Opt::PropertiesList); |
Elliott Hughes | 7ede61e | 2011-09-14 18:18:06 -0700 | [diff] [blame] | 741 | |
Igor Murashkin | aaebaa0 | 2015-01-26 10:55:53 -0800 | [diff] [blame] | 742 | compiler_callbacks_ = runtime_options.GetOrDefault(Opt::CompilerCallbacksPtr); |
| 743 | patchoat_executable_ = runtime_options.ReleaseOrDefault(Opt::PatchOat); |
| 744 | must_relocate_ = runtime_options.GetOrDefault(Opt::Relocate); |
| 745 | is_zygote_ = runtime_options.Exists(Opt::Zygote); |
| 746 | is_explicit_gc_disabled_ = runtime_options.Exists(Opt::DisableExplicitGC); |
| 747 | dex2oat_enabled_ = runtime_options.GetOrDefault(Opt::Dex2Oat); |
| 748 | image_dex2oat_enabled_ = runtime_options.GetOrDefault(Opt::ImageDex2Oat); |
Elliott Hughes | 9ca7a1f | 2011-10-11 14:29:52 -0700 | [diff] [blame] | 749 | |
Igor Murashkin | aaebaa0 | 2015-01-26 10:55:53 -0800 | [diff] [blame] | 750 | vfprintf_ = runtime_options.GetOrDefault(Opt::HookVfprintf); |
| 751 | exit_ = runtime_options.GetOrDefault(Opt::HookExit); |
| 752 | abort_ = runtime_options.GetOrDefault(Opt::HookAbort); |
Brian Carlstrom | 6ea095a | 2011-08-16 15:26:54 -0700 | [diff] [blame] | 753 | |
Igor Murashkin | aaebaa0 | 2015-01-26 10:55:53 -0800 | [diff] [blame] | 754 | default_stack_size_ = runtime_options.GetOrDefault(Opt::StackSize); |
| 755 | stack_trace_file_ = runtime_options.ReleaseOrDefault(Opt::StackTraceFile); |
Brian Carlstrom | 6ea095a | 2011-08-16 15:26:54 -0700 | [diff] [blame] | 756 | |
Igor Murashkin | aaebaa0 | 2015-01-26 10:55:53 -0800 | [diff] [blame] | 757 | compiler_executable_ = runtime_options.ReleaseOrDefault(Opt::Compiler); |
| 758 | compiler_options_ = runtime_options.ReleaseOrDefault(Opt::CompilerOptions); |
| 759 | image_compiler_options_ = runtime_options.ReleaseOrDefault(Opt::ImageCompilerOptions); |
| 760 | image_location_ = runtime_options.GetOrDefault(Opt::Image); |
Brian Carlstrom | 2ec6520 | 2014-03-03 15:16:37 -0800 | [diff] [blame] | 761 | |
Igor Murashkin | aaebaa0 | 2015-01-26 10:55:53 -0800 | [diff] [blame] | 762 | max_spins_before_thin_lock_inflation_ = |
| 763 | runtime_options.GetOrDefault(Opt::MaxSpinsBeforeThinLockInflation); |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 764 | |
Elliott Hughes | c33a32b | 2011-10-11 18:18:07 -0700 | [diff] [blame] | 765 | monitor_list_ = new MonitorList; |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 766 | monitor_pool_ = MonitorPool::Create(); |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 767 | thread_list_ = new ThreadList; |
Elliott Hughes | cf4c6c4 | 2011-09-01 15:16:42 -0700 | [diff] [blame] | 768 | intern_table_ = new InternTable; |
| 769 | |
Igor Murashkin | aaebaa0 | 2015-01-26 10:55:53 -0800 | [diff] [blame] | 770 | verify_ = runtime_options.GetOrDefault(Opt::Verify); |
Jean Christophe Beyler | 24e04aa | 2014-09-12 12:03:25 -0700 | [diff] [blame] | 771 | allow_dex_file_fallback_ = !runtime_options.Exists(Opt::NoDexFileFallback); |
Logan Chien | dd361c9 | 2012-04-10 23:40:37 +0800 | [diff] [blame] | 772 | |
Igor Murashkin | eb6c7c2 | 2015-02-04 17:30:43 -0800 | [diff] [blame] | 773 | if (runtime_options.GetOrDefault(Opt::Interpret)) { |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 774 | GetInstrumentation()->ForceInterpretOnly(); |
| 775 | } |
| 776 | |
Narayan Kamath | 5a2be3f | 2015-02-16 13:51:51 +0000 | [diff] [blame] | 777 | zygote_max_failed_boots_ = runtime_options.GetOrDefault(Opt::ZygoteMaxFailedBoots); |
| 778 | |
Igor Murashkin | aaebaa0 | 2015-01-26 10:55:53 -0800 | [diff] [blame] | 779 | XGcOption xgc_option = runtime_options.GetOrDefault(Opt::GcOption); |
| 780 | heap_ = new gc::Heap(runtime_options.GetOrDefault(Opt::MemoryInitialSize), |
| 781 | runtime_options.GetOrDefault(Opt::HeapGrowthLimit), |
| 782 | runtime_options.GetOrDefault(Opt::HeapMinFree), |
| 783 | runtime_options.GetOrDefault(Opt::HeapMaxFree), |
| 784 | runtime_options.GetOrDefault(Opt::HeapTargetUtilization), |
| 785 | runtime_options.GetOrDefault(Opt::ForegroundHeapGrowthMultiplier), |
| 786 | runtime_options.GetOrDefault(Opt::MemoryMaximumSize), |
| 787 | runtime_options.GetOrDefault(Opt::NonMovingSpaceCapacity), |
| 788 | runtime_options.GetOrDefault(Opt::Image), |
| 789 | runtime_options.GetOrDefault(Opt::ImageInstructionSet), |
| 790 | xgc_option.collector_type_, |
| 791 | runtime_options.GetOrDefault(Opt::BackgroundGc), |
| 792 | runtime_options.GetOrDefault(Opt::LargeObjectSpace), |
| 793 | runtime_options.GetOrDefault(Opt::LargeObjectThreshold), |
| 794 | runtime_options.GetOrDefault(Opt::ParallelGCThreads), |
| 795 | runtime_options.GetOrDefault(Opt::ConcGCThreads), |
| 796 | runtime_options.Exists(Opt::LowMemoryMode), |
| 797 | runtime_options.GetOrDefault(Opt::LongPauseLogThreshold), |
| 798 | runtime_options.GetOrDefault(Opt::LongGCLogThreshold), |
| 799 | runtime_options.Exists(Opt::IgnoreMaxFootprint), |
Hiroshi Yamauchi | f360ad0 | 2015-02-20 11:28:03 -0800 | [diff] [blame] | 800 | runtime_options.GetOrDefault(Opt::UseTLAB), |
Igor Murashkin | aaebaa0 | 2015-01-26 10:55:53 -0800 | [diff] [blame] | 801 | xgc_option.verify_pre_gc_heap_, |
| 802 | xgc_option.verify_pre_sweeping_heap_, |
| 803 | xgc_option.verify_post_gc_heap_, |
| 804 | xgc_option.verify_pre_gc_rosalloc_, |
| 805 | xgc_option.verify_pre_sweeping_rosalloc_, |
| 806 | xgc_option.verify_post_gc_rosalloc_, |
| 807 | runtime_options.GetOrDefault(Opt::EnableHSpaceCompactForOOM), |
| 808 | runtime_options.GetOrDefault(Opt::HSpaceCompactForOOMMinIntervalsMs)); |
Dave Allison | 3d14eb6 | 2014-07-10 01:54:57 +0000 | [diff] [blame] | 809 | |
Jean Christophe Beyler | 24e04aa | 2014-09-12 12:03:25 -0700 | [diff] [blame] | 810 | if (heap_->GetImageSpace() == nullptr && !allow_dex_file_fallback_) { |
| 811 | LOG(ERROR) << "Dex file fallback disabled, cannot continue without image."; |
| 812 | return false; |
| 813 | } |
| 814 | |
Igor Murashkin | aaebaa0 | 2015-01-26 10:55:53 -0800 | [diff] [blame] | 815 | dump_gc_performance_on_shutdown_ = runtime_options.Exists(Opt::DumpGCPerformanceOnShutdown); |
Dave Allison | 3d14eb6 | 2014-07-10 01:54:57 +0000 | [diff] [blame] | 816 | |
Sebastien Hertz | 3be6e9d | 2015-02-05 16:30:58 +0100 | [diff] [blame] | 817 | if (runtime_options.Exists(Opt::JdwpOptions)) { |
Sebastien Hertz | b3b173b | 2015-02-06 09:16:32 +0100 | [diff] [blame] | 818 | Dbg::ConfigureJdwp(runtime_options.GetOrDefault(Opt::JdwpOptions)); |
Sebastien Hertz | 3be6e9d | 2015-02-05 16:30:58 +0100 | [diff] [blame] | 819 | } |
| 820 | |
Dave Allison | 3d14eb6 | 2014-07-10 01:54:57 +0000 | [diff] [blame] | 821 | BlockSignals(); |
| 822 | InitPlatformSignalHandlers(); |
| 823 | |
Dave Allison | 69dfe51 | 2014-07-11 17:11:58 +0000 | [diff] [blame] | 824 | // Change the implicit checks flags based on runtime architecture. |
| 825 | switch (kRuntimeISA) { |
| 826 | case kArm: |
| 827 | case kThumb2: |
| 828 | case kX86: |
Stuart Monteith | d5c78f4 | 2014-06-11 16:44:46 +0100 | [diff] [blame] | 829 | case kArm64: |
Dave Allison | dfd3b47 | 2014-07-16 16:04:32 -0700 | [diff] [blame] | 830 | case kX86_64: |
Dave Allison | 69dfe51 | 2014-07-11 17:11:58 +0000 | [diff] [blame] | 831 | implicit_null_checks_ = true; |
Andreas Gampe | 928f72b | 2014-09-09 19:53:48 -0700 | [diff] [blame] | 832 | // Installing stack protection does not play well with valgrind. |
| 833 | implicit_so_checks_ = (RUNNING_ON_VALGRIND == 0); |
Dave Allison | 69dfe51 | 2014-07-11 17:11:58 +0000 | [diff] [blame] | 834 | break; |
| 835 | default: |
| 836 | // Keep the defaults. |
| 837 | break; |
| 838 | } |
| 839 | |
Dave Allison | cefcea8 | 2014-09-16 10:01:01 -0700 | [diff] [blame] | 840 | // Always initialize the signal chain so that any calls to sigaction get |
| 841 | // correctly routed to the next in the chain regardless of whether we |
| 842 | // have claimed the signal or not. |
| 843 | InitializeSignalChain(); |
| 844 | |
Nicolas Geoffray | 535a3fb | 2014-07-22 15:17:38 +0100 | [diff] [blame] | 845 | if (implicit_null_checks_ || implicit_so_checks_ || implicit_suspend_checks_) { |
Dave Allison | 69dfe51 | 2014-07-11 17:11:58 +0000 | [diff] [blame] | 846 | fault_manager.Init(); |
| 847 | |
| 848 | // These need to be in a specific order. The null point check handler must be |
| 849 | // after the suspend check and stack overflow check handlers. |
Andreas Gampe | 928f72b | 2014-09-09 19:53:48 -0700 | [diff] [blame] | 850 | // |
| 851 | // Note: the instances attach themselves to the fault manager and are handled by it. The manager |
| 852 | // will delete the instance on Shutdown(). |
Dave Allison | 69dfe51 | 2014-07-11 17:11:58 +0000 | [diff] [blame] | 853 | if (implicit_suspend_checks_) { |
Andreas Gampe | 928f72b | 2014-09-09 19:53:48 -0700 | [diff] [blame] | 854 | new SuspensionHandler(&fault_manager); |
Dave Allison | 69dfe51 | 2014-07-11 17:11:58 +0000 | [diff] [blame] | 855 | } |
| 856 | |
| 857 | if (implicit_so_checks_) { |
Andreas Gampe | 928f72b | 2014-09-09 19:53:48 -0700 | [diff] [blame] | 858 | new StackOverflowHandler(&fault_manager); |
Dave Allison | 69dfe51 | 2014-07-11 17:11:58 +0000 | [diff] [blame] | 859 | } |
| 860 | |
| 861 | if (implicit_null_checks_) { |
Andreas Gampe | 928f72b | 2014-09-09 19:53:48 -0700 | [diff] [blame] | 862 | new NullPointerHandler(&fault_manager); |
Dave Allison | 69dfe51 | 2014-07-11 17:11:58 +0000 | [diff] [blame] | 863 | } |
| 864 | |
| 865 | if (kEnableJavaStackTraceHandler) { |
| 866 | new JavaStackTraceHandler(&fault_manager); |
| 867 | } |
| 868 | } |
| 869 | |
Igor Murashkin | aaebaa0 | 2015-01-26 10:55:53 -0800 | [diff] [blame] | 870 | java_vm_ = new JavaVMExt(this, runtime_options); |
Elliott Hughes | 515a5bc | 2011-08-17 11:08:34 -0700 | [diff] [blame] | 871 | |
Elliott Hughes | be759c6 | 2011-09-08 19:38:21 -0700 | [diff] [blame] | 872 | Thread::Startup(); |
Elliott Hughes | d92bec4 | 2011-09-02 17:04:36 -0700 | [diff] [blame] | 873 | |
Mathieu Chartier | 664bebf | 2012-11-12 16:54:11 -0800 | [diff] [blame] | 874 | // ClassLinker needs an attached thread, but we can't fully attach a thread without creating |
| 875 | // objects. We can't supply a thread group yet; it will be fixed later. Since we are the main |
| 876 | // thread, we do not get a java peer. |
Ian Rogers | 6355745 | 2014-06-04 16:57:15 -0700 | [diff] [blame] | 877 | Thread* self = Thread::Attach("main", false, nullptr, false); |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 878 | CHECK_EQ(self->GetThreadId(), ThreadList::kMainThreadId); |
Ian Rogers | 6355745 | 2014-06-04 16:57:15 -0700 | [diff] [blame] | 879 | CHECK(self != nullptr); |
Brian Carlstrom | 6ea095a | 2011-08-16 15:26:54 -0700 | [diff] [blame] | 880 | |
Brian Carlstrom | f28bc5b | 2011-10-26 01:15:03 -0700 | [diff] [blame] | 881 | // Set us to runnable so tools using a runtime can allocate and GC by default |
Ian Rogers | 120f1c7 | 2012-09-28 17:17:10 -0700 | [diff] [blame] | 882 | self->TransitionFromSuspendedToRunnable(); |
Brian Carlstrom | f28bc5b | 2011-10-26 01:15:03 -0700 | [diff] [blame] | 883 | |
Ian Rogers | a436fde | 2013-08-27 23:34:06 -0700 | [diff] [blame] | 884 | // Now we're attached, we can take the heap locks and validate the heap. |
Ian Rogers | 141d622 | 2012-04-05 12:23:06 -0700 | [diff] [blame] | 885 | GetHeap()->EnableObjectValidation(); |
| 886 | |
Ian Rogers | 1d54e73 | 2013-05-02 21:10:01 -0700 | [diff] [blame] | 887 | CHECK_GE(GetHeap()->GetContinuousSpaces().size(), 1U); |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 888 | class_linker_ = new ClassLinker(intern_table_); |
| 889 | if (GetHeap()->HasImageSpace()) { |
| 890 | class_linker_->InitFromImage(); |
Hiroshi Yamauchi | bd0fb61 | 2014-05-20 13:46:00 -0700 | [diff] [blame] | 891 | if (kIsDebugBuild) { |
| 892 | GetHeap()->GetImageSpace()->VerifyImageAllocations(); |
| 893 | } |
Sebastien Hertz | e6c143f | 2015-01-13 10:10:40 +0100 | [diff] [blame] | 894 | if (boot_class_path_string_.empty()) { |
| 895 | // The bootclasspath is not explicitly specified: construct it from the loaded dex files. |
| 896 | const std::vector<const DexFile*>& boot_class_path = GetClassLinker()->GetBootClassPath(); |
| 897 | std::vector<std::string> dex_locations; |
| 898 | dex_locations.reserve(boot_class_path.size()); |
| 899 | for (const DexFile* dex_file : boot_class_path) { |
| 900 | dex_locations.push_back(dex_file->GetLocation()); |
| 901 | } |
| 902 | boot_class_path_string_ = Join(dex_locations, ':'); |
| 903 | } |
Richard Uhler | c275259 | 2015-01-02 13:28:22 -0800 | [diff] [blame] | 904 | } else { |
Alex Light | 64ad14d | 2014-08-19 14:23:13 -0700 | [diff] [blame] | 905 | std::vector<std::string> dex_filenames; |
Ian Rogers | 6f3dbba | 2014-10-14 17:41:57 -0700 | [diff] [blame] | 906 | Split(boot_class_path_string_, ':', &dex_filenames); |
Richard Uhler | c275259 | 2015-01-02 13:28:22 -0800 | [diff] [blame] | 907 | |
| 908 | std::vector<std::string> dex_locations; |
Igor Murashkin | aaebaa0 | 2015-01-26 10:55:53 -0800 | [diff] [blame] | 909 | if (!runtime_options.Exists(Opt::BootClassPathLocations)) { |
Richard Uhler | c275259 | 2015-01-02 13:28:22 -0800 | [diff] [blame] | 910 | dex_locations = dex_filenames; |
| 911 | } else { |
Igor Murashkin | aaebaa0 | 2015-01-26 10:55:53 -0800 | [diff] [blame] | 912 | dex_locations = runtime_options.GetOrDefault(Opt::BootClassPathLocations); |
Richard Uhler | c275259 | 2015-01-02 13:28:22 -0800 | [diff] [blame] | 913 | CHECK_EQ(dex_filenames.size(), dex_locations.size()); |
| 914 | } |
| 915 | |
Richard Uhler | fbef44d | 2014-12-23 09:48:51 -0800 | [diff] [blame] | 916 | std::vector<std::unique_ptr<const DexFile>> boot_class_path; |
Igor Murashkin | aaebaa0 | 2015-01-26 10:55:53 -0800 | [diff] [blame] | 917 | OpenDexFiles(dex_filenames, |
| 918 | dex_locations, |
| 919 | runtime_options.GetOrDefault(Opt::Image), |
| 920 | &boot_class_path); |
Jeff Hao | c7d1188 | 2015-02-03 15:08:39 -0800 | [diff] [blame] | 921 | instruction_set_ = runtime_options.GetOrDefault(Opt::ImageInstructionSet); |
Richard Uhler | fbef44d | 2014-12-23 09:48:51 -0800 | [diff] [blame] | 922 | class_linker_->InitWithoutImage(std::move(boot_class_path)); |
Igor Murashkin | aaebaa0 | 2015-01-26 10:55:53 -0800 | [diff] [blame] | 923 | |
Alex Light | 64ad14d | 2014-08-19 14:23:13 -0700 | [diff] [blame] | 924 | // TODO: Should we move the following to InitWithoutImage? |
Jeff Hao | c7d1188 | 2015-02-03 15:08:39 -0800 | [diff] [blame] | 925 | SetInstructionSet(instruction_set_); |
Alex Light | 64ad14d | 2014-08-19 14:23:13 -0700 | [diff] [blame] | 926 | for (int i = 0; i < Runtime::kLastCalleeSaveType; i++) { |
| 927 | Runtime::CalleeSaveType type = Runtime::CalleeSaveType(i); |
| 928 | if (!HasCalleeSaveMethod(type)) { |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame] | 929 | SetCalleeSaveMethod(CreateCalleeSaveMethod(), type); |
Alex Light | 64ad14d | 2014-08-19 14:23:13 -0700 | [diff] [blame] | 930 | } |
| 931 | } |
Igor Murashkin | a2cfee3 | 2015-01-07 16:37:24 -0800 | [diff] [blame] | 932 | } |
| 933 | |
Ian Rogers | 6355745 | 2014-06-04 16:57:15 -0700 | [diff] [blame] | 934 | CHECK(class_linker_ != nullptr); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 935 | |
| 936 | // Initialize the special sentinel_ value early. |
| 937 | sentinel_ = GcRoot<mirror::Object>(class_linker_->AllocObject(self)); |
Hiroshi Yamauchi | 8a74117 | 2014-09-08 13:22:56 -0700 | [diff] [blame] | 938 | CHECK(sentinel_.Read() != nullptr); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 939 | |
Sameer Abu Asal | 51a5fb7 | 2013-02-19 14:25:01 -0800 | [diff] [blame] | 940 | verifier::MethodVerifier::Init(); |
Brian Carlstrom | 6ea095a | 2011-08-16 15:26:54 -0700 | [diff] [blame] | 941 | |
Igor Murashkin | aaebaa0 | 2015-01-26 10:55:53 -0800 | [diff] [blame] | 942 | method_trace_ = runtime_options.Exists(Opt::MethodTrace); |
| 943 | method_trace_file_ = runtime_options.ReleaseOrDefault(Opt::MethodTraceFile); |
| 944 | method_trace_file_size_ = runtime_options.ReleaseOrDefault(Opt::MethodTraceFileSize); |
jeffhao | b5e8185 | 2012-03-12 11:15:45 -0700 | [diff] [blame] | 945 | |
Igor Murashkin | aaebaa0 | 2015-01-26 10:55:53 -0800 | [diff] [blame] | 946 | { |
| 947 | auto&& profiler_options = runtime_options.ReleaseOrDefault(Opt::ProfilerOpts); |
| 948 | profile_output_filename_ = profiler_options.output_file_name_; |
| 949 | |
| 950 | // TODO: Don't do this, just change ProfilerOptions to include the output file name? |
| 951 | ProfilerOptions other_options( |
| 952 | profiler_options.enabled_, |
| 953 | profiler_options.period_s_, |
| 954 | profiler_options.duration_s_, |
| 955 | profiler_options.interval_us_, |
| 956 | profiler_options.backoff_coefficient_, |
| 957 | profiler_options.start_immediately_, |
| 958 | profiler_options.top_k_threshold_, |
| 959 | profiler_options.top_k_change_threshold_, |
| 960 | profiler_options.profile_type_, |
| 961 | profiler_options.max_stack_depth_); |
| 962 | |
| 963 | profiler_options_ = other_options; |
| 964 | } |
Calin Juravle | c1b643c | 2014-05-30 23:44:11 +0100 | [diff] [blame] | 965 | |
Brian Carlstrom | 491ca9e | 2014-03-02 18:24:38 -0800 | [diff] [blame] | 966 | // TODO: move this to just be an Trace::Start argument |
Igor Murashkin | aaebaa0 | 2015-01-26 10:55:53 -0800 | [diff] [blame] | 967 | Trace::SetDefaultClockSource(runtime_options.GetOrDefault(Opt::ProfileClock)); |
Dave Allison | 0aded08 | 2013-11-07 13:15:11 -0800 | [diff] [blame] | 968 | |
Igor Murashkin | aaebaa0 | 2015-01-26 10:55:53 -0800 | [diff] [blame] | 969 | if (method_trace_) { |
Sebastien Hertz | bae182c | 2013-12-17 10:42:03 +0100 | [diff] [blame] | 970 | ScopedThreadStateChange tsc(self, kWaitingForMethodTracingStart); |
Igor Murashkin | aaebaa0 | 2015-01-26 10:55:53 -0800 | [diff] [blame] | 971 | Trace::Start(method_trace_file_.c_str(), |
| 972 | -1, |
| 973 | static_cast<int>(method_trace_file_size_), |
| 974 | 0, |
| 975 | false, |
| 976 | false, |
| 977 | 0); |
jeffhao | b5e8185 | 2012-03-12 11:15:45 -0700 | [diff] [blame] | 978 | } |
| 979 | |
Ian Rogers | a436fde | 2013-08-27 23:34:06 -0700 | [diff] [blame] | 980 | // Pre-allocate an OutOfMemoryError for the double-OOME case. |
| 981 | self->ThrowNewException(ThrowLocation(), "Ljava/lang/OutOfMemoryError;", |
Brian Carlstrom | 491ca9e | 2014-03-02 18:24:38 -0800 | [diff] [blame] | 982 | "OutOfMemoryError thrown while trying to throw OutOfMemoryError; " |
Elliott Hughes | 4f55ff6 | 2014-10-21 07:36:19 -0700 | [diff] [blame] | 983 | "no stack trace available"); |
Nicolas Geoffray | db97871 | 2014-12-09 13:33:38 +0000 | [diff] [blame] | 984 | pre_allocated_OutOfMemoryError_ = GcRoot<mirror::Throwable>(self->GetException(NULL)); |
Ian Rogers | a436fde | 2013-08-27 23:34:06 -0700 | [diff] [blame] | 985 | self->ClearException(); |
| 986 | |
Ian Rogers | 6355745 | 2014-06-04 16:57:15 -0700 | [diff] [blame] | 987 | // Pre-allocate a NoClassDefFoundError for the common case of failing to find a system class |
| 988 | // ahead of checking the application's class loader. |
| 989 | self->ThrowNewException(ThrowLocation(), "Ljava/lang/NoClassDefFoundError;", |
Elliott Hughes | 4f55ff6 | 2014-10-21 07:36:19 -0700 | [diff] [blame] | 990 | "Class not found using the boot class loader; no stack trace available"); |
Nicolas Geoffray | db97871 | 2014-12-09 13:33:38 +0000 | [diff] [blame] | 991 | pre_allocated_NoClassDefFoundError_ = GcRoot<mirror::Throwable>(self->GetException(NULL)); |
Ian Rogers | 6355745 | 2014-06-04 16:57:15 -0700 | [diff] [blame] | 992 | self->ClearException(); |
| 993 | |
Andreas Gampe | 855564b | 2014-07-25 02:32:19 -0700 | [diff] [blame] | 994 | // Look for a native bridge. |
Andreas Gampe | 6be67ee | 2014-09-02 21:22:18 -0700 | [diff] [blame] | 995 | // |
| 996 | // The intended flow here is, in the case of a running system: |
| 997 | // |
| 998 | // Runtime::Init() (zygote): |
| 999 | // LoadNativeBridge -> dlopen from cmd line parameter. |
| 1000 | // | |
| 1001 | // V |
| 1002 | // Runtime::Start() (zygote): |
| 1003 | // No-op wrt native bridge. |
| 1004 | // | |
| 1005 | // | start app |
| 1006 | // V |
| 1007 | // DidForkFromZygote(action) |
| 1008 | // action = kUnload -> dlclose native bridge. |
| 1009 | // action = kInitialize -> initialize library |
| 1010 | // |
| 1011 | // |
| 1012 | // The intended flow here is, in the case of a simple dalvikvm call: |
| 1013 | // |
| 1014 | // Runtime::Init(): |
| 1015 | // LoadNativeBridge -> dlopen from cmd line parameter. |
| 1016 | // | |
| 1017 | // V |
| 1018 | // Runtime::Start(): |
| 1019 | // DidForkFromZygote(kInitialize) -> try to initialize any native bridge given. |
| 1020 | // No-op wrt native bridge. |
Igor Murashkin | aaebaa0 | 2015-01-26 10:55:53 -0800 | [diff] [blame] | 1021 | { |
| 1022 | std::string native_bridge_file_name = runtime_options.ReleaseOrDefault(Opt::NativeBridge); |
| 1023 | is_native_bridge_loaded_ = LoadNativeBridge(native_bridge_file_name); |
| 1024 | } |
Calin Juravle | a68629e | 2014-08-22 12:53:59 +0100 | [diff] [blame] | 1025 | |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 1026 | VLOG(startup) << "Runtime::Init exiting"; |
Carl Shapiro | 1fb8620 | 2011-06-27 17:43:13 -0700 | [diff] [blame] | 1027 | return true; |
| 1028 | } |
| 1029 | |
Elliott Hughes | 038a806 | 2011-09-18 14:12:41 -0700 | [diff] [blame] | 1030 | void Runtime::InitNativeMethods() { |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 1031 | VLOG(startup) << "Runtime::InitNativeMethods entering"; |
Elliott Hughes | ad7c2a3 | 2011-08-31 11:58:10 -0700 | [diff] [blame] | 1032 | Thread* self = Thread::Current(); |
| 1033 | JNIEnv* env = self->GetJniEnv(); |
| 1034 | |
Elliott Hughes | 418d20f | 2011-09-22 14:00:39 -0700 | [diff] [blame] | 1035 | // Must be in the kNative state for calling native methods (JNI_OnLoad code). |
Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 1036 | CHECK_EQ(self->GetState(), kNative); |
Elliott Hughes | ad7c2a3 | 2011-08-31 11:58:10 -0700 | [diff] [blame] | 1037 | |
Elliott Hughes | 418d20f | 2011-09-22 14:00:39 -0700 | [diff] [blame] | 1038 | // First set up JniConstants, which is used by both the runtime's built-in native |
| 1039 | // methods and libcore. |
Elliott Hughes | fea966e | 2011-09-22 10:26:20 -0700 | [diff] [blame] | 1040 | JniConstants::init(env); |
Elliott Hughes | eac7667 | 2012-05-24 21:56:51 -0700 | [diff] [blame] | 1041 | WellKnownClasses::Init(env); |
Elliott Hughes | fea966e | 2011-09-22 10:26:20 -0700 | [diff] [blame] | 1042 | |
Elliott Hughes | 418d20f | 2011-09-22 14:00:39 -0700 | [diff] [blame] | 1043 | // Then set up the native methods provided by the runtime itself. |
Elliott Hughes | ad7c2a3 | 2011-08-31 11:58:10 -0700 | [diff] [blame] | 1044 | RegisterRuntimeNativeMethods(env); |
| 1045 | |
Elliott Hughes | 418d20f | 2011-09-22 14:00:39 -0700 | [diff] [blame] | 1046 | // Then set up libcore, which is just a regular JNI library with a regular JNI_OnLoad. |
| 1047 | // Most JNI libraries can just use System.loadLibrary, but libcore can't because it's |
| 1048 | // the library that implements System.loadLibrary! |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1049 | { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1050 | std::string reason; |
Elliott Hughes | d289348 | 2014-12-12 15:49:56 -0800 | [diff] [blame] | 1051 | if (!java_vm_->LoadNativeLibrary(env, "libjavacore.so", nullptr, &reason)) { |
| 1052 | LOG(FATAL) << "LoadNativeLibrary failed for \"libjavacore.so\": " << reason; |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1053 | } |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1054 | } |
Ian Rogers | ef28b14 | 2012-11-30 14:22:18 -0800 | [diff] [blame] | 1055 | |
| 1056 | // Initialize well known classes that may invoke runtime native methods. |
| 1057 | WellKnownClasses::LateInit(env); |
| 1058 | |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 1059 | VLOG(startup) << "Runtime::InitNativeMethods exiting"; |
Elliott Hughes | ad7c2a3 | 2011-08-31 11:58:10 -0700 | [diff] [blame] | 1060 | } |
| 1061 | |
Ian Rogers | 365c102 | 2012-06-22 15:05:28 -0700 | [diff] [blame] | 1062 | void Runtime::InitThreadGroups(Thread* self) { |
| 1063 | JNIEnvExt* env = self->GetJniEnv(); |
| 1064 | ScopedJniEnvLocalRefState env_state(env); |
| 1065 | main_thread_group_ = |
Brian Carlstrom | 491ca9e | 2014-03-02 18:24:38 -0800 | [diff] [blame] | 1066 | env->NewGlobalRef(env->GetStaticObjectField( |
| 1067 | WellKnownClasses::java_lang_ThreadGroup, |
| 1068 | WellKnownClasses::java_lang_ThreadGroup_mainThreadGroup)); |
Nicolas Geoffray | a5ca888 | 2015-02-24 08:10:57 +0000 | [diff] [blame] | 1069 | CHECK(main_thread_group_ != NULL || IsCompiler()); |
Ian Rogers | 365c102 | 2012-06-22 15:05:28 -0700 | [diff] [blame] | 1070 | system_thread_group_ = |
Brian Carlstrom | 491ca9e | 2014-03-02 18:24:38 -0800 | [diff] [blame] | 1071 | env->NewGlobalRef(env->GetStaticObjectField( |
| 1072 | WellKnownClasses::java_lang_ThreadGroup, |
| 1073 | WellKnownClasses::java_lang_ThreadGroup_systemThreadGroup)); |
Nicolas Geoffray | a5ca888 | 2015-02-24 08:10:57 +0000 | [diff] [blame] | 1074 | CHECK(system_thread_group_ != NULL || IsCompiler()); |
Brian Carlstrom | 034f76b | 2012-08-01 15:51:58 -0700 | [diff] [blame] | 1075 | } |
| 1076 | |
| 1077 | jobject Runtime::GetMainThreadGroup() const { |
Nicolas Geoffray | a5ca888 | 2015-02-24 08:10:57 +0000 | [diff] [blame] | 1078 | CHECK(main_thread_group_ != NULL || IsCompiler()); |
Brian Carlstrom | 034f76b | 2012-08-01 15:51:58 -0700 | [diff] [blame] | 1079 | return main_thread_group_; |
| 1080 | } |
| 1081 | |
| 1082 | jobject Runtime::GetSystemThreadGroup() const { |
Nicolas Geoffray | a5ca888 | 2015-02-24 08:10:57 +0000 | [diff] [blame] | 1083 | CHECK(system_thread_group_ != NULL || IsCompiler()); |
Brian Carlstrom | 034f76b | 2012-08-01 15:51:58 -0700 | [diff] [blame] | 1084 | return system_thread_group_; |
Ian Rogers | 365c102 | 2012-06-22 15:05:28 -0700 | [diff] [blame] | 1085 | } |
| 1086 | |
Brian Carlstrom | ce88853 | 2013-10-10 00:32:58 -0700 | [diff] [blame] | 1087 | jobject Runtime::GetSystemClassLoader() const { |
Nicolas Geoffray | a5ca888 | 2015-02-24 08:10:57 +0000 | [diff] [blame] | 1088 | CHECK(system_class_loader_ != NULL || IsCompiler()); |
Brian Carlstrom | ce88853 | 2013-10-10 00:32:58 -0700 | [diff] [blame] | 1089 | return system_class_loader_; |
| 1090 | } |
| 1091 | |
Elliott Hughes | ad7c2a3 | 2011-08-31 11:58:10 -0700 | [diff] [blame] | 1092 | void Runtime::RegisterRuntimeNativeMethods(JNIEnv* env) { |
Andreas Gampe | 277ccbd | 2014-11-03 21:36:10 -0800 | [diff] [blame] | 1093 | register_dalvik_system_DexFile(env); |
| 1094 | register_dalvik_system_VMDebug(env); |
| 1095 | register_dalvik_system_VMRuntime(env); |
| 1096 | register_dalvik_system_VMStack(env); |
| 1097 | register_dalvik_system_ZygoteHooks(env); |
| 1098 | register_java_lang_Class(env); |
| 1099 | register_java_lang_DexCache(env); |
| 1100 | register_java_lang_Object(env); |
| 1101 | register_java_lang_ref_FinalizerReference(env); |
| 1102 | register_java_lang_reflect_Array(env); |
| 1103 | register_java_lang_reflect_Constructor(env); |
| 1104 | register_java_lang_reflect_Field(env); |
| 1105 | register_java_lang_reflect_Method(env); |
| 1106 | register_java_lang_reflect_Proxy(env); |
| 1107 | register_java_lang_ref_Reference(env); |
| 1108 | register_java_lang_Runtime(env); |
| 1109 | register_java_lang_String(env); |
| 1110 | register_java_lang_System(env); |
| 1111 | register_java_lang_Thread(env); |
| 1112 | register_java_lang_Throwable(env); |
| 1113 | register_java_lang_VMClassLoader(env); |
| 1114 | register_java_util_concurrent_atomic_AtomicLong(env); |
| 1115 | register_org_apache_harmony_dalvik_ddmc_DdmServer(env); |
| 1116 | register_org_apache_harmony_dalvik_ddmc_DdmVmInternal(env); |
| 1117 | register_sun_misc_Unsafe(env); |
Elliott Hughes | ad7c2a3 | 2011-08-31 11:58:10 -0700 | [diff] [blame] | 1118 | } |
| 1119 | |
Elliott Hughes | c967f78 | 2012-04-16 10:23:15 -0700 | [diff] [blame] | 1120 | void Runtime::DumpForSigQuit(std::ostream& os) { |
Elliott Hughes | cac6cc7 | 2011-11-03 20:31:21 -0700 | [diff] [blame] | 1121 | GetClassLinker()->DumpForSigQuit(os); |
| 1122 | GetInternTable()->DumpForSigQuit(os); |
Elliott Hughes | ae80b49 | 2012-04-24 10:43:17 -0700 | [diff] [blame] | 1123 | GetJavaVM()->DumpForSigQuit(os); |
Elliott Hughes | c967f78 | 2012-04-16 10:23:15 -0700 | [diff] [blame] | 1124 | GetHeap()->DumpForSigQuit(os); |
Mathieu Chartier | bad0267 | 2014-08-25 13:08:22 -0700 | [diff] [blame] | 1125 | TrackedAllocators::Dump(os); |
Elliott Hughes | 42ee142 | 2011-09-06 12:33:32 -0700 | [diff] [blame] | 1126 | os << "\n"; |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 1127 | |
Elliott Hughes | c967f78 | 2012-04-16 10:23:15 -0700 | [diff] [blame] | 1128 | thread_list_->DumpForSigQuit(os); |
Ian Rogers | 56edc43 | 2013-01-18 16:51:51 -0800 | [diff] [blame] | 1129 | BaseMutex::DumpAll(os); |
Elliott Hughes | e27955c | 2011-08-26 15:21:24 -0700 | [diff] [blame] | 1130 | } |
| 1131 | |
Elliott Hughes | 21a5bf2 | 2011-12-07 14:35:20 -0800 | [diff] [blame] | 1132 | void Runtime::DumpLockHolders(std::ostream& os) { |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 1133 | uint64_t mutator_lock_owner = Locks::mutator_lock_->GetExclusiveOwnerTid(); |
Elliott Hughes | 21a5bf2 | 2011-12-07 14:35:20 -0800 | [diff] [blame] | 1134 | pid_t thread_list_lock_owner = GetThreadList()->GetLockOwner(); |
| 1135 | pid_t classes_lock_owner = GetClassLinker()->GetClassesLockOwner(); |
| 1136 | pid_t dex_lock_owner = GetClassLinker()->GetDexLockOwner(); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1137 | if ((thread_list_lock_owner | classes_lock_owner | dex_lock_owner) != 0) { |
| 1138 | os << "Mutator lock exclusive owner tid: " << mutator_lock_owner << "\n" |
Elliott Hughes | 21a5bf2 | 2011-12-07 14:35:20 -0800 | [diff] [blame] | 1139 | << "ThreadList lock owner tid: " << thread_list_lock_owner << "\n" |
| 1140 | << "ClassLinker classes lock owner tid: " << classes_lock_owner << "\n" |
| 1141 | << "ClassLinker dex lock owner tid: " << dex_lock_owner << "\n"; |
| 1142 | } |
| 1143 | } |
| 1144 | |
Mathieu Chartier | 9ef78b5 | 2014-09-25 17:03:12 -0700 | [diff] [blame] | 1145 | void Runtime::SetStatsEnabled(bool new_state) { |
| 1146 | Thread* self = Thread::Current(); |
| 1147 | MutexLock mu(self, *Locks::instrument_entrypoints_lock_); |
Elliott Hughes | 9d5ccec | 2011-09-19 13:19:50 -0700 | [diff] [blame] | 1148 | if (new_state == true) { |
| 1149 | GetStats()->Clear(~0); |
| 1150 | // TODO: wouldn't it make more sense to clear _all_ threads' stats? |
Mathieu Chartier | 9ef78b5 | 2014-09-25 17:03:12 -0700 | [diff] [blame] | 1151 | self->GetStats()->Clear(~0); |
| 1152 | if (stats_enabled_ != new_state) { |
| 1153 | GetInstrumentation()->InstrumentQuickAllocEntryPointsLocked(); |
| 1154 | } |
| 1155 | } else if (stats_enabled_ != new_state) { |
| 1156 | GetInstrumentation()->UninstrumentQuickAllocEntryPointsLocked(); |
Elliott Hughes | 9d5ccec | 2011-09-19 13:19:50 -0700 | [diff] [blame] | 1157 | } |
| 1158 | stats_enabled_ = new_state; |
| 1159 | } |
| 1160 | |
| 1161 | void Runtime::ResetStats(int kinds) { |
| 1162 | GetStats()->Clear(kinds & 0xffff); |
| 1163 | // TODO: wouldn't it make more sense to clear _all_ threads' stats? |
| 1164 | Thread::Current()->GetStats()->Clear(kinds >> 16); |
| 1165 | } |
| 1166 | |
Elliott Hughes | 9d5ccec | 2011-09-19 13:19:50 -0700 | [diff] [blame] | 1167 | int32_t Runtime::GetStat(int kind) { |
| 1168 | RuntimeStats* stats; |
| 1169 | if (kind < (1<<16)) { |
| 1170 | stats = GetStats(); |
| 1171 | } else { |
| 1172 | stats = Thread::Current()->GetStats(); |
| 1173 | kind >>= 16; |
| 1174 | } |
| 1175 | switch (kind) { |
| 1176 | case KIND_ALLOCATED_OBJECTS: |
| 1177 | return stats->allocated_objects; |
| 1178 | case KIND_ALLOCATED_BYTES: |
| 1179 | return stats->allocated_bytes; |
| 1180 | case KIND_FREED_OBJECTS: |
| 1181 | return stats->freed_objects; |
| 1182 | case KIND_FREED_BYTES: |
| 1183 | return stats->freed_bytes; |
| 1184 | case KIND_GC_INVOCATIONS: |
| 1185 | return stats->gc_for_alloc_count; |
| 1186 | case KIND_CLASS_INIT_COUNT: |
| 1187 | return stats->class_init_count; |
| 1188 | case KIND_CLASS_INIT_TIME: |
| 1189 | // Convert ns to us, reduce to 32 bits. |
Elliott Hughes | 398f64b | 2012-03-26 18:05:48 -0700 | [diff] [blame] | 1190 | return static_cast<int>(stats->class_init_time_ns / 1000); |
Elliott Hughes | 9d5ccec | 2011-09-19 13:19:50 -0700 | [diff] [blame] | 1191 | case KIND_EXT_ALLOCATED_OBJECTS: |
| 1192 | case KIND_EXT_ALLOCATED_BYTES: |
| 1193 | case KIND_EXT_FREED_OBJECTS: |
| 1194 | case KIND_EXT_FREED_BYTES: |
| 1195 | return 0; // backward compatibility |
| 1196 | default: |
Elliott Hughes | 7b9d996 | 2012-04-20 18:48:18 -0700 | [diff] [blame] | 1197 | LOG(FATAL) << "Unknown statistic " << kind; |
Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 1198 | return -1; // unreachable |
Elliott Hughes | 9d5ccec | 2011-09-19 13:19:50 -0700 | [diff] [blame] | 1199 | } |
| 1200 | } |
| 1201 | |
Elliott Hughes | c1674ed | 2011-08-25 18:09:09 -0700 | [diff] [blame] | 1202 | void Runtime::BlockSignals() { |
Elliott Hughes | 457005c | 2012-04-16 13:54:25 -0700 | [diff] [blame] | 1203 | SignalSet signals; |
| 1204 | signals.Add(SIGPIPE); |
Elliott Hughes | c1674ed | 2011-08-25 18:09:09 -0700 | [diff] [blame] | 1205 | // SIGQUIT is used to dump the runtime's state (including stack traces). |
Elliott Hughes | 457005c | 2012-04-16 13:54:25 -0700 | [diff] [blame] | 1206 | signals.Add(SIGQUIT); |
Elliott Hughes | 0879504 | 2012-04-03 14:48:52 -0700 | [diff] [blame] | 1207 | // SIGUSR1 is used to initiate a GC. |
Elliott Hughes | 457005c | 2012-04-16 13:54:25 -0700 | [diff] [blame] | 1208 | signals.Add(SIGUSR1); |
| 1209 | signals.Block(); |
Elliott Hughes | c1674ed | 2011-08-25 18:09:09 -0700 | [diff] [blame] | 1210 | } |
| 1211 | |
Mathieu Chartier | 664bebf | 2012-11-12 16:54:11 -0800 | [diff] [blame] | 1212 | bool Runtime::AttachCurrentThread(const char* thread_name, bool as_daemon, jobject thread_group, |
| 1213 | bool create_peer) { |
Nicolas Geoffray | db97871 | 2014-12-09 13:33:38 +0000 | [diff] [blame] | 1214 | return Thread::Attach(thread_name, as_daemon, thread_group, create_peer) != NULL; |
Carl Shapiro | 61e019d | 2011-07-14 16:53:09 -0700 | [diff] [blame] | 1215 | } |
| 1216 | |
Elliott Hughes | d92bec4 | 2011-09-02 17:04:36 -0700 | [diff] [blame] | 1217 | void Runtime::DetachCurrentThread() { |
Brian Carlstrom | 4d57143 | 2012-05-16 00:21:41 -0700 | [diff] [blame] | 1218 | Thread* self = Thread::Current(); |
Nicolas Geoffray | db97871 | 2014-12-09 13:33:38 +0000 | [diff] [blame] | 1219 | if (self == NULL) { |
Brian Carlstrom | 4d57143 | 2012-05-16 00:21:41 -0700 | [diff] [blame] | 1220 | LOG(FATAL) << "attempting to detach thread that is not attached"; |
| 1221 | } |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 1222 | if (self->HasManagedStack()) { |
Elliott Hughes | 22869a9 | 2012-03-27 14:08:24 -0700 | [diff] [blame] | 1223 | LOG(FATAL) << *Thread::Current() << " attempting to detach while still running code"; |
| 1224 | } |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1225 | thread_list_->Unregister(self); |
Carl Shapiro | 1fb8620 | 2011-06-27 17:43:13 -0700 | [diff] [blame] | 1226 | } |
| 1227 | |
Hiroshi Yamauchi | ab08811 | 2014-07-14 13:00:14 -0700 | [diff] [blame] | 1228 | mirror::Throwable* Runtime::GetPreAllocatedOutOfMemoryError() { |
Hiroshi Yamauchi | 94f7b49 | 2014-07-22 18:08:23 -0700 | [diff] [blame] | 1229 | mirror::Throwable* oome = pre_allocated_OutOfMemoryError_.Read(); |
Ian Rogers | 6355745 | 2014-06-04 16:57:15 -0700 | [diff] [blame] | 1230 | if (oome == nullptr) { |
Ian Rogers | a436fde | 2013-08-27 23:34:06 -0700 | [diff] [blame] | 1231 | LOG(ERROR) << "Failed to return pre-allocated OOME"; |
| 1232 | } |
Hiroshi Yamauchi | ab08811 | 2014-07-14 13:00:14 -0700 | [diff] [blame] | 1233 | return oome; |
Ian Rogers | a436fde | 2013-08-27 23:34:06 -0700 | [diff] [blame] | 1234 | } |
| 1235 | |
Ian Rogers | 6355745 | 2014-06-04 16:57:15 -0700 | [diff] [blame] | 1236 | mirror::Throwable* Runtime::GetPreAllocatedNoClassDefFoundError() { |
| 1237 | mirror::Throwable* ncdfe = pre_allocated_NoClassDefFoundError_.Read(); |
| 1238 | if (ncdfe == nullptr) { |
| 1239 | LOG(ERROR) << "Failed to return pre-allocated NoClassDefFoundError"; |
| 1240 | } |
| 1241 | return ncdfe; |
| 1242 | } |
| 1243 | |
Mathieu Chartier | 893263b | 2014-03-04 11:07:42 -0800 | [diff] [blame] | 1244 | void Runtime::VisitConstantRoots(RootCallback* callback, void* arg) { |
| 1245 | // Visit the classes held as static in mirror classes, these can be visited concurrently and only |
Mathieu Chartier | 3b05e9b | 2014-03-25 09:29:43 -0700 | [diff] [blame] | 1246 | // need to be visited once per GC since they never change. |
Mathieu Chartier | 83c8ee0 | 2014-01-28 14:50:23 -0800 | [diff] [blame] | 1247 | mirror::ArtField::VisitRoots(callback, arg); |
| 1248 | mirror::ArtMethod::VisitRoots(callback, arg); |
| 1249 | mirror::Class::VisitRoots(callback, arg); |
Fred Shih | 4ee7a66 | 2014-07-11 09:59:27 -0700 | [diff] [blame] | 1250 | mirror::Reference::VisitRoots(callback, arg); |
Mathieu Chartier | 83c8ee0 | 2014-01-28 14:50:23 -0800 | [diff] [blame] | 1251 | mirror::StackTraceElement::VisitRoots(callback, arg); |
| 1252 | mirror::String::VisitRoots(callback, arg); |
| 1253 | mirror::Throwable::VisitRoots(callback, arg); |
Mathieu Chartier | c528dba | 2013-11-26 12:00:11 -0800 | [diff] [blame] | 1254 | // Visit all the primitive array types classes. |
Mathieu Chartier | 83c8ee0 | 2014-01-28 14:50:23 -0800 | [diff] [blame] | 1255 | mirror::PrimitiveArray<uint8_t>::VisitRoots(callback, arg); // BooleanArray |
| 1256 | mirror::PrimitiveArray<int8_t>::VisitRoots(callback, arg); // ByteArray |
| 1257 | mirror::PrimitiveArray<uint16_t>::VisitRoots(callback, arg); // CharArray |
| 1258 | mirror::PrimitiveArray<double>::VisitRoots(callback, arg); // DoubleArray |
| 1259 | mirror::PrimitiveArray<float>::VisitRoots(callback, arg); // FloatArray |
| 1260 | mirror::PrimitiveArray<int32_t>::VisitRoots(callback, arg); // IntArray |
| 1261 | mirror::PrimitiveArray<int64_t>::VisitRoots(callback, arg); // LongArray |
| 1262 | mirror::PrimitiveArray<int16_t>::VisitRoots(callback, arg); // ShortArray |
Mathieu Chartier | 893263b | 2014-03-04 11:07:42 -0800 | [diff] [blame] | 1263 | } |
| 1264 | |
| 1265 | void Runtime::VisitConcurrentRoots(RootCallback* callback, void* arg, VisitRootFlags flags) { |
| 1266 | intern_table_->VisitRoots(callback, arg, flags); |
| 1267 | class_linker_->VisitRoots(callback, arg, flags); |
| 1268 | if ((flags & kVisitRootFlagNewRoots) == 0) { |
| 1269 | // Guaranteed to have no new roots in the constant roots. |
| 1270 | VisitConstantRoots(callback, arg); |
| 1271 | } |
| 1272 | } |
| 1273 | |
Hiroshi Yamauchi | 2cd334a | 2015-01-09 14:03:35 -0800 | [diff] [blame] | 1274 | void Runtime::VisitTransactionRoots(RootCallback* callback, void* arg) { |
| 1275 | if (preinitialization_transaction_ != nullptr) { |
| 1276 | preinitialization_transaction_->VisitRoots(callback, arg); |
| 1277 | } |
| 1278 | } |
| 1279 | |
Mathieu Chartier | 893263b | 2014-03-04 11:07:42 -0800 | [diff] [blame] | 1280 | void Runtime::VisitNonThreadRoots(RootCallback* callback, void* arg) { |
Mathieu Chartier | 83c8ee0 | 2014-01-28 14:50:23 -0800 | [diff] [blame] | 1281 | java_vm_->VisitRoots(callback, arg); |
Mathieu Chartier | e34fa1d | 2015-01-14 14:55:47 -0800 | [diff] [blame] | 1282 | sentinel_.VisitRootIfNonNull(callback, arg, RootInfo(kRootVMInternal)); |
| 1283 | pre_allocated_OutOfMemoryError_.VisitRootIfNonNull(callback, arg, RootInfo(kRootVMInternal)); |
| 1284 | resolution_method_.VisitRoot(callback, arg, RootInfo(kRootVMInternal)); |
| 1285 | pre_allocated_NoClassDefFoundError_.VisitRootIfNonNull(callback, arg, RootInfo(kRootVMInternal)); |
| 1286 | imt_conflict_method_.VisitRootIfNonNull(callback, arg, RootInfo(kRootVMInternal)); |
| 1287 | imt_unimplemented_method_.VisitRootIfNonNull(callback, arg, RootInfo(kRootVMInternal)); |
| 1288 | default_imt_.VisitRootIfNonNull(callback, arg, RootInfo(kRootVMInternal)); |
Ian Rogers | 4f0d07c | 2011-10-06 23:38:47 -0700 | [diff] [blame] | 1289 | for (int i = 0; i < Runtime::kLastCalleeSaveType; i++) { |
Mathieu Chartier | e34fa1d | 2015-01-14 14:55:47 -0800 | [diff] [blame] | 1290 | callee_save_methods_[i].VisitRootIfNonNull(callback, arg, RootInfo(kRootVMInternal)); |
Ian Rogers | 4f0d07c | 2011-10-06 23:38:47 -0700 | [diff] [blame] | 1291 | } |
Mathieu Chartier | 7c438b1 | 2014-09-12 17:01:24 -0700 | [diff] [blame] | 1292 | verifier::MethodVerifier::VisitStaticRoots(callback, arg); |
Mathieu Chartier | c528dba | 2013-11-26 12:00:11 -0800 | [diff] [blame] | 1293 | { |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 1294 | MutexLock mu(Thread::Current(), method_verifier_lock_); |
Mathieu Chartier | c528dba | 2013-11-26 12:00:11 -0800 | [diff] [blame] | 1295 | for (verifier::MethodVerifier* verifier : method_verifiers_) { |
Mathieu Chartier | 83c8ee0 | 2014-01-28 14:50:23 -0800 | [diff] [blame] | 1296 | verifier->VisitRoots(callback, arg); |
Mathieu Chartier | c528dba | 2013-11-26 12:00:11 -0800 | [diff] [blame] | 1297 | } |
| 1298 | } |
Hiroshi Yamauchi | 2cd334a | 2015-01-09 14:03:35 -0800 | [diff] [blame] | 1299 | VisitTransactionRoots(callback, arg); |
Mathieu Chartier | 3b05e9b | 2014-03-25 09:29:43 -0700 | [diff] [blame] | 1300 | instrumentation_.VisitRoots(callback, arg); |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 1301 | } |
| 1302 | |
Mathieu Chartier | 83c8ee0 | 2014-01-28 14:50:23 -0800 | [diff] [blame] | 1303 | void Runtime::VisitNonConcurrentRoots(RootCallback* callback, void* arg) { |
| 1304 | thread_list_->VisitRoots(callback, arg); |
| 1305 | VisitNonThreadRoots(callback, arg); |
Mathieu Chartier | 858f1c5 | 2012-10-17 17:45:55 -0700 | [diff] [blame] | 1306 | } |
| 1307 | |
Hiroshi Yamauchi | 2cd334a | 2015-01-09 14:03:35 -0800 | [diff] [blame] | 1308 | void Runtime::VisitThreadRoots(RootCallback* callback, void* arg) { |
| 1309 | thread_list_->VisitRoots(callback, arg); |
| 1310 | } |
| 1311 | |
| 1312 | size_t Runtime::FlipThreadRoots(Closure* thread_flip_visitor, Closure* flip_callback, |
| 1313 | gc::collector::GarbageCollector* collector) { |
| 1314 | return thread_list_->FlipThreadRoots(thread_flip_visitor, flip_callback, collector); |
| 1315 | } |
| 1316 | |
Mathieu Chartier | 893263b | 2014-03-04 11:07:42 -0800 | [diff] [blame] | 1317 | void Runtime::VisitRoots(RootCallback* callback, void* arg, VisitRootFlags flags) { |
Mathieu Chartier | 83c8ee0 | 2014-01-28 14:50:23 -0800 | [diff] [blame] | 1318 | VisitNonConcurrentRoots(callback, arg); |
Mathieu Chartier | 119c6bd | 2014-05-09 14:11:47 -0700 | [diff] [blame] | 1319 | VisitConcurrentRoots(callback, arg, flags); |
Mathieu Chartier | 9ebae1f | 2012-10-15 17:38:16 -0700 | [diff] [blame] | 1320 | } |
| 1321 | |
Jeff Hao | 88474b4 | 2013-10-23 16:24:40 -0700 | [diff] [blame] | 1322 | mirror::ObjectArray<mirror::ArtMethod>* Runtime::CreateDefaultImt(ClassLinker* cl) { |
| 1323 | Thread* self = Thread::Current(); |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 1324 | StackHandleScope<1> hs(self); |
| 1325 | Handle<mirror::ObjectArray<mirror::ArtMethod>> imtable( |
| 1326 | hs.NewHandle(cl->AllocArtMethodArray(self, 64))); |
Jeff Hao | 88474b4 | 2013-10-23 16:24:40 -0700 | [diff] [blame] | 1327 | mirror::ArtMethod* imt_conflict_method = Runtime::Current()->GetImtConflictMethod(); |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 1328 | for (size_t i = 0; i < static_cast<size_t>(imtable->GetLength()); i++) { |
Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 1329 | imtable->Set<false>(i, imt_conflict_method); |
Jeff Hao | 88474b4 | 2013-10-23 16:24:40 -0700 | [diff] [blame] | 1330 | } |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 1331 | return imtable.Get(); |
Jeff Hao | 88474b4 | 2013-10-23 16:24:40 -0700 | [diff] [blame] | 1332 | } |
| 1333 | |
| 1334 | mirror::ArtMethod* Runtime::CreateImtConflictMethod() { |
Jeff Hao | 88474b4 | 2013-10-23 16:24:40 -0700 | [diff] [blame] | 1335 | Thread* self = Thread::Current(); |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 1336 | Runtime* runtime = Runtime::Current(); |
| 1337 | ClassLinker* class_linker = runtime->GetClassLinker(); |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 1338 | StackHandleScope<1> hs(self); |
| 1339 | Handle<mirror::ArtMethod> method(hs.NewHandle(class_linker->AllocArtMethod(self))); |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 1340 | method->SetDeclaringClass(mirror::ArtMethod::GetJavaLangReflectArtMethod()); |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 1341 | // TODO: use a special method for imt conflict method saves. |
Jeff Hao | 88474b4 | 2013-10-23 16:24:40 -0700 | [diff] [blame] | 1342 | method->SetDexMethodIndex(DexFile::kDexNoIndex); |
| 1343 | // When compiling, the code pointer will get set later when the image is loaded. |
Nicolas Geoffray | a5ca888 | 2015-02-24 08:10:57 +0000 | [diff] [blame] | 1344 | if (runtime->IsCompiler()) { |
Jeff Hao | c7d1188 | 2015-02-03 15:08:39 -0800 | [diff] [blame] | 1345 | size_t pointer_size = GetInstructionSetPointerSize(instruction_set_); |
| 1346 | method->SetEntryPointFromQuickCompiledCodePtrSize(nullptr, pointer_size); |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 1347 | } else { |
Ian Rogers | 6f3dbba | 2014-10-14 17:41:57 -0700 | [diff] [blame] | 1348 | method->SetEntryPointFromQuickCompiledCode(GetQuickImtConflictStub()); |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 1349 | } |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 1350 | return method.Get(); |
Jeff Hao | 88474b4 | 2013-10-23 16:24:40 -0700 | [diff] [blame] | 1351 | } |
| 1352 | |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 1353 | mirror::ArtMethod* Runtime::CreateResolutionMethod() { |
Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 1354 | Thread* self = Thread::Current(); |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 1355 | Runtime* runtime = Runtime::Current(); |
| 1356 | ClassLinker* class_linker = runtime->GetClassLinker(); |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 1357 | StackHandleScope<1> hs(self); |
| 1358 | Handle<mirror::ArtMethod> method(hs.NewHandle(class_linker->AllocArtMethod(self))); |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 1359 | method->SetDeclaringClass(mirror::ArtMethod::GetJavaLangReflectArtMethod()); |
Ian Rogers | 1984651 | 2012-02-24 11:42:47 -0800 | [diff] [blame] | 1360 | // TODO: use a special method for resolution method saves |
Ian Rogers | 8b2c0b9 | 2013-09-19 02:56:49 -0700 | [diff] [blame] | 1361 | method->SetDexMethodIndex(DexFile::kDexNoIndex); |
Jeff Hao | 58df327 | 2013-04-22 15:28:53 -0700 | [diff] [blame] | 1362 | // When compiling, the code pointer will get set later when the image is loaded. |
Nicolas Geoffray | a5ca888 | 2015-02-24 08:10:57 +0000 | [diff] [blame] | 1363 | if (runtime->IsCompiler()) { |
Jeff Hao | c7d1188 | 2015-02-03 15:08:39 -0800 | [diff] [blame] | 1364 | size_t pointer_size = GetInstructionSetPointerSize(instruction_set_); |
| 1365 | method->SetEntryPointFromQuickCompiledCodePtrSize(nullptr, pointer_size); |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 1366 | } else { |
Ian Rogers | 6f3dbba | 2014-10-14 17:41:57 -0700 | [diff] [blame] | 1367 | method->SetEntryPointFromQuickCompiledCode(GetQuickResolutionStub()); |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 1368 | } |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 1369 | return method.Get(); |
Ian Rogers | 1984651 | 2012-02-24 11:42:47 -0800 | [diff] [blame] | 1370 | } |
| 1371 | |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame] | 1372 | mirror::ArtMethod* Runtime::CreateCalleeSaveMethod() { |
Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 1373 | Thread* self = Thread::Current(); |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 1374 | Runtime* runtime = Runtime::Current(); |
| 1375 | ClassLinker* class_linker = runtime->GetClassLinker(); |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 1376 | StackHandleScope<1> hs(self); |
| 1377 | Handle<mirror::ArtMethod> method(hs.NewHandle(class_linker->AllocArtMethod(self))); |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 1378 | method->SetDeclaringClass(mirror::ArtMethod::GetJavaLangReflectArtMethod()); |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 1379 | // TODO: use a special method for callee saves |
Ian Rogers | 8b2c0b9 | 2013-09-19 02:56:49 -0700 | [diff] [blame] | 1380 | method->SetDexMethodIndex(DexFile::kDexNoIndex); |
Jeff Hao | c7d1188 | 2015-02-03 15:08:39 -0800 | [diff] [blame] | 1381 | size_t pointer_size = GetInstructionSetPointerSize(instruction_set_); |
| 1382 | method->SetEntryPointFromQuickCompiledCodePtrSize(nullptr, pointer_size); |
Vladimir Marko | 7624d25 | 2014-05-02 14:40:15 +0100 | [diff] [blame] | 1383 | DCHECK_NE(instruction_set_, kNone); |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 1384 | return method.Get(); |
Ian Rogers | ff1ed47 | 2011-09-20 13:46:24 -0700 | [diff] [blame] | 1385 | } |
| 1386 | |
Mathieu Chartier | c11d9b8 | 2013-09-19 10:01:59 -0700 | [diff] [blame] | 1387 | void Runtime::DisallowNewSystemWeaks() { |
| 1388 | monitor_list_->DisallowNewMonitors(); |
| 1389 | intern_table_->DisallowNewInterns(); |
| 1390 | java_vm_->DisallowNewWeakGlobals(); |
| 1391 | } |
| 1392 | |
| 1393 | void Runtime::AllowNewSystemWeaks() { |
| 1394 | monitor_list_->AllowNewMonitors(); |
| 1395 | intern_table_->AllowNewInterns(); |
| 1396 | java_vm_->AllowNewWeakGlobals(); |
| 1397 | } |
| 1398 | |
Hiroshi Yamauchi | 2cd334a | 2015-01-09 14:03:35 -0800 | [diff] [blame] | 1399 | void Runtime::EnsureNewSystemWeaksDisallowed() { |
| 1400 | // Lock and unlock the system weak locks once to ensure that no |
| 1401 | // threads are still in the middle of adding new system weaks. |
| 1402 | monitor_list_->EnsureNewMonitorsDisallowed(); |
| 1403 | intern_table_->EnsureNewInternsDisallowed(); |
| 1404 | java_vm_->EnsureNewWeakGlobalsDisallowed(); |
| 1405 | } |
| 1406 | |
Vladimir Marko | 7624d25 | 2014-05-02 14:40:15 +0100 | [diff] [blame] | 1407 | void Runtime::SetInstructionSet(InstructionSet instruction_set) { |
| 1408 | instruction_set_ = instruction_set; |
| 1409 | if ((instruction_set_ == kThumb2) || (instruction_set_ == kArm)) { |
| 1410 | for (int i = 0; i != kLastCalleeSaveType; ++i) { |
| 1411 | CalleeSaveType type = static_cast<CalleeSaveType>(i); |
| 1412 | callee_save_method_frame_infos_[i] = arm::ArmCalleeSaveMethodFrameInfo(type); |
| 1413 | } |
| 1414 | } else if (instruction_set_ == kMips) { |
| 1415 | for (int i = 0; i != kLastCalleeSaveType; ++i) { |
| 1416 | CalleeSaveType type = static_cast<CalleeSaveType>(i); |
| 1417 | callee_save_method_frame_infos_[i] = mips::MipsCalleeSaveMethodFrameInfo(type); |
| 1418 | } |
Andreas Gampe | 57b3429 | 2015-01-14 15:45:59 -0800 | [diff] [blame] | 1419 | } else if (instruction_set_ == kMips64) { |
| 1420 | for (int i = 0; i != kLastCalleeSaveType; ++i) { |
| 1421 | CalleeSaveType type = static_cast<CalleeSaveType>(i); |
| 1422 | callee_save_method_frame_infos_[i] = mips64::Mips64CalleeSaveMethodFrameInfo(type); |
| 1423 | } |
Vladimir Marko | 7624d25 | 2014-05-02 14:40:15 +0100 | [diff] [blame] | 1424 | } else if (instruction_set_ == kX86) { |
| 1425 | for (int i = 0; i != kLastCalleeSaveType; ++i) { |
| 1426 | CalleeSaveType type = static_cast<CalleeSaveType>(i); |
| 1427 | callee_save_method_frame_infos_[i] = x86::X86CalleeSaveMethodFrameInfo(type); |
| 1428 | } |
| 1429 | } else if (instruction_set_ == kX86_64) { |
| 1430 | for (int i = 0; i != kLastCalleeSaveType; ++i) { |
| 1431 | CalleeSaveType type = static_cast<CalleeSaveType>(i); |
| 1432 | callee_save_method_frame_infos_[i] = x86_64::X86_64CalleeSaveMethodFrameInfo(type); |
| 1433 | } |
| 1434 | } else if (instruction_set_ == kArm64) { |
| 1435 | for (int i = 0; i != kLastCalleeSaveType; ++i) { |
| 1436 | CalleeSaveType type = static_cast<CalleeSaveType>(i); |
| 1437 | callee_save_method_frame_infos_[i] = arm64::Arm64CalleeSaveMethodFrameInfo(type); |
| 1438 | } |
| 1439 | } else { |
| 1440 | UNIMPLEMENTED(FATAL) << instruction_set_; |
| 1441 | } |
| 1442 | } |
| 1443 | |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 1444 | void Runtime::SetCalleeSaveMethod(mirror::ArtMethod* method, CalleeSaveType type) { |
Ian Rogers | 4f0d07c | 2011-10-06 23:38:47 -0700 | [diff] [blame] | 1445 | DCHECK_LT(static_cast<int>(type), static_cast<int>(kLastCalleeSaveType)); |
Hiroshi Yamauchi | 94f7b49 | 2014-07-22 18:08:23 -0700 | [diff] [blame] | 1446 | callee_save_methods_[type] = GcRoot<mirror::ArtMethod>(method); |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 1447 | } |
| 1448 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1449 | const std::vector<const DexFile*>& Runtime::GetCompileTimeClassPath(jobject class_loader) { |
Nicolas Geoffray | db97871 | 2014-12-09 13:33:38 +0000 | [diff] [blame] | 1450 | if (class_loader == NULL) { |
Elliott Hughes | b3bd5f0 | 2012-03-08 21:05:27 -0800 | [diff] [blame] | 1451 | return GetClassLinker()->GetBootClassPath(); |
| 1452 | } |
| 1453 | CHECK(UseCompileTimeClassPath()); |
| 1454 | CompileTimeClassPaths::const_iterator it = compile_time_class_paths_.find(class_loader); |
| 1455 | CHECK(it != compile_time_class_paths_.end()); |
| 1456 | return it->second; |
| 1457 | } |
| 1458 | |
Brian Carlstrom | 491ca9e | 2014-03-02 18:24:38 -0800 | [diff] [blame] | 1459 | void Runtime::SetCompileTimeClassPath(jobject class_loader, |
| 1460 | std::vector<const DexFile*>& class_path) { |
Elliott Hughes | b3bd5f0 | 2012-03-08 21:05:27 -0800 | [diff] [blame] | 1461 | CHECK(!IsStarted()); |
| 1462 | use_compile_time_class_path_ = true; |
Elliott Hughes | a0e1806 | 2012-04-13 15:59:59 -0700 | [diff] [blame] | 1463 | compile_time_class_paths_.Put(class_loader, class_path); |
Elliott Hughes | b3bd5f0 | 2012-03-08 21:05:27 -0800 | [diff] [blame] | 1464 | } |
| 1465 | |
Mathieu Chartier | c528dba | 2013-11-26 12:00:11 -0800 | [diff] [blame] | 1466 | void Runtime::AddMethodVerifier(verifier::MethodVerifier* verifier) { |
| 1467 | DCHECK(verifier != nullptr); |
Mathieu Chartier | 487c1c9 | 2014-12-15 19:26:29 -0800 | [diff] [blame] | 1468 | if (gAborting) { |
| 1469 | return; |
| 1470 | } |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 1471 | MutexLock mu(Thread::Current(), method_verifier_lock_); |
Mathieu Chartier | c528dba | 2013-11-26 12:00:11 -0800 | [diff] [blame] | 1472 | method_verifiers_.insert(verifier); |
| 1473 | } |
| 1474 | |
| 1475 | void Runtime::RemoveMethodVerifier(verifier::MethodVerifier* verifier) { |
| 1476 | DCHECK(verifier != nullptr); |
Mathieu Chartier | 487c1c9 | 2014-12-15 19:26:29 -0800 | [diff] [blame] | 1477 | if (gAborting) { |
| 1478 | return; |
| 1479 | } |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 1480 | MutexLock mu(Thread::Current(), method_verifier_lock_); |
Mathieu Chartier | c528dba | 2013-11-26 12:00:11 -0800 | [diff] [blame] | 1481 | auto it = method_verifiers_.find(verifier); |
| 1482 | CHECK(it != method_verifiers_.end()); |
| 1483 | method_verifiers_.erase(it); |
| 1484 | } |
| 1485 | |
Calin Juravle | c1b643c | 2014-05-30 23:44:11 +0100 | [diff] [blame] | 1486 | void Runtime::StartProfiler(const char* profile_output_filename) { |
| 1487 | profile_output_filename_ = profile_output_filename; |
| 1488 | profiler_started_ = |
| 1489 | BackgroundMethodSamplingProfiler::Start(profile_output_filename_, profiler_options_); |
Dave Allison | 0aded08 | 2013-11-07 13:15:11 -0800 | [diff] [blame] | 1490 | } |
Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 1491 | |
| 1492 | // Transaction support. |
Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 1493 | void Runtime::EnterTransactionMode(Transaction* transaction) { |
Nicolas Geoffray | a5ca888 | 2015-02-24 08:10:57 +0000 | [diff] [blame] | 1494 | DCHECK(IsCompiler()); |
Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 1495 | DCHECK(transaction != nullptr); |
| 1496 | DCHECK(!IsActiveTransaction()); |
Sebastien Hertz | ee1d79a | 2014-02-21 15:46:30 +0100 | [diff] [blame] | 1497 | preinitialization_transaction_ = transaction; |
Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 1498 | } |
| 1499 | |
| 1500 | void Runtime::ExitTransactionMode() { |
Nicolas Geoffray | a5ca888 | 2015-02-24 08:10:57 +0000 | [diff] [blame] | 1501 | DCHECK(IsCompiler()); |
Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 1502 | DCHECK(IsActiveTransaction()); |
Sebastien Hertz | ee1d79a | 2014-02-21 15:46:30 +0100 | [diff] [blame] | 1503 | preinitialization_transaction_ = nullptr; |
Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 1504 | } |
| 1505 | |
Sebastien Hertz | 1c80bec | 2015-02-03 11:58:06 +0100 | [diff] [blame] | 1506 | |
| 1507 | bool Runtime::IsTransactionAborted() const { |
| 1508 | if (!IsActiveTransaction()) { |
| 1509 | return false; |
| 1510 | } else { |
| 1511 | DCHECK(IsCompiler()); |
| 1512 | return preinitialization_transaction_->IsAborted(); |
| 1513 | } |
| 1514 | } |
| 1515 | |
| 1516 | void Runtime::AbortTransactionAndThrowInternalError(Thread* self, |
| 1517 | const std::string& abort_message) { |
| 1518 | DCHECK(IsCompiler()); |
| 1519 | DCHECK(IsActiveTransaction()); |
| 1520 | preinitialization_transaction_->Abort(abort_message); |
| 1521 | ThrowInternalErrorForAbortedTransaction(self); |
| 1522 | } |
| 1523 | |
| 1524 | void Runtime::ThrowInternalErrorForAbortedTransaction(Thread* self) { |
| 1525 | DCHECK(IsCompiler()); |
| 1526 | DCHECK(IsActiveTransaction()); |
| 1527 | DCHECK(IsTransactionAborted()); |
| 1528 | preinitialization_transaction_->ThrowInternalError(self); |
| 1529 | } |
| 1530 | |
Fred Shih | 37f05ef | 2014-07-16 18:38:08 -0700 | [diff] [blame] | 1531 | void Runtime::RecordWriteFieldBoolean(mirror::Object* obj, MemberOffset field_offset, |
| 1532 | uint8_t value, bool is_volatile) const { |
| 1533 | DCHECK(IsCompiler()); |
| 1534 | DCHECK(IsActiveTransaction()); |
| 1535 | preinitialization_transaction_->RecordWriteFieldBoolean(obj, field_offset, value, is_volatile); |
| 1536 | } |
| 1537 | |
| 1538 | void Runtime::RecordWriteFieldByte(mirror::Object* obj, MemberOffset field_offset, |
| 1539 | int8_t value, bool is_volatile) const { |
| 1540 | DCHECK(IsCompiler()); |
| 1541 | DCHECK(IsActiveTransaction()); |
| 1542 | preinitialization_transaction_->RecordWriteFieldByte(obj, field_offset, value, is_volatile); |
| 1543 | } |
| 1544 | |
| 1545 | void Runtime::RecordWriteFieldChar(mirror::Object* obj, MemberOffset field_offset, |
| 1546 | uint16_t value, bool is_volatile) const { |
| 1547 | DCHECK(IsCompiler()); |
| 1548 | DCHECK(IsActiveTransaction()); |
| 1549 | preinitialization_transaction_->RecordWriteFieldChar(obj, field_offset, value, is_volatile); |
| 1550 | } |
| 1551 | |
| 1552 | void Runtime::RecordWriteFieldShort(mirror::Object* obj, MemberOffset field_offset, |
| 1553 | int16_t value, bool is_volatile) const { |
| 1554 | DCHECK(IsCompiler()); |
| 1555 | DCHECK(IsActiveTransaction()); |
| 1556 | preinitialization_transaction_->RecordWriteFieldShort(obj, field_offset, value, is_volatile); |
| 1557 | } |
| 1558 | |
Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 1559 | void Runtime::RecordWriteField32(mirror::Object* obj, MemberOffset field_offset, |
| 1560 | uint32_t value, bool is_volatile) const { |
Nicolas Geoffray | a5ca888 | 2015-02-24 08:10:57 +0000 | [diff] [blame] | 1561 | DCHECK(IsCompiler()); |
Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 1562 | DCHECK(IsActiveTransaction()); |
Sebastien Hertz | ee1d79a | 2014-02-21 15:46:30 +0100 | [diff] [blame] | 1563 | preinitialization_transaction_->RecordWriteField32(obj, field_offset, value, is_volatile); |
Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 1564 | } |
| 1565 | |
| 1566 | void Runtime::RecordWriteField64(mirror::Object* obj, MemberOffset field_offset, |
| 1567 | uint64_t value, bool is_volatile) const { |
Nicolas Geoffray | a5ca888 | 2015-02-24 08:10:57 +0000 | [diff] [blame] | 1568 | DCHECK(IsCompiler()); |
Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 1569 | DCHECK(IsActiveTransaction()); |
Sebastien Hertz | ee1d79a | 2014-02-21 15:46:30 +0100 | [diff] [blame] | 1570 | preinitialization_transaction_->RecordWriteField64(obj, field_offset, value, is_volatile); |
Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 1571 | } |
| 1572 | |
| 1573 | void Runtime::RecordWriteFieldReference(mirror::Object* obj, MemberOffset field_offset, |
| 1574 | mirror::Object* value, bool is_volatile) const { |
Nicolas Geoffray | a5ca888 | 2015-02-24 08:10:57 +0000 | [diff] [blame] | 1575 | DCHECK(IsCompiler()); |
Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 1576 | DCHECK(IsActiveTransaction()); |
Sebastien Hertz | ee1d79a | 2014-02-21 15:46:30 +0100 | [diff] [blame] | 1577 | preinitialization_transaction_->RecordWriteFieldReference(obj, field_offset, value, is_volatile); |
Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 1578 | } |
| 1579 | |
| 1580 | void Runtime::RecordWriteArray(mirror::Array* array, size_t index, uint64_t value) const { |
Nicolas Geoffray | a5ca888 | 2015-02-24 08:10:57 +0000 | [diff] [blame] | 1581 | DCHECK(IsCompiler()); |
Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 1582 | DCHECK(IsActiveTransaction()); |
Sebastien Hertz | ee1d79a | 2014-02-21 15:46:30 +0100 | [diff] [blame] | 1583 | preinitialization_transaction_->RecordWriteArray(array, index, value); |
Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 1584 | } |
| 1585 | |
Mathieu Chartier | cdfd39f | 2014-08-29 18:16:58 -0700 | [diff] [blame] | 1586 | void Runtime::RecordStrongStringInsertion(mirror::String* s) const { |
Nicolas Geoffray | a5ca888 | 2015-02-24 08:10:57 +0000 | [diff] [blame] | 1587 | DCHECK(IsCompiler()); |
Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 1588 | DCHECK(IsActiveTransaction()); |
Mathieu Chartier | cdfd39f | 2014-08-29 18:16:58 -0700 | [diff] [blame] | 1589 | preinitialization_transaction_->RecordStrongStringInsertion(s); |
Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 1590 | } |
| 1591 | |
Mathieu Chartier | cdfd39f | 2014-08-29 18:16:58 -0700 | [diff] [blame] | 1592 | void Runtime::RecordWeakStringInsertion(mirror::String* s) const { |
Nicolas Geoffray | a5ca888 | 2015-02-24 08:10:57 +0000 | [diff] [blame] | 1593 | DCHECK(IsCompiler()); |
Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 1594 | DCHECK(IsActiveTransaction()); |
Mathieu Chartier | cdfd39f | 2014-08-29 18:16:58 -0700 | [diff] [blame] | 1595 | preinitialization_transaction_->RecordWeakStringInsertion(s); |
Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 1596 | } |
| 1597 | |
Mathieu Chartier | cdfd39f | 2014-08-29 18:16:58 -0700 | [diff] [blame] | 1598 | void Runtime::RecordStrongStringRemoval(mirror::String* s) const { |
Nicolas Geoffray | a5ca888 | 2015-02-24 08:10:57 +0000 | [diff] [blame] | 1599 | DCHECK(IsCompiler()); |
Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 1600 | DCHECK(IsActiveTransaction()); |
Mathieu Chartier | cdfd39f | 2014-08-29 18:16:58 -0700 | [diff] [blame] | 1601 | preinitialization_transaction_->RecordStrongStringRemoval(s); |
Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 1602 | } |
| 1603 | |
Mathieu Chartier | cdfd39f | 2014-08-29 18:16:58 -0700 | [diff] [blame] | 1604 | void Runtime::RecordWeakStringRemoval(mirror::String* s) const { |
Nicolas Geoffray | a5ca888 | 2015-02-24 08:10:57 +0000 | [diff] [blame] | 1605 | DCHECK(IsCompiler()); |
Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 1606 | DCHECK(IsActiveTransaction()); |
Mathieu Chartier | cdfd39f | 2014-08-29 18:16:58 -0700 | [diff] [blame] | 1607 | preinitialization_transaction_->RecordWeakStringRemoval(s); |
Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 1608 | } |
Mathieu Chartier | 15d3402 | 2014-02-26 17:16:38 -0800 | [diff] [blame] | 1609 | |
| 1610 | void Runtime::SetFaultMessage(const std::string& message) { |
| 1611 | MutexLock mu(Thread::Current(), fault_message_lock_); |
| 1612 | fault_message_ = message; |
| 1613 | } |
Brian Carlstrom | 491ca9e | 2014-03-02 18:24:38 -0800 | [diff] [blame] | 1614 | |
Ian Rogers | 8afeb85 | 2014-04-02 14:55:49 -0700 | [diff] [blame] | 1615 | void Runtime::AddCurrentRuntimeFeaturesAsDex2OatArguments(std::vector<std::string>* argv) |
| 1616 | const { |
Ian Rogers | 9bc5440 | 2014-04-17 16:40:01 -0700 | [diff] [blame] | 1617 | if (GetInstrumentation()->InterpretOnly()) { |
| 1618 | argv->push_back("--compiler-filter=interpret-only"); |
| 1619 | } |
| 1620 | |
Ian Rogers | 8afeb85 | 2014-04-02 14:55:49 -0700 | [diff] [blame] | 1621 | // Make the dex2oat instruction set match that of the launching runtime. If we have multiple |
| 1622 | // architecture support, dex2oat may be compiled as a different instruction-set than that |
| 1623 | // currently being executed. |
Ian Rogers | b9beb2e | 2014-05-09 16:57:40 -0700 | [diff] [blame] | 1624 | std::string instruction_set("--instruction-set="); |
| 1625 | instruction_set += GetInstructionSetString(kRuntimeISA); |
| 1626 | argv->push_back(instruction_set); |
Ian Rogers | 8afeb85 | 2014-04-02 14:55:49 -0700 | [diff] [blame] | 1627 | |
Ian Rogers | 6f3dbba | 2014-10-14 17:41:57 -0700 | [diff] [blame] | 1628 | std::unique_ptr<const InstructionSetFeatures> features(InstructionSetFeatures::FromCppDefines()); |
| 1629 | std::string feature_string("--instruction-set-features="); |
| 1630 | feature_string += features->GetFeatureString(); |
| 1631 | argv->push_back(feature_string); |
Ian Rogers | 8afeb85 | 2014-04-02 14:55:49 -0700 | [diff] [blame] | 1632 | } |
| 1633 | |
Dave Allison | 39c3bfb | 2014-01-28 18:33:52 -0800 | [diff] [blame] | 1634 | void Runtime::UpdateProfilerState(int state) { |
Brian Carlstrom | 4d466a8 | 2014-05-08 19:05:29 -0700 | [diff] [blame] | 1635 | VLOG(profiler) << "Profiler state updated to " << state; |
Dave Allison | 39c3bfb | 2014-01-28 18:33:52 -0800 | [diff] [blame] | 1636 | } |
Carl Shapiro | 1fb8620 | 2011-06-27 17:43:13 -0700 | [diff] [blame] | 1637 | } // namespace art |