blob: 7b7a767aef747c9af87349856a5722f7e285bfc9 [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 */
jeffhaoe343b762011-12-05 16:36:44 -080016
17#include "trace.h"
18
jeffhaoa9ef3fd2011-12-13 18:33:43 -080019#include <sys/uio.h>
20
jeffhaoe343b762011-12-05 16:36:44 -080021#include "class_linker.h"
jeffhaoa9ef3fd2011-12-13 18:33:43 -080022#include "debugger.h"
jeffhaoe343b762011-12-05 16:36:44 -080023#include "dex_cache.h"
Ian Rogers776ac1f2012-04-13 23:36:36 -070024#if !defined(ART_USE_LLVM_COMPILER)
Ian Rogers57b86d42012-03-27 16:05:41 -070025#include "oat/runtime/oat_support_entrypoints.h"
Ian Rogers776ac1f2012-04-13 23:36:36 -070026#endif
jeffhaoa9ef3fd2011-12-13 18:33:43 -080027#include "object_utils.h"
28#include "os.h"
Elliott Hughes88c5c352012-03-15 18:49:48 -070029#include "scoped_thread_list_lock.h"
jeffhaoe343b762011-12-05 16:36:44 -080030#include "thread.h"
Ian Rogers57b86d42012-03-27 16:05:41 -070031#include "thread_list.h"
jeffhao2692b572011-12-16 15:42:28 -080032
33namespace art {
34
jeffhaoa9ef3fd2011-12-13 18:33:43 -080035static const uint32_t kTraceMethodActionMask = 0x03; // two bits
36static const char kTraceTokenChar = '*';
37static const uint16_t kTraceHeaderLength = 32;
38static const uint32_t kTraceMagicValue = 0x574f4c53;
39static const uint16_t kTraceVersionSingleClock = 2;
40static const uint16_t kTraceVersionDualClock = 3;
41static const uint16_t kTraceRecordSizeSingleClock = 10; // using v2
42static const uint16_t kTraceRecordSizeDualClock = 14; // using v3 with two timestamps
43
44static inline uint32_t TraceMethodId(uint32_t methodValue) {
45 return (methodValue & ~kTraceMethodActionMask);
46}
47static inline uint32_t TraceMethodCombine(uint32_t method, uint8_t traceEvent) {
48 return (method | traceEvent);
49}
50
Elliott Hughesffb465f2012-03-01 18:46:05 -080051static bool UseThreadCpuClock() {
jeffhaoa9ef3fd2011-12-13 18:33:43 -080052 // TODO: Allow control over which clock is used
53 return true;
54}
55
Elliott Hughesffb465f2012-03-01 18:46:05 -080056static bool UseWallClock() {
jeffhaoa9ef3fd2011-12-13 18:33:43 -080057 // TODO: Allow control over which clock is used
58 return true;
59}
60
Elliott Hughesffb465f2012-03-01 18:46:05 -080061static void MeasureClockOverhead() {
jeffhaoa9ef3fd2011-12-13 18:33:43 -080062 if (UseThreadCpuClock()) {
63 ThreadCpuMicroTime();
64 }
65 if (UseWallClock()) {
66 MicroTime();
67 }
68}
69
Elliott Hughesffb465f2012-03-01 18:46:05 -080070static uint32_t GetClockOverhead() {
jeffhaoa9ef3fd2011-12-13 18:33:43 -080071 uint64_t start = ThreadCpuMicroTime();
72
73 for (int i = 4000; i > 0; i--) {
74 MeasureClockOverhead();
75 MeasureClockOverhead();
76 MeasureClockOverhead();
77 MeasureClockOverhead();
78 MeasureClockOverhead();
79 MeasureClockOverhead();
80 MeasureClockOverhead();
81 MeasureClockOverhead();
82 }
83
84 uint64_t elapsed = ThreadCpuMicroTime() - start;
85 return uint32_t (elapsed / 32);
86}
87
Elliott Hughesffb465f2012-03-01 18:46:05 -080088// TODO: put this somewhere with the big-endian equivalent used by JDWP.
89static void Append2LE(uint8_t* buf, uint16_t val) {
jeffhaoa9ef3fd2011-12-13 18:33:43 -080090 *buf++ = (uint8_t) val;
91 *buf++ = (uint8_t) (val >> 8);
92}
93
Elliott Hughesffb465f2012-03-01 18:46:05 -080094// TODO: put this somewhere with the big-endian equivalent used by JDWP.
95static void Append4LE(uint8_t* buf, uint32_t val) {
jeffhaoa9ef3fd2011-12-13 18:33:43 -080096 *buf++ = (uint8_t) val;
97 *buf++ = (uint8_t) (val >> 8);
98 *buf++ = (uint8_t) (val >> 16);
99 *buf++ = (uint8_t) (val >> 24);
100}
101
Elliott Hughesffb465f2012-03-01 18:46:05 -0800102// TODO: put this somewhere with the big-endian equivalent used by JDWP.
103static void Append8LE(uint8_t* buf, uint64_t val) {
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800104 *buf++ = (uint8_t) val;
105 *buf++ = (uint8_t) (val >> 8);
106 *buf++ = (uint8_t) (val >> 16);
107 *buf++ = (uint8_t) (val >> 24);
108 *buf++ = (uint8_t) (val >> 32);
109 *buf++ = (uint8_t) (val >> 40);
110 *buf++ = (uint8_t) (val >> 48);
111 *buf++ = (uint8_t) (val >> 56);
112}
113
jeffhaob5e81852012-03-12 11:15:45 -0700114static bool InstallStubsClassVisitor(Class* klass, void*) {
jeffhao2692b572011-12-16 15:42:28 -0800115 Trace* tracer = Runtime::Current()->GetTracer();
jeffhaoe343b762011-12-05 16:36:44 -0800116 for (size_t i = 0; i < klass->NumDirectMethods(); i++) {
117 Method* method = klass->GetDirectMethod(i);
jeffhaob5e81852012-03-12 11:15:45 -0700118 if (tracer->GetSavedCodeFromMap(method) == NULL) {
119 tracer->SaveAndUpdateCode(method);
jeffhaoe343b762011-12-05 16:36:44 -0800120 }
121 }
122
123 for (size_t i = 0; i < klass->NumVirtualMethods(); i++) {
124 Method* method = klass->GetVirtualMethod(i);
jeffhaob5e81852012-03-12 11:15:45 -0700125 if (tracer->GetSavedCodeFromMap(method) == NULL) {
126 tracer->SaveAndUpdateCode(method);
jeffhaoe343b762011-12-05 16:36:44 -0800127 }
128 }
jeffhaoe343b762011-12-05 16:36:44 -0800129 return true;
130}
131
jeffhaob5e81852012-03-12 11:15:45 -0700132static bool UninstallStubsClassVisitor(Class* klass, void*) {
jeffhao2692b572011-12-16 15:42:28 -0800133 Trace* tracer = Runtime::Current()->GetTracer();
jeffhaoe343b762011-12-05 16:36:44 -0800134 for (size_t i = 0; i < klass->NumDirectMethods(); i++) {
135 Method* method = klass->GetDirectMethod(i);
jeffhao2692b572011-12-16 15:42:28 -0800136 if (tracer->GetSavedCodeFromMap(method) != NULL) {
137 tracer->ResetSavedCode(method);
jeffhaoe343b762011-12-05 16:36:44 -0800138 }
139 }
140
141 for (size_t i = 0; i < klass->NumVirtualMethods(); i++) {
142 Method* method = klass->GetVirtualMethod(i);
jeffhao2692b572011-12-16 15:42:28 -0800143 if (tracer->GetSavedCodeFromMap(method) != NULL) {
144 tracer->ResetSavedCode(method);
jeffhaoe343b762011-12-05 16:36:44 -0800145 }
146 }
jeffhaoe343b762011-12-05 16:36:44 -0800147 return true;
148}
149
Elliott Hughes1bac54f2012-03-16 12:48:31 -0700150static void TraceRestoreStack(Thread* t, void*) {
jeffhaoe343b762011-12-05 16:36:44 -0800151 Frame frame = t->GetTopOfStack();
152 if (frame.GetSP() != 0) {
153 for ( ; frame.GetMethod() != 0; frame.Next()) {
154 if (t->IsTraceStackEmpty()) {
155 break;
156 }
Ian Rogers776ac1f2012-04-13 23:36:36 -0700157#if defined(ART_USE_LLVM_COMPILER)
158 UNIMPLEMENTED(FATAL);
159#else
jeffhaoe343b762011-12-05 16:36:44 -0800160 uintptr_t pc = frame.GetReturnPC();
161 Method* method = frame.GetMethod();
Ian Rogers57b86d42012-03-27 16:05:41 -0700162 if (IsTraceExitPc(pc)) {
jeffhaoe343b762011-12-05 16:36:44 -0800163 TraceStackFrame trace_frame = t->PopTraceStackFrame();
164 frame.SetReturnPC(trace_frame.return_pc_);
165 CHECK(method == trace_frame.method_);
166 }
Ian Rogers776ac1f2012-04-13 23:36:36 -0700167#endif
jeffhaoe343b762011-12-05 16:36:44 -0800168 }
169 }
jeffhaob5e81852012-03-12 11:15:45 -0700170}
jeffhaoe343b762011-12-05 16:36:44 -0800171
jeffhaoe343b762011-12-05 16:36:44 -0800172void Trace::AddSavedCodeToMap(const Method* method, const void* code) {
Elliott Hughesa0e18062012-04-13 15:59:59 -0700173 saved_code_map_.Put(method, code);
jeffhaoe343b762011-12-05 16:36:44 -0800174}
175
176void Trace::RemoveSavedCodeFromMap(const Method* method) {
177 saved_code_map_.erase(method);
178}
179
180const void* Trace::GetSavedCodeFromMap(const Method* method) {
Elliott Hughesa0e18062012-04-13 15:59:59 -0700181 typedef SafeMap<const Method*, const void*>::const_iterator It; // TODO: C++0x auto
jeffhao2692b572011-12-16 15:42:28 -0800182 It it = saved_code_map_.find(method);
183 if (it == saved_code_map_.end()) {
184 return NULL;
185 } else {
186 return it->second;
187 }
jeffhaoe343b762011-12-05 16:36:44 -0800188}
189
Elliott Hughes1bac54f2012-03-16 12:48:31 -0700190void Trace::SaveAndUpdateCode(Method* method) {
Ian Rogers776ac1f2012-04-13 23:36:36 -0700191#if defined(ART_USE_LLVM_COMPILER)
192 UNIMPLEMENTED(FATAL);
193#else
Ian Rogers57b86d42012-03-27 16:05:41 -0700194 void* trace_stub = GetLogTraceEntryPoint();
jeffhaoe343b762011-12-05 16:36:44 -0800195 CHECK(GetSavedCodeFromMap(method) == NULL);
196 AddSavedCodeToMap(method, method->GetCode());
jeffhaob5e81852012-03-12 11:15:45 -0700197 method->SetCode(trace_stub);
Ian Rogers776ac1f2012-04-13 23:36:36 -0700198#endif
jeffhaoe343b762011-12-05 16:36:44 -0800199}
200
201void Trace::ResetSavedCode(Method* method) {
202 CHECK(GetSavedCodeFromMap(method) != NULL);
203 method->SetCode(GetSavedCodeFromMap(method));
204 RemoveSavedCodeFromMap(method);
205}
206
jeffhaoe343b762011-12-05 16:36:44 -0800207void Trace::Start(const char* trace_filename, int trace_fd, int buffer_size, int flags, bool direct_to_ddms) {
jeffhao2692b572011-12-16 15:42:28 -0800208 if (Runtime::Current()->IsMethodTracingActive()) {
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800209 LOG(INFO) << "Trace already in progress, ignoring this request";
jeffhaoe343b762011-12-05 16:36:44 -0800210 return;
211 }
212
Elliott Hughes34e06962012-04-09 13:55:55 -0700213 ScopedThreadStateChange tsc(Thread::Current(), kRunnable);
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800214 Runtime::Current()->GetThreadList()->SuspendAll(false);
215
jeffhao2692b572011-12-16 15:42:28 -0800216 // Open trace file if not going directly to ddms.
217 File* trace_file = NULL;
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800218 if (!direct_to_ddms) {
219 if (trace_fd < 0) {
jeffhao2692b572011-12-16 15:42:28 -0800220 trace_file = OS::OpenFile(trace_filename, true);
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800221 } else {
jeffhao2692b572011-12-16 15:42:28 -0800222 trace_file = OS::FileFromFd("tracefile", trace_fd);
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800223 }
jeffhao2692b572011-12-16 15:42:28 -0800224 if (trace_file == NULL) {
jeffhaob5e81852012-03-12 11:15:45 -0700225 PLOG(ERROR) << "Unable to open trace file '" << trace_filename << "'";
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800226 Thread::Current()->ThrowNewException("Ljava/lang/RuntimeException;",
227 StringPrintf("Unable to open trace file '%s'", trace_filename).c_str());
228 Runtime::Current()->GetThreadList()->ResumeAll(false);
229 return;
230 }
231 }
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800232
jeffhao2692b572011-12-16 15:42:28 -0800233 // Create Trace object.
jeffhao0791adc2012-04-04 11:14:32 -0700234 Trace* tracer(new Trace(trace_file, buffer_size, flags));
235
236 // Enable count of allocs if specified in the flags.
237 if ((flags && kTraceCountAllocs) != 0) {
238 Runtime::Current()->SetStatsEnabled(true);
239 }
240
jeffhao2692b572011-12-16 15:42:28 -0800241 Runtime::Current()->EnableMethodTracing(tracer);
242 tracer->BeginTracing();
243
244 Runtime::Current()->GetThreadList()->ResumeAll(false);
245}
246
247void Trace::Stop() {
248 if (!Runtime::Current()->IsMethodTracingActive()) {
249 LOG(INFO) << "Trace stop requested, but no trace currently running";
250 return;
251 }
252
Elliott Hughes34e06962012-04-09 13:55:55 -0700253 ScopedThreadStateChange tsc(Thread::Current(), kRunnable);
jeffhao2692b572011-12-16 15:42:28 -0800254 Runtime::Current()->GetThreadList()->SuspendAll(false);
255
256 Runtime::Current()->GetTracer()->FinishTracing();
257 Runtime::Current()->DisableMethodTracing();
258
259 Runtime::Current()->GetThreadList()->ResumeAll(false);
260}
261
jeffhaob5e81852012-03-12 11:15:45 -0700262void Trace::Shutdown() {
263 if (!Runtime::Current()->IsMethodTracingActive()) {
264 LOG(INFO) << "Trace shutdown requested, but no trace currently running";
265 return;
266 }
267 Runtime::Current()->GetTracer()->FinishTracing();
268 Runtime::Current()->DisableMethodTracing();
269}
270
jeffhao2692b572011-12-16 15:42:28 -0800271void Trace::BeginTracing() {
272 // Set the start time of tracing.
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800273 start_time_ = MicroTime();
274
jeffhao2692b572011-12-16 15:42:28 -0800275 // Set trace version and record size.
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800276 if (UseThreadCpuClock() && UseWallClock()) {
277 trace_version_ = kTraceVersionDualClock;
278 record_size_ = kTraceRecordSizeDualClock;
279 } else {
280 trace_version_ = kTraceVersionSingleClock;
281 record_size_ = kTraceRecordSizeSingleClock;
282 }
283
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800284 // Set up the beginning of the trace.
jeffhao2692b572011-12-16 15:42:28 -0800285 memset(buf_.get(), 0, kTraceHeaderLength);
286 Append4LE(buf_.get(), kTraceMagicValue);
287 Append2LE(buf_.get() + 4, trace_version_);
288 Append2LE(buf_.get() + 6, kTraceHeaderLength);
289 Append8LE(buf_.get() + 8, start_time_);
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800290 if (trace_version_ >= kTraceVersionDualClock) {
jeffhao2692b572011-12-16 15:42:28 -0800291 Append2LE(buf_.get() + 16, record_size_);
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800292 }
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800293
jeffhao2692b572011-12-16 15:42:28 -0800294 // Update current offset.
295 cur_offset_ = kTraceHeaderLength;
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800296
297 // Install all method tracing stubs.
jeffhaoe343b762011-12-05 16:36:44 -0800298 InstallStubs();
jeffhaoe343b762011-12-05 16:36:44 -0800299}
300
jeffhao2692b572011-12-16 15:42:28 -0800301void Trace::FinishTracing() {
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800302 // Uninstall all method tracing stubs.
jeffhaoe343b762011-12-05 16:36:44 -0800303 UninstallStubs();
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800304
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800305 // Compute elapsed time.
306 uint64_t elapsed = MicroTime() - start_time_;
307
308 size_t final_offset = cur_offset_;
309 uint32_t clock_overhead = GetClockOverhead();
310
jeffhao0791adc2012-04-04 11:14:32 -0700311 if ((flags_ & kTraceCountAllocs) != 0) {
312 Runtime::Current()->SetStatsEnabled(false);
313 }
314
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800315 GetVisitedMethods(final_offset);
316
317 std::ostringstream os;
318
319 os << StringPrintf("%cversion\n", kTraceTokenChar);
320 os << StringPrintf("%d\n", trace_version_);
321 os << StringPrintf("data-file-overflow=%s\n", overflow_ ? "true" : "false");
322 if (UseThreadCpuClock()) {
323 if (UseWallClock()) {
324 os << StringPrintf("clock=dual\n");
325 } else {
326 os << StringPrintf("clock=thread-cpu\n");
327 }
328 } else {
329 os << StringPrintf("clock=wall\n");
330 }
331 os << StringPrintf("elapsed-time-usec=%llu\n", elapsed);
Elliott Hughesad6c9c32012-01-19 17:39:12 -0800332 os << StringPrintf("num-method-calls=%zd\n", (final_offset - kTraceHeaderLength) / record_size_);
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800333 os << StringPrintf("clock-call-overhead-nsec=%d\n", clock_overhead);
334 os << StringPrintf("vm=art\n");
jeffhao0791adc2012-04-04 11:14:32 -0700335 if ((flags_ & kTraceCountAllocs) != 0) {
336 os << StringPrintf("alloc-count=%d\n", Runtime::Current()->GetStat(KIND_ALLOCATED_OBJECTS));
337 os << StringPrintf("alloc-size=%d\n", Runtime::Current()->GetStat(KIND_ALLOCATED_BYTES));
338 os << StringPrintf("gc-count=%d\n", Runtime::Current()->GetStat(KIND_GC_INVOCATIONS));
339 }
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800340 os << StringPrintf("%cthreads\n", kTraceTokenChar);
341 DumpThreadList(os);
342 os << StringPrintf("%cmethods\n", kTraceTokenChar);
343 DumpMethodList(os);
344 os << StringPrintf("%cend\n", kTraceTokenChar);
345
346 std::string header(os.str());
jeffhao2692b572011-12-16 15:42:28 -0800347 if (trace_file_.get() == NULL) {
Elliott Hughes7b9d9962012-04-20 18:48:18 -0700348 iovec iov[2];
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800349 iov[0].iov_base = reinterpret_cast<void*>(const_cast<char*>(header.c_str()));
350 iov[0].iov_len = header.length();
jeffhao2692b572011-12-16 15:42:28 -0800351 iov[1].iov_base = buf_.get();
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800352 iov[1].iov_len = final_offset;
353 Dbg::DdmSendChunkV(CHUNK_TYPE("MPSE"), iov, 2);
354 } else {
355 if (!trace_file_->WriteFully(header.c_str(), header.length()) ||
jeffhao2692b572011-12-16 15:42:28 -0800356 !trace_file_->WriteFully(buf_.get(), final_offset)) {
Elliott Hughes7b9d9962012-04-20 18:48:18 -0700357 std::string detail(StringPrintf("Trace data write failed: %s", strerror(errno)));
358 PLOG(ERROR) << detail;
359 Thread::Current()->ThrowNewException("Ljava/lang/RuntimeException;", detail.c_str());
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800360 }
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800361 }
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800362}
363
364void Trace::LogMethodTraceEvent(Thread* self, const Method* method, Trace::TraceEvent event) {
365 if (thread_clock_base_map_.find(self) == thread_clock_base_map_.end()) {
366 uint64_t time = ThreadCpuMicroTime();
Elliott Hughesa0e18062012-04-13 15:59:59 -0700367 thread_clock_base_map_.Put(self, time);
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800368 }
369
370 // Advance cur_offset_ atomically.
371 int32_t new_offset;
372 int32_t old_offset;
373 do {
374 old_offset = cur_offset_;
375 new_offset = old_offset + record_size_;
376 if (new_offset > buffer_size_) {
377 overflow_ = true;
378 return;
379 }
380 } while (android_atomic_release_cas(old_offset, new_offset, &cur_offset_) != 0);
381
382 uint32_t method_value = TraceMethodCombine(reinterpret_cast<uint32_t>(method), event);
383
384 // Write data
jeffhao2692b572011-12-16 15:42:28 -0800385 uint8_t* ptr = buf_.get() + old_offset;
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800386 Append2LE(ptr, self->GetTid());
387 Append4LE(ptr + 2, method_value);
388 ptr += 6;
389
390 if (UseThreadCpuClock()) {
391 uint64_t thread_clock_base = thread_clock_base_map_.find(self)->second;
392 uint32_t thread_clock_diff = ThreadCpuMicroTime() - thread_clock_base;
393 Append4LE(ptr, thread_clock_diff);
394 ptr += 4;
395 }
396
397 if (UseWallClock()) {
398 uint32_t wall_clock_diff = MicroTime() - start_time_;
399 Append4LE(ptr, wall_clock_diff);
400 }
401}
402
403void Trace::GetVisitedMethods(size_t end_offset) {
jeffhao2692b572011-12-16 15:42:28 -0800404 uint8_t* ptr = buf_.get() + kTraceHeaderLength;
405 uint8_t* end = buf_.get() + end_offset;
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800406
407 while (ptr < end) {
408 uint32_t method_value = ptr[2] | (ptr[3] << 8) | (ptr[4] << 16) | (ptr[5] << 24);
409 Method* method = reinterpret_cast<Method*>(TraceMethodId(method_value));
410 visited_methods_.insert(method);
411 ptr += record_size_;
412 }
413}
414
415void Trace::DumpMethodList(std::ostream& os) {
416 typedef std::set<const Method*>::const_iterator It; // TODO: C++0x auto
417 for (It it = visited_methods_.begin(); it != visited_methods_.end(); ++it) {
418 const Method* method = *it;
419 MethodHelper mh(method);
Elliott Hughesba8eee12012-01-24 20:25:24 -0800420 os << StringPrintf("%p\t%s\t%s\t%s\t%s\t%d\n", method,
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800421 PrettyDescriptor(mh.GetDeclaringClassDescriptor()).c_str(), mh.GetName(),
422 mh.GetSignature().c_str(), mh.GetDeclaringClassSourceFile(),
423 mh.GetLineNumFromNativePC(0));
424 }
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800425}
426
427static void DumpThread(Thread* t, void* arg) {
Elliott Hughesffb465f2012-03-01 18:46:05 -0800428 std::ostream& os = *reinterpret_cast<std::ostream*>(arg);
429 std::string name;
430 t->GetThreadName(name);
431 os << t->GetTid() << "\t" << name << "\n";
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800432}
433
434void Trace::DumpThreadList(std::ostream& os) {
435 ScopedThreadListLock thread_list_lock;
436 Runtime::Current()->GetThreadList()->ForEach(DumpThread, &os);
jeffhaoe343b762011-12-05 16:36:44 -0800437}
438
439void Trace::InstallStubs() {
jeffhaob5e81852012-03-12 11:15:45 -0700440 Runtime::Current()->GetClassLinker()->VisitClasses(InstallStubsClassVisitor, NULL);
jeffhaoe343b762011-12-05 16:36:44 -0800441}
442
443void Trace::UninstallStubs() {
jeffhaob5e81852012-03-12 11:15:45 -0700444 Runtime::Current()->GetClassLinker()->VisitClasses(UninstallStubsClassVisitor, NULL);
jeffhaoe343b762011-12-05 16:36:44 -0800445
446 // Restore stacks of all threads
447 {
448 ScopedThreadListLock thread_list_lock;
449 Runtime::Current()->GetThreadList()->ForEach(TraceRestoreStack, NULL);
450 }
jeffhaoe343b762011-12-05 16:36:44 -0800451}
452
Ian Rogers57b86d42012-03-27 16:05:41 -0700453uint32_t TraceMethodUnwindFromCode(Thread* self) {
454 Trace* tracer = Runtime::Current()->GetTracer();
455 TraceStackFrame trace_frame = self->PopTraceStackFrame();
456 Method* method = trace_frame.method_;
457 uint32_t lr = trace_frame.return_pc_;
458
459 tracer->LogMethodTraceEvent(self, method, Trace::kMethodTraceUnwind);
460
461 return lr;
462}
463
jeffhaoe343b762011-12-05 16:36:44 -0800464} // namespace art