blob: 9d9360e9cb4d11238d0e01d372dcee38dc5cb0c6 [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"
Mathieu Chartieraa516822015-10-02 15:53:37 -070035#include "gc/scoped_gc_critical_section.h"
jeffhao725a9572012-11-13 18:20:12 -080036#include "instrumentation.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070037#include "mirror/class-inl.h"
Andreas Gampe40da2862015-02-27 12:49:04 -080038#include "mirror/dex_cache-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080039#include "mirror/object_array-inl.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070040#include "mirror/object-inl.h"
jeffhaoa9ef3fd2011-12-13 18:33:43 -080041#include "os.h"
Mathieu Chartier0795f232016-09-27 18:43:30 -070042#include "scoped_thread_state_change-inl.h"
Jeff Hao0abc72e2013-08-13 13:45:14 -070043#include "ScopedLocalRef.h"
jeffhaoe343b762011-12-05 16:36:44 -080044#include "thread.h"
Ian Rogers57b86d42012-03-27 16:05:41 -070045#include "thread_list.h"
Vladimir Marko80afd022015-05-19 18:08:00 +010046#include "utils.h"
Ian Rogers166db042013-07-26 12:05:57 -070047#include "entrypoints/quick/quick_entrypoints.h"
jeffhao2692b572011-12-16 15:42:28 -080048
49namespace art {
50
Andreas Gampe46ee31b2016-12-14 10:11:49 -080051using android::base::StringPrintf;
52
Mathieu Chartier4d64cd42015-06-02 16:38:29 -070053static constexpr size_t TraceActionBits = MinimumBitsToStore(
54 static_cast<size_t>(kTraceMethodActionMask));
Andreas Gampe40da2862015-02-27 12:49:04 -080055static constexpr uint8_t kOpNewMethod = 1U;
56static constexpr uint8_t kOpNewThread = 2U;
57
Jeff Hao0abc72e2013-08-13 13:45:14 -070058class BuildStackTraceVisitor : public StackVisitor {
59 public:
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +010060 explicit BuildStackTraceVisitor(Thread* thread)
61 : StackVisitor(thread, nullptr, StackVisitor::StackWalkKind::kIncludeInlinedFrames),
62 method_trace_(Trace::AllocStackTrace()) {}
Jeff Hao0abc72e2013-08-13 13:45:14 -070063
Andreas Gampebdf7f1c2016-08-30 16:38:47 -070064 bool VisitFrame() REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartiere401d142015-04-22 13:56:20 -070065 ArtMethod* m = GetMethod();
Jeff Hao0abc72e2013-08-13 13:45:14 -070066 // Ignore runtime frames (in particular callee save).
67 if (!m->IsRuntimeMethod()) {
68 method_trace_->push_back(m);
69 }
70 return true;
71 }
72
73 // Returns a stack trace where the topmost frame corresponds with the first element of the vector.
Mathieu Chartiere401d142015-04-22 13:56:20 -070074 std::vector<ArtMethod*>* GetStackTrace() const {
Jeff Hao0abc72e2013-08-13 13:45:14 -070075 return method_trace_;
76 }
77
78 private:
Mathieu Chartiere401d142015-04-22 13:56:20 -070079 std::vector<ArtMethod*>* const method_trace_;
Sebastien Hertz26f72862015-09-15 09:52:07 +020080
81 DISALLOW_COPY_AND_ASSIGN(BuildStackTraceVisitor);
Jeff Hao0abc72e2013-08-13 13:45:14 -070082};
83
jeffhaoa9ef3fd2011-12-13 18:33:43 -080084static const char kTraceTokenChar = '*';
85static const uint16_t kTraceHeaderLength = 32;
86static const uint32_t kTraceMagicValue = 0x574f4c53;
87static const uint16_t kTraceVersionSingleClock = 2;
88static const uint16_t kTraceVersionDualClock = 3;
Mathieu Chartier4d64cd42015-06-02 16:38:29 -070089static const uint16_t kTraceRecordSizeSingleClock = 10; // using v2
90static const uint16_t kTraceRecordSizeDualClock = 14; // using v3 with two timestamps
jeffhaoa9ef3fd2011-12-13 18:33:43 -080091
Ian Rogerse63db272014-07-15 15:36:11 -070092TraceClockSource Trace::default_clock_source_ = kDefaultTraceClockSource;
Elliott Hughese119a362012-05-22 17:37:06 -070093
Andreas Gampe40da2862015-02-27 12:49:04 -080094Trace* volatile Trace::the_trace_ = nullptr;
Jeff Hao0abc72e2013-08-13 13:45:14 -070095pthread_t Trace::sampling_pthread_ = 0U;
Mathieu Chartiere401d142015-04-22 13:56:20 -070096std::unique_ptr<std::vector<ArtMethod*>> Trace::temp_stack_trace_;
Ian Rogers62d6c772013-02-27 08:32:07 -080097
Sebastien Hertz0462c4c2015-04-01 16:34:17 +020098// The key identifying the tracer to update instrumentation.
99static constexpr const char* kTracerInstrumentationKey = "Tracer";
100
Ian Rogers62d6c772013-02-27 08:32:07 -0800101static TraceAction DecodeTraceAction(uint32_t tmid) {
102 return static_cast<TraceAction>(tmid & kTraceMethodActionMask);
103}
104
Mathieu Chartier4d64cd42015-06-02 16:38:29 -0700105ArtMethod* Trace::DecodeTraceMethod(uint32_t tmid) {
106 MutexLock mu(Thread::Current(), *unique_methods_lock_);
107 return unique_methods_[tmid >> TraceActionBits];
108}
109
110uint32_t Trace::EncodeTraceMethod(ArtMethod* method) {
111 MutexLock mu(Thread::Current(), *unique_methods_lock_);
112 uint32_t idx;
113 auto it = art_method_id_map_.find(method);
114 if (it != art_method_id_map_.end()) {
115 idx = it->second;
116 } else {
117 unique_methods_.push_back(method);
118 idx = unique_methods_.size() - 1;
119 art_method_id_map_.emplace(method, idx);
120 }
121 DCHECK_LT(idx, unique_methods_.size());
122 DCHECK_EQ(unique_methods_[idx], method);
123 return idx;
124}
125
126uint32_t Trace::EncodeTraceMethodAndAction(ArtMethod* method, TraceAction action) {
127 uint32_t tmid = (EncodeTraceMethod(method) << TraceActionBits) | action;
128 DCHECK_EQ(method, DecodeTraceMethod(tmid));
Ian Rogers62d6c772013-02-27 08:32:07 -0800129 return tmid;
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800130}
131
Mathieu Chartiere401d142015-04-22 13:56:20 -0700132std::vector<ArtMethod*>* Trace::AllocStackTrace() {
Mathieu Chartier4d64cd42015-06-02 16:38:29 -0700133 return (temp_stack_trace_.get() != nullptr) ? temp_stack_trace_.release() :
134 new std::vector<ArtMethod*>();
Jeff Hao5ce4b172013-08-16 16:27:18 -0700135}
136
Mathieu Chartiere401d142015-04-22 13:56:20 -0700137void Trace::FreeStackTrace(std::vector<ArtMethod*>* stack_trace) {
Jeff Hao5ce4b172013-08-16 16:27:18 -0700138 stack_trace->clear();
139 temp_stack_trace_.reset(stack_trace);
140}
141
Ian Rogerse63db272014-07-15 15:36:11 -0700142void Trace::SetDefaultClockSource(TraceClockSource clock_source) {
Elliott Hughes0a18df82015-01-09 15:16:16 -0800143#if defined(__linux__)
Ian Rogers62d6c772013-02-27 08:32:07 -0800144 default_clock_source_ = clock_source;
145#else
Igor Murashkinaaebaa02015-01-26 10:55:53 -0800146 if (clock_source != TraceClockSource::kWall) {
Jeff Hao5ce4b172013-08-16 16:27:18 -0700147 LOG(WARNING) << "Ignoring tracing request to use CPU time.";
Ian Rogers62d6c772013-02-27 08:32:07 -0800148 }
149#endif
150}
151
Ian Rogerse63db272014-07-15 15:36:11 -0700152static uint16_t GetTraceVersion(TraceClockSource clock_source) {
Igor Murashkinaaebaa02015-01-26 10:55:53 -0800153 return (clock_source == TraceClockSource::kDual) ? kTraceVersionDualClock
Ian Rogers62d6c772013-02-27 08:32:07 -0800154 : kTraceVersionSingleClock;
155}
156
Ian Rogerse63db272014-07-15 15:36:11 -0700157static uint16_t GetRecordSize(TraceClockSource clock_source) {
Igor Murashkinaaebaa02015-01-26 10:55:53 -0800158 return (clock_source == TraceClockSource::kDual) ? kTraceRecordSizeDualClock
Ian Rogers62d6c772013-02-27 08:32:07 -0800159 : kTraceRecordSizeSingleClock;
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800160}
161
Elliott Hughese119a362012-05-22 17:37:06 -0700162bool Trace::UseThreadCpuClock() {
Igor Murashkinaaebaa02015-01-26 10:55:53 -0800163 return (clock_source_ == TraceClockSource::kThreadCpu) ||
164 (clock_source_ == TraceClockSource::kDual);
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800165}
166
Elliott Hughese119a362012-05-22 17:37:06 -0700167bool Trace::UseWallClock() {
Igor Murashkinaaebaa02015-01-26 10:55:53 -0800168 return (clock_source_ == TraceClockSource::kWall) ||
169 (clock_source_ == TraceClockSource::kDual);
Elliott Hughese119a362012-05-22 17:37:06 -0700170}
171
Jeff Haoc5d824a2014-07-28 18:35:38 -0700172void Trace::MeasureClockOverhead() {
173 if (UseThreadCpuClock()) {
Jeff Hao57dac6e2013-08-15 16:36:24 -0700174 Thread::Current()->GetCpuMicroTime();
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800175 }
Jeff Haoc5d824a2014-07-28 18:35:38 -0700176 if (UseWallClock()) {
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800177 MicroTime();
178 }
179}
180
Jeff Hao5ce4b172013-08-16 16:27:18 -0700181// Compute an average time taken to measure clocks.
Jeff Haoc5d824a2014-07-28 18:35:38 -0700182uint32_t Trace::GetClockOverheadNanoSeconds() {
Jeff Hao57dac6e2013-08-15 16:36:24 -0700183 Thread* self = Thread::Current();
184 uint64_t start = self->GetCpuMicroTime();
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800185
186 for (int i = 4000; i > 0; i--) {
Jeff Haoc5d824a2014-07-28 18:35:38 -0700187 MeasureClockOverhead();
188 MeasureClockOverhead();
189 MeasureClockOverhead();
190 MeasureClockOverhead();
191 MeasureClockOverhead();
192 MeasureClockOverhead();
193 MeasureClockOverhead();
194 MeasureClockOverhead();
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800195 }
196
Jeff Hao5ce4b172013-08-16 16:27:18 -0700197 uint64_t elapsed_us = self->GetCpuMicroTime() - start;
198 return static_cast<uint32_t>(elapsed_us / 32);
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800199}
200
Elliott Hughesffb465f2012-03-01 18:46:05 -0800201// TODO: put this somewhere with the big-endian equivalent used by JDWP.
202static void Append2LE(uint8_t* buf, uint16_t val) {
Jeff Hao5ce4b172013-08-16 16:27:18 -0700203 *buf++ = static_cast<uint8_t>(val);
204 *buf++ = static_cast<uint8_t>(val >> 8);
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800205}
206
Elliott Hughesffb465f2012-03-01 18:46:05 -0800207// TODO: put this somewhere with the big-endian equivalent used by JDWP.
208static void Append4LE(uint8_t* buf, uint32_t val) {
Jeff Hao5ce4b172013-08-16 16:27:18 -0700209 *buf++ = static_cast<uint8_t>(val);
210 *buf++ = static_cast<uint8_t>(val >> 8);
211 *buf++ = static_cast<uint8_t>(val >> 16);
212 *buf++ = static_cast<uint8_t>(val >> 24);
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800213}
214
Elliott Hughesffb465f2012-03-01 18:46:05 -0800215// TODO: put this somewhere with the big-endian equivalent used by JDWP.
216static void Append8LE(uint8_t* buf, uint64_t val) {
Jeff Hao5ce4b172013-08-16 16:27:18 -0700217 *buf++ = static_cast<uint8_t>(val);
218 *buf++ = static_cast<uint8_t>(val >> 8);
219 *buf++ = static_cast<uint8_t>(val >> 16);
220 *buf++ = static_cast<uint8_t>(val >> 24);
221 *buf++ = static_cast<uint8_t>(val >> 32);
222 *buf++ = static_cast<uint8_t>(val >> 40);
223 *buf++ = static_cast<uint8_t>(val >> 48);
224 *buf++ = static_cast<uint8_t>(val >> 56);
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800225}
226
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700227static void GetSample(Thread* thread, void* arg) REQUIRES_SHARED(Locks::mutator_lock_) {
Jeff Hao0abc72e2013-08-13 13:45:14 -0700228 BuildStackTraceVisitor build_trace_visitor(thread);
229 build_trace_visitor.WalkStack();
Mathieu Chartiere401d142015-04-22 13:56:20 -0700230 std::vector<ArtMethod*>* stack_trace = build_trace_visitor.GetStackTrace();
Jeff Hao0abc72e2013-08-13 13:45:14 -0700231 Trace* the_trace = reinterpret_cast<Trace*>(arg);
232 the_trace->CompareAndUpdateStackTrace(thread, stack_trace);
233}
234
Andreas Gampeca714582015-04-03 19:41:34 -0700235static void ClearThreadStackTraceAndClockBase(Thread* thread, void* arg ATTRIBUTE_UNUSED) {
Jeff Hao5ce4b172013-08-16 16:27:18 -0700236 thread->SetTraceClockBase(0);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700237 std::vector<ArtMethod*>* stack_trace = thread->GetStackTraceSample();
Andreas Gampe40da2862015-02-27 12:49:04 -0800238 thread->SetStackTraceSample(nullptr);
Jeff Hao5ce4b172013-08-16 16:27:18 -0700239 delete stack_trace;
240}
241
Jeff Hao0abc72e2013-08-13 13:45:14 -0700242void Trace::CompareAndUpdateStackTrace(Thread* thread,
Mathieu Chartiere401d142015-04-22 13:56:20 -0700243 std::vector<ArtMethod*>* stack_trace) {
Jeff Hao0abc72e2013-08-13 13:45:14 -0700244 CHECK_EQ(pthread_self(), sampling_pthread_);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700245 std::vector<ArtMethod*>* old_stack_trace = thread->GetStackTraceSample();
Jeff Hao5ce4b172013-08-16 16:27:18 -0700246 // Update the thread's stack trace sample.
247 thread->SetStackTraceSample(stack_trace);
Jeff Haoc1ff4b72013-08-19 11:33:10 -0700248 // Read timer clocks to use for all events in this trace.
249 uint32_t thread_clock_diff = 0;
250 uint32_t wall_clock_diff = 0;
251 ReadClocks(thread, &thread_clock_diff, &wall_clock_diff);
Andreas Gampe40da2862015-02-27 12:49:04 -0800252 if (old_stack_trace == nullptr) {
Jeff Hao5ce4b172013-08-16 16:27:18 -0700253 // If there's no previous stack trace sample for this thread, log an entry event for all
Jeff Hao0abc72e2013-08-13 13:45:14 -0700254 // methods in the trace.
Mathieu Chartier4d64cd42015-06-02 16:38:29 -0700255 for (auto rit = stack_trace->rbegin(); rit != stack_trace->rend(); ++rit) {
Jeff Haoc1ff4b72013-08-19 11:33:10 -0700256 LogMethodTraceEvent(thread, *rit, instrumentation::Instrumentation::kMethodEntered,
257 thread_clock_diff, wall_clock_diff);
Jeff Hao0abc72e2013-08-13 13:45:14 -0700258 }
259 } else {
260 // If there's a previous stack trace for this thread, diff the traces and emit entry and exit
261 // events accordingly.
Mathieu Chartier4d64cd42015-06-02 16:38:29 -0700262 auto old_rit = old_stack_trace->rbegin();
263 auto rit = stack_trace->rbegin();
Jeff Hao0abc72e2013-08-13 13:45:14 -0700264 // Iterate bottom-up over both traces until there's a difference between them.
265 while (old_rit != old_stack_trace->rend() && rit != stack_trace->rend() && *old_rit == *rit) {
266 old_rit++;
267 rit++;
268 }
269 // Iterate top-down over the old trace until the point where they differ, emitting exit events.
Mathieu Chartier4d64cd42015-06-02 16:38:29 -0700270 for (auto old_it = old_stack_trace->begin(); old_it != old_rit.base(); ++old_it) {
Jeff Haoc1ff4b72013-08-19 11:33:10 -0700271 LogMethodTraceEvent(thread, *old_it, instrumentation::Instrumentation::kMethodExited,
272 thread_clock_diff, wall_clock_diff);
Jeff Hao0abc72e2013-08-13 13:45:14 -0700273 }
274 // Iterate bottom-up over the new trace from the point where they differ, emitting entry events.
275 for (; rit != stack_trace->rend(); ++rit) {
Jeff Haoc1ff4b72013-08-19 11:33:10 -0700276 LogMethodTraceEvent(thread, *rit, instrumentation::Instrumentation::kMethodEntered,
277 thread_clock_diff, wall_clock_diff);
Jeff Hao0abc72e2013-08-13 13:45:14 -0700278 }
Jeff Hao5ce4b172013-08-16 16:27:18 -0700279 FreeStackTrace(old_stack_trace);
Jeff Hao0abc72e2013-08-13 13:45:14 -0700280 }
281}
282
283void* Trace::RunSamplingThread(void* arg) {
284 Runtime* runtime = Runtime::Current();
Ian Rogersef7d42f2014-01-06 12:55:46 -0800285 intptr_t interval_us = reinterpret_cast<intptr_t>(arg);
Jeff Hao4044bda2014-01-06 15:50:45 -0800286 CHECK_GE(interval_us, 0);
Jeff Hao0abc72e2013-08-13 13:45:14 -0700287 CHECK(runtime->AttachCurrentThread("Sampling Profiler", true, runtime->GetSystemThreadGroup(),
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800288 !runtime->IsAotCompiler()));
Jeff Hao0abc72e2013-08-13 13:45:14 -0700289
290 while (true) {
Jeff Hao23009dc2013-08-22 15:36:42 -0700291 usleep(interval_us);
Mathieu Chartier32ce2ad2016-03-04 14:58:03 -0800292 ScopedTrace trace("Profile sampling");
Jeff Hao0abc72e2013-08-13 13:45:14 -0700293 Thread* self = Thread::Current();
294 Trace* the_trace;
295 {
296 MutexLock mu(self, *Locks::trace_lock_);
297 the_trace = the_trace_;
Andreas Gampe40da2862015-02-27 12:49:04 -0800298 if (the_trace == nullptr) {
Jeff Hao0abc72e2013-08-13 13:45:14 -0700299 break;
300 }
301 }
Jeff Hao0abc72e2013-08-13 13:45:14 -0700302 {
Mathieu Chartier4f55e222015-09-04 13:26:21 -0700303 ScopedSuspendAll ssa(__FUNCTION__);
Jeff Hao0abc72e2013-08-13 13:45:14 -0700304 MutexLock mu(self, *Locks::thread_list_lock_);
305 runtime->GetThreadList()->ForEach(GetSample, the_trace);
306 }
Jeff Hao0abc72e2013-08-13 13:45:14 -0700307 }
308
309 runtime->DetachCurrentThread();
Andreas Gampe40da2862015-02-27 12:49:04 -0800310 return nullptr;
Jeff Hao0abc72e2013-08-13 13:45:14 -0700311}
312
Andreas Gampee34a42c2015-04-25 14:44:29 -0700313void Trace::Start(const char* trace_filename, int trace_fd, size_t buffer_size, int flags,
Andreas Gampe7e7e0f42015-03-29 15:26:23 -0700314 TraceOutputMode output_mode, TraceMode trace_mode, int interval_us) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800315 Thread* self = Thread::Current();
316 {
317 MutexLock mu(self, *Locks::trace_lock_);
Andreas Gampe40da2862015-02-27 12:49:04 -0800318 if (the_trace_ != nullptr) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800319 LOG(ERROR) << "Trace already in progress, ignoring this request";
320 return;
321 }
jeffhaoe343b762011-12-05 16:36:44 -0800322 }
Jeff Haod063d912014-09-08 09:38:18 -0700323
324 // Check interval if sampling is enabled
Andreas Gampe7e7e0f42015-03-29 15:26:23 -0700325 if (trace_mode == TraceMode::kSampling && interval_us <= 0) {
Jeff Haod063d912014-09-08 09:38:18 -0700326 LOG(ERROR) << "Invalid sampling interval: " << interval_us;
327 ScopedObjectAccess soa(self);
328 ThrowRuntimeException("Invalid sampling interval: %d", interval_us);
329 return;
330 }
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800331
jeffhao2692b572011-12-16 15:42:28 -0800332 // Open trace file if not going directly to ddms.
Ian Rogers700a4022014-05-19 16:49:03 -0700333 std::unique_ptr<File> trace_file;
Andreas Gampe7e7e0f42015-03-29 15:26:23 -0700334 if (output_mode != TraceOutputMode::kDDMS) {
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800335 if (trace_fd < 0) {
Calin Juravlef83e7332015-11-04 16:16:47 +0000336 trace_file.reset(OS::CreateEmptyFileWriteOnly(trace_filename));
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800337 } else {
Ian Rogers62d6c772013-02-27 08:32:07 -0800338 trace_file.reset(new File(trace_fd, "tracefile"));
Elliott Hughes76160052012-12-12 16:31:20 -0800339 trace_file->DisableAutoClose();
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800340 }
Andreas Gampe40da2862015-02-27 12:49:04 -0800341 if (trace_file.get() == nullptr) {
jeffhaob5e81852012-03-12 11:15:45 -0700342 PLOG(ERROR) << "Unable to open trace file '" << trace_filename << "'";
Ian Rogers62d6c772013-02-27 08:32:07 -0800343 ScopedObjectAccess soa(self);
344 ThrowRuntimeException("Unable to open trace file '%s'", trace_filename);
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800345 return;
346 }
347 }
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800348
Jeff Haod063d912014-09-08 09:38:18 -0700349 Runtime* runtime = Runtime::Current();
Mathieu Chartier9ef78b52014-09-25 17:03:12 -0700350
351 // Enable count of allocs if specified in the flags.
352 bool enable_stats = false;
353
jeffhao2692b572011-12-16 15:42:28 -0800354 // Create Trace object.
Ian Rogers62d6c772013-02-27 08:32:07 -0800355 {
Mathieu Chartieraa516822015-10-02 15:53:37 -0700356 // Required since EnableMethodTracing calls ConfigureStubs which visits class linker classes.
357 gc::ScopedGCCriticalSection gcs(self,
358 gc::kGcCauseInstrumentation,
359 gc::kCollectorTypeInstrumentation);
Mathieu Chartier4f55e222015-09-04 13:26:21 -0700360 ScopedSuspendAll ssa(__FUNCTION__);
Ian Rogers62d6c772013-02-27 08:32:07 -0800361 MutexLock mu(self, *Locks::trace_lock_);
Andreas Gampe40da2862015-02-27 12:49:04 -0800362 if (the_trace_ != nullptr) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800363 LOG(ERROR) << "Trace already in progress, ignoring this request";
364 } else {
Mathieu Chartier9ef78b52014-09-25 17:03:12 -0700365 enable_stats = (flags && kTraceCountAllocs) != 0;
Andreas Gampe40da2862015-02-27 12:49:04 -0800366 the_trace_ = new Trace(trace_file.release(), trace_filename, buffer_size, flags, output_mode,
367 trace_mode);
Andreas Gampe7e7e0f42015-03-29 15:26:23 -0700368 if (trace_mode == TraceMode::kSampling) {
Andreas Gampe40da2862015-02-27 12:49:04 -0800369 CHECK_PTHREAD_CALL(pthread_create, (&sampling_pthread_, nullptr, &RunSamplingThread,
Jeff Hao23009dc2013-08-22 15:36:42 -0700370 reinterpret_cast<void*>(interval_us)),
371 "Sampling profiler thread");
Andreas Gampe40da2862015-02-27 12:49:04 -0800372 the_trace_->interval_us_ = interval_us;
Jeff Hao0abc72e2013-08-13 13:45:14 -0700373 } else {
374 runtime->GetInstrumentation()->AddListener(the_trace_,
375 instrumentation::Instrumentation::kMethodEntered |
376 instrumentation::Instrumentation::kMethodExited |
377 instrumentation::Instrumentation::kMethodUnwind);
Andreas Gampe40da2862015-02-27 12:49:04 -0800378 // TODO: In full-PIC mode, we don't need to fully deopt.
Sebastien Hertz0462c4c2015-04-01 16:34:17 +0200379 runtime->GetInstrumentation()->EnableMethodTracing(kTracerInstrumentationKey);
Jeff Hao0abc72e2013-08-13 13:45:14 -0700380 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800381 }
jeffhao0791adc2012-04-04 11:14:32 -0700382 }
Jeff Haod063d912014-09-08 09:38:18 -0700383
Mathieu Chartier9ef78b52014-09-25 17:03:12 -0700384 // Can't call this when holding the mutator lock.
385 if (enable_stats) {
386 runtime->SetStatsEnabled(true);
387 }
jeffhao2692b572011-12-16 15:42:28 -0800388}
389
Andreas Gampe40da2862015-02-27 12:49:04 -0800390void Trace::StopTracing(bool finish_tracing, bool flush_file) {
Mathieu Chartier9ef78b52014-09-25 17:03:12 -0700391 bool stop_alloc_counting = false;
Mathieu Chartier02e5f162015-03-11 09:54:22 -0700392 Runtime* const runtime = Runtime::Current();
393 Trace* the_trace = nullptr;
Hiroshi Yamauchi9ea02c42016-03-03 15:09:27 -0800394 Thread* const self = Thread::Current();
Jeff Hao0abc72e2013-08-13 13:45:14 -0700395 pthread_t sampling_pthread = 0U;
Ian Rogers62d6c772013-02-27 08:32:07 -0800396 {
Hiroshi Yamauchi9ea02c42016-03-03 15:09:27 -0800397 MutexLock mu(self, *Locks::trace_lock_);
Andreas Gampe40da2862015-02-27 12:49:04 -0800398 if (the_trace_ == nullptr) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800399 LOG(ERROR) << "Trace stop requested, but no trace currently running";
400 } else {
401 the_trace = the_trace_;
Andreas Gampe40da2862015-02-27 12:49:04 -0800402 the_trace_ = nullptr;
Jeff Hao0abc72e2013-08-13 13:45:14 -0700403 sampling_pthread = sampling_pthread_;
Ian Rogers62d6c772013-02-27 08:32:07 -0800404 }
jeffhao2692b572011-12-16 15:42:28 -0800405 }
Mathieu Chartier02e5f162015-03-11 09:54:22 -0700406 // Make sure that we join before we delete the trace since we don't want to have
407 // the sampling thread access a stale pointer. This finishes since the sampling thread exits when
408 // the_trace_ is null.
409 if (sampling_pthread != 0U) {
Andreas Gampe40da2862015-02-27 12:49:04 -0800410 CHECK_PTHREAD_CALL(pthread_join, (sampling_pthread, nullptr), "sampling thread shutdown");
Mathieu Chartier02e5f162015-03-11 09:54:22 -0700411 sampling_pthread_ = 0U;
412 }
Andreas Gampe40da2862015-02-27 12:49:04 -0800413
Mathieu Chartier4f55e222015-09-04 13:26:21 -0700414 {
Hiroshi Yamauchi9ea02c42016-03-03 15:09:27 -0800415 gc::ScopedGCCriticalSection gcs(self,
416 gc::kGcCauseInstrumentation,
417 gc::kCollectorTypeInstrumentation);
Mathieu Chartier4f55e222015-09-04 13:26:21 -0700418 ScopedSuspendAll ssa(__FUNCTION__);
419 if (the_trace != nullptr) {
420 stop_alloc_counting = (the_trace->flags_ & Trace::kTraceCountAllocs) != 0;
421 if (finish_tracing) {
422 the_trace->FinishTracing();
423 }
Jeff Hao0abc72e2013-08-13 13:45:14 -0700424
Mathieu Chartier4f55e222015-09-04 13:26:21 -0700425 if (the_trace->trace_mode_ == TraceMode::kSampling) {
Hiroshi Yamauchi9ea02c42016-03-03 15:09:27 -0800426 MutexLock mu(self, *Locks::thread_list_lock_);
Mathieu Chartier4f55e222015-09-04 13:26:21 -0700427 runtime->GetThreadList()->ForEach(ClearThreadStackTraceAndClockBase, nullptr);
Andreas Gampe40da2862015-02-27 12:49:04 -0800428 } else {
Mathieu Chartier4f55e222015-09-04 13:26:21 -0700429 runtime->GetInstrumentation()->DisableMethodTracing(kTracerInstrumentationKey);
430 runtime->GetInstrumentation()->RemoveListener(
431 the_trace, instrumentation::Instrumentation::kMethodEntered |
432 instrumentation::Instrumentation::kMethodExited |
433 instrumentation::Instrumentation::kMethodUnwind);
Andreas Gampe4303ba92014-11-06 01:00:46 -0800434 }
Mathieu Chartier4f55e222015-09-04 13:26:21 -0700435 if (the_trace->trace_file_.get() != nullptr) {
436 // Do not try to erase, so flush and close explicitly.
437 if (flush_file) {
438 if (the_trace->trace_file_->Flush() != 0) {
439 PLOG(WARNING) << "Could not flush trace file.";
440 }
441 } else {
442 the_trace->trace_file_->MarkUnchecked(); // Do not trigger guard.
443 }
444 if (the_trace->trace_file_->Close() != 0) {
445 PLOG(ERROR) << "Could not close trace file.";
446 }
Andreas Gampe4303ba92014-11-06 01:00:46 -0800447 }
Mathieu Chartier4f55e222015-09-04 13:26:21 -0700448 delete the_trace;
Andreas Gampe4303ba92014-11-06 01:00:46 -0800449 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800450 }
Mathieu Chartier9ef78b52014-09-25 17:03:12 -0700451 if (stop_alloc_counting) {
452 // Can be racy since SetStatsEnabled is not guarded by any locks.
Mathieu Chartier02e5f162015-03-11 09:54:22 -0700453 runtime->SetStatsEnabled(false);
Jeff Hao0abc72e2013-08-13 13:45:14 -0700454 }
jeffhao2692b572011-12-16 15:42:28 -0800455}
456
Andreas Gampe40da2862015-02-27 12:49:04 -0800457void Trace::Abort() {
458 // Do not write anything anymore.
459 StopTracing(false, false);
460}
461
462void Trace::Stop() {
463 // Finish writing.
464 StopTracing(true, true);
465}
466
jeffhaob5e81852012-03-12 11:15:45 -0700467void Trace::Shutdown() {
Jeff Hao64caa7d2013-08-29 11:18:01 -0700468 if (GetMethodTracingMode() != kTracingInactive) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800469 Stop();
jeffhaob5e81852012-03-12 11:15:45 -0700470 }
jeffhaob5e81852012-03-12 11:15:45 -0700471}
472
Andreas Gampe40da2862015-02-27 12:49:04 -0800473void Trace::Pause() {
474 bool stop_alloc_counting = false;
475 Runtime* runtime = Runtime::Current();
476 Trace* the_trace = nullptr;
477
Mathieu Chartieraa516822015-10-02 15:53:37 -0700478 Thread* const self = Thread::Current();
Andreas Gampe40da2862015-02-27 12:49:04 -0800479 pthread_t sampling_pthread = 0U;
480 {
Mathieu Chartieraa516822015-10-02 15:53:37 -0700481 MutexLock mu(self, *Locks::trace_lock_);
Andreas Gampe40da2862015-02-27 12:49:04 -0800482 if (the_trace_ == nullptr) {
483 LOG(ERROR) << "Trace pause requested, but no trace currently running";
484 return;
485 } else {
486 the_trace = the_trace_;
487 sampling_pthread = sampling_pthread_;
488 }
489 }
490
491 if (sampling_pthread != 0U) {
492 {
Mathieu Chartieraa516822015-10-02 15:53:37 -0700493 MutexLock mu(self, *Locks::trace_lock_);
Andreas Gampe40da2862015-02-27 12:49:04 -0800494 the_trace_ = nullptr;
495 }
496 CHECK_PTHREAD_CALL(pthread_join, (sampling_pthread, nullptr), "sampling thread shutdown");
497 sampling_pthread_ = 0U;
498 {
Mathieu Chartieraa516822015-10-02 15:53:37 -0700499 MutexLock mu(self, *Locks::trace_lock_);
Andreas Gampe40da2862015-02-27 12:49:04 -0800500 the_trace_ = the_trace;
501 }
502 }
503
504 if (the_trace != nullptr) {
Mathieu Chartieraa516822015-10-02 15:53:37 -0700505 gc::ScopedGCCriticalSection gcs(self,
506 gc::kGcCauseInstrumentation,
507 gc::kCollectorTypeInstrumentation);
Mathieu Chartier4f55e222015-09-04 13:26:21 -0700508 ScopedSuspendAll ssa(__FUNCTION__);
Andreas Gampe40da2862015-02-27 12:49:04 -0800509 stop_alloc_counting = (the_trace->flags_ & Trace::kTraceCountAllocs) != 0;
510
511 if (the_trace->trace_mode_ == TraceMode::kSampling) {
Mathieu Chartieraa516822015-10-02 15:53:37 -0700512 MutexLock mu(self, *Locks::thread_list_lock_);
Andreas Gampe40da2862015-02-27 12:49:04 -0800513 runtime->GetThreadList()->ForEach(ClearThreadStackTraceAndClockBase, nullptr);
514 } else {
Sebastien Hertz0462c4c2015-04-01 16:34:17 +0200515 runtime->GetInstrumentation()->DisableMethodTracing(kTracerInstrumentationKey);
Mathieu Chartier4f55e222015-09-04 13:26:21 -0700516 runtime->GetInstrumentation()->RemoveListener(
517 the_trace,
518 instrumentation::Instrumentation::kMethodEntered |
519 instrumentation::Instrumentation::kMethodExited |
520 instrumentation::Instrumentation::kMethodUnwind);
Andreas Gampe40da2862015-02-27 12:49:04 -0800521 }
Andreas Gampe40da2862015-02-27 12:49:04 -0800522 }
523
524 if (stop_alloc_counting) {
525 // Can be racy since SetStatsEnabled is not guarded by any locks.
526 Runtime::Current()->SetStatsEnabled(false);
527 }
528}
529
530void Trace::Resume() {
531 Thread* self = Thread::Current();
532 Trace* the_trace;
533 {
534 MutexLock mu(self, *Locks::trace_lock_);
535 if (the_trace_ == nullptr) {
536 LOG(ERROR) << "No trace to resume (or sampling mode), ignoring this request";
537 return;
538 }
539 the_trace = the_trace_;
540 }
541
542 Runtime* runtime = Runtime::Current();
543
544 // Enable count of allocs if specified in the flags.
545 bool enable_stats = (the_trace->flags_ && kTraceCountAllocs) != 0;
546
Mathieu Chartier4f55e222015-09-04 13:26:21 -0700547 {
Mathieu Chartieraa516822015-10-02 15:53:37 -0700548 gc::ScopedGCCriticalSection gcs(self,
549 gc::kGcCauseInstrumentation,
550 gc::kCollectorTypeInstrumentation);
Mathieu Chartier4f55e222015-09-04 13:26:21 -0700551 ScopedSuspendAll ssa(__FUNCTION__);
Andreas Gampe40da2862015-02-27 12:49:04 -0800552
Mathieu Chartier4f55e222015-09-04 13:26:21 -0700553 // Reenable.
554 if (the_trace->trace_mode_ == TraceMode::kSampling) {
555 CHECK_PTHREAD_CALL(pthread_create, (&sampling_pthread_, nullptr, &RunSamplingThread,
556 reinterpret_cast<void*>(the_trace->interval_us_)), "Sampling profiler thread");
557 } else {
558 runtime->GetInstrumentation()->AddListener(the_trace,
559 instrumentation::Instrumentation::kMethodEntered |
560 instrumentation::Instrumentation::kMethodExited |
561 instrumentation::Instrumentation::kMethodUnwind);
562 // TODO: In full-PIC mode, we don't need to fully deopt.
563 runtime->GetInstrumentation()->EnableMethodTracing(kTracerInstrumentationKey);
564 }
Andreas Gampe40da2862015-02-27 12:49:04 -0800565 }
566
Andreas Gampe40da2862015-02-27 12:49:04 -0800567 // Can't call this when holding the mutator lock.
568 if (enable_stats) {
569 runtime->SetStatsEnabled(true);
570 }
571}
572
Jeff Hao64caa7d2013-08-29 11:18:01 -0700573TracingMode Trace::GetMethodTracingMode() {
Ian Rogers62d6c772013-02-27 08:32:07 -0800574 MutexLock mu(Thread::Current(), *Locks::trace_lock_);
Andreas Gampe40da2862015-02-27 12:49:04 -0800575 if (the_trace_ == nullptr) {
Jeff Hao64caa7d2013-08-29 11:18:01 -0700576 return kTracingInactive;
Jeff Hao64caa7d2013-08-29 11:18:01 -0700577 } else {
Andreas Gampe7e7e0f42015-03-29 15:26:23 -0700578 switch (the_trace_->trace_mode_) {
579 case TraceMode::kSampling:
580 return kSampleProfilingActive;
581 case TraceMode::kMethodTracing:
582 return kMethodTracingActive;
583 }
584 LOG(FATAL) << "Unreachable";
585 UNREACHABLE();
Jeff Hao64caa7d2013-08-29 11:18:01 -0700586 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800587}
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800588
Andreas Gampee34a42c2015-04-25 14:44:29 -0700589static constexpr size_t kMinBufSize = 18U; // Trace header is up to 18B.
Andreas Gampe40da2862015-02-27 12:49:04 -0800590
Andreas Gampee34a42c2015-04-25 14:44:29 -0700591Trace::Trace(File* trace_file, const char* trace_name, size_t buffer_size, int flags,
Andreas Gampe40da2862015-02-27 12:49:04 -0800592 TraceOutputMode output_mode, TraceMode trace_mode)
593 : trace_file_(trace_file),
Andreas Gampee34a42c2015-04-25 14:44:29 -0700594 buf_(new uint8_t[std::max(kMinBufSize, buffer_size)]()),
Andreas Gampe40da2862015-02-27 12:49:04 -0800595 flags_(flags), trace_output_mode_(output_mode), trace_mode_(trace_mode),
596 clock_source_(default_clock_source_),
Andreas Gampee34a42c2015-04-25 14:44:29 -0700597 buffer_size_(std::max(kMinBufSize, buffer_size)),
Andreas Gampe40da2862015-02-27 12:49:04 -0800598 start_time_(MicroTime()), clock_overhead_ns_(GetClockOverheadNanoSeconds()), cur_offset_(0),
Mathieu Chartier4d64cd42015-06-02 16:38:29 -0700599 overflow_(false), interval_us_(0), streaming_lock_(nullptr),
Andreas Gampe7526d782015-06-22 22:53:45 -0700600 unique_methods_lock_(new Mutex("unique methods lock", kTracingUniqueMethodsLock)) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800601 uint16_t trace_version = GetTraceVersion(clock_source_);
Andreas Gampe40da2862015-02-27 12:49:04 -0800602 if (output_mode == TraceOutputMode::kStreaming) {
603 trace_version |= 0xF0U;
604 }
605 // Set up the beginning of the trace.
jeffhao2692b572011-12-16 15:42:28 -0800606 memset(buf_.get(), 0, kTraceHeaderLength);
607 Append4LE(buf_.get(), kTraceMagicValue);
Ian Rogers62d6c772013-02-27 08:32:07 -0800608 Append2LE(buf_.get() + 4, trace_version);
jeffhao2692b572011-12-16 15:42:28 -0800609 Append2LE(buf_.get() + 6, kTraceHeaderLength);
610 Append8LE(buf_.get() + 8, start_time_);
Ian Rogers62d6c772013-02-27 08:32:07 -0800611 if (trace_version >= kTraceVersionDualClock) {
612 uint16_t record_size = GetRecordSize(clock_source_);
613 Append2LE(buf_.get() + 16, record_size);
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800614 }
Andreas Gampee34a42c2015-04-25 14:44:29 -0700615 static_assert(18 <= kMinBufSize, "Minimum buffer size not large enough for trace header");
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800616
jeffhao2692b572011-12-16 15:42:28 -0800617 // Update current offset.
Ian Rogers8ab25ef2014-07-09 18:00:50 -0700618 cur_offset_.StoreRelaxed(kTraceHeaderLength);
Andreas Gampe40da2862015-02-27 12:49:04 -0800619
620 if (output_mode == TraceOutputMode::kStreaming) {
621 streaming_file_name_ = trace_name;
Andreas Gampe7526d782015-06-22 22:53:45 -0700622 streaming_lock_ = new Mutex("tracing lock", LockLevel::kTracingStreamingLock);
Andreas Gampe40da2862015-02-27 12:49:04 -0800623 seen_threads_.reset(new ThreadIDBitSet());
624 }
625}
626
627Trace::~Trace() {
628 delete streaming_lock_;
Andreas Gampe7526d782015-06-22 22:53:45 -0700629 delete unique_methods_lock_;
Ian Rogers62d6c772013-02-27 08:32:07 -0800630}
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800631
Mathieu Chartiere401d142015-04-22 13:56:20 -0700632static uint64_t ReadBytes(uint8_t* buf, size_t bytes) {
633 uint64_t ret = 0;
634 for (size_t i = 0; i < bytes; ++i) {
635 ret |= static_cast<uint64_t>(buf[i]) << (i * 8);
636 }
637 return ret;
638}
639
Mathieu Chartier4d64cd42015-06-02 16:38:29 -0700640void Trace::DumpBuf(uint8_t* buf, size_t buf_size, TraceClockSource clock_source) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800641 uint8_t* ptr = buf + kTraceHeaderLength;
642 uint8_t* end = buf + buf_size;
643
644 while (ptr < end) {
Mathieu Chartier4d64cd42015-06-02 16:38:29 -0700645 uint32_t tmid = ReadBytes(ptr + 2, sizeof(tmid));
646 ArtMethod* method = DecodeTraceMethod(tmid);
Ian Rogers62d6c772013-02-27 08:32:07 -0800647 TraceAction action = DecodeTraceAction(tmid);
David Sehr709b0702016-10-13 09:12:37 -0700648 LOG(INFO) << ArtMethod::PrettyMethod(method) << " " << static_cast<int>(action);
Ian Rogers62d6c772013-02-27 08:32:07 -0800649 ptr += GetRecordSize(clock_source);
650 }
jeffhaoe343b762011-12-05 16:36:44 -0800651}
652
Andreas Gampe40da2862015-02-27 12:49:04 -0800653void Trace::FinishTracing() {
654 size_t final_offset = 0;
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800655
Mathieu Chartiere401d142015-04-22 13:56:20 -0700656 std::set<ArtMethod*> visited_methods;
Andreas Gampe40da2862015-02-27 12:49:04 -0800657 if (trace_output_mode_ == TraceOutputMode::kStreaming) {
Andreas Gampe40da2862015-02-27 12:49:04 -0800658 // Clean up.
Mathieu Chartier4d64cd42015-06-02 16:38:29 -0700659 STLDeleteValues(&seen_methods_);
Andreas Gampe40da2862015-02-27 12:49:04 -0800660 } else {
661 final_offset = cur_offset_.LoadRelaxed();
662 GetVisitedMethods(final_offset, &visited_methods);
663 }
664
665 // Compute elapsed time.
666 uint64_t elapsed = MicroTime() - start_time_;
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800667
668 std::ostringstream os;
669
670 os << StringPrintf("%cversion\n", kTraceTokenChar);
Ian Rogers62d6c772013-02-27 08:32:07 -0800671 os << StringPrintf("%d\n", GetTraceVersion(clock_source_));
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800672 os << StringPrintf("data-file-overflow=%s\n", overflow_ ? "true" : "false");
673 if (UseThreadCpuClock()) {
674 if (UseWallClock()) {
675 os << StringPrintf("clock=dual\n");
676 } else {
677 os << StringPrintf("clock=thread-cpu\n");
678 }
679 } else {
680 os << StringPrintf("clock=wall\n");
681 }
Ian Rogersef7d42f2014-01-06 12:55:46 -0800682 os << StringPrintf("elapsed-time-usec=%" PRIu64 "\n", elapsed);
Andreas Gampe40da2862015-02-27 12:49:04 -0800683 if (trace_output_mode_ != TraceOutputMode::kStreaming) {
684 size_t num_records = (final_offset - kTraceHeaderLength) / GetRecordSize(clock_source_);
685 os << StringPrintf("num-method-calls=%zd\n", num_records);
686 }
Jeff Haoc5d824a2014-07-28 18:35:38 -0700687 os << StringPrintf("clock-call-overhead-nsec=%d\n", clock_overhead_ns_);
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800688 os << StringPrintf("vm=art\n");
John Reck0624a272015-03-26 15:47:54 -0700689 os << StringPrintf("pid=%d\n", getpid());
jeffhao0791adc2012-04-04 11:14:32 -0700690 if ((flags_ & kTraceCountAllocs) != 0) {
691 os << StringPrintf("alloc-count=%d\n", Runtime::Current()->GetStat(KIND_ALLOCATED_OBJECTS));
692 os << StringPrintf("alloc-size=%d\n", Runtime::Current()->GetStat(KIND_ALLOCATED_BYTES));
693 os << StringPrintf("gc-count=%d\n", Runtime::Current()->GetStat(KIND_GC_INVOCATIONS));
694 }
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800695 os << StringPrintf("%cthreads\n", kTraceTokenChar);
696 DumpThreadList(os);
697 os << StringPrintf("%cmethods\n", kTraceTokenChar);
Ian Rogers62d6c772013-02-27 08:32:07 -0800698 DumpMethodList(os, visited_methods);
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800699 os << StringPrintf("%cend\n", kTraceTokenChar);
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800700 std::string header(os.str());
Andreas Gampe40da2862015-02-27 12:49:04 -0800701
702 if (trace_output_mode_ == TraceOutputMode::kStreaming) {
Andreas Gampedf878922015-08-13 16:44:54 -0700703 File file(streaming_file_name_ + ".sec", O_CREAT | O_WRONLY, true);
704 if (!file.IsOpened()) {
Andreas Gampe40da2862015-02-27 12:49:04 -0800705 LOG(WARNING) << "Could not open secondary trace file!";
706 return;
Ian Rogers62d6c772013-02-27 08:32:07 -0800707 }
Andreas Gampe40da2862015-02-27 12:49:04 -0800708 if (!file.WriteFully(header.c_str(), header.length())) {
709 file.Erase();
Elliott Hughes7b9d9962012-04-20 18:48:18 -0700710 std::string detail(StringPrintf("Trace data write failed: %s", strerror(errno)));
711 PLOG(ERROR) << detail;
Ian Rogers62d6c772013-02-27 08:32:07 -0800712 ThrowRuntimeException("%s", detail.c_str());
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800713 }
Andreas Gampe40da2862015-02-27 12:49:04 -0800714 if (file.FlushCloseOrErase() != 0) {
715 PLOG(ERROR) << "Could not write secondary file";
716 }
717 } else {
718 if (trace_file_.get() == nullptr) {
719 iovec iov[2];
720 iov[0].iov_base = reinterpret_cast<void*>(const_cast<char*>(header.c_str()));
721 iov[0].iov_len = header.length();
722 iov[1].iov_base = buf_.get();
723 iov[1].iov_len = final_offset;
724 Dbg::DdmSendChunkV(CHUNK_TYPE("MPSE"), iov, 2);
725 const bool kDumpTraceInfo = false;
726 if (kDumpTraceInfo) {
727 LOG(INFO) << "Trace sent:\n" << header;
728 DumpBuf(buf_.get(), final_offset, clock_source_);
729 }
730 } else {
731 if (!trace_file_->WriteFully(header.c_str(), header.length()) ||
732 !trace_file_->WriteFully(buf_.get(), final_offset)) {
733 std::string detail(StringPrintf("Trace data write failed: %s", strerror(errno)));
734 PLOG(ERROR) << detail;
735 ThrowRuntimeException("%s", detail.c_str());
736 }
737 }
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800738 }
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800739}
740
Roland Levillain4b8f1ec2015-08-26 18:34:03 +0100741void Trace::DexPcMoved(Thread* thread ATTRIBUTE_UNUSED,
742 mirror::Object* this_object ATTRIBUTE_UNUSED,
743 ArtMethod* method,
744 uint32_t new_dex_pc) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800745 // We're not recorded to listen to this kind of event, so complain.
David Sehr709b0702016-10-13 09:12:37 -0700746 LOG(ERROR) << "Unexpected dex PC event in tracing " << ArtMethod::PrettyMethod(method)
747 << " " << new_dex_pc;
Andreas Gampec8ccf682014-09-29 20:07:43 -0700748}
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800749
Roland Levillain4b8f1ec2015-08-26 18:34:03 +0100750void Trace::FieldRead(Thread* thread ATTRIBUTE_UNUSED,
751 mirror::Object* this_object ATTRIBUTE_UNUSED,
752 ArtMethod* method,
753 uint32_t dex_pc,
754 ArtField* field ATTRIBUTE_UNUSED)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700755 REQUIRES_SHARED(Locks::mutator_lock_) {
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200756 // We're not recorded to listen to this kind of event, so complain.
David Sehr709b0702016-10-13 09:12:37 -0700757 LOG(ERROR) << "Unexpected field read event in tracing " << ArtMethod::PrettyMethod(method)
758 << " " << dex_pc;
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200759}
760
Roland Levillain4b8f1ec2015-08-26 18:34:03 +0100761void Trace::FieldWritten(Thread* thread ATTRIBUTE_UNUSED,
762 mirror::Object* this_object ATTRIBUTE_UNUSED,
763 ArtMethod* method,
764 uint32_t dex_pc,
765 ArtField* field ATTRIBUTE_UNUSED,
766 const JValue& field_value ATTRIBUTE_UNUSED)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700767 REQUIRES_SHARED(Locks::mutator_lock_) {
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200768 // We're not recorded to listen to this kind of event, so complain.
David Sehr709b0702016-10-13 09:12:37 -0700769 LOG(ERROR) << "Unexpected field write event in tracing " << ArtMethod::PrettyMethod(method)
770 << " " << dex_pc;
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200771}
772
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700773void Trace::MethodEntered(Thread* thread, mirror::Object* this_object ATTRIBUTE_UNUSED,
Mathieu Chartiere401d142015-04-22 13:56:20 -0700774 ArtMethod* method, uint32_t dex_pc ATTRIBUTE_UNUSED) {
Jeff Haoc1ff4b72013-08-19 11:33:10 -0700775 uint32_t thread_clock_diff = 0;
776 uint32_t wall_clock_diff = 0;
777 ReadClocks(thread, &thread_clock_diff, &wall_clock_diff);
778 LogMethodTraceEvent(thread, method, instrumentation::Instrumentation::kMethodEntered,
779 thread_clock_diff, wall_clock_diff);
Ian Rogers62d6c772013-02-27 08:32:07 -0800780}
781
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700782void Trace::MethodExited(Thread* thread, mirror::Object* this_object ATTRIBUTE_UNUSED,
Mathieu Chartiere401d142015-04-22 13:56:20 -0700783 ArtMethod* method, uint32_t dex_pc ATTRIBUTE_UNUSED,
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700784 const JValue& return_value ATTRIBUTE_UNUSED) {
Jeff Haoc1ff4b72013-08-19 11:33:10 -0700785 uint32_t thread_clock_diff = 0;
786 uint32_t wall_clock_diff = 0;
787 ReadClocks(thread, &thread_clock_diff, &wall_clock_diff);
788 LogMethodTraceEvent(thread, method, instrumentation::Instrumentation::kMethodExited,
789 thread_clock_diff, wall_clock_diff);
Ian Rogers62d6c772013-02-27 08:32:07 -0800790}
791
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700792void Trace::MethodUnwind(Thread* thread, mirror::Object* this_object ATTRIBUTE_UNUSED,
Mathieu Chartiere401d142015-04-22 13:56:20 -0700793 ArtMethod* method, uint32_t dex_pc ATTRIBUTE_UNUSED) {
Jeff Haoc1ff4b72013-08-19 11:33:10 -0700794 uint32_t thread_clock_diff = 0;
795 uint32_t wall_clock_diff = 0;
796 ReadClocks(thread, &thread_clock_diff, &wall_clock_diff);
797 LogMethodTraceEvent(thread, method, instrumentation::Instrumentation::kMethodUnwind,
798 thread_clock_diff, wall_clock_diff);
Ian Rogers62d6c772013-02-27 08:32:07 -0800799}
800
Roland Levillain4b8f1ec2015-08-26 18:34:03 +0100801void Trace::ExceptionCaught(Thread* thread ATTRIBUTE_UNUSED,
802 mirror::Throwable* exception_object ATTRIBUTE_UNUSED)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700803 REQUIRES_SHARED(Locks::mutator_lock_) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800804 LOG(ERROR) << "Unexpected exception caught event in tracing";
805}
806
Nicolas Geoffray81f0f952016-01-20 16:25:19 +0000807void Trace::Branch(Thread* /*thread*/, ArtMethod* method,
808 uint32_t /*dex_pc*/, int32_t /*dex_pc_offset*/)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700809 REQUIRES_SHARED(Locks::mutator_lock_) {
David Sehr709b0702016-10-13 09:12:37 -0700810 LOG(ERROR) << "Unexpected branch event in tracing" << ArtMethod::PrettyMethod(method);
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800811}
812
Nicolas Geoffray5550ca82015-08-21 18:38:30 +0100813void Trace::InvokeVirtualOrInterface(Thread*,
814 mirror::Object*,
815 ArtMethod* method,
816 uint32_t dex_pc,
817 ArtMethod*) {
David Sehr709b0702016-10-13 09:12:37 -0700818 LOG(ERROR) << "Unexpected invoke event in tracing" << ArtMethod::PrettyMethod(method)
Nicolas Geoffray5550ca82015-08-21 18:38:30 +0100819 << " " << dex_pc;
820}
821
Jeff Haoc1ff4b72013-08-19 11:33:10 -0700822void Trace::ReadClocks(Thread* thread, uint32_t* thread_clock_diff, uint32_t* wall_clock_diff) {
823 if (UseThreadCpuClock()) {
824 uint64_t clock_base = thread->GetTraceClockBase();
825 if (UNLIKELY(clock_base == 0)) {
826 // First event, record the base time in the map.
827 uint64_t time = thread->GetCpuMicroTime();
828 thread->SetTraceClockBase(time);
829 } else {
830 *thread_clock_diff = thread->GetCpuMicroTime() - clock_base;
831 }
832 }
833 if (UseWallClock()) {
834 *wall_clock_diff = MicroTime() - start_time_;
835 }
836}
837
Mathieu Chartiere401d142015-04-22 13:56:20 -0700838bool Trace::RegisterMethod(ArtMethod* method) {
Andreas Gampe40da2862015-02-27 12:49:04 -0800839 mirror::DexCache* dex_cache = method->GetDexCache();
Andreas Gampe7526d782015-06-22 22:53:45 -0700840 const DexFile* dex_file = dex_cache->GetDexFile();
Andreas Gampe7526d782015-06-22 22:53:45 -0700841 if (seen_methods_.find(dex_file) == seen_methods_.end()) {
842 seen_methods_.insert(std::make_pair(dex_file, new DexIndexBitSet()));
Andreas Gampe40da2862015-02-27 12:49:04 -0800843 }
Andreas Gampe7526d782015-06-22 22:53:45 -0700844 DexIndexBitSet* bit_set = seen_methods_.find(dex_file)->second;
Andreas Gampe40da2862015-02-27 12:49:04 -0800845 if (!(*bit_set)[method->GetDexMethodIndex()]) {
846 bit_set->set(method->GetDexMethodIndex());
847 return true;
848 }
849 return false;
850}
851
852bool Trace::RegisterThread(Thread* thread) {
853 pid_t tid = thread->GetTid();
854 CHECK_LT(0U, static_cast<uint32_t>(tid));
Alex Lighta344f6a2016-07-20 10:43:39 -0700855 CHECK_LT(static_cast<uint32_t>(tid), kMaxThreadIdNumber);
Andreas Gampe40da2862015-02-27 12:49:04 -0800856
857 if (!(*seen_threads_)[tid]) {
858 seen_threads_->set(tid);
859 return true;
860 }
861 return false;
862}
863
Mathieu Chartier4d64cd42015-06-02 16:38:29 -0700864std::string Trace::GetMethodLine(ArtMethod* method) {
Andreas Gampe542451c2016-07-26 09:02:02 -0700865 method = method->GetInterfaceMethodIfProxy(kRuntimePointerSize);
Alex Light0f7e8f52016-07-19 11:21:32 -0700866 return StringPrintf("%#x\t%s\t%s\t%s\t%s\n", (EncodeTraceMethod(method) << TraceActionBits),
Andreas Gampe40da2862015-02-27 12:49:04 -0800867 PrettyDescriptor(method->GetDeclaringClassDescriptor()).c_str(), method->GetName(),
868 method->GetSignature().ToString().c_str(), method->GetDeclaringClassSourceFile());
869}
870
871void Trace::WriteToBuf(const uint8_t* src, size_t src_size) {
872 int32_t old_offset = cur_offset_.LoadRelaxed();
873 int32_t new_offset = old_offset + static_cast<int32_t>(src_size);
Andreas Gampee34a42c2015-04-25 14:44:29 -0700874 if (dchecked_integral_cast<size_t>(new_offset) > buffer_size_) {
Andreas Gampe40da2862015-02-27 12:49:04 -0800875 // Flush buffer.
876 if (!trace_file_->WriteFully(buf_.get(), old_offset)) {
877 PLOG(WARNING) << "Failed streaming a tracing event.";
878 }
Andreas Gampee34a42c2015-04-25 14:44:29 -0700879
880 // Check whether the data is too large for the buffer, then write immediately.
881 if (src_size >= buffer_size_) {
882 if (!trace_file_->WriteFully(src, src_size)) {
883 PLOG(WARNING) << "Failed streaming a tracing event.";
884 }
885 cur_offset_.StoreRelease(0); // Buffer is empty now.
886 return;
887 }
888
Andreas Gampe40da2862015-02-27 12:49:04 -0800889 old_offset = 0;
890 new_offset = static_cast<int32_t>(src_size);
891 }
892 cur_offset_.StoreRelease(new_offset);
893 // Fill in data.
894 memcpy(buf_.get() + old_offset, src, src_size);
895}
896
Mathieu Chartiere401d142015-04-22 13:56:20 -0700897void Trace::LogMethodTraceEvent(Thread* thread, ArtMethod* method,
Jeff Haoc1ff4b72013-08-19 11:33:10 -0700898 instrumentation::Instrumentation::InstrumentationEvent event,
899 uint32_t thread_clock_diff, uint32_t wall_clock_diff) {
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800900 // Advance cur_offset_ atomically.
901 int32_t new_offset;
Andreas Gampe40da2862015-02-27 12:49:04 -0800902 int32_t old_offset = 0;
903
904 // We do a busy loop here trying to acquire the next offset.
905 if (trace_output_mode_ != TraceOutputMode::kStreaming) {
906 do {
907 old_offset = cur_offset_.LoadRelaxed();
908 new_offset = old_offset + GetRecordSize(clock_source_);
Andreas Gampee34a42c2015-04-25 14:44:29 -0700909 if (static_cast<size_t>(new_offset) > buffer_size_) {
Andreas Gampe40da2862015-02-27 12:49:04 -0800910 overflow_ = true;
911 return;
912 }
913 } while (!cur_offset_.CompareExchangeWeakSequentiallyConsistent(old_offset, new_offset));
914 }
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800915
Ian Rogers62d6c772013-02-27 08:32:07 -0800916 TraceAction action = kTraceMethodEnter;
917 switch (event) {
918 case instrumentation::Instrumentation::kMethodEntered:
919 action = kTraceMethodEnter;
920 break;
921 case instrumentation::Instrumentation::kMethodExited:
922 action = kTraceMethodExit;
923 break;
924 case instrumentation::Instrumentation::kMethodUnwind:
925 action = kTraceUnroll;
926 break;
927 default:
928 UNIMPLEMENTED(FATAL) << "Unexpected event: " << event;
929 }
930
Mathieu Chartier4d64cd42015-06-02 16:38:29 -0700931 uint32_t method_value = EncodeTraceMethodAndAction(method, action);
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800932
933 // Write data
Andreas Gampe40da2862015-02-27 12:49:04 -0800934 uint8_t* ptr;
Mathieu Chartier4d64cd42015-06-02 16:38:29 -0700935 static constexpr size_t kPacketSize = 14U; // The maximum size of data in a packet.
Andreas Gampe40da2862015-02-27 12:49:04 -0800936 uint8_t stack_buf[kPacketSize]; // Space to store a packet when in streaming mode.
937 if (trace_output_mode_ == TraceOutputMode::kStreaming) {
938 ptr = stack_buf;
939 } else {
940 ptr = buf_.get() + old_offset;
941 }
942
Ian Rogers62d6c772013-02-27 08:32:07 -0800943 Append2LE(ptr, thread->GetTid());
Mathieu Chartier4d64cd42015-06-02 16:38:29 -0700944 Append4LE(ptr + 2, method_value);
945 ptr += 6;
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800946
947 if (UseThreadCpuClock()) {
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800948 Append4LE(ptr, thread_clock_diff);
949 ptr += 4;
950 }
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800951 if (UseWallClock()) {
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800952 Append4LE(ptr, wall_clock_diff);
953 }
Mathieu Chartier4d64cd42015-06-02 16:38:29 -0700954 static_assert(kPacketSize == 2 + 4 + 4 + 4, "Packet size incorrect.");
Andreas Gampe40da2862015-02-27 12:49:04 -0800955
956 if (trace_output_mode_ == TraceOutputMode::kStreaming) {
957 MutexLock mu(Thread::Current(), *streaming_lock_); // To serialize writing.
958 if (RegisterMethod(method)) {
959 // Write a special block with the name.
960 std::string method_line(GetMethodLine(method));
961 uint8_t buf2[5];
962 Append2LE(buf2, 0);
963 buf2[2] = kOpNewMethod;
964 Append2LE(buf2 + 3, static_cast<uint16_t>(method_line.length()));
965 WriteToBuf(buf2, sizeof(buf2));
966 WriteToBuf(reinterpret_cast<const uint8_t*>(method_line.c_str()), method_line.length());
967 }
968 if (RegisterThread(thread)) {
969 // It might be better to postpone this. Threads might not have received names...
970 std::string thread_name;
971 thread->GetThreadName(thread_name);
972 uint8_t buf2[7];
973 Append2LE(buf2, 0);
974 buf2[2] = kOpNewThread;
975 Append2LE(buf2 + 3, static_cast<uint16_t>(thread->GetTid()));
976 Append2LE(buf2 + 5, static_cast<uint16_t>(thread_name.length()));
977 WriteToBuf(buf2, sizeof(buf2));
978 WriteToBuf(reinterpret_cast<const uint8_t*>(thread_name.c_str()), thread_name.length());
979 }
980 WriteToBuf(stack_buf, sizeof(stack_buf));
981 }
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800982}
983
Ian Rogers62d6c772013-02-27 08:32:07 -0800984void Trace::GetVisitedMethods(size_t buf_size,
Mathieu Chartiere401d142015-04-22 13:56:20 -0700985 std::set<ArtMethod*>* visited_methods) {
jeffhao2692b572011-12-16 15:42:28 -0800986 uint8_t* ptr = buf_.get() + kTraceHeaderLength;
Ian Rogers62d6c772013-02-27 08:32:07 -0800987 uint8_t* end = buf_.get() + buf_size;
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800988
989 while (ptr < end) {
Mathieu Chartier4d64cd42015-06-02 16:38:29 -0700990 uint32_t tmid = ReadBytes(ptr + 2, sizeof(tmid));
991 ArtMethod* method = DecodeTraceMethod(tmid);
Ian Rogers62d6c772013-02-27 08:32:07 -0800992 visited_methods->insert(method);
993 ptr += GetRecordSize(clock_source_);
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800994 }
995}
996
Mathieu Chartiere401d142015-04-22 13:56:20 -0700997void Trace::DumpMethodList(std::ostream& os, const std::set<ArtMethod*>& visited_methods) {
Mathieu Chartier02e25112013-08-14 16:14:24 -0700998 for (const auto& method : visited_methods) {
Andreas Gampe40da2862015-02-27 12:49:04 -0800999 os << GetMethodLine(method);
jeffhaoa9ef3fd2011-12-13 18:33:43 -08001000 }
jeffhaoa9ef3fd2011-12-13 18:33:43 -08001001}
1002
1003static void DumpThread(Thread* t, void* arg) {
Elliott Hughesffb465f2012-03-01 18:46:05 -08001004 std::ostream& os = *reinterpret_cast<std::ostream*>(arg);
1005 std::string name;
1006 t->GetThreadName(name);
1007 os << t->GetTid() << "\t" << name << "\n";
jeffhaoa9ef3fd2011-12-13 18:33:43 -08001008}
1009
1010void Trace::DumpThreadList(std::ostream& os) {
Ian Rogers81d425b2012-09-27 16:03:43 -07001011 Thread* self = Thread::Current();
Jeff Haoe094b872014-10-14 13:12:01 -07001012 for (auto it : exited_threads_) {
1013 os << it.first << "\t" << it.second << "\n";
1014 }
Ian Rogers81d425b2012-09-27 16:03:43 -07001015 Locks::thread_list_lock_->AssertNotHeld(self);
1016 MutexLock mu(self, *Locks::thread_list_lock_);
jeffhaoa9ef3fd2011-12-13 18:33:43 -08001017 Runtime::Current()->GetThreadList()->ForEach(DumpThread, &os);
jeffhaoe343b762011-12-05 16:36:44 -08001018}
1019
Jeff Haoe094b872014-10-14 13:12:01 -07001020void Trace::StoreExitingThreadInfo(Thread* thread) {
1021 MutexLock mu(thread, *Locks::trace_lock_);
1022 if (the_trace_ != nullptr) {
1023 std::string name;
1024 thread->GetThreadName(name);
Andreas Gampea1785c52014-11-25 20:40:08 -08001025 // The same thread/tid may be used multiple times. As SafeMap::Put does not allow to override
1026 // a previous mapping, use SafeMap::Overwrite.
1027 the_trace_->exited_threads_.Overwrite(thread->GetTid(), name);
Jeff Haoe094b872014-10-14 13:12:01 -07001028 }
1029}
1030
Andreas Gampe40da2862015-02-27 12:49:04 -08001031Trace::TraceOutputMode Trace::GetOutputMode() {
1032 MutexLock mu(Thread::Current(), *Locks::trace_lock_);
1033 CHECK(the_trace_ != nullptr) << "Trace output mode requested, but no trace currently running";
1034 return the_trace_->trace_output_mode_;
1035}
1036
1037Trace::TraceMode Trace::GetMode() {
1038 MutexLock mu(Thread::Current(), *Locks::trace_lock_);
1039 CHECK(the_trace_ != nullptr) << "Trace mode requested, but no trace currently running";
1040 return the_trace_->trace_mode_;
1041}
1042
Andreas Gampee34a42c2015-04-25 14:44:29 -07001043size_t Trace::GetBufferSize() {
1044 MutexLock mu(Thread::Current(), *Locks::trace_lock_);
1045 CHECK(the_trace_ != nullptr) << "Trace mode requested, but no trace currently running";
1046 return the_trace_->buffer_size_;
1047}
1048
Mathieu Chartier7778b882015-10-05 16:41:10 -07001049bool Trace::IsTracingEnabled() {
1050 MutexLock mu(Thread::Current(), *Locks::trace_lock_);
1051 return the_trace_ != nullptr;
1052}
1053
jeffhaoe343b762011-12-05 16:36:44 -08001054} // namespace art