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