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> |
Ian Rogers | 700a402 | 2014-05-19 16:49:03 -0700 | [diff] [blame] | 32 | #include <memory> |
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 | |
Vladimir Marko | 7624d25 | 2014-05-02 14:40:15 +0100 | [diff] [blame] | 36 | #include "arch/arm/quick_method_frame_info_arm.h" |
Ian Rogers | 166db04 | 2013-07-26 12:05:57 -0700 | [diff] [blame] | 37 | #include "arch/arm/registers_arm.h" |
Vladimir Marko | 7624d25 | 2014-05-02 14:40:15 +0100 | [diff] [blame] | 38 | #include "arch/arm64/quick_method_frame_info_arm64.h" |
Stuart Monteith | b95a534 | 2014-03-12 13:32:32 +0000 | [diff] [blame] | 39 | #include "arch/arm64/registers_arm64.h" |
Vladimir Marko | 7624d25 | 2014-05-02 14:40:15 +0100 | [diff] [blame] | 40 | #include "arch/mips/quick_method_frame_info_mips.h" |
Ian Rogers | 166db04 | 2013-07-26 12:05:57 -0700 | [diff] [blame] | 41 | #include "arch/mips/registers_mips.h" |
Vladimir Marko | 7624d25 | 2014-05-02 14:40:15 +0100 | [diff] [blame] | 42 | #include "arch/x86/quick_method_frame_info_x86.h" |
Ian Rogers | 166db04 | 2013-07-26 12:05:57 -0700 | [diff] [blame] | 43 | #include "arch/x86/registers_x86.h" |
Vladimir Marko | 7624d25 | 2014-05-02 14:40:15 +0100 | [diff] [blame] | 44 | #include "arch/x86_64/quick_method_frame_info_x86_64.h" |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 45 | #include "arch/x86_64/registers_x86_64.h" |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 46 | #include "atomic.h" |
Brian Carlstrom | 578bbdc | 2011-07-21 14:07:47 -0700 | [diff] [blame] | 47 | #include "class_linker.h" |
Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 48 | #include "debugger.h" |
Alex Light | fb77759 | 2014-08-22 17:49:35 -0700 | [diff] [blame^] | 49 | #include "elf_file.h" |
Ian Rogers | 576ca0c | 2014-06-06 15:58:22 -0700 | [diff] [blame] | 50 | #include "fault_handler.h" |
Ian Rogers | 1d54e73 | 2013-05-02 21:10:01 -0700 | [diff] [blame] | 51 | #include "gc/accounting/card_table-inl.h" |
| 52 | #include "gc/heap.h" |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 53 | #include "gc/space/image_space.h" |
Ian Rogers | 1d54e73 | 2013-05-02 21:10:01 -0700 | [diff] [blame] | 54 | #include "gc/space/space.h" |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 55 | #include "image.h" |
jeffhao | 725a957 | 2012-11-13 18:20:12 -0800 | [diff] [blame] | 56 | #include "instrumentation.h" |
Elliott Hughes | cf4c6c4 | 2011-09-01 15:16:42 -0700 | [diff] [blame] | 57 | #include "intern_table.h" |
Elliott Hughes | c5f7c91 | 2011-08-18 14:00:42 -0700 | [diff] [blame] | 58 | #include "jni_internal.h" |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 59 | #include "mirror/art_field-inl.h" |
| 60 | #include "mirror/art_method-inl.h" |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 61 | #include "mirror/array.h" |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 62 | #include "mirror/class-inl.h" |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 63 | #include "mirror/class_loader.h" |
Mathieu Chartier | c528dba | 2013-11-26 12:00:11 -0800 | [diff] [blame] | 64 | #include "mirror/stack_trace_element.h" |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 65 | #include "mirror/throwable.h" |
Elliott Hughes | 32d6e1e | 2011-10-11 14:47:44 -0700 | [diff] [blame] | 66 | #include "monitor.h" |
Calin Juravle | 93de427 | 2014-08-12 20:55:20 +0100 | [diff] [blame] | 67 | #include "native_bridge_art_interface.h" |
Brian Carlstrom | 491ca9e | 2014-03-02 18:24:38 -0800 | [diff] [blame] | 68 | #include "parsed_options.h" |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 69 | #include "oat_file.h" |
Alex Light | fb77759 | 2014-08-22 17:49:35 -0700 | [diff] [blame^] | 70 | #include "os.h" |
Vladimir Marko | 7624d25 | 2014-05-02 14:40:15 +0100 | [diff] [blame] | 71 | #include "quick/quick_method_frame_info.h" |
Ian Rogers | 53b8b09 | 2014-03-13 23:45:53 -0700 | [diff] [blame] | 72 | #include "reflection.h" |
Elliott Hughes | 726079d | 2011-10-07 18:43:44 -0700 | [diff] [blame] | 73 | #include "ScopedLocalRef.h" |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 74 | #include "scoped_thread_state_change.h" |
Elliott Hughes | e27955c | 2011-08-26 15:21:24 -0700 | [diff] [blame] | 75 | #include "signal_catcher.h" |
Elliott Hughes | 457005c | 2012-04-16 13:54:25 -0700 | [diff] [blame] | 76 | #include "signal_set.h" |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 77 | #include "handle_scope-inl.h" |
Brian Carlstrom | 578bbdc | 2011-07-21 14:07:47 -0700 | [diff] [blame] | 78 | #include "thread.h" |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 79 | #include "thread_list.h" |
jeffhao | b5e8185 | 2012-03-12 11:15:45 -0700 | [diff] [blame] | 80 | #include "trace.h" |
Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 81 | #include "transaction.h" |
Dave Allison | 0aded08 | 2013-11-07 13:15:11 -0800 | [diff] [blame] | 82 | #include "profiler.h" |
Ian Rogers | 776ac1f | 2012-04-13 23:36:36 -0700 | [diff] [blame] | 83 | #include "verifier/method_verifier.h" |
Elliott Hughes | eac7667 | 2012-05-24 21:56:51 -0700 | [diff] [blame] | 84 | #include "well_known_classes.h" |
Carl Shapiro | 61e019d | 2011-07-14 16:53:09 -0700 | [diff] [blame] | 85 | |
Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 86 | #include "JniConstants.h" // Last to avoid LOG redefinition in ics-mr1-plus-art. |
Elliott Hughes | 90a3369 | 2011-08-30 13:27:07 -0700 | [diff] [blame] | 87 | |
Dave Allison | 39c3bfb | 2014-01-28 18:33:52 -0800 | [diff] [blame] | 88 | #ifdef HAVE_ANDROID_OS |
| 89 | #include "cutils/properties.h" |
| 90 | #endif |
| 91 | |
Carl Shapiro | 1fb8620 | 2011-06-27 17:43:13 -0700 | [diff] [blame] | 92 | namespace art { |
| 93 | |
Mathieu Chartier | c751fdc | 2014-03-30 15:25:44 -0700 | [diff] [blame] | 94 | static constexpr bool kEnableJavaStackTraceHandler = true; |
Ian Rogers | 8afeb85 | 2014-04-02 14:55:49 -0700 | [diff] [blame] | 95 | const char* Runtime::kDefaultInstructionSetFeatures = |
| 96 | STRINGIFY(ART_DEFAULT_INSTRUCTION_SET_FEATURES); |
Carl Shapiro | 2ed144c | 2011-07-26 16:52:08 -0700 | [diff] [blame] | 97 | Runtime* Runtime::instance_ = NULL; |
| 98 | |
Elliott Hughes | dcc2474 | 2011-09-07 14:02:44 -0700 | [diff] [blame] | 99 | Runtime::Runtime() |
Hiroshi Yamauchi | 94f7b49 | 2014-07-22 18:08:23 -0700 | [diff] [blame] | 100 | : instruction_set_(kNone), |
Ian Rogers | 6ed19fd | 2014-03-20 08:10:17 -0700 | [diff] [blame] | 101 | compiler_callbacks_(nullptr), |
Elliott Hughes | d9c67be | 2012-02-02 19:54:06 -0800 | [diff] [blame] | 102 | is_zygote_(false), |
Alex Light | a59dd80 | 2014-07-02 16:28:08 -0700 | [diff] [blame] | 103 | must_relocate_(false), |
Mathieu Chartier | 069387a | 2012-06-18 12:01:01 -0700 | [diff] [blame] | 104 | is_concurrent_gc_enabled_(true), |
Anwar Ghuloum | 8718359 | 2013-08-14 12:12:19 -0700 | [diff] [blame] | 105 | is_explicit_gc_disabled_(false), |
Nicolas Geoffray | 9c29001 | 2014-07-22 10:48:00 +0100 | [diff] [blame] | 106 | dex2oat_enabled_(true), |
Alex Light | 507e618 | 2014-08-19 14:23:13 -0700 | [diff] [blame] | 107 | image_dex2oat_enabled_(true), |
Elliott Hughes | 6cf2388 | 2012-06-15 15:42:07 -0700 | [diff] [blame] | 108 | default_stack_size_(0), |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 109 | heap_(nullptr), |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 110 | max_spins_before_thin_lock_inflation_(Monitor::kDefaultMaxSpinsBeforeThinLockInflation), |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 111 | monitor_list_(nullptr), |
| 112 | monitor_pool_(nullptr), |
| 113 | thread_list_(nullptr), |
| 114 | intern_table_(nullptr), |
| 115 | class_linker_(nullptr), |
| 116 | signal_catcher_(nullptr), |
| 117 | java_vm_(nullptr), |
Mathieu Chartier | 15d3402 | 2014-02-26 17:16:38 -0800 | [diff] [blame] | 118 | fault_message_lock_("Fault message lock"), |
| 119 | fault_message_(""), |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 120 | method_verifier_lock_("Method verifiers lock"), |
Ian Rogers | 120f1c7 | 2012-09-28 17:17:10 -0700 | [diff] [blame] | 121 | threads_being_born_(0), |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 122 | shutdown_cond_(new ConditionVariable("Runtime shutdown", *Locks::runtime_shutdown_lock_)), |
Elliott Hughes | 6b35575 | 2012-01-13 16:49:08 -0800 | [diff] [blame] | 123 | shutting_down_(false), |
Ian Rogers | 120f1c7 | 2012-09-28 17:17:10 -0700 | [diff] [blame] | 124 | shutting_down_started_(false), |
Elliott Hughes | dcc2474 | 2011-09-07 14:02:44 -0700 | [diff] [blame] | 125 | started_(false), |
Mathieu Chartier | 7664f5c | 2012-06-08 18:15:32 -0700 | [diff] [blame] | 126 | finished_starting_(false), |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 127 | vfprintf_(nullptr), |
| 128 | exit_(nullptr), |
| 129 | abort_(nullptr), |
jeffhao | 2692b57 | 2011-12-16 15:42:28 -0800 | [diff] [blame] | 130 | stats_enabled_(false), |
Mathieu Chartier | da44d77 | 2014-04-01 15:01:46 -0700 | [diff] [blame] | 131 | running_on_valgrind_(RUNNING_ON_VALGRIND > 0), |
Calin Juravle | c1b643c | 2014-05-30 23:44:11 +0100 | [diff] [blame] | 132 | profiler_started_(false), |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 133 | method_trace_(false), |
Ian Rogers | 776ac1f | 2012-04-13 23:36:36 -0700 | [diff] [blame] | 134 | method_trace_file_size_(0), |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 135 | instrumentation_(), |
Ian Rogers | 365c102 | 2012-06-22 15:05:28 -0700 | [diff] [blame] | 136 | use_compile_time_class_path_(false), |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 137 | main_thread_group_(nullptr), |
| 138 | system_thread_group_(nullptr), |
| 139 | system_class_loader_(nullptr), |
Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 140 | dump_gc_performance_on_shutdown_(false), |
Sebastien Hertz | ee1d79a | 2014-02-21 15:46:30 +0100 | [diff] [blame] | 141 | preinitialization_transaction_(nullptr), |
Dave Allison | b373e09 | 2014-02-20 16:06:36 -0800 | [diff] [blame] | 142 | null_pointer_handler_(nullptr), |
| 143 | suspend_handler_(nullptr), |
Jeff Hao | 4a200f5 | 2014-04-01 14:58:49 -0700 | [diff] [blame] | 144 | stack_overflow_handler_(nullptr), |
Jeff Hao | f00571c | 2014-05-29 17:29:47 -0700 | [diff] [blame] | 145 | verify_(false), |
Dave Allison | 69dfe51 | 2014-07-11 17:11:58 +0000 | [diff] [blame] | 146 | target_sdk_version_(0), |
| 147 | implicit_null_checks_(false), |
| 148 | implicit_so_checks_(false), |
Calin Juravle | 93de427 | 2014-08-12 20:55:20 +0100 | [diff] [blame] | 149 | implicit_suspend_checks_(false), |
| 150 | native_bridge_art_callbacks_({GetMethodShorty, GetNativeMethodCount, GetNativeMethods}) { |
Elliott Hughes | dcc2474 | 2011-09-07 14:02:44 -0700 | [diff] [blame] | 151 | } |
| 152 | |
Carl Shapiro | 61e019d | 2011-07-14 16:53:09 -0700 | [diff] [blame] | 153 | Runtime::~Runtime() { |
Hiroshi Yamauchi | 2e899a9 | 2013-11-22 16:50:12 -0800 | [diff] [blame] | 154 | if (dump_gc_performance_on_shutdown_) { |
| 155 | // This can't be called from the Heap destructor below because it |
| 156 | // could call RosAlloc::InspectAll() which needs the thread_list |
| 157 | // to be still alive. |
| 158 | heap_->DumpGcPerformanceInfo(LOG(INFO)); |
| 159 | } |
| 160 | |
Ian Rogers | 120f1c7 | 2012-09-28 17:17:10 -0700 | [diff] [blame] | 161 | Thread* self = Thread::Current(); |
| 162 | { |
| 163 | MutexLock mu(self, *Locks::runtime_shutdown_lock_); |
| 164 | shutting_down_started_ = true; |
| 165 | while (threads_being_born_ > 0) { |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 166 | shutdown_cond_->Wait(self); |
Ian Rogers | 120f1c7 | 2012-09-28 17:17:10 -0700 | [diff] [blame] | 167 | } |
| 168 | shutting_down_ = true; |
| 169 | } |
Wei Jin | 6a58691 | 2014-05-21 16:07:40 -0700 | [diff] [blame] | 170 | // Shut down background profiler before the runtime exits. |
Calin Juravle | c1b643c | 2014-05-30 23:44:11 +0100 | [diff] [blame] | 171 | if (profiler_started_) { |
Wei Jin | 6a58691 | 2014-05-21 16:07:40 -0700 | [diff] [blame] | 172 | BackgroundMethodSamplingProfiler::Shutdown(); |
| 173 | } |
| 174 | |
Dave Allison | e8b9afc | 2014-08-20 17:38:41 -0700 | [diff] [blame] | 175 | // Shutdown the fault manager if it was initialized. |
| 176 | fault_manager.Shutdown(); |
| 177 | |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 178 | Trace::Shutdown(); |
jeffhao | b5e8185 | 2012-03-12 11:15:45 -0700 | [diff] [blame] | 179 | |
Mathieu Chartier | a639903 | 2012-06-11 18:49:50 -0700 | [diff] [blame] | 180 | // Make sure to let the GC complete if it is running. |
Mathieu Chartier | 89a201e | 2014-05-02 10:27:26 -0700 | [diff] [blame] | 181 | heap_->WaitForGcToComplete(gc::kGcCauseBackground, self); |
Mathieu Chartier | 35883cc | 2012-11-13 14:08:12 -0800 | [diff] [blame] | 182 | heap_->DeleteThreadPool(); |
Mathieu Chartier | a639903 | 2012-06-11 18:49:50 -0700 | [diff] [blame] | 183 | |
Elliott Hughes | 5fe594f | 2011-09-08 12:33:17 -0700 | [diff] [blame] | 184 | // 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] | 185 | Dbg::StopJdwp(); |
Elliott Hughes | 5fe594f | 2011-09-08 12:33:17 -0700 | [diff] [blame] | 186 | delete signal_catcher_; |
| 187 | |
Elliott Hughes | 038a806 | 2011-09-18 14:12:41 -0700 | [diff] [blame] | 188 | // 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] | 189 | delete thread_list_; |
Elliott Hughes | c33a32b | 2011-10-11 18:18:07 -0700 | [diff] [blame] | 190 | delete monitor_list_; |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 191 | delete monitor_pool_; |
Carl Shapiro | 61e019d | 2011-07-14 16:53:09 -0700 | [diff] [blame] | 192 | delete class_linker_; |
Elliott Hughes | b3bd5f0 | 2012-03-08 21:05:27 -0800 | [diff] [blame] | 193 | delete heap_; |
Elliott Hughes | cf4c6c4 | 2011-09-01 15:16:42 -0700 | [diff] [blame] | 194 | delete intern_table_; |
Elliott Hughes | c5f7c91 | 2011-08-18 14:00:42 -0700 | [diff] [blame] | 195 | delete java_vm_; |
Elliott Hughes | c1674ed | 2011-08-25 18:09:09 -0700 | [diff] [blame] | 196 | Thread::Shutdown(); |
Elliott Hughes | 7c6169d | 2012-05-02 16:11:48 -0700 | [diff] [blame] | 197 | QuasiAtomic::Shutdown(); |
Sebastien Hertz | 4d4adb1 | 2013-07-24 16:14:19 +0200 | [diff] [blame] | 198 | verifier::MethodVerifier::Shutdown(); |
Carl Shapiro | 4acf464 | 2011-07-26 18:54:13 -0700 | [diff] [blame] | 199 | // TODO: acquire a static mutex on Runtime to avoid racing. |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 200 | CHECK(instance_ == nullptr || instance_ == this); |
| 201 | instance_ = nullptr; |
Dave Allison | b373e09 | 2014-02-20 16:06:36 -0800 | [diff] [blame] | 202 | |
| 203 | delete null_pointer_handler_; |
| 204 | delete suspend_handler_; |
| 205 | delete stack_overflow_handler_; |
Carl Shapiro | 61e019d | 2011-07-14 16:53:09 -0700 | [diff] [blame] | 206 | } |
| 207 | |
Elliott Hughes | e091855 | 2011-10-28 17:18:29 -0700 | [diff] [blame] | 208 | struct AbortState { |
Mathieu Chartier | c7a966d | 2014-04-10 18:06:32 -0700 | [diff] [blame] | 209 | void Dump(std::ostream& os) NO_THREAD_SAFETY_ANALYSIS { |
Ian Rogers | f08e473 | 2013-04-09 09:45:49 -0700 | [diff] [blame] | 210 | if (gAborting > 1) { |
Elliott Hughes | cac6cc7 | 2011-11-03 20:31:21 -0700 | [diff] [blame] | 211 | os << "Runtime aborting --- recursively, so no thread-specific detail!\n"; |
| 212 | return; |
| 213 | } |
Ian Rogers | f08e473 | 2013-04-09 09:45:49 -0700 | [diff] [blame] | 214 | gAborting++; |
Elliott Hughes | e091855 | 2011-10-28 17:18:29 -0700 | [diff] [blame] | 215 | os << "Runtime aborting...\n"; |
Elliott Hughes | 6c7d244 | 2012-02-01 18:40:47 -0800 | [diff] [blame] | 216 | if (Runtime::Current() == NULL) { |
| 217 | os << "(Runtime does not yet exist!)\n"; |
| 218 | return; |
| 219 | } |
Elliott Hughes | e091855 | 2011-10-28 17:18:29 -0700 | [diff] [blame] | 220 | Thread* self = Thread::Current(); |
Mathieu Chartier | c7a966d | 2014-04-10 18:06:32 -0700 | [diff] [blame] | 221 | if (self == nullptr) { |
Elliott Hughes | e091855 | 2011-10-28 17:18:29 -0700 | [diff] [blame] | 222 | os << "(Aborting thread was not attached to runtime!)\n"; |
Ian Rogers | 37eecbd | 2014-05-11 02:08:15 -0700 | [diff] [blame] | 223 | DumpKernelStack(os, GetTid(), " kernel: ", false); |
| 224 | DumpNativeStack(os, GetTid(), " native: ", nullptr); |
Elliott Hughes | e091855 | 2011-10-28 17:18:29 -0700 | [diff] [blame] | 225 | } else { |
Ian Rogers | 2f7f9b6 | 2012-10-10 18:24:05 -0700 | [diff] [blame] | 226 | os << "Aborting thread:\n"; |
Mathieu Chartier | c7a966d | 2014-04-10 18:06:32 -0700 | [diff] [blame] | 227 | if (Locks::mutator_lock_->IsExclusiveHeld(self) || Locks::mutator_lock_->IsSharedHeld(self)) { |
| 228 | DumpThread(os, self); |
| 229 | } else { |
| 230 | if (Locks::mutator_lock_->SharedTryLock(self)) { |
| 231 | DumpThread(os, self); |
| 232 | Locks::mutator_lock_->SharedUnlock(self); |
| 233 | } |
Elliott Hughes | 899e789 | 2012-01-24 14:57:32 -0800 | [diff] [blame] | 234 | } |
Elliott Hughes | e091855 | 2011-10-28 17:18:29 -0700 | [diff] [blame] | 235 | } |
Ian Rogers | 2f7f9b6 | 2012-10-10 18:24:05 -0700 | [diff] [blame] | 236 | DumpAllThreads(os, self); |
| 237 | } |
| 238 | |
Mathieu Chartier | c7a966d | 2014-04-10 18:06:32 -0700 | [diff] [blame] | 239 | void DumpThread(std::ostream& os, Thread* self) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
| 240 | self->Dump(os); |
| 241 | if (self->IsExceptionPending()) { |
| 242 | ThrowLocation throw_location; |
| 243 | mirror::Throwable* exception = self->GetException(&throw_location); |
| 244 | os << "Pending exception " << PrettyTypeOf(exception) |
| 245 | << " thrown by '" << throw_location.Dump() << "'\n" |
| 246 | << exception->Dump(); |
| 247 | } |
| 248 | } |
| 249 | |
Ian Rogers | 2f7f9b6 | 2012-10-10 18:24:05 -0700 | [diff] [blame] | 250 | void DumpAllThreads(std::ostream& os, Thread* self) NO_THREAD_SAFETY_ANALYSIS { |
Ian Rogers | 4e14e72 | 2014-06-27 17:32:56 -0700 | [diff] [blame] | 251 | Runtime* runtime = Runtime::Current(); |
| 252 | if (runtime != nullptr) { |
| 253 | ThreadList* thread_list = runtime->GetThreadList(); |
| 254 | if (thread_list != nullptr) { |
| 255 | bool tll_already_held = Locks::thread_list_lock_->IsExclusiveHeld(self); |
| 256 | bool ml_already_held = Locks::mutator_lock_->IsSharedHeld(self); |
| 257 | if (!tll_already_held || !ml_already_held) { |
| 258 | os << "Dumping all threads without appropriate locks held:" |
| 259 | << (!tll_already_held ? " thread list lock" : "") |
| 260 | << (!ml_already_held ? " mutator lock" : "") |
| 261 | << "\n"; |
| 262 | } |
| 263 | os << "All threads:\n"; |
| 264 | thread_list->DumpLocked(os); |
| 265 | } |
Ian Rogers | 2f7f9b6 | 2012-10-10 18:24:05 -0700 | [diff] [blame] | 266 | } |
Elliott Hughes | e091855 | 2011-10-28 17:18:29 -0700 | [diff] [blame] | 267 | } |
| 268 | }; |
| 269 | |
Elliott Hughes | 8593fdb | 2012-04-21 20:53:44 -0700 | [diff] [blame] | 270 | void Runtime::Abort() { |
Ian Rogers | f08e473 | 2013-04-09 09:45:49 -0700 | [diff] [blame] | 271 | gAborting++; // set before taking any locks |
Brian Carlstrom | 81b8871 | 2012-11-05 19:21:30 -0800 | [diff] [blame] | 272 | |
Elliott Hughes | 131aef8 | 2012-01-27 11:53:35 -0800 | [diff] [blame] | 273 | // Ensure that we don't have multiple threads trying to abort at once, |
| 274 | // which would result in significantly worse diagnostics. |
Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 275 | MutexLock mu(Thread::Current(), *Locks::abort_lock_); |
Elliott Hughes | 131aef8 | 2012-01-27 11:53:35 -0800 | [diff] [blame] | 276 | |
Elliott Hughes | ffe6736 | 2011-07-17 12:09:27 -0700 | [diff] [blame] | 277 | // Get any pending output out of the way. |
| 278 | fflush(NULL); |
| 279 | |
| 280 | // Many people have difficulty distinguish aborts from crashes, |
| 281 | // so be explicit. |
Elliott Hughes | e091855 | 2011-10-28 17:18:29 -0700 | [diff] [blame] | 282 | AbortState state; |
Elliott Hughes | 9ee5f9c | 2012-02-03 18:33:16 -0800 | [diff] [blame] | 283 | LOG(INTERNAL_FATAL) << Dumpable<AbortState>(state); |
Elliott Hughes | ffe6736 | 2011-07-17 12:09:27 -0700 | [diff] [blame] | 284 | |
Elliott Hughes | 8593fdb | 2012-04-21 20:53:44 -0700 | [diff] [blame] | 285 | // Call the abort hook if we have one. |
Brian Carlstrom | 6ea095a | 2011-08-16 15:26:54 -0700 | [diff] [blame] | 286 | if (Runtime::Current() != NULL && Runtime::Current()->abort_ != NULL) { |
Elliott Hughes | 6c1c69e | 2012-04-23 16:12:51 -0700 | [diff] [blame] | 287 | LOG(INTERNAL_FATAL) << "Calling abort hook..."; |
Brian Carlstrom | 6ea095a | 2011-08-16 15:26:54 -0700 | [diff] [blame] | 288 | Runtime::Current()->abort_(); |
| 289 | // notreached |
Elliott Hughes | 6c1c69e | 2012-04-23 16:12:51 -0700 | [diff] [blame] | 290 | LOG(INTERNAL_FATAL) << "Unexpectedly returned from abort hook!"; |
Brian Carlstrom | 6ea095a | 2011-08-16 15:26:54 -0700 | [diff] [blame] | 291 | } |
| 292 | |
Elliott Hughes | dd623db | 2013-06-11 11:20:23 -0700 | [diff] [blame] | 293 | #if defined(__GLIBC__) |
Elliott Hughes | d06a6c7 | 2012-05-30 17:59:06 -0700 | [diff] [blame] | 294 | // TODO: we ought to be able to use pthread_kill(3) here (or abort(3), |
| 295 | // which POSIX defines in terms of raise(3), which POSIX defines in terms |
| 296 | // of pthread_kill(3)). On Linux, though, libcorkscrew can't unwind through |
| 297 | // libpthread, which means the stacks we dump would be useless. Calling |
| 298 | // tgkill(2) directly avoids that. |
| 299 | syscall(__NR_tgkill, getpid(), GetTid(), SIGABRT); |
Elliott Hughes | dd623db | 2013-06-11 11:20:23 -0700 | [diff] [blame] | 300 | // TODO: LLVM installs it's own SIGABRT handler so exit to be safe... Can we disable that in LLVM? |
| 301 | // 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] | 302 | exit(1); |
Elliott Hughes | dd623db | 2013-06-11 11:20:23 -0700 | [diff] [blame] | 303 | #else |
| 304 | abort(); |
Elliott Hughes | d06a6c7 | 2012-05-30 17:59:06 -0700 | [diff] [blame] | 305 | #endif |
Elliott Hughes | ffe6736 | 2011-07-17 12:09:27 -0700 | [diff] [blame] | 306 | // notreached |
| 307 | } |
| 308 | |
Narayan Kamath | 3de95a7 | 2014-04-02 12:54:23 +0100 | [diff] [blame] | 309 | void Runtime::PreZygoteFork() { |
Mathieu Chartier | cc236d7 | 2012-07-20 10:29:05 -0700 | [diff] [blame] | 310 | heap_->PreZygoteFork(); |
Mathieu Chartier | cc236d7 | 2012-07-20 10:29:05 -0700 | [diff] [blame] | 311 | } |
| 312 | |
Elliott Hughes | bf86d04 | 2011-08-31 17:53:14 -0700 | [diff] [blame] | 313 | void Runtime::CallExitHook(jint status) { |
| 314 | if (exit_ != NULL) { |
Elliott Hughes | 34e0696 | 2012-04-09 13:55:55 -0700 | [diff] [blame] | 315 | ScopedThreadStateChange tsc(Thread::Current(), kNative); |
Elliott Hughes | bf86d04 | 2011-08-31 17:53:14 -0700 | [diff] [blame] | 316 | exit_(status); |
| 317 | LOG(WARNING) << "Exit hook returned instead of exiting!"; |
| 318 | } |
| 319 | } |
| 320 | |
Mathieu Chartier | 83c8ee0 | 2014-01-28 14:50:23 -0800 | [diff] [blame] | 321 | void Runtime::SweepSystemWeaks(IsMarkedCallback* visitor, void* arg) { |
Mathieu Chartier | 6aa3df9 | 2013-09-17 15:17:28 -0700 | [diff] [blame] | 322 | GetInternTable()->SweepInternTableWeaks(visitor, arg); |
| 323 | GetMonitorList()->SweepMonitorList(visitor, arg); |
| 324 | GetJavaVM()->SweepJniWeakGlobals(visitor, arg); |
| 325 | } |
| 326 | |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 327 | bool Runtime::Create(const RuntimeOptions& options, bool ignore_unrecognized) { |
Carl Shapiro | 2ed144c | 2011-07-26 16:52:08 -0700 | [diff] [blame] | 328 | // TODO: acquire a static mutex on Runtime to avoid racing. |
| 329 | if (Runtime::instance_ != NULL) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 330 | return false; |
Carl Shapiro | 2ed144c | 2011-07-26 16:52:08 -0700 | [diff] [blame] | 331 | } |
Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 332 | InitLogging(NULL); // Calls Locks::Init() as a side effect. |
Elliott Hughes | dcc2474 | 2011-09-07 14:02:44 -0700 | [diff] [blame] | 333 | instance_ = new Runtime; |
| 334 | if (!instance_->Init(options, ignore_unrecognized)) { |
| 335 | delete instance_; |
| 336 | instance_ = NULL; |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 337 | return false; |
Carl Shapiro | 61e019d | 2011-07-14 16:53:09 -0700 | [diff] [blame] | 338 | } |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 339 | return true; |
Brian Carlstrom | 69b15fb | 2011-09-03 12:25:21 -0700 | [diff] [blame] | 340 | } |
Elliott Hughes | 0af5543 | 2011-08-17 18:37:28 -0700 | [diff] [blame] | 341 | |
Brian Carlstrom | ce88853 | 2013-10-10 00:32:58 -0700 | [diff] [blame] | 342 | jobject CreateSystemClassLoader() { |
Elliott Hughes | b3bd5f0 | 2012-03-08 21:05:27 -0800 | [diff] [blame] | 343 | if (Runtime::Current()->UseCompileTimeClassPath()) { |
Brian Carlstrom | ce88853 | 2013-10-10 00:32:58 -0700 | [diff] [blame] | 344 | return NULL; |
Brian Carlstrom | aded5f7 | 2011-10-07 17:15:04 -0700 | [diff] [blame] | 345 | } |
| 346 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 347 | ScopedObjectAccess soa(Thread::Current()); |
Mathieu Chartier | c528dba | 2013-11-26 12:00:11 -0800 | [diff] [blame] | 348 | ClassLinker* cl = Runtime::Current()->GetClassLinker(); |
Brian Carlstrom | aded5f7 | 2011-10-07 17:15:04 -0700 | [diff] [blame] | 349 | |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 350 | StackHandleScope<3> hs(soa.Self()); |
| 351 | Handle<mirror::Class> class_loader_class( |
| 352 | hs.NewHandle(soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_ClassLoader))); |
Mathieu Chartier | c528dba | 2013-11-26 12:00:11 -0800 | [diff] [blame] | 353 | CHECK(cl->EnsureInitialized(class_loader_class, true, true)); |
Brian Carlstrom | aded5f7 | 2011-10-07 17:15:04 -0700 | [diff] [blame] | 354 | |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 355 | mirror::ArtMethod* getSystemClassLoader = |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 356 | class_loader_class->FindDirectMethod("getSystemClassLoader", "()Ljava/lang/ClassLoader;"); |
Brian Carlstrom | df14324 | 2011-10-10 18:05:34 -0700 | [diff] [blame] | 357 | CHECK(getSystemClassLoader != NULL); |
Brian Carlstrom | aded5f7 | 2011-10-07 17:15:04 -0700 | [diff] [blame] | 358 | |
Ian Rogers | 53b8b09 | 2014-03-13 23:45:53 -0700 | [diff] [blame] | 359 | JValue result = InvokeWithJValues(soa, nullptr, soa.EncodeMethod(getSystemClassLoader), nullptr); |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 360 | Handle<mirror::ClassLoader> class_loader( |
| 361 | hs.NewHandle(down_cast<mirror::ClassLoader*>(result.GetL()))); |
| 362 | CHECK(class_loader.Get() != nullptr); |
Brian Carlstrom | ce88853 | 2013-10-10 00:32:58 -0700 | [diff] [blame] | 363 | JNIEnv* env = soa.Self()->GetJniEnv(); |
Mathieu Chartier | c528dba | 2013-11-26 12:00:11 -0800 | [diff] [blame] | 364 | ScopedLocalRef<jobject> system_class_loader(env, |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 365 | soa.AddLocalReference<jobject>(class_loader.Get())); |
Mathieu Chartier | c528dba | 2013-11-26 12:00:11 -0800 | [diff] [blame] | 366 | CHECK(system_class_loader.get() != nullptr); |
Brian Carlstrom | ce88853 | 2013-10-10 00:32:58 -0700 | [diff] [blame] | 367 | |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 368 | soa.Self()->SetClassLoaderOverride(class_loader.Get()); |
Ian Rogers | 365c102 | 2012-06-22 15:05:28 -0700 | [diff] [blame] | 369 | |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 370 | Handle<mirror::Class> thread_class( |
| 371 | hs.NewHandle(soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_Thread))); |
Mathieu Chartier | c528dba | 2013-11-26 12:00:11 -0800 | [diff] [blame] | 372 | CHECK(cl->EnsureInitialized(thread_class, true, true)); |
Ian Rogers | 365c102 | 2012-06-22 15:05:28 -0700 | [diff] [blame] | 373 | |
Mathieu Chartier | c528dba | 2013-11-26 12:00:11 -0800 | [diff] [blame] | 374 | mirror::ArtField* contextClassLoader = |
| 375 | thread_class->FindDeclaredInstanceField("contextClassLoader", "Ljava/lang/ClassLoader;"); |
Jesse Wilson | 1b2b2f2 | 2011-11-22 11:47:44 -0500 | [diff] [blame] | 376 | CHECK(contextClassLoader != NULL); |
Ian Rogers | 365c102 | 2012-06-22 15:05:28 -0700 | [diff] [blame] | 377 | |
Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 378 | // We can't run in a transaction yet. |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 379 | contextClassLoader->SetObject<false>(soa.Self()->GetPeer(), class_loader.Get()); |
Brian Carlstrom | ce88853 | 2013-10-10 00:32:58 -0700 | [diff] [blame] | 380 | |
| 381 | return env->NewGlobalRef(system_class_loader.get()); |
Brian Carlstrom | aded5f7 | 2011-10-07 17:15:04 -0700 | [diff] [blame] | 382 | } |
| 383 | |
Alex Light | a59dd80 | 2014-07-02 16:28:08 -0700 | [diff] [blame] | 384 | std::string Runtime::GetPatchoatExecutable() const { |
| 385 | if (!patchoat_executable_.empty()) { |
| 386 | return patchoat_executable_; |
| 387 | } |
| 388 | std::string patchoat_executable_(GetAndroidRoot()); |
| 389 | patchoat_executable_ += (kIsDebugBuild ? "/bin/patchoatd" : "/bin/patchoat"); |
| 390 | return patchoat_executable_; |
| 391 | } |
| 392 | |
Tsu Chiang Chuang | 12e6d74 | 2014-05-22 10:22:25 -0700 | [diff] [blame] | 393 | std::string Runtime::GetCompilerExecutable() const { |
| 394 | if (!compiler_executable_.empty()) { |
| 395 | return compiler_executable_; |
| 396 | } |
| 397 | std::string compiler_executable(GetAndroidRoot()); |
| 398 | compiler_executable += (kIsDebugBuild ? "/bin/dex2oatd" : "/bin/dex2oat"); |
| 399 | return compiler_executable; |
| 400 | } |
| 401 | |
Brian Carlstrom | bd86bcc | 2013-03-10 20:26:16 -0700 | [diff] [blame] | 402 | bool Runtime::Start() { |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 403 | VLOG(startup) << "Runtime::Start entering"; |
Brian Carlstrom | 58ae941 | 2011-10-04 00:56:06 -0700 | [diff] [blame] | 404 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 405 | // Restore main thread state to kNative as expected by native code. |
Ian Rogers | a436fde | 2013-08-27 23:34:06 -0700 | [diff] [blame] | 406 | Thread* self = Thread::Current(); |
Alex Light | 507e618 | 2014-08-19 14:23:13 -0700 | [diff] [blame] | 407 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 408 | self->TransitionFromRunnableToSuspended(kNative); |
| 409 | |
Brian Carlstrom | 5d40f18 | 2011-09-26 22:29:18 -0700 | [diff] [blame] | 410 | started_ = true; |
| 411 | |
Alex Light | 507e618 | 2014-08-19 14:23:13 -0700 | [diff] [blame] | 412 | if (!IsImageDex2OatEnabled() || !Runtime::Current()->GetHeap()->HasImageSpace()) { |
| 413 | ScopedObjectAccess soa(Thread::Current()); |
| 414 | StackHandleScope<1> hs(soa.Self()); |
| 415 | auto klass(hs.NewHandle<mirror::Class>(mirror::Class::GetJavaLangClass())); |
| 416 | class_linker_->EnsureInitialized(klass, true, true); |
| 417 | } |
| 418 | |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 419 | // InitNativeMethods needs to be after started_ so that the classes |
| 420 | // it touches will have methods linked to the oat file if necessary. |
| 421 | InitNativeMethods(); |
| 422 | |
Ian Rogers | 365c102 | 2012-06-22 15:05:28 -0700 | [diff] [blame] | 423 | // Initialize well known thread group values that may be accessed threads while attaching. |
| 424 | InitThreadGroups(self); |
| 425 | |
Jesse Wilson | 9a6bae8 | 2011-11-14 14:57:30 -0500 | [diff] [blame] | 426 | Thread::FinishStartup(); |
| 427 | |
Brian Carlstrom | bd86bcc | 2013-03-10 20:26:16 -0700 | [diff] [blame] | 428 | if (is_zygote_) { |
| 429 | if (!InitZygote()) { |
| 430 | return false; |
| 431 | } |
| 432 | } else { |
Elliott Hughes | d1cc836 | 2011-10-24 16:58:50 -0700 | [diff] [blame] | 433 | DidForkFromZygote(); |
| 434 | } |
Elliott Hughes | 9ca7a1f | 2011-10-11 14:29:52 -0700 | [diff] [blame] | 435 | |
Elliott Hughes | 85d1545 | 2011-09-16 17:33:01 -0700 | [diff] [blame] | 436 | StartDaemonThreads(); |
Brian Carlstrom | 0a5b14d | 2011-09-27 13:29:15 -0700 | [diff] [blame] | 437 | |
Brian Carlstrom | ce88853 | 2013-10-10 00:32:58 -0700 | [diff] [blame] | 438 | system_class_loader_ = CreateSystemClassLoader(); |
Brian Carlstrom | aded5f7 | 2011-10-07 17:15:04 -0700 | [diff] [blame] | 439 | |
Yevgeny Rouban | 35aef2c | 2014-05-19 16:19:36 +0700 | [diff] [blame] | 440 | { |
| 441 | ScopedObjectAccess soa(self); |
| 442 | self->GetJniEnv()->locals.AssertEmpty(); |
| 443 | } |
Elliott Hughes | 726079d | 2011-10-07 18:43:44 -0700 | [diff] [blame] | 444 | |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 445 | VLOG(startup) << "Runtime::Start exiting"; |
Mathieu Chartier | 7664f5c | 2012-06-08 18:15:32 -0700 | [diff] [blame] | 446 | finished_starting_ = true; |
Brian Carlstrom | bd86bcc | 2013-03-10 20:26:16 -0700 | [diff] [blame] | 447 | |
Calin Juravle | c1b643c | 2014-05-30 23:44:11 +0100 | [diff] [blame] | 448 | if (profiler_options_.IsEnabled() && !profile_output_filename_.empty()) { |
| 449 | // User has asked for a profile using -Xenable-profiler. |
Dave Allison | 39c3bfb | 2014-01-28 18:33:52 -0800 | [diff] [blame] | 450 | // Create the profile file if it doesn't exist. |
| 451 | int fd = open(profile_output_filename_.c_str(), O_RDWR|O_CREAT|O_EXCL, 0660); |
| 452 | if (fd >= 0) { |
| 453 | close(fd); |
Wei Jin | a93b0bb | 2014-06-09 16:19:15 -0700 | [diff] [blame] | 454 | } else if (errno != EEXIST) { |
| 455 | LOG(INFO) << "Failed to access the profile file. Profiler disabled."; |
| 456 | return true; |
Dave Allison | 39c3bfb | 2014-01-28 18:33:52 -0800 | [diff] [blame] | 457 | } |
Calin Juravle | c1b643c | 2014-05-30 23:44:11 +0100 | [diff] [blame] | 458 | StartProfiler(profile_output_filename_.c_str()); |
Dave Allison | 0aded08 | 2013-11-07 13:15:11 -0800 | [diff] [blame] | 459 | } |
| 460 | |
Brian Carlstrom | bd86bcc | 2013-03-10 20:26:16 -0700 | [diff] [blame] | 461 | return true; |
Elliott Hughes | 85d1545 | 2011-09-16 17:33:01 -0700 | [diff] [blame] | 462 | } |
| 463 | |
Ian Rogers | 120f1c7 | 2012-09-28 17:17:10 -0700 | [diff] [blame] | 464 | void Runtime::EndThreadBirth() EXCLUSIVE_LOCKS_REQUIRED(Locks::runtime_shutdown_lock_) { |
| 465 | DCHECK_GT(threads_being_born_, 0U); |
| 466 | threads_being_born_--; |
| 467 | if (shutting_down_started_ && threads_being_born_ == 0) { |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 468 | shutdown_cond_->Broadcast(Thread::Current()); |
Ian Rogers | 120f1c7 | 2012-09-28 17:17:10 -0700 | [diff] [blame] | 469 | } |
| 470 | } |
| 471 | |
Brian Carlstrom | bd86bcc | 2013-03-10 20:26:16 -0700 | [diff] [blame] | 472 | // Do zygote-mode-only initialization. |
| 473 | bool Runtime::InitZygote() { |
Ian Rogers | c5f1773 | 2014-06-05 20:48:42 -0700 | [diff] [blame] | 474 | #ifdef __linux__ |
Brian Carlstrom | bd86bcc | 2013-03-10 20:26:16 -0700 | [diff] [blame] | 475 | // zygote goes into its own process group |
Brian Carlstrom | b1eba21 | 2013-07-17 18:07:19 -0700 | [diff] [blame] | 476 | setpgid(0, 0); |
Brian Carlstrom | bd86bcc | 2013-03-10 20:26:16 -0700 | [diff] [blame] | 477 | |
| 478 | // See storage config details at http://source.android.com/tech/storage/ |
| 479 | // Create private mount namespace shared by all children |
| 480 | if (unshare(CLONE_NEWNS) == -1) { |
| 481 | PLOG(WARNING) << "Failed to unshare()"; |
| 482 | return false; |
| 483 | } |
| 484 | |
| 485 | // Mark rootfs as being a slave so that changes from default |
| 486 | // namespace only flow into our children. |
| 487 | if (mount("rootfs", "/", NULL, (MS_SLAVE | MS_REC), NULL) == -1) { |
| 488 | PLOG(WARNING) << "Failed to mount() rootfs as MS_SLAVE"; |
| 489 | return false; |
| 490 | } |
| 491 | |
| 492 | // Create a staging tmpfs that is shared by our children; they will |
| 493 | // bind mount storage into their respective private namespaces, which |
| 494 | // are isolated from each other. |
| 495 | const char* target_base = getenv("EMULATED_STORAGE_TARGET"); |
| 496 | if (target_base != NULL) { |
| 497 | if (mount("tmpfs", target_base, "tmpfs", MS_NOSUID | MS_NODEV, |
Jeff Sharkey | 52cd1e8 | 2013-09-17 16:25:12 -0700 | [diff] [blame] | 498 | "uid=0,gid=1028,mode=0751") == -1) { |
Brian Carlstrom | bd86bcc | 2013-03-10 20:26:16 -0700 | [diff] [blame] | 499 | LOG(WARNING) << "Failed to mount tmpfs to " << target_base; |
| 500 | return false; |
| 501 | } |
| 502 | } |
| 503 | |
| 504 | return true; |
Ian Rogers | c5f1773 | 2014-06-05 20:48:42 -0700 | [diff] [blame] | 505 | #else |
| 506 | UNIMPLEMENTED(FATAL); |
| 507 | return false; |
| 508 | #endif |
Brian Carlstrom | bd86bcc | 2013-03-10 20:26:16 -0700 | [diff] [blame] | 509 | } |
| 510 | |
Brian Carlstrom | caabb1b | 2011-10-11 18:09:13 -0700 | [diff] [blame] | 511 | void Runtime::DidForkFromZygote() { |
Brian Carlstrom | caabb1b | 2011-10-11 18:09:13 -0700 | [diff] [blame] | 512 | is_zygote_ = false; |
Elliott Hughes | d1cc836 | 2011-10-24 16:58:50 -0700 | [diff] [blame] | 513 | |
Mathieu Chartier | 02b6a78 | 2012-10-26 13:51:26 -0700 | [diff] [blame] | 514 | // Create the thread pool. |
| 515 | heap_->CreateThreadPool(); |
| 516 | |
Brian Carlstrom | caabb1b | 2011-10-11 18:09:13 -0700 | [diff] [blame] | 517 | StartSignalCatcher(); |
Elliott Hughes | d1cc836 | 2011-10-24 16:58:50 -0700 | [diff] [blame] | 518 | |
| 519 | // Start the JDWP thread. If the command-line debugger flags specified "suspend=y", |
| 520 | // this will pause the runtime, so we probably want this to come last. |
| 521 | Dbg::StartJdwp(); |
Brian Carlstrom | caabb1b | 2011-10-11 18:09:13 -0700 | [diff] [blame] | 522 | } |
| 523 | |
| 524 | void Runtime::StartSignalCatcher() { |
| 525 | if (!is_zygote_) { |
Elliott Hughes | 94ce37a | 2011-10-18 15:07:48 -0700 | [diff] [blame] | 526 | signal_catcher_ = new SignalCatcher(stack_trace_file_); |
Brian Carlstrom | caabb1b | 2011-10-11 18:09:13 -0700 | [diff] [blame] | 527 | } |
| 528 | } |
| 529 | |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 530 | bool Runtime::IsShuttingDown(Thread* self) { |
| 531 | MutexLock mu(self, *Locks::runtime_shutdown_lock_); |
| 532 | return IsShuttingDownLocked(); |
| 533 | } |
| 534 | |
Elliott Hughes | 85d1545 | 2011-09-16 17:33:01 -0700 | [diff] [blame] | 535 | void Runtime::StartDaemonThreads() { |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 536 | VLOG(startup) << "Runtime::StartDaemonThreads entering"; |
Elliott Hughes | 85d1545 | 2011-09-16 17:33:01 -0700 | [diff] [blame] | 537 | |
Elliott Hughes | 719b323 | 2011-09-25 17:42:19 -0700 | [diff] [blame] | 538 | Thread* self = Thread::Current(); |
Brian Carlstrom | aded5f7 | 2011-10-07 17:15:04 -0700 | [diff] [blame] | 539 | |
| 540 | // Must be in the kNative state for calling native methods. |
Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 541 | CHECK_EQ(self->GetState(), kNative); |
Brian Carlstrom | aded5f7 | 2011-10-07 17:15:04 -0700 | [diff] [blame] | 542 | |
Elliott Hughes | 719b323 | 2011-09-25 17:42:19 -0700 | [diff] [blame] | 543 | JNIEnv* env = self->GetJniEnv(); |
Ian Rogers | 2fa6b2e | 2012-10-17 00:10:17 -0700 | [diff] [blame] | 544 | env->CallStaticVoidMethod(WellKnownClasses::java_lang_Daemons, |
| 545 | WellKnownClasses::java_lang_Daemons_start); |
| 546 | if (env->ExceptionCheck()) { |
| 547 | env->ExceptionDescribe(); |
| 548 | LOG(FATAL) << "Error starting java.lang.Daemons"; |
| 549 | } |
Elliott Hughes | 9ca7a1f | 2011-10-11 14:29:52 -0700 | [diff] [blame] | 550 | |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 551 | VLOG(startup) << "Runtime::StartDaemonThreads exiting"; |
Carl Shapiro | 61e019d | 2011-07-14 16:53:09 -0700 | [diff] [blame] | 552 | } |
| 553 | |
Alex Light | fb77759 | 2014-08-22 17:49:35 -0700 | [diff] [blame^] | 554 | static bool OpenDexFilesFromImage(const std::vector<std::string>& dex_filenames, |
| 555 | const std::string& image_location, |
| 556 | std::vector<const DexFile*>& dex_files, |
| 557 | size_t* failures) { |
| 558 | std::string system_filename; |
| 559 | bool has_system = false; |
| 560 | std::string cache_filename_unused; |
| 561 | bool dalvik_cache_exists_unused; |
| 562 | bool has_cache_unused; |
| 563 | bool found_image = gc::space::ImageSpace::FindImageFilename(image_location.c_str(), |
| 564 | kRuntimeISA, |
| 565 | &system_filename, |
| 566 | &has_system, |
| 567 | &cache_filename_unused, |
| 568 | &dalvik_cache_exists_unused, |
| 569 | &has_cache_unused); |
| 570 | *failures = 0; |
| 571 | if (!found_image || !has_system) { |
| 572 | return false; |
| 573 | } |
| 574 | std::string error_msg; |
| 575 | // We are falling back to non-executable use of the oat file because patching failed, presumably |
| 576 | // due to lack of space. |
| 577 | std::string oat_filename = ImageHeader::GetOatLocationFromImageLocation(system_filename.c_str()); |
| 578 | std::string oat_location = ImageHeader::GetOatLocationFromImageLocation(image_location.c_str()); |
| 579 | std::unique_ptr<File> file(OS::OpenFileForReading(oat_filename.c_str())); |
| 580 | if (file.get() == nullptr) { |
| 581 | return false; |
| 582 | } |
| 583 | std::unique_ptr<ElfFile> elf_file(ElfFile::Open(file.release(), false, false, &error_msg)); |
| 584 | if (elf_file.get() == nullptr) { |
| 585 | return false; |
| 586 | } |
| 587 | std::unique_ptr<OatFile> oat_file(OatFile::OpenWithElfFile(elf_file.release(), oat_location, |
| 588 | &error_msg)); |
| 589 | if (oat_file.get() == nullptr) { |
| 590 | LOG(INFO) << "Unable to use '" << oat_filename << "' because " << error_msg; |
| 591 | return false; |
| 592 | } |
| 593 | |
| 594 | std::vector<const OatFile::OatDexFile*> oat_dex_files = oat_file->GetOatDexFiles(); |
| 595 | for (size_t i = 0; i < oat_dex_files.size(); i++) { |
| 596 | const OatFile::OatDexFile* oat_dex_file = oat_dex_files[i]; |
| 597 | if (oat_dex_file == nullptr) { |
| 598 | *failures += 1; |
| 599 | continue; |
| 600 | } |
| 601 | const DexFile* dex_file = oat_dex_file->OpenDexFile(&error_msg); |
| 602 | if (dex_file == nullptr) { |
| 603 | *failures += 1; |
| 604 | } else { |
| 605 | dex_files.push_back(dex_file); |
| 606 | } |
| 607 | } |
| 608 | Runtime::Current()->GetClassLinker()->RegisterOatFile(oat_file.release()); |
| 609 | return true; |
| 610 | } |
| 611 | |
| 612 | |
Alex Light | 507e618 | 2014-08-19 14:23:13 -0700 | [diff] [blame] | 613 | static size_t OpenDexFiles(const std::vector<std::string>& dex_filenames, |
Alex Light | fb77759 | 2014-08-22 17:49:35 -0700 | [diff] [blame^] | 614 | const std::string& image_location, |
Alex Light | 507e618 | 2014-08-19 14:23:13 -0700 | [diff] [blame] | 615 | std::vector<const DexFile*>& dex_files) { |
| 616 | size_t failure_count = 0; |
Alex Light | fb77759 | 2014-08-22 17:49:35 -0700 | [diff] [blame^] | 617 | if (!image_location.empty() && OpenDexFilesFromImage(dex_filenames, image_location, dex_files, |
| 618 | &failure_count)) { |
| 619 | return failure_count; |
| 620 | } |
| 621 | failure_count = 0; |
Alex Light | 507e618 | 2014-08-19 14:23:13 -0700 | [diff] [blame] | 622 | for (size_t i = 0; i < dex_filenames.size(); i++) { |
| 623 | const char* dex_filename = dex_filenames[i].c_str(); |
| 624 | std::string error_msg; |
| 625 | if (!OS::FileExists(dex_filename)) { |
| 626 | LOG(WARNING) << "Skipping non-existent dex file '" << dex_filename << "'"; |
| 627 | continue; |
| 628 | } |
| 629 | if (!DexFile::Open(dex_filename, dex_filename, &error_msg, &dex_files)) { |
| 630 | LOG(WARNING) << "Failed to open .dex from file '" << dex_filename << "': " << error_msg; |
| 631 | ++failure_count; |
| 632 | } |
| 633 | } |
| 634 | return failure_count; |
| 635 | } |
| 636 | |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 637 | bool Runtime::Init(const RuntimeOptions& raw_options, bool ignore_unrecognized) { |
Elliott Hughes | c1674ed | 2011-08-25 18:09:09 -0700 | [diff] [blame] | 638 | CHECK_EQ(sysconf(_SC_PAGE_SIZE), kPageSize); |
Brian Carlstrom | 6ea095a | 2011-08-16 15:26:54 -0700 | [diff] [blame] | 639 | |
Ian Rogers | 700a402 | 2014-05-19 16:49:03 -0700 | [diff] [blame] | 640 | std::unique_ptr<ParsedOptions> options(ParsedOptions::Create(raw_options, ignore_unrecognized)); |
Elliott Hughes | 90a3369 | 2011-08-30 13:27:07 -0700 | [diff] [blame] | 641 | if (options.get() == NULL) { |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 642 | LOG(ERROR) << "Failed to parse options"; |
Brian Carlstrom | 6ea095a | 2011-08-16 15:26:54 -0700 | [diff] [blame] | 643 | return false; |
| 644 | } |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 645 | VLOG(startup) << "Runtime::Init -verbose:startup enabled"; |
Elliott Hughes | 7ede61e | 2011-09-14 18:18:06 -0700 | [diff] [blame] | 646 | |
Elliott Hughes | 7c6169d | 2012-05-02 16:11:48 -0700 | [diff] [blame] | 647 | QuasiAtomic::Startup(); |
| 648 | |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 649 | Monitor::Init(options->lock_profiling_threshold_, options->hook_is_sensitive_thread_); |
Elliott Hughes | 32d6e1e | 2011-10-11 14:47:44 -0700 | [diff] [blame] | 650 | |
Brian Carlstrom | a004aa9 | 2012-02-08 18:05:09 -0800 | [diff] [blame] | 651 | boot_class_path_string_ = options->boot_class_path_string_; |
| 652 | class_path_string_ = options->class_path_string_; |
Elliott Hughes | 7ede61e | 2011-09-14 18:18:06 -0700 | [diff] [blame] | 653 | properties_ = options->properties_; |
| 654 | |
Vladimir Marko | 2b5eaa2 | 2013-12-13 13:59:30 +0000 | [diff] [blame] | 655 | compiler_callbacks_ = options->compiler_callbacks_; |
Alex Light | a59dd80 | 2014-07-02 16:28:08 -0700 | [diff] [blame] | 656 | patchoat_executable_ = options->patchoat_executable_; |
| 657 | must_relocate_ = options->must_relocate_; |
Elliott Hughes | 9ca7a1f | 2011-10-11 14:29:52 -0700 | [diff] [blame] | 658 | is_zygote_ = options->is_zygote_; |
Anwar Ghuloum | 8718359 | 2013-08-14 12:12:19 -0700 | [diff] [blame] | 659 | is_explicit_gc_disabled_ = options->is_explicit_gc_disabled_; |
Nicolas Geoffray | 9c29001 | 2014-07-22 10:48:00 +0100 | [diff] [blame] | 660 | dex2oat_enabled_ = options->dex2oat_enabled_; |
Alex Light | 507e618 | 2014-08-19 14:23:13 -0700 | [diff] [blame] | 661 | image_dex2oat_enabled_ = options->image_dex2oat_enabled_; |
Elliott Hughes | 9ca7a1f | 2011-10-11 14:29:52 -0700 | [diff] [blame] | 662 | |
Elliott Hughes | 0af5543 | 2011-08-17 18:37:28 -0700 | [diff] [blame] | 663 | vfprintf_ = options->hook_vfprintf_; |
| 664 | exit_ = options->hook_exit_; |
| 665 | abort_ = options->hook_abort_; |
Brian Carlstrom | 6ea095a | 2011-08-16 15:26:54 -0700 | [diff] [blame] | 666 | |
Elliott Hughes | be759c6 | 2011-09-08 19:38:21 -0700 | [diff] [blame] | 667 | default_stack_size_ = options->stack_size_; |
Elliott Hughes | 94ce37a | 2011-10-18 15:07:48 -0700 | [diff] [blame] | 668 | stack_trace_file_ = options->stack_trace_file_; |
Brian Carlstrom | 6ea095a | 2011-08-16 15:26:54 -0700 | [diff] [blame] | 669 | |
Tsu Chiang Chuang | 12e6d74 | 2014-05-22 10:22:25 -0700 | [diff] [blame] | 670 | compiler_executable_ = options->compiler_executable_; |
Brian Carlstrom | 2ec6520 | 2014-03-03 15:16:37 -0800 | [diff] [blame] | 671 | compiler_options_ = options->compiler_options_; |
| 672 | image_compiler_options_ = options->image_compiler_options_; |
| 673 | |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 674 | max_spins_before_thin_lock_inflation_ = options->max_spins_before_thin_lock_inflation_; |
| 675 | |
Elliott Hughes | c33a32b | 2011-10-11 18:18:07 -0700 | [diff] [blame] | 676 | monitor_list_ = new MonitorList; |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 677 | monitor_pool_ = MonitorPool::Create(); |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 678 | thread_list_ = new ThreadList; |
Elliott Hughes | cf4c6c4 | 2011-09-01 15:16:42 -0700 | [diff] [blame] | 679 | intern_table_ = new InternTable; |
| 680 | |
Jeff Hao | 4a200f5 | 2014-04-01 14:58:49 -0700 | [diff] [blame] | 681 | verify_ = options->verify_; |
Logan Chien | dd361c9 | 2012-04-10 23:40:37 +0800 | [diff] [blame] | 682 | |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 683 | if (options->interpreter_only_) { |
| 684 | GetInstrumentation()->ForceInterpretOnly(); |
| 685 | } |
| 686 | |
Dave Allison | 3d14eb6 | 2014-07-10 01:54:57 +0000 | [diff] [blame] | 687 | heap_ = new gc::Heap(options->heap_initial_size_, |
| 688 | options->heap_growth_limit_, |
| 689 | options->heap_min_free_, |
| 690 | options->heap_max_free_, |
| 691 | options->heap_target_utilization_, |
| 692 | options->foreground_heap_growth_multiplier_, |
| 693 | options->heap_maximum_size_, |
Mathieu Chartier | 4c5a469 | 2014-08-22 14:53:04 -0700 | [diff] [blame] | 694 | options->heap_non_moving_space_capacity_, |
Dave Allison | 3d14eb6 | 2014-07-10 01:54:57 +0000 | [diff] [blame] | 695 | options->image_, |
| 696 | options->image_isa_, |
| 697 | options->collector_type_, |
| 698 | options->background_collector_type_, |
| 699 | options->parallel_gc_threads_, |
| 700 | options->conc_gc_threads_, |
| 701 | options->low_memory_mode_, |
| 702 | options->long_pause_log_threshold_, |
| 703 | options->long_gc_log_threshold_, |
| 704 | options->ignore_max_footprint_, |
| 705 | options->use_tlab_, |
| 706 | options->verify_pre_gc_heap_, |
| 707 | options->verify_pre_sweeping_heap_, |
| 708 | options->verify_post_gc_heap_, |
| 709 | options->verify_pre_gc_rosalloc_, |
| 710 | options->verify_pre_sweeping_rosalloc_, |
Zuo Wang | f37a88b | 2014-07-10 04:26:41 -0700 | [diff] [blame] | 711 | options->verify_post_gc_rosalloc_, |
| 712 | options->use_homogeneous_space_compaction_for_oom_, |
| 713 | options->min_interval_homogeneous_space_compaction_by_oom_); |
Dave Allison | 3d14eb6 | 2014-07-10 01:54:57 +0000 | [diff] [blame] | 714 | |
| 715 | dump_gc_performance_on_shutdown_ = options->dump_gc_performance_on_shutdown_; |
| 716 | |
| 717 | BlockSignals(); |
| 718 | InitPlatformSignalHandlers(); |
| 719 | |
Dave Allison | 69dfe51 | 2014-07-11 17:11:58 +0000 | [diff] [blame] | 720 | // Change the implicit checks flags based on runtime architecture. |
| 721 | switch (kRuntimeISA) { |
| 722 | case kArm: |
| 723 | case kThumb2: |
| 724 | case kX86: |
Stuart Monteith | 7204c04 | 2014-06-11 16:44:46 +0100 | [diff] [blame] | 725 | case kArm64: |
Dave Allison | b0f05b9 | 2014-07-16 16:04:32 -0700 | [diff] [blame] | 726 | case kX86_64: |
Dave Allison | 69dfe51 | 2014-07-11 17:11:58 +0000 | [diff] [blame] | 727 | implicit_null_checks_ = true; |
| 728 | implicit_so_checks_ = true; |
| 729 | break; |
| 730 | default: |
| 731 | // Keep the defaults. |
| 732 | break; |
| 733 | } |
| 734 | |
Nicolas Geoffray | 535a3fb | 2014-07-22 15:17:38 +0100 | [diff] [blame] | 735 | if (implicit_null_checks_ || implicit_so_checks_ || implicit_suspend_checks_) { |
Dave Allison | 69dfe51 | 2014-07-11 17:11:58 +0000 | [diff] [blame] | 736 | fault_manager.Init(); |
| 737 | |
| 738 | // These need to be in a specific order. The null point check handler must be |
| 739 | // after the suspend check and stack overflow check handlers. |
| 740 | if (implicit_suspend_checks_) { |
| 741 | suspend_handler_ = new SuspensionHandler(&fault_manager); |
| 742 | } |
| 743 | |
| 744 | if (implicit_so_checks_) { |
| 745 | stack_overflow_handler_ = new StackOverflowHandler(&fault_manager); |
| 746 | } |
| 747 | |
| 748 | if (implicit_null_checks_) { |
| 749 | null_pointer_handler_ = new NullPointerHandler(&fault_manager); |
| 750 | } |
| 751 | |
| 752 | if (kEnableJavaStackTraceHandler) { |
| 753 | new JavaStackTraceHandler(&fault_manager); |
| 754 | } |
| 755 | } |
| 756 | |
Elliott Hughes | a095764 | 2011-09-02 14:27:33 -0700 | [diff] [blame] | 757 | java_vm_ = new JavaVMExt(this, options.get()); |
Elliott Hughes | 515a5bc | 2011-08-17 11:08:34 -0700 | [diff] [blame] | 758 | |
Elliott Hughes | be759c6 | 2011-09-08 19:38:21 -0700 | [diff] [blame] | 759 | Thread::Startup(); |
Elliott Hughes | d92bec4 | 2011-09-02 17:04:36 -0700 | [diff] [blame] | 760 | |
Mathieu Chartier | 664bebf | 2012-11-12 16:54:11 -0800 | [diff] [blame] | 761 | // ClassLinker needs an attached thread, but we can't fully attach a thread without creating |
| 762 | // objects. We can't supply a thread group yet; it will be fixed later. Since we are the main |
| 763 | // thread, we do not get a java peer. |
| 764 | Thread* self = Thread::Attach("main", false, NULL, false); |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 765 | CHECK_EQ(self->GetThreadId(), ThreadList::kMainThreadId); |
Ian Rogers | 120f1c7 | 2012-09-28 17:17:10 -0700 | [diff] [blame] | 766 | CHECK(self != NULL); |
Brian Carlstrom | 6ea095a | 2011-08-16 15:26:54 -0700 | [diff] [blame] | 767 | |
Brian Carlstrom | f28bc5b | 2011-10-26 01:15:03 -0700 | [diff] [blame] | 768 | // 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] | 769 | self->TransitionFromSuspendedToRunnable(); |
Brian Carlstrom | f28bc5b | 2011-10-26 01:15:03 -0700 | [diff] [blame] | 770 | |
Ian Rogers | a436fde | 2013-08-27 23:34:06 -0700 | [diff] [blame] | 771 | // 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] | 772 | GetHeap()->EnableObjectValidation(); |
| 773 | |
Ian Rogers | 1d54e73 | 2013-05-02 21:10:01 -0700 | [diff] [blame] | 774 | CHECK_GE(GetHeap()->GetContinuousSpaces().size(), 1U); |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 775 | class_linker_ = new ClassLinker(intern_table_); |
| 776 | if (GetHeap()->HasImageSpace()) { |
| 777 | class_linker_->InitFromImage(); |
Hiroshi Yamauchi | bd0fb61 | 2014-05-20 13:46:00 -0700 | [diff] [blame] | 778 | if (kIsDebugBuild) { |
| 779 | GetHeap()->GetImageSpace()->VerifyImageAllocations(); |
| 780 | } |
Alex Light | 507e618 | 2014-08-19 14:23:13 -0700 | [diff] [blame] | 781 | } else if (!IsCompiler() || !image_dex2oat_enabled_) { |
| 782 | std::vector<std::string> dex_filenames; |
| 783 | Split(boot_class_path_string_, ':', dex_filenames); |
| 784 | std::vector<const DexFile*> boot_class_path; |
Alex Light | fb77759 | 2014-08-22 17:49:35 -0700 | [diff] [blame^] | 785 | OpenDexFiles(dex_filenames, options->image_, boot_class_path); |
Alex Light | 507e618 | 2014-08-19 14:23:13 -0700 | [diff] [blame] | 786 | class_linker_->InitWithoutImage(boot_class_path); |
| 787 | // TODO: Should we move the following to InitWithoutImage? |
| 788 | SetInstructionSet(kRuntimeISA); |
| 789 | for (int i = 0; i < Runtime::kLastCalleeSaveType; i++) { |
| 790 | Runtime::CalleeSaveType type = Runtime::CalleeSaveType(i); |
| 791 | if (!HasCalleeSaveMethod(type)) { |
| 792 | SetCalleeSaveMethod(CreateCalleeSaveMethod(type), type); |
| 793 | } |
| 794 | } |
Brian Carlstrom | a004aa9 | 2012-02-08 18:05:09 -0800 | [diff] [blame] | 795 | } else { |
| 796 | CHECK(options->boot_class_path_ != NULL); |
| 797 | CHECK_NE(options->boot_class_path_->size(), 0U); |
Alex Light | 507e618 | 2014-08-19 14:23:13 -0700 | [diff] [blame] | 798 | class_linker_->InitWithoutImage(*options->boot_class_path_); |
Brian Carlstrom | a004aa9 | 2012-02-08 18:05:09 -0800 | [diff] [blame] | 799 | } |
| 800 | CHECK(class_linker_ != NULL); |
Sameer Abu Asal | 51a5fb7 | 2013-02-19 14:25:01 -0800 | [diff] [blame] | 801 | verifier::MethodVerifier::Init(); |
Brian Carlstrom | 6ea095a | 2011-08-16 15:26:54 -0700 | [diff] [blame] | 802 | |
jeffhao | b5e8185 | 2012-03-12 11:15:45 -0700 | [diff] [blame] | 803 | method_trace_ = options->method_trace_; |
| 804 | method_trace_file_ = options->method_trace_file_; |
| 805 | method_trace_file_size_ = options->method_trace_file_size_; |
| 806 | |
Dave Allison | 0aded08 | 2013-11-07 13:15:11 -0800 | [diff] [blame] | 807 | profile_output_filename_ = options->profile_output_filename_; |
Calin Juravle | c1b643c | 2014-05-30 23:44:11 +0100 | [diff] [blame] | 808 | profiler_options_ = options->profiler_options_; |
| 809 | |
Brian Carlstrom | 491ca9e | 2014-03-02 18:24:38 -0800 | [diff] [blame] | 810 | // TODO: move this to just be an Trace::Start argument |
| 811 | Trace::SetDefaultClockSource(options->profile_clock_source_); |
Dave Allison | 0aded08 | 2013-11-07 13:15:11 -0800 | [diff] [blame] | 812 | |
jeffhao | b5e8185 | 2012-03-12 11:15:45 -0700 | [diff] [blame] | 813 | if (options->method_trace_) { |
Sebastien Hertz | bae182c | 2013-12-17 10:42:03 +0100 | [diff] [blame] | 814 | ScopedThreadStateChange tsc(self, kWaitingForMethodTracingStart); |
Jeff Hao | 23009dc | 2013-08-22 15:36:42 -0700 | [diff] [blame] | 815 | Trace::Start(options->method_trace_file_.c_str(), -1, options->method_trace_file_size_, 0, |
| 816 | false, false, 0); |
jeffhao | b5e8185 | 2012-03-12 11:15:45 -0700 | [diff] [blame] | 817 | } |
| 818 | |
Ian Rogers | a436fde | 2013-08-27 23:34:06 -0700 | [diff] [blame] | 819 | // Pre-allocate an OutOfMemoryError for the double-OOME case. |
| 820 | self->ThrowNewException(ThrowLocation(), "Ljava/lang/OutOfMemoryError;", |
Brian Carlstrom | 491ca9e | 2014-03-02 18:24:38 -0800 | [diff] [blame] | 821 | "OutOfMemoryError thrown while trying to throw OutOfMemoryError; " |
| 822 | "no stack available"); |
Hiroshi Yamauchi | 94f7b49 | 2014-07-22 18:08:23 -0700 | [diff] [blame] | 823 | pre_allocated_OutOfMemoryError_ = GcRoot<mirror::Throwable>(self->GetException(NULL)); |
Ian Rogers | a436fde | 2013-08-27 23:34:06 -0700 | [diff] [blame] | 824 | self->ClearException(); |
| 825 | |
Andreas Gampe | 855564b | 2014-07-25 02:32:19 -0700 | [diff] [blame] | 826 | // Look for a native bridge. |
Calin Juravle | ccdd4a5 | 2014-08-22 12:53:59 +0100 | [diff] [blame] | 827 | native_bridge_library_filename_ = options->native_bridge_library_filename_; |
| 828 | android::SetupNativeBridge(native_bridge_library_filename_.c_str(), &native_bridge_art_callbacks_); |
| 829 | VLOG(startup) << "Runtime::Setup native bridge library: " |
| 830 | << (native_bridge_library_filename_.empty() ? |
| 831 | "(empty)" : native_bridge_library_filename_); |
Andreas Gampe | 855564b | 2014-07-25 02:32:19 -0700 | [diff] [blame] | 832 | |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 833 | VLOG(startup) << "Runtime::Init exiting"; |
Carl Shapiro | 1fb8620 | 2011-06-27 17:43:13 -0700 | [diff] [blame] | 834 | return true; |
| 835 | } |
| 836 | |
Elliott Hughes | 038a806 | 2011-09-18 14:12:41 -0700 | [diff] [blame] | 837 | void Runtime::InitNativeMethods() { |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 838 | VLOG(startup) << "Runtime::InitNativeMethods entering"; |
Elliott Hughes | ad7c2a3 | 2011-08-31 11:58:10 -0700 | [diff] [blame] | 839 | Thread* self = Thread::Current(); |
| 840 | JNIEnv* env = self->GetJniEnv(); |
| 841 | |
Elliott Hughes | 418d20f | 2011-09-22 14:00:39 -0700 | [diff] [blame] | 842 | // 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] | 843 | CHECK_EQ(self->GetState(), kNative); |
Elliott Hughes | ad7c2a3 | 2011-08-31 11:58:10 -0700 | [diff] [blame] | 844 | |
Elliott Hughes | 418d20f | 2011-09-22 14:00:39 -0700 | [diff] [blame] | 845 | // First set up JniConstants, which is used by both the runtime's built-in native |
| 846 | // methods and libcore. |
Elliott Hughes | fea966e | 2011-09-22 10:26:20 -0700 | [diff] [blame] | 847 | JniConstants::init(env); |
Elliott Hughes | eac7667 | 2012-05-24 21:56:51 -0700 | [diff] [blame] | 848 | WellKnownClasses::Init(env); |
Elliott Hughes | fea966e | 2011-09-22 10:26:20 -0700 | [diff] [blame] | 849 | |
Elliott Hughes | 418d20f | 2011-09-22 14:00:39 -0700 | [diff] [blame] | 850 | // Then set up the native methods provided by the runtime itself. |
Elliott Hughes | ad7c2a3 | 2011-08-31 11:58:10 -0700 | [diff] [blame] | 851 | RegisterRuntimeNativeMethods(env); |
| 852 | |
Elliott Hughes | 418d20f | 2011-09-22 14:00:39 -0700 | [diff] [blame] | 853 | // Then set up libcore, which is just a regular JNI library with a regular JNI_OnLoad. |
| 854 | // Most JNI libraries can just use System.loadLibrary, but libcore can't because it's |
| 855 | // the library that implements System.loadLibrary! |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 856 | { |
| 857 | std::string mapped_name(StringPrintf(OS_SHARED_LIB_FORMAT_STR, "javacore")); |
| 858 | std::string reason; |
| 859 | self->TransitionFromSuspendedToRunnable(); |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 860 | StackHandleScope<1> hs(self); |
| 861 | auto class_loader(hs.NewHandle<mirror::ClassLoader>(nullptr)); |
Mathieu Chartier | 055d46c | 2014-02-06 11:22:17 -0800 | [diff] [blame] | 862 | if (!instance_->java_vm_->LoadNativeLibrary(mapped_name, class_loader, &reason)) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 863 | LOG(FATAL) << "LoadNativeLibrary failed for \"" << mapped_name << "\": " << reason; |
| 864 | } |
| 865 | self->TransitionFromRunnableToSuspended(kNative); |
| 866 | } |
Ian Rogers | ef28b14 | 2012-11-30 14:22:18 -0800 | [diff] [blame] | 867 | |
| 868 | // Initialize well known classes that may invoke runtime native methods. |
| 869 | WellKnownClasses::LateInit(env); |
| 870 | |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 871 | VLOG(startup) << "Runtime::InitNativeMethods exiting"; |
Elliott Hughes | ad7c2a3 | 2011-08-31 11:58:10 -0700 | [diff] [blame] | 872 | } |
| 873 | |
Ian Rogers | 365c102 | 2012-06-22 15:05:28 -0700 | [diff] [blame] | 874 | void Runtime::InitThreadGroups(Thread* self) { |
| 875 | JNIEnvExt* env = self->GetJniEnv(); |
| 876 | ScopedJniEnvLocalRefState env_state(env); |
| 877 | main_thread_group_ = |
Brian Carlstrom | 491ca9e | 2014-03-02 18:24:38 -0800 | [diff] [blame] | 878 | env->NewGlobalRef(env->GetStaticObjectField( |
| 879 | WellKnownClasses::java_lang_ThreadGroup, |
| 880 | WellKnownClasses::java_lang_ThreadGroup_mainThreadGroup)); |
Brian Carlstrom | 034f76b | 2012-08-01 15:51:58 -0700 | [diff] [blame] | 881 | CHECK(main_thread_group_ != NULL || IsCompiler()); |
Ian Rogers | 365c102 | 2012-06-22 15:05:28 -0700 | [diff] [blame] | 882 | system_thread_group_ = |
Brian Carlstrom | 491ca9e | 2014-03-02 18:24:38 -0800 | [diff] [blame] | 883 | env->NewGlobalRef(env->GetStaticObjectField( |
| 884 | WellKnownClasses::java_lang_ThreadGroup, |
| 885 | WellKnownClasses::java_lang_ThreadGroup_systemThreadGroup)); |
Brian Carlstrom | 034f76b | 2012-08-01 15:51:58 -0700 | [diff] [blame] | 886 | CHECK(system_thread_group_ != NULL || IsCompiler()); |
| 887 | } |
| 888 | |
| 889 | jobject Runtime::GetMainThreadGroup() const { |
| 890 | CHECK(main_thread_group_ != NULL || IsCompiler()); |
| 891 | return main_thread_group_; |
| 892 | } |
| 893 | |
| 894 | jobject Runtime::GetSystemThreadGroup() const { |
| 895 | CHECK(system_thread_group_ != NULL || IsCompiler()); |
| 896 | return system_thread_group_; |
Ian Rogers | 365c102 | 2012-06-22 15:05:28 -0700 | [diff] [blame] | 897 | } |
| 898 | |
Brian Carlstrom | ce88853 | 2013-10-10 00:32:58 -0700 | [diff] [blame] | 899 | jobject Runtime::GetSystemClassLoader() const { |
| 900 | CHECK(system_class_loader_ != NULL || IsCompiler()); |
| 901 | return system_class_loader_; |
| 902 | } |
| 903 | |
Elliott Hughes | ad7c2a3 | 2011-08-31 11:58:10 -0700 | [diff] [blame] | 904 | void Runtime::RegisterRuntimeNativeMethods(JNIEnv* env) { |
| 905 | #define REGISTER(FN) extern void FN(JNIEnv*); FN(env) |
Ian Rogers | 5167c97 | 2012-02-03 10:41:20 -0800 | [diff] [blame] | 906 | // Register Throwable first so that registration of other native methods can throw exceptions |
| 907 | REGISTER(register_java_lang_Throwable); |
Brian Carlstrom | f91c8c3 | 2011-09-21 17:30:34 -0700 | [diff] [blame] | 908 | REGISTER(register_dalvik_system_DexFile); |
Elliott Hughes | 9d5ccec | 2011-09-19 13:19:50 -0700 | [diff] [blame] | 909 | REGISTER(register_dalvik_system_VMDebug); |
Elliott Hughes | 7ede61e | 2011-09-14 18:18:06 -0700 | [diff] [blame] | 910 | REGISTER(register_dalvik_system_VMRuntime); |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 911 | REGISTER(register_dalvik_system_VMStack); |
Narayan Kamath | 8b2c8b9 | 2014-03-31 16:44:54 +0100 | [diff] [blame] | 912 | REGISTER(register_dalvik_system_ZygoteHooks); |
Elliott Hughes | d369bb7 | 2011-09-12 14:41:14 -0700 | [diff] [blame] | 913 | REGISTER(register_java_lang_Class); |
Ian Rogers | 8b2c0b9 | 2013-09-19 02:56:49 -0700 | [diff] [blame] | 914 | REGISTER(register_java_lang_DexCache); |
Elliott Hughes | bf86d04 | 2011-08-31 17:53:14 -0700 | [diff] [blame] | 915 | REGISTER(register_java_lang_Object); |
| 916 | REGISTER(register_java_lang_Runtime); |
| 917 | REGISTER(register_java_lang_String); |
| 918 | REGISTER(register_java_lang_System); |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 919 | REGISTER(register_java_lang_Thread); |
Elliott Hughes | 64bf5a3 | 2011-09-20 14:43:12 -0700 | [diff] [blame] | 920 | REGISTER(register_java_lang_VMClassLoader); |
Mathieu Chartier | 78f7b4c | 2014-05-06 10:57:27 -0700 | [diff] [blame] | 921 | REGISTER(register_java_lang_ref_Reference); |
Brian Carlstrom | 5b8e4c8 | 2011-09-18 01:38:59 -0700 | [diff] [blame] | 922 | REGISTER(register_java_lang_reflect_Array); |
Elliott Hughes | 2a20cfd | 2011-09-23 19:30:41 -0700 | [diff] [blame] | 923 | REGISTER(register_java_lang_reflect_Constructor); |
Brian Carlstrom | f867b6f | 2011-09-16 12:17:25 -0700 | [diff] [blame] | 924 | REGISTER(register_java_lang_reflect_Field); |
| 925 | REGISTER(register_java_lang_reflect_Method); |
Jesse Wilson | 95caa79 | 2011-10-12 18:14:17 -0400 | [diff] [blame] | 926 | REGISTER(register_java_lang_reflect_Proxy); |
Elliott Hughes | bf86d04 | 2011-08-31 17:53:14 -0700 | [diff] [blame] | 927 | REGISTER(register_java_util_concurrent_atomic_AtomicLong); |
Brian Carlstrom | 395520e | 2011-09-25 19:35:00 -0700 | [diff] [blame] | 928 | REGISTER(register_org_apache_harmony_dalvik_ddmc_DdmServer); |
Elliott Hughes | f6a1e1e | 2011-10-25 16:28:04 -0700 | [diff] [blame] | 929 | REGISTER(register_org_apache_harmony_dalvik_ddmc_DdmVmInternal); |
Elliott Hughes | 5ee7a8b | 2011-09-13 16:40:07 -0700 | [diff] [blame] | 930 | REGISTER(register_sun_misc_Unsafe); |
Elliott Hughes | ad7c2a3 | 2011-08-31 11:58:10 -0700 | [diff] [blame] | 931 | #undef REGISTER |
| 932 | } |
| 933 | |
Elliott Hughes | c967f78 | 2012-04-16 10:23:15 -0700 | [diff] [blame] | 934 | void Runtime::DumpForSigQuit(std::ostream& os) { |
Elliott Hughes | cac6cc7 | 2011-11-03 20:31:21 -0700 | [diff] [blame] | 935 | GetClassLinker()->DumpForSigQuit(os); |
| 936 | GetInternTable()->DumpForSigQuit(os); |
Elliott Hughes | ae80b49 | 2012-04-24 10:43:17 -0700 | [diff] [blame] | 937 | GetJavaVM()->DumpForSigQuit(os); |
Elliott Hughes | c967f78 | 2012-04-16 10:23:15 -0700 | [diff] [blame] | 938 | GetHeap()->DumpForSigQuit(os); |
Elliott Hughes | 42ee142 | 2011-09-06 12:33:32 -0700 | [diff] [blame] | 939 | os << "\n"; |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 940 | |
Elliott Hughes | c967f78 | 2012-04-16 10:23:15 -0700 | [diff] [blame] | 941 | thread_list_->DumpForSigQuit(os); |
Ian Rogers | 56edc43 | 2013-01-18 16:51:51 -0800 | [diff] [blame] | 942 | BaseMutex::DumpAll(os); |
Elliott Hughes | e27955c | 2011-08-26 15:21:24 -0700 | [diff] [blame] | 943 | } |
| 944 | |
Elliott Hughes | 21a5bf2 | 2011-12-07 14:35:20 -0800 | [diff] [blame] | 945 | void Runtime::DumpLockHolders(std::ostream& os) { |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 946 | uint64_t mutator_lock_owner = Locks::mutator_lock_->GetExclusiveOwnerTid(); |
Elliott Hughes | 21a5bf2 | 2011-12-07 14:35:20 -0800 | [diff] [blame] | 947 | pid_t thread_list_lock_owner = GetThreadList()->GetLockOwner(); |
| 948 | pid_t classes_lock_owner = GetClassLinker()->GetClassesLockOwner(); |
| 949 | pid_t dex_lock_owner = GetClassLinker()->GetDexLockOwner(); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 950 | if ((thread_list_lock_owner | classes_lock_owner | dex_lock_owner) != 0) { |
| 951 | os << "Mutator lock exclusive owner tid: " << mutator_lock_owner << "\n" |
Elliott Hughes | 21a5bf2 | 2011-12-07 14:35:20 -0800 | [diff] [blame] | 952 | << "ThreadList lock owner tid: " << thread_list_lock_owner << "\n" |
| 953 | << "ClassLinker classes lock owner tid: " << classes_lock_owner << "\n" |
| 954 | << "ClassLinker dex lock owner tid: " << dex_lock_owner << "\n"; |
| 955 | } |
| 956 | } |
| 957 | |
Elliott Hughes | 9d5ccec | 2011-09-19 13:19:50 -0700 | [diff] [blame] | 958 | void Runtime::SetStatsEnabled(bool new_state) { |
| 959 | if (new_state == true) { |
| 960 | GetStats()->Clear(~0); |
| 961 | // TODO: wouldn't it make more sense to clear _all_ threads' stats? |
| 962 | Thread::Current()->GetStats()->Clear(~0); |
Ian Rogers | fa82427 | 2013-11-05 16:12:57 -0800 | [diff] [blame] | 963 | GetInstrumentation()->InstrumentQuickAllocEntryPoints(); |
Hiroshi Yamauchi | 3b4c189 | 2013-09-12 21:33:12 -0700 | [diff] [blame] | 964 | } else { |
Ian Rogers | fa82427 | 2013-11-05 16:12:57 -0800 | [diff] [blame] | 965 | GetInstrumentation()->UninstrumentQuickAllocEntryPoints(); |
Elliott Hughes | 9d5ccec | 2011-09-19 13:19:50 -0700 | [diff] [blame] | 966 | } |
| 967 | stats_enabled_ = new_state; |
| 968 | } |
| 969 | |
| 970 | void Runtime::ResetStats(int kinds) { |
| 971 | GetStats()->Clear(kinds & 0xffff); |
| 972 | // TODO: wouldn't it make more sense to clear _all_ threads' stats? |
| 973 | Thread::Current()->GetStats()->Clear(kinds >> 16); |
| 974 | } |
| 975 | |
Elliott Hughes | 9d5ccec | 2011-09-19 13:19:50 -0700 | [diff] [blame] | 976 | int32_t Runtime::GetStat(int kind) { |
| 977 | RuntimeStats* stats; |
| 978 | if (kind < (1<<16)) { |
| 979 | stats = GetStats(); |
| 980 | } else { |
| 981 | stats = Thread::Current()->GetStats(); |
| 982 | kind >>= 16; |
| 983 | } |
| 984 | switch (kind) { |
| 985 | case KIND_ALLOCATED_OBJECTS: |
| 986 | return stats->allocated_objects; |
| 987 | case KIND_ALLOCATED_BYTES: |
| 988 | return stats->allocated_bytes; |
| 989 | case KIND_FREED_OBJECTS: |
| 990 | return stats->freed_objects; |
| 991 | case KIND_FREED_BYTES: |
| 992 | return stats->freed_bytes; |
| 993 | case KIND_GC_INVOCATIONS: |
| 994 | return stats->gc_for_alloc_count; |
| 995 | case KIND_CLASS_INIT_COUNT: |
| 996 | return stats->class_init_count; |
| 997 | case KIND_CLASS_INIT_TIME: |
| 998 | // Convert ns to us, reduce to 32 bits. |
Elliott Hughes | 398f64b | 2012-03-26 18:05:48 -0700 | [diff] [blame] | 999 | return static_cast<int>(stats->class_init_time_ns / 1000); |
Elliott Hughes | 9d5ccec | 2011-09-19 13:19:50 -0700 | [diff] [blame] | 1000 | case KIND_EXT_ALLOCATED_OBJECTS: |
| 1001 | case KIND_EXT_ALLOCATED_BYTES: |
| 1002 | case KIND_EXT_FREED_OBJECTS: |
| 1003 | case KIND_EXT_FREED_BYTES: |
| 1004 | return 0; // backward compatibility |
| 1005 | default: |
Elliott Hughes | 7b9d996 | 2012-04-20 18:48:18 -0700 | [diff] [blame] | 1006 | LOG(FATAL) << "Unknown statistic " << kind; |
Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 1007 | return -1; // unreachable |
Elliott Hughes | 9d5ccec | 2011-09-19 13:19:50 -0700 | [diff] [blame] | 1008 | } |
| 1009 | } |
| 1010 | |
Elliott Hughes | c1674ed | 2011-08-25 18:09:09 -0700 | [diff] [blame] | 1011 | void Runtime::BlockSignals() { |
Elliott Hughes | 457005c | 2012-04-16 13:54:25 -0700 | [diff] [blame] | 1012 | SignalSet signals; |
| 1013 | signals.Add(SIGPIPE); |
Elliott Hughes | c1674ed | 2011-08-25 18:09:09 -0700 | [diff] [blame] | 1014 | // SIGQUIT is used to dump the runtime's state (including stack traces). |
Elliott Hughes | 457005c | 2012-04-16 13:54:25 -0700 | [diff] [blame] | 1015 | signals.Add(SIGQUIT); |
Elliott Hughes | 0879504 | 2012-04-03 14:48:52 -0700 | [diff] [blame] | 1016 | // SIGUSR1 is used to initiate a GC. |
Elliott Hughes | 457005c | 2012-04-16 13:54:25 -0700 | [diff] [blame] | 1017 | signals.Add(SIGUSR1); |
| 1018 | signals.Block(); |
Elliott Hughes | c1674ed | 2011-08-25 18:09:09 -0700 | [diff] [blame] | 1019 | } |
| 1020 | |
Mathieu Chartier | 664bebf | 2012-11-12 16:54:11 -0800 | [diff] [blame] | 1021 | bool Runtime::AttachCurrentThread(const char* thread_name, bool as_daemon, jobject thread_group, |
| 1022 | bool create_peer) { |
Brian Carlstrom | 21ecab6 | 2014-08-18 15:38:34 -0700 | [diff] [blame] | 1023 | return Thread::Attach(thread_name, as_daemon, thread_group, create_peer) != NULL; |
Carl Shapiro | 61e019d | 2011-07-14 16:53:09 -0700 | [diff] [blame] | 1024 | } |
| 1025 | |
Elliott Hughes | d92bec4 | 2011-09-02 17:04:36 -0700 | [diff] [blame] | 1026 | void Runtime::DetachCurrentThread() { |
Brian Carlstrom | 4d57143 | 2012-05-16 00:21:41 -0700 | [diff] [blame] | 1027 | Thread* self = Thread::Current(); |
| 1028 | if (self == NULL) { |
| 1029 | LOG(FATAL) << "attempting to detach thread that is not attached"; |
| 1030 | } |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 1031 | if (self->HasManagedStack()) { |
Elliott Hughes | 22869a9 | 2012-03-27 14:08:24 -0700 | [diff] [blame] | 1032 | LOG(FATAL) << *Thread::Current() << " attempting to detach while still running code"; |
| 1033 | } |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1034 | thread_list_->Unregister(self); |
Carl Shapiro | 1fb8620 | 2011-06-27 17:43:13 -0700 | [diff] [blame] | 1035 | } |
| 1036 | |
Hiroshi Yamauchi | ab08811 | 2014-07-14 13:00:14 -0700 | [diff] [blame] | 1037 | mirror::Throwable* Runtime::GetPreAllocatedOutOfMemoryError() { |
Hiroshi Yamauchi | 94f7b49 | 2014-07-22 18:08:23 -0700 | [diff] [blame] | 1038 | mirror::Throwable* oome = pre_allocated_OutOfMemoryError_.Read(); |
Hiroshi Yamauchi | ab08811 | 2014-07-14 13:00:14 -0700 | [diff] [blame] | 1039 | if (oome == NULL) { |
Ian Rogers | a436fde | 2013-08-27 23:34:06 -0700 | [diff] [blame] | 1040 | LOG(ERROR) << "Failed to return pre-allocated OOME"; |
| 1041 | } |
Hiroshi Yamauchi | ab08811 | 2014-07-14 13:00:14 -0700 | [diff] [blame] | 1042 | return oome; |
Ian Rogers | a436fde | 2013-08-27 23:34:06 -0700 | [diff] [blame] | 1043 | } |
| 1044 | |
Mathieu Chartier | 893263b | 2014-03-04 11:07:42 -0800 | [diff] [blame] | 1045 | void Runtime::VisitConstantRoots(RootCallback* callback, void* arg) { |
| 1046 | // 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] | 1047 | // need to be visited once per GC since they never change. |
Mathieu Chartier | 83c8ee0 | 2014-01-28 14:50:23 -0800 | [diff] [blame] | 1048 | mirror::ArtField::VisitRoots(callback, arg); |
| 1049 | mirror::ArtMethod::VisitRoots(callback, arg); |
| 1050 | mirror::Class::VisitRoots(callback, arg); |
Fred Shih | 4ee7a66 | 2014-07-11 09:59:27 -0700 | [diff] [blame] | 1051 | mirror::Reference::VisitRoots(callback, arg); |
Mathieu Chartier | 83c8ee0 | 2014-01-28 14:50:23 -0800 | [diff] [blame] | 1052 | mirror::StackTraceElement::VisitRoots(callback, arg); |
| 1053 | mirror::String::VisitRoots(callback, arg); |
| 1054 | mirror::Throwable::VisitRoots(callback, arg); |
Mathieu Chartier | c528dba | 2013-11-26 12:00:11 -0800 | [diff] [blame] | 1055 | // Visit all the primitive array types classes. |
Mathieu Chartier | 83c8ee0 | 2014-01-28 14:50:23 -0800 | [diff] [blame] | 1056 | mirror::PrimitiveArray<uint8_t>::VisitRoots(callback, arg); // BooleanArray |
| 1057 | mirror::PrimitiveArray<int8_t>::VisitRoots(callback, arg); // ByteArray |
| 1058 | mirror::PrimitiveArray<uint16_t>::VisitRoots(callback, arg); // CharArray |
| 1059 | mirror::PrimitiveArray<double>::VisitRoots(callback, arg); // DoubleArray |
| 1060 | mirror::PrimitiveArray<float>::VisitRoots(callback, arg); // FloatArray |
| 1061 | mirror::PrimitiveArray<int32_t>::VisitRoots(callback, arg); // IntArray |
| 1062 | mirror::PrimitiveArray<int64_t>::VisitRoots(callback, arg); // LongArray |
| 1063 | mirror::PrimitiveArray<int16_t>::VisitRoots(callback, arg); // ShortArray |
Mathieu Chartier | 893263b | 2014-03-04 11:07:42 -0800 | [diff] [blame] | 1064 | } |
| 1065 | |
| 1066 | void Runtime::VisitConcurrentRoots(RootCallback* callback, void* arg, VisitRootFlags flags) { |
| 1067 | intern_table_->VisitRoots(callback, arg, flags); |
| 1068 | class_linker_->VisitRoots(callback, arg, flags); |
| 1069 | if ((flags & kVisitRootFlagNewRoots) == 0) { |
| 1070 | // Guaranteed to have no new roots in the constant roots. |
| 1071 | VisitConstantRoots(callback, arg); |
| 1072 | } |
| 1073 | } |
| 1074 | |
| 1075 | void Runtime::VisitNonThreadRoots(RootCallback* callback, void* arg) { |
Mathieu Chartier | 83c8ee0 | 2014-01-28 14:50:23 -0800 | [diff] [blame] | 1076 | java_vm_->VisitRoots(callback, arg); |
Hiroshi Yamauchi | 94f7b49 | 2014-07-22 18:08:23 -0700 | [diff] [blame] | 1077 | if (!pre_allocated_OutOfMemoryError_.IsNull()) { |
| 1078 | pre_allocated_OutOfMemoryError_.VisitRoot(callback, arg, 0, kRootVMInternal); |
| 1079 | DCHECK(!pre_allocated_OutOfMemoryError_.IsNull()); |
Elliott Hughes | 225f5a1 | 2012-06-11 11:23:48 -0700 | [diff] [blame] | 1080 | } |
Hiroshi Yamauchi | 94f7b49 | 2014-07-22 18:08:23 -0700 | [diff] [blame] | 1081 | resolution_method_.VisitRoot(callback, arg, 0, kRootVMInternal); |
| 1082 | DCHECK(!resolution_method_.IsNull()); |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 1083 | if (HasImtConflictMethod()) { |
Hiroshi Yamauchi | 94f7b49 | 2014-07-22 18:08:23 -0700 | [diff] [blame] | 1084 | imt_conflict_method_.VisitRoot(callback, arg, 0, kRootVMInternal); |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 1085 | } |
| 1086 | if (HasDefaultImt()) { |
Hiroshi Yamauchi | 94f7b49 | 2014-07-22 18:08:23 -0700 | [diff] [blame] | 1087 | default_imt_.VisitRoot(callback, arg, 0, kRootVMInternal); |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 1088 | } |
Ian Rogers | 4f0d07c | 2011-10-06 23:38:47 -0700 | [diff] [blame] | 1089 | for (int i = 0; i < Runtime::kLastCalleeSaveType; i++) { |
Hiroshi Yamauchi | 94f7b49 | 2014-07-22 18:08:23 -0700 | [diff] [blame] | 1090 | if (!callee_save_methods_[i].IsNull()) { |
| 1091 | callee_save_methods_[i].VisitRoot(callback, arg, 0, kRootVMInternal); |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 1092 | } |
Ian Rogers | 4f0d07c | 2011-10-06 23:38:47 -0700 | [diff] [blame] | 1093 | } |
Mathieu Chartier | c528dba | 2013-11-26 12:00:11 -0800 | [diff] [blame] | 1094 | { |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 1095 | MutexLock mu(Thread::Current(), method_verifier_lock_); |
Mathieu Chartier | c528dba | 2013-11-26 12:00:11 -0800 | [diff] [blame] | 1096 | for (verifier::MethodVerifier* verifier : method_verifiers_) { |
Mathieu Chartier | 83c8ee0 | 2014-01-28 14:50:23 -0800 | [diff] [blame] | 1097 | verifier->VisitRoots(callback, arg); |
Mathieu Chartier | c528dba | 2013-11-26 12:00:11 -0800 | [diff] [blame] | 1098 | } |
| 1099 | } |
Sebastien Hertz | ee1d79a | 2014-02-21 15:46:30 +0100 | [diff] [blame] | 1100 | if (preinitialization_transaction_ != nullptr) { |
| 1101 | preinitialization_transaction_->VisitRoots(callback, arg); |
Mathieu Chartier | 893263b | 2014-03-04 11:07:42 -0800 | [diff] [blame] | 1102 | } |
Mathieu Chartier | 3b05e9b | 2014-03-25 09:29:43 -0700 | [diff] [blame] | 1103 | instrumentation_.VisitRoots(callback, arg); |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 1104 | } |
| 1105 | |
Mathieu Chartier | 83c8ee0 | 2014-01-28 14:50:23 -0800 | [diff] [blame] | 1106 | void Runtime::VisitNonConcurrentRoots(RootCallback* callback, void* arg) { |
| 1107 | thread_list_->VisitRoots(callback, arg); |
| 1108 | VisitNonThreadRoots(callback, arg); |
Mathieu Chartier | 858f1c5 | 2012-10-17 17:45:55 -0700 | [diff] [blame] | 1109 | } |
| 1110 | |
Mathieu Chartier | 893263b | 2014-03-04 11:07:42 -0800 | [diff] [blame] | 1111 | void Runtime::VisitRoots(RootCallback* callback, void* arg, VisitRootFlags flags) { |
Mathieu Chartier | 83c8ee0 | 2014-01-28 14:50:23 -0800 | [diff] [blame] | 1112 | VisitNonConcurrentRoots(callback, arg); |
Mathieu Chartier | 119c6bd | 2014-05-09 14:11:47 -0700 | [diff] [blame] | 1113 | VisitConcurrentRoots(callback, arg, flags); |
Mathieu Chartier | 9ebae1f | 2012-10-15 17:38:16 -0700 | [diff] [blame] | 1114 | } |
| 1115 | |
Jeff Hao | 88474b4 | 2013-10-23 16:24:40 -0700 | [diff] [blame] | 1116 | mirror::ObjectArray<mirror::ArtMethod>* Runtime::CreateDefaultImt(ClassLinker* cl) { |
| 1117 | Thread* self = Thread::Current(); |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 1118 | StackHandleScope<1> hs(self); |
| 1119 | Handle<mirror::ObjectArray<mirror::ArtMethod>> imtable( |
| 1120 | hs.NewHandle(cl->AllocArtMethodArray(self, 64))); |
Jeff Hao | 88474b4 | 2013-10-23 16:24:40 -0700 | [diff] [blame] | 1121 | mirror::ArtMethod* imt_conflict_method = Runtime::Current()->GetImtConflictMethod(); |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 1122 | 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] | 1123 | imtable->Set<false>(i, imt_conflict_method); |
Jeff Hao | 88474b4 | 2013-10-23 16:24:40 -0700 | [diff] [blame] | 1124 | } |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 1125 | return imtable.Get(); |
Jeff Hao | 88474b4 | 2013-10-23 16:24:40 -0700 | [diff] [blame] | 1126 | } |
| 1127 | |
| 1128 | mirror::ArtMethod* Runtime::CreateImtConflictMethod() { |
Jeff Hao | 88474b4 | 2013-10-23 16:24:40 -0700 | [diff] [blame] | 1129 | Thread* self = Thread::Current(); |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 1130 | Runtime* runtime = Runtime::Current(); |
| 1131 | ClassLinker* class_linker = runtime->GetClassLinker(); |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 1132 | StackHandleScope<1> hs(self); |
| 1133 | Handle<mirror::ArtMethod> method(hs.NewHandle(class_linker->AllocArtMethod(self))); |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 1134 | method->SetDeclaringClass(mirror::ArtMethod::GetJavaLangReflectArtMethod()); |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 1135 | // TODO: use a special method for imt conflict method saves. |
Jeff Hao | 88474b4 | 2013-10-23 16:24:40 -0700 | [diff] [blame] | 1136 | method->SetDexMethodIndex(DexFile::kDexNoIndex); |
| 1137 | // When compiling, the code pointer will get set later when the image is loaded. |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 1138 | if (runtime->IsCompiler()) { |
| 1139 | method->SetEntryPointFromPortableCompiledCode(nullptr); |
| 1140 | method->SetEntryPointFromQuickCompiledCode(nullptr); |
| 1141 | } else { |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 1142 | method->SetEntryPointFromPortableCompiledCode(class_linker->GetPortableImtConflictTrampoline()); |
| 1143 | method->SetEntryPointFromQuickCompiledCode(class_linker->GetQuickImtConflictTrampoline()); |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 1144 | } |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 1145 | return method.Get(); |
Jeff Hao | 88474b4 | 2013-10-23 16:24:40 -0700 | [diff] [blame] | 1146 | } |
| 1147 | |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 1148 | mirror::ArtMethod* Runtime::CreateResolutionMethod() { |
Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 1149 | Thread* self = Thread::Current(); |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 1150 | Runtime* runtime = Runtime::Current(); |
| 1151 | ClassLinker* class_linker = runtime->GetClassLinker(); |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 1152 | StackHandleScope<1> hs(self); |
| 1153 | Handle<mirror::ArtMethod> method(hs.NewHandle(class_linker->AllocArtMethod(self))); |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 1154 | method->SetDeclaringClass(mirror::ArtMethod::GetJavaLangReflectArtMethod()); |
Ian Rogers | 1984651 | 2012-02-24 11:42:47 -0800 | [diff] [blame] | 1155 | // TODO: use a special method for resolution method saves |
Ian Rogers | 8b2c0b9 | 2013-09-19 02:56:49 -0700 | [diff] [blame] | 1156 | method->SetDexMethodIndex(DexFile::kDexNoIndex); |
Jeff Hao | 58df327 | 2013-04-22 15:28:53 -0700 | [diff] [blame] | 1157 | // When compiling, the code pointer will get set later when the image is loaded. |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 1158 | if (runtime->IsCompiler()) { |
| 1159 | method->SetEntryPointFromPortableCompiledCode(nullptr); |
| 1160 | method->SetEntryPointFromQuickCompiledCode(nullptr); |
| 1161 | } else { |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 1162 | method->SetEntryPointFromPortableCompiledCode(class_linker->GetPortableResolutionTrampoline()); |
| 1163 | method->SetEntryPointFromQuickCompiledCode(class_linker->GetQuickResolutionTrampoline()); |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 1164 | } |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 1165 | return method.Get(); |
Ian Rogers | 1984651 | 2012-02-24 11:42:47 -0800 | [diff] [blame] | 1166 | } |
| 1167 | |
Vladimir Marko | 7624d25 | 2014-05-02 14:40:15 +0100 | [diff] [blame] | 1168 | mirror::ArtMethod* Runtime::CreateCalleeSaveMethod(CalleeSaveType type) { |
Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 1169 | Thread* self = Thread::Current(); |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 1170 | Runtime* runtime = Runtime::Current(); |
| 1171 | ClassLinker* class_linker = runtime->GetClassLinker(); |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 1172 | StackHandleScope<1> hs(self); |
| 1173 | Handle<mirror::ArtMethod> method(hs.NewHandle(class_linker->AllocArtMethod(self))); |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 1174 | method->SetDeclaringClass(mirror::ArtMethod::GetJavaLangReflectArtMethod()); |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 1175 | // TODO: use a special method for callee saves |
Ian Rogers | 8b2c0b9 | 2013-09-19 02:56:49 -0700 | [diff] [blame] | 1176 | method->SetDexMethodIndex(DexFile::kDexNoIndex); |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 1177 | method->SetEntryPointFromPortableCompiledCode(nullptr); |
| 1178 | method->SetEntryPointFromQuickCompiledCode(nullptr); |
Vladimir Marko | 7624d25 | 2014-05-02 14:40:15 +0100 | [diff] [blame] | 1179 | DCHECK_NE(instruction_set_, kNone); |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 1180 | return method.Get(); |
Ian Rogers | ff1ed47 | 2011-09-20 13:46:24 -0700 | [diff] [blame] | 1181 | } |
| 1182 | |
Mathieu Chartier | c11d9b8 | 2013-09-19 10:01:59 -0700 | [diff] [blame] | 1183 | void Runtime::DisallowNewSystemWeaks() { |
| 1184 | monitor_list_->DisallowNewMonitors(); |
| 1185 | intern_table_->DisallowNewInterns(); |
| 1186 | java_vm_->DisallowNewWeakGlobals(); |
| 1187 | } |
| 1188 | |
| 1189 | void Runtime::AllowNewSystemWeaks() { |
| 1190 | monitor_list_->AllowNewMonitors(); |
| 1191 | intern_table_->AllowNewInterns(); |
| 1192 | java_vm_->AllowNewWeakGlobals(); |
| 1193 | } |
| 1194 | |
Vladimir Marko | 7624d25 | 2014-05-02 14:40:15 +0100 | [diff] [blame] | 1195 | void Runtime::SetInstructionSet(InstructionSet instruction_set) { |
| 1196 | instruction_set_ = instruction_set; |
| 1197 | if ((instruction_set_ == kThumb2) || (instruction_set_ == kArm)) { |
| 1198 | for (int i = 0; i != kLastCalleeSaveType; ++i) { |
| 1199 | CalleeSaveType type = static_cast<CalleeSaveType>(i); |
| 1200 | callee_save_method_frame_infos_[i] = arm::ArmCalleeSaveMethodFrameInfo(type); |
| 1201 | } |
| 1202 | } else if (instruction_set_ == kMips) { |
| 1203 | for (int i = 0; i != kLastCalleeSaveType; ++i) { |
| 1204 | CalleeSaveType type = static_cast<CalleeSaveType>(i); |
| 1205 | callee_save_method_frame_infos_[i] = mips::MipsCalleeSaveMethodFrameInfo(type); |
| 1206 | } |
| 1207 | } else if (instruction_set_ == kX86) { |
| 1208 | for (int i = 0; i != kLastCalleeSaveType; ++i) { |
| 1209 | CalleeSaveType type = static_cast<CalleeSaveType>(i); |
| 1210 | callee_save_method_frame_infos_[i] = x86::X86CalleeSaveMethodFrameInfo(type); |
| 1211 | } |
| 1212 | } else if (instruction_set_ == kX86_64) { |
| 1213 | for (int i = 0; i != kLastCalleeSaveType; ++i) { |
| 1214 | CalleeSaveType type = static_cast<CalleeSaveType>(i); |
| 1215 | callee_save_method_frame_infos_[i] = x86_64::X86_64CalleeSaveMethodFrameInfo(type); |
| 1216 | } |
| 1217 | } else if (instruction_set_ == kArm64) { |
| 1218 | for (int i = 0; i != kLastCalleeSaveType; ++i) { |
| 1219 | CalleeSaveType type = static_cast<CalleeSaveType>(i); |
| 1220 | callee_save_method_frame_infos_[i] = arm64::Arm64CalleeSaveMethodFrameInfo(type); |
| 1221 | } |
| 1222 | } else { |
| 1223 | UNIMPLEMENTED(FATAL) << instruction_set_; |
| 1224 | } |
| 1225 | } |
| 1226 | |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 1227 | void Runtime::SetCalleeSaveMethod(mirror::ArtMethod* method, CalleeSaveType type) { |
Ian Rogers | 4f0d07c | 2011-10-06 23:38:47 -0700 | [diff] [blame] | 1228 | DCHECK_LT(static_cast<int>(type), static_cast<int>(kLastCalleeSaveType)); |
Hiroshi Yamauchi | 94f7b49 | 2014-07-22 18:08:23 -0700 | [diff] [blame] | 1229 | callee_save_methods_[type] = GcRoot<mirror::ArtMethod>(method); |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 1230 | } |
| 1231 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1232 | const std::vector<const DexFile*>& Runtime::GetCompileTimeClassPath(jobject class_loader) { |
Elliott Hughes | b3bd5f0 | 2012-03-08 21:05:27 -0800 | [diff] [blame] | 1233 | if (class_loader == NULL) { |
| 1234 | return GetClassLinker()->GetBootClassPath(); |
| 1235 | } |
| 1236 | CHECK(UseCompileTimeClassPath()); |
| 1237 | CompileTimeClassPaths::const_iterator it = compile_time_class_paths_.find(class_loader); |
| 1238 | CHECK(it != compile_time_class_paths_.end()); |
| 1239 | return it->second; |
| 1240 | } |
| 1241 | |
Brian Carlstrom | 491ca9e | 2014-03-02 18:24:38 -0800 | [diff] [blame] | 1242 | void Runtime::SetCompileTimeClassPath(jobject class_loader, |
| 1243 | std::vector<const DexFile*>& class_path) { |
Elliott Hughes | b3bd5f0 | 2012-03-08 21:05:27 -0800 | [diff] [blame] | 1244 | CHECK(!IsStarted()); |
| 1245 | use_compile_time_class_path_ = true; |
Elliott Hughes | a0e1806 | 2012-04-13 15:59:59 -0700 | [diff] [blame] | 1246 | compile_time_class_paths_.Put(class_loader, class_path); |
Elliott Hughes | b3bd5f0 | 2012-03-08 21:05:27 -0800 | [diff] [blame] | 1247 | } |
| 1248 | |
Mathieu Chartier | c528dba | 2013-11-26 12:00:11 -0800 | [diff] [blame] | 1249 | void Runtime::AddMethodVerifier(verifier::MethodVerifier* verifier) { |
| 1250 | DCHECK(verifier != nullptr); |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 1251 | MutexLock mu(Thread::Current(), method_verifier_lock_); |
Mathieu Chartier | c528dba | 2013-11-26 12:00:11 -0800 | [diff] [blame] | 1252 | method_verifiers_.insert(verifier); |
| 1253 | } |
| 1254 | |
| 1255 | void Runtime::RemoveMethodVerifier(verifier::MethodVerifier* verifier) { |
| 1256 | DCHECK(verifier != nullptr); |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 1257 | MutexLock mu(Thread::Current(), method_verifier_lock_); |
Mathieu Chartier | c528dba | 2013-11-26 12:00:11 -0800 | [diff] [blame] | 1258 | auto it = method_verifiers_.find(verifier); |
| 1259 | CHECK(it != method_verifiers_.end()); |
| 1260 | method_verifiers_.erase(it); |
| 1261 | } |
| 1262 | |
Calin Juravle | c1b643c | 2014-05-30 23:44:11 +0100 | [diff] [blame] | 1263 | void Runtime::StartProfiler(const char* profile_output_filename) { |
| 1264 | profile_output_filename_ = profile_output_filename; |
| 1265 | profiler_started_ = |
| 1266 | BackgroundMethodSamplingProfiler::Start(profile_output_filename_, profiler_options_); |
Dave Allison | 0aded08 | 2013-11-07 13:15:11 -0800 | [diff] [blame] | 1267 | } |
Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 1268 | |
| 1269 | // Transaction support. |
Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 1270 | void Runtime::EnterTransactionMode(Transaction* transaction) { |
| 1271 | DCHECK(IsCompiler()); |
| 1272 | DCHECK(transaction != nullptr); |
| 1273 | DCHECK(!IsActiveTransaction()); |
Sebastien Hertz | ee1d79a | 2014-02-21 15:46:30 +0100 | [diff] [blame] | 1274 | preinitialization_transaction_ = transaction; |
Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 1275 | } |
| 1276 | |
| 1277 | void Runtime::ExitTransactionMode() { |
| 1278 | DCHECK(IsCompiler()); |
| 1279 | DCHECK(IsActiveTransaction()); |
Sebastien Hertz | ee1d79a | 2014-02-21 15:46:30 +0100 | [diff] [blame] | 1280 | preinitialization_transaction_ = nullptr; |
Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 1281 | } |
| 1282 | |
| 1283 | void Runtime::RecordWriteField32(mirror::Object* obj, MemberOffset field_offset, |
| 1284 | uint32_t value, bool is_volatile) const { |
| 1285 | DCHECK(IsCompiler()); |
| 1286 | DCHECK(IsActiveTransaction()); |
Sebastien Hertz | ee1d79a | 2014-02-21 15:46:30 +0100 | [diff] [blame] | 1287 | preinitialization_transaction_->RecordWriteField32(obj, field_offset, value, is_volatile); |
Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 1288 | } |
| 1289 | |
| 1290 | void Runtime::RecordWriteField64(mirror::Object* obj, MemberOffset field_offset, |
| 1291 | uint64_t value, bool is_volatile) const { |
| 1292 | DCHECK(IsCompiler()); |
| 1293 | DCHECK(IsActiveTransaction()); |
Sebastien Hertz | ee1d79a | 2014-02-21 15:46:30 +0100 | [diff] [blame] | 1294 | preinitialization_transaction_->RecordWriteField64(obj, field_offset, value, is_volatile); |
Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 1295 | } |
| 1296 | |
| 1297 | void Runtime::RecordWriteFieldReference(mirror::Object* obj, MemberOffset field_offset, |
| 1298 | mirror::Object* value, bool is_volatile) const { |
| 1299 | DCHECK(IsCompiler()); |
| 1300 | DCHECK(IsActiveTransaction()); |
Sebastien Hertz | ee1d79a | 2014-02-21 15:46:30 +0100 | [diff] [blame] | 1301 | preinitialization_transaction_->RecordWriteFieldReference(obj, field_offset, value, is_volatile); |
Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 1302 | } |
| 1303 | |
| 1304 | void Runtime::RecordWriteArray(mirror::Array* array, size_t index, uint64_t value) const { |
| 1305 | DCHECK(IsCompiler()); |
| 1306 | DCHECK(IsActiveTransaction()); |
Sebastien Hertz | ee1d79a | 2014-02-21 15:46:30 +0100 | [diff] [blame] | 1307 | preinitialization_transaction_->RecordWriteArray(array, index, value); |
Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 1308 | } |
| 1309 | |
| 1310 | void Runtime::RecordStrongStringInsertion(mirror::String* s, uint32_t hash_code) const { |
| 1311 | DCHECK(IsCompiler()); |
| 1312 | DCHECK(IsActiveTransaction()); |
Sebastien Hertz | ee1d79a | 2014-02-21 15:46:30 +0100 | [diff] [blame] | 1313 | preinitialization_transaction_->RecordStrongStringInsertion(s, hash_code); |
Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 1314 | } |
| 1315 | |
| 1316 | void Runtime::RecordWeakStringInsertion(mirror::String* s, uint32_t hash_code) const { |
| 1317 | DCHECK(IsCompiler()); |
| 1318 | DCHECK(IsActiveTransaction()); |
Sebastien Hertz | ee1d79a | 2014-02-21 15:46:30 +0100 | [diff] [blame] | 1319 | preinitialization_transaction_->RecordWeakStringInsertion(s, hash_code); |
Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 1320 | } |
| 1321 | |
| 1322 | void Runtime::RecordStrongStringRemoval(mirror::String* s, uint32_t hash_code) const { |
| 1323 | DCHECK(IsCompiler()); |
| 1324 | DCHECK(IsActiveTransaction()); |
Sebastien Hertz | ee1d79a | 2014-02-21 15:46:30 +0100 | [diff] [blame] | 1325 | preinitialization_transaction_->RecordStrongStringRemoval(s, hash_code); |
Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 1326 | } |
| 1327 | |
| 1328 | void Runtime::RecordWeakStringRemoval(mirror::String* s, uint32_t hash_code) const { |
| 1329 | DCHECK(IsCompiler()); |
| 1330 | DCHECK(IsActiveTransaction()); |
Sebastien Hertz | ee1d79a | 2014-02-21 15:46:30 +0100 | [diff] [blame] | 1331 | preinitialization_transaction_->RecordWeakStringRemoval(s, hash_code); |
Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 1332 | } |
Mathieu Chartier | 15d3402 | 2014-02-26 17:16:38 -0800 | [diff] [blame] | 1333 | |
| 1334 | void Runtime::SetFaultMessage(const std::string& message) { |
| 1335 | MutexLock mu(Thread::Current(), fault_message_lock_); |
| 1336 | fault_message_ = message; |
| 1337 | } |
Brian Carlstrom | 491ca9e | 2014-03-02 18:24:38 -0800 | [diff] [blame] | 1338 | |
Ian Rogers | 8afeb85 | 2014-04-02 14:55:49 -0700 | [diff] [blame] | 1339 | void Runtime::AddCurrentRuntimeFeaturesAsDex2OatArguments(std::vector<std::string>* argv) |
| 1340 | const { |
Ian Rogers | 9bc5440 | 2014-04-17 16:40:01 -0700 | [diff] [blame] | 1341 | if (GetInstrumentation()->InterpretOnly()) { |
| 1342 | argv->push_back("--compiler-filter=interpret-only"); |
| 1343 | } |
| 1344 | |
Ian Rogers | 8afeb85 | 2014-04-02 14:55:49 -0700 | [diff] [blame] | 1345 | // Make the dex2oat instruction set match that of the launching runtime. If we have multiple |
| 1346 | // architecture support, dex2oat may be compiled as a different instruction-set than that |
| 1347 | // currently being executed. |
Ian Rogers | b9beb2e | 2014-05-09 16:57:40 -0700 | [diff] [blame] | 1348 | std::string instruction_set("--instruction-set="); |
| 1349 | instruction_set += GetInstructionSetString(kRuntimeISA); |
| 1350 | argv->push_back(instruction_set); |
Ian Rogers | 8afeb85 | 2014-04-02 14:55:49 -0700 | [diff] [blame] | 1351 | |
| 1352 | std::string features("--instruction-set-features="); |
| 1353 | features += GetDefaultInstructionSetFeatures(); |
| 1354 | argv->push_back(features); |
| 1355 | } |
| 1356 | |
Dave Allison | 39c3bfb | 2014-01-28 18:33:52 -0800 | [diff] [blame] | 1357 | void Runtime::UpdateProfilerState(int state) { |
Brian Carlstrom | 4d466a8 | 2014-05-08 19:05:29 -0700 | [diff] [blame] | 1358 | VLOG(profiler) << "Profiler state updated to " << state; |
Dave Allison | 39c3bfb | 2014-01-28 18:33:52 -0800 | [diff] [blame] | 1359 | } |
Carl Shapiro | 1fb8620 | 2011-06-27 17:43:13 -0700 | [diff] [blame] | 1360 | } // namespace art |