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