• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
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  */
16 
17 #include "trace.h"
18 
19 #include <sys/uio.h>
20 #include <unistd.h>
21 
22 #include "android-base/macros.h"
23 #include "android-base/stringprintf.h"
24 
25 #include "art_method-inl.h"
26 #include "base/casts.h"
27 #include "base/enums.h"
28 #include "base/os.h"
29 #include "base/stl_util.h"
30 #include "base/systrace.h"
31 #include "base/time_utils.h"
32 #include "base/unix_file/fd_file.h"
33 #include "base/utils.h"
34 #include "class_linker.h"
35 #include "common_throws.h"
36 #include "debugger.h"
37 #include "dex/descriptors_names.h"
38 #include "dex/dex_file-inl.h"
39 #include "entrypoints/quick/quick_entrypoints.h"
40 #include "gc/scoped_gc_critical_section.h"
41 #include "instrumentation.h"
42 #include "jit/jit.h"
43 #include "jit/jit_code_cache.h"
44 #include "mirror/class-inl.h"
45 #include "mirror/dex_cache-inl.h"
46 #include "mirror/object-inl.h"
47 #include "mirror/object_array-inl.h"
48 #include "nativehelper/scoped_local_ref.h"
49 #include "scoped_thread_state_change-inl.h"
50 #include "stack.h"
51 #include "thread.h"
52 #include "thread_list.h"
53 
54 namespace art {
55 
56 using android::base::StringPrintf;
57 
58 static constexpr size_t TraceActionBits = MinimumBitsToStore(
59     static_cast<size_t>(kTraceMethodActionMask));
60 static constexpr uint8_t kOpNewMethod = 1U;
61 static constexpr uint8_t kOpNewThread = 2U;
62 static constexpr uint8_t kOpTraceSummary = 3U;
63 
64 static const char     kTraceTokenChar             = '*';
65 static const uint16_t kTraceHeaderLength          = 32;
66 static const uint32_t kTraceMagicValue            = 0x574f4c53;
67 static const uint16_t kTraceVersionSingleClock    = 2;
68 static const uint16_t kTraceVersionDualClock      = 3;
69 static const uint16_t kTraceRecordSizeSingleClock = 10;  // using v2
70 static const uint16_t kTraceRecordSizeDualClock   = 14;  // using v3 with two timestamps
71 
72 TraceClockSource Trace::default_clock_source_ = kDefaultTraceClockSource;
73 
74 Trace* volatile Trace::the_trace_ = nullptr;
75 pthread_t Trace::sampling_pthread_ = 0U;
76 std::unique_ptr<std::vector<ArtMethod*>> Trace::temp_stack_trace_;
77 
78 // The key identifying the tracer to update instrumentation.
79 static constexpr const char* kTracerInstrumentationKey = "Tracer";
80 
DecodeTraceAction(uint32_t tmid)81 static TraceAction DecodeTraceAction(uint32_t tmid) {
82   return static_cast<TraceAction>(tmid & kTraceMethodActionMask);
83 }
84 
DecodeTraceMethod(uint32_t tmid)85 ArtMethod* Trace::DecodeTraceMethod(uint32_t tmid) {
86   MutexLock mu(Thread::Current(), *unique_methods_lock_);
87   return unique_methods_[tmid >> TraceActionBits];
88 }
89 
EncodeTraceMethod(ArtMethod * method)90 uint32_t Trace::EncodeTraceMethod(ArtMethod* method) {
91   MutexLock mu(Thread::Current(), *unique_methods_lock_);
92   uint32_t idx;
93   auto it = art_method_id_map_.find(method);
94   if (it != art_method_id_map_.end()) {
95     idx = it->second;
96   } else {
97     unique_methods_.push_back(method);
98     idx = unique_methods_.size() - 1;
99     art_method_id_map_.emplace(method, idx);
100   }
101   DCHECK_LT(idx, unique_methods_.size());
102   DCHECK_EQ(unique_methods_[idx], method);
103   return idx;
104 }
105 
EncodeTraceMethodAndAction(ArtMethod * method,TraceAction action)106 uint32_t Trace::EncodeTraceMethodAndAction(ArtMethod* method, TraceAction action) {
107   uint32_t tmid = (EncodeTraceMethod(method) << TraceActionBits) | action;
108   DCHECK_EQ(method, DecodeTraceMethod(tmid));
109   return tmid;
110 }
111 
AllocStackTrace()112 std::vector<ArtMethod*>* Trace::AllocStackTrace() {
113   return (temp_stack_trace_.get() != nullptr)  ? temp_stack_trace_.release() :
114       new std::vector<ArtMethod*>();
115 }
116 
FreeStackTrace(std::vector<ArtMethod * > * stack_trace)117 void Trace::FreeStackTrace(std::vector<ArtMethod*>* stack_trace) {
118   stack_trace->clear();
119   temp_stack_trace_.reset(stack_trace);
120 }
121 
SetDefaultClockSource(TraceClockSource clock_source)122 void Trace::SetDefaultClockSource(TraceClockSource clock_source) {
123 #if defined(__linux__)
124   default_clock_source_ = clock_source;
125 #else
126   if (clock_source != TraceClockSource::kWall) {
127     LOG(WARNING) << "Ignoring tracing request to use CPU time.";
128   }
129 #endif
130 }
131 
GetTraceVersion(TraceClockSource clock_source)132 static uint16_t GetTraceVersion(TraceClockSource clock_source) {
133   return (clock_source == TraceClockSource::kDual) ? kTraceVersionDualClock
134                                                     : kTraceVersionSingleClock;
135 }
136 
GetRecordSize(TraceClockSource clock_source)137 static uint16_t GetRecordSize(TraceClockSource clock_source) {
138   return (clock_source == TraceClockSource::kDual) ? kTraceRecordSizeDualClock
139                                                     : kTraceRecordSizeSingleClock;
140 }
141 
UseThreadCpuClock()142 bool Trace::UseThreadCpuClock() {
143   return (clock_source_ == TraceClockSource::kThreadCpu) ||
144       (clock_source_ == TraceClockSource::kDual);
145 }
146 
UseWallClock()147 bool Trace::UseWallClock() {
148   return (clock_source_ == TraceClockSource::kWall) ||
149       (clock_source_ == TraceClockSource::kDual);
150 }
151 
MeasureClockOverhead()152 void Trace::MeasureClockOverhead() {
153   if (UseThreadCpuClock()) {
154     Thread::Current()->GetCpuMicroTime();
155   }
156   if (UseWallClock()) {
157     MicroTime();
158   }
159 }
160 
161 // Compute an average time taken to measure clocks.
GetClockOverheadNanoSeconds()162 uint32_t Trace::GetClockOverheadNanoSeconds() {
163   Thread* self = Thread::Current();
164   uint64_t start = self->GetCpuMicroTime();
165 
166   for (int i = 4000; i > 0; i--) {
167     MeasureClockOverhead();
168     MeasureClockOverhead();
169     MeasureClockOverhead();
170     MeasureClockOverhead();
171     MeasureClockOverhead();
172     MeasureClockOverhead();
173     MeasureClockOverhead();
174     MeasureClockOverhead();
175   }
176 
177   uint64_t elapsed_us = self->GetCpuMicroTime() - start;
178   return static_cast<uint32_t>(elapsed_us / 32);
179 }
180 
181 // TODO: put this somewhere with the big-endian equivalent used by JDWP.
Append2LE(uint8_t * buf,uint16_t val)182 static void Append2LE(uint8_t* buf, uint16_t val) {
183   *buf++ = static_cast<uint8_t>(val);
184   *buf++ = static_cast<uint8_t>(val >> 8);
185 }
186 
187 // TODO: put this somewhere with the big-endian equivalent used by JDWP.
Append4LE(uint8_t * buf,uint32_t val)188 static void Append4LE(uint8_t* buf, uint32_t val) {
189   *buf++ = static_cast<uint8_t>(val);
190   *buf++ = static_cast<uint8_t>(val >> 8);
191   *buf++ = static_cast<uint8_t>(val >> 16);
192   *buf++ = static_cast<uint8_t>(val >> 24);
193 }
194 
195 // TODO: put this somewhere with the big-endian equivalent used by JDWP.
Append8LE(uint8_t * buf,uint64_t val)196 static void Append8LE(uint8_t* buf, uint64_t val) {
197   *buf++ = static_cast<uint8_t>(val);
198   *buf++ = static_cast<uint8_t>(val >> 8);
199   *buf++ = static_cast<uint8_t>(val >> 16);
200   *buf++ = static_cast<uint8_t>(val >> 24);
201   *buf++ = static_cast<uint8_t>(val >> 32);
202   *buf++ = static_cast<uint8_t>(val >> 40);
203   *buf++ = static_cast<uint8_t>(val >> 48);
204   *buf++ = static_cast<uint8_t>(val >> 56);
205 }
206 
GetSample(Thread * thread,void * arg)207 static void GetSample(Thread* thread, void* arg) REQUIRES_SHARED(Locks::mutator_lock_) {
208   std::vector<ArtMethod*>* const stack_trace = Trace::AllocStackTrace();
209   StackVisitor::WalkStack(
210       [&](const art::StackVisitor* stack_visitor) REQUIRES_SHARED(Locks::mutator_lock_) {
211         ArtMethod* m = stack_visitor->GetMethod();
212         // Ignore runtime frames (in particular callee save).
213         if (!m->IsRuntimeMethod()) {
214           stack_trace->push_back(m);
215         }
216         return true;
217       },
218       thread,
219       /* context= */ nullptr,
220       art::StackVisitor::StackWalkKind::kIncludeInlinedFrames);
221   Trace* the_trace = reinterpret_cast<Trace*>(arg);
222   the_trace->CompareAndUpdateStackTrace(thread, stack_trace);
223 }
224 
ClearThreadStackTraceAndClockBase(Thread * thread,void * arg ATTRIBUTE_UNUSED)225 static void ClearThreadStackTraceAndClockBase(Thread* thread, void* arg ATTRIBUTE_UNUSED) {
226   thread->SetTraceClockBase(0);
227   std::vector<ArtMethod*>* stack_trace = thread->GetStackTraceSample();
228   thread->SetStackTraceSample(nullptr);
229   delete stack_trace;
230 }
231 
CompareAndUpdateStackTrace(Thread * thread,std::vector<ArtMethod * > * stack_trace)232 void Trace::CompareAndUpdateStackTrace(Thread* thread,
233                                        std::vector<ArtMethod*>* stack_trace) {
234   CHECK_EQ(pthread_self(), sampling_pthread_);
235   std::vector<ArtMethod*>* old_stack_trace = thread->GetStackTraceSample();
236   // Update the thread's stack trace sample.
237   thread->SetStackTraceSample(stack_trace);
238   // Read timer clocks to use for all events in this trace.
239   uint32_t thread_clock_diff = 0;
240   uint32_t wall_clock_diff = 0;
241   ReadClocks(thread, &thread_clock_diff, &wall_clock_diff);
242   if (old_stack_trace == nullptr) {
243     // If there's no previous stack trace sample for this thread, log an entry event for all
244     // methods in the trace.
245     for (auto rit = stack_trace->rbegin(); rit != stack_trace->rend(); ++rit) {
246       LogMethodTraceEvent(thread, *rit, instrumentation::Instrumentation::kMethodEntered,
247                           thread_clock_diff, wall_clock_diff);
248     }
249   } else {
250     // If there's a previous stack trace for this thread, diff the traces and emit entry and exit
251     // events accordingly.
252     auto old_rit = old_stack_trace->rbegin();
253     auto rit = stack_trace->rbegin();
254     // Iterate bottom-up over both traces until there's a difference between them.
255     while (old_rit != old_stack_trace->rend() && rit != stack_trace->rend() && *old_rit == *rit) {
256       old_rit++;
257       rit++;
258     }
259     // Iterate top-down over the old trace until the point where they differ, emitting exit events.
260     for (auto old_it = old_stack_trace->begin(); old_it != old_rit.base(); ++old_it) {
261       LogMethodTraceEvent(thread, *old_it, instrumentation::Instrumentation::kMethodExited,
262                           thread_clock_diff, wall_clock_diff);
263     }
264     // Iterate bottom-up over the new trace from the point where they differ, emitting entry events.
265     for (; rit != stack_trace->rend(); ++rit) {
266       LogMethodTraceEvent(thread, *rit, instrumentation::Instrumentation::kMethodEntered,
267                           thread_clock_diff, wall_clock_diff);
268     }
269     FreeStackTrace(old_stack_trace);
270   }
271 }
272 
RunSamplingThread(void * arg)273 void* Trace::RunSamplingThread(void* arg) {
274   Runtime* runtime = Runtime::Current();
275   intptr_t interval_us = reinterpret_cast<intptr_t>(arg);
276   CHECK_GE(interval_us, 0);
277   CHECK(runtime->AttachCurrentThread("Sampling Profiler", true, runtime->GetSystemThreadGroup(),
278                                      !runtime->IsAotCompiler()));
279 
280   while (true) {
281     usleep(interval_us);
282     ScopedTrace trace("Profile sampling");
283     Thread* self = Thread::Current();
284     Trace* the_trace;
285     {
286       MutexLock mu(self, *Locks::trace_lock_);
287       the_trace = the_trace_;
288       if (the_trace == nullptr) {
289         break;
290       }
291     }
292     {
293       // Avoid a deadlock between a thread doing garbage collection
294       // and the profile sampling thread, by blocking GC when sampling
295       // thread stacks (see b/73624630).
296       gc::ScopedGCCriticalSection gcs(self,
297                                       art::gc::kGcCauseInstrumentation,
298                                       art::gc::kCollectorTypeInstrumentation);
299       ScopedSuspendAll ssa(__FUNCTION__);
300       MutexLock mu(self, *Locks::thread_list_lock_);
301       runtime->GetThreadList()->ForEach(GetSample, the_trace);
302     }
303   }
304 
305   runtime->DetachCurrentThread();
306   return nullptr;
307 }
308 
Start(const char * trace_filename,size_t buffer_size,int flags,TraceOutputMode output_mode,TraceMode trace_mode,int interval_us)309 void Trace::Start(const char* trace_filename,
310                   size_t buffer_size,
311                   int flags,
312                   TraceOutputMode output_mode,
313                   TraceMode trace_mode,
314                   int interval_us) {
315   std::unique_ptr<File> file(OS::CreateEmptyFileWriteOnly(trace_filename));
316   if (file == nullptr) {
317     std::string msg = android::base::StringPrintf("Unable to open trace file '%s'", trace_filename);
318     PLOG(ERROR) << msg;
319     ScopedObjectAccess soa(Thread::Current());
320     Thread::Current()->ThrowNewException("Ljava/lang/RuntimeException;", msg.c_str());
321     return;
322   }
323   Start(std::move(file), buffer_size, flags, output_mode, trace_mode, interval_us);
324 }
325 
Start(int trace_fd,size_t buffer_size,int flags,TraceOutputMode output_mode,TraceMode trace_mode,int interval_us)326 void Trace::Start(int trace_fd,
327                   size_t buffer_size,
328                   int flags,
329                   TraceOutputMode output_mode,
330                   TraceMode trace_mode,
331                   int interval_us) {
332   if (trace_fd < 0) {
333     std::string msg = android::base::StringPrintf("Unable to start tracing with invalid fd %d",
334                                                   trace_fd);
335     LOG(ERROR) << msg;
336     ScopedObjectAccess soa(Thread::Current());
337     Thread::Current()->ThrowNewException("Ljava/lang/RuntimeException;", msg.c_str());
338     return;
339   }
340   std::unique_ptr<File> file(new File(trace_fd, /* path= */ "tracefile", /* check_usage= */ true));
341   Start(std::move(file), buffer_size, flags, output_mode, trace_mode, interval_us);
342 }
343 
StartDDMS(size_t buffer_size,int flags,TraceMode trace_mode,int interval_us)344 void Trace::StartDDMS(size_t buffer_size,
345                       int flags,
346                       TraceMode trace_mode,
347                       int interval_us) {
348   Start(std::unique_ptr<File>(),
349         buffer_size,
350         flags,
351         TraceOutputMode::kDDMS,
352         trace_mode,
353         interval_us);
354 }
355 
Start(std::unique_ptr<File> && trace_file_in,size_t buffer_size,int flags,TraceOutputMode output_mode,TraceMode trace_mode,int interval_us)356 void Trace::Start(std::unique_ptr<File>&& trace_file_in,
357                   size_t buffer_size,
358                   int flags,
359                   TraceOutputMode output_mode,
360                   TraceMode trace_mode,
361                   int interval_us) {
362   // We own trace_file now and are responsible for closing it. To account for error situations, use
363   // a specialized unique_ptr to ensure we close it on the way out (if it hasn't been passed to a
364   // Trace instance).
365   auto deleter = [](File* file) {
366     if (file != nullptr) {
367       file->MarkUnchecked();  // Don't deal with flushing requirements.
368       int result ATTRIBUTE_UNUSED = file->Close();
369       delete file;
370     }
371   };
372   std::unique_ptr<File, decltype(deleter)> trace_file(trace_file_in.release(), deleter);
373 
374   Thread* self = Thread::Current();
375   {
376     MutexLock mu(self, *Locks::trace_lock_);
377     if (the_trace_ != nullptr) {
378       LOG(ERROR) << "Trace already in progress, ignoring this request";
379       return;
380     }
381   }
382 
383   // Check interval if sampling is enabled
384   if (trace_mode == TraceMode::kSampling && interval_us <= 0) {
385     LOG(ERROR) << "Invalid sampling interval: " << interval_us;
386     ScopedObjectAccess soa(self);
387     ThrowRuntimeException("Invalid sampling interval: %d", interval_us);
388     return;
389   }
390 
391   Runtime* runtime = Runtime::Current();
392 
393   // Enable count of allocs if specified in the flags.
394   bool enable_stats = false;
395 
396   if (runtime->GetJit() != nullptr) {
397     // TODO b/110263880 It would be better if we didn't need to do this.
398     // Since we need to hold the method entrypoint across a suspend to ensure instrumentation
399     // hooks are called correctly we have to disable jit-gc to ensure that the entrypoint doesn't
400     // go away. Furthermore we need to leave this off permanently since one could get the same
401     // effect by causing this to be toggled on and off.
402     runtime->GetJit()->GetCodeCache()->SetGarbageCollectCode(false);
403   }
404 
405   // Create Trace object.
406   {
407     // Required since EnableMethodTracing calls ConfigureStubs which visits class linker classes.
408     gc::ScopedGCCriticalSection gcs(self,
409                                     gc::kGcCauseInstrumentation,
410                                     gc::kCollectorTypeInstrumentation);
411     ScopedSuspendAll ssa(__FUNCTION__);
412     MutexLock mu(self, *Locks::trace_lock_);
413     if (the_trace_ != nullptr) {
414       LOG(ERROR) << "Trace already in progress, ignoring this request";
415     } else {
416       enable_stats = (flags & kTraceCountAllocs) != 0;
417       the_trace_ = new Trace(trace_file.release(), buffer_size, flags, output_mode, trace_mode);
418       if (trace_mode == TraceMode::kSampling) {
419         CHECK_PTHREAD_CALL(pthread_create, (&sampling_pthread_, nullptr, &RunSamplingThread,
420                                             reinterpret_cast<void*>(interval_us)),
421                                             "Sampling profiler thread");
422         the_trace_->interval_us_ = interval_us;
423       } else {
424         runtime->GetInstrumentation()->AddListener(
425             the_trace_,
426             instrumentation::Instrumentation::kMethodEntered |
427                 instrumentation::Instrumentation::kMethodExited |
428                 instrumentation::Instrumentation::kMethodUnwind);
429         // TODO: In full-PIC mode, we don't need to fully deopt.
430         // TODO: We can only use trampoline entrypoints if we are java-debuggable since in that case
431         // we know that inlining and other problematic optimizations are disabled. We might just
432         // want to use the trampolines anyway since it is faster. It makes the story with disabling
433         // jit-gc more complex though.
434         runtime->GetInstrumentation()->EnableMethodTracing(
435             kTracerInstrumentationKey, /*needs_interpreter=*/!runtime->IsJavaDebuggable());
436       }
437     }
438   }
439 
440   // Can't call this when holding the mutator lock.
441   if (enable_stats) {
442     runtime->SetStatsEnabled(true);
443   }
444 }
445 
StopTracing(bool finish_tracing,bool flush_file)446 void Trace::StopTracing(bool finish_tracing, bool flush_file) {
447   bool stop_alloc_counting = false;
448   Runtime* const runtime = Runtime::Current();
449   Trace* the_trace = nullptr;
450   Thread* const self = Thread::Current();
451   pthread_t sampling_pthread = 0U;
452   {
453     MutexLock mu(self, *Locks::trace_lock_);
454     if (the_trace_ == nullptr) {
455       LOG(ERROR) << "Trace stop requested, but no trace currently running";
456     } else {
457       the_trace = the_trace_;
458       the_trace_ = nullptr;
459       sampling_pthread = sampling_pthread_;
460     }
461   }
462   // Make sure that we join before we delete the trace since we don't want to have
463   // the sampling thread access a stale pointer. This finishes since the sampling thread exits when
464   // the_trace_ is null.
465   if (sampling_pthread != 0U) {
466     CHECK_PTHREAD_CALL(pthread_join, (sampling_pthread, nullptr), "sampling thread shutdown");
467     sampling_pthread_ = 0U;
468   }
469 
470   if (the_trace != nullptr) {
471     stop_alloc_counting = (the_trace->flags_ & Trace::kTraceCountAllocs) != 0;
472     // Stop the trace sources adding more entries to the trace buffer and synchronise stores.
473     {
474       gc::ScopedGCCriticalSection gcs(self,
475                                       gc::kGcCauseInstrumentation,
476                                       gc::kCollectorTypeInstrumentation);
477       ScopedSuspendAll ssa(__FUNCTION__);
478 
479       if (the_trace->trace_mode_ == TraceMode::kSampling) {
480         MutexLock mu(self, *Locks::thread_list_lock_);
481         runtime->GetThreadList()->ForEach(ClearThreadStackTraceAndClockBase, nullptr);
482       } else {
483         runtime->GetInstrumentation()->RemoveListener(
484             the_trace,
485             instrumentation::Instrumentation::kMethodEntered |
486                 instrumentation::Instrumentation::kMethodExited |
487                 instrumentation::Instrumentation::kMethodUnwind);
488         runtime->GetInstrumentation()->DisableMethodTracing(kTracerInstrumentationKey);
489       }
490     }
491     // At this point, code may read buf_ as it's writers are shutdown
492     // and the ScopedSuspendAll above has ensured all stores to buf_
493     // are now visible.
494     if (finish_tracing) {
495       the_trace->FinishTracing();
496     }
497     if (the_trace->trace_file_.get() != nullptr) {
498       // Do not try to erase, so flush and close explicitly.
499       if (flush_file) {
500         if (the_trace->trace_file_->Flush() != 0) {
501           PLOG(WARNING) << "Could not flush trace file.";
502         }
503       } else {
504         the_trace->trace_file_->MarkUnchecked();  // Do not trigger guard.
505       }
506       if (the_trace->trace_file_->Close() != 0) {
507         PLOG(ERROR) << "Could not close trace file.";
508       }
509     }
510     delete the_trace;
511   }
512   if (stop_alloc_counting) {
513     // Can be racy since SetStatsEnabled is not guarded by any locks.
514     runtime->SetStatsEnabled(false);
515   }
516 }
517 
Abort()518 void Trace::Abort() {
519   // Do not write anything anymore.
520   StopTracing(false, false);
521 }
522 
Stop()523 void Trace::Stop() {
524   // Finish writing.
525   StopTracing(true, true);
526 }
527 
Shutdown()528 void Trace::Shutdown() {
529   if (GetMethodTracingMode() != kTracingInactive) {
530     Stop();
531   }
532 }
533 
GetMethodTracingMode()534 TracingMode Trace::GetMethodTracingMode() {
535   MutexLock mu(Thread::Current(), *Locks::trace_lock_);
536   if (the_trace_ == nullptr) {
537     return kTracingInactive;
538   } else {
539     switch (the_trace_->trace_mode_) {
540       case TraceMode::kSampling:
541         return kSampleProfilingActive;
542       case TraceMode::kMethodTracing:
543         return kMethodTracingActive;
544     }
545     LOG(FATAL) << "Unreachable";
546     UNREACHABLE();
547   }
548 }
549 
550 static constexpr size_t kMinBufSize = 18U;  // Trace header is up to 18B.
551 
Trace(File * trace_file,size_t buffer_size,int flags,TraceOutputMode output_mode,TraceMode trace_mode)552 Trace::Trace(File* trace_file,
553              size_t buffer_size,
554              int flags,
555              TraceOutputMode output_mode,
556              TraceMode trace_mode)
557     : trace_file_(trace_file),
558       buf_(new uint8_t[std::max(kMinBufSize, buffer_size)]()),
559       flags_(flags), trace_output_mode_(output_mode), trace_mode_(trace_mode),
560       clock_source_(default_clock_source_),
561       buffer_size_(std::max(kMinBufSize, buffer_size)),
562       start_time_(MicroTime()), clock_overhead_ns_(GetClockOverheadNanoSeconds()),
563       overflow_(false), interval_us_(0), streaming_lock_(nullptr),
564       unique_methods_lock_(new Mutex("unique methods lock", kTracingUniqueMethodsLock)) {
565   CHECK_IMPLIES(trace_file == nullptr, output_mode == TraceOutputMode::kDDMS);
566 
567   uint16_t trace_version = GetTraceVersion(clock_source_);
568   if (output_mode == TraceOutputMode::kStreaming) {
569     trace_version |= 0xF0U;
570   }
571   // Set up the beginning of the trace.
572   memset(buf_.get(), 0, kTraceHeaderLength);
573   Append4LE(buf_.get(), kTraceMagicValue);
574   Append2LE(buf_.get() + 4, trace_version);
575   Append2LE(buf_.get() + 6, kTraceHeaderLength);
576   Append8LE(buf_.get() + 8, start_time_);
577   if (trace_version >= kTraceVersionDualClock) {
578     uint16_t record_size = GetRecordSize(clock_source_);
579     Append2LE(buf_.get() + 16, record_size);
580   }
581   static_assert(18 <= kMinBufSize, "Minimum buffer size not large enough for trace header");
582 
583   cur_offset_.store(kTraceHeaderLength, std::memory_order_relaxed);
584 
585   if (output_mode == TraceOutputMode::kStreaming) {
586     streaming_lock_ = new Mutex("tracing lock", LockLevel::kTracingStreamingLock);
587     seen_threads_.reset(new ThreadIDBitSet());
588   }
589 }
590 
~Trace()591 Trace::~Trace() {
592   delete streaming_lock_;
593   delete unique_methods_lock_;
594 }
595 
ReadBytes(uint8_t * buf,size_t bytes)596 static uint64_t ReadBytes(uint8_t* buf, size_t bytes) {
597   uint64_t ret = 0;
598   for (size_t i = 0; i < bytes; ++i) {
599     ret |= static_cast<uint64_t>(buf[i]) << (i * 8);
600   }
601   return ret;
602 }
603 
DumpBuf(uint8_t * buf,size_t buf_size,TraceClockSource clock_source)604 void Trace::DumpBuf(uint8_t* buf, size_t buf_size, TraceClockSource clock_source) {
605   uint8_t* ptr = buf + kTraceHeaderLength;
606   uint8_t* end = buf + buf_size;
607 
608   while (ptr < end) {
609     uint32_t tmid = ReadBytes(ptr + 2, sizeof(tmid));
610     ArtMethod* method = DecodeTraceMethod(tmid);
611     TraceAction action = DecodeTraceAction(tmid);
612     LOG(INFO) << ArtMethod::PrettyMethod(method) << " " << static_cast<int>(action);
613     ptr += GetRecordSize(clock_source);
614   }
615 }
616 
FinishTracing()617 void Trace::FinishTracing() {
618   size_t final_offset = 0;
619   std::set<ArtMethod*> visited_methods;
620   if (trace_output_mode_ == TraceOutputMode::kStreaming) {
621     // Clean up.
622     MutexLock mu(Thread::Current(), *streaming_lock_);
623     STLDeleteValues(&seen_methods_);
624   } else {
625     final_offset = cur_offset_.load(std::memory_order_relaxed);
626     GetVisitedMethods(final_offset, &visited_methods);
627   }
628 
629   // Compute elapsed time.
630   uint64_t elapsed = MicroTime() - start_time_;
631 
632   std::ostringstream os;
633 
634   os << StringPrintf("%cversion\n", kTraceTokenChar);
635   os << StringPrintf("%d\n", GetTraceVersion(clock_source_));
636   os << StringPrintf("data-file-overflow=%s\n", overflow_ ? "true" : "false");
637   if (UseThreadCpuClock()) {
638     if (UseWallClock()) {
639       os << StringPrintf("clock=dual\n");
640     } else {
641       os << StringPrintf("clock=thread-cpu\n");
642     }
643   } else {
644     os << StringPrintf("clock=wall\n");
645   }
646   os << StringPrintf("elapsed-time-usec=%" PRIu64 "\n", elapsed);
647   if (trace_output_mode_ != TraceOutputMode::kStreaming) {
648     size_t num_records = (final_offset - kTraceHeaderLength) / GetRecordSize(clock_source_);
649     os << StringPrintf("num-method-calls=%zd\n", num_records);
650   }
651   os << StringPrintf("clock-call-overhead-nsec=%d\n", clock_overhead_ns_);
652   os << StringPrintf("vm=art\n");
653   os << StringPrintf("pid=%d\n", getpid());
654   if ((flags_ & kTraceCountAllocs) != 0) {
655     os << "alloc-count=" << Runtime::Current()->GetStat(KIND_ALLOCATED_OBJECTS) << "\n";
656     os << "alloc-size=" << Runtime::Current()->GetStat(KIND_ALLOCATED_BYTES) << "\n";
657     os << "gc-count=" <<  Runtime::Current()->GetStat(KIND_GC_INVOCATIONS) << "\n";
658   }
659   os << StringPrintf("%cthreads\n", kTraceTokenChar);
660   DumpThreadList(os);
661   os << StringPrintf("%cmethods\n", kTraceTokenChar);
662   DumpMethodList(os, visited_methods);
663   os << StringPrintf("%cend\n", kTraceTokenChar);
664   std::string header(os.str());
665 
666   if (trace_output_mode_ == TraceOutputMode::kStreaming) {
667     // Protect access to buf_ and satisfy sanitizer for calls to WriteBuf / FlushBuf.
668     MutexLock mu(Thread::Current(), *streaming_lock_);
669     // Write a special token to mark the end of trace records and the start of
670     // trace summary.
671     uint8_t buf[7];
672     Append2LE(buf, 0);
673     buf[2] = kOpTraceSummary;
674     Append4LE(buf + 3, static_cast<uint32_t>(header.length()));
675     WriteToBuf(buf, sizeof(buf));
676     // Write the trace summary. The summary is identical to the file header when
677     // the output mode is not streaming (except for methods).
678     WriteToBuf(reinterpret_cast<const uint8_t*>(header.c_str()), header.length());
679     // Flush the buffer, which may include some trace records before the summary.
680     FlushBuf();
681   } else {
682     if (trace_file_.get() == nullptr) {
683       std::vector<uint8_t> data;
684       data.resize(header.length() + final_offset);
685       memcpy(data.data(), header.c_str(), header.length());
686       memcpy(data.data() + header.length(), buf_.get(), final_offset);
687       Runtime::Current()->GetRuntimeCallbacks()->DdmPublishChunk(CHUNK_TYPE("MPSE"),
688                                                                  ArrayRef<const uint8_t>(data));
689       const bool kDumpTraceInfo = false;
690       if (kDumpTraceInfo) {
691         LOG(INFO) << "Trace sent:\n" << header;
692         DumpBuf(buf_.get(), final_offset, clock_source_);
693       }
694     } else {
695       if (!trace_file_->WriteFully(header.c_str(), header.length()) ||
696           !trace_file_->WriteFully(buf_.get(), final_offset)) {
697         std::string detail(StringPrintf("Trace data write failed: %s", strerror(errno)));
698         PLOG(ERROR) << detail;
699         ThrowRuntimeException("%s", detail.c_str());
700       }
701     }
702   }
703 }
704 
DexPcMoved(Thread * thread ATTRIBUTE_UNUSED,Handle<mirror::Object> this_object ATTRIBUTE_UNUSED,ArtMethod * method,uint32_t new_dex_pc)705 void Trace::DexPcMoved(Thread* thread ATTRIBUTE_UNUSED,
706                        Handle<mirror::Object> this_object ATTRIBUTE_UNUSED,
707                        ArtMethod* method,
708                        uint32_t new_dex_pc) {
709   // We're not recorded to listen to this kind of event, so complain.
710   LOG(ERROR) << "Unexpected dex PC event in tracing " << ArtMethod::PrettyMethod(method)
711              << " " << new_dex_pc;
712 }
713 
FieldRead(Thread * thread ATTRIBUTE_UNUSED,Handle<mirror::Object> this_object ATTRIBUTE_UNUSED,ArtMethod * method,uint32_t dex_pc,ArtField * field ATTRIBUTE_UNUSED)714 void Trace::FieldRead(Thread* thread ATTRIBUTE_UNUSED,
715                       Handle<mirror::Object> this_object ATTRIBUTE_UNUSED,
716                       ArtMethod* method,
717                       uint32_t dex_pc,
718                       ArtField* field ATTRIBUTE_UNUSED)
719     REQUIRES_SHARED(Locks::mutator_lock_) {
720   // We're not recorded to listen to this kind of event, so complain.
721   LOG(ERROR) << "Unexpected field read event in tracing " << ArtMethod::PrettyMethod(method)
722              << " " << dex_pc;
723 }
724 
FieldWritten(Thread * thread ATTRIBUTE_UNUSED,Handle<mirror::Object> this_object ATTRIBUTE_UNUSED,ArtMethod * method,uint32_t dex_pc,ArtField * field ATTRIBUTE_UNUSED,const JValue & field_value ATTRIBUTE_UNUSED)725 void Trace::FieldWritten(Thread* thread ATTRIBUTE_UNUSED,
726                          Handle<mirror::Object> this_object ATTRIBUTE_UNUSED,
727                          ArtMethod* method,
728                          uint32_t dex_pc,
729                          ArtField* field ATTRIBUTE_UNUSED,
730                          const JValue& field_value ATTRIBUTE_UNUSED)
731     REQUIRES_SHARED(Locks::mutator_lock_) {
732   // We're not recorded to listen to this kind of event, so complain.
733   LOG(ERROR) << "Unexpected field write event in tracing " << ArtMethod::PrettyMethod(method)
734              << " " << dex_pc;
735 }
736 
MethodEntered(Thread * thread,ArtMethod * method)737 void Trace::MethodEntered(Thread* thread, ArtMethod* method) {
738   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);
743 }
744 
MethodExited(Thread * thread,ArtMethod * method,instrumentation::OptionalFrame frame ATTRIBUTE_UNUSED,JValue & return_value ATTRIBUTE_UNUSED)745 void Trace::MethodExited(Thread* thread,
746                          ArtMethod* method,
747                          instrumentation::OptionalFrame frame ATTRIBUTE_UNUSED,
748                          JValue& return_value ATTRIBUTE_UNUSED) {
749   uint32_t thread_clock_diff = 0;
750   uint32_t wall_clock_diff = 0;
751   ReadClocks(thread, &thread_clock_diff, &wall_clock_diff);
752   LogMethodTraceEvent(thread,
753                       method,
754                       instrumentation::Instrumentation::kMethodExited,
755                       thread_clock_diff,
756                       wall_clock_diff);
757 }
758 
MethodUnwind(Thread * thread,Handle<mirror::Object> this_object ATTRIBUTE_UNUSED,ArtMethod * method,uint32_t dex_pc ATTRIBUTE_UNUSED)759 void Trace::MethodUnwind(Thread* thread,
760                          Handle<mirror::Object> this_object ATTRIBUTE_UNUSED,
761                          ArtMethod* method,
762                          uint32_t dex_pc ATTRIBUTE_UNUSED) {
763   uint32_t thread_clock_diff = 0;
764   uint32_t wall_clock_diff = 0;
765   ReadClocks(thread, &thread_clock_diff, &wall_clock_diff);
766   LogMethodTraceEvent(thread, method, instrumentation::Instrumentation::kMethodUnwind,
767                       thread_clock_diff, wall_clock_diff);
768 }
769 
ExceptionThrown(Thread * thread ATTRIBUTE_UNUSED,Handle<mirror::Throwable> exception_object ATTRIBUTE_UNUSED)770 void Trace::ExceptionThrown(Thread* thread ATTRIBUTE_UNUSED,
771                             Handle<mirror::Throwable> exception_object ATTRIBUTE_UNUSED)
772     REQUIRES_SHARED(Locks::mutator_lock_) {
773   LOG(ERROR) << "Unexpected exception thrown event in tracing";
774 }
775 
ExceptionHandled(Thread * thread ATTRIBUTE_UNUSED,Handle<mirror::Throwable> exception_object ATTRIBUTE_UNUSED)776 void Trace::ExceptionHandled(Thread* thread ATTRIBUTE_UNUSED,
777                              Handle<mirror::Throwable> exception_object ATTRIBUTE_UNUSED)
778     REQUIRES_SHARED(Locks::mutator_lock_) {
779   LOG(ERROR) << "Unexpected exception thrown event in tracing";
780 }
781 
Branch(Thread *,ArtMethod * method,uint32_t,int32_t)782 void Trace::Branch(Thread* /*thread*/, ArtMethod* method,
783                    uint32_t /*dex_pc*/, int32_t /*dex_pc_offset*/)
784       REQUIRES_SHARED(Locks::mutator_lock_) {
785   LOG(ERROR) << "Unexpected branch event in tracing" << ArtMethod::PrettyMethod(method);
786 }
787 
WatchedFramePop(Thread * self ATTRIBUTE_UNUSED,const ShadowFrame & frame ATTRIBUTE_UNUSED)788 void Trace::WatchedFramePop(Thread* self ATTRIBUTE_UNUSED,
789                             const ShadowFrame& frame ATTRIBUTE_UNUSED) {
790   LOG(ERROR) << "Unexpected WatchedFramePop event in tracing";
791 }
792 
ReadClocks(Thread * thread,uint32_t * thread_clock_diff,uint32_t * wall_clock_diff)793 void Trace::ReadClocks(Thread* thread, uint32_t* thread_clock_diff, uint32_t* wall_clock_diff) {
794   if (UseThreadCpuClock()) {
795     uint64_t clock_base = thread->GetTraceClockBase();
796     if (UNLIKELY(clock_base == 0)) {
797       // First event, record the base time in the map.
798       uint64_t time = thread->GetCpuMicroTime();
799       thread->SetTraceClockBase(time);
800     } else {
801       *thread_clock_diff = thread->GetCpuMicroTime() - clock_base;
802     }
803   }
804   if (UseWallClock()) {
805     *wall_clock_diff = MicroTime() - start_time_;
806   }
807 }
808 
RegisterMethod(ArtMethod * method)809 bool Trace::RegisterMethod(ArtMethod* method) {
810   const DexFile* dex_file = method->GetDexFile();
811   if (seen_methods_.find(dex_file) == seen_methods_.end()) {
812     seen_methods_.insert(std::make_pair(dex_file, new DexIndexBitSet()));
813   }
814   DexIndexBitSet* bit_set = seen_methods_.find(dex_file)->second;
815   if (!(*bit_set)[method->GetDexMethodIndex()]) {
816     bit_set->set(method->GetDexMethodIndex());
817     return true;
818   }
819   return false;
820 }
821 
RegisterThread(Thread * thread)822 bool Trace::RegisterThread(Thread* thread) {
823   pid_t tid = thread->GetTid();
824   CHECK_LT(0U, static_cast<uint32_t>(tid));
825   CHECK_LT(static_cast<uint32_t>(tid), kMaxThreadIdNumber);
826 
827   if (!(*seen_threads_)[tid]) {
828     seen_threads_->set(tid);
829     return true;
830   }
831   return false;
832 }
833 
GetMethodLine(ArtMethod * method)834 std::string Trace::GetMethodLine(ArtMethod* method) {
835   method = method->GetInterfaceMethodIfProxy(kRuntimePointerSize);
836   return StringPrintf("%#x\t%s\t%s\t%s\t%s\n", (EncodeTraceMethod(method) << TraceActionBits),
837       PrettyDescriptor(method->GetDeclaringClassDescriptor()).c_str(), method->GetName(),
838       method->GetSignature().ToString().c_str(), method->GetDeclaringClassSourceFile());
839 }
840 
WriteToBuf(const uint8_t * src,size_t src_size)841 void Trace::WriteToBuf(const uint8_t* src, size_t src_size) {
842   // Updates to cur_offset_ are done under the streaming_lock_ here as in streaming mode.
843   int32_t old_offset = cur_offset_.load(std::memory_order_relaxed);
844   int32_t new_offset = old_offset + static_cast<int32_t>(src_size);
845   if (dchecked_integral_cast<size_t>(new_offset) > buffer_size_) {
846     // Flush buffer.
847     if (!trace_file_->WriteFully(buf_.get(), old_offset)) {
848       PLOG(WARNING) << "Failed streaming a tracing event.";
849     }
850 
851     // Check whether the data is too large for the buffer, then write immediately.
852     if (src_size >= buffer_size_) {
853       if (!trace_file_->WriteFully(src, src_size)) {
854         PLOG(WARNING) << "Failed streaming a tracing event.";
855       }
856       cur_offset_.store(0, std::memory_order_relaxed);  // Buffer is empty now.
857       return;
858     }
859 
860     old_offset = 0;
861     new_offset = static_cast<int32_t>(src_size);
862   }
863   cur_offset_.store(new_offset, std::memory_order_relaxed);
864   // Fill in data.
865   memcpy(buf_.get() + old_offset, src, src_size);
866 }
867 
FlushBuf()868 void Trace::FlushBuf() {
869   // Updates to cur_offset_ are done under the streaming_lock_ here as in streaming mode.
870   int32_t offset = cur_offset_.load(std::memory_order_relaxed);
871   if (!trace_file_->WriteFully(buf_.get(), offset)) {
872     PLOG(WARNING) << "Failed flush the remaining data in streaming.";
873   }
874   cur_offset_.store(0, std::memory_order_relaxed);
875 }
876 
LogMethodTraceEvent(Thread * thread,ArtMethod * method,instrumentation::Instrumentation::InstrumentationEvent event,uint32_t thread_clock_diff,uint32_t wall_clock_diff)877 void Trace::LogMethodTraceEvent(Thread* thread, ArtMethod* method,
878                                 instrumentation::Instrumentation::InstrumentationEvent event,
879                                 uint32_t thread_clock_diff, uint32_t wall_clock_diff) {
880   // This method is called in both tracing modes (method and
881   // sampling). In sampling mode, this method is only called by the
882   // sampling thread. In method tracing mode, it can be called
883   // concurrently.
884 
885   // Ensure we always use the non-obsolete version of the method so that entry/exit events have the
886   // same pointer value.
887   method = method->GetNonObsoleteMethod();
888 
889   // Advance cur_offset_ atomically.
890   int32_t new_offset;
891   int32_t old_offset = 0;
892 
893   // In the non-streaming case, we do a busy loop here trying to get
894   // an offset to write our record and advance cur_offset_ for the
895   // next use.
896   if (trace_output_mode_ != TraceOutputMode::kStreaming) {
897     // Although multiple threads can call this method concurrently,
898     // the compare_exchange_weak here is still atomic (by definition).
899     // A succeeding update is visible to other cores when they pass
900     // through this point.
901     old_offset = cur_offset_.load(std::memory_order_relaxed);  // Speculative read
902     do {
903       new_offset = old_offset + GetRecordSize(clock_source_);
904       if (static_cast<size_t>(new_offset) > buffer_size_) {
905         overflow_ = true;
906         return;
907       }
908     } while (!cur_offset_.compare_exchange_weak(old_offset, new_offset, std::memory_order_relaxed));
909   }
910 
911   TraceAction action = kTraceMethodEnter;
912   switch (event) {
913     case instrumentation::Instrumentation::kMethodEntered:
914       action = kTraceMethodEnter;
915       break;
916     case instrumentation::Instrumentation::kMethodExited:
917       action = kTraceMethodExit;
918       break;
919     case instrumentation::Instrumentation::kMethodUnwind:
920       action = kTraceUnroll;
921       break;
922     default:
923       UNIMPLEMENTED(FATAL) << "Unexpected event: " << event;
924   }
925 
926   uint32_t method_value = EncodeTraceMethodAndAction(method, action);
927 
928   // Write data into the tracing buffer (if not streaming) or into a
929   // small buffer on the stack (if streaming) which we'll put into the
930   // tracing buffer below.
931   //
932   // These writes to the tracing buffer are synchronised with the
933   // future reads that (only) occur under FinishTracing(). The callers
934   // of FinishTracing() acquire locks and (implicitly) synchronise
935   // the buffer memory.
936   uint8_t* ptr;
937   static constexpr size_t kPacketSize = 14U;  // The maximum size of data in a packet.
938   uint8_t stack_buf[kPacketSize];             // Space to store a packet when in streaming mode.
939   if (trace_output_mode_ == TraceOutputMode::kStreaming) {
940     ptr = stack_buf;
941   } else {
942     ptr = buf_.get() + old_offset;
943   }
944 
945   Append2LE(ptr, thread->GetTid());
946   Append4LE(ptr + 2, method_value);
947   ptr += 6;
948 
949   if (UseThreadCpuClock()) {
950     Append4LE(ptr, thread_clock_diff);
951     ptr += 4;
952   }
953   if (UseWallClock()) {
954     Append4LE(ptr, wall_clock_diff);
955   }
956   static_assert(kPacketSize == 2 + 4 + 4 + 4, "Packet size incorrect.");
957 
958   if (trace_output_mode_ == TraceOutputMode::kStreaming) {
959     MutexLock mu(Thread::Current(), *streaming_lock_);  // To serialize writing.
960     if (RegisterMethod(method)) {
961       // Write a special block with the name.
962       std::string method_line(GetMethodLine(method));
963       uint8_t buf2[5];
964       Append2LE(buf2, 0);
965       buf2[2] = kOpNewMethod;
966       Append2LE(buf2 + 3, static_cast<uint16_t>(method_line.length()));
967       WriteToBuf(buf2, sizeof(buf2));
968       WriteToBuf(reinterpret_cast<const uint8_t*>(method_line.c_str()), method_line.length());
969     }
970     if (RegisterThread(thread)) {
971       // It might be better to postpone this. Threads might not have received names...
972       std::string thread_name;
973       thread->GetThreadName(thread_name);
974       uint8_t buf2[7];
975       Append2LE(buf2, 0);
976       buf2[2] = kOpNewThread;
977       Append2LE(buf2 + 3, static_cast<uint16_t>(thread->GetTid()));
978       Append2LE(buf2 + 5, static_cast<uint16_t>(thread_name.length()));
979       WriteToBuf(buf2, sizeof(buf2));
980       WriteToBuf(reinterpret_cast<const uint8_t*>(thread_name.c_str()), thread_name.length());
981     }
982     WriteToBuf(stack_buf, sizeof(stack_buf));
983   }
984 }
985 
GetVisitedMethods(size_t buf_size,std::set<ArtMethod * > * visited_methods)986 void Trace::GetVisitedMethods(size_t buf_size,
987                               std::set<ArtMethod*>* visited_methods) {
988   uint8_t* ptr = buf_.get() + kTraceHeaderLength;
989   uint8_t* end = buf_.get() + buf_size;
990 
991   while (ptr < end) {
992     uint32_t tmid = ReadBytes(ptr + 2, sizeof(tmid));
993     ArtMethod* method = DecodeTraceMethod(tmid);
994     visited_methods->insert(method);
995     ptr += GetRecordSize(clock_source_);
996   }
997 }
998 
DumpMethodList(std::ostream & os,const std::set<ArtMethod * > & visited_methods)999 void Trace::DumpMethodList(std::ostream& os, const std::set<ArtMethod*>& visited_methods) {
1000   for (const auto& method : visited_methods) {
1001     os << GetMethodLine(method);
1002   }
1003 }
1004 
DumpThread(Thread * t,void * arg)1005 static void DumpThread(Thread* t, void* arg) {
1006   std::ostream& os = *reinterpret_cast<std::ostream*>(arg);
1007   std::string name;
1008   t->GetThreadName(name);
1009   os << t->GetTid() << "\t" << name << "\n";
1010 }
1011 
DumpThreadList(std::ostream & os)1012 void Trace::DumpThreadList(std::ostream& os) {
1013   Thread* self = Thread::Current();
1014   for (const auto& it : exited_threads_) {
1015     os << it.first << "\t" << it.second << "\n";
1016   }
1017   Locks::thread_list_lock_->AssertNotHeld(self);
1018   MutexLock mu(self, *Locks::thread_list_lock_);
1019   Runtime::Current()->GetThreadList()->ForEach(DumpThread, &os);
1020 }
1021 
StoreExitingThreadInfo(Thread * thread)1022 void Trace::StoreExitingThreadInfo(Thread* thread) {
1023   MutexLock mu(thread, *Locks::trace_lock_);
1024   if (the_trace_ != nullptr) {
1025     std::string name;
1026     thread->GetThreadName(name);
1027     // The same thread/tid may be used multiple times. As SafeMap::Put does not allow to override
1028     // a previous mapping, use SafeMap::Overwrite.
1029     the_trace_->exited_threads_.Overwrite(thread->GetTid(), name);
1030   }
1031 }
1032 
GetOutputMode()1033 Trace::TraceOutputMode Trace::GetOutputMode() {
1034   MutexLock mu(Thread::Current(), *Locks::trace_lock_);
1035   CHECK(the_trace_ != nullptr) << "Trace output mode requested, but no trace currently running";
1036   return the_trace_->trace_output_mode_;
1037 }
1038 
GetMode()1039 Trace::TraceMode Trace::GetMode() {
1040   MutexLock mu(Thread::Current(), *Locks::trace_lock_);
1041   CHECK(the_trace_ != nullptr) << "Trace mode requested, but no trace currently running";
1042   return the_trace_->trace_mode_;
1043 }
1044 
GetBufferSize()1045 size_t Trace::GetBufferSize() {
1046   MutexLock mu(Thread::Current(), *Locks::trace_lock_);
1047   CHECK(the_trace_ != nullptr) << "Trace mode requested, but no trace currently running";
1048   return the_trace_->buffer_size_;
1049 }
1050 
IsTracingEnabled()1051 bool Trace::IsTracingEnabled() {
1052   MutexLock mu(Thread::Current(), *Locks::trace_lock_);
1053   return the_trace_ != nullptr;
1054 }
1055 
1056 }  // namespace art
1057