blob: 06496fae91d4b81021180ea4fca77b8d4113b51f [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===-- Statistic.cpp - Easy way to expose stats information --------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner081ce942007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the 'Statistic' class, which is designed to be an easy
11// way to expose various success metrics from passes. These statistics are
12// printed at the end of a run, when the -stats command line option is enabled
13// on the command line.
14//
15// This is useful for reporting information like the number of instructions
16// simplified, optimized or removed by various transformations, like this:
17//
18// static Statistic NumInstEliminated("GCSE", "Number of instructions killed");
19//
20// Later, in the code: ++NumInstEliminated;
21//
22//===----------------------------------------------------------------------===//
23
24#include "llvm/ADT/Statistic.h"
25#include "llvm/Support/CommandLine.h"
26#include "llvm/Support/ManagedStatic.h"
27#include "llvm/Support/Streams.h"
Owen Andersonb23c1be2009-06-22 23:08:27 +000028#include "llvm/System/Mutex.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000029#include "llvm/ADT/StringExtras.h"
30#include <algorithm>
31#include <ostream>
Anton Korobeynikov357a27d2008-02-20 11:08:44 +000032#include <cstring>
Dan Gohmanf17a25c2007-07-18 16:29:46 +000033using namespace llvm;
34
35// GetLibSupportInfoOutputFile - Return a file stream to print our output on.
36namespace llvm { extern std::ostream *GetLibSupportInfoOutputFile(); }
37
38/// -stats - Command line option to cause transformations to emit stats about
39/// what they did.
40///
41static cl::opt<bool>
42Enabled("stats", cl::desc("Enable statistics output from program"));
43
44
45namespace {
46/// StatisticInfo - This class is used in a ManagedStatic so that it is created
47/// on demand (when the first statistic is bumped) and destroyed only when
48/// llvm_shutdown is called. We print statistics from the destructor.
49class StatisticInfo {
50 std::vector<const Statistic*> Stats;
51public:
52 ~StatisticInfo();
53
54 void addStatistic(const Statistic *S) {
55 Stats.push_back(S);
56 }
57};
58}
59
60static ManagedStatic<StatisticInfo> StatInfo;
Owen Andersonb23c1be2009-06-22 23:08:27 +000061static ManagedStatic<sys::Mutex> StatLock;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000062
63/// RegisterStatistic - The first time a statistic is bumped, this method is
64/// called.
65void Statistic::RegisterStatistic() {
66 // If stats are enabled, inform StatInfo that this statistic should be
67 // printed.
Owen Andersonbe44bed2009-07-07 18:33:04 +000068 sys::ScopedLock Writer(*StatLock);
Owen Andersona81a9e72009-06-23 21:19:38 +000069 if (!Initialized) {
70 if (Enabled)
71 StatInfo->addStatistic(this);
72
73 sys::MemoryFence();
74 // Remember we have been registered.
75 Initialized = true;
76 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +000077}
78
Dan Gohman089efff2008-05-13 00:00:25 +000079namespace {
80
Dan Gohmanf17a25c2007-07-18 16:29:46 +000081struct NameCompare {
82 bool operator()(const Statistic *LHS, const Statistic *RHS) const {
83 int Cmp = std::strcmp(LHS->getName(), RHS->getName());
84 if (Cmp != 0) return Cmp < 0;
85
86 // Secondary key is the description.
87 return std::strcmp(LHS->getDesc(), RHS->getDesc()) < 0;
88 }
89};
90
Dan Gohman089efff2008-05-13 00:00:25 +000091}
92
Dan Gohmanf17a25c2007-07-18 16:29:46 +000093// Print information when destroyed, iff command line option is specified.
94StatisticInfo::~StatisticInfo() {
95 // Statistics not enabled?
96 if (Stats.empty()) return;
97
98 // Get the stream to write to.
99 std::ostream &OutStream = *GetLibSupportInfoOutputFile();
100
101 // Figure out how long the biggest Value and Name fields are.
102 unsigned MaxNameLen = 0, MaxValLen = 0;
Evan Cheng591bfc82008-05-05 18:30:58 +0000103 for (size_t i = 0, e = Stats.size(); i != e; ++i) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000104 MaxValLen = std::max(MaxValLen,
105 (unsigned)utostr(Stats[i]->getValue()).size());
106 MaxNameLen = std::max(MaxNameLen,
107 (unsigned)std::strlen(Stats[i]->getName()));
108 }
109
110 // Sort the fields by name.
111 std::stable_sort(Stats.begin(), Stats.end(), NameCompare());
112
113 // Print out the statistics header...
114 OutStream << "===" << std::string(73, '-') << "===\n"
115 << " ... Statistics Collected ...\n"
116 << "===" << std::string(73, '-') << "===\n\n";
117
118 // Print all of the statistics.
Evan Cheng591bfc82008-05-05 18:30:58 +0000119 for (size_t i = 0, e = Stats.size(); i != e; ++i) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000120 std::string CountStr = utostr(Stats[i]->getValue());
121 OutStream << std::string(MaxValLen-CountStr.size(), ' ')
122 << CountStr << " " << Stats[i]->getName()
123 << std::string(MaxNameLen-std::strlen(Stats[i]->getName()), ' ')
124 << " - " << Stats[i]->getDesc() << "\n";
125
126 }
127
128 OutStream << std::endl; // Flush the output stream...
129
130 if (&OutStream != cerr.stream() && &OutStream != cout.stream())
131 delete &OutStream; // Close the file.
132}