2002-10-01 19:36:54 +00:00
|
|
|
//===-- Timer.cpp - Interval Timing Support -------------------------------===//
|
2005-04-21 22:55:34 +00:00
|
|
|
//
|
2003-10-20 19:43:21 +00:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 20:36:04 +00:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-04-21 22:55:34 +00:00
|
|
|
//
|
2003-10-20 19:43:21 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2002-10-01 19:36:54 +00:00
|
|
|
//
|
|
|
|
// Interval Timing implementation.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2004-09-01 22:55:40 +00:00
|
|
|
#include "llvm/Support/Timer.h"
|
|
|
|
#include "llvm/Support/CommandLine.h"
|
2010-03-29 21:28:41 +00:00
|
|
|
#include "llvm/Support/Debug.h"
|
2006-10-04 21:52:35 +00:00
|
|
|
#include "llvm/Support/ManagedStatic.h"
|
2009-08-23 08:43:55 +00:00
|
|
|
#include "llvm/Support/raw_ostream.h"
|
|
|
|
#include "llvm/Support/Format.h"
|
2010-03-29 21:28:41 +00:00
|
|
|
#include "llvm/System/Mutex.h"
|
2004-12-20 00:59:04 +00:00
|
|
|
#include "llvm/System/Process.h"
|
2010-03-30 04:03:22 +00:00
|
|
|
#include "llvm/ADT/StringMap.h"
|
2003-10-06 15:02:31 +00:00
|
|
|
#include <map>
|
2003-12-14 21:27:33 +00:00
|
|
|
using namespace llvm;
|
2003-05-09 20:05:44 +00:00
|
|
|
|
2004-06-07 19:34:51 +00:00
|
|
|
// GetLibSupportInfoOutputFile - Return a file stream to print our output on.
|
2009-08-23 08:43:55 +00:00
|
|
|
namespace llvm { extern raw_ostream *GetLibSupportInfoOutputFile(); }
|
2003-11-11 22:41:34 +00:00
|
|
|
|
2003-07-31 19:38:34 +00:00
|
|
|
// getLibSupportInfoOutputFilename - This ugly hack is brought to you courtesy
|
|
|
|
// of constructor/destructor ordering being unspecified by C++. Basically the
|
2006-12-06 17:46:33 +00:00
|
|
|
// problem is that a Statistic object gets destroyed, which ends up calling
|
2003-07-31 19:38:34 +00:00
|
|
|
// 'GetLibSupportInfoOutputFile()' (below), which calls this function.
|
|
|
|
// LibSupportInfoOutputFilename used to be a global variable, but sometimes it
|
2004-12-14 03:55:21 +00:00
|
|
|
// would get destroyed before the Statistic, causing havoc to ensue. We "fix"
|
|
|
|
// this by creating the string the first time it is needed and never destroying
|
|
|
|
// it.
|
2006-10-04 21:52:35 +00:00
|
|
|
static ManagedStatic<std::string> LibSupportInfoOutputFilename;
|
2003-07-31 19:38:34 +00:00
|
|
|
static std::string &getLibSupportInfoOutputFilename() {
|
2004-12-14 03:55:21 +00:00
|
|
|
return *LibSupportInfoOutputFilename;
|
2003-07-31 19:38:34 +00:00
|
|
|
}
|
2002-10-01 19:36:54 +00:00
|
|
|
|
2009-06-23 20:52:29 +00:00
|
|
|
static ManagedStatic<sys::SmartMutex<true> > TimerLock;
|
|
|
|
|
2003-01-30 23:08:50 +00:00
|
|
|
namespace {
|
2008-04-23 23:15:23 +00:00
|
|
|
static cl::opt<bool>
|
2003-01-30 23:08:50 +00:00
|
|
|
TrackSpace("track-memory", cl::desc("Enable -time-passes memory "
|
|
|
|
"tracking (this may be slow)"),
|
|
|
|
cl::Hidden);
|
2003-05-09 20:05:44 +00:00
|
|
|
|
2008-04-23 23:15:23 +00:00
|
|
|
static cl::opt<std::string, true>
|
2003-08-01 22:15:15 +00:00
|
|
|
InfoOutputFilename("info-output-file", cl::value_desc("filename"),
|
2003-05-09 20:05:44 +00:00
|
|
|
cl::desc("File to append -stats and -timer output to"),
|
2003-07-31 19:38:34 +00:00
|
|
|
cl::Hidden, cl::location(getLibSupportInfoOutputFilename()));
|
2003-01-30 23:08:50 +00:00
|
|
|
}
|
|
|
|
|
2010-03-29 21:34:06 +00:00
|
|
|
// GetLibSupportInfoOutputFile - Return a file stream to print our output on.
|
|
|
|
raw_ostream *llvm::GetLibSupportInfoOutputFile() {
|
|
|
|
std::string &LibSupportInfoOutputFilename = getLibSupportInfoOutputFilename();
|
|
|
|
if (LibSupportInfoOutputFilename.empty())
|
|
|
|
return &errs();
|
|
|
|
if (LibSupportInfoOutputFilename == "-")
|
|
|
|
return &outs();
|
|
|
|
|
|
|
|
std::string Error;
|
|
|
|
raw_ostream *Result = new raw_fd_ostream(LibSupportInfoOutputFilename.c_str(),
|
|
|
|
Error, raw_fd_ostream::F_Append);
|
|
|
|
if (Error.empty())
|
|
|
|
return Result;
|
|
|
|
|
|
|
|
errs() << "Error opening info-output-file '"
|
|
|
|
<< LibSupportInfoOutputFilename << " for appending!\n";
|
|
|
|
delete Result;
|
|
|
|
return &errs();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-06-23 16:36:10 +00:00
|
|
|
static TimerGroup *DefaultTimerGroup = 0;
|
2002-10-01 19:36:54 +00:00
|
|
|
static TimerGroup *getDefaultTimerGroup() {
|
2010-03-29 20:35:01 +00:00
|
|
|
TimerGroup *tmp = DefaultTimerGroup;
|
2009-06-23 17:33:37 +00:00
|
|
|
sys::MemoryFence();
|
2010-03-29 20:35:01 +00:00
|
|
|
if (tmp) return tmp;
|
|
|
|
|
|
|
|
llvm_acquire_global_lock();
|
|
|
|
tmp = DefaultTimerGroup;
|
2009-06-23 17:33:37 +00:00
|
|
|
if (!tmp) {
|
2010-03-29 20:35:01 +00:00
|
|
|
tmp = new TimerGroup("Miscellaneous Ungrouped Timers");
|
|
|
|
sys::MemoryFence();
|
|
|
|
DefaultTimerGroup = tmp;
|
2009-06-23 17:33:37 +00:00
|
|
|
}
|
2010-03-29 20:35:01 +00:00
|
|
|
llvm_release_global_lock();
|
2009-11-07 06:33:12 +00:00
|
|
|
|
2009-06-23 17:33:37 +00:00
|
|
|
return tmp;
|
2002-10-01 19:36:54 +00:00
|
|
|
}
|
|
|
|
|
2010-03-29 20:35:01 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Timer Implementation
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2010-03-30 04:03:22 +00:00
|
|
|
void Timer::init(const std::string &N) {
|
|
|
|
assert(TG == 0 && "Timer already initialized");
|
|
|
|
Name = N;
|
|
|
|
Started = false;
|
|
|
|
TG = getDefaultTimerGroup();
|
2002-10-01 19:36:54 +00:00
|
|
|
TG->addTimer();
|
|
|
|
}
|
|
|
|
|
2010-03-30 04:03:22 +00:00
|
|
|
void Timer::init(const std::string &N, TimerGroup &tg) {
|
|
|
|
assert(TG == 0 && "Timer already initialized");
|
|
|
|
Name = N;
|
|
|
|
Started = false;
|
|
|
|
TG = &tg;
|
2002-10-01 19:36:54 +00:00
|
|
|
TG->addTimer();
|
|
|
|
}
|
|
|
|
|
|
|
|
Timer::~Timer() {
|
2010-03-30 04:03:22 +00:00
|
|
|
if (!TG) return; // Never initialized.
|
2010-03-29 20:35:01 +00:00
|
|
|
|
|
|
|
if (Started) {
|
|
|
|
Started = false;
|
2010-03-30 04:03:22 +00:00
|
|
|
TG->addTimerToPrint(Time, Name);
|
2002-10-01 19:36:54 +00:00
|
|
|
}
|
2010-03-29 20:35:01 +00:00
|
|
|
TG->removeTimer();
|
2002-10-01 19:36:54 +00:00
|
|
|
}
|
|
|
|
|
2005-01-08 20:15:57 +00:00
|
|
|
static inline size_t getMemUsage() {
|
2004-12-27 08:03:04 +00:00
|
|
|
if (TrackSpace)
|
2005-01-08 20:15:57 +00:00
|
|
|
return sys::Process::GetMallocUsage();
|
2004-12-27 08:03:04 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-03-30 04:03:22 +00:00
|
|
|
TimeRecord TimeRecord::getCurrentTime(bool Start) {
|
2004-12-20 00:59:04 +00:00
|
|
|
TimeRecord Result;
|
2004-06-07 19:34:51 +00:00
|
|
|
|
2004-12-20 00:59:04 +00:00
|
|
|
sys::TimeValue now(0,0);
|
|
|
|
sys::TimeValue user(0,0);
|
|
|
|
sys::TimeValue sys(0,0);
|
2004-06-07 19:34:51 +00:00
|
|
|
|
2009-06-23 20:17:22 +00:00
|
|
|
ssize_t MemUsed = 0;
|
2004-12-20 21:44:27 +00:00
|
|
|
if (Start) {
|
2004-12-27 08:03:04 +00:00
|
|
|
MemUsed = getMemUsage();
|
2010-03-29 20:35:01 +00:00
|
|
|
sys::Process::GetTimeUsage(now, user, sys);
|
2004-12-20 21:44:27 +00:00
|
|
|
} else {
|
2010-03-29 20:35:01 +00:00
|
|
|
sys::Process::GetTimeUsage(now, user, sys);
|
2005-03-22 03:20:38 +00:00
|
|
|
MemUsed = getMemUsage();
|
2004-12-20 21:44:27 +00:00
|
|
|
}
|
2002-11-18 21:47:09 +00:00
|
|
|
|
2010-03-30 04:03:22 +00:00
|
|
|
Result.WallTime = now.seconds() + now.microseconds() / 1000000.0;
|
2010-03-29 20:35:01 +00:00
|
|
|
Result.UserTime = user.seconds() + user.microseconds() / 1000000.0;
|
2010-03-30 04:03:22 +00:00
|
|
|
Result.SystemTime = sys.seconds() + sys.microseconds() / 1000000.0;
|
2010-03-29 20:35:01 +00:00
|
|
|
Result.MemUsed = MemUsed;
|
2002-10-01 19:36:54 +00:00
|
|
|
return Result;
|
|
|
|
}
|
|
|
|
|
2006-10-04 21:52:35 +00:00
|
|
|
static ManagedStatic<std::vector<Timer*> > ActiveTimers;
|
2002-11-18 21:47:09 +00:00
|
|
|
|
2002-10-01 19:36:54 +00:00
|
|
|
void Timer::startTimer() {
|
|
|
|
Started = true;
|
2008-06-24 22:07:07 +00:00
|
|
|
ActiveTimers->push_back(this);
|
2010-03-30 04:03:22 +00:00
|
|
|
Time -= TimeRecord::getCurrentTime(true);
|
2002-10-01 19:36:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void Timer::stopTimer() {
|
2010-03-30 04:03:22 +00:00
|
|
|
Time += TimeRecord::getCurrentTime(false);
|
2002-11-18 21:47:09 +00:00
|
|
|
|
2006-10-04 21:52:35 +00:00
|
|
|
if (ActiveTimers->back() == this) {
|
|
|
|
ActiveTimers->pop_back();
|
2002-11-18 21:47:09 +00:00
|
|
|
} else {
|
|
|
|
std::vector<Timer*>::iterator I =
|
2006-10-04 21:52:35 +00:00
|
|
|
std::find(ActiveTimers->begin(), ActiveTimers->end(), this);
|
|
|
|
assert(I != ActiveTimers->end() && "stop but no startTimer?");
|
|
|
|
ActiveTimers->erase(I);
|
2002-11-18 21:47:09 +00:00
|
|
|
}
|
2002-10-01 19:36:54 +00:00
|
|
|
}
|
|
|
|
|
2010-03-29 20:35:01 +00:00
|
|
|
static void printVal(double Val, double Total, raw_ostream &OS) {
|
2010-03-29 20:40:19 +00:00
|
|
|
if (Total < 1e-7) // Avoid dividing by zero.
|
2010-03-29 20:35:01 +00:00
|
|
|
OS << " ----- ";
|
|
|
|
else {
|
|
|
|
OS << " " << format("%7.4f", Val) << " (";
|
|
|
|
OS << format("%5.1f", Val*100/Total) << "%)";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-03-30 04:03:22 +00:00
|
|
|
void TimeRecord::print(const TimeRecord &Total, raw_ostream &OS) const {
|
|
|
|
if (Total.getUserTime())
|
|
|
|
printVal(getUserTime(), Total.getUserTime(), OS);
|
|
|
|
if (Total.getSystemTime())
|
|
|
|
printVal(getSystemTime(), Total.getSystemTime(), OS);
|
2010-03-29 20:35:01 +00:00
|
|
|
if (Total.getProcessTime())
|
|
|
|
printVal(getProcessTime(), Total.getProcessTime(), OS);
|
2010-03-30 04:03:22 +00:00
|
|
|
printVal(getWallTime(), Total.getWallTime(), OS);
|
2010-03-29 20:35:01 +00:00
|
|
|
|
|
|
|
OS << " ";
|
|
|
|
|
2010-03-30 04:03:22 +00:00
|
|
|
if (Total.getMemUsed())
|
|
|
|
OS << format("%9lld", (long long)getMemUsed()) << " ";
|
2010-03-29 20:35:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-10-06 15:02:31 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// NamedRegionTimer Implementation
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2010-03-30 04:03:22 +00:00
|
|
|
typedef StringMap<Timer> Name2TimerMap;
|
|
|
|
typedef StringMap<std::pair<TimerGroup, Name2TimerMap> > Name2PairMap;
|
2008-07-14 18:19:29 +00:00
|
|
|
|
2010-03-30 04:03:22 +00:00
|
|
|
static ManagedStatic<Name2TimerMap> NamedTimers;
|
|
|
|
static ManagedStatic<Name2PairMap> NamedGroupedTimers;
|
2003-10-06 15:02:31 +00:00
|
|
|
|
2006-10-04 21:52:35 +00:00
|
|
|
static Timer &getNamedRegionTimer(const std::string &Name) {
|
2009-07-07 18:33:04 +00:00
|
|
|
sys::SmartScopedLock<true> L(*TimerLock);
|
2010-03-30 04:03:22 +00:00
|
|
|
|
|
|
|
Timer &T = (*NamedTimers)[Name];
|
|
|
|
if (!T.isInitialized())
|
|
|
|
T.init(Name);
|
|
|
|
return T;
|
2003-10-06 15:02:31 +00:00
|
|
|
}
|
|
|
|
|
2008-07-14 18:19:29 +00:00
|
|
|
static Timer &getNamedRegionTimer(const std::string &Name,
|
|
|
|
const std::string &GroupName) {
|
2009-07-07 18:33:04 +00:00
|
|
|
sys::SmartScopedLock<true> L(*TimerLock);
|
2008-07-14 18:19:29 +00:00
|
|
|
|
2010-03-30 04:03:22 +00:00
|
|
|
std::pair<TimerGroup, Name2TimerMap> &GroupEntry =
|
|
|
|
(*NamedGroupedTimers)[GroupName];
|
2008-07-14 18:19:29 +00:00
|
|
|
|
2010-03-30 04:03:22 +00:00
|
|
|
if (GroupEntry.second.empty())
|
|
|
|
GroupEntry.first.setName(GroupName);
|
2008-07-14 18:19:29 +00:00
|
|
|
|
2010-03-30 04:03:22 +00:00
|
|
|
Timer &T = GroupEntry.second[Name];
|
|
|
|
if (!T.isInitialized())
|
|
|
|
T.init(Name);
|
|
|
|
return T;
|
2008-07-14 18:19:29 +00:00
|
|
|
}
|
|
|
|
|
2003-10-06 15:02:31 +00:00
|
|
|
NamedRegionTimer::NamedRegionTimer(const std::string &Name)
|
|
|
|
: TimeRegion(getNamedRegionTimer(Name)) {}
|
|
|
|
|
2008-07-14 18:19:29 +00:00
|
|
|
NamedRegionTimer::NamedRegionTimer(const std::string &Name,
|
|
|
|
const std::string &GroupName)
|
|
|
|
: TimeRegion(getNamedRegionTimer(Name, GroupName)) {}
|
2002-11-18 21:47:09 +00:00
|
|
|
|
2002-10-01 19:36:54 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// TimerGroup Implementation
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
void TimerGroup::removeTimer() {
|
2009-07-07 18:33:04 +00:00
|
|
|
sys::SmartScopedLock<true> L(*TimerLock);
|
2010-03-29 20:35:01 +00:00
|
|
|
if (--NumTimers != 0 || TimersToPrint.empty())
|
|
|
|
return; // Don't print timing report.
|
|
|
|
|
|
|
|
// Sort the timers in descending order by amount of time taken.
|
2010-03-30 04:03:22 +00:00
|
|
|
std::sort(TimersToPrint.begin(), TimersToPrint.end());
|
2002-10-01 19:36:54 +00:00
|
|
|
|
2010-03-29 20:35:01 +00:00
|
|
|
// Figure out how many spaces to indent TimerGroup name.
|
|
|
|
unsigned Padding = (80-Name.length())/2;
|
|
|
|
if (Padding > 80) Padding = 0; // Don't allow "negative" numbers
|
2003-05-09 20:05:44 +00:00
|
|
|
|
2010-03-29 20:35:01 +00:00
|
|
|
raw_ostream *OutStream = GetLibSupportInfoOutputFile();
|
|
|
|
|
2010-03-30 04:03:22 +00:00
|
|
|
TimeRecord Total;
|
|
|
|
for (unsigned i = 0, e = TimersToPrint.size(); i != e; ++i)
|
|
|
|
Total += TimersToPrint[i].first;
|
|
|
|
|
|
|
|
// Print out timing header.
|
|
|
|
*OutStream << "===" << std::string(73, '-') << "===\n";
|
|
|
|
OutStream->indent(Padding) << Name << '\n';
|
|
|
|
*OutStream << "===" << std::string(73, '-') << "===\n";
|
|
|
|
|
|
|
|
// If this is not an collection of ungrouped times, print the total time.
|
|
|
|
// Ungrouped timers don't really make sense to add up. We still print the
|
|
|
|
// TOTAL line to make the percentages make sense.
|
|
|
|
if (this != DefaultTimerGroup) {
|
|
|
|
*OutStream << " Total Execution Time: ";
|
|
|
|
*OutStream << format("%5.4f", Total.getProcessTime()) << " seconds (";
|
|
|
|
*OutStream << format("%5.4f", Total.getWallTime()) << " wall clock)\n";
|
2010-03-30 02:38:19 +00:00
|
|
|
}
|
2010-03-30 04:03:22 +00:00
|
|
|
*OutStream << "\n";
|
|
|
|
|
|
|
|
if (Total.getUserTime())
|
|
|
|
*OutStream << " ---User Time---";
|
|
|
|
if (Total.getSystemTime())
|
|
|
|
*OutStream << " --System Time--";
|
|
|
|
if (Total.getProcessTime())
|
|
|
|
*OutStream << " --User+System--";
|
|
|
|
*OutStream << " ---Wall Time---";
|
|
|
|
if (Total.getMemUsed())
|
|
|
|
*OutStream << " ---Mem---";
|
|
|
|
*OutStream << " --- Name ---\n";
|
|
|
|
|
|
|
|
// Loop through all of the timing data, printing it out.
|
|
|
|
for (unsigned i = 0, e = TimersToPrint.size(); i != e; ++i) {
|
|
|
|
const std::pair<TimeRecord, std::string> &Entry = TimersToPrint[e-i-1];
|
|
|
|
Entry.first.print(Total, *OutStream);
|
|
|
|
*OutStream << Entry.second << '\n';
|
|
|
|
}
|
|
|
|
|
|
|
|
Total.print(Total, *OutStream);
|
|
|
|
*OutStream << "Total\n\n";
|
|
|
|
OutStream->flush();
|
2010-03-29 20:35:01 +00:00
|
|
|
|
|
|
|
TimersToPrint.clear();
|
|
|
|
|
2010-03-29 21:24:52 +00:00
|
|
|
if (OutStream != &errs() && OutStream != &outs())
|
2010-03-29 20:40:19 +00:00
|
|
|
delete OutStream; // Close the file.
|
2002-10-01 19:36:54 +00:00
|
|
|
}
|
2003-11-11 22:41:34 +00:00
|
|
|
|
2009-06-23 20:52:29 +00:00
|
|
|
void TimerGroup::addTimer() {
|
2009-07-07 18:33:04 +00:00
|
|
|
sys::SmartScopedLock<true> L(*TimerLock);
|
2009-06-23 20:52:29 +00:00
|
|
|
++NumTimers;
|
|
|
|
}
|
|
|
|
|
2010-03-30 04:03:22 +00:00
|
|
|
void TimerGroup::addTimerToPrint(const TimeRecord &T, const std::string &Name) {
|
2009-07-07 18:33:04 +00:00
|
|
|
sys::SmartScopedLock<true> L(*TimerLock);
|
2010-03-30 04:03:22 +00:00
|
|
|
TimersToPrint.push_back(std::make_pair(T, Name));
|
2009-06-23 20:52:29 +00:00
|
|
|
}
|
|
|
|
|