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