Carl Shapiro | 1fb8620 | 2011-06-27 17:43:13 -0700 | [diff] [blame] | 1 | // Copyright 2011 Google Inc. All Rights Reserved. |
| 2 | |
Brian Carlstrom | 578bbdc | 2011-07-21 14:07:47 -0700 | [diff] [blame] | 3 | #include "runtime.h" |
Carl Shapiro | 1fb8620 | 2011-06-27 17:43:13 -0700 | [diff] [blame] | 4 | |
Elliott Hughes | ffe6736 | 2011-07-17 12:09:27 -0700 | [diff] [blame] | 5 | #include <cstdio> |
| 6 | #include <cstdlib> |
Brian Carlstrom | 8a43659 | 2011-08-15 21:27:23 -0700 | [diff] [blame] | 7 | #include <limits> |
Carl Shapiro | 2ed144c | 2011-07-26 16:52:08 -0700 | [diff] [blame] | 8 | #include <vector> |
Elliott Hughes | ffe6736 | 2011-07-17 12:09:27 -0700 | [diff] [blame] | 9 | |
Elliott Hughes | 90a3369 | 2011-08-30 13:27:07 -0700 | [diff] [blame] | 10 | #include "UniquePtr.h" |
Brian Carlstrom | 578bbdc | 2011-07-21 14:07:47 -0700 | [diff] [blame] | 11 | #include "class_linker.h" |
| 12 | #include "heap.h" |
Elliott Hughes | cf4c6c4 | 2011-09-01 15:16:42 -0700 | [diff] [blame] | 13 | #include "intern_table.h" |
Elliott Hughes | c5f7c91 | 2011-08-18 14:00:42 -0700 | [diff] [blame] | 14 | #include "jni_internal.h" |
Elliott Hughes | e27955c | 2011-08-26 15:21:24 -0700 | [diff] [blame] | 15 | #include "signal_catcher.h" |
Brian Carlstrom | 578bbdc | 2011-07-21 14:07:47 -0700 | [diff] [blame] | 16 | #include "thread.h" |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 17 | #include "thread_list.h" |
Carl Shapiro | 61e019d | 2011-07-14 16:53:09 -0700 | [diff] [blame] | 18 | |
Elliott Hughes | 90a3369 | 2011-08-30 13:27:07 -0700 | [diff] [blame] | 19 | // TODO: this drags in cutil/log.h, which conflicts with our logging.h. |
| 20 | #include "JniConstants.h" |
| 21 | |
Carl Shapiro | 1fb8620 | 2011-06-27 17:43:13 -0700 | [diff] [blame] | 22 | namespace art { |
| 23 | |
Carl Shapiro | 2ed144c | 2011-07-26 16:52:08 -0700 | [diff] [blame] | 24 | Runtime* Runtime::instance_ = NULL; |
| 25 | |
Elliott Hughes | dcc2474 | 2011-09-07 14:02:44 -0700 | [diff] [blame] | 26 | Runtime::Runtime() |
Brian Carlstrom | 0a5b14d | 2011-09-27 13:29:15 -0700 | [diff] [blame] | 27 | : verbose_startup_(false), |
| 28 | default_stack_size_(Thread::kDefaultStackSize), |
Elliott Hughes | dcc2474 | 2011-09-07 14:02:44 -0700 | [diff] [blame] | 29 | thread_list_(NULL), |
| 30 | intern_table_(NULL), |
| 31 | class_linker_(NULL), |
| 32 | signal_catcher_(NULL), |
| 33 | java_vm_(NULL), |
Brian Carlstrom | 1619286 | 2011-09-12 17:50:06 -0700 | [diff] [blame] | 34 | jni_stub_array_(NULL), |
Ian Rogers | ff1ed47 | 2011-09-20 13:46:24 -0700 | [diff] [blame] | 35 | callee_save_method_(NULL), |
Elliott Hughes | dcc2474 | 2011-09-07 14:02:44 -0700 | [diff] [blame] | 36 | started_(false), |
| 37 | vfprintf_(NULL), |
| 38 | exit_(NULL), |
Elliott Hughes | 9d5ccec | 2011-09-19 13:19:50 -0700 | [diff] [blame] | 39 | abort_(NULL), |
| 40 | stats_enabled_(false) { |
Elliott Hughes | dcc2474 | 2011-09-07 14:02:44 -0700 | [diff] [blame] | 41 | } |
| 42 | |
Carl Shapiro | 61e019d | 2011-07-14 16:53:09 -0700 | [diff] [blame] | 43 | Runtime::~Runtime() { |
Elliott Hughes | 5fe594f | 2011-09-08 12:33:17 -0700 | [diff] [blame] | 44 | // Make sure our internal threads are dead before we start tearing down things they're using. |
| 45 | delete signal_catcher_; |
Elliott Hughes | 038a806 | 2011-09-18 14:12:41 -0700 | [diff] [blame] | 46 | // TODO: GC thread. |
Elliott Hughes | 5fe594f | 2011-09-08 12:33:17 -0700 | [diff] [blame] | 47 | |
Elliott Hughes | 038a806 | 2011-09-18 14:12:41 -0700 | [diff] [blame] | 48 | // 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] | 49 | delete thread_list_; |
| 50 | |
Carl Shapiro | 61e019d | 2011-07-14 16:53:09 -0700 | [diff] [blame] | 51 | delete class_linker_; |
Carl Shapiro | 69759ea | 2011-07-21 18:13:35 -0700 | [diff] [blame] | 52 | Heap::Destroy(); |
Elliott Hughes | cf4c6c4 | 2011-09-01 15:16:42 -0700 | [diff] [blame] | 53 | delete intern_table_; |
Elliott Hughes | c5f7c91 | 2011-08-18 14:00:42 -0700 | [diff] [blame] | 54 | delete java_vm_; |
Elliott Hughes | c1674ed | 2011-08-25 18:09:09 -0700 | [diff] [blame] | 55 | Thread::Shutdown(); |
Carl Shapiro | 4acf464 | 2011-07-26 18:54:13 -0700 | [diff] [blame] | 56 | // TODO: acquire a static mutex on Runtime to avoid racing. |
Brian Carlstrom | 4a289ed | 2011-08-16 17:17:49 -0700 | [diff] [blame] | 57 | CHECK(instance_ == NULL || instance_ == this); |
Carl Shapiro | 4acf464 | 2011-07-26 18:54:13 -0700 | [diff] [blame] | 58 | instance_ = NULL; |
Carl Shapiro | 61e019d | 2011-07-14 16:53:09 -0700 | [diff] [blame] | 59 | } |
| 60 | |
Elliott Hughes | ffe6736 | 2011-07-17 12:09:27 -0700 | [diff] [blame] | 61 | void Runtime::Abort(const char* file, int line) { |
| 62 | // Get any pending output out of the way. |
| 63 | fflush(NULL); |
| 64 | |
| 65 | // Many people have difficulty distinguish aborts from crashes, |
| 66 | // so be explicit. |
| 67 | LogMessage(file, line, ERROR, -1).stream() << "Runtime aborting..."; |
| 68 | |
Elliott Hughes | ffe6736 | 2011-07-17 12:09:27 -0700 | [diff] [blame] | 69 | // Perform any platform-specific pre-abort actions. |
| 70 | PlatformAbort(file, line); |
| 71 | |
Brian Carlstrom | 6ea095a | 2011-08-16 15:26:54 -0700 | [diff] [blame] | 72 | // use abort hook if we have one |
| 73 | if (Runtime::Current() != NULL && Runtime::Current()->abort_ != NULL) { |
| 74 | Runtime::Current()->abort_(); |
| 75 | // notreached |
| 76 | } |
| 77 | |
Elliott Hughes | ffe6736 | 2011-07-17 12:09:27 -0700 | [diff] [blame] | 78 | // If we call abort(3) on a device, all threads in the process |
Carl Shapiro | 69759ea | 2011-07-21 18:13:35 -0700 | [diff] [blame] | 79 | // receive SIGABRT. debuggerd dumps the stack trace of the main |
| 80 | // thread, whether or not that was the thread that failed. By |
| 81 | // stuffing a value into a bogus address, we cause a segmentation |
Elliott Hughes | ffe6736 | 2011-07-17 12:09:27 -0700 | [diff] [blame] | 82 | // fault in the current thread, and get a useful log from debuggerd. |
| 83 | // We can also trivially tell the difference between a VM crash and |
| 84 | // a deliberate abort by looking at the fault address. |
| 85 | *reinterpret_cast<char*>(0xdeadd00d) = 38; |
| 86 | abort(); |
Elliott Hughes | ffe6736 | 2011-07-17 12:09:27 -0700 | [diff] [blame] | 87 | // notreached |
| 88 | } |
| 89 | |
Elliott Hughes | bf86d04 | 2011-08-31 17:53:14 -0700 | [diff] [blame] | 90 | void Runtime::CallExitHook(jint status) { |
| 91 | if (exit_ != NULL) { |
| 92 | ScopedThreadStateChange tsc(Thread::Current(), Thread::kNative); |
| 93 | exit_(status); |
| 94 | LOG(WARNING) << "Exit hook returned instead of exiting!"; |
| 95 | } |
| 96 | } |
| 97 | |
Brian Carlstrom | 8a43659 | 2011-08-15 21:27:23 -0700 | [diff] [blame] | 98 | // Parse a string of the form /[0-9]+[kKmMgG]?/, which is used to specify |
| 99 | // memory sizes. [kK] indicates kilobytes, [mM] megabytes, and |
| 100 | // [gG] gigabytes. |
| 101 | // |
| 102 | // "s" should point just past the "-Xm?" part of the string. |
Brian Carlstrom | 8a43659 | 2011-08-15 21:27:23 -0700 | [diff] [blame] | 103 | // "div" specifies a divisor, e.g. 1024 if the value must be a multiple |
| 104 | // of 1024. |
| 105 | // |
| 106 | // The spec says the -Xmx and -Xms options must be multiples of 1024. It |
| 107 | // doesn't say anything about -Xss. |
| 108 | // |
| 109 | // Returns 0 (a useless size) if "s" is malformed or specifies a low or |
| 110 | // non-evenly-divisible value. |
| 111 | // |
| 112 | size_t ParseMemoryOption(const char *s, size_t div) { |
| 113 | // strtoul accepts a leading [+-], which we don't want, |
| 114 | // so make sure our string starts with a decimal digit. |
| 115 | if (isdigit(*s)) { |
| 116 | const char *s2; |
| 117 | size_t val = strtoul(s, (char **)&s2, 10); |
| 118 | if (s2 != s) { |
| 119 | // s2 should be pointing just after the number. |
| 120 | // If this is the end of the string, the user |
| 121 | // has specified a number of bytes. Otherwise, |
| 122 | // there should be exactly one more character |
| 123 | // that specifies a multiplier. |
| 124 | if (*s2 != '\0') { |
Brian Carlstrom | f734cf5 | 2011-08-17 16:28:14 -0700 | [diff] [blame] | 125 | // The remainder of the string is either a single multiplier |
| 126 | // character, or nothing to indicate that the value is in |
| 127 | // bytes. |
| 128 | char c = *s2++; |
| 129 | if (*s2 == '\0') { |
| 130 | size_t mul; |
| 131 | if (c == '\0') { |
| 132 | mul = 1; |
| 133 | } else if (c == 'k' || c == 'K') { |
| 134 | mul = KB; |
| 135 | } else if (c == 'm' || c == 'M') { |
| 136 | mul = MB; |
| 137 | } else if (c == 'g' || c == 'G') { |
| 138 | mul = GB; |
Brian Carlstrom | 8a43659 | 2011-08-15 21:27:23 -0700 | [diff] [blame] | 139 | } else { |
Brian Carlstrom | f734cf5 | 2011-08-17 16:28:14 -0700 | [diff] [blame] | 140 | // Unknown multiplier character. |
Brian Carlstrom | 8a43659 | 2011-08-15 21:27:23 -0700 | [diff] [blame] | 141 | return 0; |
| 142 | } |
Brian Carlstrom | f734cf5 | 2011-08-17 16:28:14 -0700 | [diff] [blame] | 143 | |
| 144 | if (val <= std::numeric_limits<size_t>::max() / mul) { |
| 145 | val *= mul; |
| 146 | } else { |
| 147 | // Clamp to a multiple of 1024. |
| 148 | val = std::numeric_limits<size_t>::max() & ~(1024-1); |
| 149 | } |
| 150 | } else { |
| 151 | // There's more than one character after the numeric part. |
| 152 | return 0; |
| 153 | } |
Brian Carlstrom | 8a43659 | 2011-08-15 21:27:23 -0700 | [diff] [blame] | 154 | } |
| 155 | // The man page says that a -Xm value must be a multiple of 1024. |
| 156 | if (val % div == 0) { |
| 157 | return val; |
| 158 | } |
Carl Shapiro | fc322c7 | 2011-07-27 00:20:01 -0700 | [diff] [blame] | 159 | } |
| 160 | } |
Brian Carlstrom | 8a43659 | 2011-08-15 21:27:23 -0700 | [diff] [blame] | 161 | return 0; |
Carl Shapiro | fc322c7 | 2011-07-27 00:20:01 -0700 | [diff] [blame] | 162 | } |
| 163 | |
Elliott Hughes | 0af5543 | 2011-08-17 18:37:28 -0700 | [diff] [blame] | 164 | void LoadJniLibrary(JavaVMExt* vm, const char* name) { |
| 165 | // TODO: OS_SHARED_LIB_FORMAT_STR |
| 166 | std::string mapped_name(StringPrintf("lib%s.so", name)); |
Elliott Hughes | 7577075 | 2011-08-24 17:52:38 -0700 | [diff] [blame] | 167 | std::string reason; |
| 168 | if (!vm->LoadNativeLibrary(mapped_name, NULL, reason)) { |
Elliott Hughes | 0af5543 | 2011-08-17 18:37:28 -0700 | [diff] [blame] | 169 | LOG(FATAL) << "LoadNativeLibrary failed for \"" << mapped_name << "\": " |
| 170 | << reason; |
| 171 | } |
| 172 | } |
| 173 | |
Elliott Hughes | 7ede61e | 2011-09-14 18:18:06 -0700 | [diff] [blame] | 174 | void CreateClassPath(const std::string& class_path, |
Brian Carlstrom | 69b15fb | 2011-09-03 12:25:21 -0700 | [diff] [blame] | 175 | std::vector<const DexFile*>& class_path_vector) { |
Carl Shapiro | fc322c7 | 2011-07-27 00:20:01 -0700 | [diff] [blame] | 176 | std::vector<std::string> parsed; |
Elliott Hughes | 7ede61e | 2011-09-14 18:18:06 -0700 | [diff] [blame] | 177 | Split(class_path, ':', parsed); |
Carl Shapiro | fc322c7 | 2011-07-27 00:20:01 -0700 | [diff] [blame] | 178 | for (size_t i = 0; i < parsed.size(); ++i) { |
Brian Carlstrom | 1619286 | 2011-09-12 17:50:06 -0700 | [diff] [blame] | 179 | const DexFile* dex_file = DexFile::Open(parsed[i], ""); |
Carl Shapiro | fc322c7 | 2011-07-27 00:20:01 -0700 | [diff] [blame] | 180 | if (dex_file != NULL) { |
Brian Carlstrom | 69b15fb | 2011-09-03 12:25:21 -0700 | [diff] [blame] | 181 | class_path_vector.push_back(dex_file); |
Carl Shapiro | fc322c7 | 2011-07-27 00:20:01 -0700 | [diff] [blame] | 182 | } |
| 183 | } |
| 184 | } |
| 185 | |
Brian Carlstrom | 6ea095a | 2011-08-16 15:26:54 -0700 | [diff] [blame] | 186 | Runtime::ParsedOptions* Runtime::ParsedOptions::Create(const Options& options, bool ignore_unrecognized) { |
Elliott Hughes | 90a3369 | 2011-08-30 13:27:07 -0700 | [diff] [blame] | 187 | UniquePtr<ParsedOptions> parsed(new ParsedOptions()); |
Brian Carlstrom | 6ea095a | 2011-08-16 15:26:54 -0700 | [diff] [blame] | 188 | parsed->boot_image_ = NULL; |
Elliott Hughes | 515a5bc | 2011-08-17 11:08:34 -0700 | [diff] [blame] | 189 | #ifdef NDEBUG |
Elliott Hughes | 5174fe6 | 2011-08-23 15:12:35 -0700 | [diff] [blame] | 190 | // -Xcheck:jni is off by default for regular builds... |
Elliott Hughes | 515a5bc | 2011-08-17 11:08:34 -0700 | [diff] [blame] | 191 | parsed->check_jni_ = false; |
| 192 | #else |
| 193 | // ...but on by default in debug builds. |
| 194 | parsed->check_jni_ = true; |
Brian Carlstrom | 69b15fb | 2011-09-03 12:25:21 -0700 | [diff] [blame] | 195 | #endif |
Elliott Hughes | 85d1545 | 2011-09-16 17:33:01 -0700 | [diff] [blame] | 196 | |
Brian Carlstrom | 6ea095a | 2011-08-16 15:26:54 -0700 | [diff] [blame] | 197 | parsed->heap_initial_size_ = Heap::kInitialSize; |
| 198 | parsed->heap_maximum_size_ = Heap::kMaximumSize; |
Brian Carlstrom | f734cf5 | 2011-08-17 16:28:14 -0700 | [diff] [blame] | 199 | parsed->stack_size_ = Thread::kDefaultStackSize; |
| 200 | |
Brian Carlstrom | 6ea095a | 2011-08-16 15:26:54 -0700 | [diff] [blame] | 201 | parsed->hook_vfprintf_ = vfprintf; |
| 202 | parsed->hook_exit_ = exit; |
| 203 | parsed->hook_abort_ = abort; |
Brian Carlstrom | 8a43659 | 2011-08-15 21:27:23 -0700 | [diff] [blame] | 204 | |
| 205 | for (size_t i = 0; i < options.size(); ++i) { |
| 206 | const StringPiece& option = options[i].first; |
Brian Carlstrom | 8a43659 | 2011-08-15 21:27:23 -0700 | [diff] [blame] | 207 | if (option.starts_with("-Xbootclasspath:")) { |
Elliott Hughes | 7ede61e | 2011-09-14 18:18:06 -0700 | [diff] [blame] | 208 | parsed->boot_class_path_string_ = option.substr(strlen("-Xbootclasspath:")).data(); |
Brian Carlstrom | 8a43659 | 2011-08-15 21:27:23 -0700 | [diff] [blame] | 209 | } else if (option == "bootclasspath") { |
Elliott Hughes | 7ede61e | 2011-09-14 18:18:06 -0700 | [diff] [blame] | 210 | UNIMPLEMENTED(WARNING) << "what should VMRuntime.getBootClassPath return here?"; |
Brian Carlstrom | f734cf5 | 2011-08-17 16:28:14 -0700 | [diff] [blame] | 211 | const void* dex_vector = options[i].second; |
Brian Carlstrom | 9ea1cb1 | 2011-08-24 23:18:18 -0700 | [diff] [blame] | 212 | const std::vector<const DexFile*>* v |
| 213 | = reinterpret_cast<const std::vector<const DexFile*>*>(dex_vector); |
Brian Carlstrom | f734cf5 | 2011-08-17 16:28:14 -0700 | [diff] [blame] | 214 | if (v == NULL) { |
| 215 | if (ignore_unrecognized) { |
| 216 | continue; |
| 217 | } |
| 218 | // TODO: usage |
Brian Carlstrom | 69b15fb | 2011-09-03 12:25:21 -0700 | [diff] [blame] | 219 | LOG(FATAL) << "Failed to parse " << option; |
Brian Carlstrom | f734cf5 | 2011-08-17 16:28:14 -0700 | [diff] [blame] | 220 | return NULL; |
| 221 | } |
| 222 | parsed->boot_class_path_ = *v; |
Brian Carlstrom | 78128a6 | 2011-09-15 17:21:19 -0700 | [diff] [blame] | 223 | } else if (option == "classpath") { |
| 224 | const void* dex_vector = options[i].second; |
| 225 | const std::vector<const DexFile*>* v |
| 226 | = reinterpret_cast<const std::vector<const DexFile*>*>(dex_vector); |
| 227 | if (v == NULL) { |
| 228 | if (ignore_unrecognized) { |
| 229 | continue; |
| 230 | } |
| 231 | // TODO: usage |
| 232 | LOG(FATAL) << "Failed to parse " << option; |
| 233 | return NULL; |
| 234 | } |
| 235 | parsed->class_path_ = *v; |
Brian Carlstrom | 69b15fb | 2011-09-03 12:25:21 -0700 | [diff] [blame] | 236 | } else if (option == "-classpath" || option == "-cp") { |
| 237 | // TODO: support -Djava.class.path |
| 238 | i++; |
| 239 | if (i == options.size()) { |
| 240 | // TODO: usage |
| 241 | LOG(FATAL) << "Missing required class path value for " << option; |
| 242 | return NULL; |
| 243 | } |
| 244 | const StringPiece& value = options[i].first; |
Elliott Hughes | 7ede61e | 2011-09-14 18:18:06 -0700 | [diff] [blame] | 245 | parsed->class_path_string_ = value.data(); |
Brian Carlstrom | 8a43659 | 2011-08-15 21:27:23 -0700 | [diff] [blame] | 246 | } else if (option.starts_with("-Xbootimage:")) { |
Brian Carlstrom | 69b15fb | 2011-09-03 12:25:21 -0700 | [diff] [blame] | 247 | // TODO: remove when intern_addr_ is removed, just use -Ximage: |
Brian Carlstrom | 6ea095a | 2011-08-16 15:26:54 -0700 | [diff] [blame] | 248 | parsed->boot_image_ = option.substr(strlen("-Xbootimage:")).data(); |
Brian Carlstrom | 69b15fb | 2011-09-03 12:25:21 -0700 | [diff] [blame] | 249 | } else if (option.starts_with("-Ximage:")) { |
| 250 | parsed->images_.push_back(option.substr(strlen("-Ximage:")).data()); |
Elliott Hughes | 515a5bc | 2011-08-17 11:08:34 -0700 | [diff] [blame] | 251 | } else if (option.starts_with("-Xcheck:jni")) { |
| 252 | parsed->check_jni_ = true; |
Brian Carlstrom | 8a43659 | 2011-08-15 21:27:23 -0700 | [diff] [blame] | 253 | } else if (option.starts_with("-Xms")) { |
Brian Carlstrom | f734cf5 | 2011-08-17 16:28:14 -0700 | [diff] [blame] | 254 | size_t size = ParseMemoryOption(option.substr(strlen("-Xms")).data(), 1024); |
| 255 | if (size == 0) { |
| 256 | if (ignore_unrecognized) { |
| 257 | continue; |
| 258 | } |
Brian Carlstrom | 4a289ed | 2011-08-16 17:17:49 -0700 | [diff] [blame] | 259 | // TODO: usage |
Brian Carlstrom | 69b15fb | 2011-09-03 12:25:21 -0700 | [diff] [blame] | 260 | LOG(FATAL) << "Failed to parse " << option; |
Brian Carlstrom | f734cf5 | 2011-08-17 16:28:14 -0700 | [diff] [blame] | 261 | return NULL; |
| 262 | } |
| 263 | parsed->heap_initial_size_ = size; |
Brian Carlstrom | 8a43659 | 2011-08-15 21:27:23 -0700 | [diff] [blame] | 264 | } else if (option.starts_with("-Xmx")) { |
Brian Carlstrom | f734cf5 | 2011-08-17 16:28:14 -0700 | [diff] [blame] | 265 | size_t size = ParseMemoryOption(option.substr(strlen("-Xmx")).data(), 1024); |
| 266 | if (size == 0) { |
| 267 | if (ignore_unrecognized) { |
| 268 | continue; |
| 269 | } |
Brian Carlstrom | 4a289ed | 2011-08-16 17:17:49 -0700 | [diff] [blame] | 270 | // TODO: usage |
Brian Carlstrom | 69b15fb | 2011-09-03 12:25:21 -0700 | [diff] [blame] | 271 | LOG(FATAL) << "Failed to parse " << option; |
Brian Carlstrom | f734cf5 | 2011-08-17 16:28:14 -0700 | [diff] [blame] | 272 | return NULL; |
| 273 | } |
| 274 | parsed->heap_maximum_size_ = size; |
| 275 | } else if (option.starts_with("-Xss")) { |
| 276 | size_t size = ParseMemoryOption(option.substr(strlen("-Xss")).data(), 1); |
| 277 | if (size == 0) { |
| 278 | if (ignore_unrecognized) { |
| 279 | continue; |
| 280 | } |
Brian Carlstrom | 4a289ed | 2011-08-16 17:17:49 -0700 | [diff] [blame] | 281 | // TODO: usage |
Brian Carlstrom | 69b15fb | 2011-09-03 12:25:21 -0700 | [diff] [blame] | 282 | LOG(FATAL) << "Failed to parse " << option; |
Brian Carlstrom | f734cf5 | 2011-08-17 16:28:14 -0700 | [diff] [blame] | 283 | return NULL; |
| 284 | } |
| 285 | parsed->stack_size_ = size; |
Brian Carlstrom | 6ea095a | 2011-08-16 15:26:54 -0700 | [diff] [blame] | 286 | } else if (option.starts_with("-D")) { |
| 287 | parsed->properties_.push_back(option.substr(strlen("-D")).data()); |
Elliott Hughes | a095764 | 2011-09-02 14:27:33 -0700 | [diff] [blame] | 288 | } else if (option.starts_with("-Xjnitrace:")) { |
| 289 | parsed->jni_trace_ = option.substr(strlen("-Xjnitrace:")).data(); |
Brian Carlstrom | 6ea095a | 2011-08-16 15:26:54 -0700 | [diff] [blame] | 290 | } else if (option.starts_with("-verbose:")) { |
Elliott Hughes | 0af5543 | 2011-08-17 18:37:28 -0700 | [diff] [blame] | 291 | std::vector<std::string> verbose_options; |
Elliott Hughes | 3402380 | 2011-08-30 12:06:17 -0700 | [diff] [blame] | 292 | Split(option.substr(strlen("-verbose:")).data(), ',', verbose_options); |
Elliott Hughes | 0af5543 | 2011-08-17 18:37:28 -0700 | [diff] [blame] | 293 | for (size_t i = 0; i < verbose_options.size(); ++i) { |
| 294 | parsed->verbose_.insert(verbose_options[i]); |
| 295 | } |
Brian Carlstrom | 6ea095a | 2011-08-16 15:26:54 -0700 | [diff] [blame] | 296 | } else if (option == "vfprintf") { |
| 297 | parsed->hook_vfprintf_ = reinterpret_cast<int (*)(FILE *, const char*, va_list)>(options[i].second); |
| 298 | } else if (option == "exit") { |
| 299 | parsed->hook_exit_ = reinterpret_cast<void(*)(jint)>(options[i].second); |
| 300 | } else if (option == "abort") { |
| 301 | parsed->hook_abort_ = reinterpret_cast<void(*)()>(options[i].second); |
Brian Carlstrom | 8a43659 | 2011-08-15 21:27:23 -0700 | [diff] [blame] | 302 | } else { |
| 303 | if (!ignore_unrecognized) { |
Brian Carlstrom | 6ea095a | 2011-08-16 15:26:54 -0700 | [diff] [blame] | 304 | // TODO: print usage via vfprintf |
Brian Carlstrom | 27ec961 | 2011-09-19 20:20:38 -0700 | [diff] [blame] | 305 | LOG(ERROR) << "Unrecognized option " << option; |
| 306 | // TODO: this should exit, but for now tolerate unknown options |
| 307 | //return NULL; |
Brian Carlstrom | 8a43659 | 2011-08-15 21:27:23 -0700 | [diff] [blame] | 308 | } |
| 309 | } |
| 310 | } |
| 311 | |
Elliott Hughes | 7ede61e | 2011-09-14 18:18:06 -0700 | [diff] [blame] | 312 | // Consider it an error if both bootclasspath and -Xbootclasspath: are supplied. |
Brian Carlstrom | 78128a6 | 2011-09-15 17:21:19 -0700 | [diff] [blame] | 313 | // TODO: remove bootclasspath and classpath which are mostly just used by tests? |
Elliott Hughes | 7ede61e | 2011-09-14 18:18:06 -0700 | [diff] [blame] | 314 | if (!parsed->boot_class_path_.empty() && !parsed->boot_class_path_string_.empty()) { |
Brian Carlstrom | 69b15fb | 2011-09-03 12:25:21 -0700 | [diff] [blame] | 315 | // TODO: usage |
| 316 | LOG(FATAL) << "bootclasspath and -Xbootclasspath: are mutually exclusive options."; |
| 317 | return NULL; |
Brian Carlstrom | 8a43659 | 2011-08-15 21:27:23 -0700 | [diff] [blame] | 318 | } |
Brian Carlstrom | 78128a6 | 2011-09-15 17:21:19 -0700 | [diff] [blame] | 319 | if (!parsed->class_path_.empty() && !parsed->class_path_string_.empty()) { |
| 320 | // TODO: usage |
| 321 | LOG(FATAL) << "bootclasspath and -Xbootclasspath: are mutually exclusive options."; |
| 322 | return NULL; |
| 323 | } |
Brian Carlstrom | 69b15fb | 2011-09-03 12:25:21 -0700 | [diff] [blame] | 324 | if (parsed->boot_class_path_.empty()) { |
Elliott Hughes | 7ede61e | 2011-09-14 18:18:06 -0700 | [diff] [blame] | 325 | if (parsed->boot_class_path_string_ == NULL) { |
| 326 | const char* BOOTCLASSPATH = getenv("BOOTCLASSPATH"); |
Brian Carlstrom | 27ec961 | 2011-09-19 20:20:38 -0700 | [diff] [blame] | 327 | if (BOOTCLASSPATH != NULL) { |
| 328 | parsed->boot_class_path_string_ = BOOTCLASSPATH; |
| 329 | } |
Brian Carlstrom | 69b15fb | 2011-09-03 12:25:21 -0700 | [diff] [blame] | 330 | } |
Elliott Hughes | 7ede61e | 2011-09-14 18:18:06 -0700 | [diff] [blame] | 331 | CreateClassPath(parsed->boot_class_path_string_, parsed->boot_class_path_); |
Brian Carlstrom | 8a43659 | 2011-08-15 21:27:23 -0700 | [diff] [blame] | 332 | } |
Carl Shapiro | 2ed144c | 2011-07-26 16:52:08 -0700 | [diff] [blame] | 333 | |
Brian Carlstrom | 78128a6 | 2011-09-15 17:21:19 -0700 | [diff] [blame] | 334 | if (parsed->class_path_.empty()) { |
| 335 | if (parsed->class_path_string_ == NULL) { |
| 336 | const char* CLASSPATH = getenv("CLASSPATH"); |
| 337 | if (CLASSPATH != NULL) { |
| 338 | parsed->class_path_string_ = CLASSPATH; |
| 339 | } |
Brian Carlstrom | 69b15fb | 2011-09-03 12:25:21 -0700 | [diff] [blame] | 340 | } |
Brian Carlstrom | 78128a6 | 2011-09-15 17:21:19 -0700 | [diff] [blame] | 341 | CreateClassPath(parsed->class_path_string_, parsed->class_path_); |
Brian Carlstrom | 69b15fb | 2011-09-03 12:25:21 -0700 | [diff] [blame] | 342 | } |
Brian Carlstrom | 69b15fb | 2011-09-03 12:25:21 -0700 | [diff] [blame] | 343 | |
Elliott Hughes | 85d1545 | 2011-09-16 17:33:01 -0700 | [diff] [blame] | 344 | LOG(INFO) << "CheckJNI is " << (parsed->check_jni_ ? "on" : "off"); |
| 345 | |
Brian Carlstrom | 69b15fb | 2011-09-03 12:25:21 -0700 | [diff] [blame] | 346 | return parsed.release(); |
Brian Carlstrom | 8a43659 | 2011-08-15 21:27:23 -0700 | [diff] [blame] | 347 | } |
| 348 | |
| 349 | Runtime* Runtime::Create(const Options& options, bool ignore_unrecognized) { |
Carl Shapiro | 2ed144c | 2011-07-26 16:52:08 -0700 | [diff] [blame] | 350 | // TODO: acquire a static mutex on Runtime to avoid racing. |
| 351 | if (Runtime::instance_ != NULL) { |
| 352 | return NULL; |
| 353 | } |
Elliott Hughes | dcc2474 | 2011-09-07 14:02:44 -0700 | [diff] [blame] | 354 | instance_ = new Runtime; |
| 355 | if (!instance_->Init(options, ignore_unrecognized)) { |
| 356 | delete instance_; |
| 357 | instance_ = NULL; |
Carl Shapiro | 61e019d | 2011-07-14 16:53:09 -0700 | [diff] [blame] | 358 | } |
Brian Carlstrom | 69b15fb | 2011-09-03 12:25:21 -0700 | [diff] [blame] | 359 | return instance_; |
| 360 | } |
Elliott Hughes | 0af5543 | 2011-08-17 18:37:28 -0700 | [diff] [blame] | 361 | |
Brian Carlstrom | 69b15fb | 2011-09-03 12:25:21 -0700 | [diff] [blame] | 362 | void Runtime::Start() { |
Brian Carlstrom | 0a5b14d | 2011-09-27 13:29:15 -0700 | [diff] [blame] | 363 | if (IsVerboseStartup()) { |
| 364 | LOG(INFO) << "Runtime::Start entering"; |
| 365 | } |
Elliott Hughes | 038a806 | 2011-09-18 14:12:41 -0700 | [diff] [blame] | 366 | InitNativeMethods(); |
Elliott Hughes | 85d1545 | 2011-09-16 17:33:01 -0700 | [diff] [blame] | 367 | |
Elliott Hughes | 038a806 | 2011-09-18 14:12:41 -0700 | [diff] [blame] | 368 | Thread::FinishStartup(); |
Elliott Hughes | 85d1545 | 2011-09-16 17:33:01 -0700 | [diff] [blame] | 369 | |
Elliott Hughes | 2a20cfd | 2011-09-23 19:30:41 -0700 | [diff] [blame] | 370 | class_linker_->RunRootClinits(); |
Brian Carlstrom | f867b6f | 2011-09-16 12:17:25 -0700 | [diff] [blame] | 371 | |
Brian Carlstrom | 5d40f18 | 2011-09-26 22:29:18 -0700 | [diff] [blame] | 372 | // Class::AllocObject asserts that all objects allocated better be |
| 373 | // initialized after Runtime::IsStarted is true, so this needs to |
| 374 | // come after ClassLinker::RunRootClinits. |
| 375 | started_ = true; |
| 376 | |
Elliott Hughes | 85d1545 | 2011-09-16 17:33:01 -0700 | [diff] [blame] | 377 | StartDaemonThreads(); |
Brian Carlstrom | 0a5b14d | 2011-09-27 13:29:15 -0700 | [diff] [blame] | 378 | |
| 379 | if (IsVerboseStartup()) { |
| 380 | LOG(INFO) << "Runtime::Start exiting"; |
| 381 | } |
Elliott Hughes | 85d1545 | 2011-09-16 17:33:01 -0700 | [diff] [blame] | 382 | } |
| 383 | |
| 384 | void Runtime::StartDaemonThreads() { |
| 385 | signal_catcher_ = new SignalCatcher; |
| 386 | |
Elliott Hughes | 719b323 | 2011-09-25 17:42:19 -0700 | [diff] [blame] | 387 | Thread* self = Thread::Current(); |
| 388 | JNIEnv* env = self->GetJniEnv(); |
| 389 | jclass c = env->FindClass("java/lang/Daemons"); |
Elliott Hughes | 85d1545 | 2011-09-16 17:33:01 -0700 | [diff] [blame] | 390 | CHECK(c != NULL); |
Elliott Hughes | 719b323 | 2011-09-25 17:42:19 -0700 | [diff] [blame] | 391 | jmethodID mid = env->GetStaticMethodID(c, "start", "()V"); |
| 392 | CHECK(mid != NULL); |
| 393 | env->CallStaticVoidMethod(c, mid); |
Carl Shapiro | 61e019d | 2011-07-14 16:53:09 -0700 | [diff] [blame] | 394 | } |
| 395 | |
Elliott Hughes | dcc2474 | 2011-09-07 14:02:44 -0700 | [diff] [blame] | 396 | bool Runtime::IsStarted() { |
| 397 | return started_; |
| 398 | } |
| 399 | |
Elliott Hughes | 0af5543 | 2011-08-17 18:37:28 -0700 | [diff] [blame] | 400 | bool Runtime::Init(const Options& raw_options, bool ignore_unrecognized) { |
Elliott Hughes | c1674ed | 2011-08-25 18:09:09 -0700 | [diff] [blame] | 401 | CHECK_EQ(sysconf(_SC_PAGE_SIZE), kPageSize); |
Brian Carlstrom | 6ea095a | 2011-08-16 15:26:54 -0700 | [diff] [blame] | 402 | |
Elliott Hughes | 90a3369 | 2011-08-30 13:27:07 -0700 | [diff] [blame] | 403 | UniquePtr<ParsedOptions> options(ParsedOptions::Create(raw_options, ignore_unrecognized)); |
| 404 | if (options.get() == NULL) { |
Brian Carlstrom | 69b15fb | 2011-09-03 12:25:21 -0700 | [diff] [blame] | 405 | LOG(WARNING) << "Failed to parse options"; |
Brian Carlstrom | 6ea095a | 2011-08-16 15:26:54 -0700 | [diff] [blame] | 406 | return false; |
| 407 | } |
Brian Carlstrom | 0a5b14d | 2011-09-27 13:29:15 -0700 | [diff] [blame] | 408 | verbose_startup_ = options->IsVerbose("startup"); |
| 409 | if (IsVerboseStartup()) { |
| 410 | LOG(INFO) << "Runtime::Init -verbose:startup enabled"; |
| 411 | } |
Elliott Hughes | 7ede61e | 2011-09-14 18:18:06 -0700 | [diff] [blame] | 412 | |
| 413 | boot_class_path_ = options->boot_class_path_string_; |
| 414 | class_path_ = options->class_path_string_; |
| 415 | properties_ = options->properties_; |
| 416 | |
Elliott Hughes | 0af5543 | 2011-08-17 18:37:28 -0700 | [diff] [blame] | 417 | vfprintf_ = options->hook_vfprintf_; |
| 418 | exit_ = options->hook_exit_; |
| 419 | abort_ = options->hook_abort_; |
Brian Carlstrom | 6ea095a | 2011-08-16 15:26:54 -0700 | [diff] [blame] | 420 | |
Elliott Hughes | be759c6 | 2011-09-08 19:38:21 -0700 | [diff] [blame] | 421 | default_stack_size_ = options->stack_size_; |
Brian Carlstrom | 6ea095a | 2011-08-16 15:26:54 -0700 | [diff] [blame] | 422 | |
Elliott Hughes | 14357e8 | 2011-09-26 10:42:15 -0700 | [diff] [blame] | 423 | thread_list_ = new ThreadList(options->IsVerbose("thread")); |
Elliott Hughes | cf4c6c4 | 2011-09-01 15:16:42 -0700 | [diff] [blame] | 424 | intern_table_ = new InternTable; |
| 425 | |
Elliott Hughes | be759c6 | 2011-09-08 19:38:21 -0700 | [diff] [blame] | 426 | Heap::Init(options->heap_initial_size_, options->heap_maximum_size_, |
| 427 | options->boot_image_, options->images_); |
Brian Carlstrom | 6ea095a | 2011-08-16 15:26:54 -0700 | [diff] [blame] | 428 | |
Elliott Hughes | c1674ed | 2011-08-25 18:09:09 -0700 | [diff] [blame] | 429 | BlockSignals(); |
| 430 | |
Elliott Hughes | a095764 | 2011-09-02 14:27:33 -0700 | [diff] [blame] | 431 | java_vm_ = new JavaVMExt(this, options.get()); |
Elliott Hughes | 515a5bc | 2011-08-17 11:08:34 -0700 | [diff] [blame] | 432 | |
Elliott Hughes | be759c6 | 2011-09-08 19:38:21 -0700 | [diff] [blame] | 433 | Thread::Startup(); |
Elliott Hughes | d92bec4 | 2011-09-02 17:04:36 -0700 | [diff] [blame] | 434 | |
Elliott Hughes | 5fe594f | 2011-09-08 12:33:17 -0700 | [diff] [blame] | 435 | // ClassLinker needs an attached thread, but we can't fully attach a thread |
| 436 | // without creating objects. |
| 437 | Thread::Attach(this, "main", false); |
Brian Carlstrom | 6ea095a | 2011-08-16 15:26:54 -0700 | [diff] [blame] | 438 | |
Brian Carlstrom | 69b15fb | 2011-09-03 12:25:21 -0700 | [diff] [blame] | 439 | class_linker_ = ClassLinker::Create(options->boot_class_path_, |
| 440 | options->class_path_, |
| 441 | intern_table_, |
| 442 | Heap::GetBootSpace()); |
Brian Carlstrom | 6ea095a | 2011-08-16 15:26:54 -0700 | [diff] [blame] | 443 | |
Brian Carlstrom | 0a5b14d | 2011-09-27 13:29:15 -0700 | [diff] [blame] | 444 | if (IsVerboseStartup()) { |
| 445 | LOG(INFO) << "Runtime::Init exiting"; |
| 446 | } |
Carl Shapiro | 1fb8620 | 2011-06-27 17:43:13 -0700 | [diff] [blame] | 447 | return true; |
| 448 | } |
| 449 | |
Elliott Hughes | 038a806 | 2011-09-18 14:12:41 -0700 | [diff] [blame] | 450 | void Runtime::InitNativeMethods() { |
Brian Carlstrom | 0a5b14d | 2011-09-27 13:29:15 -0700 | [diff] [blame] | 451 | if (IsVerboseStartup()) { |
| 452 | LOG(INFO) << "Runtime::InitNativeMethods entering"; |
| 453 | } |
Elliott Hughes | ad7c2a3 | 2011-08-31 11:58:10 -0700 | [diff] [blame] | 454 | Thread* self = Thread::Current(); |
| 455 | JNIEnv* env = self->GetJniEnv(); |
| 456 | |
Elliott Hughes | 418d20f | 2011-09-22 14:00:39 -0700 | [diff] [blame] | 457 | // Must be in the kNative state for calling native methods (JNI_OnLoad code). |
Elliott Hughes | ad7c2a3 | 2011-08-31 11:58:10 -0700 | [diff] [blame] | 458 | ScopedThreadStateChange tsc(self, Thread::kNative); |
| 459 | |
Elliott Hughes | 418d20f | 2011-09-22 14:00:39 -0700 | [diff] [blame] | 460 | // First set up JniConstants, which is used by both the runtime's built-in native |
| 461 | // methods and libcore. |
Elliott Hughes | fea966e | 2011-09-22 10:26:20 -0700 | [diff] [blame] | 462 | JniConstants::init(env); |
| 463 | |
Elliott Hughes | 418d20f | 2011-09-22 14:00:39 -0700 | [diff] [blame] | 464 | // Then set up the native methods provided by the runtime itself. |
Elliott Hughes | ad7c2a3 | 2011-08-31 11:58:10 -0700 | [diff] [blame] | 465 | RegisterRuntimeNativeMethods(env); |
| 466 | |
Elliott Hughes | 418d20f | 2011-09-22 14:00:39 -0700 | [diff] [blame] | 467 | // Then set up libcore, which is just a regular JNI library with a regular JNI_OnLoad. |
| 468 | // Most JNI libraries can just use System.loadLibrary, but libcore can't because it's |
| 469 | // the library that implements System.loadLibrary! |
Elliott Hughes | ad7c2a3 | 2011-08-31 11:58:10 -0700 | [diff] [blame] | 470 | LoadJniLibrary(instance_->GetJavaVM(), "javacore"); |
Brian Carlstrom | 0a5b14d | 2011-09-27 13:29:15 -0700 | [diff] [blame] | 471 | if (IsVerboseStartup()) { |
| 472 | LOG(INFO) << "Runtime::InitNativeMethods exiting"; |
| 473 | } |
Elliott Hughes | ad7c2a3 | 2011-08-31 11:58:10 -0700 | [diff] [blame] | 474 | } |
| 475 | |
| 476 | void Runtime::RegisterRuntimeNativeMethods(JNIEnv* env) { |
| 477 | #define REGISTER(FN) extern void FN(JNIEnv*); FN(env) |
Brian Carlstrom | f91c8c3 | 2011-09-21 17:30:34 -0700 | [diff] [blame] | 478 | REGISTER(register_dalvik_system_DexFile); |
Elliott Hughes | 9d5ccec | 2011-09-19 13:19:50 -0700 | [diff] [blame] | 479 | REGISTER(register_dalvik_system_VMDebug); |
Elliott Hughes | 7ede61e | 2011-09-14 18:18:06 -0700 | [diff] [blame] | 480 | REGISTER(register_dalvik_system_VMRuntime); |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 481 | REGISTER(register_dalvik_system_VMStack); |
Elliott Hughes | 01158d7 | 2011-09-19 19:47:10 -0700 | [diff] [blame] | 482 | REGISTER(register_dalvik_system_Zygote); |
Elliott Hughes | d369bb7 | 2011-09-12 14:41:14 -0700 | [diff] [blame] | 483 | REGISTER(register_java_lang_Class); |
Elliott Hughes | bf86d04 | 2011-08-31 17:53:14 -0700 | [diff] [blame] | 484 | REGISTER(register_java_lang_Object); |
| 485 | REGISTER(register_java_lang_Runtime); |
| 486 | REGISTER(register_java_lang_String); |
| 487 | REGISTER(register_java_lang_System); |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 488 | REGISTER(register_java_lang_Thread); |
Elliott Hughes | 1240dad | 2011-09-09 16:24:50 -0700 | [diff] [blame] | 489 | REGISTER(register_java_lang_Throwable); |
Elliott Hughes | 64bf5a3 | 2011-09-20 14:43:12 -0700 | [diff] [blame] | 490 | REGISTER(register_java_lang_VMClassLoader); |
Elliott Hughes | ad7c2a3 | 2011-08-31 11:58:10 -0700 | [diff] [blame] | 491 | //REGISTER(register_java_lang_reflect_AccessibleObject); |
Brian Carlstrom | 5b8e4c8 | 2011-09-18 01:38:59 -0700 | [diff] [blame] | 492 | REGISTER(register_java_lang_reflect_Array); |
Elliott Hughes | 2a20cfd | 2011-09-23 19:30:41 -0700 | [diff] [blame] | 493 | REGISTER(register_java_lang_reflect_Constructor); |
Brian Carlstrom | f867b6f | 2011-09-16 12:17:25 -0700 | [diff] [blame] | 494 | REGISTER(register_java_lang_reflect_Field); |
| 495 | REGISTER(register_java_lang_reflect_Method); |
Elliott Hughes | ad7c2a3 | 2011-08-31 11:58:10 -0700 | [diff] [blame] | 496 | //REGISTER(register_java_lang_reflect_Proxy); |
Elliott Hughes | bf86d04 | 2011-08-31 17:53:14 -0700 | [diff] [blame] | 497 | REGISTER(register_java_util_concurrent_atomic_AtomicLong); |
Brian Carlstrom | 395520e | 2011-09-25 19:35:00 -0700 | [diff] [blame] | 498 | REGISTER(register_org_apache_harmony_dalvik_ddmc_DdmServer); |
Elliott Hughes | ad7c2a3 | 2011-08-31 11:58:10 -0700 | [diff] [blame] | 499 | //REGISTER(register_org_apache_harmony_dalvik_ddmc_DdmVmInternal); |
Elliott Hughes | 5ee7a8b | 2011-09-13 16:40:07 -0700 | [diff] [blame] | 500 | REGISTER(register_sun_misc_Unsafe); |
Elliott Hughes | ad7c2a3 | 2011-08-31 11:58:10 -0700 | [diff] [blame] | 501 | #undef REGISTER |
| 502 | } |
| 503 | |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 504 | void Runtime::Dump(std::ostream& os) { |
Elliott Hughes | e27955c | 2011-08-26 15:21:24 -0700 | [diff] [blame] | 505 | // TODO: dump other runtime statistics? |
| 506 | os << "Loaded classes: " << class_linker_->NumLoadedClasses() << "\n"; |
Elliott Hughes | cf4c6c4 | 2011-09-01 15:16:42 -0700 | [diff] [blame] | 507 | os << "Intern table size: " << GetInternTable()->Size() << "\n"; |
Elliott Hughes | e27955c | 2011-08-26 15:21:24 -0700 | [diff] [blame] | 508 | // LOGV("VM stats: meth=%d ifld=%d sfld=%d linear=%d", |
| 509 | // gDvm.numDeclaredMethods, |
| 510 | // gDvm.numDeclaredInstFields, |
| 511 | // gDvm.numDeclaredStaticFields, |
| 512 | // gDvm.pBootLoaderAlloc->curOffset); |
| 513 | // LOGI("GC precise methods: %d", dvmPointerSetGetCount(gDvm.preciseMethods)); |
Elliott Hughes | 42ee142 | 2011-09-06 12:33:32 -0700 | [diff] [blame] | 514 | os << "\n"; |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 515 | |
| 516 | thread_list_->Dump(os); |
Elliott Hughes | e27955c | 2011-08-26 15:21:24 -0700 | [diff] [blame] | 517 | } |
| 518 | |
Elliott Hughes | 9d5ccec | 2011-09-19 13:19:50 -0700 | [diff] [blame] | 519 | void Runtime::SetStatsEnabled(bool new_state) { |
| 520 | if (new_state == true) { |
| 521 | GetStats()->Clear(~0); |
| 522 | // TODO: wouldn't it make more sense to clear _all_ threads' stats? |
| 523 | Thread::Current()->GetStats()->Clear(~0); |
| 524 | } |
| 525 | stats_enabled_ = new_state; |
| 526 | } |
| 527 | |
| 528 | void Runtime::ResetStats(int kinds) { |
| 529 | GetStats()->Clear(kinds & 0xffff); |
| 530 | // TODO: wouldn't it make more sense to clear _all_ threads' stats? |
| 531 | Thread::Current()->GetStats()->Clear(kinds >> 16); |
| 532 | } |
| 533 | |
| 534 | RuntimeStats* Runtime::GetStats() { |
| 535 | return &stats_; |
| 536 | } |
| 537 | |
| 538 | int32_t Runtime::GetStat(int kind) { |
| 539 | RuntimeStats* stats; |
| 540 | if (kind < (1<<16)) { |
| 541 | stats = GetStats(); |
| 542 | } else { |
| 543 | stats = Thread::Current()->GetStats(); |
| 544 | kind >>= 16; |
| 545 | } |
| 546 | switch (kind) { |
| 547 | case KIND_ALLOCATED_OBJECTS: |
| 548 | return stats->allocated_objects; |
| 549 | case KIND_ALLOCATED_BYTES: |
| 550 | return stats->allocated_bytes; |
| 551 | case KIND_FREED_OBJECTS: |
| 552 | return stats->freed_objects; |
| 553 | case KIND_FREED_BYTES: |
| 554 | return stats->freed_bytes; |
| 555 | case KIND_GC_INVOCATIONS: |
| 556 | return stats->gc_for_alloc_count; |
| 557 | case KIND_CLASS_INIT_COUNT: |
| 558 | return stats->class_init_count; |
| 559 | case KIND_CLASS_INIT_TIME: |
| 560 | // Convert ns to us, reduce to 32 bits. |
| 561 | return (int) (stats->class_init_time_ns / 1000); |
| 562 | case KIND_EXT_ALLOCATED_OBJECTS: |
| 563 | case KIND_EXT_ALLOCATED_BYTES: |
| 564 | case KIND_EXT_FREED_OBJECTS: |
| 565 | case KIND_EXT_FREED_BYTES: |
| 566 | return 0; // backward compatibility |
| 567 | default: |
| 568 | CHECK(false); |
| 569 | return -1; // unreachable |
| 570 | } |
| 571 | } |
| 572 | |
Elliott Hughes | c1674ed | 2011-08-25 18:09:09 -0700 | [diff] [blame] | 573 | void Runtime::BlockSignals() { |
| 574 | sigset_t sigset; |
| 575 | if (sigemptyset(&sigset) == -1) { |
| 576 | PLOG(FATAL) << "sigemptyset failed"; |
| 577 | } |
| 578 | if (sigaddset(&sigset, SIGPIPE) == -1) { |
| 579 | PLOG(ERROR) << "sigaddset SIGPIPE failed"; |
| 580 | } |
| 581 | // SIGQUIT is used to dump the runtime's state (including stack traces). |
| 582 | if (sigaddset(&sigset, SIGQUIT) == -1) { |
| 583 | PLOG(ERROR) << "sigaddset SIGQUIT failed"; |
| 584 | } |
| 585 | // SIGUSR1 is used to initiate a heap dump. |
| 586 | if (sigaddset(&sigset, SIGUSR1) == -1) { |
| 587 | PLOG(ERROR) << "sigaddset SIGUSR1 failed"; |
| 588 | } |
| 589 | CHECK_EQ(sigprocmask(SIG_BLOCK, &sigset, NULL), 0); |
| 590 | } |
| 591 | |
Elliott Hughes | 5fe594f | 2011-09-08 12:33:17 -0700 | [diff] [blame] | 592 | void Runtime::AttachCurrentThread(const char* name, bool as_daemon) { |
| 593 | Thread::Attach(instance_, name, as_daemon); |
Carl Shapiro | 61e019d | 2011-07-14 16:53:09 -0700 | [diff] [blame] | 594 | } |
| 595 | |
Elliott Hughes | d92bec4 | 2011-09-02 17:04:36 -0700 | [diff] [blame] | 596 | void Runtime::DetachCurrentThread() { |
Elliott Hughes | 038a806 | 2011-09-18 14:12:41 -0700 | [diff] [blame] | 597 | // TODO: check we're not calling DetachCurrentThread from a call stack that |
| 598 | // includes managed frames. (It's only valid if the stack is all-native.) |
Elliott Hughes | 02b48d1 | 2011-09-07 17:15:51 -0700 | [diff] [blame] | 599 | thread_list_->Unregister(); |
Carl Shapiro | 1fb8620 | 2011-06-27 17:43:13 -0700 | [diff] [blame] | 600 | } |
| 601 | |
Ian Rogers | ff1ed47 | 2011-09-20 13:46:24 -0700 | [diff] [blame] | 602 | Method* Runtime::CreateCalleeSaveMethod(InstructionSet insns) { |
| 603 | Class* method_class = Method::GetMethodClass(); |
| 604 | Method* method = down_cast<Method*>(method_class->AllocObject()); |
| 605 | method->SetDeclaringClass(method_class); |
| 606 | method->SetName(intern_table_->InternStrong("$$$callee_save_method$$$")); |
| 607 | method->SetSignature(intern_table_->InternStrong("()V")); |
| 608 | method->SetCode(NULL, insns, NULL); |
| 609 | if ((insns == kThumb2) || (insns == kArm)) { |
Ian Rogers | 15fdb8c | 2011-09-25 15:45:07 -0700 | [diff] [blame] | 610 | size_t frame_size = (12 /* gprs */ + 32 /* fprs */ + 4 /* data */) * kPointerSize; |
| 611 | method->SetFrameSizeInBytes(frame_size); |
| 612 | method->SetReturnPcOffsetInBytes(frame_size - kPointerSize); |
Ian Rogers | ff1ed47 | 2011-09-20 13:46:24 -0700 | [diff] [blame] | 613 | method->SetCoreSpillMask((1 << art::arm::R1) | |
| 614 | (1 << art::arm::R2) | |
| 615 | (1 << art::arm::R3) | |
| 616 | (1 << art::arm::R4) | |
| 617 | (1 << art::arm::R5) | |
| 618 | (1 << art::arm::R6) | |
| 619 | (1 << art::arm::R7) | |
| 620 | (1 << art::arm::R8) | |
| 621 | (1 << art::arm::R9) | |
| 622 | (1 << art::arm::R10) | |
| 623 | (1 << art::arm::R11) | |
| 624 | (1 << art::arm::LR)); |
Ian Rogers | 15fdb8c | 2011-09-25 15:45:07 -0700 | [diff] [blame] | 625 | method->SetFpSpillMask((1 << art::arm::S0) | |
| 626 | (1 << art::arm::S1) | |
| 627 | (1 << art::arm::S2) | |
| 628 | (1 << art::arm::S3) | |
| 629 | (1 << art::arm::S4) | |
| 630 | (1 << art::arm::S5) | |
| 631 | (1 << art::arm::S6) | |
| 632 | (1 << art::arm::S7) | |
| 633 | (1 << art::arm::S8) | |
| 634 | (1 << art::arm::S9) | |
| 635 | (1 << art::arm::S10) | |
| 636 | (1 << art::arm::S11) | |
| 637 | (1 << art::arm::S12) | |
| 638 | (1 << art::arm::S13) | |
| 639 | (1 << art::arm::S14) | |
| 640 | (1 << art::arm::S15) | |
| 641 | (1 << art::arm::S16) | |
| 642 | (1 << art::arm::S17) | |
| 643 | (1 << art::arm::S18) | |
| 644 | (1 << art::arm::S19) | |
| 645 | (1 << art::arm::S20) | |
| 646 | (1 << art::arm::S21) | |
| 647 | (1 << art::arm::S22) | |
| 648 | (1 << art::arm::S23) | |
| 649 | (1 << art::arm::S24) | |
| 650 | (1 << art::arm::S25) | |
| 651 | (1 << art::arm::S26) | |
| 652 | (1 << art::arm::S27) | |
| 653 | (1 << art::arm::S28) | |
| 654 | (1 << art::arm::S29) | |
| 655 | (1 << art::arm::S30) | |
| 656 | (1 << art::arm::S31)); |
Ian Rogers | ff1ed47 | 2011-09-20 13:46:24 -0700 | [diff] [blame] | 657 | } else if (insns == kX86) { |
| 658 | method->SetFrameSizeInBytes(32); |
| 659 | method->SetReturnPcOffsetInBytes(28); |
| 660 | method->SetCoreSpillMask((1 << art::x86::EBX) | |
| 661 | (1 << art::x86::EBP) | |
| 662 | (1 << art::x86::ESI) | |
| 663 | (1 << art::x86::EDI)); |
| 664 | method->SetFpSpillMask(0); |
| 665 | } else { |
| 666 | UNIMPLEMENTED(FATAL); |
| 667 | } |
| 668 | return method; |
| 669 | } |
| 670 | |
Elliott Hughes | 410c0c8 | 2011-09-01 17:58:25 -0700 | [diff] [blame] | 671 | void Runtime::VisitRoots(Heap::RootVisitor* visitor, void* arg) const { |
| 672 | class_linker_->VisitRoots(visitor, arg); |
| 673 | intern_table_->VisitRoots(visitor, arg); |
| 674 | java_vm_->VisitRoots(visitor, arg); |
| 675 | thread_list_->VisitRoots(visitor, arg); |
Brian Carlstrom | 1619286 | 2011-09-12 17:50:06 -0700 | [diff] [blame] | 676 | visitor(jni_stub_array_, arg); |
Ian Rogers | ff1ed47 | 2011-09-20 13:46:24 -0700 | [diff] [blame] | 677 | visitor(callee_save_method_, arg); |
Elliott Hughes | 410c0c8 | 2011-09-01 17:58:25 -0700 | [diff] [blame] | 678 | |
| 679 | //(*visitor)(&gDvm.outOfMemoryObj, 0, ROOT_VM_INTERNAL, arg); |
| 680 | //(*visitor)(&gDvm.internalErrorObj, 0, ROOT_VM_INTERNAL, arg); |
| 681 | //(*visitor)(&gDvm.noClassDefFoundErrorObj, 0, ROOT_VM_INTERNAL, arg); |
| 682 | UNIMPLEMENTED(WARNING) << "some roots not marked"; |
Brian Carlstrom | 1f87008 | 2011-08-23 16:02:11 -0700 | [diff] [blame] | 683 | } |
| 684 | |
Carl Shapiro | 1fb8620 | 2011-06-27 17:43:13 -0700 | [diff] [blame] | 685 | } // namespace art |