blob: 61dd163b3339d7481e2a1e3538e20cf99a8a25e1 [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"
jeffhaoa9ef3fd2011-12-13 18:33:43 -080024#include "object_utils.h"
25#include "os.h"
jeffhaoe343b762011-12-05 16:36:44 -080026#include "runtime_support.h"
Elliott Hughes88c5c352012-03-15 18:49:48 -070027#include "scoped_thread_list_lock.h"
jeffhaoe343b762011-12-05 16:36:44 -080028#include "thread.h"
29
jeffhao2692b572011-12-16 15:42:28 -080030
31namespace art {
32
jeffhaoa9ef3fd2011-12-13 18:33:43 -080033static const uint32_t kTraceMethodActionMask = 0x03; // two bits
34static const char kTraceTokenChar = '*';
35static const uint16_t kTraceHeaderLength = 32;
36static const uint32_t kTraceMagicValue = 0x574f4c53;
37static const uint16_t kTraceVersionSingleClock = 2;
38static const uint16_t kTraceVersionDualClock = 3;
39static const uint16_t kTraceRecordSizeSingleClock = 10; // using v2
40static const uint16_t kTraceRecordSizeDualClock = 14; // using v3 with two timestamps
41
42static inline uint32_t TraceMethodId(uint32_t methodValue) {
43 return (methodValue & ~kTraceMethodActionMask);
44}
45static inline uint32_t TraceMethodCombine(uint32_t method, uint8_t traceEvent) {
46 return (method | traceEvent);
47}
48
Elliott Hughesffb465f2012-03-01 18:46:05 -080049static bool UseThreadCpuClock() {
jeffhaoa9ef3fd2011-12-13 18:33:43 -080050 // TODO: Allow control over which clock is used
51 return true;
52}
53
Elliott Hughesffb465f2012-03-01 18:46:05 -080054static bool UseWallClock() {
jeffhaoa9ef3fd2011-12-13 18:33:43 -080055 // TODO: Allow control over which clock is used
56 return true;
57}
58
Elliott Hughesffb465f2012-03-01 18:46:05 -080059static void MeasureClockOverhead() {
jeffhaoa9ef3fd2011-12-13 18:33:43 -080060 if (UseThreadCpuClock()) {
61 ThreadCpuMicroTime();
62 }
63 if (UseWallClock()) {
64 MicroTime();
65 }
66}
67
Elliott Hughesffb465f2012-03-01 18:46:05 -080068static uint32_t GetClockOverhead() {
jeffhaoa9ef3fd2011-12-13 18:33:43 -080069 uint64_t start = ThreadCpuMicroTime();
70
71 for (int i = 4000; i > 0; i--) {
72 MeasureClockOverhead();
73 MeasureClockOverhead();
74 MeasureClockOverhead();
75 MeasureClockOverhead();
76 MeasureClockOverhead();
77 MeasureClockOverhead();
78 MeasureClockOverhead();
79 MeasureClockOverhead();
80 }
81
82 uint64_t elapsed = ThreadCpuMicroTime() - start;
83 return uint32_t (elapsed / 32);
84}
85
Elliott Hughesffb465f2012-03-01 18:46:05 -080086// TODO: put this somewhere with the big-endian equivalent used by JDWP.
87static void Append2LE(uint8_t* buf, uint16_t val) {
jeffhaoa9ef3fd2011-12-13 18:33:43 -080088 *buf++ = (uint8_t) val;
89 *buf++ = (uint8_t) (val >> 8);
90}
91
Elliott Hughesffb465f2012-03-01 18:46:05 -080092// TODO: put this somewhere with the big-endian equivalent used by JDWP.
93static void Append4LE(uint8_t* buf, uint32_t val) {
jeffhaoa9ef3fd2011-12-13 18:33:43 -080094 *buf++ = (uint8_t) val;
95 *buf++ = (uint8_t) (val >> 8);
96 *buf++ = (uint8_t) (val >> 16);
97 *buf++ = (uint8_t) (val >> 24);
98}
99
Elliott Hughesffb465f2012-03-01 18:46:05 -0800100// TODO: put this somewhere with the big-endian equivalent used by JDWP.
101static void Append8LE(uint8_t* buf, uint64_t val) {
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800102 *buf++ = (uint8_t) val;
103 *buf++ = (uint8_t) (val >> 8);
104 *buf++ = (uint8_t) (val >> 16);
105 *buf++ = (uint8_t) (val >> 24);
106 *buf++ = (uint8_t) (val >> 32);
107 *buf++ = (uint8_t) (val >> 40);
108 *buf++ = (uint8_t) (val >> 48);
109 *buf++ = (uint8_t) (val >> 56);
110}
111
jeffhaob5e81852012-03-12 11:15:45 -0700112static bool InstallStubsClassVisitor(Class* klass, void*) {
jeffhao2692b572011-12-16 15:42:28 -0800113 Trace* tracer = Runtime::Current()->GetTracer();
jeffhaoe343b762011-12-05 16:36:44 -0800114 for (size_t i = 0; i < klass->NumDirectMethods(); i++) {
115 Method* method = klass->GetDirectMethod(i);
jeffhaob5e81852012-03-12 11:15:45 -0700116 if (tracer->GetSavedCodeFromMap(method) == NULL) {
117 tracer->SaveAndUpdateCode(method);
jeffhaoe343b762011-12-05 16:36:44 -0800118 }
119 }
120
121 for (size_t i = 0; i < klass->NumVirtualMethods(); i++) {
122 Method* method = klass->GetVirtualMethod(i);
jeffhaob5e81852012-03-12 11:15:45 -0700123 if (tracer->GetSavedCodeFromMap(method) == NULL) {
124 tracer->SaveAndUpdateCode(method);
jeffhaoe343b762011-12-05 16:36:44 -0800125 }
126 }
jeffhaoe343b762011-12-05 16:36:44 -0800127 return true;
128}
129
jeffhaob5e81852012-03-12 11:15:45 -0700130static bool UninstallStubsClassVisitor(Class* klass, void*) {
jeffhao2692b572011-12-16 15:42:28 -0800131 Trace* tracer = Runtime::Current()->GetTracer();
jeffhaoe343b762011-12-05 16:36:44 -0800132 for (size_t i = 0; i < klass->NumDirectMethods(); i++) {
133 Method* method = klass->GetDirectMethod(i);
jeffhao2692b572011-12-16 15:42:28 -0800134 if (tracer->GetSavedCodeFromMap(method) != NULL) {
135 tracer->ResetSavedCode(method);
jeffhaoe343b762011-12-05 16:36:44 -0800136 }
137 }
138
139 for (size_t i = 0; i < klass->NumVirtualMethods(); i++) {
140 Method* method = klass->GetVirtualMethod(i);
jeffhao2692b572011-12-16 15:42:28 -0800141 if (tracer->GetSavedCodeFromMap(method) != NULL) {
142 tracer->ResetSavedCode(method);
jeffhaoe343b762011-12-05 16:36:44 -0800143 }
144 }
jeffhaoe343b762011-12-05 16:36:44 -0800145 return true;
146}
147
jeffhaob5e81852012-03-12 11:15:45 -0700148#if defined(__arm__)
Elliott Hughes1bac54f2012-03-16 12:48:31 -0700149static void TraceRestoreStack(Thread* t, void*) {
jeffhaoe343b762011-12-05 16:36:44 -0800150 uintptr_t trace_exit = reinterpret_cast<uintptr_t>(art_trace_exit_from_code);
151
152 Frame frame = t->GetTopOfStack();
153 if (frame.GetSP() != 0) {
154 for ( ; frame.GetMethod() != 0; frame.Next()) {
155 if (t->IsTraceStackEmpty()) {
156 break;
157 }
158 uintptr_t pc = frame.GetReturnPC();
159 Method* method = frame.GetMethod();
160 if (trace_exit == pc) {
161 TraceStackFrame trace_frame = t->PopTraceStackFrame();
162 frame.SetReturnPC(trace_frame.return_pc_);
163 CHECK(method == trace_frame.method_);
164 }
165 }
166 }
jeffhaob5e81852012-03-12 11:15:45 -0700167}
Elliott Hughes1bac54f2012-03-16 12:48:31 -0700168#else
169static void TraceRestoreStack(Thread*, void*) {
170 UNIMPLEMENTED(WARNING);
171}
172#endif
jeffhaoe343b762011-12-05 16:36:44 -0800173
jeffhaoe343b762011-12-05 16:36:44 -0800174void Trace::AddSavedCodeToMap(const Method* method, const void* code) {
175 saved_code_map_.insert(std::make_pair(method, code));
176}
177
178void Trace::RemoveSavedCodeFromMap(const Method* method) {
179 saved_code_map_.erase(method);
180}
181
182const void* Trace::GetSavedCodeFromMap(const Method* method) {
jeffhao2692b572011-12-16 15:42:28 -0800183 typedef std::map<const Method*, const void*>::const_iterator It; // TODO: C++0x auto
184 It it = saved_code_map_.find(method);
185 if (it == saved_code_map_.end()) {
186 return NULL;
187 } else {
188 return it->second;
189 }
jeffhaoe343b762011-12-05 16:36:44 -0800190}
191
jeffhaob5e81852012-03-12 11:15:45 -0700192#if defined(__arm__)
Elliott Hughes1bac54f2012-03-16 12:48:31 -0700193void Trace::SaveAndUpdateCode(Method* method) {
jeffhaob5e81852012-03-12 11:15:45 -0700194 void* trace_stub = reinterpret_cast<void*>(art_trace_entry_from_code);
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);
jeffhaoe343b762011-12-05 16:36:44 -0800198}
Elliott Hughes1bac54f2012-03-16 12:48:31 -0700199#else
200void Trace::SaveAndUpdateCode(Method*) {
201 UNIMPLEMENTED(WARNING);
202}
203#endif
jeffhaoe343b762011-12-05 16:36:44 -0800204
205void Trace::ResetSavedCode(Method* method) {
206 CHECK(GetSavedCodeFromMap(method) != NULL);
207 method->SetCode(GetSavedCodeFromMap(method));
208 RemoveSavedCodeFromMap(method);
209}
210
jeffhaoe343b762011-12-05 16:36:44 -0800211void Trace::Start(const char* trace_filename, int trace_fd, int buffer_size, int flags, bool direct_to_ddms) {
jeffhao2692b572011-12-16 15:42:28 -0800212 if (Runtime::Current()->IsMethodTracingActive()) {
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800213 LOG(INFO) << "Trace already in progress, ignoring this request";
jeffhaoe343b762011-12-05 16:36:44 -0800214 return;
215 }
216
Elliott Hughes1bac54f2012-03-16 12:48:31 -0700217 // TODO: implement alloc counting.
218 if (flags != 0) {
219 UNIMPLEMENTED(FATAL) << "trace flags";
220 }
221
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800222 ScopedThreadStateChange tsc(Thread::Current(), Thread::kRunnable);
223 Runtime::Current()->GetThreadList()->SuspendAll(false);
224
jeffhao2692b572011-12-16 15:42:28 -0800225 // Open trace file if not going directly to ddms.
226 File* trace_file = NULL;
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800227 if (!direct_to_ddms) {
228 if (trace_fd < 0) {
jeffhao2692b572011-12-16 15:42:28 -0800229 trace_file = OS::OpenFile(trace_filename, true);
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800230 } else {
jeffhao2692b572011-12-16 15:42:28 -0800231 trace_file = OS::FileFromFd("tracefile", trace_fd);
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800232 }
jeffhao2692b572011-12-16 15:42:28 -0800233 if (trace_file == NULL) {
jeffhaob5e81852012-03-12 11:15:45 -0700234 PLOG(ERROR) << "Unable to open trace file '" << trace_filename << "'";
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800235 Thread::Current()->ThrowNewException("Ljava/lang/RuntimeException;",
236 StringPrintf("Unable to open trace file '%s'", trace_filename).c_str());
237 Runtime::Current()->GetThreadList()->ResumeAll(false);
238 return;
239 }
240 }
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800241
jeffhao2692b572011-12-16 15:42:28 -0800242 // Create Trace object.
243 Trace* tracer(new Trace(trace_file, buffer_size));
244 Runtime::Current()->EnableMethodTracing(tracer);
245 tracer->BeginTracing();
246
247 Runtime::Current()->GetThreadList()->ResumeAll(false);
248}
249
250void Trace::Stop() {
251 if (!Runtime::Current()->IsMethodTracingActive()) {
252 LOG(INFO) << "Trace stop requested, but no trace currently running";
253 return;
254 }
255
256 ScopedThreadStateChange tsc(Thread::Current(), Thread::kRunnable);
257 Runtime::Current()->GetThreadList()->SuspendAll(false);
258
259 Runtime::Current()->GetTracer()->FinishTracing();
260 Runtime::Current()->DisableMethodTracing();
261
262 Runtime::Current()->GetThreadList()->ResumeAll(false);
263}
264
jeffhaob5e81852012-03-12 11:15:45 -0700265void Trace::Shutdown() {
266 if (!Runtime::Current()->IsMethodTracingActive()) {
267 LOG(INFO) << "Trace shutdown requested, but no trace currently running";
268 return;
269 }
270 Runtime::Current()->GetTracer()->FinishTracing();
271 Runtime::Current()->DisableMethodTracing();
272}
273
jeffhao2692b572011-12-16 15:42:28 -0800274void Trace::BeginTracing() {
275 // Set the start time of tracing.
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800276 start_time_ = MicroTime();
277
jeffhao2692b572011-12-16 15:42:28 -0800278 // Set trace version and record size.
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800279 if (UseThreadCpuClock() && UseWallClock()) {
280 trace_version_ = kTraceVersionDualClock;
281 record_size_ = kTraceRecordSizeDualClock;
282 } else {
283 trace_version_ = kTraceVersionSingleClock;
284 record_size_ = kTraceRecordSizeSingleClock;
285 }
286
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800287 // Set up the beginning of the trace.
jeffhao2692b572011-12-16 15:42:28 -0800288 memset(buf_.get(), 0, kTraceHeaderLength);
289 Append4LE(buf_.get(), kTraceMagicValue);
290 Append2LE(buf_.get() + 4, trace_version_);
291 Append2LE(buf_.get() + 6, kTraceHeaderLength);
292 Append8LE(buf_.get() + 8, start_time_);
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800293 if (trace_version_ >= kTraceVersionDualClock) {
jeffhao2692b572011-12-16 15:42:28 -0800294 Append2LE(buf_.get() + 16, record_size_);
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800295 }
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800296
jeffhao2692b572011-12-16 15:42:28 -0800297 // Update current offset.
298 cur_offset_ = kTraceHeaderLength;
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800299
300 // Install all method tracing stubs.
jeffhaoe343b762011-12-05 16:36:44 -0800301 InstallStubs();
jeffhaoe343b762011-12-05 16:36:44 -0800302}
303
jeffhao2692b572011-12-16 15:42:28 -0800304void Trace::FinishTracing() {
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800305 // Uninstall all method tracing stubs.
jeffhaoe343b762011-12-05 16:36:44 -0800306 UninstallStubs();
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800307
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800308 // Compute elapsed time.
309 uint64_t elapsed = MicroTime() - start_time_;
310
311 size_t final_offset = cur_offset_;
312 uint32_t clock_overhead = GetClockOverhead();
313
314 GetVisitedMethods(final_offset);
315
316 std::ostringstream os;
317
318 os << StringPrintf("%cversion\n", kTraceTokenChar);
319 os << StringPrintf("%d\n", trace_version_);
320 os << StringPrintf("data-file-overflow=%s\n", overflow_ ? "true" : "false");
321 if (UseThreadCpuClock()) {
322 if (UseWallClock()) {
323 os << StringPrintf("clock=dual\n");
324 } else {
325 os << StringPrintf("clock=thread-cpu\n");
326 }
327 } else {
328 os << StringPrintf("clock=wall\n");
329 }
330 os << StringPrintf("elapsed-time-usec=%llu\n", elapsed);
Elliott Hughesad6c9c32012-01-19 17:39:12 -0800331 os << StringPrintf("num-method-calls=%zd\n", (final_offset - kTraceHeaderLength) / record_size_);
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800332 os << StringPrintf("clock-call-overhead-nsec=%d\n", clock_overhead);
333 os << StringPrintf("vm=art\n");
334 os << StringPrintf("%cthreads\n", kTraceTokenChar);
335 DumpThreadList(os);
336 os << StringPrintf("%cmethods\n", kTraceTokenChar);
337 DumpMethodList(os);
338 os << StringPrintf("%cend\n", kTraceTokenChar);
339
340 std::string header(os.str());
jeffhao2692b572011-12-16 15:42:28 -0800341 if (trace_file_.get() == NULL) {
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800342 struct iovec iov[2];
343 iov[0].iov_base = reinterpret_cast<void*>(const_cast<char*>(header.c_str()));
344 iov[0].iov_len = header.length();
jeffhao2692b572011-12-16 15:42:28 -0800345 iov[1].iov_base = buf_.get();
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800346 iov[1].iov_len = final_offset;
347 Dbg::DdmSendChunkV(CHUNK_TYPE("MPSE"), iov, 2);
348 } else {
349 if (!trace_file_->WriteFully(header.c_str(), header.length()) ||
jeffhao2692b572011-12-16 15:42:28 -0800350 !trace_file_->WriteFully(buf_.get(), final_offset)) {
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800351 int err = errno;
352 LOG(ERROR) << "Trace data write failed: " << strerror(err);
353 Thread::Current()->ThrowNewException("Ljava/lang/RuntimeException;",
354 StringPrintf("Trace data write failed: %s", strerror(err)).c_str());
355 }
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800356 }
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800357}
358
359void Trace::LogMethodTraceEvent(Thread* self, const Method* method, Trace::TraceEvent event) {
360 if (thread_clock_base_map_.find(self) == thread_clock_base_map_.end()) {
361 uint64_t time = ThreadCpuMicroTime();
362 thread_clock_base_map_.insert(std::make_pair(self, time));
363 }
364
365 // Advance cur_offset_ atomically.
366 int32_t new_offset;
367 int32_t old_offset;
368 do {
369 old_offset = cur_offset_;
370 new_offset = old_offset + record_size_;
371 if (new_offset > buffer_size_) {
372 overflow_ = true;
373 return;
374 }
375 } while (android_atomic_release_cas(old_offset, new_offset, &cur_offset_) != 0);
376
377 uint32_t method_value = TraceMethodCombine(reinterpret_cast<uint32_t>(method), event);
378
379 // Write data
jeffhao2692b572011-12-16 15:42:28 -0800380 uint8_t* ptr = buf_.get() + old_offset;
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800381 Append2LE(ptr, self->GetTid());
382 Append4LE(ptr + 2, method_value);
383 ptr += 6;
384
385 if (UseThreadCpuClock()) {
386 uint64_t thread_clock_base = thread_clock_base_map_.find(self)->second;
387 uint32_t thread_clock_diff = ThreadCpuMicroTime() - thread_clock_base;
388 Append4LE(ptr, thread_clock_diff);
389 ptr += 4;
390 }
391
392 if (UseWallClock()) {
393 uint32_t wall_clock_diff = MicroTime() - start_time_;
394 Append4LE(ptr, wall_clock_diff);
395 }
396}
397
398void Trace::GetVisitedMethods(size_t end_offset) {
jeffhao2692b572011-12-16 15:42:28 -0800399 uint8_t* ptr = buf_.get() + kTraceHeaderLength;
400 uint8_t* end = buf_.get() + end_offset;
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800401
402 while (ptr < end) {
403 uint32_t method_value = ptr[2] | (ptr[3] << 8) | (ptr[4] << 16) | (ptr[5] << 24);
404 Method* method = reinterpret_cast<Method*>(TraceMethodId(method_value));
405 visited_methods_.insert(method);
406 ptr += record_size_;
407 }
408}
409
410void Trace::DumpMethodList(std::ostream& os) {
411 typedef std::set<const Method*>::const_iterator It; // TODO: C++0x auto
412 for (It it = visited_methods_.begin(); it != visited_methods_.end(); ++it) {
413 const Method* method = *it;
414 MethodHelper mh(method);
Elliott Hughesba8eee12012-01-24 20:25:24 -0800415 os << StringPrintf("%p\t%s\t%s\t%s\t%s\t%d\n", method,
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800416 PrettyDescriptor(mh.GetDeclaringClassDescriptor()).c_str(), mh.GetName(),
417 mh.GetSignature().c_str(), mh.GetDeclaringClassSourceFile(),
418 mh.GetLineNumFromNativePC(0));
419 }
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800420}
421
422static void DumpThread(Thread* t, void* arg) {
Elliott Hughesffb465f2012-03-01 18:46:05 -0800423 std::ostream& os = *reinterpret_cast<std::ostream*>(arg);
424 std::string name;
425 t->GetThreadName(name);
426 os << t->GetTid() << "\t" << name << "\n";
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800427}
428
429void Trace::DumpThreadList(std::ostream& os) {
430 ScopedThreadListLock thread_list_lock;
431 Runtime::Current()->GetThreadList()->ForEach(DumpThread, &os);
jeffhaoe343b762011-12-05 16:36:44 -0800432}
433
434void Trace::InstallStubs() {
jeffhaob5e81852012-03-12 11:15:45 -0700435 Runtime::Current()->GetClassLinker()->VisitClasses(InstallStubsClassVisitor, NULL);
jeffhaoe343b762011-12-05 16:36:44 -0800436}
437
438void Trace::UninstallStubs() {
jeffhaob5e81852012-03-12 11:15:45 -0700439 Runtime::Current()->GetClassLinker()->VisitClasses(UninstallStubsClassVisitor, NULL);
jeffhaoe343b762011-12-05 16:36:44 -0800440
441 // Restore stacks of all threads
442 {
443 ScopedThreadListLock thread_list_lock;
444 Runtime::Current()->GetThreadList()->ForEach(TraceRestoreStack, NULL);
445 }
jeffhaoe343b762011-12-05 16:36:44 -0800446}
447
448} // namespace art