blob: 6f10aaacaf655f3a0b611a3d41ba60caebaceb6e [file] [log] [blame]
Elliott Hughes2faa5f12012-01-30 14:42:07 -08001/*
2 * Copyright (C) 2011 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
Elliott Hughes11e45072011-08-16 17:40:46 -070016
Elliott Hughes42ee1422011-09-06 12:33:32 -070017#include "utils.h"
18
Christopher Ferris943af7d2014-01-16 12:41:46 -080019#include <inttypes.h>
Elliott Hughes92b3b562011-09-08 16:32:26 -070020#include <pthread.h>
Brian Carlstroma9f19782011-10-13 00:14:47 -070021#include <sys/stat.h>
Elliott Hughes42ee1422011-09-06 12:33:32 -070022#include <sys/syscall.h>
23#include <sys/types.h>
Brian Carlstrom4cf5e572014-02-25 11:47:48 -080024#include <sys/wait.h>
Elliott Hughes42ee1422011-09-06 12:33:32 -070025#include <unistd.h>
Ian Rogers700a4022014-05-19 16:49:03 -070026#include <memory>
Elliott Hughes42ee1422011-09-06 12:33:32 -070027
Mathieu Chartierc7853442015-03-27 14:35:38 -070028#include "art_field-inl.h"
Mathieu Chartiere401d142015-04-22 13:56:20 -070029#include "art_method-inl.h"
Brian Carlstrom6449c622014-02-10 23:48:36 -080030#include "base/stl_util.h"
Elliott Hughes76160052012-12-12 16:31:20 -080031#include "base/unix_file/fd_file.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070032#include "dex_file-inl.h"
Andreas Gampe5073fed2015-08-10 11:40:25 -070033#include "dex_instruction.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070034#include "mirror/class-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080035#include "mirror/class_loader.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080036#include "mirror/object-inl.h"
37#include "mirror/object_array-inl.h"
38#include "mirror/string.h"
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +010039#include "oat_quick_method_header.h"
buzbeec143c552011-08-20 17:38:58 -070040#include "os.h"
Kenny Root067d20f2014-03-05 14:57:21 -080041#include "scoped_thread_state_change.h"
Ian Rogersa6724902013-09-23 09:23:37 -070042#include "utf-inl.h"
Elliott Hughes11e45072011-08-16 17:40:46 -070043
Elliott Hughes4ae722a2012-03-13 11:08:51 -070044#if defined(__APPLE__)
Brian Carlstrom7934ac22013-07-26 10:54:15 -070045#include "AvailabilityMacros.h" // For MAC_OS_X_VERSION_MAX_ALLOWED
Elliott Hughesf1498432012-03-28 19:34:27 -070046#include <sys/syscall.h>
Elliott Hughes4ae722a2012-03-13 11:08:51 -070047#endif
48
Elliott Hughes058a6de2012-05-24 19:13:02 -070049#if defined(__linux__)
Elliott Hughese1aee692012-01-17 16:40:10 -080050#include <linux/unistd.h>
Elliott Hughese1aee692012-01-17 16:40:10 -080051#endif
52
Elliott Hughes11e45072011-08-16 17:40:46 -070053namespace art {
54
Elliott Hughes11d1b0c2012-01-23 16:57:47 -080055pid_t GetTid() {
Brian Carlstromf3a26412012-08-24 11:06:02 -070056#if defined(__APPLE__)
57 uint64_t owner;
Mathieu Chartier2cebb242015-04-21 16:50:40 -070058 CHECK_PTHREAD_CALL(pthread_threadid_np, (nullptr, &owner), __FUNCTION__); // Requires Mac OS 10.6
Brian Carlstromf3a26412012-08-24 11:06:02 -070059 return owner;
Elliott Hughes323aa862014-08-20 15:00:04 -070060#elif defined(__BIONIC__)
61 return gettid();
Elliott Hughes11d1b0c2012-01-23 16:57:47 -080062#else
Elliott Hughes11d1b0c2012-01-23 16:57:47 -080063 return syscall(__NR_gettid);
64#endif
65}
66
Elliott Hughes289be852012-06-12 13:57:20 -070067std::string GetThreadName(pid_t tid) {
68 std::string result;
69 if (ReadFileToString(StringPrintf("/proc/self/task/%d/comm", tid), &result)) {
Brian Carlstrom7934ac22013-07-26 10:54:15 -070070 result.resize(result.size() - 1); // Lose the trailing '\n'.
Elliott Hughes289be852012-06-12 13:57:20 -070071 } else {
72 result = "<unknown>";
73 }
74 return result;
75}
76
Elliott Hughes6d3fc562014-08-27 11:47:01 -070077void GetThreadStack(pthread_t thread, void** stack_base, size_t* stack_size, size_t* guard_size) {
Elliott Hughese1884192012-04-23 12:38:15 -070078#if defined(__APPLE__)
Brian Carlstrom29212012013-09-12 22:18:30 -070079 *stack_size = pthread_get_stacksize_np(thread);
Ian Rogers120f1c72012-09-28 17:17:10 -070080 void* stack_addr = pthread_get_stackaddr_np(thread);
Elliott Hughese1884192012-04-23 12:38:15 -070081
82 // Check whether stack_addr is the base or end of the stack.
83 // (On Mac OS 10.7, it's the end.)
84 int stack_variable;
85 if (stack_addr > &stack_variable) {
Ian Rogers13735952014-10-08 12:43:28 -070086 *stack_base = reinterpret_cast<uint8_t*>(stack_addr) - *stack_size;
Elliott Hughese1884192012-04-23 12:38:15 -070087 } else {
Brian Carlstrom29212012013-09-12 22:18:30 -070088 *stack_base = stack_addr;
Elliott Hughese1884192012-04-23 12:38:15 -070089 }
Elliott Hughes6d3fc562014-08-27 11:47:01 -070090
91 // This is wrong, but there doesn't seem to be a way to get the actual value on the Mac.
92 pthread_attr_t attributes;
93 CHECK_PTHREAD_CALL(pthread_attr_init, (&attributes), __FUNCTION__);
94 CHECK_PTHREAD_CALL(pthread_attr_getguardsize, (&attributes, guard_size), __FUNCTION__);
95 CHECK_PTHREAD_CALL(pthread_attr_destroy, (&attributes), __FUNCTION__);
Elliott Hughese1884192012-04-23 12:38:15 -070096#else
97 pthread_attr_t attributes;
Ian Rogers120f1c72012-09-28 17:17:10 -070098 CHECK_PTHREAD_CALL(pthread_getattr_np, (thread, &attributes), __FUNCTION__);
Brian Carlstrom29212012013-09-12 22:18:30 -070099 CHECK_PTHREAD_CALL(pthread_attr_getstack, (&attributes, stack_base, stack_size), __FUNCTION__);
Elliott Hughes6d3fc562014-08-27 11:47:01 -0700100 CHECK_PTHREAD_CALL(pthread_attr_getguardsize, (&attributes, guard_size), __FUNCTION__);
Elliott Hughese1884192012-04-23 12:38:15 -0700101 CHECK_PTHREAD_CALL(pthread_attr_destroy, (&attributes), __FUNCTION__);
Elliott Hughes839cc302014-08-28 10:24:44 -0700102
103#if defined(__GLIBC__)
104 // If we're the main thread, check whether we were run with an unlimited stack. In that case,
105 // glibc will have reported a 2GB stack for our 32-bit process, and our stack overflow detection
106 // will be broken because we'll die long before we get close to 2GB.
107 bool is_main_thread = (::art::GetTid() == getpid());
108 if (is_main_thread) {
109 rlimit stack_limit;
110 if (getrlimit(RLIMIT_STACK, &stack_limit) == -1) {
111 PLOG(FATAL) << "getrlimit(RLIMIT_STACK) failed";
112 }
113 if (stack_limit.rlim_cur == RLIM_INFINITY) {
114 size_t old_stack_size = *stack_size;
115
116 // Use the kernel default limit as our size, and adjust the base to match.
117 *stack_size = 8 * MB;
118 *stack_base = reinterpret_cast<uint8_t*>(*stack_base) + (old_stack_size - *stack_size);
119
120 VLOG(threads) << "Limiting unlimited stack (reported as " << PrettySize(old_stack_size) << ")"
121 << " to " << PrettySize(*stack_size)
122 << " with base " << *stack_base;
123 }
124 }
125#endif
126
Elliott Hughese1884192012-04-23 12:38:15 -0700127#endif
128}
129
Elliott Hughesd92bec42011-09-02 17:04:36 -0700130bool ReadFileToString(const std::string& file_name, std::string* result) {
Andreas Gampedf878922015-08-13 16:44:54 -0700131 File file(file_name, O_RDONLY, false);
132 if (!file.IsOpened()) {
Elliott Hughesd92bec42011-09-02 17:04:36 -0700133 return false;
134 }
buzbeec143c552011-08-20 17:38:58 -0700135
Elliott Hughes3b6baaa2011-10-14 19:13:56 -0700136 std::vector<char> buf(8 * KB);
buzbeec143c552011-08-20 17:38:58 -0700137 while (true) {
Andreas Gampea6dfdae2015-02-24 15:50:19 -0800138 int64_t n = TEMP_FAILURE_RETRY(read(file.Fd(), &buf[0], buf.size()));
Elliott Hughesd92bec42011-09-02 17:04:36 -0700139 if (n == -1) {
140 return false;
buzbeec143c552011-08-20 17:38:58 -0700141 }
Elliott Hughesd92bec42011-09-02 17:04:36 -0700142 if (n == 0) {
143 return true;
144 }
Elliott Hughes3b6baaa2011-10-14 19:13:56 -0700145 result->append(&buf[0], n);
buzbeec143c552011-08-20 17:38:58 -0700146 }
buzbeec143c552011-08-20 17:38:58 -0700147}
148
Andreas Gampea6dfdae2015-02-24 15:50:19 -0800149bool PrintFileToLog(const std::string& file_name, LogSeverity level) {
Andreas Gampedf878922015-08-13 16:44:54 -0700150 File file(file_name, O_RDONLY, false);
151 if (!file.IsOpened()) {
Andreas Gampea6dfdae2015-02-24 15:50:19 -0800152 return false;
153 }
154
155 constexpr size_t kBufSize = 256; // Small buffer. Avoid stack overflow and stack size warnings.
156 char buf[kBufSize + 1]; // +1 for terminator.
157 size_t filled_to = 0;
158 while (true) {
159 DCHECK_LT(filled_to, kBufSize);
160 int64_t n = TEMP_FAILURE_RETRY(read(file.Fd(), &buf[filled_to], kBufSize - filled_to));
161 if (n <= 0) {
162 // Print the rest of the buffer, if it exists.
163 if (filled_to > 0) {
164 buf[filled_to] = 0;
165 LOG(level) << buf;
166 }
167 return n == 0;
168 }
169 // Scan for '\n'.
170 size_t i = filled_to;
171 bool found_newline = false;
172 for (; i < filled_to + n; ++i) {
173 if (buf[i] == '\n') {
174 // Found a line break, that's something to print now.
175 buf[i] = 0;
176 LOG(level) << buf;
177 // Copy the rest to the front.
178 if (i + 1 < filled_to + n) {
179 memmove(&buf[0], &buf[i + 1], filled_to + n - i - 1);
180 filled_to = filled_to + n - i - 1;
181 } else {
182 filled_to = 0;
183 }
184 found_newline = true;
185 break;
186 }
187 }
188 if (found_newline) {
189 continue;
190 } else {
191 filled_to += n;
192 // Check if we must flush now.
193 if (filled_to == kBufSize) {
194 buf[kBufSize] = 0;
195 LOG(level) << buf;
196 filled_to = 0;
197 }
198 }
199 }
200}
201
Ian Rogersef7d42f2014-01-06 12:55:46 -0800202std::string PrettyDescriptor(mirror::String* java_descriptor) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700203 if (java_descriptor == nullptr) {
Brian Carlstrome24fa612011-09-29 00:53:55 -0700204 return "null";
205 }
Ian Rogers1ff3c982014-08-12 02:30:58 -0700206 return PrettyDescriptor(java_descriptor->ToModifiedUtf8().c_str());
Elliott Hughes6c8867d2011-10-03 16:34:05 -0700207}
Elliott Hughes5174fe62011-08-23 15:12:35 -0700208
Ian Rogersef7d42f2014-01-06 12:55:46 -0800209std::string PrettyDescriptor(mirror::Class* klass) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700210 if (klass == nullptr) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800211 return "null";
212 }
Ian Rogers1ff3c982014-08-12 02:30:58 -0700213 std::string temp;
214 return PrettyDescriptor(klass->GetDescriptor(&temp));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800215}
216
Ian Rogers1ff3c982014-08-12 02:30:58 -0700217std::string PrettyDescriptor(const char* descriptor) {
Elliott Hughes11e45072011-08-16 17:40:46 -0700218 // Count the number of '['s to get the dimensionality.
Ian Rogers1ff3c982014-08-12 02:30:58 -0700219 const char* c = descriptor;
Elliott Hughes11e45072011-08-16 17:40:46 -0700220 size_t dim = 0;
221 while (*c == '[') {
222 dim++;
223 c++;
224 }
225
226 // Reference or primitive?
227 if (*c == 'L') {
228 // "[[La/b/C;" -> "a.b.C[][]".
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700229 c++; // Skip the 'L'.
Elliott Hughes11e45072011-08-16 17:40:46 -0700230 } else {
231 // "[[B" -> "byte[][]".
232 // To make life easier, we make primitives look like unqualified
233 // reference types.
234 switch (*c) {
235 case 'B': c = "byte;"; break;
236 case 'C': c = "char;"; break;
237 case 'D': c = "double;"; break;
238 case 'F': c = "float;"; break;
239 case 'I': c = "int;"; break;
240 case 'J': c = "long;"; break;
241 case 'S': c = "short;"; break;
242 case 'Z': c = "boolean;"; break;
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700243 case 'V': c = "void;"; break; // Used when decoding return types.
Elliott Hughes5174fe62011-08-23 15:12:35 -0700244 default: return descriptor;
Elliott Hughes11e45072011-08-16 17:40:46 -0700245 }
246 }
247
248 // At this point, 'c' is a string of the form "fully/qualified/Type;"
249 // or "primitive;". Rewrite the type with '.' instead of '/':
250 std::string result;
251 const char* p = c;
252 while (*p != ';') {
253 char ch = *p++;
254 if (ch == '/') {
255 ch = '.';
256 }
257 result.push_back(ch);
258 }
259 // ...and replace the semicolon with 'dim' "[]" pairs:
Ian Rogers1ff3c982014-08-12 02:30:58 -0700260 for (size_t i = 0; i < dim; ++i) {
Elliott Hughes11e45072011-08-16 17:40:46 -0700261 result += "[]";
262 }
263 return result;
264}
265
Mathieu Chartierc7853442015-03-27 14:35:38 -0700266std::string PrettyField(ArtField* f, bool with_type) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700267 if (f == nullptr) {
Elliott Hughesa2501992011-08-26 19:39:54 -0700268 return "null";
269 }
Elliott Hughes54e7df12011-09-16 11:47:04 -0700270 std::string result;
271 if (with_type) {
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -0700272 result += PrettyDescriptor(f->GetTypeDescriptor());
Elliott Hughes54e7df12011-09-16 11:47:04 -0700273 result += ' ';
274 }
Ian Rogers08f1f502014-12-02 15:04:37 -0800275 std::string temp;
276 result += PrettyDescriptor(f->GetDeclaringClass()->GetDescriptor(&temp));
Elliott Hughesa2501992011-08-26 19:39:54 -0700277 result += '.';
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -0700278 result += f->GetName();
Elliott Hughesa2501992011-08-26 19:39:54 -0700279 return result;
280}
281
Brian Carlstrom6f29d0e2012-05-11 15:50:29 -0700282std::string PrettyField(uint32_t field_idx, const DexFile& dex_file, bool with_type) {
Elliott Hughes60641a72013-02-27 14:36:16 -0800283 if (field_idx >= dex_file.NumFieldIds()) {
284 return StringPrintf("<<invalid-field-idx-%d>>", field_idx);
285 }
Brian Carlstrom6f29d0e2012-05-11 15:50:29 -0700286 const DexFile::FieldId& field_id = dex_file.GetFieldId(field_idx);
287 std::string result;
288 if (with_type) {
289 result += dex_file.GetFieldTypeDescriptor(field_id);
290 result += ' ';
291 }
292 result += PrettyDescriptor(dex_file.GetFieldDeclaringClassDescriptor(field_id));
293 result += '.';
294 result += dex_file.GetFieldName(field_id);
295 return result;
296}
297
Mathieu Chartier18c24b62012-09-10 08:54:25 -0700298std::string PrettyType(uint32_t type_idx, const DexFile& dex_file) {
Elliott Hughes60641a72013-02-27 14:36:16 -0800299 if (type_idx >= dex_file.NumTypeIds()) {
300 return StringPrintf("<<invalid-type-idx-%d>>", type_idx);
301 }
Mathieu Chartier18c24b62012-09-10 08:54:25 -0700302 const DexFile::TypeId& type_id = dex_file.GetTypeId(type_idx);
Mathieu Chartier4c70d772012-09-10 14:08:32 -0700303 return PrettyDescriptor(dex_file.GetTypeDescriptor(type_id));
Mathieu Chartier18c24b62012-09-10 08:54:25 -0700304}
305
Elliott Hughes9058f2b2012-03-22 18:06:48 -0700306std::string PrettyArguments(const char* signature) {
307 std::string result;
308 result += '(';
309 CHECK_EQ(*signature, '(');
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700310 ++signature; // Skip the '('.
Elliott Hughes9058f2b2012-03-22 18:06:48 -0700311 while (*signature != ')') {
312 size_t argument_length = 0;
313 while (signature[argument_length] == '[') {
314 ++argument_length;
315 }
316 if (signature[argument_length] == 'L') {
317 argument_length = (strchr(signature, ';') - signature + 1);
318 } else {
319 ++argument_length;
320 }
Ian Rogers1ff3c982014-08-12 02:30:58 -0700321 {
322 std::string argument_descriptor(signature, argument_length);
323 result += PrettyDescriptor(argument_descriptor.c_str());
324 }
Elliott Hughes9058f2b2012-03-22 18:06:48 -0700325 if (signature[argument_length] != ')') {
326 result += ", ";
327 }
328 signature += argument_length;
329 }
330 CHECK_EQ(*signature, ')');
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700331 ++signature; // Skip the ')'.
Elliott Hughes9058f2b2012-03-22 18:06:48 -0700332 result += ')';
333 return result;
334}
335
336std::string PrettyReturnType(const char* signature) {
337 const char* return_type = strchr(signature, ')');
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700338 CHECK(return_type != nullptr);
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700339 ++return_type; // Skip ')'.
Elliott Hughes9058f2b2012-03-22 18:06:48 -0700340 return PrettyDescriptor(return_type);
341}
342
Mathieu Chartiere401d142015-04-22 13:56:20 -0700343std::string PrettyMethod(ArtMethod* m, bool with_signature) {
Ian Rogers16ce0922014-01-10 14:59:36 -0800344 if (m == nullptr) {
Elliott Hughesa0b8feb2011-08-20 09:50:55 -0700345 return "null";
346 }
Mathieu Chartiere401d142015-04-22 13:56:20 -0700347 if (!m->IsRuntimeMethod()) {
348 m = m->GetInterfaceMethodIfProxy(Runtime::Current()->GetClassLinker()->GetImagePointerSize());
349 }
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700350 std::string result(PrettyDescriptor(m->GetDeclaringClassDescriptor()));
Elliott Hughesa0b8feb2011-08-20 09:50:55 -0700351 result += '.';
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700352 result += m->GetName();
Ian Rogers16ce0922014-01-10 14:59:36 -0800353 if (UNLIKELY(m->IsFastNative())) {
354 result += "!";
355 }
Elliott Hughesa0b8feb2011-08-20 09:50:55 -0700356 if (with_signature) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700357 const Signature signature = m->GetSignature();
Ian Rogersd91d6d62013-09-25 20:26:14 -0700358 std::string sig_as_string(signature.ToString());
359 if (signature == Signature::NoSignature()) {
360 return result + sig_as_string;
Elliott Hughesf8c11932012-03-23 19:53:59 -0700361 }
Ian Rogersd91d6d62013-09-25 20:26:14 -0700362 result = PrettyReturnType(sig_as_string.c_str()) + " " + result +
363 PrettyArguments(sig_as_string.c_str());
Elliott Hughesa0b8feb2011-08-20 09:50:55 -0700364 }
365 return result;
366}
367
Ian Rogers0571d352011-11-03 19:51:38 -0700368std::string PrettyMethod(uint32_t method_idx, const DexFile& dex_file, bool with_signature) {
Elliott Hughes60641a72013-02-27 14:36:16 -0800369 if (method_idx >= dex_file.NumMethodIds()) {
370 return StringPrintf("<<invalid-method-idx-%d>>", method_idx);
371 }
Ian Rogers0571d352011-11-03 19:51:38 -0700372 const DexFile::MethodId& method_id = dex_file.GetMethodId(method_idx);
373 std::string result(PrettyDescriptor(dex_file.GetMethodDeclaringClassDescriptor(method_id)));
374 result += '.';
375 result += dex_file.GetMethodName(method_id);
376 if (with_signature) {
Ian Rogersd91d6d62013-09-25 20:26:14 -0700377 const Signature signature = dex_file.GetMethodSignature(method_id);
378 std::string sig_as_string(signature.ToString());
379 if (signature == Signature::NoSignature()) {
380 return result + sig_as_string;
Elliott Hughesf8c11932012-03-23 19:53:59 -0700381 }
Ian Rogersd91d6d62013-09-25 20:26:14 -0700382 result = PrettyReturnType(sig_as_string.c_str()) + " " + result +
383 PrettyArguments(sig_as_string.c_str());
Ian Rogers0571d352011-11-03 19:51:38 -0700384 }
385 return result;
386}
387
Ian Rogersef7d42f2014-01-06 12:55:46 -0800388std::string PrettyTypeOf(mirror::Object* obj) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700389 if (obj == nullptr) {
Elliott Hughes11e45072011-08-16 17:40:46 -0700390 return "null";
391 }
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700392 if (obj->GetClass() == nullptr) {
Elliott Hughes11e45072011-08-16 17:40:46 -0700393 return "(raw)";
394 }
Ian Rogers1ff3c982014-08-12 02:30:58 -0700395 std::string temp;
396 std::string result(PrettyDescriptor(obj->GetClass()->GetDescriptor(&temp)));
Elliott Hughes11e45072011-08-16 17:40:46 -0700397 if (obj->IsClass()) {
Ian Rogers1ff3c982014-08-12 02:30:58 -0700398 result += "<" + PrettyDescriptor(obj->AsClass()->GetDescriptor(&temp)) + ">";
Elliott Hughes11e45072011-08-16 17:40:46 -0700399 }
400 return result;
401}
402
Ian Rogersef7d42f2014-01-06 12:55:46 -0800403std::string PrettyClass(mirror::Class* c) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700404 if (c == nullptr) {
Elliott Hughes54e7df12011-09-16 11:47:04 -0700405 return "null";
406 }
407 std::string result;
408 result += "java.lang.Class<";
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800409 result += PrettyDescriptor(c);
Elliott Hughes54e7df12011-09-16 11:47:04 -0700410 result += ">";
411 return result;
412}
413
Ian Rogersef7d42f2014-01-06 12:55:46 -0800414std::string PrettyClassAndClassLoader(mirror::Class* c) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700415 if (c == nullptr) {
Ian Rogersd81871c2011-10-03 13:57:23 -0700416 return "null";
417 }
418 std::string result;
419 result += "java.lang.Class<";
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800420 result += PrettyDescriptor(c);
Ian Rogersd81871c2011-10-03 13:57:23 -0700421 result += ",";
422 result += PrettyTypeOf(c->GetClassLoader());
423 // TODO: add an identifying hash value for the loader
424 result += ">";
425 return result;
426}
427
Andreas Gampec0d82292014-09-23 10:38:30 -0700428std::string PrettyJavaAccessFlags(uint32_t access_flags) {
429 std::string result;
430 if ((access_flags & kAccPublic) != 0) {
431 result += "public ";
432 }
433 if ((access_flags & kAccProtected) != 0) {
434 result += "protected ";
435 }
436 if ((access_flags & kAccPrivate) != 0) {
437 result += "private ";
438 }
439 if ((access_flags & kAccFinal) != 0) {
440 result += "final ";
441 }
442 if ((access_flags & kAccStatic) != 0) {
443 result += "static ";
444 }
David Brazdilca3c8c32016-09-06 14:04:48 +0100445 if ((access_flags & kAccAbstract) != 0) {
446 result += "abstract ";
447 }
448 if ((access_flags & kAccInterface) != 0) {
449 result += "interface ";
450 }
Andreas Gampec0d82292014-09-23 10:38:30 -0700451 if ((access_flags & kAccTransient) != 0) {
452 result += "transient ";
453 }
454 if ((access_flags & kAccVolatile) != 0) {
455 result += "volatile ";
456 }
457 if ((access_flags & kAccSynchronized) != 0) {
458 result += "synchronized ";
459 }
460 return result;
461}
462
Mathieu Chartiere6da9af2013-12-16 11:54:42 -0800463std::string PrettySize(int64_t byte_count) {
Elliott Hughesc967f782012-04-16 10:23:15 -0700464 // The byte thresholds at which we display amounts. A byte count is displayed
465 // in unit U when kUnitThresholds[U] <= bytes < kUnitThresholds[U+1].
Ian Rogersef7d42f2014-01-06 12:55:46 -0800466 static const int64_t kUnitThresholds[] = {
Elliott Hughesc967f782012-04-16 10:23:15 -0700467 0, // B up to...
468 3*1024, // KB up to...
469 2*1024*1024, // MB up to...
470 1024*1024*1024 // GB from here.
471 };
Mathieu Chartiere6da9af2013-12-16 11:54:42 -0800472 static const int64_t kBytesPerUnit[] = { 1, KB, MB, GB };
Elliott Hughesc967f782012-04-16 10:23:15 -0700473 static const char* const kUnitStrings[] = { "B", "KB", "MB", "GB" };
Mathieu Chartiere6da9af2013-12-16 11:54:42 -0800474 const char* negative_str = "";
475 if (byte_count < 0) {
476 negative_str = "-";
477 byte_count = -byte_count;
478 }
Elliott Hughesc967f782012-04-16 10:23:15 -0700479 int i = arraysize(kUnitThresholds);
480 while (--i > 0) {
481 if (byte_count >= kUnitThresholds[i]) {
482 break;
483 }
Ian Rogers3bb17a62012-01-27 23:56:44 -0800484 }
Brian Carlstrom474cc792014-03-07 14:18:15 -0800485 return StringPrintf("%s%" PRId64 "%s",
486 negative_str, byte_count / kBytesPerUnit[i], kUnitStrings[i]);
Ian Rogers3bb17a62012-01-27 23:56:44 -0800487}
488
Ian Rogers576ca0c2014-06-06 15:58:22 -0700489std::string PrintableChar(uint16_t ch) {
490 std::string result;
491 result += '\'';
492 if (NeedsEscaping(ch)) {
493 StringAppendF(&result, "\\u%04x", ch);
494 } else {
495 result += ch;
496 }
497 result += '\'';
498 return result;
499}
500
Ian Rogers68b56852014-08-29 20:19:11 -0700501std::string PrintableString(const char* utf) {
Elliott Hughes82914b62012-04-09 15:56:29 -0700502 std::string result;
503 result += '"';
Ian Rogers68b56852014-08-29 20:19:11 -0700504 const char* p = utf;
Elliott Hughes82914b62012-04-09 15:56:29 -0700505 size_t char_count = CountModifiedUtf8Chars(p);
506 for (size_t i = 0; i < char_count; ++i) {
Narayan Kamatha5afcfc2015-01-29 20:06:46 +0000507 uint32_t ch = GetUtf16FromUtf8(&p);
Elliott Hughes82914b62012-04-09 15:56:29 -0700508 if (ch == '\\') {
509 result += "\\\\";
510 } else if (ch == '\n') {
511 result += "\\n";
512 } else if (ch == '\r') {
513 result += "\\r";
514 } else if (ch == '\t') {
515 result += "\\t";
Elliott Hughes82914b62012-04-09 15:56:29 -0700516 } else {
Narayan Kamatha5afcfc2015-01-29 20:06:46 +0000517 const uint16_t leading = GetLeadingUtf16Char(ch);
518
519 if (NeedsEscaping(leading)) {
520 StringAppendF(&result, "\\u%04x", leading);
521 } else {
522 result += leading;
523 }
524
525 const uint32_t trailing = GetTrailingUtf16Char(ch);
526 if (trailing != 0) {
527 // All high surrogates will need escaping.
528 StringAppendF(&result, "\\u%04x", trailing);
529 }
Elliott Hughes82914b62012-04-09 15:56:29 -0700530 }
531 }
532 result += '"';
533 return result;
534}
535
Elliott Hughesd8c00d02012-01-30 14:08:31 -0800536// See http://java.sun.com/j2se/1.5.0/docs/guide/jni/spec/design.html#wp615 for the full rules.
Elliott Hughes79082e32011-08-25 12:07:32 -0700537std::string MangleForJni(const std::string& s) {
538 std::string result;
539 size_t char_count = CountModifiedUtf8Chars(s.c_str());
540 const char* cp = &s[0];
541 for (size_t i = 0; i < char_count; ++i) {
Narayan Kamatha5afcfc2015-01-29 20:06:46 +0000542 uint32_t ch = GetUtf16FromUtf8(&cp);
Elliott Hughesd8c00d02012-01-30 14:08:31 -0800543 if ((ch >= 'A' && ch <= 'Z') || (ch >= 'a' && ch <= 'z') || (ch >= '0' && ch <= '9')) {
544 result.push_back(ch);
545 } else if (ch == '.' || ch == '/') {
546 result += "_";
547 } else if (ch == '_') {
548 result += "_1";
549 } else if (ch == ';') {
550 result += "_2";
551 } else if (ch == '[') {
552 result += "_3";
Elliott Hughes79082e32011-08-25 12:07:32 -0700553 } else {
Narayan Kamatha5afcfc2015-01-29 20:06:46 +0000554 const uint16_t leading = GetLeadingUtf16Char(ch);
555 const uint32_t trailing = GetTrailingUtf16Char(ch);
556
557 StringAppendF(&result, "_0%04x", leading);
558 if (trailing != 0) {
559 StringAppendF(&result, "_0%04x", trailing);
560 }
Elliott Hughes79082e32011-08-25 12:07:32 -0700561 }
562 }
563 return result;
564}
565
Brian Carlstromf91c8c32011-09-21 17:30:34 -0700566std::string DotToDescriptor(const char* class_name) {
567 std::string descriptor(class_name);
568 std::replace(descriptor.begin(), descriptor.end(), '.', '/');
569 if (descriptor.length() > 0 && descriptor[0] != '[') {
570 descriptor = "L" + descriptor + ";";
571 }
572 return descriptor;
573}
574
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800575std::string DescriptorToDot(const char* descriptor) {
Elliott Hughes2435a572012-02-17 16:07:41 -0800576 size_t length = strlen(descriptor);
Ian Rogers1ff3c982014-08-12 02:30:58 -0700577 if (length > 1) {
578 if (descriptor[0] == 'L' && descriptor[length - 1] == ';') {
579 // Descriptors have the leading 'L' and trailing ';' stripped.
580 std::string result(descriptor + 1, length - 2);
581 std::replace(result.begin(), result.end(), '/', '.');
582 return result;
583 } else {
584 // For arrays the 'L' and ';' remain intact.
585 std::string result(descriptor);
586 std::replace(result.begin(), result.end(), '/', '.');
587 return result;
588 }
Elliott Hughes2435a572012-02-17 16:07:41 -0800589 }
Ian Rogers1ff3c982014-08-12 02:30:58 -0700590 // Do nothing for non-class/array descriptors.
Elliott Hughes2435a572012-02-17 16:07:41 -0800591 return descriptor;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -0800592}
593
594std::string DescriptorToName(const char* descriptor) {
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800595 size_t length = strlen(descriptor);
Elliott Hughes2435a572012-02-17 16:07:41 -0800596 if (descriptor[0] == 'L' && descriptor[length - 1] == ';') {
597 std::string result(descriptor + 1, length - 2);
598 return result;
599 }
600 return descriptor;
Brian Carlstromaded5f72011-10-07 17:15:04 -0700601}
602
Mathieu Chartiere401d142015-04-22 13:56:20 -0700603std::string JniShortName(ArtMethod* m) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700604 std::string class_name(m->GetDeclaringClassDescriptor());
Elliott Hughes79082e32011-08-25 12:07:32 -0700605 // Remove the leading 'L' and trailing ';'...
Elliott Hughesf5a7a472011-10-07 14:31:02 -0700606 CHECK_EQ(class_name[0], 'L') << class_name;
607 CHECK_EQ(class_name[class_name.size() - 1], ';') << class_name;
Elliott Hughes79082e32011-08-25 12:07:32 -0700608 class_name.erase(0, 1);
609 class_name.erase(class_name.size() - 1, 1);
610
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700611 std::string method_name(m->GetName());
Elliott Hughes79082e32011-08-25 12:07:32 -0700612
613 std::string short_name;
614 short_name += "Java_";
615 short_name += MangleForJni(class_name);
616 short_name += "_";
617 short_name += MangleForJni(method_name);
618 return short_name;
619}
620
Mathieu Chartiere401d142015-04-22 13:56:20 -0700621std::string JniLongName(ArtMethod* m) {
Elliott Hughes79082e32011-08-25 12:07:32 -0700622 std::string long_name;
623 long_name += JniShortName(m);
624 long_name += "__";
625
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700626 std::string signature(m->GetSignature().ToString());
Elliott Hughes79082e32011-08-25 12:07:32 -0700627 signature.erase(0, 1);
628 signature.erase(signature.begin() + signature.find(')'), signature.end());
629
630 long_name += MangleForJni(signature);
631
632 return long_name;
633}
634
jeffhao10037c82012-01-23 15:06:23 -0800635// Helper for IsValidPartOfMemberNameUtf8(), a bit vector indicating valid low ascii.
Elliott Hughes64bf5a32011-09-20 14:43:12 -0700636uint32_t DEX_MEMBER_VALID_LOW_ASCII[4] = {
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700637 0x00000000, // 00..1f low control characters; nothing valid
638 0x03ff2010, // 20..3f digits and symbols; valid: '0'..'9', '$', '-'
639 0x87fffffe, // 40..5f uppercase etc.; valid: 'A'..'Z', '_'
640 0x07fffffe // 60..7f lowercase etc.; valid: 'a'..'z'
Elliott Hughes64bf5a32011-09-20 14:43:12 -0700641};
642
jeffhao10037c82012-01-23 15:06:23 -0800643// Helper for IsValidPartOfMemberNameUtf8(); do not call directly.
644bool IsValidPartOfMemberNameUtf8Slow(const char** pUtf8Ptr) {
Elliott Hughes64bf5a32011-09-20 14:43:12 -0700645 /*
646 * It's a multibyte encoded character. Decode it and analyze. We
647 * accept anything that isn't (a) an improperly encoded low value,
648 * (b) an improper surrogate pair, (c) an encoded '\0', (d) a high
649 * control character, or (e) a high space, layout, or special
650 * character (U+00a0, U+2000..U+200f, U+2028..U+202f,
651 * U+fff0..U+ffff). This is all specified in the dex format
652 * document.
653 */
654
Narayan Kamatha5afcfc2015-01-29 20:06:46 +0000655 const uint32_t pair = GetUtf16FromUtf8(pUtf8Ptr);
Narayan Kamatha5afcfc2015-01-29 20:06:46 +0000656 const uint16_t leading = GetLeadingUtf16Char(pair);
Narayan Kamatha5afcfc2015-01-29 20:06:46 +0000657
Narayan Kamath8508e372015-05-06 14:55:43 +0100658 // We have a surrogate pair resulting from a valid 4 byte UTF sequence.
659 // No further checks are necessary because 4 byte sequences span code
660 // points [U+10000, U+1FFFFF], which are valid codepoints in a dex
661 // identifier. Furthermore, GetUtf16FromUtf8 guarantees that each of
662 // the surrogate halves are valid and well formed in this instance.
663 if (GetTrailingUtf16Char(pair) != 0) {
664 return true;
665 }
666
667
668 // We've encountered a one, two or three byte UTF-8 sequence. The
669 // three byte UTF-8 sequence could be one half of a surrogate pair.
670 switch (leading >> 8) {
Narayan Kamatha5afcfc2015-01-29 20:06:46 +0000671 case 0x00:
672 // It's only valid if it's above the ISO-8859-1 high space (0xa0).
673 return (leading > 0x00a0);
674 case 0xd8:
675 case 0xd9:
676 case 0xda:
677 case 0xdb:
Narayan Kamath8508e372015-05-06 14:55:43 +0100678 {
679 // We found a three byte sequence encoding one half of a surrogate.
680 // Look for the other half.
681 const uint32_t pair2 = GetUtf16FromUtf8(pUtf8Ptr);
682 const uint16_t trailing = GetLeadingUtf16Char(pair2);
683
684 return (GetTrailingUtf16Char(pair2) == 0) && (0xdc00 <= trailing && trailing <= 0xdfff);
685 }
Narayan Kamatha5afcfc2015-01-29 20:06:46 +0000686 case 0xdc:
687 case 0xdd:
688 case 0xde:
689 case 0xdf:
690 // It's a trailing surrogate, which is not valid at this point.
691 return false;
692 case 0x20:
693 case 0xff:
694 // It's in the range that has spaces, controls, and specials.
695 switch (leading & 0xfff8) {
Narayan Kamath8508e372015-05-06 14:55:43 +0100696 case 0x2000:
697 case 0x2008:
698 case 0x2028:
699 case 0xfff0:
700 case 0xfff8:
701 return false;
Narayan Kamatha5afcfc2015-01-29 20:06:46 +0000702 }
Narayan Kamath8508e372015-05-06 14:55:43 +0100703 return true;
704 default:
705 return true;
Elliott Hughes64bf5a32011-09-20 14:43:12 -0700706 }
Narayan Kamatha5afcfc2015-01-29 20:06:46 +0000707
Narayan Kamath8508e372015-05-06 14:55:43 +0100708 UNREACHABLE();
Elliott Hughes64bf5a32011-09-20 14:43:12 -0700709}
710
711/* Return whether the pointed-at modified-UTF-8 encoded character is
712 * valid as part of a member name, updating the pointer to point past
713 * the consumed character. This will consume two encoded UTF-16 code
714 * points if the character is encoded as a surrogate pair. Also, if
715 * this function returns false, then the given pointer may only have
716 * been partially advanced.
717 */
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700718static bool IsValidPartOfMemberNameUtf8(const char** pUtf8Ptr) {
Elliott Hughes64bf5a32011-09-20 14:43:12 -0700719 uint8_t c = (uint8_t) **pUtf8Ptr;
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700720 if (LIKELY(c <= 0x7f)) {
Elliott Hughes64bf5a32011-09-20 14:43:12 -0700721 // It's low-ascii, so check the table.
722 uint32_t wordIdx = c >> 5;
723 uint32_t bitIdx = c & 0x1f;
724 (*pUtf8Ptr)++;
725 return (DEX_MEMBER_VALID_LOW_ASCII[wordIdx] & (1 << bitIdx)) != 0;
726 }
727
728 // It's a multibyte encoded character. Call a non-inline function
729 // for the heavy lifting.
jeffhao10037c82012-01-23 15:06:23 -0800730 return IsValidPartOfMemberNameUtf8Slow(pUtf8Ptr);
731}
732
733bool IsValidMemberName(const char* s) {
734 bool angle_name = false;
735
Elliott Hughesb25c3f62012-03-26 16:35:06 -0700736 switch (*s) {
jeffhao10037c82012-01-23 15:06:23 -0800737 case '\0':
738 // The empty string is not a valid name.
739 return false;
740 case '<':
741 angle_name = true;
742 s++;
743 break;
744 }
745
746 while (true) {
747 switch (*s) {
748 case '\0':
749 return !angle_name;
750 case '>':
751 return angle_name && s[1] == '\0';
752 }
753
754 if (!IsValidPartOfMemberNameUtf8(&s)) {
755 return false;
756 }
757 }
Elliott Hughes64bf5a32011-09-20 14:43:12 -0700758}
759
Elliott Hughes906e6852011-10-28 14:52:10 -0700760enum ClassNameType { kName, kDescriptor };
Ian Rogers7b078e82014-09-10 14:44:24 -0700761template<ClassNameType kType, char kSeparator>
762static bool IsValidClassName(const char* s) {
Elliott Hughes64bf5a32011-09-20 14:43:12 -0700763 int arrayCount = 0;
764 while (*s == '[') {
765 arrayCount++;
766 s++;
767 }
768
769 if (arrayCount > 255) {
770 // Arrays may have no more than 255 dimensions.
771 return false;
772 }
773
Ian Rogers7b078e82014-09-10 14:44:24 -0700774 ClassNameType type = kType;
775 if (type != kDescriptor && arrayCount != 0) {
Elliott Hughes64bf5a32011-09-20 14:43:12 -0700776 /*
777 * If we're looking at an array of some sort, then it doesn't
778 * matter if what is being asked for is a class name; the
779 * format looks the same as a type descriptor in that case, so
780 * treat it as such.
781 */
Elliott Hughes906e6852011-10-28 14:52:10 -0700782 type = kDescriptor;
Elliott Hughes64bf5a32011-09-20 14:43:12 -0700783 }
784
Elliott Hughes906e6852011-10-28 14:52:10 -0700785 if (type == kDescriptor) {
Elliott Hughes64bf5a32011-09-20 14:43:12 -0700786 /*
787 * We are looking for a descriptor. Either validate it as a
788 * single-character primitive type, or continue on to check the
789 * embedded class name (bracketed by "L" and ";").
790 */
791 switch (*(s++)) {
792 case 'B':
793 case 'C':
794 case 'D':
795 case 'F':
796 case 'I':
797 case 'J':
798 case 'S':
799 case 'Z':
800 // These are all single-character descriptors for primitive types.
801 return (*s == '\0');
802 case 'V':
803 // Non-array void is valid, but you can't have an array of void.
804 return (arrayCount == 0) && (*s == '\0');
805 case 'L':
806 // Class name: Break out and continue below.
807 break;
808 default:
809 // Oddball descriptor character.
810 return false;
811 }
812 }
813
814 /*
815 * We just consumed the 'L' that introduces a class name as part
816 * of a type descriptor, or we are looking for an unadorned class
817 * name.
818 */
819
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700820 bool sepOrFirst = true; // first character or just encountered a separator.
Elliott Hughes64bf5a32011-09-20 14:43:12 -0700821 for (;;) {
822 uint8_t c = (uint8_t) *s;
823 switch (c) {
824 case '\0':
825 /*
826 * Premature end for a type descriptor, but valid for
827 * a class name as long as we haven't encountered an
828 * empty component (including the degenerate case of
829 * the empty string "").
830 */
Elliott Hughes906e6852011-10-28 14:52:10 -0700831 return (type == kName) && !sepOrFirst;
Elliott Hughes64bf5a32011-09-20 14:43:12 -0700832 case ';':
833 /*
834 * Invalid character for a class name, but the
835 * legitimate end of a type descriptor. In the latter
836 * case, make sure that this is the end of the string
837 * and that it doesn't end with an empty component
838 * (including the degenerate case of "L;").
839 */
Elliott Hughes906e6852011-10-28 14:52:10 -0700840 return (type == kDescriptor) && !sepOrFirst && (s[1] == '\0');
Elliott Hughes64bf5a32011-09-20 14:43:12 -0700841 case '/':
842 case '.':
Ian Rogers7b078e82014-09-10 14:44:24 -0700843 if (c != kSeparator) {
Elliott Hughes64bf5a32011-09-20 14:43:12 -0700844 // The wrong separator character.
845 return false;
846 }
847 if (sepOrFirst) {
848 // Separator at start or two separators in a row.
849 return false;
850 }
851 sepOrFirst = true;
852 s++;
853 break;
854 default:
jeffhao10037c82012-01-23 15:06:23 -0800855 if (!IsValidPartOfMemberNameUtf8(&s)) {
Elliott Hughes64bf5a32011-09-20 14:43:12 -0700856 return false;
857 }
858 sepOrFirst = false;
859 break;
860 }
861 }
862}
863
Elliott Hughes906e6852011-10-28 14:52:10 -0700864bool IsValidBinaryClassName(const char* s) {
Ian Rogers7b078e82014-09-10 14:44:24 -0700865 return IsValidClassName<kName, '.'>(s);
Elliott Hughes906e6852011-10-28 14:52:10 -0700866}
867
868bool IsValidJniClassName(const char* s) {
Ian Rogers7b078e82014-09-10 14:44:24 -0700869 return IsValidClassName<kName, '/'>(s);
Elliott Hughes906e6852011-10-28 14:52:10 -0700870}
871
872bool IsValidDescriptor(const char* s) {
Ian Rogers7b078e82014-09-10 14:44:24 -0700873 return IsValidClassName<kDescriptor, '/'>(s);
Elliott Hughes906e6852011-10-28 14:52:10 -0700874}
875
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700876void Split(const std::string& s, char separator, std::vector<std::string>* result) {
Elliott Hughes34023802011-08-30 12:06:17 -0700877 const char* p = s.data();
878 const char* end = p + s.size();
879 while (p != end) {
Elliott Hughes48436bb2012-02-07 15:23:28 -0800880 if (*p == separator) {
Elliott Hughes34023802011-08-30 12:06:17 -0700881 ++p;
882 } else {
883 const char* start = p;
Elliott Hughes48436bb2012-02-07 15:23:28 -0800884 while (++p != end && *p != separator) {
885 // Skip to the next occurrence of the separator.
Elliott Hughes34023802011-08-30 12:06:17 -0700886 }
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700887 result->push_back(std::string(start, p - start));
Elliott Hughes34023802011-08-30 12:06:17 -0700888 }
889 }
890}
891
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700892std::string Trim(const std::string& s) {
Dave Allison70202782013-10-22 17:52:19 -0700893 std::string result;
894 unsigned int start_index = 0;
895 unsigned int end_index = s.size() - 1;
896
897 // Skip initial whitespace.
898 while (start_index < s.size()) {
899 if (!isspace(s[start_index])) {
900 break;
901 }
902 start_index++;
903 }
904
905 // Skip terminating whitespace.
906 while (end_index >= start_index) {
907 if (!isspace(s[end_index])) {
908 break;
909 }
910 end_index--;
911 }
912
913 // All spaces, no beef.
914 if (end_index < start_index) {
915 return "";
916 }
917 // Start_index is the first non-space, end_index is the last one.
918 return s.substr(start_index, end_index - start_index + 1);
919}
920
Elliott Hughes48436bb2012-02-07 15:23:28 -0800921template <typename StringT>
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700922std::string Join(const std::vector<StringT>& strings, char separator) {
Elliott Hughes48436bb2012-02-07 15:23:28 -0800923 if (strings.empty()) {
924 return "";
925 }
926
927 std::string result(strings[0]);
928 for (size_t i = 1; i < strings.size(); ++i) {
929 result += separator;
930 result += strings[i];
931 }
932 return result;
933}
934
935// Explicit instantiations.
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700936template std::string Join<std::string>(const std::vector<std::string>& strings, char separator);
937template std::string Join<const char*>(const std::vector<const char*>& strings, char separator);
Elliott Hughes48436bb2012-02-07 15:23:28 -0800938
Elliott Hughesf1a5adc2012-02-10 18:09:35 -0800939bool StartsWith(const std::string& s, const char* prefix) {
940 return s.compare(0, strlen(prefix), prefix) == 0;
941}
942
Brian Carlstrom7a967b32012-03-28 15:23:10 -0700943bool EndsWith(const std::string& s, const char* suffix) {
944 size_t suffix_length = strlen(suffix);
945 size_t string_length = s.size();
946 if (suffix_length > string_length) {
947 return false;
948 }
949 size_t offset = string_length - suffix_length;
950 return s.compare(offset, suffix_length, suffix) == 0;
951}
952
Elliott Hughes22869a92012-03-27 14:08:24 -0700953void SetThreadName(const char* thread_name) {
Elliott Hughesdcc24742011-09-07 14:02:44 -0700954 int hasAt = 0;
955 int hasDot = 0;
Elliott Hughes22869a92012-03-27 14:08:24 -0700956 const char* s = thread_name;
Elliott Hughesdcc24742011-09-07 14:02:44 -0700957 while (*s) {
958 if (*s == '.') {
959 hasDot = 1;
960 } else if (*s == '@') {
961 hasAt = 1;
962 }
963 s++;
964 }
Elliott Hughes22869a92012-03-27 14:08:24 -0700965 int len = s - thread_name;
Elliott Hughesdcc24742011-09-07 14:02:44 -0700966 if (len < 15 || hasAt || !hasDot) {
Elliott Hughes22869a92012-03-27 14:08:24 -0700967 s = thread_name;
Elliott Hughesdcc24742011-09-07 14:02:44 -0700968 } else {
Elliott Hughes22869a92012-03-27 14:08:24 -0700969 s = thread_name + len - 15;
Elliott Hughesdcc24742011-09-07 14:02:44 -0700970 }
Elliott Hughes0a18df82015-01-09 15:16:16 -0800971#if defined(__linux__)
Elliott Hughes7c6a61e2012-03-12 18:01:41 -0700972 // pthread_setname_np fails rather than truncating long strings.
Elliott Hughes0a18df82015-01-09 15:16:16 -0800973 char buf[16]; // MAX_TASK_COMM_LEN=16 is hard-coded in the kernel.
Elliott Hughesdcc24742011-09-07 14:02:44 -0700974 strncpy(buf, s, sizeof(buf)-1);
975 buf[sizeof(buf)-1] = '\0';
976 errno = pthread_setname_np(pthread_self(), buf);
977 if (errno != 0) {
978 PLOG(WARNING) << "Unable to set the name of current thread to '" << buf << "'";
979 }
Elliott Hughes0a18df82015-01-09 15:16:16 -0800980#else // __APPLE__
Elliott Hughes22869a92012-03-27 14:08:24 -0700981 pthread_setname_np(thread_name);
Elliott Hughesdcc24742011-09-07 14:02:44 -0700982#endif
983}
984
Brian Carlstrom29212012013-09-12 22:18:30 -0700985void GetTaskStats(pid_t tid, char* state, int* utime, int* stime, int* task_cpu) {
986 *utime = *stime = *task_cpu = 0;
Elliott Hughesbfe487b2011-10-26 15:48:55 -0700987 std::string stats;
Elliott Hughes8a31b502012-04-30 19:36:11 -0700988 if (!ReadFileToString(StringPrintf("/proc/self/task/%d/stat", tid), &stats)) {
Elliott Hughesbfe487b2011-10-26 15:48:55 -0700989 return;
990 }
991 // Skip the command, which may contain spaces.
992 stats = stats.substr(stats.find(')') + 2);
993 // Extract the three fields we care about.
994 std::vector<std::string> fields;
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700995 Split(stats, ' ', &fields);
Brian Carlstrom29212012013-09-12 22:18:30 -0700996 *state = fields[0][0];
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700997 *utime = strtoull(fields[11].c_str(), nullptr, 10);
998 *stime = strtoull(fields[12].c_str(), nullptr, 10);
999 *task_cpu = strtoull(fields[36].c_str(), nullptr, 10);
Elliott Hughesbfe487b2011-10-26 15:48:55 -07001000}
1001
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001002std::string GetSchedulerGroupName(pid_t tid) {
1003 // /proc/<pid>/cgroup looks like this:
1004 // 2:devices:/
1005 // 1:cpuacct,cpu:/
1006 // We want the third field from the line whose second field contains the "cpu" token.
1007 std::string cgroup_file;
1008 if (!ReadFileToString(StringPrintf("/proc/self/task/%d/cgroup", tid), &cgroup_file)) {
1009 return "";
1010 }
1011 std::vector<std::string> cgroup_lines;
Ian Rogers6f3dbba2014-10-14 17:41:57 -07001012 Split(cgroup_file, '\n', &cgroup_lines);
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001013 for (size_t i = 0; i < cgroup_lines.size(); ++i) {
1014 std::vector<std::string> cgroup_fields;
Ian Rogers6f3dbba2014-10-14 17:41:57 -07001015 Split(cgroup_lines[i], ':', &cgroup_fields);
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001016 std::vector<std::string> cgroups;
Ian Rogers6f3dbba2014-10-14 17:41:57 -07001017 Split(cgroup_fields[1], ',', &cgroups);
Andreas Gampe277ccbd2014-11-03 21:36:10 -08001018 for (size_t j = 0; j < cgroups.size(); ++j) {
1019 if (cgroups[j] == "cpu") {
Brian Carlstrom7934ac22013-07-26 10:54:15 -07001020 return cgroup_fields[2].substr(1); // Skip the leading slash.
Elliott Hughes1bac54f2012-03-16 12:48:31 -07001021 }
1022 }
1023 }
1024 return "";
1025}
1026
Brian Carlstroma56fcd62012-02-04 21:23:01 -08001027const char* GetAndroidRoot() {
1028 const char* android_root = getenv("ANDROID_ROOT");
Mathieu Chartier2cebb242015-04-21 16:50:40 -07001029 if (android_root == nullptr) {
Brian Carlstroma56fcd62012-02-04 21:23:01 -08001030 if (OS::DirectoryExists("/system")) {
1031 android_root = "/system";
Brian Carlstroma9f19782011-10-13 00:14:47 -07001032 } else {
Brian Carlstroma56fcd62012-02-04 21:23:01 -08001033 LOG(FATAL) << "ANDROID_ROOT not set and /system does not exist";
1034 return "";
Brian Carlstroma9f19782011-10-13 00:14:47 -07001035 }
1036 }
Brian Carlstroma56fcd62012-02-04 21:23:01 -08001037 if (!OS::DirectoryExists(android_root)) {
1038 LOG(FATAL) << "Failed to find ANDROID_ROOT directory " << android_root;
Brian Carlstroma9f19782011-10-13 00:14:47 -07001039 return "";
1040 }
Brian Carlstroma56fcd62012-02-04 21:23:01 -08001041 return android_root;
1042}
Brian Carlstroma9f19782011-10-13 00:14:47 -07001043
Brian Carlstroma56fcd62012-02-04 21:23:01 -08001044const char* GetAndroidData() {
Alex Lighta59dd802014-07-02 16:28:08 -07001045 std::string error_msg;
1046 const char* dir = GetAndroidDataSafe(&error_msg);
1047 if (dir != nullptr) {
1048 return dir;
1049 } else {
1050 LOG(FATAL) << error_msg;
1051 return "";
1052 }
1053}
1054
1055const char* GetAndroidDataSafe(std::string* error_msg) {
Brian Carlstroma56fcd62012-02-04 21:23:01 -08001056 const char* android_data = getenv("ANDROID_DATA");
Mathieu Chartier2cebb242015-04-21 16:50:40 -07001057 if (android_data == nullptr) {
Brian Carlstroma56fcd62012-02-04 21:23:01 -08001058 if (OS::DirectoryExists("/data")) {
1059 android_data = "/data";
1060 } else {
Alex Lighta59dd802014-07-02 16:28:08 -07001061 *error_msg = "ANDROID_DATA not set and /data does not exist";
1062 return nullptr;
Brian Carlstroma56fcd62012-02-04 21:23:01 -08001063 }
1064 }
1065 if (!OS::DirectoryExists(android_data)) {
Alex Lighta59dd802014-07-02 16:28:08 -07001066 *error_msg = StringPrintf("Failed to find ANDROID_DATA directory %s", android_data);
1067 return nullptr;
Brian Carlstroma56fcd62012-02-04 21:23:01 -08001068 }
1069 return android_data;
1070}
1071
Alex Lighta59dd802014-07-02 16:28:08 -07001072void GetDalvikCache(const char* subdir, const bool create_if_absent, std::string* dalvik_cache,
Andreas Gampe3c13a792014-09-18 20:56:04 -07001073 bool* have_android_data, bool* dalvik_cache_exists, bool* is_global_cache) {
Alex Lighta59dd802014-07-02 16:28:08 -07001074 CHECK(subdir != nullptr);
1075 std::string error_msg;
1076 const char* android_data = GetAndroidDataSafe(&error_msg);
1077 if (android_data == nullptr) {
1078 *have_android_data = false;
1079 *dalvik_cache_exists = false;
Andreas Gampe3c13a792014-09-18 20:56:04 -07001080 *is_global_cache = false;
Alex Lighta59dd802014-07-02 16:28:08 -07001081 return;
1082 } else {
1083 *have_android_data = true;
1084 }
1085 const std::string dalvik_cache_root(StringPrintf("%s/dalvik-cache/", android_data));
1086 *dalvik_cache = dalvik_cache_root + subdir;
1087 *dalvik_cache_exists = OS::DirectoryExists(dalvik_cache->c_str());
Andreas Gampe3c13a792014-09-18 20:56:04 -07001088 *is_global_cache = strcmp(android_data, "/data") == 0;
1089 if (create_if_absent && !*dalvik_cache_exists && !*is_global_cache) {
Alex Lighta59dd802014-07-02 16:28:08 -07001090 // Don't create the system's /data/dalvik-cache/... because it needs special permissions.
1091 *dalvik_cache_exists = ((mkdir(dalvik_cache_root.c_str(), 0700) == 0 || errno == EEXIST) &&
1092 (mkdir(dalvik_cache->c_str(), 0700) == 0 || errno == EEXIST));
1093 }
1094}
1095
Richard Uhler55b58b62016-08-12 09:05:13 -07001096std::string GetDalvikCache(const char* subdir) {
Narayan Kamath11d9f062014-04-23 20:24:57 +01001097 CHECK(subdir != nullptr);
Brian Carlstrom41ccffd2014-05-06 10:37:30 -07001098 const char* android_data = GetAndroidData();
1099 const std::string dalvik_cache_root(StringPrintf("%s/dalvik-cache/", android_data));
Narayan Kamath11d9f062014-04-23 20:24:57 +01001100 const std::string dalvik_cache = dalvik_cache_root + subdir;
Andreas Gampe40da2862015-02-27 12:49:04 -08001101 if (!OS::DirectoryExists(dalvik_cache.c_str())) {
Richard Uhler55b58b62016-08-12 09:05:13 -07001102 // TODO: Check callers. Traditional behavior is to not abort.
1103 return "";
Brian Carlstroma9f19782011-10-13 00:14:47 -07001104 }
Brian Carlstrom7675e162013-06-10 16:18:04 -07001105 return dalvik_cache;
Brian Carlstroma9f19782011-10-13 00:14:47 -07001106}
1107
Alex Lighta59dd802014-07-02 16:28:08 -07001108bool GetDalvikCacheFilename(const char* location, const char* cache_location,
1109 std::string* filename, std::string* error_msg) {
Ian Rogerse6060102013-05-16 12:01:04 -07001110 if (location[0] != '/') {
Alex Lighta59dd802014-07-02 16:28:08 -07001111 *error_msg = StringPrintf("Expected path in location to be absolute: %s", location);
1112 return false;
Ian Rogerse6060102013-05-16 12:01:04 -07001113 }
Ian Rogers8d31bbd2013-10-13 10:44:14 -07001114 std::string cache_file(&location[1]); // skip leading slash
Alex Light6e183f22014-07-18 14:57:04 -07001115 if (!EndsWith(location, ".dex") && !EndsWith(location, ".art") && !EndsWith(location, ".oat")) {
Brian Carlstrom30e2ea42013-06-19 23:25:37 -07001116 cache_file += "/";
1117 cache_file += DexFile::kClassesDex;
1118 }
Brian Carlstromb7bbba42011-10-13 14:58:47 -07001119 std::replace(cache_file.begin(), cache_file.end(), '/', '@');
Alex Lighta59dd802014-07-02 16:28:08 -07001120 *filename = StringPrintf("%s/%s", cache_location, cache_file.c_str());
1121 return true;
1122}
1123
Brian Carlstrom2afe4942014-05-19 10:25:33 -07001124static void InsertIsaDirectory(const InstructionSet isa, std::string* filename) {
Brian Carlstrom0e12bdc2014-05-14 17:44:28 -07001125 // in = /foo/bar/baz
1126 // out = /foo/bar/<isa>/baz
1127 size_t pos = filename->rfind('/');
1128 CHECK_NE(pos, std::string::npos) << *filename << " " << isa;
1129 filename->insert(pos, "/", 1);
1130 filename->insert(pos + 1, GetInstructionSetString(isa));
1131}
1132
1133std::string GetSystemImageFilename(const char* location, const InstructionSet isa) {
1134 // location = /system/framework/boot.art
1135 // filename = /system/framework/<isa>/boot.art
1136 std::string filename(location);
Brian Carlstrom2afe4942014-05-19 10:25:33 -07001137 InsertIsaDirectory(isa, &filename);
Brian Carlstrom0e12bdc2014-05-14 17:44:28 -07001138 return filename;
1139}
1140
Calin Juravle2e2db782016-02-23 12:00:03 +00001141int ExecAndReturnCode(std::vector<std::string>& arg_vector, std::string* error_msg) {
Brian Carlstrom6449c622014-02-10 23:48:36 -08001142 const std::string command_line(Join(arg_vector, ' '));
Brian Carlstrom6449c622014-02-10 23:48:36 -08001143 CHECK_GE(arg_vector.size(), 1U) << command_line;
1144
1145 // Convert the args to char pointers.
1146 const char* program = arg_vector[0].c_str();
1147 std::vector<char*> args;
Brian Carlstrom35d8b8e2014-02-25 10:51:11 -08001148 for (size_t i = 0; i < arg_vector.size(); ++i) {
1149 const std::string& arg = arg_vector[i];
1150 char* arg_str = const_cast<char*>(arg.c_str());
1151 CHECK(arg_str != nullptr) << i;
1152 args.push_back(arg_str);
Brian Carlstrom6449c622014-02-10 23:48:36 -08001153 }
Mathieu Chartier2cebb242015-04-21 16:50:40 -07001154 args.push_back(nullptr);
Brian Carlstrom6449c622014-02-10 23:48:36 -08001155
1156 // fork and exec
1157 pid_t pid = fork();
1158 if (pid == 0) {
1159 // no allocation allowed between fork and exec
1160
1161 // change process groups, so we don't get reaped by ProcessManager
1162 setpgid(0, 0);
1163
David Sehrd106d9f2016-08-16 19:22:57 -07001164 // (b/30160149): protect subprocesses from modifications to LD_LIBRARY_PATH, etc.
1165 // Use the snapshot of the environment from the time the runtime was created.
1166 char** envp = (Runtime::Current() == nullptr) ? nullptr : Runtime::Current()->GetEnvSnapshot();
1167 if (envp == nullptr) {
1168 execv(program, &args[0]);
1169 } else {
1170 execve(program, &args[0], envp);
1171 }
1172 PLOG(ERROR) << "Failed to execve(" << command_line << ")";
Tobias Lindskogae35c372015-11-04 19:41:21 +01001173 // _exit to avoid atexit handlers in child.
1174 _exit(1);
Brian Carlstrom6449c622014-02-10 23:48:36 -08001175 } else {
1176 if (pid == -1) {
1177 *error_msg = StringPrintf("Failed to execv(%s) because fork failed: %s",
1178 command_line.c_str(), strerror(errno));
Calin Juravle2e2db782016-02-23 12:00:03 +00001179 return -1;
Brian Carlstrom6449c622014-02-10 23:48:36 -08001180 }
1181
1182 // wait for subprocess to finish
Calin Juravle2e2db782016-02-23 12:00:03 +00001183 int status = -1;
Brian Carlstrom6449c622014-02-10 23:48:36 -08001184 pid_t got_pid = TEMP_FAILURE_RETRY(waitpid(pid, &status, 0));
1185 if (got_pid != pid) {
1186 *error_msg = StringPrintf("Failed after fork for execv(%s) because waitpid failed: "
1187 "wanted %d, got %d: %s",
1188 command_line.c_str(), pid, got_pid, strerror(errno));
Calin Juravle2e2db782016-02-23 12:00:03 +00001189 return -1;
Brian Carlstrom6449c622014-02-10 23:48:36 -08001190 }
Calin Juravle2e2db782016-02-23 12:00:03 +00001191 if (WIFEXITED(status)) {
1192 return WEXITSTATUS(status);
Brian Carlstrom6449c622014-02-10 23:48:36 -08001193 }
Calin Juravle2e2db782016-02-23 12:00:03 +00001194 return -1;
1195 }
1196}
1197
1198bool Exec(std::vector<std::string>& arg_vector, std::string* error_msg) {
1199 int status = ExecAndReturnCode(arg_vector, error_msg);
1200 if (status != 0) {
1201 const std::string command_line(Join(arg_vector, ' '));
1202 *error_msg = StringPrintf("Failed execv(%s) because non-0 exit status",
1203 command_line.c_str());
1204 return false;
Brian Carlstrom6449c622014-02-10 23:48:36 -08001205 }
1206 return true;
1207}
1208
Calin Juravle5e2b9712015-12-18 14:10:00 +02001209bool FileExists(const std::string& filename) {
1210 struct stat buffer;
1211 return stat(filename.c_str(), &buffer) == 0;
1212}
1213
Calin Juravleb9c1b9b2016-03-17 17:07:52 +00001214bool FileExistsAndNotEmpty(const std::string& filename) {
1215 struct stat buffer;
1216 if (stat(filename.c_str(), &buffer) != 0) {
1217 return false;
1218 }
1219 return buffer.st_size > 0;
1220}
1221
David Brazdil7b49e6c2016-09-01 11:06:18 +01001222std::string ReplaceFileExtension(const std::string& filename, const std::string& new_extension) {
1223 const size_t last_ext = filename.find_last_of('.');
1224 if (last_ext == std::string::npos) {
1225 return filename + "." + new_extension;
1226 } else {
1227 return filename.substr(0, last_ext + 1) + new_extension;
1228 }
1229}
1230
Mathieu Chartier76433272014-09-26 14:32:37 -07001231std::string PrettyDescriptor(Primitive::Type type) {
1232 return PrettyDescriptor(Primitive::Descriptor(type));
1233}
1234
Andreas Gampe5073fed2015-08-10 11:40:25 -07001235static void DumpMethodCFGImpl(const DexFile* dex_file,
1236 uint32_t dex_method_idx,
1237 const DexFile::CodeItem* code_item,
1238 std::ostream& os) {
1239 os << "digraph {\n";
1240 os << " # /* " << PrettyMethod(dex_method_idx, *dex_file, true) << " */\n";
1241
1242 std::set<uint32_t> dex_pc_is_branch_target;
1243 {
1244 // Go and populate.
1245 const Instruction* inst = Instruction::At(code_item->insns_);
1246 for (uint32_t dex_pc = 0;
1247 dex_pc < code_item->insns_size_in_code_units_;
1248 dex_pc += inst->SizeInCodeUnits(), inst = inst->Next()) {
1249 if (inst->IsBranch()) {
1250 dex_pc_is_branch_target.insert(dex_pc + inst->GetTargetOffset());
1251 } else if (inst->IsSwitch()) {
1252 const uint16_t* insns = code_item->insns_ + dex_pc;
Andreas Gampe53de99c2015-08-17 13:43:55 -07001253 int32_t switch_offset = insns[1] | (static_cast<int32_t>(insns[2]) << 16);
Andreas Gampe5073fed2015-08-10 11:40:25 -07001254 const uint16_t* switch_insns = insns + switch_offset;
1255 uint32_t switch_count = switch_insns[1];
1256 int32_t targets_offset;
1257 if ((*insns & 0xff) == Instruction::PACKED_SWITCH) {
1258 /* 0=sig, 1=count, 2/3=firstKey */
1259 targets_offset = 4;
1260 } else {
1261 /* 0=sig, 1=count, 2..count*2 = keys */
1262 targets_offset = 2 + 2 * switch_count;
1263 }
1264 for (uint32_t targ = 0; targ < switch_count; targ++) {
Andreas Gampe53de99c2015-08-17 13:43:55 -07001265 int32_t offset =
1266 static_cast<int32_t>(switch_insns[targets_offset + targ * 2]) |
1267 static_cast<int32_t>(switch_insns[targets_offset + targ * 2 + 1] << 16);
Andreas Gampe5073fed2015-08-10 11:40:25 -07001268 dex_pc_is_branch_target.insert(dex_pc + offset);
1269 }
1270 }
1271 }
1272 }
1273
1274 // Create nodes for "basic blocks."
1275 std::map<uint32_t, uint32_t> dex_pc_to_node_id; // This only has entries for block starts.
1276 std::map<uint32_t, uint32_t> dex_pc_to_incl_id; // This has entries for all dex pcs.
1277
1278 {
1279 const Instruction* inst = Instruction::At(code_item->insns_);
1280 bool first_in_block = true;
1281 bool force_new_block = false;
Andreas Gampe53de99c2015-08-17 13:43:55 -07001282 for (uint32_t dex_pc = 0;
1283 dex_pc < code_item->insns_size_in_code_units_;
1284 dex_pc += inst->SizeInCodeUnits(), inst = inst->Next()) {
Andreas Gampe5073fed2015-08-10 11:40:25 -07001285 if (dex_pc == 0 ||
1286 (dex_pc_is_branch_target.find(dex_pc) != dex_pc_is_branch_target.end()) ||
1287 force_new_block) {
1288 uint32_t id = dex_pc_to_node_id.size();
1289 if (id > 0) {
1290 // End last node.
1291 os << "}\"];\n";
1292 }
1293 // Start next node.
1294 os << " node" << id << " [shape=record,label=\"{";
1295 dex_pc_to_node_id.insert(std::make_pair(dex_pc, id));
1296 first_in_block = true;
1297 force_new_block = false;
1298 }
1299
1300 // Register instruction.
1301 dex_pc_to_incl_id.insert(std::make_pair(dex_pc, dex_pc_to_node_id.size() - 1));
1302
1303 // Print instruction.
1304 if (!first_in_block) {
1305 os << " | ";
1306 } else {
1307 first_in_block = false;
1308 }
1309
1310 // Dump the instruction. Need to escape '"', '<', '>', '{' and '}'.
1311 os << "<" << "p" << dex_pc << ">";
1312 os << " 0x" << std::hex << dex_pc << std::dec << ": ";
1313 std::string inst_str = inst->DumpString(dex_file);
1314 size_t cur_start = 0; // It's OK to start at zero, instruction dumps don't start with chars
Andreas Gampe53de99c2015-08-17 13:43:55 -07001315 // we need to escape.
Andreas Gampe5073fed2015-08-10 11:40:25 -07001316 while (cur_start != std::string::npos) {
1317 size_t next_escape = inst_str.find_first_of("\"{}<>", cur_start + 1);
1318 if (next_escape == std::string::npos) {
1319 os << inst_str.substr(cur_start, inst_str.size() - cur_start);
1320 break;
1321 } else {
1322 os << inst_str.substr(cur_start, next_escape - cur_start);
1323 // Escape all necessary characters.
1324 while (next_escape < inst_str.size()) {
1325 char c = inst_str.at(next_escape);
1326 if (c == '"' || c == '{' || c == '}' || c == '<' || c == '>') {
1327 os << '\\' << c;
1328 } else {
1329 break;
1330 }
1331 next_escape++;
1332 }
1333 if (next_escape >= inst_str.size()) {
1334 next_escape = std::string::npos;
1335 }
1336 cur_start = next_escape;
1337 }
1338 }
1339
1340 // Force a new block for some fall-throughs and some instructions that terminate the "local"
1341 // control flow.
1342 force_new_block = inst->IsSwitch() || inst->IsBasicBlockEnd();
1343 }
1344 // Close last node.
1345 if (dex_pc_to_node_id.size() > 0) {
1346 os << "}\"];\n";
1347 }
1348 }
1349
1350 // Create edges between them.
1351 {
1352 std::ostringstream regular_edges;
1353 std::ostringstream taken_edges;
1354 std::ostringstream exception_edges;
1355
1356 // Common set of exception edges.
1357 std::set<uint32_t> exception_targets;
1358
1359 // These blocks (given by the first dex pc) need exception per dex-pc handling in a second
1360 // pass. In the first pass we try and see whether we can use a common set of edges.
1361 std::set<uint32_t> blocks_with_detailed_exceptions;
1362
1363 {
1364 uint32_t last_node_id = std::numeric_limits<uint32_t>::max();
1365 uint32_t old_dex_pc = 0;
1366 uint32_t block_start_dex_pc = std::numeric_limits<uint32_t>::max();
1367 const Instruction* inst = Instruction::At(code_item->insns_);
1368 for (uint32_t dex_pc = 0;
1369 dex_pc < code_item->insns_size_in_code_units_;
1370 old_dex_pc = dex_pc, dex_pc += inst->SizeInCodeUnits(), inst = inst->Next()) {
1371 {
1372 auto it = dex_pc_to_node_id.find(dex_pc);
1373 if (it != dex_pc_to_node_id.end()) {
1374 if (!exception_targets.empty()) {
1375 // It seems the last block had common exception handlers. Add the exception edges now.
1376 uint32_t node_id = dex_pc_to_node_id.find(block_start_dex_pc)->second;
1377 for (uint32_t handler_pc : exception_targets) {
1378 auto node_id_it = dex_pc_to_incl_id.find(handler_pc);
1379 if (node_id_it != dex_pc_to_incl_id.end()) {
1380 exception_edges << " node" << node_id
1381 << " -> node" << node_id_it->second << ":p" << handler_pc
1382 << ";\n";
1383 }
1384 }
1385 exception_targets.clear();
1386 }
1387
1388 block_start_dex_pc = dex_pc;
1389
1390 // Seems to be a fall-through, connect to last_node_id. May be spurious edges for things
1391 // like switch data.
1392 uint32_t old_last = last_node_id;
1393 last_node_id = it->second;
1394 if (old_last != std::numeric_limits<uint32_t>::max()) {
1395 regular_edges << " node" << old_last << ":p" << old_dex_pc
1396 << " -> node" << last_node_id << ":p" << dex_pc
1397 << ";\n";
1398 }
1399 }
1400
1401 // Look at the exceptions of the first entry.
1402 CatchHandlerIterator catch_it(*code_item, dex_pc);
1403 for (; catch_it.HasNext(); catch_it.Next()) {
1404 exception_targets.insert(catch_it.GetHandlerAddress());
1405 }
1406 }
1407
1408 // Handle instruction.
1409
1410 // Branch: something with at most two targets.
1411 if (inst->IsBranch()) {
1412 const int32_t offset = inst->GetTargetOffset();
1413 const bool conditional = !inst->IsUnconditional();
1414
1415 auto target_it = dex_pc_to_node_id.find(dex_pc + offset);
1416 if (target_it != dex_pc_to_node_id.end()) {
1417 taken_edges << " node" << last_node_id << ":p" << dex_pc
1418 << " -> node" << target_it->second << ":p" << (dex_pc + offset)
1419 << ";\n";
1420 }
1421 if (!conditional) {
1422 // No fall-through.
1423 last_node_id = std::numeric_limits<uint32_t>::max();
1424 }
1425 } else if (inst->IsSwitch()) {
1426 // TODO: Iterate through all switch targets.
1427 const uint16_t* insns = code_item->insns_ + dex_pc;
1428 /* make sure the start of the switch is in range */
Andreas Gampe53de99c2015-08-17 13:43:55 -07001429 int32_t switch_offset = insns[1] | (static_cast<int32_t>(insns[2]) << 16);
Andreas Gampe5073fed2015-08-10 11:40:25 -07001430 /* offset to switch table is a relative branch-style offset */
1431 const uint16_t* switch_insns = insns + switch_offset;
1432 uint32_t switch_count = switch_insns[1];
1433 int32_t targets_offset;
1434 if ((*insns & 0xff) == Instruction::PACKED_SWITCH) {
1435 /* 0=sig, 1=count, 2/3=firstKey */
1436 targets_offset = 4;
1437 } else {
1438 /* 0=sig, 1=count, 2..count*2 = keys */
1439 targets_offset = 2 + 2 * switch_count;
1440 }
1441 /* make sure the end of the switch is in range */
1442 /* verify each switch target */
1443 for (uint32_t targ = 0; targ < switch_count; targ++) {
Andreas Gampe53de99c2015-08-17 13:43:55 -07001444 int32_t offset =
1445 static_cast<int32_t>(switch_insns[targets_offset + targ * 2]) |
1446 static_cast<int32_t>(switch_insns[targets_offset + targ * 2 + 1] << 16);
Andreas Gampe5073fed2015-08-10 11:40:25 -07001447 int32_t abs_offset = dex_pc + offset;
1448 auto target_it = dex_pc_to_node_id.find(abs_offset);
1449 if (target_it != dex_pc_to_node_id.end()) {
1450 // TODO: value label.
1451 taken_edges << " node" << last_node_id << ":p" << dex_pc
1452 << " -> node" << target_it->second << ":p" << (abs_offset)
1453 << ";\n";
1454 }
1455 }
1456 }
1457
1458 // Exception edges. If this is not the first instruction in the block
1459 if (block_start_dex_pc != dex_pc) {
1460 std::set<uint32_t> current_handler_pcs;
1461 CatchHandlerIterator catch_it(*code_item, dex_pc);
1462 for (; catch_it.HasNext(); catch_it.Next()) {
1463 current_handler_pcs.insert(catch_it.GetHandlerAddress());
1464 }
1465 if (current_handler_pcs != exception_targets) {
1466 exception_targets.clear(); // Clear so we don't do something at the end.
1467 blocks_with_detailed_exceptions.insert(block_start_dex_pc);
1468 }
1469 }
1470
1471 if (inst->IsReturn() ||
1472 (inst->Opcode() == Instruction::THROW) ||
1473 (inst->IsBranch() && inst->IsUnconditional())) {
1474 // No fall-through.
1475 last_node_id = std::numeric_limits<uint32_t>::max();
1476 }
1477 }
1478 // Finish up the last block, if it had common exceptions.
1479 if (!exception_targets.empty()) {
1480 // It seems the last block had common exception handlers. Add the exception edges now.
1481 uint32_t node_id = dex_pc_to_node_id.find(block_start_dex_pc)->second;
1482 for (uint32_t handler_pc : exception_targets) {
1483 auto node_id_it = dex_pc_to_incl_id.find(handler_pc);
1484 if (node_id_it != dex_pc_to_incl_id.end()) {
1485 exception_edges << " node" << node_id
1486 << " -> node" << node_id_it->second << ":p" << handler_pc
1487 << ";\n";
1488 }
1489 }
1490 exception_targets.clear();
1491 }
1492 }
1493
1494 // Second pass for detailed exception blocks.
1495 // TODO
1496 // Exception edges. If this is not the first instruction in the block
1497 for (uint32_t dex_pc : blocks_with_detailed_exceptions) {
1498 const Instruction* inst = Instruction::At(&code_item->insns_[dex_pc]);
1499 uint32_t this_node_id = dex_pc_to_incl_id.find(dex_pc)->second;
Andreas Gampe53de99c2015-08-17 13:43:55 -07001500 while (true) {
Andreas Gampe5073fed2015-08-10 11:40:25 -07001501 CatchHandlerIterator catch_it(*code_item, dex_pc);
1502 if (catch_it.HasNext()) {
1503 std::set<uint32_t> handled_targets;
1504 for (; catch_it.HasNext(); catch_it.Next()) {
1505 uint32_t handler_pc = catch_it.GetHandlerAddress();
1506 auto it = handled_targets.find(handler_pc);
1507 if (it == handled_targets.end()) {
1508 auto node_id_it = dex_pc_to_incl_id.find(handler_pc);
1509 if (node_id_it != dex_pc_to_incl_id.end()) {
1510 exception_edges << " node" << this_node_id << ":p" << dex_pc
1511 << " -> node" << node_id_it->second << ":p" << handler_pc
1512 << ";\n";
1513 }
1514
1515 // Mark as done.
1516 handled_targets.insert(handler_pc);
1517 }
1518 }
1519 }
1520 if (inst->IsBasicBlockEnd()) {
1521 break;
1522 }
1523
Andreas Gampe53de99c2015-08-17 13:43:55 -07001524 // Loop update. Have a break-out if the next instruction is a branch target and thus in
1525 // another block.
Andreas Gampe5073fed2015-08-10 11:40:25 -07001526 dex_pc += inst->SizeInCodeUnits();
1527 if (dex_pc >= code_item->insns_size_in_code_units_) {
1528 break;
1529 }
1530 if (dex_pc_to_node_id.find(dex_pc) != dex_pc_to_node_id.end()) {
1531 break;
1532 }
1533 inst = inst->Next();
1534 }
1535 }
1536
1537 // Write out the sub-graphs to make edges styled.
1538 os << "\n";
1539 os << " subgraph regular_edges {\n";
1540 os << " edge [color=\"#000000\",weight=.3,len=3];\n\n";
1541 os << " " << regular_edges.str() << "\n";
1542 os << " }\n\n";
1543
1544 os << " subgraph taken_edges {\n";
1545 os << " edge [color=\"#00FF00\",weight=.3,len=3];\n\n";
1546 os << " " << taken_edges.str() << "\n";
1547 os << " }\n\n";
1548
1549 os << " subgraph exception_edges {\n";
1550 os << " edge [color=\"#FF0000\",weight=.3,len=3];\n\n";
1551 os << " " << exception_edges.str() << "\n";
1552 os << " }\n\n";
1553 }
1554
1555 os << "}\n";
1556}
1557
1558void DumpMethodCFG(ArtMethod* method, std::ostream& os) {
1559 const DexFile* dex_file = method->GetDexFile();
1560 const DexFile::CodeItem* code_item = dex_file->GetCodeItem(method->GetCodeItemOffset());
1561
1562 DumpMethodCFGImpl(dex_file, method->GetDexMethodIndex(), code_item, os);
1563}
1564
1565void DumpMethodCFG(const DexFile* dex_file, uint32_t dex_method_idx, std::ostream& os) {
1566 // This is painful, we need to find the code item. That means finding the class, and then
1567 // iterating the table.
1568 if (dex_method_idx >= dex_file->NumMethodIds()) {
1569 os << "Could not find method-idx.";
1570 return;
1571 }
1572 const DexFile::MethodId& method_id = dex_file->GetMethodId(dex_method_idx);
1573
1574 const DexFile::ClassDef* class_def = dex_file->FindClassDef(method_id.class_idx_);
1575 if (class_def == nullptr) {
1576 os << "Could not find class-def.";
1577 return;
1578 }
1579
1580 const uint8_t* class_data = dex_file->GetClassData(*class_def);
1581 if (class_data == nullptr) {
1582 os << "No class data.";
1583 return;
1584 }
1585
1586 ClassDataItemIterator it(*dex_file, class_data);
1587 // Skip fields
1588 while (it.HasNextStaticField() || it.HasNextInstanceField()) {
1589 it.Next();
1590 }
1591
1592 // Find method, and dump it.
1593 while (it.HasNextDirectMethod() || it.HasNextVirtualMethod()) {
1594 uint32_t method_idx = it.GetMemberIndex();
1595 if (method_idx == dex_method_idx) {
1596 DumpMethodCFGImpl(dex_file, dex_method_idx, it.GetMethodCodeItem(), os);
1597 return;
1598 }
1599 it.Next();
1600 }
1601
1602 // Otherwise complain.
1603 os << "Something went wrong, didn't find the method in the class data.";
1604}
1605
Nicolas Geoffrayabbb0f72015-10-29 18:55:58 +00001606static void ParseStringAfterChar(const std::string& s,
1607 char c,
1608 std::string* parsed_value,
1609 UsageFn Usage) {
1610 std::string::size_type colon = s.find(c);
1611 if (colon == std::string::npos) {
1612 Usage("Missing char %c in option %s\n", c, s.c_str());
1613 }
1614 // Add one to remove the char we were trimming until.
1615 *parsed_value = s.substr(colon + 1);
1616}
1617
1618void ParseDouble(const std::string& option,
1619 char after_char,
1620 double min,
1621 double max,
1622 double* parsed_value,
1623 UsageFn Usage) {
1624 std::string substring;
1625 ParseStringAfterChar(option, after_char, &substring, Usage);
1626 bool sane_val = true;
1627 double value;
1628 if ((false)) {
1629 // TODO: this doesn't seem to work on the emulator. b/15114595
1630 std::stringstream iss(substring);
1631 iss >> value;
1632 // Ensure that we have a value, there was no cruft after it and it satisfies a sensible range.
1633 sane_val = iss.eof() && (value >= min) && (value <= max);
1634 } else {
1635 char* end = nullptr;
1636 value = strtod(substring.c_str(), &end);
1637 sane_val = *end == '\0' && value >= min && value <= max;
1638 }
1639 if (!sane_val) {
1640 Usage("Invalid double value %s for option %s\n", substring.c_str(), option.c_str());
1641 }
1642 *parsed_value = value;
1643}
1644
Calin Juravle4d77b6a2015-12-01 18:38:09 +00001645int64_t GetFileSizeBytes(const std::string& filename) {
1646 struct stat stat_buf;
1647 int rc = stat(filename.c_str(), &stat_buf);
1648 return rc == 0 ? stat_buf.st_size : -1;
1649}
1650
Mathieu Chartier4d87df62016-01-07 15:14:19 -08001651void SleepForever() {
1652 while (true) {
1653 usleep(1000000);
1654 }
1655}
1656
Elliott Hughes42ee1422011-09-06 12:33:32 -07001657} // namespace art