1 //===-- llvm/Support/Timer.h - Interval Timing Support ----------*- C++ -*-===// 2 // 3 // The LLVM Compiler Infrastructure 4 // 5 // This file is distributed under the University of Illinois Open Source 6 // License. See LICENSE.TXT for details. 7 // 8 //===----------------------------------------------------------------------===// 9 10 #ifndef LLVM_SUPPORT_TIMER_H 11 #define LLVM_SUPPORT_TIMER_H 12 13 #include "llvm/ADT/StringRef.h" 14 #include "llvm/Support/DataTypes.h" 15 #include <cassert> 16 #include <string> 17 #include <utility> 18 #include <vector> 19 20 namespace llvm { 21 22 class Timer; 23 class TimerGroup; 24 class raw_ostream; 25 26 class TimeRecord { 27 double WallTime; // Wall clock time elapsed in seconds 28 double UserTime; // User time elapsed 29 double SystemTime; // System time elapsed 30 ssize_t MemUsed; // Memory allocated (in bytes) 31 public: TimeRecord()32 TimeRecord() : WallTime(0), UserTime(0), SystemTime(0), MemUsed(0) {} 33 34 /// getCurrentTime - Get the current time and memory usage. If Start is true 35 /// we get the memory usage before the time, otherwise we get time before 36 /// memory usage. This matters if the time to get the memory usage is 37 /// significant and shouldn't be counted as part of a duration. 38 static TimeRecord getCurrentTime(bool Start = true); 39 getProcessTime()40 double getProcessTime() const { return UserTime + SystemTime; } getUserTime()41 double getUserTime() const { return UserTime; } getSystemTime()42 double getSystemTime() const { return SystemTime; } getWallTime()43 double getWallTime() const { return WallTime; } getMemUsed()44 ssize_t getMemUsed() const { return MemUsed; } 45 46 // operator< - Allow sorting. 47 bool operator<(const TimeRecord &T) const { 48 // Sort by Wall Time elapsed, as it is the only thing really accurate 49 return WallTime < T.WallTime; 50 } 51 52 void operator+=(const TimeRecord &RHS) { 53 WallTime += RHS.WallTime; 54 UserTime += RHS.UserTime; 55 SystemTime += RHS.SystemTime; 56 MemUsed += RHS.MemUsed; 57 } 58 void operator-=(const TimeRecord &RHS) { 59 WallTime -= RHS.WallTime; 60 UserTime -= RHS.UserTime; 61 SystemTime -= RHS.SystemTime; 62 MemUsed -= RHS.MemUsed; 63 } 64 65 /// Print the current time record to \p OS, with a breakdown showing 66 /// contributions to the \p Total time record. 67 void print(const TimeRecord &Total, raw_ostream &OS) const; 68 }; 69 70 /// Timer - This class is used to track the amount of time spent between 71 /// invocations of its startTimer()/stopTimer() methods. Given appropriate OS 72 /// support it can also keep track of the RSS of the program at various points. 73 /// By default, the Timer will print the amount of time it has captured to 74 /// standard error when the last timer is destroyed, otherwise it is printed 75 /// when its TimerGroup is destroyed. Timers do not print their information 76 /// if they are never started. 77 /// 78 class Timer { 79 TimeRecord Time; // The total time captured 80 TimeRecord StartTime; // The time startTimer() was last called 81 std::string Name; // The name of this time variable. 82 bool Running; // Is the timer currently running? 83 bool Triggered; // Has the timer ever been triggered? 84 TimerGroup *TG; // The TimerGroup this Timer is in. 85 86 Timer **Prev, *Next; // Doubly linked list of timers in the group. 87 public: Timer(StringRef N)88 explicit Timer(StringRef N) : TG(nullptr) { init(N); } Timer(StringRef N,TimerGroup & tg)89 Timer(StringRef N, TimerGroup &tg) : TG(nullptr) { init(N, tg); } Timer(const Timer & RHS)90 Timer(const Timer &RHS) : TG(nullptr) { 91 assert(!RHS.TG && "Can only copy uninitialized timers"); 92 } 93 const Timer &operator=(const Timer &T) { 94 assert(!TG && !T.TG && "Can only assign uninit timers"); 95 return *this; 96 } 97 ~Timer(); 98 99 // Create an uninitialized timer, client must use 'init'. Timer()100 explicit Timer() : TG(nullptr) {} 101 void init(StringRef N); 102 void init(StringRef N, TimerGroup &tg); 103 getName()104 const std::string &getName() const { return Name; } isInitialized()105 bool isInitialized() const { return TG != nullptr; } 106 107 /// Check if the timer is currently running. isRunning()108 bool isRunning() const { return Running; } 109 110 /// Check if startTimer() has ever been called on this timer. hasTriggered()111 bool hasTriggered() const { return Triggered; } 112 113 /// Start the timer running. Time between calls to startTimer/stopTimer is 114 /// counted by the Timer class. Note that these calls must be correctly 115 /// paired. 116 void startTimer(); 117 118 /// Stop the timer. 119 void stopTimer(); 120 121 /// Clear the timer state. 122 void clear(); 123 124 /// Return the duration for which this timer has been running. getTotalTime()125 TimeRecord getTotalTime() const { return Time; } 126 127 private: 128 friend class TimerGroup; 129 }; 130 131 /// The TimeRegion class is used as a helper class to call the startTimer() and 132 /// stopTimer() methods of the Timer class. When the object is constructed, it 133 /// starts the timer specified as its argument. When it is destroyed, it stops 134 /// the relevant timer. This makes it easy to time a region of code. 135 /// 136 class TimeRegion { 137 Timer *T; 138 TimeRegion(const TimeRegion &) = delete; 139 140 public: TimeRegion(Timer & t)141 explicit TimeRegion(Timer &t) : T(&t) { 142 T->startTimer(); 143 } TimeRegion(Timer * t)144 explicit TimeRegion(Timer *t) : T(t) { 145 if (T) T->startTimer(); 146 } ~TimeRegion()147 ~TimeRegion() { 148 if (T) T->stopTimer(); 149 } 150 }; 151 152 /// NamedRegionTimer - This class is basically a combination of TimeRegion and 153 /// Timer. It allows you to declare a new timer, AND specify the region to 154 /// time, all in one statement. All timers with the same name are merged. This 155 /// is primarily used for debugging and for hunting performance problems. 156 /// 157 struct NamedRegionTimer : public TimeRegion { 158 explicit NamedRegionTimer(StringRef Name, 159 bool Enabled = true); 160 explicit NamedRegionTimer(StringRef Name, StringRef GroupName, 161 bool Enabled = true); 162 }; 163 164 /// The TimerGroup class is used to group together related timers into a single 165 /// report that is printed when the TimerGroup is destroyed. It is illegal to 166 /// destroy a TimerGroup object before all of the Timers in it are gone. A 167 /// TimerGroup can be specified for a newly created timer in its constructor. 168 /// 169 class TimerGroup { 170 std::string Name; 171 Timer *FirstTimer; // First timer in the group. 172 std::vector<std::pair<TimeRecord, std::string>> TimersToPrint; 173 174 TimerGroup **Prev, *Next; // Doubly linked list of TimerGroup's. 175 TimerGroup(const TimerGroup &TG) = delete; 176 void operator=(const TimerGroup &TG) = delete; 177 178 public: 179 explicit TimerGroup(StringRef name); 180 ~TimerGroup(); 181 setName(StringRef name)182 void setName(StringRef name) { Name.assign(name.begin(), name.end()); } 183 184 /// print - Print any started timers in this group and zero them. 185 void print(raw_ostream &OS); 186 187 /// printAll - This static method prints all timers and clears them all out. 188 static void printAll(raw_ostream &OS); 189 190 private: 191 friend class Timer; 192 void addTimer(Timer &T); 193 void removeTimer(Timer &T); 194 void PrintQueuedTimers(raw_ostream &OS); 195 }; 196 197 } // End llvm namespace 198 199 #endif 200