blob: 6648b857de5cabc13a56ea903901eda68441d29d [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
148static void TraceRestoreStack(Thread* t, void*) {
jeffhaob5e81852012-03-12 11:15:45 -0700149#if defined(__arm__)
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#else
168 UNIMPLEMENTED(WARNING);
jeffhaoe343b762011-12-05 16:36:44 -0800169#endif
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) {
173 saved_code_map_.insert(std::make_pair(method, code));
174}
175
176void Trace::RemoveSavedCodeFromMap(const Method* method) {
177 saved_code_map_.erase(method);
178}
179
180const void* Trace::GetSavedCodeFromMap(const Method* method) {
jeffhao2692b572011-12-16 15:42:28 -0800181 typedef std::map<const Method*, const void*>::const_iterator It; // TODO: C++0x auto
182 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
jeffhaob5e81852012-03-12 11:15:45 -0700190void Trace::SaveAndUpdateCode(Method* method) {
191#if defined(__arm__)
192 void* trace_stub = reinterpret_cast<void*>(art_trace_entry_from_code);
jeffhaoe343b762011-12-05 16:36:44 -0800193 CHECK(GetSavedCodeFromMap(method) == NULL);
194 AddSavedCodeToMap(method, method->GetCode());
jeffhaob5e81852012-03-12 11:15:45 -0700195 method->SetCode(trace_stub);
196#else
197 UNIMPLEMENTED(WARNING);
198#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
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800213 ScopedThreadStateChange tsc(Thread::Current(), Thread::kRunnable);
214 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.
234 Trace* tracer(new Trace(trace_file, buffer_size));
235 Runtime::Current()->EnableMethodTracing(tracer);
236 tracer->BeginTracing();
237
238 Runtime::Current()->GetThreadList()->ResumeAll(false);
239}
240
241void Trace::Stop() {
242 if (!Runtime::Current()->IsMethodTracingActive()) {
243 LOG(INFO) << "Trace stop requested, but no trace currently running";
244 return;
245 }
246
247 ScopedThreadStateChange tsc(Thread::Current(), Thread::kRunnable);
248 Runtime::Current()->GetThreadList()->SuspendAll(false);
249
250 Runtime::Current()->GetTracer()->FinishTracing();
251 Runtime::Current()->DisableMethodTracing();
252
253 Runtime::Current()->GetThreadList()->ResumeAll(false);
254}
255
jeffhaob5e81852012-03-12 11:15:45 -0700256void Trace::Shutdown() {
257 if (!Runtime::Current()->IsMethodTracingActive()) {
258 LOG(INFO) << "Trace shutdown requested, but no trace currently running";
259 return;
260 }
261 Runtime::Current()->GetTracer()->FinishTracing();
262 Runtime::Current()->DisableMethodTracing();
263}
264
jeffhao2692b572011-12-16 15:42:28 -0800265void Trace::BeginTracing() {
266 // Set the start time of tracing.
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800267 start_time_ = MicroTime();
268
jeffhao2692b572011-12-16 15:42:28 -0800269 // Set trace version and record size.
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800270 if (UseThreadCpuClock() && UseWallClock()) {
271 trace_version_ = kTraceVersionDualClock;
272 record_size_ = kTraceRecordSizeDualClock;
273 } else {
274 trace_version_ = kTraceVersionSingleClock;
275 record_size_ = kTraceRecordSizeSingleClock;
276 }
277
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800278 // Set up the beginning of the trace.
jeffhao2692b572011-12-16 15:42:28 -0800279 memset(buf_.get(), 0, kTraceHeaderLength);
280 Append4LE(buf_.get(), kTraceMagicValue);
281 Append2LE(buf_.get() + 4, trace_version_);
282 Append2LE(buf_.get() + 6, kTraceHeaderLength);
283 Append8LE(buf_.get() + 8, start_time_);
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800284 if (trace_version_ >= kTraceVersionDualClock) {
jeffhao2692b572011-12-16 15:42:28 -0800285 Append2LE(buf_.get() + 16, record_size_);
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800286 }
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800287
jeffhao2692b572011-12-16 15:42:28 -0800288 // Update current offset.
289 cur_offset_ = kTraceHeaderLength;
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800290
291 // Install all method tracing stubs.
jeffhaoe343b762011-12-05 16:36:44 -0800292 InstallStubs();
jeffhaoe343b762011-12-05 16:36:44 -0800293}
294
jeffhao2692b572011-12-16 15:42:28 -0800295void Trace::FinishTracing() {
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800296 // Uninstall all method tracing stubs.
jeffhaoe343b762011-12-05 16:36:44 -0800297 UninstallStubs();
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800298
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800299 // Compute elapsed time.
300 uint64_t elapsed = MicroTime() - start_time_;
301
302 size_t final_offset = cur_offset_;
303 uint32_t clock_overhead = GetClockOverhead();
304
305 GetVisitedMethods(final_offset);
306
307 std::ostringstream os;
308
309 os << StringPrintf("%cversion\n", kTraceTokenChar);
310 os << StringPrintf("%d\n", trace_version_);
311 os << StringPrintf("data-file-overflow=%s\n", overflow_ ? "true" : "false");
312 if (UseThreadCpuClock()) {
313 if (UseWallClock()) {
314 os << StringPrintf("clock=dual\n");
315 } else {
316 os << StringPrintf("clock=thread-cpu\n");
317 }
318 } else {
319 os << StringPrintf("clock=wall\n");
320 }
321 os << StringPrintf("elapsed-time-usec=%llu\n", elapsed);
Elliott Hughesad6c9c32012-01-19 17:39:12 -0800322 os << StringPrintf("num-method-calls=%zd\n", (final_offset - kTraceHeaderLength) / record_size_);
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800323 os << StringPrintf("clock-call-overhead-nsec=%d\n", clock_overhead);
324 os << StringPrintf("vm=art\n");
325 os << StringPrintf("%cthreads\n", kTraceTokenChar);
326 DumpThreadList(os);
327 os << StringPrintf("%cmethods\n", kTraceTokenChar);
328 DumpMethodList(os);
329 os << StringPrintf("%cend\n", kTraceTokenChar);
330
331 std::string header(os.str());
jeffhao2692b572011-12-16 15:42:28 -0800332 if (trace_file_.get() == NULL) {
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800333 struct iovec iov[2];
334 iov[0].iov_base = reinterpret_cast<void*>(const_cast<char*>(header.c_str()));
335 iov[0].iov_len = header.length();
jeffhao2692b572011-12-16 15:42:28 -0800336 iov[1].iov_base = buf_.get();
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800337 iov[1].iov_len = final_offset;
338 Dbg::DdmSendChunkV(CHUNK_TYPE("MPSE"), iov, 2);
339 } else {
340 if (!trace_file_->WriteFully(header.c_str(), header.length()) ||
jeffhao2692b572011-12-16 15:42:28 -0800341 !trace_file_->WriteFully(buf_.get(), final_offset)) {
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800342 int err = errno;
343 LOG(ERROR) << "Trace data write failed: " << strerror(err);
344 Thread::Current()->ThrowNewException("Ljava/lang/RuntimeException;",
345 StringPrintf("Trace data write failed: %s", strerror(err)).c_str());
346 }
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800347 }
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800348}
349
350void Trace::LogMethodTraceEvent(Thread* self, const Method* method, Trace::TraceEvent event) {
351 if (thread_clock_base_map_.find(self) == thread_clock_base_map_.end()) {
352 uint64_t time = ThreadCpuMicroTime();
353 thread_clock_base_map_.insert(std::make_pair(self, time));
354 }
355
356 // Advance cur_offset_ atomically.
357 int32_t new_offset;
358 int32_t old_offset;
359 do {
360 old_offset = cur_offset_;
361 new_offset = old_offset + record_size_;
362 if (new_offset > buffer_size_) {
363 overflow_ = true;
364 return;
365 }
366 } while (android_atomic_release_cas(old_offset, new_offset, &cur_offset_) != 0);
367
368 uint32_t method_value = TraceMethodCombine(reinterpret_cast<uint32_t>(method), event);
369
370 // Write data
jeffhao2692b572011-12-16 15:42:28 -0800371 uint8_t* ptr = buf_.get() + old_offset;
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800372 Append2LE(ptr, self->GetTid());
373 Append4LE(ptr + 2, method_value);
374 ptr += 6;
375
376 if (UseThreadCpuClock()) {
377 uint64_t thread_clock_base = thread_clock_base_map_.find(self)->second;
378 uint32_t thread_clock_diff = ThreadCpuMicroTime() - thread_clock_base;
379 Append4LE(ptr, thread_clock_diff);
380 ptr += 4;
381 }
382
383 if (UseWallClock()) {
384 uint32_t wall_clock_diff = MicroTime() - start_time_;
385 Append4LE(ptr, wall_clock_diff);
386 }
387}
388
389void Trace::GetVisitedMethods(size_t end_offset) {
jeffhao2692b572011-12-16 15:42:28 -0800390 uint8_t* ptr = buf_.get() + kTraceHeaderLength;
391 uint8_t* end = buf_.get() + end_offset;
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800392
393 while (ptr < end) {
394 uint32_t method_value = ptr[2] | (ptr[3] << 8) | (ptr[4] << 16) | (ptr[5] << 24);
395 Method* method = reinterpret_cast<Method*>(TraceMethodId(method_value));
396 visited_methods_.insert(method);
397 ptr += record_size_;
398 }
399}
400
401void Trace::DumpMethodList(std::ostream& os) {
402 typedef std::set<const Method*>::const_iterator It; // TODO: C++0x auto
403 for (It it = visited_methods_.begin(); it != visited_methods_.end(); ++it) {
404 const Method* method = *it;
405 MethodHelper mh(method);
Elliott Hughesba8eee12012-01-24 20:25:24 -0800406 os << StringPrintf("%p\t%s\t%s\t%s\t%s\t%d\n", method,
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800407 PrettyDescriptor(mh.GetDeclaringClassDescriptor()).c_str(), mh.GetName(),
408 mh.GetSignature().c_str(), mh.GetDeclaringClassSourceFile(),
409 mh.GetLineNumFromNativePC(0));
410 }
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800411}
412
413static void DumpThread(Thread* t, void* arg) {
Elliott Hughesffb465f2012-03-01 18:46:05 -0800414 std::ostream& os = *reinterpret_cast<std::ostream*>(arg);
415 std::string name;
416 t->GetThreadName(name);
417 os << t->GetTid() << "\t" << name << "\n";
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800418}
419
420void Trace::DumpThreadList(std::ostream& os) {
421 ScopedThreadListLock thread_list_lock;
422 Runtime::Current()->GetThreadList()->ForEach(DumpThread, &os);
jeffhaoe343b762011-12-05 16:36:44 -0800423}
424
425void Trace::InstallStubs() {
jeffhaob5e81852012-03-12 11:15:45 -0700426 Runtime::Current()->GetClassLinker()->VisitClasses(InstallStubsClassVisitor, NULL);
jeffhaoe343b762011-12-05 16:36:44 -0800427}
428
429void Trace::UninstallStubs() {
jeffhaob5e81852012-03-12 11:15:45 -0700430 Runtime::Current()->GetClassLinker()->VisitClasses(UninstallStubsClassVisitor, NULL);
jeffhaoe343b762011-12-05 16:36:44 -0800431
432 // Restore stacks of all threads
433 {
434 ScopedThreadListLock thread_list_lock;
435 Runtime::Current()->GetThreadList()->ForEach(TraceRestoreStack, NULL);
436 }
jeffhaoe343b762011-12-05 16:36:44 -0800437}
438
439} // namespace art