blob: 6b826414bd9e6a0460299247dddd54bd934f26bb [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
Ian Rogerscf7f1912014-10-22 22:06:39 -070022#define ATRACE_TAG ATRACE_TAG_DALVIK
23#include "cutils/trace.h"
24
Mathieu Chartiere401d142015-04-22 13:56:20 -070025#include "art_method-inl.h"
Andreas Gampee34a42c2015-04-25 14:44:29 -070026#include "base/casts.h"
Jeff Hao0abc72e2013-08-13 13:45:14 -070027#include "base/stl_util.h"
Vladimir Marko80afd022015-05-19 18:08:00 +010028#include "base/time_utils.h"
Elliott Hughes76160052012-12-12 16:31:20 -080029#include "base/unix_file/fd_file.h"
jeffhaoe343b762011-12-05 16:36:44 -080030#include "class_linker.h"
Ian Rogers62d6c772013-02-27 08:32:07 -080031#include "common_throws.h"
jeffhaoa9ef3fd2011-12-13 18:33:43 -080032#include "debugger.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070033#include "dex_file-inl.h"
Mathieu Chartieraa516822015-10-02 15:53:37 -070034#include "gc/scoped_gc_critical_section.h"
jeffhao725a9572012-11-13 18:20:12 -080035#include "instrumentation.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070036#include "mirror/class-inl.h"
Andreas Gampe40da2862015-02-27 12:49:04 -080037#include "mirror/dex_cache-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080038#include "mirror/object_array-inl.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070039#include "mirror/object-inl.h"
jeffhaoa9ef3fd2011-12-13 18:33:43 -080040#include "os.h"
Ian Rogers00f7d0e2012-07-19 15:28:27 -070041#include "scoped_thread_state_change.h"
Jeff Hao0abc72e2013-08-13 13:45:14 -070042#include "ScopedLocalRef.h"
jeffhaoe343b762011-12-05 16:36:44 -080043#include "thread.h"
Ian Rogers57b86d42012-03-27 16:05:41 -070044#include "thread_list.h"
Vladimir Marko80afd022015-05-19 18:08:00 +010045#include "utils.h"
Ian Rogers166db042013-07-26 12:05:57 -070046#include "entrypoints/quick/quick_entrypoints.h"
jeffhao2692b572011-12-16 15:42:28 -080047
48namespace art {
49
Mathieu Chartier4d64cd42015-06-02 16:38:29 -070050static constexpr size_t TraceActionBits = MinimumBitsToStore(
51 static_cast<size_t>(kTraceMethodActionMask));
Andreas Gampe40da2862015-02-27 12:49:04 -080052static constexpr uint8_t kOpNewMethod = 1U;
53static constexpr uint8_t kOpNewThread = 2U;
54
Jeff Hao0abc72e2013-08-13 13:45:14 -070055class BuildStackTraceVisitor : public StackVisitor {
56 public:
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +010057 explicit BuildStackTraceVisitor(Thread* thread)
58 : StackVisitor(thread, nullptr, StackVisitor::StackWalkKind::kIncludeInlinedFrames),
59 method_trace_(Trace::AllocStackTrace()) {}
Jeff Hao0abc72e2013-08-13 13:45:14 -070060
Mathieu Chartier90443472015-07-16 20:32:27 -070061 bool VisitFrame() SHARED_REQUIRES(Locks::mutator_lock_) {
Mathieu Chartiere401d142015-04-22 13:56:20 -070062 ArtMethod* m = GetMethod();
Jeff Hao0abc72e2013-08-13 13:45:14 -070063 // Ignore runtime frames (in particular callee save).
64 if (!m->IsRuntimeMethod()) {
65 method_trace_->push_back(m);
66 }
67 return true;
68 }
69
70 // Returns a stack trace where the topmost frame corresponds with the first element of the vector.
Mathieu Chartiere401d142015-04-22 13:56:20 -070071 std::vector<ArtMethod*>* GetStackTrace() const {
Jeff Hao0abc72e2013-08-13 13:45:14 -070072 return method_trace_;
73 }
74
75 private:
Mathieu Chartiere401d142015-04-22 13:56:20 -070076 std::vector<ArtMethod*>* const method_trace_;
Sebastien Hertz26f72862015-09-15 09:52:07 +020077
78 DISALLOW_COPY_AND_ASSIGN(BuildStackTraceVisitor);
Jeff Hao0abc72e2013-08-13 13:45:14 -070079};
80
jeffhaoa9ef3fd2011-12-13 18:33:43 -080081static const char kTraceTokenChar = '*';
82static const uint16_t kTraceHeaderLength = 32;
83static const uint32_t kTraceMagicValue = 0x574f4c53;
84static const uint16_t kTraceVersionSingleClock = 2;
85static const uint16_t kTraceVersionDualClock = 3;
Mathieu Chartier4d64cd42015-06-02 16:38:29 -070086static const uint16_t kTraceRecordSizeSingleClock = 10; // using v2
87static const uint16_t kTraceRecordSizeDualClock = 14; // using v3 with two timestamps
jeffhaoa9ef3fd2011-12-13 18:33:43 -080088
Ian Rogerse63db272014-07-15 15:36:11 -070089TraceClockSource Trace::default_clock_source_ = kDefaultTraceClockSource;
Elliott Hughese119a362012-05-22 17:37:06 -070090
Andreas Gampe40da2862015-02-27 12:49:04 -080091Trace* volatile Trace::the_trace_ = nullptr;
Jeff Hao0abc72e2013-08-13 13:45:14 -070092pthread_t Trace::sampling_pthread_ = 0U;
Mathieu Chartiere401d142015-04-22 13:56:20 -070093std::unique_ptr<std::vector<ArtMethod*>> Trace::temp_stack_trace_;
Ian Rogers62d6c772013-02-27 08:32:07 -080094
Sebastien Hertz0462c4c2015-04-01 16:34:17 +020095// The key identifying the tracer to update instrumentation.
96static constexpr const char* kTracerInstrumentationKey = "Tracer";
97
Ian Rogers62d6c772013-02-27 08:32:07 -080098static TraceAction DecodeTraceAction(uint32_t tmid) {
99 return static_cast<TraceAction>(tmid & kTraceMethodActionMask);
100}
101
Mathieu Chartier4d64cd42015-06-02 16:38:29 -0700102ArtMethod* Trace::DecodeTraceMethod(uint32_t tmid) {
103 MutexLock mu(Thread::Current(), *unique_methods_lock_);
104 return unique_methods_[tmid >> TraceActionBits];
105}
106
107uint32_t Trace::EncodeTraceMethod(ArtMethod* method) {
108 MutexLock mu(Thread::Current(), *unique_methods_lock_);
109 uint32_t idx;
110 auto it = art_method_id_map_.find(method);
111 if (it != art_method_id_map_.end()) {
112 idx = it->second;
113 } else {
114 unique_methods_.push_back(method);
115 idx = unique_methods_.size() - 1;
116 art_method_id_map_.emplace(method, idx);
117 }
118 DCHECK_LT(idx, unique_methods_.size());
119 DCHECK_EQ(unique_methods_[idx], method);
120 return idx;
121}
122
123uint32_t Trace::EncodeTraceMethodAndAction(ArtMethod* method, TraceAction action) {
124 uint32_t tmid = (EncodeTraceMethod(method) << TraceActionBits) | action;
125 DCHECK_EQ(method, DecodeTraceMethod(tmid));
Ian Rogers62d6c772013-02-27 08:32:07 -0800126 return tmid;
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800127}
128
Mathieu Chartiere401d142015-04-22 13:56:20 -0700129std::vector<ArtMethod*>* Trace::AllocStackTrace() {
Mathieu Chartier4d64cd42015-06-02 16:38:29 -0700130 return (temp_stack_trace_.get() != nullptr) ? temp_stack_trace_.release() :
131 new std::vector<ArtMethod*>();
Jeff Hao5ce4b172013-08-16 16:27:18 -0700132}
133
Mathieu Chartiere401d142015-04-22 13:56:20 -0700134void Trace::FreeStackTrace(std::vector<ArtMethod*>* stack_trace) {
Jeff Hao5ce4b172013-08-16 16:27:18 -0700135 stack_trace->clear();
136 temp_stack_trace_.reset(stack_trace);
137}
138
Ian Rogerse63db272014-07-15 15:36:11 -0700139void Trace::SetDefaultClockSource(TraceClockSource clock_source) {
Elliott Hughes0a18df82015-01-09 15:16:16 -0800140#if defined(__linux__)
Ian Rogers62d6c772013-02-27 08:32:07 -0800141 default_clock_source_ = clock_source;
142#else
Igor Murashkinaaebaa02015-01-26 10:55:53 -0800143 if (clock_source != TraceClockSource::kWall) {
Jeff Hao5ce4b172013-08-16 16:27:18 -0700144 LOG(WARNING) << "Ignoring tracing request to use CPU time.";
Ian Rogers62d6c772013-02-27 08:32:07 -0800145 }
146#endif
147}
148
Ian Rogerse63db272014-07-15 15:36:11 -0700149static uint16_t GetTraceVersion(TraceClockSource clock_source) {
Igor Murashkinaaebaa02015-01-26 10:55:53 -0800150 return (clock_source == TraceClockSource::kDual) ? kTraceVersionDualClock
Ian Rogers62d6c772013-02-27 08:32:07 -0800151 : kTraceVersionSingleClock;
152}
153
Ian Rogerse63db272014-07-15 15:36:11 -0700154static uint16_t GetRecordSize(TraceClockSource clock_source) {
Igor Murashkinaaebaa02015-01-26 10:55:53 -0800155 return (clock_source == TraceClockSource::kDual) ? kTraceRecordSizeDualClock
Ian Rogers62d6c772013-02-27 08:32:07 -0800156 : kTraceRecordSizeSingleClock;
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800157}
158
Elliott Hughese119a362012-05-22 17:37:06 -0700159bool Trace::UseThreadCpuClock() {
Igor Murashkinaaebaa02015-01-26 10:55:53 -0800160 return (clock_source_ == TraceClockSource::kThreadCpu) ||
161 (clock_source_ == TraceClockSource::kDual);
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800162}
163
Elliott Hughese119a362012-05-22 17:37:06 -0700164bool Trace::UseWallClock() {
Igor Murashkinaaebaa02015-01-26 10:55:53 -0800165 return (clock_source_ == TraceClockSource::kWall) ||
166 (clock_source_ == TraceClockSource::kDual);
Elliott Hughese119a362012-05-22 17:37:06 -0700167}
168
Jeff Haoc5d824a2014-07-28 18:35:38 -0700169void Trace::MeasureClockOverhead() {
170 if (UseThreadCpuClock()) {
Jeff Hao57dac6e2013-08-15 16:36:24 -0700171 Thread::Current()->GetCpuMicroTime();
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800172 }
Jeff Haoc5d824a2014-07-28 18:35:38 -0700173 if (UseWallClock()) {
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800174 MicroTime();
175 }
176}
177
Jeff Hao5ce4b172013-08-16 16:27:18 -0700178// Compute an average time taken to measure clocks.
Jeff Haoc5d824a2014-07-28 18:35:38 -0700179uint32_t Trace::GetClockOverheadNanoSeconds() {
Jeff Hao57dac6e2013-08-15 16:36:24 -0700180 Thread* self = Thread::Current();
181 uint64_t start = self->GetCpuMicroTime();
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800182
183 for (int i = 4000; i > 0; i--) {
Jeff Haoc5d824a2014-07-28 18:35:38 -0700184 MeasureClockOverhead();
185 MeasureClockOverhead();
186 MeasureClockOverhead();
187 MeasureClockOverhead();
188 MeasureClockOverhead();
189 MeasureClockOverhead();
190 MeasureClockOverhead();
191 MeasureClockOverhead();
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800192 }
193
Jeff Hao5ce4b172013-08-16 16:27:18 -0700194 uint64_t elapsed_us = self->GetCpuMicroTime() - start;
195 return static_cast<uint32_t>(elapsed_us / 32);
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800196}
197
Elliott Hughesffb465f2012-03-01 18:46:05 -0800198// TODO: put this somewhere with the big-endian equivalent used by JDWP.
199static void Append2LE(uint8_t* buf, uint16_t val) {
Jeff Hao5ce4b172013-08-16 16:27:18 -0700200 *buf++ = static_cast<uint8_t>(val);
201 *buf++ = static_cast<uint8_t>(val >> 8);
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800202}
203
Elliott Hughesffb465f2012-03-01 18:46:05 -0800204// TODO: put this somewhere with the big-endian equivalent used by JDWP.
205static void Append4LE(uint8_t* buf, uint32_t val) {
Jeff Hao5ce4b172013-08-16 16:27:18 -0700206 *buf++ = static_cast<uint8_t>(val);
207 *buf++ = static_cast<uint8_t>(val >> 8);
208 *buf++ = static_cast<uint8_t>(val >> 16);
209 *buf++ = static_cast<uint8_t>(val >> 24);
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800210}
211
Elliott Hughesffb465f2012-03-01 18:46:05 -0800212// TODO: put this somewhere with the big-endian equivalent used by JDWP.
213static void Append8LE(uint8_t* buf, uint64_t val) {
Jeff Hao5ce4b172013-08-16 16:27:18 -0700214 *buf++ = static_cast<uint8_t>(val);
215 *buf++ = static_cast<uint8_t>(val >> 8);
216 *buf++ = static_cast<uint8_t>(val >> 16);
217 *buf++ = static_cast<uint8_t>(val >> 24);
218 *buf++ = static_cast<uint8_t>(val >> 32);
219 *buf++ = static_cast<uint8_t>(val >> 40);
220 *buf++ = static_cast<uint8_t>(val >> 48);
221 *buf++ = static_cast<uint8_t>(val >> 56);
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800222}
223
Mathieu Chartier90443472015-07-16 20:32:27 -0700224static void GetSample(Thread* thread, void* arg) SHARED_REQUIRES(Locks::mutator_lock_) {
Jeff Hao0abc72e2013-08-13 13:45:14 -0700225 BuildStackTraceVisitor build_trace_visitor(thread);
226 build_trace_visitor.WalkStack();
Mathieu Chartiere401d142015-04-22 13:56:20 -0700227 std::vector<ArtMethod*>* stack_trace = build_trace_visitor.GetStackTrace();
Jeff Hao0abc72e2013-08-13 13:45:14 -0700228 Trace* the_trace = reinterpret_cast<Trace*>(arg);
229 the_trace->CompareAndUpdateStackTrace(thread, stack_trace);
230}
231
Andreas Gampeca714582015-04-03 19:41:34 -0700232static void ClearThreadStackTraceAndClockBase(Thread* thread, void* arg ATTRIBUTE_UNUSED) {
Jeff Hao5ce4b172013-08-16 16:27:18 -0700233 thread->SetTraceClockBase(0);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700234 std::vector<ArtMethod*>* stack_trace = thread->GetStackTraceSample();
Andreas Gampe40da2862015-02-27 12:49:04 -0800235 thread->SetStackTraceSample(nullptr);
Jeff Hao5ce4b172013-08-16 16:27:18 -0700236 delete stack_trace;
237}
238
Jeff Hao0abc72e2013-08-13 13:45:14 -0700239void Trace::CompareAndUpdateStackTrace(Thread* thread,
Mathieu Chartiere401d142015-04-22 13:56:20 -0700240 std::vector<ArtMethod*>* stack_trace) {
Jeff Hao0abc72e2013-08-13 13:45:14 -0700241 CHECK_EQ(pthread_self(), sampling_pthread_);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700242 std::vector<ArtMethod*>* old_stack_trace = thread->GetStackTraceSample();
Jeff Hao5ce4b172013-08-16 16:27:18 -0700243 // Update the thread's stack trace sample.
244 thread->SetStackTraceSample(stack_trace);
Jeff Haoc1ff4b72013-08-19 11:33:10 -0700245 // Read timer clocks to use for all events in this trace.
246 uint32_t thread_clock_diff = 0;
247 uint32_t wall_clock_diff = 0;
248 ReadClocks(thread, &thread_clock_diff, &wall_clock_diff);
Andreas Gampe40da2862015-02-27 12:49:04 -0800249 if (old_stack_trace == nullptr) {
Jeff Hao5ce4b172013-08-16 16:27:18 -0700250 // If there's no previous stack trace sample for this thread, log an entry event for all
Jeff Hao0abc72e2013-08-13 13:45:14 -0700251 // methods in the trace.
Mathieu Chartier4d64cd42015-06-02 16:38:29 -0700252 for (auto rit = stack_trace->rbegin(); rit != stack_trace->rend(); ++rit) {
Jeff Haoc1ff4b72013-08-19 11:33:10 -0700253 LogMethodTraceEvent(thread, *rit, instrumentation::Instrumentation::kMethodEntered,
254 thread_clock_diff, wall_clock_diff);
Jeff Hao0abc72e2013-08-13 13:45:14 -0700255 }
256 } else {
257 // If there's a previous stack trace for this thread, diff the traces and emit entry and exit
258 // events accordingly.
Mathieu Chartier4d64cd42015-06-02 16:38:29 -0700259 auto old_rit = old_stack_trace->rbegin();
260 auto rit = stack_trace->rbegin();
Jeff Hao0abc72e2013-08-13 13:45:14 -0700261 // Iterate bottom-up over both traces until there's a difference between them.
262 while (old_rit != old_stack_trace->rend() && rit != stack_trace->rend() && *old_rit == *rit) {
263 old_rit++;
264 rit++;
265 }
266 // Iterate top-down over the old trace until the point where they differ, emitting exit events.
Mathieu Chartier4d64cd42015-06-02 16:38:29 -0700267 for (auto old_it = old_stack_trace->begin(); old_it != old_rit.base(); ++old_it) {
Jeff Haoc1ff4b72013-08-19 11:33:10 -0700268 LogMethodTraceEvent(thread, *old_it, instrumentation::Instrumentation::kMethodExited,
269 thread_clock_diff, wall_clock_diff);
Jeff Hao0abc72e2013-08-13 13:45:14 -0700270 }
271 // Iterate bottom-up over the new trace from the point where they differ, emitting entry events.
272 for (; rit != stack_trace->rend(); ++rit) {
Jeff Haoc1ff4b72013-08-19 11:33:10 -0700273 LogMethodTraceEvent(thread, *rit, instrumentation::Instrumentation::kMethodEntered,
274 thread_clock_diff, wall_clock_diff);
Jeff Hao0abc72e2013-08-13 13:45:14 -0700275 }
Jeff Hao5ce4b172013-08-16 16:27:18 -0700276 FreeStackTrace(old_stack_trace);
Jeff Hao0abc72e2013-08-13 13:45:14 -0700277 }
278}
279
280void* Trace::RunSamplingThread(void* arg) {
281 Runtime* runtime = Runtime::Current();
Ian Rogersef7d42f2014-01-06 12:55:46 -0800282 intptr_t interval_us = reinterpret_cast<intptr_t>(arg);
Jeff Hao4044bda2014-01-06 15:50:45 -0800283 CHECK_GE(interval_us, 0);
Jeff Hao0abc72e2013-08-13 13:45:14 -0700284 CHECK(runtime->AttachCurrentThread("Sampling Profiler", true, runtime->GetSystemThreadGroup(),
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800285 !runtime->IsAotCompiler()));
Jeff Hao0abc72e2013-08-13 13:45:14 -0700286
287 while (true) {
Jeff Hao23009dc2013-08-22 15:36:42 -0700288 usleep(interval_us);
Jeff Hao5ce4b172013-08-16 16:27:18 -0700289 ATRACE_BEGIN("Profile sampling");
Jeff Hao0abc72e2013-08-13 13:45:14 -0700290 Thread* self = Thread::Current();
291 Trace* the_trace;
292 {
293 MutexLock mu(self, *Locks::trace_lock_);
294 the_trace = the_trace_;
Andreas Gampe40da2862015-02-27 12:49:04 -0800295 if (the_trace == nullptr) {
Jeff Hao0abc72e2013-08-13 13:45:14 -0700296 break;
297 }
298 }
Jeff Hao0abc72e2013-08-13 13:45:14 -0700299 {
Mathieu Chartier4f55e222015-09-04 13:26:21 -0700300 ScopedSuspendAll ssa(__FUNCTION__);
Jeff Hao0abc72e2013-08-13 13:45:14 -0700301 MutexLock mu(self, *Locks::thread_list_lock_);
302 runtime->GetThreadList()->ForEach(GetSample, the_trace);
303 }
Jeff Hao5ce4b172013-08-16 16:27:18 -0700304 ATRACE_END();
Jeff Hao0abc72e2013-08-13 13:45:14 -0700305 }
306
307 runtime->DetachCurrentThread();
Andreas Gampe40da2862015-02-27 12:49:04 -0800308 return nullptr;
Jeff Hao0abc72e2013-08-13 13:45:14 -0700309}
310
Andreas Gampee34a42c2015-04-25 14:44:29 -0700311void Trace::Start(const char* trace_filename, int trace_fd, size_t buffer_size, int flags,
Andreas Gampe7e7e0f42015-03-29 15:26:23 -0700312 TraceOutputMode output_mode, TraceMode trace_mode, int interval_us) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800313 Thread* self = Thread::Current();
314 {
315 MutexLock mu(self, *Locks::trace_lock_);
Andreas Gampe40da2862015-02-27 12:49:04 -0800316 if (the_trace_ != nullptr) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800317 LOG(ERROR) << "Trace already in progress, ignoring this request";
318 return;
319 }
jeffhaoe343b762011-12-05 16:36:44 -0800320 }
Jeff Haod063d912014-09-08 09:38:18 -0700321
322 // Check interval if sampling is enabled
Andreas Gampe7e7e0f42015-03-29 15:26:23 -0700323 if (trace_mode == TraceMode::kSampling && interval_us <= 0) {
Jeff Haod063d912014-09-08 09:38:18 -0700324 LOG(ERROR) << "Invalid sampling interval: " << interval_us;
325 ScopedObjectAccess soa(self);
326 ThrowRuntimeException("Invalid sampling interval: %d", interval_us);
327 return;
328 }
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800329
jeffhao2692b572011-12-16 15:42:28 -0800330 // Open trace file if not going directly to ddms.
Ian Rogers700a4022014-05-19 16:49:03 -0700331 std::unique_ptr<File> trace_file;
Andreas Gampe7e7e0f42015-03-29 15:26:23 -0700332 if (output_mode != TraceOutputMode::kDDMS) {
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800333 if (trace_fd < 0) {
Calin Juravlef83e7332015-11-04 16:16:47 +0000334 trace_file.reset(OS::CreateEmptyFileWriteOnly(trace_filename));
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800335 } else {
Ian Rogers62d6c772013-02-27 08:32:07 -0800336 trace_file.reset(new File(trace_fd, "tracefile"));
Elliott Hughes76160052012-12-12 16:31:20 -0800337 trace_file->DisableAutoClose();
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800338 }
Andreas Gampe40da2862015-02-27 12:49:04 -0800339 if (trace_file.get() == nullptr) {
jeffhaob5e81852012-03-12 11:15:45 -0700340 PLOG(ERROR) << "Unable to open trace file '" << trace_filename << "'";
Ian Rogers62d6c772013-02-27 08:32:07 -0800341 ScopedObjectAccess soa(self);
342 ThrowRuntimeException("Unable to open trace file '%s'", trace_filename);
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800343 return;
344 }
345 }
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800346
Jeff Haod063d912014-09-08 09:38:18 -0700347 Runtime* runtime = Runtime::Current();
Mathieu Chartier9ef78b52014-09-25 17:03:12 -0700348
349 // Enable count of allocs if specified in the flags.
350 bool enable_stats = false;
351
jeffhao2692b572011-12-16 15:42:28 -0800352 // Create Trace object.
Ian Rogers62d6c772013-02-27 08:32:07 -0800353 {
Mathieu Chartieraa516822015-10-02 15:53:37 -0700354 // Required since EnableMethodTracing calls ConfigureStubs which visits class linker classes.
355 gc::ScopedGCCriticalSection gcs(self,
356 gc::kGcCauseInstrumentation,
357 gc::kCollectorTypeInstrumentation);
Mathieu Chartier4f55e222015-09-04 13:26:21 -0700358 ScopedSuspendAll ssa(__FUNCTION__);
Ian Rogers62d6c772013-02-27 08:32:07 -0800359 MutexLock mu(self, *Locks::trace_lock_);
Andreas Gampe40da2862015-02-27 12:49:04 -0800360 if (the_trace_ != nullptr) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800361 LOG(ERROR) << "Trace already in progress, ignoring this request";
362 } else {
Mathieu Chartier9ef78b52014-09-25 17:03:12 -0700363 enable_stats = (flags && kTraceCountAllocs) != 0;
Andreas Gampe40da2862015-02-27 12:49:04 -0800364 the_trace_ = new Trace(trace_file.release(), trace_filename, buffer_size, flags, output_mode,
365 trace_mode);
Andreas Gampe7e7e0f42015-03-29 15:26:23 -0700366 if (trace_mode == TraceMode::kSampling) {
Andreas Gampe40da2862015-02-27 12:49:04 -0800367 CHECK_PTHREAD_CALL(pthread_create, (&sampling_pthread_, nullptr, &RunSamplingThread,
Jeff Hao23009dc2013-08-22 15:36:42 -0700368 reinterpret_cast<void*>(interval_us)),
369 "Sampling profiler thread");
Andreas Gampe40da2862015-02-27 12:49:04 -0800370 the_trace_->interval_us_ = interval_us;
Jeff Hao0abc72e2013-08-13 13:45:14 -0700371 } else {
372 runtime->GetInstrumentation()->AddListener(the_trace_,
373 instrumentation::Instrumentation::kMethodEntered |
374 instrumentation::Instrumentation::kMethodExited |
375 instrumentation::Instrumentation::kMethodUnwind);
Andreas Gampe40da2862015-02-27 12:49:04 -0800376 // TODO: In full-PIC mode, we don't need to fully deopt.
Sebastien Hertz0462c4c2015-04-01 16:34:17 +0200377 runtime->GetInstrumentation()->EnableMethodTracing(kTracerInstrumentationKey);
Jeff Hao0abc72e2013-08-13 13:45:14 -0700378 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800379 }
jeffhao0791adc2012-04-04 11:14:32 -0700380 }
Jeff Haod063d912014-09-08 09:38:18 -0700381
Mathieu Chartier9ef78b52014-09-25 17:03:12 -0700382 // Can't call this when holding the mutator lock.
383 if (enable_stats) {
384 runtime->SetStatsEnabled(true);
385 }
jeffhao2692b572011-12-16 15:42:28 -0800386}
387
Andreas Gampe40da2862015-02-27 12:49:04 -0800388void Trace::StopTracing(bool finish_tracing, bool flush_file) {
Mathieu Chartier9ef78b52014-09-25 17:03:12 -0700389 bool stop_alloc_counting = false;
Mathieu Chartier02e5f162015-03-11 09:54:22 -0700390 Runtime* const runtime = Runtime::Current();
391 Trace* the_trace = nullptr;
Hiroshi Yamauchi9ea02c42016-03-03 15:09:27 -0800392 Thread* const self = Thread::Current();
Jeff Hao0abc72e2013-08-13 13:45:14 -0700393 pthread_t sampling_pthread = 0U;
Ian Rogers62d6c772013-02-27 08:32:07 -0800394 {
Hiroshi Yamauchi9ea02c42016-03-03 15:09:27 -0800395 MutexLock mu(self, *Locks::trace_lock_);
Andreas Gampe40da2862015-02-27 12:49:04 -0800396 if (the_trace_ == nullptr) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800397 LOG(ERROR) << "Trace stop requested, but no trace currently running";
398 } else {
399 the_trace = the_trace_;
Andreas Gampe40da2862015-02-27 12:49:04 -0800400 the_trace_ = nullptr;
Jeff Hao0abc72e2013-08-13 13:45:14 -0700401 sampling_pthread = sampling_pthread_;
Ian Rogers62d6c772013-02-27 08:32:07 -0800402 }
jeffhao2692b572011-12-16 15:42:28 -0800403 }
Mathieu Chartier02e5f162015-03-11 09:54:22 -0700404 // Make sure that we join before we delete the trace since we don't want to have
405 // the sampling thread access a stale pointer. This finishes since the sampling thread exits when
406 // the_trace_ is null.
407 if (sampling_pthread != 0U) {
Andreas Gampe40da2862015-02-27 12:49:04 -0800408 CHECK_PTHREAD_CALL(pthread_join, (sampling_pthread, nullptr), "sampling thread shutdown");
Mathieu Chartier02e5f162015-03-11 09:54:22 -0700409 sampling_pthread_ = 0U;
410 }
Andreas Gampe40da2862015-02-27 12:49:04 -0800411
Mathieu Chartier4f55e222015-09-04 13:26:21 -0700412 {
Hiroshi Yamauchi9ea02c42016-03-03 15:09:27 -0800413 gc::ScopedGCCriticalSection gcs(self,
414 gc::kGcCauseInstrumentation,
415 gc::kCollectorTypeInstrumentation);
Mathieu Chartier4f55e222015-09-04 13:26:21 -0700416 ScopedSuspendAll ssa(__FUNCTION__);
417 if (the_trace != nullptr) {
418 stop_alloc_counting = (the_trace->flags_ & Trace::kTraceCountAllocs) != 0;
419 if (finish_tracing) {
420 the_trace->FinishTracing();
421 }
Jeff Hao0abc72e2013-08-13 13:45:14 -0700422
Mathieu Chartier4f55e222015-09-04 13:26:21 -0700423 if (the_trace->trace_mode_ == TraceMode::kSampling) {
Hiroshi Yamauchi9ea02c42016-03-03 15:09:27 -0800424 MutexLock mu(self, *Locks::thread_list_lock_);
Mathieu Chartier4f55e222015-09-04 13:26:21 -0700425 runtime->GetThreadList()->ForEach(ClearThreadStackTraceAndClockBase, nullptr);
Andreas Gampe40da2862015-02-27 12:49:04 -0800426 } else {
Mathieu Chartier4f55e222015-09-04 13:26:21 -0700427 runtime->GetInstrumentation()->DisableMethodTracing(kTracerInstrumentationKey);
428 runtime->GetInstrumentation()->RemoveListener(
429 the_trace, instrumentation::Instrumentation::kMethodEntered |
430 instrumentation::Instrumentation::kMethodExited |
431 instrumentation::Instrumentation::kMethodUnwind);
Andreas Gampe4303ba92014-11-06 01:00:46 -0800432 }
Mathieu Chartier4f55e222015-09-04 13:26:21 -0700433 if (the_trace->trace_file_.get() != nullptr) {
434 // Do not try to erase, so flush and close explicitly.
435 if (flush_file) {
436 if (the_trace->trace_file_->Flush() != 0) {
437 PLOG(WARNING) << "Could not flush trace file.";
438 }
439 } else {
440 the_trace->trace_file_->MarkUnchecked(); // Do not trigger guard.
441 }
442 if (the_trace->trace_file_->Close() != 0) {
443 PLOG(ERROR) << "Could not close trace file.";
444 }
Andreas Gampe4303ba92014-11-06 01:00:46 -0800445 }
Mathieu Chartier4f55e222015-09-04 13:26:21 -0700446 delete the_trace;
Andreas Gampe4303ba92014-11-06 01:00:46 -0800447 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800448 }
Mathieu Chartier9ef78b52014-09-25 17:03:12 -0700449 if (stop_alloc_counting) {
450 // Can be racy since SetStatsEnabled is not guarded by any locks.
Mathieu Chartier02e5f162015-03-11 09:54:22 -0700451 runtime->SetStatsEnabled(false);
Jeff Hao0abc72e2013-08-13 13:45:14 -0700452 }
jeffhao2692b572011-12-16 15:42:28 -0800453}
454
Andreas Gampe40da2862015-02-27 12:49:04 -0800455void Trace::Abort() {
456 // Do not write anything anymore.
457 StopTracing(false, false);
458}
459
460void Trace::Stop() {
461 // Finish writing.
462 StopTracing(true, true);
463}
464
jeffhaob5e81852012-03-12 11:15:45 -0700465void Trace::Shutdown() {
Jeff Hao64caa7d2013-08-29 11:18:01 -0700466 if (GetMethodTracingMode() != kTracingInactive) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800467 Stop();
jeffhaob5e81852012-03-12 11:15:45 -0700468 }
jeffhaob5e81852012-03-12 11:15:45 -0700469}
470
Andreas Gampe40da2862015-02-27 12:49:04 -0800471void Trace::Pause() {
472 bool stop_alloc_counting = false;
473 Runtime* runtime = Runtime::Current();
474 Trace* the_trace = nullptr;
475
Mathieu Chartieraa516822015-10-02 15:53:37 -0700476 Thread* const self = Thread::Current();
Andreas Gampe40da2862015-02-27 12:49:04 -0800477 pthread_t sampling_pthread = 0U;
478 {
Mathieu Chartieraa516822015-10-02 15:53:37 -0700479 MutexLock mu(self, *Locks::trace_lock_);
Andreas Gampe40da2862015-02-27 12:49:04 -0800480 if (the_trace_ == nullptr) {
481 LOG(ERROR) << "Trace pause requested, but no trace currently running";
482 return;
483 } else {
484 the_trace = the_trace_;
485 sampling_pthread = sampling_pthread_;
486 }
487 }
488
489 if (sampling_pthread != 0U) {
490 {
Mathieu Chartieraa516822015-10-02 15:53:37 -0700491 MutexLock mu(self, *Locks::trace_lock_);
Andreas Gampe40da2862015-02-27 12:49:04 -0800492 the_trace_ = nullptr;
493 }
494 CHECK_PTHREAD_CALL(pthread_join, (sampling_pthread, nullptr), "sampling thread shutdown");
495 sampling_pthread_ = 0U;
496 {
Mathieu Chartieraa516822015-10-02 15:53:37 -0700497 MutexLock mu(self, *Locks::trace_lock_);
Andreas Gampe40da2862015-02-27 12:49:04 -0800498 the_trace_ = the_trace;
499 }
500 }
501
502 if (the_trace != nullptr) {
Mathieu Chartieraa516822015-10-02 15:53:37 -0700503 gc::ScopedGCCriticalSection gcs(self,
504 gc::kGcCauseInstrumentation,
505 gc::kCollectorTypeInstrumentation);
Mathieu Chartier4f55e222015-09-04 13:26:21 -0700506 ScopedSuspendAll ssa(__FUNCTION__);
Andreas Gampe40da2862015-02-27 12:49:04 -0800507 stop_alloc_counting = (the_trace->flags_ & Trace::kTraceCountAllocs) != 0;
508
509 if (the_trace->trace_mode_ == TraceMode::kSampling) {
Mathieu Chartieraa516822015-10-02 15:53:37 -0700510 MutexLock mu(self, *Locks::thread_list_lock_);
Andreas Gampe40da2862015-02-27 12:49:04 -0800511 runtime->GetThreadList()->ForEach(ClearThreadStackTraceAndClockBase, nullptr);
512 } else {
Sebastien Hertz0462c4c2015-04-01 16:34:17 +0200513 runtime->GetInstrumentation()->DisableMethodTracing(kTracerInstrumentationKey);
Mathieu Chartier4f55e222015-09-04 13:26:21 -0700514 runtime->GetInstrumentation()->RemoveListener(
515 the_trace,
516 instrumentation::Instrumentation::kMethodEntered |
517 instrumentation::Instrumentation::kMethodExited |
518 instrumentation::Instrumentation::kMethodUnwind);
Andreas Gampe40da2862015-02-27 12:49:04 -0800519 }
Andreas Gampe40da2862015-02-27 12:49:04 -0800520 }
521
522 if (stop_alloc_counting) {
523 // Can be racy since SetStatsEnabled is not guarded by any locks.
524 Runtime::Current()->SetStatsEnabled(false);
525 }
526}
527
528void Trace::Resume() {
529 Thread* self = Thread::Current();
530 Trace* the_trace;
531 {
532 MutexLock mu(self, *Locks::trace_lock_);
533 if (the_trace_ == nullptr) {
534 LOG(ERROR) << "No trace to resume (or sampling mode), ignoring this request";
535 return;
536 }
537 the_trace = the_trace_;
538 }
539
540 Runtime* runtime = Runtime::Current();
541
542 // Enable count of allocs if specified in the flags.
543 bool enable_stats = (the_trace->flags_ && kTraceCountAllocs) != 0;
544
Mathieu Chartier4f55e222015-09-04 13:26:21 -0700545 {
Mathieu Chartieraa516822015-10-02 15:53:37 -0700546 gc::ScopedGCCriticalSection gcs(self,
547 gc::kGcCauseInstrumentation,
548 gc::kCollectorTypeInstrumentation);
Mathieu Chartier4f55e222015-09-04 13:26:21 -0700549 ScopedSuspendAll ssa(__FUNCTION__);
Andreas Gampe40da2862015-02-27 12:49:04 -0800550
Mathieu Chartier4f55e222015-09-04 13:26:21 -0700551 // Reenable.
552 if (the_trace->trace_mode_ == TraceMode::kSampling) {
553 CHECK_PTHREAD_CALL(pthread_create, (&sampling_pthread_, nullptr, &RunSamplingThread,
554 reinterpret_cast<void*>(the_trace->interval_us_)), "Sampling profiler thread");
555 } else {
556 runtime->GetInstrumentation()->AddListener(the_trace,
557 instrumentation::Instrumentation::kMethodEntered |
558 instrumentation::Instrumentation::kMethodExited |
559 instrumentation::Instrumentation::kMethodUnwind);
560 // TODO: In full-PIC mode, we don't need to fully deopt.
561 runtime->GetInstrumentation()->EnableMethodTracing(kTracerInstrumentationKey);
562 }
Andreas Gampe40da2862015-02-27 12:49:04 -0800563 }
564
Andreas Gampe40da2862015-02-27 12:49:04 -0800565 // Can't call this when holding the mutator lock.
566 if (enable_stats) {
567 runtime->SetStatsEnabled(true);
568 }
569}
570
Jeff Hao64caa7d2013-08-29 11:18:01 -0700571TracingMode Trace::GetMethodTracingMode() {
Ian Rogers62d6c772013-02-27 08:32:07 -0800572 MutexLock mu(Thread::Current(), *Locks::trace_lock_);
Andreas Gampe40da2862015-02-27 12:49:04 -0800573 if (the_trace_ == nullptr) {
Jeff Hao64caa7d2013-08-29 11:18:01 -0700574 return kTracingInactive;
Jeff Hao64caa7d2013-08-29 11:18:01 -0700575 } else {
Andreas Gampe7e7e0f42015-03-29 15:26:23 -0700576 switch (the_trace_->trace_mode_) {
577 case TraceMode::kSampling:
578 return kSampleProfilingActive;
579 case TraceMode::kMethodTracing:
580 return kMethodTracingActive;
581 }
582 LOG(FATAL) << "Unreachable";
583 UNREACHABLE();
Jeff Hao64caa7d2013-08-29 11:18:01 -0700584 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800585}
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800586
Andreas Gampee34a42c2015-04-25 14:44:29 -0700587static constexpr size_t kMinBufSize = 18U; // Trace header is up to 18B.
Andreas Gampe40da2862015-02-27 12:49:04 -0800588
Andreas Gampee34a42c2015-04-25 14:44:29 -0700589Trace::Trace(File* trace_file, const char* trace_name, size_t buffer_size, int flags,
Andreas Gampe40da2862015-02-27 12:49:04 -0800590 TraceOutputMode output_mode, TraceMode trace_mode)
591 : trace_file_(trace_file),
Andreas Gampee34a42c2015-04-25 14:44:29 -0700592 buf_(new uint8_t[std::max(kMinBufSize, buffer_size)]()),
Andreas Gampe40da2862015-02-27 12:49:04 -0800593 flags_(flags), trace_output_mode_(output_mode), trace_mode_(trace_mode),
594 clock_source_(default_clock_source_),
Andreas Gampee34a42c2015-04-25 14:44:29 -0700595 buffer_size_(std::max(kMinBufSize, buffer_size)),
Andreas Gampe40da2862015-02-27 12:49:04 -0800596 start_time_(MicroTime()), clock_overhead_ns_(GetClockOverheadNanoSeconds()), cur_offset_(0),
Mathieu Chartier4d64cd42015-06-02 16:38:29 -0700597 overflow_(false), interval_us_(0), streaming_lock_(nullptr),
Andreas Gampe7526d782015-06-22 22:53:45 -0700598 unique_methods_lock_(new Mutex("unique methods lock", kTracingUniqueMethodsLock)) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800599 uint16_t trace_version = GetTraceVersion(clock_source_);
Andreas Gampe40da2862015-02-27 12:49:04 -0800600 if (output_mode == TraceOutputMode::kStreaming) {
601 trace_version |= 0xF0U;
602 }
603 // Set up the beginning of the trace.
jeffhao2692b572011-12-16 15:42:28 -0800604 memset(buf_.get(), 0, kTraceHeaderLength);
605 Append4LE(buf_.get(), kTraceMagicValue);
Ian Rogers62d6c772013-02-27 08:32:07 -0800606 Append2LE(buf_.get() + 4, trace_version);
jeffhao2692b572011-12-16 15:42:28 -0800607 Append2LE(buf_.get() + 6, kTraceHeaderLength);
608 Append8LE(buf_.get() + 8, start_time_);
Ian Rogers62d6c772013-02-27 08:32:07 -0800609 if (trace_version >= kTraceVersionDualClock) {
610 uint16_t record_size = GetRecordSize(clock_source_);
611 Append2LE(buf_.get() + 16, record_size);
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800612 }
Andreas Gampee34a42c2015-04-25 14:44:29 -0700613 static_assert(18 <= kMinBufSize, "Minimum buffer size not large enough for trace header");
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800614
jeffhao2692b572011-12-16 15:42:28 -0800615 // Update current offset.
Ian Rogers8ab25ef2014-07-09 18:00:50 -0700616 cur_offset_.StoreRelaxed(kTraceHeaderLength);
Andreas Gampe40da2862015-02-27 12:49:04 -0800617
618 if (output_mode == TraceOutputMode::kStreaming) {
619 streaming_file_name_ = trace_name;
Andreas Gampe7526d782015-06-22 22:53:45 -0700620 streaming_lock_ = new Mutex("tracing lock", LockLevel::kTracingStreamingLock);
Andreas Gampe40da2862015-02-27 12:49:04 -0800621 seen_threads_.reset(new ThreadIDBitSet());
622 }
623}
624
625Trace::~Trace() {
626 delete streaming_lock_;
Andreas Gampe7526d782015-06-22 22:53:45 -0700627 delete unique_methods_lock_;
Ian Rogers62d6c772013-02-27 08:32:07 -0800628}
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800629
Mathieu Chartiere401d142015-04-22 13:56:20 -0700630static uint64_t ReadBytes(uint8_t* buf, size_t bytes) {
631 uint64_t ret = 0;
632 for (size_t i = 0; i < bytes; ++i) {
633 ret |= static_cast<uint64_t>(buf[i]) << (i * 8);
634 }
635 return ret;
636}
637
Mathieu Chartier4d64cd42015-06-02 16:38:29 -0700638void Trace::DumpBuf(uint8_t* buf, size_t buf_size, TraceClockSource clock_source) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800639 uint8_t* ptr = buf + kTraceHeaderLength;
640 uint8_t* end = buf + buf_size;
641
642 while (ptr < end) {
Mathieu Chartier4d64cd42015-06-02 16:38:29 -0700643 uint32_t tmid = ReadBytes(ptr + 2, sizeof(tmid));
644 ArtMethod* method = DecodeTraceMethod(tmid);
Ian Rogers62d6c772013-02-27 08:32:07 -0800645 TraceAction action = DecodeTraceAction(tmid);
646 LOG(INFO) << PrettyMethod(method) << " " << static_cast<int>(action);
647 ptr += GetRecordSize(clock_source);
648 }
jeffhaoe343b762011-12-05 16:36:44 -0800649}
650
Andreas Gampe40da2862015-02-27 12:49:04 -0800651static void GetVisitedMethodsFromBitSets(
Andreas Gampe7526d782015-06-22 22:53:45 -0700652 const std::map<const DexFile*, DexIndexBitSet*>& seen_methods,
Mathieu Chartier90443472015-07-16 20:32:27 -0700653 std::set<ArtMethod*>* visited_methods) SHARED_REQUIRES(Locks::mutator_lock_) {
Andreas Gampe7526d782015-06-22 22:53:45 -0700654 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Mathieu Chartier673ed3d2015-08-28 14:56:43 -0700655 Thread* const self = Thread::Current();
Andreas Gampe40da2862015-02-27 12:49:04 -0800656 for (auto& e : seen_methods) {
657 DexIndexBitSet* bit_set = e.second;
Mathieu Chartier673ed3d2015-08-28 14:56:43 -0700658 // TODO: Visit trace methods as roots.
659 mirror::DexCache* dex_cache = class_linker->FindDexCache(self, *e.first, false);
Andreas Gampe40da2862015-02-27 12:49:04 -0800660 for (uint32_t i = 0; i < bit_set->size(); ++i) {
661 if ((*bit_set)[i]) {
Andreas Gampe7526d782015-06-22 22:53:45 -0700662 visited_methods->insert(dex_cache->GetResolvedMethod(i, sizeof(void*)));
Andreas Gampe40da2862015-02-27 12:49:04 -0800663 }
664 }
665 }
666}
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800667
Andreas Gampe40da2862015-02-27 12:49:04 -0800668void Trace::FinishTracing() {
669 size_t final_offset = 0;
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800670
Mathieu Chartiere401d142015-04-22 13:56:20 -0700671 std::set<ArtMethod*> visited_methods;
Andreas Gampe40da2862015-02-27 12:49:04 -0800672 if (trace_output_mode_ == TraceOutputMode::kStreaming) {
673 // Write the secondary file with all the method names.
674 GetVisitedMethodsFromBitSets(seen_methods_, &visited_methods);
675
676 // Clean up.
Mathieu Chartier4d64cd42015-06-02 16:38:29 -0700677 STLDeleteValues(&seen_methods_);
Andreas Gampe40da2862015-02-27 12:49:04 -0800678 } else {
679 final_offset = cur_offset_.LoadRelaxed();
680 GetVisitedMethods(final_offset, &visited_methods);
681 }
682
683 // Compute elapsed time.
684 uint64_t elapsed = MicroTime() - start_time_;
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800685
686 std::ostringstream os;
687
688 os << StringPrintf("%cversion\n", kTraceTokenChar);
Ian Rogers62d6c772013-02-27 08:32:07 -0800689 os << StringPrintf("%d\n", GetTraceVersion(clock_source_));
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800690 os << StringPrintf("data-file-overflow=%s\n", overflow_ ? "true" : "false");
691 if (UseThreadCpuClock()) {
692 if (UseWallClock()) {
693 os << StringPrintf("clock=dual\n");
694 } else {
695 os << StringPrintf("clock=thread-cpu\n");
696 }
697 } else {
698 os << StringPrintf("clock=wall\n");
699 }
Ian Rogersef7d42f2014-01-06 12:55:46 -0800700 os << StringPrintf("elapsed-time-usec=%" PRIu64 "\n", elapsed);
Andreas Gampe40da2862015-02-27 12:49:04 -0800701 if (trace_output_mode_ != TraceOutputMode::kStreaming) {
702 size_t num_records = (final_offset - kTraceHeaderLength) / GetRecordSize(clock_source_);
703 os << StringPrintf("num-method-calls=%zd\n", num_records);
704 }
Jeff Haoc5d824a2014-07-28 18:35:38 -0700705 os << StringPrintf("clock-call-overhead-nsec=%d\n", clock_overhead_ns_);
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800706 os << StringPrintf("vm=art\n");
John Reck0624a272015-03-26 15:47:54 -0700707 os << StringPrintf("pid=%d\n", getpid());
jeffhao0791adc2012-04-04 11:14:32 -0700708 if ((flags_ & kTraceCountAllocs) != 0) {
709 os << StringPrintf("alloc-count=%d\n", Runtime::Current()->GetStat(KIND_ALLOCATED_OBJECTS));
710 os << StringPrintf("alloc-size=%d\n", Runtime::Current()->GetStat(KIND_ALLOCATED_BYTES));
711 os << StringPrintf("gc-count=%d\n", Runtime::Current()->GetStat(KIND_GC_INVOCATIONS));
712 }
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800713 os << StringPrintf("%cthreads\n", kTraceTokenChar);
714 DumpThreadList(os);
715 os << StringPrintf("%cmethods\n", kTraceTokenChar);
Ian Rogers62d6c772013-02-27 08:32:07 -0800716 DumpMethodList(os, visited_methods);
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800717 os << StringPrintf("%cend\n", kTraceTokenChar);
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800718 std::string header(os.str());
Andreas Gampe40da2862015-02-27 12:49:04 -0800719
720 if (trace_output_mode_ == TraceOutputMode::kStreaming) {
721 File file;
722 if (!file.Open(streaming_file_name_ + ".sec", O_CREAT | O_WRONLY)) {
723 LOG(WARNING) << "Could not open secondary trace file!";
724 return;
Ian Rogers62d6c772013-02-27 08:32:07 -0800725 }
Andreas Gampe40da2862015-02-27 12:49:04 -0800726 if (!file.WriteFully(header.c_str(), header.length())) {
727 file.Erase();
Elliott Hughes7b9d9962012-04-20 18:48:18 -0700728 std::string detail(StringPrintf("Trace data write failed: %s", strerror(errno)));
729 PLOG(ERROR) << detail;
Ian Rogers62d6c772013-02-27 08:32:07 -0800730 ThrowRuntimeException("%s", detail.c_str());
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800731 }
Andreas Gampe40da2862015-02-27 12:49:04 -0800732 if (file.FlushCloseOrErase() != 0) {
733 PLOG(ERROR) << "Could not write secondary file";
734 }
735 } else {
736 if (trace_file_.get() == nullptr) {
737 iovec iov[2];
738 iov[0].iov_base = reinterpret_cast<void*>(const_cast<char*>(header.c_str()));
739 iov[0].iov_len = header.length();
740 iov[1].iov_base = buf_.get();
741 iov[1].iov_len = final_offset;
742 Dbg::DdmSendChunkV(CHUNK_TYPE("MPSE"), iov, 2);
743 const bool kDumpTraceInfo = false;
744 if (kDumpTraceInfo) {
745 LOG(INFO) << "Trace sent:\n" << header;
746 DumpBuf(buf_.get(), final_offset, clock_source_);
747 }
748 } else {
749 if (!trace_file_->WriteFully(header.c_str(), header.length()) ||
750 !trace_file_->WriteFully(buf_.get(), final_offset)) {
751 std::string detail(StringPrintf("Trace data write failed: %s", strerror(errno)));
752 PLOG(ERROR) << detail;
753 ThrowRuntimeException("%s", detail.c_str());
754 }
755 }
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800756 }
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800757}
758
Roland Levillain4b8f1ec2015-08-26 18:34:03 +0100759void Trace::DexPcMoved(Thread* thread ATTRIBUTE_UNUSED,
760 mirror::Object* this_object ATTRIBUTE_UNUSED,
761 ArtMethod* method,
762 uint32_t new_dex_pc) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800763 // We're not recorded to listen to this kind of event, so complain.
764 LOG(ERROR) << "Unexpected dex PC event in tracing " << PrettyMethod(method) << " " << new_dex_pc;
Andreas Gampec8ccf682014-09-29 20:07:43 -0700765}
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800766
Roland Levillain4b8f1ec2015-08-26 18:34:03 +0100767void Trace::FieldRead(Thread* thread ATTRIBUTE_UNUSED,
768 mirror::Object* this_object ATTRIBUTE_UNUSED,
769 ArtMethod* method,
770 uint32_t dex_pc,
771 ArtField* field ATTRIBUTE_UNUSED)
Mathieu Chartier90443472015-07-16 20:32:27 -0700772 SHARED_REQUIRES(Locks::mutator_lock_) {
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200773 // We're not recorded to listen to this kind of event, so complain.
774 LOG(ERROR) << "Unexpected field read event in tracing " << PrettyMethod(method) << " " << dex_pc;
775}
776
Roland Levillain4b8f1ec2015-08-26 18:34:03 +0100777void Trace::FieldWritten(Thread* thread ATTRIBUTE_UNUSED,
778 mirror::Object* this_object ATTRIBUTE_UNUSED,
779 ArtMethod* method,
780 uint32_t dex_pc,
781 ArtField* field ATTRIBUTE_UNUSED,
782 const JValue& field_value ATTRIBUTE_UNUSED)
Mathieu Chartier90443472015-07-16 20:32:27 -0700783 SHARED_REQUIRES(Locks::mutator_lock_) {
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200784 // We're not recorded to listen to this kind of event, so complain.
785 LOG(ERROR) << "Unexpected field write event in tracing " << PrettyMethod(method) << " " << dex_pc;
786}
787
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700788void Trace::MethodEntered(Thread* thread, mirror::Object* this_object ATTRIBUTE_UNUSED,
Mathieu Chartiere401d142015-04-22 13:56:20 -0700789 ArtMethod* method, uint32_t dex_pc ATTRIBUTE_UNUSED) {
Jeff Haoc1ff4b72013-08-19 11:33:10 -0700790 uint32_t thread_clock_diff = 0;
791 uint32_t wall_clock_diff = 0;
792 ReadClocks(thread, &thread_clock_diff, &wall_clock_diff);
793 LogMethodTraceEvent(thread, method, instrumentation::Instrumentation::kMethodEntered,
794 thread_clock_diff, wall_clock_diff);
Ian Rogers62d6c772013-02-27 08:32:07 -0800795}
796
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700797void Trace::MethodExited(Thread* thread, mirror::Object* this_object ATTRIBUTE_UNUSED,
Mathieu Chartiere401d142015-04-22 13:56:20 -0700798 ArtMethod* method, uint32_t dex_pc ATTRIBUTE_UNUSED,
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700799 const JValue& return_value ATTRIBUTE_UNUSED) {
Jeff Haoc1ff4b72013-08-19 11:33:10 -0700800 uint32_t thread_clock_diff = 0;
801 uint32_t wall_clock_diff = 0;
802 ReadClocks(thread, &thread_clock_diff, &wall_clock_diff);
803 LogMethodTraceEvent(thread, method, instrumentation::Instrumentation::kMethodExited,
804 thread_clock_diff, wall_clock_diff);
Ian Rogers62d6c772013-02-27 08:32:07 -0800805}
806
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700807void Trace::MethodUnwind(Thread* thread, mirror::Object* this_object ATTRIBUTE_UNUSED,
Mathieu Chartiere401d142015-04-22 13:56:20 -0700808 ArtMethod* method, uint32_t dex_pc ATTRIBUTE_UNUSED) {
Jeff Haoc1ff4b72013-08-19 11:33:10 -0700809 uint32_t thread_clock_diff = 0;
810 uint32_t wall_clock_diff = 0;
811 ReadClocks(thread, &thread_clock_diff, &wall_clock_diff);
812 LogMethodTraceEvent(thread, method, instrumentation::Instrumentation::kMethodUnwind,
813 thread_clock_diff, wall_clock_diff);
Ian Rogers62d6c772013-02-27 08:32:07 -0800814}
815
Roland Levillain4b8f1ec2015-08-26 18:34:03 +0100816void Trace::ExceptionCaught(Thread* thread ATTRIBUTE_UNUSED,
817 mirror::Throwable* exception_object ATTRIBUTE_UNUSED)
Mathieu Chartier90443472015-07-16 20:32:27 -0700818 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800819 LOG(ERROR) << "Unexpected exception caught event in tracing";
820}
821
Nicolas Geoffray81f0f952016-01-20 16:25:19 +0000822void Trace::Branch(Thread* /*thread*/, ArtMethod* method,
823 uint32_t /*dex_pc*/, int32_t /*dex_pc_offset*/)
Mathieu Chartier90443472015-07-16 20:32:27 -0700824 SHARED_REQUIRES(Locks::mutator_lock_) {
Nicolas Geoffray81f0f952016-01-20 16:25:19 +0000825 LOG(ERROR) << "Unexpected branch event in tracing" << PrettyMethod(method);
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800826}
827
Nicolas Geoffray5550ca82015-08-21 18:38:30 +0100828void Trace::InvokeVirtualOrInterface(Thread*,
829 mirror::Object*,
830 ArtMethod* method,
831 uint32_t dex_pc,
832 ArtMethod*) {
833 LOG(ERROR) << "Unexpected invoke event in tracing" << PrettyMethod(method)
834 << " " << dex_pc;
835}
836
Jeff Haoc1ff4b72013-08-19 11:33:10 -0700837void Trace::ReadClocks(Thread* thread, uint32_t* thread_clock_diff, uint32_t* wall_clock_diff) {
838 if (UseThreadCpuClock()) {
839 uint64_t clock_base = thread->GetTraceClockBase();
840 if (UNLIKELY(clock_base == 0)) {
841 // First event, record the base time in the map.
842 uint64_t time = thread->GetCpuMicroTime();
843 thread->SetTraceClockBase(time);
844 } else {
845 *thread_clock_diff = thread->GetCpuMicroTime() - clock_base;
846 }
847 }
848 if (UseWallClock()) {
849 *wall_clock_diff = MicroTime() - start_time_;
850 }
851}
852
Mathieu Chartiere401d142015-04-22 13:56:20 -0700853bool Trace::RegisterMethod(ArtMethod* method) {
Andreas Gampe40da2862015-02-27 12:49:04 -0800854 mirror::DexCache* dex_cache = method->GetDexCache();
Andreas Gampe7526d782015-06-22 22:53:45 -0700855 const DexFile* dex_file = dex_cache->GetDexFile();
Mathieu Chartiere401d142015-04-22 13:56:20 -0700856 auto* resolved_method = dex_cache->GetResolvedMethod(method->GetDexMethodIndex(), sizeof(void*));
857 if (resolved_method != method) {
858 DCHECK(resolved_method == nullptr);
859 dex_cache->SetResolvedMethod(method->GetDexMethodIndex(), method, sizeof(void*));
Andreas Gampe40da2862015-02-27 12:49:04 -0800860 }
Andreas Gampe7526d782015-06-22 22:53:45 -0700861 if (seen_methods_.find(dex_file) == seen_methods_.end()) {
862 seen_methods_.insert(std::make_pair(dex_file, new DexIndexBitSet()));
Andreas Gampe40da2862015-02-27 12:49:04 -0800863 }
Andreas Gampe7526d782015-06-22 22:53:45 -0700864 DexIndexBitSet* bit_set = seen_methods_.find(dex_file)->second;
Andreas Gampe40da2862015-02-27 12:49:04 -0800865 if (!(*bit_set)[method->GetDexMethodIndex()]) {
866 bit_set->set(method->GetDexMethodIndex());
867 return true;
868 }
869 return false;
870}
871
872bool Trace::RegisterThread(Thread* thread) {
873 pid_t tid = thread->GetTid();
874 CHECK_LT(0U, static_cast<uint32_t>(tid));
875 CHECK_LT(static_cast<uint32_t>(tid), 65536U);
876
877 if (!(*seen_threads_)[tid]) {
878 seen_threads_->set(tid);
879 return true;
880 }
881 return false;
882}
883
Mathieu Chartier4d64cd42015-06-02 16:38:29 -0700884std::string Trace::GetMethodLine(ArtMethod* method) {
Mathieu Chartiere3b034a2015-05-31 14:29:23 -0700885 method = method->GetInterfaceMethodIfProxy(sizeof(void*));
Mathieu Chartier4d64cd42015-06-02 16:38:29 -0700886 return StringPrintf("%p\t%s\t%s\t%s\t%s\n",
887 reinterpret_cast<void*>((EncodeTraceMethod(method) << TraceActionBits)),
Andreas Gampe40da2862015-02-27 12:49:04 -0800888 PrettyDescriptor(method->GetDeclaringClassDescriptor()).c_str(), method->GetName(),
889 method->GetSignature().ToString().c_str(), method->GetDeclaringClassSourceFile());
890}
891
892void Trace::WriteToBuf(const uint8_t* src, size_t src_size) {
893 int32_t old_offset = cur_offset_.LoadRelaxed();
894 int32_t new_offset = old_offset + static_cast<int32_t>(src_size);
Andreas Gampee34a42c2015-04-25 14:44:29 -0700895 if (dchecked_integral_cast<size_t>(new_offset) > buffer_size_) {
Andreas Gampe40da2862015-02-27 12:49:04 -0800896 // Flush buffer.
897 if (!trace_file_->WriteFully(buf_.get(), old_offset)) {
898 PLOG(WARNING) << "Failed streaming a tracing event.";
899 }
Andreas Gampee34a42c2015-04-25 14:44:29 -0700900
901 // Check whether the data is too large for the buffer, then write immediately.
902 if (src_size >= buffer_size_) {
903 if (!trace_file_->WriteFully(src, src_size)) {
904 PLOG(WARNING) << "Failed streaming a tracing event.";
905 }
906 cur_offset_.StoreRelease(0); // Buffer is empty now.
907 return;
908 }
909
Andreas Gampe40da2862015-02-27 12:49:04 -0800910 old_offset = 0;
911 new_offset = static_cast<int32_t>(src_size);
912 }
913 cur_offset_.StoreRelease(new_offset);
914 // Fill in data.
915 memcpy(buf_.get() + old_offset, src, src_size);
916}
917
Mathieu Chartiere401d142015-04-22 13:56:20 -0700918void Trace::LogMethodTraceEvent(Thread* thread, ArtMethod* method,
Jeff Haoc1ff4b72013-08-19 11:33:10 -0700919 instrumentation::Instrumentation::InstrumentationEvent event,
920 uint32_t thread_clock_diff, uint32_t wall_clock_diff) {
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800921 // Advance cur_offset_ atomically.
922 int32_t new_offset;
Andreas Gampe40da2862015-02-27 12:49:04 -0800923 int32_t old_offset = 0;
924
925 // We do a busy loop here trying to acquire the next offset.
926 if (trace_output_mode_ != TraceOutputMode::kStreaming) {
927 do {
928 old_offset = cur_offset_.LoadRelaxed();
929 new_offset = old_offset + GetRecordSize(clock_source_);
Andreas Gampee34a42c2015-04-25 14:44:29 -0700930 if (static_cast<size_t>(new_offset) > buffer_size_) {
Andreas Gampe40da2862015-02-27 12:49:04 -0800931 overflow_ = true;
932 return;
933 }
934 } while (!cur_offset_.CompareExchangeWeakSequentiallyConsistent(old_offset, new_offset));
935 }
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800936
Ian Rogers62d6c772013-02-27 08:32:07 -0800937 TraceAction action = kTraceMethodEnter;
938 switch (event) {
939 case instrumentation::Instrumentation::kMethodEntered:
940 action = kTraceMethodEnter;
941 break;
942 case instrumentation::Instrumentation::kMethodExited:
943 action = kTraceMethodExit;
944 break;
945 case instrumentation::Instrumentation::kMethodUnwind:
946 action = kTraceUnroll;
947 break;
948 default:
949 UNIMPLEMENTED(FATAL) << "Unexpected event: " << event;
950 }
951
Mathieu Chartier4d64cd42015-06-02 16:38:29 -0700952 uint32_t method_value = EncodeTraceMethodAndAction(method, action);
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800953
954 // Write data
Andreas Gampe40da2862015-02-27 12:49:04 -0800955 uint8_t* ptr;
Mathieu Chartier4d64cd42015-06-02 16:38:29 -0700956 static constexpr size_t kPacketSize = 14U; // The maximum size of data in a packet.
Andreas Gampe40da2862015-02-27 12:49:04 -0800957 uint8_t stack_buf[kPacketSize]; // Space to store a packet when in streaming mode.
958 if (trace_output_mode_ == TraceOutputMode::kStreaming) {
959 ptr = stack_buf;
960 } else {
961 ptr = buf_.get() + old_offset;
962 }
963
Ian Rogers62d6c772013-02-27 08:32:07 -0800964 Append2LE(ptr, thread->GetTid());
Mathieu Chartier4d64cd42015-06-02 16:38:29 -0700965 Append4LE(ptr + 2, method_value);
966 ptr += 6;
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800967
968 if (UseThreadCpuClock()) {
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800969 Append4LE(ptr, thread_clock_diff);
970 ptr += 4;
971 }
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800972 if (UseWallClock()) {
jeffhaoa9ef3fd2011-12-13 18:33:43 -0800973 Append4LE(ptr, wall_clock_diff);
974 }
Mathieu Chartier4d64cd42015-06-02 16:38:29 -0700975 static_assert(kPacketSize == 2 + 4 + 4 + 4, "Packet size incorrect.");
Andreas Gampe40da2862015-02-27 12:49:04 -0800976
977 if (trace_output_mode_ == TraceOutputMode::kStreaming) {
978 MutexLock mu(Thread::Current(), *streaming_lock_); // To serialize writing.
979 if (RegisterMethod(method)) {
980 // Write a special block with the name.
981 std::string method_line(GetMethodLine(method));
982 uint8_t buf2[5];
983 Append2LE(buf2, 0);
984 buf2[2] = kOpNewMethod;
985 Append2LE(buf2 + 3, static_cast<uint16_t>(method_line.length()));
986 WriteToBuf(buf2, sizeof(buf2));
987 WriteToBuf(reinterpret_cast<const uint8_t*>(method_line.c_str()), method_line.length());
988 }
989 if (RegisterThread(thread)) {
990 // It might be better to postpone this. Threads might not have received names...
991 std::string thread_name;
992 thread->GetThreadName(thread_name);
993 uint8_t buf2[7];
994 Append2LE(buf2, 0);
995 buf2[2] = kOpNewThread;
996 Append2LE(buf2 + 3, static_cast<uint16_t>(thread->GetTid()));
997 Append2LE(buf2 + 5, static_cast<uint16_t>(thread_name.length()));
998 WriteToBuf(buf2, sizeof(buf2));
999 WriteToBuf(reinterpret_cast<const uint8_t*>(thread_name.c_str()), thread_name.length());
1000 }
1001 WriteToBuf(stack_buf, sizeof(stack_buf));
1002 }
jeffhaoa9ef3fd2011-12-13 18:33:43 -08001003}
1004
Ian Rogers62d6c772013-02-27 08:32:07 -08001005void Trace::GetVisitedMethods(size_t buf_size,
Mathieu Chartiere401d142015-04-22 13:56:20 -07001006 std::set<ArtMethod*>* visited_methods) {
jeffhao2692b572011-12-16 15:42:28 -08001007 uint8_t* ptr = buf_.get() + kTraceHeaderLength;
Ian Rogers62d6c772013-02-27 08:32:07 -08001008 uint8_t* end = buf_.get() + buf_size;
jeffhaoa9ef3fd2011-12-13 18:33:43 -08001009
1010 while (ptr < end) {
Mathieu Chartier4d64cd42015-06-02 16:38:29 -07001011 uint32_t tmid = ReadBytes(ptr + 2, sizeof(tmid));
1012 ArtMethod* method = DecodeTraceMethod(tmid);
Ian Rogers62d6c772013-02-27 08:32:07 -08001013 visited_methods->insert(method);
1014 ptr += GetRecordSize(clock_source_);
jeffhaoa9ef3fd2011-12-13 18:33:43 -08001015 }
1016}
1017
Mathieu Chartiere401d142015-04-22 13:56:20 -07001018void Trace::DumpMethodList(std::ostream& os, const std::set<ArtMethod*>& visited_methods) {
Mathieu Chartier02e25112013-08-14 16:14:24 -07001019 for (const auto& method : visited_methods) {
Andreas Gampe40da2862015-02-27 12:49:04 -08001020 os << GetMethodLine(method);
jeffhaoa9ef3fd2011-12-13 18:33:43 -08001021 }
jeffhaoa9ef3fd2011-12-13 18:33:43 -08001022}
1023
1024static void DumpThread(Thread* t, void* arg) {
Elliott Hughesffb465f2012-03-01 18:46:05 -08001025 std::ostream& os = *reinterpret_cast<std::ostream*>(arg);
1026 std::string name;
1027 t->GetThreadName(name);
1028 os << t->GetTid() << "\t" << name << "\n";
jeffhaoa9ef3fd2011-12-13 18:33:43 -08001029}
1030
1031void Trace::DumpThreadList(std::ostream& os) {
Ian Rogers81d425b2012-09-27 16:03:43 -07001032 Thread* self = Thread::Current();
Jeff Haoe094b872014-10-14 13:12:01 -07001033 for (auto it : exited_threads_) {
1034 os << it.first << "\t" << it.second << "\n";
1035 }
Ian Rogers81d425b2012-09-27 16:03:43 -07001036 Locks::thread_list_lock_->AssertNotHeld(self);
1037 MutexLock mu(self, *Locks::thread_list_lock_);
jeffhaoa9ef3fd2011-12-13 18:33:43 -08001038 Runtime::Current()->GetThreadList()->ForEach(DumpThread, &os);
jeffhaoe343b762011-12-05 16:36:44 -08001039}
1040
Jeff Haoe094b872014-10-14 13:12:01 -07001041void Trace::StoreExitingThreadInfo(Thread* thread) {
1042 MutexLock mu(thread, *Locks::trace_lock_);
1043 if (the_trace_ != nullptr) {
1044 std::string name;
1045 thread->GetThreadName(name);
Andreas Gampea1785c52014-11-25 20:40:08 -08001046 // The same thread/tid may be used multiple times. As SafeMap::Put does not allow to override
1047 // a previous mapping, use SafeMap::Overwrite.
1048 the_trace_->exited_threads_.Overwrite(thread->GetTid(), name);
Jeff Haoe094b872014-10-14 13:12:01 -07001049 }
1050}
1051
Andreas Gampe40da2862015-02-27 12:49:04 -08001052Trace::TraceOutputMode Trace::GetOutputMode() {
1053 MutexLock mu(Thread::Current(), *Locks::trace_lock_);
1054 CHECK(the_trace_ != nullptr) << "Trace output mode requested, but no trace currently running";
1055 return the_trace_->trace_output_mode_;
1056}
1057
1058Trace::TraceMode Trace::GetMode() {
1059 MutexLock mu(Thread::Current(), *Locks::trace_lock_);
1060 CHECK(the_trace_ != nullptr) << "Trace mode requested, but no trace currently running";
1061 return the_trace_->trace_mode_;
1062}
1063
Andreas Gampee34a42c2015-04-25 14:44:29 -07001064size_t Trace::GetBufferSize() {
1065 MutexLock mu(Thread::Current(), *Locks::trace_lock_);
1066 CHECK(the_trace_ != nullptr) << "Trace mode requested, but no trace currently running";
1067 return the_trace_->buffer_size_;
1068}
1069
Mathieu Chartier7778b882015-10-05 16:41:10 -07001070bool Trace::IsTracingEnabled() {
1071 MutexLock mu(Thread::Current(), *Locks::trace_lock_);
1072 return the_trace_ != nullptr;
1073}
1074
jeffhaoe343b762011-12-05 16:36:44 -08001075} // namespace art