1 //===-- llvm/Support/Timer.h - Interval Timing Support ----------*- C++ -*-===//
3 // The LLVM Compiler Infrastructure
5 // This file was developed by the LLVM research group and is distributed under
6 // the University of Illinois Open Source License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This file defines three classes: Timer, TimeRegion, and TimerGroup,
13 //===----------------------------------------------------------------------===//
15 #ifndef LLVM_SUPPORT_TIMER_H
16 #define LLVM_SUPPORT_TIMER_H
27 /// Timer - This class is used to track the amount of time spent between
28 /// invocations of it's startTimer()/stopTimer() methods. Given appropriate OS
29 /// support it can also keep track of the RSS of the program at various points.
30 /// By default, the Timer will print the amount of time it has captured to
31 /// standard error when the laster timer is destroyed, otherwise it is printed
32 /// when it's TimerGroup is destroyed. Timer's do not print their information
33 /// if they are never started.
36 double Elapsed; // Wall clock time elapsed in seconds
37 double UserTime; // User time elapsed
38 double SystemTime; // System time elapsed
39 long MemUsed; // Memory allocated (in bytes)
40 long PeakMem; // Peak memory used
41 long PeakMemBase; // Temporary for peak calculation...
42 std::string Name; // The name of this time variable
43 bool Started; // Has this time variable ever been started?
44 TimerGroup *TG; // The TimerGroup this Timer is in.
46 Timer(const std::string &N);
47 Timer(const std::string &N, TimerGroup &tg);
48 Timer(const Timer &T);
51 double getProcessTime() const { return UserTime+SystemTime; }
52 double getWallTime() const { return Elapsed; }
53 long getMemUsed() const { return MemUsed; }
54 long getPeakMem() const { return PeakMem; }
55 std::string getName() const { return Name; }
57 const Timer &operator=(const Timer &T) {
59 UserTime = T.UserTime;
60 SystemTime = T.SystemTime;
63 PeakMemBase = T.PeakMemBase;
66 assert(TG == T.TG && "Can only assign timers in the same TimerGroup!");
70 // operator< - Allow sorting...
71 bool operator<(const Timer &T) const {
72 // Sort by Wall Time elapsed, as it is the only thing really accurate
73 return Elapsed < T.Elapsed;
75 bool operator>(const Timer &T) const { return T.operator<(*this); }
77 /// startTimer - Start the timer running. Time between calls to
78 /// startTimer/stopTimer is counted by the Timer class. Note that these calls
79 /// must be correctly paired.
83 /// stopTimer - Stop the timer.
87 /// addPeakMemoryMeasurement - This method should be called whenever memory
88 /// usage needs to be checked. It adds a peak memory measurement to the
89 /// currently active timers, which will be printed when the timer group prints
91 static void addPeakMemoryMeasurement();
93 /// print - Print the current timer to standard error, and reset the "Started"
95 void print(const Timer &Total, std::ostream &OS);
98 friend class TimerGroup;
100 // Copy ctor, initialize with no TG member.
101 Timer(bool, const Timer &T);
103 /// sum - Add the time accumulated in the specified timer into this timer.
105 void sum(const Timer &T);
109 /// The TimeRegion class is used as a helper class to call the startTimer() and
110 /// stopTimer() methods of the Timer class. When the object is constructed, it
111 /// starts the timer specified as it's argument. When it is destroyed, it stops
112 /// the relevant timer. This makes it easy to time a region of code.
116 TimeRegion(const TimeRegion &); // DO NOT IMPLEMENT
118 TimeRegion(Timer &t) : T(t) {
127 /// NamedRegionTimer - This class is basically a combination of TimeRegion and
128 /// Timer. It allows you to declare a new timer, AND specify the region to
129 /// time, all in one statement. All timers with the same name are merged. This
130 /// is primarily used for debugging and for hunting performance problems.
132 struct NamedRegionTimer : public TimeRegion {
133 NamedRegionTimer(const std::string &Name);
137 /// The TimerGroup class is used to group together related timers into a single
138 /// report that is printed when the TimerGroup is destroyed. It is illegal to
139 /// destroy a TimerGroup object before all of the Timers in it are gone. A
140 /// TimerGroup can be specified for a newly created timer in its constructor.
145 std::vector<Timer> TimersToPrint;
147 TimerGroup(const std::string &name) : Name(name), NumTimers(0) {}
149 assert(NumTimers == 0 &&
150 "TimerGroup destroyed before all contained timers!");
155 void addTimer() { ++NumTimers; }
157 void addTimerToPrint(const Timer &T) {
158 TimersToPrint.push_back(Timer(true, T));
162 } // End llvm namespace