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