Chris Lattner | 96ef1b9 | 2002-10-01 22:35:45 +0000 | [diff] [blame] | 1 | //===-- Statistic.cpp - Easy way to expose stats information --------------===// |
Chris Lattner | f3f4fd5 | 2002-05-10 15:36:46 +0000 | [diff] [blame] | 2 | // |
| 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 Lattner | 96ef1b9 | 2002-10-01 22:35:45 +0000 | [diff] [blame] | 17 | #include "Support/Statistic.h" |
Chris Lattner | f3f4fd5 | 2002-05-10 15:36:46 +0000 | [diff] [blame] | 18 | #include "Support/CommandLine.h" |
| 19 | #include <iostream> |
Chris Lattner | 96ef1b9 | 2002-10-01 22:35:45 +0000 | [diff] [blame] | 20 | #include <sstream> |
Chris Lattner | 9550dc2 | 2002-10-27 19:08:03 +0000 | [diff] [blame] | 21 | #include <algorithm> |
Chris Lattner | f3f4fd5 | 2002-05-10 15:36:46 +0000 | [diff] [blame] | 22 | |
Chris Lattner | f205fec | 2003-05-09 20:05:44 +0000 | [diff] [blame^] | 23 | // GetLibSupportInfoOutputFile - Return a file stream to print our output on... |
| 24 | std::ostream *GetLibSupportInfoOutputFile(); |
| 25 | |
Chris Lattner | 4435ac0 | 2002-05-22 17:06:20 +0000 | [diff] [blame] | 26 | bool DebugFlag; // DebugFlag - Exported boolean set by the -debug option |
| 27 | |
Chris Lattner | 96ef1b9 | 2002-10-01 22:35:45 +0000 | [diff] [blame] | 28 | unsigned StatisticBase::NumStats = 0; |
| 29 | |
Chris Lattner | 5ff62e9 | 2002-07-22 02:10:13 +0000 | [diff] [blame] | 30 | // -stats - Command line option to cause transformations to emit stats about |
| 31 | // what they did. |
| 32 | // |
| 33 | static cl::opt<bool> |
| 34 | Enabled("stats", cl::desc("Enable statistics output from program")); |
| 35 | |
Chris Lattner | 0ad4c00 | 2003-02-09 21:13:57 +0000 | [diff] [blame] | 36 | #ifndef NDEBUG |
Chris Lattner | 5ff62e9 | 2002-07-22 02:10:13 +0000 | [diff] [blame] | 37 | // -debug - Command line option to enable the DEBUG statements in the passes. |
Chris Lattner | 0ad4c00 | 2003-02-09 21:13:57 +0000 | [diff] [blame] | 38 | // This flag may only be enabled in debug builds. |
Chris Lattner | 5ff62e9 | 2002-07-22 02:10:13 +0000 | [diff] [blame] | 39 | static cl::opt<bool, true> |
| 40 | Debug("debug", cl::desc("Enable debug output"), cl::Hidden, |
| 41 | cl::location(DebugFlag)); |
Chris Lattner | 0ad4c00 | 2003-02-09 21:13:57 +0000 | [diff] [blame] | 42 | #endif |
Chris Lattner | f3f4fd5 | 2002-05-10 15:36:46 +0000 | [diff] [blame] | 43 | |
Chris Lattner | 96ef1b9 | 2002-10-01 22:35:45 +0000 | [diff] [blame] | 44 | struct StatRecord { |
| 45 | std::string Value; |
| 46 | const char *Name, *Desc; |
| 47 | |
| 48 | StatRecord(const std::string V, const char *N, const char *D) |
| 49 | : Value(V), Name(N), Desc(D) {} |
| 50 | |
| 51 | bool operator<(const StatRecord &SR) const { |
| 52 | return std::strcmp(Name, SR.Name) < 0; |
| 53 | } |
| 54 | |
Chris Lattner | f205fec | 2003-05-09 20:05:44 +0000 | [diff] [blame^] | 55 | void print(unsigned ValFieldSize, unsigned NameFieldSize, |
| 56 | std::ostream &OS) { |
| 57 | OS << std::string(ValFieldSize-Value.length(), ' ') |
| 58 | << Value << " " << Name |
| 59 | << std::string(NameFieldSize-std::strlen(Name), ' ') |
| 60 | << " - " << Desc << "\n"; |
Chris Lattner | 96ef1b9 | 2002-10-01 22:35:45 +0000 | [diff] [blame] | 61 | } |
| 62 | }; |
| 63 | |
| 64 | static std::vector<StatRecord> *AccumStats = 0; |
| 65 | |
Chris Lattner | f3f4fd5 | 2002-05-10 15:36:46 +0000 | [diff] [blame] | 66 | // Print information when destroyed, iff command line option is specified |
| 67 | void StatisticBase::destroy() const { |
| 68 | if (Enabled && hasSomeData()) { |
Chris Lattner | 96ef1b9 | 2002-10-01 22:35:45 +0000 | [diff] [blame] | 69 | if (AccumStats == 0) |
| 70 | AccumStats = new std::vector<StatRecord>(); |
| 71 | |
| 72 | std::ostringstream Out; |
| 73 | printValue(Out); |
| 74 | AccumStats->push_back(StatRecord(Out.str(), Name, Desc)); |
| 75 | } |
| 76 | |
| 77 | if (--NumStats == 0 && AccumStats) { |
Chris Lattner | f205fec | 2003-05-09 20:05:44 +0000 | [diff] [blame^] | 78 | std::ostream *OutStream = GetLibSupportInfoOutputFile(); |
| 79 | |
Chris Lattner | 96ef1b9 | 2002-10-01 22:35:45 +0000 | [diff] [blame] | 80 | // Figure out how long the biggest Value and Name fields are... |
| 81 | unsigned MaxNameLen = 0, MaxValLen = 0; |
| 82 | for (unsigned i = 0, e = AccumStats->size(); i != e; ++i) { |
Anand Shukla | c1d4d79 | 2002-10-04 23:56:18 +0000 | [diff] [blame] | 83 | MaxValLen = std::max(MaxValLen, |
| 84 | (unsigned)(*AccumStats)[i].Value.length()); |
| 85 | MaxNameLen = std::max(MaxNameLen, |
| 86 | (unsigned)std::strlen((*AccumStats)[i].Name)); |
Chris Lattner | 96ef1b9 | 2002-10-01 22:35:45 +0000 | [diff] [blame] | 87 | } |
| 88 | |
| 89 | // Sort the fields... |
| 90 | std::stable_sort(AccumStats->begin(), AccumStats->end()); |
| 91 | |
| 92 | // Print out the statistics header... |
Chris Lattner | f205fec | 2003-05-09 20:05:44 +0000 | [diff] [blame^] | 93 | *OutStream << "===" << std::string(73, '-') << "===\n" |
| 94 | << " ... Statistics Collected ...\n" |
| 95 | << "===" << std::string(73, '-') << "===\n\n"; |
Chris Lattner | 96ef1b9 | 2002-10-01 22:35:45 +0000 | [diff] [blame] | 96 | |
| 97 | // Print all of the statistics accumulated... |
| 98 | for (unsigned i = 0, e = AccumStats->size(); i != e; ++i) |
Chris Lattner | f205fec | 2003-05-09 20:05:44 +0000 | [diff] [blame^] | 99 | (*AccumStats)[i].print(MaxValLen, MaxNameLen, *OutStream); |
Chris Lattner | 96ef1b9 | 2002-10-01 22:35:45 +0000 | [diff] [blame] | 100 | |
Chris Lattner | f205fec | 2003-05-09 20:05:44 +0000 | [diff] [blame^] | 101 | *OutStream << std::endl; // Flush the output stream... |
Chris Lattner | 96ef1b9 | 2002-10-01 22:35:45 +0000 | [diff] [blame] | 102 | |
| 103 | // Free all accumulated statistics... |
| 104 | delete AccumStats; |
| 105 | AccumStats = 0; |
Chris Lattner | f205fec | 2003-05-09 20:05:44 +0000 | [diff] [blame^] | 106 | if (OutStream != &std::cerr && OutStream != &std::cout) |
| 107 | delete OutStream; // Close the file... |
Chris Lattner | f3f4fd5 | 2002-05-10 15:36:46 +0000 | [diff] [blame] | 108 | } |
| 109 | } |