blob: 36532c6d52608b5a34ab8ab4e56903bffeb2ccf6 [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"
Jeff Hao0abc72e2013-08-13 13:45:14 -070027#include "base/stl_util.h"
Mathieu Chartier32ce2ad2016-03-04 14:58:03 -080028#include "base/systrace.h"
Vladimir Marko80afd022015-05-19 18:08:00 +010029#include "base/time_utils.h"
Elliott Hughes76160052012-12-12 16:31:20 -080030#include "base/unix_file/fd_file.h"
jeffhaoe343b762011-12-05 16:36:44 -080031#include "class_linker.h"
Ian Rogers62d6c772013-02-27 08:32:07 -080032#include "common_throws.h"
jeffhaoa9ef3fd2011-12-13 18:33:43 -080033#include "debugger.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070034#include "dex_file-inl.h"
Steven Morelande431e272017-07-18 16:53:49 -070035#include "entrypoints/quick/quick_entrypoints.h"
Mathieu Chartieraa516822015-10-02 15:53:37 -070036#include "gc/scoped_gc_critical_section.h"
jeffhao725a9572012-11-13 18:20:12 -080037#include "instrumentation.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070038#include "mirror/class-inl.h"
Andreas Gampe40da2862015-02-27 12:49:04 -080039#include "mirror/dex_cache-inl.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070040#include "mirror/object-inl.h"
Steven Morelande431e272017-07-18 16:53:49 -070041#include "mirror/object_array-inl.h"
42#include "nativehelper/ScopedLocalRef.h"
jeffhaoa9ef3fd2011-12-13 18:33:43 -080043#include "os.h"
Mathieu Chartier0795f232016-09-27 18:43:30 -070044#include "scoped_thread_state_change-inl.h"
Andreas Gampe513061a2017-06-01 09:17:34 -070045#include "stack.h"
jeffhaoe343b762011-12-05 16:36:44 -080046#include "thread.h"
Ian Rogers57b86d42012-03-27 16:05:41 -070047#include "thread_list.h"
Vladimir Marko80afd022015-05-19 18:08:00 +010048#include "utils.h"
jeffhao2692b572011-12-16 15:42:28 -080049
50namespace art {
51
Andreas Gampe46ee31b2016-12-14 10:11:49 -080052using android::base::StringPrintf;
53
Mathieu Chartier4d64cd42015-06-02 16:38:29 -070054static constexpr size_t TraceActionBits = MinimumBitsToStore(
55 static_cast<size_t>(kTraceMethodActionMask));
Andreas Gampe40da2862015-02-27 12:49:04 -080056static constexpr uint8_t kOpNewMethod = 1U;
57static constexpr uint8_t kOpNewThread = 2U;
Shukang Zhou8a5ab912017-01-20 11:40:16 -080058static constexpr uint8_t kOpTraceSummary = 3U;
Andreas Gampe40da2862015-02-27 12:49:04 -080059
Jeff Hao0abc72e2013-08-13 13:45:14 -070060class BuildStackTraceVisitor : public StackVisitor {
61 public:
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +010062 explicit BuildStackTraceVisitor(Thread* thread)
63 : StackVisitor(thread, nullptr, StackVisitor::StackWalkKind::kIncludeInlinedFrames),
64 method_trace_(Trace::AllocStackTrace()) {}
Jeff Hao0abc72e2013-08-13 13:45:14 -070065
Andreas Gampebdf7f1c2016-08-30 16:38:47 -070066 bool VisitFrame() REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartiere401d142015-04-22 13:56:20 -070067 ArtMethod* m = GetMethod();
Jeff Hao0abc72e2013-08-13 13:45:14 -070068 // Ignore runtime frames (in particular callee save).
69 if (!m->IsRuntimeMethod()) {
70 method_trace_->push_back(m);
71 }
72 return true;
73 }
74
75 // Returns a stack trace where the topmost frame corresponds with the first element of the vector.
Mathieu Chartiere401d142015-04-22 13:56:20 -070076 std::vector<ArtMethod*>* GetStackTrace() const {
Jeff Hao0abc72e2013-08-13 13:45:14 -070077 return method_trace_;
78 }
79
80 private:
Mathieu Chartiere401d142015-04-22 13:56:20 -070081 std::vector<ArtMethod*>* const method_trace_;
Sebastien Hertz26f72862015-09-15 09:52:07 +020082
83 DISALLOW_COPY_AND_ASSIGN(BuildStackTraceVisitor);
Jeff Hao0abc72e2013-08-13 13:45:14 -070084};
85
jeffhaoa9ef3fd2011-12-13 18:33:43 -080086static const char kTraceTokenChar = '*';
87static const uint16_t kTraceHeaderLength = 32;
88static const uint32_t kTraceMagicValue = 0x574f4c53;
89static const uint16_t kTraceVersionSingleClock = 2;
90static const uint16_t kTraceVersionDualClock = 3;
Mathieu Chartier4d64cd42015-06-02 16:38:29 -070091static const uint16_t kTraceRecordSizeSingleClock = 10; // using v2
92static const uint16_t kTraceRecordSizeDualClock = 14; // using v3 with two timestamps
jeffhaoa9ef3fd2011-12-13 18:33:43 -080093
Ian Rogerse63db272014-07-15 15:36:11 -070094TraceClockSource Trace::default_clock_source_ = kDefaultTraceClockSource;
Elliott Hughese119a362012-05-22 17:37:06 -070095
Andreas Gampe40da2862015-02-27 12:49:04 -080096Trace* volatile Trace::the_trace_ = nullptr;
Jeff Hao0abc72e2013-08-13 13:45:14 -070097pthread_t Trace::sampling_pthread_ = 0U;
Mathieu Chartiere401d142015-04-22 13:56:20 -070098std::unique_ptr<std::vector<ArtMethod*>> Trace::temp_stack_trace_;
Ian Rogers62d6c772013-02-27 08:32:07 -080099
Sebastien Hertz0462c4c2015-04-01 16:34:17 +0200100// The key identifying the tracer to update instrumentation.
101static constexpr const char* kTracerInstrumentationKey = "Tracer";
102
Ian Rogers62d6c772013-02-27 08:32:07 -0800103static TraceAction DecodeTraceAction(uint32_t tmid) {
104 return static_cast<TraceAction>(tmid & kTraceMethodActionMask);
105}
106
Mathieu Chartier4d64cd42015-06-02 16:38:29 -0700107ArtMethod* Trace::DecodeTraceMethod(uint32_t tmid) {
108 MutexLock mu(Thread::Current(), *unique_methods_lock_);
109 return unique_methods_[tmid >> TraceActionBits];
110}
111
112uint32_t Trace::EncodeTraceMethod(ArtMethod* method) {
113 MutexLock mu(Thread::Current(), *unique_methods_lock_);
114 uint32_t idx;
115 auto it = art_method_id_map_.find(method);
116 if (it != art_method_id_map_.end()) {
117 idx = it->second;
118 } else {
119 unique_methods_.push_back(method);
120 idx = unique_methods_.size() - 1;
121 art_method_id_map_.emplace(method, idx);
122 }
123 DCHECK_LT(idx, unique_methods_.size());
124 DCHECK_EQ(unique_methods_[idx], method);
125 return idx;
126}
127
128uint32_t Trace::EncodeTraceMethodAndAction(ArtMethod* method, TraceAction action) {
129 uint32_t tmid = (EncodeTraceMethod(method) << TraceActionBits) | action;
130 DCHECK_EQ(method, DecodeTraceMethod(tmid));
Ian Rogers62d6c772013-02-27 08:32:07 -0800131 return tmid;
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800132}
133
Mathieu Chartiere401d142015-04-22 13:56:20 -0700134std::vector<ArtMethod*>* Trace::AllocStackTrace() {
Mathieu Chartier4d64cd42015-06-02 16:38:29 -0700135 return (temp_stack_trace_.get() != nullptr) ? temp_stack_trace_.release() :
136 new std::vector<ArtMethod*>();
Jeff Hao5ce4b172013-08-16 16:27:18 -0700137}
138
Mathieu Chartiere401d142015-04-22 13:56:20 -0700139void Trace::FreeStackTrace(std::vector<ArtMethod*>* stack_trace) {
Jeff Hao5ce4b172013-08-16 16:27:18 -0700140 stack_trace->clear();
141 temp_stack_trace_.reset(stack_trace);
142}
143
Ian Rogerse63db272014-07-15 15:36:11 -0700144void Trace::SetDefaultClockSource(TraceClockSource clock_source) {
Elliott Hughes0a18df82015-01-09 15:16:16 -0800145#if defined(__linux__)
Ian Rogers62d6c772013-02-27 08:32:07 -0800146 default_clock_source_ = clock_source;
147#else
Igor Murashkinaaebaa02015-01-26 10:55:53 -0800148 if (clock_source != TraceClockSource::kWall) {
Jeff Hao5ce4b172013-08-16 16:27:18 -0700149 LOG(WARNING) << "Ignoring tracing request to use CPU time.";
Ian Rogers62d6c772013-02-27 08:32:07 -0800150 }
151#endif
152}
153
Ian Rogerse63db272014-07-15 15:36:11 -0700154static uint16_t GetTraceVersion(TraceClockSource clock_source) {
Igor Murashkinaaebaa02015-01-26 10:55:53 -0800155 return (clock_source == TraceClockSource::kDual) ? kTraceVersionDualClock
Ian Rogers62d6c772013-02-27 08:32:07 -0800156 : kTraceVersionSingleClock;
157}
158
Ian Rogerse63db272014-07-15 15:36:11 -0700159static uint16_t GetRecordSize(TraceClockSource clock_source) {
Igor Murashkinaaebaa02015-01-26 10:55:53 -0800160 return (clock_source == TraceClockSource::kDual) ? kTraceRecordSizeDualClock
Ian Rogers62d6c772013-02-27 08:32:07 -0800161 : kTraceRecordSizeSingleClock;
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800162}
163
Elliott Hughese119a362012-05-22 17:37:06 -0700164bool Trace::UseThreadCpuClock() {
Igor Murashkinaaebaa02015-01-26 10:55:53 -0800165 return (clock_source_ == TraceClockSource::kThreadCpu) ||
166 (clock_source_ == TraceClockSource::kDual);
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800167}
168
Elliott Hughese119a362012-05-22 17:37:06 -0700169bool Trace::UseWallClock() {
Igor Murashkinaaebaa02015-01-26 10:55:53 -0800170 return (clock_source_ == TraceClockSource::kWall) ||
171 (clock_source_ == TraceClockSource::kDual);
Elliott Hughese119a362012-05-22 17:37:06 -0700172}
173
Jeff Haoc5d824a2014-07-28 18:35:38 -0700174void Trace::MeasureClockOverhead() {
175 if (UseThreadCpuClock()) {
Jeff Hao57dac6e2013-08-15 16:36:24 -0700176 Thread::Current()->GetCpuMicroTime();
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800177 }
Jeff Haoc5d824a2014-07-28 18:35:38 -0700178 if (UseWallClock()) {
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800179 MicroTime();
180 }
181}
182
Jeff Hao5ce4b172013-08-16 16:27:18 -0700183// Compute an average time taken to measure clocks.
Jeff Haoc5d824a2014-07-28 18:35:38 -0700184uint32_t Trace::GetClockOverheadNanoSeconds() {
Jeff Hao57dac6e2013-08-15 16:36:24 -0700185 Thread* self = Thread::Current();
186 uint64_t start = self->GetCpuMicroTime();
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800187
188 for (int i = 4000; i > 0; i--) {
Jeff Haoc5d824a2014-07-28 18:35:38 -0700189 MeasureClockOverhead();
190 MeasureClockOverhead();
191 MeasureClockOverhead();
192 MeasureClockOverhead();
193 MeasureClockOverhead();
194 MeasureClockOverhead();
195 MeasureClockOverhead();
196 MeasureClockOverhead();
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800197 }
198
Jeff Hao5ce4b172013-08-16 16:27:18 -0700199 uint64_t elapsed_us = self->GetCpuMicroTime() - start;
200 return static_cast<uint32_t>(elapsed_us / 32);
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800201}
202
Elliott Hughesffb465f2012-03-01 18:46:05 -0800203// TODO: put this somewhere with the big-endian equivalent used by JDWP.
204static void Append2LE(uint8_t* buf, uint16_t val) {
Jeff Hao5ce4b172013-08-16 16:27:18 -0700205 *buf++ = static_cast<uint8_t>(val);
206 *buf++ = static_cast<uint8_t>(val >> 8);
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800207}
208
Elliott Hughesffb465f2012-03-01 18:46:05 -0800209// TODO: put this somewhere with the big-endian equivalent used by JDWP.
210static void Append4LE(uint8_t* buf, uint32_t val) {
Jeff Hao5ce4b172013-08-16 16:27:18 -0700211 *buf++ = static_cast<uint8_t>(val);
212 *buf++ = static_cast<uint8_t>(val >> 8);
213 *buf++ = static_cast<uint8_t>(val >> 16);
214 *buf++ = static_cast<uint8_t>(val >> 24);
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800215}
216
Elliott Hughesffb465f2012-03-01 18:46:05 -0800217// TODO: put this somewhere with the big-endian equivalent used by JDWP.
218static void Append8LE(uint8_t* buf, uint64_t val) {
Jeff Hao5ce4b172013-08-16 16:27:18 -0700219 *buf++ = static_cast<uint8_t>(val);
220 *buf++ = static_cast<uint8_t>(val >> 8);
221 *buf++ = static_cast<uint8_t>(val >> 16);
222 *buf++ = static_cast<uint8_t>(val >> 24);
223 *buf++ = static_cast<uint8_t>(val >> 32);
224 *buf++ = static_cast<uint8_t>(val >> 40);
225 *buf++ = static_cast<uint8_t>(val >> 48);
226 *buf++ = static_cast<uint8_t>(val >> 56);
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800227}
228
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700229static void GetSample(Thread* thread, void* arg) REQUIRES_SHARED(Locks::mutator_lock_) {
Jeff Hao0abc72e2013-08-13 13:45:14 -0700230 BuildStackTraceVisitor build_trace_visitor(thread);
231 build_trace_visitor.WalkStack();
Mathieu Chartiere401d142015-04-22 13:56:20 -0700232 std::vector<ArtMethod*>* stack_trace = build_trace_visitor.GetStackTrace();
Jeff Hao0abc72e2013-08-13 13:45:14 -0700233 Trace* the_trace = reinterpret_cast<Trace*>(arg);
234 the_trace->CompareAndUpdateStackTrace(thread, stack_trace);
235}
236
Andreas Gampeca714582015-04-03 19:41:34 -0700237static void ClearThreadStackTraceAndClockBase(Thread* thread, void* arg ATTRIBUTE_UNUSED) {
Jeff Hao5ce4b172013-08-16 16:27:18 -0700238 thread->SetTraceClockBase(0);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700239 std::vector<ArtMethod*>* stack_trace = thread->GetStackTraceSample();
Andreas Gampe40da2862015-02-27 12:49:04 -0800240 thread->SetStackTraceSample(nullptr);
Jeff Hao5ce4b172013-08-16 16:27:18 -0700241 delete stack_trace;
242}
243
Jeff Hao0abc72e2013-08-13 13:45:14 -0700244void Trace::CompareAndUpdateStackTrace(Thread* thread,
Mathieu Chartiere401d142015-04-22 13:56:20 -0700245 std::vector<ArtMethod*>* stack_trace) {
Jeff Hao0abc72e2013-08-13 13:45:14 -0700246 CHECK_EQ(pthread_self(), sampling_pthread_);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700247 std::vector<ArtMethod*>* old_stack_trace = thread->GetStackTraceSample();
Jeff Hao5ce4b172013-08-16 16:27:18 -0700248 // Update the thread's stack trace sample.
249 thread->SetStackTraceSample(stack_trace);
Jeff Haoc1ff4b72013-08-19 11:33:10 -0700250 // Read timer clocks to use for all events in this trace.
251 uint32_t thread_clock_diff = 0;
252 uint32_t wall_clock_diff = 0;
253 ReadClocks(thread, &thread_clock_diff, &wall_clock_diff);
Andreas Gampe40da2862015-02-27 12:49:04 -0800254 if (old_stack_trace == nullptr) {
Jeff Hao5ce4b172013-08-16 16:27:18 -0700255 // If there's no previous stack trace sample for this thread, log an entry event for all
Jeff Hao0abc72e2013-08-13 13:45:14 -0700256 // methods in the trace.
Mathieu Chartier4d64cd42015-06-02 16:38:29 -0700257 for (auto rit = stack_trace->rbegin(); rit != stack_trace->rend(); ++rit) {
Jeff Haoc1ff4b72013-08-19 11:33:10 -0700258 LogMethodTraceEvent(thread, *rit, instrumentation::Instrumentation::kMethodEntered,
259 thread_clock_diff, wall_clock_diff);
Jeff Hao0abc72e2013-08-13 13:45:14 -0700260 }
261 } else {
262 // If there's a previous stack trace for this thread, diff the traces and emit entry and exit
263 // events accordingly.
Mathieu Chartier4d64cd42015-06-02 16:38:29 -0700264 auto old_rit = old_stack_trace->rbegin();
265 auto rit = stack_trace->rbegin();
Jeff Hao0abc72e2013-08-13 13:45:14 -0700266 // Iterate bottom-up over both traces until there's a difference between them.
267 while (old_rit != old_stack_trace->rend() && rit != stack_trace->rend() && *old_rit == *rit) {
268 old_rit++;
269 rit++;
270 }
271 // Iterate top-down over the old trace until the point where they differ, emitting exit events.
Mathieu Chartier4d64cd42015-06-02 16:38:29 -0700272 for (auto old_it = old_stack_trace->begin(); old_it != old_rit.base(); ++old_it) {
Jeff Haoc1ff4b72013-08-19 11:33:10 -0700273 LogMethodTraceEvent(thread, *old_it, instrumentation::Instrumentation::kMethodExited,
274 thread_clock_diff, wall_clock_diff);
Jeff Hao0abc72e2013-08-13 13:45:14 -0700275 }
276 // Iterate bottom-up over the new trace from the point where they differ, emitting entry events.
277 for (; rit != stack_trace->rend(); ++rit) {
Jeff Haoc1ff4b72013-08-19 11:33:10 -0700278 LogMethodTraceEvent(thread, *rit, instrumentation::Instrumentation::kMethodEntered,
279 thread_clock_diff, wall_clock_diff);
Jeff Hao0abc72e2013-08-13 13:45:14 -0700280 }
Jeff Hao5ce4b172013-08-16 16:27:18 -0700281 FreeStackTrace(old_stack_trace);
Jeff Hao0abc72e2013-08-13 13:45:14 -0700282 }
283}
284
285void* Trace::RunSamplingThread(void* arg) {
286 Runtime* runtime = Runtime::Current();
Ian Rogersef7d42f2014-01-06 12:55:46 -0800287 intptr_t interval_us = reinterpret_cast<intptr_t>(arg);
Jeff Hao4044bda2014-01-06 15:50:45 -0800288 CHECK_GE(interval_us, 0);
Jeff Hao0abc72e2013-08-13 13:45:14 -0700289 CHECK(runtime->AttachCurrentThread("Sampling Profiler", true, runtime->GetSystemThreadGroup(),
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800290 !runtime->IsAotCompiler()));
Jeff Hao0abc72e2013-08-13 13:45:14 -0700291
292 while (true) {
Jeff Hao23009dc2013-08-22 15:36:42 -0700293 usleep(interval_us);
Mathieu Chartier32ce2ad2016-03-04 14:58:03 -0800294 ScopedTrace trace("Profile sampling");
Jeff Hao0abc72e2013-08-13 13:45:14 -0700295 Thread* self = Thread::Current();
296 Trace* the_trace;
297 {
298 MutexLock mu(self, *Locks::trace_lock_);
299 the_trace = the_trace_;
Andreas Gampe40da2862015-02-27 12:49:04 -0800300 if (the_trace == nullptr) {
Jeff Hao0abc72e2013-08-13 13:45:14 -0700301 break;
302 }
303 }
Jeff Hao0abc72e2013-08-13 13:45:14 -0700304 {
Mathieu Chartier4f55e222015-09-04 13:26:21 -0700305 ScopedSuspendAll ssa(__FUNCTION__);
Jeff Hao0abc72e2013-08-13 13:45:14 -0700306 MutexLock mu(self, *Locks::thread_list_lock_);
307 runtime->GetThreadList()->ForEach(GetSample, the_trace);
308 }
Jeff Hao0abc72e2013-08-13 13:45:14 -0700309 }
310
311 runtime->DetachCurrentThread();
Andreas Gampe40da2862015-02-27 12:49:04 -0800312 return nullptr;
Jeff Hao0abc72e2013-08-13 13:45:14 -0700313}
314
Andreas Gampee34a42c2015-04-25 14:44:29 -0700315void Trace::Start(const char* trace_filename, int trace_fd, size_t buffer_size, int flags,
Andreas Gampe7e7e0f42015-03-29 15:26:23 -0700316 TraceOutputMode output_mode, TraceMode trace_mode, int interval_us) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800317 Thread* self = Thread::Current();
318 {
319 MutexLock mu(self, *Locks::trace_lock_);
Andreas Gampe40da2862015-02-27 12:49:04 -0800320 if (the_trace_ != nullptr) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800321 LOG(ERROR) << "Trace already in progress, ignoring this request";
322 return;
323 }
jeffhaoe343b762011-12-05 16:36:44 -0800324 }
Jeff Haod063d912014-09-08 09:38:18 -0700325
326 // Check interval if sampling is enabled
Andreas Gampe7e7e0f42015-03-29 15:26:23 -0700327 if (trace_mode == TraceMode::kSampling && interval_us <= 0) {
Jeff Haod063d912014-09-08 09:38:18 -0700328 LOG(ERROR) << "Invalid sampling interval: " << interval_us;
329 ScopedObjectAccess soa(self);
330 ThrowRuntimeException("Invalid sampling interval: %d", interval_us);
331 return;
332 }
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800333
jeffhao2692b572011-12-16 15:42:28 -0800334 // Open trace file if not going directly to ddms.
Ian Rogers700a4022014-05-19 16:49:03 -0700335 std::unique_ptr<File> trace_file;
Andreas Gampe7e7e0f42015-03-29 15:26:23 -0700336 if (output_mode != TraceOutputMode::kDDMS) {
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800337 if (trace_fd < 0) {
Calin Juravlef83e7332015-11-04 16:16:47 +0000338 trace_file.reset(OS::CreateEmptyFileWriteOnly(trace_filename));
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800339 } else {
Ian Rogers62d6c772013-02-27 08:32:07 -0800340 trace_file.reset(new File(trace_fd, "tracefile"));
Elliott Hughes76160052012-12-12 16:31:20 -0800341 trace_file->DisableAutoClose();
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800342 }
Andreas Gampe40da2862015-02-27 12:49:04 -0800343 if (trace_file.get() == nullptr) {
jeffhaob5e81852012-03-12 11:15:45 -0700344 PLOG(ERROR) << "Unable to open trace file '" << trace_filename << "'";
Ian Rogers62d6c772013-02-27 08:32:07 -0800345 ScopedObjectAccess soa(self);
346 ThrowRuntimeException("Unable to open trace file '%s'", trace_filename);
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800347 return;
348 }
349 }
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800350
Jeff Haod063d912014-09-08 09:38:18 -0700351 Runtime* runtime = Runtime::Current();
Mathieu Chartier9ef78b52014-09-25 17:03:12 -0700352
353 // Enable count of allocs if specified in the flags.
354 bool enable_stats = false;
355
jeffhao2692b572011-12-16 15:42:28 -0800356 // Create Trace object.
Ian Rogers62d6c772013-02-27 08:32:07 -0800357 {
Mathieu Chartieraa516822015-10-02 15:53:37 -0700358 // Required since EnableMethodTracing calls ConfigureStubs which visits class linker classes.
359 gc::ScopedGCCriticalSection gcs(self,
360 gc::kGcCauseInstrumentation,
361 gc::kCollectorTypeInstrumentation);
Mathieu Chartier4f55e222015-09-04 13:26:21 -0700362 ScopedSuspendAll ssa(__FUNCTION__);
Ian Rogers62d6c772013-02-27 08:32:07 -0800363 MutexLock mu(self, *Locks::trace_lock_);
Andreas Gampe40da2862015-02-27 12:49:04 -0800364 if (the_trace_ != nullptr) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800365 LOG(ERROR) << "Trace already in progress, ignoring this request";
366 } else {
Mathieu Chartier9ef78b52014-09-25 17:03:12 -0700367 enable_stats = (flags && kTraceCountAllocs) != 0;
Andreas Gampe40da2862015-02-27 12:49:04 -0800368 the_trace_ = new Trace(trace_file.release(), trace_filename, buffer_size, flags, output_mode,
369 trace_mode);
Andreas Gampe7e7e0f42015-03-29 15:26:23 -0700370 if (trace_mode == TraceMode::kSampling) {
Andreas Gampe40da2862015-02-27 12:49:04 -0800371 CHECK_PTHREAD_CALL(pthread_create, (&sampling_pthread_, nullptr, &RunSamplingThread,
Jeff Hao23009dc2013-08-22 15:36:42 -0700372 reinterpret_cast<void*>(interval_us)),
373 "Sampling profiler thread");
Andreas Gampe40da2862015-02-27 12:49:04 -0800374 the_trace_->interval_us_ = interval_us;
Jeff Hao0abc72e2013-08-13 13:45:14 -0700375 } else {
376 runtime->GetInstrumentation()->AddListener(the_trace_,
377 instrumentation::Instrumentation::kMethodEntered |
378 instrumentation::Instrumentation::kMethodExited |
379 instrumentation::Instrumentation::kMethodUnwind);
Andreas Gampe40da2862015-02-27 12:49:04 -0800380 // TODO: In full-PIC mode, we don't need to fully deopt.
Sebastien Hertz0462c4c2015-04-01 16:34:17 +0200381 runtime->GetInstrumentation()->EnableMethodTracing(kTracerInstrumentationKey);
Jeff Hao0abc72e2013-08-13 13:45:14 -0700382 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800383 }
jeffhao0791adc2012-04-04 11:14:32 -0700384 }
Jeff Haod063d912014-09-08 09:38:18 -0700385
Mathieu Chartier9ef78b52014-09-25 17:03:12 -0700386 // Can't call this when holding the mutator lock.
387 if (enable_stats) {
388 runtime->SetStatsEnabled(true);
389 }
jeffhao2692b572011-12-16 15:42:28 -0800390}
391
Andreas Gampe40da2862015-02-27 12:49:04 -0800392void Trace::StopTracing(bool finish_tracing, bool flush_file) {
Mathieu Chartier9ef78b52014-09-25 17:03:12 -0700393 bool stop_alloc_counting = false;
Mathieu Chartier02e5f162015-03-11 09:54:22 -0700394 Runtime* const runtime = Runtime::Current();
395 Trace* the_trace = nullptr;
Hiroshi Yamauchi9ea02c42016-03-03 15:09:27 -0800396 Thread* const self = Thread::Current();
Jeff Hao0abc72e2013-08-13 13:45:14 -0700397 pthread_t sampling_pthread = 0U;
Ian Rogers62d6c772013-02-27 08:32:07 -0800398 {
Hiroshi Yamauchi9ea02c42016-03-03 15:09:27 -0800399 MutexLock mu(self, *Locks::trace_lock_);
Andreas Gampe40da2862015-02-27 12:49:04 -0800400 if (the_trace_ == nullptr) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800401 LOG(ERROR) << "Trace stop requested, but no trace currently running";
402 } else {
403 the_trace = the_trace_;
Andreas Gampe40da2862015-02-27 12:49:04 -0800404 the_trace_ = nullptr;
Jeff Hao0abc72e2013-08-13 13:45:14 -0700405 sampling_pthread = sampling_pthread_;
Ian Rogers62d6c772013-02-27 08:32:07 -0800406 }
jeffhao2692b572011-12-16 15:42:28 -0800407 }
Mathieu Chartier02e5f162015-03-11 09:54:22 -0700408 // Make sure that we join before we delete the trace since we don't want to have
409 // the sampling thread access a stale pointer. This finishes since the sampling thread exits when
410 // the_trace_ is null.
411 if (sampling_pthread != 0U) {
Andreas Gampe40da2862015-02-27 12:49:04 -0800412 CHECK_PTHREAD_CALL(pthread_join, (sampling_pthread, nullptr), "sampling thread shutdown");
Mathieu Chartier02e5f162015-03-11 09:54:22 -0700413 sampling_pthread_ = 0U;
414 }
Andreas Gampe40da2862015-02-27 12:49:04 -0800415
Mathieu Chartier4f55e222015-09-04 13:26:21 -0700416 {
Hiroshi Yamauchi9ea02c42016-03-03 15:09:27 -0800417 gc::ScopedGCCriticalSection gcs(self,
418 gc::kGcCauseInstrumentation,
419 gc::kCollectorTypeInstrumentation);
Mathieu Chartier4f55e222015-09-04 13:26:21 -0700420 ScopedSuspendAll ssa(__FUNCTION__);
421 if (the_trace != nullptr) {
422 stop_alloc_counting = (the_trace->flags_ & Trace::kTraceCountAllocs) != 0;
423 if (finish_tracing) {
424 the_trace->FinishTracing();
425 }
Jeff Hao0abc72e2013-08-13 13:45:14 -0700426
Mathieu Chartier4f55e222015-09-04 13:26:21 -0700427 if (the_trace->trace_mode_ == TraceMode::kSampling) {
Hiroshi Yamauchi9ea02c42016-03-03 15:09:27 -0800428 MutexLock mu(self, *Locks::thread_list_lock_);
Mathieu Chartier4f55e222015-09-04 13:26:21 -0700429 runtime->GetThreadList()->ForEach(ClearThreadStackTraceAndClockBase, nullptr);
Andreas Gampe40da2862015-02-27 12:49:04 -0800430 } else {
Mathieu Chartier4f55e222015-09-04 13:26:21 -0700431 runtime->GetInstrumentation()->DisableMethodTracing(kTracerInstrumentationKey);
432 runtime->GetInstrumentation()->RemoveListener(
433 the_trace, instrumentation::Instrumentation::kMethodEntered |
434 instrumentation::Instrumentation::kMethodExited |
435 instrumentation::Instrumentation::kMethodUnwind);
Andreas Gampe4303ba92014-11-06 01:00:46 -0800436 }
Mathieu Chartier4f55e222015-09-04 13:26:21 -0700437 if (the_trace->trace_file_.get() != nullptr) {
438 // Do not try to erase, so flush and close explicitly.
439 if (flush_file) {
440 if (the_trace->trace_file_->Flush() != 0) {
441 PLOG(WARNING) << "Could not flush trace file.";
442 }
443 } else {
444 the_trace->trace_file_->MarkUnchecked(); // Do not trigger guard.
445 }
446 if (the_trace->trace_file_->Close() != 0) {
447 PLOG(ERROR) << "Could not close trace file.";
448 }
Andreas Gampe4303ba92014-11-06 01:00:46 -0800449 }
Mathieu Chartier4f55e222015-09-04 13:26:21 -0700450 delete the_trace;
Andreas Gampe4303ba92014-11-06 01:00:46 -0800451 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800452 }
Mathieu Chartier9ef78b52014-09-25 17:03:12 -0700453 if (stop_alloc_counting) {
454 // Can be racy since SetStatsEnabled is not guarded by any locks.
Mathieu Chartier02e5f162015-03-11 09:54:22 -0700455 runtime->SetStatsEnabled(false);
Jeff Hao0abc72e2013-08-13 13:45:14 -0700456 }
jeffhao2692b572011-12-16 15:42:28 -0800457}
458
Andreas Gampe40da2862015-02-27 12:49:04 -0800459void Trace::Abort() {
460 // Do not write anything anymore.
461 StopTracing(false, false);
462}
463
464void Trace::Stop() {
465 // Finish writing.
466 StopTracing(true, true);
467}
468
jeffhaob5e81852012-03-12 11:15:45 -0700469void Trace::Shutdown() {
Jeff Hao64caa7d2013-08-29 11:18:01 -0700470 if (GetMethodTracingMode() != kTracingInactive) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800471 Stop();
jeffhaob5e81852012-03-12 11:15:45 -0700472 }
jeffhaob5e81852012-03-12 11:15:45 -0700473}
474
Andreas Gampe40da2862015-02-27 12:49:04 -0800475void Trace::Pause() {
476 bool stop_alloc_counting = false;
477 Runtime* runtime = Runtime::Current();
478 Trace* the_trace = nullptr;
479
Mathieu Chartieraa516822015-10-02 15:53:37 -0700480 Thread* const self = Thread::Current();
Andreas Gampe40da2862015-02-27 12:49:04 -0800481 pthread_t sampling_pthread = 0U;
482 {
Mathieu Chartieraa516822015-10-02 15:53:37 -0700483 MutexLock mu(self, *Locks::trace_lock_);
Andreas Gampe40da2862015-02-27 12:49:04 -0800484 if (the_trace_ == nullptr) {
485 LOG(ERROR) << "Trace pause requested, but no trace currently running";
486 return;
487 } else {
488 the_trace = the_trace_;
489 sampling_pthread = sampling_pthread_;
490 }
491 }
492
493 if (sampling_pthread != 0U) {
494 {
Mathieu Chartieraa516822015-10-02 15:53:37 -0700495 MutexLock mu(self, *Locks::trace_lock_);
Andreas Gampe40da2862015-02-27 12:49:04 -0800496 the_trace_ = nullptr;
497 }
498 CHECK_PTHREAD_CALL(pthread_join, (sampling_pthread, nullptr), "sampling thread shutdown");
499 sampling_pthread_ = 0U;
500 {
Mathieu Chartieraa516822015-10-02 15:53:37 -0700501 MutexLock mu(self, *Locks::trace_lock_);
Andreas Gampe40da2862015-02-27 12:49:04 -0800502 the_trace_ = the_trace;
503 }
504 }
505
506 if (the_trace != nullptr) {
Mathieu Chartieraa516822015-10-02 15:53:37 -0700507 gc::ScopedGCCriticalSection gcs(self,
508 gc::kGcCauseInstrumentation,
509 gc::kCollectorTypeInstrumentation);
Mathieu Chartier4f55e222015-09-04 13:26:21 -0700510 ScopedSuspendAll ssa(__FUNCTION__);
Andreas Gampe40da2862015-02-27 12:49:04 -0800511 stop_alloc_counting = (the_trace->flags_ & Trace::kTraceCountAllocs) != 0;
512
513 if (the_trace->trace_mode_ == TraceMode::kSampling) {
Mathieu Chartieraa516822015-10-02 15:53:37 -0700514 MutexLock mu(self, *Locks::thread_list_lock_);
Andreas Gampe40da2862015-02-27 12:49:04 -0800515 runtime->GetThreadList()->ForEach(ClearThreadStackTraceAndClockBase, nullptr);
516 } else {
Sebastien Hertz0462c4c2015-04-01 16:34:17 +0200517 runtime->GetInstrumentation()->DisableMethodTracing(kTracerInstrumentationKey);
Mathieu Chartier4f55e222015-09-04 13:26:21 -0700518 runtime->GetInstrumentation()->RemoveListener(
519 the_trace,
520 instrumentation::Instrumentation::kMethodEntered |
521 instrumentation::Instrumentation::kMethodExited |
522 instrumentation::Instrumentation::kMethodUnwind);
Andreas Gampe40da2862015-02-27 12:49:04 -0800523 }
Andreas Gampe40da2862015-02-27 12:49:04 -0800524 }
525
526 if (stop_alloc_counting) {
527 // Can be racy since SetStatsEnabled is not guarded by any locks.
528 Runtime::Current()->SetStatsEnabled(false);
529 }
530}
531
532void Trace::Resume() {
533 Thread* self = Thread::Current();
534 Trace* the_trace;
535 {
536 MutexLock mu(self, *Locks::trace_lock_);
537 if (the_trace_ == nullptr) {
538 LOG(ERROR) << "No trace to resume (or sampling mode), ignoring this request";
539 return;
540 }
541 the_trace = the_trace_;
542 }
543
544 Runtime* runtime = Runtime::Current();
545
546 // Enable count of allocs if specified in the flags.
547 bool enable_stats = (the_trace->flags_ && kTraceCountAllocs) != 0;
548
Mathieu Chartier4f55e222015-09-04 13:26:21 -0700549 {
Mathieu Chartieraa516822015-10-02 15:53:37 -0700550 gc::ScopedGCCriticalSection gcs(self,
551 gc::kGcCauseInstrumentation,
552 gc::kCollectorTypeInstrumentation);
Mathieu Chartier4f55e222015-09-04 13:26:21 -0700553 ScopedSuspendAll ssa(__FUNCTION__);
Andreas Gampe40da2862015-02-27 12:49:04 -0800554
Mathieu Chartier4f55e222015-09-04 13:26:21 -0700555 // Reenable.
556 if (the_trace->trace_mode_ == TraceMode::kSampling) {
557 CHECK_PTHREAD_CALL(pthread_create, (&sampling_pthread_, nullptr, &RunSamplingThread,
558 reinterpret_cast<void*>(the_trace->interval_us_)), "Sampling profiler thread");
559 } else {
560 runtime->GetInstrumentation()->AddListener(the_trace,
561 instrumentation::Instrumentation::kMethodEntered |
562 instrumentation::Instrumentation::kMethodExited |
563 instrumentation::Instrumentation::kMethodUnwind);
564 // TODO: In full-PIC mode, we don't need to fully deopt.
565 runtime->GetInstrumentation()->EnableMethodTracing(kTracerInstrumentationKey);
566 }
Andreas Gampe40da2862015-02-27 12:49:04 -0800567 }
568
Andreas Gampe40da2862015-02-27 12:49:04 -0800569 // Can't call this when holding the mutator lock.
570 if (enable_stats) {
571 runtime->SetStatsEnabled(true);
572 }
573}
574
Jeff Hao64caa7d2013-08-29 11:18:01 -0700575TracingMode Trace::GetMethodTracingMode() {
Ian Rogers62d6c772013-02-27 08:32:07 -0800576 MutexLock mu(Thread::Current(), *Locks::trace_lock_);
Andreas Gampe40da2862015-02-27 12:49:04 -0800577 if (the_trace_ == nullptr) {
Jeff Hao64caa7d2013-08-29 11:18:01 -0700578 return kTracingInactive;
Jeff Hao64caa7d2013-08-29 11:18:01 -0700579 } else {
Andreas Gampe7e7e0f42015-03-29 15:26:23 -0700580 switch (the_trace_->trace_mode_) {
581 case TraceMode::kSampling:
582 return kSampleProfilingActive;
583 case TraceMode::kMethodTracing:
584 return kMethodTracingActive;
585 }
586 LOG(FATAL) << "Unreachable";
587 UNREACHABLE();
Jeff Hao64caa7d2013-08-29 11:18:01 -0700588 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800589}
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800590
Andreas Gampee34a42c2015-04-25 14:44:29 -0700591static constexpr size_t kMinBufSize = 18U; // Trace header is up to 18B.
Andreas Gampe40da2862015-02-27 12:49:04 -0800592
Andreas Gampee34a42c2015-04-25 14:44:29 -0700593Trace::Trace(File* trace_file, const char* trace_name, size_t buffer_size, int flags,
Andreas Gampe40da2862015-02-27 12:49:04 -0800594 TraceOutputMode output_mode, TraceMode trace_mode)
595 : trace_file_(trace_file),
Andreas Gampee34a42c2015-04-25 14:44:29 -0700596 buf_(new uint8_t[std::max(kMinBufSize, buffer_size)]()),
Andreas Gampe40da2862015-02-27 12:49:04 -0800597 flags_(flags), trace_output_mode_(output_mode), trace_mode_(trace_mode),
598 clock_source_(default_clock_source_),
Andreas Gampee34a42c2015-04-25 14:44:29 -0700599 buffer_size_(std::max(kMinBufSize, buffer_size)),
Andreas Gampe40da2862015-02-27 12:49:04 -0800600 start_time_(MicroTime()), clock_overhead_ns_(GetClockOverheadNanoSeconds()), cur_offset_(0),
Mathieu Chartier4d64cd42015-06-02 16:38:29 -0700601 overflow_(false), interval_us_(0), streaming_lock_(nullptr),
Andreas Gampe7526d782015-06-22 22:53:45 -0700602 unique_methods_lock_(new Mutex("unique methods lock", kTracingUniqueMethodsLock)) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800603 uint16_t trace_version = GetTraceVersion(clock_source_);
Andreas Gampe40da2862015-02-27 12:49:04 -0800604 if (output_mode == TraceOutputMode::kStreaming) {
605 trace_version |= 0xF0U;
606 }
607 // Set up the beginning of the trace.
jeffhao2692b572011-12-16 15:42:28 -0800608 memset(buf_.get(), 0, kTraceHeaderLength);
609 Append4LE(buf_.get(), kTraceMagicValue);
Ian Rogers62d6c772013-02-27 08:32:07 -0800610 Append2LE(buf_.get() + 4, trace_version);
jeffhao2692b572011-12-16 15:42:28 -0800611 Append2LE(buf_.get() + 6, kTraceHeaderLength);
612 Append8LE(buf_.get() + 8, start_time_);
Ian Rogers62d6c772013-02-27 08:32:07 -0800613 if (trace_version >= kTraceVersionDualClock) {
614 uint16_t record_size = GetRecordSize(clock_source_);
615 Append2LE(buf_.get() + 16, record_size);
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800616 }
Andreas Gampee34a42c2015-04-25 14:44:29 -0700617 static_assert(18 <= kMinBufSize, "Minimum buffer size not large enough for trace header");
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800618
jeffhao2692b572011-12-16 15:42:28 -0800619 // Update current offset.
Ian Rogers8ab25ef2014-07-09 18:00:50 -0700620 cur_offset_.StoreRelaxed(kTraceHeaderLength);
Andreas Gampe40da2862015-02-27 12:49:04 -0800621
622 if (output_mode == TraceOutputMode::kStreaming) {
623 streaming_file_name_ = trace_name;
Andreas Gampe7526d782015-06-22 22:53:45 -0700624 streaming_lock_ = new Mutex("tracing lock", LockLevel::kTracingStreamingLock);
Andreas Gampe40da2862015-02-27 12:49:04 -0800625 seen_threads_.reset(new ThreadIDBitSet());
626 }
627}
628
629Trace::~Trace() {
630 delete streaming_lock_;
Andreas Gampe7526d782015-06-22 22:53:45 -0700631 delete unique_methods_lock_;
Ian Rogers62d6c772013-02-27 08:32:07 -0800632}
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800633
Mathieu Chartiere401d142015-04-22 13:56:20 -0700634static uint64_t ReadBytes(uint8_t* buf, size_t bytes) {
635 uint64_t ret = 0;
636 for (size_t i = 0; i < bytes; ++i) {
637 ret |= static_cast<uint64_t>(buf[i]) << (i * 8);
638 }
639 return ret;
640}
641
Mathieu Chartier4d64cd42015-06-02 16:38:29 -0700642void Trace::DumpBuf(uint8_t* buf, size_t buf_size, TraceClockSource clock_source) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800643 uint8_t* ptr = buf + kTraceHeaderLength;
644 uint8_t* end = buf + buf_size;
645
646 while (ptr < end) {
Mathieu Chartier4d64cd42015-06-02 16:38:29 -0700647 uint32_t tmid = ReadBytes(ptr + 2, sizeof(tmid));
648 ArtMethod* method = DecodeTraceMethod(tmid);
Ian Rogers62d6c772013-02-27 08:32:07 -0800649 TraceAction action = DecodeTraceAction(tmid);
David Sehr709b0702016-10-13 09:12:37 -0700650 LOG(INFO) << ArtMethod::PrettyMethod(method) << " " << static_cast<int>(action);
Ian Rogers62d6c772013-02-27 08:32:07 -0800651 ptr += GetRecordSize(clock_source);
652 }
jeffhaoe343b762011-12-05 16:36:44 -0800653}
654
Andreas Gampe40da2862015-02-27 12:49:04 -0800655void Trace::FinishTracing() {
656 size_t final_offset = 0;
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800657
Mathieu Chartiere401d142015-04-22 13:56:20 -0700658 std::set<ArtMethod*> visited_methods;
Andreas Gampe40da2862015-02-27 12:49:04 -0800659 if (trace_output_mode_ == TraceOutputMode::kStreaming) {
Andreas Gampe40da2862015-02-27 12:49:04 -0800660 // Clean up.
Mathieu Chartier4d64cd42015-06-02 16:38:29 -0700661 STLDeleteValues(&seen_methods_);
Andreas Gampe40da2862015-02-27 12:49:04 -0800662 } else {
663 final_offset = cur_offset_.LoadRelaxed();
664 GetVisitedMethods(final_offset, &visited_methods);
665 }
666
667 // Compute elapsed time.
668 uint64_t elapsed = MicroTime() - start_time_;
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800669
670 std::ostringstream os;
671
672 os << StringPrintf("%cversion\n", kTraceTokenChar);
Ian Rogers62d6c772013-02-27 08:32:07 -0800673 os << StringPrintf("%d\n", GetTraceVersion(clock_source_));
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800674 os << StringPrintf("data-file-overflow=%s\n", overflow_ ? "true" : "false");
675 if (UseThreadCpuClock()) {
676 if (UseWallClock()) {
677 os << StringPrintf("clock=dual\n");
678 } else {
679 os << StringPrintf("clock=thread-cpu\n");
680 }
681 } else {
682 os << StringPrintf("clock=wall\n");
683 }
Ian Rogersef7d42f2014-01-06 12:55:46 -0800684 os << StringPrintf("elapsed-time-usec=%" PRIu64 "\n", elapsed);
Andreas Gampe40da2862015-02-27 12:49:04 -0800685 if (trace_output_mode_ != TraceOutputMode::kStreaming) {
686 size_t num_records = (final_offset - kTraceHeaderLength) / GetRecordSize(clock_source_);
687 os << StringPrintf("num-method-calls=%zd\n", num_records);
688 }
Jeff Haoc5d824a2014-07-28 18:35:38 -0700689 os << StringPrintf("clock-call-overhead-nsec=%d\n", clock_overhead_ns_);
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800690 os << StringPrintf("vm=art\n");
John Reck0624a272015-03-26 15:47:54 -0700691 os << StringPrintf("pid=%d\n", getpid());
jeffhao0791adc2012-04-04 11:14:32 -0700692 if ((flags_ & kTraceCountAllocs) != 0) {
693 os << StringPrintf("alloc-count=%d\n", Runtime::Current()->GetStat(KIND_ALLOCATED_OBJECTS));
694 os << StringPrintf("alloc-size=%d\n", Runtime::Current()->GetStat(KIND_ALLOCATED_BYTES));
695 os << StringPrintf("gc-count=%d\n", Runtime::Current()->GetStat(KIND_GC_INVOCATIONS));
696 }
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800697 os << StringPrintf("%cthreads\n", kTraceTokenChar);
698 DumpThreadList(os);
699 os << StringPrintf("%cmethods\n", kTraceTokenChar);
Ian Rogers62d6c772013-02-27 08:32:07 -0800700 DumpMethodList(os, visited_methods);
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800701 os << StringPrintf("%cend\n", kTraceTokenChar);
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800702 std::string header(os.str());
Andreas Gampe40da2862015-02-27 12:49:04 -0800703
704 if (trace_output_mode_ == TraceOutputMode::kStreaming) {
Shukang Zhou8a5ab912017-01-20 11:40:16 -0800705 MutexLock mu(Thread::Current(), *streaming_lock_); // To serialize writing.
706 // Write a special token to mark the end of trace records and the start of
707 // trace summary.
708 uint8_t buf[7];
709 Append2LE(buf, 0);
710 buf[2] = kOpTraceSummary;
711 Append4LE(buf + 3, static_cast<uint32_t>(header.length()));
712 WriteToBuf(buf, sizeof(buf));
713 // Write the trace summary. The summary is identical to the file header when
714 // the output mode is not streaming (except for methods).
715 WriteToBuf(reinterpret_cast<const uint8_t*>(header.c_str()), header.length());
716 // Flush the buffer, which may include some trace records before the summary.
717 FlushBuf();
Andreas Gampe40da2862015-02-27 12:49:04 -0800718 } else {
719 if (trace_file_.get() == nullptr) {
720 iovec iov[2];
721 iov[0].iov_base = reinterpret_cast<void*>(const_cast<char*>(header.c_str()));
722 iov[0].iov_len = header.length();
723 iov[1].iov_base = buf_.get();
724 iov[1].iov_len = final_offset;
725 Dbg::DdmSendChunkV(CHUNK_TYPE("MPSE"), iov, 2);
726 const bool kDumpTraceInfo = false;
727 if (kDumpTraceInfo) {
728 LOG(INFO) << "Trace sent:\n" << header;
729 DumpBuf(buf_.get(), final_offset, clock_source_);
730 }
731 } else {
732 if (!trace_file_->WriteFully(header.c_str(), header.length()) ||
733 !trace_file_->WriteFully(buf_.get(), final_offset)) {
734 std::string detail(StringPrintf("Trace data write failed: %s", strerror(errno)));
735 PLOG(ERROR) << detail;
736 ThrowRuntimeException("%s", detail.c_str());
737 }
738 }
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800739 }
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800740}
741
Roland Levillain4b8f1ec2015-08-26 18:34:03 +0100742void Trace::DexPcMoved(Thread* thread ATTRIBUTE_UNUSED,
Alex Lightd7661582017-05-01 13:48:16 -0700743 Handle<mirror::Object> this_object ATTRIBUTE_UNUSED,
Roland Levillain4b8f1ec2015-08-26 18:34:03 +0100744 ArtMethod* method,
745 uint32_t new_dex_pc) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800746 // We're not recorded to listen to this kind of event, so complain.
David Sehr709b0702016-10-13 09:12:37 -0700747 LOG(ERROR) << "Unexpected dex PC event in tracing " << ArtMethod::PrettyMethod(method)
748 << " " << new_dex_pc;
Andreas Gampec8ccf682014-09-29 20:07:43 -0700749}
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800750
Roland Levillain4b8f1ec2015-08-26 18:34:03 +0100751void Trace::FieldRead(Thread* thread ATTRIBUTE_UNUSED,
Alex Lightd7661582017-05-01 13:48:16 -0700752 Handle<mirror::Object> this_object ATTRIBUTE_UNUSED,
Roland Levillain4b8f1ec2015-08-26 18:34:03 +0100753 ArtMethod* method,
754 uint32_t dex_pc,
755 ArtField* field ATTRIBUTE_UNUSED)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700756 REQUIRES_SHARED(Locks::mutator_lock_) {
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200757 // We're not recorded to listen to this kind of event, so complain.
David Sehr709b0702016-10-13 09:12:37 -0700758 LOG(ERROR) << "Unexpected field read event in tracing " << ArtMethod::PrettyMethod(method)
759 << " " << dex_pc;
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200760}
761
Roland Levillain4b8f1ec2015-08-26 18:34:03 +0100762void Trace::FieldWritten(Thread* thread ATTRIBUTE_UNUSED,
Alex Lightd7661582017-05-01 13:48:16 -0700763 Handle<mirror::Object> this_object ATTRIBUTE_UNUSED,
Roland Levillain4b8f1ec2015-08-26 18:34:03 +0100764 ArtMethod* method,
765 uint32_t dex_pc,
766 ArtField* field ATTRIBUTE_UNUSED,
767 const JValue& field_value ATTRIBUTE_UNUSED)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700768 REQUIRES_SHARED(Locks::mutator_lock_) {
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200769 // We're not recorded to listen to this kind of event, so complain.
David Sehr709b0702016-10-13 09:12:37 -0700770 LOG(ERROR) << "Unexpected field write event in tracing " << ArtMethod::PrettyMethod(method)
771 << " " << dex_pc;
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200772}
773
Alex Lightd7661582017-05-01 13:48:16 -0700774void Trace::MethodEntered(Thread* thread,
775 Handle<mirror::Object> this_object ATTRIBUTE_UNUSED,
776 ArtMethod* method,
777 uint32_t dex_pc ATTRIBUTE_UNUSED) {
Jeff Haoc1ff4b72013-08-19 11:33:10 -0700778 uint32_t thread_clock_diff = 0;
779 uint32_t wall_clock_diff = 0;
780 ReadClocks(thread, &thread_clock_diff, &wall_clock_diff);
781 LogMethodTraceEvent(thread, method, instrumentation::Instrumentation::kMethodEntered,
782 thread_clock_diff, wall_clock_diff);
Ian Rogers62d6c772013-02-27 08:32:07 -0800783}
784
Alex Lightd7661582017-05-01 13:48:16 -0700785void Trace::MethodExited(Thread* thread,
786 Handle<mirror::Object> this_object ATTRIBUTE_UNUSED,
787 ArtMethod* method,
788 uint32_t dex_pc ATTRIBUTE_UNUSED,
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700789 const JValue& return_value ATTRIBUTE_UNUSED) {
Jeff Haoc1ff4b72013-08-19 11:33:10 -0700790 uint32_t thread_clock_diff = 0;
791 uint32_t wall_clock_diff = 0;
792 ReadClocks(thread, &thread_clock_diff, &wall_clock_diff);
793 LogMethodTraceEvent(thread, method, instrumentation::Instrumentation::kMethodExited,
794 thread_clock_diff, wall_clock_diff);
Ian Rogers62d6c772013-02-27 08:32:07 -0800795}
796
Alex Lightd7661582017-05-01 13:48:16 -0700797void Trace::MethodUnwind(Thread* thread,
798 Handle<mirror::Object> this_object ATTRIBUTE_UNUSED,
799 ArtMethod* method,
800 uint32_t dex_pc ATTRIBUTE_UNUSED) {
Jeff Haoc1ff4b72013-08-19 11:33:10 -0700801 uint32_t thread_clock_diff = 0;
802 uint32_t wall_clock_diff = 0;
803 ReadClocks(thread, &thread_clock_diff, &wall_clock_diff);
804 LogMethodTraceEvent(thread, method, instrumentation::Instrumentation::kMethodUnwind,
805 thread_clock_diff, wall_clock_diff);
Ian Rogers62d6c772013-02-27 08:32:07 -0800806}
807
Roland Levillain4b8f1ec2015-08-26 18:34:03 +0100808void Trace::ExceptionCaught(Thread* thread ATTRIBUTE_UNUSED,
Alex Lightd7661582017-05-01 13:48:16 -0700809 Handle<mirror::Throwable> exception_object ATTRIBUTE_UNUSED)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700810 REQUIRES_SHARED(Locks::mutator_lock_) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800811 LOG(ERROR) << "Unexpected exception caught event in tracing";
812}
813
Nicolas Geoffray81f0f952016-01-20 16:25:19 +0000814void Trace::Branch(Thread* /*thread*/, ArtMethod* method,
815 uint32_t /*dex_pc*/, int32_t /*dex_pc_offset*/)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700816 REQUIRES_SHARED(Locks::mutator_lock_) {
David Sehr709b0702016-10-13 09:12:37 -0700817 LOG(ERROR) << "Unexpected branch event in tracing" << ArtMethod::PrettyMethod(method);
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800818}
819
Nicolas Geoffray5550ca82015-08-21 18:38:30 +0100820void Trace::InvokeVirtualOrInterface(Thread*,
Alex Lightd7661582017-05-01 13:48:16 -0700821 Handle<mirror::Object>,
Nicolas Geoffray5550ca82015-08-21 18:38:30 +0100822 ArtMethod* method,
823 uint32_t dex_pc,
824 ArtMethod*) {
David Sehr709b0702016-10-13 09:12:37 -0700825 LOG(ERROR) << "Unexpected invoke event in tracing" << ArtMethod::PrettyMethod(method)
Nicolas Geoffray5550ca82015-08-21 18:38:30 +0100826 << " " << dex_pc;
827}
828
Jeff Haoc1ff4b72013-08-19 11:33:10 -0700829void Trace::ReadClocks(Thread* thread, uint32_t* thread_clock_diff, uint32_t* wall_clock_diff) {
830 if (UseThreadCpuClock()) {
831 uint64_t clock_base = thread->GetTraceClockBase();
832 if (UNLIKELY(clock_base == 0)) {
833 // First event, record the base time in the map.
834 uint64_t time = thread->GetCpuMicroTime();
835 thread->SetTraceClockBase(time);
836 } else {
837 *thread_clock_diff = thread->GetCpuMicroTime() - clock_base;
838 }
839 }
840 if (UseWallClock()) {
841 *wall_clock_diff = MicroTime() - start_time_;
842 }
843}
844
Mathieu Chartiere401d142015-04-22 13:56:20 -0700845bool Trace::RegisterMethod(ArtMethod* method) {
Andreas Gampe40da2862015-02-27 12:49:04 -0800846 mirror::DexCache* dex_cache = method->GetDexCache();
Andreas Gampe7526d782015-06-22 22:53:45 -0700847 const DexFile* dex_file = dex_cache->GetDexFile();
Andreas Gampe7526d782015-06-22 22:53:45 -0700848 if (seen_methods_.find(dex_file) == seen_methods_.end()) {
849 seen_methods_.insert(std::make_pair(dex_file, new DexIndexBitSet()));
Andreas Gampe40da2862015-02-27 12:49:04 -0800850 }
Andreas Gampe7526d782015-06-22 22:53:45 -0700851 DexIndexBitSet* bit_set = seen_methods_.find(dex_file)->second;
Andreas Gampe40da2862015-02-27 12:49:04 -0800852 if (!(*bit_set)[method->GetDexMethodIndex()]) {
853 bit_set->set(method->GetDexMethodIndex());
854 return true;
855 }
856 return false;
857}
858
859bool Trace::RegisterThread(Thread* thread) {
860 pid_t tid = thread->GetTid();
861 CHECK_LT(0U, static_cast<uint32_t>(tid));
Alex Lighta344f6a2016-07-20 10:43:39 -0700862 CHECK_LT(static_cast<uint32_t>(tid), kMaxThreadIdNumber);
Andreas Gampe40da2862015-02-27 12:49:04 -0800863
864 if (!(*seen_threads_)[tid]) {
865 seen_threads_->set(tid);
866 return true;
867 }
868 return false;
869}
870
Mathieu Chartier4d64cd42015-06-02 16:38:29 -0700871std::string Trace::GetMethodLine(ArtMethod* method) {
Andreas Gampe542451c2016-07-26 09:02:02 -0700872 method = method->GetInterfaceMethodIfProxy(kRuntimePointerSize);
Alex Light0f7e8f52016-07-19 11:21:32 -0700873 return StringPrintf("%#x\t%s\t%s\t%s\t%s\n", (EncodeTraceMethod(method) << TraceActionBits),
Andreas Gampe40da2862015-02-27 12:49:04 -0800874 PrettyDescriptor(method->GetDeclaringClassDescriptor()).c_str(), method->GetName(),
875 method->GetSignature().ToString().c_str(), method->GetDeclaringClassSourceFile());
876}
877
878void Trace::WriteToBuf(const uint8_t* src, size_t src_size) {
879 int32_t old_offset = cur_offset_.LoadRelaxed();
880 int32_t new_offset = old_offset + static_cast<int32_t>(src_size);
Andreas Gampee34a42c2015-04-25 14:44:29 -0700881 if (dchecked_integral_cast<size_t>(new_offset) > buffer_size_) {
Andreas Gampe40da2862015-02-27 12:49:04 -0800882 // Flush buffer.
883 if (!trace_file_->WriteFully(buf_.get(), old_offset)) {
884 PLOG(WARNING) << "Failed streaming a tracing event.";
885 }
Andreas Gampee34a42c2015-04-25 14:44:29 -0700886
887 // Check whether the data is too large for the buffer, then write immediately.
888 if (src_size >= buffer_size_) {
889 if (!trace_file_->WriteFully(src, src_size)) {
890 PLOG(WARNING) << "Failed streaming a tracing event.";
891 }
892 cur_offset_.StoreRelease(0); // Buffer is empty now.
893 return;
894 }
895
Andreas Gampe40da2862015-02-27 12:49:04 -0800896 old_offset = 0;
897 new_offset = static_cast<int32_t>(src_size);
898 }
899 cur_offset_.StoreRelease(new_offset);
900 // Fill in data.
901 memcpy(buf_.get() + old_offset, src, src_size);
902}
903
Shukang Zhou8a5ab912017-01-20 11:40:16 -0800904void Trace::FlushBuf() {
905 int32_t offset = cur_offset_.LoadRelaxed();
906 if (!trace_file_->WriteFully(buf_.get(), offset)) {
907 PLOG(WARNING) << "Failed flush the remaining data in streaming.";
908 }
909 cur_offset_.StoreRelease(0);
910}
911
Mathieu Chartiere401d142015-04-22 13:56:20 -0700912void Trace::LogMethodTraceEvent(Thread* thread, ArtMethod* method,
Jeff Haoc1ff4b72013-08-19 11:33:10 -0700913 instrumentation::Instrumentation::InstrumentationEvent event,
914 uint32_t thread_clock_diff, uint32_t wall_clock_diff) {
Alex Light4ba388a2017-01-27 10:26:49 -0800915 // Ensure we always use the non-obsolete version of the method so that entry/exit events have the
916 // same pointer value.
917 method = method->GetNonObsoleteMethod();
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800918 // Advance cur_offset_ atomically.
919 int32_t new_offset;
Andreas Gampe40da2862015-02-27 12:49:04 -0800920 int32_t old_offset = 0;
921
922 // We do a busy loop here trying to acquire the next offset.
923 if (trace_output_mode_ != TraceOutputMode::kStreaming) {
924 do {
925 old_offset = cur_offset_.LoadRelaxed();
926 new_offset = old_offset + GetRecordSize(clock_source_);
Andreas Gampee34a42c2015-04-25 14:44:29 -0700927 if (static_cast<size_t>(new_offset) > buffer_size_) {
Andreas Gampe40da2862015-02-27 12:49:04 -0800928 overflow_ = true;
929 return;
930 }
931 } while (!cur_offset_.CompareExchangeWeakSequentiallyConsistent(old_offset, new_offset));
932 }
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800933
Ian Rogers62d6c772013-02-27 08:32:07 -0800934 TraceAction action = kTraceMethodEnter;
935 switch (event) {
936 case instrumentation::Instrumentation::kMethodEntered:
937 action = kTraceMethodEnter;
938 break;
939 case instrumentation::Instrumentation::kMethodExited:
940 action = kTraceMethodExit;
941 break;
942 case instrumentation::Instrumentation::kMethodUnwind:
943 action = kTraceUnroll;
944 break;
945 default:
946 UNIMPLEMENTED(FATAL) << "Unexpected event: " << event;
947 }
948
Mathieu Chartier4d64cd42015-06-02 16:38:29 -0700949 uint32_t method_value = EncodeTraceMethodAndAction(method, action);
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800950
951 // Write data
Andreas Gampe40da2862015-02-27 12:49:04 -0800952 uint8_t* ptr;
Mathieu Chartier4d64cd42015-06-02 16:38:29 -0700953 static constexpr size_t kPacketSize = 14U; // The maximum size of data in a packet.
Andreas Gampe40da2862015-02-27 12:49:04 -0800954 uint8_t stack_buf[kPacketSize]; // Space to store a packet when in streaming mode.
955 if (trace_output_mode_ == TraceOutputMode::kStreaming) {
956 ptr = stack_buf;
957 } else {
958 ptr = buf_.get() + old_offset;
959 }
960
Ian Rogers62d6c772013-02-27 08:32:07 -0800961 Append2LE(ptr, thread->GetTid());
Mathieu Chartier4d64cd42015-06-02 16:38:29 -0700962 Append4LE(ptr + 2, method_value);
963 ptr += 6;
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800964
965 if (UseThreadCpuClock()) {
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800966 Append4LE(ptr, thread_clock_diff);
967 ptr += 4;
968 }
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800969 if (UseWallClock()) {
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800970 Append4LE(ptr, wall_clock_diff);
971 }
Mathieu Chartier4d64cd42015-06-02 16:38:29 -0700972 static_assert(kPacketSize == 2 + 4 + 4 + 4, "Packet size incorrect.");
Andreas Gampe40da2862015-02-27 12:49:04 -0800973
974 if (trace_output_mode_ == TraceOutputMode::kStreaming) {
975 MutexLock mu(Thread::Current(), *streaming_lock_); // To serialize writing.
976 if (RegisterMethod(method)) {
977 // Write a special block with the name.
978 std::string method_line(GetMethodLine(method));
979 uint8_t buf2[5];
980 Append2LE(buf2, 0);
981 buf2[2] = kOpNewMethod;
982 Append2LE(buf2 + 3, static_cast<uint16_t>(method_line.length()));
983 WriteToBuf(buf2, sizeof(buf2));
984 WriteToBuf(reinterpret_cast<const uint8_t*>(method_line.c_str()), method_line.length());
985 }
986 if (RegisterThread(thread)) {
987 // It might be better to postpone this. Threads might not have received names...
988 std::string thread_name;
989 thread->GetThreadName(thread_name);
990 uint8_t buf2[7];
991 Append2LE(buf2, 0);
992 buf2[2] = kOpNewThread;
993 Append2LE(buf2 + 3, static_cast<uint16_t>(thread->GetTid()));
994 Append2LE(buf2 + 5, static_cast<uint16_t>(thread_name.length()));
995 WriteToBuf(buf2, sizeof(buf2));
996 WriteToBuf(reinterpret_cast<const uint8_t*>(thread_name.c_str()), thread_name.length());
997 }
998 WriteToBuf(stack_buf, sizeof(stack_buf));
999 }
jeffhaoa9ef3fd2011-12-13 18:33:43 -08001000}
1001
Ian Rogers62d6c772013-02-27 08:32:07 -08001002void Trace::GetVisitedMethods(size_t buf_size,
Mathieu Chartiere401d142015-04-22 13:56:20 -07001003 std::set<ArtMethod*>* visited_methods) {
jeffhao2692b572011-12-16 15:42:28 -08001004 uint8_t* ptr = buf_.get() + kTraceHeaderLength;
Ian Rogers62d6c772013-02-27 08:32:07 -08001005 uint8_t* end = buf_.get() + buf_size;
jeffhaoa9ef3fd2011-12-13 18:33:43 -08001006
1007 while (ptr < end) {
Mathieu Chartier4d64cd42015-06-02 16:38:29 -07001008 uint32_t tmid = ReadBytes(ptr + 2, sizeof(tmid));
1009 ArtMethod* method = DecodeTraceMethod(tmid);
Ian Rogers62d6c772013-02-27 08:32:07 -08001010 visited_methods->insert(method);
1011 ptr += GetRecordSize(clock_source_);
jeffhaoa9ef3fd2011-12-13 18:33:43 -08001012 }
1013}
1014
Mathieu Chartiere401d142015-04-22 13:56:20 -07001015void Trace::DumpMethodList(std::ostream& os, const std::set<ArtMethod*>& visited_methods) {
Mathieu Chartier02e25112013-08-14 16:14:24 -07001016 for (const auto& method : visited_methods) {
Andreas Gampe40da2862015-02-27 12:49:04 -08001017 os << GetMethodLine(method);
jeffhaoa9ef3fd2011-12-13 18:33:43 -08001018 }
jeffhaoa9ef3fd2011-12-13 18:33:43 -08001019}
1020
1021static void DumpThread(Thread* t, void* arg) {
Elliott Hughesffb465f2012-03-01 18:46:05 -08001022 std::ostream& os = *reinterpret_cast<std::ostream*>(arg);
1023 std::string name;
1024 t->GetThreadName(name);
1025 os << t->GetTid() << "\t" << name << "\n";
jeffhaoa9ef3fd2011-12-13 18:33:43 -08001026}
1027
1028void Trace::DumpThreadList(std::ostream& os) {
Ian Rogers81d425b2012-09-27 16:03:43 -07001029 Thread* self = Thread::Current();
Jeff Haoe094b872014-10-14 13:12:01 -07001030 for (auto it : exited_threads_) {
1031 os << it.first << "\t" << it.second << "\n";
1032 }
Ian Rogers81d425b2012-09-27 16:03:43 -07001033 Locks::thread_list_lock_->AssertNotHeld(self);
1034 MutexLock mu(self, *Locks::thread_list_lock_);
jeffhaoa9ef3fd2011-12-13 18:33:43 -08001035 Runtime::Current()->GetThreadList()->ForEach(DumpThread, &os);
jeffhaoe343b762011-12-05 16:36:44 -08001036}
1037
Jeff Haoe094b872014-10-14 13:12:01 -07001038void Trace::StoreExitingThreadInfo(Thread* thread) {
1039 MutexLock mu(thread, *Locks::trace_lock_);
1040 if (the_trace_ != nullptr) {
1041 std::string name;
1042 thread->GetThreadName(name);
Andreas Gampea1785c52014-11-25 20:40:08 -08001043 // The same thread/tid may be used multiple times. As SafeMap::Put does not allow to override
1044 // a previous mapping, use SafeMap::Overwrite.
1045 the_trace_->exited_threads_.Overwrite(thread->GetTid(), name);
Jeff Haoe094b872014-10-14 13:12:01 -07001046 }
1047}
1048
Andreas Gampe40da2862015-02-27 12:49:04 -08001049Trace::TraceOutputMode Trace::GetOutputMode() {
1050 MutexLock mu(Thread::Current(), *Locks::trace_lock_);
1051 CHECK(the_trace_ != nullptr) << "Trace output mode requested, but no trace currently running";
1052 return the_trace_->trace_output_mode_;
1053}
1054
1055Trace::TraceMode Trace::GetMode() {
1056 MutexLock mu(Thread::Current(), *Locks::trace_lock_);
1057 CHECK(the_trace_ != nullptr) << "Trace mode requested, but no trace currently running";
1058 return the_trace_->trace_mode_;
1059}
1060
Andreas Gampee34a42c2015-04-25 14:44:29 -07001061size_t Trace::GetBufferSize() {
1062 MutexLock mu(Thread::Current(), *Locks::trace_lock_);
1063 CHECK(the_trace_ != nullptr) << "Trace mode requested, but no trace currently running";
1064 return the_trace_->buffer_size_;
1065}
1066
Mathieu Chartier7778b882015-10-05 16:41:10 -07001067bool Trace::IsTracingEnabled() {
1068 MutexLock mu(Thread::Current(), *Locks::trace_lock_);
1069 return the_trace_ != nullptr;
1070}
1071
jeffhaoe343b762011-12-05 16:36:44 -08001072} // namespace art