| Chris Lattner | afade92 | 2002-11-20 22:28:10 +0000 | [diff] [blame] | 1 | //===- CrashDebugger.cpp - Debug compilation crashes ----------------------===// | 
| Misha Brukman | 3da94ae | 2005-04-22 00:00:37 +0000 | [diff] [blame] | 2 | // | 
| John Criswell | 7c0e022 | 2003-10-20 17:47:21 +0000 | [diff] [blame] | 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. | 
| Misha Brukman | 3da94ae | 2005-04-22 00:00:37 +0000 | [diff] [blame] | 7 | // | 
| John Criswell | 7c0e022 | 2003-10-20 17:47:21 +0000 | [diff] [blame] | 8 | //===----------------------------------------------------------------------===// | 
| Chris Lattner | afade92 | 2002-11-20 22:28:10 +0000 | [diff] [blame] | 9 | // | 
 | 10 | // This file defines the bugpoint internals that narrow down compilation crashes | 
 | 11 | // | 
 | 12 | //===----------------------------------------------------------------------===// | 
 | 13 |  | 
 | 14 | #include "BugDriver.h" | 
| Chris Lattner | f1b20d8 | 2006-06-06 22:30:59 +0000 | [diff] [blame] | 15 | #include "ToolRunner.h" | 
| Chris Lattner | aae33f9 | 2003-04-24 22:24:58 +0000 | [diff] [blame] | 16 | #include "ListReducer.h" | 
| Chris Lattner | 286921e | 2003-04-24 23:51:38 +0000 | [diff] [blame] | 17 | #include "llvm/Constant.h" | 
| Bill Wendling | 4e3be89 | 2006-10-25 18:36:14 +0000 | [diff] [blame] | 18 | #include "llvm/DerivedTypes.h" | 
| Misha Brukman | 47b14a4 | 2004-07-29 17:30:56 +0000 | [diff] [blame] | 19 | #include "llvm/Instructions.h" | 
| Misha Brukman | e49603d | 2003-08-07 21:19:30 +0000 | [diff] [blame] | 20 | #include "llvm/Module.h" | 
 | 21 | #include "llvm/Pass.h" | 
 | 22 | #include "llvm/PassManager.h" | 
| Reid Spencer | ef9b9a7 | 2007-02-05 20:47:22 +0000 | [diff] [blame] | 23 | #include "llvm/ValueSymbolTable.h" | 
| Chris Lattner | 286921e | 2003-04-24 23:51:38 +0000 | [diff] [blame] | 24 | #include "llvm/Analysis/Verifier.h" | 
| Misha Brukman | e49603d | 2003-08-07 21:19:30 +0000 | [diff] [blame] | 25 | #include "llvm/Support/CFG.h" | 
| Chris Lattner | 286921e | 2003-04-24 23:51:38 +0000 | [diff] [blame] | 26 | #include "llvm/Transforms/Scalar.h" | 
| Chris Lattner | aae33f9 | 2003-04-24 22:24:58 +0000 | [diff] [blame] | 27 | #include "llvm/Transforms/Utils/Cloning.h" | 
| Reid Spencer | 551ccae | 2004-09-01 22:55:40 +0000 | [diff] [blame] | 28 | #include "llvm/Support/FileUtilities.h" | 
| Andrew Lenharth | 7c0a937 | 2006-03-05 22:21:36 +0000 | [diff] [blame] | 29 | #include "llvm/Support/CommandLine.h" | 
| Chris Lattner | afade92 | 2002-11-20 22:28:10 +0000 | [diff] [blame] | 30 | #include <fstream> | 
| Chris Lattner | aae33f9 | 2003-04-24 22:24:58 +0000 | [diff] [blame] | 31 | #include <set> | 
| Chris Lattner | fa76183 | 2004-01-14 03:38:37 +0000 | [diff] [blame] | 32 | using namespace llvm; | 
| Chris Lattner | afade92 | 2002-11-20 22:28:10 +0000 | [diff] [blame] | 33 |  | 
| Andrew Lenharth | 7c0a937 | 2006-03-05 22:21:36 +0000 | [diff] [blame] | 34 | namespace { | 
 | 35 |   cl::opt<bool> | 
 | 36 |   KeepMain("keep-main", | 
 | 37 |            cl::desc("Force function reduction to keep main"), | 
 | 38 |            cl::init(false)); | 
 | 39 | } | 
 | 40 |  | 
| Brian Gaeke | d0fde30 | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 41 | namespace llvm { | 
| Chris Lattner | 06905db | 2004-02-18 21:24:48 +0000 | [diff] [blame] | 42 |   class ReducePassList : public ListReducer<const PassInfo*> { | 
| Chris Lattner | fa76183 | 2004-01-14 03:38:37 +0000 | [diff] [blame] | 43 |     BugDriver &BD; | 
 | 44 |   public: | 
| Chris Lattner | 06905db | 2004-02-18 21:24:48 +0000 | [diff] [blame] | 45 |     ReducePassList(BugDriver &bd) : BD(bd) {} | 
| Misha Brukman | 3da94ae | 2005-04-22 00:00:37 +0000 | [diff] [blame] | 46 |  | 
| Chris Lattner | fa76183 | 2004-01-14 03:38:37 +0000 | [diff] [blame] | 47 |     // doTest - Return true iff running the "removed" passes succeeds, and | 
 | 48 |     // running the "Kept" passes fail when run on the output of the "removed" | 
 | 49 |     // passes.  If we return true, we update the current module of bugpoint. | 
 | 50 |     // | 
 | 51 |     virtual TestResult doTest(std::vector<const PassInfo*> &Removed, | 
 | 52 |                               std::vector<const PassInfo*> &Kept); | 
 | 53 |   }; | 
 | 54 | } | 
