blob: 50a179c59da7f403c672795b3168cf4361143cf9 [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
Jeff Hao0abc72e2013-08-13 13:45:14 -070061class BuildStackTraceVisitor : public StackVisitor {
62 public:
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +010063 explicit BuildStackTraceVisitor(Thread* thread)
64 : StackVisitor(thread, nullptr, StackVisitor::StackWalkKind::kIncludeInlinedFrames),
65 method_trace_(Trace::AllocStackTrace()) {}
Jeff Hao0abc72e2013-08-13 13:45:14 -070066
Andreas Gampebdf7f1c2016-08-30 16:38:47 -070067 bool VisitFrame() REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartiere401d142015-04-22 13:56:20 -070068 ArtMethod* m = GetMethod();
Jeff Hao0abc72e2013-08-13 13:45:14 -070069 // Ignore runtime frames (in particular callee save).
70 if (!m->IsRuntimeMethod()) {
71 method_trace_->push_back(m);
72 }
73 return true;
74 }
75
76 // Returns a stack trace where the topmost frame corresponds with the first element of the vector.
Mathieu Chartiere401d142015-04-22 13:56:20 -070077 std::vector<ArtMethod*>* GetStackTrace() const {
Jeff Hao0abc72e2013-08-13 13:45:14 -070078 return method_trace_;
79 }
80
81 private:
Mathieu Chartiere401d142015-04-22 13:56:20 -070082 std::vector<ArtMethod*>* const method_trace_;
Sebastien Hertz26f72862015-09-15 09:52:07 +020083
84 DISALLOW_COPY_AND_ASSIGN(BuildStackTraceVisitor);
Jeff Hao0abc72e2013-08-13 13:45:14 -070085};
86
jeffhaoa9ef3fd2011-12-13 18:33:43 -080087static const char kTraceTokenChar = '*';
88static const uint16_t kTraceHeaderLength = 32;
89static const uint32_t kTraceMagicValue = 0x574f4c53;
90static const uint16_t kTraceVersionSingleClock = 2;
91static const uint16_t kTraceVersionDualClock = 3;
Mathieu Chartier4d64cd42015-06-02 16:38:29 -070092static const uint16_t kTraceRecordSizeSingleClock = 10; // using v2
93static const uint16_t kTraceRecordSizeDualClock = 14; // using v3 with two timestamps
jeffhaoa9ef3fd2011-12-13 18:33:43 -080094
Ian Rogerse63db272014-07-15 15:36:11 -070095TraceClockSource Trace::default_clock_source_ = kDefaultTraceClockSource;
Elliott Hughese119a362012-05-22 17:37:06 -070096
Andreas Gampe40da2862015-02-27 12:49:04 -080097Trace* volatile Trace::the_trace_ = nullptr;
Jeff Hao0abc72e2013-08-13 13:45:14 -070098pthread_t Trace::sampling_pthread_ = 0U;
Mathieu Chartiere401d142015-04-22 13:56:20 -070099std::unique_ptr<std::vector<ArtMethod*>> Trace::temp_stack_trace_;
Ian Rogers62d6c772013-02-27 08:32:07 -0800100
Sebastien Hertz0462c4c2015-04-01 16:34:17 +0200101// The key identifying the tracer to update instrumentation.
102static constexpr const char* kTracerInstrumentationKey = "Tracer";
103
Ian Rogers62d6c772013-02-27 08:32:07 -0800104static TraceAction DecodeTraceAction(uint32_t tmid) {
105 return static_cast<TraceAction>(tmid & kTraceMethodActionMask);
106}
107
Mathieu Chartier4d64cd42015-06-02 16:38:29 -0700108ArtMethod* Trace::DecodeTraceMethod(uint32_t tmid) {
109 MutexLock mu(Thread::Current(), *unique_methods_lock_);
110 return unique_methods_[tmid >> TraceActionBits];
111}
112
113uint32_t Trace::EncodeTraceMethod(ArtMethod* method) {
114 MutexLock mu(Thread::Current(), *unique_methods_lock_);
115 uint32_t idx;
116 auto it = art_method_id_map_.find(method);
117 if (it != art_method_id_map_.end()) {
118 idx = it->second;
119 } else {
120 unique_methods_.push_back(method);
121 idx = unique_methods_.size() - 1;
122 art_method_id_map_.emplace(method, idx);
123 }
124 DCHECK_LT(idx, unique_methods_.size());
125 DCHECK_EQ(unique_methods_[idx], method);
126 return idx;
127}
128
129uint32_t Trace::EncodeTraceMethodAndAction(ArtMethod* method, TraceAction action) {
130 uint32_t tmid = (EncodeTraceMethod(method) << TraceActionBits) | action;
131 DCHECK_EQ(method, DecodeTraceMethod(tmid));
Ian Rogers62d6c772013-02-27 08:32:07 -0800132 return tmid;
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800133}
134
Mathieu Chartiere401d142015-04-22 13:56:20 -0700135std::vector<ArtMethod*>* Trace::AllocStackTrace() {
Mathieu Chartier4d64cd42015-06-02 16:38:29 -0700136 return (temp_stack_trace_.get() != nullptr) ? temp_stack_trace_.release() :
137 new std::vector<ArtMethod*>();
Jeff Hao5ce4b172013-08-16 16:27:18 -0700138}
139
Mathieu Chartiere401d142015-04-22 13:56:20 -0700140void Trace::FreeStackTrace(std::vector<ArtMethod*>* stack_trace) {
Jeff Hao5ce4b172013-08-16 16:27:18 -0700141 stack_trace->clear();
142 temp_stack_trace_.reset(stack_trace);
143}
144
Ian Rogerse63db272014-07-15 15:36:11 -0700145void Trace::SetDefaultClockSource(TraceClockSource clock_source) {
Elliott Hughes0a18df82015-01-09 15:16:16 -0800146#if defined(__linux__)
Ian Rogers62d6c772013-02-27 08:32:07 -0800147 default_clock_source_ = clock_source;
148#else
Igor Murashkinaaebaa02015-01-26 10:55:53 -0800149 if (clock_source != TraceClockSource::kWall) {
Jeff Hao5ce4b172013-08-16 16:27:18 -0700150 LOG(WARNING) << "Ignoring tracing request to use CPU time.";
Ian Rogers62d6c772013-02-27 08:32:07 -0800151 }
152#endif
153}
154
Ian Rogerse63db272014-07-15 15:36:11 -0700155static uint16_t GetTraceVersion(TraceClockSource clock_source) {
Igor Murashkinaaebaa02015-01-26 10:55:53 -0800156 return (clock_source == TraceClockSource::kDual) ? kTraceVersionDualClock
Ian Rogers62d6c772013-02-27 08:32:07 -0800157 : kTraceVersionSingleClock;
158}
159
Ian Rogerse63db272014-07-15 15:36:11 -0700160static uint16_t GetRecordSize(TraceClockSource clock_source) {
Igor Murashkinaaebaa02015-01-26 10:55:53 -0800161 return (clock_source == TraceClockSource::kDual) ? kTraceRecordSizeDualClock
Ian Rogers62d6c772013-02-27 08:32:07 -0800162 : kTraceRecordSizeSingleClock;
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800163}
164
Elliott Hughese119a362012-05-22 17:37:06 -0700165bool Trace::UseThreadCpuClock() {
Igor Murashkinaaebaa02015-01-26 10:55:53 -0800166 return (clock_source_ == TraceClockSource::kThreadCpu) ||
167 (clock_source_ == TraceClockSource::kDual);
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800168}
169
Elliott Hughese119a362012-05-22 17:37:06 -0700170bool Trace::UseWallClock() {
Igor Murashkinaaebaa02015-01-26 10:55:53 -0800171 return (clock_source_ == TraceClockSource::kWall) ||
172 (clock_source_ == TraceClockSource::kDual);
Elliott Hughese119a362012-05-22 17:37:06 -0700173}
174
Jeff Haoc5d824a2014-07-28 18:35:38 -0700175void Trace::MeasureClockOverhead() {
176 if (UseThreadCpuClock()) {
Jeff Hao57dac6e2013-08-15 16:36:24 -0700177 Thread::Current()->GetCpuMicroTime();
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800178 }
Jeff Haoc5d824a2014-07-28 18:35:38 -0700179 if (UseWallClock()) {
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800180 MicroTime();
181 }
182}
183
Jeff Hao5ce4b172013-08-16 16:27:18 -0700184// Compute an average time taken to measure clocks.
Jeff Haoc5d824a2014-07-28 18:35:38 -0700185uint32_t Trace::GetClockOverheadNanoSeconds() {
Jeff Hao57dac6e2013-08-15 16:36:24 -0700186 Thread* self = Thread::Current();
187 uint64_t start = self->GetCpuMicroTime();
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800188
189 for (int i = 4000; i > 0; i--) {
Jeff Haoc5d824a2014-07-28 18:35:38 -0700190 MeasureClockOverhead();
191 MeasureClockOverhead();
192 MeasureClockOverhead();
193 MeasureClockOverhead();
194 MeasureClockOverhead();
195 MeasureClockOverhead();
196 MeasureClockOverhead();
197 MeasureClockOverhead();
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800198 }
199
Jeff Hao5ce4b172013-08-16 16:27:18 -0700200 uint64_t elapsed_us = self->GetCpuMicroTime() - start;
201 return static_cast<uint32_t>(elapsed_us / 32);
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800202}
203
Elliott Hughesffb465f2012-03-01 18:46:05 -0800204// TODO: put this somewhere with the big-endian equivalent used by JDWP.
205static void Append2LE(uint8_t* buf, uint16_t val) {
Jeff Hao5ce4b172013-08-16 16:27:18 -0700206 *buf++ = static_cast<uint8_t>(val);
207 *buf++ = static_cast<uint8_t>(val >> 8);
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800208}
209
Elliott Hughesffb465f2012-03-01 18:46:05 -0800210// TODO: put this somewhere with the big-endian equivalent used by JDWP.
211static void Append4LE(uint8_t* buf, uint32_t val) {
Jeff Hao5ce4b172013-08-16 16:27:18 -0700212 *buf++ = static_cast<uint8_t>(val);
213 *buf++ = static_cast<uint8_t>(val >> 8);
214 *buf++ = static_cast<uint8_t>(val >> 16);
215 *buf++ = static_cast<uint8_t>(val >> 24);
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800216}
217
Elliott Hughesffb465f2012-03-01 18:46:05 -0800218// TODO: put this somewhere with the big-endian equivalent used by JDWP.
219static void Append8LE(uint8_t* buf, uint64_t val) {
Jeff Hao5ce4b172013-08-16 16:27:18 -0700220 *buf++ = static_cast<uint8_t>(val);
221 *buf++ = static_cast<uint8_t>(val >> 8);
222 *buf++ = static_cast<uint8_t>(val >> 16);
223 *buf++ = static_cast<uint8_t>(val >> 24);
224 *buf++ = static_cast<uint8_t>(val >> 32);
225 *buf++ = static_cast<uint8_t>(val >> 40);
226 *buf++ = static_cast<uint8_t>(val >> 48);
227 *buf++ = static_cast<uint8_t>(val >> 56);
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800228}
229
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700230static void GetSample(Thread* thread, void* arg) REQUIRES_SHARED(Locks::mutator_lock_) {
Jeff Hao0abc72e2013-08-13 13:45:14 -0700231 BuildStackTraceVisitor build_trace_visitor(thread);
232 build_trace_visitor.WalkStack();
Mathieu Chartiere401d142015-04-22 13:56:20 -0700233 std::vector<ArtMethod*>* stack_trace = build_trace_visitor.GetStackTrace();
Jeff Hao0abc72e2013-08-13 13:45:14 -0700234 Trace* the_trace = reinterpret_cast<Trace*>(arg);
235 the_trace->CompareAndUpdateStackTrace(thread, stack_trace);
236}
237
Andreas Gampeca714582015-04-03 19:41:34 -0700238static void ClearThreadStackTraceAndClockBase(Thread* thread, void* arg ATTRIBUTE_UNUSED) {
Jeff Hao5ce4b172013-08-16 16:27:18 -0700239 thread->SetTraceClockBase(0);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700240 std::vector<ArtMethod*>* stack_trace = thread->GetStackTraceSample();
Andreas Gampe40da2862015-02-27 12:49:04 -0800241 thread->SetStackTraceSample(nullptr);
Jeff Hao5ce4b172013-08-16 16:27:18 -0700242 delete stack_trace;
243}
244
Jeff Hao0abc72e2013-08-13 13:45:14 -0700245void Trace::CompareAndUpdateStackTrace(Thread* thread,
Mathieu Chartiere401d142015-04-22 13:56:20 -0700246 std::vector<ArtMethod*>* stack_trace) {
Jeff Hao0abc72e2013-08-13 13:45:14 -0700247 CHECK_EQ(pthread_self(), sampling_pthread_);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700248 std::vector<ArtMethod*>* old_stack_trace = thread->GetStackTraceSample();
Jeff Hao5ce4b172013-08-16 16:27:18 -0700249 // Update the thread's stack trace sample.
250 thread->SetStackTraceSample(stack_trace);
Jeff Haoc1ff4b72013-08-19 11:33:10 -0700251 // Read timer clocks to use for all events in this trace.
252 uint32_t thread_clock_diff = 0;
253 uint32_t wall_clock_diff = 0;
254 ReadClocks(thread, &thread_clock_diff, &wall_clock_diff);
Andreas Gampe40da2862015-02-27 12:49:04 -0800255 if (old_stack_trace == nullptr) {
Jeff Hao5ce4b172013-08-16 16:27:18 -0700256 // If there's no previous stack trace sample for this thread, log an entry event for all
Jeff Hao0abc72e2013-08-13 13:45:14 -0700257 // methods in the trace.
Mathieu Chartier4d64cd42015-06-02 16:38:29 -0700258 for (auto rit = stack_trace->rbegin(); rit != stack_trace->rend(); ++rit) {
Jeff Haoc1ff4b72013-08-19 11:33:10 -0700259 LogMethodTraceEvent(thread, *rit, instrumentation::Instrumentation::kMethodEntered,
260 thread_clock_diff, wall_clock_diff);
Jeff Hao0abc72e2013-08-13 13:45:14 -0700261 }
262 } else {
263 // If there's a previous stack trace for this thread, diff the traces and emit entry and exit
264 // events accordingly.
Mathieu Chartier4d64cd42015-06-02 16:38:29 -0700265 auto old_rit = old_stack_trace->rbegin();
266 auto rit = stack_trace->rbegin();
Jeff Hao0abc72e2013-08-13 13:45:14 -0700267 // Iterate bottom-up over both traces until there's a difference between them.
268 while (old_rit != old_stack_trace->rend() && rit != stack_trace->rend() && *old_rit == *rit) {
269 old_rit++;
270 rit++;
271 }
272 // Iterate top-down over the old trace until the point where they differ, emitting exit events.
Mathieu Chartier4d64cd42015-06-02 16:38:29 -0700273 for (auto old_it = old_stack_trace->begin(); old_it != old_rit.base(); ++old_it) {
Jeff Haoc1ff4b72013-08-19 11:33:10 -0700274 LogMethodTraceEvent(thread, *old_it, instrumentation::Instrumentation::kMethodExited,
275 thread_clock_diff, wall_clock_diff);
Jeff Hao0abc72e2013-08-13 13:45:14 -0700276 }
277 // Iterate bottom-up over the new trace from the point where they differ, emitting entry events.
278 for (; rit != stack_trace->rend(); ++rit) {
Jeff Haoc1ff4b72013-08-19 11:33:10 -0700279 LogMethodTraceEvent(thread, *rit, instrumentation::Instrumentation::kMethodEntered,
280 thread_clock_diff, wall_clock_diff);
Jeff Hao0abc72e2013-08-13 13:45:14 -0700281 }
Jeff Hao5ce4b172013-08-16 16:27:18 -0700282 FreeStackTrace(old_stack_trace);
Jeff Hao0abc72e2013-08-13 13:45:14 -0700283 }
284}
285
286void* Trace::RunSamplingThread(void* arg) {
287 Runtime* runtime = Runtime::Current();
Ian Rogersef7d42f2014-01-06 12:55:46 -0800288 intptr_t interval_us = reinterpret_cast<intptr_t>(arg);
Jeff Hao4044bda2014-01-06 15:50:45 -0800289 CHECK_GE(interval_us, 0);
Jeff Hao0abc72e2013-08-13 13:45:14 -0700290 CHECK(runtime->AttachCurrentThread("Sampling Profiler", true, runtime->GetSystemThreadGroup(),
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800291 !runtime->IsAotCompiler()));
Jeff Hao0abc72e2013-08-13 13:45:14 -0700292
293 while (true) {
Jeff Hao23009dc2013-08-22 15:36:42 -0700294 usleep(interval_us);
Mathieu Chartier32ce2ad2016-03-04 14:58:03 -0800295 ScopedTrace trace("Profile sampling");
Jeff Hao0abc72e2013-08-13 13:45:14 -0700296 Thread* self = Thread::Current();
297 Trace* the_trace;
298 {
299 MutexLock mu(self, *Locks::trace_lock_);
300 the_trace = the_trace_;
Andreas Gampe40da2862015-02-27 12:49:04 -0800301 if (the_trace == nullptr) {
Jeff Hao0abc72e2013-08-13 13:45:14 -0700302 break;
303 }
304 }
Jeff Hao0abc72e2013-08-13 13:45:14 -0700305 {
Roland Levillaine45b3b12018-02-27 17:18:55 +0000306 // Avoid a deadlock between a thread doing garbage collection
307 // and the profile sampling thread, by blocking GC when sampling
308 // thread stacks (see b/73624630).
309 gc::ScopedGCCriticalSection gcs(self,
310 art::gc::kGcCauseInstrumentation,
311 art::gc::kCollectorTypeInstrumentation);
Mathieu Chartier4f55e222015-09-04 13:26:21 -0700312 ScopedSuspendAll ssa(__FUNCTION__);
Jeff Hao0abc72e2013-08-13 13:45:14 -0700313 MutexLock mu(self, *Locks::thread_list_lock_);
314 runtime->GetThreadList()->ForEach(GetSample, the_trace);
315 }
Jeff Hao0abc72e2013-08-13 13:45:14 -0700316 }
317
318 runtime->DetachCurrentThread();
Andreas Gampe40da2862015-02-27 12:49:04 -0800319 return nullptr;
Jeff Hao0abc72e2013-08-13 13:45:14 -0700320}
321
Andreas Gampe6ff3b372018-03-15 08:53:16 -0700322void Trace::Start(const char* trace_filename,
323 size_t buffer_size,
324 int flags,
325 TraceOutputMode output_mode,
326 TraceMode trace_mode,
327 int interval_us) {
328 std::unique_ptr<File> file(OS::CreateEmptyFileWriteOnly(trace_filename));
329 if (file == nullptr) {
330 std::string msg = android::base::StringPrintf("Unable to open trace file '%s'", trace_filename);
331 PLOG(ERROR) << msg;
332 ScopedObjectAccess soa(Thread::Current());
333 Thread::Current()->ThrowNewException("Ljava/lang/RuntimeException;", msg.c_str());
334 return;
335 }
336 Start(std::move(file), buffer_size, flags, output_mode, trace_mode, interval_us);
337}
338
339void Trace::Start(int trace_fd,
340 size_t buffer_size,
341 int flags,
342 TraceOutputMode output_mode,
343 TraceMode trace_mode,
344 int interval_us) {
345 if (trace_fd < 0) {
346 std::string msg = android::base::StringPrintf("Unable to start tracing with invalid fd %d",
347 trace_fd);
348 LOG(ERROR) << msg;
349 ScopedObjectAccess soa(Thread::Current());
350 Thread::Current()->ThrowNewException("Ljava/lang/RuntimeException;", msg.c_str());
351 return;
352 }
353 std::unique_ptr<File> file(new File(trace_fd, "tracefile"));
354 Start(std::move(file), buffer_size, flags, output_mode, trace_mode, interval_us);
355}
356
357void Trace::StartDDMS(size_t buffer_size,
358 int flags,
359 TraceMode trace_mode,
360 int interval_us) {
361 Start(std::unique_ptr<File>(),
362 buffer_size,
363 flags,
364 TraceOutputMode::kDDMS,
365 trace_mode,
366 interval_us);
367}
368
369void Trace::Start(std::unique_ptr<File>&& trace_file_in,
370 size_t buffer_size,
371 int flags,
372 TraceOutputMode output_mode,
373 TraceMode trace_mode,
374 int interval_us) {
375 // We own trace_file now and are responsible for closing it. To account for error situations, use
376 // a specialized unique_ptr to ensure we close it on the way out (if it hasn't been passed to a
377 // Trace instance).
378 auto deleter = [](File* file) {
379 if (file != nullptr) {
380 file->MarkUnchecked(); // Don't deal with flushing requirements.
381 int result ATTRIBUTE_UNUSED = file->Close();
382 delete file;
383 }
384 };
385 std::unique_ptr<File, decltype(deleter)> trace_file(trace_file_in.release(), deleter);
386 if (trace_file != nullptr) {
387 trace_file->DisableAutoClose();
388 }
389
Ian Rogers62d6c772013-02-27 08:32:07 -0800390 Thread* self = Thread::Current();
391 {
392 MutexLock mu(self, *Locks::trace_lock_);
Andreas Gampe40da2862015-02-27 12:49:04 -0800393 if (the_trace_ != nullptr) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800394 LOG(ERROR) << "Trace already in progress, ignoring this request";
395 return;
396 }
jeffhaoe343b762011-12-05 16:36:44 -0800397 }
Jeff Haod063d912014-09-08 09:38:18 -0700398
399 // Check interval if sampling is enabled
Andreas Gampe7e7e0f42015-03-29 15:26:23 -0700400 if (trace_mode == TraceMode::kSampling && interval_us <= 0) {
Jeff Haod063d912014-09-08 09:38:18 -0700401 LOG(ERROR) << "Invalid sampling interval: " << interval_us;
402 ScopedObjectAccess soa(self);
403 ThrowRuntimeException("Invalid sampling interval: %d", interval_us);
404 return;
405 }
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800406
Jeff Haod063d912014-09-08 09:38:18 -0700407 Runtime* runtime = Runtime::Current();
Mathieu Chartier9ef78b52014-09-25 17:03:12 -0700408
409 // Enable count of allocs if specified in the flags.
410 bool enable_stats = false;
411
jeffhao2692b572011-12-16 15:42:28 -0800412 // Create Trace object.
Ian Rogers62d6c772013-02-27 08:32:07 -0800413 {
Mathieu Chartieraa516822015-10-02 15:53:37 -0700414 // Required since EnableMethodTracing calls ConfigureStubs which visits class linker classes.
415 gc::ScopedGCCriticalSection gcs(self,
416 gc::kGcCauseInstrumentation,
417 gc::kCollectorTypeInstrumentation);
Mathieu Chartier4f55e222015-09-04 13:26:21 -0700418 ScopedSuspendAll ssa(__FUNCTION__);
Ian Rogers62d6c772013-02-27 08:32:07 -0800419 MutexLock mu(self, *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 already in progress, ignoring this request";
422 } else {
Stephen Hinesf0b33e52018-08-25 13:31:52 -0700423 enable_stats = (flags & kTraceCountAllocs) != 0;
Andreas Gampe6ff3b372018-03-15 08:53:16 -0700424 the_trace_ = new Trace(trace_file.release(), buffer_size, flags, output_mode, trace_mode);
Andreas Gampe7e7e0f42015-03-29 15:26:23 -0700425 if (trace_mode == TraceMode::kSampling) {
Andreas Gampe40da2862015-02-27 12:49:04 -0800426 CHECK_PTHREAD_CALL(pthread_create, (&sampling_pthread_, nullptr, &RunSamplingThread,
Jeff Hao23009dc2013-08-22 15:36:42 -0700427 reinterpret_cast<void*>(interval_us)),
428 "Sampling profiler thread");
Andreas Gampe40da2862015-02-27 12:49:04 -0800429 the_trace_->interval_us_ = interval_us;
Jeff Hao0abc72e2013-08-13 13:45:14 -0700430 } else {
431 runtime->GetInstrumentation()->AddListener(the_trace_,
432 instrumentation::Instrumentation::kMethodEntered |
433 instrumentation::Instrumentation::kMethodExited |
434 instrumentation::Instrumentation::kMethodUnwind);
Andreas Gampe40da2862015-02-27 12:49:04 -0800435 // TODO: In full-PIC mode, we don't need to fully deopt.
Alex Light2a90bc92018-07-10 21:57:42 +0000436 // TODO: We can only use trampoline entrypoints if we are java-debuggable since in that case
437 // we know that inlining and other problematic optimizations are disabled. We might just
438 // want to use the trampolines anyway since it is faster. It makes the story with disabling
439 // jit-gc more complex though.
440 runtime->GetInstrumentation()->EnableMethodTracing(
441 kTracerInstrumentationKey, /*needs_interpreter*/!runtime->IsJavaDebuggable());
Jeff Hao0abc72e2013-08-13 13:45:14 -0700442 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800443 }
jeffhao0791adc2012-04-04 11:14:32 -0700444 }
Jeff Haod063d912014-09-08 09:38:18 -0700445
Mathieu Chartier9ef78b52014-09-25 17:03:12 -0700446 // Can't call this when holding the mutator lock.
447 if (enable_stats) {
448 runtime->SetStatsEnabled(true);
449 }
jeffhao2692b572011-12-16 15:42:28 -0800450}
451
Andreas Gampe40da2862015-02-27 12:49:04 -0800452void Trace::StopTracing(bool finish_tracing, bool flush_file) {
Mathieu Chartier9ef78b52014-09-25 17:03:12 -0700453 bool stop_alloc_counting = false;
Mathieu Chartier02e5f162015-03-11 09:54:22 -0700454 Runtime* const runtime = Runtime::Current();
455 Trace* the_trace = nullptr;
Hiroshi Yamauchi9ea02c42016-03-03 15:09:27 -0800456 Thread* const self = Thread::Current();
Jeff Hao0abc72e2013-08-13 13:45:14 -0700457 pthread_t sampling_pthread = 0U;
Ian Rogers62d6c772013-02-27 08:32:07 -0800458 {
Hiroshi Yamauchi9ea02c42016-03-03 15:09:27 -0800459 MutexLock mu(self, *Locks::trace_lock_);
Andreas Gampe40da2862015-02-27 12:49:04 -0800460 if (the_trace_ == nullptr) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800461 LOG(ERROR) << "Trace stop requested, but no trace currently running";
462 } else {
463 the_trace = the_trace_;
Andreas Gampe40da2862015-02-27 12:49:04 -0800464 the_trace_ = nullptr;
Jeff Hao0abc72e2013-08-13 13:45:14 -0700465 sampling_pthread = sampling_pthread_;
Ian Rogers62d6c772013-02-27 08:32:07 -0800466 }
jeffhao2692b572011-12-16 15:42:28 -0800467 }
Mathieu Chartier02e5f162015-03-11 09:54:22 -0700468 // Make sure that we join before we delete the trace since we don't want to have
469 // the sampling thread access a stale pointer. This finishes since the sampling thread exits when
470 // the_trace_ is null.
471 if (sampling_pthread != 0U) {
Andreas Gampe40da2862015-02-27 12:49:04 -0800472 CHECK_PTHREAD_CALL(pthread_join, (sampling_pthread, nullptr), "sampling thread shutdown");
Mathieu Chartier02e5f162015-03-11 09:54:22 -0700473 sampling_pthread_ = 0U;
474 }
Andreas Gampe40da2862015-02-27 12:49:04 -0800475
Alex Light772099a2017-11-21 14:05:04 -0800476 if (the_trace != nullptr) {
477 stop_alloc_counting = (the_trace->flags_ & Trace::kTraceCountAllocs) != 0;
Orion Hodson283ad2d2018-03-26 13:37:41 +0100478 // Stop the trace sources adding more entries to the trace buffer and synchronise stores.
479 {
480 gc::ScopedGCCriticalSection gcs(self,
481 gc::kGcCauseInstrumentation,
482 gc::kCollectorTypeInstrumentation);
483 ScopedSuspendAll ssa(__FUNCTION__);
484
485 if (the_trace->trace_mode_ == TraceMode::kSampling) {
486 MutexLock mu(self, *Locks::thread_list_lock_);
487 runtime->GetThreadList()->ForEach(ClearThreadStackTraceAndClockBase, nullptr);
488 } else {
489 runtime->GetInstrumentation()->DisableMethodTracing(kTracerInstrumentationKey);
490 runtime->GetInstrumentation()->RemoveListener(
491 the_trace, instrumentation::Instrumentation::kMethodEntered |
492 instrumentation::Instrumentation::kMethodExited |
493 instrumentation::Instrumentation::kMethodUnwind);
494 }
495 }
496 // At this point, code may read buf_ as it's writers are shutdown
497 // and the ScopedSuspendAll above has ensured all stores to buf_
498 // are now visible.
Alex Light772099a2017-11-21 14:05:04 -0800499 if (finish_tracing) {
500 the_trace->FinishTracing();
501 }
Alex Light772099a2017-11-21 14:05:04 -0800502 if (the_trace->trace_file_.get() != nullptr) {
503 // Do not try to erase, so flush and close explicitly.
504 if (flush_file) {
505 if (the_trace->trace_file_->Flush() != 0) {
506 PLOG(WARNING) << "Could not flush trace file.";
507 }
508 } else {
509 the_trace->trace_file_->MarkUnchecked(); // Do not trigger guard.
510 }
511 if (the_trace->trace_file_->Close() != 0) {
512 PLOG(ERROR) << "Could not close trace file.";
513 }
514 }
515 delete the_trace;
Ian Rogers62d6c772013-02-27 08:32:07 -0800516 }
Mathieu Chartier9ef78b52014-09-25 17:03:12 -0700517 if (stop_alloc_counting) {
518 // Can be racy since SetStatsEnabled is not guarded by any locks.
Mathieu Chartier02e5f162015-03-11 09:54:22 -0700519 runtime->SetStatsEnabled(false);
Jeff Hao0abc72e2013-08-13 13:45:14 -0700520 }
jeffhao2692b572011-12-16 15:42:28 -0800521}
522
Andreas Gampe40da2862015-02-27 12:49:04 -0800523void Trace::Abort() {
524 // Do not write anything anymore.
525 StopTracing(false, false);
526}
527
528void Trace::Stop() {
529 // Finish writing.
530 StopTracing(true, true);
531}
532
jeffhaob5e81852012-03-12 11:15:45 -0700533void Trace::Shutdown() {
Jeff Hao64caa7d2013-08-29 11:18:01 -0700534 if (GetMethodTracingMode() != kTracingInactive) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800535 Stop();
jeffhaob5e81852012-03-12 11:15:45 -0700536 }
jeffhaob5e81852012-03-12 11:15:45 -0700537}
538
Andreas Gampe40da2862015-02-27 12:49:04 -0800539void Trace::Pause() {
540 bool stop_alloc_counting = false;
541 Runtime* runtime = Runtime::Current();
542 Trace* the_trace = nullptr;
543
Mathieu Chartieraa516822015-10-02 15:53:37 -0700544 Thread* const self = Thread::Current();
Andreas Gampe40da2862015-02-27 12:49:04 -0800545 pthread_t sampling_pthread = 0U;
546 {
Mathieu Chartieraa516822015-10-02 15:53:37 -0700547 MutexLock mu(self, *Locks::trace_lock_);
Andreas Gampe40da2862015-02-27 12:49:04 -0800548 if (the_trace_ == nullptr) {
549 LOG(ERROR) << "Trace pause requested, but no trace currently running";
550 return;
551 } else {
552 the_trace = the_trace_;
553 sampling_pthread = sampling_pthread_;
554 }
555 }
556
557 if (sampling_pthread != 0U) {
558 {
Mathieu Chartieraa516822015-10-02 15:53:37 -0700559 MutexLock mu(self, *Locks::trace_lock_);
Andreas Gampe40da2862015-02-27 12:49:04 -0800560 the_trace_ = nullptr;
561 }
562 CHECK_PTHREAD_CALL(pthread_join, (sampling_pthread, nullptr), "sampling thread shutdown");
563 sampling_pthread_ = 0U;
564 {
Mathieu Chartieraa516822015-10-02 15:53:37 -0700565 MutexLock mu(self, *Locks::trace_lock_);
Andreas Gampe40da2862015-02-27 12:49:04 -0800566 the_trace_ = the_trace;
567 }
568 }
569
570 if (the_trace != nullptr) {
Mathieu Chartieraa516822015-10-02 15:53:37 -0700571 gc::ScopedGCCriticalSection gcs(self,
572 gc::kGcCauseInstrumentation,
573 gc::kCollectorTypeInstrumentation);
Mathieu Chartier4f55e222015-09-04 13:26:21 -0700574 ScopedSuspendAll ssa(__FUNCTION__);
Andreas Gampe40da2862015-02-27 12:49:04 -0800575 stop_alloc_counting = (the_trace->flags_ & Trace::kTraceCountAllocs) != 0;
576
577 if (the_trace->trace_mode_ == TraceMode::kSampling) {
Mathieu Chartieraa516822015-10-02 15:53:37 -0700578 MutexLock mu(self, *Locks::thread_list_lock_);
Andreas Gampe40da2862015-02-27 12:49:04 -0800579 runtime->GetThreadList()->ForEach(ClearThreadStackTraceAndClockBase, nullptr);
580 } else {
Sebastien Hertz0462c4c2015-04-01 16:34:17 +0200581 runtime->GetInstrumentation()->DisableMethodTracing(kTracerInstrumentationKey);
Mathieu Chartier4f55e222015-09-04 13:26:21 -0700582 runtime->GetInstrumentation()->RemoveListener(
583 the_trace,
584 instrumentation::Instrumentation::kMethodEntered |
585 instrumentation::Instrumentation::kMethodExited |
586 instrumentation::Instrumentation::kMethodUnwind);
Andreas Gampe40da2862015-02-27 12:49:04 -0800587 }
Andreas Gampe40da2862015-02-27 12:49:04 -0800588 }
589
590 if (stop_alloc_counting) {
591 // Can be racy since SetStatsEnabled is not guarded by any locks.
592 Runtime::Current()->SetStatsEnabled(false);
593 }
594}
595
596void Trace::Resume() {
597 Thread* self = Thread::Current();
598 Trace* the_trace;
599 {
600 MutexLock mu(self, *Locks::trace_lock_);
601 if (the_trace_ == nullptr) {
602 LOG(ERROR) << "No trace to resume (or sampling mode), ignoring this request";
603 return;
604 }
605 the_trace = the_trace_;
606 }
607
608 Runtime* runtime = Runtime::Current();
609
610 // Enable count of allocs if specified in the flags.
Stephen Hinesf0b33e52018-08-25 13:31:52 -0700611 bool enable_stats = (the_trace->flags_ & kTraceCountAllocs) != 0;
Andreas Gampe40da2862015-02-27 12:49:04 -0800612
Mathieu Chartier4f55e222015-09-04 13:26:21 -0700613 {
Mathieu Chartieraa516822015-10-02 15:53:37 -0700614 gc::ScopedGCCriticalSection gcs(self,
615 gc::kGcCauseInstrumentation,
616 gc::kCollectorTypeInstrumentation);
Mathieu Chartier4f55e222015-09-04 13:26:21 -0700617 ScopedSuspendAll ssa(__FUNCTION__);
Andreas Gampe40da2862015-02-27 12:49:04 -0800618
Mathieu Chartier4f55e222015-09-04 13:26:21 -0700619 // Reenable.
620 if (the_trace->trace_mode_ == TraceMode::kSampling) {
621 CHECK_PTHREAD_CALL(pthread_create, (&sampling_pthread_, nullptr, &RunSamplingThread,
622 reinterpret_cast<void*>(the_trace->interval_us_)), "Sampling profiler thread");
623 } else {
624 runtime->GetInstrumentation()->AddListener(the_trace,
625 instrumentation::Instrumentation::kMethodEntered |
626 instrumentation::Instrumentation::kMethodExited |
627 instrumentation::Instrumentation::kMethodUnwind);
628 // TODO: In full-PIC mode, we don't need to fully deopt.
629 runtime->GetInstrumentation()->EnableMethodTracing(kTracerInstrumentationKey);
630 }
Andreas Gampe40da2862015-02-27 12:49:04 -0800631 }
632
Andreas Gampe40da2862015-02-27 12:49:04 -0800633 // Can't call this when holding the mutator lock.
634 if (enable_stats) {
635 runtime->SetStatsEnabled(true);
636 }
637}
638
Jeff Hao64caa7d2013-08-29 11:18:01 -0700639TracingMode Trace::GetMethodTracingMode() {
Ian Rogers62d6c772013-02-27 08:32:07 -0800640 MutexLock mu(Thread::Current(), *Locks::trace_lock_);
Andreas Gampe40da2862015-02-27 12:49:04 -0800641 if (the_trace_ == nullptr) {
Jeff Hao64caa7d2013-08-29 11:18:01 -0700642 return kTracingInactive;
Jeff Hao64caa7d2013-08-29 11:18:01 -0700643 } else {
Andreas Gampe7e7e0f42015-03-29 15:26:23 -0700644 switch (the_trace_->trace_mode_) {
645 case TraceMode::kSampling:
646 return kSampleProfilingActive;
647 case TraceMode::kMethodTracing:
648 return kMethodTracingActive;
649 }
650 LOG(FATAL) << "Unreachable";
651 UNREACHABLE();
Jeff Hao64caa7d2013-08-29 11:18:01 -0700652 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800653}
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800654
Andreas Gampee34a42c2015-04-25 14:44:29 -0700655static constexpr size_t kMinBufSize = 18U; // Trace header is up to 18B.
Andreas Gampe40da2862015-02-27 12:49:04 -0800656
Andreas Gampe6ff3b372018-03-15 08:53:16 -0700657Trace::Trace(File* trace_file,
658 size_t buffer_size,
659 int flags,
660 TraceOutputMode output_mode,
661 TraceMode trace_mode)
Andreas Gampe40da2862015-02-27 12:49:04 -0800662 : trace_file_(trace_file),
Andreas Gampee34a42c2015-04-25 14:44:29 -0700663 buf_(new uint8_t[std::max(kMinBufSize, buffer_size)]()),
Andreas Gampe40da2862015-02-27 12:49:04 -0800664 flags_(flags), trace_output_mode_(output_mode), trace_mode_(trace_mode),
665 clock_source_(default_clock_source_),
Andreas Gampee34a42c2015-04-25 14:44:29 -0700666 buffer_size_(std::max(kMinBufSize, buffer_size)),
Orion Hodson283ad2d2018-03-26 13:37:41 +0100667 start_time_(MicroTime()), clock_overhead_ns_(GetClockOverheadNanoSeconds()),
Mathieu Chartier4d64cd42015-06-02 16:38:29 -0700668 overflow_(false), interval_us_(0), streaming_lock_(nullptr),
Andreas Gampe7526d782015-06-22 22:53:45 -0700669 unique_methods_lock_(new Mutex("unique methods lock", kTracingUniqueMethodsLock)) {
Andreas Gampe6ff3b372018-03-15 08:53:16 -0700670 CHECK(trace_file != nullptr || output_mode == TraceOutputMode::kDDMS);
671
Ian Rogers62d6c772013-02-27 08:32:07 -0800672 uint16_t trace_version = GetTraceVersion(clock_source_);
Andreas Gampe40da2862015-02-27 12:49:04 -0800673 if (output_mode == TraceOutputMode::kStreaming) {
674 trace_version |= 0xF0U;
675 }
676 // Set up the beginning of the trace.
jeffhao2692b572011-12-16 15:42:28 -0800677 memset(buf_.get(), 0, kTraceHeaderLength);
678 Append4LE(buf_.get(), kTraceMagicValue);
Ian Rogers62d6c772013-02-27 08:32:07 -0800679 Append2LE(buf_.get() + 4, trace_version);
jeffhao2692b572011-12-16 15:42:28 -0800680 Append2LE(buf_.get() + 6, kTraceHeaderLength);
681 Append8LE(buf_.get() + 8, start_time_);
Ian Rogers62d6c772013-02-27 08:32:07 -0800682 if (trace_version >= kTraceVersionDualClock) {
683 uint16_t record_size = GetRecordSize(clock_source_);
684 Append2LE(buf_.get() + 16, record_size);
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800685 }
Andreas Gampee34a42c2015-04-25 14:44:29 -0700686 static_assert(18 <= kMinBufSize, "Minimum buffer size not large enough for trace header");
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800687
Orion Hodson88591fe2018-03-06 13:35:43 +0000688 cur_offset_.store(kTraceHeaderLength, std::memory_order_relaxed);
Andreas Gampe40da2862015-02-27 12:49:04 -0800689
690 if (output_mode == TraceOutputMode::kStreaming) {
Andreas Gampe7526d782015-06-22 22:53:45 -0700691 streaming_lock_ = new Mutex("tracing lock", LockLevel::kTracingStreamingLock);
Andreas Gampe40da2862015-02-27 12:49:04 -0800692 seen_threads_.reset(new ThreadIDBitSet());
693 }
694}
695
696Trace::~Trace() {
697 delete streaming_lock_;
Andreas Gampe7526d782015-06-22 22:53:45 -0700698 delete unique_methods_lock_;
Ian Rogers62d6c772013-02-27 08:32:07 -0800699}
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800700
Mathieu Chartiere401d142015-04-22 13:56:20 -0700701static uint64_t ReadBytes(uint8_t* buf, size_t bytes) {
702 uint64_t ret = 0;
703 for (size_t i = 0; i < bytes; ++i) {
704 ret |= static_cast<uint64_t>(buf[i]) << (i * 8);
705 }
706 return ret;
707}
708
Mathieu Chartier4d64cd42015-06-02 16:38:29 -0700709void Trace::DumpBuf(uint8_t* buf, size_t buf_size, TraceClockSource clock_source) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800710 uint8_t* ptr = buf + kTraceHeaderLength;
711 uint8_t* end = buf + buf_size;
712
713 while (ptr < end) {
Mathieu Chartier4d64cd42015-06-02 16:38:29 -0700714 uint32_t tmid = ReadBytes(ptr + 2, sizeof(tmid));
715 ArtMethod* method = DecodeTraceMethod(tmid);
Ian Rogers62d6c772013-02-27 08:32:07 -0800716 TraceAction action = DecodeTraceAction(tmid);
David Sehr709b0702016-10-13 09:12:37 -0700717 LOG(INFO) << ArtMethod::PrettyMethod(method) << " " << static_cast<int>(action);
Ian Rogers62d6c772013-02-27 08:32:07 -0800718 ptr += GetRecordSize(clock_source);
719 }
jeffhaoe343b762011-12-05 16:36:44 -0800720}
721
Andreas Gampe40da2862015-02-27 12:49:04 -0800722void Trace::FinishTracing() {
723 size_t final_offset = 0;
Mathieu Chartiere401d142015-04-22 13:56:20 -0700724 std::set<ArtMethod*> visited_methods;
Andreas Gampe40da2862015-02-27 12:49:04 -0800725 if (trace_output_mode_ == TraceOutputMode::kStreaming) {
Andreas Gampe40da2862015-02-27 12:49:04 -0800726 // Clean up.
Orion Hodson283ad2d2018-03-26 13:37:41 +0100727 MutexLock mu(Thread::Current(), *streaming_lock_);
Mathieu Chartier4d64cd42015-06-02 16:38:29 -0700728 STLDeleteValues(&seen_methods_);
Andreas Gampe40da2862015-02-27 12:49:04 -0800729 } else {
Orion Hodson88591fe2018-03-06 13:35:43 +0000730 final_offset = cur_offset_.load(std::memory_order_relaxed);
Andreas Gampe40da2862015-02-27 12:49:04 -0800731 GetVisitedMethods(final_offset, &visited_methods);
732 }
733
734 // Compute elapsed time.
735 uint64_t elapsed = MicroTime() - start_time_;
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800736
737 std::ostringstream os;
738
739 os << StringPrintf("%cversion\n", kTraceTokenChar);
Ian Rogers62d6c772013-02-27 08:32:07 -0800740 os << StringPrintf("%d\n", GetTraceVersion(clock_source_));
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800741 os << StringPrintf("data-file-overflow=%s\n", overflow_ ? "true" : "false");
742 if (UseThreadCpuClock()) {
743 if (UseWallClock()) {
744 os << StringPrintf("clock=dual\n");
745 } else {
746 os << StringPrintf("clock=thread-cpu\n");
747 }
748 } else {
749 os << StringPrintf("clock=wall\n");
750 }
Ian Rogersef7d42f2014-01-06 12:55:46 -0800751 os << StringPrintf("elapsed-time-usec=%" PRIu64 "\n", elapsed);
Andreas Gampe40da2862015-02-27 12:49:04 -0800752 if (trace_output_mode_ != TraceOutputMode::kStreaming) {
753 size_t num_records = (final_offset - kTraceHeaderLength) / GetRecordSize(clock_source_);
754 os << StringPrintf("num-method-calls=%zd\n", num_records);
755 }
Jeff Haoc5d824a2014-07-28 18:35:38 -0700756 os << StringPrintf("clock-call-overhead-nsec=%d\n", clock_overhead_ns_);
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800757 os << StringPrintf("vm=art\n");
John Reck0624a272015-03-26 15:47:54 -0700758 os << StringPrintf("pid=%d\n", getpid());
jeffhao0791adc2012-04-04 11:14:32 -0700759 if ((flags_ & kTraceCountAllocs) != 0) {
760 os << StringPrintf("alloc-count=%d\n", Runtime::Current()->GetStat(KIND_ALLOCATED_OBJECTS));
761 os << StringPrintf("alloc-size=%d\n", Runtime::Current()->GetStat(KIND_ALLOCATED_BYTES));
762 os << StringPrintf("gc-count=%d\n", Runtime::Current()->GetStat(KIND_GC_INVOCATIONS));
763 }
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800764 os << StringPrintf("%cthreads\n", kTraceTokenChar);
765 DumpThreadList(os);
766 os << StringPrintf("%cmethods\n", kTraceTokenChar);
Ian Rogers62d6c772013-02-27 08:32:07 -0800767 DumpMethodList(os, visited_methods);
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800768 os << StringPrintf("%cend\n", kTraceTokenChar);
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800769 std::string header(os.str());
Andreas Gampe40da2862015-02-27 12:49:04 -0800770
771 if (trace_output_mode_ == TraceOutputMode::kStreaming) {
Orion Hodson283ad2d2018-03-26 13:37:41 +0100772 // Protect access to buf_ and satisfy sanitizer for calls to WriteBuf / FlushBuf.
773 MutexLock mu(Thread::Current(), *streaming_lock_);
Shukang Zhou8a5ab912017-01-20 11:40:16 -0800774 // Write a special token to mark the end of trace records and the start of
775 // trace summary.
776 uint8_t buf[7];
777 Append2LE(buf, 0);
778 buf[2] = kOpTraceSummary;
779 Append4LE(buf + 3, static_cast<uint32_t>(header.length()));
780 WriteToBuf(buf, sizeof(buf));
781 // Write the trace summary. The summary is identical to the file header when
782 // the output mode is not streaming (except for methods).
783 WriteToBuf(reinterpret_cast<const uint8_t*>(header.c_str()), header.length());
784 // Flush the buffer, which may include some trace records before the summary.
785 FlushBuf();
Andreas Gampe40da2862015-02-27 12:49:04 -0800786 } else {
787 if (trace_file_.get() == nullptr) {
Alex Light772099a2017-11-21 14:05:04 -0800788 std::vector<uint8_t> data;
789 data.resize(header.length() + final_offset);
790 memcpy(data.data(), header.c_str(), header.length());
791 memcpy(data.data() + header.length(), buf_.get(), final_offset);
792 Runtime::Current()->GetRuntimeCallbacks()->DdmPublishChunk(CHUNK_TYPE("MPSE"),
793 ArrayRef<const uint8_t>(data));
Andreas Gampe40da2862015-02-27 12:49:04 -0800794 const bool kDumpTraceInfo = false;
795 if (kDumpTraceInfo) {
796 LOG(INFO) << "Trace sent:\n" << header;
797 DumpBuf(buf_.get(), final_offset, clock_source_);
798 }
799 } else {
800 if (!trace_file_->WriteFully(header.c_str(), header.length()) ||
801 !trace_file_->WriteFully(buf_.get(), final_offset)) {
802 std::string detail(StringPrintf("Trace data write failed: %s", strerror(errno)));
803 PLOG(ERROR) << detail;
804 ThrowRuntimeException("%s", detail.c_str());
805 }
806 }
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800807 }
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800808}
809
Roland Levillain4b8f1ec2015-08-26 18:34:03 +0100810void Trace::DexPcMoved(Thread* thread ATTRIBUTE_UNUSED,
Alex Lightd7661582017-05-01 13:48:16 -0700811 Handle<mirror::Object> this_object ATTRIBUTE_UNUSED,
Roland Levillain4b8f1ec2015-08-26 18:34:03 +0100812 ArtMethod* method,
813 uint32_t new_dex_pc) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800814 // We're not recorded to listen to this kind of event, so complain.
David Sehr709b0702016-10-13 09:12:37 -0700815 LOG(ERROR) << "Unexpected dex PC event in tracing " << ArtMethod::PrettyMethod(method)
816 << " " << new_dex_pc;
Andreas Gampec8ccf682014-09-29 20:07:43 -0700817}
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800818
Roland Levillain4b8f1ec2015-08-26 18:34:03 +0100819void Trace::FieldRead(Thread* thread ATTRIBUTE_UNUSED,
Alex Lightd7661582017-05-01 13:48:16 -0700820 Handle<mirror::Object> this_object ATTRIBUTE_UNUSED,
Roland Levillain4b8f1ec2015-08-26 18:34:03 +0100821 ArtMethod* method,
822 uint32_t dex_pc,
823 ArtField* field ATTRIBUTE_UNUSED)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700824 REQUIRES_SHARED(Locks::mutator_lock_) {
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200825 // We're not recorded to listen to this kind of event, so complain.
David Sehr709b0702016-10-13 09:12:37 -0700826 LOG(ERROR) << "Unexpected field read event in tracing " << ArtMethod::PrettyMethod(method)
827 << " " << dex_pc;
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200828}
829
Roland Levillain4b8f1ec2015-08-26 18:34:03 +0100830void Trace::FieldWritten(Thread* thread ATTRIBUTE_UNUSED,
Alex Lightd7661582017-05-01 13:48:16 -0700831 Handle<mirror::Object> this_object ATTRIBUTE_UNUSED,
Roland Levillain4b8f1ec2015-08-26 18:34:03 +0100832 ArtMethod* method,
833 uint32_t dex_pc,
834 ArtField* field ATTRIBUTE_UNUSED,
835 const JValue& field_value ATTRIBUTE_UNUSED)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700836 REQUIRES_SHARED(Locks::mutator_lock_) {
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200837 // We're not recorded to listen to this kind of event, so complain.
David Sehr709b0702016-10-13 09:12:37 -0700838 LOG(ERROR) << "Unexpected field write event in tracing " << ArtMethod::PrettyMethod(method)
839 << " " << dex_pc;
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200840}
841
Alex Lightd7661582017-05-01 13:48:16 -0700842void Trace::MethodEntered(Thread* thread,
843 Handle<mirror::Object> this_object ATTRIBUTE_UNUSED,
844 ArtMethod* method,
845 uint32_t dex_pc ATTRIBUTE_UNUSED) {
Jeff Haoc1ff4b72013-08-19 11:33:10 -0700846 uint32_t thread_clock_diff = 0;
847 uint32_t wall_clock_diff = 0;
848 ReadClocks(thread, &thread_clock_diff, &wall_clock_diff);
849 LogMethodTraceEvent(thread, method, instrumentation::Instrumentation::kMethodEntered,
850 thread_clock_diff, wall_clock_diff);
Ian Rogers62d6c772013-02-27 08:32:07 -0800851}
852
Alex Lightd7661582017-05-01 13:48:16 -0700853void Trace::MethodExited(Thread* thread,
854 Handle<mirror::Object> this_object ATTRIBUTE_UNUSED,
855 ArtMethod* method,
856 uint32_t dex_pc ATTRIBUTE_UNUSED,
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700857 const JValue& return_value ATTRIBUTE_UNUSED) {
Jeff Haoc1ff4b72013-08-19 11:33:10 -0700858 uint32_t thread_clock_diff = 0;
859 uint32_t wall_clock_diff = 0;
860 ReadClocks(thread, &thread_clock_diff, &wall_clock_diff);
861 LogMethodTraceEvent(thread, method, instrumentation::Instrumentation::kMethodExited,
862 thread_clock_diff, wall_clock_diff);
Ian Rogers62d6c772013-02-27 08:32:07 -0800863}
864
Alex Lightd7661582017-05-01 13:48:16 -0700865void Trace::MethodUnwind(Thread* thread,
866 Handle<mirror::Object> this_object ATTRIBUTE_UNUSED,
867 ArtMethod* method,
868 uint32_t dex_pc ATTRIBUTE_UNUSED) {
Jeff Haoc1ff4b72013-08-19 11:33:10 -0700869 uint32_t thread_clock_diff = 0;
870 uint32_t wall_clock_diff = 0;
871 ReadClocks(thread, &thread_clock_diff, &wall_clock_diff);
872 LogMethodTraceEvent(thread, method, instrumentation::Instrumentation::kMethodUnwind,
873 thread_clock_diff, wall_clock_diff);
Ian Rogers62d6c772013-02-27 08:32:07 -0800874}
875
Alex Light6e1607e2017-08-23 10:06:18 -0700876void Trace::ExceptionThrown(Thread* thread ATTRIBUTE_UNUSED,
Alex Lightd7661582017-05-01 13:48:16 -0700877 Handle<mirror::Throwable> exception_object ATTRIBUTE_UNUSED)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700878 REQUIRES_SHARED(Locks::mutator_lock_) {
Alex Light6e1607e2017-08-23 10:06:18 -0700879 LOG(ERROR) << "Unexpected exception thrown event in tracing";
Ian Rogers62d6c772013-02-27 08:32:07 -0800880}
881
Alex Light798eab02017-08-23 12:54:53 -0700882void Trace::ExceptionHandled(Thread* thread ATTRIBUTE_UNUSED,
883 Handle<mirror::Throwable> exception_object ATTRIBUTE_UNUSED)
884 REQUIRES_SHARED(Locks::mutator_lock_) {
885 LOG(ERROR) << "Unexpected exception thrown event in tracing";
886}
887
Nicolas Geoffray81f0f952016-01-20 16:25:19 +0000888void Trace::Branch(Thread* /*thread*/, ArtMethod* method,
889 uint32_t /*dex_pc*/, int32_t /*dex_pc_offset*/)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700890 REQUIRES_SHARED(Locks::mutator_lock_) {
David Sehr709b0702016-10-13 09:12:37 -0700891 LOG(ERROR) << "Unexpected branch event in tracing" << ArtMethod::PrettyMethod(method);
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800892}
893
Nicolas Geoffray5550ca82015-08-21 18:38:30 +0100894void Trace::InvokeVirtualOrInterface(Thread*,
Alex Lightd7661582017-05-01 13:48:16 -0700895 Handle<mirror::Object>,
Nicolas Geoffray5550ca82015-08-21 18:38:30 +0100896 ArtMethod* method,
897 uint32_t dex_pc,
898 ArtMethod*) {
David Sehr709b0702016-10-13 09:12:37 -0700899 LOG(ERROR) << "Unexpected invoke event in tracing" << ArtMethod::PrettyMethod(method)
Nicolas Geoffray5550ca82015-08-21 18:38:30 +0100900 << " " << dex_pc;
901}
902
Alex Light05f47742017-09-14 00:34:44 +0000903void Trace::WatchedFramePop(Thread* self ATTRIBUTE_UNUSED,
904 const ShadowFrame& frame ATTRIBUTE_UNUSED) {
905 LOG(ERROR) << "Unexpected WatchedFramePop event in tracing";
906}
907
Jeff Haoc1ff4b72013-08-19 11:33:10 -0700908void Trace::ReadClocks(Thread* thread, uint32_t* thread_clock_diff, uint32_t* wall_clock_diff) {
909 if (UseThreadCpuClock()) {
910 uint64_t clock_base = thread->GetTraceClockBase();
911 if (UNLIKELY(clock_base == 0)) {
912 // First event, record the base time in the map.
913 uint64_t time = thread->GetCpuMicroTime();
914 thread->SetTraceClockBase(time);
915 } else {
916 *thread_clock_diff = thread->GetCpuMicroTime() - clock_base;
917 }
918 }
919 if (UseWallClock()) {
920 *wall_clock_diff = MicroTime() - start_time_;
921 }
922}
923
Mathieu Chartiere401d142015-04-22 13:56:20 -0700924bool Trace::RegisterMethod(ArtMethod* method) {
Andreas Gampe40da2862015-02-27 12:49:04 -0800925 mirror::DexCache* dex_cache = method->GetDexCache();
Andreas Gampe7526d782015-06-22 22:53:45 -0700926 const DexFile* dex_file = dex_cache->GetDexFile();
Andreas Gampe7526d782015-06-22 22:53:45 -0700927 if (seen_methods_.find(dex_file) == seen_methods_.end()) {
928 seen_methods_.insert(std::make_pair(dex_file, new DexIndexBitSet()));
Andreas Gampe40da2862015-02-27 12:49:04 -0800929 }
Andreas Gampe7526d782015-06-22 22:53:45 -0700930 DexIndexBitSet* bit_set = seen_methods_.find(dex_file)->second;
Andreas Gampe40da2862015-02-27 12:49:04 -0800931 if (!(*bit_set)[method->GetDexMethodIndex()]) {
932 bit_set->set(method->GetDexMethodIndex());
933 return true;
934 }
935 return false;
936}
937
938bool Trace::RegisterThread(Thread* thread) {
939 pid_t tid = thread->GetTid();
940 CHECK_LT(0U, static_cast<uint32_t>(tid));
Alex Lighta344f6a2016-07-20 10:43:39 -0700941 CHECK_LT(static_cast<uint32_t>(tid), kMaxThreadIdNumber);
Andreas Gampe40da2862015-02-27 12:49:04 -0800942
943 if (!(*seen_threads_)[tid]) {
944 seen_threads_->set(tid);
945 return true;
946 }
947 return false;
948}
949
Mathieu Chartier4d64cd42015-06-02 16:38:29 -0700950std::string Trace::GetMethodLine(ArtMethod* method) {
Andreas Gampe542451c2016-07-26 09:02:02 -0700951 method = method->GetInterfaceMethodIfProxy(kRuntimePointerSize);
Alex Light0f7e8f52016-07-19 11:21:32 -0700952 return StringPrintf("%#x\t%s\t%s\t%s\t%s\n", (EncodeTraceMethod(method) << TraceActionBits),
Andreas Gampe40da2862015-02-27 12:49:04 -0800953 PrettyDescriptor(method->GetDeclaringClassDescriptor()).c_str(), method->GetName(),
954 method->GetSignature().ToString().c_str(), method->GetDeclaringClassSourceFile());
955}
956
957void Trace::WriteToBuf(const uint8_t* src, size_t src_size) {
Orion Hodson283ad2d2018-03-26 13:37:41 +0100958 // Updates to cur_offset_ are done under the streaming_lock_ here as in streaming mode.
Orion Hodson88591fe2018-03-06 13:35:43 +0000959 int32_t old_offset = cur_offset_.load(std::memory_order_relaxed);
Andreas Gampe40da2862015-02-27 12:49:04 -0800960 int32_t new_offset = old_offset + static_cast<int32_t>(src_size);
Andreas Gampee34a42c2015-04-25 14:44:29 -0700961 if (dchecked_integral_cast<size_t>(new_offset) > buffer_size_) {
Andreas Gampe40da2862015-02-27 12:49:04 -0800962 // Flush buffer.
963 if (!trace_file_->WriteFully(buf_.get(), old_offset)) {
964 PLOG(WARNING) << "Failed streaming a tracing event.";
965 }
Andreas Gampee34a42c2015-04-25 14:44:29 -0700966
967 // Check whether the data is too large for the buffer, then write immediately.
968 if (src_size >= buffer_size_) {
969 if (!trace_file_->WriteFully(src, src_size)) {
970 PLOG(WARNING) << "Failed streaming a tracing event.";
971 }
Orion Hodson283ad2d2018-03-26 13:37:41 +0100972 cur_offset_.store(0, std::memory_order_relaxed); // Buffer is empty now.
Andreas Gampee34a42c2015-04-25 14:44:29 -0700973 return;
974 }
975
Andreas Gampe40da2862015-02-27 12:49:04 -0800976 old_offset = 0;
977 new_offset = static_cast<int32_t>(src_size);
978 }
Orion Hodson283ad2d2018-03-26 13:37:41 +0100979 cur_offset_.store(new_offset, std::memory_order_relaxed);
Andreas Gampe40da2862015-02-27 12:49:04 -0800980 // Fill in data.
981 memcpy(buf_.get() + old_offset, src, src_size);
982}
983
Shukang Zhou8a5ab912017-01-20 11:40:16 -0800984void Trace::FlushBuf() {
Orion Hodson283ad2d2018-03-26 13:37:41 +0100985 // Updates to cur_offset_ are done under the streaming_lock_ here as in streaming mode.
Orion Hodson88591fe2018-03-06 13:35:43 +0000986 int32_t offset = cur_offset_.load(std::memory_order_relaxed);
Shukang Zhou8a5ab912017-01-20 11:40:16 -0800987 if (!trace_file_->WriteFully(buf_.get(), offset)) {
988 PLOG(WARNING) << "Failed flush the remaining data in streaming.";
989 }
Orion Hodson283ad2d2018-03-26 13:37:41 +0100990 cur_offset_.store(0, std::memory_order_relaxed);
Shukang Zhou8a5ab912017-01-20 11:40:16 -0800991}
992
Mathieu Chartiere401d142015-04-22 13:56:20 -0700993void Trace::LogMethodTraceEvent(Thread* thread, ArtMethod* method,
Jeff Haoc1ff4b72013-08-19 11:33:10 -0700994 instrumentation::Instrumentation::InstrumentationEvent event,
995 uint32_t thread_clock_diff, uint32_t wall_clock_diff) {
Orion Hodson283ad2d2018-03-26 13:37:41 +0100996 // This method is called in both tracing modes (method and
997 // sampling). In sampling mode, this method is only called by the
998 // sampling thread. In method tracing mode, it can be called
999 // concurrently.
1000
Alex Light4ba388a2017-01-27 10:26:49 -08001001 // Ensure we always use the non-obsolete version of the method so that entry/exit events have the
1002 // same pointer value.
1003 method = method->GetNonObsoleteMethod();
Orion Hodson283ad2d2018-03-26 13:37:41 +01001004
jeffhaoa9ef3fd2011-12-13 18:33:43 -08001005 // Advance cur_offset_ atomically.
1006 int32_t new_offset;
Andreas Gampe40da2862015-02-27 12:49:04 -08001007 int32_t old_offset = 0;
1008
Orion Hodson283ad2d2018-03-26 13:37:41 +01001009 // In the non-streaming case, we do a busy loop here trying to get
1010 // an offset to write our record and advance cur_offset_ for the
1011 // next use.
Andreas Gampe40da2862015-02-27 12:49:04 -08001012 if (trace_output_mode_ != TraceOutputMode::kStreaming) {
Orion Hodson283ad2d2018-03-26 13:37:41 +01001013 // Although multiple threads can call this method concurrently,
1014 // the compare_exchange_weak here is still atomic (by definition).
1015 // A succeeding update is visible to other cores when they pass
1016 // through this point.
1017 old_offset = cur_offset_.load(std::memory_order_relaxed); // Speculative read
Andreas Gampe40da2862015-02-27 12:49:04 -08001018 do {
Andreas Gampe40da2862015-02-27 12:49:04 -08001019 new_offset = old_offset + GetRecordSize(clock_source_);
Andreas Gampee34a42c2015-04-25 14:44:29 -07001020 if (static_cast<size_t>(new_offset) > buffer_size_) {
Andreas Gampe40da2862015-02-27 12:49:04 -08001021 overflow_ = true;
1022 return;
1023 }
Orion Hodson283ad2d2018-03-26 13:37:41 +01001024 } while (!cur_offset_.compare_exchange_weak(old_offset, new_offset, std::memory_order_relaxed));
Andreas Gampe40da2862015-02-27 12:49:04 -08001025 }
jeffhaoa9ef3fd2011-12-13 18:33:43 -08001026
Ian Rogers62d6c772013-02-27 08:32:07 -08001027 TraceAction action = kTraceMethodEnter;
1028 switch (event) {
1029 case instrumentation::Instrumentation::kMethodEntered:
1030 action = kTraceMethodEnter;
1031 break;
1032 case instrumentation::Instrumentation::kMethodExited:
1033 action = kTraceMethodExit;
1034 break;
1035 case instrumentation::Instrumentation::kMethodUnwind:
1036 action = kTraceUnroll;
1037 break;
1038 default:
1039 UNIMPLEMENTED(FATAL) << "Unexpected event: " << event;
1040 }
1041
Mathieu Chartier4d64cd42015-06-02 16:38:29 -07001042 uint32_t method_value = EncodeTraceMethodAndAction(method, action);
jeffhaoa9ef3fd2011-12-13 18:33:43 -08001043
Orion Hodson283ad2d2018-03-26 13:37:41 +01001044 // Write data into the tracing buffer (if not streaming) or into a
1045 // small buffer on the stack (if streaming) which we'll put into the
1046 // tracing buffer below.
1047 //
1048 // These writes to the tracing buffer are synchronised with the
1049 // future reads that (only) occur under FinishTracing(). The callers
1050 // of FinishTracing() acquire locks and (implicitly) synchronise
1051 // the buffer memory.
Andreas Gampe40da2862015-02-27 12:49:04 -08001052 uint8_t* ptr;
Mathieu Chartier4d64cd42015-06-02 16:38:29 -07001053 static constexpr size_t kPacketSize = 14U; // The maximum size of data in a packet.
Andreas Gampe40da2862015-02-27 12:49:04 -08001054 uint8_t stack_buf[kPacketSize]; // Space to store a packet when in streaming mode.
1055 if (trace_output_mode_ == TraceOutputMode::kStreaming) {
1056 ptr = stack_buf;
1057 } else {
1058 ptr = buf_.get() + old_offset;
1059 }
1060
Ian Rogers62d6c772013-02-27 08:32:07 -08001061 Append2LE(ptr, thread->GetTid());
Mathieu Chartier4d64cd42015-06-02 16:38:29 -07001062 Append4LE(ptr + 2, method_value);
1063 ptr += 6;
jeffhaoa9ef3fd2011-12-13 18:33:43 -08001064
1065 if (UseThreadCpuClock()) {
jeffhaoa9ef3fd2011-12-13 18:33:43 -08001066 Append4LE(ptr, thread_clock_diff);
1067 ptr += 4;
1068 }
jeffhaoa9ef3fd2011-12-13 18:33:43 -08001069 if (UseWallClock()) {
jeffhaoa9ef3fd2011-12-13 18:33:43 -08001070 Append4LE(ptr, wall_clock_diff);
1071 }
Mathieu Chartier4d64cd42015-06-02 16:38:29 -07001072 static_assert(kPacketSize == 2 + 4 + 4 + 4, "Packet size incorrect.");
Andreas Gampe40da2862015-02-27 12:49:04 -08001073
1074 if (trace_output_mode_ == TraceOutputMode::kStreaming) {
1075 MutexLock mu(Thread::Current(), *streaming_lock_); // To serialize writing.
1076 if (RegisterMethod(method)) {
1077 // Write a special block with the name.
1078 std::string method_line(GetMethodLine(method));
1079 uint8_t buf2[5];
1080 Append2LE(buf2, 0);
1081 buf2[2] = kOpNewMethod;
1082 Append2LE(buf2 + 3, static_cast<uint16_t>(method_line.length()));
1083 WriteToBuf(buf2, sizeof(buf2));
1084 WriteToBuf(reinterpret_cast<const uint8_t*>(method_line.c_str()), method_line.length());
1085 }
1086 if (RegisterThread(thread)) {
1087 // It might be better to postpone this. Threads might not have received names...
1088 std::string thread_name;
1089 thread->GetThreadName(thread_name);
1090 uint8_t buf2[7];
1091 Append2LE(buf2, 0);
1092 buf2[2] = kOpNewThread;
1093 Append2LE(buf2 + 3, static_cast<uint16_t>(thread->GetTid()));
1094 Append2LE(buf2 + 5, static_cast<uint16_t>(thread_name.length()));
1095 WriteToBuf(buf2, sizeof(buf2));
1096 WriteToBuf(reinterpret_cast<const uint8_t*>(thread_name.c_str()), thread_name.length());
1097 }
1098 WriteToBuf(stack_buf, sizeof(stack_buf));
1099 }
jeffhaoa9ef3fd2011-12-13 18:33:43 -08001100}
1101
Ian Rogers62d6c772013-02-27 08:32:07 -08001102void Trace::GetVisitedMethods(size_t buf_size,
Mathieu Chartiere401d142015-04-22 13:56:20 -07001103 std::set<ArtMethod*>* visited_methods) {
jeffhao2692b572011-12-16 15:42:28 -08001104 uint8_t* ptr = buf_.get() + kTraceHeaderLength;
Ian Rogers62d6c772013-02-27 08:32:07 -08001105 uint8_t* end = buf_.get() + buf_size;
jeffhaoa9ef3fd2011-12-13 18:33:43 -08001106
1107 while (ptr < end) {
Mathieu Chartier4d64cd42015-06-02 16:38:29 -07001108 uint32_t tmid = ReadBytes(ptr + 2, sizeof(tmid));
1109 ArtMethod* method = DecodeTraceMethod(tmid);
Ian Rogers62d6c772013-02-27 08:32:07 -08001110 visited_methods->insert(method);
1111 ptr += GetRecordSize(clock_source_);
jeffhaoa9ef3fd2011-12-13 18:33:43 -08001112 }
1113}
1114
Mathieu Chartiere401d142015-04-22 13:56:20 -07001115void Trace::DumpMethodList(std::ostream& os, const std::set<ArtMethod*>& visited_methods) {
Mathieu Chartier02e25112013-08-14 16:14:24 -07001116 for (const auto& method : visited_methods) {
Andreas Gampe40da2862015-02-27 12:49:04 -08001117 os << GetMethodLine(method);
jeffhaoa9ef3fd2011-12-13 18:33:43 -08001118 }
jeffhaoa9ef3fd2011-12-13 18:33:43 -08001119}
1120
1121static void DumpThread(Thread* t, void* arg) {
Elliott Hughesffb465f2012-03-01 18:46:05 -08001122 std::ostream& os = *reinterpret_cast<std::ostream*>(arg);
1123 std::string name;
1124 t->GetThreadName(name);
1125 os << t->GetTid() << "\t" << name << "\n";
jeffhaoa9ef3fd2011-12-13 18:33:43 -08001126}
1127
1128void Trace::DumpThreadList(std::ostream& os) {
Ian Rogers81d425b2012-09-27 16:03:43 -07001129 Thread* self = Thread::Current();
Jeff Haoe094b872014-10-14 13:12:01 -07001130 for (auto it : exited_threads_) {
1131 os << it.first << "\t" << it.second << "\n";
1132 }
Ian Rogers81d425b2012-09-27 16:03:43 -07001133 Locks::thread_list_lock_->AssertNotHeld(self);
1134 MutexLock mu(self, *Locks::thread_list_lock_);
jeffhaoa9ef3fd2011-12-13 18:33:43 -08001135 Runtime::Current()->GetThreadList()->ForEach(DumpThread, &os);
jeffhaoe343b762011-12-05 16:36:44 -08001136}
1137
Jeff Haoe094b872014-10-14 13:12:01 -07001138void Trace::StoreExitingThreadInfo(Thread* thread) {
1139 MutexLock mu(thread, *Locks::trace_lock_);
1140 if (the_trace_ != nullptr) {
1141 std::string name;
1142 thread->GetThreadName(name);
Andreas Gampea1785c52014-11-25 20:40:08 -08001143 // The same thread/tid may be used multiple times. As SafeMap::Put does not allow to override
1144 // a previous mapping, use SafeMap::Overwrite.
1145 the_trace_->exited_threads_.Overwrite(thread->GetTid(), name);
Jeff Haoe094b872014-10-14 13:12:01 -07001146 }
1147}
1148
Andreas Gampe40da2862015-02-27 12:49:04 -08001149Trace::TraceOutputMode Trace::GetOutputMode() {
1150 MutexLock mu(Thread::Current(), *Locks::trace_lock_);
1151 CHECK(the_trace_ != nullptr) << "Trace output mode requested, but no trace currently running";
1152 return the_trace_->trace_output_mode_;
1153}
1154
1155Trace::TraceMode Trace::GetMode() {
1156 MutexLock mu(Thread::Current(), *Locks::trace_lock_);
1157 CHECK(the_trace_ != nullptr) << "Trace mode requested, but no trace currently running";
1158 return the_trace_->trace_mode_;
1159}
1160
Andreas Gampee34a42c2015-04-25 14:44:29 -07001161size_t Trace::GetBufferSize() {
1162 MutexLock mu(Thread::Current(), *Locks::trace_lock_);
1163 CHECK(the_trace_ != nullptr) << "Trace mode requested, but no trace currently running";
1164 return the_trace_->buffer_size_;
1165}
1166
Mathieu Chartier7778b882015-10-05 16:41:10 -07001167bool Trace::IsTracingEnabled() {
1168 MutexLock mu(Thread::Current(), *Locks::trace_lock_);
1169 return the_trace_ != nullptr;
1170}
1171
jeffhaoe343b762011-12-05 16:36:44 -08001172} // namespace art