diff options
author | Chris Lattner <sabre@nondot.org> | 2006-12-06 18:20:44 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-12-06 18:20:44 +0000 |
commit | cf84504d7a86808117f67264ad5cfab8f5a139bc (patch) | |
tree | c6e673621ce151fe503cc96601279fd9f7f0263e /lib | |
parent | 11fd2f1af713584e3dd3a73aebfb8f845d5df459 (diff) |
merge the Statistic and StatisticBase classes, eliminating virtual methods
and eliminating #includes from the Statistic.h file.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32282 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Support/Statistic.cpp | 15 |
1 files changed, 5 insertions, 10 deletions
diff --git a/lib/Support/Statistic.cpp b/lib/Support/Statistic.cpp index cd51662636..19cfff33aa 100644 --- a/lib/Support/Statistic.cpp +++ b/lib/Support/Statistic.cpp @@ -23,6 +23,7 @@ #include "llvm/ADT/Statistic.h" #include "llvm/Support/CommandLine.h" +#include "llvm/ADT/StringExtras.h" #include <sstream> #include <iostream> #include <algorithm> @@ -31,7 +32,7 @@ using namespace llvm; // GetLibSupportInfoOutputFile - Return a file stream to print our output on... namespace llvm { extern std::ostream *GetLibSupportInfoOutputFile(); } -unsigned StatisticBase::NumStats = 0; +unsigned Statistic::NumStats = 0; // -stats - Command line option to cause transformations to emit stats about // what they did. @@ -61,19 +62,13 @@ struct StatRecord { static std::vector<StatRecord> *AccumStats = 0; -// Out of line virtual dtor, to give the vtable etc a home. -StatisticBase::~StatisticBase() { -} - // Print information when destroyed, iff command line option is specified -void StatisticBase::destroy() const { - if (Enabled && hasSomeData()) { +Statistic::~Statistic() { + if (Enabled && Value != 0) { if (AccumStats == 0) AccumStats = new std::vector<StatRecord>(); - std::ostringstream Out; - printValue(Out); - AccumStats->push_back(StatRecord(Out.str(), Name, Desc)); + AccumStats->push_back(StatRecord(utostr(Value), Name, Desc)); } if (--NumStats == 0 && AccumStats) { |