| Chris Lattner | aae33f9 | 2003-04-24 22:24:58 +0000 | [diff] [blame] | 55 |  | 
| Chris Lattner | 06905db | 2004-02-18 21:24:48 +0000 | [diff] [blame] | 56 | ReducePassList::TestResult | 
 | 57 | ReducePassList::doTest(std::vector<const PassInfo*> &Prefix, | 
 | 58 |                        std::vector<const PassInfo*> &Suffix) { | 
| Reid Spencer | 5f76760 | 2004-12-16 23:04:20 +0000 | [diff] [blame] | 59 |   sys::Path PrefixOutput; | 
| Chris Lattner | b417c79 | 2003-06-02 04:54:29 +0000 | [diff] [blame] | 60 |   Module *OrigProgram = 0; | 
| Chris Lattner | aae33f9 | 2003-04-24 22:24:58 +0000 | [diff] [blame] | 61 |   if (!Prefix.empty()) { | 
 | 62 |     std::cout << "Checking to see if these passes crash: " | 
 | 63 |               << getPassesString(Prefix) << ": "; | 
| Reid Spencer | 5f76760 | 2004-12-16 23:04:20 +0000 | [diff] [blame] | 64 |     std::string PfxOutput; | 
 | 65 |     if (BD.runPasses(Prefix, PfxOutput)) | 
| Chris Lattner | aae33f9 | 2003-04-24 22:24:58 +0000 | [diff] [blame] | 66 |       return KeepPrefix; | 
| Chris Lattner | b417c79 | 2003-06-02 04:54:29 +0000 | [diff] [blame] | 67 |  | 
| Reid Spencer | dd04df0 | 2005-07-07 23:21:43 +0000 | [diff] [blame] | 68 |     PrefixOutput.set(PfxOutput); | 
| Chris Lattner | b417c79 | 2003-06-02 04:54:29 +0000 | [diff] [blame] | 69 |     OrigProgram = BD.Program; | 
 | 70 |  | 
| Reid Spencer | 5f76760 | 2004-12-16 23:04:20 +0000 | [diff] [blame] | 71 |     BD.Program = ParseInputFile(PrefixOutput.toString()); | 
| Chris Lattner | b417c79 | 2003-06-02 04:54:29 +0000 | [diff] [blame] | 72 |     if (BD.Program == 0) { | 
| Gabor Greif | 8ff70c2 | 2007-07-04 21:55:50 +0000 | [diff] [blame] | 73 |       std::cerr << BD.getToolName() << ": Error reading bitcode file '" | 
| Chris Lattner | b417c79 | 2003-06-02 04:54:29 +0000 | [diff] [blame] | 74 |                 << PrefixOutput << "'!\n"; | 
 | 75 |       exit(1); | 
 | 76 |     } | 
| Reid Spencer | a229c5c | 2005-07-08 03:08:58 +0000 | [diff] [blame] | 77 |     PrefixOutput.eraseFromDisk(); | 
| Chris Lattner | aae33f9 | 2003-04-24 22:24:58 +0000 | [diff] [blame] | 78 |   } | 
 | 79 |  | 
 | 80 |   std::cout << "Checking to see if these passes crash: " | 
 | 81 |             << getPassesString(Suffix) << ": "; | 
| Misha Brukman | 3da94ae | 2005-04-22 00:00:37 +0000 | [diff] [blame] | 82 |  | 
| Chris Lattner | aae33f9 | 2003-04-24 22:24:58 +0000 | [diff] [blame] | 83 |   if (BD.runPasses(Suffix)) { | 
 | 84 |     delete OrigProgram;            // The suffix crashes alone... | 
 | 85 |     return KeepSuffix; | 
 | 86 |   } | 
 | 87 |  | 
 | 88 |   // Nothing failed, restore state... | 
| Chris Lattner | b417c79 | 2003-06-02 04:54:29 +0000 | [diff] [blame] | 89 |   if (OrigProgram) { | 
 | 90 |     delete BD.Program; | 
 | 91 |     BD.Program = OrigProgram; | 
 | 92 |   } | 
| Chris Lattner | aae33f9 | 2003-04-24 22:24:58 +0000 | [diff] [blame] | 93 |   return NoFailure; | 
 | 94 | } | 
 | 95 |  | 
| Bill Wendling | 4e3be89 | 2006-10-25 18:36:14 +0000 | [diff] [blame] | 96 | namespace { | 
 | 97 |   /// ReduceCrashingGlobalVariables - This works by removing the global | 
 | 98 |   /// variable's initializer and seeing if the program still crashes. If it | 
 | 99 |   /// does, then we keep that program and try again. | 
 | 100 |   /// | 
 | 101 |   class ReduceCrashingGlobalVariables : public ListReducer<GlobalVariable*> { | 
 | 102 |     BugDriver &BD; | 
 | 103 |     bool (*TestFn)(BugDriver &, Module *); | 
 | 104 |   public: | 
 | 105 |     ReduceCrashingGlobalVariables(BugDriver &bd, | 
 | 106 |                                   bool (*testFn)(BugDriver&, Module*)) | 
 | 107 |       : BD(bd), TestFn(testFn) {} | 
 | 108 |  | 
 | 109 |     virtual TestResult doTest(std::vector<GlobalVariable*>& Prefix, | 
 | 110 |                               std::vector<GlobalVariable*>& Kept) { | 
 | 111 |       if (!Kept.empty() && TestGlobalVariables(Kept)) | 
 | 112 |         return KeepSuffix; | 
 | 113 |  | 
 | 114 |       if (!Prefix.empty() && TestGlobalVariables(Prefix)) | 
 | 115 |         return KeepPrefix; | 
 | 116 |  | 
 | 117 |       return NoFailure; | 
 | 118 |     } | 
 | 119 |  | 
 | 120 |     bool TestGlobalVariables(std::vector<GlobalVariable*>& GVs); | 
 | 121 |   }; | 
 | 122 | } | 
 | 123 |  | 
 | 124 | bool | 
 | 125 | ReduceCrashingGlobalVariables::TestGlobalVariables( | 
 | 126 |                               std::vector<GlobalVariable*>& GVs) { | 
 | 127 |   // Clone the program to try hacking it apart... | 
 | 128 |   Module *M = CloneModule(BD.getProgram()); | 
 | 129 |  | 
 | 130 |   // Convert list to set for fast lookup... | 
 | 131 |   std::set<GlobalVariable*> GVSet; | 
 | 132 |  | 
 | 133 |   for (unsigned i = 0, e = GVs.size(); i != e; ++i) { | 
 | 134 |     GlobalVariable* CMGV = M->getNamedGlobal(GVs[i]->getName()); | 
 | 135 |     assert(CMGV && "Global Variable not in module?!"); | 
 | 136 |     GVSet.insert(CMGV); | 
 | 137 |   } | 
 | 138 |  | 
 | 139 |   std::cout << "Checking for crash with only these global variables: "; | 
 | 140 |   PrintGlobalVariableList(GVs); | 
 | 141 |   std::cout << ": "; | 
 | 142 |  | 
 | 143 |   // Loop over and delete any global variables which we aren't supposed to be | 
 | 144 |   // playing with... | 
 | 145 |   for (Module::global_iterator I = M->global_begin(), E = M->global_end(); | 
 | 146 |        I != E; ++I) | 
 | 147 |     if (I->hasInitializer()) { | 
 | 148 |       I->setInitializer(0); | 
 | 149 |       I->setLinkage(GlobalValue::ExternalLinkage); | 
 | 150 |     } | 
 | 151 |  | 
 | 152 |   // Try running the hacked up program... | 
 | 153 |   if (TestFn(BD, M)) { | 
 | 154 |     BD.setNewProgram(M);        // It crashed, keep the trimmed version... | 
 | 155 |  | 
 | 156 |     // Make sure to use global variable pointers that point into the now-current | 
 | 157 |     // module. | 
 | 158 |     GVs.assign(GVSet.begin(), GVSet.end()); | 
 | 159 |     return true; | 
 | 160 |   } | 
 | 161 |  | 
 | 162 |   delete M; | 
 | 163 |   return false; | 
 | 164 | } | 
 | 165 |  | 
| Chris Lattner | fa76183 | 2004-01-14 03:38:37 +0000 | [diff] [blame] | 166 | namespace llvm { | 
| Bill Wendling | 4e3be89 | 2006-10-25 18:36:14 +0000 | [diff] [blame] | 167 |   /// ReduceCrashingFunctions reducer - This works by removing functions and | 
 | 168 |   /// seeing if the program still crashes. If it does, then keep the newer, | 
 | 169 |   /// smaller program. | 
 | 170 |   /// | 
| Chris Lattner | efdc0b5 | 2004-03-14 20:50:42 +0000 | [diff] [blame] | 171 |   class ReduceCrashingFunctions : public ListReducer<Function*> { | 
| Chris Lattner | fa76183 | 2004-01-14 03:38:37 +0000 | [diff] [blame] | 172 |     BugDriver &BD; | 
| Chris Lattner | 8b18927 | 2004-02-18 23:26:28 +0000 | [diff] [blame] | 173 |     bool (*TestFn)(BugDriver &, Module *); | 
| Chris Lattner | fa76183 | 2004-01-14 03:38:37 +0000 | [diff] [blame] | 174 |   public: | 
| Chris Lattner | 8b18927 | 2004-02-18 23:26:28 +0000 | [diff] [blame] | 175 |     ReduceCrashingFunctions(BugDriver &bd, | 
 | 176 |                             bool (*testFn)(BugDriver &, Module *)) | 
 | 177 |       : BD(bd), TestFn(testFn) {} | 
| Misha Brukman | 3da94ae | 2005-04-22 00:00:37 +0000 | [diff] [blame] | 178 |  | 
| Chris Lattner | efdc0b5 | 2004-03-14 20:50:42 +0000 | [diff] [blame] | 179 |     virtual TestResult doTest(std::vector<Function*> &Prefix, | 
 | 180 |                               std::vector<Function*> &Kept) { | 
| Chris Lattner | fa76183 | 2004-01-14 03:38:37 +0000 | [diff] [blame] | 181 |       if (!Kept.empty() && TestFuncs(Kept)) | 
 | 182 |         return KeepSuffix; | 
 | 183 |       if (!Prefix.empty() && TestFuncs(Prefix)) | 
 | 184 |         return KeepPrefix; | 
 | 185 |       return NoFailure; | 
 | 186 |     } | 
| Misha Brukman | 3da94ae | 2005-04-22 00:00:37 +0000 | [diff] [blame] | 187 |  | 
| Chris Lattner | efdc0b5 | 2004-03-14 20:50:42 +0000 | [diff] [blame] | 188 |     bool TestFuncs(std::vector<Function*> &Prefix); | 
| Chris Lattner | fa76183 | 2004-01-14 03:38:37 +0000 | [diff] [blame] | 189 |   }; | 
 | 190 | } | 
| Chris Lattner | aae33f9 | 2003-04-24 22:24:58 +0000 | [diff] [blame] | 191 |  | 
| Chris Lattner | efdc0b5 | 2004-03-14 20:50:42 +0000 | [diff] [blame] | 192 | bool ReduceCrashingFunctions::TestFuncs(std::vector<Function*> &Funcs) { | 
| Andrew Lenharth | 7c0a937 | 2006-03-05 22:21:36 +0000 | [diff] [blame] | 193 |  | 
 | 194 |   //if main isn't present, claim there is no problem | 
| Bill Wendling | 4e3be89 | 2006-10-25 18:36:14 +0000 | [diff] [blame] | 195 |   if (KeepMain && find(Funcs.begin(), Funcs.end(), | 
| Reid Spencer | 688b049 | 2007-02-05 21:19:13 +0000 | [diff] [blame] | 196 |                        BD.getProgram()->getFunction("main")) == Funcs.end()) | 
| Andrew Lenharth | 7c0a937 | 2006-03-05 22:21:36 +0000 | [diff] [blame] | 197 |     return false; | 
 | 198 |  | 
| Misha Brukman | cf00c4a | 2003-10-10 17:57:28 +0000 | [diff] [blame] | 199 |   // Clone the program to try hacking it apart... | 
| Chris Lattner | 06905db | 2004-02-18 21:24:48 +0000 | [diff] [blame] | 200 |   Module *M = CloneModule(BD.getProgram()); | 
| Misha Brukman | 3da94ae | 2005-04-22 00:00:37 +0000 | [diff] [blame] | 201 |  | 
| Chris Lattner | aae33f9 | 2003-04-24 22:24:58 +0000 | [diff] [blame] | 202 |   // Convert list to set for fast lookup... | 
 | 203 |   std::set<Function*> Functions; | 
 | 204 |   for (unsigned i = 0, e = Funcs.size(); i != e; ++i) { | 
| Chris Lattner | cc540eb | 2006-03-16 23:16:17 +0000 | [diff] [blame] | 205 |     // FIXME: bugpoint should add names to all stripped symbols. | 
 | 206 |     assert(!Funcs[i]->getName().empty() && | 
 | 207 |            "Bugpoint doesn't work on stripped modules yet PR718!"); | 
| Reid Spencer | ef9b9a7 | 2007-02-05 20:47:22 +0000 | [diff] [blame] | 208 |     Function *CMF = M->getFunction(Funcs[i]->getName()); | 
| Chris Lattner | aae33f9 | 2003-04-24 22:24:58 +0000 | [diff] [blame] | 209 |     assert(CMF && "Function not in module?!"); | 
| Reid Spencer | ef9b9a7 | 2007-02-05 20:47:22 +0000 | [diff] [blame] | 210 |     assert(CMF->getFunctionType() == Funcs[i]->getFunctionType() && "wrong ty"); | 
| Chris Lattner | f607b79 | 2003-04-24 22:54:06 +0000 | [diff] [blame] | 211 |     Functions.insert(CMF); | 
| Chris Lattner | aae33f9 | 2003-04-24 22:24:58 +0000 | [diff] [blame] | 212 |   } | 
 | 213 |  | 
| Chris Lattner | efdc0b5 | 2004-03-14 20:50:42 +0000 | [diff] [blame] | 214 |   std::cout << "Checking for crash with only these functions: "; | 
 | 215 |   PrintFunctionList(Funcs); | 
| Chris Lattner | aae33f9 | 2003-04-24 22:24:58 +0000 | [diff] [blame] | 216 |   std::cout << ": "; | 
 | 217 |  | 
 | 218 |   // Loop over and delete any functions which we aren't supposed to be playing | 
 | 219 |   // with... | 
 | 220 |   for (Module::iterator I = M->begin(), E = M->end(); I != E; ++I) | 
| Reid Spencer | 5cbf985 | 2007-01-30 20:08:39 +0000 | [diff] [blame] | 221 |     if (!I->isDeclaration() && !Functions.count(I)) | 
| Chris Lattner | aae33f9 | 2003-04-24 22:24:58 +0000 | [diff] [blame] | 222 |       DeleteFunctionBody(I); | 
 | 223 |  | 
 | 224 |   // Try running the hacked up program... | 
| Chris Lattner | 8b18927 | 2004-02-18 23:26:28 +0000 | [diff] [blame] | 225 |   if (TestFn(BD, M)) { | 
| Chris Lattner | 06905db | 2004-02-18 21:24:48 +0000 | [diff] [blame] | 226 |     BD.setNewProgram(M);        // It crashed, keep the trimmed version... | 
| Chris Lattner | aae33f9 | 2003-04-24 22:24:58 +0000 | [diff] [blame] | 227 |  | 
 | 228 |     // Make sure to use function pointers that point into the now-current | 
 | 229 |     // module. | 
 | 230 |     Funcs.assign(Functions.begin(), Functions.end()); | 
 | 231 |     return true; | 
 | 232 |   } | 
| Chris Lattner | 06905db | 2004-02-18 21:24:48 +0000 | [diff] [blame] | 233 |   delete M; | 
| Chris Lattner | aae33f9 | 2003-04-24 22:24:58 +0000 | [diff] [blame] | 234 |   return false; | 
 | 235 | } | 
 | 236 |  | 
| Chris Lattner | 640f22e | 2003-04-24 17:02:17 +0000 | [diff] [blame] | 237 |  | 
| Chris Lattner | f913f40 | 2004-02-18 21:29:46 +0000 | [diff] [blame] | 238 | namespace { | 
| Chris Lattner | fa76183 | 2004-01-14 03:38:37 +0000 | [diff] [blame] | 239 |   /// ReduceCrashingBlocks reducer - This works by setting the terminators of | 
 | 240 |   /// all terminators except the specified basic blocks to a 'ret' instruction, | 
 | 241 |   /// then running the simplify-cfg pass.  This has the effect of chopping up | 
 | 242 |   /// the CFG really fast which can reduce large functions quickly. | 
 | 243 |   /// | 
| Chris Lattner | 8b18927 | 2004-02-18 23:26:28 +0000 | [diff] [blame] | 244 |   class ReduceCrashingBlocks : public ListReducer<const BasicBlock*> { | 
| Chris Lattner | fa76183 | 2004-01-14 03:38:37 +0000 | [diff] [blame] | 245 |     BugDriver &BD; | 
| Chris Lattner | 8b18927 | 2004-02-18 23:26:28 +0000 | [diff] [blame] | 246 |     bool (*TestFn)(BugDriver &, Module *); | 
| Chris Lattner | fa76183 | 2004-01-14 03:38:37 +0000 | [diff] [blame] | 247 |   public: | 
| Chris Lattner | 8b18927 | 2004-02-18 23:26:28 +0000 | [diff] [blame] | 248 |     ReduceCrashingBlocks(BugDriver &bd, bool (*testFn)(BugDriver &, Module *)) | 
 | 249 |       : BD(bd), TestFn(testFn) {} | 
| Misha Brukman | 3da94ae | 2005-04-22 00:00:37 +0000 | [diff] [blame] | 250 |  | 
| Chris Lattner | 8b18927 | 2004-02-18 23:26:28 +0000 | [diff] [blame] | 251 |     virtual TestResult doTest(std::vector<const BasicBlock*> &Prefix, | 
 | 252 |                               std::vector<const BasicBlock*> &Kept) { | 
| Chris Lattner | fa76183 | 2004-01-14 03:38:37 +0000 | [diff] [blame] | 253 |       if (!Kept.empty() && TestBlocks(Kept)) | 
 | 254 |         return KeepSuffix; | 
 | 255 |       if (!Prefix.empty() && TestBlocks(Prefix)) | 
 | 256 |         return KeepPrefix; | 
 | 257 |       return NoFailure; | 
 | 258 |     } | 
| Misha Brukman | 3da94ae | 2005-04-22 00:00:37 +0000 | [diff] [blame] | 259 |  | 
| Chris Lattner | 8b18927 | 2004-02-18 23:26:28 +0000 | [diff] [blame] | 260 |     bool TestBlocks(std::vector<const BasicBlock*> &Prefix); | 
| Chris Lattner | fa76183 | 2004-01-14 03:38:37 +0000 | [diff] [blame] | 261 |   }; | 
 | 262 | } | 
| Chris Lattner | 286921e | 2003-04-24 23:51:38 +0000 | [diff] [blame] | 263 |  | 
| Chris Lattner | 8b18927 | 2004-02-18 23:26:28 +0000 | [diff] [blame] | 264 | bool ReduceCrashingBlocks::TestBlocks(std::vector<const BasicBlock*> &BBs) { | 
| Misha Brukman | cf00c4a | 2003-10-10 17:57:28 +0000 | [diff] [blame] | 265 |   // Clone the program to try hacking it apart... | 
| Chris Lattner | 06905db | 2004-02-18 21:24:48 +0000 | [diff] [blame] | 266 |   Module *M = CloneModule(BD.getProgram()); | 
| Misha Brukman | 3da94ae | 2005-04-22 00:00:37 +0000 | [diff] [blame] | 267 |  | 
| Chris Lattner | 286921e | 2003-04-24 23:51:38 +0000 | [diff] [blame] | 268 |   // Convert list to set for fast lookup... | 
 | 269 |   std::set<BasicBlock*> Blocks; | 
 | 270 |   for (unsigned i = 0, e = BBs.size(); i != e; ++i) { | 
 | 271 |     // Convert the basic block from the original module to the new module... | 
| Chris Lattner | 8b18927 | 2004-02-18 23:26:28 +0000 | [diff] [blame] | 272 |     const Function *F = BBs[i]->getParent(); | 
| Reid Spencer | ef9b9a7 | 2007-02-05 20:47:22 +0000 | [diff] [blame] | 273 |     Function *CMF = M->getFunction(F->getName()); | 
| Chris Lattner | 286921e | 2003-04-24 23:51:38 +0000 | [diff] [blame] | 274 |     assert(CMF && "Function not in module?!"); | 
| Reid Spencer | ef9b9a7 | 2007-02-05 20:47:22 +0000 | [diff] [blame] | 275 |     assert(CMF->getFunctionType() == F->getFunctionType() && "wrong type?"); | 
| Chris Lattner | 286921e | 2003-04-24 23:51:38 +0000 | [diff] [blame] | 276 |  | 
 | 277 |     // Get the mapped basic block... | 
 | 278 |     Function::iterator CBI = CMF->begin(); | 
| Chris Lattner | 8b18927 | 2004-02-18 23:26:28 +0000 | [diff] [blame] | 279 |     std::advance(CBI, std::distance(F->begin(), | 
 | 280 |                                     Function::const_iterator(BBs[i]))); | 
| Chris Lattner | 286921e | 2003-04-24 23:51:38 +0000 | [diff] [blame] | 281 |     Blocks.insert(CBI); | 
 | 282 |   } | 
 | 283 |  | 
 | 284 |   std::cout << "Checking for crash with only these blocks:"; | 
| Chris Lattner | 73b96bd | 2003-10-27 04:44:59 +0000 | [diff] [blame] | 285 |   unsigned NumPrint = Blocks.size(); | 
 | 286 |   if (NumPrint > 10) NumPrint = 10; | 
 | 287 |   for (unsigned i = 0, e = NumPrint; i != e; ++i) | 
| Chris Lattner | 286921e | 2003-04-24 23:51:38 +0000 | [diff] [blame] | 288 |     std::cout << " " << BBs[i]->getName(); | 
| Chris Lattner | 73b96bd | 2003-10-27 04:44:59 +0000 | [diff] [blame] | 289 |   if (NumPrint < Blocks.size()) | 
 | 290 |     std::cout << "... <" << Blocks.size() << " total>"; | 
| Chris Lattner | 286921e | 2003-04-24 23:51:38 +0000 | [diff] [blame] | 291 |   std::cout << ": "; | 
 | 292 |  | 
 | 293 |   // Loop over and delete any hack up any blocks that are not listed... | 
 | 294 |   for (Module::iterator I = M->begin(), E = M->end(); I != E; ++I) | 
 | 295 |     for (Function::iterator BB = I->begin(), E = I->end(); BB != E; ++BB) | 
| Chris Lattner | 8bc098b | 2003-11-22 02:10:38 +0000 | [diff] [blame] | 296 |       if (!Blocks.count(BB) && BB->getTerminator()->getNumSuccessors()) { | 
| Chris Lattner | 286921e | 2003-04-24 23:51:38 +0000 | [diff] [blame] | 297 |         // Loop over all of the successors of this block, deleting any PHI nodes | 
 | 298 |         // that might include it. | 
 | 299 |         for (succ_iterator SI = succ_begin(BB), E = succ_end(BB); SI != E; ++SI) | 
 | 300 |           (*SI)->removePredecessor(BB); | 
 | 301 |  | 
| Chris Lattner | 8bc098b | 2003-11-22 02:10:38 +0000 | [diff] [blame] | 302 |         if (BB->getTerminator()->getType() != Type::VoidTy) | 
 | 303 |           BB->getTerminator()->replaceAllUsesWith( | 
 | 304 |                       Constant::getNullValue(BB->getTerminator()->getType())); | 
 | 305 |  | 
| Chris Lattner | 286921e | 2003-04-24 23:51:38 +0000 | [diff] [blame] | 306 |         // Delete the old terminator instruction... | 
 | 307 |         BB->getInstList().pop_back(); | 
| Misha Brukman | 3da94ae | 2005-04-22 00:00:37 +0000 | [diff] [blame] | 308 |  | 
| Chris Lattner | 286921e | 2003-04-24 23:51:38 +0000 | [diff] [blame] | 309 |         // Add a new return instruction of the appropriate type... | 
 | 310 |         const Type *RetTy = BB->getParent()->getReturnType(); | 
| Chris Lattner | 8bc098b | 2003-11-22 02:10:38 +0000 | [diff] [blame] | 311 |         new ReturnInst(RetTy == Type::VoidTy ? 0 : | 
 | 312 |                        Constant::getNullValue(RetTy), BB); | 
| Chris Lattner | 286921e | 2003-04-24 23:51:38 +0000 | [diff] [blame] | 313 |       } | 
 | 314 |  | 
 | 315 |   // The CFG Simplifier pass may delete one of the basic blocks we are | 
 | 316 |   // interested in.  If it does we need to take the block out of the list.  Make | 
 | 317 |   // a "persistent mapping" by turning basic blocks into <function, name> pairs. | 
 | 318 |   // This won't work well if blocks are unnamed, but that is just the risk we | 
 | 319 |   // have to take. | 
 | 320 |   std::vector<std::pair<Function*, std::string> > BlockInfo; | 
 | 321 |  | 
 | 322 |   for (std::set<BasicBlock*>::iterator I = Blocks.begin(), E = Blocks.end(); | 
 | 323 |        I != E; ++I) | 
 | 324 |     BlockInfo.push_back(std::make_pair((*I)->getParent(), (*I)->getName())); | 
 | 325 |  | 
 | 326 |   // Now run the CFG simplify pass on the function... | 
 | 327 |   PassManager Passes; | 
 | 328 |   Passes.add(createCFGSimplificationPass()); | 
 | 329 |   Passes.add(createVerifierPass()); | 
 | 330 |   Passes.run(*M); | 
 | 331 |  | 
 | 332 |   // Try running on the hacked up program... | 
| Chris Lattner | 8b18927 | 2004-02-18 23:26:28 +0000 | [diff] [blame] | 333 |   if (TestFn(BD, M)) { | 
| Chris Lattner | 06905db | 2004-02-18 21:24:48 +0000 | [diff] [blame] | 334 |     BD.setNewProgram(M);      // It crashed, keep the trimmed version... | 
| Chris Lattner | 286921e | 2003-04-24 23:51:38 +0000 | [diff] [blame] | 335 |  | 
 | 336 |     // Make sure to use basic block pointers that point into the now-current | 
 | 337 |     // module, and that they don't include any deleted blocks. | 
 | 338 |     BBs.clear(); | 
 | 339 |     for (unsigned i = 0, e = BlockInfo.size(); i != e; ++i) { | 
| Reid Spencer | ef9b9a7 | 2007-02-05 20:47:22 +0000 | [diff] [blame] | 340 |       ValueSymbolTable &ST = BlockInfo[i].first->getValueSymbolTable(); | 
 | 341 |       Value* V = ST.lookup(BlockInfo[i].second); | 
 | 342 |       if (V && V->getType() == Type::LabelTy) | 
 | 343 |         BBs.push_back(cast<BasicBlock>(V)); | 
| Chris Lattner | 286921e | 2003-04-24 23:51:38 +0000 | [diff] [blame] | 344 |     } | 
 | 345 |     return true; | 
 | 346 |   } | 
| Chris Lattner | 06905db | 2004-02-18 21:24:48 +0000 | [diff] [blame] | 347 |   delete M;  // It didn't crash, try something else. | 
| Chris Lattner | 286921e | 2003-04-24 23:51:38 +0000 | [diff] [blame] | 348 |   return false; | 
 | 349 | } | 
 | 350 |  | 
