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 | |
Andreas Gampe | e34a42c | 2015-04-25 14:44:29 -0700 | [diff] [blame^] | 25 | #include "base/casts.h" |
Jeff Hao | 0abc72e | 2013-08-13 13:45:14 -0700 | [diff] [blame] | 26 | #include "base/stl_util.h" |
Elliott Hughes | 7616005 | 2012-12-12 16:31:20 -0800 | [diff] [blame] | 27 | #include "base/unix_file/fd_file.h" |
jeffhao | e343b76 | 2011-12-05 16:36:44 -0800 | [diff] [blame] | 28 | #include "class_linker.h" |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 29 | #include "common_throws.h" |
jeffhao | a9ef3fd | 2011-12-13 18:33:43 -0800 | [diff] [blame] | 30 | #include "debugger.h" |
Ian Rogers | 4f6ad8a | 2013-03-18 15:27:28 -0700 | [diff] [blame] | 31 | #include "dex_file-inl.h" |
jeffhao | 725a957 | 2012-11-13 18:20:12 -0800 | [diff] [blame] | 32 | #include "instrumentation.h" |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 33 | #include "mirror/art_method-inl.h" |
Ian Rogers | 4f6ad8a | 2013-03-18 15:27:28 -0700 | [diff] [blame] | 34 | #include "mirror/class-inl.h" |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 35 | #include "mirror/dex_cache-inl.h" |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 36 | #include "mirror/object_array-inl.h" |
Ian Rogers | 4f6ad8a | 2013-03-18 15:27:28 -0700 | [diff] [blame] | 37 | #include "mirror/object-inl.h" |
jeffhao | a9ef3fd | 2011-12-13 18:33:43 -0800 | [diff] [blame] | 38 | #include "os.h" |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 39 | #include "scoped_thread_state_change.h" |
Jeff Hao | 0abc72e | 2013-08-13 13:45:14 -0700 | [diff] [blame] | 40 | #include "ScopedLocalRef.h" |
jeffhao | e343b76 | 2011-12-05 16:36:44 -0800 | [diff] [blame] | 41 | #include "thread.h" |
Ian Rogers | 57b86d4 | 2012-03-27 16:05:41 -0700 | [diff] [blame] | 42 | #include "thread_list.h" |
Ian Rogers | 166db04 | 2013-07-26 12:05:57 -0700 | [diff] [blame] | 43 | #include "entrypoints/quick/quick_entrypoints.h" |
jeffhao | 2692b57 | 2011-12-16 15:42:28 -0800 | [diff] [blame] | 44 | |
| 45 | namespace art { |
| 46 | |
Elliott Hughes | e119a36 | 2012-05-22 17:37:06 -0700 | [diff] [blame] | 47 | // File format: |
| 48 | // header |
| 49 | // record 0 |
| 50 | // record 1 |
| 51 | // ... |
| 52 | // |
| 53 | // Header format: |
| 54 | // u4 magic ('SLOW') |
| 55 | // u2 version |
| 56 | // u2 offset to data |
| 57 | // u8 start date/time in usec |
| 58 | // u2 record size in bytes (version >= 2 only) |
| 59 | // ... padding to 32 bytes |
| 60 | // |
| 61 | // Record format v1: |
| 62 | // u1 thread ID |
| 63 | // u4 method ID | method action |
| 64 | // u4 time delta since start, in usec |
| 65 | // |
| 66 | // Record format v2: |
| 67 | // u2 thread ID |
| 68 | // u4 method ID | method action |
| 69 | // u4 time delta since start, in usec |
| 70 | // |
| 71 | // Record format v3: |
| 72 | // u2 thread ID |
| 73 | // u4 method ID | method action |
| 74 | // u4 time delta since start, in usec |
| 75 | // u4 wall time since start, in usec (when clock == "dual" only) |
| 76 | // |
| 77 | // 32 bits of microseconds is 70 minutes. |
| 78 | // |
| 79 | // All values are stored in little-endian order. |
| 80 | |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 81 | enum TraceAction { |
Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 82 | kTraceMethodEnter = 0x00, // method entry |
| 83 | kTraceMethodExit = 0x01, // method exit |
| 84 | kTraceUnroll = 0x02, // method exited by exception unrolling |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 85 | // 0x03 currently unused |
Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 86 | kTraceMethodActionMask = 0x03, // two bits |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 87 | }; |
| 88 | |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 89 | static constexpr uint8_t kOpNewMethod = 1U; |
| 90 | static constexpr uint8_t kOpNewThread = 2U; |
| 91 | |
Jeff Hao | 0abc72e | 2013-08-13 13:45:14 -0700 | [diff] [blame] | 92 | class BuildStackTraceVisitor : public StackVisitor { |
| 93 | public: |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 94 | explicit BuildStackTraceVisitor(Thread* thread) : StackVisitor(thread, nullptr), |
Jeff Hao | 5ce4b17 | 2013-08-16 16:27:18 -0700 | [diff] [blame] | 95 | method_trace_(Trace::AllocStackTrace()) {} |
Jeff Hao | 0abc72e | 2013-08-13 13:45:14 -0700 | [diff] [blame] | 96 | |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 97 | bool VisitFrame() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
Ian Rogers | e2f77e7 | 2013-08-13 19:19:40 -0700 | [diff] [blame] | 98 | mirror::ArtMethod* m = GetMethod(); |
Jeff Hao | 0abc72e | 2013-08-13 13:45:14 -0700 | [diff] [blame] | 99 | // Ignore runtime frames (in particular callee save). |
| 100 | if (!m->IsRuntimeMethod()) { |
| 101 | method_trace_->push_back(m); |
| 102 | } |
| 103 | return true; |
| 104 | } |
| 105 | |
| 106 | // Returns a stack trace where the topmost frame corresponds with the first element of the vector. |
Ian Rogers | e2f77e7 | 2013-08-13 19:19:40 -0700 | [diff] [blame] | 107 | std::vector<mirror::ArtMethod*>* GetStackTrace() const { |
Jeff Hao | 0abc72e | 2013-08-13 13:45:14 -0700 | [diff] [blame] | 108 | return method_trace_; |
| 109 | } |
| 110 | |
| 111 | private: |
Ian Rogers | e2f77e7 | 2013-08-13 19:19:40 -0700 | [diff] [blame] | 112 | std::vector<mirror::ArtMethod*>* const method_trace_; |
Jeff Hao | 0abc72e | 2013-08-13 13:45:14 -0700 | [diff] [blame] | 113 | }; |
| 114 | |
jeffhao | a9ef3fd | 2011-12-13 18:33:43 -0800 | [diff] [blame] | 115 | static const char kTraceTokenChar = '*'; |
| 116 | static const uint16_t kTraceHeaderLength = 32; |
| 117 | static const uint32_t kTraceMagicValue = 0x574f4c53; |
| 118 | static const uint16_t kTraceVersionSingleClock = 2; |
| 119 | static const uint16_t kTraceVersionDualClock = 3; |
Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 120 | static const uint16_t kTraceRecordSizeSingleClock = 10; // using v2 |
| 121 | static const uint16_t kTraceRecordSizeDualClock = 14; // using v3 with two timestamps |
jeffhao | a9ef3fd | 2011-12-13 18:33:43 -0800 | [diff] [blame] | 122 | |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 123 | TraceClockSource Trace::default_clock_source_ = kDefaultTraceClockSource; |
Elliott Hughes | e119a36 | 2012-05-22 17:37:06 -0700 | [diff] [blame] | 124 | |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 125 | Trace* volatile Trace::the_trace_ = nullptr; |
Jeff Hao | 0abc72e | 2013-08-13 13:45:14 -0700 | [diff] [blame] | 126 | pthread_t Trace::sampling_pthread_ = 0U; |
Ian Rogers | 700a402 | 2014-05-19 16:49:03 -0700 | [diff] [blame] | 127 | std::unique_ptr<std::vector<mirror::ArtMethod*>> Trace::temp_stack_trace_; |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 128 | |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 129 | static mirror::ArtMethod* DecodeTraceMethodId(uint32_t tmid) { |
| 130 | return reinterpret_cast<mirror::ArtMethod*>(tmid & ~kTraceMethodActionMask); |
jeffhao | a9ef3fd | 2011-12-13 18:33:43 -0800 | [diff] [blame] | 131 | } |
Elliott Hughes | e119a36 | 2012-05-22 17:37:06 -0700 | [diff] [blame] | 132 | |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 133 | static TraceAction DecodeTraceAction(uint32_t tmid) { |
| 134 | return static_cast<TraceAction>(tmid & kTraceMethodActionMask); |
| 135 | } |
| 136 | |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 137 | static uint32_t EncodeTraceMethodAndAction(mirror::ArtMethod* method, |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 138 | TraceAction action) { |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 139 | uint32_t tmid = PointerToLowMemUInt32(method) | action; |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 140 | DCHECK_EQ(method, DecodeTraceMethodId(tmid)); |
| 141 | return tmid; |
jeffhao | a9ef3fd | 2011-12-13 18:33:43 -0800 | [diff] [blame] | 142 | } |
| 143 | |
Jeff Hao | 5ce4b17 | 2013-08-16 16:27:18 -0700 | [diff] [blame] | 144 | std::vector<mirror::ArtMethod*>* Trace::AllocStackTrace() { |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 145 | if (temp_stack_trace_.get() != nullptr) { |
Jeff Hao | 5ce4b17 | 2013-08-16 16:27:18 -0700 | [diff] [blame] | 146 | return temp_stack_trace_.release(); |
| 147 | } else { |
| 148 | return new std::vector<mirror::ArtMethod*>(); |
| 149 | } |
| 150 | } |
| 151 | |
| 152 | void Trace::FreeStackTrace(std::vector<mirror::ArtMethod*>* stack_trace) { |
| 153 | stack_trace->clear(); |
| 154 | temp_stack_trace_.reset(stack_trace); |
| 155 | } |
| 156 | |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 157 | void Trace::SetDefaultClockSource(TraceClockSource clock_source) { |
Elliott Hughes | 0a18df8 | 2015-01-09 15:16:16 -0800 | [diff] [blame] | 158 | #if defined(__linux__) |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 159 | default_clock_source_ = clock_source; |
| 160 | #else |
Igor Murashkin | aaebaa0 | 2015-01-26 10:55:53 -0800 | [diff] [blame] | 161 | if (clock_source != TraceClockSource::kWall) { |
Jeff Hao | 5ce4b17 | 2013-08-16 16:27:18 -0700 | [diff] [blame] | 162 | LOG(WARNING) << "Ignoring tracing request to use CPU time."; |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 163 | } |
| 164 | #endif |
| 165 | } |
| 166 | |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 167 | static uint16_t GetTraceVersion(TraceClockSource clock_source) { |
Igor Murashkin | aaebaa0 | 2015-01-26 10:55:53 -0800 | [diff] [blame] | 168 | return (clock_source == TraceClockSource::kDual) ? kTraceVersionDualClock |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 169 | : kTraceVersionSingleClock; |
| 170 | } |
| 171 | |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 172 | static uint16_t GetRecordSize(TraceClockSource clock_source) { |
Igor Murashkin | aaebaa0 | 2015-01-26 10:55:53 -0800 | [diff] [blame] | 173 | return (clock_source == TraceClockSource::kDual) ? kTraceRecordSizeDualClock |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 174 | : kTraceRecordSizeSingleClock; |
jeffhao | a9ef3fd | 2011-12-13 18:33:43 -0800 | [diff] [blame] | 175 | } |
| 176 | |
Elliott Hughes | e119a36 | 2012-05-22 17:37:06 -0700 | [diff] [blame] | 177 | bool Trace::UseThreadCpuClock() { |
Igor Murashkin | aaebaa0 | 2015-01-26 10:55:53 -0800 | [diff] [blame] | 178 | return (clock_source_ == TraceClockSource::kThreadCpu) || |
| 179 | (clock_source_ == TraceClockSource::kDual); |
jeffhao | a9ef3fd | 2011-12-13 18:33:43 -0800 | [diff] [blame] | 180 | } |
| 181 | |
Elliott Hughes | e119a36 | 2012-05-22 17:37:06 -0700 | [diff] [blame] | 182 | bool Trace::UseWallClock() { |
Igor Murashkin | aaebaa0 | 2015-01-26 10:55:53 -0800 | [diff] [blame] | 183 | return (clock_source_ == TraceClockSource::kWall) || |
| 184 | (clock_source_ == TraceClockSource::kDual); |
Elliott Hughes | e119a36 | 2012-05-22 17:37:06 -0700 | [diff] [blame] | 185 | } |
| 186 | |
Jeff Hao | c5d824a | 2014-07-28 18:35:38 -0700 | [diff] [blame] | 187 | void Trace::MeasureClockOverhead() { |
| 188 | if (UseThreadCpuClock()) { |
Jeff Hao | 57dac6e | 2013-08-15 16:36:24 -0700 | [diff] [blame] | 189 | Thread::Current()->GetCpuMicroTime(); |
jeffhao | a9ef3fd | 2011-12-13 18:33:43 -0800 | [diff] [blame] | 190 | } |
Jeff Hao | c5d824a | 2014-07-28 18:35:38 -0700 | [diff] [blame] | 191 | if (UseWallClock()) { |
jeffhao | a9ef3fd | 2011-12-13 18:33:43 -0800 | [diff] [blame] | 192 | MicroTime(); |
| 193 | } |
| 194 | } |
| 195 | |
Jeff Hao | 5ce4b17 | 2013-08-16 16:27:18 -0700 | [diff] [blame] | 196 | // Compute an average time taken to measure clocks. |
Jeff Hao | c5d824a | 2014-07-28 18:35:38 -0700 | [diff] [blame] | 197 | uint32_t Trace::GetClockOverheadNanoSeconds() { |
Jeff Hao | 57dac6e | 2013-08-15 16:36:24 -0700 | [diff] [blame] | 198 | Thread* self = Thread::Current(); |
| 199 | uint64_t start = self->GetCpuMicroTime(); |
jeffhao | a9ef3fd | 2011-12-13 18:33:43 -0800 | [diff] [blame] | 200 | |
| 201 | for (int i = 4000; i > 0; i--) { |
Jeff Hao | c5d824a | 2014-07-28 18:35:38 -0700 | [diff] [blame] | 202 | MeasureClockOverhead(); |
| 203 | MeasureClockOverhead(); |
| 204 | MeasureClockOverhead(); |
| 205 | MeasureClockOverhead(); |
| 206 | MeasureClockOverhead(); |
| 207 | MeasureClockOverhead(); |
| 208 | MeasureClockOverhead(); |
| 209 | MeasureClockOverhead(); |
jeffhao | a9ef3fd | 2011-12-13 18:33:43 -0800 | [diff] [blame] | 210 | } |
| 211 | |
Jeff Hao | 5ce4b17 | 2013-08-16 16:27:18 -0700 | [diff] [blame] | 212 | uint64_t elapsed_us = self->GetCpuMicroTime() - start; |
| 213 | return static_cast<uint32_t>(elapsed_us / 32); |
jeffhao | a9ef3fd | 2011-12-13 18:33:43 -0800 | [diff] [blame] | 214 | } |
| 215 | |
Elliott Hughes | ffb465f | 2012-03-01 18:46:05 -0800 | [diff] [blame] | 216 | // TODO: put this somewhere with the big-endian equivalent used by JDWP. |
| 217 | static void Append2LE(uint8_t* buf, uint16_t val) { |
Jeff Hao | 5ce4b17 | 2013-08-16 16:27:18 -0700 | [diff] [blame] | 218 | *buf++ = static_cast<uint8_t>(val); |
| 219 | *buf++ = static_cast<uint8_t>(val >> 8); |
jeffhao | a9ef3fd | 2011-12-13 18:33:43 -0800 | [diff] [blame] | 220 | } |
| 221 | |
Elliott Hughes | ffb465f | 2012-03-01 18:46:05 -0800 | [diff] [blame] | 222 | // TODO: put this somewhere with the big-endian equivalent used by JDWP. |
| 223 | static void Append4LE(uint8_t* buf, uint32_t val) { |
Jeff Hao | 5ce4b17 | 2013-08-16 16:27:18 -0700 | [diff] [blame] | 224 | *buf++ = static_cast<uint8_t>(val); |
| 225 | *buf++ = static_cast<uint8_t>(val >> 8); |
| 226 | *buf++ = static_cast<uint8_t>(val >> 16); |
| 227 | *buf++ = static_cast<uint8_t>(val >> 24); |
jeffhao | a9ef3fd | 2011-12-13 18:33:43 -0800 | [diff] [blame] | 228 | } |
| 229 | |
Elliott Hughes | ffb465f | 2012-03-01 18:46:05 -0800 | [diff] [blame] | 230 | // TODO: put this somewhere with the big-endian equivalent used by JDWP. |
| 231 | static void Append8LE(uint8_t* buf, uint64_t val) { |
Jeff Hao | 5ce4b17 | 2013-08-16 16:27:18 -0700 | [diff] [blame] | 232 | *buf++ = static_cast<uint8_t>(val); |
| 233 | *buf++ = static_cast<uint8_t>(val >> 8); |
| 234 | *buf++ = static_cast<uint8_t>(val >> 16); |
| 235 | *buf++ = static_cast<uint8_t>(val >> 24); |
| 236 | *buf++ = static_cast<uint8_t>(val >> 32); |
| 237 | *buf++ = static_cast<uint8_t>(val >> 40); |
| 238 | *buf++ = static_cast<uint8_t>(val >> 48); |
| 239 | *buf++ = static_cast<uint8_t>(val >> 56); |
jeffhao | a9ef3fd | 2011-12-13 18:33:43 -0800 | [diff] [blame] | 240 | } |
| 241 | |
Jeff Hao | 0abc72e | 2013-08-13 13:45:14 -0700 | [diff] [blame] | 242 | static void GetSample(Thread* thread, void* arg) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
| 243 | BuildStackTraceVisitor build_trace_visitor(thread); |
| 244 | build_trace_visitor.WalkStack(); |
Ian Rogers | e2f77e7 | 2013-08-13 19:19:40 -0700 | [diff] [blame] | 245 | std::vector<mirror::ArtMethod*>* stack_trace = build_trace_visitor.GetStackTrace(); |
Jeff Hao | 0abc72e | 2013-08-13 13:45:14 -0700 | [diff] [blame] | 246 | Trace* the_trace = reinterpret_cast<Trace*>(arg); |
| 247 | the_trace->CompareAndUpdateStackTrace(thread, stack_trace); |
| 248 | } |
| 249 | |
Andreas Gampe | ca71458 | 2015-04-03 19:41:34 -0700 | [diff] [blame] | 250 | static void ClearThreadStackTraceAndClockBase(Thread* thread, void* arg ATTRIBUTE_UNUSED) { |
Jeff Hao | 5ce4b17 | 2013-08-16 16:27:18 -0700 | [diff] [blame] | 251 | thread->SetTraceClockBase(0); |
| 252 | std::vector<mirror::ArtMethod*>* stack_trace = thread->GetStackTraceSample(); |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 253 | thread->SetStackTraceSample(nullptr); |
Jeff Hao | 5ce4b17 | 2013-08-16 16:27:18 -0700 | [diff] [blame] | 254 | delete stack_trace; |
| 255 | } |
| 256 | |
Jeff Hao | 0abc72e | 2013-08-13 13:45:14 -0700 | [diff] [blame] | 257 | void Trace::CompareAndUpdateStackTrace(Thread* thread, |
Ian Rogers | e2f77e7 | 2013-08-13 19:19:40 -0700 | [diff] [blame] | 258 | std::vector<mirror::ArtMethod*>* stack_trace) { |
Jeff Hao | 0abc72e | 2013-08-13 13:45:14 -0700 | [diff] [blame] | 259 | CHECK_EQ(pthread_self(), sampling_pthread_); |
Jeff Hao | 5ce4b17 | 2013-08-16 16:27:18 -0700 | [diff] [blame] | 260 | std::vector<mirror::ArtMethod*>* old_stack_trace = thread->GetStackTraceSample(); |
| 261 | // Update the thread's stack trace sample. |
| 262 | thread->SetStackTraceSample(stack_trace); |
Jeff Hao | c1ff4b7 | 2013-08-19 11:33:10 -0700 | [diff] [blame] | 263 | // Read timer clocks to use for all events in this trace. |
| 264 | uint32_t thread_clock_diff = 0; |
| 265 | uint32_t wall_clock_diff = 0; |
| 266 | ReadClocks(thread, &thread_clock_diff, &wall_clock_diff); |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 267 | if (old_stack_trace == nullptr) { |
Jeff Hao | 5ce4b17 | 2013-08-16 16:27:18 -0700 | [diff] [blame] | 268 | // 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] | 269 | // methods in the trace. |
Ian Rogers | e2f77e7 | 2013-08-13 19:19:40 -0700 | [diff] [blame] | 270 | for (std::vector<mirror::ArtMethod*>::reverse_iterator rit = stack_trace->rbegin(); |
Jeff Hao | 0abc72e | 2013-08-13 13:45:14 -0700 | [diff] [blame] | 271 | rit != stack_trace->rend(); ++rit) { |
Jeff Hao | c1ff4b7 | 2013-08-19 11:33:10 -0700 | [diff] [blame] | 272 | LogMethodTraceEvent(thread, *rit, instrumentation::Instrumentation::kMethodEntered, |
| 273 | thread_clock_diff, wall_clock_diff); |
Jeff Hao | 0abc72e | 2013-08-13 13:45:14 -0700 | [diff] [blame] | 274 | } |
| 275 | } else { |
| 276 | // If there's a previous stack trace for this thread, diff the traces and emit entry and exit |
| 277 | // events accordingly. |
Ian Rogers | e2f77e7 | 2013-08-13 19:19:40 -0700 | [diff] [blame] | 278 | std::vector<mirror::ArtMethod*>::reverse_iterator old_rit = old_stack_trace->rbegin(); |
| 279 | std::vector<mirror::ArtMethod*>::reverse_iterator rit = stack_trace->rbegin(); |
Jeff Hao | 0abc72e | 2013-08-13 13:45:14 -0700 | [diff] [blame] | 280 | // Iterate bottom-up over both traces until there's a difference between them. |
| 281 | while (old_rit != old_stack_trace->rend() && rit != stack_trace->rend() && *old_rit == *rit) { |
| 282 | old_rit++; |
| 283 | rit++; |
| 284 | } |
| 285 | // Iterate top-down over the old trace until the point where they differ, emitting exit events. |
Ian Rogers | e2f77e7 | 2013-08-13 19:19:40 -0700 | [diff] [blame] | 286 | for (std::vector<mirror::ArtMethod*>::iterator old_it = old_stack_trace->begin(); |
Jeff Hao | 0abc72e | 2013-08-13 13:45:14 -0700 | [diff] [blame] | 287 | old_it != old_rit.base(); ++old_it) { |
Jeff Hao | c1ff4b7 | 2013-08-19 11:33:10 -0700 | [diff] [blame] | 288 | LogMethodTraceEvent(thread, *old_it, instrumentation::Instrumentation::kMethodExited, |
| 289 | thread_clock_diff, wall_clock_diff); |
Jeff Hao | 0abc72e | 2013-08-13 13:45:14 -0700 | [diff] [blame] | 290 | } |
| 291 | // Iterate bottom-up over the new trace from the point where they differ, emitting entry events. |
| 292 | for (; rit != stack_trace->rend(); ++rit) { |
Jeff Hao | c1ff4b7 | 2013-08-19 11:33:10 -0700 | [diff] [blame] | 293 | LogMethodTraceEvent(thread, *rit, instrumentation::Instrumentation::kMethodEntered, |
| 294 | thread_clock_diff, wall_clock_diff); |
Jeff Hao | 0abc72e | 2013-08-13 13:45:14 -0700 | [diff] [blame] | 295 | } |
Jeff Hao | 5ce4b17 | 2013-08-16 16:27:18 -0700 | [diff] [blame] | 296 | FreeStackTrace(old_stack_trace); |
Jeff Hao | 0abc72e | 2013-08-13 13:45:14 -0700 | [diff] [blame] | 297 | } |
| 298 | } |
| 299 | |
| 300 | void* Trace::RunSamplingThread(void* arg) { |
| 301 | Runtime* runtime = Runtime::Current(); |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 302 | intptr_t interval_us = reinterpret_cast<intptr_t>(arg); |
Jeff Hao | 4044bda | 2014-01-06 15:50:45 -0800 | [diff] [blame] | 303 | CHECK_GE(interval_us, 0); |
Jeff Hao | 0abc72e | 2013-08-13 13:45:14 -0700 | [diff] [blame] | 304 | CHECK(runtime->AttachCurrentThread("Sampling Profiler", true, runtime->GetSystemThreadGroup(), |
Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 305 | !runtime->IsAotCompiler())); |
Jeff Hao | 0abc72e | 2013-08-13 13:45:14 -0700 | [diff] [blame] | 306 | |
| 307 | while (true) { |
Jeff Hao | 23009dc | 2013-08-22 15:36:42 -0700 | [diff] [blame] | 308 | usleep(interval_us); |
Jeff Hao | 5ce4b17 | 2013-08-16 16:27:18 -0700 | [diff] [blame] | 309 | ATRACE_BEGIN("Profile sampling"); |
Jeff Hao | 0abc72e | 2013-08-13 13:45:14 -0700 | [diff] [blame] | 310 | Thread* self = Thread::Current(); |
| 311 | Trace* the_trace; |
| 312 | { |
| 313 | MutexLock mu(self, *Locks::trace_lock_); |
| 314 | the_trace = the_trace_; |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 315 | if (the_trace == nullptr) { |
Jeff Hao | 0abc72e | 2013-08-13 13:45:14 -0700 | [diff] [blame] | 316 | break; |
| 317 | } |
| 318 | } |
| 319 | |
Mathieu Chartier | bf9fc58 | 2015-03-13 17:21:25 -0700 | [diff] [blame] | 320 | runtime->GetThreadList()->SuspendAll(__FUNCTION__); |
Jeff Hao | 0abc72e | 2013-08-13 13:45:14 -0700 | [diff] [blame] | 321 | { |
| 322 | MutexLock mu(self, *Locks::thread_list_lock_); |
| 323 | runtime->GetThreadList()->ForEach(GetSample, the_trace); |
| 324 | } |
| 325 | runtime->GetThreadList()->ResumeAll(); |
Jeff Hao | 5ce4b17 | 2013-08-16 16:27:18 -0700 | [diff] [blame] | 326 | ATRACE_END(); |
Jeff Hao | 0abc72e | 2013-08-13 13:45:14 -0700 | [diff] [blame] | 327 | } |
| 328 | |
| 329 | runtime->DetachCurrentThread(); |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 330 | return nullptr; |
Jeff Hao | 0abc72e | 2013-08-13 13:45:14 -0700 | [diff] [blame] | 331 | } |
| 332 | |
Andreas Gampe | e34a42c | 2015-04-25 14:44:29 -0700 | [diff] [blame^] | 333 | 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] | 334 | TraceOutputMode output_mode, TraceMode trace_mode, int interval_us) { |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 335 | Thread* self = Thread::Current(); |
| 336 | { |
| 337 | MutexLock mu(self, *Locks::trace_lock_); |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 338 | if (the_trace_ != nullptr) { |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 339 | LOG(ERROR) << "Trace already in progress, ignoring this request"; |
| 340 | return; |
| 341 | } |
jeffhao | e343b76 | 2011-12-05 16:36:44 -0800 | [diff] [blame] | 342 | } |
Jeff Hao | d063d91 | 2014-09-08 09:38:18 -0700 | [diff] [blame] | 343 | |
| 344 | // Check interval if sampling is enabled |
Andreas Gampe | 7e7e0f4 | 2015-03-29 15:26:23 -0700 | [diff] [blame] | 345 | if (trace_mode == TraceMode::kSampling && interval_us <= 0) { |
Jeff Hao | d063d91 | 2014-09-08 09:38:18 -0700 | [diff] [blame] | 346 | LOG(ERROR) << "Invalid sampling interval: " << interval_us; |
| 347 | ScopedObjectAccess soa(self); |
| 348 | ThrowRuntimeException("Invalid sampling interval: %d", interval_us); |
| 349 | return; |
| 350 | } |
jeffhao | a9ef3fd | 2011-12-13 18:33:43 -0800 | [diff] [blame] | 351 | |
jeffhao | 2692b57 | 2011-12-16 15:42:28 -0800 | [diff] [blame] | 352 | // Open trace file if not going directly to ddms. |
Ian Rogers | 700a402 | 2014-05-19 16:49:03 -0700 | [diff] [blame] | 353 | std::unique_ptr<File> trace_file; |
Andreas Gampe | 7e7e0f4 | 2015-03-29 15:26:23 -0700 | [diff] [blame] | 354 | if (output_mode != TraceOutputMode::kDDMS) { |
jeffhao | a9ef3fd | 2011-12-13 18:33:43 -0800 | [diff] [blame] | 355 | if (trace_fd < 0) { |
Brian Carlstrom | 7571e8b | 2013-08-12 17:04:14 -0700 | [diff] [blame] | 356 | trace_file.reset(OS::CreateEmptyFile(trace_filename)); |
jeffhao | a9ef3fd | 2011-12-13 18:33:43 -0800 | [diff] [blame] | 357 | } else { |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 358 | trace_file.reset(new File(trace_fd, "tracefile")); |
Elliott Hughes | 7616005 | 2012-12-12 16:31:20 -0800 | [diff] [blame] | 359 | trace_file->DisableAutoClose(); |
jeffhao | a9ef3fd | 2011-12-13 18:33:43 -0800 | [diff] [blame] | 360 | } |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 361 | if (trace_file.get() == nullptr) { |
jeffhao | b5e8185 | 2012-03-12 11:15:45 -0700 | [diff] [blame] | 362 | PLOG(ERROR) << "Unable to open trace file '" << trace_filename << "'"; |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 363 | ScopedObjectAccess soa(self); |
| 364 | ThrowRuntimeException("Unable to open trace file '%s'", trace_filename); |
jeffhao | a9ef3fd | 2011-12-13 18:33:43 -0800 | [diff] [blame] | 365 | return; |
| 366 | } |
| 367 | } |
jeffhao | a9ef3fd | 2011-12-13 18:33:43 -0800 | [diff] [blame] | 368 | |
Jeff Hao | d063d91 | 2014-09-08 09:38:18 -0700 | [diff] [blame] | 369 | Runtime* runtime = Runtime::Current(); |
Mathieu Chartier | 9ef78b5 | 2014-09-25 17:03:12 -0700 | [diff] [blame] | 370 | |
| 371 | // Enable count of allocs if specified in the flags. |
| 372 | bool enable_stats = false; |
| 373 | |
Mathieu Chartier | bf9fc58 | 2015-03-13 17:21:25 -0700 | [diff] [blame] | 374 | runtime->GetThreadList()->SuspendAll(__FUNCTION__); |
Jeff Hao | d063d91 | 2014-09-08 09:38:18 -0700 | [diff] [blame] | 375 | |
jeffhao | 2692b57 | 2011-12-16 15:42:28 -0800 | [diff] [blame] | 376 | // Create Trace object. |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 377 | { |
| 378 | MutexLock mu(self, *Locks::trace_lock_); |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 379 | if (the_trace_ != nullptr) { |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 380 | LOG(ERROR) << "Trace already in progress, ignoring this request"; |
| 381 | } else { |
Mathieu Chartier | 9ef78b5 | 2014-09-25 17:03:12 -0700 | [diff] [blame] | 382 | enable_stats = (flags && kTraceCountAllocs) != 0; |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 383 | the_trace_ = new Trace(trace_file.release(), trace_filename, buffer_size, flags, output_mode, |
| 384 | trace_mode); |
Andreas Gampe | 7e7e0f4 | 2015-03-29 15:26:23 -0700 | [diff] [blame] | 385 | if (trace_mode == TraceMode::kSampling) { |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 386 | CHECK_PTHREAD_CALL(pthread_create, (&sampling_pthread_, nullptr, &RunSamplingThread, |
Jeff Hao | 23009dc | 2013-08-22 15:36:42 -0700 | [diff] [blame] | 387 | reinterpret_cast<void*>(interval_us)), |
| 388 | "Sampling profiler thread"); |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 389 | the_trace_->interval_us_ = interval_us; |
Jeff Hao | 0abc72e | 2013-08-13 13:45:14 -0700 | [diff] [blame] | 390 | } else { |
| 391 | runtime->GetInstrumentation()->AddListener(the_trace_, |
| 392 | instrumentation::Instrumentation::kMethodEntered | |
| 393 | instrumentation::Instrumentation::kMethodExited | |
| 394 | instrumentation::Instrumentation::kMethodUnwind); |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 395 | // TODO: In full-PIC mode, we don't need to fully deopt. |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 396 | runtime->GetInstrumentation()->EnableMethodTracing(); |
Jeff Hao | 0abc72e | 2013-08-13 13:45:14 -0700 | [diff] [blame] | 397 | } |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 398 | } |
jeffhao | 0791adc | 2012-04-04 11:14:32 -0700 | [diff] [blame] | 399 | } |
Jeff Hao | d063d91 | 2014-09-08 09:38:18 -0700 | [diff] [blame] | 400 | |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 401 | runtime->GetThreadList()->ResumeAll(); |
Mathieu Chartier | 9ef78b5 | 2014-09-25 17:03:12 -0700 | [diff] [blame] | 402 | |
| 403 | // Can't call this when holding the mutator lock. |
| 404 | if (enable_stats) { |
| 405 | runtime->SetStatsEnabled(true); |
| 406 | } |
jeffhao | 2692b57 | 2011-12-16 15:42:28 -0800 | [diff] [blame] | 407 | } |
| 408 | |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 409 | void Trace::StopTracing(bool finish_tracing, bool flush_file) { |
Mathieu Chartier | 9ef78b5 | 2014-09-25 17:03:12 -0700 | [diff] [blame] | 410 | bool stop_alloc_counting = false; |
Mathieu Chartier | 02e5f16 | 2015-03-11 09:54:22 -0700 | [diff] [blame] | 411 | Runtime* const runtime = Runtime::Current(); |
| 412 | Trace* the_trace = nullptr; |
Jeff Hao | 0abc72e | 2013-08-13 13:45:14 -0700 | [diff] [blame] | 413 | pthread_t sampling_pthread = 0U; |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 414 | { |
| 415 | MutexLock mu(Thread::Current(), *Locks::trace_lock_); |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 416 | if (the_trace_ == nullptr) { |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 417 | LOG(ERROR) << "Trace stop requested, but no trace currently running"; |
| 418 | } else { |
| 419 | the_trace = the_trace_; |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 420 | the_trace_ = nullptr; |
Jeff Hao | 0abc72e | 2013-08-13 13:45:14 -0700 | [diff] [blame] | 421 | sampling_pthread = sampling_pthread_; |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 422 | } |
jeffhao | 2692b57 | 2011-12-16 15:42:28 -0800 | [diff] [blame] | 423 | } |
Mathieu Chartier | 02e5f16 | 2015-03-11 09:54:22 -0700 | [diff] [blame] | 424 | // Make sure that we join before we delete the trace since we don't want to have |
| 425 | // the sampling thread access a stale pointer. This finishes since the sampling thread exits when |
| 426 | // the_trace_ is null. |
| 427 | if (sampling_pthread != 0U) { |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 428 | CHECK_PTHREAD_CALL(pthread_join, (sampling_pthread, nullptr), "sampling thread shutdown"); |
Mathieu Chartier | 02e5f16 | 2015-03-11 09:54:22 -0700 | [diff] [blame] | 429 | sampling_pthread_ = 0U; |
| 430 | } |
Mathieu Chartier | bf9fc58 | 2015-03-13 17:21:25 -0700 | [diff] [blame] | 431 | runtime->GetThreadList()->SuspendAll(__FUNCTION__); |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 432 | |
Mathieu Chartier | 02e5f16 | 2015-03-11 09:54:22 -0700 | [diff] [blame] | 433 | if (the_trace != nullptr) { |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 434 | stop_alloc_counting = (the_trace->flags_ & Trace::kTraceCountAllocs) != 0; |
| 435 | if (finish_tracing) { |
| 436 | the_trace->FinishTracing(); |
| 437 | } |
Jeff Hao | 0abc72e | 2013-08-13 13:45:14 -0700 | [diff] [blame] | 438 | |
Andreas Gampe | 7e7e0f4 | 2015-03-29 15:26:23 -0700 | [diff] [blame] | 439 | if (the_trace->trace_mode_ == TraceMode::kSampling) { |
Jeff Hao | 5ce4b17 | 2013-08-16 16:27:18 -0700 | [diff] [blame] | 440 | MutexLock mu(Thread::Current(), *Locks::thread_list_lock_); |
Mathieu Chartier | 02e5f16 | 2015-03-11 09:54:22 -0700 | [diff] [blame] | 441 | runtime->GetThreadList()->ForEach(ClearThreadStackTraceAndClockBase, nullptr); |
Jeff Hao | 5ce4b17 | 2013-08-16 16:27:18 -0700 | [diff] [blame] | 442 | } else { |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 443 | runtime->GetInstrumentation()->DisableMethodTracing(); |
Mathieu Chartier | 02e5f16 | 2015-03-11 09:54:22 -0700 | [diff] [blame] | 444 | runtime->GetInstrumentation()->RemoveListener( |
| 445 | the_trace, instrumentation::Instrumentation::kMethodEntered | |
| 446 | instrumentation::Instrumentation::kMethodExited | |
| 447 | instrumentation::Instrumentation::kMethodUnwind); |
Jeff Hao | 0abc72e | 2013-08-13 13:45:14 -0700 | [diff] [blame] | 448 | } |
Andreas Gampe | 4303ba9 | 2014-11-06 01:00:46 -0800 | [diff] [blame] | 449 | if (the_trace->trace_file_.get() != nullptr) { |
| 450 | // Do not try to erase, so flush and close explicitly. |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 451 | if (flush_file) { |
| 452 | if (the_trace->trace_file_->Flush() != 0) { |
| 453 | PLOG(ERROR) << "Could not flush trace file."; |
| 454 | } |
| 455 | } else { |
| 456 | the_trace->trace_file_->MarkUnchecked(); // Do not trigger guard. |
Andreas Gampe | 4303ba9 | 2014-11-06 01:00:46 -0800 | [diff] [blame] | 457 | } |
| 458 | if (the_trace->trace_file_->Close() != 0) { |
| 459 | PLOG(ERROR) << "Could not close trace file."; |
| 460 | } |
| 461 | } |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 462 | delete the_trace; |
| 463 | } |
| 464 | runtime->GetThreadList()->ResumeAll(); |
Mathieu Chartier | 9ef78b5 | 2014-09-25 17:03:12 -0700 | [diff] [blame] | 465 | if (stop_alloc_counting) { |
| 466 | // Can be racy since SetStatsEnabled is not guarded by any locks. |
Mathieu Chartier | 02e5f16 | 2015-03-11 09:54:22 -0700 | [diff] [blame] | 467 | runtime->SetStatsEnabled(false); |
Jeff Hao | 0abc72e | 2013-08-13 13:45:14 -0700 | [diff] [blame] | 468 | } |
jeffhao | 2692b57 | 2011-12-16 15:42:28 -0800 | [diff] [blame] | 469 | } |
| 470 | |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 471 | void Trace::Abort() { |
| 472 | // Do not write anything anymore. |
| 473 | StopTracing(false, false); |
| 474 | } |
| 475 | |
| 476 | void Trace::Stop() { |
| 477 | // Finish writing. |
| 478 | StopTracing(true, true); |
| 479 | } |
| 480 | |
jeffhao | b5e8185 | 2012-03-12 11:15:45 -0700 | [diff] [blame] | 481 | void Trace::Shutdown() { |
Jeff Hao | 64caa7d | 2013-08-29 11:18:01 -0700 | [diff] [blame] | 482 | if (GetMethodTracingMode() != kTracingInactive) { |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 483 | Stop(); |
jeffhao | b5e8185 | 2012-03-12 11:15:45 -0700 | [diff] [blame] | 484 | } |
jeffhao | b5e8185 | 2012-03-12 11:15:45 -0700 | [diff] [blame] | 485 | } |
| 486 | |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 487 | void Trace::Pause() { |
| 488 | bool stop_alloc_counting = false; |
| 489 | Runtime* runtime = Runtime::Current(); |
| 490 | Trace* the_trace = nullptr; |
| 491 | |
| 492 | pthread_t sampling_pthread = 0U; |
| 493 | { |
| 494 | MutexLock mu(Thread::Current(), *Locks::trace_lock_); |
| 495 | if (the_trace_ == nullptr) { |
| 496 | LOG(ERROR) << "Trace pause requested, but no trace currently running"; |
| 497 | return; |
| 498 | } else { |
| 499 | the_trace = the_trace_; |
| 500 | sampling_pthread = sampling_pthread_; |
| 501 | } |
| 502 | } |
| 503 | |
| 504 | if (sampling_pthread != 0U) { |
| 505 | { |
| 506 | MutexLock mu(Thread::Current(), *Locks::trace_lock_); |
| 507 | the_trace_ = nullptr; |
| 508 | } |
| 509 | CHECK_PTHREAD_CALL(pthread_join, (sampling_pthread, nullptr), "sampling thread shutdown"); |
| 510 | sampling_pthread_ = 0U; |
| 511 | { |
| 512 | MutexLock mu(Thread::Current(), *Locks::trace_lock_); |
| 513 | the_trace_ = the_trace; |
| 514 | } |
| 515 | } |
| 516 | |
| 517 | if (the_trace != nullptr) { |
| 518 | runtime->GetThreadList()->SuspendAll(__FUNCTION__); |
| 519 | stop_alloc_counting = (the_trace->flags_ & Trace::kTraceCountAllocs) != 0; |
| 520 | |
| 521 | if (the_trace->trace_mode_ == TraceMode::kSampling) { |
| 522 | MutexLock mu(Thread::Current(), *Locks::thread_list_lock_); |
| 523 | runtime->GetThreadList()->ForEach(ClearThreadStackTraceAndClockBase, nullptr); |
| 524 | } else { |
| 525 | runtime->GetInstrumentation()->DisableMethodTracing(); |
| 526 | runtime->GetInstrumentation()->RemoveListener(the_trace, |
| 527 | instrumentation::Instrumentation::kMethodEntered | |
| 528 | instrumentation::Instrumentation::kMethodExited | |
| 529 | instrumentation::Instrumentation::kMethodUnwind); |
| 530 | } |
| 531 | runtime->GetThreadList()->ResumeAll(); |
| 532 | } |
| 533 | |
| 534 | if (stop_alloc_counting) { |
| 535 | // Can be racy since SetStatsEnabled is not guarded by any locks. |
| 536 | Runtime::Current()->SetStatsEnabled(false); |
| 537 | } |
| 538 | } |
| 539 | |
| 540 | void Trace::Resume() { |
| 541 | Thread* self = Thread::Current(); |
| 542 | Trace* the_trace; |
| 543 | { |
| 544 | MutexLock mu(self, *Locks::trace_lock_); |
| 545 | if (the_trace_ == nullptr) { |
| 546 | LOG(ERROR) << "No trace to resume (or sampling mode), ignoring this request"; |
| 547 | return; |
| 548 | } |
| 549 | the_trace = the_trace_; |
| 550 | } |
| 551 | |
| 552 | Runtime* runtime = Runtime::Current(); |
| 553 | |
| 554 | // Enable count of allocs if specified in the flags. |
| 555 | bool enable_stats = (the_trace->flags_ && kTraceCountAllocs) != 0; |
| 556 | |
| 557 | runtime->GetThreadList()->SuspendAll(__FUNCTION__); |
| 558 | |
| 559 | // Reenable. |
| 560 | if (the_trace->trace_mode_ == TraceMode::kSampling) { |
| 561 | CHECK_PTHREAD_CALL(pthread_create, (&sampling_pthread_, nullptr, &RunSamplingThread, |
| 562 | reinterpret_cast<void*>(the_trace->interval_us_)), "Sampling profiler thread"); |
| 563 | } else { |
| 564 | runtime->GetInstrumentation()->AddListener(the_trace, |
| 565 | instrumentation::Instrumentation::kMethodEntered | |
| 566 | instrumentation::Instrumentation::kMethodExited | |
| 567 | instrumentation::Instrumentation::kMethodUnwind); |
| 568 | // TODO: In full-PIC mode, we don't need to fully deopt. |
| 569 | runtime->GetInstrumentation()->EnableMethodTracing(); |
| 570 | } |
| 571 | |
| 572 | runtime->GetThreadList()->ResumeAll(); |
| 573 | |
| 574 | // Can't call this when holding the mutator lock. |
| 575 | if (enable_stats) { |
| 576 | runtime->SetStatsEnabled(true); |
| 577 | } |
| 578 | } |
| 579 | |
Jeff Hao | 64caa7d | 2013-08-29 11:18:01 -0700 | [diff] [blame] | 580 | TracingMode Trace::GetMethodTracingMode() { |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 581 | MutexLock mu(Thread::Current(), *Locks::trace_lock_); |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 582 | if (the_trace_ == nullptr) { |
Jeff Hao | 64caa7d | 2013-08-29 11:18:01 -0700 | [diff] [blame] | 583 | return kTracingInactive; |
Jeff Hao | 64caa7d | 2013-08-29 11:18:01 -0700 | [diff] [blame] | 584 | } else { |
Andreas Gampe | 7e7e0f4 | 2015-03-29 15:26:23 -0700 | [diff] [blame] | 585 | switch (the_trace_->trace_mode_) { |
| 586 | case TraceMode::kSampling: |
| 587 | return kSampleProfilingActive; |
| 588 | case TraceMode::kMethodTracing: |
| 589 | return kMethodTracingActive; |
| 590 | } |
| 591 | LOG(FATAL) << "Unreachable"; |
| 592 | UNREACHABLE(); |
Jeff Hao | 64caa7d | 2013-08-29 11:18:01 -0700 | [diff] [blame] | 593 | } |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 594 | } |
jeffhao | a9ef3fd | 2011-12-13 18:33:43 -0800 | [diff] [blame] | 595 | |
Andreas Gampe | e34a42c | 2015-04-25 14:44:29 -0700 | [diff] [blame^] | 596 | static constexpr size_t kMinBufSize = 18U; // Trace header is up to 18B. |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 597 | |
Andreas Gampe | e34a42c | 2015-04-25 14:44:29 -0700 | [diff] [blame^] | 598 | 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] | 599 | TraceOutputMode output_mode, TraceMode trace_mode) |
| 600 | : trace_file_(trace_file), |
Andreas Gampe | e34a42c | 2015-04-25 14:44:29 -0700 | [diff] [blame^] | 601 | buf_(new uint8_t[std::max(kMinBufSize, buffer_size)]()), |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 602 | flags_(flags), trace_output_mode_(output_mode), trace_mode_(trace_mode), |
| 603 | clock_source_(default_clock_source_), |
Andreas Gampe | e34a42c | 2015-04-25 14:44:29 -0700 | [diff] [blame^] | 604 | buffer_size_(std::max(kMinBufSize, buffer_size)), |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 605 | start_time_(MicroTime()), clock_overhead_ns_(GetClockOverheadNanoSeconds()), cur_offset_(0), |
| 606 | overflow_(false), interval_us_(0), streaming_lock_(nullptr) { |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 607 | uint16_t trace_version = GetTraceVersion(clock_source_); |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 608 | if (output_mode == TraceOutputMode::kStreaming) { |
| 609 | trace_version |= 0xF0U; |
| 610 | } |
| 611 | // Set up the beginning of the trace. |
jeffhao | 2692b57 | 2011-12-16 15:42:28 -0800 | [diff] [blame] | 612 | memset(buf_.get(), 0, kTraceHeaderLength); |
| 613 | Append4LE(buf_.get(), kTraceMagicValue); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 614 | Append2LE(buf_.get() + 4, trace_version); |
jeffhao | 2692b57 | 2011-12-16 15:42:28 -0800 | [diff] [blame] | 615 | Append2LE(buf_.get() + 6, kTraceHeaderLength); |
| 616 | Append8LE(buf_.get() + 8, start_time_); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 617 | if (trace_version >= kTraceVersionDualClock) { |
| 618 | uint16_t record_size = GetRecordSize(clock_source_); |
| 619 | Append2LE(buf_.get() + 16, record_size); |
jeffhao | a9ef3fd | 2011-12-13 18:33:43 -0800 | [diff] [blame] | 620 | } |
Andreas Gampe | e34a42c | 2015-04-25 14:44:29 -0700 | [diff] [blame^] | 621 | static_assert(18 <= kMinBufSize, "Minimum buffer size not large enough for trace header"); |
jeffhao | a9ef3fd | 2011-12-13 18:33:43 -0800 | [diff] [blame] | 622 | |
jeffhao | 2692b57 | 2011-12-16 15:42:28 -0800 | [diff] [blame] | 623 | // Update current offset. |
Ian Rogers | 8ab25ef | 2014-07-09 18:00:50 -0700 | [diff] [blame] | 624 | cur_offset_.StoreRelaxed(kTraceHeaderLength); |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 625 | |
| 626 | if (output_mode == TraceOutputMode::kStreaming) { |
| 627 | streaming_file_name_ = trace_name; |
| 628 | streaming_lock_ = new Mutex("tracing lock"); |
| 629 | seen_threads_.reset(new ThreadIDBitSet()); |
| 630 | } |
| 631 | } |
| 632 | |
| 633 | Trace::~Trace() { |
| 634 | delete streaming_lock_; |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 635 | } |
jeffhao | a9ef3fd | 2011-12-13 18:33:43 -0800 | [diff] [blame] | 636 | |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 637 | static void DumpBuf(uint8_t* buf, size_t buf_size, TraceClockSource clock_source) |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 638 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
| 639 | uint8_t* ptr = buf + kTraceHeaderLength; |
| 640 | uint8_t* end = buf + buf_size; |
| 641 | |
| 642 | while (ptr < end) { |
| 643 | uint32_t tmid = ptr[2] | (ptr[3] << 8) | (ptr[4] << 16) | (ptr[5] << 24); |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 644 | mirror::ArtMethod* method = DecodeTraceMethodId(tmid); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 645 | TraceAction action = DecodeTraceAction(tmid); |
| 646 | LOG(INFO) << PrettyMethod(method) << " " << static_cast<int>(action); |
| 647 | ptr += GetRecordSize(clock_source); |
| 648 | } |
jeffhao | e343b76 | 2011-12-05 16:36:44 -0800 | [diff] [blame] | 649 | } |
| 650 | |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 651 | static void GetVisitedMethodsFromBitSets( |
| 652 | const std::map<mirror::DexCache*, DexIndexBitSet*>& seen_methods, |
| 653 | std::set<mirror::ArtMethod*>* visited_methods) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
| 654 | for (auto& e : seen_methods) { |
| 655 | DexIndexBitSet* bit_set = e.second; |
| 656 | for (uint32_t i = 0; i < bit_set->size(); ++i) { |
| 657 | if ((*bit_set)[i]) { |
| 658 | visited_methods->insert(e.first->GetResolvedMethod(i)); |
| 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 | |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 667 | std::set<mirror::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. |
| 673 | for (auto& e : seen_methods_) { |
| 674 | delete e.second; |
| 675 | } |
| 676 | } else { |
| 677 | final_offset = cur_offset_.LoadRelaxed(); |
| 678 | GetVisitedMethods(final_offset, &visited_methods); |
| 679 | } |
| 680 | |
| 681 | // Compute elapsed time. |
| 682 | uint64_t elapsed = MicroTime() - start_time_; |
jeffhao | a9ef3fd | 2011-12-13 18:33:43 -0800 | [diff] [blame] | 683 | |
| 684 | std::ostringstream os; |
| 685 | |
| 686 | os << StringPrintf("%cversion\n", kTraceTokenChar); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 687 | os << StringPrintf("%d\n", GetTraceVersion(clock_source_)); |
jeffhao | a9ef3fd | 2011-12-13 18:33:43 -0800 | [diff] [blame] | 688 | os << StringPrintf("data-file-overflow=%s\n", overflow_ ? "true" : "false"); |
| 689 | if (UseThreadCpuClock()) { |
| 690 | if (UseWallClock()) { |
| 691 | os << StringPrintf("clock=dual\n"); |
| 692 | } else { |
| 693 | os << StringPrintf("clock=thread-cpu\n"); |
| 694 | } |
| 695 | } else { |
| 696 | os << StringPrintf("clock=wall\n"); |
| 697 | } |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 698 | os << StringPrintf("elapsed-time-usec=%" PRIu64 "\n", elapsed); |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 699 | if (trace_output_mode_ != TraceOutputMode::kStreaming) { |
| 700 | size_t num_records = (final_offset - kTraceHeaderLength) / GetRecordSize(clock_source_); |
| 701 | os << StringPrintf("num-method-calls=%zd\n", num_records); |
| 702 | } |
Jeff Hao | c5d824a | 2014-07-28 18:35:38 -0700 | [diff] [blame] | 703 | os << StringPrintf("clock-call-overhead-nsec=%d\n", clock_overhead_ns_); |
jeffhao | a9ef3fd | 2011-12-13 18:33:43 -0800 | [diff] [blame] | 704 | os << StringPrintf("vm=art\n"); |
John Reck | 0624a27 | 2015-03-26 15:47:54 -0700 | [diff] [blame] | 705 | os << StringPrintf("pid=%d\n", getpid()); |
jeffhao | 0791adc | 2012-04-04 11:14:32 -0700 | [diff] [blame] | 706 | if ((flags_ & kTraceCountAllocs) != 0) { |
| 707 | os << StringPrintf("alloc-count=%d\n", Runtime::Current()->GetStat(KIND_ALLOCATED_OBJECTS)); |
| 708 | os << StringPrintf("alloc-size=%d\n", Runtime::Current()->GetStat(KIND_ALLOCATED_BYTES)); |
| 709 | os << StringPrintf("gc-count=%d\n", Runtime::Current()->GetStat(KIND_GC_INVOCATIONS)); |
| 710 | } |
jeffhao | a9ef3fd | 2011-12-13 18:33:43 -0800 | [diff] [blame] | 711 | os << StringPrintf("%cthreads\n", kTraceTokenChar); |
| 712 | DumpThreadList(os); |
| 713 | os << StringPrintf("%cmethods\n", kTraceTokenChar); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 714 | DumpMethodList(os, visited_methods); |
jeffhao | a9ef3fd | 2011-12-13 18:33:43 -0800 | [diff] [blame] | 715 | os << StringPrintf("%cend\n", kTraceTokenChar); |
jeffhao | a9ef3fd | 2011-12-13 18:33:43 -0800 | [diff] [blame] | 716 | std::string header(os.str()); |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 717 | |
| 718 | if (trace_output_mode_ == TraceOutputMode::kStreaming) { |
| 719 | File file; |
| 720 | if (!file.Open(streaming_file_name_ + ".sec", O_CREAT | O_WRONLY)) { |
| 721 | LOG(WARNING) << "Could not open secondary trace file!"; |
| 722 | return; |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 723 | } |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 724 | if (!file.WriteFully(header.c_str(), header.length())) { |
| 725 | file.Erase(); |
Elliott Hughes | 7b9d996 | 2012-04-20 18:48:18 -0700 | [diff] [blame] | 726 | std::string detail(StringPrintf("Trace data write failed: %s", strerror(errno))); |
| 727 | PLOG(ERROR) << detail; |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 728 | ThrowRuntimeException("%s", detail.c_str()); |
jeffhao | a9ef3fd | 2011-12-13 18:33:43 -0800 | [diff] [blame] | 729 | } |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 730 | if (file.FlushCloseOrErase() != 0) { |
| 731 | PLOG(ERROR) << "Could not write secondary file"; |
| 732 | } |
| 733 | } else { |
| 734 | if (trace_file_.get() == nullptr) { |
| 735 | iovec iov[2]; |
| 736 | iov[0].iov_base = reinterpret_cast<void*>(const_cast<char*>(header.c_str())); |
| 737 | iov[0].iov_len = header.length(); |
| 738 | iov[1].iov_base = buf_.get(); |
| 739 | iov[1].iov_len = final_offset; |
| 740 | Dbg::DdmSendChunkV(CHUNK_TYPE("MPSE"), iov, 2); |
| 741 | const bool kDumpTraceInfo = false; |
| 742 | if (kDumpTraceInfo) { |
| 743 | LOG(INFO) << "Trace sent:\n" << header; |
| 744 | DumpBuf(buf_.get(), final_offset, clock_source_); |
| 745 | } |
| 746 | } else { |
| 747 | if (!trace_file_->WriteFully(header.c_str(), header.length()) || |
| 748 | !trace_file_->WriteFully(buf_.get(), final_offset)) { |
| 749 | std::string detail(StringPrintf("Trace data write failed: %s", strerror(errno))); |
| 750 | PLOG(ERROR) << detail; |
| 751 | ThrowRuntimeException("%s", detail.c_str()); |
| 752 | } |
| 753 | } |
jeffhao | a9ef3fd | 2011-12-13 18:33:43 -0800 | [diff] [blame] | 754 | } |
jeffhao | a9ef3fd | 2011-12-13 18:33:43 -0800 | [diff] [blame] | 755 | } |
| 756 | |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 757 | void Trace::DexPcMoved(Thread* thread, mirror::Object* this_object, |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 758 | mirror::ArtMethod* method, uint32_t new_dex_pc) { |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame] | 759 | UNUSED(thread, this_object, method, new_dex_pc); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 760 | // We're not recorded to listen to this kind of event, so complain. |
| 761 | 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] | 762 | } |
jeffhao | a9ef3fd | 2011-12-13 18:33:43 -0800 | [diff] [blame] | 763 | |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame] | 764 | void Trace::FieldRead(Thread* thread, mirror::Object* this_object, |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 765 | mirror::ArtMethod* method, uint32_t dex_pc, ArtField* field) |
Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 766 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame] | 767 | UNUSED(thread, this_object, method, dex_pc, field); |
Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 768 | // We're not recorded to listen to this kind of event, so complain. |
| 769 | LOG(ERROR) << "Unexpected field read event in tracing " << PrettyMethod(method) << " " << dex_pc; |
| 770 | } |
| 771 | |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame] | 772 | void Trace::FieldWritten(Thread* thread, mirror::Object* this_object, |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 773 | mirror::ArtMethod* method, uint32_t dex_pc, ArtField* field, |
Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 774 | const JValue& field_value) |
| 775 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame] | 776 | UNUSED(thread, this_object, method, dex_pc, field, field_value); |
Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 777 | // We're not recorded to listen to this kind of event, so complain. |
| 778 | LOG(ERROR) << "Unexpected field write event in tracing " << PrettyMethod(method) << " " << dex_pc; |
| 779 | } |
| 780 | |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame] | 781 | void Trace::MethodEntered(Thread* thread, mirror::Object* this_object ATTRIBUTE_UNUSED, |
| 782 | mirror::ArtMethod* method, uint32_t dex_pc ATTRIBUTE_UNUSED) { |
Jeff Hao | c1ff4b7 | 2013-08-19 11:33:10 -0700 | [diff] [blame] | 783 | uint32_t thread_clock_diff = 0; |
| 784 | uint32_t wall_clock_diff = 0; |
| 785 | ReadClocks(thread, &thread_clock_diff, &wall_clock_diff); |
| 786 | LogMethodTraceEvent(thread, method, instrumentation::Instrumentation::kMethodEntered, |
| 787 | thread_clock_diff, wall_clock_diff); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 788 | } |
| 789 | |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame] | 790 | void Trace::MethodExited(Thread* thread, mirror::Object* this_object ATTRIBUTE_UNUSED, |
| 791 | mirror::ArtMethod* method, uint32_t dex_pc ATTRIBUTE_UNUSED, |
| 792 | const JValue& return_value ATTRIBUTE_UNUSED) { |
Jeff Hao | c1ff4b7 | 2013-08-19 11:33:10 -0700 | [diff] [blame] | 793 | uint32_t thread_clock_diff = 0; |
| 794 | uint32_t wall_clock_diff = 0; |
| 795 | ReadClocks(thread, &thread_clock_diff, &wall_clock_diff); |
| 796 | LogMethodTraceEvent(thread, method, instrumentation::Instrumentation::kMethodExited, |
| 797 | thread_clock_diff, wall_clock_diff); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 798 | } |
| 799 | |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame] | 800 | void Trace::MethodUnwind(Thread* thread, mirror::Object* this_object ATTRIBUTE_UNUSED, |
| 801 | mirror::ArtMethod* method, uint32_t dex_pc ATTRIBUTE_UNUSED) { |
Jeff Hao | c1ff4b7 | 2013-08-19 11:33:10 -0700 | [diff] [blame] | 802 | uint32_t thread_clock_diff = 0; |
| 803 | uint32_t wall_clock_diff = 0; |
| 804 | ReadClocks(thread, &thread_clock_diff, &wall_clock_diff); |
| 805 | LogMethodTraceEvent(thread, method, instrumentation::Instrumentation::kMethodUnwind, |
| 806 | thread_clock_diff, wall_clock_diff); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 807 | } |
| 808 | |
Nicolas Geoffray | 14691c5 | 2015-03-05 10:40:17 +0000 | [diff] [blame] | 809 | void Trace::ExceptionCaught(Thread* thread, mirror::Throwable* exception_object) |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 810 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
Nicolas Geoffray | 14691c5 | 2015-03-05 10:40:17 +0000 | [diff] [blame] | 811 | UNUSED(thread, exception_object); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 812 | LOG(ERROR) << "Unexpected exception caught event in tracing"; |
| 813 | } |
| 814 | |
Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 815 | void Trace::BackwardBranch(Thread* /*thread*/, mirror::ArtMethod* method, |
| 816 | int32_t /*dex_pc_offset*/) |
| 817 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
| 818 | LOG(ERROR) << "Unexpected backward branch event in tracing" << PrettyMethod(method); |
| 819 | } |
| 820 | |
Jeff Hao | c1ff4b7 | 2013-08-19 11:33:10 -0700 | [diff] [blame] | 821 | void Trace::ReadClocks(Thread* thread, uint32_t* thread_clock_diff, uint32_t* wall_clock_diff) { |
| 822 | if (UseThreadCpuClock()) { |
| 823 | uint64_t clock_base = thread->GetTraceClockBase(); |
| 824 | if (UNLIKELY(clock_base == 0)) { |
| 825 | // First event, record the base time in the map. |
| 826 | uint64_t time = thread->GetCpuMicroTime(); |
| 827 | thread->SetTraceClockBase(time); |
| 828 | } else { |
| 829 | *thread_clock_diff = thread->GetCpuMicroTime() - clock_base; |
| 830 | } |
| 831 | } |
| 832 | if (UseWallClock()) { |
| 833 | *wall_clock_diff = MicroTime() - start_time_; |
| 834 | } |
| 835 | } |
| 836 | |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 837 | bool Trace::RegisterMethod(mirror::ArtMethod* method) { |
| 838 | mirror::DexCache* dex_cache = method->GetDexCache(); |
| 839 | if (dex_cache->GetResolvedMethod(method->GetDexMethodIndex()) != method) { |
| 840 | DCHECK(dex_cache->GetResolvedMethod(method->GetDexMethodIndex()) == nullptr); |
| 841 | dex_cache->SetResolvedMethod(method->GetDexMethodIndex(), method); |
| 842 | } |
| 843 | if (seen_methods_.find(dex_cache) == seen_methods_.end()) { |
| 844 | seen_methods_.insert(std::make_pair(dex_cache, new DexIndexBitSet())); |
| 845 | } |
| 846 | DexIndexBitSet* bit_set = seen_methods_.find(dex_cache)->second; |
| 847 | if (!(*bit_set)[method->GetDexMethodIndex()]) { |
| 848 | bit_set->set(method->GetDexMethodIndex()); |
| 849 | return true; |
| 850 | } |
| 851 | return false; |
| 852 | } |
| 853 | |
| 854 | bool Trace::RegisterThread(Thread* thread) { |
| 855 | pid_t tid = thread->GetTid(); |
| 856 | CHECK_LT(0U, static_cast<uint32_t>(tid)); |
| 857 | CHECK_LT(static_cast<uint32_t>(tid), 65536U); |
| 858 | |
| 859 | if (!(*seen_threads_)[tid]) { |
| 860 | seen_threads_->set(tid); |
| 861 | return true; |
| 862 | } |
| 863 | return false; |
| 864 | } |
| 865 | |
| 866 | static std::string GetMethodLine(mirror::ArtMethod* method) |
| 867 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
| 868 | return StringPrintf("%p\t%s\t%s\t%s\t%s\n", method, |
| 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 | |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 899 | void Trace::LogMethodTraceEvent(Thread* thread, mirror::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 | |
| 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; |
| 937 | static constexpr size_t kPacketSize = 14U; // The maximum size of data in a packet. |
| 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()); |
jeffhao | a9ef3fd | 2011-12-13 18:33:43 -0800 | [diff] [blame] | 946 | Append4LE(ptr + 2, method_value); |
| 947 | ptr += 6; |
| 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 | } |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 956 | static_assert(kPacketSize == 2 + 4 + 4 + 4, "Packet size incorrect."); |
| 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, |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 987 | std::set<mirror::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) { |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 992 | uint32_t tmid = ptr[2] | (ptr[3] << 8) | (ptr[4] << 16) | (ptr[5] << 24); |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 993 | mirror::ArtMethod* method = DecodeTraceMethodId(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 | 02e2511 | 2013-08-14 16:14:24 -0700 | [diff] [blame] | 999 | void Trace::DumpMethodList(std::ostream& os, const std::set<mirror::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 |