blob: 5c7cf63e50ce83ef8d0342c2c5c7bb06d26b5c2f [file] [log] [blame]
Chris Lattner96ef1b92002-10-01 22:35:45 +00001//===-- Statistic.cpp - Easy way to expose stats information --------------===//
Chris Lattnerf3f4fd52002-05-10 15:36:46 +00002//
3// This file implements the 'Statistic' class, which is designed to be an easy
4// way to expose various success metrics from passes. These statistics are
5// printed at the end of a run, when the -stats command line option is enabled
6// on the command line.
7//
8// This is useful for reporting information like the number of instructions
9// simplified, optimized or removed by various transformations, like this:
10//
11// static Statistic<> NumInstEliminated("GCSE - Number of instructions killed");
12//
13// Later, in the code: ++NumInstEliminated;
14//
15//===----------------------------------------------------------------------===//
16
Chris Lattner96ef1b92002-10-01 22:35:45 +000017#include "Support/Statistic.h"
Chris Lattnerf3f4fd52002-05-10 15:36:46 +000018#include "Support/CommandLine.h"
Chris Lattner96ef1b92002-10-01 22:35:45 +000019#include <sstream>
Chris Lattner038e05a2003-08-01 22:15:41 +000020#include <iostream>
Chris Lattnerf3f4fd52002-05-10 15:36:46 +000021
Chris Lattnerf205fec2003-05-09 20:05:44 +000022// GetLibSupportInfoOutputFile - Return a file stream to print our output on...
23std::ostream *GetLibSupportInfoOutputFile();
24
Chris Lattner96ef1b92002-10-01 22:35:45 +000025unsigned StatisticBase::NumStats = 0;
26
Chris Lattner5ff62e92002-07-22 02:10:13 +000027// -stats - Command line option to cause transformations to emit stats about
28// what they did.
29//
30static cl::opt<bool>
31Enabled("stats", cl::desc("Enable statistics output from program"));
32
Chris Lattner96ef1b92002-10-01 22:35:45 +000033struct StatRecord {
34 std::string Value;
35 const char *Name, *Desc;
36
37 StatRecord(const std::string V, const char *N, const char *D)
38 : Value(V), Name(N), Desc(D) {}
39
40 bool operator<(const StatRecord &SR) const {
41 return std::strcmp(Name, SR.Name) < 0;
42 }
43
Chris Lattnerf205fec2003-05-09 20:05:44 +000044 void print(unsigned ValFieldSize, unsigned NameFieldSize,
45 std::ostream &OS) {
46 OS << std::string(ValFieldSize-Value.length(), ' ')
47 << Value << " " << Name
48 << std::string(NameFieldSize-std::strlen(Name), ' ')
49 << " - " << Desc << "\n";
Chris Lattner96ef1b92002-10-01 22:35:45 +000050 }
51};
52
53static std::vector<StatRecord> *AccumStats = 0;
54
Chris Lattnerf3f4fd52002-05-10 15:36:46 +000055// Print information when destroyed, iff command line option is specified
56void StatisticBase::destroy() const {
57 if (Enabled && hasSomeData()) {
Chris Lattner96ef1b92002-10-01 22:35:45 +000058 if (AccumStats == 0)
59 AccumStats = new std::vector<StatRecord>();
60
61 std::ostringstream Out;
62 printValue(Out);
63 AccumStats->push_back(StatRecord(Out.str(), Name, Desc));
64 }
65
66 if (--NumStats == 0 && AccumStats) {
Chris Lattnerf205fec2003-05-09 20:05:44 +000067 std::ostream *OutStream = GetLibSupportInfoOutputFile();
68
Chris Lattner96ef1b92002-10-01 22:35:45 +000069 // Figure out how long the biggest Value and Name fields are...
70 unsigned MaxNameLen = 0, MaxValLen = 0;
71 for (unsigned i = 0, e = AccumStats->size(); i != e; ++i) {
Anand Shuklac1d4d792002-10-04 23:56:18 +000072 MaxValLen = std::max(MaxValLen,
73 (unsigned)(*AccumStats)[i].Value.length());
74 MaxNameLen = std::max(MaxNameLen,
75 (unsigned)std::strlen((*AccumStats)[i].Name));
Chris Lattner96ef1b92002-10-01 22:35:45 +000076 }
77
78 // Sort the fields...
79 std::stable_sort(AccumStats->begin(), AccumStats->end());
80
81 // Print out the statistics header...
Chris Lattnerf205fec2003-05-09 20:05:44 +000082 *OutStream << "===" << std::string(73, '-') << "===\n"
83 << " ... Statistics Collected ...\n"
84 << "===" << std::string(73, '-') << "===\n\n";
Chris Lattner96ef1b92002-10-01 22:35:45 +000085
86 // Print all of the statistics accumulated...
87 for (unsigned i = 0, e = AccumStats->size(); i != e; ++i)
Chris Lattnerf205fec2003-05-09 20:05:44 +000088 (*AccumStats)[i].print(MaxValLen, MaxNameLen, *OutStream);
Chris Lattner96ef1b92002-10-01 22:35:45 +000089
Chris Lattnerf205fec2003-05-09 20:05:44 +000090 *OutStream << std::endl; // Flush the output stream...
Chris Lattner96ef1b92002-10-01 22:35:45 +000091
92 // Free all accumulated statistics...
93 delete AccumStats;
94 AccumStats = 0;
Chris Lattnerf205fec2003-05-09 20:05:44 +000095 if (OutStream != &std::cerr && OutStream != &std::cout)
96 delete OutStream; // Close the file...
Chris Lattnerf3f4fd52002-05-10 15:36:46 +000097 }
98}