2002-10-01 22:35:45 +00:00
|
|
|
//===-- Statistic.cpp - Easy way to expose stats information --------------===//
|
2002-05-10 15:36:46 +00: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:
|
|
|
|
//
|
|
|
|
// static Statistic<> NumInstEliminated("GCSE - Number of instructions killed");
|
|
|
|
//
|
|
|
|
// Later, in the code: ++NumInstEliminated;
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2002-10-01 22:35:45 +00:00
|
|
|
#include "Support/Statistic.h"
|
2002-05-10 15:36:46 +00:00
|
|
|
#include "Support/CommandLine.h"
|
|
|
|
#include <iostream>
|
2002-10-01 22:35:45 +00:00
|
|
|
#include <sstream>
|
2002-10-27 19:08:03 +00:00
|
|
|
#include <algorithm>
|
2002-05-10 15:36:46 +00:00
|
|
|
|
2002-05-22 17:06:20 +00:00
|
|
|
bool DebugFlag; // DebugFlag - Exported boolean set by the -debug option
|
|
|
|
|
2002-10-01 22:35:45 +00:00
|
|
|
unsigned StatisticBase::NumStats = 0;
|
|
|
|
|
2002-07-22 02:10:13 +00:00
|
|
|
// -stats - Command line option to cause transformations to emit stats about
|
|
|
|
// what they did.
|
|
|
|
//
|
|
|
|
static cl::opt<bool>
|
|
|
|
Enabled("stats", cl::desc("Enable statistics output from program"));
|
|
|
|
|
|
|
|
// -debug - Command line option to enable the DEBUG statements in the passes.
|
|
|
|
static cl::opt<bool, true>
|
|
|
|
Debug("debug", cl::desc("Enable debug output"), cl::Hidden,
|
|
|
|
cl::location(DebugFlag));
|
2002-05-10 15:36:46 +00:00
|
|
|
|
2002-10-01 22:35:45 +00:00
|
|
|
struct StatRecord {
|
|
|
|
std::string Value;
|
|
|
|
const char *Name, *Desc;
|
|
|
|
|
|
|
|
StatRecord(const std::string V, const char *N, const char *D)
|
|
|
|
: Value(V), Name(N), Desc(D) {}
|
|
|
|
|
|
|
|
bool operator<(const StatRecord &SR) const {
|
|
|
|
return std::strcmp(Name, SR.Name) < 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void print(unsigned ValFieldSize, unsigned NameFieldSize) {
|
|
|
|
std::cerr << std::string(ValFieldSize-Value.length(), ' ')
|
|
|
|
<< Value << " " << Name
|
|
|
|
<< std::string(NameFieldSize-std::strlen(Name), ' ')
|
|
|
|
<< " - " << Desc << "\n";
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
static std::vector<StatRecord> *AccumStats = 0;
|
|
|
|
|
2002-05-10 15:36:46 +00:00
|
|
|
// Print information when destroyed, iff command line option is specified
|
|
|
|
void StatisticBase::destroy() const {
|
|
|
|
if (Enabled && hasSomeData()) {
|
2002-10-01 22:35:45 +00:00
|
|
|
if (AccumStats == 0)
|
|
|
|
AccumStats = new std::vector<StatRecord>();
|
|
|
|
|
|
|
|
std::ostringstream Out;
|
|
|
|
printValue(Out);
|
|
|
|
AccumStats->push_back(StatRecord(Out.str(), Name, Desc));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (--NumStats == 0 && AccumStats) {
|
|
|
|
// Figure out how long the biggest Value and Name fields are...
|
|
|
|
unsigned MaxNameLen = 0, MaxValLen = 0;
|
|
|
|
for (unsigned i = 0, e = AccumStats->size(); i != e; ++i) {
|
2002-10-04 23:56:18 +00:00
|
|
|
MaxValLen = std::max(MaxValLen,
|
|
|
|
(unsigned)(*AccumStats)[i].Value.length());
|
|
|
|
MaxNameLen = std::max(MaxNameLen,
|
|
|
|
(unsigned)std::strlen((*AccumStats)[i].Name));
|
2002-10-01 22:35:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Sort the fields...
|
|
|
|
std::stable_sort(AccumStats->begin(), AccumStats->end());
|
|
|
|
|
|
|
|
// Print out the statistics header...
|
|
|
|
std::cerr << "===" << std::string(73, '-') << "===\n"
|
|
|
|
<< " ... Statistics Collected ...\n"
|
|
|
|
<< "===" << std::string(73, '-') << "===\n\n";
|
|
|
|
|
|
|
|
// Print all of the statistics accumulated...
|
|
|
|
for (unsigned i = 0, e = AccumStats->size(); i != e; ++i)
|
|
|
|
(*AccumStats)[i].print(MaxValLen, MaxNameLen);
|
|
|
|
|
|
|
|
std::cerr << std::endl; // Flush the output stream...
|
|
|
|
|
|
|
|
// Free all accumulated statistics...
|
|
|
|
delete AccumStats;
|
|
|
|
AccumStats = 0;
|
2002-05-10 15:36:46 +00:00
|
|
|
}
|
|
|
|
}
|