blob: f5d118d817d4e77b787873f29728148e18387405 [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"
27#include "thread.h"
28
jeffhao2692b572011-12-16 15:42:28 -080029
30namespace art {
31
jeffhaoa9ef3fd2011-12-13 18:33:43 -080032static const uint32_t kTraceMethodActionMask = 0x03; // two bits
33static const char kTraceTokenChar = '*';
34static const uint16_t kTraceHeaderLength = 32;
35static const uint32_t kTraceMagicValue = 0x574f4c53;
36static const uint16_t kTraceVersionSingleClock = 2;
37static const uint16_t kTraceVersionDualClock = 3;
38static const uint16_t kTraceRecordSizeSingleClock = 10; // using v2
39static const uint16_t kTraceRecordSizeDualClock = 14; // using v3 with two timestamps
40
41static inline uint32_t TraceMethodId(uint32_t methodValue) {
42 return (methodValue & ~kTraceMethodActionMask);
43}
44static inline uint32_t TraceMethodCombine(uint32_t method, uint8_t traceEvent) {
45 return (method | traceEvent);
46}
47
jeffhaoa9ef3fd2011-12-13 18:33:43 -080048bool UseThreadCpuClock() {
49 // TODO: Allow control over which clock is used
50 return true;
51}
52
53bool UseWallClock() {
54 // TODO: Allow control over which clock is used
55 return true;
56}
57
58void MeasureClockOverhead() {
59 if (UseThreadCpuClock()) {
60 ThreadCpuMicroTime();
61 }
62 if (UseWallClock()) {
63 MicroTime();
64 }
65}
66
67uint32_t GetClockOverhead() {
68 uint64_t start = ThreadCpuMicroTime();
69
70 for (int i = 4000; i > 0; i--) {
71 MeasureClockOverhead();
72 MeasureClockOverhead();
73 MeasureClockOverhead();
74 MeasureClockOverhead();
75 MeasureClockOverhead();
76 MeasureClockOverhead();
77 MeasureClockOverhead();
78 MeasureClockOverhead();
79 }
80
81 uint64_t elapsed = ThreadCpuMicroTime() - start;
82 return uint32_t (elapsed / 32);
83}
84
85void Append2LE(uint8_t* buf, uint16_t val) {
86 *buf++ = (uint8_t) val;
87 *buf++ = (uint8_t) (val >> 8);
88}
89
90void Append4LE(uint8_t* buf, uint32_t val) {
91 *buf++ = (uint8_t) val;
92 *buf++ = (uint8_t) (val >> 8);
93 *buf++ = (uint8_t) (val >> 16);
94 *buf++ = (uint8_t) (val >> 24);
95}
96
97void Append8LE(uint8_t* buf, uint64_t val) {
98 *buf++ = (uint8_t) val;
99 *buf++ = (uint8_t) (val >> 8);
100 *buf++ = (uint8_t) (val >> 16);
101 *buf++ = (uint8_t) (val >> 24);
102 *buf++ = (uint8_t) (val >> 32);
103 *buf++ = (uint8_t) (val >> 40);
104 *buf++ = (uint8_t) (val >> 48);
105 *buf++ = (uint8_t) (val >> 56);
106}
107
jeffhaoe343b762011-12-05 16:36:44 -0800108#if defined(__arm__)
109static bool InstallStubsClassVisitor(Class* klass, void* trace_stub) {
jeffhao2692b572011-12-16 15:42:28 -0800110 Trace* tracer = Runtime::Current()->GetTracer();
jeffhaoe343b762011-12-05 16:36:44 -0800111 for (size_t i = 0; i < klass->NumDirectMethods(); i++) {
112 Method* method = klass->GetDirectMethod(i);
113 if (method->GetCode() != trace_stub) {
jeffhao2692b572011-12-16 15:42:28 -0800114 tracer->SaveAndUpdateCode(method, trace_stub);
jeffhaoe343b762011-12-05 16:36:44 -0800115 }
116 }
117
118 for (size_t i = 0; i < klass->NumVirtualMethods(); i++) {
119 Method* method = klass->GetVirtualMethod(i);
120 if (method->GetCode() != trace_stub) {
jeffhao2692b572011-12-16 15:42:28 -0800121 tracer->SaveAndUpdateCode(method, trace_stub);
jeffhaoe343b762011-12-05 16:36:44 -0800122 }
123 }
jeffhaoe343b762011-12-05 16:36:44 -0800124 return true;
125}
126
127static bool UninstallStubsClassVisitor(Class* klass, void* trace_stub) {
jeffhao2692b572011-12-16 15:42:28 -0800128 Trace* tracer = Runtime::Current()->GetTracer();
jeffhaoe343b762011-12-05 16:36:44 -0800129 for (size_t i = 0; i < klass->NumDirectMethods(); i++) {
130 Method* method = klass->GetDirectMethod(i);
jeffhao2692b572011-12-16 15:42:28 -0800131 if (tracer->GetSavedCodeFromMap(method) != NULL) {
132 tracer->ResetSavedCode(method);
jeffhaoe343b762011-12-05 16:36:44 -0800133 }
134 }
135
136 for (size_t i = 0; i < klass->NumVirtualMethods(); i++) {
137 Method* method = klass->GetVirtualMethod(i);
jeffhao2692b572011-12-16 15:42:28 -0800138 if (tracer->GetSavedCodeFromMap(method) != NULL) {
139 tracer->ResetSavedCode(method);
jeffhaoe343b762011-12-05 16:36:44 -0800140 }
141 }
jeffhaoe343b762011-12-05 16:36:44 -0800142 return true;
143}
144
145static void TraceRestoreStack(Thread* t, void*) {
146 uintptr_t trace_exit = reinterpret_cast<uintptr_t>(art_trace_exit_from_code);
147
148 Frame frame = t->GetTopOfStack();
149 if (frame.GetSP() != 0) {
150 for ( ; frame.GetMethod() != 0; frame.Next()) {
151 if (t->IsTraceStackEmpty()) {
152 break;
153 }
154 uintptr_t pc = frame.GetReturnPC();
155 Method* method = frame.GetMethod();
156 if (trace_exit == pc) {
157 TraceStackFrame trace_frame = t->PopTraceStackFrame();
158 frame.SetReturnPC(trace_frame.return_pc_);
159 CHECK(method == trace_frame.method_);
160 }
161 }
162 }
163}
164#endif
165
jeffhaoe343b762011-12-05 16:36:44 -0800166void Trace::AddSavedCodeToMap(const Method* method, const void* code) {
167 saved_code_map_.insert(std::make_pair(method, code));
168}
169
170void Trace::RemoveSavedCodeFromMap(const Method* method) {
171 saved_code_map_.erase(method);
172}
173
174const void* Trace::GetSavedCodeFromMap(const Method* method) {
jeffhao2692b572011-12-16 15:42:28 -0800175 typedef std::map<const Method*, const void*>::const_iterator It; // TODO: C++0x auto
176 It it = saved_code_map_.find(method);
177 if (it == saved_code_map_.end()) {
178 return NULL;
179 } else {
180 return it->second;
181 }
jeffhaoe343b762011-12-05 16:36:44 -0800182}
183
184void Trace::SaveAndUpdateCode(Method* method, const void* new_code) {
185 CHECK(GetSavedCodeFromMap(method) == NULL);
186 AddSavedCodeToMap(method, method->GetCode());
187 method->SetCode(new_code);
188}
189
190void Trace::ResetSavedCode(Method* method) {
191 CHECK(GetSavedCodeFromMap(method) != NULL);
192 method->SetCode(GetSavedCodeFromMap(method));
193 RemoveSavedCodeFromMap(method);
194}
195
jeffhaoe343b762011-12-05 16:36:44 -0800196void Trace::Start(const char* trace_filename, int trace_fd, int buffer_size, int flags, bool direct_to_ddms) {
jeffhao2692b572011-12-16 15:42:28 -0800197 if (Runtime::Current()->IsMethodTracingActive()) {
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800198 LOG(INFO) << "Trace already in progress, ignoring this request";
jeffhaoe343b762011-12-05 16:36:44 -0800199 return;
200 }
201
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800202 ScopedThreadStateChange tsc(Thread::Current(), Thread::kRunnable);
203 Runtime::Current()->GetThreadList()->SuspendAll(false);
204
jeffhao2692b572011-12-16 15:42:28 -0800205 // Open trace file if not going directly to ddms.
206 File* trace_file = NULL;
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800207 if (!direct_to_ddms) {
208 if (trace_fd < 0) {
jeffhao2692b572011-12-16 15:42:28 -0800209 trace_file = OS::OpenFile(trace_filename, true);
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800210 } else {
jeffhao2692b572011-12-16 15:42:28 -0800211 trace_file = OS::FileFromFd("tracefile", trace_fd);
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800212 }
jeffhao2692b572011-12-16 15:42:28 -0800213 if (trace_file == NULL) {
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800214 PLOG(ERROR) << "Unable to open trace file '" << trace_filename;
215 Thread::Current()->ThrowNewException("Ljava/lang/RuntimeException;",
216 StringPrintf("Unable to open trace file '%s'", trace_filename).c_str());
217 Runtime::Current()->GetThreadList()->ResumeAll(false);
218 return;
219 }
220 }
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800221
jeffhao2692b572011-12-16 15:42:28 -0800222 // Create Trace object.
223 Trace* tracer(new Trace(trace_file, buffer_size));
224 Runtime::Current()->EnableMethodTracing(tracer);
225 tracer->BeginTracing();
226
227 Runtime::Current()->GetThreadList()->ResumeAll(false);
228}
229
230void Trace::Stop() {
231 if (!Runtime::Current()->IsMethodTracingActive()) {
232 LOG(INFO) << "Trace stop requested, but no trace currently running";
233 return;
234 }
235
236 ScopedThreadStateChange tsc(Thread::Current(), Thread::kRunnable);
237 Runtime::Current()->GetThreadList()->SuspendAll(false);
238
239 Runtime::Current()->GetTracer()->FinishTracing();
240 Runtime::Current()->DisableMethodTracing();
241
242 Runtime::Current()->GetThreadList()->ResumeAll(false);
243}
244
245void Trace::BeginTracing() {
246 // Set the start time of tracing.
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800247 start_time_ = MicroTime();
248
jeffhao2692b572011-12-16 15:42:28 -0800249 // Set trace version and record size.
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800250 if (UseThreadCpuClock() && UseWallClock()) {
251 trace_version_ = kTraceVersionDualClock;
252 record_size_ = kTraceRecordSizeDualClock;
253 } else {
254 trace_version_ = kTraceVersionSingleClock;
255 record_size_ = kTraceRecordSizeSingleClock;
256 }
257
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800258 // Set up the beginning of the trace.
jeffhao2692b572011-12-16 15:42:28 -0800259 memset(buf_.get(), 0, kTraceHeaderLength);
260 Append4LE(buf_.get(), kTraceMagicValue);
261 Append2LE(buf_.get() + 4, trace_version_);
262 Append2LE(buf_.get() + 6, kTraceHeaderLength);
263 Append8LE(buf_.get() + 8, start_time_);
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800264 if (trace_version_ >= kTraceVersionDualClock) {
jeffhao2692b572011-12-16 15:42:28 -0800265 Append2LE(buf_.get() + 16, record_size_);
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800266 }
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800267
jeffhao2692b572011-12-16 15:42:28 -0800268 // Update current offset.
269 cur_offset_ = kTraceHeaderLength;
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800270
271 // Install all method tracing stubs.
jeffhaoe343b762011-12-05 16:36:44 -0800272 InstallStubs();
jeffhaoe343b762011-12-05 16:36:44 -0800273}
274
jeffhao2692b572011-12-16 15:42:28 -0800275void Trace::FinishTracing() {
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800276 // Uninstall all method tracing stubs.
jeffhaoe343b762011-12-05 16:36:44 -0800277 UninstallStubs();
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800278
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800279 // Compute elapsed time.
280 uint64_t elapsed = MicroTime() - start_time_;
281
282 size_t final_offset = cur_offset_;
283 uint32_t clock_overhead = GetClockOverhead();
284
285 GetVisitedMethods(final_offset);
286
287 std::ostringstream os;
288
289 os << StringPrintf("%cversion\n", kTraceTokenChar);
290 os << StringPrintf("%d\n", trace_version_);
291 os << StringPrintf("data-file-overflow=%s\n", overflow_ ? "true" : "false");
292 if (UseThreadCpuClock()) {
293 if (UseWallClock()) {
294 os << StringPrintf("clock=dual\n");
295 } else {
296 os << StringPrintf("clock=thread-cpu\n");
297 }
298 } else {
299 os << StringPrintf("clock=wall\n");
300 }
301 os << StringPrintf("elapsed-time-usec=%llu\n", elapsed);
Elliott Hughesad6c9c32012-01-19 17:39:12 -0800302 os << StringPrintf("num-method-calls=%zd\n", (final_offset - kTraceHeaderLength) / record_size_);
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800303 os << StringPrintf("clock-call-overhead-nsec=%d\n", clock_overhead);
304 os << StringPrintf("vm=art\n");
305 os << StringPrintf("%cthreads\n", kTraceTokenChar);
306 DumpThreadList(os);
307 os << StringPrintf("%cmethods\n", kTraceTokenChar);
308 DumpMethodList(os);
309 os << StringPrintf("%cend\n", kTraceTokenChar);
310
311 std::string header(os.str());
jeffhao2692b572011-12-16 15:42:28 -0800312 if (trace_file_.get() == NULL) {
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800313 struct iovec iov[2];
314 iov[0].iov_base = reinterpret_cast<void*>(const_cast<char*>(header.c_str()));
315 iov[0].iov_len = header.length();
jeffhao2692b572011-12-16 15:42:28 -0800316 iov[1].iov_base = buf_.get();
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800317 iov[1].iov_len = final_offset;
318 Dbg::DdmSendChunkV(CHUNK_TYPE("MPSE"), iov, 2);
319 } else {
320 if (!trace_file_->WriteFully(header.c_str(), header.length()) ||
jeffhao2692b572011-12-16 15:42:28 -0800321 !trace_file_->WriteFully(buf_.get(), final_offset)) {
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800322 int err = errno;
323 LOG(ERROR) << "Trace data write failed: " << strerror(err);
324 Thread::Current()->ThrowNewException("Ljava/lang/RuntimeException;",
325 StringPrintf("Trace data write failed: %s", strerror(err)).c_str());
326 }
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800327 }
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800328}
329
330void Trace::LogMethodTraceEvent(Thread* self, const Method* method, Trace::TraceEvent event) {
331 if (thread_clock_base_map_.find(self) == thread_clock_base_map_.end()) {
332 uint64_t time = ThreadCpuMicroTime();
333 thread_clock_base_map_.insert(std::make_pair(self, time));
334 }
335
336 // Advance cur_offset_ atomically.
337 int32_t new_offset;
338 int32_t old_offset;
339 do {
340 old_offset = cur_offset_;
341 new_offset = old_offset + record_size_;
342 if (new_offset > buffer_size_) {
343 overflow_ = true;
344 return;
345 }
346 } while (android_atomic_release_cas(old_offset, new_offset, &cur_offset_) != 0);
347
348 uint32_t method_value = TraceMethodCombine(reinterpret_cast<uint32_t>(method), event);
349
350 // Write data
jeffhao2692b572011-12-16 15:42:28 -0800351 uint8_t* ptr = buf_.get() + old_offset;
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800352 Append2LE(ptr, self->GetTid());
353 Append4LE(ptr + 2, method_value);
354 ptr += 6;
355
356 if (UseThreadCpuClock()) {
357 uint64_t thread_clock_base = thread_clock_base_map_.find(self)->second;
358 uint32_t thread_clock_diff = ThreadCpuMicroTime() - thread_clock_base;
359 Append4LE(ptr, thread_clock_diff);
360 ptr += 4;
361 }
362
363 if (UseWallClock()) {
364 uint32_t wall_clock_diff = MicroTime() - start_time_;
365 Append4LE(ptr, wall_clock_diff);
366 }
367}
368
369void Trace::GetVisitedMethods(size_t end_offset) {
jeffhao2692b572011-12-16 15:42:28 -0800370 uint8_t* ptr = buf_.get() + kTraceHeaderLength;
371 uint8_t* end = buf_.get() + end_offset;
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800372
373 while (ptr < end) {
374 uint32_t method_value = ptr[2] | (ptr[3] << 8) | (ptr[4] << 16) | (ptr[5] << 24);
375 Method* method = reinterpret_cast<Method*>(TraceMethodId(method_value));
376 visited_methods_.insert(method);
377 ptr += record_size_;
378 }
379}
380
381void Trace::DumpMethodList(std::ostream& os) {
382 typedef std::set<const Method*>::const_iterator It; // TODO: C++0x auto
383 for (It it = visited_methods_.begin(); it != visited_methods_.end(); ++it) {
384 const Method* method = *it;
385 MethodHelper mh(method);
Elliott Hughesba8eee12012-01-24 20:25:24 -0800386 os << StringPrintf("%p\t%s\t%s\t%s\t%s\t%d\n", method,
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800387 PrettyDescriptor(mh.GetDeclaringClassDescriptor()).c_str(), mh.GetName(),
388 mh.GetSignature().c_str(), mh.GetDeclaringClassSourceFile(),
389 mh.GetLineNumFromNativePC(0));
390 }
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800391}
392
393static void DumpThread(Thread* t, void* arg) {
394 std::ostream* os = reinterpret_cast<std::ostream*>(arg);
Elliott Hughes899e7892012-01-24 14:57:32 -0800395 *os << StringPrintf("%d\t%s\n", t->GetTid(), t->GetThreadName()->ToModifiedUtf8().c_str());
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800396}
397
398void Trace::DumpThreadList(std::ostream& os) {
399 ScopedThreadListLock thread_list_lock;
400 Runtime::Current()->GetThreadList()->ForEach(DumpThread, &os);
jeffhaoe343b762011-12-05 16:36:44 -0800401}
402
403void Trace::InstallStubs() {
404#if defined(__arm__)
jeffhaoe343b762011-12-05 16:36:44 -0800405 void* trace_stub = reinterpret_cast<void*>(art_trace_entry_from_code);
406 Runtime::Current()->GetClassLinker()->VisitClasses(InstallStubsClassVisitor, trace_stub);
jeffhaoe343b762011-12-05 16:36:44 -0800407#else
408 UNIMPLEMENTED(WARNING);
409#endif
410}
411
412void Trace::UninstallStubs() {
413#if defined(__arm__)
jeffhaoe343b762011-12-05 16:36:44 -0800414 void* trace_stub = reinterpret_cast<void*>(art_trace_entry_from_code);
415 Runtime::Current()->GetClassLinker()->VisitClasses(UninstallStubsClassVisitor, trace_stub);
416
417 // Restore stacks of all threads
418 {
419 ScopedThreadListLock thread_list_lock;
420 Runtime::Current()->GetThreadList()->ForEach(TraceRestoreStack, NULL);
421 }
jeffhaoe343b762011-12-05 16:36:44 -0800422#else
423 UNIMPLEMENTED(WARNING);
424#endif
425}
426
427} // namespace art