diff options
author | Chris Lattner <sabre@nondot.org> | 2002-10-01 22:38:41 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-10-01 22:38:41 +0000 |
commit | bf3a099a624f442aa80e37499c9162479c8250d2 (patch) | |
tree | 29ab73d0cc448ab3aa28ddb2ddc4b2926e52d506 /llvm/lib/Transforms/Utils | |
parent | 3cf3782bc032224ebf60ac5bc1d0e571bffda409 (diff) | |
download | bcm5719-llvm-bf3a099a624f442aa80e37499c9162479c8250d2.tar.gz bcm5719-llvm-bf3a099a624f442aa80e37499c9162479c8250d2.zip |
Updates to work with recent Statistic's changes:
* Renamed StatisticReporter.h/cpp to Statistic.h/cpp
* Broke constructor to take two const char * arguments instead of one, so
that indendation can be taken care of automatically.
* Sort the list by pass name when printing
* Make sure to print all statistics as a group, instead of randomly when
the statistics dtors are called.
* Updated ProgrammersManual with new semantics.
llvm-svn: 4002
Diffstat (limited to 'llvm/lib/Transforms/Utils')
-rw-r--r-- | llvm/lib/Transforms/Utils/BreakCriticalEdges.cpp | 4 | ||||
-rw-r--r-- | llvm/lib/Transforms/Utils/PromoteMemoryToRegister.cpp | 7 |
2 files changed, 5 insertions, 6 deletions
diff --git a/llvm/lib/Transforms/Utils/BreakCriticalEdges.cpp b/llvm/lib/Transforms/Utils/BreakCriticalEdges.cpp index 3927a81802b..fa33fc7397d 100644 --- a/llvm/lib/Transforms/Utils/BreakCriticalEdges.cpp +++ b/llvm/lib/Transforms/Utils/BreakCriticalEdges.cpp @@ -14,10 +14,10 @@ #include "llvm/iTerminators.h" #include "llvm/iPHINode.h" #include "llvm/Support/CFG.h" -#include "Support/StatisticReporter.h" +#include "Support/Statistic.h" namespace { - Statistic<> NumBroken("break-crit-edges\t- Number of blocks inserted"); + Statistic<> NumBroken("break-crit-edges", "Number of blocks inserted"); struct BreakCriticalEdges : public FunctionPass { virtual bool runOnFunction(Function &F); diff --git a/llvm/lib/Transforms/Utils/PromoteMemoryToRegister.cpp b/llvm/lib/Transforms/Utils/PromoteMemoryToRegister.cpp index 70c794e8166..a526694c300 100644 --- a/llvm/lib/Transforms/Utils/PromoteMemoryToRegister.cpp +++ b/llvm/lib/Transforms/Utils/PromoteMemoryToRegister.cpp @@ -23,18 +23,17 @@ #include "llvm/iPHINode.h" #include "llvm/iTerminators.h" #include "llvm/Function.h" -#include "llvm/BasicBlock.h" #include "llvm/Constant.h" #include "llvm/Type.h" -#include "Support/StatisticReporter.h" - -static Statistic<> NumPromoted("mem2reg\t\t- Number of alloca's promoted"); +#include "Support/Statistic.h" using std::vector; using std::map; using std::set; namespace { + Statistic<> NumPromoted("mem2reg", "Number of alloca's promoted"); + struct PromotePass : public FunctionPass { vector<AllocaInst*> Allocas; // the alloca instruction.. map<Instruction*, unsigned> AllocaLookup; // reverse mapping of above |