blob: 3c2f1b201e4d81d740a3104ba728276310422b43 [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 }
124
125 if (!klass->IsArrayClass() && !klass->IsPrimitive()) {
126 CodeAndDirectMethods* c_and_dm = klass->GetDexCache()->GetCodeAndDirectMethods();
127 for (size_t i = 0; i < c_and_dm->NumCodeAndDirectMethods(); i++) {
128 Method* method = c_and_dm->GetResolvedMethod(i);
129 if (method != NULL && (size_t) method != i) {
130 c_and_dm->SetResolvedDirectMethodTraceEntry(i, trace_stub);
131 }
132 }
133 }
134 return true;
135}
136
137static bool UninstallStubsClassVisitor(Class* klass, void* trace_stub) {
jeffhao2692b572011-12-16 15:42:28 -0800138 Trace* tracer = Runtime::Current()->GetTracer();
jeffhaoe343b762011-12-05 16:36:44 -0800139 for (size_t i = 0; i < klass->NumDirectMethods(); i++) {
140 Method* method = klass->GetDirectMethod(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 }
145
146 for (size_t i = 0; i < klass->NumVirtualMethods(); i++) {
147 Method* method = klass->GetVirtualMethod(i);
jeffhao2692b572011-12-16 15:42:28 -0800148 if (tracer->GetSavedCodeFromMap(method) != NULL) {
149 tracer->ResetSavedCode(method);
jeffhaoe343b762011-12-05 16:36:44 -0800150 }
151 }
152
153 if (!klass->IsArrayClass() && !klass->IsPrimitive()) {
154 CodeAndDirectMethods* c_and_dm = klass->GetDexCache()->GetCodeAndDirectMethods();
155 for (size_t i = 0; i < c_and_dm->NumCodeAndDirectMethods(); i++) {
156 const void* code = c_and_dm->GetResolvedCode(i);
157 if (code == trace_stub) {
158 Method* method = klass->GetDexCache()->GetResolvedMethod(i);
jeffhao2692b572011-12-16 15:42:28 -0800159 if (tracer->GetSavedCodeFromMap(method) != NULL) {
160 tracer->ResetSavedCode(method);
jeffhaoe343b762011-12-05 16:36:44 -0800161 }
162 c_and_dm->SetResolvedDirectMethod(i, method);
163 }
164 }
165 }
166 return true;
167}
168
169static void TraceRestoreStack(Thread* t, void*) {
170 uintptr_t trace_exit = reinterpret_cast<uintptr_t>(art_trace_exit_from_code);
171
172 Frame frame = t->GetTopOfStack();
173 if (frame.GetSP() != 0) {
174 for ( ; frame.GetMethod() != 0; frame.Next()) {
175 if (t->IsTraceStackEmpty()) {
176 break;
177 }
178 uintptr_t pc = frame.GetReturnPC();
179 Method* method = frame.GetMethod();
180 if (trace_exit == pc) {
181 TraceStackFrame trace_frame = t->PopTraceStackFrame();
182 frame.SetReturnPC(trace_frame.return_pc_);
183 CHECK(method == trace_frame.method_);
184 }
185 }
186 }
187}
188#endif
189
jeffhaoe343b762011-12-05 16:36:44 -0800190void Trace::AddSavedCodeToMap(const Method* method, const void* code) {
191 saved_code_map_.insert(std::make_pair(method, code));
192}
193
194void Trace::RemoveSavedCodeFromMap(const Method* method) {
195 saved_code_map_.erase(method);
196}
197
198const void* Trace::GetSavedCodeFromMap(const Method* method) {
jeffhao2692b572011-12-16 15:42:28 -0800199 typedef std::map<const Method*, const void*>::const_iterator It; // TODO: C++0x auto
200 It it = saved_code_map_.find(method);
201 if (it == saved_code_map_.end()) {
202 return NULL;
203 } else {
204 return it->second;
205 }
jeffhaoe343b762011-12-05 16:36:44 -0800206}
207
208void Trace::SaveAndUpdateCode(Method* method, const void* new_code) {
209 CHECK(GetSavedCodeFromMap(method) == NULL);
210 AddSavedCodeToMap(method, method->GetCode());
211 method->SetCode(new_code);
212}
213
214void Trace::ResetSavedCode(Method* method) {
215 CHECK(GetSavedCodeFromMap(method) != NULL);
216 method->SetCode(GetSavedCodeFromMap(method));
217 RemoveSavedCodeFromMap(method);
218}
219
jeffhaoe343b762011-12-05 16:36:44 -0800220void Trace::Start(const char* trace_filename, int trace_fd, int buffer_size, int flags, bool direct_to_ddms) {
jeffhao2692b572011-12-16 15:42:28 -0800221 if (Runtime::Current()->IsMethodTracingActive()) {
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800222 LOG(INFO) << "Trace already in progress, ignoring this request";
jeffhaoe343b762011-12-05 16:36:44 -0800223 return;
224 }
225
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800226 ScopedThreadStateChange tsc(Thread::Current(), Thread::kRunnable);
227 Runtime::Current()->GetThreadList()->SuspendAll(false);
228
jeffhao2692b572011-12-16 15:42:28 -0800229 // Open trace file if not going directly to ddms.
230 File* trace_file = NULL;
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800231 if (!direct_to_ddms) {
232 if (trace_fd < 0) {
jeffhao2692b572011-12-16 15:42:28 -0800233 trace_file = OS::OpenFile(trace_filename, true);
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800234 } else {
jeffhao2692b572011-12-16 15:42:28 -0800235 trace_file = OS::FileFromFd("tracefile", trace_fd);
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800236 }
jeffhao2692b572011-12-16 15:42:28 -0800237 if (trace_file == NULL) {
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800238 PLOG(ERROR) << "Unable to open trace file '" << trace_filename;
239 Thread::Current()->ThrowNewException("Ljava/lang/RuntimeException;",
240 StringPrintf("Unable to open trace file '%s'", trace_filename).c_str());
241 Runtime::Current()->GetThreadList()->ResumeAll(false);
242 return;
243 }
244 }
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800245
jeffhao2692b572011-12-16 15:42:28 -0800246 // Create Trace object.
247 Trace* tracer(new Trace(trace_file, buffer_size));
248 Runtime::Current()->EnableMethodTracing(tracer);
249 tracer->BeginTracing();
250
251 Runtime::Current()->GetThreadList()->ResumeAll(false);
252}
253
254void Trace::Stop() {
255 if (!Runtime::Current()->IsMethodTracingActive()) {
256 LOG(INFO) << "Trace stop requested, but no trace currently running";
257 return;
258 }
259
260 ScopedThreadStateChange tsc(Thread::Current(), Thread::kRunnable);
261 Runtime::Current()->GetThreadList()->SuspendAll(false);
262
263 Runtime::Current()->GetTracer()->FinishTracing();
264 Runtime::Current()->DisableMethodTracing();
265
266 Runtime::Current()->GetThreadList()->ResumeAll(false);
267}
268
269void Trace::BeginTracing() {
270 // Set the start time of tracing.
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800271 start_time_ = MicroTime();
272
jeffhao2692b572011-12-16 15:42:28 -0800273 // Set trace version and record size.
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800274 if (UseThreadCpuClock() && UseWallClock()) {
275 trace_version_ = kTraceVersionDualClock;
276 record_size_ = kTraceRecordSizeDualClock;
277 } else {
278 trace_version_ = kTraceVersionSingleClock;
279 record_size_ = kTraceRecordSizeSingleClock;
280 }
281
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800282 // Set up the beginning of the trace.
jeffhao2692b572011-12-16 15:42:28 -0800283 memset(buf_.get(), 0, kTraceHeaderLength);
284 Append4LE(buf_.get(), kTraceMagicValue);
285 Append2LE(buf_.get() + 4, trace_version_);
286 Append2LE(buf_.get() + 6, kTraceHeaderLength);
287 Append8LE(buf_.get() + 8, start_time_);
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800288 if (trace_version_ >= kTraceVersionDualClock) {
jeffhao2692b572011-12-16 15:42:28 -0800289 Append2LE(buf_.get() + 16, record_size_);
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800290 }
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800291
jeffhao2692b572011-12-16 15:42:28 -0800292 // Update current offset.
293 cur_offset_ = kTraceHeaderLength;
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800294
295 // Install all method tracing stubs.
jeffhaoe343b762011-12-05 16:36:44 -0800296 InstallStubs();
jeffhaoe343b762011-12-05 16:36:44 -0800297}
298
jeffhao2692b572011-12-16 15:42:28 -0800299void Trace::FinishTracing() {
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800300 // Uninstall all method tracing stubs.
jeffhaoe343b762011-12-05 16:36:44 -0800301 UninstallStubs();
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800302
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800303 // Compute elapsed time.
304 uint64_t elapsed = MicroTime() - start_time_;
305
306 size_t final_offset = cur_offset_;
307 uint32_t clock_overhead = GetClockOverhead();
308
309 GetVisitedMethods(final_offset);
310
311 std::ostringstream os;
312
313 os << StringPrintf("%cversion\n", kTraceTokenChar);
314 os << StringPrintf("%d\n", trace_version_);
315 os << StringPrintf("data-file-overflow=%s\n", overflow_ ? "true" : "false");
316 if (UseThreadCpuClock()) {
317 if (UseWallClock()) {
318 os << StringPrintf("clock=dual\n");
319 } else {
320 os << StringPrintf("clock=thread-cpu\n");
321 }
322 } else {
323 os << StringPrintf("clock=wall\n");
324 }
325 os << StringPrintf("elapsed-time-usec=%llu\n", elapsed);
Elliott Hughesad6c9c32012-01-19 17:39:12 -0800326 os << StringPrintf("num-method-calls=%zd\n", (final_offset - kTraceHeaderLength) / record_size_);
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800327 os << StringPrintf("clock-call-overhead-nsec=%d\n", clock_overhead);
328 os << StringPrintf("vm=art\n");
329 os << StringPrintf("%cthreads\n", kTraceTokenChar);
330 DumpThreadList(os);
331 os << StringPrintf("%cmethods\n", kTraceTokenChar);
332 DumpMethodList(os);
333 os << StringPrintf("%cend\n", kTraceTokenChar);
334
335 std::string header(os.str());
jeffhao2692b572011-12-16 15:42:28 -0800336 if (trace_file_.get() == NULL) {
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800337 struct iovec iov[2];
338 iov[0].iov_base = reinterpret_cast<void*>(const_cast<char*>(header.c_str()));
339 iov[0].iov_len = header.length();
jeffhao2692b572011-12-16 15:42:28 -0800340 iov[1].iov_base = buf_.get();
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800341 iov[1].iov_len = final_offset;
342 Dbg::DdmSendChunkV(CHUNK_TYPE("MPSE"), iov, 2);
343 } else {
344 if (!trace_file_->WriteFully(header.c_str(), header.length()) ||
jeffhao2692b572011-12-16 15:42:28 -0800345 !trace_file_->WriteFully(buf_.get(), final_offset)) {
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800346 int err = errno;
347 LOG(ERROR) << "Trace data write failed: " << strerror(err);
348 Thread::Current()->ThrowNewException("Ljava/lang/RuntimeException;",
349 StringPrintf("Trace data write failed: %s", strerror(err)).c_str());
350 }
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800351 }
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800352}
353
354void Trace::LogMethodTraceEvent(Thread* self, const Method* method, Trace::TraceEvent event) {
355 if (thread_clock_base_map_.find(self) == thread_clock_base_map_.end()) {
356 uint64_t time = ThreadCpuMicroTime();
357 thread_clock_base_map_.insert(std::make_pair(self, time));
358 }
359
360 // Advance cur_offset_ atomically.
361 int32_t new_offset;
362 int32_t old_offset;
363 do {
364 old_offset = cur_offset_;
365 new_offset = old_offset + record_size_;
366 if (new_offset > buffer_size_) {
367 overflow_ = true;
368 return;
369 }
370 } while (android_atomic_release_cas(old_offset, new_offset, &cur_offset_) != 0);
371
372 uint32_t method_value = TraceMethodCombine(reinterpret_cast<uint32_t>(method), event);
373
374 // Write data
jeffhao2692b572011-12-16 15:42:28 -0800375 uint8_t* ptr = buf_.get() + old_offset;
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800376 Append2LE(ptr, self->GetTid());
377 Append4LE(ptr + 2, method_value);
378 ptr += 6;
379
380 if (UseThreadCpuClock()) {
381 uint64_t thread_clock_base = thread_clock_base_map_.find(self)->second;
382 uint32_t thread_clock_diff = ThreadCpuMicroTime() - thread_clock_base;
383 Append4LE(ptr, thread_clock_diff);
384 ptr += 4;
385 }
386
387 if (UseWallClock()) {
388 uint32_t wall_clock_diff = MicroTime() - start_time_;
389 Append4LE(ptr, wall_clock_diff);
390 }
391}
392
393void Trace::GetVisitedMethods(size_t end_offset) {
jeffhao2692b572011-12-16 15:42:28 -0800394 uint8_t* ptr = buf_.get() + kTraceHeaderLength;
395 uint8_t* end = buf_.get() + end_offset;
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800396
397 while (ptr < end) {
398 uint32_t method_value = ptr[2] | (ptr[3] << 8) | (ptr[4] << 16) | (ptr[5] << 24);
399 Method* method = reinterpret_cast<Method*>(TraceMethodId(method_value));
400 visited_methods_.insert(method);
401 ptr += record_size_;
402 }
403}
404
405void Trace::DumpMethodList(std::ostream& os) {
406 typedef std::set<const Method*>::const_iterator It; // TODO: C++0x auto
407 for (It it = visited_methods_.begin(); it != visited_methods_.end(); ++it) {
408 const Method* method = *it;
409 MethodHelper mh(method);
Elliott Hughesba8eee12012-01-24 20:25:24 -0800410 os << StringPrintf("%p\t%s\t%s\t%s\t%s\t%d\n", method,
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800411 PrettyDescriptor(mh.GetDeclaringClassDescriptor()).c_str(), mh.GetName(),
412 mh.GetSignature().c_str(), mh.GetDeclaringClassSourceFile(),
413 mh.GetLineNumFromNativePC(0));
414 }
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800415}
416
417static void DumpThread(Thread* t, void* arg) {
418 std::ostream* os = reinterpret_cast<std::ostream*>(arg);
Elliott Hughes899e7892012-01-24 14:57:32 -0800419 *os << StringPrintf("%d\t%s\n", t->GetTid(), t->GetThreadName()->ToModifiedUtf8().c_str());
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800420}
421
422void Trace::DumpThreadList(std::ostream& os) {
423 ScopedThreadListLock thread_list_lock;
424 Runtime::Current()->GetThreadList()->ForEach(DumpThread, &os);
jeffhaoe343b762011-12-05 16:36:44 -0800425}
426
427void Trace::InstallStubs() {
428#if defined(__arm__)
jeffhaoe343b762011-12-05 16:36:44 -0800429 void* trace_stub = reinterpret_cast<void*>(art_trace_entry_from_code);
430 Runtime::Current()->GetClassLinker()->VisitClasses(InstallStubsClassVisitor, trace_stub);
jeffhaoe343b762011-12-05 16:36:44 -0800431#else
432 UNIMPLEMENTED(WARNING);
433#endif
434}
435
436void Trace::UninstallStubs() {
437#if defined(__arm__)
jeffhaoe343b762011-12-05 16:36:44 -0800438 void* trace_stub = reinterpret_cast<void*>(art_trace_entry_from_code);
439 Runtime::Current()->GetClassLinker()->VisitClasses(UninstallStubsClassVisitor, trace_stub);
440
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#else
447 UNIMPLEMENTED(WARNING);
448#endif
449}
450
451} // namespace art