LLVM 20.0.0git
|
This class is used to track the amount of time spent between invocations of its startTimer()/stopTimer() methods. More...
#include "llvm/Support/Timer.h"
Public Member Functions | |
Timer (StringRef TimerName, StringRef TimerDescription) | |
Timer (StringRef TimerName, StringRef TimerDescription, TimerGroup &tg) | |
Timer (const Timer &RHS) | |
const Timer & | operator= (const Timer &T) |
~Timer () | |
Timer ()=default | |
Create an uninitialized timer, client must use 'init'. | |
void | init (StringRef TimerName, StringRef TimerDescription) |
void | init (StringRef TimerName, StringRef TimerDescription, TimerGroup &tg) |
const std::string & | getName () const |
const std::string & | getDescription () const |
bool | isInitialized () const |
bool | isRunning () const |
Check if the timer is currently running. | |
bool | hasTriggered () const |
Check if startTimer() has ever been called on this timer. | |
void | startTimer () |
Start the timer running. | |
void | stopTimer () |
Stop the timer. | |
void | clear () |
Clear the timer state. | |
void | yieldTo (Timer &) |
Stop the timer and start another timer. | |
TimeRecord | getTotalTime () const |
Return the duration for which this timer has been running. | |
Friends | |
class | TimerGroup |
This class is used to track the amount of time spent between invocations of its startTimer()/stopTimer() methods.
Given appropriate OS support it can also keep track of the RSS of the program at various points. By default, the Timer will print the amount of time it has captured to standard error when the last timer is destroyed, otherwise it is printed when its TimerGroup is destroyed. Timers do not print their information if they are never started.
|
inline |
|
explicitdefault |
Create an uninitialized timer, client must use 'init'.
void Timer::clear | ( | ) |
Clear the timer state.
Definition at line 169 of file Timer.cpp.
Referenced by llvm::DebuginfodCollection::update().
|
inline |
|
inline |
Definition at line 113 of file Timer.h.
Referenced by startTimer(), and stopTimer().
|
inline |
|
inline |
Check if startTimer() has ever been called on this timer.
void Timer::init | ( | StringRef | TimerName, |
StringRef | TimerDescription, | ||
TimerGroup & | tg | ||
) |
Definition at line 96 of file Timer.cpp.
References assert(), llvm::StringRef::begin(), llvm::StringRef::end(), and Name.
|
inline |
Check if the timer is currently running.
Definition at line 118 of file Timer.h.
Referenced by llvm::DebuginfodCollection::update().
void Timer::startTimer | ( | ) |
Start the timer running.
Time between calls to startTimer/stopTimer is counted by the Timer class. Note that these calls must be correctly paired.
Definition at line 150 of file Timer.cpp.
References assert(), llvm::TimeRecord::getCurrentTime(), getName(), signposts(), and llvm::SignpostEmitter::startInterval().
Referenced by llvm::TableGenMain(), and llvm::DebuginfodCollection::update().
void Timer::stopTimer | ( | ) |
Stop the timer.
Definition at line 159 of file Timer.cpp.
References assert(), llvm::SignpostEmitter::endInterval(), llvm::TimeRecord::getCurrentTime(), getName(), and signposts().
Referenced by llvm::TableGenMain(), llvm::DebuginfodCollection::update(), and yieldTo().
void Timer::yieldTo | ( | Timer & | O | ) |
Stop the timer and start another timer.
Definition at line 174 of file Timer.cpp.
References stopTimer().
|
friend |