mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 11:42:57 +01:00
Allow disabling of ALL printing overhead when performing timings
llvm-svn: 10948
This commit is contained in:
parent
3c863c8fdf
commit
961cc51cf1
@ -29,6 +29,7 @@ using namespace llvm;
|
||||
//
|
||||
namespace {
|
||||
cl::opt<bool> OnlyPrintMain("only-print-main-ds", cl::ReallyHidden);
|
||||
cl::opt<bool> DontPrintAnything("dont-print-ds", cl::ReallyHidden);
|
||||
Statistic<> MaxGraphSize ("dsnode", "Maximum graph size");
|
||||
Statistic<> NumFoldedNodes ("dsnode", "Number of folded nodes (in final graph)");
|
||||
}
|
||||
@ -272,18 +273,22 @@ static void printCollection(const Collection &C, std::ostream &O,
|
||||
|
||||
// print - Print out the analysis results...
|
||||
void LocalDataStructures::print(std::ostream &O, const Module *M) const {
|
||||
if (DontPrintAnything) return;
|
||||
printCollection(*this, O, M, "ds.");
|
||||
}
|
||||
|
||||
void BUDataStructures::print(std::ostream &O, const Module *M) const {
|
||||
if (DontPrintAnything) return;
|
||||
printCollection(*this, O, M, "bu.");
|
||||
}
|
||||
|
||||
void TDDataStructures::print(std::ostream &O, const Module *M) const {
|
||||
if (DontPrintAnything) return;
|
||||
printCollection(*this, O, M, "td.");
|
||||
}
|
||||
|
||||
void CompleteBUDataStructures::print(std::ostream &O, const Module *M) const {
|
||||
if (DontPrintAnything) return;
|
||||
printCollection(*this, O, M, "cbu.");
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user