blob: 76367923c015158f873a72b86aa38c8b154b550e [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>
John Reck0624a272015-03-26 15:47:54 -070020#include <unistd.h>
jeffhaoa9ef3fd2011-12-13 18:33:43 -080021
Ian Rogerscf7f1912014-10-22 22:06:39 -070022#define ATRACE_TAG ATRACE_TAG_DALVIK
23#include "cutils/trace.h"
24
Andreas Gampee34a42c2015-04-25 14:44:29 -070025#include "base/casts.h"
Jeff Hao0abc72e2013-08-13 13:45:14 -070026#include "base/stl_util.h"
Elliott Hughes76160052012-12-12 16:31:20 -080027#include "base/unix_file/fd_file.h"
jeffhaoe343b762011-12-05 16:36:44 -080028#include "class_linker.h"
Ian Rogers62d6c772013-02-27 08:32:07 -080029#include "common_throws.h"
jeffhaoa9ef3fd2011-12-13 18:33:43 -080030#include "debugger.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070031#include "dex_file-inl.h"
jeffhao725a9572012-11-13 18:20:12 -080032#include "instrumentation.h"
Brian Carlstromea46f952013-07-30 01:26:50 -070033#include "mirror/art_method-inl.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070034#include "mirror/class-inl.h"
Andreas Gampe40da2862015-02-27 12:49:04 -080035#include "mirror/dex_cache-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080036#include "mirror/object_array-inl.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070037#include "mirror/object-inl.h"
jeffhaoa9ef3fd2011-12-13 18:33:43 -080038#include "os.h"
Ian Rogers00f7d0e2012-07-19 15:28:27 -070039#include "scoped_thread_state_change.h"
Jeff Hao0abc72e2013-08-13 13:45:14 -070040#include "ScopedLocalRef.h"
jeffhaoe343b762011-12-05 16:36:44 -080041#include "thread.h"
Ian Rogers57b86d42012-03-27 16:05:41 -070042#include "thread_list.h"
Ian Rogers166db042013-07-26 12:05:57 -070043#include "entrypoints/quick/quick_entrypoints.h"
jeffhao2692b572011-12-16 15:42:28 -080044
45namespace art {
46
Elliott Hughese119a362012-05-22 17:37:06 -070047// File format:
48// header
49// record 0
50// record 1
51// ...
52//
53// Header format:
54// u4 magic ('SLOW')
55// u2 version
56// u2 offset to data
57// u8 start date/time in usec
58// u2 record size in bytes (version >= 2 only)
59// ... padding to 32 bytes
60//
61// Record format v1:
62// u1 thread ID
63// u4 method ID | method action
64// u4 time delta since start, in usec
65//
66// Record format v2:
67// u2 thread ID
68// u4 method ID | method action
69// u4 time delta since start, in usec
70//
71// Record format v3:
72// u2 thread ID
73// u4 method ID | method action
74// u4 time delta since start, in usec
75// u4 wall time since start, in usec (when clock == "dual" only)
76//
77// 32 bits of microseconds is 70 minutes.
78//
79// All values are stored in little-endian order.
80
Ian Rogers62d6c772013-02-27 08:32:07 -080081enum TraceAction {
Brian Carlstrom7934ac22013-07-26 10:54:15 -070082 kTraceMethodEnter = 0x00, // method entry
83 kTraceMethodExit = 0x01, // method exit
84 kTraceUnroll = 0x02, // method exited by exception unrolling
Ian Rogers62d6c772013-02-27 08:32:07 -080085 // 0x03 currently unused
Brian Carlstrom7934ac22013-07-26 10:54:15 -070086 kTraceMethodActionMask = 0x03, // two bits
Ian Rogers62d6c772013-02-27 08:32:07 -080087};
88
Andreas Gampe40da2862015-02-27 12:49:04 -080089static constexpr uint8_t kOpNewMethod = 1U;
90static constexpr uint8_t kOpNewThread = 2U;
91
Jeff Hao0abc72e2013-08-13 13:45:14 -070092class BuildStackTraceVisitor : public StackVisitor {
93 public:
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +010094 explicit BuildStackTraceVisitor(Thread* thread)
95 : StackVisitor(thread, nullptr, StackVisitor::StackWalkKind::kIncludeInlinedFrames),
96 method_trace_(Trace::AllocStackTrace()) {}
Jeff Hao0abc72e2013-08-13 13:45:14 -070097
Ian Rogersef7d42f2014-01-06 12:55:46 -080098 bool VisitFrame() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogerse2f77e72013-08-13 19:19:40 -070099 mirror::ArtMethod* m = GetMethod();
Jeff Hao0abc72e2013-08-13 13:45:14 -0700100 // Ignore runtime frames (in particular callee save).
101 if (!m->IsRuntimeMethod()) {
102 method_trace_->push_back(m);
103 }
104 return true;
105 }
106
107 // Returns a stack trace where the topmost frame corresponds with the first element of the vector.
Ian Rogerse2f77e72013-08-13 19:19:40 -0700108 std::vector<mirror::ArtMethod*>* GetStackTrace() const {
Jeff Hao0abc72e2013-08-13 13:45:14 -0700109 return method_trace_;
110 }
111
112 private:
Ian Rogerse2f77e72013-08-13 19:19:40 -0700113 std::vector<mirror::ArtMethod*>* const method_trace_;
Jeff Hao0abc72e2013-08-13 13:45:14 -0700114};
115
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800116static const char kTraceTokenChar = '*';
117static const uint16_t kTraceHeaderLength = 32;
118static const uint32_t kTraceMagicValue = 0x574f4c53;
119static const uint16_t kTraceVersionSingleClock = 2;
120static const uint16_t kTraceVersionDualClock = 3;
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700121static const uint16_t kTraceRecordSizeSingleClock = 10; // using v2
122static const uint16_t kTraceRecordSizeDualClock = 14; // using v3 with two timestamps
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800123
Ian Rogerse63db272014-07-15 15:36:11 -0700124TraceClockSource Trace::default_clock_source_ = kDefaultTraceClockSource;
Elliott Hughese119a362012-05-22 17:37:06 -0700125
Andreas Gampe40da2862015-02-27 12:49:04 -0800126Trace* volatile Trace::the_trace_ = nullptr;
Jeff Hao0abc72e2013-08-13 13:45:14 -0700127pthread_t Trace::sampling_pthread_ = 0U;
Ian Rogers700a4022014-05-19 16:49:03 -0700128std::unique_ptr<std::vector<mirror::ArtMethod*>> Trace::temp_stack_trace_;
Ian Rogers62d6c772013-02-27 08:32:07 -0800129
Sebastien Hertz0462c4c2015-04-01 16:34:17 +0200130// The key identifying the tracer to update instrumentation.
131static constexpr const char* kTracerInstrumentationKey = "Tracer";
132
Brian Carlstromea46f952013-07-30 01:26:50 -0700133static mirror::ArtMethod* DecodeTraceMethodId(uint32_t tmid) {
134 return reinterpret_cast<mirror::ArtMethod*>(tmid & ~kTraceMethodActionMask);
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800135}
Elliott Hughese119a362012-05-22 17:37:06 -0700136
Ian Rogers62d6c772013-02-27 08:32:07 -0800137static TraceAction DecodeTraceAction(uint32_t tmid) {
138 return static_cast<TraceAction>(tmid & kTraceMethodActionMask);
139}
140
Ian Rogersef7d42f2014-01-06 12:55:46 -0800141static uint32_t EncodeTraceMethodAndAction(mirror::ArtMethod* method,
Ian Rogers62d6c772013-02-27 08:32:07 -0800142 TraceAction action) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800143 uint32_t tmid = PointerToLowMemUInt32(method) | action;
Ian Rogers62d6c772013-02-27 08:32:07 -0800144 DCHECK_EQ(method, DecodeTraceMethodId(tmid));
145 return tmid;
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800146}
147
Jeff Hao5ce4b172013-08-16 16:27:18 -0700148std::vector<mirror::ArtMethod*>* Trace::AllocStackTrace() {
Andreas Gampe40da2862015-02-27 12:49:04 -0800149 if (temp_stack_trace_.get() != nullptr) {
Jeff Hao5ce4b172013-08-16 16:27:18 -0700150 return temp_stack_trace_.release();
151 } else {
152 return new std::vector<mirror::ArtMethod*>();
153 }
154}
155
156void Trace::FreeStackTrace(std::vector<mirror::ArtMethod*>* stack_trace) {
157 stack_trace->clear();
158 temp_stack_trace_.reset(stack_trace);
159}
160
Ian Rogerse63db272014-07-15 15:36:11 -0700161void Trace::SetDefaultClockSource(TraceClockSource clock_source) {
Elliott Hughes0a18df82015-01-09 15:16:16 -0800162#if defined(__linux__)
Ian Rogers62d6c772013-02-27 08:32:07 -0800163 default_clock_source_ = clock_source;
164#else
Igor Murashkinaaebaa02015-01-26 10:55:53 -0800165 if (clock_source != TraceClockSource::kWall) {
Jeff Hao5ce4b172013-08-16 16:27:18 -0700166 LOG(WARNING) << "Ignoring tracing request to use CPU time.";
Ian Rogers62d6c772013-02-27 08:32:07 -0800167 }
168#endif
169}
170
Ian Rogerse63db272014-07-15 15:36:11 -0700171static uint16_t GetTraceVersion(TraceClockSource clock_source) {
Igor Murashkinaaebaa02015-01-26 10:55:53 -0800172 return (clock_source == TraceClockSource::kDual) ? kTraceVersionDualClock
Ian Rogers62d6c772013-02-27 08:32:07 -0800173 : kTraceVersionSingleClock;
174}
175
Ian Rogerse63db272014-07-15 15:36:11 -0700176static uint16_t GetRecordSize(TraceClockSource clock_source) {
Igor Murashkinaaebaa02015-01-26 10:55:53 -0800177 return (clock_source == TraceClockSource::kDual) ? kTraceRecordSizeDualClock
Ian Rogers62d6c772013-02-27 08:32:07 -0800178 : kTraceRecordSizeSingleClock;
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800179}
180
Elliott Hughese119a362012-05-22 17:37:06 -0700181bool Trace::UseThreadCpuClock() {
Igor Murashkinaaebaa02015-01-26 10:55:53 -0800182 return (clock_source_ == TraceClockSource::kThreadCpu) ||
183 (clock_source_ == TraceClockSource::kDual);
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800184}
185
Elliott Hughese119a362012-05-22 17:37:06 -0700186bool Trace::UseWallClock() {
Igor Murashkinaaebaa02015-01-26 10:55:53 -0800187 return (clock_source_ == TraceClockSource::kWall) ||
188 (clock_source_ == TraceClockSource::kDual);
Elliott Hughese119a362012-05-22 17:37:06 -0700189}
190
Jeff Haoc5d824a2014-07-28 18:35:38 -0700191void Trace::MeasureClockOverhead() {
192 if (UseThreadCpuClock()) {
Jeff Hao57dac6e2013-08-15 16:36:24 -0700193 Thread::Current()->GetCpuMicroTime();
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800194 }
Jeff Haoc5d824a2014-07-28 18:35:38 -0700195 if (UseWallClock()) {
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800196 MicroTime();
197 }
198}
199
Jeff Hao5ce4b172013-08-16 16:27:18 -0700200// Compute an average time taken to measure clocks.
Jeff Haoc5d824a2014-07-28 18:35:38 -0700201uint32_t Trace::GetClockOverheadNanoSeconds() {
Jeff Hao57dac6e2013-08-15 16:36:24 -0700202 Thread* self = Thread::Current();
203 uint64_t start = self->GetCpuMicroTime();
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800204
205 for (int i = 4000; i > 0; i--) {
Jeff Haoc5d824a2014-07-28 18:35:38 -0700206 MeasureClockOverhead();
207 MeasureClockOverhead();
208 MeasureClockOverhead();
209 MeasureClockOverhead();
210 MeasureClockOverhead();
211 MeasureClockOverhead();
212 MeasureClockOverhead();
213 MeasureClockOverhead();
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800214 }
215
Jeff Hao5ce4b172013-08-16 16:27:18 -0700216 uint64_t elapsed_us = self->GetCpuMicroTime() - start;
217 return static_cast<uint32_t>(elapsed_us / 32);
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800218}
219
Elliott Hughesffb465f2012-03-01 18:46:05 -0800220// TODO: put this somewhere with the big-endian equivalent used by JDWP.
221static void Append2LE(uint8_t* buf, uint16_t val) {
Jeff Hao5ce4b172013-08-16 16:27:18 -0700222 *buf++ = static_cast<uint8_t>(val);
223 *buf++ = static_cast<uint8_t>(val >> 8);
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800224}
225
Elliott Hughesffb465f2012-03-01 18:46:05 -0800226// TODO: put this somewhere with the big-endian equivalent used by JDWP.
227static void Append4LE(uint8_t* buf, uint32_t val) {
Jeff Hao5ce4b172013-08-16 16:27:18 -0700228 *buf++ = static_cast<uint8_t>(val);
229 *buf++ = static_cast<uint8_t>(val >> 8);
230 *buf++ = static_cast<uint8_t>(val >> 16);
231 *buf++ = static_cast<uint8_t>(val >> 24);
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800232}
233
Elliott Hughesffb465f2012-03-01 18:46:05 -0800234// TODO: put this somewhere with the big-endian equivalent used by JDWP.
235static void Append8LE(uint8_t* buf, uint64_t val) {
Jeff Hao5ce4b172013-08-16 16:27:18 -0700236 *buf++ = static_cast<uint8_t>(val);
237 *buf++ = static_cast<uint8_t>(val >> 8);
238 *buf++ = static_cast<uint8_t>(val >> 16);
239 *buf++ = static_cast<uint8_t>(val >> 24);
240 *buf++ = static_cast<uint8_t>(val >> 32);
241 *buf++ = static_cast<uint8_t>(val >> 40);
242 *buf++ = static_cast<uint8_t>(val >> 48);
243 *buf++ = static_cast<uint8_t>(val >> 56);
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800244}
245
Jeff Hao0abc72e2013-08-13 13:45:14 -0700246static void GetSample(Thread* thread, void* arg) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
247 BuildStackTraceVisitor build_trace_visitor(thread);
248 build_trace_visitor.WalkStack();
Ian Rogerse2f77e72013-08-13 19:19:40 -0700249 std::vector<mirror::ArtMethod*>* stack_trace = build_trace_visitor.GetStackTrace();
Jeff Hao0abc72e2013-08-13 13:45:14 -0700250 Trace* the_trace = reinterpret_cast<Trace*>(arg);
251 the_trace->CompareAndUpdateStackTrace(thread, stack_trace);
252}
253
Andreas Gampeca714582015-04-03 19:41:34 -0700254static void ClearThreadStackTraceAndClockBase(Thread* thread, void* arg ATTRIBUTE_UNUSED) {
Jeff Hao5ce4b172013-08-16 16:27:18 -0700255 thread->SetTraceClockBase(0);
256 std::vector<mirror::ArtMethod*>* stack_trace = thread->GetStackTraceSample();
Andreas Gampe40da2862015-02-27 12:49:04 -0800257 thread->SetStackTraceSample(nullptr);
Jeff Hao5ce4b172013-08-16 16:27:18 -0700258 delete stack_trace;
259}
260
Jeff Hao0abc72e2013-08-13 13:45:14 -0700261void Trace::CompareAndUpdateStackTrace(Thread* thread,
Ian Rogerse2f77e72013-08-13 19:19:40 -0700262 std::vector<mirror::ArtMethod*>* stack_trace) {
Jeff Hao0abc72e2013-08-13 13:45:14 -0700263 CHECK_EQ(pthread_self(), sampling_pthread_);
Jeff Hao5ce4b172013-08-16 16:27:18 -0700264 std::vector<mirror::ArtMethod*>* old_stack_trace = thread->GetStackTraceSample();
265 // Update the thread's stack trace sample.
266 thread->SetStackTraceSample(stack_trace);
Jeff Haoc1ff4b72013-08-19 11:33:10 -0700267 // Read timer clocks to use for all events in this trace.
268 uint32_t thread_clock_diff = 0;
269 uint32_t wall_clock_diff = 0;
270 ReadClocks(thread, &thread_clock_diff, &wall_clock_diff);
Andreas Gampe40da2862015-02-27 12:49:04 -0800271 if (old_stack_trace == nullptr) {
Jeff Hao5ce4b172013-08-16 16:27:18 -0700272 // If there's no previous stack trace sample for this thread, log an entry event for all
Jeff Hao0abc72e2013-08-13 13:45:14 -0700273 // methods in the trace.
Ian Rogerse2f77e72013-08-13 19:19:40 -0700274 for (std::vector<mirror::ArtMethod*>::reverse_iterator rit = stack_trace->rbegin();
Jeff Hao0abc72e2013-08-13 13:45:14 -0700275 rit != stack_trace->rend(); ++rit) {
Jeff Haoc1ff4b72013-08-19 11:33:10 -0700276 LogMethodTraceEvent(thread, *rit, instrumentation::Instrumentation::kMethodEntered,
277 thread_clock_diff, wall_clock_diff);
Jeff Hao0abc72e2013-08-13 13:45:14 -0700278 }
279 } else {
280 // If there's a previous stack trace for this thread, diff the traces and emit entry and exit
281 // events accordingly.
Ian Rogerse2f77e72013-08-13 19:19:40 -0700282 std::vector<mirror::ArtMethod*>::reverse_iterator old_rit = old_stack_trace->rbegin();
283 std::vector<mirror::ArtMethod*>::reverse_iterator rit = stack_trace->rbegin();
Jeff Hao0abc72e2013-08-13 13:45:14 -0700284 // Iterate bottom-up over both traces until there's a difference between them.
285 while (old_rit != old_stack_trace->rend() && rit != stack_trace->rend() && *old_rit == *rit) {
286 old_rit++;
287 rit++;
288 }
289 // Iterate top-down over the old trace until the point where they differ, emitting exit events.
Ian Rogerse2f77e72013-08-13 19:19:40 -0700290 for (std::vector<mirror::ArtMethod*>::iterator old_it = old_stack_trace->begin();
Jeff Hao0abc72e2013-08-13 13:45:14 -0700291 old_it != old_rit.base(); ++old_it) {
Jeff Haoc1ff4b72013-08-19 11:33:10 -0700292 LogMethodTraceEvent(thread, *old_it, instrumentation::Instrumentation::kMethodExited,
293 thread_clock_diff, wall_clock_diff);
Jeff Hao0abc72e2013-08-13 13:45:14 -0700294 }
295 // Iterate bottom-up over the new trace from the point where they differ, emitting entry events.
296 for (; rit != stack_trace->rend(); ++rit) {
Jeff Haoc1ff4b72013-08-19 11:33:10 -0700297 LogMethodTraceEvent(thread, *rit, instrumentation::Instrumentation::kMethodEntered,
298 thread_clock_diff, wall_clock_diff);
Jeff Hao0abc72e2013-08-13 13:45:14 -0700299 }
Jeff Hao5ce4b172013-08-16 16:27:18 -0700300 FreeStackTrace(old_stack_trace);
Jeff Hao0abc72e2013-08-13 13:45:14 -0700301 }
302}
303
304void* Trace::RunSamplingThread(void* arg) {
305 Runtime* runtime = Runtime::Current();
Ian Rogersef7d42f2014-01-06 12:55:46 -0800306 intptr_t interval_us = reinterpret_cast<intptr_t>(arg);
Jeff Hao4044bda2014-01-06 15:50:45 -0800307 CHECK_GE(interval_us, 0);
Jeff Hao0abc72e2013-08-13 13:45:14 -0700308 CHECK(runtime->AttachCurrentThread("Sampling Profiler", true, runtime->GetSystemThreadGroup(),
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800309 !runtime->IsAotCompiler()));
Jeff Hao0abc72e2013-08-13 13:45:14 -0700310
311 while (true) {
Jeff Hao23009dc2013-08-22 15:36:42 -0700312 usleep(interval_us);
Jeff Hao5ce4b172013-08-16 16:27:18 -0700313 ATRACE_BEGIN("Profile sampling");
Jeff Hao0abc72e2013-08-13 13:45:14 -0700314 Thread* self = Thread::Current();
315 Trace* the_trace;
316 {
317 MutexLock mu(self, *Locks::trace_lock_);
318 the_trace = the_trace_;
Andreas Gampe40da2862015-02-27 12:49:04 -0800319 if (the_trace == nullptr) {
Jeff Hao0abc72e2013-08-13 13:45:14 -0700320 break;
321 }
322 }
323
Mathieu Chartierbf9fc582015-03-13 17:21:25 -0700324 runtime->GetThreadList()->SuspendAll(__FUNCTION__);
Jeff Hao0abc72e2013-08-13 13:45:14 -0700325 {
326 MutexLock mu(self, *Locks::thread_list_lock_);
327 runtime->GetThreadList()->ForEach(GetSample, the_trace);
328 }
329 runtime->GetThreadList()->ResumeAll();
Jeff Hao5ce4b172013-08-16 16:27:18 -0700330 ATRACE_END();
Jeff Hao0abc72e2013-08-13 13:45:14 -0700331 }
332
333 runtime->DetachCurrentThread();
Andreas Gampe40da2862015-02-27 12:49:04 -0800334 return nullptr;
Jeff Hao0abc72e2013-08-13 13:45:14 -0700335}
336
Andreas Gampee34a42c2015-04-25 14:44:29 -0700337void Trace::Start(const char* trace_filename, int trace_fd, size_t buffer_size, int flags,
Andreas Gampe7e7e0f42015-03-29 15:26:23 -0700338 TraceOutputMode output_mode, TraceMode trace_mode, int interval_us) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800339 Thread* self = Thread::Current();
340 {
341 MutexLock mu(self, *Locks::trace_lock_);
Andreas Gampe40da2862015-02-27 12:49:04 -0800342 if (the_trace_ != nullptr) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800343 LOG(ERROR) << "Trace already in progress, ignoring this request";
344 return;
345 }
jeffhaoe343b762011-12-05 16:36:44 -0800346 }
Jeff Haod063d912014-09-08 09:38:18 -0700347
348 // Check interval if sampling is enabled
Andreas Gampe7e7e0f42015-03-29 15:26:23 -0700349 if (trace_mode == TraceMode::kSampling && interval_us <= 0) {
Jeff Haod063d912014-09-08 09:38:18 -0700350 LOG(ERROR) << "Invalid sampling interval: " << interval_us;
351 ScopedObjectAccess soa(self);
352 ThrowRuntimeException("Invalid sampling interval: %d", interval_us);
353 return;
354 }
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800355
jeffhao2692b572011-12-16 15:42:28 -0800356 // Open trace file if not going directly to ddms.
Ian Rogers700a4022014-05-19 16:49:03 -0700357 std::unique_ptr<File> trace_file;
Andreas Gampe7e7e0f42015-03-29 15:26:23 -0700358 if (output_mode != TraceOutputMode::kDDMS) {
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800359 if (trace_fd < 0) {
Brian Carlstrom7571e8b2013-08-12 17:04:14 -0700360 trace_file.reset(OS::CreateEmptyFile(trace_filename));
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800361 } else {
Ian Rogers62d6c772013-02-27 08:32:07 -0800362 trace_file.reset(new File(trace_fd, "tracefile"));
Elliott Hughes76160052012-12-12 16:31:20 -0800363 trace_file->DisableAutoClose();
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800364 }
Andreas Gampe40da2862015-02-27 12:49:04 -0800365 if (trace_file.get() == nullptr) {
jeffhaob5e81852012-03-12 11:15:45 -0700366 PLOG(ERROR) << "Unable to open trace file '" << trace_filename << "'";
Ian Rogers62d6c772013-02-27 08:32:07 -0800367 ScopedObjectAccess soa(self);
368 ThrowRuntimeException("Unable to open trace file '%s'", trace_filename);
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800369 return;
370 }
371 }
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800372
Jeff Haod063d912014-09-08 09:38:18 -0700373 Runtime* runtime = Runtime::Current();
Mathieu Chartier9ef78b52014-09-25 17:03:12 -0700374
375 // Enable count of allocs if specified in the flags.
376 bool enable_stats = false;
377
Mathieu Chartierbf9fc582015-03-13 17:21:25 -0700378 runtime->GetThreadList()->SuspendAll(__FUNCTION__);
Jeff Haod063d912014-09-08 09:38:18 -0700379
jeffhao2692b572011-12-16 15:42:28 -0800380 // Create Trace object.
Ian Rogers62d6c772013-02-27 08:32:07 -0800381 {
382 MutexLock mu(self, *Locks::trace_lock_);
Andreas Gampe40da2862015-02-27 12:49:04 -0800383 if (the_trace_ != nullptr) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800384 LOG(ERROR) << "Trace already in progress, ignoring this request";
385 } else {
Mathieu Chartier9ef78b52014-09-25 17:03:12 -0700386 enable_stats = (flags && kTraceCountAllocs) != 0;
Andreas Gampe40da2862015-02-27 12:49:04 -0800387 the_trace_ = new Trace(trace_file.release(), trace_filename, buffer_size, flags, output_mode,
388 trace_mode);
Andreas Gampe7e7e0f42015-03-29 15:26:23 -0700389 if (trace_mode == TraceMode::kSampling) {
Andreas Gampe40da2862015-02-27 12:49:04 -0800390 CHECK_PTHREAD_CALL(pthread_create, (&sampling_pthread_, nullptr, &RunSamplingThread,
Jeff Hao23009dc2013-08-22 15:36:42 -0700391 reinterpret_cast<void*>(interval_us)),
392 "Sampling profiler thread");
Andreas Gampe40da2862015-02-27 12:49:04 -0800393 the_trace_->interval_us_ = interval_us;
Jeff Hao0abc72e2013-08-13 13:45:14 -0700394 } else {
395 runtime->GetInstrumentation()->AddListener(the_trace_,
396 instrumentation::Instrumentation::kMethodEntered |
397 instrumentation::Instrumentation::kMethodExited |
398 instrumentation::Instrumentation::kMethodUnwind);
Andreas Gampe40da2862015-02-27 12:49:04 -0800399 // TODO: In full-PIC mode, we don't need to fully deopt.
Sebastien Hertz0462c4c2015-04-01 16:34:17 +0200400 runtime->GetInstrumentation()->EnableMethodTracing(kTracerInstrumentationKey);
Jeff Hao0abc72e2013-08-13 13:45:14 -0700401 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800402 }
jeffhao0791adc2012-04-04 11:14:32 -0700403 }
Jeff Haod063d912014-09-08 09:38:18 -0700404
Ian Rogers62d6c772013-02-27 08:32:07 -0800405 runtime->GetThreadList()->ResumeAll();
Mathieu Chartier9ef78b52014-09-25 17:03:12 -0700406
407 // Can't call this when holding the mutator lock.
408 if (enable_stats) {
409 runtime->SetStatsEnabled(true);
410 }
jeffhao2692b572011-12-16 15:42:28 -0800411}
412
Andreas Gampe40da2862015-02-27 12:49:04 -0800413void Trace::StopTracing(bool finish_tracing, bool flush_file) {
Mathieu Chartier9ef78b52014-09-25 17:03:12 -0700414 bool stop_alloc_counting = false;
Mathieu Chartier02e5f162015-03-11 09:54:22 -0700415 Runtime* const runtime = Runtime::Current();
416 Trace* the_trace = nullptr;
Jeff Hao0abc72e2013-08-13 13:45:14 -0700417 pthread_t sampling_pthread = 0U;
Ian Rogers62d6c772013-02-27 08:32:07 -0800418 {
419 MutexLock mu(Thread::Current(), *Locks::trace_lock_);
Andreas Gampe40da2862015-02-27 12:49:04 -0800420 if (the_trace_ == nullptr) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800421 LOG(ERROR) << "Trace stop requested, but no trace currently running";
422 } else {
423 the_trace = the_trace_;
Andreas Gampe40da2862015-02-27 12:49:04 -0800424 the_trace_ = nullptr;
Jeff Hao0abc72e2013-08-13 13:45:14 -0700425 sampling_pthread = sampling_pthread_;
Ian Rogers62d6c772013-02-27 08:32:07 -0800426 }
jeffhao2692b572011-12-16 15:42:28 -0800427 }
Mathieu Chartier02e5f162015-03-11 09:54:22 -0700428 // Make sure that we join before we delete the trace since we don't want to have
429 // the sampling thread access a stale pointer. This finishes since the sampling thread exits when
430 // the_trace_ is null.
431 if (sampling_pthread != 0U) {
Andreas Gampe40da2862015-02-27 12:49:04 -0800432 CHECK_PTHREAD_CALL(pthread_join, (sampling_pthread, nullptr), "sampling thread shutdown");
Mathieu Chartier02e5f162015-03-11 09:54:22 -0700433 sampling_pthread_ = 0U;
434 }
Mathieu Chartierbf9fc582015-03-13 17:21:25 -0700435 runtime->GetThreadList()->SuspendAll(__FUNCTION__);
Andreas Gampe40da2862015-02-27 12:49:04 -0800436
Mathieu Chartier02e5f162015-03-11 09:54:22 -0700437 if (the_trace != nullptr) {
Andreas Gampe40da2862015-02-27 12:49:04 -0800438 stop_alloc_counting = (the_trace->flags_ & Trace::kTraceCountAllocs) != 0;
439 if (finish_tracing) {
440 the_trace->FinishTracing();
441 }
Jeff Hao0abc72e2013-08-13 13:45:14 -0700442
Andreas Gampe7e7e0f42015-03-29 15:26:23 -0700443 if (the_trace->trace_mode_ == TraceMode::kSampling) {
Jeff Hao5ce4b172013-08-16 16:27:18 -0700444 MutexLock mu(Thread::Current(), *Locks::thread_list_lock_);
Mathieu Chartier02e5f162015-03-11 09:54:22 -0700445 runtime->GetThreadList()->ForEach(ClearThreadStackTraceAndClockBase, nullptr);
Jeff Hao5ce4b172013-08-16 16:27:18 -0700446 } else {
Sebastien Hertz0462c4c2015-04-01 16:34:17 +0200447 runtime->GetInstrumentation()->DisableMethodTracing(kTracerInstrumentationKey);
Mathieu Chartier02e5f162015-03-11 09:54:22 -0700448 runtime->GetInstrumentation()->RemoveListener(
449 the_trace, instrumentation::Instrumentation::kMethodEntered |
450 instrumentation::Instrumentation::kMethodExited |
451 instrumentation::Instrumentation::kMethodUnwind);
Jeff Hao0abc72e2013-08-13 13:45:14 -0700452 }
Andreas Gampe4303ba92014-11-06 01:00:46 -0800453 if (the_trace->trace_file_.get() != nullptr) {
454 // Do not try to erase, so flush and close explicitly.
Andreas Gampe40da2862015-02-27 12:49:04 -0800455 if (flush_file) {
456 if (the_trace->trace_file_->Flush() != 0) {
457 PLOG(ERROR) << "Could not flush trace file.";
458 }
459 } else {
460 the_trace->trace_file_->MarkUnchecked(); // Do not trigger guard.
Andreas Gampe4303ba92014-11-06 01:00:46 -0800461 }
462 if (the_trace->trace_file_->Close() != 0) {
463 PLOG(ERROR) << "Could not close trace file.";
464 }
465 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800466 delete the_trace;
467 }
468 runtime->GetThreadList()->ResumeAll();
Mathieu Chartier9ef78b52014-09-25 17:03:12 -0700469 if (stop_alloc_counting) {
470 // Can be racy since SetStatsEnabled is not guarded by any locks.
Mathieu Chartier02e5f162015-03-11 09:54:22 -0700471 runtime->SetStatsEnabled(false);
Jeff Hao0abc72e2013-08-13 13:45:14 -0700472 }
jeffhao2692b572011-12-16 15:42:28 -0800473}
474
Andreas Gampe40da2862015-02-27 12:49:04 -0800475void Trace::Abort() {
476 // Do not write anything anymore.
477 StopTracing(false, false);
478}
479
480void Trace::Stop() {
481 // Finish writing.
482 StopTracing(true, true);
483}
484
jeffhaob5e81852012-03-12 11:15:45 -0700485void Trace::Shutdown() {
Jeff Hao64caa7d2013-08-29 11:18:01 -0700486 if (GetMethodTracingMode() != kTracingInactive) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800487 Stop();
jeffhaob5e81852012-03-12 11:15:45 -0700488 }
jeffhaob5e81852012-03-12 11:15:45 -0700489}
490
Andreas Gampe40da2862015-02-27 12:49:04 -0800491void Trace::Pause() {
492 bool stop_alloc_counting = false;
493 Runtime* runtime = Runtime::Current();
494 Trace* the_trace = nullptr;
495
496 pthread_t sampling_pthread = 0U;
497 {
498 MutexLock mu(Thread::Current(), *Locks::trace_lock_);
499 if (the_trace_ == nullptr) {
500 LOG(ERROR) << "Trace pause requested, but no trace currently running";
501 return;
502 } else {
503 the_trace = the_trace_;
504 sampling_pthread = sampling_pthread_;
505 }
506 }
507
508 if (sampling_pthread != 0U) {
509 {
510 MutexLock mu(Thread::Current(), *Locks::trace_lock_);
511 the_trace_ = nullptr;
512 }
513 CHECK_PTHREAD_CALL(pthread_join, (sampling_pthread, nullptr), "sampling thread shutdown");
514 sampling_pthread_ = 0U;
515 {
516 MutexLock mu(Thread::Current(), *Locks::trace_lock_);
517 the_trace_ = the_trace;
518 }
519 }
520
521 if (the_trace != nullptr) {
522 runtime->GetThreadList()->SuspendAll(__FUNCTION__);
523 stop_alloc_counting = (the_trace->flags_ & Trace::kTraceCountAllocs) != 0;
524
525 if (the_trace->trace_mode_ == TraceMode::kSampling) {
526 MutexLock mu(Thread::Current(), *Locks::thread_list_lock_);
527 runtime->GetThreadList()->ForEach(ClearThreadStackTraceAndClockBase, nullptr);
528 } else {
Sebastien Hertz0462c4c2015-04-01 16:34:17 +0200529 runtime->GetInstrumentation()->DisableMethodTracing(kTracerInstrumentationKey);
Andreas Gampe40da2862015-02-27 12:49:04 -0800530 runtime->GetInstrumentation()->RemoveListener(the_trace,
531 instrumentation::Instrumentation::kMethodEntered |
532 instrumentation::Instrumentation::kMethodExited |
533 instrumentation::Instrumentation::kMethodUnwind);
534 }
535 runtime->GetThreadList()->ResumeAll();
536 }
537
538 if (stop_alloc_counting) {
539 // Can be racy since SetStatsEnabled is not guarded by any locks.
540 Runtime::Current()->SetStatsEnabled(false);
541 }
542}
543
544void Trace::Resume() {
545 Thread* self = Thread::Current();
546 Trace* the_trace;
547 {
548 MutexLock mu(self, *Locks::trace_lock_);
549 if (the_trace_ == nullptr) {
550 LOG(ERROR) << "No trace to resume (or sampling mode), ignoring this request";
551 return;
552 }
553 the_trace = the_trace_;
554 }
555
556 Runtime* runtime = Runtime::Current();
557
558 // Enable count of allocs if specified in the flags.
559 bool enable_stats = (the_trace->flags_ && kTraceCountAllocs) != 0;
560
561 runtime->GetThreadList()->SuspendAll(__FUNCTION__);
562
563 // Reenable.
564 if (the_trace->trace_mode_ == TraceMode::kSampling) {
565 CHECK_PTHREAD_CALL(pthread_create, (&sampling_pthread_, nullptr, &RunSamplingThread,
566 reinterpret_cast<void*>(the_trace->interval_us_)), "Sampling profiler thread");
567 } else {
568 runtime->GetInstrumentation()->AddListener(the_trace,
569 instrumentation::Instrumentation::kMethodEntered |
570 instrumentation::Instrumentation::kMethodExited |
571 instrumentation::Instrumentation::kMethodUnwind);
572 // TODO: In full-PIC mode, we don't need to fully deopt.
Sebastien Hertz0462c4c2015-04-01 16:34:17 +0200573 runtime->GetInstrumentation()->EnableMethodTracing(kTracerInstrumentationKey);
Andreas Gampe40da2862015-02-27 12:49:04 -0800574 }
575
576 runtime->GetThreadList()->ResumeAll();
577
578 // Can't call this when holding the mutator lock.
579 if (enable_stats) {
580 runtime->SetStatsEnabled(true);
581 }
582}
583
Jeff Hao64caa7d2013-08-29 11:18:01 -0700584TracingMode Trace::GetMethodTracingMode() {
Ian Rogers62d6c772013-02-27 08:32:07 -0800585 MutexLock mu(Thread::Current(), *Locks::trace_lock_);
Andreas Gampe40da2862015-02-27 12:49:04 -0800586 if (the_trace_ == nullptr) {
Jeff Hao64caa7d2013-08-29 11:18:01 -0700587 return kTracingInactive;
Jeff Hao64caa7d2013-08-29 11:18:01 -0700588 } else {
Andreas Gampe7e7e0f42015-03-29 15:26:23 -0700589 switch (the_trace_->trace_mode_) {
590 case TraceMode::kSampling:
591 return kSampleProfilingActive;
592 case TraceMode::kMethodTracing:
593 return kMethodTracingActive;
594 }
595 LOG(FATAL) << "Unreachable";
596 UNREACHABLE();
Jeff Hao64caa7d2013-08-29 11:18:01 -0700597 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800598}
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800599
Andreas Gampee34a42c2015-04-25 14:44:29 -0700600static constexpr size_t kMinBufSize = 18U; // Trace header is up to 18B.
Andreas Gampe40da2862015-02-27 12:49:04 -0800601
Andreas Gampee34a42c2015-04-25 14:44:29 -0700602Trace::Trace(File* trace_file, const char* trace_name, size_t buffer_size, int flags,
Andreas Gampe40da2862015-02-27 12:49:04 -0800603 TraceOutputMode output_mode, TraceMode trace_mode)
604 : trace_file_(trace_file),
Andreas Gampee34a42c2015-04-25 14:44:29 -0700605 buf_(new uint8_t[std::max(kMinBufSize, buffer_size)]()),
Andreas Gampe40da2862015-02-27 12:49:04 -0800606 flags_(flags), trace_output_mode_(output_mode), trace_mode_(trace_mode),
607 clock_source_(default_clock_source_),
Andreas Gampee34a42c2015-04-25 14:44:29 -0700608 buffer_size_(std::max(kMinBufSize, buffer_size)),
Andreas Gampe40da2862015-02-27 12:49:04 -0800609 start_time_(MicroTime()), clock_overhead_ns_(GetClockOverheadNanoSeconds()), cur_offset_(0),
610 overflow_(false), interval_us_(0), streaming_lock_(nullptr) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800611 uint16_t trace_version = GetTraceVersion(clock_source_);
Andreas Gampe40da2862015-02-27 12:49:04 -0800612 if (output_mode == TraceOutputMode::kStreaming) {
613 trace_version |= 0xF0U;
614 }
615 // Set up the beginning of the trace.
jeffhao2692b572011-12-16 15:42:28 -0800616 memset(buf_.get(), 0, kTraceHeaderLength);
617 Append4LE(buf_.get(), kTraceMagicValue);
Ian Rogers62d6c772013-02-27 08:32:07 -0800618 Append2LE(buf_.get() + 4, trace_version);
jeffhao2692b572011-12-16 15:42:28 -0800619 Append2LE(buf_.get() + 6, kTraceHeaderLength);
620 Append8LE(buf_.get() + 8, start_time_);
Ian Rogers62d6c772013-02-27 08:32:07 -0800621 if (trace_version >= kTraceVersionDualClock) {
622 uint16_t record_size = GetRecordSize(clock_source_);
623 Append2LE(buf_.get() + 16, record_size);
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800624 }
Andreas Gampee34a42c2015-04-25 14:44:29 -0700625 static_assert(18 <= kMinBufSize, "Minimum buffer size not large enough for trace header");
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800626
jeffhao2692b572011-12-16 15:42:28 -0800627 // Update current offset.
Ian Rogers8ab25ef2014-07-09 18:00:50 -0700628 cur_offset_.StoreRelaxed(kTraceHeaderLength);
Andreas Gampe40da2862015-02-27 12:49:04 -0800629
630 if (output_mode == TraceOutputMode::kStreaming) {
631 streaming_file_name_ = trace_name;
632 streaming_lock_ = new Mutex("tracing lock");
633 seen_threads_.reset(new ThreadIDBitSet());
634 }
635}
636
637Trace::~Trace() {
638 delete streaming_lock_;
Ian Rogers62d6c772013-02-27 08:32:07 -0800639}
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800640
Ian Rogerse63db272014-07-15 15:36:11 -0700641static void DumpBuf(uint8_t* buf, size_t buf_size, TraceClockSource clock_source)
Ian Rogers62d6c772013-02-27 08:32:07 -0800642 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
643 uint8_t* ptr = buf + kTraceHeaderLength;
644 uint8_t* end = buf + buf_size;
645
646 while (ptr < end) {
647 uint32_t tmid = ptr[2] | (ptr[3] << 8) | (ptr[4] << 16) | (ptr[5] << 24);
Brian Carlstromea46f952013-07-30 01:26:50 -0700648 mirror::ArtMethod* method = DecodeTraceMethodId(tmid);
Ian Rogers62d6c772013-02-27 08:32:07 -0800649 TraceAction action = DecodeTraceAction(tmid);
650 LOG(INFO) << PrettyMethod(method) << " " << static_cast<int>(action);
651 ptr += GetRecordSize(clock_source);
652 }
jeffhaoe343b762011-12-05 16:36:44 -0800653}
654
Andreas Gampe40da2862015-02-27 12:49:04 -0800655static void GetVisitedMethodsFromBitSets(
656 const std::map<mirror::DexCache*, DexIndexBitSet*>& seen_methods,
657 std::set<mirror::ArtMethod*>* visited_methods) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
658 for (auto& e : seen_methods) {
659 DexIndexBitSet* bit_set = e.second;
660 for (uint32_t i = 0; i < bit_set->size(); ++i) {
661 if ((*bit_set)[i]) {
662 visited_methods->insert(e.first->GetResolvedMethod(i));
663 }
664 }
665 }
666}
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800667
Andreas Gampe40da2862015-02-27 12:49:04 -0800668void Trace::FinishTracing() {
669 size_t final_offset = 0;
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800670
Brian Carlstromea46f952013-07-30 01:26:50 -0700671 std::set<mirror::ArtMethod*> visited_methods;
Andreas Gampe40da2862015-02-27 12:49:04 -0800672 if (trace_output_mode_ == TraceOutputMode::kStreaming) {
673 // Write the secondary file with all the method names.
674 GetVisitedMethodsFromBitSets(seen_methods_, &visited_methods);
675
676 // Clean up.
677 for (auto& e : seen_methods_) {
678 delete e.second;
679 }
680 } else {
681 final_offset = cur_offset_.LoadRelaxed();
682 GetVisitedMethods(final_offset, &visited_methods);
683 }
684
685 // Compute elapsed time.
686 uint64_t elapsed = MicroTime() - start_time_;
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800687
688 std::ostringstream os;
689
690 os << StringPrintf("%cversion\n", kTraceTokenChar);
Ian Rogers62d6c772013-02-27 08:32:07 -0800691 os << StringPrintf("%d\n", GetTraceVersion(clock_source_));
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800692 os << StringPrintf("data-file-overflow=%s\n", overflow_ ? "true" : "false");
693 if (UseThreadCpuClock()) {
694 if (UseWallClock()) {
695 os << StringPrintf("clock=dual\n");
696 } else {
697 os << StringPrintf("clock=thread-cpu\n");
698 }
699 } else {
700 os << StringPrintf("clock=wall\n");
701 }
Ian Rogersef7d42f2014-01-06 12:55:46 -0800702 os << StringPrintf("elapsed-time-usec=%" PRIu64 "\n", elapsed);
Andreas Gampe40da2862015-02-27 12:49:04 -0800703 if (trace_output_mode_ != TraceOutputMode::kStreaming) {
704 size_t num_records = (final_offset - kTraceHeaderLength) / GetRecordSize(clock_source_);
705 os << StringPrintf("num-method-calls=%zd\n", num_records);
706 }
Jeff Haoc5d824a2014-07-28 18:35:38 -0700707 os << StringPrintf("clock-call-overhead-nsec=%d\n", clock_overhead_ns_);
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800708 os << StringPrintf("vm=art\n");
John Reck0624a272015-03-26 15:47:54 -0700709 os << StringPrintf("pid=%d\n", getpid());
jeffhao0791adc2012-04-04 11:14:32 -0700710 if ((flags_ & kTraceCountAllocs) != 0) {
711 os << StringPrintf("alloc-count=%d\n", Runtime::Current()->GetStat(KIND_ALLOCATED_OBJECTS));
712 os << StringPrintf("alloc-size=%d\n", Runtime::Current()->GetStat(KIND_ALLOCATED_BYTES));
713 os << StringPrintf("gc-count=%d\n", Runtime::Current()->GetStat(KIND_GC_INVOCATIONS));
714 }
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800715 os << StringPrintf("%cthreads\n", kTraceTokenChar);
716 DumpThreadList(os);
717 os << StringPrintf("%cmethods\n", kTraceTokenChar);
Ian Rogers62d6c772013-02-27 08:32:07 -0800718 DumpMethodList(os, visited_methods);
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800719 os << StringPrintf("%cend\n", kTraceTokenChar);
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800720 std::string header(os.str());
Andreas Gampe40da2862015-02-27 12:49:04 -0800721
722 if (trace_output_mode_ == TraceOutputMode::kStreaming) {
723 File file;
724 if (!file.Open(streaming_file_name_ + ".sec", O_CREAT | O_WRONLY)) {
725 LOG(WARNING) << "Could not open secondary trace file!";
726 return;
Ian Rogers62d6c772013-02-27 08:32:07 -0800727 }
Andreas Gampe40da2862015-02-27 12:49:04 -0800728 if (!file.WriteFully(header.c_str(), header.length())) {
729 file.Erase();
Elliott Hughes7b9d9962012-04-20 18:48:18 -0700730 std::string detail(StringPrintf("Trace data write failed: %s", strerror(errno)));
731 PLOG(ERROR) << detail;
Ian Rogers62d6c772013-02-27 08:32:07 -0800732 ThrowRuntimeException("%s", detail.c_str());
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800733 }
Andreas Gampe40da2862015-02-27 12:49:04 -0800734 if (file.FlushCloseOrErase() != 0) {
735 PLOG(ERROR) << "Could not write secondary file";
736 }
737 } else {
738 if (trace_file_.get() == nullptr) {
739 iovec iov[2];
740 iov[0].iov_base = reinterpret_cast<void*>(const_cast<char*>(header.c_str()));
741 iov[0].iov_len = header.length();
742 iov[1].iov_base = buf_.get();
743 iov[1].iov_len = final_offset;
744 Dbg::DdmSendChunkV(CHUNK_TYPE("MPSE"), iov, 2);
745 const bool kDumpTraceInfo = false;
746 if (kDumpTraceInfo) {
747 LOG(INFO) << "Trace sent:\n" << header;
748 DumpBuf(buf_.get(), final_offset, clock_source_);
749 }
750 } else {
751 if (!trace_file_->WriteFully(header.c_str(), header.length()) ||
752 !trace_file_->WriteFully(buf_.get(), final_offset)) {
753 std::string detail(StringPrintf("Trace data write failed: %s", strerror(errno)));
754 PLOG(ERROR) << detail;
755 ThrowRuntimeException("%s", detail.c_str());
756 }
757 }
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800758 }
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800759}
760
Ian Rogers62d6c772013-02-27 08:32:07 -0800761void Trace::DexPcMoved(Thread* thread, mirror::Object* this_object,
Ian Rogersef7d42f2014-01-06 12:55:46 -0800762 mirror::ArtMethod* method, uint32_t new_dex_pc) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700763 UNUSED(thread, this_object, method, new_dex_pc);
Ian Rogers62d6c772013-02-27 08:32:07 -0800764 // We're not recorded to listen to this kind of event, so complain.
765 LOG(ERROR) << "Unexpected dex PC event in tracing " << PrettyMethod(method) << " " << new_dex_pc;
Andreas Gampec8ccf682014-09-29 20:07:43 -0700766}
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800767
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700768void Trace::FieldRead(Thread* thread, mirror::Object* this_object,
Mathieu Chartierc7853442015-03-27 14:35:38 -0700769 mirror::ArtMethod* method, uint32_t dex_pc, ArtField* field)
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200770 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700771 UNUSED(thread, this_object, method, dex_pc, field);
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200772 // We're not recorded to listen to this kind of event, so complain.
773 LOG(ERROR) << "Unexpected field read event in tracing " << PrettyMethod(method) << " " << dex_pc;
774}
775
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700776void Trace::FieldWritten(Thread* thread, mirror::Object* this_object,
Mathieu Chartierc7853442015-03-27 14:35:38 -0700777 mirror::ArtMethod* method, uint32_t dex_pc, ArtField* field,
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200778 const JValue& field_value)
779 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700780 UNUSED(thread, this_object, method, dex_pc, field, field_value);
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200781 // We're not recorded to listen to this kind of event, so complain.
782 LOG(ERROR) << "Unexpected field write event in tracing " << PrettyMethod(method) << " " << dex_pc;
783}
784
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700785void Trace::MethodEntered(Thread* thread, mirror::Object* this_object ATTRIBUTE_UNUSED,
786 mirror::ArtMethod* method, uint32_t dex_pc ATTRIBUTE_UNUSED) {
Jeff Haoc1ff4b72013-08-19 11:33:10 -0700787 uint32_t thread_clock_diff = 0;
788 uint32_t wall_clock_diff = 0;
789 ReadClocks(thread, &thread_clock_diff, &wall_clock_diff);
790 LogMethodTraceEvent(thread, method, instrumentation::Instrumentation::kMethodEntered,
791 thread_clock_diff, wall_clock_diff);
Ian Rogers62d6c772013-02-27 08:32:07 -0800792}
793
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700794void Trace::MethodExited(Thread* thread, mirror::Object* this_object ATTRIBUTE_UNUSED,
795 mirror::ArtMethod* method, uint32_t dex_pc ATTRIBUTE_UNUSED,
796 const JValue& return_value ATTRIBUTE_UNUSED) {
Jeff Haoc1ff4b72013-08-19 11:33:10 -0700797 uint32_t thread_clock_diff = 0;
798 uint32_t wall_clock_diff = 0;
799 ReadClocks(thread, &thread_clock_diff, &wall_clock_diff);
800 LogMethodTraceEvent(thread, method, instrumentation::Instrumentation::kMethodExited,
801 thread_clock_diff, wall_clock_diff);
Ian Rogers62d6c772013-02-27 08:32:07 -0800802}
803
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700804void Trace::MethodUnwind(Thread* thread, mirror::Object* this_object ATTRIBUTE_UNUSED,
805 mirror::ArtMethod* method, uint32_t dex_pc ATTRIBUTE_UNUSED) {
Jeff Haoc1ff4b72013-08-19 11:33:10 -0700806 uint32_t thread_clock_diff = 0;
807 uint32_t wall_clock_diff = 0;
808 ReadClocks(thread, &thread_clock_diff, &wall_clock_diff);
809 LogMethodTraceEvent(thread, method, instrumentation::Instrumentation::kMethodUnwind,
810 thread_clock_diff, wall_clock_diff);
Ian Rogers62d6c772013-02-27 08:32:07 -0800811}
812
Nicolas Geoffray14691c52015-03-05 10:40:17 +0000813void Trace::ExceptionCaught(Thread* thread, mirror::Throwable* exception_object)
Ian Rogers62d6c772013-02-27 08:32:07 -0800814 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Nicolas Geoffray14691c52015-03-05 10:40:17 +0000815 UNUSED(thread, exception_object);
Ian Rogers62d6c772013-02-27 08:32:07 -0800816 LOG(ERROR) << "Unexpected exception caught event in tracing";
817}
818
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800819void Trace::BackwardBranch(Thread* /*thread*/, mirror::ArtMethod* method,
820 int32_t /*dex_pc_offset*/)
821 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
822 LOG(ERROR) << "Unexpected backward branch event in tracing" << PrettyMethod(method);
823}
824
Jeff Haoc1ff4b72013-08-19 11:33:10 -0700825void Trace::ReadClocks(Thread* thread, uint32_t* thread_clock_diff, uint32_t* wall_clock_diff) {
826 if (UseThreadCpuClock()) {
827 uint64_t clock_base = thread->GetTraceClockBase();
828 if (UNLIKELY(clock_base == 0)) {
829 // First event, record the base time in the map.
830 uint64_t time = thread->GetCpuMicroTime();
831 thread->SetTraceClockBase(time);
832 } else {
833 *thread_clock_diff = thread->GetCpuMicroTime() - clock_base;
834 }
835 }
836 if (UseWallClock()) {
837 *wall_clock_diff = MicroTime() - start_time_;
838 }
839}
840
Andreas Gampe40da2862015-02-27 12:49:04 -0800841bool Trace::RegisterMethod(mirror::ArtMethod* method) {
842 mirror::DexCache* dex_cache = method->GetDexCache();
843 if (dex_cache->GetResolvedMethod(method->GetDexMethodIndex()) != method) {
844 DCHECK(dex_cache->GetResolvedMethod(method->GetDexMethodIndex()) == nullptr);
845 dex_cache->SetResolvedMethod(method->GetDexMethodIndex(), method);
846 }
847 if (seen_methods_.find(dex_cache) == seen_methods_.end()) {
848 seen_methods_.insert(std::make_pair(dex_cache, new DexIndexBitSet()));
849 }
850 DexIndexBitSet* bit_set = seen_methods_.find(dex_cache)->second;
851 if (!(*bit_set)[method->GetDexMethodIndex()]) {
852 bit_set->set(method->GetDexMethodIndex());
853 return true;
854 }
855 return false;
856}
857
858bool Trace::RegisterThread(Thread* thread) {
859 pid_t tid = thread->GetTid();
860 CHECK_LT(0U, static_cast<uint32_t>(tid));
861 CHECK_LT(static_cast<uint32_t>(tid), 65536U);
862
863 if (!(*seen_threads_)[tid]) {
864 seen_threads_->set(tid);
865 return true;
866 }
867 return false;
868}
869
870static std::string GetMethodLine(mirror::ArtMethod* method)
871 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
872 return StringPrintf("%p\t%s\t%s\t%s\t%s\n", method,
873 PrettyDescriptor(method->GetDeclaringClassDescriptor()).c_str(), method->GetName(),
874 method->GetSignature().ToString().c_str(), method->GetDeclaringClassSourceFile());
875}
876
877void Trace::WriteToBuf(const uint8_t* src, size_t src_size) {
878 int32_t old_offset = cur_offset_.LoadRelaxed();
879 int32_t new_offset = old_offset + static_cast<int32_t>(src_size);
Andreas Gampee34a42c2015-04-25 14:44:29 -0700880 if (dchecked_integral_cast<size_t>(new_offset) > buffer_size_) {
Andreas Gampe40da2862015-02-27 12:49:04 -0800881 // Flush buffer.
882 if (!trace_file_->WriteFully(buf_.get(), old_offset)) {
883 PLOG(WARNING) << "Failed streaming a tracing event.";
884 }
Andreas Gampee34a42c2015-04-25 14:44:29 -0700885
886 // Check whether the data is too large for the buffer, then write immediately.
887 if (src_size >= buffer_size_) {
888 if (!trace_file_->WriteFully(src, src_size)) {
889 PLOG(WARNING) << "Failed streaming a tracing event.";
890 }
891 cur_offset_.StoreRelease(0); // Buffer is empty now.
892 return;
893 }
894
Andreas Gampe40da2862015-02-27 12:49:04 -0800895 old_offset = 0;
896 new_offset = static_cast<int32_t>(src_size);
897 }
898 cur_offset_.StoreRelease(new_offset);
899 // Fill in data.
900 memcpy(buf_.get() + old_offset, src, src_size);
901}
902
Ian Rogersef7d42f2014-01-06 12:55:46 -0800903void Trace::LogMethodTraceEvent(Thread* thread, mirror::ArtMethod* method,
Jeff Haoc1ff4b72013-08-19 11:33:10 -0700904 instrumentation::Instrumentation::InstrumentationEvent event,
905 uint32_t thread_clock_diff, uint32_t wall_clock_diff) {
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800906 // Advance cur_offset_ atomically.
907 int32_t new_offset;
Andreas Gampe40da2862015-02-27 12:49:04 -0800908 int32_t old_offset = 0;
909
910 // We do a busy loop here trying to acquire the next offset.
911 if (trace_output_mode_ != TraceOutputMode::kStreaming) {
912 do {
913 old_offset = cur_offset_.LoadRelaxed();
914 new_offset = old_offset + GetRecordSize(clock_source_);
Andreas Gampee34a42c2015-04-25 14:44:29 -0700915 if (static_cast<size_t>(new_offset) > buffer_size_) {
Andreas Gampe40da2862015-02-27 12:49:04 -0800916 overflow_ = true;
917 return;
918 }
919 } while (!cur_offset_.CompareExchangeWeakSequentiallyConsistent(old_offset, new_offset));
920 }
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800921
Ian Rogers62d6c772013-02-27 08:32:07 -0800922 TraceAction action = kTraceMethodEnter;
923 switch (event) {
924 case instrumentation::Instrumentation::kMethodEntered:
925 action = kTraceMethodEnter;
926 break;
927 case instrumentation::Instrumentation::kMethodExited:
928 action = kTraceMethodExit;
929 break;
930 case instrumentation::Instrumentation::kMethodUnwind:
931 action = kTraceUnroll;
932 break;
933 default:
934 UNIMPLEMENTED(FATAL) << "Unexpected event: " << event;
935 }
936
937 uint32_t method_value = EncodeTraceMethodAndAction(method, action);
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800938
939 // Write data
Andreas Gampe40da2862015-02-27 12:49:04 -0800940 uint8_t* ptr;
941 static constexpr size_t kPacketSize = 14U; // The maximum size of data in a packet.
942 uint8_t stack_buf[kPacketSize]; // Space to store a packet when in streaming mode.
943 if (trace_output_mode_ == TraceOutputMode::kStreaming) {
944 ptr = stack_buf;
945 } else {
946 ptr = buf_.get() + old_offset;
947 }
948
Ian Rogers62d6c772013-02-27 08:32:07 -0800949 Append2LE(ptr, thread->GetTid());
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800950 Append4LE(ptr + 2, method_value);
951 ptr += 6;
952
953 if (UseThreadCpuClock()) {
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800954 Append4LE(ptr, thread_clock_diff);
955 ptr += 4;
956 }
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800957 if (UseWallClock()) {
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800958 Append4LE(ptr, wall_clock_diff);
959 }
Andreas Gampe40da2862015-02-27 12:49:04 -0800960 static_assert(kPacketSize == 2 + 4 + 4 + 4, "Packet size incorrect.");
961
962 if (trace_output_mode_ == TraceOutputMode::kStreaming) {
963 MutexLock mu(Thread::Current(), *streaming_lock_); // To serialize writing.
964 if (RegisterMethod(method)) {
965 // Write a special block with the name.
966 std::string method_line(GetMethodLine(method));
967 uint8_t buf2[5];
968 Append2LE(buf2, 0);
969 buf2[2] = kOpNewMethod;
970 Append2LE(buf2 + 3, static_cast<uint16_t>(method_line.length()));
971 WriteToBuf(buf2, sizeof(buf2));
972 WriteToBuf(reinterpret_cast<const uint8_t*>(method_line.c_str()), method_line.length());
973 }
974 if (RegisterThread(thread)) {
975 // It might be better to postpone this. Threads might not have received names...
976 std::string thread_name;
977 thread->GetThreadName(thread_name);
978 uint8_t buf2[7];
979 Append2LE(buf2, 0);
980 buf2[2] = kOpNewThread;
981 Append2LE(buf2 + 3, static_cast<uint16_t>(thread->GetTid()));
982 Append2LE(buf2 + 5, static_cast<uint16_t>(thread_name.length()));
983 WriteToBuf(buf2, sizeof(buf2));
984 WriteToBuf(reinterpret_cast<const uint8_t*>(thread_name.c_str()), thread_name.length());
985 }
986 WriteToBuf(stack_buf, sizeof(stack_buf));
987 }
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800988}
989
Ian Rogers62d6c772013-02-27 08:32:07 -0800990void Trace::GetVisitedMethods(size_t buf_size,
Brian Carlstromea46f952013-07-30 01:26:50 -0700991 std::set<mirror::ArtMethod*>* visited_methods) {
jeffhao2692b572011-12-16 15:42:28 -0800992 uint8_t* ptr = buf_.get() + kTraceHeaderLength;
Ian Rogers62d6c772013-02-27 08:32:07 -0800993 uint8_t* end = buf_.get() + buf_size;
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800994
995 while (ptr < end) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800996 uint32_t tmid = ptr[2] | (ptr[3] << 8) | (ptr[4] << 16) | (ptr[5] << 24);
Brian Carlstromea46f952013-07-30 01:26:50 -0700997 mirror::ArtMethod* method = DecodeTraceMethodId(tmid);
Ian Rogers62d6c772013-02-27 08:32:07 -0800998 visited_methods->insert(method);
999 ptr += GetRecordSize(clock_source_);
jeffhaoa9ef3fd2011-12-13 18:33:43 -08001000 }
1001}
1002
Mathieu Chartier02e25112013-08-14 16:14:24 -07001003void Trace::DumpMethodList(std::ostream& os, const std::set<mirror::ArtMethod*>& visited_methods) {
Mathieu Chartier02e25112013-08-14 16:14:24 -07001004 for (const auto& method : visited_methods) {
Andreas Gampe40da2862015-02-27 12:49:04 -08001005 os << GetMethodLine(method);
jeffhaoa9ef3fd2011-12-13 18:33:43 -08001006 }
jeffhaoa9ef3fd2011-12-13 18:33:43 -08001007}
1008
1009static void DumpThread(Thread* t, void* arg) {
Elliott Hughesffb465f2012-03-01 18:46:05 -08001010 std::ostream& os = *reinterpret_cast<std::ostream*>(arg);
1011 std::string name;
1012 t->GetThreadName(name);
1013 os << t->GetTid() << "\t" << name << "\n";
jeffhaoa9ef3fd2011-12-13 18:33:43 -08001014}
1015
1016void Trace::DumpThreadList(std::ostream& os) {
Ian Rogers81d425b2012-09-27 16:03:43 -07001017 Thread* self = Thread::Current();
Jeff Haoe094b872014-10-14 13:12:01 -07001018 for (auto it : exited_threads_) {
1019 os << it.first << "\t" << it.second << "\n";
1020 }
Ian Rogers81d425b2012-09-27 16:03:43 -07001021 Locks::thread_list_lock_->AssertNotHeld(self);
1022 MutexLock mu(self, *Locks::thread_list_lock_);
jeffhaoa9ef3fd2011-12-13 18:33:43 -08001023 Runtime::Current()->GetThreadList()->ForEach(DumpThread, &os);
jeffhaoe343b762011-12-05 16:36:44 -08001024}
1025
Jeff Haoe094b872014-10-14 13:12:01 -07001026void Trace::StoreExitingThreadInfo(Thread* thread) {
1027 MutexLock mu(thread, *Locks::trace_lock_);
1028 if (the_trace_ != nullptr) {
1029 std::string name;
1030 thread->GetThreadName(name);
Andreas Gampea1785c52014-11-25 20:40:08 -08001031 // The same thread/tid may be used multiple times. As SafeMap::Put does not allow to override
1032 // a previous mapping, use SafeMap::Overwrite.
1033 the_trace_->exited_threads_.Overwrite(thread->GetTid(), name);
Jeff Haoe094b872014-10-14 13:12:01 -07001034 }
1035}
1036
Andreas Gampe40da2862015-02-27 12:49:04 -08001037Trace::TraceOutputMode Trace::GetOutputMode() {
1038 MutexLock mu(Thread::Current(), *Locks::trace_lock_);
1039 CHECK(the_trace_ != nullptr) << "Trace output mode requested, but no trace currently running";
1040 return the_trace_->trace_output_mode_;
1041}
1042
1043Trace::TraceMode Trace::GetMode() {
1044 MutexLock mu(Thread::Current(), *Locks::trace_lock_);
1045 CHECK(the_trace_ != nullptr) << "Trace mode requested, but no trace currently running";
1046 return the_trace_->trace_mode_;
1047}
1048
Andreas Gampee34a42c2015-04-25 14:44:29 -07001049size_t Trace::GetBufferSize() {
1050 MutexLock mu(Thread::Current(), *Locks::trace_lock_);
1051 CHECK(the_trace_ != nullptr) << "Trace mode requested, but no trace currently running";
1052 return the_trace_->buffer_size_;
1053}
1054
jeffhaoe343b762011-12-05 16:36:44 -08001055} // namespace art