Elliott Hughes | 2faa5f1 | 2012-01-30 14:42:07 -0800 | [diff] [blame] | 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 | */ |
jeffhao | e343b76 | 2011-12-05 16:36:44 -0800 | [diff] [blame] | 16 | |
| 17 | #include "trace.h" |
| 18 | |
jeffhao | a9ef3fd | 2011-12-13 18:33:43 -0800 | [diff] [blame] | 19 | #include <sys/uio.h> |
John Reck | 0624a27 | 2015-03-26 15:47:54 -0700 | [diff] [blame] | 20 | #include <unistd.h> |
jeffhao | a9ef3fd | 2011-12-13 18:33:43 -0800 | [diff] [blame] | 21 | |
Alex Light | b7c640d | 2019-03-20 15:52:13 -0700 | [diff] [blame] | 22 | #include "android-base/macros.h" |
Andreas Gampe | 46ee31b | 2016-12-14 10:11:49 -0800 | [diff] [blame] | 23 | #include "android-base/stringprintf.h" |
| 24 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 25 | #include "art_method-inl.h" |
Andreas Gampe | e34a42c | 2015-04-25 14:44:29 -0700 | [diff] [blame] | 26 | #include "base/casts.h" |
Andreas Gampe | 542451c | 2016-07-26 09:02:02 -0700 | [diff] [blame] | 27 | #include "base/enums.h" |
David Sehr | c431b9d | 2018-03-02 12:01:51 -0800 | [diff] [blame] | 28 | #include "base/os.h" |
Jeff Hao | 0abc72e | 2013-08-13 13:45:14 -0700 | [diff] [blame] | 29 | #include "base/stl_util.h" |
Mathieu Chartier | 32ce2ad | 2016-03-04 14:58:03 -0800 | [diff] [blame] | 30 | #include "base/systrace.h" |
Vladimir Marko | 80afd02 | 2015-05-19 18:08:00 +0100 | [diff] [blame] | 31 | #include "base/time_utils.h" |
Elliott Hughes | 7616005 | 2012-12-12 16:31:20 -0800 | [diff] [blame] | 32 | #include "base/unix_file/fd_file.h" |
David Sehr | c431b9d | 2018-03-02 12:01:51 -0800 | [diff] [blame] | 33 | #include "base/utils.h" |
jeffhao | e343b76 | 2011-12-05 16:36:44 -0800 | [diff] [blame] | 34 | #include "class_linker.h" |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 35 | #include "common_throws.h" |
jeffhao | a9ef3fd | 2011-12-13 18:33:43 -0800 | [diff] [blame] | 36 | #include "debugger.h" |
David Sehr | b2ec9f5 | 2018-02-21 13:20:31 -0800 | [diff] [blame] | 37 | #include "dex/descriptors_names.h" |
David Sehr | 9e734c7 | 2018-01-04 17:56:19 -0800 | [diff] [blame] | 38 | #include "dex/dex_file-inl.h" |
Steven Moreland | e431e27 | 2017-07-18 16:53:49 -0700 | [diff] [blame] | 39 | #include "entrypoints/quick/quick_entrypoints.h" |
Mathieu Chartier | aa51682 | 2015-10-02 15:53:37 -0700 | [diff] [blame] | 40 | #include "gc/scoped_gc_critical_section.h" |
jeffhao | 725a957 | 2012-11-13 18:20:12 -0800 | [diff] [blame] | 41 | #include "instrumentation.h" |
Nicolas Geoffray | 226805d | 2018-12-14 10:59:02 +0000 | [diff] [blame] | 42 | #include "jit/jit.h" |
| 43 | #include "jit/jit_code_cache.h" |
Ian Rogers | 4f6ad8a | 2013-03-18 15:27:28 -0700 | [diff] [blame] | 44 | #include "mirror/class-inl.h" |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 45 | #include "mirror/dex_cache-inl.h" |
Ian Rogers | 4f6ad8a | 2013-03-18 15:27:28 -0700 | [diff] [blame] | 46 | #include "mirror/object-inl.h" |
Steven Moreland | e431e27 | 2017-07-18 16:53:49 -0700 | [diff] [blame] | 47 | #include "mirror/object_array-inl.h" |
Andreas Gampe | 373a9b5 | 2017-10-18 09:01:57 -0700 | [diff] [blame] | 48 | #include "nativehelper/scoped_local_ref.h" |
Mathieu Chartier | 0795f23 | 2016-09-27 18:43:30 -0700 | [diff] [blame] | 49 | #include "scoped_thread_state_change-inl.h" |
Andreas Gampe | 513061a | 2017-06-01 09:17:34 -0700 | [diff] [blame] | 50 | #include "stack.h" |
jeffhao | e343b76 | 2011-12-05 16:36:44 -0800 | [diff] [blame] | 51 | #include "thread.h" |
Ian Rogers | 57b86d4 | 2012-03-27 16:05:41 -0700 | [diff] [blame] | 52 | #include "thread_list.h" |
jeffhao | 2692b57 | 2011-12-16 15:42:28 -0800 | [diff] [blame] | 53 | |
| 54 | namespace art { |
| 55 | |
Andreas Gampe | 46ee31b | 2016-12-14 10:11:49 -0800 | [diff] [blame] | 56 | using android::base::StringPrintf; |
| 57 | |
Mathieu Chartier | 4d64cd4 | 2015-06-02 16:38:29 -0700 | [diff] [blame] | 58 | static constexpr size_t TraceActionBits = MinimumBitsToStore( |
| 59 | static_cast<size_t>(kTraceMethodActionMask)); |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 60 | static constexpr uint8_t kOpNewMethod = 1U; |
| 61 | static constexpr uint8_t kOpNewThread = 2U; |
Shukang Zhou | 8a5ab91 | 2017-01-20 11:40:16 -0800 | [diff] [blame] | 62 | static constexpr uint8_t kOpTraceSummary = 3U; |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 63 | |
jeffhao | a9ef3fd | 2011-12-13 18:33:43 -0800 | [diff] [blame] | 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; |
Mathieu Chartier | 4d64cd4 | 2015-06-02 16:38:29 -0700 | [diff] [blame] | 69 | static const uint16_t kTraceRecordSizeSingleClock = 10; // using v2 |
| 70 | static const uint16_t kTraceRecordSizeDualClock = 14; // using v3 with two timestamps |
jeffhao | a9ef3fd | 2011-12-13 18:33:43 -0800 | [diff] [blame] | 71 | |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 72 | TraceClockSource Trace::default_clock_source_ = kDefaultTraceClockSource; |
Elliott Hughes | e119a36 | 2012-05-22 17:37:06 -0700 | [diff] [blame] | 73 | |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 74 | Trace* volatile Trace::the_trace_ = nullptr; |
Jeff Hao | 0abc72e | 2013-08-13 13:45:14 -0700 | [diff] [blame] | 75 | pthread_t Trace::sampling_pthread_ = 0U; |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 76 | std::unique_ptr<std::vector<ArtMethod*>> Trace::temp_stack_trace_; |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 77 | |
Sebastien Hertz | 0462c4c | 2015-04-01 16:34:17 +0200 | [diff] [blame] | 78 | // The key identifying the tracer to update instrumentation. |
| 79 | static constexpr const char* kTracerInstrumentationKey = "Tracer"; |
| 80 | |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 81 | static TraceAction DecodeTraceAction(uint32_t tmid) { |
| 82 | return static_cast<TraceAction>(tmid & kTraceMethodActionMask); |
| 83 | } |
| 84 | |
Mathieu Chartier | 4d64cd4 | 2015-06-02 16:38:29 -0700 | [diff] [blame] | 85 | ArtMethod* Trace::DecodeTraceMethod(uint32_t tmid) { |
| 86 | MutexLock mu(Thread::Current(), *unique_methods_lock_); |
| 87 | return unique_methods_[tmid >> TraceActionBits]; |
| 88 | } |
| 89 | |
| 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 | |
| 106 | uint32_t Trace::EncodeTraceMethodAndAction(ArtMethod* method, TraceAction action) { |
| 107 | uint32_t tmid = (EncodeTraceMethod(method) << TraceActionBits) | action; |
| 108 | DCHECK_EQ(method, DecodeTraceMethod(tmid)); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 109 | return tmid; |
jeffhao | a9ef3fd | 2011-12-13 18:33:43 -0800 | [diff] [blame] | 110 | } |
| 111 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 112 | std::vector<ArtMethod*>* Trace::AllocStackTrace() { |
Mathieu Chartier | 4d64cd4 | 2015-06-02 16:38:29 -0700 | [diff] [blame] | 113 | return (temp_stack_trace_.get() != nullptr) ? temp_stack_trace_.release() : |
| 114 | new std::vector<ArtMethod*>(); |
Jeff Hao | 5ce4b17 | 2013-08-16 16:27:18 -0700 | [diff] [blame] | 115 | } |
| 116 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 117 | void Trace::FreeStackTrace(std::vector<ArtMethod*>* stack_trace) { |
Jeff Hao | 5ce4b17 | 2013-08-16 16:27:18 -0700 | [diff] [blame] | 118 | stack_trace->clear(); |
| 119 | temp_stack_trace_.reset(stack_trace); |
| 120 | } |
| 121 | |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 122 | void Trace::SetDefaultClockSource(TraceClockSource clock_source) { |
Elliott Hughes | 0a18df8 | 2015-01-09 15:16:16 -0800 | [diff] [blame] | 123 | #if defined(__linux__) |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 124 | default_clock_source_ = clock_source; |
| 125 | #else |
Igor Murashkin | aaebaa0 | 2015-01-26 10:55:53 -0800 | [diff] [blame] | 126 | if (clock_source != TraceClockSource::kWall) { |
Jeff Hao | 5ce4b17 | 2013-08-16 16:27:18 -0700 | [diff] [blame] | 127 | LOG(WARNING) << "Ignoring tracing request to use CPU time."; |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 128 | } |
| 129 | #endif |
| 130 | } |
| 131 | |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 132 | static uint16_t GetTraceVersion(TraceClockSource clock_source) { |
Igor Murashkin | aaebaa0 | 2015-01-26 10:55:53 -0800 | [diff] [blame] | 133 | return (clock_source == TraceClockSource::kDual) ? kTraceVersionDualClock |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 134 | : kTraceVersionSingleClock; |
| 135 | } |
| 136 | |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 137 | static uint16_t GetRecordSize(TraceClockSource clock_source) { |
Igor Murashkin | aaebaa0 | 2015-01-26 10:55:53 -0800 | [diff] [blame] | 138 | return (clock_source == TraceClockSource::kDual) ? kTraceRecordSizeDualClock |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 139 | : kTraceRecordSizeSingleClock; |
jeffhao | a9ef3fd | 2011-12-13 18:33:43 -0800 | [diff] [blame] | 140 | } |
| 141 | |
Elliott Hughes | e119a36 | 2012-05-22 17:37:06 -0700 | [diff] [blame] | 142 | bool Trace::UseThreadCpuClock() { |
Igor Murashkin | aaebaa0 | 2015-01-26 10:55:53 -0800 | [diff] [blame] | 143 | return (clock_source_ == TraceClockSource::kThreadCpu) || |
| 144 | (clock_source_ == TraceClockSource::kDual); |
jeffhao | a9ef3fd | 2011-12-13 18:33:43 -0800 | [diff] [blame] | 145 | } |
| 146 | |
Elliott Hughes | e119a36 | 2012-05-22 17:37:06 -0700 | [diff] [blame] | 147 | bool Trace::UseWallClock() { |
Igor Murashkin | aaebaa0 | 2015-01-26 10:55:53 -0800 | [diff] [blame] | 148 | return (clock_source_ == TraceClockSource::kWall) || |
| 149 | (clock_source_ == TraceClockSource::kDual); |
Elliott Hughes | e119a36 | 2012-05-22 17:37:06 -0700 | [diff] [blame] | 150 | } |
| 151 | |
Jeff Hao | c5d824a | 2014-07-28 18:35:38 -0700 | [diff] [blame] | 152 | void Trace::MeasureClockOverhead() { |
| 153 | if (UseThreadCpuClock()) { |
Jeff Hao | 57dac6e | 2013-08-15 16:36:24 -0700 | [diff] [blame] | 154 | Thread::Current()->GetCpuMicroTime(); |
jeffhao | a9ef3fd | 2011-12-13 18:33:43 -0800 | [diff] [blame] | 155 | } |
Jeff Hao | c5d824a | 2014-07-28 18:35:38 -0700 | [diff] [blame] | 156 | if (UseWallClock()) { |
jeffhao | a9ef3fd | 2011-12-13 18:33:43 -0800 | [diff] [blame] | 157 | MicroTime(); |
| 158 | } |
| 159 | } |
| 160 | |
Jeff Hao | 5ce4b17 | 2013-08-16 16:27:18 -0700 | [diff] [blame] | 161 | // Compute an average time taken to measure clocks. |
Jeff Hao | c5d824a | 2014-07-28 18:35:38 -0700 | [diff] [blame] | 162 | uint32_t Trace::GetClockOverheadNanoSeconds() { |
Jeff Hao | 57dac6e | 2013-08-15 16:36:24 -0700 | [diff] [blame] | 163 | Thread* self = Thread::Current(); |
| 164 | uint64_t start = self->GetCpuMicroTime(); |
jeffhao | a9ef3fd | 2011-12-13 18:33:43 -0800 | [diff] [blame] | 165 | |
| 166 | for (int i = 4000; i > 0; i--) { |
Jeff Hao | c5d824a | 2014-07-28 18:35:38 -0700 | [diff] [blame] | 167 | MeasureClockOverhead(); |
| 168 | MeasureClockOverhead(); |
| 169 | MeasureClockOverhead(); |
| 170 | MeasureClockOverhead(); |
| 171 | MeasureClockOverhead(); |
| 172 | MeasureClockOverhead(); |
| 173 | MeasureClockOverhead(); |
| 174 | MeasureClockOverhead(); |
jeffhao | a9ef3fd | 2011-12-13 18:33:43 -0800 | [diff] [blame] | 175 | } |
| 176 | |
Jeff Hao | 5ce4b17 | 2013-08-16 16:27:18 -0700 | [diff] [blame] | 177 | uint64_t elapsed_us = self->GetCpuMicroTime() - start; |
| 178 | return static_cast<uint32_t>(elapsed_us / 32); |
jeffhao | a9ef3fd | 2011-12-13 18:33:43 -0800 | [diff] [blame] | 179 | } |
| 180 | |
Elliott Hughes | ffb465f | 2012-03-01 18:46:05 -0800 | [diff] [blame] | 181 | // TODO: put this somewhere with the big-endian equivalent used by JDWP. |
| 182 | static void Append2LE(uint8_t* buf, uint16_t val) { |
Jeff Hao | 5ce4b17 | 2013-08-16 16:27:18 -0700 | [diff] [blame] | 183 | *buf++ = static_cast<uint8_t>(val); |
| 184 | *buf++ = static_cast<uint8_t>(val >> 8); |
jeffhao | a9ef3fd | 2011-12-13 18:33:43 -0800 | [diff] [blame] | 185 | } |
| 186 | |
Elliott Hughes | ffb465f | 2012-03-01 18:46:05 -0800 | [diff] [blame] | 187 | // TODO: put this somewhere with the big-endian equivalent used by JDWP. |
| 188 | static void Append4LE(uint8_t* buf, uint32_t val) { |
Jeff Hao | 5ce4b17 | 2013-08-16 16:27:18 -0700 | [diff] [blame] | 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); |
jeffhao | a9ef3fd | 2011-12-13 18:33:43 -0800 | [diff] [blame] | 193 | } |
| 194 | |
Elliott Hughes | ffb465f | 2012-03-01 18:46:05 -0800 | [diff] [blame] | 195 | // TODO: put this somewhere with the big-endian equivalent used by JDWP. |
| 196 | static void Append8LE(uint8_t* buf, uint64_t val) { |
Jeff Hao | 5ce4b17 | 2013-08-16 16:27:18 -0700 | [diff] [blame] | 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); |
jeffhao | a9ef3fd | 2011-12-13 18:33:43 -0800 | [diff] [blame] | 205 | } |
| 206 | |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 207 | static void GetSample(Thread* thread, void* arg) REQUIRES_SHARED(Locks::mutator_lock_) { |
Andreas Gampe | c7d878d | 2018-11-19 18:42:06 +0000 | [diff] [blame] | 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); |
Jeff Hao | 0abc72e | 2013-08-13 13:45:14 -0700 | [diff] [blame] | 221 | Trace* the_trace = reinterpret_cast<Trace*>(arg); |
| 222 | the_trace->CompareAndUpdateStackTrace(thread, stack_trace); |
| 223 | } |
| 224 | |
Andreas Gampe | ca71458 | 2015-04-03 19:41:34 -0700 | [diff] [blame] | 225 | static void ClearThreadStackTraceAndClockBase(Thread* thread, void* arg ATTRIBUTE_UNUSED) { |
Jeff Hao | 5ce4b17 | 2013-08-16 16:27:18 -0700 | [diff] [blame] | 226 | thread->SetTraceClockBase(0); |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 227 | std::vector<ArtMethod*>* stack_trace = thread->GetStackTraceSample(); |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 228 | thread->SetStackTraceSample(nullptr); |
Jeff Hao | 5ce4b17 | 2013-08-16 16:27:18 -0700 | [diff] [blame] | 229 | delete stack_trace; |
| 230 | } |
| 231 | |
Jeff Hao | 0abc72e | 2013-08-13 13:45:14 -0700 | [diff] [blame] | 232 | void Trace::CompareAndUpdateStackTrace(Thread* thread, |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 233 | std::vector<ArtMethod*>* stack_trace) { |
Jeff Hao | 0abc72e | 2013-08-13 13:45:14 -0700 | [diff] [blame] | 234 | CHECK_EQ(pthread_self(), sampling_pthread_); |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 235 | std::vector<ArtMethod*>* old_stack_trace = thread->GetStackTraceSample(); |
Jeff Hao | 5ce4b17 | 2013-08-16 16:27:18 -0700 | [diff] [blame] | 236 | // Update the thread's stack trace sample. |
| 237 | thread->SetStackTraceSample(stack_trace); |
Jeff Hao | c1ff4b7 | 2013-08-19 11:33:10 -0700 | [diff] [blame] | 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); |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 242 | if (old_stack_trace == nullptr) { |
Jeff Hao | 5ce4b17 | 2013-08-16 16:27:18 -0700 | [diff] [blame] | 243 | // If there's no previous stack trace sample for this thread, log an entry event for all |
Jeff Hao | 0abc72e | 2013-08-13 13:45:14 -0700 | [diff] [blame] | 244 | // methods in the trace. |
Mathieu Chartier | 4d64cd4 | 2015-06-02 16:38:29 -0700 | [diff] [blame] | 245 | for (auto rit = stack_trace->rbegin(); rit != stack_trace->rend(); ++rit) { |
Jeff Hao | c1ff4b7 | 2013-08-19 11:33:10 -0700 | [diff] [blame] | 246 | LogMethodTraceEvent(thread, *rit, instrumentation::Instrumentation::kMethodEntered, |
| 247 | thread_clock_diff, wall_clock_diff); |
Jeff Hao | 0abc72e | 2013-08-13 13:45:14 -0700 | [diff] [blame] | 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. |
Mathieu Chartier | 4d64cd4 | 2015-06-02 16:38:29 -0700 | [diff] [blame] | 252 | auto old_rit = old_stack_trace->rbegin(); |
| 253 | auto rit = stack_trace->rbegin(); |
Jeff Hao | 0abc72e | 2013-08-13 13:45:14 -0700 | [diff] [blame] | 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. |
Mathieu Chartier | 4d64cd4 | 2015-06-02 16:38:29 -0700 | [diff] [blame] | 260 | for (auto old_it = old_stack_trace->begin(); old_it != old_rit.base(); ++old_it) { |
Jeff Hao | c1ff4b7 | 2013-08-19 11:33:10 -0700 | [diff] [blame] | 261 | LogMethodTraceEvent(thread, *old_it, instrumentation::Instrumentation::kMethodExited, |
| 262 | thread_clock_diff, wall_clock_diff); |
Jeff Hao | 0abc72e | 2013-08-13 13:45:14 -0700 | [diff] [blame] | 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) { |
Jeff Hao | c1ff4b7 | 2013-08-19 11:33:10 -0700 | [diff] [blame] | 266 | LogMethodTraceEvent(thread, *rit, instrumentation::Instrumentation::kMethodEntered, |
| 267 | thread_clock_diff, wall_clock_diff); |
Jeff Hao | 0abc72e | 2013-08-13 13:45:14 -0700 | [diff] [blame] | 268 | } |
Jeff Hao | 5ce4b17 | 2013-08-16 16:27:18 -0700 | [diff] [blame] | 269 | FreeStackTrace(old_stack_trace); |
Jeff Hao | 0abc72e | 2013-08-13 13:45:14 -0700 | [diff] [blame] | 270 | } |
| 271 | } |
| 272 | |
| 273 | void* Trace::RunSamplingThread(void* arg) { |
| 274 | Runtime* runtime = Runtime::Current(); |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 275 | intptr_t interval_us = reinterpret_cast<intptr_t>(arg); |
Jeff Hao | 4044bda | 2014-01-06 15:50:45 -0800 | [diff] [blame] | 276 | CHECK_GE(interval_us, 0); |
Jeff Hao | 0abc72e | 2013-08-13 13:45:14 -0700 | [diff] [blame] | 277 | CHECK(runtime->AttachCurrentThread("Sampling Profiler", true, runtime->GetSystemThreadGroup(), |
Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 278 | !runtime->IsAotCompiler())); |
Jeff Hao | 0abc72e | 2013-08-13 13:45:14 -0700 | [diff] [blame] | 279 | |
| 280 | while (true) { |
Jeff Hao | 23009dc | 2013-08-22 15:36:42 -0700 | [diff] [blame] | 281 | usleep(interval_us); |
Mathieu Chartier | 32ce2ad | 2016-03-04 14:58:03 -0800 | [diff] [blame] | 282 | ScopedTrace trace("Profile sampling"); |
Jeff Hao | 0abc72e | 2013-08-13 13:45:14 -0700 | [diff] [blame] | 283 | Thread* self = Thread::Current(); |
| 284 | Trace* the_trace; |
| 285 | { |
| 286 | MutexLock mu(self, *Locks::trace_lock_); |
| 287 | the_trace = the_trace_; |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 288 | if (the_trace == nullptr) { |
Jeff Hao | 0abc72e | 2013-08-13 13:45:14 -0700 | [diff] [blame] | 289 | break; |
| 290 | } |
| 291 | } |
Jeff Hao | 0abc72e | 2013-08-13 13:45:14 -0700 | [diff] [blame] | 292 | { |
Roland Levillain | e45b3b1 | 2018-02-27 17:18:55 +0000 | [diff] [blame] | 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); |
Mathieu Chartier | 4f55e22 | 2015-09-04 13:26:21 -0700 | [diff] [blame] | 299 | ScopedSuspendAll ssa(__FUNCTION__); |
Jeff Hao | 0abc72e | 2013-08-13 13:45:14 -0700 | [diff] [blame] | 300 | MutexLock mu(self, *Locks::thread_list_lock_); |
| 301 | runtime->GetThreadList()->ForEach(GetSample, the_trace); |
| 302 | } |
Jeff Hao | 0abc72e | 2013-08-13 13:45:14 -0700 | [diff] [blame] | 303 | } |
| 304 | |
| 305 | runtime->DetachCurrentThread(); |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 306 | return nullptr; |
Jeff Hao | 0abc72e | 2013-08-13 13:45:14 -0700 | [diff] [blame] | 307 | } |
| 308 | |
Andreas Gampe | 6ff3b37 | 2018-03-15 08:53:16 -0700 | [diff] [blame] | 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 | |
| 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 | } |
Andreas Gampe | 7c5acbb | 2018-09-20 13:54:52 -0700 | [diff] [blame] | 340 | std::unique_ptr<File> file(new File(trace_fd, /* path= */ "tracefile", /* check_usage= */ true)); |
Andreas Gampe | 6ff3b37 | 2018-03-15 08:53:16 -0700 | [diff] [blame] | 341 | Start(std::move(file), buffer_size, flags, output_mode, trace_mode, interval_us); |
| 342 | } |
| 343 | |
| 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 | |
| 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); |
Andreas Gampe | 6ff3b37 | 2018-03-15 08:53:16 -0700 | [diff] [blame] | 373 | |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 374 | Thread* self = Thread::Current(); |
| 375 | { |
| 376 | MutexLock mu(self, *Locks::trace_lock_); |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 377 | if (the_trace_ != nullptr) { |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 378 | LOG(ERROR) << "Trace already in progress, ignoring this request"; |
| 379 | return; |
| 380 | } |
jeffhao | e343b76 | 2011-12-05 16:36:44 -0800 | [diff] [blame] | 381 | } |
Jeff Hao | d063d91 | 2014-09-08 09:38:18 -0700 | [diff] [blame] | 382 | |
| 383 | // Check interval if sampling is enabled |
Andreas Gampe | 7e7e0f4 | 2015-03-29 15:26:23 -0700 | [diff] [blame] | 384 | if (trace_mode == TraceMode::kSampling && interval_us <= 0) { |
Jeff Hao | d063d91 | 2014-09-08 09:38:18 -0700 | [diff] [blame] | 385 | LOG(ERROR) << "Invalid sampling interval: " << interval_us; |
| 386 | ScopedObjectAccess soa(self); |
| 387 | ThrowRuntimeException("Invalid sampling interval: %d", interval_us); |
| 388 | return; |
| 389 | } |
jeffhao | a9ef3fd | 2011-12-13 18:33:43 -0800 | [diff] [blame] | 390 | |
Jeff Hao | d063d91 | 2014-09-08 09:38:18 -0700 | [diff] [blame] | 391 | Runtime* runtime = Runtime::Current(); |
Mathieu Chartier | 9ef78b5 | 2014-09-25 17:03:12 -0700 | [diff] [blame] | 392 | |
| 393 | // Enable count of allocs if specified in the flags. |
| 394 | bool enable_stats = false; |
| 395 | |
Nicolas Geoffray | 226805d | 2018-12-14 10:59:02 +0000 | [diff] [blame] | 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 | |
jeffhao | 2692b57 | 2011-12-16 15:42:28 -0800 | [diff] [blame] | 405 | // Create Trace object. |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 406 | { |
Mathieu Chartier | aa51682 | 2015-10-02 15:53:37 -0700 | [diff] [blame] | 407 | // Required since EnableMethodTracing calls ConfigureStubs which visits class linker classes. |
| 408 | gc::ScopedGCCriticalSection gcs(self, |
| 409 | gc::kGcCauseInstrumentation, |
| 410 | gc::kCollectorTypeInstrumentation); |
Mathieu Chartier | 4f55e22 | 2015-09-04 13:26:21 -0700 | [diff] [blame] | 411 | ScopedSuspendAll ssa(__FUNCTION__); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 412 | MutexLock mu(self, *Locks::trace_lock_); |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 413 | if (the_trace_ != nullptr) { |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 414 | LOG(ERROR) << "Trace already in progress, ignoring this request"; |
| 415 | } else { |
Stephen Hines | f0b33e5 | 2018-08-25 13:31:52 -0700 | [diff] [blame] | 416 | enable_stats = (flags & kTraceCountAllocs) != 0; |
Andreas Gampe | 6ff3b37 | 2018-03-15 08:53:16 -0700 | [diff] [blame] | 417 | the_trace_ = new Trace(trace_file.release(), buffer_size, flags, output_mode, trace_mode); |
Andreas Gampe | 7e7e0f4 | 2015-03-29 15:26:23 -0700 | [diff] [blame] | 418 | if (trace_mode == TraceMode::kSampling) { |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 419 | CHECK_PTHREAD_CALL(pthread_create, (&sampling_pthread_, nullptr, &RunSamplingThread, |
Jeff Hao | 23009dc | 2013-08-22 15:36:42 -0700 | [diff] [blame] | 420 | reinterpret_cast<void*>(interval_us)), |
| 421 | "Sampling profiler thread"); |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 422 | the_trace_->interval_us_ = interval_us; |
Jeff Hao | 0abc72e | 2013-08-13 13:45:14 -0700 | [diff] [blame] | 423 | } else { |
| 424 | runtime->GetInstrumentation()->AddListener(the_trace_, |
| 425 | instrumentation::Instrumentation::kMethodEntered | |
| 426 | instrumentation::Instrumentation::kMethodExited | |
| 427 | instrumentation::Instrumentation::kMethodUnwind); |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 428 | // TODO: In full-PIC mode, we don't need to fully deopt. |
Alex Light | 2a90bc9 | 2018-07-10 21:57:42 +0000 | [diff] [blame] | 429 | // TODO: We can only use trampoline entrypoints if we are java-debuggable since in that case |
| 430 | // we know that inlining and other problematic optimizations are disabled. We might just |
| 431 | // want to use the trampolines anyway since it is faster. It makes the story with disabling |
| 432 | // jit-gc more complex though. |
| 433 | runtime->GetInstrumentation()->EnableMethodTracing( |
Andreas Gampe | 98ea9d9 | 2018-10-19 14:06:15 -0700 | [diff] [blame] | 434 | kTracerInstrumentationKey, /*needs_interpreter=*/!runtime->IsJavaDebuggable()); |
Jeff Hao | 0abc72e | 2013-08-13 13:45:14 -0700 | [diff] [blame] | 435 | } |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 436 | } |
jeffhao | 0791adc | 2012-04-04 11:14:32 -0700 | [diff] [blame] | 437 | } |
Jeff Hao | d063d91 | 2014-09-08 09:38:18 -0700 | [diff] [blame] | 438 | |
Mathieu Chartier | 9ef78b5 | 2014-09-25 17:03:12 -0700 | [diff] [blame] | 439 | // Can't call this when holding the mutator lock. |
| 440 | if (enable_stats) { |
| 441 | runtime->SetStatsEnabled(true); |
| 442 | } |
jeffhao | 2692b57 | 2011-12-16 15:42:28 -0800 | [diff] [blame] | 443 | } |
| 444 | |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 445 | void Trace::StopTracing(bool finish_tracing, bool flush_file) { |
Mathieu Chartier | 9ef78b5 | 2014-09-25 17:03:12 -0700 | [diff] [blame] | 446 | bool stop_alloc_counting = false; |
Mathieu Chartier | 02e5f16 | 2015-03-11 09:54:22 -0700 | [diff] [blame] | 447 | Runtime* const runtime = Runtime::Current(); |
| 448 | Trace* the_trace = nullptr; |
Hiroshi Yamauchi | 9ea02c4 | 2016-03-03 15:09:27 -0800 | [diff] [blame] | 449 | Thread* const self = Thread::Current(); |
Jeff Hao | 0abc72e | 2013-08-13 13:45:14 -0700 | [diff] [blame] | 450 | pthread_t sampling_pthread = 0U; |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 451 | { |
Hiroshi Yamauchi | 9ea02c4 | 2016-03-03 15:09:27 -0800 | [diff] [blame] | 452 | MutexLock mu(self, *Locks::trace_lock_); |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 453 | if (the_trace_ == nullptr) { |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 454 | LOG(ERROR) << "Trace stop requested, but no trace currently running"; |
| 455 | } else { |
| 456 | the_trace = the_trace_; |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 457 | the_trace_ = nullptr; |
Jeff Hao | 0abc72e | 2013-08-13 13:45:14 -0700 | [diff] [blame] | 458 | sampling_pthread = sampling_pthread_; |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 459 | } |
jeffhao | 2692b57 | 2011-12-16 15:42:28 -0800 | [diff] [blame] | 460 | } |
Mathieu Chartier | 02e5f16 | 2015-03-11 09:54:22 -0700 | [diff] [blame] | 461 | // Make sure that we join before we delete the trace since we don't want to have |
| 462 | // the sampling thread access a stale pointer. This finishes since the sampling thread exits when |
| 463 | // the_trace_ is null. |
| 464 | if (sampling_pthread != 0U) { |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 465 | CHECK_PTHREAD_CALL(pthread_join, (sampling_pthread, nullptr), "sampling thread shutdown"); |
Mathieu Chartier | 02e5f16 | 2015-03-11 09:54:22 -0700 | [diff] [blame] | 466 | sampling_pthread_ = 0U; |
| 467 | } |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 468 | |
Alex Light | 772099a | 2017-11-21 14:05:04 -0800 | [diff] [blame] | 469 | if (the_trace != nullptr) { |
| 470 | stop_alloc_counting = (the_trace->flags_ & Trace::kTraceCountAllocs) != 0; |
Orion Hodson | 283ad2d | 2018-03-26 13:37:41 +0100 | [diff] [blame] | 471 | // Stop the trace sources adding more entries to the trace buffer and synchronise stores. |
| 472 | { |
| 473 | gc::ScopedGCCriticalSection gcs(self, |
| 474 | gc::kGcCauseInstrumentation, |
| 475 | gc::kCollectorTypeInstrumentation); |
| 476 | ScopedSuspendAll ssa(__FUNCTION__); |
| 477 | |
| 478 | if (the_trace->trace_mode_ == TraceMode::kSampling) { |
| 479 | MutexLock mu(self, *Locks::thread_list_lock_); |
| 480 | runtime->GetThreadList()->ForEach(ClearThreadStackTraceAndClockBase, nullptr); |
| 481 | } else { |
Orion Hodson | 283ad2d | 2018-03-26 13:37:41 +0100 | [diff] [blame] | 482 | runtime->GetInstrumentation()->RemoveListener( |
| 483 | the_trace, instrumentation::Instrumentation::kMethodEntered | |
| 484 | instrumentation::Instrumentation::kMethodExited | |
| 485 | instrumentation::Instrumentation::kMethodUnwind); |
Ari Hausman-Cohen | ecd21be | 2019-02-26 17:11:24 -0800 | [diff] [blame] | 486 | runtime->GetInstrumentation()->DisableMethodTracing(kTracerInstrumentationKey); |
Orion Hodson | 283ad2d | 2018-03-26 13:37:41 +0100 | [diff] [blame] | 487 | } |
| 488 | } |
| 489 | // At this point, code may read buf_ as it's writers are shutdown |
| 490 | // and the ScopedSuspendAll above has ensured all stores to buf_ |
| 491 | // are now visible. |
Alex Light | 772099a | 2017-11-21 14:05:04 -0800 | [diff] [blame] | 492 | if (finish_tracing) { |
| 493 | the_trace->FinishTracing(); |
| 494 | } |
Alex Light | 772099a | 2017-11-21 14:05:04 -0800 | [diff] [blame] | 495 | if (the_trace->trace_file_.get() != nullptr) { |
| 496 | // Do not try to erase, so flush and close explicitly. |
| 497 | if (flush_file) { |
| 498 | if (the_trace->trace_file_->Flush() != 0) { |
| 499 | PLOG(WARNING) << "Could not flush trace file."; |
| 500 | } |
| 501 | } else { |
| 502 | the_trace->trace_file_->MarkUnchecked(); // Do not trigger guard. |
| 503 | } |
| 504 | if (the_trace->trace_file_->Close() != 0) { |
| 505 | PLOG(ERROR) << "Could not close trace file."; |
| 506 | } |
| 507 | } |
| 508 | delete the_trace; |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 509 | } |
Mathieu Chartier | 9ef78b5 | 2014-09-25 17:03:12 -0700 | [diff] [blame] | 510 | if (stop_alloc_counting) { |
| 511 | // Can be racy since SetStatsEnabled is not guarded by any locks. |
Mathieu Chartier | 02e5f16 | 2015-03-11 09:54:22 -0700 | [diff] [blame] | 512 | runtime->SetStatsEnabled(false); |
Jeff Hao | 0abc72e | 2013-08-13 13:45:14 -0700 | [diff] [blame] | 513 | } |
jeffhao | 2692b57 | 2011-12-16 15:42:28 -0800 | [diff] [blame] | 514 | } |
| 515 | |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 516 | void Trace::Abort() { |
| 517 | // Do not write anything anymore. |
| 518 | StopTracing(false, false); |
| 519 | } |
| 520 | |
| 521 | void Trace::Stop() { |
| 522 | // Finish writing. |
| 523 | StopTracing(true, true); |
| 524 | } |
| 525 | |
jeffhao | b5e8185 | 2012-03-12 11:15:45 -0700 | [diff] [blame] | 526 | void Trace::Shutdown() { |
Jeff Hao | 64caa7d | 2013-08-29 11:18:01 -0700 | [diff] [blame] | 527 | if (GetMethodTracingMode() != kTracingInactive) { |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 528 | Stop(); |
jeffhao | b5e8185 | 2012-03-12 11:15:45 -0700 | [diff] [blame] | 529 | } |
jeffhao | b5e8185 | 2012-03-12 11:15:45 -0700 | [diff] [blame] | 530 | } |
| 531 | |
Jeff Hao | 64caa7d | 2013-08-29 11:18:01 -0700 | [diff] [blame] | 532 | TracingMode Trace::GetMethodTracingMode() { |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 533 | MutexLock mu(Thread::Current(), *Locks::trace_lock_); |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 534 | if (the_trace_ == nullptr) { |
Jeff Hao | 64caa7d | 2013-08-29 11:18:01 -0700 | [diff] [blame] | 535 | return kTracingInactive; |
Jeff Hao | 64caa7d | 2013-08-29 11:18:01 -0700 | [diff] [blame] | 536 | } else { |
Andreas Gampe | 7e7e0f4 | 2015-03-29 15:26:23 -0700 | [diff] [blame] | 537 | switch (the_trace_->trace_mode_) { |
| 538 | case TraceMode::kSampling: |
| 539 | return kSampleProfilingActive; |
| 540 | case TraceMode::kMethodTracing: |
| 541 | return kMethodTracingActive; |
| 542 | } |
| 543 | LOG(FATAL) << "Unreachable"; |
| 544 | UNREACHABLE(); |
Jeff Hao | 64caa7d | 2013-08-29 11:18:01 -0700 | [diff] [blame] | 545 | } |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 546 | } |
jeffhao | a9ef3fd | 2011-12-13 18:33:43 -0800 | [diff] [blame] | 547 | |
Andreas Gampe | e34a42c | 2015-04-25 14:44:29 -0700 | [diff] [blame] | 548 | static constexpr size_t kMinBufSize = 18U; // Trace header is up to 18B. |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 549 | |
Andreas Gampe | 6ff3b37 | 2018-03-15 08:53:16 -0700 | [diff] [blame] | 550 | Trace::Trace(File* trace_file, |
| 551 | size_t buffer_size, |
| 552 | int flags, |
| 553 | TraceOutputMode output_mode, |
| 554 | TraceMode trace_mode) |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 555 | : trace_file_(trace_file), |
Andreas Gampe | e34a42c | 2015-04-25 14:44:29 -0700 | [diff] [blame] | 556 | buf_(new uint8_t[std::max(kMinBufSize, buffer_size)]()), |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 557 | flags_(flags), trace_output_mode_(output_mode), trace_mode_(trace_mode), |
| 558 | clock_source_(default_clock_source_), |
Andreas Gampe | e34a42c | 2015-04-25 14:44:29 -0700 | [diff] [blame] | 559 | buffer_size_(std::max(kMinBufSize, buffer_size)), |
Orion Hodson | 283ad2d | 2018-03-26 13:37:41 +0100 | [diff] [blame] | 560 | start_time_(MicroTime()), clock_overhead_ns_(GetClockOverheadNanoSeconds()), |
Mathieu Chartier | 4d64cd4 | 2015-06-02 16:38:29 -0700 | [diff] [blame] | 561 | overflow_(false), interval_us_(0), streaming_lock_(nullptr), |
Andreas Gampe | 7526d78 | 2015-06-22 22:53:45 -0700 | [diff] [blame] | 562 | unique_methods_lock_(new Mutex("unique methods lock", kTracingUniqueMethodsLock)) { |
Andreas Gampe | 6ff3b37 | 2018-03-15 08:53:16 -0700 | [diff] [blame] | 563 | CHECK(trace_file != nullptr || output_mode == TraceOutputMode::kDDMS); |
| 564 | |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 565 | uint16_t trace_version = GetTraceVersion(clock_source_); |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 566 | if (output_mode == TraceOutputMode::kStreaming) { |
| 567 | trace_version |= 0xF0U; |
| 568 | } |
| 569 | // Set up the beginning of the trace. |
jeffhao | 2692b57 | 2011-12-16 15:42:28 -0800 | [diff] [blame] | 570 | memset(buf_.get(), 0, kTraceHeaderLength); |
| 571 | Append4LE(buf_.get(), kTraceMagicValue); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 572 | Append2LE(buf_.get() + 4, trace_version); |
jeffhao | 2692b57 | 2011-12-16 15:42:28 -0800 | [diff] [blame] | 573 | Append2LE(buf_.get() + 6, kTraceHeaderLength); |
| 574 | Append8LE(buf_.get() + 8, start_time_); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 575 | if (trace_version >= kTraceVersionDualClock) { |
| 576 | uint16_t record_size = GetRecordSize(clock_source_); |
| 577 | Append2LE(buf_.get() + 16, record_size); |
jeffhao | a9ef3fd | 2011-12-13 18:33:43 -0800 | [diff] [blame] | 578 | } |
Andreas Gampe | e34a42c | 2015-04-25 14:44:29 -0700 | [diff] [blame] | 579 | static_assert(18 <= kMinBufSize, "Minimum buffer size not large enough for trace header"); |
jeffhao | a9ef3fd | 2011-12-13 18:33:43 -0800 | [diff] [blame] | 580 | |
Orion Hodson | 88591fe | 2018-03-06 13:35:43 +0000 | [diff] [blame] | 581 | cur_offset_.store(kTraceHeaderLength, std::memory_order_relaxed); |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 582 | |
| 583 | if (output_mode == TraceOutputMode::kStreaming) { |
Andreas Gampe | 7526d78 | 2015-06-22 22:53:45 -0700 | [diff] [blame] | 584 | streaming_lock_ = new Mutex("tracing lock", LockLevel::kTracingStreamingLock); |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 585 | seen_threads_.reset(new ThreadIDBitSet()); |
| 586 | } |
| 587 | } |
| 588 | |
| 589 | Trace::~Trace() { |
| 590 | delete streaming_lock_; |
Andreas Gampe | 7526d78 | 2015-06-22 22:53:45 -0700 | [diff] [blame] | 591 | delete unique_methods_lock_; |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 592 | } |
jeffhao | a9ef3fd | 2011-12-13 18:33:43 -0800 | [diff] [blame] | 593 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 594 | static uint64_t ReadBytes(uint8_t* buf, size_t bytes) { |
| 595 | uint64_t ret = 0; |
| 596 | for (size_t i = 0; i < bytes; ++i) { |
| 597 | ret |= static_cast<uint64_t>(buf[i]) << (i * 8); |
| 598 | } |
| 599 | return ret; |
| 600 | } |
| 601 | |
Mathieu Chartier | 4d64cd4 | 2015-06-02 16:38:29 -0700 | [diff] [blame] | 602 | void Trace::DumpBuf(uint8_t* buf, size_t buf_size, TraceClockSource clock_source) { |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 603 | uint8_t* ptr = buf + kTraceHeaderLength; |
| 604 | uint8_t* end = buf + buf_size; |
| 605 | |
| 606 | while (ptr < end) { |
Mathieu Chartier | 4d64cd4 | 2015-06-02 16:38:29 -0700 | [diff] [blame] | 607 | uint32_t tmid = ReadBytes(ptr + 2, sizeof(tmid)); |
| 608 | ArtMethod* method = DecodeTraceMethod(tmid); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 609 | TraceAction action = DecodeTraceAction(tmid); |
David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 610 | LOG(INFO) << ArtMethod::PrettyMethod(method) << " " << static_cast<int>(action); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 611 | ptr += GetRecordSize(clock_source); |
| 612 | } |
jeffhao | e343b76 | 2011-12-05 16:36:44 -0800 | [diff] [blame] | 613 | } |
| 614 | |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 615 | void Trace::FinishTracing() { |
| 616 | size_t final_offset = 0; |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 617 | std::set<ArtMethod*> visited_methods; |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 618 | if (trace_output_mode_ == TraceOutputMode::kStreaming) { |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 619 | // Clean up. |
Orion Hodson | 283ad2d | 2018-03-26 13:37:41 +0100 | [diff] [blame] | 620 | MutexLock mu(Thread::Current(), *streaming_lock_); |
Mathieu Chartier | 4d64cd4 | 2015-06-02 16:38:29 -0700 | [diff] [blame] | 621 | STLDeleteValues(&seen_methods_); |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 622 | } else { |
Orion Hodson | 88591fe | 2018-03-06 13:35:43 +0000 | [diff] [blame] | 623 | final_offset = cur_offset_.load(std::memory_order_relaxed); |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 624 | GetVisitedMethods(final_offset, &visited_methods); |
| 625 | } |
| 626 | |
| 627 | // Compute elapsed time. |
| 628 | uint64_t elapsed = MicroTime() - start_time_; |
jeffhao | a9ef3fd | 2011-12-13 18:33:43 -0800 | [diff] [blame] | 629 | |
| 630 | std::ostringstream os; |
| 631 | |
| 632 | os << StringPrintf("%cversion\n", kTraceTokenChar); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 633 | os << StringPrintf("%d\n", GetTraceVersion(clock_source_)); |
jeffhao | a9ef3fd | 2011-12-13 18:33:43 -0800 | [diff] [blame] | 634 | os << StringPrintf("data-file-overflow=%s\n", overflow_ ? "true" : "false"); |
| 635 | if (UseThreadCpuClock()) { |
| 636 | if (UseWallClock()) { |
| 637 | os << StringPrintf("clock=dual\n"); |
| 638 | } else { |
| 639 | os << StringPrintf("clock=thread-cpu\n"); |
| 640 | } |
| 641 | } else { |
| 642 | os << StringPrintf("clock=wall\n"); |
| 643 | } |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 644 | os << StringPrintf("elapsed-time-usec=%" PRIu64 "\n", elapsed); |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 645 | if (trace_output_mode_ != TraceOutputMode::kStreaming) { |
| 646 | size_t num_records = (final_offset - kTraceHeaderLength) / GetRecordSize(clock_source_); |
| 647 | os << StringPrintf("num-method-calls=%zd\n", num_records); |
| 648 | } |
Jeff Hao | c5d824a | 2014-07-28 18:35:38 -0700 | [diff] [blame] | 649 | os << StringPrintf("clock-call-overhead-nsec=%d\n", clock_overhead_ns_); |
jeffhao | a9ef3fd | 2011-12-13 18:33:43 -0800 | [diff] [blame] | 650 | os << StringPrintf("vm=art\n"); |
John Reck | 0624a27 | 2015-03-26 15:47:54 -0700 | [diff] [blame] | 651 | os << StringPrintf("pid=%d\n", getpid()); |
jeffhao | 0791adc | 2012-04-04 11:14:32 -0700 | [diff] [blame] | 652 | if ((flags_ & kTraceCountAllocs) != 0) { |
| 653 | os << StringPrintf("alloc-count=%d\n", Runtime::Current()->GetStat(KIND_ALLOCATED_OBJECTS)); |
| 654 | os << StringPrintf("alloc-size=%d\n", Runtime::Current()->GetStat(KIND_ALLOCATED_BYTES)); |
| 655 | os << StringPrintf("gc-count=%d\n", Runtime::Current()->GetStat(KIND_GC_INVOCATIONS)); |
| 656 | } |
jeffhao | a9ef3fd | 2011-12-13 18:33:43 -0800 | [diff] [blame] | 657 | os << StringPrintf("%cthreads\n", kTraceTokenChar); |
| 658 | DumpThreadList(os); |
| 659 | os << StringPrintf("%cmethods\n", kTraceTokenChar); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 660 | DumpMethodList(os, visited_methods); |
jeffhao | a9ef3fd | 2011-12-13 18:33:43 -0800 | [diff] [blame] | 661 | os << StringPrintf("%cend\n", kTraceTokenChar); |
jeffhao | a9ef3fd | 2011-12-13 18:33:43 -0800 | [diff] [blame] | 662 | std::string header(os.str()); |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 663 | |
| 664 | if (trace_output_mode_ == TraceOutputMode::kStreaming) { |
Orion Hodson | 283ad2d | 2018-03-26 13:37:41 +0100 | [diff] [blame] | 665 | // Protect access to buf_ and satisfy sanitizer for calls to WriteBuf / FlushBuf. |
| 666 | MutexLock mu(Thread::Current(), *streaming_lock_); |
Shukang Zhou | 8a5ab91 | 2017-01-20 11:40:16 -0800 | [diff] [blame] | 667 | // Write a special token to mark the end of trace records and the start of |
| 668 | // trace summary. |
| 669 | uint8_t buf[7]; |
| 670 | Append2LE(buf, 0); |
| 671 | buf[2] = kOpTraceSummary; |
| 672 | Append4LE(buf + 3, static_cast<uint32_t>(header.length())); |
| 673 | WriteToBuf(buf, sizeof(buf)); |
| 674 | // Write the trace summary. The summary is identical to the file header when |
| 675 | // the output mode is not streaming (except for methods). |
| 676 | WriteToBuf(reinterpret_cast<const uint8_t*>(header.c_str()), header.length()); |
| 677 | // Flush the buffer, which may include some trace records before the summary. |
| 678 | FlushBuf(); |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 679 | } else { |
| 680 | if (trace_file_.get() == nullptr) { |
Alex Light | 772099a | 2017-11-21 14:05:04 -0800 | [diff] [blame] | 681 | std::vector<uint8_t> data; |
| 682 | data.resize(header.length() + final_offset); |
| 683 | memcpy(data.data(), header.c_str(), header.length()); |
| 684 | memcpy(data.data() + header.length(), buf_.get(), final_offset); |
| 685 | Runtime::Current()->GetRuntimeCallbacks()->DdmPublishChunk(CHUNK_TYPE("MPSE"), |
| 686 | ArrayRef<const uint8_t>(data)); |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 687 | const bool kDumpTraceInfo = false; |
| 688 | if (kDumpTraceInfo) { |
| 689 | LOG(INFO) << "Trace sent:\n" << header; |
| 690 | DumpBuf(buf_.get(), final_offset, clock_source_); |
| 691 | } |
| 692 | } else { |
| 693 | if (!trace_file_->WriteFully(header.c_str(), header.length()) || |
| 694 | !trace_file_->WriteFully(buf_.get(), final_offset)) { |
| 695 | std::string detail(StringPrintf("Trace data write failed: %s", strerror(errno))); |
| 696 | PLOG(ERROR) << detail; |
| 697 | ThrowRuntimeException("%s", detail.c_str()); |
| 698 | } |
| 699 | } |
jeffhao | a9ef3fd | 2011-12-13 18:33:43 -0800 | [diff] [blame] | 700 | } |
jeffhao | a9ef3fd | 2011-12-13 18:33:43 -0800 | [diff] [blame] | 701 | } |
| 702 | |
Roland Levillain | 4b8f1ec | 2015-08-26 18:34:03 +0100 | [diff] [blame] | 703 | void Trace::DexPcMoved(Thread* thread ATTRIBUTE_UNUSED, |
Alex Light | d766158 | 2017-05-01 13:48:16 -0700 | [diff] [blame] | 704 | Handle<mirror::Object> this_object ATTRIBUTE_UNUSED, |
Roland Levillain | 4b8f1ec | 2015-08-26 18:34:03 +0100 | [diff] [blame] | 705 | ArtMethod* method, |
| 706 | uint32_t new_dex_pc) { |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 707 | // We're not recorded to listen to this kind of event, so complain. |
David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 708 | LOG(ERROR) << "Unexpected dex PC event in tracing " << ArtMethod::PrettyMethod(method) |
| 709 | << " " << new_dex_pc; |
Andreas Gampe | c8ccf68 | 2014-09-29 20:07:43 -0700 | [diff] [blame] | 710 | } |
jeffhao | a9ef3fd | 2011-12-13 18:33:43 -0800 | [diff] [blame] | 711 | |
Roland Levillain | 4b8f1ec | 2015-08-26 18:34:03 +0100 | [diff] [blame] | 712 | void Trace::FieldRead(Thread* thread ATTRIBUTE_UNUSED, |
Alex Light | d766158 | 2017-05-01 13:48:16 -0700 | [diff] [blame] | 713 | Handle<mirror::Object> this_object ATTRIBUTE_UNUSED, |
Roland Levillain | 4b8f1ec | 2015-08-26 18:34:03 +0100 | [diff] [blame] | 714 | ArtMethod* method, |
| 715 | uint32_t dex_pc, |
| 716 | ArtField* field ATTRIBUTE_UNUSED) |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 717 | REQUIRES_SHARED(Locks::mutator_lock_) { |
Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 718 | // We're not recorded to listen to this kind of event, so complain. |
David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 719 | LOG(ERROR) << "Unexpected field read event in tracing " << ArtMethod::PrettyMethod(method) |
| 720 | << " " << dex_pc; |
Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 721 | } |
| 722 | |
Roland Levillain | 4b8f1ec | 2015-08-26 18:34:03 +0100 | [diff] [blame] | 723 | void Trace::FieldWritten(Thread* thread ATTRIBUTE_UNUSED, |
Alex Light | d766158 | 2017-05-01 13:48:16 -0700 | [diff] [blame] | 724 | Handle<mirror::Object> this_object ATTRIBUTE_UNUSED, |
Roland Levillain | 4b8f1ec | 2015-08-26 18:34:03 +0100 | [diff] [blame] | 725 | ArtMethod* method, |
| 726 | uint32_t dex_pc, |
| 727 | ArtField* field ATTRIBUTE_UNUSED, |
| 728 | const JValue& field_value ATTRIBUTE_UNUSED) |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 729 | REQUIRES_SHARED(Locks::mutator_lock_) { |
Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 730 | // We're not recorded to listen to this kind of event, so complain. |
David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 731 | LOG(ERROR) << "Unexpected field write event in tracing " << ArtMethod::PrettyMethod(method) |
| 732 | << " " << dex_pc; |
Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 733 | } |
| 734 | |
Alex Light | d766158 | 2017-05-01 13:48:16 -0700 | [diff] [blame] | 735 | void Trace::MethodEntered(Thread* thread, |
| 736 | Handle<mirror::Object> this_object ATTRIBUTE_UNUSED, |
| 737 | ArtMethod* method, |
| 738 | uint32_t dex_pc ATTRIBUTE_UNUSED) { |
Jeff Hao | c1ff4b7 | 2013-08-19 11:33:10 -0700 | [diff] [blame] | 739 | uint32_t thread_clock_diff = 0; |
| 740 | uint32_t wall_clock_diff = 0; |
| 741 | ReadClocks(thread, &thread_clock_diff, &wall_clock_diff); |
| 742 | LogMethodTraceEvent(thread, method, instrumentation::Instrumentation::kMethodEntered, |
| 743 | thread_clock_diff, wall_clock_diff); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 744 | } |
| 745 | |
Alex Light | d766158 | 2017-05-01 13:48:16 -0700 | [diff] [blame] | 746 | void Trace::MethodExited(Thread* thread, |
| 747 | Handle<mirror::Object> this_object ATTRIBUTE_UNUSED, |
| 748 | ArtMethod* method, |
| 749 | uint32_t dex_pc ATTRIBUTE_UNUSED, |
Alex Light | b7c640d | 2019-03-20 15:52:13 -0700 | [diff] [blame] | 750 | instrumentation::OptionalFrame frame ATTRIBUTE_UNUSED, |
| 751 | JValue& return_value ATTRIBUTE_UNUSED) { |
Jeff Hao | c1ff4b7 | 2013-08-19 11:33:10 -0700 | [diff] [blame] | 752 | uint32_t thread_clock_diff = 0; |
| 753 | uint32_t wall_clock_diff = 0; |
| 754 | ReadClocks(thread, &thread_clock_diff, &wall_clock_diff); |
Alex Light | b7c640d | 2019-03-20 15:52:13 -0700 | [diff] [blame] | 755 | LogMethodTraceEvent(thread, |
| 756 | method, |
| 757 | instrumentation::Instrumentation::kMethodExited, |
| 758 | thread_clock_diff, |
| 759 | wall_clock_diff); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 760 | } |
| 761 | |
Alex Light | d766158 | 2017-05-01 13:48:16 -0700 | [diff] [blame] | 762 | void Trace::MethodUnwind(Thread* thread, |
| 763 | Handle<mirror::Object> this_object ATTRIBUTE_UNUSED, |
| 764 | ArtMethod* method, |
| 765 | uint32_t dex_pc ATTRIBUTE_UNUSED) { |
Jeff Hao | c1ff4b7 | 2013-08-19 11:33:10 -0700 | [diff] [blame] | 766 | uint32_t thread_clock_diff = 0; |
| 767 | uint32_t wall_clock_diff = 0; |
| 768 | ReadClocks(thread, &thread_clock_diff, &wall_clock_diff); |
| 769 | LogMethodTraceEvent(thread, method, instrumentation::Instrumentation::kMethodUnwind, |
| 770 | thread_clock_diff, wall_clock_diff); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 771 | } |
| 772 | |
Alex Light | 6e1607e | 2017-08-23 10:06:18 -0700 | [diff] [blame] | 773 | void Trace::ExceptionThrown(Thread* thread ATTRIBUTE_UNUSED, |
Alex Light | d766158 | 2017-05-01 13:48:16 -0700 | [diff] [blame] | 774 | Handle<mirror::Throwable> exception_object ATTRIBUTE_UNUSED) |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 775 | REQUIRES_SHARED(Locks::mutator_lock_) { |
Alex Light | 6e1607e | 2017-08-23 10:06:18 -0700 | [diff] [blame] | 776 | LOG(ERROR) << "Unexpected exception thrown event in tracing"; |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 777 | } |
| 778 | |
Alex Light | 798eab0 | 2017-08-23 12:54:53 -0700 | [diff] [blame] | 779 | void Trace::ExceptionHandled(Thread* thread ATTRIBUTE_UNUSED, |
| 780 | Handle<mirror::Throwable> exception_object ATTRIBUTE_UNUSED) |
| 781 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| 782 | LOG(ERROR) << "Unexpected exception thrown event in tracing"; |
| 783 | } |
| 784 | |
Nicolas Geoffray | 81f0f95 | 2016-01-20 16:25:19 +0000 | [diff] [blame] | 785 | void Trace::Branch(Thread* /*thread*/, ArtMethod* method, |
| 786 | uint32_t /*dex_pc*/, int32_t /*dex_pc_offset*/) |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 787 | REQUIRES_SHARED(Locks::mutator_lock_) { |
David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 788 | LOG(ERROR) << "Unexpected branch event in tracing" << ArtMethod::PrettyMethod(method); |
Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 789 | } |
| 790 | |
Alex Light | 05f4774 | 2017-09-14 00:34:44 +0000 | [diff] [blame] | 791 | void Trace::WatchedFramePop(Thread* self ATTRIBUTE_UNUSED, |
| 792 | const ShadowFrame& frame ATTRIBUTE_UNUSED) { |
| 793 | LOG(ERROR) << "Unexpected WatchedFramePop event in tracing"; |
| 794 | } |
| 795 | |
Jeff Hao | c1ff4b7 | 2013-08-19 11:33:10 -0700 | [diff] [blame] | 796 | void Trace::ReadClocks(Thread* thread, uint32_t* thread_clock_diff, uint32_t* wall_clock_diff) { |
| 797 | if (UseThreadCpuClock()) { |
| 798 | uint64_t clock_base = thread->GetTraceClockBase(); |
| 799 | if (UNLIKELY(clock_base == 0)) { |
| 800 | // First event, record the base time in the map. |
| 801 | uint64_t time = thread->GetCpuMicroTime(); |
| 802 | thread->SetTraceClockBase(time); |
| 803 | } else { |
| 804 | *thread_clock_diff = thread->GetCpuMicroTime() - clock_base; |
| 805 | } |
| 806 | } |
| 807 | if (UseWallClock()) { |
| 808 | *wall_clock_diff = MicroTime() - start_time_; |
| 809 | } |
| 810 | } |
| 811 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 812 | bool Trace::RegisterMethod(ArtMethod* method) { |
Vladimir Marko | c524e9e | 2019-03-26 10:54:50 +0000 | [diff] [blame] | 813 | const DexFile* dex_file = method->GetDexFile(); |
Andreas Gampe | 7526d78 | 2015-06-22 22:53:45 -0700 | [diff] [blame] | 814 | if (seen_methods_.find(dex_file) == seen_methods_.end()) { |
| 815 | seen_methods_.insert(std::make_pair(dex_file, new DexIndexBitSet())); |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 816 | } |
Andreas Gampe | 7526d78 | 2015-06-22 22:53:45 -0700 | [diff] [blame] | 817 | DexIndexBitSet* bit_set = seen_methods_.find(dex_file)->second; |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 818 | if (!(*bit_set)[method->GetDexMethodIndex()]) { |
| 819 | bit_set->set(method->GetDexMethodIndex()); |
| 820 | return true; |
| 821 | } |
| 822 | return false; |
| 823 | } |
| 824 | |
| 825 | bool Trace::RegisterThread(Thread* thread) { |
| 826 | pid_t tid = thread->GetTid(); |
| 827 | CHECK_LT(0U, static_cast<uint32_t>(tid)); |
Alex Light | a344f6a | 2016-07-20 10:43:39 -0700 | [diff] [blame] | 828 | CHECK_LT(static_cast<uint32_t>(tid), kMaxThreadIdNumber); |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 829 | |
| 830 | if (!(*seen_threads_)[tid]) { |
| 831 | seen_threads_->set(tid); |
| 832 | return true; |
| 833 | } |
| 834 | return false; |
| 835 | } |
| 836 | |
Mathieu Chartier | 4d64cd4 | 2015-06-02 16:38:29 -0700 | [diff] [blame] | 837 | std::string Trace::GetMethodLine(ArtMethod* method) { |
Andreas Gampe | 542451c | 2016-07-26 09:02:02 -0700 | [diff] [blame] | 838 | method = method->GetInterfaceMethodIfProxy(kRuntimePointerSize); |
Alex Light | 0f7e8f5 | 2016-07-19 11:21:32 -0700 | [diff] [blame] | 839 | return StringPrintf("%#x\t%s\t%s\t%s\t%s\n", (EncodeTraceMethod(method) << TraceActionBits), |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 840 | PrettyDescriptor(method->GetDeclaringClassDescriptor()).c_str(), method->GetName(), |
| 841 | method->GetSignature().ToString().c_str(), method->GetDeclaringClassSourceFile()); |
| 842 | } |
| 843 | |
| 844 | void Trace::WriteToBuf(const uint8_t* src, size_t src_size) { |
Orion Hodson | 283ad2d | 2018-03-26 13:37:41 +0100 | [diff] [blame] | 845 | // Updates to cur_offset_ are done under the streaming_lock_ here as in streaming mode. |
Orion Hodson | 88591fe | 2018-03-06 13:35:43 +0000 | [diff] [blame] | 846 | int32_t old_offset = cur_offset_.load(std::memory_order_relaxed); |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 847 | int32_t new_offset = old_offset + static_cast<int32_t>(src_size); |
Andreas Gampe | e34a42c | 2015-04-25 14:44:29 -0700 | [diff] [blame] | 848 | if (dchecked_integral_cast<size_t>(new_offset) > buffer_size_) { |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 849 | // Flush buffer. |
| 850 | if (!trace_file_->WriteFully(buf_.get(), old_offset)) { |
| 851 | PLOG(WARNING) << "Failed streaming a tracing event."; |
| 852 | } |
Andreas Gampe | e34a42c | 2015-04-25 14:44:29 -0700 | [diff] [blame] | 853 | |
| 854 | // Check whether the data is too large for the buffer, then write immediately. |
| 855 | if (src_size >= buffer_size_) { |
| 856 | if (!trace_file_->WriteFully(src, src_size)) { |
| 857 | PLOG(WARNING) << "Failed streaming a tracing event."; |
| 858 | } |
Orion Hodson | 283ad2d | 2018-03-26 13:37:41 +0100 | [diff] [blame] | 859 | cur_offset_.store(0, std::memory_order_relaxed); // Buffer is empty now. |
Andreas Gampe | e34a42c | 2015-04-25 14:44:29 -0700 | [diff] [blame] | 860 | return; |
| 861 | } |
| 862 | |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 863 | old_offset = 0; |
| 864 | new_offset = static_cast<int32_t>(src_size); |
| 865 | } |
Orion Hodson | 283ad2d | 2018-03-26 13:37:41 +0100 | [diff] [blame] | 866 | cur_offset_.store(new_offset, std::memory_order_relaxed); |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 867 | // Fill in data. |
| 868 | memcpy(buf_.get() + old_offset, src, src_size); |
| 869 | } |
| 870 | |
Shukang Zhou | 8a5ab91 | 2017-01-20 11:40:16 -0800 | [diff] [blame] | 871 | void Trace::FlushBuf() { |
Orion Hodson | 283ad2d | 2018-03-26 13:37:41 +0100 | [diff] [blame] | 872 | // Updates to cur_offset_ are done under the streaming_lock_ here as in streaming mode. |
Orion Hodson | 88591fe | 2018-03-06 13:35:43 +0000 | [diff] [blame] | 873 | int32_t offset = cur_offset_.load(std::memory_order_relaxed); |
Shukang Zhou | 8a5ab91 | 2017-01-20 11:40:16 -0800 | [diff] [blame] | 874 | if (!trace_file_->WriteFully(buf_.get(), offset)) { |
| 875 | PLOG(WARNING) << "Failed flush the remaining data in streaming."; |
| 876 | } |
Orion Hodson | 283ad2d | 2018-03-26 13:37:41 +0100 | [diff] [blame] | 877 | cur_offset_.store(0, std::memory_order_relaxed); |
Shukang Zhou | 8a5ab91 | 2017-01-20 11:40:16 -0800 | [diff] [blame] | 878 | } |
| 879 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 880 | void Trace::LogMethodTraceEvent(Thread* thread, ArtMethod* method, |
Jeff Hao | c1ff4b7 | 2013-08-19 11:33:10 -0700 | [diff] [blame] | 881 | instrumentation::Instrumentation::InstrumentationEvent event, |
| 882 | uint32_t thread_clock_diff, uint32_t wall_clock_diff) { |
Orion Hodson | 283ad2d | 2018-03-26 13:37:41 +0100 | [diff] [blame] | 883 | // This method is called in both tracing modes (method and |
| 884 | // sampling). In sampling mode, this method is only called by the |
| 885 | // sampling thread. In method tracing mode, it can be called |
| 886 | // concurrently. |
| 887 | |
Alex Light | 4ba388a | 2017-01-27 10:26:49 -0800 | [diff] [blame] | 888 | // Ensure we always use the non-obsolete version of the method so that entry/exit events have the |
| 889 | // same pointer value. |
| 890 | method = method->GetNonObsoleteMethod(); |
Orion Hodson | 283ad2d | 2018-03-26 13:37:41 +0100 | [diff] [blame] | 891 | |
jeffhao | a9ef3fd | 2011-12-13 18:33:43 -0800 | [diff] [blame] | 892 | // Advance cur_offset_ atomically. |
| 893 | int32_t new_offset; |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 894 | int32_t old_offset = 0; |
| 895 | |
Orion Hodson | 283ad2d | 2018-03-26 13:37:41 +0100 | [diff] [blame] | 896 | // In the non-streaming case, we do a busy loop here trying to get |
| 897 | // an offset to write our record and advance cur_offset_ for the |
| 898 | // next use. |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 899 | if (trace_output_mode_ != TraceOutputMode::kStreaming) { |
Orion Hodson | 283ad2d | 2018-03-26 13:37:41 +0100 | [diff] [blame] | 900 | // Although multiple threads can call this method concurrently, |
| 901 | // the compare_exchange_weak here is still atomic (by definition). |
| 902 | // A succeeding update is visible to other cores when they pass |
| 903 | // through this point. |
| 904 | old_offset = cur_offset_.load(std::memory_order_relaxed); // Speculative read |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 905 | do { |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 906 | new_offset = old_offset + GetRecordSize(clock_source_); |
Andreas Gampe | e34a42c | 2015-04-25 14:44:29 -0700 | [diff] [blame] | 907 | if (static_cast<size_t>(new_offset) > buffer_size_) { |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 908 | overflow_ = true; |
| 909 | return; |
| 910 | } |
Orion Hodson | 283ad2d | 2018-03-26 13:37:41 +0100 | [diff] [blame] | 911 | } while (!cur_offset_.compare_exchange_weak(old_offset, new_offset, std::memory_order_relaxed)); |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 912 | } |
jeffhao | a9ef3fd | 2011-12-13 18:33:43 -0800 | [diff] [blame] | 913 | |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 914 | TraceAction action = kTraceMethodEnter; |
| 915 | switch (event) { |
| 916 | case instrumentation::Instrumentation::kMethodEntered: |
| 917 | action = kTraceMethodEnter; |
| 918 | break; |
| 919 | case instrumentation::Instrumentation::kMethodExited: |
| 920 | action = kTraceMethodExit; |
| 921 | break; |
| 922 | case instrumentation::Instrumentation::kMethodUnwind: |
| 923 | action = kTraceUnroll; |
| 924 | break; |
| 925 | default: |
| 926 | UNIMPLEMENTED(FATAL) << "Unexpected event: " << event; |
| 927 | } |
| 928 | |
Mathieu Chartier | 4d64cd4 | 2015-06-02 16:38:29 -0700 | [diff] [blame] | 929 | uint32_t method_value = EncodeTraceMethodAndAction(method, action); |
jeffhao | a9ef3fd | 2011-12-13 18:33:43 -0800 | [diff] [blame] | 930 | |
Orion Hodson | 283ad2d | 2018-03-26 13:37:41 +0100 | [diff] [blame] | 931 | // Write data into the tracing buffer (if not streaming) or into a |
| 932 | // small buffer on the stack (if streaming) which we'll put into the |
| 933 | // tracing buffer below. |
| 934 | // |
| 935 | // These writes to the tracing buffer are synchronised with the |
| 936 | // future reads that (only) occur under FinishTracing(). The callers |
| 937 | // of FinishTracing() acquire locks and (implicitly) synchronise |
| 938 | // the buffer memory. |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 939 | uint8_t* ptr; |
Mathieu Chartier | 4d64cd4 | 2015-06-02 16:38:29 -0700 | [diff] [blame] | 940 | static constexpr size_t kPacketSize = 14U; // The maximum size of data in a packet. |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 941 | uint8_t stack_buf[kPacketSize]; // Space to store a packet when in streaming mode. |
| 942 | if (trace_output_mode_ == TraceOutputMode::kStreaming) { |
| 943 | ptr = stack_buf; |
| 944 | } else { |
| 945 | ptr = buf_.get() + old_offset; |
| 946 | } |
| 947 | |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 948 | Append2LE(ptr, thread->GetTid()); |
Mathieu Chartier | 4d64cd4 | 2015-06-02 16:38:29 -0700 | [diff] [blame] | 949 | Append4LE(ptr + 2, method_value); |
| 950 | ptr += 6; |
jeffhao | a9ef3fd | 2011-12-13 18:33:43 -0800 | [diff] [blame] | 951 | |
| 952 | if (UseThreadCpuClock()) { |
jeffhao | a9ef3fd | 2011-12-13 18:33:43 -0800 | [diff] [blame] | 953 | Append4LE(ptr, thread_clock_diff); |
| 954 | ptr += 4; |
| 955 | } |
jeffhao | a9ef3fd | 2011-12-13 18:33:43 -0800 | [diff] [blame] | 956 | if (UseWallClock()) { |
jeffhao | a9ef3fd | 2011-12-13 18:33:43 -0800 | [diff] [blame] | 957 | Append4LE(ptr, wall_clock_diff); |
| 958 | } |
Mathieu Chartier | 4d64cd4 | 2015-06-02 16:38:29 -0700 | [diff] [blame] | 959 | static_assert(kPacketSize == 2 + 4 + 4 + 4, "Packet size incorrect."); |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 960 | |
| 961 | if (trace_output_mode_ == TraceOutputMode::kStreaming) { |
| 962 | MutexLock mu(Thread::Current(), *streaming_lock_); // To serialize writing. |
| 963 | if (RegisterMethod(method)) { |
| 964 | // Write a special block with the name. |
| 965 | std::string method_line(GetMethodLine(method)); |
| 966 | uint8_t buf2[5]; |
| 967 | Append2LE(buf2, 0); |
| 968 | buf2[2] = kOpNewMethod; |
| 969 | Append2LE(buf2 + 3, static_cast<uint16_t>(method_line.length())); |
| 970 | WriteToBuf(buf2, sizeof(buf2)); |
| 971 | WriteToBuf(reinterpret_cast<const uint8_t*>(method_line.c_str()), method_line.length()); |
| 972 | } |
| 973 | if (RegisterThread(thread)) { |
| 974 | // It might be better to postpone this. Threads might not have received names... |
| 975 | std::string thread_name; |
| 976 | thread->GetThreadName(thread_name); |
| 977 | uint8_t buf2[7]; |
| 978 | Append2LE(buf2, 0); |
| 979 | buf2[2] = kOpNewThread; |
| 980 | Append2LE(buf2 + 3, static_cast<uint16_t>(thread->GetTid())); |
| 981 | Append2LE(buf2 + 5, static_cast<uint16_t>(thread_name.length())); |
| 982 | WriteToBuf(buf2, sizeof(buf2)); |
| 983 | WriteToBuf(reinterpret_cast<const uint8_t*>(thread_name.c_str()), thread_name.length()); |
| 984 | } |
| 985 | WriteToBuf(stack_buf, sizeof(stack_buf)); |
| 986 | } |
jeffhao | a9ef3fd | 2011-12-13 18:33:43 -0800 | [diff] [blame] | 987 | } |
| 988 | |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 989 | void Trace::GetVisitedMethods(size_t buf_size, |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 990 | std::set<ArtMethod*>* visited_methods) { |
jeffhao | 2692b57 | 2011-12-16 15:42:28 -0800 | [diff] [blame] | 991 | uint8_t* ptr = buf_.get() + kTraceHeaderLength; |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 992 | uint8_t* end = buf_.get() + buf_size; |
jeffhao | a9ef3fd | 2011-12-13 18:33:43 -0800 | [diff] [blame] | 993 | |
| 994 | while (ptr < end) { |
Mathieu Chartier | 4d64cd4 | 2015-06-02 16:38:29 -0700 | [diff] [blame] | 995 | uint32_t tmid = ReadBytes(ptr + 2, sizeof(tmid)); |
| 996 | ArtMethod* method = DecodeTraceMethod(tmid); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 997 | visited_methods->insert(method); |
| 998 | ptr += GetRecordSize(clock_source_); |
jeffhao | a9ef3fd | 2011-12-13 18:33:43 -0800 | [diff] [blame] | 999 | } |
| 1000 | } |
| 1001 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1002 | void Trace::DumpMethodList(std::ostream& os, const std::set<ArtMethod*>& visited_methods) { |
Mathieu Chartier | 02e2511 | 2013-08-14 16:14:24 -0700 | [diff] [blame] | 1003 | for (const auto& method : visited_methods) { |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 1004 | os << GetMethodLine(method); |
jeffhao | a9ef3fd | 2011-12-13 18:33:43 -0800 | [diff] [blame] | 1005 | } |
jeffhao | a9ef3fd | 2011-12-13 18:33:43 -0800 | [diff] [blame] | 1006 | } |
| 1007 | |
| 1008 | static void DumpThread(Thread* t, void* arg) { |
Elliott Hughes | ffb465f | 2012-03-01 18:46:05 -0800 | [diff] [blame] | 1009 | std::ostream& os = *reinterpret_cast<std::ostream*>(arg); |
| 1010 | std::string name; |
| 1011 | t->GetThreadName(name); |
| 1012 | os << t->GetTid() << "\t" << name << "\n"; |
jeffhao | a9ef3fd | 2011-12-13 18:33:43 -0800 | [diff] [blame] | 1013 | } |
| 1014 | |
| 1015 | void Trace::DumpThreadList(std::ostream& os) { |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 1016 | Thread* self = Thread::Current(); |
Stephen Hines | 48ba197 | 2018-09-24 13:35:54 -0700 | [diff] [blame] | 1017 | for (const auto& it : exited_threads_) { |
Jeff Hao | e094b87 | 2014-10-14 13:12:01 -0700 | [diff] [blame] | 1018 | os << it.first << "\t" << it.second << "\n"; |
| 1019 | } |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 1020 | Locks::thread_list_lock_->AssertNotHeld(self); |
| 1021 | MutexLock mu(self, *Locks::thread_list_lock_); |
jeffhao | a9ef3fd | 2011-12-13 18:33:43 -0800 | [diff] [blame] | 1022 | Runtime::Current()->GetThreadList()->ForEach(DumpThread, &os); |
jeffhao | e343b76 | 2011-12-05 16:36:44 -0800 | [diff] [blame] | 1023 | } |
| 1024 | |
Jeff Hao | e094b87 | 2014-10-14 13:12:01 -0700 | [diff] [blame] | 1025 | void Trace::StoreExitingThreadInfo(Thread* thread) { |
| 1026 | MutexLock mu(thread, *Locks::trace_lock_); |
| 1027 | if (the_trace_ != nullptr) { |
| 1028 | std::string name; |
| 1029 | thread->GetThreadName(name); |
Andreas Gampe | a1785c5 | 2014-11-25 20:40:08 -0800 | [diff] [blame] | 1030 | // The same thread/tid may be used multiple times. As SafeMap::Put does not allow to override |
| 1031 | // a previous mapping, use SafeMap::Overwrite. |
| 1032 | the_trace_->exited_threads_.Overwrite(thread->GetTid(), name); |
Jeff Hao | e094b87 | 2014-10-14 13:12:01 -0700 | [diff] [blame] | 1033 | } |
| 1034 | } |
| 1035 | |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 1036 | Trace::TraceOutputMode Trace::GetOutputMode() { |
| 1037 | MutexLock mu(Thread::Current(), *Locks::trace_lock_); |
| 1038 | CHECK(the_trace_ != nullptr) << "Trace output mode requested, but no trace currently running"; |
| 1039 | return the_trace_->trace_output_mode_; |
| 1040 | } |
| 1041 | |
| 1042 | Trace::TraceMode Trace::GetMode() { |
| 1043 | MutexLock mu(Thread::Current(), *Locks::trace_lock_); |
| 1044 | CHECK(the_trace_ != nullptr) << "Trace mode requested, but no trace currently running"; |
| 1045 | return the_trace_->trace_mode_; |
| 1046 | } |
| 1047 | |
Andreas Gampe | e34a42c | 2015-04-25 14:44:29 -0700 | [diff] [blame] | 1048 | size_t Trace::GetBufferSize() { |
| 1049 | MutexLock mu(Thread::Current(), *Locks::trace_lock_); |
| 1050 | CHECK(the_trace_ != nullptr) << "Trace mode requested, but no trace currently running"; |
| 1051 | return the_trace_->buffer_size_; |
| 1052 | } |
| 1053 | |
Mathieu Chartier | 7778b88 | 2015-10-05 16:41:10 -0700 | [diff] [blame] | 1054 | bool Trace::IsTracingEnabled() { |
| 1055 | MutexLock mu(Thread::Current(), *Locks::trace_lock_); |
| 1056 | return the_trace_ != nullptr; |
| 1057 | } |
| 1058 | |
jeffhao | e343b76 | 2011-12-05 16:36:44 -0800 | [diff] [blame] | 1059 | } // namespace art |