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 | |
Brian Carlstrom | fc0e321 | 2013-07-17 14:40:12 -0700 | [diff] [blame] | 17 | #ifndef ART_RUNTIME_TRACE_H_ |
| 18 | #define ART_RUNTIME_TRACE_H_ |
jeffhao | e343b76 | 2011-12-05 16:36:44 -0800 | [diff] [blame] | 19 | |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 20 | #include <bitset> |
| 21 | #include <map> |
Ian Rogers | 700a402 | 2014-05-19 16:49:03 -0700 | [diff] [blame] | 22 | #include <memory> |
jeffhao | a9ef3fd | 2011-12-13 18:33:43 -0800 | [diff] [blame] | 23 | #include <ostream> |
| 24 | #include <set> |
| 25 | #include <string> |
Jeff Hao | 0abc72e | 2013-08-13 13:45:14 -0700 | [diff] [blame] | 26 | #include <vector> |
jeffhao | e343b76 | 2011-12-05 16:36:44 -0800 | [diff] [blame] | 27 | |
Ian Rogers | 8ab25ef | 2014-07-09 18:00:50 -0700 | [diff] [blame] | 28 | #include "atomic.h" |
Elliott Hughes | 7616005 | 2012-12-12 16:31:20 -0800 | [diff] [blame] | 29 | #include "base/macros.h" |
jeffhao | e343b76 | 2011-12-05 16:36:44 -0800 | [diff] [blame] | 30 | #include "globals.h" |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 31 | #include "instrumentation.h" |
Elliott Hughes | 7616005 | 2012-12-12 16:31:20 -0800 | [diff] [blame] | 32 | #include "os.h" |
Elliott Hughes | a0e1806 | 2012-04-13 15:59:59 -0700 | [diff] [blame] | 33 | #include "safe_map.h" |
jeffhao | e343b76 | 2011-12-05 16:36:44 -0800 | [diff] [blame] | 34 | |
| 35 | namespace art { |
| 36 | |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 37 | namespace mirror { |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 38 | class ArtMethod; |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 39 | class DexCache; |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 40 | } // namespace mirror |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 41 | |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 42 | class ArtField; |
jeffhao | a9ef3fd | 2011-12-13 18:33:43 -0800 | [diff] [blame] | 43 | class Thread; |
jeffhao | e343b76 | 2011-12-05 16:36:44 -0800 | [diff] [blame] | 44 | |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 45 | using DexIndexBitSet = std::bitset<65536>; |
| 46 | using ThreadIDBitSet = std::bitset<65536>; |
| 47 | |
Jeff Hao | 64caa7d | 2013-08-29 11:18:01 -0700 | [diff] [blame] | 48 | enum TracingMode { |
| 49 | kTracingInactive, |
| 50 | kMethodTracingActive, |
| 51 | kSampleProfilingActive, |
| 52 | }; |
| 53 | |
Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 54 | class Trace FINAL : public instrumentation::InstrumentationListener { |
jeffhao | e343b76 | 2011-12-05 16:36:44 -0800 | [diff] [blame] | 55 | public: |
jeffhao | 0791adc | 2012-04-04 11:14:32 -0700 | [diff] [blame] | 56 | enum TraceFlag { |
| 57 | kTraceCountAllocs = 1, |
| 58 | }; |
| 59 | |
Andreas Gampe | 7e7e0f4 | 2015-03-29 15:26:23 -0700 | [diff] [blame] | 60 | enum class TraceOutputMode { |
| 61 | kFile, |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 62 | kDDMS, |
| 63 | kStreaming |
Andreas Gampe | 7e7e0f4 | 2015-03-29 15:26:23 -0700 | [diff] [blame] | 64 | }; |
| 65 | |
| 66 | enum class TraceMode { |
| 67 | kMethodTracing, |
| 68 | kSampling |
| 69 | }; |
| 70 | |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 71 | ~Trace(); |
| 72 | |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 73 | static void SetDefaultClockSource(TraceClockSource clock_source); |
Elliott Hughes | cfbe73d | 2012-05-22 17:37:06 -0700 | [diff] [blame] | 74 | |
Andreas Gampe | e34a42c | 2015-04-25 14:44:29 -0700 | [diff] [blame] | 75 | static void 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] | 76 | TraceOutputMode output_mode, TraceMode trace_mode, int interval_us) |
Sebastien Hertz | bae182c | 2013-12-17 10:42:03 +0100 | [diff] [blame] | 77 | LOCKS_EXCLUDED(Locks::mutator_lock_, |
| 78 | Locks::thread_list_lock_, |
| 79 | Locks::thread_suspend_count_lock_, |
| 80 | Locks::trace_lock_); |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 81 | static void Pause() LOCKS_EXCLUDED(Locks::trace_lock_, Locks::thread_list_lock_); |
| 82 | static void Resume() LOCKS_EXCLUDED(Locks::trace_lock_); |
| 83 | |
| 84 | // Stop tracing. This will finish the trace and write it to file/send it via DDMS. |
Sebastien Hertz | bae182c | 2013-12-17 10:42:03 +0100 | [diff] [blame] | 85 | static void Stop() |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 86 | LOCKS_EXCLUDED(Locks::mutator_lock_, |
| 87 | Locks::thread_list_lock_, |
| 88 | Locks::trace_lock_); |
| 89 | // Abort tracing. This will just stop tracing and *not* write/send the collected data. |
| 90 | static void Abort() |
Sebastien Hertz | bae182c | 2013-12-17 10:42:03 +0100 | [diff] [blame] | 91 | LOCKS_EXCLUDED(Locks::mutator_lock_, |
| 92 | Locks::thread_list_lock_, |
| 93 | Locks::trace_lock_); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 94 | static void Shutdown() LOCKS_EXCLUDED(Locks::trace_lock_); |
Jeff Hao | 64caa7d | 2013-08-29 11:18:01 -0700 | [diff] [blame] | 95 | static TracingMode GetMethodTracingMode() LOCKS_EXCLUDED(Locks::trace_lock_); |
jeffhao | e343b76 | 2011-12-05 16:36:44 -0800 | [diff] [blame] | 96 | |
Elliott Hughes | cfbe73d | 2012-05-22 17:37:06 -0700 | [diff] [blame] | 97 | bool UseWallClock(); |
| 98 | bool UseThreadCpuClock(); |
Jeff Hao | c5d824a | 2014-07-28 18:35:38 -0700 | [diff] [blame] | 99 | void MeasureClockOverhead(); |
| 100 | uint32_t GetClockOverheadNanoSeconds(); |
Elliott Hughes | cfbe73d | 2012-05-22 17:37:06 -0700 | [diff] [blame] | 101 | |
Ian Rogers | e2f77e7 | 2013-08-13 19:19:40 -0700 | [diff] [blame] | 102 | void CompareAndUpdateStackTrace(Thread* thread, std::vector<mirror::ArtMethod*>* stack_trace) |
Jeff Hao | 0abc72e | 2013-08-13 13:45:14 -0700 | [diff] [blame] | 103 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); |
| 104 | |
Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 105 | // InstrumentationListener implementation. |
| 106 | void MethodEntered(Thread* thread, mirror::Object* this_object, |
| 107 | mirror::ArtMethod* method, uint32_t dex_pc) |
| 108 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) OVERRIDE; |
| 109 | void MethodExited(Thread* thread, mirror::Object* this_object, |
| 110 | mirror::ArtMethod* method, uint32_t dex_pc, |
| 111 | const JValue& return_value) |
| 112 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) OVERRIDE; |
| 113 | void MethodUnwind(Thread* thread, mirror::Object* this_object, |
| 114 | mirror::ArtMethod* method, uint32_t dex_pc) |
| 115 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) OVERRIDE; |
| 116 | void DexPcMoved(Thread* thread, mirror::Object* this_object, |
| 117 | mirror::ArtMethod* method, uint32_t new_dex_pc) |
| 118 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) OVERRIDE; |
| 119 | void FieldRead(Thread* thread, mirror::Object* this_object, |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 120 | mirror::ArtMethod* method, uint32_t dex_pc, ArtField* field) |
Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 121 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) OVERRIDE; |
| 122 | void FieldWritten(Thread* thread, mirror::Object* this_object, |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 123 | mirror::ArtMethod* method, uint32_t dex_pc, ArtField* field, |
Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 124 | const JValue& field_value) |
| 125 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) OVERRIDE; |
Nicolas Geoffray | 14691c5 | 2015-03-05 10:40:17 +0000 | [diff] [blame] | 126 | void ExceptionCaught(Thread* thread, mirror::Throwable* exception_object) |
Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 127 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) OVERRIDE; |
Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 128 | void BackwardBranch(Thread* thread, mirror::ArtMethod* method, int32_t dex_pc_offset) |
| 129 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) OVERRIDE; |
Jeff Hao | 5ce4b17 | 2013-08-16 16:27:18 -0700 | [diff] [blame] | 130 | // Reuse an old stack trace if it exists, otherwise allocate a new one. |
| 131 | static std::vector<mirror::ArtMethod*>* AllocStackTrace(); |
| 132 | // Clear and store an old stack trace for later use. |
| 133 | static void FreeStackTrace(std::vector<mirror::ArtMethod*>* stack_trace); |
Jeff Hao | e094b87 | 2014-10-14 13:12:01 -0700 | [diff] [blame] | 134 | // Save id and name of a thread before it exits. |
| 135 | static void StoreExitingThreadInfo(Thread* thread); |
Jeff Hao | 5ce4b17 | 2013-08-16 16:27:18 -0700 | [diff] [blame] | 136 | |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 137 | static TraceOutputMode GetOutputMode() LOCKS_EXCLUDED(Locks::trace_lock_); |
| 138 | static TraceMode GetMode() LOCKS_EXCLUDED(Locks::trace_lock_); |
Andreas Gampe | e34a42c | 2015-04-25 14:44:29 -0700 | [diff] [blame] | 139 | static size_t GetBufferSize() LOCKS_EXCLUDED(Locks::trace_lock_); |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 140 | |
jeffhao | e343b76 | 2011-12-05 16:36:44 -0800 | [diff] [blame] | 141 | private: |
Andreas Gampe | e34a42c | 2015-04-25 14:44:29 -0700 | [diff] [blame] | 142 | 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] | 143 | TraceOutputMode output_mode, TraceMode trace_mode); |
jeffhao | 2692b57 | 2011-12-16 15:42:28 -0800 | [diff] [blame] | 144 | |
Jeff Hao | 23009dc | 2013-08-22 15:36:42 -0700 | [diff] [blame] | 145 | // The sampling interval in microseconds is passed as an argument. |
Jeff Hao | 0abc72e | 2013-08-13 13:45:14 -0700 | [diff] [blame] | 146 | static void* RunSamplingThread(void* arg) LOCKS_EXCLUDED(Locks::trace_lock_); |
| 147 | |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 148 | static void StopTracing(bool finish_tracing, bool flush_file); |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 149 | void FinishTracing() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); |
jeffhao | 2692b57 | 2011-12-16 15:42:28 -0800 | [diff] [blame] | 150 | |
Jeff Hao | c1ff4b7 | 2013-08-19 11:33:10 -0700 | [diff] [blame] | 151 | void ReadClocks(Thread* thread, uint32_t* thread_clock_diff, uint32_t* wall_clock_diff); |
| 152 | |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 153 | void LogMethodTraceEvent(Thread* thread, mirror::ArtMethod* method, |
Jeff Hao | c1ff4b7 | 2013-08-19 11:33:10 -0700 | [diff] [blame] | 154 | instrumentation::Instrumentation::InstrumentationEvent event, |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 155 | uint32_t thread_clock_diff, uint32_t wall_clock_diff) |
| 156 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 157 | |
jeffhao | a9ef3fd | 2011-12-13 18:33:43 -0800 | [diff] [blame] | 158 | // Methods to output traced methods and threads. |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 159 | void GetVisitedMethods(size_t end_offset, std::set<mirror::ArtMethod*>* visited_methods); |
| 160 | void DumpMethodList(std::ostream& os, const std::set<mirror::ArtMethod*>& visited_methods) |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 161 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 162 | void DumpThreadList(std::ostream& os) LOCKS_EXCLUDED(Locks::thread_list_lock_); |
jeffhao | a9ef3fd | 2011-12-13 18:33:43 -0800 | [diff] [blame] | 163 | |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 164 | // Methods to register seen entitites in streaming mode. The methods return true if the entity |
| 165 | // is newly discovered. |
| 166 | bool RegisterMethod(mirror::ArtMethod* method) |
| 167 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) EXCLUSIVE_LOCKS_REQUIRED(streaming_lock_); |
| 168 | bool RegisterThread(Thread* thread) |
| 169 | EXCLUSIVE_LOCKS_REQUIRED(streaming_lock_); |
| 170 | |
| 171 | // Copy a temporary buffer to the main buffer. Used for streaming. Exposed here for lock |
| 172 | // annotation. |
| 173 | void WriteToBuf(const uint8_t* src, size_t src_size) |
| 174 | EXCLUSIVE_LOCKS_REQUIRED(streaming_lock_); |
| 175 | |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 176 | // Singleton instance of the Trace or null when no method tracing is active. |
Jeff Hao | 0abc72e | 2013-08-13 13:45:14 -0700 | [diff] [blame] | 177 | static Trace* volatile the_trace_ GUARDED_BY(Locks::trace_lock_); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 178 | |
| 179 | // The default profiler clock source. |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 180 | static TraceClockSource default_clock_source_; |
jeffhao | e343b76 | 2011-12-05 16:36:44 -0800 | [diff] [blame] | 181 | |
Jeff Hao | 0abc72e | 2013-08-13 13:45:14 -0700 | [diff] [blame] | 182 | // Sampling thread, non-zero when sampling. |
| 183 | static pthread_t sampling_pthread_; |
| 184 | |
Jeff Hao | 5ce4b17 | 2013-08-16 16:27:18 -0700 | [diff] [blame] | 185 | // Used to remember an unused stack trace to avoid re-allocation during sampling. |
Ian Rogers | 700a402 | 2014-05-19 16:49:03 -0700 | [diff] [blame] | 186 | static std::unique_ptr<std::vector<mirror::ArtMethod*>> temp_stack_trace_; |
jeffhao | a9ef3fd | 2011-12-13 18:33:43 -0800 | [diff] [blame] | 187 | |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 188 | // File to write trace data out to, null if direct to ddms. |
Ian Rogers | 700a402 | 2014-05-19 16:49:03 -0700 | [diff] [blame] | 189 | std::unique_ptr<File> trace_file_; |
jeffhao | a9ef3fd | 2011-12-13 18:33:43 -0800 | [diff] [blame] | 190 | |
jeffhao | 2692b57 | 2011-12-16 15:42:28 -0800 | [diff] [blame] | 191 | // Buffer to store trace data. |
Ian Rogers | 700a402 | 2014-05-19 16:49:03 -0700 | [diff] [blame] | 192 | std::unique_ptr<uint8_t> buf_; |
jeffhao | 2692b57 | 2011-12-16 15:42:28 -0800 | [diff] [blame] | 193 | |
jeffhao | 0791adc | 2012-04-04 11:14:32 -0700 | [diff] [blame] | 194 | // Flags enabling extra tracing of things such as alloc counts. |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 195 | const int flags_; |
jeffhao | 0791adc | 2012-04-04 11:14:32 -0700 | [diff] [blame] | 196 | |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 197 | // The kind of output for this tracing. |
| 198 | const TraceOutputMode trace_output_mode_; |
| 199 | |
| 200 | // The tracing method. |
Andreas Gampe | 7e7e0f4 | 2015-03-29 15:26:23 -0700 | [diff] [blame] | 201 | const TraceMode trace_mode_; |
Jeff Hao | 23009dc | 2013-08-22 15:36:42 -0700 | [diff] [blame] | 202 | |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 203 | const TraceClockSource clock_source_; |
Elliott Hughes | cfbe73d | 2012-05-22 17:37:06 -0700 | [diff] [blame] | 204 | |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 205 | // Size of buf_. |
Andreas Gampe | e34a42c | 2015-04-25 14:44:29 -0700 | [diff] [blame] | 206 | const size_t buffer_size_; |
jeffhao | 2692b57 | 2011-12-16 15:42:28 -0800 | [diff] [blame] | 207 | |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 208 | // Time trace was created. |
| 209 | const uint64_t start_time_; |
| 210 | |
Jeff Hao | c5d824a | 2014-07-28 18:35:38 -0700 | [diff] [blame] | 211 | // Clock overhead. |
| 212 | const uint32_t clock_overhead_ns_; |
| 213 | |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 214 | // Offset into buf_. |
Ian Rogers | 8ab25ef | 2014-07-09 18:00:50 -0700 | [diff] [blame] | 215 | AtomicInteger cur_offset_; |
jeffhao | a9ef3fd | 2011-12-13 18:33:43 -0800 | [diff] [blame] | 216 | |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 217 | // Did we overflow the buffer recording traces? |
| 218 | bool overflow_; |
| 219 | |
Jeff Hao | e094b87 | 2014-10-14 13:12:01 -0700 | [diff] [blame] | 220 | // Map of thread ids and names that have already exited. |
| 221 | SafeMap<pid_t, std::string> exited_threads_; |
| 222 | |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 223 | // Sampling profiler sampling interval. |
| 224 | int interval_us_; |
| 225 | |
| 226 | // Streaming mode data. |
| 227 | std::string streaming_file_name_; |
| 228 | Mutex* streaming_lock_; |
| 229 | std::map<mirror::DexCache*, DexIndexBitSet*> seen_methods_; |
| 230 | std::unique_ptr<ThreadIDBitSet> seen_threads_; |
| 231 | |
jeffhao | e343b76 | 2011-12-05 16:36:44 -0800 | [diff] [blame] | 232 | DISALLOW_COPY_AND_ASSIGN(Trace); |
| 233 | }; |
| 234 | |
| 235 | } // namespace art |
| 236 | |
Brian Carlstrom | fc0e321 | 2013-07-17 14:40:12 -0700 | [diff] [blame] | 237 | #endif // ART_RUNTIME_TRACE_H_ |