blob: f6c36cf989837ba085a7dfe896932f25570e82db [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
Andreas Gampe46ee31b2016-12-14 10:11:49 -080022#include "android-base/stringprintf.h"
23
Mathieu Chartiere401d142015-04-22 13:56:20 -070024#include "art_method-inl.h"
Andreas Gampee34a42c2015-04-25 14:44:29 -070025#include "base/casts.h"
Andreas Gampe542451c2016-07-26 09:02:02 -070026#include "base/enums.h"
David Sehrc431b9d2018-03-02 12:01:51 -080027#include "base/os.h"
Jeff Hao0abc72e2013-08-13 13:45:14 -070028#include "base/stl_util.h"
Mathieu Chartier32ce2ad2016-03-04 14:58:03 -080029#include "base/systrace.h"
Vladimir Marko80afd022015-05-19 18:08:00 +010030#include "base/time_utils.h"
Elliott Hughes76160052012-12-12 16:31:20 -080031#include "base/unix_file/fd_file.h"
David Sehrc431b9d2018-03-02 12:01:51 -080032#include "base/utils.h"
jeffhaoe343b762011-12-05 16:36:44 -080033#include "class_linker.h"
Ian Rogers62d6c772013-02-27 08:32:07 -080034#include "common_throws.h"
jeffhaoa9ef3fd2011-12-13 18:33:43 -080035#include "debugger.h"
David Sehrb2ec9f52018-02-21 13:20:31 -080036#include "dex/descriptors_names.h"
David Sehr9e734c72018-01-04 17:56:19 -080037#include "dex/dex_file-inl.h"
Steven Morelande431e272017-07-18 16:53:49 -070038#include "entrypoints/quick/quick_entrypoints.h"
Mathieu Chartieraa516822015-10-02 15:53:37 -070039#include "gc/scoped_gc_critical_section.h"
jeffhao725a9572012-11-13 18:20:12 -080040#include "instrumentation.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070041#include "mirror/class-inl.h"
Andreas Gampe40da2862015-02-27 12:49:04 -080042#include "mirror/dex_cache-inl.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070043#include "mirror/object-inl.h"
Steven Morelande431e272017-07-18 16:53:49 -070044#include "mirror/object_array-inl.h"
Andreas Gampe373a9b52017-10-18 09:01:57 -070045#include "nativehelper/scoped_local_ref.h"
Mathieu Chartier0795f232016-09-27 18:43:30 -070046#include "scoped_thread_state_change-inl.h"
Andreas Gampe513061a2017-06-01 09:17:34 -070047#include "stack.h"
jeffhaoe343b762011-12-05 16:36:44 -080048#include "thread.h"
Ian Rogers57b86d42012-03-27 16:05:41 -070049#include "thread_list.h"
jeffhao2692b572011-12-16 15:42:28 -080050
51namespace art {
52
Andreas Gampe46ee31b2016-12-14 10:11:49 -080053using android::base::StringPrintf;
54
Mathieu Chartier4d64cd42015-06-02 16:38:29 -070055static constexpr size_t TraceActionBits = MinimumBitsToStore(
56 static_cast<size_t>(kTraceMethodActionMask));
Andreas Gampe40da2862015-02-27 12:49:04 -080057static constexpr uint8_t kOpNewMethod = 1U;
58static constexpr uint8_t kOpNewThread = 2U;
Shukang Zhou8a5ab912017-01-20 11:40:16 -080059static constexpr uint8_t kOpTraceSummary = 3U;
Andreas Gampe40da2862015-02-27 12:49:04 -080060
jeffhaoa9ef3fd2011-12-13 18:33:43 -080061static const char kTraceTokenChar = '*';
62static const uint16_t kTraceHeaderLength = 32;
63static const uint32_t kTraceMagicValue = 0x574f4c53;
64static const uint16_t kTraceVersionSingleClock = 2;
65static const uint16_t kTraceVersionDualClock = 3;
Mathieu Chartier4d64cd42015-06-02 16:38:29 -070066static const uint16_t kTraceRecordSizeSingleClock = 10; // using v2
67static const uint16_t kTraceRecordSizeDualClock = 14; // using v3 with two timestamps
jeffhaoa9ef3fd2011-12-13 18:33:43 -080068
Ian Rogerse63db272014-07-15 15:36:11 -070069TraceClockSource Trace::default_clock_source_ = kDefaultTraceClockSource;
Elliott Hughese119a362012-05-22 17:37:06 -070070
Andreas Gampe40da2862015-02-27 12:49:04 -080071Trace* volatile Trace::the_trace_ = nullptr;
Jeff Hao0abc72e2013-08-13 13:45:14 -070072pthread_t Trace::sampling_pthread_ = 0U;
Mathieu Chartiere401d142015-04-22 13:56:20 -070073std::unique_ptr<std::vector<ArtMethod*>> Trace::temp_stack_trace_;
Ian Rogers62d6c772013-02-27 08:32:07 -080074
Sebastien Hertz0462c4c2015-04-01 16:34:17 +020075// The key identifying the tracer to update instrumentation.
76static constexpr const char* kTracerInstrumentationKey = "Tracer";
77
Ian Rogers62d6c772013-02-27 08:32:07 -080078static TraceAction DecodeTraceAction(uint32_t tmid) {
79 return static_cast<TraceAction>(tmid & kTraceMethodActionMask);
80}
81
Mathieu Chartier4d64cd42015-06-02 16:38:29 -070082ArtMethod* Trace::DecodeTraceMethod(uint32_t tmid) {
83 MutexLock mu(Thread::Current(), *unique_methods_lock_);
84 return unique_methods_[tmid >> TraceActionBits];
85}
86
87uint32_t Trace::EncodeTraceMethod(ArtMethod* method) {
88 MutexLock mu(Thread::Current(), *unique_methods_lock_);
89 uint32_t idx;
90 auto it = art_method_id_map_.find(method);
91 if (it != art_method_id_map_.end()) {
92 idx = it->second;
93 } else {
94 unique_methods_.push_back(method);
95 idx = unique_methods_.size() - 1;
96 art_method_id_map_.emplace(method, idx);
97 }
98 DCHECK_LT(idx, unique_methods_.size());
99 DCHECK_EQ(unique_methods_[idx], method);
100 return idx;
101}
102
103uint32_t Trace::EncodeTraceMethodAndAction(ArtMethod* method, TraceAction action) {
104 uint32_t tmid = (EncodeTraceMethod(method) << TraceActionBits) | action;
105 DCHECK_EQ(method, DecodeTraceMethod(tmid));
Ian Rogers62d6c772013-02-27 08:32:07 -0800106 return tmid;
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800107}
108
Mathieu Chartiere401d142015-04-22 13:56:20 -0700109std::vector<ArtMethod*>* Trace::AllocStackTrace() {
Mathieu Chartier4d64cd42015-06-02 16:38:29 -0700110 return (temp_stack_trace_.get() != nullptr) ? temp_stack_trace_.release() :
111 new std::vector<ArtMethod*>();
Jeff Hao5ce4b172013-08-16 16:27:18 -0700112}
113
Mathieu Chartiere401d142015-04-22 13:56:20 -0700114void Trace::FreeStackTrace(std::vector<ArtMethod*>* stack_trace) {
Jeff Hao5ce4b172013-08-16 16:27:18 -0700115 stack_trace->clear();
116 temp_stack_trace_.reset(stack_trace);
117}
118
Ian Rogerse63db272014-07-15 15:36:11 -0700119void Trace::SetDefaultClockSource(TraceClockSource clock_source) {
Elliott Hughes0a18df82015-01-09 15:16:16 -0800120#if defined(__linux__)
Ian Rogers62d6c772013-02-27 08:32:07 -0800121 default_clock_source_ = clock_source;
122#else
Igor Murashkinaaebaa02015-01-26 10:55:53 -0800123 if (clock_source != TraceClockSource::kWall) {
Jeff Hao5ce4b172013-08-16 16:27:18 -0700124 LOG(WARNING) << "Ignoring tracing request to use CPU time.";
Ian Rogers62d6c772013-02-27 08:32:07 -0800125 }
126#endif
127}
128
Ian Rogerse63db272014-07-15 15:36:11 -0700129static uint16_t GetTraceVersion(TraceClockSource clock_source) {
Igor Murashkinaaebaa02015-01-26 10:55:53 -0800130 return (clock_source == TraceClockSource::kDual) ? kTraceVersionDualClock
Ian Rogers62d6c772013-02-27 08:32:07 -0800131 : kTraceVersionSingleClock;
132}
133
Ian Rogerse63db272014-07-15 15:36:11 -0700134static uint16_t GetRecordSize(TraceClockSource clock_source) {
Igor Murashkinaaebaa02015-01-26 10:55:53 -0800135 return (clock_source == TraceClockSource::kDual) ? kTraceRecordSizeDualClock
Ian Rogers62d6c772013-02-27 08:32:07 -0800136 : kTraceRecordSizeSingleClock;
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800137}
138
Elliott Hughese119a362012-05-22 17:37:06 -0700139bool Trace::UseThreadCpuClock() {
Igor Murashkinaaebaa02015-01-26 10:55:53 -0800140 return (clock_source_ == TraceClockSource::kThreadCpu) ||
141 (clock_source_ == TraceClockSource::kDual);
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800142}
143
Elliott Hughese119a362012-05-22 17:37:06 -0700144bool Trace::UseWallClock() {
Igor Murashkinaaebaa02015-01-26 10:55:53 -0800145 return (clock_source_ == TraceClockSource::kWall) ||
146 (clock_source_ == TraceClockSource::kDual);
Elliott Hughese119a362012-05-22 17:37:06 -0700147}
148
Jeff Haoc5d824a2014-07-28 18:35:38 -0700149void Trace::MeasureClockOverhead() {
150 if (UseThreadCpuClock()) {
Jeff Hao57dac6e2013-08-15 16:36:24 -0700151 Thread::Current()->GetCpuMicroTime();
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800152 }
Jeff Haoc5d824a2014-07-28 18:35:38 -0700153 if (UseWallClock()) {
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800154 MicroTime();
155 }
156}
157
Jeff Hao5ce4b172013-08-16 16:27:18 -0700158// Compute an average time taken to measure clocks.
Jeff Haoc5d824a2014-07-28 18:35:38 -0700159uint32_t Trace::GetClockOverheadNanoSeconds() {
Jeff Hao57dac6e2013-08-15 16:36:24 -0700160 Thread* self = Thread::Current();
161 uint64_t start = self->GetCpuMicroTime();
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800162
163 for (int i = 4000; i > 0; i--) {
Jeff Haoc5d824a2014-07-28 18:35:38 -0700164 MeasureClockOverhead();
165 MeasureClockOverhead();
166 MeasureClockOverhead();
167 MeasureClockOverhead();
168 MeasureClockOverhead();
169 MeasureClockOverhead();
170 MeasureClockOverhead();
171 MeasureClockOverhead();
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800172 }
173
Jeff Hao5ce4b172013-08-16 16:27:18 -0700174 uint64_t elapsed_us = self->GetCpuMicroTime() - start;
175 return static_cast<uint32_t>(elapsed_us / 32);
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800176}
177
Elliott Hughesffb465f2012-03-01 18:46:05 -0800178// TODO: put this somewhere with the big-endian equivalent used by JDWP.
179static void Append2LE(uint8_t* buf, uint16_t val) {
Jeff Hao5ce4b172013-08-16 16:27:18 -0700180 *buf++ = static_cast<uint8_t>(val);
181 *buf++ = static_cast<uint8_t>(val >> 8);
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800182}
183
Elliott Hughesffb465f2012-03-01 18:46:05 -0800184// TODO: put this somewhere with the big-endian equivalent used by JDWP.
185static void Append4LE(uint8_t* buf, uint32_t val) {
Jeff Hao5ce4b172013-08-16 16:27:18 -0700186 *buf++ = static_cast<uint8_t>(val);
187 *buf++ = static_cast<uint8_t>(val >> 8);
188 *buf++ = static_cast<uint8_t>(val >> 16);
189 *buf++ = static_cast<uint8_t>(val >> 24);
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800190}
191
Elliott Hughesffb465f2012-03-01 18:46:05 -0800192// TODO: put this somewhere with the big-endian equivalent used by JDWP.
193static void Append8LE(uint8_t* buf, uint64_t val) {
Jeff Hao5ce4b172013-08-16 16:27:18 -0700194 *buf++ = static_cast<uint8_t>(val);
195 *buf++ = static_cast<uint8_t>(val >> 8);
196 *buf++ = static_cast<uint8_t>(val >> 16);
197 *buf++ = static_cast<uint8_t>(val >> 24);
198 *buf++ = static_cast<uint8_t>(val >> 32);
199 *buf++ = static_cast<uint8_t>(val >> 40);
200 *buf++ = static_cast<uint8_t>(val >> 48);
201 *buf++ = static_cast<uint8_t>(val >> 56);
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800202}
203
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700204static void GetSample(Thread* thread, void* arg) REQUIRES_SHARED(Locks::mutator_lock_) {
Andreas Gampec7d878d2018-11-19 18:42:06 +0000205 std::vector<ArtMethod*>* const stack_trace = Trace::AllocStackTrace();
206 StackVisitor::WalkStack(
207 [&](const art::StackVisitor* stack_visitor) REQUIRES_SHARED(Locks::mutator_lock_) {
208 ArtMethod* m = stack_visitor->GetMethod();
209 // Ignore runtime frames (in particular callee save).
210 if (!m->IsRuntimeMethod()) {
211 stack_trace->push_back(m);
212 }
213 return true;
214 },
215 thread,
216 /* context= */ nullptr,
217 art::StackVisitor::StackWalkKind::kIncludeInlinedFrames);
Jeff Hao0abc72e2013-08-13 13:45:14 -0700218 Trace* the_trace = reinterpret_cast<Trace*>(arg);
219 the_trace->CompareAndUpdateStackTrace(thread, stack_trace);
220}
221
Andreas Gampeca714582015-04-03 19:41:34 -0700222static void ClearThreadStackTraceAndClockBase(Thread* thread, void* arg ATTRIBUTE_UNUSED) {
Jeff Hao5ce4b172013-08-16 16:27:18 -0700223 thread->SetTraceClockBase(0);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700224 std::vector<ArtMethod*>* stack_trace = thread->GetStackTraceSample();
Andreas Gampe40da2862015-02-27 12:49:04 -0800225 thread->SetStackTraceSample(nullptr);
Jeff Hao5ce4b172013-08-16 16:27:18 -0700226 delete stack_trace;
227}
228
Jeff Hao0abc72e2013-08-13 13:45:14 -0700229void Trace::CompareAndUpdateStackTrace(Thread* thread,
Mathieu Chartiere401d142015-04-22 13:56:20 -0700230 std::vector<ArtMethod*>* stack_trace) {
Jeff Hao0abc72e2013-08-13 13:45:14 -0700231 CHECK_EQ(pthread_self(), sampling_pthread_);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700232 std::vector<ArtMethod*>* old_stack_trace = thread->GetStackTraceSample();
Jeff Hao5ce4b172013-08-16 16:27:18 -0700233 // Update the thread's stack trace sample.
234 thread->SetStackTraceSample(stack_trace);
Jeff Haoc1ff4b72013-08-19 11:33:10 -0700235 // Read timer clocks to use for all events in this trace.
236 uint32_t thread_clock_diff = 0;
237 uint32_t wall_clock_diff = 0;
238 ReadClocks(thread, &thread_clock_diff, &wall_clock_diff);
Andreas Gampe40da2862015-02-27 12:49:04 -0800239 if (old_stack_trace == nullptr) {
Jeff Hao5ce4b172013-08-16 16:27:18 -0700240 // If there's no previous stack trace sample for this thread, log an entry event for all
Jeff Hao0abc72e2013-08-13 13:45:14 -0700241 // methods in the trace.
Mathieu Chartier4d64cd42015-06-02 16:38:29 -0700242 for (auto rit = stack_trace->rbegin(); rit != stack_trace->rend(); ++rit) {
Jeff Haoc1ff4b72013-08-19 11:33:10 -0700243 LogMethodTraceEvent(thread, *rit, instrumentation::Instrumentation::kMethodEntered,
244 thread_clock_diff, wall_clock_diff);
Jeff Hao0abc72e2013-08-13 13:45:14 -0700245 }
246 } else {
247 // If there's a previous stack trace for this thread, diff the traces and emit entry and exit
248 // events accordingly.
Mathieu Chartier4d64cd42015-06-02 16:38:29 -0700249 auto old_rit = old_stack_trace->rbegin();
250 auto rit = stack_trace->rbegin();
Jeff Hao0abc72e2013-08-13 13:45:14 -0700251 // Iterate bottom-up over both traces until there's a difference between them.
252 while (old_rit != old_stack_trace->rend() && rit != stack_trace->rend() && *old_rit == *rit) {
253 old_rit++;
254 rit++;
255 }
256 // Iterate top-down over the old trace until the point where they differ, emitting exit events.
Mathieu Chartier4d64cd42015-06-02 16:38:29 -0700257 for (auto old_it = old_stack_trace->begin(); old_it != old_rit.base(); ++old_it) {
Jeff Haoc1ff4b72013-08-19 11:33:10 -0700258 LogMethodTraceEvent(thread, *old_it, instrumentation::Instrumentation::kMethodExited,
259 thread_clock_diff, wall_clock_diff);
Jeff Hao0abc72e2013-08-13 13:45:14 -0700260 }
261 // Iterate bottom-up over the new trace from the point where they differ, emitting entry events.
262 for (; rit != stack_trace->rend(); ++rit) {
Jeff Haoc1ff4b72013-08-19 11:33:10 -0700263 LogMethodTraceEvent(thread, *rit, instrumentation::Instrumentation::kMethodEntered,
264 thread_clock_diff, wall_clock_diff);
Jeff Hao0abc72e2013-08-13 13:45:14 -0700265 }
Jeff Hao5ce4b172013-08-16 16:27:18 -0700266 FreeStackTrace(old_stack_trace);
Jeff Hao0abc72e2013-08-13 13:45:14 -0700267 }
268}
269
270void* Trace::RunSamplingThread(void* arg) {
271 Runtime* runtime = Runtime::Current();
Ian Rogersef7d42f2014-01-06 12:55:46 -0800272 intptr_t interval_us = reinterpret_cast<intptr_t>(arg);
Jeff Hao4044bda2014-01-06 15:50:45 -0800273 CHECK_GE(interval_us, 0);
Jeff Hao0abc72e2013-08-13 13:45:14 -0700274 CHECK(runtime->AttachCurrentThread("Sampling Profiler", true, runtime->GetSystemThreadGroup(),
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800275 !runtime->IsAotCompiler()));
Jeff Hao0abc72e2013-08-13 13:45:14 -0700276
277 while (true) {
Jeff Hao23009dc2013-08-22 15:36:42 -0700278 usleep(interval_us);
Mathieu Chartier32ce2ad2016-03-04 14:58:03 -0800279 ScopedTrace trace("Profile sampling");
Jeff Hao0abc72e2013-08-13 13:45:14 -0700280 Thread* self = Thread::Current();
281 Trace* the_trace;
282 {
283 MutexLock mu(self, *Locks::trace_lock_);
284 the_trace = the_trace_;
Andreas Gampe40da2862015-02-27 12:49:04 -0800285 if (the_trace == nullptr) {
Jeff Hao0abc72e2013-08-13 13:45:14 -0700286 break;
287 }
288 }
Jeff Hao0abc72e2013-08-13 13:45:14 -0700289 {
Roland Levillaine45b3b12018-02-27 17:18:55 +0000290 // Avoid a deadlock between a thread doing garbage collection
291 // and the profile sampling thread, by blocking GC when sampling
292 // thread stacks (see b/73624630).
293 gc::ScopedGCCriticalSection gcs(self,
294 art::gc::kGcCauseInstrumentation,
295 art::gc::kCollectorTypeInstrumentation);
Mathieu Chartier4f55e222015-09-04 13:26:21 -0700296 ScopedSuspendAll ssa(__FUNCTION__);
Jeff Hao0abc72e2013-08-13 13:45:14 -0700297 MutexLock mu(self, *Locks::thread_list_lock_);
298 runtime->GetThreadList()->ForEach(GetSample, the_trace);
299 }
Jeff Hao0abc72e2013-08-13 13:45:14 -0700300 }
301
302 runtime->DetachCurrentThread();
Andreas Gampe40da2862015-02-27 12:49:04 -0800303 return nullptr;
Jeff Hao0abc72e2013-08-13 13:45:14 -0700304}
305
Andreas Gampe6ff3b372018-03-15 08:53:16 -0700306void Trace::Start(const char* trace_filename,
307 size_t buffer_size,
308 int flags,
309 TraceOutputMode output_mode,
310 TraceMode trace_mode,
311 int interval_us) {
312 std::unique_ptr<File> file(OS::CreateEmptyFileWriteOnly(trace_filename));
313 if (file == nullptr) {
314 std::string msg = android::base::StringPrintf("Unable to open trace file '%s'", trace_filename);
315 PLOG(ERROR) << msg;
316 ScopedObjectAccess soa(Thread::Current());
317 Thread::Current()->ThrowNewException("Ljava/lang/RuntimeException;", msg.c_str());
318 return;
319 }
320 Start(std::move(file), buffer_size, flags, output_mode, trace_mode, interval_us);
321}
322
323void Trace::Start(int trace_fd,
324 size_t buffer_size,
325 int flags,
326 TraceOutputMode output_mode,
327 TraceMode trace_mode,
328 int interval_us) {
329 if (trace_fd < 0) {
330 std::string msg = android::base::StringPrintf("Unable to start tracing with invalid fd %d",
331 trace_fd);
332 LOG(ERROR) << msg;
333 ScopedObjectAccess soa(Thread::Current());
334 Thread::Current()->ThrowNewException("Ljava/lang/RuntimeException;", msg.c_str());
335 return;
336 }
337 std::unique_ptr<File> file(new File(trace_fd, "tracefile"));
338 Start(std::move(file), buffer_size, flags, output_mode, trace_mode, interval_us);
339}
340
341void Trace::StartDDMS(size_t buffer_size,
342 int flags,
343 TraceMode trace_mode,
344 int interval_us) {
345 Start(std::unique_ptr<File>(),
346 buffer_size,
347 flags,
348 TraceOutputMode::kDDMS,
349 trace_mode,
350 interval_us);
351}
352
353void Trace::Start(std::unique_ptr<File>&& trace_file_in,
354 size_t buffer_size,
355 int flags,
356 TraceOutputMode output_mode,
357 TraceMode trace_mode,
358 int interval_us) {
359 // We own trace_file now and are responsible for closing it. To account for error situations, use
360 // a specialized unique_ptr to ensure we close it on the way out (if it hasn't been passed to a
361 // Trace instance).
362 auto deleter = [](File* file) {
363 if (file != nullptr) {
364 file->MarkUnchecked(); // Don't deal with flushing requirements.
365 int result ATTRIBUTE_UNUSED = file->Close();
366 delete file;
367 }
368 };
369 std::unique_ptr<File, decltype(deleter)> trace_file(trace_file_in.release(), deleter);
Andreas Gampe6ff3b372018-03-15 08:53:16 -0700370
Ian Rogers62d6c772013-02-27 08:32:07 -0800371 Thread* self = Thread::Current();
372 {
373 MutexLock mu(self, *Locks::trace_lock_);
Andreas Gampe40da2862015-02-27 12:49:04 -0800374 if (the_trace_ != nullptr) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800375 LOG(ERROR) << "Trace already in progress, ignoring this request";
376 return;
377 }
jeffhaoe343b762011-12-05 16:36:44 -0800378 }
Jeff Haod063d912014-09-08 09:38:18 -0700379
380 // Check interval if sampling is enabled
Andreas Gampe7e7e0f42015-03-29 15:26:23 -0700381 if (trace_mode == TraceMode::kSampling && interval_us <= 0) {
Jeff Haod063d912014-09-08 09:38:18 -0700382 LOG(ERROR) << "Invalid sampling interval: " << interval_us;
383 ScopedObjectAccess soa(self);
384 ThrowRuntimeException("Invalid sampling interval: %d", interval_us);
385 return;
386 }
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800387
Jeff Haod063d912014-09-08 09:38:18 -0700388 Runtime* runtime = Runtime::Current();
Mathieu Chartier9ef78b52014-09-25 17:03:12 -0700389
390 // Enable count of allocs if specified in the flags.
391 bool enable_stats = false;
392
jeffhao2692b572011-12-16 15:42:28 -0800393 // Create Trace object.
Ian Rogers62d6c772013-02-27 08:32:07 -0800394 {
Mathieu Chartieraa516822015-10-02 15:53:37 -0700395 // Required since EnableMethodTracing calls ConfigureStubs which visits class linker classes.
396 gc::ScopedGCCriticalSection gcs(self,
397 gc::kGcCauseInstrumentation,
398 gc::kCollectorTypeInstrumentation);
Mathieu Chartier4f55e222015-09-04 13:26:21 -0700399 ScopedSuspendAll ssa(__FUNCTION__);
Ian Rogers62d6c772013-02-27 08:32:07 -0800400 MutexLock mu(self, *Locks::trace_lock_);
Andreas Gampe40da2862015-02-27 12:49:04 -0800401 if (the_trace_ != nullptr) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800402 LOG(ERROR) << "Trace already in progress, ignoring this request";
403 } else {
Stephen Hinesf0b33e52018-08-25 13:31:52 -0700404 enable_stats = (flags & kTraceCountAllocs) != 0;
Andreas Gampe6ff3b372018-03-15 08:53:16 -0700405 the_trace_ = new Trace(trace_file.release(), buffer_size, flags, output_mode, trace_mode);
Andreas Gampe7e7e0f42015-03-29 15:26:23 -0700406 if (trace_mode == TraceMode::kSampling) {
Andreas Gampe40da2862015-02-27 12:49:04 -0800407 CHECK_PTHREAD_CALL(pthread_create, (&sampling_pthread_, nullptr, &RunSamplingThread,
Jeff Hao23009dc2013-08-22 15:36:42 -0700408 reinterpret_cast<void*>(interval_us)),
409 "Sampling profiler thread");
Andreas Gampe40da2862015-02-27 12:49:04 -0800410 the_trace_->interval_us_ = interval_us;
Jeff Hao0abc72e2013-08-13 13:45:14 -0700411 } else {
412 runtime->GetInstrumentation()->AddListener(the_trace_,
413 instrumentation::Instrumentation::kMethodEntered |
414 instrumentation::Instrumentation::kMethodExited |
415 instrumentation::Instrumentation::kMethodUnwind);
Andreas Gampe40da2862015-02-27 12:49:04 -0800416 // TODO: In full-PIC mode, we don't need to fully deopt.
Alex Light2a90bc92018-07-10 21:57:42 +0000417 // TODO: We can only use trampoline entrypoints if we are java-debuggable since in that case
418 // we know that inlining and other problematic optimizations are disabled. We might just
419 // want to use the trampolines anyway since it is faster. It makes the story with disabling
420 // jit-gc more complex though.
421 runtime->GetInstrumentation()->EnableMethodTracing(
Andreas Gampe98ea9d92018-10-19 14:06:15 -0700422 kTracerInstrumentationKey, /*needs_interpreter=*/!runtime->IsJavaDebuggable());
Jeff Hao0abc72e2013-08-13 13:45:14 -0700423 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800424 }
jeffhao0791adc2012-04-04 11:14:32 -0700425 }
Jeff Haod063d912014-09-08 09:38:18 -0700426
Mathieu Chartier9ef78b52014-09-25 17:03:12 -0700427 // Can't call this when holding the mutator lock.
428 if (enable_stats) {
429 runtime->SetStatsEnabled(true);
430 }
jeffhao2692b572011-12-16 15:42:28 -0800431}
432
Andreas Gampe40da2862015-02-27 12:49:04 -0800433void Trace::StopTracing(bool finish_tracing, bool flush_file) {
Mathieu Chartier9ef78b52014-09-25 17:03:12 -0700434 bool stop_alloc_counting = false;
Mathieu Chartier02e5f162015-03-11 09:54:22 -0700435 Runtime* const runtime = Runtime::Current();
436 Trace* the_trace = nullptr;
Hiroshi Yamauchi9ea02c42016-03-03 15:09:27 -0800437 Thread* const self = Thread::Current();
Jeff Hao0abc72e2013-08-13 13:45:14 -0700438 pthread_t sampling_pthread = 0U;
Ian Rogers62d6c772013-02-27 08:32:07 -0800439 {
Hiroshi Yamauchi9ea02c42016-03-03 15:09:27 -0800440 MutexLock mu(self, *Locks::trace_lock_);
Andreas Gampe40da2862015-02-27 12:49:04 -0800441 if (the_trace_ == nullptr) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800442 LOG(ERROR) << "Trace stop requested, but no trace currently running";
443 } else {
444 the_trace = the_trace_;
Andreas Gampe40da2862015-02-27 12:49:04 -0800445 the_trace_ = nullptr;
Jeff Hao0abc72e2013-08-13 13:45:14 -0700446 sampling_pthread = sampling_pthread_;
Ian Rogers62d6c772013-02-27 08:32:07 -0800447 }
jeffhao2692b572011-12-16 15:42:28 -0800448 }
Mathieu Chartier02e5f162015-03-11 09:54:22 -0700449 // Make sure that we join before we delete the trace since we don't want to have
450 // the sampling thread access a stale pointer. This finishes since the sampling thread exits when
451 // the_trace_ is null.
452 if (sampling_pthread != 0U) {
Andreas Gampe40da2862015-02-27 12:49:04 -0800453 CHECK_PTHREAD_CALL(pthread_join, (sampling_pthread, nullptr), "sampling thread shutdown");
Mathieu Chartier02e5f162015-03-11 09:54:22 -0700454 sampling_pthread_ = 0U;
455 }
Andreas Gampe40da2862015-02-27 12:49:04 -0800456
Alex Light772099a2017-11-21 14:05:04 -0800457 if (the_trace != nullptr) {
458 stop_alloc_counting = (the_trace->flags_ & Trace::kTraceCountAllocs) != 0;
Orion Hodson283ad2d2018-03-26 13:37:41 +0100459 // Stop the trace sources adding more entries to the trace buffer and synchronise stores.
460 {
461 gc::ScopedGCCriticalSection gcs(self,
462 gc::kGcCauseInstrumentation,
463 gc::kCollectorTypeInstrumentation);
464 ScopedSuspendAll ssa(__FUNCTION__);
465
466 if (the_trace->trace_mode_ == TraceMode::kSampling) {
467 MutexLock mu(self, *Locks::thread_list_lock_);
468 runtime->GetThreadList()->ForEach(ClearThreadStackTraceAndClockBase, nullptr);
469 } else {
470 runtime->GetInstrumentation()->DisableMethodTracing(kTracerInstrumentationKey);
471 runtime->GetInstrumentation()->RemoveListener(
472 the_trace, instrumentation::Instrumentation::kMethodEntered |
473 instrumentation::Instrumentation::kMethodExited |
474 instrumentation::Instrumentation::kMethodUnwind);
475 }
476 }
477 // At this point, code may read buf_ as it's writers are shutdown
478 // and the ScopedSuspendAll above has ensured all stores to buf_
479 // are now visible.
Alex Light772099a2017-11-21 14:05:04 -0800480 if (finish_tracing) {
481 the_trace->FinishTracing();
482 }
Alex Light772099a2017-11-21 14:05:04 -0800483 if (the_trace->trace_file_.get() != nullptr) {
484 // Do not try to erase, so flush and close explicitly.
485 if (flush_file) {
486 if (the_trace->trace_file_->Flush() != 0) {
487 PLOG(WARNING) << "Could not flush trace file.";
488 }
489 } else {
490 the_trace->trace_file_->MarkUnchecked(); // Do not trigger guard.
491 }
492 if (the_trace->trace_file_->Close() != 0) {
493 PLOG(ERROR) << "Could not close trace file.";
494 }
495 }
496 delete the_trace;
Ian Rogers62d6c772013-02-27 08:32:07 -0800497 }
Mathieu Chartier9ef78b52014-09-25 17:03:12 -0700498 if (stop_alloc_counting) {
499 // Can be racy since SetStatsEnabled is not guarded by any locks.
Mathieu Chartier02e5f162015-03-11 09:54:22 -0700500 runtime->SetStatsEnabled(false);
Jeff Hao0abc72e2013-08-13 13:45:14 -0700501 }
jeffhao2692b572011-12-16 15:42:28 -0800502}
503
Andreas Gampe40da2862015-02-27 12:49:04 -0800504void Trace::Abort() {
505 // Do not write anything anymore.
506 StopTracing(false, false);
507}
508
509void Trace::Stop() {
510 // Finish writing.
511 StopTracing(true, true);
512}
513
jeffhaob5e81852012-03-12 11:15:45 -0700514void Trace::Shutdown() {
Jeff Hao64caa7d2013-08-29 11:18:01 -0700515 if (GetMethodTracingMode() != kTracingInactive) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800516 Stop();
jeffhaob5e81852012-03-12 11:15:45 -0700517 }
jeffhaob5e81852012-03-12 11:15:45 -0700518}
519
Andreas Gampe40da2862015-02-27 12:49:04 -0800520void Trace::Pause() {
521 bool stop_alloc_counting = false;
522 Runtime* runtime = Runtime::Current();
523 Trace* the_trace = nullptr;
524
Mathieu Chartieraa516822015-10-02 15:53:37 -0700525 Thread* const self = Thread::Current();
Andreas Gampe40da2862015-02-27 12:49:04 -0800526 pthread_t sampling_pthread = 0U;
527 {
Mathieu Chartieraa516822015-10-02 15:53:37 -0700528 MutexLock mu(self, *Locks::trace_lock_);
Andreas Gampe40da2862015-02-27 12:49:04 -0800529 if (the_trace_ == nullptr) {
530 LOG(ERROR) << "Trace pause requested, but no trace currently running";
531 return;
532 } else {
533 the_trace = the_trace_;
534 sampling_pthread = sampling_pthread_;
535 }
536 }
537
538 if (sampling_pthread != 0U) {
539 {
Mathieu Chartieraa516822015-10-02 15:53:37 -0700540 MutexLock mu(self, *Locks::trace_lock_);
Andreas Gampe40da2862015-02-27 12:49:04 -0800541 the_trace_ = nullptr;
542 }
543 CHECK_PTHREAD_CALL(pthread_join, (sampling_pthread, nullptr), "sampling thread shutdown");
544 sampling_pthread_ = 0U;
545 {
Mathieu Chartieraa516822015-10-02 15:53:37 -0700546 MutexLock mu(self, *Locks::trace_lock_);
Andreas Gampe40da2862015-02-27 12:49:04 -0800547 the_trace_ = the_trace;
548 }
549 }
550
551 if (the_trace != nullptr) {
Mathieu Chartieraa516822015-10-02 15:53:37 -0700552 gc::ScopedGCCriticalSection gcs(self,
553 gc::kGcCauseInstrumentation,
554 gc::kCollectorTypeInstrumentation);
Mathieu Chartier4f55e222015-09-04 13:26:21 -0700555 ScopedSuspendAll ssa(__FUNCTION__);
Andreas Gampe40da2862015-02-27 12:49:04 -0800556 stop_alloc_counting = (the_trace->flags_ & Trace::kTraceCountAllocs) != 0;
557
558 if (the_trace->trace_mode_ == TraceMode::kSampling) {
Mathieu Chartieraa516822015-10-02 15:53:37 -0700559 MutexLock mu(self, *Locks::thread_list_lock_);
Andreas Gampe40da2862015-02-27 12:49:04 -0800560 runtime->GetThreadList()->ForEach(ClearThreadStackTraceAndClockBase, nullptr);
561 } else {
Sebastien Hertz0462c4c2015-04-01 16:34:17 +0200562 runtime->GetInstrumentation()->DisableMethodTracing(kTracerInstrumentationKey);
Mathieu Chartier4f55e222015-09-04 13:26:21 -0700563 runtime->GetInstrumentation()->RemoveListener(
564 the_trace,
565 instrumentation::Instrumentation::kMethodEntered |
566 instrumentation::Instrumentation::kMethodExited |
567 instrumentation::Instrumentation::kMethodUnwind);
Andreas Gampe40da2862015-02-27 12:49:04 -0800568 }
Andreas Gampe40da2862015-02-27 12:49:04 -0800569 }
570
571 if (stop_alloc_counting) {
572 // Can be racy since SetStatsEnabled is not guarded by any locks.
573 Runtime::Current()->SetStatsEnabled(false);
574 }
575}
576
577void Trace::Resume() {
578 Thread* self = Thread::Current();
579 Trace* the_trace;
580 {
581 MutexLock mu(self, *Locks::trace_lock_);
582 if (the_trace_ == nullptr) {
583 LOG(ERROR) << "No trace to resume (or sampling mode), ignoring this request";
584 return;
585 }
586 the_trace = the_trace_;
587 }
588
589 Runtime* runtime = Runtime::Current();
590
591 // Enable count of allocs if specified in the flags.
Stephen Hinesf0b33e52018-08-25 13:31:52 -0700592 bool enable_stats = (the_trace->flags_ & kTraceCountAllocs) != 0;
Andreas Gampe40da2862015-02-27 12:49:04 -0800593
Mathieu Chartier4f55e222015-09-04 13:26:21 -0700594 {
Mathieu Chartieraa516822015-10-02 15:53:37 -0700595 gc::ScopedGCCriticalSection gcs(self,
596 gc::kGcCauseInstrumentation,
597 gc::kCollectorTypeInstrumentation);
Mathieu Chartier4f55e222015-09-04 13:26:21 -0700598 ScopedSuspendAll ssa(__FUNCTION__);
Andreas Gampe40da2862015-02-27 12:49:04 -0800599
Mathieu Chartier4f55e222015-09-04 13:26:21 -0700600 // Reenable.
601 if (the_trace->trace_mode_ == TraceMode::kSampling) {
602 CHECK_PTHREAD_CALL(pthread_create, (&sampling_pthread_, nullptr, &RunSamplingThread,
603 reinterpret_cast<void*>(the_trace->interval_us_)), "Sampling profiler thread");
604 } else {
605 runtime->GetInstrumentation()->AddListener(the_trace,
606 instrumentation::Instrumentation::kMethodEntered |
607 instrumentation::Instrumentation::kMethodExited |
608 instrumentation::Instrumentation::kMethodUnwind);
609 // TODO: In full-PIC mode, we don't need to fully deopt.
610 runtime->GetInstrumentation()->EnableMethodTracing(kTracerInstrumentationKey);
611 }
Andreas Gampe40da2862015-02-27 12:49:04 -0800612 }
613
Andreas Gampe40da2862015-02-27 12:49:04 -0800614 // Can't call this when holding the mutator lock.
615 if (enable_stats) {
616 runtime->SetStatsEnabled(true);
617 }
618}
619
Jeff Hao64caa7d2013-08-29 11:18:01 -0700620TracingMode Trace::GetMethodTracingMode() {
Ian Rogers62d6c772013-02-27 08:32:07 -0800621 MutexLock mu(Thread::Current(), *Locks::trace_lock_);
Andreas Gampe40da2862015-02-27 12:49:04 -0800622 if (the_trace_ == nullptr) {
Jeff Hao64caa7d2013-08-29 11:18:01 -0700623 return kTracingInactive;
Jeff Hao64caa7d2013-08-29 11:18:01 -0700624 } else {
Andreas Gampe7e7e0f42015-03-29 15:26:23 -0700625 switch (the_trace_->trace_mode_) {
626 case TraceMode::kSampling:
627 return kSampleProfilingActive;
628 case TraceMode::kMethodTracing:
629 return kMethodTracingActive;
630 }
631 LOG(FATAL) << "Unreachable";
632 UNREACHABLE();
Jeff Hao64caa7d2013-08-29 11:18:01 -0700633 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800634}
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800635
Andreas Gampee34a42c2015-04-25 14:44:29 -0700636static constexpr size_t kMinBufSize = 18U; // Trace header is up to 18B.
Andreas Gampe40da2862015-02-27 12:49:04 -0800637
Andreas Gampe6ff3b372018-03-15 08:53:16 -0700638Trace::Trace(File* trace_file,
639 size_t buffer_size,
640 int flags,
641 TraceOutputMode output_mode,
642 TraceMode trace_mode)
Andreas Gampe40da2862015-02-27 12:49:04 -0800643 : trace_file_(trace_file),
Andreas Gampee34a42c2015-04-25 14:44:29 -0700644 buf_(new uint8_t[std::max(kMinBufSize, buffer_size)]()),
Andreas Gampe40da2862015-02-27 12:49:04 -0800645 flags_(flags), trace_output_mode_(output_mode), trace_mode_(trace_mode),
646 clock_source_(default_clock_source_),
Andreas Gampee34a42c2015-04-25 14:44:29 -0700647 buffer_size_(std::max(kMinBufSize, buffer_size)),
Orion Hodson283ad2d2018-03-26 13:37:41 +0100648 start_time_(MicroTime()), clock_overhead_ns_(GetClockOverheadNanoSeconds()),
Mathieu Chartier4d64cd42015-06-02 16:38:29 -0700649 overflow_(false), interval_us_(0), streaming_lock_(nullptr),
Andreas Gampe7526d782015-06-22 22:53:45 -0700650 unique_methods_lock_(new Mutex("unique methods lock", kTracingUniqueMethodsLock)) {
Andreas Gampe6ff3b372018-03-15 08:53:16 -0700651 CHECK(trace_file != nullptr || output_mode == TraceOutputMode::kDDMS);
652
Ian Rogers62d6c772013-02-27 08:32:07 -0800653 uint16_t trace_version = GetTraceVersion(clock_source_);
Andreas Gampe40da2862015-02-27 12:49:04 -0800654 if (output_mode == TraceOutputMode::kStreaming) {
655 trace_version |= 0xF0U;
656 }
657 // Set up the beginning of the trace.
jeffhao2692b572011-12-16 15:42:28 -0800658 memset(buf_.get(), 0, kTraceHeaderLength);
659 Append4LE(buf_.get(), kTraceMagicValue);
Ian Rogers62d6c772013-02-27 08:32:07 -0800660 Append2LE(buf_.get() + 4, trace_version);
jeffhao2692b572011-12-16 15:42:28 -0800661 Append2LE(buf_.get() + 6, kTraceHeaderLength);
662 Append8LE(buf_.get() + 8, start_time_);
Ian Rogers62d6c772013-02-27 08:32:07 -0800663 if (trace_version >= kTraceVersionDualClock) {
664 uint16_t record_size = GetRecordSize(clock_source_);
665 Append2LE(buf_.get() + 16, record_size);
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800666 }
Andreas Gampee34a42c2015-04-25 14:44:29 -0700667 static_assert(18 <= kMinBufSize, "Minimum buffer size not large enough for trace header");
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800668
Orion Hodson88591fe2018-03-06 13:35:43 +0000669 cur_offset_.store(kTraceHeaderLength, std::memory_order_relaxed);
Andreas Gampe40da2862015-02-27 12:49:04 -0800670
671 if (output_mode == TraceOutputMode::kStreaming) {
Andreas Gampe7526d782015-06-22 22:53:45 -0700672 streaming_lock_ = new Mutex("tracing lock", LockLevel::kTracingStreamingLock);
Andreas Gampe40da2862015-02-27 12:49:04 -0800673 seen_threads_.reset(new ThreadIDBitSet());
674 }
675}
676
677Trace::~Trace() {
678 delete streaming_lock_;
Andreas Gampe7526d782015-06-22 22:53:45 -0700679 delete unique_methods_lock_;
Ian Rogers62d6c772013-02-27 08:32:07 -0800680}
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800681
Mathieu Chartiere401d142015-04-22 13:56:20 -0700682static uint64_t ReadBytes(uint8_t* buf, size_t bytes) {
683 uint64_t ret = 0;
684 for (size_t i = 0; i < bytes; ++i) {
685 ret |= static_cast<uint64_t>(buf[i]) << (i * 8);
686 }
687 return ret;
688}
689
Mathieu Chartier4d64cd42015-06-02 16:38:29 -0700690void Trace::DumpBuf(uint8_t* buf, size_t buf_size, TraceClockSource clock_source) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800691 uint8_t* ptr = buf + kTraceHeaderLength;
692 uint8_t* end = buf + buf_size;
693
694 while (ptr < end) {
Mathieu Chartier4d64cd42015-06-02 16:38:29 -0700695 uint32_t tmid = ReadBytes(ptr + 2, sizeof(tmid));
696 ArtMethod* method = DecodeTraceMethod(tmid);
Ian Rogers62d6c772013-02-27 08:32:07 -0800697 TraceAction action = DecodeTraceAction(tmid);
David Sehr709b0702016-10-13 09:12:37 -0700698 LOG(INFO) << ArtMethod::PrettyMethod(method) << " " << static_cast<int>(action);
Ian Rogers62d6c772013-02-27 08:32:07 -0800699 ptr += GetRecordSize(clock_source);
700 }
jeffhaoe343b762011-12-05 16:36:44 -0800701}
702
Andreas Gampe40da2862015-02-27 12:49:04 -0800703void Trace::FinishTracing() {
704 size_t final_offset = 0;
Mathieu Chartiere401d142015-04-22 13:56:20 -0700705 std::set<ArtMethod*> visited_methods;
Andreas Gampe40da2862015-02-27 12:49:04 -0800706 if (trace_output_mode_ == TraceOutputMode::kStreaming) {
Andreas Gampe40da2862015-02-27 12:49:04 -0800707 // Clean up.
Orion Hodson283ad2d2018-03-26 13:37:41 +0100708 MutexLock mu(Thread::Current(), *streaming_lock_);
Mathieu Chartier4d64cd42015-06-02 16:38:29 -0700709 STLDeleteValues(&seen_methods_);
Andreas Gampe40da2862015-02-27 12:49:04 -0800710 } else {
Orion Hodson88591fe2018-03-06 13:35:43 +0000711 final_offset = cur_offset_.load(std::memory_order_relaxed);
Andreas Gampe40da2862015-02-27 12:49:04 -0800712 GetVisitedMethods(final_offset, &visited_methods);
713 }
714
715 // Compute elapsed time.
716 uint64_t elapsed = MicroTime() - start_time_;
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800717
718 std::ostringstream os;
719
720 os << StringPrintf("%cversion\n", kTraceTokenChar);
Ian Rogers62d6c772013-02-27 08:32:07 -0800721 os << StringPrintf("%d\n", GetTraceVersion(clock_source_));
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800722 os << StringPrintf("data-file-overflow=%s\n", overflow_ ? "true" : "false");
723 if (UseThreadCpuClock()) {
724 if (UseWallClock()) {
725 os << StringPrintf("clock=dual\n");
726 } else {
727 os << StringPrintf("clock=thread-cpu\n");
728 }
729 } else {
730 os << StringPrintf("clock=wall\n");
731 }
Ian Rogersef7d42f2014-01-06 12:55:46 -0800732 os << StringPrintf("elapsed-time-usec=%" PRIu64 "\n", elapsed);
Andreas Gampe40da2862015-02-27 12:49:04 -0800733 if (trace_output_mode_ != TraceOutputMode::kStreaming) {
734 size_t num_records = (final_offset - kTraceHeaderLength) / GetRecordSize(clock_source_);
735 os << StringPrintf("num-method-calls=%zd\n", num_records);
736 }
Jeff Haoc5d824a2014-07-28 18:35:38 -0700737 os << StringPrintf("clock-call-overhead-nsec=%d\n", clock_overhead_ns_);
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800738 os << StringPrintf("vm=art\n");
John Reck0624a272015-03-26 15:47:54 -0700739 os << StringPrintf("pid=%d\n", getpid());
jeffhao0791adc2012-04-04 11:14:32 -0700740 if ((flags_ & kTraceCountAllocs) != 0) {
741 os << StringPrintf("alloc-count=%d\n", Runtime::Current()->GetStat(KIND_ALLOCATED_OBJECTS));
742 os << StringPrintf("alloc-size=%d\n", Runtime::Current()->GetStat(KIND_ALLOCATED_BYTES));
743 os << StringPrintf("gc-count=%d\n", Runtime::Current()->GetStat(KIND_GC_INVOCATIONS));
744 }
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800745 os << StringPrintf("%cthreads\n", kTraceTokenChar);
746 DumpThreadList(os);
747 os << StringPrintf("%cmethods\n", kTraceTokenChar);
Ian Rogers62d6c772013-02-27 08:32:07 -0800748 DumpMethodList(os, visited_methods);
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800749 os << StringPrintf("%cend\n", kTraceTokenChar);
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800750 std::string header(os.str());
Andreas Gampe40da2862015-02-27 12:49:04 -0800751
752 if (trace_output_mode_ == TraceOutputMode::kStreaming) {
Orion Hodson283ad2d2018-03-26 13:37:41 +0100753 // Protect access to buf_ and satisfy sanitizer for calls to WriteBuf / FlushBuf.
754 MutexLock mu(Thread::Current(), *streaming_lock_);
Shukang Zhou8a5ab912017-01-20 11:40:16 -0800755 // Write a special token to mark the end of trace records and the start of
756 // trace summary.
757 uint8_t buf[7];
758 Append2LE(buf, 0);
759 buf[2] = kOpTraceSummary;
760 Append4LE(buf + 3, static_cast<uint32_t>(header.length()));
761 WriteToBuf(buf, sizeof(buf));
762 // Write the trace summary. The summary is identical to the file header when
763 // the output mode is not streaming (except for methods).
764 WriteToBuf(reinterpret_cast<const uint8_t*>(header.c_str()), header.length());
765 // Flush the buffer, which may include some trace records before the summary.
766 FlushBuf();
Andreas Gampe40da2862015-02-27 12:49:04 -0800767 } else {
768 if (trace_file_.get() == nullptr) {
Alex Light772099a2017-11-21 14:05:04 -0800769 std::vector<uint8_t> data;
770 data.resize(header.length() + final_offset);
771 memcpy(data.data(), header.c_str(), header.length());
772 memcpy(data.data() + header.length(), buf_.get(), final_offset);
773 Runtime::Current()->GetRuntimeCallbacks()->DdmPublishChunk(CHUNK_TYPE("MPSE"),
774 ArrayRef<const uint8_t>(data));
Andreas Gampe40da2862015-02-27 12:49:04 -0800775 const bool kDumpTraceInfo = false;
776 if (kDumpTraceInfo) {
777 LOG(INFO) << "Trace sent:\n" << header;
778 DumpBuf(buf_.get(), final_offset, clock_source_);
779 }
780 } else {
781 if (!trace_file_->WriteFully(header.c_str(), header.length()) ||
782 !trace_file_->WriteFully(buf_.get(), final_offset)) {
783 std::string detail(StringPrintf("Trace data write failed: %s", strerror(errno)));
784 PLOG(ERROR) << detail;
785 ThrowRuntimeException("%s", detail.c_str());
786 }
787 }
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800788 }
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800789}
790
Roland Levillain4b8f1ec2015-08-26 18:34:03 +0100791void Trace::DexPcMoved(Thread* thread ATTRIBUTE_UNUSED,
Alex Lightd7661582017-05-01 13:48:16 -0700792 Handle<mirror::Object> this_object ATTRIBUTE_UNUSED,
Roland Levillain4b8f1ec2015-08-26 18:34:03 +0100793 ArtMethod* method,
794 uint32_t new_dex_pc) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800795 // We're not recorded to listen to this kind of event, so complain.
David Sehr709b0702016-10-13 09:12:37 -0700796 LOG(ERROR) << "Unexpected dex PC event in tracing " << ArtMethod::PrettyMethod(method)
797 << " " << new_dex_pc;
Andreas Gampec8ccf682014-09-29 20:07:43 -0700798}
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800799
Roland Levillain4b8f1ec2015-08-26 18:34:03 +0100800void Trace::FieldRead(Thread* thread ATTRIBUTE_UNUSED,
Alex Lightd7661582017-05-01 13:48:16 -0700801 Handle<mirror::Object> this_object ATTRIBUTE_UNUSED,
Roland Levillain4b8f1ec2015-08-26 18:34:03 +0100802 ArtMethod* method,
803 uint32_t dex_pc,
804 ArtField* field ATTRIBUTE_UNUSED)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700805 REQUIRES_SHARED(Locks::mutator_lock_) {
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200806 // We're not recorded to listen to this kind of event, so complain.
David Sehr709b0702016-10-13 09:12:37 -0700807 LOG(ERROR) << "Unexpected field read event in tracing " << ArtMethod::PrettyMethod(method)
808 << " " << dex_pc;
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200809}
810
Roland Levillain4b8f1ec2015-08-26 18:34:03 +0100811void Trace::FieldWritten(Thread* thread ATTRIBUTE_UNUSED,
Alex Lightd7661582017-05-01 13:48:16 -0700812 Handle<mirror::Object> this_object ATTRIBUTE_UNUSED,
Roland Levillain4b8f1ec2015-08-26 18:34:03 +0100813 ArtMethod* method,
814 uint32_t dex_pc,
815 ArtField* field ATTRIBUTE_UNUSED,
816 const JValue& field_value ATTRIBUTE_UNUSED)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700817 REQUIRES_SHARED(Locks::mutator_lock_) {
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200818 // We're not recorded to listen to this kind of event, so complain.
David Sehr709b0702016-10-13 09:12:37 -0700819 LOG(ERROR) << "Unexpected field write event in tracing " << ArtMethod::PrettyMethod(method)
820 << " " << dex_pc;
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200821}
822
Alex Lightd7661582017-05-01 13:48:16 -0700823void Trace::MethodEntered(Thread* thread,
824 Handle<mirror::Object> this_object ATTRIBUTE_UNUSED,
825 ArtMethod* method,
826 uint32_t dex_pc ATTRIBUTE_UNUSED) {
Jeff Haoc1ff4b72013-08-19 11:33:10 -0700827 uint32_t thread_clock_diff = 0;
828 uint32_t wall_clock_diff = 0;
829 ReadClocks(thread, &thread_clock_diff, &wall_clock_diff);
830 LogMethodTraceEvent(thread, method, instrumentation::Instrumentation::kMethodEntered,
831 thread_clock_diff, wall_clock_diff);
Ian Rogers62d6c772013-02-27 08:32:07 -0800832}
833
Alex Lightd7661582017-05-01 13:48:16 -0700834void Trace::MethodExited(Thread* thread,
835 Handle<mirror::Object> this_object ATTRIBUTE_UNUSED,
836 ArtMethod* method,
837 uint32_t dex_pc ATTRIBUTE_UNUSED,
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700838 const JValue& return_value ATTRIBUTE_UNUSED) {
Jeff Haoc1ff4b72013-08-19 11:33:10 -0700839 uint32_t thread_clock_diff = 0;
840 uint32_t wall_clock_diff = 0;
841 ReadClocks(thread, &thread_clock_diff, &wall_clock_diff);
842 LogMethodTraceEvent(thread, method, instrumentation::Instrumentation::kMethodExited,
843 thread_clock_diff, wall_clock_diff);
Ian Rogers62d6c772013-02-27 08:32:07 -0800844}
845
Alex Lightd7661582017-05-01 13:48:16 -0700846void Trace::MethodUnwind(Thread* thread,
847 Handle<mirror::Object> this_object ATTRIBUTE_UNUSED,
848 ArtMethod* method,
849 uint32_t dex_pc ATTRIBUTE_UNUSED) {
Jeff Haoc1ff4b72013-08-19 11:33:10 -0700850 uint32_t thread_clock_diff = 0;
851 uint32_t wall_clock_diff = 0;
852 ReadClocks(thread, &thread_clock_diff, &wall_clock_diff);
853 LogMethodTraceEvent(thread, method, instrumentation::Instrumentation::kMethodUnwind,
854 thread_clock_diff, wall_clock_diff);
Ian Rogers62d6c772013-02-27 08:32:07 -0800855}
856
Alex Light6e1607e2017-08-23 10:06:18 -0700857void Trace::ExceptionThrown(Thread* thread ATTRIBUTE_UNUSED,
Alex Lightd7661582017-05-01 13:48:16 -0700858 Handle<mirror::Throwable> exception_object ATTRIBUTE_UNUSED)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700859 REQUIRES_SHARED(Locks::mutator_lock_) {
Alex Light6e1607e2017-08-23 10:06:18 -0700860 LOG(ERROR) << "Unexpected exception thrown event in tracing";
Ian Rogers62d6c772013-02-27 08:32:07 -0800861}
862
Alex Light798eab02017-08-23 12:54:53 -0700863void Trace::ExceptionHandled(Thread* thread ATTRIBUTE_UNUSED,
864 Handle<mirror::Throwable> exception_object ATTRIBUTE_UNUSED)
865 REQUIRES_SHARED(Locks::mutator_lock_) {
866 LOG(ERROR) << "Unexpected exception thrown event in tracing";
867}
868
Nicolas Geoffray81f0f952016-01-20 16:25:19 +0000869void Trace::Branch(Thread* /*thread*/, ArtMethod* method,
870 uint32_t /*dex_pc*/, int32_t /*dex_pc_offset*/)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700871 REQUIRES_SHARED(Locks::mutator_lock_) {
David Sehr709b0702016-10-13 09:12:37 -0700872 LOG(ERROR) << "Unexpected branch event in tracing" << ArtMethod::PrettyMethod(method);
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800873}
874
Alex Light05f47742017-09-14 00:34:44 +0000875void Trace::WatchedFramePop(Thread* self ATTRIBUTE_UNUSED,
876 const ShadowFrame& frame ATTRIBUTE_UNUSED) {
877 LOG(ERROR) << "Unexpected WatchedFramePop event in tracing";
878}
879
Jeff Haoc1ff4b72013-08-19 11:33:10 -0700880void Trace::ReadClocks(Thread* thread, uint32_t* thread_clock_diff, uint32_t* wall_clock_diff) {
881 if (UseThreadCpuClock()) {
882 uint64_t clock_base = thread->GetTraceClockBase();
883 if (UNLIKELY(clock_base == 0)) {
884 // First event, record the base time in the map.
885 uint64_t time = thread->GetCpuMicroTime();
886 thread->SetTraceClockBase(time);
887 } else {
888 *thread_clock_diff = thread->GetCpuMicroTime() - clock_base;
889 }
890 }
891 if (UseWallClock()) {
892 *wall_clock_diff = MicroTime() - start_time_;
893 }
894}
895
Mathieu Chartiere401d142015-04-22 13:56:20 -0700896bool Trace::RegisterMethod(ArtMethod* method) {
Andreas Gampe40da2862015-02-27 12:49:04 -0800897 mirror::DexCache* dex_cache = method->GetDexCache();
Andreas Gampe7526d782015-06-22 22:53:45 -0700898 const DexFile* dex_file = dex_cache->GetDexFile();
Andreas Gampe7526d782015-06-22 22:53:45 -0700899 if (seen_methods_.find(dex_file) == seen_methods_.end()) {
900 seen_methods_.insert(std::make_pair(dex_file, new DexIndexBitSet()));
Andreas Gampe40da2862015-02-27 12:49:04 -0800901 }
Andreas Gampe7526d782015-06-22 22:53:45 -0700902 DexIndexBitSet* bit_set = seen_methods_.find(dex_file)->second;
Andreas Gampe40da2862015-02-27 12:49:04 -0800903 if (!(*bit_set)[method->GetDexMethodIndex()]) {
904 bit_set->set(method->GetDexMethodIndex());
905 return true;
906 }
907 return false;
908}
909
910bool Trace::RegisterThread(Thread* thread) {
911 pid_t tid = thread->GetTid();
912 CHECK_LT(0U, static_cast<uint32_t>(tid));
Alex Lighta344f6a2016-07-20 10:43:39 -0700913 CHECK_LT(static_cast<uint32_t>(tid), kMaxThreadIdNumber);
Andreas Gampe40da2862015-02-27 12:49:04 -0800914
915 if (!(*seen_threads_)[tid]) {
916 seen_threads_->set(tid);
917 return true;
918 }
919 return false;
920}
921
Mathieu Chartier4d64cd42015-06-02 16:38:29 -0700922std::string Trace::GetMethodLine(ArtMethod* method) {
Andreas Gampe542451c2016-07-26 09:02:02 -0700923 method = method->GetInterfaceMethodIfProxy(kRuntimePointerSize);
Alex Light0f7e8f52016-07-19 11:21:32 -0700924 return StringPrintf("%#x\t%s\t%s\t%s\t%s\n", (EncodeTraceMethod(method) << TraceActionBits),
Andreas Gampe40da2862015-02-27 12:49:04 -0800925 PrettyDescriptor(method->GetDeclaringClassDescriptor()).c_str(), method->GetName(),
926 method->GetSignature().ToString().c_str(), method->GetDeclaringClassSourceFile());
927}
928
929void Trace::WriteToBuf(const uint8_t* src, size_t src_size) {
Orion Hodson283ad2d2018-03-26 13:37:41 +0100930 // Updates to cur_offset_ are done under the streaming_lock_ here as in streaming mode.
Orion Hodson88591fe2018-03-06 13:35:43 +0000931 int32_t old_offset = cur_offset_.load(std::memory_order_relaxed);
Andreas Gampe40da2862015-02-27 12:49:04 -0800932 int32_t new_offset = old_offset + static_cast<int32_t>(src_size);
Andreas Gampee34a42c2015-04-25 14:44:29 -0700933 if (dchecked_integral_cast<size_t>(new_offset) > buffer_size_) {
Andreas Gampe40da2862015-02-27 12:49:04 -0800934 // Flush buffer.
935 if (!trace_file_->WriteFully(buf_.get(), old_offset)) {
936 PLOG(WARNING) << "Failed streaming a tracing event.";
937 }
Andreas Gampee34a42c2015-04-25 14:44:29 -0700938
939 // Check whether the data is too large for the buffer, then write immediately.
940 if (src_size >= buffer_size_) {
941 if (!trace_file_->WriteFully(src, src_size)) {
942 PLOG(WARNING) << "Failed streaming a tracing event.";
943 }
Orion Hodson283ad2d2018-03-26 13:37:41 +0100944 cur_offset_.store(0, std::memory_order_relaxed); // Buffer is empty now.
Andreas Gampee34a42c2015-04-25 14:44:29 -0700945 return;
946 }
947
Andreas Gampe40da2862015-02-27 12:49:04 -0800948 old_offset = 0;
949 new_offset = static_cast<int32_t>(src_size);
950 }
Orion Hodson283ad2d2018-03-26 13:37:41 +0100951 cur_offset_.store(new_offset, std::memory_order_relaxed);
Andreas Gampe40da2862015-02-27 12:49:04 -0800952 // Fill in data.
953 memcpy(buf_.get() + old_offset, src, src_size);
954}
955
Shukang Zhou8a5ab912017-01-20 11:40:16 -0800956void Trace::FlushBuf() {
Orion Hodson283ad2d2018-03-26 13:37:41 +0100957 // Updates to cur_offset_ are done under the streaming_lock_ here as in streaming mode.
Orion Hodson88591fe2018-03-06 13:35:43 +0000958 int32_t offset = cur_offset_.load(std::memory_order_relaxed);
Shukang Zhou8a5ab912017-01-20 11:40:16 -0800959 if (!trace_file_->WriteFully(buf_.get(), offset)) {
960 PLOG(WARNING) << "Failed flush the remaining data in streaming.";
961 }
Orion Hodson283ad2d2018-03-26 13:37:41 +0100962 cur_offset_.store(0, std::memory_order_relaxed);
Shukang Zhou8a5ab912017-01-20 11:40:16 -0800963}
964
Mathieu Chartiere401d142015-04-22 13:56:20 -0700965void Trace::LogMethodTraceEvent(Thread* thread, ArtMethod* method,
Jeff Haoc1ff4b72013-08-19 11:33:10 -0700966 instrumentation::Instrumentation::InstrumentationEvent event,
967 uint32_t thread_clock_diff, uint32_t wall_clock_diff) {
Orion Hodson283ad2d2018-03-26 13:37:41 +0100968 // This method is called in both tracing modes (method and
969 // sampling). In sampling mode, this method is only called by the
970 // sampling thread. In method tracing mode, it can be called
971 // concurrently.
972
Alex Light4ba388a2017-01-27 10:26:49 -0800973 // Ensure we always use the non-obsolete version of the method so that entry/exit events have the
974 // same pointer value.
975 method = method->GetNonObsoleteMethod();
Orion Hodson283ad2d2018-03-26 13:37:41 +0100976
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800977 // Advance cur_offset_ atomically.
978 int32_t new_offset;
Andreas Gampe40da2862015-02-27 12:49:04 -0800979 int32_t old_offset = 0;
980
Orion Hodson283ad2d2018-03-26 13:37:41 +0100981 // In the non-streaming case, we do a busy loop here trying to get
982 // an offset to write our record and advance cur_offset_ for the
983 // next use.
Andreas Gampe40da2862015-02-27 12:49:04 -0800984 if (trace_output_mode_ != TraceOutputMode::kStreaming) {
Orion Hodson283ad2d2018-03-26 13:37:41 +0100985 // Although multiple threads can call this method concurrently,
986 // the compare_exchange_weak here is still atomic (by definition).
987 // A succeeding update is visible to other cores when they pass
988 // through this point.
989 old_offset = cur_offset_.load(std::memory_order_relaxed); // Speculative read
Andreas Gampe40da2862015-02-27 12:49:04 -0800990 do {
Andreas Gampe40da2862015-02-27 12:49:04 -0800991 new_offset = old_offset + GetRecordSize(clock_source_);
Andreas Gampee34a42c2015-04-25 14:44:29 -0700992 if (static_cast<size_t>(new_offset) > buffer_size_) {
Andreas Gampe40da2862015-02-27 12:49:04 -0800993 overflow_ = true;
994 return;
995 }
Orion Hodson283ad2d2018-03-26 13:37:41 +0100996 } while (!cur_offset_.compare_exchange_weak(old_offset, new_offset, std::memory_order_relaxed));
Andreas Gampe40da2862015-02-27 12:49:04 -0800997 }
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800998
Ian Rogers62d6c772013-02-27 08:32:07 -0800999 TraceAction action = kTraceMethodEnter;
1000 switch (event) {
1001 case instrumentation::Instrumentation::kMethodEntered:
1002 action = kTraceMethodEnter;
1003 break;
1004 case instrumentation::Instrumentation::kMethodExited:
1005 action = kTraceMethodExit;
1006 break;
1007 case instrumentation::Instrumentation::kMethodUnwind:
1008 action = kTraceUnroll;
1009 break;
1010 default:
1011 UNIMPLEMENTED(FATAL) << "Unexpected event: " << event;
1012 }
1013
Mathieu Chartier4d64cd42015-06-02 16:38:29 -07001014 uint32_t method_value = EncodeTraceMethodAndAction(method, action);
jeffhaoa9ef3fd2011-12-13 18:33:43 -08001015
Orion Hodson283ad2d2018-03-26 13:37:41 +01001016 // Write data into the tracing buffer (if not streaming) or into a
1017 // small buffer on the stack (if streaming) which we'll put into the
1018 // tracing buffer below.
1019 //
1020 // These writes to the tracing buffer are synchronised with the
1021 // future reads that (only) occur under FinishTracing(). The callers
1022 // of FinishTracing() acquire locks and (implicitly) synchronise
1023 // the buffer memory.
Andreas Gampe40da2862015-02-27 12:49:04 -08001024 uint8_t* ptr;
Mathieu Chartier4d64cd42015-06-02 16:38:29 -07001025 static constexpr size_t kPacketSize = 14U; // The maximum size of data in a packet.
Andreas Gampe40da2862015-02-27 12:49:04 -08001026 uint8_t stack_buf[kPacketSize]; // Space to store a packet when in streaming mode.
1027 if (trace_output_mode_ == TraceOutputMode::kStreaming) {
1028 ptr = stack_buf;
1029 } else {
1030 ptr = buf_.get() + old_offset;
1031 }
1032
Ian Rogers62d6c772013-02-27 08:32:07 -08001033 Append2LE(ptr, thread->GetTid());
Mathieu Chartier4d64cd42015-06-02 16:38:29 -07001034 Append4LE(ptr + 2, method_value);
1035 ptr += 6;
jeffhaoa9ef3fd2011-12-13 18:33:43 -08001036
1037 if (UseThreadCpuClock()) {
jeffhaoa9ef3fd2011-12-13 18:33:43 -08001038 Append4LE(ptr, thread_clock_diff);
1039 ptr += 4;
1040 }
jeffhaoa9ef3fd2011-12-13 18:33:43 -08001041 if (UseWallClock()) {
jeffhaoa9ef3fd2011-12-13 18:33:43 -08001042 Append4LE(ptr, wall_clock_diff);
1043 }
Mathieu Chartier4d64cd42015-06-02 16:38:29 -07001044 static_assert(kPacketSize == 2 + 4 + 4 + 4, "Packet size incorrect.");
Andreas Gampe40da2862015-02-27 12:49:04 -08001045
1046 if (trace_output_mode_ == TraceOutputMode::kStreaming) {
1047 MutexLock mu(Thread::Current(), *streaming_lock_); // To serialize writing.
1048 if (RegisterMethod(method)) {
1049 // Write a special block with the name.
1050 std::string method_line(GetMethodLine(method));
1051 uint8_t buf2[5];
1052 Append2LE(buf2, 0);
1053 buf2[2] = kOpNewMethod;
1054 Append2LE(buf2 + 3, static_cast<uint16_t>(method_line.length()));
1055 WriteToBuf(buf2, sizeof(buf2));
1056 WriteToBuf(reinterpret_cast<const uint8_t*>(method_line.c_str()), method_line.length());
1057 }
1058 if (RegisterThread(thread)) {
1059 // It might be better to postpone this. Threads might not have received names...
1060 std::string thread_name;
1061 thread->GetThreadName(thread_name);
1062 uint8_t buf2[7];
1063 Append2LE(buf2, 0);
1064 buf2[2] = kOpNewThread;
1065 Append2LE(buf2 + 3, static_cast<uint16_t>(thread->GetTid()));
1066 Append2LE(buf2 + 5, static_cast<uint16_t>(thread_name.length()));
1067 WriteToBuf(buf2, sizeof(buf2));
1068 WriteToBuf(reinterpret_cast<const uint8_t*>(thread_name.c_str()), thread_name.length());
1069 }
1070 WriteToBuf(stack_buf, sizeof(stack_buf));
1071 }
jeffhaoa9ef3fd2011-12-13 18:33:43 -08001072}
1073
Ian Rogers62d6c772013-02-27 08:32:07 -08001074void Trace::GetVisitedMethods(size_t buf_size,
Mathieu Chartiere401d142015-04-22 13:56:20 -07001075 std::set<ArtMethod*>* visited_methods) {
jeffhao2692b572011-12-16 15:42:28 -08001076 uint8_t* ptr = buf_.get() + kTraceHeaderLength;
Ian Rogers62d6c772013-02-27 08:32:07 -08001077 uint8_t* end = buf_.get() + buf_size;
jeffhaoa9ef3fd2011-12-13 18:33:43 -08001078
1079 while (ptr < end) {
Mathieu Chartier4d64cd42015-06-02 16:38:29 -07001080 uint32_t tmid = ReadBytes(ptr + 2, sizeof(tmid));
1081 ArtMethod* method = DecodeTraceMethod(tmid);
Ian Rogers62d6c772013-02-27 08:32:07 -08001082 visited_methods->insert(method);
1083 ptr += GetRecordSize(clock_source_);
jeffhaoa9ef3fd2011-12-13 18:33:43 -08001084 }
1085}
1086
Mathieu Chartiere401d142015-04-22 13:56:20 -07001087void Trace::DumpMethodList(std::ostream& os, const std::set<ArtMethod*>& visited_methods) {
Mathieu Chartier02e25112013-08-14 16:14:24 -07001088 for (const auto& method : visited_methods) {
Andreas Gampe40da2862015-02-27 12:49:04 -08001089 os << GetMethodLine(method);
jeffhaoa9ef3fd2011-12-13 18:33:43 -08001090 }
jeffhaoa9ef3fd2011-12-13 18:33:43 -08001091}
1092
1093static void DumpThread(Thread* t, void* arg) {
Elliott Hughesffb465f2012-03-01 18:46:05 -08001094 std::ostream& os = *reinterpret_cast<std::ostream*>(arg);
1095 std::string name;
1096 t->GetThreadName(name);
1097 os << t->GetTid() << "\t" << name << "\n";
jeffhaoa9ef3fd2011-12-13 18:33:43 -08001098}
1099
1100void Trace::DumpThreadList(std::ostream& os) {
Ian Rogers81d425b2012-09-27 16:03:43 -07001101 Thread* self = Thread::Current();
Stephen Hines48ba1972018-09-24 13:35:54 -07001102 for (const auto& it : exited_threads_) {
Jeff Haoe094b872014-10-14 13:12:01 -07001103 os << it.first << "\t" << it.second << "\n";
1104 }
Ian Rogers81d425b2012-09-27 16:03:43 -07001105 Locks::thread_list_lock_->AssertNotHeld(self);
1106 MutexLock mu(self, *Locks::thread_list_lock_);
jeffhaoa9ef3fd2011-12-13 18:33:43 -08001107 Runtime::Current()->GetThreadList()->ForEach(DumpThread, &os);
jeffhaoe343b762011-12-05 16:36:44 -08001108}
1109
Jeff Haoe094b872014-10-14 13:12:01 -07001110void Trace::StoreExitingThreadInfo(Thread* thread) {
1111 MutexLock mu(thread, *Locks::trace_lock_);
1112 if (the_trace_ != nullptr) {
1113 std::string name;
1114 thread->GetThreadName(name);
Andreas Gampea1785c52014-11-25 20:40:08 -08001115 // The same thread/tid may be used multiple times. As SafeMap::Put does not allow to override
1116 // a previous mapping, use SafeMap::Overwrite.
1117 the_trace_->exited_threads_.Overwrite(thread->GetTid(), name);
Jeff Haoe094b872014-10-14 13:12:01 -07001118 }
1119}
1120
Andreas Gampe40da2862015-02-27 12:49:04 -08001121Trace::TraceOutputMode Trace::GetOutputMode() {
1122 MutexLock mu(Thread::Current(), *Locks::trace_lock_);
1123 CHECK(the_trace_ != nullptr) << "Trace output mode requested, but no trace currently running";
1124 return the_trace_->trace_output_mode_;
1125}
1126
1127Trace::TraceMode Trace::GetMode() {
1128 MutexLock mu(Thread::Current(), *Locks::trace_lock_);
1129 CHECK(the_trace_ != nullptr) << "Trace mode requested, but no trace currently running";
1130 return the_trace_->trace_mode_;
1131}
1132
Andreas Gampee34a42c2015-04-25 14:44:29 -07001133size_t Trace::GetBufferSize() {
1134 MutexLock mu(Thread::Current(), *Locks::trace_lock_);
1135 CHECK(the_trace_ != nullptr) << "Trace mode requested, but no trace currently running";
1136 return the_trace_->buffer_size_;
1137}
1138
Mathieu Chartier7778b882015-10-05 16:41:10 -07001139bool Trace::IsTracingEnabled() {
1140 MutexLock mu(Thread::Current(), *Locks::trace_lock_);
1141 return the_trace_ != nullptr;
1142}
1143
jeffhaoe343b762011-12-05 16:36:44 -08001144} // namespace art