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 | */ |
Elliott Hughes | 11e4507 | 2011-08-16 17:40:46 -0700 | [diff] [blame] | 16 | |
Elliott Hughes | 42ee142 | 2011-09-06 12:33:32 -0700 | [diff] [blame] | 17 | #include "utils.h" |
| 18 | |
Christopher Ferris | 943af7d | 2014-01-16 12:41:46 -0800 | [diff] [blame] | 19 | #include <inttypes.h> |
Elliott Hughes | 92b3b56 | 2011-09-08 16:32:26 -0700 | [diff] [blame] | 20 | #include <pthread.h> |
Brian Carlstrom | a9f1978 | 2011-10-13 00:14:47 -0700 | [diff] [blame] | 21 | #include <sys/stat.h> |
Elliott Hughes | 42ee142 | 2011-09-06 12:33:32 -0700 | [diff] [blame] | 22 | #include <sys/syscall.h> |
| 23 | #include <sys/types.h> |
Brian Carlstrom | 4cf5e57 | 2014-02-25 11:47:48 -0800 | [diff] [blame] | 24 | #include <sys/wait.h> |
Elliott Hughes | 42ee142 | 2011-09-06 12:33:32 -0700 | [diff] [blame] | 25 | #include <unistd.h> |
Ian Rogers | 700a402 | 2014-05-19 16:49:03 -0700 | [diff] [blame] | 26 | #include <memory> |
Elliott Hughes | 42ee142 | 2011-09-06 12:33:32 -0700 | [diff] [blame] | 27 | |
Brian Carlstrom | 6449c62 | 2014-02-10 23:48:36 -0800 | [diff] [blame] | 28 | #include "base/stl_util.h" |
Elliott Hughes | 7616005 | 2012-12-12 16:31:20 -0800 | [diff] [blame] | 29 | #include "base/unix_file/fd_file.h" |
Ian Rogers | 4f6ad8a | 2013-03-18 15:27:28 -0700 | [diff] [blame] | 30 | #include "dex_file-inl.h" |
Ian Rogers | 22d5e73 | 2014-07-15 22:23:51 -0700 | [diff] [blame] | 31 | #include "field_helper.h" |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 32 | #include "mirror/art_field-inl.h" |
| 33 | #include "mirror/art_method-inl.h" |
Ian Rogers | 4f6ad8a | 2013-03-18 15:27:28 -0700 | [diff] [blame] | 34 | #include "mirror/class-inl.h" |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 35 | #include "mirror/class_loader.h" |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 36 | #include "mirror/object-inl.h" |
| 37 | #include "mirror/object_array-inl.h" |
| 38 | #include "mirror/string.h" |
buzbee | c143c55 | 2011-08-20 17:38:58 -0700 | [diff] [blame] | 39 | #include "os.h" |
Kenny Root | 067d20f | 2014-03-05 14:57:21 -0800 | [diff] [blame] | 40 | #include "scoped_thread_state_change.h" |
Ian Rogers | a672490 | 2013-09-23 09:23:37 -0700 | [diff] [blame] | 41 | #include "utf-inl.h" |
Elliott Hughes | 11e4507 | 2011-08-16 17:40:46 -0700 | [diff] [blame] | 42 | |
Elliott Hughes | ad6c9c3 | 2012-01-19 17:39:12 -0800 | [diff] [blame] | 43 | #if !defined(HAVE_POSIX_CLOCKS) |
| 44 | #include <sys/time.h> |
| 45 | #endif |
| 46 | |
Elliott Hughes | dcc2474 | 2011-09-07 14:02:44 -0700 | [diff] [blame] | 47 | #if defined(HAVE_PRCTL) |
| 48 | #include <sys/prctl.h> |
| 49 | #endif |
| 50 | |
Elliott Hughes | 4ae722a | 2012-03-13 11:08:51 -0700 | [diff] [blame] | 51 | #if defined(__APPLE__) |
Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 52 | #include "AvailabilityMacros.h" // For MAC_OS_X_VERSION_MAX_ALLOWED |
Elliott Hughes | f149843 | 2012-03-28 19:34:27 -0700 | [diff] [blame] | 53 | #include <sys/syscall.h> |
Elliott Hughes | 4ae722a | 2012-03-13 11:08:51 -0700 | [diff] [blame] | 54 | #endif |
| 55 | |
Christopher Ferris | 7b5f0cf | 2013-11-01 15:18:45 -0700 | [diff] [blame] | 56 | #include <backtrace/Backtrace.h> // For DumpNativeStack. |
Elliott Hughes | 46e251b | 2012-05-22 15:10:45 -0700 | [diff] [blame] | 57 | |
Elliott Hughes | 058a6de | 2012-05-24 19:13:02 -0700 | [diff] [blame] | 58 | #if defined(__linux__) |
Elliott Hughes | e1aee69 | 2012-01-17 16:40:10 -0800 | [diff] [blame] | 59 | #include <linux/unistd.h> |
Elliott Hughes | e1aee69 | 2012-01-17 16:40:10 -0800 | [diff] [blame] | 60 | #endif |
| 61 | |
Elliott Hughes | 11e4507 | 2011-08-16 17:40:46 -0700 | [diff] [blame] | 62 | namespace art { |
| 63 | |
Elliott Hughes | 11d1b0c | 2012-01-23 16:57:47 -0800 | [diff] [blame] | 64 | pid_t GetTid() { |
Brian Carlstrom | f3a2641 | 2012-08-24 11:06:02 -0700 | [diff] [blame] | 65 | #if defined(__APPLE__) |
| 66 | uint64_t owner; |
| 67 | CHECK_PTHREAD_CALL(pthread_threadid_np, (NULL, &owner), __FUNCTION__); // Requires Mac OS 10.6 |
| 68 | return owner; |
Elliott Hughes | 323aa86 | 2014-08-20 15:00:04 -0700 | [diff] [blame] | 69 | #elif defined(__BIONIC__) |
| 70 | return gettid(); |
Elliott Hughes | 11d1b0c | 2012-01-23 16:57:47 -0800 | [diff] [blame] | 71 | #else |
Elliott Hughes | 11d1b0c | 2012-01-23 16:57:47 -0800 | [diff] [blame] | 72 | return syscall(__NR_gettid); |
| 73 | #endif |
| 74 | } |
| 75 | |
Elliott Hughes | 289be85 | 2012-06-12 13:57:20 -0700 | [diff] [blame] | 76 | std::string GetThreadName(pid_t tid) { |
| 77 | std::string result; |
| 78 | if (ReadFileToString(StringPrintf("/proc/self/task/%d/comm", tid), &result)) { |
Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 79 | result.resize(result.size() - 1); // Lose the trailing '\n'. |
Elliott Hughes | 289be85 | 2012-06-12 13:57:20 -0700 | [diff] [blame] | 80 | } else { |
| 81 | result = "<unknown>"; |
| 82 | } |
| 83 | return result; |
| 84 | } |
| 85 | |
Elliott Hughes | 6d3fc56 | 2014-08-27 11:47:01 -0700 | [diff] [blame] | 86 | void GetThreadStack(pthread_t thread, void** stack_base, size_t* stack_size, size_t* guard_size) { |
Elliott Hughes | e188419 | 2012-04-23 12:38:15 -0700 | [diff] [blame] | 87 | #if defined(__APPLE__) |
Brian Carlstrom | 2921201 | 2013-09-12 22:18:30 -0700 | [diff] [blame] | 88 | *stack_size = pthread_get_stacksize_np(thread); |
Ian Rogers | 120f1c7 | 2012-09-28 17:17:10 -0700 | [diff] [blame] | 89 | void* stack_addr = pthread_get_stackaddr_np(thread); |
Elliott Hughes | e188419 | 2012-04-23 12:38:15 -0700 | [diff] [blame] | 90 | |
| 91 | // Check whether stack_addr is the base or end of the stack. |
| 92 | // (On Mac OS 10.7, it's the end.) |
| 93 | int stack_variable; |
| 94 | if (stack_addr > &stack_variable) { |
Ian Rogers | 1373595 | 2014-10-08 12:43:28 -0700 | [diff] [blame] | 95 | *stack_base = reinterpret_cast<uint8_t*>(stack_addr) - *stack_size; |
Elliott Hughes | e188419 | 2012-04-23 12:38:15 -0700 | [diff] [blame] | 96 | } else { |
Brian Carlstrom | 2921201 | 2013-09-12 22:18:30 -0700 | [diff] [blame] | 97 | *stack_base = stack_addr; |
Elliott Hughes | e188419 | 2012-04-23 12:38:15 -0700 | [diff] [blame] | 98 | } |
Elliott Hughes | 6d3fc56 | 2014-08-27 11:47:01 -0700 | [diff] [blame] | 99 | |
| 100 | // This is wrong, but there doesn't seem to be a way to get the actual value on the Mac. |
| 101 | pthread_attr_t attributes; |
| 102 | CHECK_PTHREAD_CALL(pthread_attr_init, (&attributes), __FUNCTION__); |
| 103 | CHECK_PTHREAD_CALL(pthread_attr_getguardsize, (&attributes, guard_size), __FUNCTION__); |
| 104 | CHECK_PTHREAD_CALL(pthread_attr_destroy, (&attributes), __FUNCTION__); |
Elliott Hughes | e188419 | 2012-04-23 12:38:15 -0700 | [diff] [blame] | 105 | #else |
| 106 | pthread_attr_t attributes; |
Ian Rogers | 120f1c7 | 2012-09-28 17:17:10 -0700 | [diff] [blame] | 107 | CHECK_PTHREAD_CALL(pthread_getattr_np, (thread, &attributes), __FUNCTION__); |
Brian Carlstrom | 2921201 | 2013-09-12 22:18:30 -0700 | [diff] [blame] | 108 | CHECK_PTHREAD_CALL(pthread_attr_getstack, (&attributes, stack_base, stack_size), __FUNCTION__); |
Elliott Hughes | 6d3fc56 | 2014-08-27 11:47:01 -0700 | [diff] [blame] | 109 | CHECK_PTHREAD_CALL(pthread_attr_getguardsize, (&attributes, guard_size), __FUNCTION__); |
Elliott Hughes | e188419 | 2012-04-23 12:38:15 -0700 | [diff] [blame] | 110 | CHECK_PTHREAD_CALL(pthread_attr_destroy, (&attributes), __FUNCTION__); |
Elliott Hughes | 839cc30 | 2014-08-28 10:24:44 -0700 | [diff] [blame] | 111 | |
| 112 | #if defined(__GLIBC__) |
| 113 | // If we're the main thread, check whether we were run with an unlimited stack. In that case, |
| 114 | // glibc will have reported a 2GB stack for our 32-bit process, and our stack overflow detection |
| 115 | // will be broken because we'll die long before we get close to 2GB. |
| 116 | bool is_main_thread = (::art::GetTid() == getpid()); |
| 117 | if (is_main_thread) { |
| 118 | rlimit stack_limit; |
| 119 | if (getrlimit(RLIMIT_STACK, &stack_limit) == -1) { |
| 120 | PLOG(FATAL) << "getrlimit(RLIMIT_STACK) failed"; |
| 121 | } |
| 122 | if (stack_limit.rlim_cur == RLIM_INFINITY) { |
| 123 | size_t old_stack_size = *stack_size; |
| 124 | |
| 125 | // Use the kernel default limit as our size, and adjust the base to match. |
| 126 | *stack_size = 8 * MB; |
| 127 | *stack_base = reinterpret_cast<uint8_t*>(*stack_base) + (old_stack_size - *stack_size); |
| 128 | |
| 129 | VLOG(threads) << "Limiting unlimited stack (reported as " << PrettySize(old_stack_size) << ")" |
| 130 | << " to " << PrettySize(*stack_size) |
| 131 | << " with base " << *stack_base; |
| 132 | } |
| 133 | } |
| 134 | #endif |
| 135 | |
Elliott Hughes | e188419 | 2012-04-23 12:38:15 -0700 | [diff] [blame] | 136 | #endif |
| 137 | } |
| 138 | |
Elliott Hughes | d92bec4 | 2011-09-02 17:04:36 -0700 | [diff] [blame] | 139 | bool ReadFileToString(const std::string& file_name, std::string* result) { |
Ian Rogers | 700a402 | 2014-05-19 16:49:03 -0700 | [diff] [blame] | 140 | std::unique_ptr<File> file(new File); |
Elliott Hughes | 7616005 | 2012-12-12 16:31:20 -0800 | [diff] [blame] | 141 | if (!file->Open(file_name, O_RDONLY)) { |
Elliott Hughes | d92bec4 | 2011-09-02 17:04:36 -0700 | [diff] [blame] | 142 | return false; |
| 143 | } |
buzbee | c143c55 | 2011-08-20 17:38:58 -0700 | [diff] [blame] | 144 | |
Elliott Hughes | 3b6baaa | 2011-10-14 19:13:56 -0700 | [diff] [blame] | 145 | std::vector<char> buf(8 * KB); |
buzbee | c143c55 | 2011-08-20 17:38:58 -0700 | [diff] [blame] | 146 | while (true) { |
Elliott Hughes | 7616005 | 2012-12-12 16:31:20 -0800 | [diff] [blame] | 147 | int64_t n = TEMP_FAILURE_RETRY(read(file->Fd(), &buf[0], buf.size())); |
Elliott Hughes | d92bec4 | 2011-09-02 17:04:36 -0700 | [diff] [blame] | 148 | if (n == -1) { |
| 149 | return false; |
buzbee | c143c55 | 2011-08-20 17:38:58 -0700 | [diff] [blame] | 150 | } |
Elliott Hughes | d92bec4 | 2011-09-02 17:04:36 -0700 | [diff] [blame] | 151 | if (n == 0) { |
| 152 | return true; |
| 153 | } |
Elliott Hughes | 3b6baaa | 2011-10-14 19:13:56 -0700 | [diff] [blame] | 154 | result->append(&buf[0], n); |
buzbee | c143c55 | 2011-08-20 17:38:58 -0700 | [diff] [blame] | 155 | } |
buzbee | c143c55 | 2011-08-20 17:38:58 -0700 | [diff] [blame] | 156 | } |
| 157 | |
Elliott Hughes | e27955c | 2011-08-26 15:21:24 -0700 | [diff] [blame] | 158 | std::string GetIsoDate() { |
| 159 | time_t now = time(NULL); |
Elliott Hughes | 7b9d996 | 2012-04-20 18:48:18 -0700 | [diff] [blame] | 160 | tm tmbuf; |
| 161 | tm* ptm = localtime_r(&now, &tmbuf); |
Elliott Hughes | e27955c | 2011-08-26 15:21:24 -0700 | [diff] [blame] | 162 | return StringPrintf("%04d-%02d-%02d %02d:%02d:%02d", |
| 163 | ptm->tm_year + 1900, ptm->tm_mon+1, ptm->tm_mday, |
| 164 | ptm->tm_hour, ptm->tm_min, ptm->tm_sec); |
| 165 | } |
| 166 | |
Elliott Hughes | 7162ad9 | 2011-10-27 14:08:42 -0700 | [diff] [blame] | 167 | uint64_t MilliTime() { |
Elliott Hughes | ad6c9c3 | 2012-01-19 17:39:12 -0800 | [diff] [blame] | 168 | #if defined(HAVE_POSIX_CLOCKS) |
Elliott Hughes | 7b9d996 | 2012-04-20 18:48:18 -0700 | [diff] [blame] | 169 | timespec now; |
Elliott Hughes | 7162ad9 | 2011-10-27 14:08:42 -0700 | [diff] [blame] | 170 | clock_gettime(CLOCK_MONOTONIC, &now); |
Ian Rogers | 0f67847 | 2014-03-10 16:18:37 -0700 | [diff] [blame] | 171 | return static_cast<uint64_t>(now.tv_sec) * UINT64_C(1000) + now.tv_nsec / UINT64_C(1000000); |
Elliott Hughes | ad6c9c3 | 2012-01-19 17:39:12 -0800 | [diff] [blame] | 172 | #else |
Elliott Hughes | 7b9d996 | 2012-04-20 18:48:18 -0700 | [diff] [blame] | 173 | timeval now; |
Elliott Hughes | ad6c9c3 | 2012-01-19 17:39:12 -0800 | [diff] [blame] | 174 | gettimeofday(&now, NULL); |
Ian Rogers | 0f67847 | 2014-03-10 16:18:37 -0700 | [diff] [blame] | 175 | return static_cast<uint64_t>(now.tv_sec) * UINT64_C(1000) + now.tv_usec / UINT64_C(1000); |
Elliott Hughes | ad6c9c3 | 2012-01-19 17:39:12 -0800 | [diff] [blame] | 176 | #endif |
Elliott Hughes | 7162ad9 | 2011-10-27 14:08:42 -0700 | [diff] [blame] | 177 | } |
| 178 | |
jeffhao | a9ef3fd | 2011-12-13 18:33:43 -0800 | [diff] [blame] | 179 | uint64_t MicroTime() { |
Elliott Hughes | ad6c9c3 | 2012-01-19 17:39:12 -0800 | [diff] [blame] | 180 | #if defined(HAVE_POSIX_CLOCKS) |
Elliott Hughes | 7b9d996 | 2012-04-20 18:48:18 -0700 | [diff] [blame] | 181 | timespec now; |
jeffhao | a9ef3fd | 2011-12-13 18:33:43 -0800 | [diff] [blame] | 182 | clock_gettime(CLOCK_MONOTONIC, &now); |
Ian Rogers | 0f67847 | 2014-03-10 16:18:37 -0700 | [diff] [blame] | 183 | return static_cast<uint64_t>(now.tv_sec) * UINT64_C(1000000) + now.tv_nsec / UINT64_C(1000); |
Elliott Hughes | ad6c9c3 | 2012-01-19 17:39:12 -0800 | [diff] [blame] | 184 | #else |
Elliott Hughes | 7b9d996 | 2012-04-20 18:48:18 -0700 | [diff] [blame] | 185 | timeval now; |
Elliott Hughes | ad6c9c3 | 2012-01-19 17:39:12 -0800 | [diff] [blame] | 186 | gettimeofday(&now, NULL); |
Ian Rogers | 0f67847 | 2014-03-10 16:18:37 -0700 | [diff] [blame] | 187 | return static_cast<uint64_t>(now.tv_sec) * UINT64_C(1000000) + now.tv_usec; |
Elliott Hughes | ad6c9c3 | 2012-01-19 17:39:12 -0800 | [diff] [blame] | 188 | #endif |
jeffhao | a9ef3fd | 2011-12-13 18:33:43 -0800 | [diff] [blame] | 189 | } |
| 190 | |
Elliott Hughes | 83df2ac | 2011-10-11 16:37:54 -0700 | [diff] [blame] | 191 | uint64_t NanoTime() { |
Elliott Hughes | ad6c9c3 | 2012-01-19 17:39:12 -0800 | [diff] [blame] | 192 | #if defined(HAVE_POSIX_CLOCKS) |
Elliott Hughes | 7b9d996 | 2012-04-20 18:48:18 -0700 | [diff] [blame] | 193 | timespec now; |
Elliott Hughes | 83df2ac | 2011-10-11 16:37:54 -0700 | [diff] [blame] | 194 | clock_gettime(CLOCK_MONOTONIC, &now); |
Ian Rogers | 0f67847 | 2014-03-10 16:18:37 -0700 | [diff] [blame] | 195 | return static_cast<uint64_t>(now.tv_sec) * UINT64_C(1000000000) + now.tv_nsec; |
Elliott Hughes | ad6c9c3 | 2012-01-19 17:39:12 -0800 | [diff] [blame] | 196 | #else |
Elliott Hughes | 7b9d996 | 2012-04-20 18:48:18 -0700 | [diff] [blame] | 197 | timeval now; |
Elliott Hughes | ad6c9c3 | 2012-01-19 17:39:12 -0800 | [diff] [blame] | 198 | gettimeofday(&now, NULL); |
Ian Rogers | 0f67847 | 2014-03-10 16:18:37 -0700 | [diff] [blame] | 199 | return static_cast<uint64_t>(now.tv_sec) * UINT64_C(1000000000) + now.tv_usec * UINT64_C(1000); |
Elliott Hughes | ad6c9c3 | 2012-01-19 17:39:12 -0800 | [diff] [blame] | 200 | #endif |
Elliott Hughes | 83df2ac | 2011-10-11 16:37:54 -0700 | [diff] [blame] | 201 | } |
| 202 | |
Elliott Hughes | 0512f02 | 2012-03-15 22:10:52 -0700 | [diff] [blame] | 203 | uint64_t ThreadCpuNanoTime() { |
| 204 | #if defined(HAVE_POSIX_CLOCKS) |
Elliott Hughes | 7b9d996 | 2012-04-20 18:48:18 -0700 | [diff] [blame] | 205 | timespec now; |
Elliott Hughes | 0512f02 | 2012-03-15 22:10:52 -0700 | [diff] [blame] | 206 | clock_gettime(CLOCK_THREAD_CPUTIME_ID, &now); |
Ian Rogers | 0f67847 | 2014-03-10 16:18:37 -0700 | [diff] [blame] | 207 | return static_cast<uint64_t>(now.tv_sec) * UINT64_C(1000000000) + now.tv_nsec; |
Elliott Hughes | 0512f02 | 2012-03-15 22:10:52 -0700 | [diff] [blame] | 208 | #else |
| 209 | UNIMPLEMENTED(WARNING); |
| 210 | return -1; |
| 211 | #endif |
| 212 | } |
| 213 | |
Ian Rogers | 56edc43 | 2013-01-18 16:51:51 -0800 | [diff] [blame] | 214 | void NanoSleep(uint64_t ns) { |
| 215 | timespec tm; |
| 216 | tm.tv_sec = 0; |
| 217 | tm.tv_nsec = ns; |
| 218 | nanosleep(&tm, NULL); |
| 219 | } |
| 220 | |
Brian Carlstrom | bcc2926 | 2012-11-02 11:36:03 -0700 | [diff] [blame] | 221 | void InitTimeSpec(bool absolute, int clock, int64_t ms, int32_t ns, timespec* ts) { |
| 222 | int64_t endSec; |
| 223 | |
| 224 | if (absolute) { |
| 225 | #if !defined(__APPLE__) |
| 226 | clock_gettime(clock, ts); |
| 227 | #else |
| 228 | UNUSED(clock); |
| 229 | timeval tv; |
| 230 | gettimeofday(&tv, NULL); |
| 231 | ts->tv_sec = tv.tv_sec; |
| 232 | ts->tv_nsec = tv.tv_usec * 1000; |
| 233 | #endif |
| 234 | } else { |
| 235 | ts->tv_sec = 0; |
| 236 | ts->tv_nsec = 0; |
| 237 | } |
| 238 | endSec = ts->tv_sec + ms / 1000; |
| 239 | if (UNLIKELY(endSec >= 0x7fffffff)) { |
| 240 | std::ostringstream ss; |
| 241 | LOG(INFO) << "Note: end time exceeds epoch: " << ss.str(); |
| 242 | endSec = 0x7ffffffe; |
| 243 | } |
| 244 | ts->tv_sec = endSec; |
| 245 | ts->tv_nsec = (ts->tv_nsec + (ms % 1000) * 1000000) + ns; |
| 246 | |
| 247 | // Catch rollover. |
| 248 | if (ts->tv_nsec >= 1000000000L) { |
| 249 | ts->tv_sec++; |
| 250 | ts->tv_nsec -= 1000000000L; |
| 251 | } |
| 252 | } |
| 253 | |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 254 | std::string PrettyDescriptor(mirror::String* java_descriptor) { |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 255 | if (java_descriptor == NULL) { |
| 256 | return "null"; |
| 257 | } |
Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 258 | return PrettyDescriptor(java_descriptor->ToModifiedUtf8().c_str()); |
Elliott Hughes | 6c8867d | 2011-10-03 16:34:05 -0700 | [diff] [blame] | 259 | } |
Elliott Hughes | 5174fe6 | 2011-08-23 15:12:35 -0700 | [diff] [blame] | 260 | |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 261 | std::string PrettyDescriptor(mirror::Class* klass) { |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 262 | if (klass == NULL) { |
| 263 | return "null"; |
| 264 | } |
Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 265 | std::string temp; |
| 266 | return PrettyDescriptor(klass->GetDescriptor(&temp)); |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 267 | } |
| 268 | |
Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 269 | std::string PrettyDescriptor(const char* descriptor) { |
Elliott Hughes | 11e4507 | 2011-08-16 17:40:46 -0700 | [diff] [blame] | 270 | // Count the number of '['s to get the dimensionality. |
Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 271 | const char* c = descriptor; |
Elliott Hughes | 11e4507 | 2011-08-16 17:40:46 -0700 | [diff] [blame] | 272 | size_t dim = 0; |
| 273 | while (*c == '[') { |
| 274 | dim++; |
| 275 | c++; |
| 276 | } |
| 277 | |
| 278 | // Reference or primitive? |
| 279 | if (*c == 'L') { |
| 280 | // "[[La/b/C;" -> "a.b.C[][]". |
Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 281 | c++; // Skip the 'L'. |
Elliott Hughes | 11e4507 | 2011-08-16 17:40:46 -0700 | [diff] [blame] | 282 | } else { |
| 283 | // "[[B" -> "byte[][]". |
| 284 | // To make life easier, we make primitives look like unqualified |
| 285 | // reference types. |
| 286 | switch (*c) { |
| 287 | case 'B': c = "byte;"; break; |
| 288 | case 'C': c = "char;"; break; |
| 289 | case 'D': c = "double;"; break; |
| 290 | case 'F': c = "float;"; break; |
| 291 | case 'I': c = "int;"; break; |
| 292 | case 'J': c = "long;"; break; |
| 293 | case 'S': c = "short;"; break; |
| 294 | case 'Z': c = "boolean;"; break; |
Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 295 | case 'V': c = "void;"; break; // Used when decoding return types. |
Elliott Hughes | 5174fe6 | 2011-08-23 15:12:35 -0700 | [diff] [blame] | 296 | default: return descriptor; |
Elliott Hughes | 11e4507 | 2011-08-16 17:40:46 -0700 | [diff] [blame] | 297 | } |
| 298 | } |
| 299 | |
| 300 | // At this point, 'c' is a string of the form "fully/qualified/Type;" |
| 301 | // or "primitive;". Rewrite the type with '.' instead of '/': |
| 302 | std::string result; |
| 303 | const char* p = c; |
| 304 | while (*p != ';') { |
| 305 | char ch = *p++; |
| 306 | if (ch == '/') { |
| 307 | ch = '.'; |
| 308 | } |
| 309 | result.push_back(ch); |
| 310 | } |
| 311 | // ...and replace the semicolon with 'dim' "[]" pairs: |
Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 312 | for (size_t i = 0; i < dim; ++i) { |
Elliott Hughes | 11e4507 | 2011-08-16 17:40:46 -0700 | [diff] [blame] | 313 | result += "[]"; |
| 314 | } |
| 315 | return result; |
| 316 | } |
| 317 | |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 318 | std::string PrettyField(mirror::ArtField* f, bool with_type) { |
Elliott Hughes | a250199 | 2011-08-26 19:39:54 -0700 | [diff] [blame] | 319 | if (f == NULL) { |
| 320 | return "null"; |
| 321 | } |
Elliott Hughes | 54e7df1 | 2011-09-16 11:47:04 -0700 | [diff] [blame] | 322 | std::string result; |
| 323 | if (with_type) { |
Mathieu Chartier | 61c5ebc | 2014-06-05 17:42:53 -0700 | [diff] [blame] | 324 | result += PrettyDescriptor(f->GetTypeDescriptor()); |
Elliott Hughes | 54e7df1 | 2011-09-16 11:47:04 -0700 | [diff] [blame] | 325 | result += ' '; |
| 326 | } |
Mathieu Chartier | 61c5ebc | 2014-06-05 17:42:53 -0700 | [diff] [blame] | 327 | StackHandleScope<1> hs(Thread::Current()); |
| 328 | result += PrettyDescriptor(FieldHelper(hs.NewHandle(f)).GetDeclaringClassDescriptor()); |
Elliott Hughes | a250199 | 2011-08-26 19:39:54 -0700 | [diff] [blame] | 329 | result += '.'; |
Mathieu Chartier | 61c5ebc | 2014-06-05 17:42:53 -0700 | [diff] [blame] | 330 | result += f->GetName(); |
Elliott Hughes | a250199 | 2011-08-26 19:39:54 -0700 | [diff] [blame] | 331 | return result; |
| 332 | } |
| 333 | |
Brian Carlstrom | 6f29d0e | 2012-05-11 15:50:29 -0700 | [diff] [blame] | 334 | std::string PrettyField(uint32_t field_idx, const DexFile& dex_file, bool with_type) { |
Elliott Hughes | 60641a7 | 2013-02-27 14:36:16 -0800 | [diff] [blame] | 335 | if (field_idx >= dex_file.NumFieldIds()) { |
| 336 | return StringPrintf("<<invalid-field-idx-%d>>", field_idx); |
| 337 | } |
Brian Carlstrom | 6f29d0e | 2012-05-11 15:50:29 -0700 | [diff] [blame] | 338 | const DexFile::FieldId& field_id = dex_file.GetFieldId(field_idx); |
| 339 | std::string result; |
| 340 | if (with_type) { |
| 341 | result += dex_file.GetFieldTypeDescriptor(field_id); |
| 342 | result += ' '; |
| 343 | } |
| 344 | result += PrettyDescriptor(dex_file.GetFieldDeclaringClassDescriptor(field_id)); |
| 345 | result += '.'; |
| 346 | result += dex_file.GetFieldName(field_id); |
| 347 | return result; |
| 348 | } |
| 349 | |
Mathieu Chartier | 18c24b6 | 2012-09-10 08:54:25 -0700 | [diff] [blame] | 350 | std::string PrettyType(uint32_t type_idx, const DexFile& dex_file) { |
Elliott Hughes | 60641a7 | 2013-02-27 14:36:16 -0800 | [diff] [blame] | 351 | if (type_idx >= dex_file.NumTypeIds()) { |
| 352 | return StringPrintf("<<invalid-type-idx-%d>>", type_idx); |
| 353 | } |
Mathieu Chartier | 18c24b6 | 2012-09-10 08:54:25 -0700 | [diff] [blame] | 354 | const DexFile::TypeId& type_id = dex_file.GetTypeId(type_idx); |
Mathieu Chartier | 4c70d77 | 2012-09-10 14:08:32 -0700 | [diff] [blame] | 355 | return PrettyDescriptor(dex_file.GetTypeDescriptor(type_id)); |
Mathieu Chartier | 18c24b6 | 2012-09-10 08:54:25 -0700 | [diff] [blame] | 356 | } |
| 357 | |
Elliott Hughes | 9058f2b | 2012-03-22 18:06:48 -0700 | [diff] [blame] | 358 | std::string PrettyArguments(const char* signature) { |
| 359 | std::string result; |
| 360 | result += '('; |
| 361 | CHECK_EQ(*signature, '('); |
Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 362 | ++signature; // Skip the '('. |
Elliott Hughes | 9058f2b | 2012-03-22 18:06:48 -0700 | [diff] [blame] | 363 | while (*signature != ')') { |
| 364 | size_t argument_length = 0; |
| 365 | while (signature[argument_length] == '[') { |
| 366 | ++argument_length; |
| 367 | } |
| 368 | if (signature[argument_length] == 'L') { |
| 369 | argument_length = (strchr(signature, ';') - signature + 1); |
| 370 | } else { |
| 371 | ++argument_length; |
| 372 | } |
Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 373 | { |
| 374 | std::string argument_descriptor(signature, argument_length); |
| 375 | result += PrettyDescriptor(argument_descriptor.c_str()); |
| 376 | } |
Elliott Hughes | 9058f2b | 2012-03-22 18:06:48 -0700 | [diff] [blame] | 377 | if (signature[argument_length] != ')') { |
| 378 | result += ", "; |
| 379 | } |
| 380 | signature += argument_length; |
| 381 | } |
| 382 | CHECK_EQ(*signature, ')'); |
Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 383 | ++signature; // Skip the ')'. |
Elliott Hughes | 9058f2b | 2012-03-22 18:06:48 -0700 | [diff] [blame] | 384 | result += ')'; |
| 385 | return result; |
| 386 | } |
| 387 | |
| 388 | std::string PrettyReturnType(const char* signature) { |
| 389 | const char* return_type = strchr(signature, ')'); |
| 390 | CHECK(return_type != NULL); |
Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 391 | ++return_type; // Skip ')'. |
Elliott Hughes | 9058f2b | 2012-03-22 18:06:48 -0700 | [diff] [blame] | 392 | return PrettyDescriptor(return_type); |
| 393 | } |
| 394 | |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 395 | std::string PrettyMethod(mirror::ArtMethod* m, bool with_signature) { |
Ian Rogers | 16ce092 | 2014-01-10 14:59:36 -0800 | [diff] [blame] | 396 | if (m == nullptr) { |
Elliott Hughes | a0b8feb | 2011-08-20 09:50:55 -0700 | [diff] [blame] | 397 | return "null"; |
| 398 | } |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 399 | std::string result(PrettyDescriptor(m->GetDeclaringClassDescriptor())); |
Elliott Hughes | a0b8feb | 2011-08-20 09:50:55 -0700 | [diff] [blame] | 400 | result += '.'; |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 401 | result += m->GetName(); |
Ian Rogers | 16ce092 | 2014-01-10 14:59:36 -0800 | [diff] [blame] | 402 | if (UNLIKELY(m->IsFastNative())) { |
| 403 | result += "!"; |
| 404 | } |
Elliott Hughes | a0b8feb | 2011-08-20 09:50:55 -0700 | [diff] [blame] | 405 | if (with_signature) { |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 406 | const Signature signature = m->GetSignature(); |
Ian Rogers | d91d6d6 | 2013-09-25 20:26:14 -0700 | [diff] [blame] | 407 | std::string sig_as_string(signature.ToString()); |
| 408 | if (signature == Signature::NoSignature()) { |
| 409 | return result + sig_as_string; |
Elliott Hughes | f8c1193 | 2012-03-23 19:53:59 -0700 | [diff] [blame] | 410 | } |
Ian Rogers | d91d6d6 | 2013-09-25 20:26:14 -0700 | [diff] [blame] | 411 | result = PrettyReturnType(sig_as_string.c_str()) + " " + result + |
| 412 | PrettyArguments(sig_as_string.c_str()); |
Elliott Hughes | a0b8feb | 2011-08-20 09:50:55 -0700 | [diff] [blame] | 413 | } |
| 414 | return result; |
| 415 | } |
| 416 | |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 417 | std::string PrettyMethod(uint32_t method_idx, const DexFile& dex_file, bool with_signature) { |
Elliott Hughes | 60641a7 | 2013-02-27 14:36:16 -0800 | [diff] [blame] | 418 | if (method_idx >= dex_file.NumMethodIds()) { |
| 419 | return StringPrintf("<<invalid-method-idx-%d>>", method_idx); |
| 420 | } |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 421 | const DexFile::MethodId& method_id = dex_file.GetMethodId(method_idx); |
| 422 | std::string result(PrettyDescriptor(dex_file.GetMethodDeclaringClassDescriptor(method_id))); |
| 423 | result += '.'; |
| 424 | result += dex_file.GetMethodName(method_id); |
| 425 | if (with_signature) { |
Ian Rogers | d91d6d6 | 2013-09-25 20:26:14 -0700 | [diff] [blame] | 426 | const Signature signature = dex_file.GetMethodSignature(method_id); |
| 427 | std::string sig_as_string(signature.ToString()); |
| 428 | if (signature == Signature::NoSignature()) { |
| 429 | return result + sig_as_string; |
Elliott Hughes | f8c1193 | 2012-03-23 19:53:59 -0700 | [diff] [blame] | 430 | } |
Ian Rogers | d91d6d6 | 2013-09-25 20:26:14 -0700 | [diff] [blame] | 431 | result = PrettyReturnType(sig_as_string.c_str()) + " " + result + |
| 432 | PrettyArguments(sig_as_string.c_str()); |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 433 | } |
| 434 | return result; |
| 435 | } |
| 436 | |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 437 | std::string PrettyTypeOf(mirror::Object* obj) { |
Elliott Hughes | 11e4507 | 2011-08-16 17:40:46 -0700 | [diff] [blame] | 438 | if (obj == NULL) { |
| 439 | return "null"; |
| 440 | } |
| 441 | if (obj->GetClass() == NULL) { |
| 442 | return "(raw)"; |
| 443 | } |
Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 444 | std::string temp; |
| 445 | std::string result(PrettyDescriptor(obj->GetClass()->GetDescriptor(&temp))); |
Elliott Hughes | 11e4507 | 2011-08-16 17:40:46 -0700 | [diff] [blame] | 446 | if (obj->IsClass()) { |
Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 447 | result += "<" + PrettyDescriptor(obj->AsClass()->GetDescriptor(&temp)) + ">"; |
Elliott Hughes | 11e4507 | 2011-08-16 17:40:46 -0700 | [diff] [blame] | 448 | } |
| 449 | return result; |
| 450 | } |
| 451 | |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 452 | std::string PrettyClass(mirror::Class* c) { |
Elliott Hughes | 54e7df1 | 2011-09-16 11:47:04 -0700 | [diff] [blame] | 453 | if (c == NULL) { |
| 454 | return "null"; |
| 455 | } |
| 456 | std::string result; |
| 457 | result += "java.lang.Class<"; |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 458 | result += PrettyDescriptor(c); |
Elliott Hughes | 54e7df1 | 2011-09-16 11:47:04 -0700 | [diff] [blame] | 459 | result += ">"; |
| 460 | return result; |
| 461 | } |
| 462 | |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 463 | std::string PrettyClassAndClassLoader(mirror::Class* c) { |
Ian Rogers | d81871c | 2011-10-03 13:57:23 -0700 | [diff] [blame] | 464 | if (c == NULL) { |
| 465 | return "null"; |
| 466 | } |
| 467 | std::string result; |
| 468 | result += "java.lang.Class<"; |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 469 | result += PrettyDescriptor(c); |
Ian Rogers | d81871c | 2011-10-03 13:57:23 -0700 | [diff] [blame] | 470 | result += ","; |
| 471 | result += PrettyTypeOf(c->GetClassLoader()); |
| 472 | // TODO: add an identifying hash value for the loader |
| 473 | result += ">"; |
| 474 | return result; |
| 475 | } |
| 476 | |
Andreas Gampe | c0d8229 | 2014-09-23 10:38:30 -0700 | [diff] [blame] | 477 | std::string PrettyJavaAccessFlags(uint32_t access_flags) { |
| 478 | std::string result; |
| 479 | if ((access_flags & kAccPublic) != 0) { |
| 480 | result += "public "; |
| 481 | } |
| 482 | if ((access_flags & kAccProtected) != 0) { |
| 483 | result += "protected "; |
| 484 | } |
| 485 | if ((access_flags & kAccPrivate) != 0) { |
| 486 | result += "private "; |
| 487 | } |
| 488 | if ((access_flags & kAccFinal) != 0) { |
| 489 | result += "final "; |
| 490 | } |
| 491 | if ((access_flags & kAccStatic) != 0) { |
| 492 | result += "static "; |
| 493 | } |
| 494 | if ((access_flags & kAccTransient) != 0) { |
| 495 | result += "transient "; |
| 496 | } |
| 497 | if ((access_flags & kAccVolatile) != 0) { |
| 498 | result += "volatile "; |
| 499 | } |
| 500 | if ((access_flags & kAccSynchronized) != 0) { |
| 501 | result += "synchronized "; |
| 502 | } |
| 503 | return result; |
| 504 | } |
| 505 | |
Mathieu Chartier | e6da9af | 2013-12-16 11:54:42 -0800 | [diff] [blame] | 506 | std::string PrettySize(int64_t byte_count) { |
Elliott Hughes | c967f78 | 2012-04-16 10:23:15 -0700 | [diff] [blame] | 507 | // The byte thresholds at which we display amounts. A byte count is displayed |
| 508 | // in unit U when kUnitThresholds[U] <= bytes < kUnitThresholds[U+1]. |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 509 | static const int64_t kUnitThresholds[] = { |
Elliott Hughes | c967f78 | 2012-04-16 10:23:15 -0700 | [diff] [blame] | 510 | 0, // B up to... |
| 511 | 3*1024, // KB up to... |
| 512 | 2*1024*1024, // MB up to... |
| 513 | 1024*1024*1024 // GB from here. |
| 514 | }; |
Mathieu Chartier | e6da9af | 2013-12-16 11:54:42 -0800 | [diff] [blame] | 515 | static const int64_t kBytesPerUnit[] = { 1, KB, MB, GB }; |
Elliott Hughes | c967f78 | 2012-04-16 10:23:15 -0700 | [diff] [blame] | 516 | static const char* const kUnitStrings[] = { "B", "KB", "MB", "GB" }; |
Mathieu Chartier | e6da9af | 2013-12-16 11:54:42 -0800 | [diff] [blame] | 517 | const char* negative_str = ""; |
| 518 | if (byte_count < 0) { |
| 519 | negative_str = "-"; |
| 520 | byte_count = -byte_count; |
| 521 | } |
Elliott Hughes | c967f78 | 2012-04-16 10:23:15 -0700 | [diff] [blame] | 522 | int i = arraysize(kUnitThresholds); |
| 523 | while (--i > 0) { |
| 524 | if (byte_count >= kUnitThresholds[i]) { |
| 525 | break; |
| 526 | } |
Ian Rogers | 3bb17a6 | 2012-01-27 23:56:44 -0800 | [diff] [blame] | 527 | } |
Brian Carlstrom | 474cc79 | 2014-03-07 14:18:15 -0800 | [diff] [blame] | 528 | return StringPrintf("%s%" PRId64 "%s", |
| 529 | negative_str, byte_count / kBytesPerUnit[i], kUnitStrings[i]); |
Ian Rogers | 3bb17a6 | 2012-01-27 23:56:44 -0800 | [diff] [blame] | 530 | } |
| 531 | |
Mathieu Chartier | f5997b4 | 2014-06-20 10:37:54 -0700 | [diff] [blame] | 532 | std::string PrettyDuration(uint64_t nano_duration, size_t max_fraction_digits) { |
Ian Rogers | 3bb17a6 | 2012-01-27 23:56:44 -0800 | [diff] [blame] | 533 | if (nano_duration == 0) { |
| 534 | return "0"; |
| 535 | } else { |
Mathieu Chartier | f5997b4 | 2014-06-20 10:37:54 -0700 | [diff] [blame] | 536 | return FormatDuration(nano_duration, GetAppropriateTimeUnit(nano_duration), |
| 537 | max_fraction_digits); |
Mathieu Chartier | 0325e62 | 2012-09-05 14:22:51 -0700 | [diff] [blame] | 538 | } |
| 539 | } |
| 540 | |
| 541 | TimeUnit GetAppropriateTimeUnit(uint64_t nano_duration) { |
| 542 | const uint64_t one_sec = 1000 * 1000 * 1000; |
| 543 | const uint64_t one_ms = 1000 * 1000; |
| 544 | const uint64_t one_us = 1000; |
| 545 | if (nano_duration >= one_sec) { |
| 546 | return kTimeUnitSecond; |
| 547 | } else if (nano_duration >= one_ms) { |
| 548 | return kTimeUnitMillisecond; |
| 549 | } else if (nano_duration >= one_us) { |
| 550 | return kTimeUnitMicrosecond; |
| 551 | } else { |
| 552 | return kTimeUnitNanosecond; |
| 553 | } |
| 554 | } |
| 555 | |
| 556 | uint64_t GetNsToTimeUnitDivisor(TimeUnit time_unit) { |
| 557 | const uint64_t one_sec = 1000 * 1000 * 1000; |
| 558 | const uint64_t one_ms = 1000 * 1000; |
| 559 | const uint64_t one_us = 1000; |
| 560 | |
| 561 | switch (time_unit) { |
| 562 | case kTimeUnitSecond: |
| 563 | return one_sec; |
| 564 | case kTimeUnitMillisecond: |
| 565 | return one_ms; |
| 566 | case kTimeUnitMicrosecond: |
| 567 | return one_us; |
| 568 | case kTimeUnitNanosecond: |
| 569 | return 1; |
| 570 | } |
| 571 | return 0; |
| 572 | } |
| 573 | |
Mathieu Chartier | f5997b4 | 2014-06-20 10:37:54 -0700 | [diff] [blame] | 574 | std::string FormatDuration(uint64_t nano_duration, TimeUnit time_unit, |
| 575 | size_t max_fraction_digits) { |
| 576 | const char* unit = nullptr; |
Mathieu Chartier | 0325e62 | 2012-09-05 14:22:51 -0700 | [diff] [blame] | 577 | uint64_t divisor = GetNsToTimeUnitDivisor(time_unit); |
Mathieu Chartier | 0325e62 | 2012-09-05 14:22:51 -0700 | [diff] [blame] | 578 | switch (time_unit) { |
| 579 | case kTimeUnitSecond: |
Ian Rogers | 3bb17a6 | 2012-01-27 23:56:44 -0800 | [diff] [blame] | 580 | unit = "s"; |
Mathieu Chartier | 0325e62 | 2012-09-05 14:22:51 -0700 | [diff] [blame] | 581 | break; |
| 582 | case kTimeUnitMillisecond: |
Ian Rogers | 3bb17a6 | 2012-01-27 23:56:44 -0800 | [diff] [blame] | 583 | unit = "ms"; |
Mathieu Chartier | 0325e62 | 2012-09-05 14:22:51 -0700 | [diff] [blame] | 584 | break; |
| 585 | case kTimeUnitMicrosecond: |
Ian Rogers | 3bb17a6 | 2012-01-27 23:56:44 -0800 | [diff] [blame] | 586 | unit = "us"; |
Mathieu Chartier | 0325e62 | 2012-09-05 14:22:51 -0700 | [diff] [blame] | 587 | break; |
| 588 | case kTimeUnitNanosecond: |
Ian Rogers | 3bb17a6 | 2012-01-27 23:56:44 -0800 | [diff] [blame] | 589 | unit = "ns"; |
Mathieu Chartier | 0325e62 | 2012-09-05 14:22:51 -0700 | [diff] [blame] | 590 | break; |
| 591 | } |
Mathieu Chartier | f5997b4 | 2014-06-20 10:37:54 -0700 | [diff] [blame] | 592 | const uint64_t whole_part = nano_duration / divisor; |
Mathieu Chartier | 0325e62 | 2012-09-05 14:22:51 -0700 | [diff] [blame] | 593 | uint64_t fractional_part = nano_duration % divisor; |
| 594 | if (fractional_part == 0) { |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 595 | return StringPrintf("%" PRIu64 "%s", whole_part, unit); |
Mathieu Chartier | 0325e62 | 2012-09-05 14:22:51 -0700 | [diff] [blame] | 596 | } else { |
Mathieu Chartier | f5997b4 | 2014-06-20 10:37:54 -0700 | [diff] [blame] | 597 | static constexpr size_t kMaxDigits = 30; |
Andreas Gampe | 829b4ba | 2014-06-26 13:49:36 -0700 | [diff] [blame] | 598 | size_t avail_digits = kMaxDigits; |
Mathieu Chartier | f5997b4 | 2014-06-20 10:37:54 -0700 | [diff] [blame] | 599 | char fraction_buffer[kMaxDigits]; |
| 600 | char* ptr = fraction_buffer; |
| 601 | uint64_t multiplier = 10; |
| 602 | // This infinite loops if fractional part is 0. |
Andreas Gampe | 829b4ba | 2014-06-26 13:49:36 -0700 | [diff] [blame] | 603 | while (avail_digits > 1 && fractional_part * multiplier < divisor) { |
Mathieu Chartier | f5997b4 | 2014-06-20 10:37:54 -0700 | [diff] [blame] | 604 | multiplier *= 10; |
| 605 | *ptr++ = '0'; |
Andreas Gampe | 829b4ba | 2014-06-26 13:49:36 -0700 | [diff] [blame] | 606 | avail_digits--; |
Ian Rogers | 3bb17a6 | 2012-01-27 23:56:44 -0800 | [diff] [blame] | 607 | } |
Andreas Gampe | 829b4ba | 2014-06-26 13:49:36 -0700 | [diff] [blame] | 608 | snprintf(ptr, avail_digits, "%" PRIu64, fractional_part); |
Mathieu Chartier | f5997b4 | 2014-06-20 10:37:54 -0700 | [diff] [blame] | 609 | fraction_buffer[std::min(kMaxDigits - 1, max_fraction_digits)] = '\0'; |
| 610 | return StringPrintf("%" PRIu64 ".%s%s", whole_part, fraction_buffer, unit); |
Ian Rogers | 3bb17a6 | 2012-01-27 23:56:44 -0800 | [diff] [blame] | 611 | } |
| 612 | } |
| 613 | |
Ian Rogers | 576ca0c | 2014-06-06 15:58:22 -0700 | [diff] [blame] | 614 | std::string PrintableChar(uint16_t ch) { |
| 615 | std::string result; |
| 616 | result += '\''; |
| 617 | if (NeedsEscaping(ch)) { |
| 618 | StringAppendF(&result, "\\u%04x", ch); |
| 619 | } else { |
| 620 | result += ch; |
| 621 | } |
| 622 | result += '\''; |
| 623 | return result; |
| 624 | } |
| 625 | |
Ian Rogers | 68b5685 | 2014-08-29 20:19:11 -0700 | [diff] [blame] | 626 | std::string PrintableString(const char* utf) { |
Elliott Hughes | 82914b6 | 2012-04-09 15:56:29 -0700 | [diff] [blame] | 627 | std::string result; |
| 628 | result += '"'; |
Ian Rogers | 68b5685 | 2014-08-29 20:19:11 -0700 | [diff] [blame] | 629 | const char* p = utf; |
Elliott Hughes | 82914b6 | 2012-04-09 15:56:29 -0700 | [diff] [blame] | 630 | size_t char_count = CountModifiedUtf8Chars(p); |
| 631 | for (size_t i = 0; i < char_count; ++i) { |
| 632 | uint16_t ch = GetUtf16FromUtf8(&p); |
| 633 | if (ch == '\\') { |
| 634 | result += "\\\\"; |
| 635 | } else if (ch == '\n') { |
| 636 | result += "\\n"; |
| 637 | } else if (ch == '\r') { |
| 638 | result += "\\r"; |
| 639 | } else if (ch == '\t') { |
| 640 | result += "\\t"; |
| 641 | } else if (NeedsEscaping(ch)) { |
| 642 | StringAppendF(&result, "\\u%04x", ch); |
| 643 | } else { |
| 644 | result += ch; |
| 645 | } |
| 646 | } |
| 647 | result += '"'; |
| 648 | return result; |
| 649 | } |
| 650 | |
Elliott Hughes | d8c00d0 | 2012-01-30 14:08:31 -0800 | [diff] [blame] | 651 | // See http://java.sun.com/j2se/1.5.0/docs/guide/jni/spec/design.html#wp615 for the full rules. |
Elliott Hughes | 79082e3 | 2011-08-25 12:07:32 -0700 | [diff] [blame] | 652 | std::string MangleForJni(const std::string& s) { |
| 653 | std::string result; |
| 654 | size_t char_count = CountModifiedUtf8Chars(s.c_str()); |
| 655 | const char* cp = &s[0]; |
| 656 | for (size_t i = 0; i < char_count; ++i) { |
| 657 | uint16_t ch = GetUtf16FromUtf8(&cp); |
Elliott Hughes | d8c00d0 | 2012-01-30 14:08:31 -0800 | [diff] [blame] | 658 | if ((ch >= 'A' && ch <= 'Z') || (ch >= 'a' && ch <= 'z') || (ch >= '0' && ch <= '9')) { |
| 659 | result.push_back(ch); |
| 660 | } else if (ch == '.' || ch == '/') { |
| 661 | result += "_"; |
| 662 | } else if (ch == '_') { |
| 663 | result += "_1"; |
| 664 | } else if (ch == ';') { |
| 665 | result += "_2"; |
| 666 | } else if (ch == '[') { |
| 667 | result += "_3"; |
Elliott Hughes | 79082e3 | 2011-08-25 12:07:32 -0700 | [diff] [blame] | 668 | } else { |
Elliott Hughes | d8c00d0 | 2012-01-30 14:08:31 -0800 | [diff] [blame] | 669 | StringAppendF(&result, "_0%04x", ch); |
Elliott Hughes | 79082e3 | 2011-08-25 12:07:32 -0700 | [diff] [blame] | 670 | } |
| 671 | } |
| 672 | return result; |
| 673 | } |
| 674 | |
Brian Carlstrom | f91c8c3 | 2011-09-21 17:30:34 -0700 | [diff] [blame] | 675 | std::string DotToDescriptor(const char* class_name) { |
| 676 | std::string descriptor(class_name); |
| 677 | std::replace(descriptor.begin(), descriptor.end(), '.', '/'); |
| 678 | if (descriptor.length() > 0 && descriptor[0] != '[') { |
| 679 | descriptor = "L" + descriptor + ";"; |
| 680 | } |
| 681 | return descriptor; |
| 682 | } |
| 683 | |
Elliott Hughes | f1a5adc | 2012-02-10 18:09:35 -0800 | [diff] [blame] | 684 | std::string DescriptorToDot(const char* descriptor) { |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 685 | size_t length = strlen(descriptor); |
Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 686 | if (length > 1) { |
| 687 | if (descriptor[0] == 'L' && descriptor[length - 1] == ';') { |
| 688 | // Descriptors have the leading 'L' and trailing ';' stripped. |
| 689 | std::string result(descriptor + 1, length - 2); |
| 690 | std::replace(result.begin(), result.end(), '/', '.'); |
| 691 | return result; |
| 692 | } else { |
| 693 | // For arrays the 'L' and ';' remain intact. |
| 694 | std::string result(descriptor); |
| 695 | std::replace(result.begin(), result.end(), '/', '.'); |
| 696 | return result; |
| 697 | } |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 698 | } |
Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 699 | // Do nothing for non-class/array descriptors. |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 700 | return descriptor; |
Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 701 | } |
| 702 | |
| 703 | std::string DescriptorToName(const char* descriptor) { |
Elliott Hughes | f1a5adc | 2012-02-10 18:09:35 -0800 | [diff] [blame] | 704 | size_t length = strlen(descriptor); |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 705 | if (descriptor[0] == 'L' && descriptor[length - 1] == ';') { |
| 706 | std::string result(descriptor + 1, length - 2); |
| 707 | return result; |
| 708 | } |
| 709 | return descriptor; |
Brian Carlstrom | aded5f7 | 2011-10-07 17:15:04 -0700 | [diff] [blame] | 710 | } |
| 711 | |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 712 | std::string JniShortName(mirror::ArtMethod* m) { |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 713 | std::string class_name(m->GetDeclaringClassDescriptor()); |
Elliott Hughes | 79082e3 | 2011-08-25 12:07:32 -0700 | [diff] [blame] | 714 | // Remove the leading 'L' and trailing ';'... |
Elliott Hughes | f5a7a47 | 2011-10-07 14:31:02 -0700 | [diff] [blame] | 715 | CHECK_EQ(class_name[0], 'L') << class_name; |
| 716 | CHECK_EQ(class_name[class_name.size() - 1], ';') << class_name; |
Elliott Hughes | 79082e3 | 2011-08-25 12:07:32 -0700 | [diff] [blame] | 717 | class_name.erase(0, 1); |
| 718 | class_name.erase(class_name.size() - 1, 1); |
| 719 | |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 720 | std::string method_name(m->GetName()); |
Elliott Hughes | 79082e3 | 2011-08-25 12:07:32 -0700 | [diff] [blame] | 721 | |
| 722 | std::string short_name; |
| 723 | short_name += "Java_"; |
| 724 | short_name += MangleForJni(class_name); |
| 725 | short_name += "_"; |
| 726 | short_name += MangleForJni(method_name); |
| 727 | return short_name; |
| 728 | } |
| 729 | |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 730 | std::string JniLongName(mirror::ArtMethod* m) { |
Elliott Hughes | 79082e3 | 2011-08-25 12:07:32 -0700 | [diff] [blame] | 731 | std::string long_name; |
| 732 | long_name += JniShortName(m); |
| 733 | long_name += "__"; |
| 734 | |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 735 | std::string signature(m->GetSignature().ToString()); |
Elliott Hughes | 79082e3 | 2011-08-25 12:07:32 -0700 | [diff] [blame] | 736 | signature.erase(0, 1); |
| 737 | signature.erase(signature.begin() + signature.find(')'), signature.end()); |
| 738 | |
| 739 | long_name += MangleForJni(signature); |
| 740 | |
| 741 | return long_name; |
| 742 | } |
| 743 | |
jeffhao | 10037c8 | 2012-01-23 15:06:23 -0800 | [diff] [blame] | 744 | // Helper for IsValidPartOfMemberNameUtf8(), a bit vector indicating valid low ascii. |
Elliott Hughes | 64bf5a3 | 2011-09-20 14:43:12 -0700 | [diff] [blame] | 745 | uint32_t DEX_MEMBER_VALID_LOW_ASCII[4] = { |
Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 746 | 0x00000000, // 00..1f low control characters; nothing valid |
| 747 | 0x03ff2010, // 20..3f digits and symbols; valid: '0'..'9', '$', '-' |
| 748 | 0x87fffffe, // 40..5f uppercase etc.; valid: 'A'..'Z', '_' |
| 749 | 0x07fffffe // 60..7f lowercase etc.; valid: 'a'..'z' |
Elliott Hughes | 64bf5a3 | 2011-09-20 14:43:12 -0700 | [diff] [blame] | 750 | }; |
| 751 | |
jeffhao | 10037c8 | 2012-01-23 15:06:23 -0800 | [diff] [blame] | 752 | // Helper for IsValidPartOfMemberNameUtf8(); do not call directly. |
| 753 | bool IsValidPartOfMemberNameUtf8Slow(const char** pUtf8Ptr) { |
Elliott Hughes | 64bf5a3 | 2011-09-20 14:43:12 -0700 | [diff] [blame] | 754 | /* |
| 755 | * It's a multibyte encoded character. Decode it and analyze. We |
| 756 | * accept anything that isn't (a) an improperly encoded low value, |
| 757 | * (b) an improper surrogate pair, (c) an encoded '\0', (d) a high |
| 758 | * control character, or (e) a high space, layout, or special |
| 759 | * character (U+00a0, U+2000..U+200f, U+2028..U+202f, |
| 760 | * U+fff0..U+ffff). This is all specified in the dex format |
| 761 | * document. |
| 762 | */ |
| 763 | |
| 764 | uint16_t utf16 = GetUtf16FromUtf8(pUtf8Ptr); |
| 765 | |
| 766 | // Perform follow-up tests based on the high 8 bits. |
| 767 | switch (utf16 >> 8) { |
| 768 | case 0x00: |
| 769 | // It's only valid if it's above the ISO-8859-1 high space (0xa0). |
| 770 | return (utf16 > 0x00a0); |
| 771 | case 0xd8: |
| 772 | case 0xd9: |
| 773 | case 0xda: |
| 774 | case 0xdb: |
| 775 | // It's a leading surrogate. Check to see that a trailing |
| 776 | // surrogate follows. |
| 777 | utf16 = GetUtf16FromUtf8(pUtf8Ptr); |
| 778 | return (utf16 >= 0xdc00) && (utf16 <= 0xdfff); |
| 779 | case 0xdc: |
| 780 | case 0xdd: |
| 781 | case 0xde: |
| 782 | case 0xdf: |
| 783 | // It's a trailing surrogate, which is not valid at this point. |
| 784 | return false; |
| 785 | case 0x20: |
| 786 | case 0xff: |
| 787 | // It's in the range that has spaces, controls, and specials. |
| 788 | switch (utf16 & 0xfff8) { |
| 789 | case 0x2000: |
| 790 | case 0x2008: |
| 791 | case 0x2028: |
| 792 | case 0xfff0: |
| 793 | case 0xfff8: |
| 794 | return false; |
| 795 | } |
| 796 | break; |
| 797 | } |
| 798 | return true; |
| 799 | } |
| 800 | |
| 801 | /* Return whether the pointed-at modified-UTF-8 encoded character is |
| 802 | * valid as part of a member name, updating the pointer to point past |
| 803 | * the consumed character. This will consume two encoded UTF-16 code |
| 804 | * points if the character is encoded as a surrogate pair. Also, if |
| 805 | * this function returns false, then the given pointer may only have |
| 806 | * been partially advanced. |
| 807 | */ |
Ian Rogers | 8d31bbd | 2013-10-13 10:44:14 -0700 | [diff] [blame] | 808 | static bool IsValidPartOfMemberNameUtf8(const char** pUtf8Ptr) { |
Elliott Hughes | 64bf5a3 | 2011-09-20 14:43:12 -0700 | [diff] [blame] | 809 | uint8_t c = (uint8_t) **pUtf8Ptr; |
Ian Rogers | 8d31bbd | 2013-10-13 10:44:14 -0700 | [diff] [blame] | 810 | if (LIKELY(c <= 0x7f)) { |
Elliott Hughes | 64bf5a3 | 2011-09-20 14:43:12 -0700 | [diff] [blame] | 811 | // It's low-ascii, so check the table. |
| 812 | uint32_t wordIdx = c >> 5; |
| 813 | uint32_t bitIdx = c & 0x1f; |
| 814 | (*pUtf8Ptr)++; |
| 815 | return (DEX_MEMBER_VALID_LOW_ASCII[wordIdx] & (1 << bitIdx)) != 0; |
| 816 | } |
| 817 | |
| 818 | // It's a multibyte encoded character. Call a non-inline function |
| 819 | // for the heavy lifting. |
jeffhao | 10037c8 | 2012-01-23 15:06:23 -0800 | [diff] [blame] | 820 | return IsValidPartOfMemberNameUtf8Slow(pUtf8Ptr); |
| 821 | } |
| 822 | |
| 823 | bool IsValidMemberName(const char* s) { |
| 824 | bool angle_name = false; |
| 825 | |
Elliott Hughes | b25c3f6 | 2012-03-26 16:35:06 -0700 | [diff] [blame] | 826 | switch (*s) { |
jeffhao | 10037c8 | 2012-01-23 15:06:23 -0800 | [diff] [blame] | 827 | case '\0': |
| 828 | // The empty string is not a valid name. |
| 829 | return false; |
| 830 | case '<': |
| 831 | angle_name = true; |
| 832 | s++; |
| 833 | break; |
| 834 | } |
| 835 | |
| 836 | while (true) { |
| 837 | switch (*s) { |
| 838 | case '\0': |
| 839 | return !angle_name; |
| 840 | case '>': |
| 841 | return angle_name && s[1] == '\0'; |
| 842 | } |
| 843 | |
| 844 | if (!IsValidPartOfMemberNameUtf8(&s)) { |
| 845 | return false; |
| 846 | } |
| 847 | } |
Elliott Hughes | 64bf5a3 | 2011-09-20 14:43:12 -0700 | [diff] [blame] | 848 | } |
| 849 | |
Elliott Hughes | 906e685 | 2011-10-28 14:52:10 -0700 | [diff] [blame] | 850 | enum ClassNameType { kName, kDescriptor }; |
Ian Rogers | 7b078e8 | 2014-09-10 14:44:24 -0700 | [diff] [blame] | 851 | template<ClassNameType kType, char kSeparator> |
| 852 | static bool IsValidClassName(const char* s) { |
Elliott Hughes | 64bf5a3 | 2011-09-20 14:43:12 -0700 | [diff] [blame] | 853 | int arrayCount = 0; |
| 854 | while (*s == '[') { |
| 855 | arrayCount++; |
| 856 | s++; |
| 857 | } |
| 858 | |
| 859 | if (arrayCount > 255) { |
| 860 | // Arrays may have no more than 255 dimensions. |
| 861 | return false; |
| 862 | } |
| 863 | |
Ian Rogers | 7b078e8 | 2014-09-10 14:44:24 -0700 | [diff] [blame] | 864 | ClassNameType type = kType; |
| 865 | if (type != kDescriptor && arrayCount != 0) { |
Elliott Hughes | 64bf5a3 | 2011-09-20 14:43:12 -0700 | [diff] [blame] | 866 | /* |
| 867 | * If we're looking at an array of some sort, then it doesn't |
| 868 | * matter if what is being asked for is a class name; the |
| 869 | * format looks the same as a type descriptor in that case, so |
| 870 | * treat it as such. |
| 871 | */ |
Elliott Hughes | 906e685 | 2011-10-28 14:52:10 -0700 | [diff] [blame] | 872 | type = kDescriptor; |
Elliott Hughes | 64bf5a3 | 2011-09-20 14:43:12 -0700 | [diff] [blame] | 873 | } |
| 874 | |
Elliott Hughes | 906e685 | 2011-10-28 14:52:10 -0700 | [diff] [blame] | 875 | if (type == kDescriptor) { |
Elliott Hughes | 64bf5a3 | 2011-09-20 14:43:12 -0700 | [diff] [blame] | 876 | /* |
| 877 | * We are looking for a descriptor. Either validate it as a |
| 878 | * single-character primitive type, or continue on to check the |
| 879 | * embedded class name (bracketed by "L" and ";"). |
| 880 | */ |
| 881 | switch (*(s++)) { |
| 882 | case 'B': |
| 883 | case 'C': |
| 884 | case 'D': |
| 885 | case 'F': |
| 886 | case 'I': |
| 887 | case 'J': |
| 888 | case 'S': |
| 889 | case 'Z': |
| 890 | // These are all single-character descriptors for primitive types. |
| 891 | return (*s == '\0'); |
| 892 | case 'V': |
| 893 | // Non-array void is valid, but you can't have an array of void. |
| 894 | return (arrayCount == 0) && (*s == '\0'); |
| 895 | case 'L': |
| 896 | // Class name: Break out and continue below. |
| 897 | break; |
| 898 | default: |
| 899 | // Oddball descriptor character. |
| 900 | return false; |
| 901 | } |
| 902 | } |
| 903 | |
| 904 | /* |
| 905 | * We just consumed the 'L' that introduces a class name as part |
| 906 | * of a type descriptor, or we are looking for an unadorned class |
| 907 | * name. |
| 908 | */ |
| 909 | |
Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 910 | bool sepOrFirst = true; // first character or just encountered a separator. |
Elliott Hughes | 64bf5a3 | 2011-09-20 14:43:12 -0700 | [diff] [blame] | 911 | for (;;) { |
| 912 | uint8_t c = (uint8_t) *s; |
| 913 | switch (c) { |
| 914 | case '\0': |
| 915 | /* |
| 916 | * Premature end for a type descriptor, but valid for |
| 917 | * a class name as long as we haven't encountered an |
| 918 | * empty component (including the degenerate case of |
| 919 | * the empty string ""). |
| 920 | */ |
Elliott Hughes | 906e685 | 2011-10-28 14:52:10 -0700 | [diff] [blame] | 921 | return (type == kName) && !sepOrFirst; |
Elliott Hughes | 64bf5a3 | 2011-09-20 14:43:12 -0700 | [diff] [blame] | 922 | case ';': |
| 923 | /* |
| 924 | * Invalid character for a class name, but the |
| 925 | * legitimate end of a type descriptor. In the latter |
| 926 | * case, make sure that this is the end of the string |
| 927 | * and that it doesn't end with an empty component |
| 928 | * (including the degenerate case of "L;"). |
| 929 | */ |
Elliott Hughes | 906e685 | 2011-10-28 14:52:10 -0700 | [diff] [blame] | 930 | return (type == kDescriptor) && !sepOrFirst && (s[1] == '\0'); |
Elliott Hughes | 64bf5a3 | 2011-09-20 14:43:12 -0700 | [diff] [blame] | 931 | case '/': |
| 932 | case '.': |
Ian Rogers | 7b078e8 | 2014-09-10 14:44:24 -0700 | [diff] [blame] | 933 | if (c != kSeparator) { |
Elliott Hughes | 64bf5a3 | 2011-09-20 14:43:12 -0700 | [diff] [blame] | 934 | // The wrong separator character. |
| 935 | return false; |
| 936 | } |
| 937 | if (sepOrFirst) { |
| 938 | // Separator at start or two separators in a row. |
| 939 | return false; |
| 940 | } |
| 941 | sepOrFirst = true; |
| 942 | s++; |
| 943 | break; |
| 944 | default: |
jeffhao | 10037c8 | 2012-01-23 15:06:23 -0800 | [diff] [blame] | 945 | if (!IsValidPartOfMemberNameUtf8(&s)) { |
Elliott Hughes | 64bf5a3 | 2011-09-20 14:43:12 -0700 | [diff] [blame] | 946 | return false; |
| 947 | } |
| 948 | sepOrFirst = false; |
| 949 | break; |
| 950 | } |
| 951 | } |
| 952 | } |
| 953 | |
Elliott Hughes | 906e685 | 2011-10-28 14:52:10 -0700 | [diff] [blame] | 954 | bool IsValidBinaryClassName(const char* s) { |
Ian Rogers | 7b078e8 | 2014-09-10 14:44:24 -0700 | [diff] [blame] | 955 | return IsValidClassName<kName, '.'>(s); |
Elliott Hughes | 906e685 | 2011-10-28 14:52:10 -0700 | [diff] [blame] | 956 | } |
| 957 | |
| 958 | bool IsValidJniClassName(const char* s) { |
Ian Rogers | 7b078e8 | 2014-09-10 14:44:24 -0700 | [diff] [blame] | 959 | return IsValidClassName<kName, '/'>(s); |
Elliott Hughes | 906e685 | 2011-10-28 14:52:10 -0700 | [diff] [blame] | 960 | } |
| 961 | |
| 962 | bool IsValidDescriptor(const char* s) { |
Ian Rogers | 7b078e8 | 2014-09-10 14:44:24 -0700 | [diff] [blame] | 963 | return IsValidClassName<kDescriptor, '/'>(s); |
Elliott Hughes | 906e685 | 2011-10-28 14:52:10 -0700 | [diff] [blame] | 964 | } |
| 965 | |
Ian Rogers | 6f3dbba | 2014-10-14 17:41:57 -0700 | [diff] [blame] | 966 | void Split(const std::string& s, char separator, std::vector<std::string>* result) { |
Elliott Hughes | 3402380 | 2011-08-30 12:06:17 -0700 | [diff] [blame] | 967 | const char* p = s.data(); |
| 968 | const char* end = p + s.size(); |
| 969 | while (p != end) { |
Elliott Hughes | 48436bb | 2012-02-07 15:23:28 -0800 | [diff] [blame] | 970 | if (*p == separator) { |
Elliott Hughes | 3402380 | 2011-08-30 12:06:17 -0700 | [diff] [blame] | 971 | ++p; |
| 972 | } else { |
| 973 | const char* start = p; |
Elliott Hughes | 48436bb | 2012-02-07 15:23:28 -0800 | [diff] [blame] | 974 | while (++p != end && *p != separator) { |
| 975 | // Skip to the next occurrence of the separator. |
Elliott Hughes | 3402380 | 2011-08-30 12:06:17 -0700 | [diff] [blame] | 976 | } |
Ian Rogers | 6f3dbba | 2014-10-14 17:41:57 -0700 | [diff] [blame] | 977 | result->push_back(std::string(start, p - start)); |
Elliott Hughes | 3402380 | 2011-08-30 12:06:17 -0700 | [diff] [blame] | 978 | } |
| 979 | } |
| 980 | } |
| 981 | |
Ian Rogers | 6f3dbba | 2014-10-14 17:41:57 -0700 | [diff] [blame] | 982 | std::string Trim(const std::string& s) { |
Dave Allison | 7020278 | 2013-10-22 17:52:19 -0700 | [diff] [blame] | 983 | std::string result; |
| 984 | unsigned int start_index = 0; |
| 985 | unsigned int end_index = s.size() - 1; |
| 986 | |
| 987 | // Skip initial whitespace. |
| 988 | while (start_index < s.size()) { |
| 989 | if (!isspace(s[start_index])) { |
| 990 | break; |
| 991 | } |
| 992 | start_index++; |
| 993 | } |
| 994 | |
| 995 | // Skip terminating whitespace. |
| 996 | while (end_index >= start_index) { |
| 997 | if (!isspace(s[end_index])) { |
| 998 | break; |
| 999 | } |
| 1000 | end_index--; |
| 1001 | } |
| 1002 | |
| 1003 | // All spaces, no beef. |
| 1004 | if (end_index < start_index) { |
| 1005 | return ""; |
| 1006 | } |
| 1007 | // Start_index is the first non-space, end_index is the last one. |
| 1008 | return s.substr(start_index, end_index - start_index + 1); |
| 1009 | } |
| 1010 | |
Elliott Hughes | 48436bb | 2012-02-07 15:23:28 -0800 | [diff] [blame] | 1011 | template <typename StringT> |
Ian Rogers | 6f3dbba | 2014-10-14 17:41:57 -0700 | [diff] [blame] | 1012 | std::string Join(const std::vector<StringT>& strings, char separator) { |
Elliott Hughes | 48436bb | 2012-02-07 15:23:28 -0800 | [diff] [blame] | 1013 | if (strings.empty()) { |
| 1014 | return ""; |
| 1015 | } |
| 1016 | |
| 1017 | std::string result(strings[0]); |
| 1018 | for (size_t i = 1; i < strings.size(); ++i) { |
| 1019 | result += separator; |
| 1020 | result += strings[i]; |
| 1021 | } |
| 1022 | return result; |
| 1023 | } |
| 1024 | |
| 1025 | // Explicit instantiations. |
Ian Rogers | 6f3dbba | 2014-10-14 17:41:57 -0700 | [diff] [blame] | 1026 | template std::string Join<std::string>(const std::vector<std::string>& strings, char separator); |
| 1027 | template std::string Join<const char*>(const std::vector<const char*>& strings, char separator); |
Elliott Hughes | 48436bb | 2012-02-07 15:23:28 -0800 | [diff] [blame] | 1028 | |
Elliott Hughes | f1a5adc | 2012-02-10 18:09:35 -0800 | [diff] [blame] | 1029 | bool StartsWith(const std::string& s, const char* prefix) { |
| 1030 | return s.compare(0, strlen(prefix), prefix) == 0; |
| 1031 | } |
| 1032 | |
Brian Carlstrom | 7a967b3 | 2012-03-28 15:23:10 -0700 | [diff] [blame] | 1033 | bool EndsWith(const std::string& s, const char* suffix) { |
| 1034 | size_t suffix_length = strlen(suffix); |
| 1035 | size_t string_length = s.size(); |
| 1036 | if (suffix_length > string_length) { |
| 1037 | return false; |
| 1038 | } |
| 1039 | size_t offset = string_length - suffix_length; |
| 1040 | return s.compare(offset, suffix_length, suffix) == 0; |
| 1041 | } |
| 1042 | |
Elliott Hughes | 22869a9 | 2012-03-27 14:08:24 -0700 | [diff] [blame] | 1043 | void SetThreadName(const char* thread_name) { |
Elliott Hughes | dcc2474 | 2011-09-07 14:02:44 -0700 | [diff] [blame] | 1044 | int hasAt = 0; |
| 1045 | int hasDot = 0; |
Elliott Hughes | 22869a9 | 2012-03-27 14:08:24 -0700 | [diff] [blame] | 1046 | const char* s = thread_name; |
Elliott Hughes | dcc2474 | 2011-09-07 14:02:44 -0700 | [diff] [blame] | 1047 | while (*s) { |
| 1048 | if (*s == '.') { |
| 1049 | hasDot = 1; |
| 1050 | } else if (*s == '@') { |
| 1051 | hasAt = 1; |
| 1052 | } |
| 1053 | s++; |
| 1054 | } |
Elliott Hughes | 22869a9 | 2012-03-27 14:08:24 -0700 | [diff] [blame] | 1055 | int len = s - thread_name; |
Elliott Hughes | dcc2474 | 2011-09-07 14:02:44 -0700 | [diff] [blame] | 1056 | if (len < 15 || hasAt || !hasDot) { |
Elliott Hughes | 22869a9 | 2012-03-27 14:08:24 -0700 | [diff] [blame] | 1057 | s = thread_name; |
Elliott Hughes | dcc2474 | 2011-09-07 14:02:44 -0700 | [diff] [blame] | 1058 | } else { |
Elliott Hughes | 22869a9 | 2012-03-27 14:08:24 -0700 | [diff] [blame] | 1059 | s = thread_name + len - 15; |
Elliott Hughes | dcc2474 | 2011-09-07 14:02:44 -0700 | [diff] [blame] | 1060 | } |
Elliott Hughes | 49e36ec | 2014-08-20 20:18:18 -0700 | [diff] [blame] | 1061 | #if defined(__BIONIC__) |
Elliott Hughes | 7c6a61e | 2012-03-12 18:01:41 -0700 | [diff] [blame] | 1062 | // pthread_setname_np fails rather than truncating long strings. |
Elliott Hughes | dcc2474 | 2011-09-07 14:02:44 -0700 | [diff] [blame] | 1063 | char buf[16]; // MAX_TASK_COMM_LEN=16 is hard-coded into bionic |
| 1064 | strncpy(buf, s, sizeof(buf)-1); |
| 1065 | buf[sizeof(buf)-1] = '\0'; |
| 1066 | errno = pthread_setname_np(pthread_self(), buf); |
| 1067 | if (errno != 0) { |
| 1068 | PLOG(WARNING) << "Unable to set the name of current thread to '" << buf << "'"; |
| 1069 | } |
Elliott Hughes | 4ae722a | 2012-03-13 11:08:51 -0700 | [diff] [blame] | 1070 | #elif defined(__APPLE__) && MAC_OS_X_VERSION_MAX_ALLOWED >= 1060 |
Elliott Hughes | 22869a9 | 2012-03-27 14:08:24 -0700 | [diff] [blame] | 1071 | pthread_setname_np(thread_name); |
Elliott Hughes | dcc2474 | 2011-09-07 14:02:44 -0700 | [diff] [blame] | 1072 | #elif defined(HAVE_PRCTL) |
Elliott Hughes | 398f64b | 2012-03-26 18:05:48 -0700 | [diff] [blame] | 1073 | prctl(PR_SET_NAME, (unsigned long) s, 0, 0, 0); // NOLINT (unsigned long) |
Elliott Hughes | dcc2474 | 2011-09-07 14:02:44 -0700 | [diff] [blame] | 1074 | #else |
Elliott Hughes | 22869a9 | 2012-03-27 14:08:24 -0700 | [diff] [blame] | 1075 | UNIMPLEMENTED(WARNING) << thread_name; |
Elliott Hughes | dcc2474 | 2011-09-07 14:02:44 -0700 | [diff] [blame] | 1076 | #endif |
| 1077 | } |
| 1078 | |
Brian Carlstrom | 2921201 | 2013-09-12 22:18:30 -0700 | [diff] [blame] | 1079 | void GetTaskStats(pid_t tid, char* state, int* utime, int* stime, int* task_cpu) { |
| 1080 | *utime = *stime = *task_cpu = 0; |
Elliott Hughes | bfe487b | 2011-10-26 15:48:55 -0700 | [diff] [blame] | 1081 | std::string stats; |
Elliott Hughes | 8a31b50 | 2012-04-30 19:36:11 -0700 | [diff] [blame] | 1082 | if (!ReadFileToString(StringPrintf("/proc/self/task/%d/stat", tid), &stats)) { |
Elliott Hughes | bfe487b | 2011-10-26 15:48:55 -0700 | [diff] [blame] | 1083 | return; |
| 1084 | } |
| 1085 | // Skip the command, which may contain spaces. |
| 1086 | stats = stats.substr(stats.find(')') + 2); |
| 1087 | // Extract the three fields we care about. |
| 1088 | std::vector<std::string> fields; |
Ian Rogers | 6f3dbba | 2014-10-14 17:41:57 -0700 | [diff] [blame] | 1089 | Split(stats, ' ', &fields); |
Brian Carlstrom | 2921201 | 2013-09-12 22:18:30 -0700 | [diff] [blame] | 1090 | *state = fields[0][0]; |
| 1091 | *utime = strtoull(fields[11].c_str(), NULL, 10); |
| 1092 | *stime = strtoull(fields[12].c_str(), NULL, 10); |
| 1093 | *task_cpu = strtoull(fields[36].c_str(), NULL, 10); |
Elliott Hughes | bfe487b | 2011-10-26 15:48:55 -0700 | [diff] [blame] | 1094 | } |
| 1095 | |
Elliott Hughes | 1bac54f | 2012-03-16 12:48:31 -0700 | [diff] [blame] | 1096 | std::string GetSchedulerGroupName(pid_t tid) { |
| 1097 | // /proc/<pid>/cgroup looks like this: |
| 1098 | // 2:devices:/ |
| 1099 | // 1:cpuacct,cpu:/ |
| 1100 | // We want the third field from the line whose second field contains the "cpu" token. |
| 1101 | std::string cgroup_file; |
| 1102 | if (!ReadFileToString(StringPrintf("/proc/self/task/%d/cgroup", tid), &cgroup_file)) { |
| 1103 | return ""; |
| 1104 | } |
| 1105 | std::vector<std::string> cgroup_lines; |
Ian Rogers | 6f3dbba | 2014-10-14 17:41:57 -0700 | [diff] [blame] | 1106 | Split(cgroup_file, '\n', &cgroup_lines); |
Elliott Hughes | 1bac54f | 2012-03-16 12:48:31 -0700 | [diff] [blame] | 1107 | for (size_t i = 0; i < cgroup_lines.size(); ++i) { |
| 1108 | std::vector<std::string> cgroup_fields; |
Ian Rogers | 6f3dbba | 2014-10-14 17:41:57 -0700 | [diff] [blame] | 1109 | Split(cgroup_lines[i], ':', &cgroup_fields); |
Elliott Hughes | 1bac54f | 2012-03-16 12:48:31 -0700 | [diff] [blame] | 1110 | std::vector<std::string> cgroups; |
Ian Rogers | 6f3dbba | 2014-10-14 17:41:57 -0700 | [diff] [blame] | 1111 | Split(cgroup_fields[1], ',', &cgroups); |
Andreas Gampe | 277ccbd | 2014-11-03 21:36:10 -0800 | [diff] [blame^] | 1112 | for (size_t j = 0; j < cgroups.size(); ++j) { |
| 1113 | if (cgroups[j] == "cpu") { |
Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 1114 | return cgroup_fields[2].substr(1); // Skip the leading slash. |
Elliott Hughes | 1bac54f | 2012-03-16 12:48:31 -0700 | [diff] [blame] | 1115 | } |
| 1116 | } |
| 1117 | } |
| 1118 | return ""; |
| 1119 | } |
| 1120 | |
Christopher Ferris | a2cee18 | 2014-04-16 19:13:59 -0700 | [diff] [blame] | 1121 | void DumpNativeStack(std::ostream& os, pid_t tid, const char* prefix, |
Kenny Root | 067d20f | 2014-03-05 14:57:21 -0800 | [diff] [blame] | 1122 | mirror::ArtMethod* current_method) { |
Ian Rogers | c5f1773 | 2014-06-05 20:48:42 -0700 | [diff] [blame] | 1123 | #ifdef __linux__ |
Ian Rogers | 700a402 | 2014-05-19 16:49:03 -0700 | [diff] [blame] | 1124 | std::unique_ptr<Backtrace> backtrace(Backtrace::Create(BACKTRACE_CURRENT_PROCESS, tid)); |
Christopher Ferris | 7b5f0cf | 2013-11-01 15:18:45 -0700 | [diff] [blame] | 1125 | if (!backtrace->Unwind(0)) { |
| 1126 | os << prefix << "(backtrace::Unwind failed for thread " << tid << ")\n"; |
Elliott Hughes | 46e251b | 2012-05-22 15:10:45 -0700 | [diff] [blame] | 1127 | return; |
Christopher Ferris | 7b5f0cf | 2013-11-01 15:18:45 -0700 | [diff] [blame] | 1128 | } else if (backtrace->NumFrames() == 0) { |
Elliott Hughes | 225f5a1 | 2012-06-11 11:23:48 -0700 | [diff] [blame] | 1129 | os << prefix << "(no native stack frames for thread " << tid << ")\n"; |
Elliott Hughes | 46e251b | 2012-05-22 15:10:45 -0700 | [diff] [blame] | 1130 | return; |
| 1131 | } |
| 1132 | |
Christopher Ferris | 943af7d | 2014-01-16 12:41:46 -0800 | [diff] [blame] | 1133 | for (Backtrace::const_iterator it = backtrace->begin(); |
| 1134 | it != backtrace->end(); ++it) { |
Elliott Hughes | 46e251b | 2012-05-22 15:10:45 -0700 | [diff] [blame] | 1135 | // We produce output like this: |
Christopher Ferris | a2cee18 | 2014-04-16 19:13:59 -0700 | [diff] [blame] | 1136 | // ] #00 pc 000075bb8 /system/lib/libc.so (unwind_backtrace_thread+536) |
| 1137 | // In order for parsing tools to continue to function, the stack dump |
| 1138 | // format must at least adhere to this format: |
| 1139 | // #XX pc <RELATIVE_ADDR> <FULL_PATH_TO_SHARED_LIBRARY> ... |
| 1140 | // The parsers require a single space before and after pc, and two spaces |
| 1141 | // after the <RELATIVE_ADDR>. There can be any prefix data before the |
| 1142 | // #XX. <RELATIVE_ADDR> has to be a hex number but with no 0x prefix. |
| 1143 | os << prefix << StringPrintf("#%02zu pc ", it->num); |
| 1144 | if (!it->map) { |
| 1145 | os << StringPrintf("%08" PRIxPTR " ???", it->pc); |
Christopher Ferris | 7b5f0cf | 2013-11-01 15:18:45 -0700 | [diff] [blame] | 1146 | } else { |
Christopher Ferris | a2cee18 | 2014-04-16 19:13:59 -0700 | [diff] [blame] | 1147 | os << StringPrintf("%08" PRIxPTR " ", it->pc - it->map->start) |
| 1148 | << it->map->name << " ("; |
| 1149 | if (!it->func_name.empty()) { |
| 1150 | os << it->func_name; |
| 1151 | if (it->func_offset != 0) { |
| 1152 | os << "+" << it->func_offset; |
| 1153 | } |
Hiroshi Yamauchi | 7895d55 | 2014-08-28 14:55:56 -0700 | [diff] [blame] | 1154 | } else if (current_method != nullptr && |
| 1155 | Locks::mutator_lock_->IsSharedHeld(Thread::Current()) && |
Ian Rogers | 6f3dbba | 2014-10-14 17:41:57 -0700 | [diff] [blame] | 1156 | current_method->PcIsWithinQuickCode(it->pc)) { |
Brian Carlstrom | 474cc79 | 2014-03-07 14:18:15 -0800 | [diff] [blame] | 1157 | const void* start_of_code = current_method->GetEntryPointFromQuickCompiledCode(); |
| 1158 | os << JniLongName(current_method) << "+" |
| 1159 | << (it->pc - reinterpret_cast<uintptr_t>(start_of_code)); |
Kenny Root | 067d20f | 2014-03-05 14:57:21 -0800 | [diff] [blame] | 1160 | } else { |
| 1161 | os << "???"; |
| 1162 | } |
Christopher Ferris | a2cee18 | 2014-04-16 19:13:59 -0700 | [diff] [blame] | 1163 | os << ")"; |
Elliott Hughes | 46e251b | 2012-05-22 15:10:45 -0700 | [diff] [blame] | 1164 | } |
Christopher Ferris | a2cee18 | 2014-04-16 19:13:59 -0700 | [diff] [blame] | 1165 | os << "\n"; |
Elliott Hughes | 46e251b | 2012-05-22 15:10:45 -0700 | [diff] [blame] | 1166 | } |
Ian Rogers | c5f1773 | 2014-06-05 20:48:42 -0700 | [diff] [blame] | 1167 | #endif |
Elliott Hughes | 46e251b | 2012-05-22 15:10:45 -0700 | [diff] [blame] | 1168 | } |
| 1169 | |
Elliott Hughes | 058a6de | 2012-05-24 19:13:02 -0700 | [diff] [blame] | 1170 | #if defined(__APPLE__) |
| 1171 | |
| 1172 | // TODO: is there any way to get the kernel stack on Mac OS? |
| 1173 | void DumpKernelStack(std::ostream&, pid_t, const char*, bool) {} |
| 1174 | |
| 1175 | #else |
| 1176 | |
Elliott Hughes | 46e251b | 2012-05-22 15:10:45 -0700 | [diff] [blame] | 1177 | void DumpKernelStack(std::ostream& os, pid_t tid, const char* prefix, bool include_count) { |
Elliott Hughes | 12a9502 | 2012-05-24 21:41:38 -0700 | [diff] [blame] | 1178 | if (tid == GetTid()) { |
| 1179 | // There's no point showing that we're reading our stack out of /proc! |
| 1180 | return; |
| 1181 | } |
| 1182 | |
Elliott Hughes | 46e251b | 2012-05-22 15:10:45 -0700 | [diff] [blame] | 1183 | std::string kernel_stack_filename(StringPrintf("/proc/self/task/%d/stack", tid)); |
| 1184 | std::string kernel_stack; |
| 1185 | if (!ReadFileToString(kernel_stack_filename, &kernel_stack)) { |
Elliott Hughes | 058a6de | 2012-05-24 19:13:02 -0700 | [diff] [blame] | 1186 | os << prefix << "(couldn't read " << kernel_stack_filename << ")\n"; |
jeffhao | c4c3ee2 | 2012-05-25 16:16:32 -0700 | [diff] [blame] | 1187 | return; |
Elliott Hughes | 46e251b | 2012-05-22 15:10:45 -0700 | [diff] [blame] | 1188 | } |
| 1189 | |
| 1190 | std::vector<std::string> kernel_stack_frames; |
Ian Rogers | 6f3dbba | 2014-10-14 17:41:57 -0700 | [diff] [blame] | 1191 | Split(kernel_stack, '\n', &kernel_stack_frames); |
Elliott Hughes | 46e251b | 2012-05-22 15:10:45 -0700 | [diff] [blame] | 1192 | // We skip the last stack frame because it's always equivalent to "[<ffffffff>] 0xffffffff", |
| 1193 | // which looking at the source appears to be the kernel's way of saying "that's all, folks!". |
| 1194 | kernel_stack_frames.pop_back(); |
| 1195 | for (size_t i = 0; i < kernel_stack_frames.size(); ++i) { |
Brian Carlstrom | 474cc79 | 2014-03-07 14:18:15 -0800 | [diff] [blame] | 1196 | // Turn "[<ffffffff8109156d>] futex_wait_queue_me+0xcd/0x110" |
| 1197 | // into "futex_wait_queue_me+0xcd/0x110". |
Elliott Hughes | 46e251b | 2012-05-22 15:10:45 -0700 | [diff] [blame] | 1198 | const char* text = kernel_stack_frames[i].c_str(); |
| 1199 | const char* close_bracket = strchr(text, ']'); |
| 1200 | if (close_bracket != NULL) { |
| 1201 | text = close_bracket + 2; |
| 1202 | } |
| 1203 | os << prefix; |
| 1204 | if (include_count) { |
| 1205 | os << StringPrintf("#%02zd ", i); |
| 1206 | } |
| 1207 | os << text << "\n"; |
| 1208 | } |
| 1209 | } |
| 1210 | |
| 1211 | #endif |
| 1212 | |
Brian Carlstrom | a56fcd6 | 2012-02-04 21:23:01 -0800 | [diff] [blame] | 1213 | const char* GetAndroidRoot() { |
| 1214 | const char* android_root = getenv("ANDROID_ROOT"); |
| 1215 | if (android_root == NULL) { |
| 1216 | if (OS::DirectoryExists("/system")) { |
| 1217 | android_root = "/system"; |
Brian Carlstrom | a9f1978 | 2011-10-13 00:14:47 -0700 | [diff] [blame] | 1218 | } else { |
Brian Carlstrom | a56fcd6 | 2012-02-04 21:23:01 -0800 | [diff] [blame] | 1219 | LOG(FATAL) << "ANDROID_ROOT not set and /system does not exist"; |
| 1220 | return ""; |
Brian Carlstrom | a9f1978 | 2011-10-13 00:14:47 -0700 | [diff] [blame] | 1221 | } |
| 1222 | } |
Brian Carlstrom | a56fcd6 | 2012-02-04 21:23:01 -0800 | [diff] [blame] | 1223 | if (!OS::DirectoryExists(android_root)) { |
| 1224 | LOG(FATAL) << "Failed to find ANDROID_ROOT directory " << android_root; |
Brian Carlstrom | a9f1978 | 2011-10-13 00:14:47 -0700 | [diff] [blame] | 1225 | return ""; |
| 1226 | } |
Brian Carlstrom | a56fcd6 | 2012-02-04 21:23:01 -0800 | [diff] [blame] | 1227 | return android_root; |
| 1228 | } |
Brian Carlstrom | a9f1978 | 2011-10-13 00:14:47 -0700 | [diff] [blame] | 1229 | |
Brian Carlstrom | a56fcd6 | 2012-02-04 21:23:01 -0800 | [diff] [blame] | 1230 | const char* GetAndroidData() { |
Alex Light | a59dd80 | 2014-07-02 16:28:08 -0700 | [diff] [blame] | 1231 | std::string error_msg; |
| 1232 | const char* dir = GetAndroidDataSafe(&error_msg); |
| 1233 | if (dir != nullptr) { |
| 1234 | return dir; |
| 1235 | } else { |
| 1236 | LOG(FATAL) << error_msg; |
| 1237 | return ""; |
| 1238 | } |
| 1239 | } |
| 1240 | |
| 1241 | const char* GetAndroidDataSafe(std::string* error_msg) { |
Brian Carlstrom | a56fcd6 | 2012-02-04 21:23:01 -0800 | [diff] [blame] | 1242 | const char* android_data = getenv("ANDROID_DATA"); |
| 1243 | if (android_data == NULL) { |
| 1244 | if (OS::DirectoryExists("/data")) { |
| 1245 | android_data = "/data"; |
| 1246 | } else { |
Alex Light | a59dd80 | 2014-07-02 16:28:08 -0700 | [diff] [blame] | 1247 | *error_msg = "ANDROID_DATA not set and /data does not exist"; |
| 1248 | return nullptr; |
Brian Carlstrom | a56fcd6 | 2012-02-04 21:23:01 -0800 | [diff] [blame] | 1249 | } |
| 1250 | } |
| 1251 | if (!OS::DirectoryExists(android_data)) { |
Alex Light | a59dd80 | 2014-07-02 16:28:08 -0700 | [diff] [blame] | 1252 | *error_msg = StringPrintf("Failed to find ANDROID_DATA directory %s", android_data); |
| 1253 | return nullptr; |
Brian Carlstrom | a56fcd6 | 2012-02-04 21:23:01 -0800 | [diff] [blame] | 1254 | } |
| 1255 | return android_data; |
| 1256 | } |
| 1257 | |
Alex Light | a59dd80 | 2014-07-02 16:28:08 -0700 | [diff] [blame] | 1258 | void GetDalvikCache(const char* subdir, const bool create_if_absent, std::string* dalvik_cache, |
Andreas Gampe | 3c13a79 | 2014-09-18 20:56:04 -0700 | [diff] [blame] | 1259 | bool* have_android_data, bool* dalvik_cache_exists, bool* is_global_cache) { |
Alex Light | a59dd80 | 2014-07-02 16:28:08 -0700 | [diff] [blame] | 1260 | CHECK(subdir != nullptr); |
| 1261 | std::string error_msg; |
| 1262 | const char* android_data = GetAndroidDataSafe(&error_msg); |
| 1263 | if (android_data == nullptr) { |
| 1264 | *have_android_data = false; |
| 1265 | *dalvik_cache_exists = false; |
Andreas Gampe | 3c13a79 | 2014-09-18 20:56:04 -0700 | [diff] [blame] | 1266 | *is_global_cache = false; |
Alex Light | a59dd80 | 2014-07-02 16:28:08 -0700 | [diff] [blame] | 1267 | return; |
| 1268 | } else { |
| 1269 | *have_android_data = true; |
| 1270 | } |
| 1271 | const std::string dalvik_cache_root(StringPrintf("%s/dalvik-cache/", android_data)); |
| 1272 | *dalvik_cache = dalvik_cache_root + subdir; |
| 1273 | *dalvik_cache_exists = OS::DirectoryExists(dalvik_cache->c_str()); |
Andreas Gampe | 3c13a79 | 2014-09-18 20:56:04 -0700 | [diff] [blame] | 1274 | *is_global_cache = strcmp(android_data, "/data") == 0; |
| 1275 | if (create_if_absent && !*dalvik_cache_exists && !*is_global_cache) { |
Alex Light | a59dd80 | 2014-07-02 16:28:08 -0700 | [diff] [blame] | 1276 | // Don't create the system's /data/dalvik-cache/... because it needs special permissions. |
| 1277 | *dalvik_cache_exists = ((mkdir(dalvik_cache_root.c_str(), 0700) == 0 || errno == EEXIST) && |
| 1278 | (mkdir(dalvik_cache->c_str(), 0700) == 0 || errno == EEXIST)); |
| 1279 | } |
| 1280 | } |
| 1281 | |
Narayan Kamath | 11d9f06 | 2014-04-23 20:24:57 +0100 | [diff] [blame] | 1282 | std::string GetDalvikCacheOrDie(const char* subdir, const bool create_if_absent) { |
| 1283 | CHECK(subdir != nullptr); |
Brian Carlstrom | 41ccffd | 2014-05-06 10:37:30 -0700 | [diff] [blame] | 1284 | const char* android_data = GetAndroidData(); |
| 1285 | const std::string dalvik_cache_root(StringPrintf("%s/dalvik-cache/", android_data)); |
Narayan Kamath | 11d9f06 | 2014-04-23 20:24:57 +0100 | [diff] [blame] | 1286 | const std::string dalvik_cache = dalvik_cache_root + subdir; |
| 1287 | if (create_if_absent && !OS::DirectoryExists(dalvik_cache.c_str())) { |
Brian Carlstrom | 41ccffd | 2014-05-06 10:37:30 -0700 | [diff] [blame] | 1288 | // Don't create the system's /data/dalvik-cache/... because it needs special permissions. |
| 1289 | if (strcmp(android_data, "/data") != 0) { |
Narayan Kamath | 11d9f06 | 2014-04-23 20:24:57 +0100 | [diff] [blame] | 1290 | int result = mkdir(dalvik_cache_root.c_str(), 0700); |
Narayan Kamath | ef204fa | 2014-04-30 17:25:23 +0100 | [diff] [blame] | 1291 | if (result != 0 && errno != EEXIST) { |
Narayan Kamath | 11d9f06 | 2014-04-23 20:24:57 +0100 | [diff] [blame] | 1292 | PLOG(FATAL) << "Failed to create dalvik-cache directory " << dalvik_cache_root; |
| 1293 | return ""; |
| 1294 | } |
| 1295 | result = mkdir(dalvik_cache.c_str(), 0700); |
| 1296 | if (result != 0) { |
| 1297 | PLOG(FATAL) << "Failed to create dalvik-cache directory " << dalvik_cache; |
Brian Carlstrom | a9f1978 | 2011-10-13 00:14:47 -0700 | [diff] [blame] | 1298 | return ""; |
| 1299 | } |
| 1300 | } else { |
Brian Carlstrom | 7675e16 | 2013-06-10 16:18:04 -0700 | [diff] [blame] | 1301 | LOG(FATAL) << "Failed to find dalvik-cache directory " << dalvik_cache; |
Brian Carlstrom | a9f1978 | 2011-10-13 00:14:47 -0700 | [diff] [blame] | 1302 | return ""; |
| 1303 | } |
| 1304 | } |
Brian Carlstrom | 7675e16 | 2013-06-10 16:18:04 -0700 | [diff] [blame] | 1305 | return dalvik_cache; |
Brian Carlstrom | a9f1978 | 2011-10-13 00:14:47 -0700 | [diff] [blame] | 1306 | } |
| 1307 | |
Alex Light | a59dd80 | 2014-07-02 16:28:08 -0700 | [diff] [blame] | 1308 | bool GetDalvikCacheFilename(const char* location, const char* cache_location, |
| 1309 | std::string* filename, std::string* error_msg) { |
Ian Rogers | e606010 | 2013-05-16 12:01:04 -0700 | [diff] [blame] | 1310 | if (location[0] != '/') { |
Alex Light | a59dd80 | 2014-07-02 16:28:08 -0700 | [diff] [blame] | 1311 | *error_msg = StringPrintf("Expected path in location to be absolute: %s", location); |
| 1312 | return false; |
Ian Rogers | e606010 | 2013-05-16 12:01:04 -0700 | [diff] [blame] | 1313 | } |
Ian Rogers | 8d31bbd | 2013-10-13 10:44:14 -0700 | [diff] [blame] | 1314 | std::string cache_file(&location[1]); // skip leading slash |
Alex Light | 6e183f2 | 2014-07-18 14:57:04 -0700 | [diff] [blame] | 1315 | if (!EndsWith(location, ".dex") && !EndsWith(location, ".art") && !EndsWith(location, ".oat")) { |
Brian Carlstrom | 30e2ea4 | 2013-06-19 23:25:37 -0700 | [diff] [blame] | 1316 | cache_file += "/"; |
| 1317 | cache_file += DexFile::kClassesDex; |
| 1318 | } |
Brian Carlstrom | b7bbba4 | 2011-10-13 14:58:47 -0700 | [diff] [blame] | 1319 | std::replace(cache_file.begin(), cache_file.end(), '/', '@'); |
Alex Light | a59dd80 | 2014-07-02 16:28:08 -0700 | [diff] [blame] | 1320 | *filename = StringPrintf("%s/%s", cache_location, cache_file.c_str()); |
| 1321 | return true; |
| 1322 | } |
| 1323 | |
| 1324 | std::string GetDalvikCacheFilenameOrDie(const char* location, const char* cache_location) { |
| 1325 | std::string ret; |
| 1326 | std::string error_msg; |
| 1327 | if (!GetDalvikCacheFilename(location, cache_location, &ret, &error_msg)) { |
| 1328 | LOG(FATAL) << error_msg; |
| 1329 | } |
| 1330 | return ret; |
Brian Carlstrom | b7bbba4 | 2011-10-13 14:58:47 -0700 | [diff] [blame] | 1331 | } |
| 1332 | |
Brian Carlstrom | 2afe494 | 2014-05-19 10:25:33 -0700 | [diff] [blame] | 1333 | static void InsertIsaDirectory(const InstructionSet isa, std::string* filename) { |
Brian Carlstrom | 0e12bdc | 2014-05-14 17:44:28 -0700 | [diff] [blame] | 1334 | // in = /foo/bar/baz |
| 1335 | // out = /foo/bar/<isa>/baz |
| 1336 | size_t pos = filename->rfind('/'); |
| 1337 | CHECK_NE(pos, std::string::npos) << *filename << " " << isa; |
| 1338 | filename->insert(pos, "/", 1); |
| 1339 | filename->insert(pos + 1, GetInstructionSetString(isa)); |
| 1340 | } |
| 1341 | |
| 1342 | std::string GetSystemImageFilename(const char* location, const InstructionSet isa) { |
| 1343 | // location = /system/framework/boot.art |
| 1344 | // filename = /system/framework/<isa>/boot.art |
| 1345 | std::string filename(location); |
Brian Carlstrom | 2afe494 | 2014-05-19 10:25:33 -0700 | [diff] [blame] | 1346 | InsertIsaDirectory(isa, &filename); |
Brian Carlstrom | 0e12bdc | 2014-05-14 17:44:28 -0700 | [diff] [blame] | 1347 | return filename; |
| 1348 | } |
| 1349 | |
| 1350 | std::string DexFilenameToOdexFilename(const std::string& location, const InstructionSet isa) { |
| 1351 | // location = /foo/bar/baz.jar |
| 1352 | // odex_location = /foo/bar/<isa>/baz.odex |
Andreas Gampe | 833a485 | 2014-05-21 18:46:59 -0700 | [diff] [blame] | 1353 | |
Brian Carlstrom | 0e12bdc | 2014-05-14 17:44:28 -0700 | [diff] [blame] | 1354 | CHECK_GE(location.size(), 4U) << location; // must be at least .123 |
| 1355 | std::string odex_location(location); |
Brian Carlstrom | 2afe494 | 2014-05-19 10:25:33 -0700 | [diff] [blame] | 1356 | InsertIsaDirectory(isa, &odex_location); |
Brian Carlstrom | 0e12bdc | 2014-05-14 17:44:28 -0700 | [diff] [blame] | 1357 | size_t dot_index = odex_location.size() - 3 - 1; // 3=dex or zip or apk |
| 1358 | CHECK_EQ('.', odex_location[dot_index]) << location; |
| 1359 | odex_location.resize(dot_index + 1); |
| 1360 | CHECK_EQ('.', odex_location[odex_location.size()-1]) << location << " " << odex_location; |
| 1361 | odex_location += "odex"; |
| 1362 | return odex_location; |
| 1363 | } |
| 1364 | |
Brian Carlstrom | 7c3d13a | 2013-09-04 17:15:11 -0700 | [diff] [blame] | 1365 | bool IsZipMagic(uint32_t magic) { |
| 1366 | return (('P' == ((magic >> 0) & 0xff)) && |
| 1367 | ('K' == ((magic >> 8) & 0xff))); |
jeffhao | 262bf46 | 2011-10-20 18:36:32 -0700 | [diff] [blame] | 1368 | } |
| 1369 | |
Brian Carlstrom | 7c3d13a | 2013-09-04 17:15:11 -0700 | [diff] [blame] | 1370 | bool IsDexMagic(uint32_t magic) { |
Ian Rogers | 1373595 | 2014-10-08 12:43:28 -0700 | [diff] [blame] | 1371 | return DexFile::IsMagicValid(reinterpret_cast<const uint8_t*>(&magic)); |
Brian Carlstrom | 7a967b3 | 2012-03-28 15:23:10 -0700 | [diff] [blame] | 1372 | } |
| 1373 | |
Brian Carlstrom | 7c3d13a | 2013-09-04 17:15:11 -0700 | [diff] [blame] | 1374 | bool IsOatMagic(uint32_t magic) { |
Ian Rogers | 1373595 | 2014-10-08 12:43:28 -0700 | [diff] [blame] | 1375 | return (memcmp(reinterpret_cast<const uint8_t*>(magic), |
Brian Carlstrom | 7c3d13a | 2013-09-04 17:15:11 -0700 | [diff] [blame] | 1376 | OatHeader::kOatMagic, |
| 1377 | sizeof(OatHeader::kOatMagic)) == 0); |
jeffhao | 262bf46 | 2011-10-20 18:36:32 -0700 | [diff] [blame] | 1378 | } |
| 1379 | |
Brian Carlstrom | 6449c62 | 2014-02-10 23:48:36 -0800 | [diff] [blame] | 1380 | bool Exec(std::vector<std::string>& arg_vector, std::string* error_msg) { |
| 1381 | const std::string command_line(Join(arg_vector, ' ')); |
| 1382 | |
| 1383 | CHECK_GE(arg_vector.size(), 1U) << command_line; |
| 1384 | |
| 1385 | // Convert the args to char pointers. |
| 1386 | const char* program = arg_vector[0].c_str(); |
| 1387 | std::vector<char*> args; |
Brian Carlstrom | 35d8b8e | 2014-02-25 10:51:11 -0800 | [diff] [blame] | 1388 | for (size_t i = 0; i < arg_vector.size(); ++i) { |
| 1389 | const std::string& arg = arg_vector[i]; |
| 1390 | char* arg_str = const_cast<char*>(arg.c_str()); |
| 1391 | CHECK(arg_str != nullptr) << i; |
| 1392 | args.push_back(arg_str); |
Brian Carlstrom | 6449c62 | 2014-02-10 23:48:36 -0800 | [diff] [blame] | 1393 | } |
| 1394 | args.push_back(NULL); |
| 1395 | |
| 1396 | // fork and exec |
| 1397 | pid_t pid = fork(); |
| 1398 | if (pid == 0) { |
| 1399 | // no allocation allowed between fork and exec |
| 1400 | |
| 1401 | // change process groups, so we don't get reaped by ProcessManager |
| 1402 | setpgid(0, 0); |
| 1403 | |
| 1404 | execv(program, &args[0]); |
| 1405 | |
Brian Carlstrom | 13db9aa | 2014-02-27 12:44:32 -0800 | [diff] [blame] | 1406 | PLOG(ERROR) << "Failed to execv(" << command_line << ")"; |
| 1407 | exit(1); |
Brian Carlstrom | 6449c62 | 2014-02-10 23:48:36 -0800 | [diff] [blame] | 1408 | } else { |
| 1409 | if (pid == -1) { |
| 1410 | *error_msg = StringPrintf("Failed to execv(%s) because fork failed: %s", |
| 1411 | command_line.c_str(), strerror(errno)); |
| 1412 | return false; |
| 1413 | } |
| 1414 | |
| 1415 | // wait for subprocess to finish |
| 1416 | int status; |
| 1417 | pid_t got_pid = TEMP_FAILURE_RETRY(waitpid(pid, &status, 0)); |
| 1418 | if (got_pid != pid) { |
| 1419 | *error_msg = StringPrintf("Failed after fork for execv(%s) because waitpid failed: " |
| 1420 | "wanted %d, got %d: %s", |
| 1421 | command_line.c_str(), pid, got_pid, strerror(errno)); |
| 1422 | return false; |
| 1423 | } |
| 1424 | if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) { |
| 1425 | *error_msg = StringPrintf("Failed execv(%s) because non-0 exit status", |
| 1426 | command_line.c_str()); |
| 1427 | return false; |
| 1428 | } |
| 1429 | } |
| 1430 | return true; |
| 1431 | } |
| 1432 | |
Tong Shen | 547cdfd | 2014-08-05 01:54:19 -0700 | [diff] [blame] | 1433 | void EncodeUnsignedLeb128(uint32_t data, std::vector<uint8_t>* dst) { |
Yevgeny Rouban | e3ea838 | 2014-08-08 16:29:38 +0700 | [diff] [blame] | 1434 | Leb128Encoder(dst).PushBackUnsigned(data); |
Tong Shen | 547cdfd | 2014-08-05 01:54:19 -0700 | [diff] [blame] | 1435 | } |
| 1436 | |
| 1437 | void EncodeSignedLeb128(int32_t data, std::vector<uint8_t>* dst) { |
Yevgeny Rouban | e3ea838 | 2014-08-08 16:29:38 +0700 | [diff] [blame] | 1438 | Leb128Encoder(dst).PushBackSigned(data); |
Tong Shen | 547cdfd | 2014-08-05 01:54:19 -0700 | [diff] [blame] | 1439 | } |
| 1440 | |
| 1441 | void PushWord(std::vector<uint8_t>* buf, int data) { |
| 1442 | buf->push_back(data & 0xff); |
| 1443 | buf->push_back((data >> 8) & 0xff); |
| 1444 | buf->push_back((data >> 16) & 0xff); |
| 1445 | buf->push_back((data >> 24) & 0xff); |
| 1446 | } |
| 1447 | |
Mathieu Chartier | 7643327 | 2014-09-26 14:32:37 -0700 | [diff] [blame] | 1448 | std::string PrettyDescriptor(Primitive::Type type) { |
| 1449 | return PrettyDescriptor(Primitive::Descriptor(type)); |
| 1450 | } |
| 1451 | |
Elliott Hughes | 42ee142 | 2011-09-06 12:33:32 -0700 | [diff] [blame] | 1452 | } // namespace art |