diff --git a/llvm/include/llvm/ADT/Statistic.h b/llvm/include/llvm/ADT/Statistic.h index b54d10b9dd33..26aac7bea627 100644 --- a/llvm/include/llvm/ADT/Statistic.h +++ b/llvm/include/llvm/ADT/Statistic.h @@ -51,7 +51,9 @@ public: // Allow use of this class as the value itself. operator unsigned() const { return Value; } - const Statistic &operator=(unsigned Val) { + +#if !defined(NDEBUG) || defined(LLVM_ENABLE_STATS) + const Statistic &operator=(unsigned Val) { Value = Val; return init(); } @@ -106,6 +108,46 @@ public: return init(); } +#else // Statistics are disabled in release builds. + + const Statistic &operator=(unsigned Val) { + return *this; + } + + const Statistic &operator++() { + return *this; + } + + unsigned operator++(int) { + return 0; + } + + const Statistic &operator--() { + return *this; + } + + unsigned operator--(int) { + return 0; + } + + const Statistic &operator+=(const unsigned &V) { + return *this; + } + + const Statistic &operator-=(const unsigned &V) { + return *this; + } + + const Statistic &operator*=(const unsigned &V) { + return *this; + } + + const Statistic &operator/=(const unsigned &V) { + return *this; + } + +#endif // !defined(NDEBUG) || defined(LLVM_ENABLE_STATS) + protected: Statistic &init() { bool tmp = Initialized; diff --git a/llvm/lib/CodeGen/SelectionDAG/FastISel.cpp b/llvm/lib/CodeGen/SelectionDAG/FastISel.cpp index 4fb9c5c8a031..aa45ac595816 100644 --- a/llvm/lib/CodeGen/SelectionDAG/FastISel.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/FastISel.cpp @@ -63,13 +63,11 @@ #include "llvm/Target/TargetMachine.h" using namespace llvm; -#ifndef NDEBUG STATISTIC(NumFastIselSuccessIndependent, "Number of insts selected by " "target-independent selector"); STATISTIC(NumFastIselSuccessTarget, "Number of insts selected by " "target-specific selector"); STATISTIC(NumFastIselDead, "Number of dead insts removed on failure"); -#endif // NDEBUG /// startNewBlock - Set the current block to which generated machine /// instructions will be appended, and clear the local CSE map. @@ -334,7 +332,7 @@ void FastISel::removeDeadCode(MachineBasicBlock::iterator I, MachineInstr *Dead = &*I; ++I; Dead->eraseFromParent(); - DEBUG(++NumFastIselDead); + ++NumFastIselDead; } recomputeInsertPt(); } @@ -830,7 +828,7 @@ FastISel::SelectInstruction(const Instruction *I) { // First, try doing target-independent selection. if (SelectOperator(I, I->getOpcode())) { - DEBUG(++NumFastIselSuccessIndependent); + ++NumFastIselSuccessIndependent; DL = DebugLoc(); return true; } @@ -845,7 +843,7 @@ FastISel::SelectInstruction(const Instruction *I) { // Next, try calling the target to attempt to handle the instruction. SavedInsertPt = FuncInfo.InsertPt; if (TargetSelectInstruction(I)) { - DEBUG(++NumFastIselSuccessTarget); + ++NumFastIselSuccessTarget; DL = DebugLoc(); return true; } diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp index 285625ef04a5..39a1f8a3d0d6 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp @@ -58,14 +58,13 @@ #include using namespace llvm; -STATISTIC(NumFastIselBlocks, "Number of blocks selected entirely by fast isel"); -STATISTIC(NumDAGBlocks, "Number of blocks selected using DAG"); - -#ifndef NDEBUG -STATISTIC(NumDAGIselRetries,"Number of times dag isel has to try another path"); STATISTIC(NumFastIselFailures, "Number of instructions fast isel failed on"); STATISTIC(NumFastIselSuccess, "Number of instructions fast isel selected"); +STATISTIC(NumFastIselBlocks, "Number of blocks selected entirely by fast isel"); +STATISTIC(NumDAGBlocks, "Number of blocks selected using DAG"); +STATISTIC(NumDAGIselRetries,"Number of times dag isel has to try another path"); +#ifndef NDEBUG static cl::opt EnableFastISelVerbose2("fast-isel-verbose2", cl::Hidden, cl::desc("Enable extra verbose messages in the \"fast\" " @@ -1090,7 +1089,7 @@ void SelectionDAGISel::SelectAllBasicBlocks(const Function &Fn) { // Try to select the instruction with FastISel. if (FastIS->SelectInstruction(Inst)) { --NumFastIselRemaining; - DEBUG(++NumFastIselSuccess); + ++NumFastIselSuccess; // If fast isel succeeded, skip over all the folded instructions, and // then see if there is a load right before the selected instructions. // Try to fold the load if so. @@ -1106,7 +1105,7 @@ void SelectionDAGISel::SelectAllBasicBlocks(const Function &Fn) { // If we succeeded, don't re-select the load. BI = llvm::next(BasicBlock::const_iterator(BeforeInst)); --NumFastIselRemaining; - DEBUG(++NumFastIselSuccess); + ++NumFastIselSuccess; } continue; } @@ -1145,21 +1144,20 @@ void SelectionDAGISel::SelectAllBasicBlocks(const Function &Fn) { // Recompute NumFastIselRemaining as Selection DAG instruction // selection may have handled the call, input args, etc. unsigned RemainingNow = std::distance(Begin, BI); - (void) RemainingNow; - DEBUG(NumFastIselFailures += NumFastIselRemaining - RemainingNow); - DEBUG(NumFastIselRemaining = RemainingNow); + NumFastIselFailures += NumFastIselRemaining - RemainingNow; + NumFastIselRemaining = RemainingNow; continue; } if (isa(Inst) && !isa(Inst)) { // Don't abort, and use a different message for terminator misses. - DEBUG(NumFastIselFailures += NumFastIselRemaining); + NumFastIselFailures += NumFastIselRemaining; if (EnableFastISelVerbose || EnableFastISelAbort) { dbgs() << "FastISel missed terminator: "; Inst->dump(); } } else { - DEBUG(NumFastIselFailures += NumFastIselRemaining); + NumFastIselFailures += NumFastIselRemaining; if (EnableFastISelVerbose || EnableFastISelAbort) { dbgs() << "FastISel miss: "; Inst->dump(); @@ -2357,7 +2355,7 @@ SelectCodeCommon(SDNode *NodeToMatch, const unsigned char *MatcherTable, DEBUG(errs() << " Skipped scope entry (due to false predicate) at " << "index " << MatcherIndexOfPredicate << ", continuing at " << FailIndex << "\n"); - DEBUG(++NumDAGIselRetries); + ++NumDAGIselRetries; // Otherwise, we know that this case of the Scope is guaranteed to fail, // move to the next case. @@ -2938,7 +2936,7 @@ SelectCodeCommon(SDNode *NodeToMatch, const unsigned char *MatcherTable, // another child to try in the current 'Scope', otherwise pop it until we // find a case to check. DEBUG(errs() << " Match failed at index " << CurrentOpcodeIndex << "\n"); - DEBUG(++NumDAGIselRetries); + ++NumDAGIselRetries; while (1) { if (MatchScopes.empty()) { CannotYetSelect(NodeToMatch); diff --git a/llvm/lib/Support/Statistic.cpp b/llvm/lib/Support/Statistic.cpp index 3a6522101d66..9c28176b730e 100644 --- a/llvm/lib/Support/Statistic.cpp +++ b/llvm/lib/Support/Statistic.cpp @@ -40,7 +40,9 @@ namespace llvm { extern raw_ostream *CreateInfoOutputFile(); } /// what they did. /// static cl::opt -Enabled("stats", cl::desc("Enable statistics output from program")); +Enabled( + "stats", + cl::desc("Enable statistics output from program (available with Asserts)")); namespace { @@ -142,6 +144,7 @@ void llvm::PrintStatistics(raw_ostream &OS) { } void llvm::PrintStatistics() { +#if !defined(NDEBUG) || defined(LLVM_ENABLE_STATS) StatisticInfo &Stats = *StatInfo; // Statistics not enabled? @@ -151,4 +154,17 @@ void llvm::PrintStatistics() { raw_ostream &OutStream = *CreateInfoOutputFile(); PrintStatistics(OutStream); delete &OutStream; // Close the file. +#else + // Check if the -stats option is set instead of checking + // !Stats.Stats.empty(). In release builds, Statistics operators + // do nothing, so stats are never Registered. + if (Enabled) { + // Get the stream to write to. + raw_ostream &OutStream = *CreateInfoOutputFile(); + OutStream << "Statistics are disabled. " + << "Build with asserts or with -DLLVM_ENABLE_STATS\n"; + OutStream.flush(); + delete &OutStream; // Close the file. + } +#endif } diff --git a/llvm/test/Analysis/RegionInfo/block_sort.ll b/llvm/test/Analysis/RegionInfo/Stats/block_sort.ll similarity index 100% rename from llvm/test/Analysis/RegionInfo/block_sort.ll rename to llvm/test/Analysis/RegionInfo/Stats/block_sort.ll diff --git a/llvm/test/Analysis/RegionInfo/cond_loop.ll b/llvm/test/Analysis/RegionInfo/Stats/cond_loop.ll similarity index 100% rename from llvm/test/Analysis/RegionInfo/cond_loop.ll rename to llvm/test/Analysis/RegionInfo/Stats/cond_loop.ll diff --git a/llvm/test/Analysis/RegionInfo/condition_complicated.ll b/llvm/test/Analysis/RegionInfo/Stats/condition_complicated.ll similarity index 100% rename from llvm/test/Analysis/RegionInfo/condition_complicated.ll rename to llvm/test/Analysis/RegionInfo/Stats/condition_complicated.ll diff --git a/llvm/test/Analysis/RegionInfo/condition_complicated_2.ll b/llvm/test/Analysis/RegionInfo/Stats/condition_complicated_2.ll similarity index 100% rename from llvm/test/Analysis/RegionInfo/condition_complicated_2.ll rename to llvm/test/Analysis/RegionInfo/Stats/condition_complicated_2.ll diff --git a/llvm/test/Analysis/RegionInfo/condition_forward_edge.ll b/llvm/test/Analysis/RegionInfo/Stats/condition_forward_edge.ll similarity index 100% rename from llvm/test/Analysis/RegionInfo/condition_forward_edge.ll rename to llvm/test/Analysis/RegionInfo/Stats/condition_forward_edge.ll diff --git a/llvm/test/Analysis/RegionInfo/condition_same_exit.ll b/llvm/test/Analysis/RegionInfo/Stats/condition_same_exit.ll similarity index 100% rename from llvm/test/Analysis/RegionInfo/condition_same_exit.ll rename to llvm/test/Analysis/RegionInfo/Stats/condition_same_exit.ll diff --git a/llvm/test/Analysis/RegionInfo/condition_simple.ll b/llvm/test/Analysis/RegionInfo/Stats/condition_simple.ll similarity index 100% rename from llvm/test/Analysis/RegionInfo/condition_simple.ll rename to llvm/test/Analysis/RegionInfo/Stats/condition_simple.ll diff --git a/llvm/test/Analysis/RegionInfo/exit_in_condition.ll b/llvm/test/Analysis/RegionInfo/Stats/exit_in_condition.ll similarity index 100% rename from llvm/test/Analysis/RegionInfo/exit_in_condition.ll rename to llvm/test/Analysis/RegionInfo/Stats/exit_in_condition.ll diff --git a/llvm/test/Analysis/RegionInfo/infinite_loop.ll b/llvm/test/Analysis/RegionInfo/Stats/infinite_loop.ll similarity index 100% rename from llvm/test/Analysis/RegionInfo/infinite_loop.ll rename to llvm/test/Analysis/RegionInfo/Stats/infinite_loop.ll diff --git a/llvm/test/Analysis/RegionInfo/infinite_loop_2.ll b/llvm/test/Analysis/RegionInfo/Stats/infinite_loop_2.ll similarity index 100% rename from llvm/test/Analysis/RegionInfo/infinite_loop_2.ll rename to llvm/test/Analysis/RegionInfo/Stats/infinite_loop_2.ll diff --git a/llvm/test/Analysis/RegionInfo/infinite_loop_3.ll b/llvm/test/Analysis/RegionInfo/Stats/infinite_loop_3.ll similarity index 100% rename from llvm/test/Analysis/RegionInfo/infinite_loop_3.ll rename to llvm/test/Analysis/RegionInfo/Stats/infinite_loop_3.ll diff --git a/llvm/test/Analysis/RegionInfo/infinite_loop_4.ll b/llvm/test/Analysis/RegionInfo/Stats/infinite_loop_4.ll similarity index 100% rename from llvm/test/Analysis/RegionInfo/infinite_loop_4.ll rename to llvm/test/Analysis/RegionInfo/Stats/infinite_loop_4.ll diff --git a/llvm/test/Analysis/RegionInfo/Stats/lit.local.cfg b/llvm/test/Analysis/RegionInfo/Stats/lit.local.cfg new file mode 100644 index 000000000000..89c0cd9d4877 --- /dev/null +++ b/llvm/test/Analysis/RegionInfo/Stats/lit.local.cfg @@ -0,0 +1,4 @@ +config.suffixes = ['.ll', '.c', '.cpp'] + +if not config.root.enable_assertions: + config.unsupported = True diff --git a/llvm/test/Analysis/RegionInfo/loop_with_condition.ll b/llvm/test/Analysis/RegionInfo/Stats/loop_with_condition.ll similarity index 100% rename from llvm/test/Analysis/RegionInfo/loop_with_condition.ll rename to llvm/test/Analysis/RegionInfo/Stats/loop_with_condition.ll diff --git a/llvm/test/Analysis/RegionInfo/loops_1.ll b/llvm/test/Analysis/RegionInfo/Stats/loops_1.ll similarity index 100% rename from llvm/test/Analysis/RegionInfo/loops_1.ll rename to llvm/test/Analysis/RegionInfo/Stats/loops_1.ll diff --git a/llvm/test/Analysis/RegionInfo/loops_2.ll b/llvm/test/Analysis/RegionInfo/Stats/loops_2.ll similarity index 100% rename from llvm/test/Analysis/RegionInfo/loops_2.ll rename to llvm/test/Analysis/RegionInfo/Stats/loops_2.ll diff --git a/llvm/test/Analysis/RegionInfo/mix_1.ll b/llvm/test/Analysis/RegionInfo/Stats/mix_1.ll similarity index 100% rename from llvm/test/Analysis/RegionInfo/mix_1.ll rename to llvm/test/Analysis/RegionInfo/Stats/mix_1.ll diff --git a/llvm/test/Analysis/RegionInfo/nested_loops.ll b/llvm/test/Analysis/RegionInfo/Stats/nested_loops.ll similarity index 100% rename from llvm/test/Analysis/RegionInfo/nested_loops.ll rename to llvm/test/Analysis/RegionInfo/Stats/nested_loops.ll diff --git a/llvm/test/Analysis/RegionInfo/next.ll b/llvm/test/Analysis/RegionInfo/Stats/next.ll similarity index 100% rename from llvm/test/Analysis/RegionInfo/next.ll rename to llvm/test/Analysis/RegionInfo/Stats/next.ll diff --git a/llvm/test/Analysis/RegionInfo/paper.ll b/llvm/test/Analysis/RegionInfo/Stats/paper.ll similarity index 100% rename from llvm/test/Analysis/RegionInfo/paper.ll rename to llvm/test/Analysis/RegionInfo/Stats/paper.ll diff --git a/llvm/test/Analysis/RegionInfo/two_loops_same_header.ll b/llvm/test/Analysis/RegionInfo/Stats/two_loops_same_header.ll similarity index 100% rename from llvm/test/Analysis/RegionInfo/two_loops_same_header.ll rename to llvm/test/Analysis/RegionInfo/Stats/two_loops_same_header.ll diff --git a/llvm/test/CodeGen/ARM/2007-03-13-InstrSched.ll b/llvm/test/CodeGen/ARM/Stats/2007-03-13-InstrSched.ll similarity index 100% rename from llvm/test/CodeGen/ARM/2007-03-13-InstrSched.ll rename to llvm/test/CodeGen/ARM/Stats/2007-03-13-InstrSched.ll diff --git a/llvm/test/CodeGen/ARM/2011-12-14-machine-sink.ll b/llvm/test/CodeGen/ARM/Stats/2011-12-14-machine-sink.ll similarity index 100% rename from llvm/test/CodeGen/ARM/2011-12-14-machine-sink.ll rename to llvm/test/CodeGen/ARM/Stats/2011-12-14-machine-sink.ll diff --git a/llvm/test/CodeGen/ARM/addrmode.ll b/llvm/test/CodeGen/ARM/Stats/addrmode.ll similarity index 100% rename from llvm/test/CodeGen/ARM/addrmode.ll rename to llvm/test/CodeGen/ARM/Stats/addrmode.ll diff --git a/llvm/test/CodeGen/ARM/Stats/lit.local.cfg b/llvm/test/CodeGen/ARM/Stats/lit.local.cfg new file mode 100644 index 000000000000..f6194d242186 --- /dev/null +++ b/llvm/test/CodeGen/ARM/Stats/lit.local.cfg @@ -0,0 +1,8 @@ +config.suffixes = ['.ll', '.c', '.cpp'] + +targets = set(config.root.targets_to_build.split()) +if not 'ARM' in targets: + config.unsupported = True + +if not config.root.enable_assertions: + config.unsupported = True diff --git a/llvm/test/CodeGen/PowerPC/iabs.ll b/llvm/test/CodeGen/PowerPC/Stats/iabs.ll similarity index 100% rename from llvm/test/CodeGen/PowerPC/iabs.ll rename to llvm/test/CodeGen/PowerPC/Stats/iabs.ll diff --git a/llvm/test/CodeGen/PowerPC/Stats/lit.local.cfg b/llvm/test/CodeGen/PowerPC/Stats/lit.local.cfg new file mode 100644 index 000000000000..2608e139e908 --- /dev/null +++ b/llvm/test/CodeGen/PowerPC/Stats/lit.local.cfg @@ -0,0 +1,8 @@ +config.suffixes = ['.ll', '.c', '.cpp'] + +targets = set(config.root.targets_to_build.split()) +if not 'PowerPC' in targets: + config.unsupported = True + +if not config.root.enable_assertions: + config.unsupported = True diff --git a/llvm/test/CodeGen/PowerPC/rlwimi3.ll b/llvm/test/CodeGen/PowerPC/Stats/rlwimi3.ll similarity index 100% rename from llvm/test/CodeGen/PowerPC/rlwimi3.ll rename to llvm/test/CodeGen/PowerPC/Stats/rlwimi3.ll diff --git a/llvm/test/CodeGen/X86/2003-08-03-CallArgLiveRanges.ll b/llvm/test/CodeGen/X86/Stats/2003-08-03-CallArgLiveRanges.ll similarity index 100% rename from llvm/test/CodeGen/X86/2003-08-03-CallArgLiveRanges.ll rename to llvm/test/CodeGen/X86/Stats/2003-08-03-CallArgLiveRanges.ll diff --git a/llvm/test/CodeGen/X86/2006-03-02-InstrSchedBug.ll b/llvm/test/CodeGen/X86/Stats/2006-03-02-InstrSchedBug.ll similarity index 100% rename from llvm/test/CodeGen/X86/2006-03-02-InstrSchedBug.ll rename to llvm/test/CodeGen/X86/Stats/2006-03-02-InstrSchedBug.ll diff --git a/llvm/test/CodeGen/X86/2006-05-01-SchedCausingSpills.ll b/llvm/test/CodeGen/X86/Stats/2006-05-01-SchedCausingSpills.ll similarity index 100% rename from llvm/test/CodeGen/X86/2006-05-01-SchedCausingSpills.ll rename to llvm/test/CodeGen/X86/Stats/2006-05-01-SchedCausingSpills.ll diff --git a/llvm/test/CodeGen/X86/2006-05-02-InstrSched1.ll b/llvm/test/CodeGen/X86/Stats/2006-05-02-InstrSched1.ll similarity index 100% rename from llvm/test/CodeGen/X86/2006-05-02-InstrSched1.ll rename to llvm/test/CodeGen/X86/Stats/2006-05-02-InstrSched1.ll diff --git a/llvm/test/CodeGen/X86/2006-05-02-InstrSched2.ll b/llvm/test/CodeGen/X86/Stats/2006-05-02-InstrSched2.ll similarity index 100% rename from llvm/test/CodeGen/X86/2006-05-02-InstrSched2.ll rename to llvm/test/CodeGen/X86/Stats/2006-05-02-InstrSched2.ll diff --git a/llvm/test/CodeGen/X86/2006-05-11-InstrSched.ll b/llvm/test/CodeGen/X86/Stats/2006-05-11-InstrSched.ll similarity index 100% rename from llvm/test/CodeGen/X86/2006-05-11-InstrSched.ll rename to llvm/test/CodeGen/X86/Stats/2006-05-11-InstrSched.ll diff --git a/llvm/test/CodeGen/X86/2008-02-18-TailMergingBug.ll b/llvm/test/CodeGen/X86/Stats/2008-02-18-TailMergingBug.ll similarity index 100% rename from llvm/test/CodeGen/X86/2008-02-18-TailMergingBug.ll rename to llvm/test/CodeGen/X86/Stats/2008-02-18-TailMergingBug.ll diff --git a/llvm/test/CodeGen/X86/2008-10-27-CoalescerBug.ll b/llvm/test/CodeGen/X86/Stats/2008-10-27-CoalescerBug.ll similarity index 100% rename from llvm/test/CodeGen/X86/2008-10-27-CoalescerBug.ll rename to llvm/test/CodeGen/X86/Stats/2008-10-27-CoalescerBug.ll diff --git a/llvm/test/CodeGen/X86/2009-02-25-CommuteBug.ll b/llvm/test/CodeGen/X86/Stats/2009-02-25-CommuteBug.ll similarity index 100% rename from llvm/test/CodeGen/X86/2009-02-25-CommuteBug.ll rename to llvm/test/CodeGen/X86/Stats/2009-02-25-CommuteBug.ll diff --git a/llvm/test/CodeGen/X86/2009-02-26-MachineLICMBug.ll b/llvm/test/CodeGen/X86/Stats/2009-02-26-MachineLICMBug.ll similarity index 100% rename from llvm/test/CodeGen/X86/2009-02-26-MachineLICMBug.ll rename to llvm/test/CodeGen/X86/Stats/2009-02-26-MachineLICMBug.ll diff --git a/llvm/test/CodeGen/X86/2009-03-23-MultiUseSched.ll b/llvm/test/CodeGen/X86/Stats/2009-03-23-MultiUseSched.ll similarity index 100% rename from llvm/test/CodeGen/X86/2009-03-23-MultiUseSched.ll rename to llvm/test/CodeGen/X86/Stats/2009-03-23-MultiUseSched.ll diff --git a/llvm/test/CodeGen/X86/2009-04-16-SpillerUnfold.ll b/llvm/test/CodeGen/X86/Stats/2009-04-16-SpillerUnfold.ll similarity index 100% rename from llvm/test/CodeGen/X86/2009-04-16-SpillerUnfold.ll rename to llvm/test/CodeGen/X86/Stats/2009-04-16-SpillerUnfold.ll diff --git a/llvm/test/CodeGen/X86/2010-01-19-OptExtBug.ll b/llvm/test/CodeGen/X86/Stats/2010-01-19-OptExtBug.ll similarity index 100% rename from llvm/test/CodeGen/X86/2010-01-19-OptExtBug.ll rename to llvm/test/CodeGen/X86/Stats/2010-01-19-OptExtBug.ll diff --git a/llvm/test/CodeGen/X86/2011-06-12-FastAllocSpill.ll b/llvm/test/CodeGen/X86/Stats/2011-06-12-FastAllocSpill.ll similarity index 100% rename from llvm/test/CodeGen/X86/2011-06-12-FastAllocSpill.ll rename to llvm/test/CodeGen/X86/Stats/2011-06-12-FastAllocSpill.ll diff --git a/llvm/test/CodeGen/X86/2012-03-26-PostRALICMBug.ll b/llvm/test/CodeGen/X86/Stats/2012-03-26-PostRALICMBug.ll similarity index 100% rename from llvm/test/CodeGen/X86/2012-03-26-PostRALICMBug.ll rename to llvm/test/CodeGen/X86/Stats/2012-03-26-PostRALICMBug.ll diff --git a/llvm/test/CodeGen/X86/MachineSink-PHIUse.ll b/llvm/test/CodeGen/X86/Stats/MachineSink-PHIUse.ll similarity index 100% rename from llvm/test/CodeGen/X86/MachineSink-PHIUse.ll rename to llvm/test/CodeGen/X86/Stats/MachineSink-PHIUse.ll diff --git a/llvm/test/CodeGen/X86/constant-pool-remat-0.ll b/llvm/test/CodeGen/X86/Stats/constant-pool-remat-0.ll similarity index 100% rename from llvm/test/CodeGen/X86/constant-pool-remat-0.ll rename to llvm/test/CodeGen/X86/Stats/constant-pool-remat-0.ll diff --git a/llvm/test/CodeGen/X86/convert-2-addr-3-addr-inc64.ll b/llvm/test/CodeGen/X86/Stats/convert-2-addr-3-addr-inc64.ll similarity index 100% rename from llvm/test/CodeGen/X86/convert-2-addr-3-addr-inc64.ll rename to llvm/test/CodeGen/X86/Stats/convert-2-addr-3-addr-inc64.ll diff --git a/llvm/test/CodeGen/X86/dagcombine-cse.ll b/llvm/test/CodeGen/X86/Stats/dagcombine-cse.ll similarity index 100% rename from llvm/test/CodeGen/X86/dagcombine-cse.ll rename to llvm/test/CodeGen/X86/Stats/dagcombine-cse.ll diff --git a/llvm/test/CodeGen/X86/hoist-invariant-load.ll b/llvm/test/CodeGen/X86/Stats/hoist-invariant-load.ll similarity index 100% rename from llvm/test/CodeGen/X86/hoist-invariant-load.ll rename to llvm/test/CodeGen/X86/Stats/hoist-invariant-load.ll diff --git a/llvm/test/CodeGen/X86/licm-nested.ll b/llvm/test/CodeGen/X86/Stats/licm-nested.ll similarity index 100% rename from llvm/test/CodeGen/X86/licm-nested.ll rename to llvm/test/CodeGen/X86/Stats/licm-nested.ll diff --git a/llvm/test/CodeGen/X86/Stats/lit.local.cfg b/llvm/test/CodeGen/X86/Stats/lit.local.cfg new file mode 100644 index 000000000000..1a5fd5ec8655 --- /dev/null +++ b/llvm/test/CodeGen/X86/Stats/lit.local.cfg @@ -0,0 +1,8 @@ +config.suffixes = ['.ll', '.c', '.cpp'] + +targets = set(config.root.targets_to_build.split()) +if not 'X86' in targets: + config.unsupported = True + +if not config.root.enable_assertions: + config.unsupported = True diff --git a/llvm/test/CodeGen/X86/phi-immediate-factoring.ll b/llvm/test/CodeGen/X86/Stats/phi-immediate-factoring.ll similarity index 100% rename from llvm/test/CodeGen/X86/phi-immediate-factoring.ll rename to llvm/test/CodeGen/X86/Stats/phi-immediate-factoring.ll diff --git a/llvm/test/CodeGen/X86/pr3522.ll b/llvm/test/CodeGen/X86/Stats/pr3522.ll similarity index 100% rename from llvm/test/CodeGen/X86/pr3522.ll rename to llvm/test/CodeGen/X86/Stats/pr3522.ll diff --git a/llvm/test/CodeGen/X86/regpressure.ll b/llvm/test/CodeGen/X86/Stats/regpressure.ll similarity index 100% rename from llvm/test/CodeGen/X86/regpressure.ll rename to llvm/test/CodeGen/X86/Stats/regpressure.ll diff --git a/llvm/test/CodeGen/X86/twoaddr-coalesce-2.ll b/llvm/test/CodeGen/X86/Stats/twoaddr-coalesce-2.ll similarity index 100% rename from llvm/test/CodeGen/X86/twoaddr-coalesce-2.ll rename to llvm/test/CodeGen/X86/Stats/twoaddr-coalesce-2.ll diff --git a/llvm/test/CodeGen/X86/twoaddr-pass-sink.ll b/llvm/test/CodeGen/X86/Stats/twoaddr-pass-sink.ll similarity index 100% rename from llvm/test/CodeGen/X86/twoaddr-pass-sink.ll rename to llvm/test/CodeGen/X86/Stats/twoaddr-pass-sink.ll diff --git a/llvm/test/CodeGen/X86/vec_insert-6.ll b/llvm/test/CodeGen/X86/Stats/vec_insert-6.ll similarity index 100% rename from llvm/test/CodeGen/X86/vec_insert-6.ll rename to llvm/test/CodeGen/X86/Stats/vec_insert-6.ll diff --git a/llvm/test/CodeGen/X86/vec_shuffle-19.ll b/llvm/test/CodeGen/X86/Stats/vec_shuffle-19.ll similarity index 100% rename from llvm/test/CodeGen/X86/vec_shuffle-19.ll rename to llvm/test/CodeGen/X86/Stats/vec_shuffle-19.ll diff --git a/llvm/test/CodeGen/X86/vec_shuffle-20.ll b/llvm/test/CodeGen/X86/Stats/vec_shuffle-20.ll similarity index 100% rename from llvm/test/CodeGen/X86/vec_shuffle-20.ll rename to llvm/test/CodeGen/X86/Stats/vec_shuffle-20.ll diff --git a/llvm/test/CodeGen/X86/zero-remat.ll b/llvm/test/CodeGen/X86/Stats/zero-remat.ll similarity index 100% rename from llvm/test/CodeGen/X86/zero-remat.ll rename to llvm/test/CodeGen/X86/Stats/zero-remat.ll diff --git a/llvm/test/Transforms/GVN/Stats/lit.local.cfg b/llvm/test/Transforms/GVN/Stats/lit.local.cfg new file mode 100644 index 000000000000..89c0cd9d4877 --- /dev/null +++ b/llvm/test/Transforms/GVN/Stats/lit.local.cfg @@ -0,0 +1,4 @@ +config.suffixes = ['.ll', '.c', '.cpp'] + +if not config.root.enable_assertions: + config.unsupported = True diff --git a/llvm/test/Transforms/GVN/nonescaping-malloc.ll b/llvm/test/Transforms/GVN/Stats/nonescaping-malloc.ll similarity index 100% rename from llvm/test/Transforms/GVN/nonescaping-malloc.ll rename to llvm/test/Transforms/GVN/Stats/nonescaping-malloc.ll diff --git a/llvm/test/Transforms/GlobalOpt/2009-03-05-dbg.ll b/llvm/test/Transforms/GlobalOpt/Stats/2009-03-05-dbg.ll similarity index 100% rename from llvm/test/Transforms/GlobalOpt/2009-03-05-dbg.ll rename to llvm/test/Transforms/GlobalOpt/Stats/2009-03-05-dbg.ll diff --git a/llvm/test/Transforms/GlobalOpt/Stats/lit.local.cfg b/llvm/test/Transforms/GlobalOpt/Stats/lit.local.cfg new file mode 100644 index 000000000000..89c0cd9d4877 --- /dev/null +++ b/llvm/test/Transforms/GlobalOpt/Stats/lit.local.cfg @@ -0,0 +1,4 @@ +config.suffixes = ['.ll', '.c', '.cpp'] + +if not config.root.enable_assertions: + config.unsupported = True diff --git a/llvm/test/Transforms/IndVarSimplify/Stats/lit.local.cfg b/llvm/test/Transforms/IndVarSimplify/Stats/lit.local.cfg new file mode 100644 index 000000000000..89c0cd9d4877 --- /dev/null +++ b/llvm/test/Transforms/IndVarSimplify/Stats/lit.local.cfg @@ -0,0 +1,4 @@ +config.suffixes = ['.ll', '.c', '.cpp'] + +if not config.root.enable_assertions: + config.unsupported = True diff --git a/llvm/test/Transforms/IndVarSimplify/phi-uses-value-multiple-times.ll b/llvm/test/Transforms/IndVarSimplify/Stats/phi-uses-value-multiple-times.ll similarity index 100% rename from llvm/test/Transforms/IndVarSimplify/phi-uses-value-multiple-times.ll rename to llvm/test/Transforms/IndVarSimplify/Stats/phi-uses-value-multiple-times.ll diff --git a/llvm/test/Transforms/Inline/delete-call.ll b/llvm/test/Transforms/Inline/Stats/delete-call.ll similarity index 100% rename from llvm/test/Transforms/Inline/delete-call.ll rename to llvm/test/Transforms/Inline/Stats/delete-call.ll diff --git a/llvm/test/Transforms/Inline/Stats/lit.local.cfg b/llvm/test/Transforms/Inline/Stats/lit.local.cfg new file mode 100644 index 000000000000..89c0cd9d4877 --- /dev/null +++ b/llvm/test/Transforms/Inline/Stats/lit.local.cfg @@ -0,0 +1,4 @@ +config.suffixes = ['.ll', '.c', '.cpp'] + +if not config.root.enable_assertions: + config.unsupported = True diff --git a/llvm/test/Transforms/LICM/hoist-invariant-load.ll b/llvm/test/Transforms/LICM/Stats/hoist-invariant-load.ll similarity index 100% rename from llvm/test/Transforms/LICM/hoist-invariant-load.ll rename to llvm/test/Transforms/LICM/Stats/hoist-invariant-load.ll diff --git a/llvm/test/Transforms/LICM/Stats/lit.local.cfg b/llvm/test/Transforms/LICM/Stats/lit.local.cfg new file mode 100644 index 000000000000..89c0cd9d4877 --- /dev/null +++ b/llvm/test/Transforms/LICM/Stats/lit.local.cfg @@ -0,0 +1,4 @@ +config.suffixes = ['.ll', '.c', '.cpp'] + +if not config.root.enable_assertions: + config.unsupported = True diff --git a/llvm/test/Transforms/LoopUnroll/Stats/lit.local.cfg b/llvm/test/Transforms/LoopUnroll/Stats/lit.local.cfg new file mode 100644 index 000000000000..89c0cd9d4877 --- /dev/null +++ b/llvm/test/Transforms/LoopUnroll/Stats/lit.local.cfg @@ -0,0 +1,4 @@ +config.suffixes = ['.ll', '.c', '.cpp'] + +if not config.root.enable_assertions: + config.unsupported = True diff --git a/llvm/test/Transforms/LoopUnroll/runtime-loop3.ll b/llvm/test/Transforms/LoopUnroll/Stats/runtime-loop3.ll similarity index 100% rename from llvm/test/Transforms/LoopUnroll/runtime-loop3.ll rename to llvm/test/Transforms/LoopUnroll/Stats/runtime-loop3.ll diff --git a/llvm/test/Transforms/LoopUnswitch/2008-11-03-Invariant.ll b/llvm/test/Transforms/LoopUnswitch/Stats/2008-11-03-Invariant.ll similarity index 100% rename from llvm/test/Transforms/LoopUnswitch/2008-11-03-Invariant.ll rename to llvm/test/Transforms/LoopUnswitch/Stats/2008-11-03-Invariant.ll diff --git a/llvm/test/Transforms/LoopUnswitch/2011-11-18-SimpleSwitch.ll b/llvm/test/Transforms/LoopUnswitch/Stats/2011-11-18-SimpleSwitch.ll similarity index 100% rename from llvm/test/Transforms/LoopUnswitch/2011-11-18-SimpleSwitch.ll rename to llvm/test/Transforms/LoopUnswitch/Stats/2011-11-18-SimpleSwitch.ll diff --git a/llvm/test/Transforms/LoopUnswitch/2011-11-18-TwoSwitches-Threshold.ll b/llvm/test/Transforms/LoopUnswitch/Stats/2011-11-18-TwoSwitches-Threshold.ll similarity index 100% rename from llvm/test/Transforms/LoopUnswitch/2011-11-18-TwoSwitches-Threshold.ll rename to llvm/test/Transforms/LoopUnswitch/Stats/2011-11-18-TwoSwitches-Threshold.ll diff --git a/llvm/test/Transforms/LoopUnswitch/2011-11-18-TwoSwitches.ll b/llvm/test/Transforms/LoopUnswitch/Stats/2011-11-18-TwoSwitches.ll similarity index 100% rename from llvm/test/Transforms/LoopUnswitch/2011-11-18-TwoSwitches.ll rename to llvm/test/Transforms/LoopUnswitch/Stats/2011-11-18-TwoSwitches.ll diff --git a/llvm/test/Transforms/LoopUnswitch/infinite-loop.ll b/llvm/test/Transforms/LoopUnswitch/Stats/infinite-loop.ll similarity index 100% rename from llvm/test/Transforms/LoopUnswitch/infinite-loop.ll rename to llvm/test/Transforms/LoopUnswitch/Stats/infinite-loop.ll diff --git a/llvm/test/Transforms/LoopUnswitch/Stats/lit.local.cfg b/llvm/test/Transforms/LoopUnswitch/Stats/lit.local.cfg new file mode 100644 index 000000000000..89c0cd9d4877 --- /dev/null +++ b/llvm/test/Transforms/LoopUnswitch/Stats/lit.local.cfg @@ -0,0 +1,4 @@ +config.suffixes = ['.ll', '.c', '.cpp'] + +if not config.root.enable_assertions: + config.unsupported = True diff --git a/llvm/test/Transforms/MergeFunc/Stats/lit.local.cfg b/llvm/test/Transforms/MergeFunc/Stats/lit.local.cfg new file mode 100644 index 000000000000..89c0cd9d4877 --- /dev/null +++ b/llvm/test/Transforms/MergeFunc/Stats/lit.local.cfg @@ -0,0 +1,4 @@ +config.suffixes = ['.ll', '.c', '.cpp'] + +if not config.root.enable_assertions: + config.unsupported = True diff --git a/llvm/test/Transforms/MergeFunc/phi-speculation1.ll b/llvm/test/Transforms/MergeFunc/Stats/phi-speculation1.ll similarity index 100% rename from llvm/test/Transforms/MergeFunc/phi-speculation1.ll rename to llvm/test/Transforms/MergeFunc/Stats/phi-speculation1.ll diff --git a/llvm/test/Transforms/MergeFunc/phi-speculation2.ll b/llvm/test/Transforms/MergeFunc/Stats/phi-speculation2.ll similarity index 100% rename from llvm/test/Transforms/MergeFunc/phi-speculation2.ll rename to llvm/test/Transforms/MergeFunc/Stats/phi-speculation2.ll diff --git a/llvm/test/Transforms/MergeFunc/vector.ll b/llvm/test/Transforms/MergeFunc/Stats/vector.ll similarity index 100% rename from llvm/test/Transforms/MergeFunc/vector.ll rename to llvm/test/Transforms/MergeFunc/Stats/vector.ll diff --git a/llvm/test/Transforms/MergeFunc/vectors-and-arrays.ll b/llvm/test/Transforms/MergeFunc/Stats/vectors-and-arrays.ll similarity index 100% rename from llvm/test/Transforms/MergeFunc/vectors-and-arrays.ll rename to llvm/test/Transforms/MergeFunc/Stats/vectors-and-arrays.ll diff --git a/llvm/test/Transforms/TailCallElim/ackermann.ll b/llvm/test/Transforms/TailCallElim/Stats/ackermann.ll similarity index 100% rename from llvm/test/Transforms/TailCallElim/ackermann.ll rename to llvm/test/Transforms/TailCallElim/Stats/ackermann.ll diff --git a/llvm/test/Transforms/TailCallElim/dup_tail.ll b/llvm/test/Transforms/TailCallElim/Stats/dup_tail.ll similarity index 100% rename from llvm/test/Transforms/TailCallElim/dup_tail.ll rename to llvm/test/Transforms/TailCallElim/Stats/dup_tail.ll diff --git a/llvm/test/Transforms/TailCallElim/Stats/lit.local.cfg b/llvm/test/Transforms/TailCallElim/Stats/lit.local.cfg new file mode 100644 index 000000000000..89c0cd9d4877 --- /dev/null +++ b/llvm/test/Transforms/TailCallElim/Stats/lit.local.cfg @@ -0,0 +1,4 @@ +config.suffixes = ['.ll', '.c', '.cpp'] + +if not config.root.enable_assertions: + config.unsupported = True diff --git a/llvm/test/Transforms/TailDup/2008-06-11-AvoidDupLoopHeader.ll b/llvm/test/Transforms/TailDup/Stats/2008-06-11-AvoidDupLoopHeader.ll similarity index 100% rename from llvm/test/Transforms/TailDup/2008-06-11-AvoidDupLoopHeader.ll rename to llvm/test/Transforms/TailDup/Stats/2008-06-11-AvoidDupLoopHeader.ll diff --git a/llvm/test/Transforms/TailDup/Stats/lit.local.cfg b/llvm/test/Transforms/TailDup/Stats/lit.local.cfg new file mode 100644 index 000000000000..89c0cd9d4877 --- /dev/null +++ b/llvm/test/Transforms/TailDup/Stats/lit.local.cfg @@ -0,0 +1,4 @@ +config.suffixes = ['.ll', '.c', '.cpp'] + +if not config.root.enable_assertions: + config.unsupported = True