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