LLVM  4.0.0
Classes | Public Member Functions | Static Public Member Functions | Friends | List of all members
llvm::TimerGroup Class Reference

The TimerGroup class is used to group together related timers into a single report that is printed when the TimerGroup is destroyed. More...

#include <Timer.h>

Public Member Functions

 TimerGroup (StringRef Name, StringRef Description)
 
 ~TimerGroup ()
 
void setName (StringRef NewName, StringRef NewDescription)
 
void print (raw_ostream &OS)
 Print any started timers in this group and zero them. More...
 

Static Public Member Functions

static void printAll (raw_ostream &OS)
 This static method prints all timers and clears them all out. More...
 
static void ConstructTimerLists ()
 Ensure global timer group lists are initialized. More...
 

Friends

class Timer
 
void PrintStatisticsJSON (raw_ostream &OS)
 Print statistics in JSON format. More...
 

Detailed Description

The TimerGroup class is used to group together related timers into a single report that is printed when the TimerGroup is destroyed.

It is illegal to destroy a TimerGroup object before all of the Timers in it are gone. A TimerGroup can be specified for a newly created timer in its constructor.

Definition at line 170 of file Timer.h.

Constructor & Destructor Documentation

TimerGroup::TimerGroup ( StringRef  Name,
StringRef  Description 
)
explicit

Definition at line 233 of file Timer.cpp.

References L, TimerGroupList, and TimerLock.

TimerGroup::~TimerGroup ( )

Definition at line 245 of file Timer.cpp.

References L, and TimerLock.

Member Function Documentation

void TimerGroup::ConstructTimerLists ( )
static

Ensure global timer group lists are initialized.

This function is mostly used by the Statistic code to influence the construction and destruction order of the global timer lists.

Definition at line 402 of file Timer.cpp.

References NamedGroupedTimers.

void TimerGroup::print ( raw_ostream OS)

Print any started timers in this group and zero them.

Definition at line 354 of file Timer.cpp.

References L, and TimerLock.

void TimerGroup::printAll ( raw_ostream OS)
static

This static method prints all timers and clears them all out.

Definition at line 364 of file Timer.cpp.

References L, TimerGroupList, and TimerLock.

void llvm::TimerGroup::setName ( StringRef  NewName,
StringRef  NewDescription 
)
inline

Definition at line 199 of file Timer.h.

References llvm::StringRef::begin(), and llvm::StringRef::end().

Friends And Related Function Documentation

void PrintStatisticsJSON ( raw_ostream OS)
friend

Print statistics in JSON format.

This does include all global timers (

See Also
Timer, TimerGroup). Note that the timers are cleared after printing and will not be printed in human readable form or in a second call of PrintStatisticsJSON().
friend class Timer
friend

Definition at line 215 of file Timer.h.


The documentation for this class was generated from the following files: