blob: 4057a0f45463dfa68fb56c4d98a5b7b9b5958e66 [file] [log] [blame]
Chris Lattner126840f2003-04-24 20:16:29 +00001//===- ListReducer.h - Trim down list while retaining property --*- C++ -*-===//
John Criswell7c0e0222003-10-20 17:47:21 +00002//
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//===----------------------------------------------------------------------===//
Chris Lattner126840f2003-04-24 20:16:29 +00009//
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>
Chris Lattner043b9722003-11-29 20:04:13 +000019#include <iostream>
Chris Lattner126840f2003-04-24 20:16:29 +000020
Brian Gaeked0fde302003-11-11 22:41:34 +000021namespace llvm {
22
Chris Lattner126840f2003-04-24 20:16:29 +000023template<typename ElTy>
24struct 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
Chris Lattner1c2f6862004-05-11 20:41:07 +000031 virtual ~ListReducer() {}
32
Chris Lattner126840f2003-04-24 20:16:29 +000033 // doTest - This virtual function should be overriden by subclasses to
34 // implement the test desired. The testcase is only required to test to see
35 // if the Kept list still satisfies the property, but if it is going to check
36 // the prefix anyway, it can.
37 //
Chris Lattnerb4ebe132003-04-24 22:23:56 +000038 virtual TestResult doTest(std::vector<ElTy> &Prefix,
39 std::vector<ElTy> &Kept) = 0;
Chris Lattner126840f2003-04-24 20:16:29 +000040
41 // reduceList - This function attempts to reduce the length of the specified
42 // list while still maintaining the "test" property. This is the core of the
43 // "work" that bugpoint does.
44 //
Misha Brukmanbe6bf562003-07-30 20:15:56 +000045 bool reduceList(std::vector<ElTy> &TheList) {
46 std::vector<ElTy> empty;
47 switch (doTest(TheList, empty)) {
48 case KeepPrefix:
49 if (TheList.size() == 1) // we are done, it's the base case and it fails
50 return true;
51 else
52 break; // there's definitely an error, but we need to narrow it down
53
54 case KeepSuffix:
55 // cannot be reached!
56 std::cerr << "bugpoint ListReducer internal error: selected empty set.\n";
57 abort();
58
59 case NoFailure:
60 return false; // there is no failure with the full set of passes/funcs!
61 }
62
Chris Lattner126840f2003-04-24 20:16:29 +000063 unsigned MidTop = TheList.size();
64 while (MidTop > 1) {
65 unsigned Mid = MidTop / 2;
Chris Lattner0c139982003-04-25 03:16:33 +000066 std::vector<ElTy> Prefix(TheList.begin(), TheList.begin()+Mid);
67 std::vector<ElTy> Suffix(TheList.begin()+Mid, TheList.end());
Chris Lattner126840f2003-04-24 20:16:29 +000068
Chris Lattner0c139982003-04-25 03:16:33 +000069 switch (doTest(Prefix, Suffix)) {
Chris Lattner126840f2003-04-24 20:16:29 +000070 case KeepSuffix:
71 // The property still holds. We can just drop the prefix elements, and
72 // shorten the list to the "kept" elements.
Chris Lattner0c139982003-04-25 03:16:33 +000073 TheList.swap(Suffix);
Chris Lattner126840f2003-04-24 20:16:29 +000074 MidTop = TheList.size();
75 break;
76 case KeepPrefix:
77 // The predicate still holds, shorten the list to the prefix elements.
78 TheList.swap(Prefix);
79 MidTop = TheList.size();
80 break;
81 case NoFailure:
82 // Otherwise the property doesn't hold. Some of the elements we removed
Misha Brukman5560c9d2003-08-18 14:43:39 +000083 // must be necessary to maintain the property.
Chris Lattner126840f2003-04-24 20:16:29 +000084 MidTop = Mid;
85 break;
86 }
87 }
88
89 // Okay, we trimmed as much off the top and the bottom of the list as we
90 // could. If there is more two elements in the list, try deleting interior
91 // elements and testing that.
92 //
Chris Lattnerd29c6362004-11-18 19:42:50 +000093 if (TheList.size() > 2) {
Chris Lattner126840f2003-04-24 20:16:29 +000094 bool Changed = true;
95 std::vector<ElTy> EmptyList;
96 while (Changed) {
97 Changed = false;
98 std::vector<ElTy> TrimmedList;
99 for (unsigned i = 1; i < TheList.size()-1; ++i) { // Check interior elts
100 std::vector<ElTy> TestList(TheList);
101 TestList.erase(TestList.begin()+i);
102
103 if (doTest(EmptyList, TestList) == KeepSuffix) {
104 // We can trim down the list!
105 TheList.swap(TestList);
106 --i; // Don't skip an element of the list
107 Changed = true;
108 }
109 }
Chris Lattnerd29c6362004-11-18 19:42:50 +0000110 // This can take a long time if left uncontrolled. For now, don't
111 // iterate.
112 break;
Chris Lattner126840f2003-04-24 20:16:29 +0000113 }
114 }
Misha Brukmanbe6bf562003-07-30 20:15:56 +0000115
116 return true; // there are some failure and we've narrowed them down
Chris Lattner126840f2003-04-24 20:16:29 +0000117 }
118};
119
Brian Gaeked0fde302003-11-11 22:41:34 +0000120} // End llvm namespace
121
Chris Lattner126840f2003-04-24 20:16:29 +0000122#endif