2002-10-02 00:35:45 +02:00
|
|
|
//===-- Statistic.cpp - Easy way to expose stats information --------------===//
|
2005-04-22 00:55:34 +02:00
|
|
|
//
|
2003-10-20 21:43:21 +02:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 21:36:04 +01:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-04-22 00:55:34 +02:00
|
|
|
//
|
2003-10-20 21:43:21 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
2002-05-10 17:36:46 +02:00
|
|
|
//
|
|
|
|
// This file implements the 'Statistic' class, which is designed to be an easy
|
|
|
|
// way to expose various success metrics from passes. These statistics are
|
|
|
|
// printed at the end of a run, when the -stats command line option is enabled
|
|
|
|
// on the command line.
|
|
|
|
//
|
|
|
|
// This is useful for reporting information like the number of instructions
|
|
|
|
// simplified, optimized or removed by various transformations, like this:
|
|
|
|
//
|
2006-12-08 21:00:42 +01:00
|
|
|
// static Statistic NumInstEliminated("GCSE", "Number of instructions killed");
|
2002-05-10 17:36:46 +02:00
|
|
|
//
|
|
|
|
// Later, in the code: ++NumInstEliminated;
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2004-09-02 00:55:40 +02:00
|
|
|
#include "llvm/ADT/Statistic.h"
|
|
|
|
#include "llvm/Support/CommandLine.h"
|
2010-01-05 02:28:47 +01:00
|
|
|
#include "llvm/Support/Debug.h"
|
2006-12-08 21:00:42 +01:00
|
|
|
#include "llvm/Support/ManagedStatic.h"
|
2009-08-23 10:43:55 +02:00
|
|
|
#include "llvm/Support/raw_ostream.h"
|
2009-06-23 01:08:27 +02:00
|
|
|
#include "llvm/System/Mutex.h"
|
2006-12-06 19:20:44 +01:00
|
|
|
#include "llvm/ADT/StringExtras.h"
|
2003-08-13 23:32:37 +02:00
|
|
|
#include <algorithm>
|
2008-02-20 12:08:44 +01:00
|
|
|
#include <cstring>
|
2003-12-14 22:27:33 +01:00
|
|
|
using namespace llvm;
|
2003-11-11 23:41:34 +01:00
|
|
|
|
2006-12-08 21:00:42 +01:00
|
|
|
// GetLibSupportInfoOutputFile - Return a file stream to print our output on.
|
2009-08-23 10:43:55 +02:00
|
|
|
namespace llvm { extern raw_ostream *GetLibSupportInfoOutputFile(); }
|
2003-05-09 22:05:44 +02:00
|
|
|
|
2006-12-08 21:00:42 +01:00
|
|
|
/// -stats - Command line option to cause transformations to emit stats about
|
|
|
|
/// what they did.
|
|
|
|
///
|
2002-07-22 04:10:13 +02:00
|
|
|
static cl::opt<bool>
|
|
|
|
Enabled("stats", cl::desc("Enable statistics output from program"));
|
|
|
|
|
2002-10-02 00:35:45 +02:00
|
|
|
|
2006-12-08 21:00:42 +01:00
|
|
|
namespace {
|
|
|
|
/// StatisticInfo - This class is used in a ManagedStatic so that it is created
|
|
|
|
/// on demand (when the first statistic is bumped) and destroyed only when
|
|
|
|
/// llvm_shutdown is called. We print statistics from the destructor.
|
|
|
|
class StatisticInfo {
|
2006-12-20 00:17:40 +01:00
|
|
|
std::vector<const Statistic*> Stats;
|
2006-12-08 21:00:42 +01:00
|
|
|
public:
|
|
|
|
~StatisticInfo();
|
|
|
|
|
2006-12-20 00:17:40 +01:00
|
|
|
void addStatistic(const Statistic *S) {
|
2006-12-08 21:00:42 +01:00
|
|
|
Stats.push_back(S);
|
2002-10-02 00:35:45 +02:00
|
|
|
}
|
|
|
|
};
|
2006-12-08 21:00:42 +01:00
|
|
|
}
|
2002-10-02 00:35:45 +02:00
|
|
|
|
2006-12-08 21:00:42 +01:00
|
|
|
static ManagedStatic<StatisticInfo> StatInfo;
|
2009-09-27 13:08:03 +02:00
|
|
|
static ManagedStatic<sys::SmartMutex<true> > StatLock;
|
2002-10-02 00:35:45 +02:00
|
|
|
|
2006-12-08 21:00:42 +01:00
|
|
|
/// RegisterStatistic - The first time a statistic is bumped, this method is
|
|
|
|
/// called.
|
2006-12-20 00:17:40 +01:00
|
|
|
void Statistic::RegisterStatistic() {
|
2006-12-08 21:00:42 +01:00
|
|
|
// If stats are enabled, inform StatInfo that this statistic should be
|
|
|
|
// printed.
|
2009-09-27 13:08:03 +02:00
|
|
|
sys::SmartScopedLock<true> Writer(*StatLock);
|
2009-06-23 23:19:38 +02:00
|
|
|
if (!Initialized) {
|
|
|
|
if (Enabled)
|
|
|
|
StatInfo->addStatistic(this);
|
|
|
|
|
|
|
|
sys::MemoryFence();
|
|
|
|
// Remember we have been registered.
|
|
|
|
Initialized = true;
|
|
|
|
}
|
2006-12-08 21:00:42 +01:00
|
|
|
}
|
2002-10-02 00:35:45 +02:00
|
|
|
|
2008-05-13 02:00:25 +02:00
|
|
|
namespace {
|
|
|
|
|
2006-12-08 21:00:42 +01:00
|
|
|
struct NameCompare {
|
2006-12-20 00:17:40 +01:00
|
|
|
bool operator()(const Statistic *LHS, const Statistic *RHS) const {
|
2006-12-08 21:00:42 +01:00
|
|
|
int Cmp = std::strcmp(LHS->getName(), RHS->getName());
|
|
|
|
if (Cmp != 0) return Cmp < 0;
|
|
|
|
|
|
|
|
// Secondary key is the description.
|
|
|
|
return std::strcmp(LHS->getDesc(), RHS->getDesc()) < 0;
|
|
|
|
}
|
|
|
|
};
|
2002-10-02 00:35:45 +02:00
|
|
|
|
2008-05-13 02:00:25 +02:00
|
|
|
}
|
|
|
|
|
2006-12-08 21:00:42 +01:00
|
|
|
// Print information when destroyed, iff command line option is specified.
|
|
|
|
StatisticInfo::~StatisticInfo() {
|
|
|
|
// Statistics not enabled?
|
|
|
|
if (Stats.empty()) return;
|
|
|
|
|
|
|
|
// Get the stream to write to.
|
2009-08-23 10:43:55 +02:00
|
|
|
raw_ostream &OutStream = *GetLibSupportInfoOutputFile();
|
2006-12-08 21:00:42 +01:00
|
|
|
|
|
|
|
// Figure out how long the biggest Value and Name fields are.
|
|
|
|
unsigned MaxNameLen = 0, MaxValLen = 0;
|
2008-05-05 20:30:58 +02:00
|
|
|
for (size_t i = 0, e = Stats.size(); i != e; ++i) {
|
2006-12-08 21:00:42 +01:00
|
|
|
MaxValLen = std::max(MaxValLen,
|
|
|
|
(unsigned)utostr(Stats[i]->getValue()).size());
|
|
|
|
MaxNameLen = std::max(MaxNameLen,
|
|
|
|
(unsigned)std::strlen(Stats[i]->getName()));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Sort the fields by name.
|
|
|
|
std::stable_sort(Stats.begin(), Stats.end(), NameCompare());
|
|
|
|
|
|
|
|
// Print out the statistics header...
|
|
|
|
OutStream << "===" << std::string(73, '-') << "===\n"
|
|
|
|
<< " ... Statistics Collected ...\n"
|
|
|
|
<< "===" << std::string(73, '-') << "===\n\n";
|
|
|
|
|
|
|
|
// Print all of the statistics.
|
2008-05-05 20:30:58 +02:00
|
|
|
for (size_t i = 0, e = Stats.size(); i != e; ++i) {
|
2006-12-08 21:00:42 +01:00
|
|
|
std::string CountStr = utostr(Stats[i]->getValue());
|
|
|
|
OutStream << std::string(MaxValLen-CountStr.size(), ' ')
|
|
|
|
<< CountStr << " " << Stats[i]->getName()
|
|
|
|
<< std::string(MaxNameLen-std::strlen(Stats[i]->getName()), ' ')
|
|
|
|
<< " - " << Stats[i]->getDesc() << "\n";
|
|
|
|
|
2002-05-10 17:36:46 +02:00
|
|
|
}
|
2006-12-08 21:00:42 +01:00
|
|
|
|
2009-08-23 10:43:55 +02:00
|
|
|
OutStream << '\n'; // Flush the output stream...
|
|
|
|
OutStream.flush();
|
2006-12-08 21:00:42 +01:00
|
|
|
|
2010-01-05 02:28:47 +01:00
|
|
|
if (&OutStream != &outs() && &OutStream != &errs() && &OutStream != &dbgs())
|
2006-12-08 21:00:42 +01:00
|
|
|
delete &OutStream; // Close the file.
|
2002-05-10 17:36:46 +02:00
|
|
|
}
|