blob: c423203389030e6ecf5e1e309a7a7c4625a4a518 [file] [log] [blame]
Chris Lattnerafade922002-11-20 22:28:10 +00001//===- CrashDebugger.cpp - Debug compilation crashes ----------------------===//
Misha Brukman3da94ae2005-04-22 00:00:37 +00002//
John Criswell7c0e0222003-10-20 17:47:21 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner21c62da2007-12-29 20:44:31 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukman3da94ae2005-04-22 00:00:37 +00007//
John Criswell7c0e0222003-10-20 17:47:21 +00008//===----------------------------------------------------------------------===//
Chris Lattnerafade922002-11-20 22:28:10 +00009//
10// This file defines the bugpoint internals that narrow down compilation crashes
11//
12//===----------------------------------------------------------------------===//
13
14#include "BugDriver.h"
Chris Lattnerf1b20d82006-06-06 22:30:59 +000015#include "ToolRunner.h"
Chris Lattneraae33f92003-04-24 22:24:58 +000016#include "ListReducer.h"
Chris Lattnere78109e2008-04-28 00:04:58 +000017#include "llvm/Constants.h"
Bill Wendling4e3be892006-10-25 18:36:14 +000018#include "llvm/DerivedTypes.h"
Misha Brukman47b14a42004-07-29 17:30:56 +000019#include "llvm/Instructions.h"
Misha Brukmane49603d2003-08-07 21:19:30 +000020#include "llvm/Module.h"
21#include "llvm/Pass.h"
22#include "llvm/PassManager.h"
Reid Spenceref9b9a72007-02-05 20:47:22 +000023#include "llvm/ValueSymbolTable.h"
Nick Lewyckye0325902009-04-04 09:39:23 +000024#include "llvm/ADT/SmallPtrSet.h"
Chris Lattner286921e2003-04-24 23:51:38 +000025#include "llvm/Analysis/Verifier.h"
Misha Brukmane49603d2003-08-07 21:19:30 +000026#include "llvm/Support/CFG.h"
Chris Lattner286921e2003-04-24 23:51:38 +000027#include "llvm/Transforms/Scalar.h"
Chris Lattneraae33f92003-04-24 22:24:58 +000028#include "llvm/Transforms/Utils/Cloning.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000029#include "llvm/Support/FileUtilities.h"
Andrew Lenharth7c0a9372006-03-05 22:21:36 +000030#include "llvm/Support/CommandLine.h"
Chris Lattneraae33f92003-04-24 22:24:58 +000031#include <set>
Chris Lattnerfa761832004-01-14 03:38:37 +000032using namespace llvm;
Chris Lattnerafade922002-11-20 22:28:10 +000033
Andrew Lenharth7c0a9372006-03-05 22:21:36 +000034namespace {
35 cl::opt<bool>
36 KeepMain("keep-main",
37 cl::desc("Force function reduction to keep main"),
38 cl::init(false));
Torok Edwin23d471f2009-05-24 09:31:04 +000039 cl::opt<bool>
40 NoGlobalRM ("disable-global-remove",
41 cl::desc("Do not remove global variables"),
42 cl::init(false));
Andrew Lenharth7c0a9372006-03-05 22:21:36 +000043}
44
Brian Gaeked0fde302003-11-11 22:41:34 +000045namespace llvm {
Owen Anderson8be32912010-07-20 08:26:15 +000046 class ReducePassList : public ListReducer<const PassInfo*> {
Chris Lattnerfa761832004-01-14 03:38:37 +000047 BugDriver &BD;
48 public:
Chris Lattner06905db2004-02-18 21:24:48 +000049 ReducePassList(BugDriver &bd) : BD(bd) {}
Misha Brukman3da94ae2005-04-22 00:00:37 +000050
Chris Lattnerfa761832004-01-14 03:38:37 +000051 // 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 //
Owen Anderson8be32912010-07-20 08:26:15 +000055 virtual TestResult doTest(std::vector<const PassInfo*> &Removed,
56 std::vector<const PassInfo*> &Kept,
Nick Lewycky22ff7482010-04-12 05:08:25 +000057 std::string &Error);
Chris Lattnerfa761832004-01-14 03:38:37 +000058 };
59}
Chris Lattneraae33f92003-04-24 22:24:58 +000060
Chris Lattner06905db2004-02-18 21:24:48 +000061ReducePassList::TestResult
Owen Anderson8be32912010-07-20 08:26:15 +000062ReducePassList::doTest(std::vector<const PassInfo*> &Prefix,
63 std::vector<const PassInfo*> &Suffix,
Nick Lewycky22ff7482010-04-12 05:08:25 +000064 std::string &Error) {
Reid Spencer5f767602004-12-16 23:04:20 +000065 sys::Path PrefixOutput;
Chris Lattnerb417c792003-06-02 04:54:29 +000066 Module *OrigProgram = 0;
Chris Lattneraae33f92003-04-24 22:24:58 +000067 if (!Prefix.empty()) {
Dan Gohmanac95cc72009-07-16 15:30:09 +000068 outs() << "Checking to see if these passes crash: "
69 << getPassesString(Prefix) << ": ";
Reid Spencer5f767602004-12-16 23:04:20 +000070 std::string PfxOutput;
Rafael Espindolaca356af2010-08-05 00:29:04 +000071 if (BD.runPasses(BD.getProgram(), Prefix, PfxOutput))
Chris Lattneraae33f92003-04-24 22:24:58 +000072 return KeepPrefix;
Chris Lattnerb417c792003-06-02 04:54:29 +000073
Reid Spencerdd04df02005-07-07 23:21:43 +000074 PrefixOutput.set(PfxOutput);
Chris Lattnerb417c792003-06-02 04:54:29 +000075 OrigProgram = BD.Program;
76
Chris Lattner74382b72009-08-23 22:45:37 +000077 BD.Program = ParseInputFile(PrefixOutput.str(), BD.getContext());
Chris Lattnerb417c792003-06-02 04:54:29 +000078 if (BD.Program == 0) {
Dan Gohman65f57c22009-07-15 16:35:29 +000079 errs() << BD.getToolName() << ": Error reading bitcode file '"
Chris Lattner74382b72009-08-23 22:45:37 +000080 << PrefixOutput.str() << "'!\n";
Chris Lattnerb417c792003-06-02 04:54:29 +000081 exit(1);
82 }
Reid Spencera229c5c2005-07-08 03:08:58 +000083 PrefixOutput.eraseFromDisk();
Chris Lattneraae33f92003-04-24 22:24:58 +000084 }
85
Dan Gohmanac95cc72009-07-16 15:30:09 +000086 outs() << "Checking to see if these passes crash: "
87 << getPassesString(Suffix) << ": ";
Misha Brukman3da94ae2005-04-22 00:00:37 +000088
Rafael Espindola5d8cace2010-08-05 02:16:32 +000089 if (BD.runPasses(BD.getProgram(), Suffix)) {
Chris Lattneraae33f92003-04-24 22:24:58 +000090 delete OrigProgram; // The suffix crashes alone...
91 return KeepSuffix;
92 }
93
94 // Nothing failed, restore state...
Chris Lattnerb417c792003-06-02 04:54:29 +000095 if (OrigProgram) {
96 delete BD.Program;
97 BD.Program = OrigProgram;
98 }
Chris Lattneraae33f92003-04-24 22:24:58 +000099 return NoFailure;
100}
101
Bill Wendling4e3be892006-10-25 18:36:14 +0000102namespace {
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,
Nick Lewycky22ff7482010-04-12 05:08:25 +0000112 bool (*testFn)(BugDriver &, Module *))
Bill Wendling4e3be892006-10-25 18:36:14 +0000113 : BD(bd), TestFn(testFn) {}
114
Nick Lewycky22ff7482010-04-12 05:08:25 +0000115 virtual TestResult doTest(std::vector<GlobalVariable*> &Prefix,
116 std::vector<GlobalVariable*> &Kept,
117 std::string &Error) {
Bill Wendling4e3be892006-10-25 18:36:14 +0000118 if (!Kept.empty() && TestGlobalVariables(Kept))
119 return KeepSuffix;
Bill Wendling4e3be892006-10-25 18:36:14 +0000120 if (!Prefix.empty() && TestGlobalVariables(Prefix))
121 return KeepPrefix;
Bill Wendling4e3be892006-10-25 18:36:14 +0000122 return NoFailure;
123 }
124
Nick Lewycky22ff7482010-04-12 05:08:25 +0000125 bool TestGlobalVariables(std::vector<GlobalVariable*> &GVs);
Bill Wendling4e3be892006-10-25 18:36:14 +0000126 };
127}
128
129bool
130ReduceCrashingGlobalVariables::TestGlobalVariables(
Nick Lewycky22ff7482010-04-12 05:08:25 +0000131 std::vector<GlobalVariable*> &GVs) {
Bill Wendling4e3be892006-10-25 18:36:14 +0000132 // Clone the program to try hacking it apart...
Devang Patele9916a32010-06-24 00:33:28 +0000133 ValueMap<const Value*, Value*> VMap;
134 Module *M = CloneModule(BD.getProgram(), VMap);
Bill Wendling4e3be892006-10-25 18:36:14 +0000135
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 Patele9916a32010-06-24 00:33:28 +0000140 GlobalVariable* CMGV = cast<GlobalVariable>(VMap[GVs[i]]);
Bill Wendling4e3be892006-10-25 18:36:14 +0000141 assert(CMGV && "Global Variable not in module?!");
142 GVSet.insert(CMGV);
143 }
144
Dan Gohmanac95cc72009-07-16 15:30:09 +0000145 outs() << "Checking for crash with only these global variables: ";
Bill Wendling4e3be892006-10-25 18:36:14 +0000146 PrintGlobalVariableList(GVs);
Dan Gohmanac95cc72009-07-16 15:30:09 +0000147 outs() << ": ";
Bill Wendling4e3be892006-10-25 18:36:14 +0000148
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 Lewycky028839d2009-05-25 06:29:56 +0000153 if (I->hasInitializer() && !GVSet.count(I)) {
Bill Wendling4e3be892006-10-25 18:36:14 +0000154 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 Lattnerfa761832004-01-14 03:38:37 +0000172namespace llvm {
Bill Wendling4e3be892006-10-25 18:36:14 +0000173 /// 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 Lattnerefdc0b52004-03-14 20:50:42 +0000177 class ReduceCrashingFunctions : public ListReducer<Function*> {
Chris Lattnerfa761832004-01-14 03:38:37 +0000178 BugDriver &BD;
Chris Lattner8b189272004-02-18 23:26:28 +0000179 bool (*TestFn)(BugDriver &, Module *);
Chris Lattnerfa761832004-01-14 03:38:37 +0000180 public:
Chris Lattner8b189272004-02-18 23:26:28 +0000181 ReduceCrashingFunctions(BugDriver &bd,
182 bool (*testFn)(BugDriver &, Module *))
183 : BD(bd), TestFn(testFn) {}
Misha Brukman3da94ae2005-04-22 00:00:37 +0000184
Chris Lattnerefdc0b52004-03-14 20:50:42 +0000185 virtual TestResult doTest(std::vector<Function*> &Prefix,
Nick Lewycky22ff7482010-04-12 05:08:25 +0000186 std::vector<Function*> &Kept,
187 std::string &Error) {
Chris Lattnerfa761832004-01-14 03:38:37 +0000188 if (!Kept.empty() && TestFuncs(Kept))
189 return KeepSuffix;
190 if (!Prefix.empty() && TestFuncs(Prefix))
191 return KeepPrefix;
192 return NoFailure;
193 }
Misha Brukman3da94ae2005-04-22 00:00:37 +0000194
Chris Lattnerefdc0b52004-03-14 20:50:42 +0000195 bool TestFuncs(std::vector<Function*> &Prefix);
Chris Lattnerfa761832004-01-14 03:38:37 +0000196 };
197}
Chris Lattneraae33f92003-04-24 22:24:58 +0000198
Chris Lattnerefdc0b52004-03-14 20:50:42 +0000199bool ReduceCrashingFunctions::TestFuncs(std::vector<Function*> &Funcs) {
Andrew Lenharth7c0a9372006-03-05 22:21:36 +0000200
201 //if main isn't present, claim there is no problem
Bill Wendling4e3be892006-10-25 18:36:14 +0000202 if (KeepMain && find(Funcs.begin(), Funcs.end(),
Reid Spencer688b0492007-02-05 21:19:13 +0000203 BD.getProgram()->getFunction("main")) == Funcs.end())
Andrew Lenharth7c0a9372006-03-05 22:21:36 +0000204 return false;
205
Misha Brukmancf00c4a2003-10-10 17:57:28 +0000206 // Clone the program to try hacking it apart...
Devang Patele9916a32010-06-24 00:33:28 +0000207 ValueMap<const Value*, Value*> VMap;
208 Module *M = CloneModule(BD.getProgram(), VMap);
Misha Brukman3da94ae2005-04-22 00:00:37 +0000209
Chris Lattneraae33f92003-04-24 22:24:58 +0000210 // Convert list to set for fast lookup...
211 std::set<Function*> Functions;
212 for (unsigned i = 0, e = Funcs.size(); i != e; ++i) {
Devang Patele9916a32010-06-24 00:33:28 +0000213 Function *CMF = cast<Function>(VMap[Funcs[i]]);
Chris Lattneraae33f92003-04-24 22:24:58 +0000214 assert(CMF && "Function not in module?!");
Reid Spenceref9b9a72007-02-05 20:47:22 +0000215 assert(CMF->getFunctionType() == Funcs[i]->getFunctionType() && "wrong ty");
Dan Gohmanf6dd0eb2009-03-06 02:16:23 +0000216 assert(CMF->getName() == Funcs[i]->getName() && "wrong name");
Chris Lattnerf607b792003-04-24 22:54:06 +0000217 Functions.insert(CMF);
Chris Lattneraae33f92003-04-24 22:24:58 +0000218 }
219
Dan Gohmanac95cc72009-07-16 15:30:09 +0000220 outs() << "Checking for crash with only these functions: ";
Chris Lattnerefdc0b52004-03-14 20:50:42 +0000221 PrintFunctionList(Funcs);
Dan Gohmanac95cc72009-07-16 15:30:09 +0000222 outs() << ": ";
Chris Lattneraae33f92003-04-24 22:24:58 +0000223
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 Spencer5cbf9852007-01-30 20:08:39 +0000227 if (!I->isDeclaration() && !Functions.count(I))
Chris Lattneraae33f92003-04-24 22:24:58 +0000228 DeleteFunctionBody(I);
229
230 // Try running the hacked up program...
Chris Lattner8b189272004-02-18 23:26:28 +0000231 if (TestFn(BD, M)) {
Chris Lattner06905db2004-02-18 21:24:48 +0000232 BD.setNewProgram(M); // It crashed, keep the trimmed version...
Chris Lattneraae33f92003-04-24 22:24:58 +0000233
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 Lattner06905db2004-02-18 21:24:48 +0000239 delete M;
Chris Lattneraae33f92003-04-24 22:24:58 +0000240 return false;
241}
242
Chris Lattner640f22e2003-04-24 17:02:17 +0000243
Chris Lattnerf913f402004-02-18 21:29:46 +0000244namespace {
Chris Lattnerfa761832004-01-14 03:38:37 +0000245 /// 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 Lattner8b189272004-02-18 23:26:28 +0000250 class ReduceCrashingBlocks : public ListReducer<const BasicBlock*> {
Chris Lattnerfa761832004-01-14 03:38:37 +0000251 BugDriver &BD;
Chris Lattner8b189272004-02-18 23:26:28 +0000252 bool (*TestFn)(BugDriver &, Module *);
Chris Lattnerfa761832004-01-14 03:38:37 +0000253 public:
Chris Lattner8b189272004-02-18 23:26:28 +0000254 ReduceCrashingBlocks(BugDriver &bd, bool (*testFn)(BugDriver &, Module *))
255 : BD(bd), TestFn(testFn) {}
Misha Brukman3da94ae2005-04-22 00:00:37 +0000256
Chris Lattner8b189272004-02-18 23:26:28 +0000257 virtual TestResult doTest(std::vector<const BasicBlock*> &Prefix,
Nick Lewycky22ff7482010-04-12 05:08:25 +0000258 std::vector<const BasicBlock*> &Kept,
259 std::string &Error) {
Chris Lattnerfa761832004-01-14 03:38:37 +0000260 if (!Kept.empty() && TestBlocks(Kept))
261 return KeepSuffix;
262 if (!Prefix.empty() && TestBlocks(Prefix))
263 return KeepPrefix;
264 return NoFailure;
265 }
Misha Brukman3da94ae2005-04-22 00:00:37 +0000266
Chris Lattner8b189272004-02-18 23:26:28 +0000267 bool TestBlocks(std::vector<const BasicBlock*> &Prefix);
Chris Lattnerfa761832004-01-14 03:38:37 +0000268 };
269}
Chris Lattner286921e2003-04-24 23:51:38 +0000270
Chris Lattner8b189272004-02-18 23:26:28 +0000271bool ReduceCrashingBlocks::TestBlocks(std::vector<const BasicBlock*> &BBs) {
Misha Brukmancf00c4a2003-10-10 17:57:28 +0000272 // Clone the program to try hacking it apart...
Devang Patele9916a32010-06-24 00:33:28 +0000273 ValueMap<const Value*, Value*> VMap;
274 Module *M = CloneModule(BD.getProgram(), VMap);
Misha Brukman3da94ae2005-04-22 00:00:37 +0000275
Chris Lattner286921e2003-04-24 23:51:38 +0000276 // Convert list to set for fast lookup...
Nick Lewyckye0325902009-04-04 09:39:23 +0000277 SmallPtrSet<BasicBlock*, 8> Blocks;
278 for (unsigned i = 0, e = BBs.size(); i != e; ++i)
Devang Patele9916a32010-06-24 00:33:28 +0000279 Blocks.insert(cast<BasicBlock>(VMap[BBs[i]]));
Chris Lattner286921e2003-04-24 23:51:38 +0000280
Dan Gohmanac95cc72009-07-16 15:30:09 +0000281 outs() << "Checking for crash with only these blocks:";
Chris Lattner73b96bd2003-10-27 04:44:59 +0000282 unsigned NumPrint = Blocks.size();
283 if (NumPrint > 10) NumPrint = 10;
284 for (unsigned i = 0, e = NumPrint; i != e; ++i)
Dan Gohmanac95cc72009-07-16 15:30:09 +0000285 outs() << " " << BBs[i]->getName();
Chris Lattner73b96bd2003-10-27 04:44:59 +0000286 if (NumPrint < Blocks.size())
Dan Gohmanac95cc72009-07-16 15:30:09 +0000287 outs() << "... <" << Blocks.size() << " total>";
288 outs() << ": ";
Chris Lattner286921e2003-04-24 23:51:38 +0000289
290 // Loop over and delete any hack up any blocks that are not listed...
291 for (Module::iterator I = M->begin(), E = M->end(); I != E; ++I)
292 for (Function::iterator BB = I->begin(), E = I->end(); BB != E; ++BB)
Chris Lattner8bc098b2003-11-22 02:10:38 +0000293 if (!Blocks.count(BB) && BB->getTerminator()->getNumSuccessors()) {
Chris Lattner286921e2003-04-24 23:51:38 +0000294 // Loop over all of the successors of this block, deleting any PHI nodes
295 // that might include it.
296 for (succ_iterator SI = succ_begin(BB), E = succ_end(BB); SI != E; ++SI)
297 (*SI)->removePredecessor(BB);
298
Chris Lattnere78109e2008-04-28 00:04:58 +0000299 TerminatorInst *BBTerm = BB->getTerminator();
300
Dan Gohmane49a13e2010-06-07 20:19:26 +0000301 if (!BB->getTerminator()->getType()->isVoidTy())
Owen Andersona7235ea2009-07-31 20:28:14 +0000302 BBTerm->replaceAllUsesWith(Constant::getNullValue(BBTerm->getType()));
Chris Lattner8bc098b2003-11-22 02:10:38 +0000303
Chris Lattnere78109e2008-04-28 00:04:58 +0000304 // Replace the old terminator instruction.
Chris Lattner286921e2003-04-24 23:51:38 +0000305 BB->getInstList().pop_back();
Owen Anderson1d0be152009-08-13 21:58:54 +0000306 new UnreachableInst(BB->getContext(), BB);
Chris Lattner286921e2003-04-24 23:51:38 +0000307 }
308
309 // The CFG Simplifier pass may delete one of the basic blocks we are
310 // interested in. If it does we need to take the block out of the list. Make
311 // a "persistent mapping" by turning basic blocks into <function, name> pairs.
312 // This won't work well if blocks are unnamed, but that is just the risk we
313 // have to take.
314 std::vector<std::pair<Function*, std::string> > BlockInfo;
315
Nick Lewyckye0325902009-04-04 09:39:23 +0000316 for (SmallPtrSet<BasicBlock*, 8>::iterator I = Blocks.begin(),
317 E = Blocks.end(); I != E; ++I)
Chris Lattner286921e2003-04-24 23:51:38 +0000318 BlockInfo.push_back(std::make_pair((*I)->getParent(), (*I)->getName()));
319
320 // Now run the CFG simplify pass on the function...
321 PassManager Passes;
322 Passes.add(createCFGSimplificationPass());
323 Passes.add(createVerifierPass());
324 Passes.run(*M);
325
326 // Try running on the hacked up program...
Chris Lattner8b189272004-02-18 23:26:28 +0000327 if (TestFn(BD, M)) {
Chris Lattner06905db2004-02-18 21:24:48 +0000328 BD.setNewProgram(M); // It crashed, keep the trimmed version...
Chris Lattner286921e2003-04-24 23:51:38 +0000329
330 // Make sure to use basic block pointers that point into the now-current
331 // module, and that they don't include any deleted blocks.
332 BBs.clear();
333 for (unsigned i = 0, e = BlockInfo.size(); i != e; ++i) {
Reid Spenceref9b9a72007-02-05 20:47:22 +0000334 ValueSymbolTable &ST = BlockInfo[i].first->getValueSymbolTable();
335 Value* V = ST.lookup(BlockInfo[i].second);
Owen Anderson1d0be152009-08-13 21:58:54 +0000336 if (V && V->getType() == Type::getLabelTy(V->getContext()))
Reid Spenceref9b9a72007-02-05 20:47:22 +0000337 BBs.push_back(cast<BasicBlock>(V));
Chris Lattner286921e2003-04-24 23:51:38 +0000338 }
339 return true;
340 }
Chris Lattner06905db2004-02-18 21:24:48 +0000341 delete M; // It didn't crash, try something else.
Chris Lattner286921e2003-04-24 23:51:38 +0000342 return false;
343}
344
Nick Lewycky4c8f9af2009-05-25 05:30:00 +0000345namespace {
346 /// ReduceCrashingInstructions reducer - This works by removing the specified
347 /// non-terminator instructions and replacing them with undef.
348 ///
349 class ReduceCrashingInstructions : public ListReducer<const Instruction*> {
350 BugDriver &BD;
351 bool (*TestFn)(BugDriver &, Module *);
352 public:
353 ReduceCrashingInstructions(BugDriver &bd, bool (*testFn)(BugDriver &,
354 Module *))
355 : BD(bd), TestFn(testFn) {}
356
357 virtual TestResult doTest(std::vector<const Instruction*> &Prefix,
Nick Lewycky22ff7482010-04-12 05:08:25 +0000358 std::vector<const Instruction*> &Kept,
359 std::string &Error) {
Nick Lewycky4c8f9af2009-05-25 05:30:00 +0000360 if (!Kept.empty() && TestInsts(Kept))
361 return KeepSuffix;
362 if (!Prefix.empty() && TestInsts(Prefix))
363 return KeepPrefix;
364 return NoFailure;
365 }
366
367 bool TestInsts(std::vector<const Instruction*> &Prefix);
368 };
369}
370
371bool ReduceCrashingInstructions::TestInsts(std::vector<const Instruction*>
372 &Insts) {
373 // Clone the program to try hacking it apart...
Devang Patele9916a32010-06-24 00:33:28 +0000374 ValueMap<const Value*, Value*> VMap;
375 Module *M = CloneModule(BD.getProgram(), VMap);
Nick Lewycky4c8f9af2009-05-25 05:30:00 +0000376
377 // Convert list to set for fast lookup...
378 SmallPtrSet<Instruction*, 64> Instructions;
379 for (unsigned i = 0, e = Insts.size(); i != e; ++i) {
380 assert(!isa<TerminatorInst>(Insts[i]));
Devang Patele9916a32010-06-24 00:33:28 +0000381 Instructions.insert(cast<Instruction>(VMap[Insts[i]]));
Nick Lewycky4c8f9af2009-05-25 05:30:00 +0000382 }
383
Dan Gohmanac95cc72009-07-16 15:30:09 +0000384 outs() << "Checking for crash with only " << Instructions.size();
Nick Lewycky4c8f9af2009-05-25 05:30:00 +0000385 if (Instructions.size() == 1)
Dan Gohmanac95cc72009-07-16 15:30:09 +0000386 outs() << " instruction: ";
Nick Lewycky4c8f9af2009-05-25 05:30:00 +0000387 else
Dan Gohmanac95cc72009-07-16 15:30:09 +0000388 outs() << " instructions: ";
Nick Lewycky4c8f9af2009-05-25 05:30:00 +0000389
390 for (Module::iterator MI = M->begin(), ME = M->end(); MI != ME; ++MI)
391 for (Function::iterator FI = MI->begin(), FE = MI->end(); FI != FE; ++FI)
392 for (BasicBlock::iterator I = FI->begin(), E = FI->end(); I != E;) {
393 Instruction *Inst = I++;
394 if (!Instructions.count(Inst) && !isa<TerminatorInst>(Inst)) {
Dan Gohmane49a13e2010-06-07 20:19:26 +0000395 if (!Inst->getType()->isVoidTy())
Nick Lewycky4c8f9af2009-05-25 05:30:00 +0000396 Inst->replaceAllUsesWith(UndefValue::get(Inst->getType()));
397 Inst->eraseFromParent();
398 }
399 }
400
401 // Verify that this is still valid.
402 PassManager Passes;
403 Passes.add(createVerifierPass());
404 Passes.run(*M);
405
406 // Try running on the hacked up program...
407 if (TestFn(BD, M)) {
408 BD.setNewProgram(M); // It crashed, keep the trimmed version...
409
410 // Make sure to use instruction pointers that point into the now-current
411 // module, and that they don't include any deleted blocks.
412 Insts.clear();
413 for (SmallPtrSet<Instruction*, 64>::const_iterator I = Instructions.begin(),
414 E = Instructions.end(); I != E; ++I)
415 Insts.push_back(*I);
416 return true;
417 }
418 delete M; // It didn't crash, try something else.
419 return false;
420}
421
Chris Lattner8b189272004-02-18 23:26:28 +0000422/// DebugACrash - Given a predicate that determines whether a component crashes
423/// on a program, try to destructively reduce the program while still keeping
424/// the predicate true.
Nick Lewycky22ff7482010-04-12 05:08:25 +0000425static bool DebugACrash(BugDriver &BD, bool (*TestFn)(BugDriver &, Module *),
426 std::string &Error) {
Bill Wendling4e3be892006-10-25 18:36:14 +0000427 // See if we can get away with nuking some of the global variable initializers
Chris Lattner5f73e382003-04-25 00:53:05 +0000428 // in the program...
Torok Edwin23d471f2009-05-24 09:31:04 +0000429 if (!NoGlobalRM &&
430 BD.getProgram()->global_begin() != BD.getProgram()->global_end()) {
Bill Wendling4e3be892006-10-25 18:36:14 +0000431 // Now try to reduce the number of global variable initializers in the
432 // module to something small.
Bill Wendlingb3d83a32006-10-27 20:18:06 +0000433 Module *M = CloneModule(BD.getProgram());
434 bool DeletedInit = false;
Misha Brukman3da94ae2005-04-22 00:00:37 +0000435
Bill Wendlingb3d83a32006-10-27 20:18:06 +0000436 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 Wendling4e3be892006-10-25 18:36:14 +0000443
Bill Wendlingb3d83a32006-10-27 20:18:06 +0000444 if (!DeletedInit) {
445 delete M; // No change made...
446 } else {
447 // See if the program still causes a crash...
Dan Gohmanac95cc72009-07-16 15:30:09 +0000448 outs() << "\nChecking to see if we can delete global inits: ";
Bill Wendling4e3be892006-10-25 18:36:14 +0000449
Bill Wendlingb3d83a32006-10-27 20:18:06 +0000450 if (TestFn(BD, M)) { // Still crashes?
451 BD.setNewProgram(M);
Dan Gohmanac95cc72009-07-16 15:30:09 +0000452 outs() << "\n*** Able to remove all global initializers!\n";
Bill Wendlingb3d83a32006-10-27 20:18:06 +0000453 } else { // No longer crashes?
Dan Gohmanac95cc72009-07-16 15:30:09 +0000454 outs() << " - Removing all global inits hides problem!\n";
Bill Wendlingb3d83a32006-10-27 20:18:06 +0000455 delete M;
Bill Wendling4e3be892006-10-25 18:36:14 +0000456
Bill Wendlingb3d83a32006-10-27 20:18:06 +0000457 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) {
Dan Gohmanac95cc72009-07-16 15:30:09 +0000465 outs() << "\n*** Attempting to reduce the number of global "
Bill Wendlingb3d83a32006-10-27 20:18:06 +0000466 << "variables in the testcase\n";
467
468 unsigned OldSize = GVs.size();
Nick Lewycky22ff7482010-04-12 05:08:25 +0000469 ReduceCrashingGlobalVariables(BD, TestFn).reduceList(GVs, Error);
470 if (!Error.empty())
471 return true;
Bill Wendlingb3d83a32006-10-27 20:18:06 +0000472
473 if (GVs.size() < OldSize)
Rafael Espindolabae1b712010-07-28 18:12:30 +0000474 BD.EmitProgressBitcode(BD.getProgram(), "reduced-global-variables");
Bill Wendlingb3d83a32006-10-27 20:18:06 +0000475 }
Bill Wendling22706e82006-10-27 20:22:04 +0000476 }
Chris Lattner5f73e382003-04-25 00:53:05 +0000477 }
478 }
Misha Brukman3da94ae2005-04-22 00:00:37 +0000479
Chris Lattneraae33f92003-04-24 22:24:58 +0000480 // Now try to reduce the number of functions in the module to something small.
Chris Lattnerefdc0b52004-03-14 20:50:42 +0000481 std::vector<Function*> Functions;
482 for (Module::iterator I = BD.getProgram()->begin(),
Chris Lattner8b189272004-02-18 23:26:28 +0000483 E = BD.getProgram()->end(); I != E; ++I)
Reid Spencer5cbf9852007-01-30 20:08:39 +0000484 if (!I->isDeclaration())
Chris Lattneraae33f92003-04-24 22:24:58 +0000485 Functions.push_back(I);
Chris Lattnerafade922002-11-20 22:28:10 +0000486
Chris Lattnerf9aaae02005-08-02 02:16:17 +0000487 if (Functions.size() > 1 && !BugpointIsInterrupted) {
Dan Gohmanac95cc72009-07-16 15:30:09 +0000488 outs() << "\n*** Attempting to reduce the number of functions "
Chris Lattneraae33f92003-04-24 22:24:58 +0000489 "in the testcase\n";
Chris Lattnerafade922002-11-20 22:28:10 +0000490
Chris Lattner8b189272004-02-18 23:26:28 +0000491 unsigned OldSize = Functions.size();
Nick Lewycky22ff7482010-04-12 05:08:25 +0000492 ReduceCrashingFunctions(BD, TestFn).reduceList(Functions, Error);
Chris Lattnerafade922002-11-20 22:28:10 +0000493
Chris Lattnerf9aaae02005-08-02 02:16:17 +0000494 if (Functions.size() < OldSize)
Rafael Espindolabae1b712010-07-28 18:12:30 +0000495 BD.EmitProgressBitcode(BD.getProgram(), "reduced-function");
Chris Lattnerafade922002-11-20 22:28:10 +0000496 }
497
Chris Lattner286921e2003-04-24 23:51:38 +0000498 // Attempt to delete entire basic blocks at a time to speed up
499 // convergence... this actually works by setting the terminator of the blocks
500 // to a return instruction then running simplifycfg, which can potentially
501 // shrinks the code dramatically quickly
502 //
Chris Lattnerf9aaae02005-08-02 02:16:17 +0000503 if (!DisableSimplifyCFG && !BugpointIsInterrupted) {
Chris Lattner8b189272004-02-18 23:26:28 +0000504 std::vector<const BasicBlock*> Blocks;
505 for (Module::const_iterator I = BD.getProgram()->begin(),
506 E = BD.getProgram()->end(); I != E; ++I)
507 for (Function::const_iterator FI = I->begin(), E = I->end(); FI !=E; ++FI)
Chris Lattner47ae4a12003-08-05 15:51:05 +0000508 Blocks.push_back(FI);
Torok Edwin2c235012009-05-24 09:40:47 +0000509 unsigned OldSize = Blocks.size();
Nick Lewycky22ff7482010-04-12 05:08:25 +0000510 ReduceCrashingBlocks(BD, TestFn).reduceList(Blocks, Error);
Torok Edwin2c235012009-05-24 09:40:47 +0000511 if (Blocks.size() < OldSize)
Rafael Espindolabae1b712010-07-28 18:12:30 +0000512 BD.EmitProgressBitcode(BD.getProgram(), "reduced-blocks");
Chris Lattner47ae4a12003-08-05 15:51:05 +0000513 }
Chris Lattner218e26e2002-12-23 23:49:59 +0000514
Nick Lewycky4c8f9af2009-05-25 05:30:00 +0000515 // Attempt to delete instructions using bisection. This should help out nasty
516 // cases with large basic blocks where the problem is at one end.
517 if (!BugpointIsInterrupted) {
518 std::vector<const Instruction*> Insts;
519 for (Module::const_iterator MI = BD.getProgram()->begin(),
520 ME = BD.getProgram()->end(); MI != ME; ++MI)
521 for (Function::const_iterator FI = MI->begin(), FE = MI->end(); FI != FE;
522 ++FI)
523 for (BasicBlock::const_iterator I = FI->begin(), E = FI->end();
524 I != E; ++I)
525 if (!isa<TerminatorInst>(I))
526 Insts.push_back(I);
527
Nick Lewycky22ff7482010-04-12 05:08:25 +0000528 ReduceCrashingInstructions(BD, TestFn).reduceList(Insts, Error);
Nick Lewycky4c8f9af2009-05-25 05:30:00 +0000529 }
530
Chris Lattneraae33f92003-04-24 22:24:58 +0000531 // FIXME: This should use the list reducer to converge faster by deleting
532 // larger chunks of instructions at a time!
Chris Lattnerb2c180f2004-03-13 19:35:54 +0000533 unsigned Simplification = 2;
Chris Lattner65207852003-01-23 02:48:33 +0000534 do {
Chris Lattnerf9aaae02005-08-02 02:16:17 +0000535 if (BugpointIsInterrupted) break;
Chris Lattner65207852003-01-23 02:48:33 +0000536 --Simplification;
Dan Gohmanac95cc72009-07-16 15:30:09 +0000537 outs() << "\n*** Attempting to reduce testcase by deleting instruc"
538 << "tions: Simplification Level #" << Simplification << '\n';
Chris Lattner65207852003-01-23 02:48:33 +0000539
Misha Brukman5560c9d2003-08-18 14:43:39 +0000540 // Now that we have deleted the functions that are unnecessary for the
541 // program, try to remove instructions that are not necessary to cause the
Chris Lattner65207852003-01-23 02:48:33 +0000542 // crash. To do this, we loop through all of the instructions in the
543 // remaining functions, deleting them (replacing any values produced with
544 // nulls), and then running ADCE and SimplifyCFG. If the transformed input
545 // still triggers failure, keep deleting until we cannot trigger failure
546 // anymore.
547 //
Chris Lattnerf66d9062004-02-18 23:59:11 +0000548 unsigned InstructionsToSkipBeforeDeleting = 0;
Chris Lattner65207852003-01-23 02:48:33 +0000549 TryAgain:
Misha Brukman3da94ae2005-04-22 00:00:37 +0000550
Chris Lattner65207852003-01-23 02:48:33 +0000551 // Loop over all of the (non-terminator) instructions remaining in the
552 // function, attempting to delete them.
Chris Lattnerf66d9062004-02-18 23:59:11 +0000553 unsigned CurInstructionNum = 0;
Chris Lattner8b189272004-02-18 23:26:28 +0000554 for (Module::const_iterator FI = BD.getProgram()->begin(),
555 E = BD.getProgram()->end(); FI != E; ++FI)
Reid Spencer5cbf9852007-01-30 20:08:39 +0000556 if (!FI->isDeclaration())
Chris Lattner8b189272004-02-18 23:26:28 +0000557 for (Function::const_iterator BI = FI->begin(), E = FI->end(); BI != E;
558 ++BI)
559 for (BasicBlock::const_iterator I = BI->begin(), E = --BI->end();
Chris Lattnerf66d9062004-02-18 23:59:11 +0000560 I != E; ++I, ++CurInstructionNum)
561 if (InstructionsToSkipBeforeDeleting) {
562 --InstructionsToSkipBeforeDeleting;
563 } else {
Chris Lattnerf9aaae02005-08-02 02:16:17 +0000564 if (BugpointIsInterrupted) goto ExitLoops;
565
Dan Gohmanac95cc72009-07-16 15:30:09 +0000566 outs() << "Checking instruction: " << *I;
Chris Lattnerf66d9062004-02-18 23:59:11 +0000567 Module *M = BD.deleteInstructionFromProgram(I, Simplification);
Misha Brukman3da94ae2005-04-22 00:00:37 +0000568
Chris Lattnerf66d9062004-02-18 23:59:11 +0000569 // Find out if the pass still crashes on this pass...
570 if (TestFn(BD, M)) {
571 // Yup, it does, we delete the old module, and continue trying
572 // to reduce the testcase...
573 BD.setNewProgram(M);
Chris Lattnerf66d9062004-02-18 23:59:11 +0000574 InstructionsToSkipBeforeDeleting = CurInstructionNum;
575 goto TryAgain; // I wish I had a multi-level break here!
576 }
Misha Brukman3da94ae2005-04-22 00:00:37 +0000577
Chris Lattnerf66d9062004-02-18 23:59:11 +0000578 // This pass didn't crash without this instruction, try the next
579 // one.
580 delete M;
Chris Lattner65207852003-01-23 02:48:33 +0000581 }
Chris Lattnerf66d9062004-02-18 23:59:11 +0000582
583 if (InstructionsToSkipBeforeDeleting) {
584 InstructionsToSkipBeforeDeleting = 0;
585 goto TryAgain;
586 }
Misha Brukman3da94ae2005-04-22 00:00:37 +0000587
Chris Lattner65207852003-01-23 02:48:33 +0000588 } while (Simplification);
Chris Lattnerf9aaae02005-08-02 02:16:17 +0000589ExitLoops:
Chris Lattnerba386d92003-02-28 16:13:20 +0000590
591 // Try to clean up the testcase by running funcresolve and globaldce...
Chris Lattnerf9aaae02005-08-02 02:16:17 +0000592 if (!BugpointIsInterrupted) {
Dan Gohmanac95cc72009-07-16 15:30:09 +0000593 outs() << "\n*** Attempting to perform final cleanups: ";
Chris Lattnerf9aaae02005-08-02 02:16:17 +0000594 Module *M = CloneModule(BD.getProgram());
595 M = BD.performFinalCleanups(M, true);
Misha Brukman3da94ae2005-04-22 00:00:37 +0000596
Chris Lattnerf9aaae02005-08-02 02:16:17 +0000597 // Find out if the pass still crashes on the cleaned up program...
598 if (TestFn(BD, M)) {
599 BD.setNewProgram(M); // Yup, it does, keep the reduced version...
600 } else {
601 delete M;
602 }
Chris Lattnerba386d92003-02-28 16:13:20 +0000603 }
604
Rafael Espindolabae1b712010-07-28 18:12:30 +0000605 BD.EmitProgressBitcode(BD.getProgram(), "reduced-simplified");
Chris Lattnerba386d92003-02-28 16:13:20 +0000606
Misha Brukman3da94ae2005-04-22 00:00:37 +0000607 return false;
Chris Lattnerafade922002-11-20 22:28:10 +0000608}
Brian Gaeked0fde302003-11-11 22:41:34 +0000609
Chris Lattner8b189272004-02-18 23:26:28 +0000610static bool TestForOptimizerCrash(BugDriver &BD, Module *M) {
611 return BD.runPasses(M);
612}
Chris Lattner02526262004-02-18 21:02:04 +0000613
Chris Lattner8b189272004-02-18 23:26:28 +0000614/// debugOptimizerCrash - This method is called when some pass crashes on input.
615/// It attempts to prune down the testcase to something reasonable, and figure
616/// out exactly which pass is crashing.
617///
Patrick Jenkins6a3f31c2006-08-15 16:40:49 +0000618bool BugDriver::debugOptimizerCrash(const std::string &ID) {
Dan Gohmanac95cc72009-07-16 15:30:09 +0000619 outs() << "\n*** Debugging optimizer crash!\n";
Chris Lattner8b189272004-02-18 23:26:28 +0000620
Nick Lewycky22ff7482010-04-12 05:08:25 +0000621 std::string Error;
Chris Lattner8b189272004-02-18 23:26:28 +0000622 // Reduce the list of passes which causes the optimizer to crash...
Chris Lattnerf9aaae02005-08-02 02:16:17 +0000623 if (!BugpointIsInterrupted)
Nick Lewycky22ff7482010-04-12 05:08:25 +0000624 ReducePassList(*this).reduceList(PassesToRun, Error);
625 assert(Error.empty());
Chris Lattner8b189272004-02-18 23:26:28 +0000626
Dan Gohmanac95cc72009-07-16 15:30:09 +0000627 outs() << "\n*** Found crashing pass"
628 << (PassesToRun.size() == 1 ? ": " : "es: ")
629 << getPassesString(PassesToRun) << '\n';
Chris Lattner8b189272004-02-18 23:26:28 +0000630
Rafael Espindolabae1b712010-07-28 18:12:30 +0000631 EmitProgressBitcode(Program, ID);
Chris Lattner8b189272004-02-18 23:26:28 +0000632
Nick Lewycky22ff7482010-04-12 05:08:25 +0000633 bool Success = DebugACrash(*this, TestForOptimizerCrash, Error);
634 assert(Error.empty());
635 return Success;
Chris Lattner8b189272004-02-18 23:26:28 +0000636}
637
638static bool TestForCodeGenCrash(BugDriver &BD, Module *M) {
Nick Lewycky22ff7482010-04-12 05:08:25 +0000639 std::string Error;
640 BD.compileProgram(M, &Error);
641 if (!Error.empty()) {
Dan Gohman65f57c22009-07-15 16:35:29 +0000642 errs() << "<crash>\n";
Chris Lattner8b189272004-02-18 23:26:28 +0000643 return true; // Tool is still crashing.
644 }
Nick Lewycky22ff7482010-04-12 05:08:25 +0000645 errs() << '\n';
646 return false;
Chris Lattner8b189272004-02-18 23:26:28 +0000647}
Chris Lattner02526262004-02-18 21:02:04 +0000648
649/// debugCodeGeneratorCrash - This method is called when the code generator
650/// crashes on an input. It attempts to reduce the input as much as possible
651/// while still causing the code generator to crash.
Nick Lewycky22ff7482010-04-12 05:08:25 +0000652bool BugDriver::debugCodeGeneratorCrash(std::string &Error) {
Dan Gohman65f57c22009-07-15 16:35:29 +0000653 errs() << "*** Debugging code generator crash!\n";
Chris Lattner02526262004-02-18 21:02:04 +0000654
Nick Lewycky22ff7482010-04-12 05:08:25 +0000655 return DebugACrash(*this, TestForCodeGenCrash, Error);
Chris Lattner02526262004-02-18 21:02:04 +0000656}