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