| Chris Lattner | 8b18927 | 2004-02-18 23:26:28 +0000 | [diff] [blame] | 351 | /// DebugACrash - Given a predicate that determines whether a component crashes | 
 | 352 | /// on a program, try to destructively reduce the program while still keeping | 
 | 353 | /// the predicate true. | 
 | 354 | static bool DebugACrash(BugDriver &BD,  bool (*TestFn)(BugDriver &, Module *)) { | 
| Bill Wendling | 4e3be89 | 2006-10-25 18:36:14 +0000 | [diff] [blame] | 355 |   // See if we can get away with nuking some of the global variable initializers | 
| Chris Lattner | 5f73e38 | 2003-04-25 00:53:05 +0000 | [diff] [blame] | 356 |   // in the program... | 
| Chris Lattner | 852b4d4 | 2005-03-15 15:48:06 +0000 | [diff] [blame] | 357 |   if (BD.getProgram()->global_begin() != BD.getProgram()->global_end()) { | 
| Bill Wendling | 4e3be89 | 2006-10-25 18:36:14 +0000 | [diff] [blame] | 358 |     // Now try to reduce the number of global variable initializers in the | 
 | 359 |     // module to something small. | 
| Bill Wendling | b3d83a3 | 2006-10-27 20:18:06 +0000 | [diff] [blame] | 360 |     Module *M = CloneModule(BD.getProgram()); | 
 | 361 |     bool DeletedInit = false; | 
| Misha Brukman | 3da94ae | 2005-04-22 00:00:37 +0000 | [diff] [blame] | 362 |  | 
| Bill Wendling | b3d83a3 | 2006-10-27 20:18:06 +0000 | [diff] [blame] | 363 |     for (Module::global_iterator I = M->global_begin(), E = M->global_end(); | 
 | 364 |          I != E; ++I) | 
 | 365 |       if (I->hasInitializer()) { | 
 | 366 |         I->setInitializer(0); | 
 | 367 |         I->setLinkage(GlobalValue::ExternalLinkage); | 
 | 368 |         DeletedInit = true; | 
 | 369 |       } | 
| Bill Wendling | 4e3be89 | 2006-10-25 18:36:14 +0000 | [diff] [blame] | 370 |  | 
| Bill Wendling | b3d83a3 | 2006-10-27 20:18:06 +0000 | [diff] [blame] | 371 |     if (!DeletedInit) { | 
 | 372 |       delete M;  // No change made... | 
 | 373 |     } else { | 
 | 374 |       // See if the program still causes a crash... | 
 | 375 |       std::cout << "\nChecking to see if we can delete global inits: "; | 
| Bill Wendling | 4e3be89 | 2006-10-25 18:36:14 +0000 | [diff] [blame] | 376 |  | 
| Bill Wendling | b3d83a3 | 2006-10-27 20:18:06 +0000 | [diff] [blame] | 377 |       if (TestFn(BD, M)) {      // Still crashes? | 
 | 378 |         BD.setNewProgram(M); | 
 | 379 |         std::cout << "\n*** Able to remove all global initializers!\n"; | 
 | 380 |       } else {                  // No longer crashes? | 
 | 381 |         std::cout << "  - Removing all global inits hides problem!\n"; | 
 | 382 |         delete M; | 
| Bill Wendling | 4e3be89 | 2006-10-25 18:36:14 +0000 | [diff] [blame] | 383 |  | 
| Bill Wendling | b3d83a3 | 2006-10-27 20:18:06 +0000 | [diff] [blame] | 384 |         std::vector<GlobalVariable*> GVs; | 
 | 385 |  | 
 | 386 |         for (Module::global_iterator I = BD.getProgram()->global_begin(), | 
 | 387 |                E = BD.getProgram()->global_end(); I != E; ++I) | 
 | 388 |           if (I->hasInitializer()) | 
 | 389 |             GVs.push_back(I); | 
 | 390 |  | 
 | 391 |         if (GVs.size() > 1 && !BugpointIsInterrupted) { | 
 | 392 |           std::cout << "\n*** Attempting to reduce the number of global " | 
 | 393 |                     << "variables in the testcase\n"; | 
 | 394 |  | 
 | 395 |           unsigned OldSize = GVs.size(); | 
 | 396 |           ReduceCrashingGlobalVariables(BD, TestFn).reduceList(GVs); | 
 | 397 |  | 
 | 398 |           if (GVs.size() < OldSize) | 
| Gabor Greif | 8ff70c2 | 2007-07-04 21:55:50 +0000 | [diff] [blame] | 399 |             BD.EmitProgressBitcode("reduced-global-variables"); | 
| Bill Wendling | b3d83a3 | 2006-10-27 20:18:06 +0000 | [diff] [blame] | 400 |         } | 
| Bill Wendling | 22706e8 | 2006-10-27 20:22:04 +0000 | [diff] [blame] | 401 |       } | 
| Chris Lattner | 5f73e38 | 2003-04-25 00:53:05 +0000 | [diff] [blame] | 402 |     } | 
 | 403 |   } | 
| Misha Brukman | 3da94ae | 2005-04-22 00:00:37 +0000 | [diff] [blame] | 404 |  | 
| Chris Lattner | aae33f9 | 2003-04-24 22:24:58 +0000 | [diff] [blame] | 405 |   // Now try to reduce the number of functions in the module to something small. | 
| Chris Lattner | efdc0b5 | 2004-03-14 20:50:42 +0000 | [diff] [blame] | 406 |   std::vector<Function*> Functions; | 
 | 407 |   for (Module::iterator I = BD.getProgram()->begin(), | 
| Chris Lattner | 8b18927 | 2004-02-18 23:26:28 +0000 | [diff] [blame] | 408 |          E = BD.getProgram()->end(); I != E; ++I) | 
| Reid Spencer | 5cbf985 | 2007-01-30 20:08:39 +0000 | [diff] [blame] | 409 |     if (!I->isDeclaration()) | 
| Chris Lattner | aae33f9 | 2003-04-24 22:24:58 +0000 | [diff] [blame] | 410 |       Functions.push_back(I); | 
| Chris Lattner | afade92 | 2002-11-20 22:28:10 +0000 | [diff] [blame] | 411 |  | 
| Chris Lattner | f9aaae0 | 2005-08-02 02:16:17 +0000 | [diff] [blame] | 412 |   if (Functions.size() > 1 && !BugpointIsInterrupted) { | 
| Chris Lattner | aae33f9 | 2003-04-24 22:24:58 +0000 | [diff] [blame] | 413 |     std::cout << "\n*** Attempting to reduce the number of functions " | 
 | 414 |       "in the testcase\n"; | 
| Chris Lattner | afade92 | 2002-11-20 22:28:10 +0000 | [diff] [blame] | 415 |  | 
| Chris Lattner | 8b18927 | 2004-02-18 23:26:28 +0000 | [diff] [blame] | 416 |     unsigned OldSize = Functions.size(); | 
 | 417 |     ReduceCrashingFunctions(BD, TestFn).reduceList(Functions); | 
| Chris Lattner | afade92 | 2002-11-20 22:28:10 +0000 | [diff] [blame] | 418 |  | 
| Chris Lattner | f9aaae0 | 2005-08-02 02:16:17 +0000 | [diff] [blame] | 419 |     if (Functions.size() < OldSize) | 
| Gabor Greif | 8ff70c2 | 2007-07-04 21:55:50 +0000 | [diff] [blame] | 420 |       BD.EmitProgressBitcode("reduced-function"); | 
| Chris Lattner | afade92 | 2002-11-20 22:28:10 +0000 | [diff] [blame] | 421 |   } | 
 | 422 |  | 
| Chris Lattner | 286921e | 2003-04-24 23:51:38 +0000 | [diff] [blame] | 423 |   // Attempt to delete entire basic blocks at a time to speed up | 
 | 424 |   // convergence... this actually works by setting the terminator of the blocks | 
 | 425 |   // to a return instruction then running simplifycfg, which can potentially | 
 | 426 |   // shrinks the code dramatically quickly | 
 | 427 |   // | 
| Chris Lattner | f9aaae0 | 2005-08-02 02:16:17 +0000 | [diff] [blame] | 428 |   if (!DisableSimplifyCFG && !BugpointIsInterrupted) { | 
| Chris Lattner | 8b18927 | 2004-02-18 23:26:28 +0000 | [diff] [blame] | 429 |     std::vector<const BasicBlock*> Blocks; | 
 | 430 |     for (Module::const_iterator I = BD.getProgram()->begin(), | 
 | 431 |            E = BD.getProgram()->end(); I != E; ++I) | 
 | 432 |       for (Function::const_iterator FI = I->begin(), E = I->end(); FI !=E; ++FI) | 
| Chris Lattner | 47ae4a1 | 2003-08-05 15:51:05 +0000 | [diff] [blame] | 433 |         Blocks.push_back(FI); | 
| Chris Lattner | 8b18927 | 2004-02-18 23:26:28 +0000 | [diff] [blame] | 434 |     ReduceCrashingBlocks(BD, TestFn).reduceList(Blocks); | 
| Chris Lattner | 47ae4a1 | 2003-08-05 15:51:05 +0000 | [diff] [blame] | 435 |   } | 
| Chris Lattner | 218e26e | 2002-12-23 23:49:59 +0000 | [diff] [blame] | 436 |  | 
| Chris Lattner | aae33f9 | 2003-04-24 22:24:58 +0000 | [diff] [blame] | 437 |   // FIXME: This should use the list reducer to converge faster by deleting | 
 | 438 |   // larger chunks of instructions at a time! | 
| Chris Lattner | b2c180f | 2004-03-13 19:35:54 +0000 | [diff] [blame] | 439 |   unsigned Simplification = 2; | 
| Chris Lattner | 6520785 | 2003-01-23 02:48:33 +0000 | [diff] [blame] | 440 |   do { | 
| Chris Lattner | f9aaae0 | 2005-08-02 02:16:17 +0000 | [diff] [blame] | 441 |     if (BugpointIsInterrupted) break; | 
| Chris Lattner | 6520785 | 2003-01-23 02:48:33 +0000 | [diff] [blame] | 442 |     --Simplification; | 
 | 443 |     std::cout << "\n*** Attempting to reduce testcase by deleting instruc" | 
| Misha Brukman | eed80e2 | 2004-07-23 01:30:49 +0000 | [diff] [blame] | 444 |               << "tions: Simplification Level #" << Simplification << '\n'; | 
| Chris Lattner | 6520785 | 2003-01-23 02:48:33 +0000 | [diff] [blame] | 445 |  | 
| Misha Brukman | 5560c9d | 2003-08-18 14:43:39 +0000 | [diff] [blame] | 446 |     // Now that we have deleted the functions that are unnecessary for the | 
 | 447 |     // program, try to remove instructions that are not necessary to cause the | 
| Chris Lattner | 6520785 | 2003-01-23 02:48:33 +0000 | [diff] [blame] | 448 |     // crash.  To do this, we loop through all of the instructions in the | 
 | 449 |     // remaining functions, deleting them (replacing any values produced with | 
 | 450 |     // nulls), and then running ADCE and SimplifyCFG.  If the transformed input | 
 | 451 |     // still triggers failure, keep deleting until we cannot trigger failure | 
 | 452 |     // anymore. | 
 | 453 |     // | 
| Chris Lattner | f66d906 | 2004-02-18 23:59:11 +0000 | [diff] [blame] | 454 |     unsigned InstructionsToSkipBeforeDeleting = 0; | 
| Chris Lattner | 6520785 | 2003-01-23 02:48:33 +0000 | [diff] [blame] | 455 |   TryAgain: | 
| Misha Brukman | 3da94ae | 2005-04-22 00:00:37 +0000 | [diff] [blame] | 456 |  | 
| Chris Lattner | 6520785 | 2003-01-23 02:48:33 +0000 | [diff] [blame] | 457 |     // Loop over all of the (non-terminator) instructions remaining in the | 
 | 458 |     // function, attempting to delete them. | 
| Chris Lattner | f66d906 | 2004-02-18 23:59:11 +0000 | [diff] [blame] | 459 |     unsigned CurInstructionNum = 0; | 
| Chris Lattner | 8b18927 | 2004-02-18 23:26:28 +0000 | [diff] [blame] | 460 |     for (Module::const_iterator FI = BD.getProgram()->begin(), | 
 | 461 |            E = BD.getProgram()->end(); FI != E; ++FI) | 
| Reid Spencer | 5cbf985 | 2007-01-30 20:08:39 +0000 | [diff] [blame] | 462 |       if (!FI->isDeclaration()) | 
| Chris Lattner | 8b18927 | 2004-02-18 23:26:28 +0000 | [diff] [blame] | 463 |         for (Function::const_iterator BI = FI->begin(), E = FI->end(); BI != E; | 
 | 464 |              ++BI) | 
 | 465 |           for (BasicBlock::const_iterator I = BI->begin(), E = --BI->end(); | 
| Chris Lattner | f66d906 | 2004-02-18 23:59:11 +0000 | [diff] [blame] | 466 |                I != E; ++I, ++CurInstructionNum) | 
 | 467 |             if (InstructionsToSkipBeforeDeleting) { | 
 | 468 |               --InstructionsToSkipBeforeDeleting; | 
 | 469 |             } else { | 
| Chris Lattner | f9aaae0 | 2005-08-02 02:16:17 +0000 | [diff] [blame] | 470 |               if (BugpointIsInterrupted) goto ExitLoops; | 
 | 471 |  | 
| Chris Lattner | f66d906 | 2004-02-18 23:59:11 +0000 | [diff] [blame] | 472 |               std::cout << "Checking instruction '" << I->getName() << "': "; | 
 | 473 |               Module *M = BD.deleteInstructionFromProgram(I, Simplification); | 
| Misha Brukman | 3da94ae | 2005-04-22 00:00:37 +0000 | [diff] [blame] | 474 |  | 
| Chris Lattner | f66d906 | 2004-02-18 23:59:11 +0000 | [diff] [blame] | 475 |               // Find out if the pass still crashes on this pass... | 
 | 476 |               if (TestFn(BD, M)) { | 
 | 477 |                 // Yup, it does, we delete the old module, and continue trying | 
 | 478 |                 // to reduce the testcase... | 
 | 479 |                 BD.setNewProgram(M); | 
| Chris Lattner | f66d906 | 2004-02-18 23:59:11 +0000 | [diff] [blame] | 480 |                 InstructionsToSkipBeforeDeleting = CurInstructionNum; | 
 | 481 |                 goto TryAgain;  // I wish I had a multi-level break here! | 
 | 482 |               } | 
| Misha Brukman | 3da94ae | 2005-04-22 00:00:37 +0000 | [diff] [blame] | 483 |  | 
| Chris Lattner | f66d906 | 2004-02-18 23:59:11 +0000 | [diff] [blame] | 484 |               // This pass didn't crash without this instruction, try the next | 
 | 485 |               // one. | 
 | 486 |               delete M; | 
| Chris Lattner | 6520785 | 2003-01-23 02:48:33 +0000 | [diff] [blame] | 487 |             } | 
| Chris Lattner | f66d906 | 2004-02-18 23:59:11 +0000 | [diff] [blame] | 488 |  | 
 | 489 |     if (InstructionsToSkipBeforeDeleting) { | 
 | 490 |       InstructionsToSkipBeforeDeleting = 0; | 
 | 491 |       goto TryAgain; | 
 | 492 |     } | 
| Misha Brukman | 3da94ae | 2005-04-22 00:00:37 +0000 | [diff] [blame] | 493 |  | 
| Chris Lattner | 6520785 | 2003-01-23 02:48:33 +0000 | [diff] [blame] | 494 |   } while (Simplification); | 
| Chris Lattner | f9aaae0 | 2005-08-02 02:16:17 +0000 | [diff] [blame] | 495 | ExitLoops: | 
| Chris Lattner | ba386d9 | 2003-02-28 16:13:20 +0000 | [diff] [blame] | 496 |  | 
 | 497 |   // Try to clean up the testcase by running funcresolve and globaldce... | 
| Chris Lattner | f9aaae0 | 2005-08-02 02:16:17 +0000 | [diff] [blame] | 498 |   if (!BugpointIsInterrupted) { | 
 | 499 |     std::cout << "\n*** Attempting to perform final cleanups: "; | 
 | 500 |     Module *M = CloneModule(BD.getProgram()); | 
 | 501 |     M = BD.performFinalCleanups(M, true); | 
| Misha Brukman | 3da94ae | 2005-04-22 00:00:37 +0000 | [diff] [blame] | 502 |  | 
| Chris Lattner | f9aaae0 | 2005-08-02 02:16:17 +0000 | [diff] [blame] | 503 |     // Find out if the pass still crashes on the cleaned up program... | 
 | 504 |     if (TestFn(BD, M)) { | 
 | 505 |       BD.setNewProgram(M);     // Yup, it does, keep the reduced version... | 
 | 506 |     } else { | 
 | 507 |       delete M; | 
 | 508 |     } | 
| Chris Lattner | ba386d9 | 2003-02-28 16:13:20 +0000 | [diff] [blame] | 509 |   } | 
 | 510 |  | 
| Gabor Greif | 8ff70c2 | 2007-07-04 21:55:50 +0000 | [diff] [blame] | 511 |   BD.EmitProgressBitcode("reduced-simplified"); | 
| Chris Lattner | ba386d9 | 2003-02-28 16:13:20 +0000 | [diff] [blame] | 512 |  | 
| Misha Brukman | 3da94ae | 2005-04-22 00:00:37 +0000 | [diff] [blame] | 513 |   return false; | 
| Chris Lattner | afade92 | 2002-11-20 22:28:10 +0000 | [diff] [blame] | 514 | } | 
| Brian Gaeke | d0fde30 | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 515 |  | 
| Chris Lattner | 8b18927 | 2004-02-18 23:26:28 +0000 | [diff] [blame] | 516 | static bool TestForOptimizerCrash(BugDriver &BD, Module *M) { | 
 | 517 |   return BD.runPasses(M); | 
 | 518 | } | 
