be 3.4 happy
[oota-llvm.git] / tools / bugpoint / ListReducer.h
1 //===- ListReducer.h - Trim down list while retaining property --*- C++ -*-===//
2 // 
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file was developed by the LLVM research group and is distributed under
6 // the University of Illinois Open Source License. See LICENSE.TXT for details.
7 // 
8 //===----------------------------------------------------------------------===//
9 //
10 // This class is to be used as a base class for operations that want to zero in
11 // on a subset of the input which still causes the bug we are tracking.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #ifndef BUGPOINT_LIST_REDUCER_H
16 #define BUGPOINT_LIST_REDUCER_H
17
18 #include <vector>
19 #include <iostream>
20
21 namespace llvm {
22
23 template<typename ElTy>
24 struct ListReducer {
25   enum TestResult {
26     NoFailure,         // No failure of the predicate was detected
27     KeepSuffix,        // The suffix alone satisfies the predicate
28     KeepPrefix,        // The prefix alone satisfies the predicate
29   };
30
31   // doTest - This virtual function should be overriden by subclasses to
32   // implement the test desired.  The testcase is only required to test to see
33   // if the Kept list still satisfies the property, but if it is going to check
34   // the prefix anyway, it can.
35   //
36   virtual TestResult doTest(std::vector<ElTy> &Prefix,
37                             std::vector<ElTy> &Kept) = 0;
38
39   // reduceList - This function attempts to reduce the length of the specified
40   // list while still maintaining the "test" property.  This is the core of the
41   // "work" that bugpoint does.
42   //
43   bool reduceList(std::vector<ElTy> &TheList) {
44     std::vector<ElTy> empty;
45     switch (doTest(TheList, empty)) {
46     case KeepPrefix:
47       if (TheList.size() == 1) // we are done, it's the base case and it fails
48         return true;
49       else 
50         break; // there's definitely an error, but we need to narrow it down
51
52     case KeepSuffix:
53       // cannot be reached!
54       std::cerr << "bugpoint ListReducer internal error: selected empty set.\n";
55       abort();
56
57     case NoFailure:
58       return false; // there is no failure with the full set of passes/funcs!
59     }
60
61     unsigned MidTop = TheList.size();
62     while (MidTop > 1) {
63       unsigned Mid = MidTop / 2;
64       std::vector<ElTy> Prefix(TheList.begin(), TheList.begin()+Mid);
65       std::vector<ElTy> Suffix(TheList.begin()+Mid, TheList.end());
66
67       switch (doTest(Prefix, Suffix)) {
68       case KeepSuffix:
69         // The property still holds.  We can just drop the prefix elements, and
70         // shorten the list to the "kept" elements.
71         TheList.swap(Suffix);
72         MidTop = TheList.size();
73         break;
74       case KeepPrefix:
75         // The predicate still holds, shorten the list to the prefix elements.
76         TheList.swap(Prefix);
77         MidTop = TheList.size();
78         break;
79       case NoFailure:
80         // Otherwise the property doesn't hold.  Some of the elements we removed
81         // must be necessary to maintain the property.
82         MidTop = Mid;
83         break;
84       }
85     }
86
87     // Okay, we trimmed as much off the top and the bottom of the list as we
88     // could.  If there is more two elements in the list, try deleting interior
89     // elements and testing that.
90     //
91     if (TheList.size() > 2) {
92       bool Changed = true;
93       std::vector<ElTy> EmptyList;
94       while (Changed) {
95         Changed = false;
96         std::vector<ElTy> TrimmedList;
97         for (unsigned i = 1; i < TheList.size()-1; ++i) { // Check interior elts
98           std::vector<ElTy> TestList(TheList);
99           TestList.erase(TestList.begin()+i);
100
101           if (doTest(EmptyList, TestList) == KeepSuffix) {
102             // We can trim down the list!
103             TheList.swap(TestList);
104             --i;  // Don't skip an element of the list
105             Changed = true;
106           }
107         }
108       }
109     }
110
111     return true; // there are some failure and we've narrowed them down
112   }
113 };
114
115 } // End llvm namespace
116
117 #endif