blob: 40cd6d340c2e6ba5ed1d8c2a7db554e417f7e19e [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
Nicolas Geoffray6bc43742015-10-12 18:11:10 +010028#include "art_code.h"
Mathieu Chartierc7853442015-03-27 14:35:38 -070029#include "art_field-inl.h"
Mathieu Chartiere401d142015-04-22 13:56:20 -070030#include "art_method-inl.h"
Brian Carlstrom6449c622014-02-10 23:48:36 -080031#include "base/stl_util.h"
Elliott Hughes76160052012-12-12 16:31:20 -080032#include "base/unix_file/fd_file.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070033#include "dex_file-inl.h"
Andreas Gampe5073fed2015-08-10 11:40:25 -070034#include "dex_instruction.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070035#include "mirror/class-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080036#include "mirror/class_loader.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080037#include "mirror/object-inl.h"
38#include "mirror/object_array-inl.h"
39#include "mirror/string.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
Christopher Ferris7b5f0cf2013-11-01 15:18:45 -070049#include <backtrace/Backtrace.h> // For DumpNativeStack.
Elliott Hughes46e251b2012-05-22 15:10:45 -070050
Elliott Hughes058a6de2012-05-24 19:13:02 -070051#if defined(__linux__)
Elliott Hughese1aee692012-01-17 16:40:10 -080052#include <linux/unistd.h>
Elliott Hughese1aee692012-01-17 16:40:10 -080053#endif
54
Elliott Hughes11e45072011-08-16 17:40:46 -070055namespace art {
56
Andreas Gampe8e1cb912015-01-08 20:11:09 -080057#if defined(__linux__)
58static constexpr bool kUseAddr2line = !kIsTargetBuild;
59#endif
60
Elliott Hughes11d1b0c2012-01-23 16:57:47 -080061pid_t GetTid() {
Brian Carlstromf3a26412012-08-24 11:06:02 -070062#if defined(__APPLE__)
63 uint64_t owner;
Mathieu Chartier2cebb242015-04-21 16:50:40 -070064 CHECK_PTHREAD_CALL(pthread_threadid_np, (nullptr, &owner), __FUNCTION__); // Requires Mac OS 10.6
Brian Carlstromf3a26412012-08-24 11:06:02 -070065 return owner;
Elliott Hughes323aa862014-08-20 15:00:04 -070066#elif defined(__BIONIC__)
67 return gettid();
Elliott Hughes11d1b0c2012-01-23 16:57:47 -080068#else
Elliott Hughes11d1b0c2012-01-23 16:57:47 -080069 return syscall(__NR_gettid);
70#endif
71}
72
Elliott Hughes289be852012-06-12 13:57:20 -070073std::string GetThreadName(pid_t tid) {
74 std::string result;
75 if (ReadFileToString(StringPrintf("/proc/self/task/%d/comm", tid), &result)) {
Brian Carlstrom7934ac22013-07-26 10:54:15 -070076 result.resize(result.size() - 1); // Lose the trailing '\n'.
Elliott Hughes289be852012-06-12 13:57:20 -070077 } else {
78 result = "<unknown>";
79 }
80 return result;
81}
82
Elliott Hughes6d3fc562014-08-27 11:47:01 -070083void GetThreadStack(pthread_t thread, void** stack_base, size_t* stack_size, size_t* guard_size) {
Elliott Hughese1884192012-04-23 12:38:15 -070084#if defined(__APPLE__)
Brian Carlstrom29212012013-09-12 22:18:30 -070085 *stack_size = pthread_get_stacksize_np(thread);
Ian Rogers120f1c72012-09-28 17:17:10 -070086 void* stack_addr = pthread_get_stackaddr_np(thread);
Elliott Hughese1884192012-04-23 12:38:15 -070087
88 // Check whether stack_addr is the base or end of the stack.
89 // (On Mac OS 10.7, it's the end.)
90 int stack_variable;
91 if (stack_addr > &stack_variable) {
Ian Rogers13735952014-10-08 12:43:28 -070092 *stack_base = reinterpret_cast<uint8_t*>(stack_addr) - *stack_size;
Elliott Hughese1884192012-04-23 12:38:15 -070093 } else {
Brian Carlstrom29212012013-09-12 22:18:30 -070094 *stack_base = stack_addr;
Elliott Hughese1884192012-04-23 12:38:15 -070095 }
Elliott Hughes6d3fc562014-08-27 11:47:01 -070096
97 // This is wrong, but there doesn't seem to be a way to get the actual value on the Mac.
98 pthread_attr_t attributes;
99 CHECK_PTHREAD_CALL(pthread_attr_init, (&attributes), __FUNCTION__);
100 CHECK_PTHREAD_CALL(pthread_attr_getguardsize, (&attributes, guard_size), __FUNCTION__);
101 CHECK_PTHREAD_CALL(pthread_attr_destroy, (&attributes), __FUNCTION__);
Elliott Hughese1884192012-04-23 12:38:15 -0700102#else
103 pthread_attr_t attributes;
Ian Rogers120f1c72012-09-28 17:17:10 -0700104 CHECK_PTHREAD_CALL(pthread_getattr_np, (thread, &attributes), __FUNCTION__);
Brian Carlstrom29212012013-09-12 22:18:30 -0700105 CHECK_PTHREAD_CALL(pthread_attr_getstack, (&attributes, stack_base, stack_size), __FUNCTION__);
Elliott Hughes6d3fc562014-08-27 11:47:01 -0700106 CHECK_PTHREAD_CALL(pthread_attr_getguardsize, (&attributes, guard_size), __FUNCTION__);
Elliott Hughese1884192012-04-23 12:38:15 -0700107 CHECK_PTHREAD_CALL(pthread_attr_destroy, (&attributes), __FUNCTION__);
Elliott Hughes839cc302014-08-28 10:24:44 -0700108
109#if defined(__GLIBC__)
110 // If we're the main thread, check whether we were run with an unlimited stack. In that case,
111 // glibc will have reported a 2GB stack for our 32-bit process, and our stack overflow detection
112 // will be broken because we'll die long before we get close to 2GB.
113 bool is_main_thread = (::art::GetTid() == getpid());
114 if (is_main_thread) {
115 rlimit stack_limit;
116 if (getrlimit(RLIMIT_STACK, &stack_limit) == -1) {
117 PLOG(FATAL) << "getrlimit(RLIMIT_STACK) failed";
118 }
119 if (stack_limit.rlim_cur == RLIM_INFINITY) {
120 size_t old_stack_size = *stack_size;
121
122 // Use the kernel default limit as our size, and adjust the base to match.
123 *stack_size = 8 * MB;
124 *stack_base = reinterpret_cast<uint8_t*>(*stack_base) + (old_stack_size - *stack_size);
125
126 VLOG(threads) << "Limiting unlimited stack (reported as " << PrettySize(old_stack_size) << ")"
127 << " to " << PrettySize(*stack_size)
128 << " with base " << *stack_base;
129 }
130 }
131#endif
132
Elliott Hughese1884192012-04-23 12:38:15 -0700133#endif
134}
135
Elliott Hughesd92bec42011-09-02 17:04:36 -0700136bool ReadFileToString(const std::string& file_name, std::string* result) {
Andreas Gampea6dfdae2015-02-24 15:50:19 -0800137 File file;
138 if (!file.Open(file_name, O_RDONLY)) {
Elliott Hughesd92bec42011-09-02 17:04:36 -0700139 return false;
140 }
buzbeec143c552011-08-20 17:38:58 -0700141
Elliott Hughes3b6baaa2011-10-14 19:13:56 -0700142 std::vector<char> buf(8 * KB);
buzbeec143c552011-08-20 17:38:58 -0700143 while (true) {
Andreas Gampea6dfdae2015-02-24 15:50:19 -0800144 int64_t n = TEMP_FAILURE_RETRY(read(file.Fd(), &buf[0], buf.size()));
Elliott Hughesd92bec42011-09-02 17:04:36 -0700145 if (n == -1) {
146 return false;
buzbeec143c552011-08-20 17:38:58 -0700147 }
Elliott Hughesd92bec42011-09-02 17:04:36 -0700148 if (n == 0) {
149 return true;
150 }
Elliott Hughes3b6baaa2011-10-14 19:13:56 -0700151 result->append(&buf[0], n);
buzbeec143c552011-08-20 17:38:58 -0700152 }
buzbeec143c552011-08-20 17:38:58 -0700153}
154
Andreas Gampea6dfdae2015-02-24 15:50:19 -0800155bool PrintFileToLog(const std::string& file_name, LogSeverity level) {
156 File file;
157 if (!file.Open(file_name, O_RDONLY)) {
158 return false;
159 }
160
161 constexpr size_t kBufSize = 256; // Small buffer. Avoid stack overflow and stack size warnings.
162 char buf[kBufSize + 1]; // +1 for terminator.
163 size_t filled_to = 0;
164 while (true) {
165 DCHECK_LT(filled_to, kBufSize);
166 int64_t n = TEMP_FAILURE_RETRY(read(file.Fd(), &buf[filled_to], kBufSize - filled_to));
167 if (n <= 0) {
168 // Print the rest of the buffer, if it exists.
169 if (filled_to > 0) {
170 buf[filled_to] = 0;
171 LOG(level) << buf;
172 }
173 return n == 0;
174 }
175 // Scan for '\n'.
176 size_t i = filled_to;
177 bool found_newline = false;
178 for (; i < filled_to + n; ++i) {
179 if (buf[i] == '\n') {
180 // Found a line break, that's something to print now.
181 buf[i] = 0;
182 LOG(level) << buf;
183 // Copy the rest to the front.
184 if (i + 1 < filled_to + n) {
185 memmove(&buf[0], &buf[i + 1], filled_to + n - i - 1);
186 filled_to = filled_to + n - i - 1;
187 } else {
188 filled_to = 0;
189 }
190 found_newline = true;
191 break;
192 }
193 }
194 if (found_newline) {
195 continue;
196 } else {
197 filled_to += n;
198 // Check if we must flush now.
199 if (filled_to == kBufSize) {
200 buf[kBufSize] = 0;
201 LOG(level) << buf;
202 filled_to = 0;
203 }
204 }
205 }
206}
207
Ian Rogersef7d42f2014-01-06 12:55:46 -0800208std::string PrettyDescriptor(mirror::String* java_descriptor) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700209 if (java_descriptor == nullptr) {
Brian Carlstrome24fa612011-09-29 00:53:55 -0700210 return "null";
211 }
Ian Rogers1ff3c982014-08-12 02:30:58 -0700212 return PrettyDescriptor(java_descriptor->ToModifiedUtf8().c_str());
Elliott Hughes6c8867d2011-10-03 16:34:05 -0700213}
Elliott Hughes5174fe62011-08-23 15:12:35 -0700214
Ian Rogersef7d42f2014-01-06 12:55:46 -0800215std::string PrettyDescriptor(mirror::Class* klass) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700216 if (klass == nullptr) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800217 return "null";
218 }
Ian Rogers1ff3c982014-08-12 02:30:58 -0700219 std::string temp;
220 return PrettyDescriptor(klass->GetDescriptor(&temp));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800221}
222
Ian Rogers1ff3c982014-08-12 02:30:58 -0700223std::string PrettyDescriptor(const char* descriptor) {
Elliott Hughes11e45072011-08-16 17:40:46 -0700224 // Count the number of '['s to get the dimensionality.
Ian Rogers1ff3c982014-08-12 02:30:58 -0700225 const char* c = descriptor;
Elliott Hughes11e45072011-08-16 17:40:46 -0700226 size_t dim = 0;
227 while (*c == '[') {
228 dim++;
229 c++;
230 }
231
232 // Reference or primitive?
233 if (*c == 'L') {
234 // "[[La/b/C;" -> "a.b.C[][]".
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700235 c++; // Skip the 'L'.
Elliott Hughes11e45072011-08-16 17:40:46 -0700236 } else {
237 // "[[B" -> "byte[][]".
238 // To make life easier, we make primitives look like unqualified
239 // reference types.
240 switch (*c) {
241 case 'B': c = "byte;"; break;
242 case 'C': c = "char;"; break;
243 case 'D': c = "double;"; break;
244 case 'F': c = "float;"; break;
245 case 'I': c = "int;"; break;
246 case 'J': c = "long;"; break;
247 case 'S': c = "short;"; break;
248 case 'Z': c = "boolean;"; break;
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700249 case 'V': c = "void;"; break; // Used when decoding return types.
Elliott Hughes5174fe62011-08-23 15:12:35 -0700250 default: return descriptor;
Elliott Hughes11e45072011-08-16 17:40:46 -0700251 }
252 }
253
254 // At this point, 'c' is a string of the form "fully/qualified/Type;"
255 // or "primitive;". Rewrite the type with '.' instead of '/':
256 std::string result;
257 const char* p = c;
258 while (*p != ';') {
259 char ch = *p++;
260 if (ch == '/') {
261 ch = '.';
262 }
263 result.push_back(ch);
264 }
265 // ...and replace the semicolon with 'dim' "[]" pairs:
Ian Rogers1ff3c982014-08-12 02:30:58 -0700266 for (size_t i = 0; i < dim; ++i) {
Elliott Hughes11e45072011-08-16 17:40:46 -0700267 result += "[]";
268 }
269 return result;
270}
271
Mathieu Chartierc7853442015-03-27 14:35:38 -0700272std::string PrettyField(ArtField* f, bool with_type) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700273 if (f == nullptr) {
Elliott Hughesa2501992011-08-26 19:39:54 -0700274 return "null";
275 }
Elliott Hughes54e7df12011-09-16 11:47:04 -0700276 std::string result;
277 if (with_type) {
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -0700278 result += PrettyDescriptor(f->GetTypeDescriptor());
Elliott Hughes54e7df12011-09-16 11:47:04 -0700279 result += ' ';
280 }
Ian Rogers08f1f502014-12-02 15:04:37 -0800281 std::string temp;
282 result += PrettyDescriptor(f->GetDeclaringClass()->GetDescriptor(&temp));
Elliott Hughesa2501992011-08-26 19:39:54 -0700283 result += '.';
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -0700284 result += f->GetName();
Elliott Hughesa2501992011-08-26 19:39:54 -0700285 return result;
286}
287
Brian Carlstrom6f29d0e2012-05-11 15:50:29 -0700288std::string PrettyField(uint32_t field_idx, const DexFile& dex_file, bool with_type) {
Elliott Hughes60641a72013-02-27 14:36:16 -0800289 if (field_idx >= dex_file.NumFieldIds()) {
290 return StringPrintf("<<invalid-field-idx-%d>>", field_idx);
291 }
Brian Carlstrom6f29d0e2012-05-11 15:50:29 -0700292 const DexFile::FieldId& field_id = dex_file.GetFieldId(field_idx);
293 std::string result;
294 if (with_type) {
295 result += dex_file.GetFieldTypeDescriptor(field_id);
296 result += ' ';
297 }
298 result += PrettyDescriptor(dex_file.GetFieldDeclaringClassDescriptor(field_id));
299 result += '.';
300 result += dex_file.GetFieldName(field_id);
301 return result;
302}
303
Mathieu Chartier18c24b62012-09-10 08:54:25 -0700304std::string PrettyType(uint32_t type_idx, const DexFile& dex_file) {
Elliott Hughes60641a72013-02-27 14:36:16 -0800305 if (type_idx >= dex_file.NumTypeIds()) {
306 return StringPrintf("<<invalid-type-idx-%d>>", type_idx);
307 }
Mathieu Chartier18c24b62012-09-10 08:54:25 -0700308 const DexFile::TypeId& type_id = dex_file.GetTypeId(type_idx);
Mathieu Chartier4c70d772012-09-10 14:08:32 -0700309 return PrettyDescriptor(dex_file.GetTypeDescriptor(type_id));
Mathieu Chartier18c24b62012-09-10 08:54:25 -0700310}
311
Elliott Hughes9058f2b2012-03-22 18:06:48 -0700312std::string PrettyArguments(const char* signature) {
313 std::string result;
314 result += '(';
315 CHECK_EQ(*signature, '(');
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700316 ++signature; // Skip the '('.
Elliott Hughes9058f2b2012-03-22 18:06:48 -0700317 while (*signature != ')') {
318 size_t argument_length = 0;
319 while (signature[argument_length] == '[') {
320 ++argument_length;
321 }
322 if (signature[argument_length] == 'L') {
323 argument_length = (strchr(signature, ';') - signature + 1);
324 } else {
325 ++argument_length;
326 }
Ian Rogers1ff3c982014-08-12 02:30:58 -0700327 {
328 std::string argument_descriptor(signature, argument_length);
329 result += PrettyDescriptor(argument_descriptor.c_str());
330 }
Elliott Hughes9058f2b2012-03-22 18:06:48 -0700331 if (signature[argument_length] != ')') {
332 result += ", ";
333 }
334 signature += argument_length;
335 }
336 CHECK_EQ(*signature, ')');
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700337 ++signature; // Skip the ')'.
Elliott Hughes9058f2b2012-03-22 18:06:48 -0700338 result += ')';
339 return result;
340}
341
342std::string PrettyReturnType(const char* signature) {
343 const char* return_type = strchr(signature, ')');
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700344 CHECK(return_type != nullptr);
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700345 ++return_type; // Skip ')'.
Elliott Hughes9058f2b2012-03-22 18:06:48 -0700346 return PrettyDescriptor(return_type);
347}
348
Mathieu Chartiere401d142015-04-22 13:56:20 -0700349std::string PrettyMethod(ArtMethod* m, bool with_signature) {
Ian Rogers16ce0922014-01-10 14:59:36 -0800350 if (m == nullptr) {
Elliott Hughesa0b8feb2011-08-20 09:50:55 -0700351 return "null";
352 }
Mathieu Chartiere401d142015-04-22 13:56:20 -0700353 if (!m->IsRuntimeMethod()) {
354 m = m->GetInterfaceMethodIfProxy(Runtime::Current()->GetClassLinker()->GetImagePointerSize());
355 }
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700356 std::string result(PrettyDescriptor(m->GetDeclaringClassDescriptor()));
Elliott Hughesa0b8feb2011-08-20 09:50:55 -0700357 result += '.';
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700358 result += m->GetName();
Ian Rogers16ce0922014-01-10 14:59:36 -0800359 if (UNLIKELY(m->IsFastNative())) {
360 result += "!";
361 }
Elliott Hughesa0b8feb2011-08-20 09:50:55 -0700362 if (with_signature) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700363 const Signature signature = m->GetSignature();
Ian Rogersd91d6d62013-09-25 20:26:14 -0700364 std::string sig_as_string(signature.ToString());
365 if (signature == Signature::NoSignature()) {
366 return result + sig_as_string;
Elliott Hughesf8c11932012-03-23 19:53:59 -0700367 }
Ian Rogersd91d6d62013-09-25 20:26:14 -0700368 result = PrettyReturnType(sig_as_string.c_str()) + " " + result +
369 PrettyArguments(sig_as_string.c_str());
Elliott Hughesa0b8feb2011-08-20 09:50:55 -0700370 }
371 return result;
372}
373
Ian Rogers0571d352011-11-03 19:51:38 -0700374std::string PrettyMethod(uint32_t method_idx, const DexFile& dex_file, bool with_signature) {
Elliott Hughes60641a72013-02-27 14:36:16 -0800375 if (method_idx >= dex_file.NumMethodIds()) {
376 return StringPrintf("<<invalid-method-idx-%d>>", method_idx);
377 }
Ian Rogers0571d352011-11-03 19:51:38 -0700378 const DexFile::MethodId& method_id = dex_file.GetMethodId(method_idx);
379 std::string result(PrettyDescriptor(dex_file.GetMethodDeclaringClassDescriptor(method_id)));
380 result += '.';
381 result += dex_file.GetMethodName(method_id);
382 if (with_signature) {
Ian Rogersd91d6d62013-09-25 20:26:14 -0700383 const Signature signature = dex_file.GetMethodSignature(method_id);
384 std::string sig_as_string(signature.ToString());
385 if (signature == Signature::NoSignature()) {
386 return result + sig_as_string;
Elliott Hughesf8c11932012-03-23 19:53:59 -0700387 }
Ian Rogersd91d6d62013-09-25 20:26:14 -0700388 result = PrettyReturnType(sig_as_string.c_str()) + " " + result +
389 PrettyArguments(sig_as_string.c_str());
Ian Rogers0571d352011-11-03 19:51:38 -0700390 }
391 return result;
392}
393
Ian Rogersef7d42f2014-01-06 12:55:46 -0800394std::string PrettyTypeOf(mirror::Object* obj) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700395 if (obj == nullptr) {
Elliott Hughes11e45072011-08-16 17:40:46 -0700396 return "null";
397 }
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700398 if (obj->GetClass() == nullptr) {
Elliott Hughes11e45072011-08-16 17:40:46 -0700399 return "(raw)";
400 }
Ian Rogers1ff3c982014-08-12 02:30:58 -0700401 std::string temp;
402 std::string result(PrettyDescriptor(obj->GetClass()->GetDescriptor(&temp)));
Elliott Hughes11e45072011-08-16 17:40:46 -0700403 if (obj->IsClass()) {
Ian Rogers1ff3c982014-08-12 02:30:58 -0700404 result += "<" + PrettyDescriptor(obj->AsClass()->GetDescriptor(&temp)) + ">";
Elliott Hughes11e45072011-08-16 17:40:46 -0700405 }
406 return result;
407}
408
Ian Rogersef7d42f2014-01-06 12:55:46 -0800409std::string PrettyClass(mirror::Class* c) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700410 if (c == nullptr) {
Elliott Hughes54e7df12011-09-16 11:47:04 -0700411 return "null";
412 }
413 std::string result;
414 result += "java.lang.Class<";
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800415 result += PrettyDescriptor(c);
Elliott Hughes54e7df12011-09-16 11:47:04 -0700416 result += ">";
417 return result;
418}
419
Ian Rogersef7d42f2014-01-06 12:55:46 -0800420std::string PrettyClassAndClassLoader(mirror::Class* c) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700421 if (c == nullptr) {
Ian Rogersd81871c2011-10-03 13:57:23 -0700422 return "null";
423 }
424 std::string result;
425 result += "java.lang.Class<";
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800426 result += PrettyDescriptor(c);
Ian Rogersd81871c2011-10-03 13:57:23 -0700427 result += ",";
428 result += PrettyTypeOf(c->GetClassLoader());
429 // TODO: add an identifying hash value for the loader
430 result += ">";
431 return result;
432}
433
Andreas Gampec0d82292014-09-23 10:38:30 -0700434std::string PrettyJavaAccessFlags(uint32_t access_flags) {
435 std::string result;
436 if ((access_flags & kAccPublic) != 0) {
437 result += "public ";
438 }
439 if ((access_flags & kAccProtected) != 0) {
440 result += "protected ";
441 }
442 if ((access_flags & kAccPrivate) != 0) {
443 result += "private ";
444 }
445 if ((access_flags & kAccFinal) != 0) {
446 result += "final ";
447 }
448 if ((access_flags & kAccStatic) != 0) {
449 result += "static ";
450 }
451 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
Andreas Gampe8e1cb912015-01-08 20:11:09 -08001027#if defined(__linux__)
Andreas Gampe00bd2da2015-01-09 15:05:46 -08001028
1029ALWAYS_INLINE
1030static inline void WritePrefix(std::ostream* os, const char* prefix, bool odd) {
1031 if (prefix != nullptr) {
1032 *os << prefix;
1033 }
1034 *os << " ";
1035 if (!odd) {
1036 *os << " ";
1037 }
1038}
1039
Andreas Gampe8e1cb912015-01-08 20:11:09 -08001040static bool RunCommand(std::string cmd, std::ostream* os, const char* prefix) {
1041 FILE* stream = popen(cmd.c_str(), "r");
1042 if (stream) {
1043 if (os != nullptr) {
1044 bool odd_line = true; // We indent them differently.
Andreas Gampe00bd2da2015-01-09 15:05:46 -08001045 bool wrote_prefix = false; // Have we already written a prefix?
Andreas Gampe8e1cb912015-01-08 20:11:09 -08001046 constexpr size_t kMaxBuffer = 128; // Relatively small buffer. Should be OK as we're on an
1047 // alt stack, but just to be sure...
1048 char buffer[kMaxBuffer];
1049 while (!feof(stream)) {
1050 if (fgets(buffer, kMaxBuffer, stream) != nullptr) {
1051 // Split on newlines.
1052 char* tmp = buffer;
1053 for (;;) {
1054 char* new_line = strchr(tmp, '\n');
1055 if (new_line == nullptr) {
1056 // Print the rest.
1057 if (*tmp != 0) {
Andreas Gampe00bd2da2015-01-09 15:05:46 -08001058 if (!wrote_prefix) {
1059 WritePrefix(os, prefix, odd_line);
Andreas Gampe8e1cb912015-01-08 20:11:09 -08001060 }
Andreas Gampe00bd2da2015-01-09 15:05:46 -08001061 wrote_prefix = true;
Andreas Gampe8e1cb912015-01-08 20:11:09 -08001062 *os << tmp;
1063 }
1064 break;
1065 }
Andreas Gampe00bd2da2015-01-09 15:05:46 -08001066 if (!wrote_prefix) {
1067 WritePrefix(os, prefix, odd_line);
Andreas Gampe8e1cb912015-01-08 20:11:09 -08001068 }
1069 char saved = *(new_line + 1);
1070 *(new_line + 1) = 0;
1071 *os << tmp;
1072 *(new_line + 1) = saved;
1073 tmp = new_line + 1;
1074 odd_line = !odd_line;
Andreas Gampe00bd2da2015-01-09 15:05:46 -08001075 wrote_prefix = false;
Andreas Gampe8e1cb912015-01-08 20:11:09 -08001076 }
1077 }
1078 }
1079 }
1080 pclose(stream);
1081 return true;
1082 } else {
1083 return false;
1084 }
1085}
1086
1087static void Addr2line(const std::string& map_src, uintptr_t offset, std::ostream& os,
1088 const char* prefix) {
1089 std::string cmdline(StringPrintf("addr2line --functions --inlines --demangle -e %s %zx",
1090 map_src.c_str(), offset));
1091 RunCommand(cmdline.c_str(), &os, prefix);
1092}
1093#endif
1094
Christopher Ferrisa2cee182014-04-16 19:13:59 -07001095void DumpNativeStack(std::ostream& os, pid_t tid, const char* prefix,
Nicolas Geoffray6bc43742015-10-12 18:11:10 +01001096 ArtMethod* current_method, ArtCode* current_code, void* ucontext_ptr) {
Ian Rogers83597d02014-11-20 10:29:00 -08001097#if __linux__
Andreas Gamped7576322014-10-24 22:13:45 -07001098 // b/18119146
Evgenii Stepanov1e133742015-05-20 12:30:59 -07001099 if (RUNNING_ON_MEMORY_TOOL != 0) {
Andreas Gamped7576322014-10-24 22:13:45 -07001100 return;
1101 }
1102
Ian Rogers700a4022014-05-19 16:49:03 -07001103 std::unique_ptr<Backtrace> backtrace(Backtrace::Create(BACKTRACE_CURRENT_PROCESS, tid));
Andreas Gampe628a61a2015-01-07 22:08:35 -08001104 if (!backtrace->Unwind(0, reinterpret_cast<ucontext*>(ucontext_ptr))) {
Christopher Ferris7b5f0cf2013-11-01 15:18:45 -07001105 os << prefix << "(backtrace::Unwind failed for thread " << tid << ")\n";
Elliott Hughes46e251b2012-05-22 15:10:45 -07001106 return;
Christopher Ferris7b5f0cf2013-11-01 15:18:45 -07001107 } else if (backtrace->NumFrames() == 0) {
Elliott Hughes225f5a12012-06-11 11:23:48 -07001108 os << prefix << "(no native stack frames for thread " << tid << ")\n";
Elliott Hughes46e251b2012-05-22 15:10:45 -07001109 return;
1110 }
1111
Andreas Gampe8e1cb912015-01-08 20:11:09 -08001112 // Check whether we have and should use addr2line.
1113 bool use_addr2line;
1114 if (kUseAddr2line) {
1115 // Try to run it to see whether we have it. Push an argument so that it doesn't assume a.out
1116 // and print to stderr.
Andreas Gampe941c5512015-01-15 10:38:19 -08001117 use_addr2line = (gAborting > 0) && RunCommand("addr2line -h", nullptr, nullptr);
Andreas Gampe8e1cb912015-01-08 20:11:09 -08001118 } else {
1119 use_addr2line = false;
1120 }
1121
Christopher Ferris943af7d2014-01-16 12:41:46 -08001122 for (Backtrace::const_iterator it = backtrace->begin();
1123 it != backtrace->end(); ++it) {
Elliott Hughes46e251b2012-05-22 15:10:45 -07001124 // We produce output like this:
Christopher Ferrisa2cee182014-04-16 19:13:59 -07001125 // ] #00 pc 000075bb8 /system/lib/libc.so (unwind_backtrace_thread+536)
1126 // In order for parsing tools to continue to function, the stack dump
1127 // format must at least adhere to this format:
1128 // #XX pc <RELATIVE_ADDR> <FULL_PATH_TO_SHARED_LIBRARY> ...
1129 // The parsers require a single space before and after pc, and two spaces
1130 // after the <RELATIVE_ADDR>. There can be any prefix data before the
1131 // #XX. <RELATIVE_ADDR> has to be a hex number but with no 0x prefix.
1132 os << prefix << StringPrintf("#%02zu pc ", it->num);
Andreas Gampe8e1cb912015-01-08 20:11:09 -08001133 bool try_addr2line = false;
Christopher Ferrisa1c96652015-02-06 13:18:58 -08001134 if (!BacktraceMap::IsValid(it->map)) {
Andreas Gampedd671252015-07-23 14:37:18 -07001135 os << StringPrintf(Is64BitInstructionSet(kRuntimeISA) ? "%016" PRIxPTR " ???"
1136 : "%08" PRIxPTR " ???",
1137 it->pc);
Christopher Ferris7b5f0cf2013-11-01 15:18:45 -07001138 } else {
Andreas Gampedd671252015-07-23 14:37:18 -07001139 os << StringPrintf(Is64BitInstructionSet(kRuntimeISA) ? "%016" PRIxPTR " "
1140 : "%08" PRIxPTR " ",
1141 BacktraceMap::GetRelativePc(it->map, it->pc));
Christopher Ferrisa1c96652015-02-06 13:18:58 -08001142 os << it->map.name;
Andreas Gampe3ef69b42015-01-26 10:38:34 -08001143 os << " (";
Christopher Ferrisa2cee182014-04-16 19:13:59 -07001144 if (!it->func_name.empty()) {
1145 os << it->func_name;
1146 if (it->func_offset != 0) {
1147 os << "+" << it->func_offset;
1148 }
Andreas Gampe8e1cb912015-01-08 20:11:09 -08001149 try_addr2line = true;
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08001150 } else if (
1151 current_method != nullptr && Locks::mutator_lock_->IsSharedHeld(Thread::Current()) &&
Nicolas Geoffray6bc43742015-10-12 18:11:10 +01001152 current_code->PcIsWithinQuickCode(it->pc)) {
1153 const void* start_of_code = current_code->GetQuickOatEntryPoint(sizeof(void*));
Brian Carlstrom474cc792014-03-07 14:18:15 -08001154 os << JniLongName(current_method) << "+"
1155 << (it->pc - reinterpret_cast<uintptr_t>(start_of_code));
Kenny Root067d20f2014-03-05 14:57:21 -08001156 } else {
1157 os << "???";
1158 }
Christopher Ferrisa2cee182014-04-16 19:13:59 -07001159 os << ")";
Elliott Hughes46e251b2012-05-22 15:10:45 -07001160 }
Christopher Ferrisa2cee182014-04-16 19:13:59 -07001161 os << "\n";
Andreas Gampe8e1cb912015-01-08 20:11:09 -08001162 if (try_addr2line && use_addr2line) {
Christopher Ferrisa1c96652015-02-06 13:18:58 -08001163 Addr2line(it->map.name, it->pc - it->map.start, os, prefix);
Andreas Gampe8e1cb912015-01-08 20:11:09 -08001164 }
Elliott Hughes46e251b2012-05-22 15:10:45 -07001165 }
Nicolas Geoffraye6ac4fd2014-11-04 13:03:29 +00001166#else
Nicolas Geoffray6bc43742015-10-12 18:11:10 +01001167 UNUSED(os, tid, prefix, current_method, current_code, ucontext_ptr);
Ian Rogersc5f17732014-06-05 20:48:42 -07001168#endif
Elliott Hughes46e251b2012-05-22 15:10:45 -07001169}
1170
Elliott Hughes058a6de2012-05-24 19:13:02 -07001171#if defined(__APPLE__)
1172
1173// TODO: is there any way to get the kernel stack on Mac OS?
1174void DumpKernelStack(std::ostream&, pid_t, const char*, bool) {}
1175
1176#else
1177
Elliott Hughes46e251b2012-05-22 15:10:45 -07001178void DumpKernelStack(std::ostream& os, pid_t tid, const char* prefix, bool include_count) {
Elliott Hughes12a95022012-05-24 21:41:38 -07001179 if (tid == GetTid()) {
1180 // There's no point showing that we're reading our stack out of /proc!
1181 return;
1182 }
1183
Elliott Hughes46e251b2012-05-22 15:10:45 -07001184 std::string kernel_stack_filename(StringPrintf("/proc/self/task/%d/stack", tid));
1185 std::string kernel_stack;
1186 if (!ReadFileToString(kernel_stack_filename, &kernel_stack)) {
Elliott Hughes058a6de2012-05-24 19:13:02 -07001187 os << prefix << "(couldn't read " << kernel_stack_filename << ")\n";
jeffhaoc4c3ee22012-05-25 16:16:32 -07001188 return;
Elliott Hughes46e251b2012-05-22 15:10:45 -07001189 }
1190
1191 std::vector<std::string> kernel_stack_frames;
Ian Rogers6f3dbba2014-10-14 17:41:57 -07001192 Split(kernel_stack, '\n', &kernel_stack_frames);
Elliott Hughes46e251b2012-05-22 15:10:45 -07001193 // We skip the last stack frame because it's always equivalent to "[<ffffffff>] 0xffffffff",
1194 // which looking at the source appears to be the kernel's way of saying "that's all, folks!".
1195 kernel_stack_frames.pop_back();
1196 for (size_t i = 0; i < kernel_stack_frames.size(); ++i) {
Brian Carlstrom474cc792014-03-07 14:18:15 -08001197 // Turn "[<ffffffff8109156d>] futex_wait_queue_me+0xcd/0x110"
1198 // into "futex_wait_queue_me+0xcd/0x110".
Elliott Hughes46e251b2012-05-22 15:10:45 -07001199 const char* text = kernel_stack_frames[i].c_str();
1200 const char* close_bracket = strchr(text, ']');
Mathieu Chartier2cebb242015-04-21 16:50:40 -07001201 if (close_bracket != nullptr) {
Elliott Hughes46e251b2012-05-22 15:10:45 -07001202 text = close_bracket + 2;
1203 }
1204 os << prefix;
1205 if (include_count) {
1206 os << StringPrintf("#%02zd ", i);
1207 }
1208 os << text << "\n";
1209 }
1210}
1211
1212#endif
1213
Brian Carlstroma56fcd62012-02-04 21:23:01 -08001214const char* GetAndroidRoot() {
1215 const char* android_root = getenv("ANDROID_ROOT");
Mathieu Chartier2cebb242015-04-21 16:50:40 -07001216 if (android_root == nullptr) {
Brian Carlstroma56fcd62012-02-04 21:23:01 -08001217 if (OS::DirectoryExists("/system")) {
1218 android_root = "/system";
Brian Carlstroma9f19782011-10-13 00:14:47 -07001219 } else {
Brian Carlstroma56fcd62012-02-04 21:23:01 -08001220 LOG(FATAL) << "ANDROID_ROOT not set and /system does not exist";
1221 return "";
Brian Carlstroma9f19782011-10-13 00:14:47 -07001222 }
1223 }
Brian Carlstroma56fcd62012-02-04 21:23:01 -08001224 if (!OS::DirectoryExists(android_root)) {
1225 LOG(FATAL) << "Failed to find ANDROID_ROOT directory " << android_root;
Brian Carlstroma9f19782011-10-13 00:14:47 -07001226 return "";
1227 }
Brian Carlstroma56fcd62012-02-04 21:23:01 -08001228 return android_root;
1229}
Brian Carlstroma9f19782011-10-13 00:14:47 -07001230
Brian Carlstroma56fcd62012-02-04 21:23:01 -08001231const char* GetAndroidData() {
Alex Lighta59dd802014-07-02 16:28:08 -07001232 std::string error_msg;
1233 const char* dir = GetAndroidDataSafe(&error_msg);
1234 if (dir != nullptr) {
1235 return dir;
1236 } else {
1237 LOG(FATAL) << error_msg;
1238 return "";
1239 }
1240}
1241
1242const char* GetAndroidDataSafe(std::string* error_msg) {
Brian Carlstroma56fcd62012-02-04 21:23:01 -08001243 const char* android_data = getenv("ANDROID_DATA");
Mathieu Chartier2cebb242015-04-21 16:50:40 -07001244 if (android_data == nullptr) {
Brian Carlstroma56fcd62012-02-04 21:23:01 -08001245 if (OS::DirectoryExists("/data")) {
1246 android_data = "/data";
1247 } else {
Alex Lighta59dd802014-07-02 16:28:08 -07001248 *error_msg = "ANDROID_DATA not set and /data does not exist";
1249 return nullptr;
Brian Carlstroma56fcd62012-02-04 21:23:01 -08001250 }
1251 }
1252 if (!OS::DirectoryExists(android_data)) {
Alex Lighta59dd802014-07-02 16:28:08 -07001253 *error_msg = StringPrintf("Failed to find ANDROID_DATA directory %s", android_data);
1254 return nullptr;
Brian Carlstroma56fcd62012-02-04 21:23:01 -08001255 }
1256 return android_data;
1257}
1258
Alex Lighta59dd802014-07-02 16:28:08 -07001259void GetDalvikCache(const char* subdir, const bool create_if_absent, std::string* dalvik_cache,
Andreas Gampe3c13a792014-09-18 20:56:04 -07001260 bool* have_android_data, bool* dalvik_cache_exists, bool* is_global_cache) {
Alex Lighta59dd802014-07-02 16:28:08 -07001261 CHECK(subdir != nullptr);
1262 std::string error_msg;
1263 const char* android_data = GetAndroidDataSafe(&error_msg);
1264 if (android_data == nullptr) {
1265 *have_android_data = false;
1266 *dalvik_cache_exists = false;
Andreas Gampe3c13a792014-09-18 20:56:04 -07001267 *is_global_cache = false;
Alex Lighta59dd802014-07-02 16:28:08 -07001268 return;
1269 } else {
1270 *have_android_data = true;
1271 }
1272 const std::string dalvik_cache_root(StringPrintf("%s/dalvik-cache/", android_data));
1273 *dalvik_cache = dalvik_cache_root + subdir;
1274 *dalvik_cache_exists = OS::DirectoryExists(dalvik_cache->c_str());
Andreas Gampe3c13a792014-09-18 20:56:04 -07001275 *is_global_cache = strcmp(android_data, "/data") == 0;
1276 if (create_if_absent && !*dalvik_cache_exists && !*is_global_cache) {
Alex Lighta59dd802014-07-02 16:28:08 -07001277 // Don't create the system's /data/dalvik-cache/... because it needs special permissions.
1278 *dalvik_cache_exists = ((mkdir(dalvik_cache_root.c_str(), 0700) == 0 || errno == EEXIST) &&
1279 (mkdir(dalvik_cache->c_str(), 0700) == 0 || errno == EEXIST));
1280 }
1281}
1282
Andreas Gampe40da2862015-02-27 12:49:04 -08001283static std::string GetDalvikCacheImpl(const char* subdir,
1284 const bool create_if_absent,
1285 const bool abort_on_error) {
Narayan Kamath11d9f062014-04-23 20:24:57 +01001286 CHECK(subdir != nullptr);
Brian Carlstrom41ccffd2014-05-06 10:37:30 -07001287 const char* android_data = GetAndroidData();
1288 const std::string dalvik_cache_root(StringPrintf("%s/dalvik-cache/", android_data));
Narayan Kamath11d9f062014-04-23 20:24:57 +01001289 const std::string dalvik_cache = dalvik_cache_root + subdir;
Andreas Gampe40da2862015-02-27 12:49:04 -08001290 if (!OS::DirectoryExists(dalvik_cache.c_str())) {
1291 if (!create_if_absent) {
1292 // TODO: Check callers. Traditional behavior is to not to abort, even when abort_on_error.
1293 return "";
1294 }
1295
Brian Carlstrom41ccffd2014-05-06 10:37:30 -07001296 // Don't create the system's /data/dalvik-cache/... because it needs special permissions.
Andreas Gampe40da2862015-02-27 12:49:04 -08001297 if (strcmp(android_data, "/data") == 0) {
1298 if (abort_on_error) {
1299 LOG(FATAL) << "Failed to find dalvik-cache directory " << dalvik_cache
1300 << ", cannot create /data dalvik-cache.";
1301 UNREACHABLE();
Narayan Kamath11d9f062014-04-23 20:24:57 +01001302 }
Andreas Gampe40da2862015-02-27 12:49:04 -08001303 return "";
1304 }
1305
1306 int result = mkdir(dalvik_cache_root.c_str(), 0700);
1307 if (result != 0 && errno != EEXIST) {
1308 if (abort_on_error) {
1309 PLOG(FATAL) << "Failed to create dalvik-cache root directory " << dalvik_cache_root;
1310 UNREACHABLE();
1311 }
1312 return "";
1313 }
1314
1315 result = mkdir(dalvik_cache.c_str(), 0700);
1316 if (result != 0) {
1317 if (abort_on_error) {
Narayan Kamath11d9f062014-04-23 20:24:57 +01001318 PLOG(FATAL) << "Failed to create dalvik-cache directory " << dalvik_cache;
Andreas Gampe40da2862015-02-27 12:49:04 -08001319 UNREACHABLE();
Brian Carlstroma9f19782011-10-13 00:14:47 -07001320 }
Brian Carlstroma9f19782011-10-13 00:14:47 -07001321 return "";
1322 }
1323 }
Brian Carlstrom7675e162013-06-10 16:18:04 -07001324 return dalvik_cache;
Brian Carlstroma9f19782011-10-13 00:14:47 -07001325}
1326
Andreas Gampe40da2862015-02-27 12:49:04 -08001327std::string GetDalvikCache(const char* subdir, const bool create_if_absent) {
1328 return GetDalvikCacheImpl(subdir, create_if_absent, false);
1329}
1330
1331std::string GetDalvikCacheOrDie(const char* subdir, const bool create_if_absent) {
1332 return GetDalvikCacheImpl(subdir, create_if_absent, true);
1333}
1334
Alex Lighta59dd802014-07-02 16:28:08 -07001335bool GetDalvikCacheFilename(const char* location, const char* cache_location,
1336 std::string* filename, std::string* error_msg) {
Ian Rogerse6060102013-05-16 12:01:04 -07001337 if (location[0] != '/') {
Alex Lighta59dd802014-07-02 16:28:08 -07001338 *error_msg = StringPrintf("Expected path in location to be absolute: %s", location);
1339 return false;
Ian Rogerse6060102013-05-16 12:01:04 -07001340 }
Ian Rogers8d31bbd2013-10-13 10:44:14 -07001341 std::string cache_file(&location[1]); // skip leading slash
Alex Light6e183f22014-07-18 14:57:04 -07001342 if (!EndsWith(location, ".dex") && !EndsWith(location, ".art") && !EndsWith(location, ".oat")) {
Brian Carlstrom30e2ea42013-06-19 23:25:37 -07001343 cache_file += "/";
1344 cache_file += DexFile::kClassesDex;
1345 }
Brian Carlstromb7bbba42011-10-13 14:58:47 -07001346 std::replace(cache_file.begin(), cache_file.end(), '/', '@');
Alex Lighta59dd802014-07-02 16:28:08 -07001347 *filename = StringPrintf("%s/%s", cache_location, cache_file.c_str());
1348 return true;
1349}
1350
1351std::string GetDalvikCacheFilenameOrDie(const char* location, const char* cache_location) {
1352 std::string ret;
1353 std::string error_msg;
1354 if (!GetDalvikCacheFilename(location, cache_location, &ret, &error_msg)) {
1355 LOG(FATAL) << error_msg;
1356 }
1357 return ret;
Brian Carlstromb7bbba42011-10-13 14:58:47 -07001358}
1359
Brian Carlstrom2afe4942014-05-19 10:25:33 -07001360static void InsertIsaDirectory(const InstructionSet isa, std::string* filename) {
Brian Carlstrom0e12bdc2014-05-14 17:44:28 -07001361 // in = /foo/bar/baz
1362 // out = /foo/bar/<isa>/baz
1363 size_t pos = filename->rfind('/');
1364 CHECK_NE(pos, std::string::npos) << *filename << " " << isa;
1365 filename->insert(pos, "/", 1);
1366 filename->insert(pos + 1, GetInstructionSetString(isa));
1367}
1368
1369std::string GetSystemImageFilename(const char* location, const InstructionSet isa) {
1370 // location = /system/framework/boot.art
1371 // filename = /system/framework/<isa>/boot.art
1372 std::string filename(location);
Brian Carlstrom2afe4942014-05-19 10:25:33 -07001373 InsertIsaDirectory(isa, &filename);
Brian Carlstrom0e12bdc2014-05-14 17:44:28 -07001374 return filename;
1375}
1376
Brian Carlstrom7c3d13a2013-09-04 17:15:11 -07001377bool IsZipMagic(uint32_t magic) {
1378 return (('P' == ((magic >> 0) & 0xff)) &&
1379 ('K' == ((magic >> 8) & 0xff)));
jeffhao262bf462011-10-20 18:36:32 -07001380}
1381
Brian Carlstrom7c3d13a2013-09-04 17:15:11 -07001382bool IsDexMagic(uint32_t magic) {
Ian Rogers13735952014-10-08 12:43:28 -07001383 return DexFile::IsMagicValid(reinterpret_cast<const uint8_t*>(&magic));
Brian Carlstrom7a967b32012-03-28 15:23:10 -07001384}
1385
Brian Carlstrom7c3d13a2013-09-04 17:15:11 -07001386bool IsOatMagic(uint32_t magic) {
Ian Rogers13735952014-10-08 12:43:28 -07001387 return (memcmp(reinterpret_cast<const uint8_t*>(magic),
Brian Carlstrom7c3d13a2013-09-04 17:15:11 -07001388 OatHeader::kOatMagic,
1389 sizeof(OatHeader::kOatMagic)) == 0);
jeffhao262bf462011-10-20 18:36:32 -07001390}
1391
Brian Carlstrom6449c622014-02-10 23:48:36 -08001392bool Exec(std::vector<std::string>& arg_vector, std::string* error_msg) {
1393 const std::string command_line(Join(arg_vector, ' '));
1394
1395 CHECK_GE(arg_vector.size(), 1U) << command_line;
1396
1397 // Convert the args to char pointers.
1398 const char* program = arg_vector[0].c_str();
1399 std::vector<char*> args;
Brian Carlstrom35d8b8e2014-02-25 10:51:11 -08001400 for (size_t i = 0; i < arg_vector.size(); ++i) {
1401 const std::string& arg = arg_vector[i];
1402 char* arg_str = const_cast<char*>(arg.c_str());
1403 CHECK(arg_str != nullptr) << i;
1404 args.push_back(arg_str);
Brian Carlstrom6449c622014-02-10 23:48:36 -08001405 }
Mathieu Chartier2cebb242015-04-21 16:50:40 -07001406 args.push_back(nullptr);
Brian Carlstrom6449c622014-02-10 23:48:36 -08001407
1408 // fork and exec
1409 pid_t pid = fork();
1410 if (pid == 0) {
1411 // no allocation allowed between fork and exec
1412
1413 // change process groups, so we don't get reaped by ProcessManager
1414 setpgid(0, 0);
1415
1416 execv(program, &args[0]);
1417
Brian Carlstrom13db9aa2014-02-27 12:44:32 -08001418 PLOG(ERROR) << "Failed to execv(" << command_line << ")";
1419 exit(1);
Brian Carlstrom6449c622014-02-10 23:48:36 -08001420 } else {
1421 if (pid == -1) {
1422 *error_msg = StringPrintf("Failed to execv(%s) because fork failed: %s",
1423 command_line.c_str(), strerror(errno));
1424 return false;
1425 }
1426
1427 // wait for subprocess to finish
1428 int status;
1429 pid_t got_pid = TEMP_FAILURE_RETRY(waitpid(pid, &status, 0));
1430 if (got_pid != pid) {
1431 *error_msg = StringPrintf("Failed after fork for execv(%s) because waitpid failed: "
1432 "wanted %d, got %d: %s",
1433 command_line.c_str(), pid, got_pid, strerror(errno));
1434 return false;
1435 }
1436 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
1437 *error_msg = StringPrintf("Failed execv(%s) because non-0 exit status",
1438 command_line.c_str());
1439 return false;
1440 }
1441 }
1442 return true;
1443}
1444
Mathieu Chartier76433272014-09-26 14:32:37 -07001445std::string PrettyDescriptor(Primitive::Type type) {
1446 return PrettyDescriptor(Primitive::Descriptor(type));
1447}
1448
Andreas Gampe5073fed2015-08-10 11:40:25 -07001449static void DumpMethodCFGImpl(const DexFile* dex_file,
1450 uint32_t dex_method_idx,
1451 const DexFile::CodeItem* code_item,
1452 std::ostream& os) {
1453 os << "digraph {\n";
1454 os << " # /* " << PrettyMethod(dex_method_idx, *dex_file, true) << " */\n";
1455
1456 std::set<uint32_t> dex_pc_is_branch_target;
1457 {
1458 // Go and populate.
1459 const Instruction* inst = Instruction::At(code_item->insns_);
1460 for (uint32_t dex_pc = 0;
1461 dex_pc < code_item->insns_size_in_code_units_;
1462 dex_pc += inst->SizeInCodeUnits(), inst = inst->Next()) {
1463 if (inst->IsBranch()) {
1464 dex_pc_is_branch_target.insert(dex_pc + inst->GetTargetOffset());
1465 } else if (inst->IsSwitch()) {
1466 const uint16_t* insns = code_item->insns_ + dex_pc;
Andreas Gampe53de99c2015-08-17 13:43:55 -07001467 int32_t switch_offset = insns[1] | (static_cast<int32_t>(insns[2]) << 16);
Andreas Gampe5073fed2015-08-10 11:40:25 -07001468 const uint16_t* switch_insns = insns + switch_offset;
1469 uint32_t switch_count = switch_insns[1];
1470 int32_t targets_offset;
1471 if ((*insns & 0xff) == Instruction::PACKED_SWITCH) {
1472 /* 0=sig, 1=count, 2/3=firstKey */
1473 targets_offset = 4;
1474 } else {
1475 /* 0=sig, 1=count, 2..count*2 = keys */
1476 targets_offset = 2 + 2 * switch_count;
1477 }
1478 for (uint32_t targ = 0; targ < switch_count; targ++) {
Andreas Gampe53de99c2015-08-17 13:43:55 -07001479 int32_t offset =
1480 static_cast<int32_t>(switch_insns[targets_offset + targ * 2]) |
1481 static_cast<int32_t>(switch_insns[targets_offset + targ * 2 + 1] << 16);
Andreas Gampe5073fed2015-08-10 11:40:25 -07001482 dex_pc_is_branch_target.insert(dex_pc + offset);
1483 }
1484 }
1485 }
1486 }
1487
1488 // Create nodes for "basic blocks."
1489 std::map<uint32_t, uint32_t> dex_pc_to_node_id; // This only has entries for block starts.
1490 std::map<uint32_t, uint32_t> dex_pc_to_incl_id; // This has entries for all dex pcs.
1491
1492 {
1493 const Instruction* inst = Instruction::At(code_item->insns_);
1494 bool first_in_block = true;
1495 bool force_new_block = false;
Andreas Gampe53de99c2015-08-17 13:43:55 -07001496 for (uint32_t dex_pc = 0;
1497 dex_pc < code_item->insns_size_in_code_units_;
1498 dex_pc += inst->SizeInCodeUnits(), inst = inst->Next()) {
Andreas Gampe5073fed2015-08-10 11:40:25 -07001499 if (dex_pc == 0 ||
1500 (dex_pc_is_branch_target.find(dex_pc) != dex_pc_is_branch_target.end()) ||
1501 force_new_block) {
1502 uint32_t id = dex_pc_to_node_id.size();
1503 if (id > 0) {
1504 // End last node.
1505 os << "}\"];\n";
1506 }
1507 // Start next node.
1508 os << " node" << id << " [shape=record,label=\"{";
1509 dex_pc_to_node_id.insert(std::make_pair(dex_pc, id));
1510 first_in_block = true;
1511 force_new_block = false;
1512 }
1513
1514 // Register instruction.
1515 dex_pc_to_incl_id.insert(std::make_pair(dex_pc, dex_pc_to_node_id.size() - 1));
1516
1517 // Print instruction.
1518 if (!first_in_block) {
1519 os << " | ";
1520 } else {
1521 first_in_block = false;
1522 }
1523
1524 // Dump the instruction. Need to escape '"', '<', '>', '{' and '}'.
1525 os << "<" << "p" << dex_pc << ">";
1526 os << " 0x" << std::hex << dex_pc << std::dec << ": ";
1527 std::string inst_str = inst->DumpString(dex_file);
1528 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 -07001529 // we need to escape.
Andreas Gampe5073fed2015-08-10 11:40:25 -07001530 while (cur_start != std::string::npos) {
1531 size_t next_escape = inst_str.find_first_of("\"{}<>", cur_start + 1);
1532 if (next_escape == std::string::npos) {
1533 os << inst_str.substr(cur_start, inst_str.size() - cur_start);
1534 break;
1535 } else {
1536 os << inst_str.substr(cur_start, next_escape - cur_start);
1537 // Escape all necessary characters.
1538 while (next_escape < inst_str.size()) {
1539 char c = inst_str.at(next_escape);
1540 if (c == '"' || c == '{' || c == '}' || c == '<' || c == '>') {
1541 os << '\\' << c;
1542 } else {
1543 break;
1544 }
1545 next_escape++;
1546 }
1547 if (next_escape >= inst_str.size()) {
1548 next_escape = std::string::npos;
1549 }
1550 cur_start = next_escape;
1551 }
1552 }
1553
1554 // Force a new block for some fall-throughs and some instructions that terminate the "local"
1555 // control flow.
1556 force_new_block = inst->IsSwitch() || inst->IsBasicBlockEnd();
1557 }
1558 // Close last node.
1559 if (dex_pc_to_node_id.size() > 0) {
1560 os << "}\"];\n";
1561 }
1562 }
1563
1564 // Create edges between them.
1565 {
1566 std::ostringstream regular_edges;
1567 std::ostringstream taken_edges;
1568 std::ostringstream exception_edges;
1569
1570 // Common set of exception edges.
1571 std::set<uint32_t> exception_targets;
1572
1573 // These blocks (given by the first dex pc) need exception per dex-pc handling in a second
1574 // pass. In the first pass we try and see whether we can use a common set of edges.
1575 std::set<uint32_t> blocks_with_detailed_exceptions;
1576
1577 {
1578 uint32_t last_node_id = std::numeric_limits<uint32_t>::max();
1579 uint32_t old_dex_pc = 0;
1580 uint32_t block_start_dex_pc = std::numeric_limits<uint32_t>::max();
1581 const Instruction* inst = Instruction::At(code_item->insns_);
1582 for (uint32_t dex_pc = 0;
1583 dex_pc < code_item->insns_size_in_code_units_;
1584 old_dex_pc = dex_pc, dex_pc += inst->SizeInCodeUnits(), inst = inst->Next()) {
1585 {
1586 auto it = dex_pc_to_node_id.find(dex_pc);
1587 if (it != dex_pc_to_node_id.end()) {
1588 if (!exception_targets.empty()) {
1589 // It seems the last block had common exception handlers. Add the exception edges now.
1590 uint32_t node_id = dex_pc_to_node_id.find(block_start_dex_pc)->second;
1591 for (uint32_t handler_pc : exception_targets) {
1592 auto node_id_it = dex_pc_to_incl_id.find(handler_pc);
1593 if (node_id_it != dex_pc_to_incl_id.end()) {
1594 exception_edges << " node" << node_id
1595 << " -> node" << node_id_it->second << ":p" << handler_pc
1596 << ";\n";
1597 }
1598 }
1599 exception_targets.clear();
1600 }
1601
1602 block_start_dex_pc = dex_pc;
1603
1604 // Seems to be a fall-through, connect to last_node_id. May be spurious edges for things
1605 // like switch data.
1606 uint32_t old_last = last_node_id;
1607 last_node_id = it->second;
1608 if (old_last != std::numeric_limits<uint32_t>::max()) {
1609 regular_edges << " node" << old_last << ":p" << old_dex_pc
1610 << " -> node" << last_node_id << ":p" << dex_pc
1611 << ";\n";
1612 }
1613 }
1614
1615 // Look at the exceptions of the first entry.
1616 CatchHandlerIterator catch_it(*code_item, dex_pc);
1617 for (; catch_it.HasNext(); catch_it.Next()) {
1618 exception_targets.insert(catch_it.GetHandlerAddress());
1619 }
1620 }
1621
1622 // Handle instruction.
1623
1624 // Branch: something with at most two targets.
1625 if (inst->IsBranch()) {
1626 const int32_t offset = inst->GetTargetOffset();
1627 const bool conditional = !inst->IsUnconditional();
1628
1629 auto target_it = dex_pc_to_node_id.find(dex_pc + offset);
1630 if (target_it != dex_pc_to_node_id.end()) {
1631 taken_edges << " node" << last_node_id << ":p" << dex_pc
1632 << " -> node" << target_it->second << ":p" << (dex_pc + offset)
1633 << ";\n";
1634 }
1635 if (!conditional) {
1636 // No fall-through.
1637 last_node_id = std::numeric_limits<uint32_t>::max();
1638 }
1639 } else if (inst->IsSwitch()) {
1640 // TODO: Iterate through all switch targets.
1641 const uint16_t* insns = code_item->insns_ + dex_pc;
1642 /* make sure the start of the switch is in range */
Andreas Gampe53de99c2015-08-17 13:43:55 -07001643 int32_t switch_offset = insns[1] | (static_cast<int32_t>(insns[2]) << 16);
Andreas Gampe5073fed2015-08-10 11:40:25 -07001644 /* offset to switch table is a relative branch-style offset */
1645 const uint16_t* switch_insns = insns + switch_offset;
1646 uint32_t switch_count = switch_insns[1];
1647 int32_t targets_offset;
1648 if ((*insns & 0xff) == Instruction::PACKED_SWITCH) {
1649 /* 0=sig, 1=count, 2/3=firstKey */
1650 targets_offset = 4;
1651 } else {
1652 /* 0=sig, 1=count, 2..count*2 = keys */
1653 targets_offset = 2 + 2 * switch_count;
1654 }
1655 /* make sure the end of the switch is in range */
1656 /* verify each switch target */
1657 for (uint32_t targ = 0; targ < switch_count; targ++) {
Andreas Gampe53de99c2015-08-17 13:43:55 -07001658 int32_t offset =
1659 static_cast<int32_t>(switch_insns[targets_offset + targ * 2]) |
1660 static_cast<int32_t>(switch_insns[targets_offset + targ * 2 + 1] << 16);
Andreas Gampe5073fed2015-08-10 11:40:25 -07001661 int32_t abs_offset = dex_pc + offset;
1662 auto target_it = dex_pc_to_node_id.find(abs_offset);
1663 if (target_it != dex_pc_to_node_id.end()) {
1664 // TODO: value label.
1665 taken_edges << " node" << last_node_id << ":p" << dex_pc
1666 << " -> node" << target_it->second << ":p" << (abs_offset)
1667 << ";\n";
1668 }
1669 }
1670 }
1671
1672 // Exception edges. If this is not the first instruction in the block
1673 if (block_start_dex_pc != dex_pc) {
1674 std::set<uint32_t> current_handler_pcs;
1675 CatchHandlerIterator catch_it(*code_item, dex_pc);
1676 for (; catch_it.HasNext(); catch_it.Next()) {
1677 current_handler_pcs.insert(catch_it.GetHandlerAddress());
1678 }
1679 if (current_handler_pcs != exception_targets) {
1680 exception_targets.clear(); // Clear so we don't do something at the end.
1681 blocks_with_detailed_exceptions.insert(block_start_dex_pc);
1682 }
1683 }
1684
1685 if (inst->IsReturn() ||
1686 (inst->Opcode() == Instruction::THROW) ||
1687 (inst->IsBranch() && inst->IsUnconditional())) {
1688 // No fall-through.
1689 last_node_id = std::numeric_limits<uint32_t>::max();
1690 }
1691 }
1692 // Finish up the last block, if it had common exceptions.
1693 if (!exception_targets.empty()) {
1694 // It seems the last block had common exception handlers. Add the exception edges now.
1695 uint32_t node_id = dex_pc_to_node_id.find(block_start_dex_pc)->second;
1696 for (uint32_t handler_pc : exception_targets) {
1697 auto node_id_it = dex_pc_to_incl_id.find(handler_pc);
1698 if (node_id_it != dex_pc_to_incl_id.end()) {
1699 exception_edges << " node" << node_id
1700 << " -> node" << node_id_it->second << ":p" << handler_pc
1701 << ";\n";
1702 }
1703 }
1704 exception_targets.clear();
1705 }
1706 }
1707
1708 // Second pass for detailed exception blocks.
1709 // TODO
1710 // Exception edges. If this is not the first instruction in the block
1711 for (uint32_t dex_pc : blocks_with_detailed_exceptions) {
1712 const Instruction* inst = Instruction::At(&code_item->insns_[dex_pc]);
1713 uint32_t this_node_id = dex_pc_to_incl_id.find(dex_pc)->second;
Andreas Gampe53de99c2015-08-17 13:43:55 -07001714 while (true) {
Andreas Gampe5073fed2015-08-10 11:40:25 -07001715 CatchHandlerIterator catch_it(*code_item, dex_pc);
1716 if (catch_it.HasNext()) {
1717 std::set<uint32_t> handled_targets;
1718 for (; catch_it.HasNext(); catch_it.Next()) {
1719 uint32_t handler_pc = catch_it.GetHandlerAddress();
1720 auto it = handled_targets.find(handler_pc);
1721 if (it == handled_targets.end()) {
1722 auto node_id_it = dex_pc_to_incl_id.find(handler_pc);
1723 if (node_id_it != dex_pc_to_incl_id.end()) {
1724 exception_edges << " node" << this_node_id << ":p" << dex_pc
1725 << " -> node" << node_id_it->second << ":p" << handler_pc
1726 << ";\n";
1727 }
1728
1729 // Mark as done.
1730 handled_targets.insert(handler_pc);
1731 }
1732 }
1733 }
1734 if (inst->IsBasicBlockEnd()) {
1735 break;
1736 }
1737
Andreas Gampe53de99c2015-08-17 13:43:55 -07001738 // Loop update. Have a break-out if the next instruction is a branch target and thus in
1739 // another block.
Andreas Gampe5073fed2015-08-10 11:40:25 -07001740 dex_pc += inst->SizeInCodeUnits();
1741 if (dex_pc >= code_item->insns_size_in_code_units_) {
1742 break;
1743 }
1744 if (dex_pc_to_node_id.find(dex_pc) != dex_pc_to_node_id.end()) {
1745 break;
1746 }
1747 inst = inst->Next();
1748 }
1749 }
1750
1751 // Write out the sub-graphs to make edges styled.
1752 os << "\n";
1753 os << " subgraph regular_edges {\n";
1754 os << " edge [color=\"#000000\",weight=.3,len=3];\n\n";
1755 os << " " << regular_edges.str() << "\n";
1756 os << " }\n\n";
1757
1758 os << " subgraph taken_edges {\n";
1759 os << " edge [color=\"#00FF00\",weight=.3,len=3];\n\n";
1760 os << " " << taken_edges.str() << "\n";
1761 os << " }\n\n";
1762
1763 os << " subgraph exception_edges {\n";
1764 os << " edge [color=\"#FF0000\",weight=.3,len=3];\n\n";
1765 os << " " << exception_edges.str() << "\n";
1766 os << " }\n\n";
1767 }
1768
1769 os << "}\n";
1770}
1771
1772void DumpMethodCFG(ArtMethod* method, std::ostream& os) {
1773 const DexFile* dex_file = method->GetDexFile();
1774 const DexFile::CodeItem* code_item = dex_file->GetCodeItem(method->GetCodeItemOffset());
1775
1776 DumpMethodCFGImpl(dex_file, method->GetDexMethodIndex(), code_item, os);
1777}
1778
1779void DumpMethodCFG(const DexFile* dex_file, uint32_t dex_method_idx, std::ostream& os) {
1780 // This is painful, we need to find the code item. That means finding the class, and then
1781 // iterating the table.
1782 if (dex_method_idx >= dex_file->NumMethodIds()) {
1783 os << "Could not find method-idx.";
1784 return;
1785 }
1786 const DexFile::MethodId& method_id = dex_file->GetMethodId(dex_method_idx);
1787
1788 const DexFile::ClassDef* class_def = dex_file->FindClassDef(method_id.class_idx_);
1789 if (class_def == nullptr) {
1790 os << "Could not find class-def.";
1791 return;
1792 }
1793
1794 const uint8_t* class_data = dex_file->GetClassData(*class_def);
1795 if (class_data == nullptr) {
1796 os << "No class data.";
1797 return;
1798 }
1799
1800 ClassDataItemIterator it(*dex_file, class_data);
1801 // Skip fields
1802 while (it.HasNextStaticField() || it.HasNextInstanceField()) {
1803 it.Next();
1804 }
1805
1806 // Find method, and dump it.
1807 while (it.HasNextDirectMethod() || it.HasNextVirtualMethod()) {
1808 uint32_t method_idx = it.GetMemberIndex();
1809 if (method_idx == dex_method_idx) {
1810 DumpMethodCFGImpl(dex_file, dex_method_idx, it.GetMethodCodeItem(), os);
1811 return;
1812 }
1813 it.Next();
1814 }
1815
1816 // Otherwise complain.
1817 os << "Something went wrong, didn't find the method in the class data.";
1818}
1819
Elliott Hughes42ee1422011-09-06 12:33:32 -07001820} // namespace art