| Chris Lattner | 0252626 | 2004-02-18 21:02:04 +0000 | [diff] [blame] | 519 |  | 
| Chris Lattner | 8b18927 | 2004-02-18 23:26:28 +0000 | [diff] [blame] | 520 | /// debugOptimizerCrash - This method is called when some pass crashes on input. | 
 | 521 | /// It attempts to prune down the testcase to something reasonable, and figure | 
 | 522 | /// out exactly which pass is crashing. | 
 | 523 | /// | 
| Patrick Jenkins | 6a3f31c | 2006-08-15 16:40:49 +0000 | [diff] [blame] | 524 | bool BugDriver::debugOptimizerCrash(const std::string &ID) { | 
| Chris Lattner | 8b18927 | 2004-02-18 23:26:28 +0000 | [diff] [blame] | 525 |   std::cout << "\n*** Debugging optimizer crash!\n"; | 
 | 526 |  | 
 | 527 |   // Reduce the list of passes which causes the optimizer to crash... | 
| Chris Lattner | f9aaae0 | 2005-08-02 02:16:17 +0000 | [diff] [blame] | 528 |   if (!BugpointIsInterrupted) | 
 | 529 |     ReducePassList(*this).reduceList(PassesToRun); | 
| Chris Lattner | 8b18927 | 2004-02-18 23:26:28 +0000 | [diff] [blame] | 530 |  | 
 | 531 |   std::cout << "\n*** Found crashing pass" | 
 | 532 |             << (PassesToRun.size() == 1 ? ": " : "es: ") | 
| Misha Brukman | eed80e2 | 2004-07-23 01:30:49 +0000 | [diff] [blame] | 533 |             << getPassesString(PassesToRun) << '\n'; | 
| Chris Lattner | 8b18927 | 2004-02-18 23:26:28 +0000 | [diff] [blame] | 534 |  | 
| Gabor Greif | 8ff70c2 | 2007-07-04 21:55:50 +0000 | [diff] [blame] | 535 |   EmitProgressBitcode(ID); | 
| Chris Lattner | 8b18927 | 2004-02-18 23:26:28 +0000 | [diff] [blame] | 536 |  | 
 | 537 |   return DebugACrash(*this, TestForOptimizerCrash); | 
 | 538 | } | 
 | 539 |  | 
 | 540 | static bool TestForCodeGenCrash(BugDriver &BD, Module *M) { | 
 | 541 |   try { | 
| Misha Brukman | eed80e2 | 2004-07-23 01:30:49 +0000 | [diff] [blame] | 542 |     std::cerr << '\n'; | 
| Chris Lattner | 8b18927 | 2004-02-18 23:26:28 +0000 | [diff] [blame] | 543 |     BD.compileProgram(M); | 
| Misha Brukman | eed80e2 | 2004-07-23 01:30:49 +0000 | [diff] [blame] | 544 |     std::cerr << '\n'; | 
| Chris Lattner | 8b18927 | 2004-02-18 23:26:28 +0000 | [diff] [blame] | 545 |     return false; | 
| Jeff Cohen | 8388195 | 2005-01-22 16:30:58 +0000 | [diff] [blame] | 546 |   } catch (ToolExecutionError &) { | 
| Chris Lattner | 8b18927 | 2004-02-18 23:26:28 +0000 | [diff] [blame] | 547 |     std::cerr << "<crash>\n"; | 
 | 548 |     return true;  // Tool is still crashing. | 
 | 549 |   } | 
 | 550 | } | 
| Chris Lattner | 0252626 | 2004-02-18 21:02:04 +0000 | [diff] [blame] | 551 |  | 
 | 552 | /// debugCodeGeneratorCrash - This method is called when the code generator | 
 | 553 | /// crashes on an input.  It attempts to reduce the input as much as possible | 
 | 554 | /// while still causing the code generator to crash. | 
 | 555 | bool BugDriver::debugCodeGeneratorCrash() { | 
| Chris Lattner | 06905db | 2004-02-18 21:24:48 +0000 | [diff] [blame] | 556 |   std::cerr << "*** Debugging code generator crash!\n"; | 
| Chris Lattner | 0252626 | 2004-02-18 21:02:04 +0000 | [diff] [blame] | 557 |  | 
| Chris Lattner | 8b18927 | 2004-02-18 23:26:28 +0000 | [diff] [blame] | 558 |   return DebugACrash(*this, TestForCodeGenCrash); | 
| Chris Lattner | 0252626 | 2004-02-18 21:02:04 +0000 | [diff] [blame] | 559 | } |