1 //===-- Timer.cpp - Interval Timing Support -------------------------------===// 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 /// \file Interval Timing implementation. 11 // 12 //===----------------------------------------------------------------------===// 13 14 #include "llvm/Support/Timer.h" 15 #include "llvm/ADT/Statistic.h" 16 #include "llvm/ADT/StringMap.h" 17 #include "llvm/Support/CommandLine.h" 18 #include "llvm/Support/FileSystem.h" 19 #include "llvm/Support/Format.h" 20 #include "llvm/Support/ManagedStatic.h" 21 #include "llvm/Support/Mutex.h" 22 #include "llvm/Support/Process.h" 23 #include "llvm/Support/raw_ostream.h" 24 using namespace llvm; 25 26 // This ugly hack is brought to you courtesy of constructor/destructor ordering 27 // being unspecified by C++. Basically the problem is that a Statistic object 28 // gets destroyed, which ends up calling 'GetLibSupportInfoOutputFile()' 29 // (below), which calls this function. LibSupportInfoOutputFilename used to be 30 // a global variable, but sometimes it would get destroyed before the Statistic, 31 // causing havoc to ensue. We "fix" this by creating the string the first time 32 // it is needed and never destroying it. 33 static ManagedStatic<std::string> LibSupportInfoOutputFilename; 34 static std::string &getLibSupportInfoOutputFilename() { 35 return *LibSupportInfoOutputFilename; 36 } 37 38 static ManagedStatic<sys::SmartMutex<true> > TimerLock; 39 40 namespace { 41 static cl::opt<bool> 42 TrackSpace("track-memory", cl::desc("Enable -time-passes memory " 43 "tracking (this may be slow)"), 44 cl::Hidden); 45 46 static cl::opt<std::string, true> 47 InfoOutputFilename("info-output-file", cl::value_desc("filename"), 48 cl::desc("File to append -stats and -timer output to"), 49 cl::Hidden, cl::location(getLibSupportInfoOutputFilename())); 50 } 51 52 std::unique_ptr<raw_fd_ostream> llvm::CreateInfoOutputFile() { 53 const std::string &OutputFilename = getLibSupportInfoOutputFilename(); 54 if (OutputFilename.empty()) 55 return llvm::make_unique<raw_fd_ostream>(2, false); // stderr. 56 if (OutputFilename == "-") 57 return llvm::make_unique<raw_fd_ostream>(1, false); // stdout. 58 59 // Append mode is used because the info output file is opened and closed 60 // each time -stats or -time-passes wants to print output to it. To 61 // compensate for this, the test-suite Makefiles have code to delete the 62 // info output file before running commands which write to it. 63 std::error_code EC; 64 auto Result = llvm::make_unique<raw_fd_ostream>( 65 OutputFilename, EC, sys::fs::F_Append | sys::fs::F_Text); 66 if (!EC) 67 return Result; 68 69 errs() << "Error opening info-output-file '" 70 << OutputFilename << " for appending!\n"; 71 return llvm::make_unique<raw_fd_ostream>(2, false); // stderr. 72 } 73 74 75 static TimerGroup *DefaultTimerGroup = nullptr; 76 static TimerGroup *getDefaultTimerGroup() { 77 TimerGroup *tmp = DefaultTimerGroup; 78 sys::MemoryFence(); 79 if (tmp) return tmp; 80 81 sys::SmartScopedLock<true> Lock(*TimerLock); 82 tmp = DefaultTimerGroup; 83 if (!tmp) { 84 tmp = new TimerGroup("Miscellaneous Ungrouped Timers"); 85 sys::MemoryFence(); 86 DefaultTimerGroup = tmp; 87 } 88 89 return tmp; 90 } 91 92 //===----------------------------------------------------------------------===// 93 // Timer Implementation 94 //===----------------------------------------------------------------------===// 95 96 void Timer::init(StringRef N) { 97 init(N, *getDefaultTimerGroup()); 98 } 99 100 void Timer::init(StringRef N, TimerGroup &tg) { 101 assert(!TG && "Timer already initialized"); 102 Name.assign(N.begin(), N.end()); 103 Running = Triggered = false; 104 TG = &tg; 105 TG->addTimer(*this); 106 } 107 108 Timer::~Timer() { 109 if (!TG) return; // Never initialized, or already cleared. 110 TG->removeTimer(*this); 111 } 112 113 static inline size_t getMemUsage() { 114 if (!TrackSpace) return 0; 115 return sys::Process::GetMallocUsage(); 116 } 117 118 TimeRecord TimeRecord::getCurrentTime(bool Start) { 119 using Seconds = std::chrono::duration<double, std::ratio<1>>; 120 TimeRecord Result; 121 sys::TimePoint<> now; 122 std::chrono::nanoseconds user, sys; 123 124 if (Start) { 125 Result.MemUsed = getMemUsage(); 126 sys::Process::GetTimeUsage(now, user, sys); 127 } else { 128 sys::Process::GetTimeUsage(now, user, sys); 129 Result.MemUsed = getMemUsage(); 130 } 131 132 Result.WallTime = Seconds(now.time_since_epoch()).count(); 133 Result.UserTime = Seconds(user).count(); 134 Result.SystemTime = Seconds(sys).count(); 135 return Result; 136 } 137 138 void Timer::startTimer() { 139 assert(!Running && "Cannot start a running timer"); 140 Running = Triggered = true; 141 StartTime = TimeRecord::getCurrentTime(true); 142 } 143 144 void Timer::stopTimer() { 145 assert(Running && "Cannot stop a paused timer"); 146 Running = false; 147 Time += TimeRecord::getCurrentTime(false); 148 Time -= StartTime; 149 } 150 151 void Timer::clear() { 152 Running = Triggered = false; 153 Time = StartTime = TimeRecord(); 154 } 155 156 static void printVal(double Val, double Total, raw_ostream &OS) { 157 if (Total < 1e-7) // Avoid dividing by zero. 158 OS << " ----- "; 159 else 160 OS << format(" %7.4f (%5.1f%%)", Val, Val*100/Total); 161 } 162 163 void TimeRecord::print(const TimeRecord &Total, raw_ostream &OS) const { 164 if (Total.getUserTime()) 165 printVal(getUserTime(), Total.getUserTime(), OS); 166 if (Total.getSystemTime()) 167 printVal(getSystemTime(), Total.getSystemTime(), OS); 168 if (Total.getProcessTime()) 169 printVal(getProcessTime(), Total.getProcessTime(), OS); 170 printVal(getWallTime(), Total.getWallTime(), OS); 171 172 OS << " "; 173 174 if (Total.getMemUsed()) 175 OS << format("%9" PRId64 " ", (int64_t)getMemUsed()); 176 } 177 178 179 //===----------------------------------------------------------------------===// 180 // NamedRegionTimer Implementation 181 //===----------------------------------------------------------------------===// 182 183 namespace { 184 185 typedef StringMap<Timer> Name2TimerMap; 186 187 class Name2PairMap { 188 StringMap<std::pair<TimerGroup*, Name2TimerMap> > Map; 189 public: 190 ~Name2PairMap() { 191 for (StringMap<std::pair<TimerGroup*, Name2TimerMap> >::iterator 192 I = Map.begin(), E = Map.end(); I != E; ++I) 193 delete I->second.first; 194 } 195 196 Timer &get(StringRef Name, StringRef GroupName) { 197 sys::SmartScopedLock<true> L(*TimerLock); 198 199 std::pair<TimerGroup*, Name2TimerMap> &GroupEntry = Map[GroupName]; 200 201 if (!GroupEntry.first) 202 GroupEntry.first = new TimerGroup(GroupName); 203 204 Timer &T = GroupEntry.second[Name]; 205 if (!T.isInitialized()) 206 T.init(Name, *GroupEntry.first); 207 return T; 208 } 209 }; 210 211 } 212 213 static ManagedStatic<Name2TimerMap> NamedTimers; 214 static ManagedStatic<Name2PairMap> NamedGroupedTimers; 215 216 static Timer &getNamedRegionTimer(StringRef Name) { 217 sys::SmartScopedLock<true> L(*TimerLock); 218 219 Timer &T = (*NamedTimers)[Name]; 220 if (!T.isInitialized()) 221 T.init(Name); 222 return T; 223 } 224 225 NamedRegionTimer::NamedRegionTimer(StringRef Name, 226 bool Enabled) 227 : TimeRegion(!Enabled ? nullptr : &getNamedRegionTimer(Name)) {} 228 229 NamedRegionTimer::NamedRegionTimer(StringRef Name, StringRef GroupName, 230 bool Enabled) 231 : TimeRegion(!Enabled ? nullptr : &NamedGroupedTimers->get(Name, GroupName)){} 232 233 //===----------------------------------------------------------------------===// 234 // TimerGroup Implementation 235 //===----------------------------------------------------------------------===// 236 237 /// This is the global list of TimerGroups, maintained by the TimerGroup 238 /// ctor/dtor and is protected by the TimerLock lock. 239 static TimerGroup *TimerGroupList = nullptr; 240 241 TimerGroup::TimerGroup(StringRef name) 242 : Name(name.begin(), name.end()) { 243 244 // Add the group to TimerGroupList. 245 sys::SmartScopedLock<true> L(*TimerLock); 246 if (TimerGroupList) 247 TimerGroupList->Prev = &Next; 248 Next = TimerGroupList; 249 Prev = &TimerGroupList; 250 TimerGroupList = this; 251 } 252 253 TimerGroup::~TimerGroup() { 254 // If the timer group is destroyed before the timers it owns, accumulate and 255 // print the timing data. 256 while (FirstTimer) 257 removeTimer(*FirstTimer); 258 259 // Remove the group from the TimerGroupList. 260 sys::SmartScopedLock<true> L(*TimerLock); 261 *Prev = Next; 262 if (Next) 263 Next->Prev = Prev; 264 } 265 266 267 void TimerGroup::removeTimer(Timer &T) { 268 sys::SmartScopedLock<true> L(*TimerLock); 269 270 // If the timer was started, move its data to TimersToPrint. 271 if (T.hasTriggered()) 272 TimersToPrint.emplace_back(T.Time, T.Name); 273 274 T.TG = nullptr; 275 276 // Unlink the timer from our list. 277 *T.Prev = T.Next; 278 if (T.Next) 279 T.Next->Prev = T.Prev; 280 281 // Print the report when all timers in this group are destroyed if some of 282 // them were started. 283 if (FirstTimer || TimersToPrint.empty()) 284 return; 285 286 std::unique_ptr<raw_ostream> OutStream = CreateInfoOutputFile(); 287 PrintQueuedTimers(*OutStream); 288 } 289 290 void TimerGroup::addTimer(Timer &T) { 291 sys::SmartScopedLock<true> L(*TimerLock); 292 293 // Add the timer to our list. 294 if (FirstTimer) 295 FirstTimer->Prev = &T.Next; 296 T.Next = FirstTimer; 297 T.Prev = &FirstTimer; 298 FirstTimer = &T; 299 } 300 301 void TimerGroup::PrintQueuedTimers(raw_ostream &OS) { 302 // Sort the timers in descending order by amount of time taken. 303 std::sort(TimersToPrint.begin(), TimersToPrint.end()); 304 305 TimeRecord Total; 306 for (auto &RecordNamePair : TimersToPrint) 307 Total += RecordNamePair.first; 308 309 // Print out timing header. 310 OS << "===" << std::string(73, '-') << "===\n"; 311 // Figure out how many spaces to indent TimerGroup name. 312 unsigned Padding = (80-Name.length())/2; 313 if (Padding > 80) Padding = 0; // Don't allow "negative" numbers 314 OS.indent(Padding) << Name << '\n'; 315 OS << "===" << std::string(73, '-') << "===\n"; 316 317 // If this is not an collection of ungrouped times, print the total time. 318 // Ungrouped timers don't really make sense to add up. We still print the 319 // TOTAL line to make the percentages make sense. 320 if (this != DefaultTimerGroup) 321 OS << format(" Total Execution Time: %5.4f seconds (%5.4f wall clock)\n", 322 Total.getProcessTime(), Total.getWallTime()); 323 OS << '\n'; 324 325 if (Total.getUserTime()) 326 OS << " ---User Time---"; 327 if (Total.getSystemTime()) 328 OS << " --System Time--"; 329 if (Total.getProcessTime()) 330 OS << " --User+System--"; 331 OS << " ---Wall Time---"; 332 if (Total.getMemUsed()) 333 OS << " ---Mem---"; 334 OS << " --- Name ---\n"; 335 336 // Loop through all of the timing data, printing it out. 337 for (unsigned i = 0, e = TimersToPrint.size(); i != e; ++i) { 338 const std::pair<TimeRecord, std::string> &Entry = TimersToPrint[e-i-1]; 339 Entry.first.print(Total, OS); 340 OS << Entry.second << '\n'; 341 } 342 343 Total.print(Total, OS); 344 OS << "Total\n\n"; 345 OS.flush(); 346 347 TimersToPrint.clear(); 348 } 349 350 void TimerGroup::print(raw_ostream &OS) { 351 sys::SmartScopedLock<true> L(*TimerLock); 352 353 // See if any of our timers were started, if so add them to TimersToPrint and 354 // reset them. 355 for (Timer *T = FirstTimer; T; T = T->Next) { 356 if (!T->hasTriggered()) continue; 357 TimersToPrint.emplace_back(T->Time, T->Name); 358 359 // Clear out the time. 360 T->clear(); 361 } 362 363 // If any timers were started, print the group. 364 if (!TimersToPrint.empty()) 365 PrintQueuedTimers(OS); 366 } 367 368 void TimerGroup::printAll(raw_ostream &OS) { 369 sys::SmartScopedLock<true> L(*TimerLock); 370 371 for (TimerGroup *TG = TimerGroupList; TG; TG = TG->Next) 372 TG->print(OS); 373 } 374