blob: 0c31faa97ead9512698208dea761d90a44434f25 [file] [log] [blame]
Elliott Hughes2faa5f12012-01-30 14:42:07 -08001/*
2 * Copyright (C) 2011 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
jeffhaoe343b762011-12-05 16:36:44 -080016
17#include "trace.h"
18
jeffhaoa9ef3fd2011-12-13 18:33:43 -080019#include <sys/uio.h>
John Reck0624a272015-03-26 15:47:54 -070020#include <unistd.h>
jeffhaoa9ef3fd2011-12-13 18:33:43 -080021
Andreas Gampe46ee31b2016-12-14 10:11:49 -080022#include "android-base/stringprintf.h"
23
Mathieu Chartiere401d142015-04-22 13:56:20 -070024#include "art_method-inl.h"
Andreas Gampee34a42c2015-04-25 14:44:29 -070025#include "base/casts.h"
Andreas Gampe542451c2016-07-26 09:02:02 -070026#include "base/enums.h"
David Sehrc431b9d2018-03-02 12:01:51 -080027#include "base/os.h"
Jeff Hao0abc72e2013-08-13 13:45:14 -070028#include "base/stl_util.h"
Mathieu Chartier32ce2ad2016-03-04 14:58:03 -080029#include "base/systrace.h"
Vladimir Marko80afd022015-05-19 18:08:00 +010030#include "base/time_utils.h"
Elliott Hughes76160052012-12-12 16:31:20 -080031#include "base/unix_file/fd_file.h"
David Sehrc431b9d2018-03-02 12:01:51 -080032#include "base/utils.h"
jeffhaoe343b762011-12-05 16:36:44 -080033#include "class_linker.h"
Ian Rogers62d6c772013-02-27 08:32:07 -080034#include "common_throws.h"
jeffhaoa9ef3fd2011-12-13 18:33:43 -080035#include "debugger.h"
David Sehrb2ec9f52018-02-21 13:20:31 -080036#include "dex/descriptors_names.h"
David Sehr9e734c72018-01-04 17:56:19 -080037#include "dex/dex_file-inl.h"
Steven Morelande431e272017-07-18 16:53:49 -070038#include "entrypoints/quick/quick_entrypoints.h"
Mathieu Chartieraa516822015-10-02 15:53:37 -070039#include "gc/scoped_gc_critical_section.h"
jeffhao725a9572012-11-13 18:20:12 -080040#include "instrumentation.h"
Nicolas Geoffray226805d2018-12-14 10:59:02 +000041#include "jit/jit.h"
42#include "jit/jit_code_cache.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070043#include "mirror/class-inl.h"
Andreas Gampe40da2862015-02-27 12:49:04 -080044#include "mirror/dex_cache-inl.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070045#include "mirror/object-inl.h"
Steven Morelande431e272017-07-18 16:53:49 -070046#include "mirror/object_array-inl.h"
Andreas Gampe373a9b52017-10-18 09:01:57 -070047#include "nativehelper/scoped_local_ref.h"
Mathieu Chartier0795f232016-09-27 18:43:30 -070048#include "scoped_thread_state_change-inl.h"
Andreas Gampe513061a2017-06-01 09:17:34 -070049#include "stack.h"
jeffhaoe343b762011-12-05 16:36:44 -080050#include "thread.h"
Ian Rogers57b86d42012-03-27 16:05:41 -070051#include "thread_list.h"
jeffhao2692b572011-12-16 15:42:28 -080052
53namespace art {
54
Andreas Gampe46ee31b2016-12-14 10:11:49 -080055using android::base::StringPrintf;
56
Mathieu Chartier4d64cd42015-06-02 16:38:29 -070057static constexpr size_t TraceActionBits = MinimumBitsToStore(
58 static_cast<size_t>(kTraceMethodActionMask));
Andreas Gampe40da2862015-02-27 12:49:04 -080059static constexpr uint8_t kOpNewMethod = 1U;
60static constexpr uint8_t kOpNewThread = 2U;
Shukang Zhou8a5ab912017-01-20 11:40:16 -080061static constexpr uint8_t kOpTraceSummary = 3U;
Andreas Gampe40da2862015-02-27 12:49:04 -080062
jeffhaoa9ef3fd2011-12-13 18:33:43 -080063static const char kTraceTokenChar = '*';
64static const uint16_t kTraceHeaderLength = 32;
65static const uint32_t kTraceMagicValue = 0x574f4c53;
66static const uint16_t kTraceVersionSingleClock = 2;
67static const uint16_t kTraceVersionDualClock = 3;
Mathieu Chartier4d64cd42015-06-02 16:38:29 -070068static const uint16_t kTraceRecordSizeSingleClock = 10; // using v2
69static const uint16_t kTraceRecordSizeDualClock = 14; // using v3 with two timestamps
jeffhaoa9ef3fd2011-12-13 18:33:43 -080070
Ian Rogerse63db272014-07-15 15:36:11 -070071TraceClockSource Trace::default_clock_source_ = kDefaultTraceClockSource;
Elliott Hughese119a362012-05-22 17:37:06 -070072
Andreas Gampe40da2862015-02-27 12:49:04 -080073Trace* volatile Trace::the_trace_ = nullptr;
Jeff Hao0abc72e2013-08-13 13:45:14 -070074pthread_t Trace::sampling_pthread_ = 0U;
Mathieu Chartiere401d142015-04-22 13:56:20 -070075std::unique_ptr<std::vector<ArtMethod*>> Trace::temp_stack_trace_;
Ian Rogers62d6c772013-02-27 08:32:07 -080076
Sebastien Hertz0462c4c2015-04-01 16:34:17 +020077// The key identifying the tracer to update instrumentation.
78static constexpr const char* kTracerInstrumentationKey = "Tracer";
79
Ian Rogers62d6c772013-02-27 08:32:07 -080080static TraceAction DecodeTraceAction(uint32_t tmid) {
81 return static_cast<TraceAction>(tmid & kTraceMethodActionMask);
82}
83
Mathieu Chartier4d64cd42015-06-02 16:38:29 -070084ArtMethod* Trace::DecodeTraceMethod(uint32_t tmid) {
85 MutexLock mu(Thread::Current(), *unique_methods_lock_);
86 return unique_methods_[tmid >> TraceActionBits];
87}
88
89uint32_t Trace::EncodeTraceMethod(ArtMethod* method) {
90 MutexLock mu(Thread::Current(), *unique_methods_lock_);
91 uint32_t idx;
92 auto it = art_method_id_map_.find(method);
93 if (it != art_method_id_map_.end()) {
94 idx = it->second;
95 } else {
96 unique_methods_.push_back(method);
97 idx = unique_methods_.size() - 1;
98 art_method_id_map_.emplace(method, idx);
99 }
100 DCHECK_LT(idx, unique_methods_.size());
101 DCHECK_EQ(unique_methods_[idx], method);
102 return idx;
103}
104
105uint32_t Trace::EncodeTraceMethodAndAction(ArtMethod* method, TraceAction action) {
106 uint32_t tmid = (EncodeTraceMethod(method) << TraceActionBits) | action;
107 DCHECK_EQ(method, DecodeTraceMethod(tmid));
Ian Rogers62d6c772013-02-27 08:32:07 -0800108 return tmid;
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800109}
110
Mathieu Chartiere401d142015-04-22 13:56:20 -0700111std::vector<ArtMethod*>* Trace::AllocStackTrace() {
Mathieu Chartier4d64cd42015-06-02 16:38:29 -0700112 return (temp_stack_trace_.get() != nullptr) ? temp_stack_trace_.release() :
113 new std::vector<ArtMethod*>();
Jeff Hao5ce4b172013-08-16 16:27:18 -0700114}
115
Mathieu Chartiere401d142015-04-22 13:56:20 -0700116void Trace::FreeStackTrace(std::vector<ArtMethod*>* stack_trace) {
Jeff Hao5ce4b172013-08-16 16:27:18 -0700117 stack_trace->clear();
118 temp_stack_trace_.reset(stack_trace);
119}
120
Ian Rogerse63db272014-07-15 15:36:11 -0700121void Trace::SetDefaultClockSource(TraceClockSource clock_source) {
Elliott Hughes0a18df82015-01-09 15:16:16 -0800122#if defined(__linux__)
Ian Rogers62d6c772013-02-27 08:32:07 -0800123 default_clock_source_ = clock_source;
124#else
Igor Murashkinaaebaa02015-01-26 10:55:53 -0800125 if (clock_source != TraceClockSource::kWall) {
Jeff Hao5ce4b172013-08-16 16:27:18 -0700126 LOG(WARNING) << "Ignoring tracing request to use CPU time.";
Ian Rogers62d6c772013-02-27 08:32:07 -0800127 }
128#endif
129}
130
Ian Rogerse63db272014-07-15 15:36:11 -0700131static uint16_t GetTraceVersion(TraceClockSource clock_source) {
Igor Murashkinaaebaa02015-01-26 10:55:53 -0800132 return (clock_source == TraceClockSource::kDual) ? kTraceVersionDualClock
Ian Rogers62d6c772013-02-27 08:32:07 -0800133 : kTraceVersionSingleClock;
134}
135
Ian Rogerse63db272014-07-15 15:36:11 -0700136static uint16_t GetRecordSize(TraceClockSource clock_source) {
Igor Murashkinaaebaa02015-01-26 10:55:53 -0800137 return (clock_source == TraceClockSource::kDual) ? kTraceRecordSizeDualClock
Ian Rogers62d6c772013-02-27 08:32:07 -0800138 : kTraceRecordSizeSingleClock;
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800139}
140
Elliott Hughese119a362012-05-22 17:37:06 -0700141bool Trace::UseThreadCpuClock() {
Igor Murashkinaaebaa02015-01-26 10:55:53 -0800142 return (clock_source_ == TraceClockSource::kThreadCpu) ||
143 (clock_source_ == TraceClockSource::kDual);
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800144}
145
Elliott Hughese119a362012-05-22 17:37:06 -0700146bool Trace::UseWallClock() {
Igor Murashkinaaebaa02015-01-26 10:55:53 -0800147 return (clock_source_ == TraceClockSource::kWall) ||
148 (clock_source_ == TraceClockSource::kDual);
Elliott Hughese119a362012-05-22 17:37:06 -0700149}
150
Jeff Haoc5d824a2014-07-28 18:35:38 -0700151void Trace::MeasureClockOverhead() {
152 if (UseThreadCpuClock()) {
Jeff Hao57dac6e2013-08-15 16:36:24 -0700153 Thread::Current()->GetCpuMicroTime();
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800154 }
Jeff Haoc5d824a2014-07-28 18:35:38 -0700155 if (UseWallClock()) {
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800156 MicroTime();
157 }
158}
159
Jeff Hao5ce4b172013-08-16 16:27:18 -0700160// Compute an average time taken to measure clocks.
Jeff Haoc5d824a2014-07-28 18:35:38 -0700161uint32_t Trace::GetClockOverheadNanoSeconds() {
Jeff Hao57dac6e2013-08-15 16:36:24 -0700162 Thread* self = Thread::Current();
163 uint64_t start = self->GetCpuMicroTime();
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800164
165 for (int i = 4000; i > 0; i--) {
Jeff Haoc5d824a2014-07-28 18:35:38 -0700166 MeasureClockOverhead();
167 MeasureClockOverhead();
168 MeasureClockOverhead();
169 MeasureClockOverhead();
170 MeasureClockOverhead();
171 MeasureClockOverhead();
172 MeasureClockOverhead();
173 MeasureClockOverhead();
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800174 }
175
Jeff Hao5ce4b172013-08-16 16:27:18 -0700176 uint64_t elapsed_us = self->GetCpuMicroTime() - start;
177 return static_cast<uint32_t>(elapsed_us / 32);
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800178}
179
Elliott Hughesffb465f2012-03-01 18:46:05 -0800180// TODO: put this somewhere with the big-endian equivalent used by JDWP.
181static void Append2LE(uint8_t* buf, uint16_t val) {
Jeff Hao5ce4b172013-08-16 16:27:18 -0700182 *buf++ = static_cast<uint8_t>(val);
183 *buf++ = static_cast<uint8_t>(val >> 8);
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800184}
185
Elliott Hughesffb465f2012-03-01 18:46:05 -0800186// TODO: put this somewhere with the big-endian equivalent used by JDWP.
187static void Append4LE(uint8_t* buf, uint32_t val) {
Jeff Hao5ce4b172013-08-16 16:27:18 -0700188 *buf++ = static_cast<uint8_t>(val);
189 *buf++ = static_cast<uint8_t>(val >> 8);
190 *buf++ = static_cast<uint8_t>(val >> 16);
191 *buf++ = static_cast<uint8_t>(val >> 24);
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800192}
193
Elliott Hughesffb465f2012-03-01 18:46:05 -0800194// TODO: put this somewhere with the big-endian equivalent used by JDWP.
195static void Append8LE(uint8_t* buf, uint64_t val) {
Jeff Hao5ce4b172013-08-16 16:27:18 -0700196 *buf++ = static_cast<uint8_t>(val);
197 *buf++ = static_cast<uint8_t>(val >> 8);
198 *buf++ = static_cast<uint8_t>(val >> 16);
199 *buf++ = static_cast<uint8_t>(val >> 24);
200 *buf++ = static_cast<uint8_t>(val >> 32);
201 *buf++ = static_cast<uint8_t>(val >> 40);
202 *buf++ = static_cast<uint8_t>(val >> 48);
203 *buf++ = static_cast<uint8_t>(val >> 56);
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800204}
205
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700206static void GetSample(Thread* thread, void* arg) REQUIRES_SHARED(Locks::mutator_lock_) {
Andreas Gampec7d878d2018-11-19 18:42:06 +0000207 std::vector<ArtMethod*>* const stack_trace = Trace::AllocStackTrace();
208 StackVisitor::WalkStack(
209 [&](const art::StackVisitor* stack_visitor) REQUIRES_SHARED(Locks::mutator_lock_) {
210 ArtMethod* m = stack_visitor->GetMethod();
211 // Ignore runtime frames (in particular callee save).
212 if (!m->IsRuntimeMethod()) {
213 stack_trace->push_back(m);
214 }
215 return true;
216 },
217 thread,
218 /* context= */ nullptr,
219 art::StackVisitor::StackWalkKind::kIncludeInlinedFrames);
Jeff Hao0abc72e2013-08-13 13:45:14 -0700220 Trace* the_trace = reinterpret_cast<Trace*>(arg);
221 the_trace->CompareAndUpdateStackTrace(thread, stack_trace);
222}
223
Andreas Gampeca714582015-04-03 19:41:34 -0700224static void ClearThreadStackTraceAndClockBase(Thread* thread, void* arg ATTRIBUTE_UNUSED) {
Jeff Hao5ce4b172013-08-16 16:27:18 -0700225 thread->SetTraceClockBase(0);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700226 std::vector<ArtMethod*>* stack_trace = thread->GetStackTraceSample();
Andreas Gampe40da2862015-02-27 12:49:04 -0800227 thread->SetStackTraceSample(nullptr);
Jeff Hao5ce4b172013-08-16 16:27:18 -0700228 delete stack_trace;
229}
230
Jeff Hao0abc72e2013-08-13 13:45:14 -0700231void Trace::CompareAndUpdateStackTrace(Thread* thread,
Mathieu Chartiere401d142015-04-22 13:56:20 -0700232 std::vector<ArtMethod*>* stack_trace) {
Jeff Hao0abc72e2013-08-13 13:45:14 -0700233 CHECK_EQ(pthread_self(), sampling_pthread_);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700234 std::vector<ArtMethod*>* old_stack_trace = thread->GetStackTraceSample();
Jeff Hao5ce4b172013-08-16 16:27:18 -0700235 // Update the thread's stack trace sample.
236 thread->SetStackTraceSample(stack_trace);
Jeff Haoc1ff4b72013-08-19 11:33:10 -0700237 // Read timer clocks to use for all events in this trace.
238 uint32_t thread_clock_diff = 0;
239 uint32_t wall_clock_diff = 0;
240 ReadClocks(thread, &thread_clock_diff, &wall_clock_diff);
Andreas Gampe40da2862015-02-27 12:49:04 -0800241 if (old_stack_trace == nullptr) {
Jeff Hao5ce4b172013-08-16 16:27:18 -0700242 // If there's no previous stack trace sample for this thread, log an entry event for all
Jeff Hao0abc72e2013-08-13 13:45:14 -0700243 // methods in the trace.
Mathieu Chartier4d64cd42015-06-02 16:38:29 -0700244 for (auto rit = stack_trace->rbegin(); rit != stack_trace->rend(); ++rit) {
Jeff Haoc1ff4b72013-08-19 11:33:10 -0700245 LogMethodTraceEvent(thread, *rit, instrumentation::Instrumentation::kMethodEntered,
246 thread_clock_diff, wall_clock_diff);
Jeff Hao0abc72e2013-08-13 13:45:14 -0700247 }
248 } else {
249 // If there's a previous stack trace for this thread, diff the traces and emit entry and exit
250 // events accordingly.
Mathieu Chartier4d64cd42015-06-02 16:38:29 -0700251 auto old_rit = old_stack_trace->rbegin();
252 auto rit = stack_trace->rbegin();
Jeff Hao0abc72e2013-08-13 13:45:14 -0700253 // Iterate bottom-up over both traces until there's a difference between them.
254 while (old_rit != old_stack_trace->rend() && rit != stack_trace->rend() && *old_rit == *rit) {
255 old_rit++;
256 rit++;
257 }
258 // Iterate top-down over the old trace until the point where they differ, emitting exit events.
Mathieu Chartier4d64cd42015-06-02 16:38:29 -0700259 for (auto old_it = old_stack_trace->begin(); old_it != old_rit.base(); ++old_it) {
Jeff Haoc1ff4b72013-08-19 11:33:10 -0700260 LogMethodTraceEvent(thread, *old_it, instrumentation::Instrumentation::kMethodExited,
261 thread_clock_diff, wall_clock_diff);
Jeff Hao0abc72e2013-08-13 13:45:14 -0700262 }
263 // Iterate bottom-up over the new trace from the point where they differ, emitting entry events.
264 for (; rit != stack_trace->rend(); ++rit) {
Jeff Haoc1ff4b72013-08-19 11:33:10 -0700265 LogMethodTraceEvent(thread, *rit, instrumentation::Instrumentation::kMethodEntered,
266 thread_clock_diff, wall_clock_diff);
Jeff Hao0abc72e2013-08-13 13:45:14 -0700267 }
Jeff Hao5ce4b172013-08-16 16:27:18 -0700268 FreeStackTrace(old_stack_trace);
Jeff Hao0abc72e2013-08-13 13:45:14 -0700269 }
270}
271
272void* Trace::RunSamplingThread(void* arg) {
273 Runtime* runtime = Runtime::Current();
Ian Rogersef7d42f2014-01-06 12:55:46 -0800274 intptr_t interval_us = reinterpret_cast<intptr_t>(arg);
Jeff Hao4044bda2014-01-06 15:50:45 -0800275 CHECK_GE(interval_us, 0);
Jeff Hao0abc72e2013-08-13 13:45:14 -0700276 CHECK(runtime->AttachCurrentThread("Sampling Profiler", true, runtime->GetSystemThreadGroup(),
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800277 !runtime->IsAotCompiler()));
Jeff Hao0abc72e2013-08-13 13:45:14 -0700278
279 while (true) {
Jeff Hao23009dc2013-08-22 15:36:42 -0700280 usleep(interval_us);
Mathieu Chartier32ce2ad2016-03-04 14:58:03 -0800281 ScopedTrace trace("Profile sampling");
Jeff Hao0abc72e2013-08-13 13:45:14 -0700282 Thread* self = Thread::Current();
283 Trace* the_trace;
284 {
285 MutexLock mu(self, *Locks::trace_lock_);
286 the_trace = the_trace_;
Andreas Gampe40da2862015-02-27 12:49:04 -0800287 if (the_trace == nullptr) {
Jeff Hao0abc72e2013-08-13 13:45:14 -0700288 break;
289 }
290 }
Jeff Hao0abc72e2013-08-13 13:45:14 -0700291 {
Roland Levillaine45b3b12018-02-27 17:18:55 +0000292 // Avoid a deadlock between a thread doing garbage collection
293 // and the profile sampling thread, by blocking GC when sampling
294 // thread stacks (see b/73624630).
295 gc::ScopedGCCriticalSection gcs(self,
296 art::gc::kGcCauseInstrumentation,
297 art::gc::kCollectorTypeInstrumentation);
Mathieu Chartier4f55e222015-09-04 13:26:21 -0700298 ScopedSuspendAll ssa(__FUNCTION__);
Jeff Hao0abc72e2013-08-13 13:45:14 -0700299 MutexLock mu(self, *Locks::thread_list_lock_);
300 runtime->GetThreadList()->ForEach(GetSample, the_trace);
301 }
Jeff Hao0abc72e2013-08-13 13:45:14 -0700302 }
303
304 runtime->DetachCurrentThread();
Andreas Gampe40da2862015-02-27 12:49:04 -0800305 return nullptr;
Jeff Hao0abc72e2013-08-13 13:45:14 -0700306}
307
Andreas Gampe6ff3b372018-03-15 08:53:16 -0700308void Trace::Start(const char* trace_filename,
309 size_t buffer_size,
310 int flags,
311 TraceOutputMode output_mode,
312 TraceMode trace_mode,
313 int interval_us) {
314 std::unique_ptr<File> file(OS::CreateEmptyFileWriteOnly(trace_filename));
315 if (file == nullptr) {
316 std::string msg = android::base::StringPrintf("Unable to open trace file '%s'", trace_filename);
317 PLOG(ERROR) << msg;
318 ScopedObjectAccess soa(Thread::Current());
319 Thread::Current()->ThrowNewException("Ljava/lang/RuntimeException;", msg.c_str());
320 return;
321 }
322 Start(std::move(file), buffer_size, flags, output_mode, trace_mode, interval_us);
323}
324
325void Trace::Start(int trace_fd,
326 size_t buffer_size,
327 int flags,
328 TraceOutputMode output_mode,
329 TraceMode trace_mode,
330 int interval_us) {
331 if (trace_fd < 0) {
332 std::string msg = android::base::StringPrintf("Unable to start tracing with invalid fd %d",
333 trace_fd);
334 LOG(ERROR) << msg;
335 ScopedObjectAccess soa(Thread::Current());
336 Thread::Current()->ThrowNewException("Ljava/lang/RuntimeException;", msg.c_str());
337 return;
338 }
Andreas Gampe7c5acbb2018-09-20 13:54:52 -0700339 std::unique_ptr<File> file(new File(trace_fd, /* path= */ "tracefile", /* check_usage= */ true));
Andreas Gampe6ff3b372018-03-15 08:53:16 -0700340 Start(std::move(file), buffer_size, flags, output_mode, trace_mode, interval_us);
341}
342
343void Trace::StartDDMS(size_t buffer_size,
344 int flags,
345 TraceMode trace_mode,
346 int interval_us) {
347 Start(std::unique_ptr<File>(),
348 buffer_size,
349 flags,
350 TraceOutputMode::kDDMS,
351 trace_mode,
352 interval_us);
353}
354
355void Trace::Start(std::unique_ptr<File>&& trace_file_in,
356 size_t buffer_size,
357 int flags,
358 TraceOutputMode output_mode,
359 TraceMode trace_mode,
360 int interval_us) {
361 // We own trace_file now and are responsible for closing it. To account for error situations, use
362 // a specialized unique_ptr to ensure we close it on the way out (if it hasn't been passed to a
363 // Trace instance).
364 auto deleter = [](File* file) {
365 if (file != nullptr) {
366 file->MarkUnchecked(); // Don't deal with flushing requirements.
367 int result ATTRIBUTE_UNUSED = file->Close();
368 delete file;
369 }
370 };
371 std::unique_ptr<File, decltype(deleter)> trace_file(trace_file_in.release(), deleter);
Andreas Gampe6ff3b372018-03-15 08:53:16 -0700372
Ian Rogers62d6c772013-02-27 08:32:07 -0800373 Thread* self = Thread::Current();
374 {
375 MutexLock mu(self, *Locks::trace_lock_);
Andreas Gampe40da2862015-02-27 12:49:04 -0800376 if (the_trace_ != nullptr) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800377 LOG(ERROR) << "Trace already in progress, ignoring this request";
378 return;
379 }
jeffhaoe343b762011-12-05 16:36:44 -0800380 }
Jeff Haod063d912014-09-08 09:38:18 -0700381
382 // Check interval if sampling is enabled
Andreas Gampe7e7e0f42015-03-29 15:26:23 -0700383 if (trace_mode == TraceMode::kSampling && interval_us <= 0) {
Jeff Haod063d912014-09-08 09:38:18 -0700384 LOG(ERROR) << "Invalid sampling interval: " << interval_us;
385 ScopedObjectAccess soa(self);
386 ThrowRuntimeException("Invalid sampling interval: %d", interval_us);
387 return;
388 }
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800389
Jeff Haod063d912014-09-08 09:38:18 -0700390 Runtime* runtime = Runtime::Current();
Mathieu Chartier9ef78b52014-09-25 17:03:12 -0700391
392 // Enable count of allocs if specified in the flags.
393 bool enable_stats = false;
394
Nicolas Geoffray226805d2018-12-14 10:59:02 +0000395 if (runtime->GetJit() != nullptr) {
396 // TODO b/110263880 It would be better if we didn't need to do this.
397 // Since we need to hold the method entrypoint across a suspend to ensure instrumentation
398 // hooks are called correctly we have to disable jit-gc to ensure that the entrypoint doesn't
399 // go away. Furthermore we need to leave this off permanently since one could get the same
400 // effect by causing this to be toggled on and off.
401 runtime->GetJit()->GetCodeCache()->SetGarbageCollectCode(false);
402 }
403
jeffhao2692b572011-12-16 15:42:28 -0800404 // Create Trace object.
Ian Rogers62d6c772013-02-27 08:32:07 -0800405 {
Mathieu Chartieraa516822015-10-02 15:53:37 -0700406 // Required since EnableMethodTracing calls ConfigureStubs which visits class linker classes.
407 gc::ScopedGCCriticalSection gcs(self,
408 gc::kGcCauseInstrumentation,
409 gc::kCollectorTypeInstrumentation);
Mathieu Chartier4f55e222015-09-04 13:26:21 -0700410 ScopedSuspendAll ssa(__FUNCTION__);
Ian Rogers62d6c772013-02-27 08:32:07 -0800411 MutexLock mu(self, *Locks::trace_lock_);
Andreas Gampe40da2862015-02-27 12:49:04 -0800412 if (the_trace_ != nullptr) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800413 LOG(ERROR) << "Trace already in progress, ignoring this request";
414 } else {
Stephen Hinesf0b33e52018-08-25 13:31:52 -0700415 enable_stats = (flags & kTraceCountAllocs) != 0;
Andreas Gampe6ff3b372018-03-15 08:53:16 -0700416 the_trace_ = new Trace(trace_file.release(), buffer_size, flags, output_mode, trace_mode);
Andreas Gampe7e7e0f42015-03-29 15:26:23 -0700417 if (trace_mode == TraceMode::kSampling) {
Andreas Gampe40da2862015-02-27 12:49:04 -0800418 CHECK_PTHREAD_CALL(pthread_create, (&sampling_pthread_, nullptr, &RunSamplingThread,
Jeff Hao23009dc2013-08-22 15:36:42 -0700419 reinterpret_cast<void*>(interval_us)),
420 "Sampling profiler thread");
Andreas Gampe40da2862015-02-27 12:49:04 -0800421 the_trace_->interval_us_ = interval_us;
Jeff Hao0abc72e2013-08-13 13:45:14 -0700422 } else {
423 runtime->GetInstrumentation()->AddListener(the_trace_,
424 instrumentation::Instrumentation::kMethodEntered |
425 instrumentation::Instrumentation::kMethodExited |
426 instrumentation::Instrumentation::kMethodUnwind);
Andreas Gampe40da2862015-02-27 12:49:04 -0800427 // TODO: In full-PIC mode, we don't need to fully deopt.
Alex Light2a90bc92018-07-10 21:57:42 +0000428 // TODO: We can only use trampoline entrypoints if we are java-debuggable since in that case
429 // we know that inlining and other problematic optimizations are disabled. We might just
430 // want to use the trampolines anyway since it is faster. It makes the story with disabling
431 // jit-gc more complex though.
432 runtime->GetInstrumentation()->EnableMethodTracing(
Andreas Gampe98ea9d92018-10-19 14:06:15 -0700433 kTracerInstrumentationKey, /*needs_interpreter=*/!runtime->IsJavaDebuggable());
Jeff Hao0abc72e2013-08-13 13:45:14 -0700434 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800435 }
jeffhao0791adc2012-04-04 11:14:32 -0700436 }
Jeff Haod063d912014-09-08 09:38:18 -0700437
Mathieu Chartier9ef78b52014-09-25 17:03:12 -0700438 // Can't call this when holding the mutator lock.
439 if (enable_stats) {
440 runtime->SetStatsEnabled(true);
441 }
jeffhao2692b572011-12-16 15:42:28 -0800442}
443
Andreas Gampe40da2862015-02-27 12:49:04 -0800444void Trace::StopTracing(bool finish_tracing, bool flush_file) {
Mathieu Chartier9ef78b52014-09-25 17:03:12 -0700445 bool stop_alloc_counting = false;
Mathieu Chartier02e5f162015-03-11 09:54:22 -0700446 Runtime* const runtime = Runtime::Current();
447 Trace* the_trace = nullptr;
Hiroshi Yamauchi9ea02c42016-03-03 15:09:27 -0800448 Thread* const self = Thread::Current();
Jeff Hao0abc72e2013-08-13 13:45:14 -0700449 pthread_t sampling_pthread = 0U;
Ian Rogers62d6c772013-02-27 08:32:07 -0800450 {
Hiroshi Yamauchi9ea02c42016-03-03 15:09:27 -0800451 MutexLock mu(self, *Locks::trace_lock_);
Andreas Gampe40da2862015-02-27 12:49:04 -0800452 if (the_trace_ == nullptr) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800453 LOG(ERROR) << "Trace stop requested, but no trace currently running";
454 } else {
455 the_trace = the_trace_;
Andreas Gampe40da2862015-02-27 12:49:04 -0800456 the_trace_ = nullptr;
Jeff Hao0abc72e2013-08-13 13:45:14 -0700457 sampling_pthread = sampling_pthread_;
Ian Rogers62d6c772013-02-27 08:32:07 -0800458 }
jeffhao2692b572011-12-16 15:42:28 -0800459 }
Mathieu Chartier02e5f162015-03-11 09:54:22 -0700460 // Make sure that we join before we delete the trace since we don't want to have
461 // the sampling thread access a stale pointer. This finishes since the sampling thread exits when
462 // the_trace_ is null.
463 if (sampling_pthread != 0U) {
Andreas Gampe40da2862015-02-27 12:49:04 -0800464 CHECK_PTHREAD_CALL(pthread_join, (sampling_pthread, nullptr), "sampling thread shutdown");
Mathieu Chartier02e5f162015-03-11 09:54:22 -0700465 sampling_pthread_ = 0U;
466 }
Andreas Gampe40da2862015-02-27 12:49:04 -0800467
Alex Light772099a2017-11-21 14:05:04 -0800468 if (the_trace != nullptr) {
469 stop_alloc_counting = (the_trace->flags_ & Trace::kTraceCountAllocs) != 0;
Orion Hodson283ad2d2018-03-26 13:37:41 +0100470 // Stop the trace sources adding more entries to the trace buffer and synchronise stores.
471 {
472 gc::ScopedGCCriticalSection gcs(self,
473 gc::kGcCauseInstrumentation,
474 gc::kCollectorTypeInstrumentation);
475 ScopedSuspendAll ssa(__FUNCTION__);
476
477 if (the_trace->trace_mode_ == TraceMode::kSampling) {
478 MutexLock mu(self, *Locks::thread_list_lock_);
479 runtime->GetThreadList()->ForEach(ClearThreadStackTraceAndClockBase, nullptr);
480 } else {
Orion Hodson283ad2d2018-03-26 13:37:41 +0100481 runtime->GetInstrumentation()->RemoveListener(
482 the_trace, instrumentation::Instrumentation::kMethodEntered |
483 instrumentation::Instrumentation::kMethodExited |
484 instrumentation::Instrumentation::kMethodUnwind);
Ari Hausman-Cohenecd21be2019-02-26 17:11:24 -0800485 runtime->GetInstrumentation()->DisableMethodTracing(kTracerInstrumentationKey);
Orion Hodson283ad2d2018-03-26 13:37:41 +0100486 }
487 }
488 // At this point, code may read buf_ as it's writers are shutdown
489 // and the ScopedSuspendAll above has ensured all stores to buf_
490 // are now visible.
Alex Light772099a2017-11-21 14:05:04 -0800491 if (finish_tracing) {
492 the_trace->FinishTracing();
493 }
Alex Light772099a2017-11-21 14:05:04 -0800494 if (the_trace->trace_file_.get() != nullptr) {
495 // Do not try to erase, so flush and close explicitly.
496 if (flush_file) {
497 if (the_trace->trace_file_->Flush() != 0) {
498 PLOG(WARNING) << "Could not flush trace file.";
499 }
500 } else {
501 the_trace->trace_file_->MarkUnchecked(); // Do not trigger guard.
502 }
503 if (the_trace->trace_file_->Close() != 0) {
504 PLOG(ERROR) << "Could not close trace file.";
505 }
506 }
507 delete the_trace;
Ian Rogers62d6c772013-02-27 08:32:07 -0800508 }
Mathieu Chartier9ef78b52014-09-25 17:03:12 -0700509 if (stop_alloc_counting) {
510 // Can be racy since SetStatsEnabled is not guarded by any locks.
Mathieu Chartier02e5f162015-03-11 09:54:22 -0700511 runtime->SetStatsEnabled(false);
Jeff Hao0abc72e2013-08-13 13:45:14 -0700512 }
jeffhao2692b572011-12-16 15:42:28 -0800513}
514
Andreas Gampe40da2862015-02-27 12:49:04 -0800515void Trace::Abort() {
516 // Do not write anything anymore.
517 StopTracing(false, false);
518}
519
520void Trace::Stop() {
521 // Finish writing.
522 StopTracing(true, true);
523}
524
jeffhaob5e81852012-03-12 11:15:45 -0700525void Trace::Shutdown() {
Jeff Hao64caa7d2013-08-29 11:18:01 -0700526 if (GetMethodTracingMode() != kTracingInactive) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800527 Stop();
jeffhaob5e81852012-03-12 11:15:45 -0700528 }
jeffhaob5e81852012-03-12 11:15:45 -0700529}
530
Jeff Hao64caa7d2013-08-29 11:18:01 -0700531TracingMode Trace::GetMethodTracingMode() {
Ian Rogers62d6c772013-02-27 08:32:07 -0800532 MutexLock mu(Thread::Current(), *Locks::trace_lock_);
Andreas Gampe40da2862015-02-27 12:49:04 -0800533 if (the_trace_ == nullptr) {
Jeff Hao64caa7d2013-08-29 11:18:01 -0700534 return kTracingInactive;
Jeff Hao64caa7d2013-08-29 11:18:01 -0700535 } else {
Andreas Gampe7e7e0f42015-03-29 15:26:23 -0700536 switch (the_trace_->trace_mode_) {
537 case TraceMode::kSampling:
538 return kSampleProfilingActive;
539 case TraceMode::kMethodTracing:
540 return kMethodTracingActive;
541 }
542 LOG(FATAL) << "Unreachable";
543 UNREACHABLE();
Jeff Hao64caa7d2013-08-29 11:18:01 -0700544 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800545}
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800546
Andreas Gampee34a42c2015-04-25 14:44:29 -0700547static constexpr size_t kMinBufSize = 18U; // Trace header is up to 18B.
Andreas Gampe40da2862015-02-27 12:49:04 -0800548
Andreas Gampe6ff3b372018-03-15 08:53:16 -0700549Trace::Trace(File* trace_file,
550 size_t buffer_size,
551 int flags,
552 TraceOutputMode output_mode,
553 TraceMode trace_mode)
Andreas Gampe40da2862015-02-27 12:49:04 -0800554 : trace_file_(trace_file),
Andreas Gampee34a42c2015-04-25 14:44:29 -0700555 buf_(new uint8_t[std::max(kMinBufSize, buffer_size)]()),
Andreas Gampe40da2862015-02-27 12:49:04 -0800556 flags_(flags), trace_output_mode_(output_mode), trace_mode_(trace_mode),
557 clock_source_(default_clock_source_),
Andreas Gampee34a42c2015-04-25 14:44:29 -0700558 buffer_size_(std::max(kMinBufSize, buffer_size)),
Orion Hodson283ad2d2018-03-26 13:37:41 +0100559 start_time_(MicroTime()), clock_overhead_ns_(GetClockOverheadNanoSeconds()),
Mathieu Chartier4d64cd42015-06-02 16:38:29 -0700560 overflow_(false), interval_us_(0), streaming_lock_(nullptr),
Andreas Gampe7526d782015-06-22 22:53:45 -0700561 unique_methods_lock_(new Mutex("unique methods lock", kTracingUniqueMethodsLock)) {
Andreas Gampe6ff3b372018-03-15 08:53:16 -0700562 CHECK(trace_file != nullptr || output_mode == TraceOutputMode::kDDMS);
563
Ian Rogers62d6c772013-02-27 08:32:07 -0800564 uint16_t trace_version = GetTraceVersion(clock_source_);
Andreas Gampe40da2862015-02-27 12:49:04 -0800565 if (output_mode == TraceOutputMode::kStreaming) {
566 trace_version |= 0xF0U;
567 }
568 // Set up the beginning of the trace.
jeffhao2692b572011-12-16 15:42:28 -0800569 memset(buf_.get(), 0, kTraceHeaderLength);
570 Append4LE(buf_.get(), kTraceMagicValue);
Ian Rogers62d6c772013-02-27 08:32:07 -0800571 Append2LE(buf_.get() + 4, trace_version);
jeffhao2692b572011-12-16 15:42:28 -0800572 Append2LE(buf_.get() + 6, kTraceHeaderLength);
573 Append8LE(buf_.get() + 8, start_time_);
Ian Rogers62d6c772013-02-27 08:32:07 -0800574 if (trace_version >= kTraceVersionDualClock) {
575 uint16_t record_size = GetRecordSize(clock_source_);
576 Append2LE(buf_.get() + 16, record_size);
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800577 }
Andreas Gampee34a42c2015-04-25 14:44:29 -0700578 static_assert(18 <= kMinBufSize, "Minimum buffer size not large enough for trace header");
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800579
Orion Hodson88591fe2018-03-06 13:35:43 +0000580 cur_offset_.store(kTraceHeaderLength, std::memory_order_relaxed);
Andreas Gampe40da2862015-02-27 12:49:04 -0800581
582 if (output_mode == TraceOutputMode::kStreaming) {
Andreas Gampe7526d782015-06-22 22:53:45 -0700583 streaming_lock_ = new Mutex("tracing lock", LockLevel::kTracingStreamingLock);
Andreas Gampe40da2862015-02-27 12:49:04 -0800584 seen_threads_.reset(new ThreadIDBitSet());
585 }
586}
587
588Trace::~Trace() {
589 delete streaming_lock_;
Andreas Gampe7526d782015-06-22 22:53:45 -0700590 delete unique_methods_lock_;
Ian Rogers62d6c772013-02-27 08:32:07 -0800591}
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800592
Mathieu Chartiere401d142015-04-22 13:56:20 -0700593static uint64_t ReadBytes(uint8_t* buf, size_t bytes) {
594 uint64_t ret = 0;
595 for (size_t i = 0; i < bytes; ++i) {
596 ret |= static_cast<uint64_t>(buf[i]) << (i * 8);
597 }
598 return ret;
599}
600
Mathieu Chartier4d64cd42015-06-02 16:38:29 -0700601void Trace::DumpBuf(uint8_t* buf, size_t buf_size, TraceClockSource clock_source) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800602 uint8_t* ptr = buf + kTraceHeaderLength;
603 uint8_t* end = buf + buf_size;
604
605 while (ptr < end) {
Mathieu Chartier4d64cd42015-06-02 16:38:29 -0700606 uint32_t tmid = ReadBytes(ptr + 2, sizeof(tmid));
607 ArtMethod* method = DecodeTraceMethod(tmid);
Ian Rogers62d6c772013-02-27 08:32:07 -0800608 TraceAction action = DecodeTraceAction(tmid);
David Sehr709b0702016-10-13 09:12:37 -0700609 LOG(INFO) << ArtMethod::PrettyMethod(method) << " " << static_cast<int>(action);
Ian Rogers62d6c772013-02-27 08:32:07 -0800610 ptr += GetRecordSize(clock_source);
611 }
jeffhaoe343b762011-12-05 16:36:44 -0800612}
613
Andreas Gampe40da2862015-02-27 12:49:04 -0800614void Trace::FinishTracing() {
615 size_t final_offset = 0;
Mathieu Chartiere401d142015-04-22 13:56:20 -0700616 std::set<ArtMethod*> visited_methods;
Andreas Gampe40da2862015-02-27 12:49:04 -0800617 if (trace_output_mode_ == TraceOutputMode::kStreaming) {
Andreas Gampe40da2862015-02-27 12:49:04 -0800618 // Clean up.
Orion Hodson283ad2d2018-03-26 13:37:41 +0100619 MutexLock mu(Thread::Current(), *streaming_lock_);
Mathieu Chartier4d64cd42015-06-02 16:38:29 -0700620 STLDeleteValues(&seen_methods_);
Andreas Gampe40da2862015-02-27 12:49:04 -0800621 } else {
Orion Hodson88591fe2018-03-06 13:35:43 +0000622 final_offset = cur_offset_.load(std::memory_order_relaxed);
Andreas Gampe40da2862015-02-27 12:49:04 -0800623 GetVisitedMethods(final_offset, &visited_methods);
624 }
625
626 // Compute elapsed time.
627 uint64_t elapsed = MicroTime() - start_time_;
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800628
629 std::ostringstream os;
630
631 os << StringPrintf("%cversion\n", kTraceTokenChar);
Ian Rogers62d6c772013-02-27 08:32:07 -0800632 os << StringPrintf("%d\n", GetTraceVersion(clock_source_));
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800633 os << StringPrintf("data-file-overflow=%s\n", overflow_ ? "true" : "false");
634 if (UseThreadCpuClock()) {
635 if (UseWallClock()) {
636 os << StringPrintf("clock=dual\n");
637 } else {
638 os << StringPrintf("clock=thread-cpu\n");
639 }
640 } else {
641 os << StringPrintf("clock=wall\n");
642 }
Ian Rogersef7d42f2014-01-06 12:55:46 -0800643 os << StringPrintf("elapsed-time-usec=%" PRIu64 "\n", elapsed);
Andreas Gampe40da2862015-02-27 12:49:04 -0800644 if (trace_output_mode_ != TraceOutputMode::kStreaming) {
645 size_t num_records = (final_offset - kTraceHeaderLength) / GetRecordSize(clock_source_);
646 os << StringPrintf("num-method-calls=%zd\n", num_records);
647 }
Jeff Haoc5d824a2014-07-28 18:35:38 -0700648 os << StringPrintf("clock-call-overhead-nsec=%d\n", clock_overhead_ns_);
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800649 os << StringPrintf("vm=art\n");
John Reck0624a272015-03-26 15:47:54 -0700650 os << StringPrintf("pid=%d\n", getpid());
jeffhao0791adc2012-04-04 11:14:32 -0700651 if ((flags_ & kTraceCountAllocs) != 0) {
652 os << StringPrintf("alloc-count=%d\n", Runtime::Current()->GetStat(KIND_ALLOCATED_OBJECTS));
653 os << StringPrintf("alloc-size=%d\n", Runtime::Current()->GetStat(KIND_ALLOCATED_BYTES));
654 os << StringPrintf("gc-count=%d\n", Runtime::Current()->GetStat(KIND_GC_INVOCATIONS));
655 }
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800656 os << StringPrintf("%cthreads\n", kTraceTokenChar);
657 DumpThreadList(os);
658 os << StringPrintf("%cmethods\n", kTraceTokenChar);
Ian Rogers62d6c772013-02-27 08:32:07 -0800659 DumpMethodList(os, visited_methods);
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800660 os << StringPrintf("%cend\n", kTraceTokenChar);
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800661 std::string header(os.str());
Andreas Gampe40da2862015-02-27 12:49:04 -0800662
663 if (trace_output_mode_ == TraceOutputMode::kStreaming) {
Orion Hodson283ad2d2018-03-26 13:37:41 +0100664 // Protect access to buf_ and satisfy sanitizer for calls to WriteBuf / FlushBuf.
665 MutexLock mu(Thread::Current(), *streaming_lock_);
Shukang Zhou8a5ab912017-01-20 11:40:16 -0800666 // Write a special token to mark the end of trace records and the start of
667 // trace summary.
668 uint8_t buf[7];
669 Append2LE(buf, 0);
670 buf[2] = kOpTraceSummary;
671 Append4LE(buf + 3, static_cast<uint32_t>(header.length()));
672 WriteToBuf(buf, sizeof(buf));
673 // Write the trace summary. The summary is identical to the file header when
674 // the output mode is not streaming (except for methods).
675 WriteToBuf(reinterpret_cast<const uint8_t*>(header.c_str()), header.length());
676 // Flush the buffer, which may include some trace records before the summary.
677 FlushBuf();
Andreas Gampe40da2862015-02-27 12:49:04 -0800678 } else {
679 if (trace_file_.get() == nullptr) {
Alex Light772099a2017-11-21 14:05:04 -0800680 std::vector<uint8_t> data;
681 data.resize(header.length() + final_offset);
682 memcpy(data.data(), header.c_str(), header.length());
683 memcpy(data.data() + header.length(), buf_.get(), final_offset);
684 Runtime::Current()->GetRuntimeCallbacks()->DdmPublishChunk(CHUNK_TYPE("MPSE"),
685 ArrayRef<const uint8_t>(data));
Andreas Gampe40da2862015-02-27 12:49:04 -0800686 const bool kDumpTraceInfo = false;
687 if (kDumpTraceInfo) {
688 LOG(INFO) << "Trace sent:\n" << header;
689 DumpBuf(buf_.get(), final_offset, clock_source_);
690 }
691 } else {
692 if (!trace_file_->WriteFully(header.c_str(), header.length()) ||
693 !trace_file_->WriteFully(buf_.get(), final_offset)) {
694 std::string detail(StringPrintf("Trace data write failed: %s", strerror(errno)));
695 PLOG(ERROR) << detail;
696 ThrowRuntimeException("%s", detail.c_str());
697 }
698 }
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800699 }
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800700}
701
Roland Levillain4b8f1ec2015-08-26 18:34:03 +0100702void Trace::DexPcMoved(Thread* thread ATTRIBUTE_UNUSED,
Alex Lightd7661582017-05-01 13:48:16 -0700703 Handle<mirror::Object> this_object ATTRIBUTE_UNUSED,
Roland Levillain4b8f1ec2015-08-26 18:34:03 +0100704 ArtMethod* method,
705 uint32_t new_dex_pc) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800706 // We're not recorded to listen to this kind of event, so complain.
David Sehr709b0702016-10-13 09:12:37 -0700707 LOG(ERROR) << "Unexpected dex PC event in tracing " << ArtMethod::PrettyMethod(method)
708 << " " << new_dex_pc;
Andreas Gampec8ccf682014-09-29 20:07:43 -0700709}
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800710
Roland Levillain4b8f1ec2015-08-26 18:34:03 +0100711void Trace::FieldRead(Thread* thread ATTRIBUTE_UNUSED,
Alex Lightd7661582017-05-01 13:48:16 -0700712 Handle<mirror::Object> this_object ATTRIBUTE_UNUSED,
Roland Levillain4b8f1ec2015-08-26 18:34:03 +0100713 ArtMethod* method,
714 uint32_t dex_pc,
715 ArtField* field ATTRIBUTE_UNUSED)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700716 REQUIRES_SHARED(Locks::mutator_lock_) {
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200717 // We're not recorded to listen to this kind of event, so complain.
David Sehr709b0702016-10-13 09:12:37 -0700718 LOG(ERROR) << "Unexpected field read event in tracing " << ArtMethod::PrettyMethod(method)
719 << " " << dex_pc;
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200720}
721
Roland Levillain4b8f1ec2015-08-26 18:34:03 +0100722void Trace::FieldWritten(Thread* thread ATTRIBUTE_UNUSED,
Alex Lightd7661582017-05-01 13:48:16 -0700723 Handle<mirror::Object> this_object ATTRIBUTE_UNUSED,
Roland Levillain4b8f1ec2015-08-26 18:34:03 +0100724 ArtMethod* method,
725 uint32_t dex_pc,
726 ArtField* field ATTRIBUTE_UNUSED,
727 const JValue& field_value ATTRIBUTE_UNUSED)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700728 REQUIRES_SHARED(Locks::mutator_lock_) {
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200729 // We're not recorded to listen to this kind of event, so complain.
David Sehr709b0702016-10-13 09:12:37 -0700730 LOG(ERROR) << "Unexpected field write event in tracing " << ArtMethod::PrettyMethod(method)
731 << " " << dex_pc;
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200732}
733
Alex Lightd7661582017-05-01 13:48:16 -0700734void Trace::MethodEntered(Thread* thread,
735 Handle<mirror::Object> this_object ATTRIBUTE_UNUSED,
736 ArtMethod* method,
737 uint32_t dex_pc ATTRIBUTE_UNUSED) {
Jeff Haoc1ff4b72013-08-19 11:33:10 -0700738 uint32_t thread_clock_diff = 0;
739 uint32_t wall_clock_diff = 0;
740 ReadClocks(thread, &thread_clock_diff, &wall_clock_diff);
741 LogMethodTraceEvent(thread, method, instrumentation::Instrumentation::kMethodEntered,
742 thread_clock_diff, wall_clock_diff);
Ian Rogers62d6c772013-02-27 08:32:07 -0800743}
744
Alex Lightd7661582017-05-01 13:48:16 -0700745void Trace::MethodExited(Thread* thread,
746 Handle<mirror::Object> this_object ATTRIBUTE_UNUSED,
747 ArtMethod* method,
748 uint32_t dex_pc ATTRIBUTE_UNUSED,
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700749 const JValue& return_value ATTRIBUTE_UNUSED) {
Jeff Haoc1ff4b72013-08-19 11:33:10 -0700750 uint32_t thread_clock_diff = 0;
751 uint32_t wall_clock_diff = 0;
752 ReadClocks(thread, &thread_clock_diff, &wall_clock_diff);
753 LogMethodTraceEvent(thread, method, instrumentation::Instrumentation::kMethodExited,
754 thread_clock_diff, wall_clock_diff);
Ian Rogers62d6c772013-02-27 08:32:07 -0800755}
756
Alex Lightd7661582017-05-01 13:48:16 -0700757void Trace::MethodUnwind(Thread* thread,
758 Handle<mirror::Object> this_object ATTRIBUTE_UNUSED,
759 ArtMethod* method,
760 uint32_t dex_pc ATTRIBUTE_UNUSED) {
Jeff Haoc1ff4b72013-08-19 11:33:10 -0700761 uint32_t thread_clock_diff = 0;
762 uint32_t wall_clock_diff = 0;
763 ReadClocks(thread, &thread_clock_diff, &wall_clock_diff);
764 LogMethodTraceEvent(thread, method, instrumentation::Instrumentation::kMethodUnwind,
765 thread_clock_diff, wall_clock_diff);
Ian Rogers62d6c772013-02-27 08:32:07 -0800766}
767
Alex Light6e1607e2017-08-23 10:06:18 -0700768void Trace::ExceptionThrown(Thread* thread ATTRIBUTE_UNUSED,
Alex Lightd7661582017-05-01 13:48:16 -0700769 Handle<mirror::Throwable> exception_object ATTRIBUTE_UNUSED)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700770 REQUIRES_SHARED(Locks::mutator_lock_) {
Alex Light6e1607e2017-08-23 10:06:18 -0700771 LOG(ERROR) << "Unexpected exception thrown event in tracing";
Ian Rogers62d6c772013-02-27 08:32:07 -0800772}
773
Alex Light798eab02017-08-23 12:54:53 -0700774void Trace::ExceptionHandled(Thread* thread ATTRIBUTE_UNUSED,
775 Handle<mirror::Throwable> exception_object ATTRIBUTE_UNUSED)
776 REQUIRES_SHARED(Locks::mutator_lock_) {
777 LOG(ERROR) << "Unexpected exception thrown event in tracing";
778}
779
Nicolas Geoffray81f0f952016-01-20 16:25:19 +0000780void Trace::Branch(Thread* /*thread*/, ArtMethod* method,
781 uint32_t /*dex_pc*/, int32_t /*dex_pc_offset*/)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700782 REQUIRES_SHARED(Locks::mutator_lock_) {
David Sehr709b0702016-10-13 09:12:37 -0700783 LOG(ERROR) << "Unexpected branch event in tracing" << ArtMethod::PrettyMethod(method);
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800784}
785
Alex Light05f47742017-09-14 00:34:44 +0000786void Trace::WatchedFramePop(Thread* self ATTRIBUTE_UNUSED,
787 const ShadowFrame& frame ATTRIBUTE_UNUSED) {
788 LOG(ERROR) << "Unexpected WatchedFramePop event in tracing";
789}
790
Jeff Haoc1ff4b72013-08-19 11:33:10 -0700791void Trace::ReadClocks(Thread* thread, uint32_t* thread_clock_diff, uint32_t* wall_clock_diff) {
792 if (UseThreadCpuClock()) {
793 uint64_t clock_base = thread->GetTraceClockBase();
794 if (UNLIKELY(clock_base == 0)) {
795 // First event, record the base time in the map.
796 uint64_t time = thread->GetCpuMicroTime();
797 thread->SetTraceClockBase(time);
798 } else {
799 *thread_clock_diff = thread->GetCpuMicroTime() - clock_base;
800 }
801 }
802 if (UseWallClock()) {
803 *wall_clock_diff = MicroTime() - start_time_;
804 }
805}
806
Mathieu Chartiere401d142015-04-22 13:56:20 -0700807bool Trace::RegisterMethod(ArtMethod* method) {
Vladimir Markoc524e9e2019-03-26 10:54:50 +0000808 const DexFile* dex_file = method->GetDexFile();
Andreas Gampe7526d782015-06-22 22:53:45 -0700809 if (seen_methods_.find(dex_file) == seen_methods_.end()) {
810 seen_methods_.insert(std::make_pair(dex_file, new DexIndexBitSet()));
Andreas Gampe40da2862015-02-27 12:49:04 -0800811 }
Andreas Gampe7526d782015-06-22 22:53:45 -0700812 DexIndexBitSet* bit_set = seen_methods_.find(dex_file)->second;
Andreas Gampe40da2862015-02-27 12:49:04 -0800813 if (!(*bit_set)[method->GetDexMethodIndex()]) {
814 bit_set->set(method->GetDexMethodIndex());
815 return true;
816 }
817 return false;
818}
819
820bool Trace::RegisterThread(Thread* thread) {
821 pid_t tid = thread->GetTid();
822 CHECK_LT(0U, static_cast<uint32_t>(tid));
Alex Lighta344f6a2016-07-20 10:43:39 -0700823 CHECK_LT(static_cast<uint32_t>(tid), kMaxThreadIdNumber);
Andreas Gampe40da2862015-02-27 12:49:04 -0800824
825 if (!(*seen_threads_)[tid]) {
826 seen_threads_->set(tid);
827 return true;
828 }
829 return false;
830}
831
Mathieu Chartier4d64cd42015-06-02 16:38:29 -0700832std::string Trace::GetMethodLine(ArtMethod* method) {
Andreas Gampe542451c2016-07-26 09:02:02 -0700833 method = method->GetInterfaceMethodIfProxy(kRuntimePointerSize);
Alex Light0f7e8f52016-07-19 11:21:32 -0700834 return StringPrintf("%#x\t%s\t%s\t%s\t%s\n", (EncodeTraceMethod(method) << TraceActionBits),
Andreas Gampe40da2862015-02-27 12:49:04 -0800835 PrettyDescriptor(method->GetDeclaringClassDescriptor()).c_str(), method->GetName(),
836 method->GetSignature().ToString().c_str(), method->GetDeclaringClassSourceFile());
837}
838
839void Trace::WriteToBuf(const uint8_t* src, size_t src_size) {
Orion Hodson283ad2d2018-03-26 13:37:41 +0100840 // Updates to cur_offset_ are done under the streaming_lock_ here as in streaming mode.
Orion Hodson88591fe2018-03-06 13:35:43 +0000841 int32_t old_offset = cur_offset_.load(std::memory_order_relaxed);
Andreas Gampe40da2862015-02-27 12:49:04 -0800842 int32_t new_offset = old_offset + static_cast<int32_t>(src_size);
Andreas Gampee34a42c2015-04-25 14:44:29 -0700843 if (dchecked_integral_cast<size_t>(new_offset) > buffer_size_) {
Andreas Gampe40da2862015-02-27 12:49:04 -0800844 // Flush buffer.
845 if (!trace_file_->WriteFully(buf_.get(), old_offset)) {
846 PLOG(WARNING) << "Failed streaming a tracing event.";
847 }
Andreas Gampee34a42c2015-04-25 14:44:29 -0700848
849 // Check whether the data is too large for the buffer, then write immediately.
850 if (src_size >= buffer_size_) {
851 if (!trace_file_->WriteFully(src, src_size)) {
852 PLOG(WARNING) << "Failed streaming a tracing event.";
853 }
Orion Hodson283ad2d2018-03-26 13:37:41 +0100854 cur_offset_.store(0, std::memory_order_relaxed); // Buffer is empty now.
Andreas Gampee34a42c2015-04-25 14:44:29 -0700855 return;
856 }
857
Andreas Gampe40da2862015-02-27 12:49:04 -0800858 old_offset = 0;
859 new_offset = static_cast<int32_t>(src_size);
860 }
Orion Hodson283ad2d2018-03-26 13:37:41 +0100861 cur_offset_.store(new_offset, std::memory_order_relaxed);
Andreas Gampe40da2862015-02-27 12:49:04 -0800862 // Fill in data.
863 memcpy(buf_.get() + old_offset, src, src_size);
864}
865
Shukang Zhou8a5ab912017-01-20 11:40:16 -0800866void Trace::FlushBuf() {
Orion Hodson283ad2d2018-03-26 13:37:41 +0100867 // Updates to cur_offset_ are done under the streaming_lock_ here as in streaming mode.
Orion Hodson88591fe2018-03-06 13:35:43 +0000868 int32_t offset = cur_offset_.load(std::memory_order_relaxed);
Shukang Zhou8a5ab912017-01-20 11:40:16 -0800869 if (!trace_file_->WriteFully(buf_.get(), offset)) {
870 PLOG(WARNING) << "Failed flush the remaining data in streaming.";
871 }
Orion Hodson283ad2d2018-03-26 13:37:41 +0100872 cur_offset_.store(0, std::memory_order_relaxed);
Shukang Zhou8a5ab912017-01-20 11:40:16 -0800873}
874
Mathieu Chartiere401d142015-04-22 13:56:20 -0700875void Trace::LogMethodTraceEvent(Thread* thread, ArtMethod* method,
Jeff Haoc1ff4b72013-08-19 11:33:10 -0700876 instrumentation::Instrumentation::InstrumentationEvent event,
877 uint32_t thread_clock_diff, uint32_t wall_clock_diff) {
Orion Hodson283ad2d2018-03-26 13:37:41 +0100878 // This method is called in both tracing modes (method and
879 // sampling). In sampling mode, this method is only called by the
880 // sampling thread. In method tracing mode, it can be called
881 // concurrently.
882
Alex Light4ba388a2017-01-27 10:26:49 -0800883 // Ensure we always use the non-obsolete version of the method so that entry/exit events have the
884 // same pointer value.
885 method = method->GetNonObsoleteMethod();
Orion Hodson283ad2d2018-03-26 13:37:41 +0100886
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800887 // Advance cur_offset_ atomically.
888 int32_t new_offset;
Andreas Gampe40da2862015-02-27 12:49:04 -0800889 int32_t old_offset = 0;
890
Orion Hodson283ad2d2018-03-26 13:37:41 +0100891 // In the non-streaming case, we do a busy loop here trying to get
892 // an offset to write our record and advance cur_offset_ for the
893 // next use.
Andreas Gampe40da2862015-02-27 12:49:04 -0800894 if (trace_output_mode_ != TraceOutputMode::kStreaming) {
Orion Hodson283ad2d2018-03-26 13:37:41 +0100895 // Although multiple threads can call this method concurrently,
896 // the compare_exchange_weak here is still atomic (by definition).
897 // A succeeding update is visible to other cores when they pass
898 // through this point.
899 old_offset = cur_offset_.load(std::memory_order_relaxed); // Speculative read
Andreas Gampe40da2862015-02-27 12:49:04 -0800900 do {
Andreas Gampe40da2862015-02-27 12:49:04 -0800901 new_offset = old_offset + GetRecordSize(clock_source_);
Andreas Gampee34a42c2015-04-25 14:44:29 -0700902 if (static_cast<size_t>(new_offset) > buffer_size_) {
Andreas Gampe40da2862015-02-27 12:49:04 -0800903 overflow_ = true;
904 return;
905 }
Orion Hodson283ad2d2018-03-26 13:37:41 +0100906 } while (!cur_offset_.compare_exchange_weak(old_offset, new_offset, std::memory_order_relaxed));
Andreas Gampe40da2862015-02-27 12:49:04 -0800907 }
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800908
Ian Rogers62d6c772013-02-27 08:32:07 -0800909 TraceAction action = kTraceMethodEnter;
910 switch (event) {
911 case instrumentation::Instrumentation::kMethodEntered:
912 action = kTraceMethodEnter;
913 break;
914 case instrumentation::Instrumentation::kMethodExited:
915 action = kTraceMethodExit;
916 break;
917 case instrumentation::Instrumentation::kMethodUnwind:
918 action = kTraceUnroll;
919 break;
920 default:
921 UNIMPLEMENTED(FATAL) << "Unexpected event: " << event;
922 }
923
Mathieu Chartier4d64cd42015-06-02 16:38:29 -0700924 uint32_t method_value = EncodeTraceMethodAndAction(method, action);
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800925
Orion Hodson283ad2d2018-03-26 13:37:41 +0100926 // Write data into the tracing buffer (if not streaming) or into a
927 // small buffer on the stack (if streaming) which we'll put into the
928 // tracing buffer below.
929 //
930 // These writes to the tracing buffer are synchronised with the
931 // future reads that (only) occur under FinishTracing(). The callers
932 // of FinishTracing() acquire locks and (implicitly) synchronise
933 // the buffer memory.
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();
Stephen Hines48ba1972018-09-24 13:35:54 -07001012 for (const auto& it : exited_threads_) {
Jeff Haoe094b872014-10-14 13:12:01 -07001013 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