Chris Lattner | afade92 | 2002-11-20 22:28:10 +0000 | [diff] [blame] | 1 | //===- CrashDebugger.cpp - Debug compilation crashes ----------------------===// |
| 2 | // |
| 3 | // This file defines the bugpoint internals that narrow down compilation crashes |
| 4 | // |
| 5 | //===----------------------------------------------------------------------===// |
| 6 | |
| 7 | #include "BugDriver.h" |
Chris Lattner | 218e26e | 2002-12-23 23:49:59 +0000 | [diff] [blame] | 8 | #include "SystemUtils.h" |
Chris Lattner | aae33f9 | 2003-04-24 22:24:58 +0000 | [diff] [blame] | 9 | #include "ListReducer.h" |
Chris Lattner | afade92 | 2002-11-20 22:28:10 +0000 | [diff] [blame] | 10 | #include "llvm/Module.h" |
Chris Lattner | aae33f9 | 2003-04-24 22:24:58 +0000 | [diff] [blame] | 11 | #include "llvm/Transforms/Utils/Cloning.h" |
Chris Lattner | afade92 | 2002-11-20 22:28:10 +0000 | [diff] [blame] | 12 | #include "llvm/Bytecode/Writer.h" |
| 13 | #include "llvm/Pass.h" |
| 14 | #include <fstream> |
Chris Lattner | aae33f9 | 2003-04-24 22:24:58 +0000 | [diff] [blame] | 15 | #include <set> |
Chris Lattner | afade92 | 2002-11-20 22:28:10 +0000 | [diff] [blame] | 16 | |
Chris Lattner | 640f22e | 2003-04-24 17:02:17 +0000 | [diff] [blame] | 17 | class DebugCrashes : public ListReducer<const PassInfo*> { |
| 18 | BugDriver &BD; |
| 19 | public: |
| 20 | DebugCrashes(BugDriver &bd) : BD(bd) {} |
| 21 | |
| 22 | // doTest - Return true iff running the "removed" passes succeeds, and running |
| 23 | // the "Kept" passes fail when run on the output of the "removed" passes. If |
| 24 | // we return true, we update the current module of bugpoint. |
| 25 | // |
Chris Lattner | aae33f9 | 2003-04-24 22:24:58 +0000 | [diff] [blame] | 26 | virtual TestResult doTest(std::vector<const PassInfo*> &Removed, |
| 27 | std::vector<const PassInfo*> &Kept); |
Chris Lattner | 640f22e | 2003-04-24 17:02:17 +0000 | [diff] [blame] | 28 | }; |
Chris Lattner | aae33f9 | 2003-04-24 22:24:58 +0000 | [diff] [blame] | 29 | |
| 30 | DebugCrashes::TestResult |
| 31 | DebugCrashes::doTest(std::vector<const PassInfo*> &Prefix, |
| 32 | std::vector<const PassInfo*> &Suffix) { |
| 33 | std::string PrefixOutput; |
| 34 | if (!Prefix.empty()) { |
| 35 | std::cout << "Checking to see if these passes crash: " |
| 36 | << getPassesString(Prefix) << ": "; |
| 37 | if (BD.runPasses(Prefix, PrefixOutput)) |
| 38 | return KeepPrefix; |
| 39 | } |
| 40 | |
| 41 | std::cout << "Checking to see if these passes crash: " |
| 42 | << getPassesString(Suffix) << ": "; |
| 43 | Module *OrigProgram = BD.Program; |
| 44 | BD.Program = BD.ParseInputFile(PrefixOutput); |
| 45 | if (BD.Program == 0) { |
| 46 | std::cerr << BD.getToolName() << ": Error reading bytecode file '" |
| 47 | << PrefixOutput << "'!\n"; |
| 48 | exit(1); |
| 49 | } |
| 50 | removeFile(PrefixOutput); |
| 51 | |
| 52 | if (BD.runPasses(Suffix)) { |
| 53 | delete OrigProgram; // The suffix crashes alone... |
| 54 | return KeepSuffix; |
| 55 | } |
| 56 | |
| 57 | // Nothing failed, restore state... |
| 58 | delete BD.Program; |
| 59 | BD.Program = OrigProgram; |
| 60 | return NoFailure; |
| 61 | } |
| 62 | |
| 63 | class ReduceCrashingFunctions : public ListReducer<Function*> { |
| 64 | BugDriver &BD; |
| 65 | public: |
| 66 | ReduceCrashingFunctions(BugDriver &bd) : BD(bd) {} |
| 67 | |
| 68 | virtual TestResult doTest(std::vector<Function*> &Prefix, |
| 69 | std::vector<Function*> &Kept) { |
| 70 | if (TestFuncs(Kept)) |
| 71 | return KeepSuffix; |
| 72 | if (!Prefix.empty() && TestFuncs(Prefix)) |
| 73 | return KeepPrefix; |
| 74 | return NoFailure; |
| 75 | } |
| 76 | |
| 77 | bool TestFuncs(std::vector<Function*> &Prefix); |
| 78 | }; |
| 79 | |
| 80 | bool ReduceCrashingFunctions::TestFuncs(std::vector<Function*> &Funcs) { |
| 81 | // Clone the program to try hacking it appart... |
| 82 | Module *M = CloneModule(BD.Program); |
| 83 | |
| 84 | // Convert list to set for fast lookup... |
| 85 | std::set<Function*> Functions; |
| 86 | for (unsigned i = 0, e = Funcs.size(); i != e; ++i) { |
| 87 | Function *CMF = M->getFunction(Funcs[i]->getName(), |
| 88 | Funcs[i]->getFunctionType()); |
| 89 | assert(CMF && "Function not in module?!"); |
| 90 | Functions.insert(CMF); |
| 91 | } |
| 92 | |
| 93 | std::cout << "Checking for crash with only these functions:"; |
| 94 | for (unsigned i = 0, e = Funcs.size(); i != e; ++i) |
| 95 | std::cout << " " << Funcs[i]->getName(); |
| 96 | std::cout << ": "; |
| 97 | |
| 98 | // Loop over and delete any functions which we aren't supposed to be playing |
| 99 | // with... |
| 100 | for (Module::iterator I = M->begin(), E = M->end(); I != E; ++I) |
| 101 | if (I->isExternal() && !Functions.count(I)) |
| 102 | DeleteFunctionBody(I); |
| 103 | |
| 104 | // Try running the hacked up program... |
| 105 | std::swap(BD.Program, M); |
| 106 | if (BD.runPasses(BD.PassesToRun)) { |
| 107 | delete M; // It crashed, keep the trimmed version... |
| 108 | |
| 109 | // Make sure to use function pointers that point into the now-current |
| 110 | // module. |
| 111 | Funcs.assign(Functions.begin(), Functions.end()); |
| 112 | return true; |
| 113 | } |
| 114 | delete BD.Program; // It didn't crash, revert... |
| 115 | BD.Program = M; |
| 116 | return false; |
| 117 | } |
| 118 | |
Chris Lattner | 640f22e | 2003-04-24 17:02:17 +0000 | [diff] [blame] | 119 | |
Chris Lattner | afade92 | 2002-11-20 22:28:10 +0000 | [diff] [blame] | 120 | /// debugCrash - This method is called when some pass crashes on input. It |
| 121 | /// attempts to prune down the testcase to something reasonable, and figure |
| 122 | /// out exactly which pass is crashing. |
| 123 | /// |
| 124 | bool BugDriver::debugCrash() { |
Chris Lattner | aae33f9 | 2003-04-24 22:24:58 +0000 | [diff] [blame] | 125 | bool AnyReduction = false; |
Chris Lattner | afade92 | 2002-11-20 22:28:10 +0000 | [diff] [blame] | 126 | std::cout << "\n*** Debugging optimizer crash!\n"; |
| 127 | |
Chris Lattner | 640f22e | 2003-04-24 17:02:17 +0000 | [diff] [blame] | 128 | // Reduce the list of passes which causes the optimizer to crash... |
Chris Lattner | aae33f9 | 2003-04-24 22:24:58 +0000 | [diff] [blame] | 129 | unsigned OldSize = PassesToRun.size(); |
Chris Lattner | 640f22e | 2003-04-24 17:02:17 +0000 | [diff] [blame] | 130 | DebugCrashes(*this).reduceList(PassesToRun); |
Chris Lattner | 640f22e | 2003-04-24 17:02:17 +0000 | [diff] [blame] | 131 | |
Chris Lattner | aae33f9 | 2003-04-24 22:24:58 +0000 | [diff] [blame] | 132 | if (PassesToRun.size() == OldSize) { // Make sure something crashed. :) |
Chris Lattner | afade92 | 2002-11-20 22:28:10 +0000 | [diff] [blame] | 133 | std::cerr << "ERROR: No passes crashed!\n"; |
| 134 | return true; |
| 135 | } |
| 136 | |
Chris Lattner | aae33f9 | 2003-04-24 22:24:58 +0000 | [diff] [blame] | 137 | std::cout << "\n*** Found crashing pass" |
| 138 | << (PassesToRun.size() == 1 ? ": " : "es: ") |
| 139 | << getPassesString(PassesToRun) << "\n"; |
Chris Lattner | afade92 | 2002-11-20 22:28:10 +0000 | [diff] [blame] | 140 | |
Chris Lattner | 640f22e | 2003-04-24 17:02:17 +0000 | [diff] [blame] | 141 | EmitProgressBytecode("passinput"); |
Chris Lattner | aae33f9 | 2003-04-24 22:24:58 +0000 | [diff] [blame] | 142 | |
| 143 | // Now try to reduce the number of functions in the module to something small. |
| 144 | std::vector<Function*> Functions; |
| 145 | for (Module::iterator I = Program->begin(), E = Program->end(); I != E; ++I) |
| 146 | if (!I->isExternal()) |
| 147 | Functions.push_back(I); |
Chris Lattner | afade92 | 2002-11-20 22:28:10 +0000 | [diff] [blame] | 148 | |
Chris Lattner | aae33f9 | 2003-04-24 22:24:58 +0000 | [diff] [blame] | 149 | if (Functions.size() > 1) { |
| 150 | std::cout << "\n*** Attempting to reduce the number of functions " |
| 151 | "in the testcase\n"; |
Chris Lattner | afade92 | 2002-11-20 22:28:10 +0000 | [diff] [blame] | 152 | |
Chris Lattner | aae33f9 | 2003-04-24 22:24:58 +0000 | [diff] [blame] | 153 | OldSize = Functions.size(); |
| 154 | ReduceCrashingFunctions(*this).reduceList(Functions); |
Chris Lattner | afade92 | 2002-11-20 22:28:10 +0000 | [diff] [blame] | 155 | |
Chris Lattner | aae33f9 | 2003-04-24 22:24:58 +0000 | [diff] [blame] | 156 | if (Functions.size() < OldSize) { |
| 157 | EmitProgressBytecode("reduced-function"); |
| 158 | AnyReduction = true; |
Chris Lattner | 6520785 | 2003-01-23 02:48:33 +0000 | [diff] [blame] | 159 | } |
Chris Lattner | afade92 | 2002-11-20 22:28:10 +0000 | [diff] [blame] | 160 | } |
| 161 | |
Chris Lattner | 6520785 | 2003-01-23 02:48:33 +0000 | [diff] [blame] | 162 | // FIXME: This should attempt to delete entire basic blocks at a time to speed |
| 163 | // up convergence... |
Chris Lattner | 218e26e | 2002-12-23 23:49:59 +0000 | [diff] [blame] | 164 | |
Chris Lattner | aae33f9 | 2003-04-24 22:24:58 +0000 | [diff] [blame] | 165 | // FIXME: This should use the list reducer to converge faster by deleting |
| 166 | // larger chunks of instructions at a time! |
| 167 | bool Reduced = false; |
Chris Lattner | 6520785 | 2003-01-23 02:48:33 +0000 | [diff] [blame] | 168 | unsigned Simplification = 4; |
| 169 | do { |
| 170 | --Simplification; |
| 171 | std::cout << "\n*** Attempting to reduce testcase by deleting instruc" |
| 172 | << "tions: Simplification Level #" << Simplification << "\n"; |
| 173 | |
| 174 | // Now that we have deleted the functions that are unneccesary for the |
| 175 | // program, try to remove instructions that are not neccesary to cause the |
| 176 | // crash. To do this, we loop through all of the instructions in the |
| 177 | // remaining functions, deleting them (replacing any values produced with |
| 178 | // nulls), and then running ADCE and SimplifyCFG. If the transformed input |
| 179 | // still triggers failure, keep deleting until we cannot trigger failure |
| 180 | // anymore. |
| 181 | // |
| 182 | TryAgain: |
| 183 | |
| 184 | // Loop over all of the (non-terminator) instructions remaining in the |
| 185 | // function, attempting to delete them. |
| 186 | for (Module::iterator FI = Program->begin(), E = Program->end(); |
| 187 | FI != E; ++FI) |
| 188 | if (!FI->isExternal()) { |
| 189 | for (Function::iterator BI = FI->begin(), E = FI->end(); BI != E; ++BI) |
| 190 | for (BasicBlock::iterator I = BI->begin(), E = --BI->end(); |
| 191 | I != E; ++I) { |
| 192 | Module *M = deleteInstructionFromProgram(I, Simplification); |
| 193 | |
| 194 | // Make the function the current program... |
| 195 | std::swap(Program, M); |
| 196 | |
| 197 | // Find out if the pass still crashes on this pass... |
| 198 | std::cout << "Checking instruction '" << I->getName() << "': "; |
Chris Lattner | aae33f9 | 2003-04-24 22:24:58 +0000 | [diff] [blame] | 199 | if (runPasses(PassesToRun)) { |
Chris Lattner | 6520785 | 2003-01-23 02:48:33 +0000 | [diff] [blame] | 200 | // Yup, it does, we delete the old module, and continue trying to |
| 201 | // reduce the testcase... |
Chris Lattner | 6520785 | 2003-01-23 02:48:33 +0000 | [diff] [blame] | 202 | delete M; |
Chris Lattner | ba386d9 | 2003-02-28 16:13:20 +0000 | [diff] [blame] | 203 | Reduced = AnyReduction = true; |
Chris Lattner | 6520785 | 2003-01-23 02:48:33 +0000 | [diff] [blame] | 204 | goto TryAgain; // I wish I had a multi-level break here! |
| 205 | } |
| 206 | |
| 207 | // This pass didn't crash without this instruction, try the next |
| 208 | // one. |
| 209 | delete Program; |
| 210 | Program = M; |
| 211 | } |
| 212 | } |
| 213 | } while (Simplification); |
Chris Lattner | ba386d9 | 2003-02-28 16:13:20 +0000 | [diff] [blame] | 214 | |
| 215 | // Try to clean up the testcase by running funcresolve and globaldce... |
| 216 | if (AnyReduction) { |
| 217 | std::cout << "\n*** Attempting to perform final cleanups: "; |
| 218 | Module *M = performFinalCleanups(); |
| 219 | std::swap(Program, M); |
| 220 | |
| 221 | // Find out if the pass still crashes on the cleaned up program... |
Chris Lattner | aae33f9 | 2003-04-24 22:24:58 +0000 | [diff] [blame] | 222 | if (runPasses(PassesToRun)) { |
Chris Lattner | ba386d9 | 2003-02-28 16:13:20 +0000 | [diff] [blame] | 223 | // Yup, it does, keep the reduced version... |
| 224 | delete M; |
| 225 | Reduced = AnyReduction = true; |
| 226 | } else { |
| 227 | delete Program; // Otherwise, restore the original module... |
| 228 | Program = M; |
| 229 | } |
| 230 | } |
| 231 | |
| 232 | if (Reduced) { |
Chris Lattner | 640f22e | 2003-04-24 17:02:17 +0000 | [diff] [blame] | 233 | EmitProgressBytecode("reduced-simplified"); |
Chris Lattner | ba386d9 | 2003-02-28 16:13:20 +0000 | [diff] [blame] | 234 | Reduced = false; |
| 235 | } |
| 236 | |
Chris Lattner | afade92 | 2002-11-20 22:28:10 +0000 | [diff] [blame] | 237 | return false; |
| 238 | } |