blob: 9c9dddedceb8ec2cd98ded662876312a70304f8d [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===- CrashDebugger.cpp - Debug compilation crashes ----------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner5f5a5732007-12-29 20:44:31 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file defines the bugpoint internals that narrow down compilation crashes
11//
12//===----------------------------------------------------------------------===//
13
14#include "BugDriver.h"
15#include "ToolRunner.h"
16#include "ListReducer.h"
Chris Lattner86a23b12008-04-28 00:04:58 +000017#include "llvm/Constants.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000018#include "llvm/DerivedTypes.h"
19#include "llvm/Instructions.h"
20#include "llvm/Module.h"
21#include "llvm/Pass.h"
22#include "llvm/PassManager.h"
23#include "llvm/ValueSymbolTable.h"
Nick Lewyckyb35aa262009-04-04 09:39:23 +000024#include "llvm/ADT/SmallPtrSet.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000025#include "llvm/Analysis/Verifier.h"
26#include "llvm/Support/CFG.h"
27#include "llvm/Transforms/Scalar.h"
28#include "llvm/Transforms/Utils/Cloning.h"
29#include "llvm/Support/FileUtilities.h"
30#include "llvm/Support/CommandLine.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000031#include <set>
32using namespace llvm;
33
34namespace {
35 cl::opt<bool>
36 KeepMain("keep-main",
37 cl::desc("Force function reduction to keep main"),
38 cl::init(false));
Edwin Törökecf67c42009-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));
Dan Gohmanf17a25c2007-07-18 16:29:46 +000043}
44
45namespace llvm {
46 class ReducePassList : public ListReducer<const PassInfo*> {
47 BugDriver &BD;
48 public:
49 ReducePassList(BugDriver &bd) : BD(bd) {}
50
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 //
55 virtual TestResult doTest(std::vector<const PassInfo*> &Removed,
Nick Lewycky3cefdd32010-04-12 05:08:25 +000056 std::vector<const PassInfo*> &Kept,
57 std::string &Error);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000058 };
59}
60
61ReducePassList::TestResult
62ReducePassList::doTest(std::vector<const PassInfo*> &Prefix,
Nick Lewycky3cefdd32010-04-12 05:08:25 +000063 std::vector<const PassInfo*> &Suffix,
64 std::string &Error) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +000065 sys::Path PrefixOutput;
66 Module *OrigProgram = 0;
67 if (!Prefix.empty()) {
Dan Gohmanb714fab2009-07-16 15:30:09 +000068 outs() << "Checking to see if these passes crash: "
69 << getPassesString(Prefix) << ": ";
Dan Gohmanf17a25c2007-07-18 16:29:46 +000070 std::string PfxOutput;
71 if (BD.runPasses(Prefix, PfxOutput))
72 return KeepPrefix;
73
74 PrefixOutput.set(PfxOutput);
75 OrigProgram = BD.Program;
76
Chris Lattnerb1aa85b2009-08-23 22:45:37 +000077 BD.Program = ParseInputFile(PrefixOutput.str(), BD.getContext());
Dan Gohmanf17a25c2007-07-18 16:29:46 +000078 if (BD.Program == 0) {
Dan Gohmanf8b81bf2009-07-15 16:35:29 +000079 errs() << BD.getToolName() << ": Error reading bitcode file '"
Chris Lattnerb1aa85b2009-08-23 22:45:37 +000080 << PrefixOutput.str() << "'!\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +000081 exit(1);
82 }
83 PrefixOutput.eraseFromDisk();
84 }
85
Dan Gohmanb714fab2009-07-16 15:30:09 +000086 outs() << "Checking to see if these passes crash: "
87 << getPassesString(Suffix) << ": ";
Dan Gohmanf17a25c2007-07-18 16:29:46 +000088
89 if (BD.runPasses(Suffix)) {
90 delete OrigProgram; // The suffix crashes alone...
91 return KeepSuffix;
92 }
93
94 // Nothing failed, restore state...
95 if (OrigProgram) {
96 delete BD.Program;
97 BD.Program = OrigProgram;
98 }
99 return NoFailure;
100}
101
102namespace {
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 Lewycky3cefdd32010-04-12 05:08:25 +0000112 bool (*testFn)(BugDriver &, Module *))
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000113 : BD(bd), TestFn(testFn) {}
114
Nick Lewycky3cefdd32010-04-12 05:08:25 +0000115 virtual TestResult doTest(std::vector<GlobalVariable*> &Prefix,
116 std::vector<GlobalVariable*> &Kept,
117 std::string &Error) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000118 if (!Kept.empty() && TestGlobalVariables(Kept))
119 return KeepSuffix;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000120 if (!Prefix.empty() && TestGlobalVariables(Prefix))
121 return KeepPrefix;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000122 return NoFailure;
123 }
124
Nick Lewycky3cefdd32010-04-12 05:08:25 +0000125 bool TestGlobalVariables(std::vector<GlobalVariable*> &GVs);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000126 };
127}
128
129bool
130ReduceCrashingGlobalVariables::TestGlobalVariables(
Nick Lewycky3cefdd32010-04-12 05:08:25 +0000131 std::vector<GlobalVariable*> &GVs) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000132 // Clone the program to try hacking it apart...
Andrew Lenharth7db97992008-03-24 22:16:14 +0000133 DenseMap<const Value*, Value*> ValueMap;
134 Module *M = CloneModule(BD.getProgram(), ValueMap);
Dan Gohmanf17a25c2007-07-18 16:29:46 +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) {
Andrew Lenharth7db97992008-03-24 22:16:14 +0000140 GlobalVariable* CMGV = cast<GlobalVariable>(ValueMap[GVs[i]]);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000141 assert(CMGV && "Global Variable not in module?!");
142 GVSet.insert(CMGV);
143 }
144
Dan Gohmanb714fab2009-07-16 15:30:09 +0000145 outs() << "Checking for crash with only these global variables: ";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000146 PrintGlobalVariableList(GVs);
Dan Gohmanb714fab2009-07-16 15:30:09 +0000147 outs() << ": ";
Dan Gohmanf17a25c2007-07-18 16:29:46 +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 Lewyckyafd24a42009-05-25 06:29:56 +0000153 if (I->hasInitializer() && !GVSet.count(I)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +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
172namespace llvm {
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 ///
177 class ReduceCrashingFunctions : public ListReducer<Function*> {
178 BugDriver &BD;
179 bool (*TestFn)(BugDriver &, Module *);
180 public:
181 ReduceCrashingFunctions(BugDriver &bd,
182 bool (*testFn)(BugDriver &, Module *))
183 : BD(bd), TestFn(testFn) {}
184
185 virtual TestResult doTest(std::vector<Function*> &Prefix,
Nick Lewycky3cefdd32010-04-12 05:08:25 +0000186 std::vector<Function*> &Kept,
187 std::string &Error) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000188 if (!Kept.empty() && TestFuncs(Kept))
189 return KeepSuffix;
190 if (!Prefix.empty() && TestFuncs(Prefix))
191 return KeepPrefix;
192 return NoFailure;
193 }
194
195 bool TestFuncs(std::vector<Function*> &Prefix);
196 };
197}
198
199bool ReduceCrashingFunctions::TestFuncs(std::vector<Function*> &Funcs) {
200
201 //if main isn't present, claim there is no problem
202 if (KeepMain && find(Funcs.begin(), Funcs.end(),
203 BD.getProgram()->getFunction("main")) == Funcs.end())
204 return false;
205
206 // Clone the program to try hacking it apart...
Dan Gohman896e78a2009-03-06 02:16:23 +0000207 DenseMap<const Value*, Value*> ValueMap;
208 Module *M = CloneModule(BD.getProgram(), ValueMap);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000209
210 // Convert list to set for fast lookup...
211 std::set<Function*> Functions;
212 for (unsigned i = 0, e = Funcs.size(); i != e; ++i) {
Dan Gohman896e78a2009-03-06 02:16:23 +0000213 Function *CMF = cast<Function>(ValueMap[Funcs[i]]);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000214 assert(CMF && "Function not in module?!");
215 assert(CMF->getFunctionType() == Funcs[i]->getFunctionType() && "wrong ty");
Dan Gohman896e78a2009-03-06 02:16:23 +0000216 assert(CMF->getName() == Funcs[i]->getName() && "wrong name");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000217 Functions.insert(CMF);
218 }
219
Dan Gohmanb714fab2009-07-16 15:30:09 +0000220 outs() << "Checking for crash with only these functions: ";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000221 PrintFunctionList(Funcs);
Dan Gohmanb714fab2009-07-16 15:30:09 +0000222 outs() << ": ";
Dan Gohmanf17a25c2007-07-18 16:29:46 +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)
227 if (!I->isDeclaration() && !Functions.count(I))
228 DeleteFunctionBody(I);
229
230 // Try running the hacked up program...
231 if (TestFn(BD, M)) {
232 BD.setNewProgram(M); // It crashed, keep the trimmed version...
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 }
239 delete M;
240 return false;
241}
242
243
244namespace {
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 ///
250 class ReduceCrashingBlocks : public ListReducer<const BasicBlock*> {
251 BugDriver &BD;
252 bool (*TestFn)(BugDriver &, Module *);
253 public:
254 ReduceCrashingBlocks(BugDriver &bd, bool (*testFn)(BugDriver &, Module *))
255 : BD(bd), TestFn(testFn) {}
256
257 virtual TestResult doTest(std::vector<const BasicBlock*> &Prefix,
Nick Lewycky3cefdd32010-04-12 05:08:25 +0000258 std::vector<const BasicBlock*> &Kept,
259 std::string &Error) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000260 if (!Kept.empty() && TestBlocks(Kept))
261 return KeepSuffix;
262 if (!Prefix.empty() && TestBlocks(Prefix))
263 return KeepPrefix;
264 return NoFailure;
265 }
266
267 bool TestBlocks(std::vector<const BasicBlock*> &Prefix);
268 };
269}
270
271bool ReduceCrashingBlocks::TestBlocks(std::vector<const BasicBlock*> &BBs) {
272 // Clone the program to try hacking it apart...
Dan Gohmanea5f86f2009-03-05 23:20:46 +0000273 DenseMap<const Value*, Value*> ValueMap;
274 Module *M = CloneModule(BD.getProgram(), ValueMap);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000275
276 // Convert list to set for fast lookup...
Nick Lewyckyb35aa262009-04-04 09:39:23 +0000277 SmallPtrSet<BasicBlock*, 8> Blocks;
278 for (unsigned i = 0, e = BBs.size(); i != e; ++i)
279 Blocks.insert(cast<BasicBlock>(ValueMap[BBs[i]]));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000280
Dan Gohmanb714fab2009-07-16 15:30:09 +0000281 outs() << "Checking for crash with only these blocks:";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000282 unsigned NumPrint = Blocks.size();
283 if (NumPrint > 10) NumPrint = 10;
284 for (unsigned i = 0, e = NumPrint; i != e; ++i)
Dan Gohmanb714fab2009-07-16 15:30:09 +0000285 outs() << " " << BBs[i]->getName();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000286 if (NumPrint < Blocks.size())
Dan Gohmanb714fab2009-07-16 15:30:09 +0000287 outs() << "... <" << Blocks.size() << " total>";
288 outs() << ": ";
Dan Gohmanf17a25c2007-07-18 16:29:46 +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)
293 if (!Blocks.count(BB) && BB->getTerminator()->getNumSuccessors()) {
294 // 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 Lattner86a23b12008-04-28 00:04:58 +0000299 TerminatorInst *BBTerm = BB->getTerminator();
300
Dan Gohman180c01b2010-06-05 00:42:29 +0000301 if (BB->getTerminator()->getType() !=
Owen Anderson35b47072009-08-13 21:58:54 +0000302 Type::getVoidTy(BB->getContext()))
Owen Andersonaac28372009-07-31 20:28:14 +0000303 BBTerm->replaceAllUsesWith(Constant::getNullValue(BBTerm->getType()));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000304
Chris Lattner86a23b12008-04-28 00:04:58 +0000305 // Replace the old terminator instruction.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000306 BB->getInstList().pop_back();
Owen Anderson35b47072009-08-13 21:58:54 +0000307 new UnreachableInst(BB->getContext(), BB);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000308 }
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.
315 std::vector<std::pair<Function*, std::string> > BlockInfo;
316
Nick Lewyckyb35aa262009-04-04 09:39:23 +0000317 for (SmallPtrSet<BasicBlock*, 8>::iterator I = Blocks.begin(),
318 E = Blocks.end(); I != E; ++I)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000319 BlockInfo.push_back(std::make_pair((*I)->getParent(), (*I)->getName()));
320
321 // Now run the CFG simplify pass on the function...
322 PassManager Passes;
323 Passes.add(createCFGSimplificationPass());
324 Passes.add(createVerifierPass());
325 Passes.run(*M);
326
327 // Try running on the hacked up program...
328 if (TestFn(BD, M)) {
329 BD.setNewProgram(M); // It crashed, keep the trimmed version...
330
331 // Make sure to use basic block pointers that point into the now-current
332 // module, and that they don't include any deleted blocks.
333 BBs.clear();
334 for (unsigned i = 0, e = BlockInfo.size(); i != e; ++i) {
335 ValueSymbolTable &ST = BlockInfo[i].first->getValueSymbolTable();
336 Value* V = ST.lookup(BlockInfo[i].second);
Owen Anderson35b47072009-08-13 21:58:54 +0000337 if (V && V->getType() == Type::getLabelTy(V->getContext()))
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000338 BBs.push_back(cast<BasicBlock>(V));
339 }
340 return true;
341 }
342 delete M; // It didn't crash, try something else.
343 return false;
344}
345
Nick Lewycky40ebc872009-05-25 05:30:00 +0000346namespace {
347 /// ReduceCrashingInstructions reducer - This works by removing the specified
348 /// non-terminator instructions and replacing them with undef.
349 ///
350 class ReduceCrashingInstructions : public ListReducer<const Instruction*> {
351 BugDriver &BD;
352 bool (*TestFn)(BugDriver &, Module *);
353 public:
354 ReduceCrashingInstructions(BugDriver &bd, bool (*testFn)(BugDriver &,
355 Module *))
356 : BD(bd), TestFn(testFn) {}
357
358 virtual TestResult doTest(std::vector<const Instruction*> &Prefix,
Nick Lewycky3cefdd32010-04-12 05:08:25 +0000359 std::vector<const Instruction*> &Kept,
360 std::string &Error) {
Nick Lewycky40ebc872009-05-25 05:30:00 +0000361 if (!Kept.empty() && TestInsts(Kept))
362 return KeepSuffix;
363 if (!Prefix.empty() && TestInsts(Prefix))
364 return KeepPrefix;
365 return NoFailure;
366 }
367
368 bool TestInsts(std::vector<const Instruction*> &Prefix);
369 };
370}
371
372bool ReduceCrashingInstructions::TestInsts(std::vector<const Instruction*>
373 &Insts) {
374 // Clone the program to try hacking it apart...
375 DenseMap<const Value*, Value*> ValueMap;
376 Module *M = CloneModule(BD.getProgram(), ValueMap);
377
378 // Convert list to set for fast lookup...
379 SmallPtrSet<Instruction*, 64> Instructions;
380 for (unsigned i = 0, e = Insts.size(); i != e; ++i) {
381 assert(!isa<TerminatorInst>(Insts[i]));
382 Instructions.insert(cast<Instruction>(ValueMap[Insts[i]]));
383 }
384
Dan Gohmanb714fab2009-07-16 15:30:09 +0000385 outs() << "Checking for crash with only " << Instructions.size();
Nick Lewycky40ebc872009-05-25 05:30:00 +0000386 if (Instructions.size() == 1)
Dan Gohmanb714fab2009-07-16 15:30:09 +0000387 outs() << " instruction: ";
Nick Lewycky40ebc872009-05-25 05:30:00 +0000388 else
Dan Gohmanb714fab2009-07-16 15:30:09 +0000389 outs() << " instructions: ";
Nick Lewycky40ebc872009-05-25 05:30:00 +0000390
391 for (Module::iterator MI = M->begin(), ME = M->end(); MI != ME; ++MI)
392 for (Function::iterator FI = MI->begin(), FE = MI->end(); FI != FE; ++FI)
393 for (BasicBlock::iterator I = FI->begin(), E = FI->end(); I != E;) {
394 Instruction *Inst = I++;
395 if (!Instructions.count(Inst) && !isa<TerminatorInst>(Inst)) {
Owen Anderson35b47072009-08-13 21:58:54 +0000396 if (Inst->getType() != Type::getVoidTy(Inst->getContext()))
Nick Lewycky40ebc872009-05-25 05:30:00 +0000397 Inst->replaceAllUsesWith(UndefValue::get(Inst->getType()));
398 Inst->eraseFromParent();
399 }
400 }
401
402 // Verify that this is still valid.
403 PassManager Passes;
404 Passes.add(createVerifierPass());
405 Passes.run(*M);
406
407 // Try running on the hacked up program...
408 if (TestFn(BD, M)) {
409 BD.setNewProgram(M); // It crashed, keep the trimmed version...
410
411 // Make sure to use instruction pointers that point into the now-current
412 // module, and that they don't include any deleted blocks.
413 Insts.clear();
414 for (SmallPtrSet<Instruction*, 64>::const_iterator I = Instructions.begin(),
415 E = Instructions.end(); I != E; ++I)
416 Insts.push_back(*I);
417 return true;
418 }
419 delete M; // It didn't crash, try something else.
420 return false;
421}
422
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000423/// DebugACrash - Given a predicate that determines whether a component crashes
424/// on a program, try to destructively reduce the program while still keeping
425/// the predicate true.
Nick Lewycky3cefdd32010-04-12 05:08:25 +0000426static bool DebugACrash(BugDriver &BD, bool (*TestFn)(BugDriver &, Module *),
427 std::string &Error) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000428 // See if we can get away with nuking some of the global variable initializers
429 // in the program...
Edwin Törökecf67c42009-05-24 09:31:04 +0000430 if (!NoGlobalRM &&
431 BD.getProgram()->global_begin() != BD.getProgram()->global_end()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000432 // Now try to reduce the number of global variable initializers in the
433 // module to something small.
434 Module *M = CloneModule(BD.getProgram());
435 bool DeletedInit = false;
436
437 for (Module::global_iterator I = M->global_begin(), E = M->global_end();
438 I != E; ++I)
439 if (I->hasInitializer()) {
440 I->setInitializer(0);
441 I->setLinkage(GlobalValue::ExternalLinkage);
442 DeletedInit = true;
443 }
444
445 if (!DeletedInit) {
446 delete M; // No change made...
447 } else {
448 // See if the program still causes a crash...
Dan Gohmanb714fab2009-07-16 15:30:09 +0000449 outs() << "\nChecking to see if we can delete global inits: ";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000450
451 if (TestFn(BD, M)) { // Still crashes?
452 BD.setNewProgram(M);
Dan Gohmanb714fab2009-07-16 15:30:09 +0000453 outs() << "\n*** Able to remove all global initializers!\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000454 } else { // No longer crashes?
Dan Gohmanb714fab2009-07-16 15:30:09 +0000455 outs() << " - Removing all global inits hides problem!\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000456 delete M;
457
458 std::vector<GlobalVariable*> GVs;
459
460 for (Module::global_iterator I = BD.getProgram()->global_begin(),
461 E = BD.getProgram()->global_end(); I != E; ++I)
462 if (I->hasInitializer())
463 GVs.push_back(I);
464
465 if (GVs.size() > 1 && !BugpointIsInterrupted) {
Dan Gohmanb714fab2009-07-16 15:30:09 +0000466 outs() << "\n*** Attempting to reduce the number of global "
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000467 << "variables in the testcase\n";
468
469 unsigned OldSize = GVs.size();
Nick Lewycky3cefdd32010-04-12 05:08:25 +0000470 ReduceCrashingGlobalVariables(BD, TestFn).reduceList(GVs, Error);
471 if (!Error.empty())
472 return true;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000473
474 if (GVs.size() < OldSize)
475 BD.EmitProgressBitcode("reduced-global-variables");
476 }
477 }
478 }
479 }
480
481 // Now try to reduce the number of functions in the module to something small.
482 std::vector<Function*> Functions;
483 for (Module::iterator I = BD.getProgram()->begin(),
484 E = BD.getProgram()->end(); I != E; ++I)
485 if (!I->isDeclaration())
486 Functions.push_back(I);
487
488 if (Functions.size() > 1 && !BugpointIsInterrupted) {
Dan Gohmanb714fab2009-07-16 15:30:09 +0000489 outs() << "\n*** Attempting to reduce the number of functions "
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000490 "in the testcase\n";
491
492 unsigned OldSize = Functions.size();
Nick Lewycky3cefdd32010-04-12 05:08:25 +0000493 ReduceCrashingFunctions(BD, TestFn).reduceList(Functions, Error);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000494
495 if (Functions.size() < OldSize)
496 BD.EmitProgressBitcode("reduced-function");
497 }
498
499 // Attempt to delete entire basic blocks at a time to speed up
500 // convergence... this actually works by setting the terminator of the blocks
501 // to a return instruction then running simplifycfg, which can potentially
502 // shrinks the code dramatically quickly
503 //
504 if (!DisableSimplifyCFG && !BugpointIsInterrupted) {
505 std::vector<const BasicBlock*> Blocks;
506 for (Module::const_iterator I = BD.getProgram()->begin(),
507 E = BD.getProgram()->end(); I != E; ++I)
508 for (Function::const_iterator FI = I->begin(), E = I->end(); FI !=E; ++FI)
509 Blocks.push_back(FI);
Edwin Törökce1c1f52009-05-24 09:40:47 +0000510 unsigned OldSize = Blocks.size();
Nick Lewycky3cefdd32010-04-12 05:08:25 +0000511 ReduceCrashingBlocks(BD, TestFn).reduceList(Blocks, Error);
Edwin Törökce1c1f52009-05-24 09:40:47 +0000512 if (Blocks.size() < OldSize)
513 BD.EmitProgressBitcode("reduced-blocks");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000514 }
515
Nick Lewycky40ebc872009-05-25 05:30:00 +0000516 // Attempt to delete instructions using bisection. This should help out nasty
517 // cases with large basic blocks where the problem is at one end.
518 if (!BugpointIsInterrupted) {
519 std::vector<const Instruction*> Insts;
520 for (Module::const_iterator MI = BD.getProgram()->begin(),
521 ME = BD.getProgram()->end(); MI != ME; ++MI)
522 for (Function::const_iterator FI = MI->begin(), FE = MI->end(); FI != FE;
523 ++FI)
524 for (BasicBlock::const_iterator I = FI->begin(), E = FI->end();
525 I != E; ++I)
526 if (!isa<TerminatorInst>(I))
527 Insts.push_back(I);
528
Nick Lewycky3cefdd32010-04-12 05:08:25 +0000529 ReduceCrashingInstructions(BD, TestFn).reduceList(Insts, Error);
Nick Lewycky40ebc872009-05-25 05:30:00 +0000530 }
531
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000532 // FIXME: This should use the list reducer to converge faster by deleting
533 // larger chunks of instructions at a time!
534 unsigned Simplification = 2;
535 do {
536 if (BugpointIsInterrupted) break;
537 --Simplification;
Dan Gohmanb714fab2009-07-16 15:30:09 +0000538 outs() << "\n*** Attempting to reduce testcase by deleting instruc"
539 << "tions: Simplification Level #" << Simplification << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000540
541 // Now that we have deleted the functions that are unnecessary for the
542 // program, try to remove instructions that are not necessary to cause the
543 // crash. To do this, we loop through all of the instructions in the
544 // remaining functions, deleting them (replacing any values produced with
545 // nulls), and then running ADCE and SimplifyCFG. If the transformed input
546 // still triggers failure, keep deleting until we cannot trigger failure
547 // anymore.
548 //
549 unsigned InstructionsToSkipBeforeDeleting = 0;
550 TryAgain:
551
552 // Loop over all of the (non-terminator) instructions remaining in the
553 // function, attempting to delete them.
554 unsigned CurInstructionNum = 0;
555 for (Module::const_iterator FI = BD.getProgram()->begin(),
556 E = BD.getProgram()->end(); FI != E; ++FI)
557 if (!FI->isDeclaration())
558 for (Function::const_iterator BI = FI->begin(), E = FI->end(); BI != E;
559 ++BI)
560 for (BasicBlock::const_iterator I = BI->begin(), E = --BI->end();
561 I != E; ++I, ++CurInstructionNum)
562 if (InstructionsToSkipBeforeDeleting) {
563 --InstructionsToSkipBeforeDeleting;
564 } else {
565 if (BugpointIsInterrupted) goto ExitLoops;
566
Dan Gohmanb714fab2009-07-16 15:30:09 +0000567 outs() << "Checking instruction: " << *I;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000568 Module *M = BD.deleteInstructionFromProgram(I, Simplification);
569
570 // Find out if the pass still crashes on this pass...
571 if (TestFn(BD, M)) {
572 // Yup, it does, we delete the old module, and continue trying
573 // to reduce the testcase...
574 BD.setNewProgram(M);
575 InstructionsToSkipBeforeDeleting = CurInstructionNum;
576 goto TryAgain; // I wish I had a multi-level break here!
577 }
578
579 // This pass didn't crash without this instruction, try the next
580 // one.
581 delete M;
582 }
583
584 if (InstructionsToSkipBeforeDeleting) {
585 InstructionsToSkipBeforeDeleting = 0;
586 goto TryAgain;
587 }
588
589 } while (Simplification);
590ExitLoops:
591
592 // Try to clean up the testcase by running funcresolve and globaldce...
593 if (!BugpointIsInterrupted) {
Dan Gohmanb714fab2009-07-16 15:30:09 +0000594 outs() << "\n*** Attempting to perform final cleanups: ";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000595 Module *M = CloneModule(BD.getProgram());
596 M = BD.performFinalCleanups(M, true);
597
598 // Find out if the pass still crashes on the cleaned up program...
599 if (TestFn(BD, M)) {
600 BD.setNewProgram(M); // Yup, it does, keep the reduced version...
601 } else {
602 delete M;
603 }
604 }
605
606 BD.EmitProgressBitcode("reduced-simplified");
607
608 return false;
609}
610
611static bool TestForOptimizerCrash(BugDriver &BD, Module *M) {
612 return BD.runPasses(M);
613}
614
615/// debugOptimizerCrash - This method is called when some pass crashes on input.
616/// It attempts to prune down the testcase to something reasonable, and figure
617/// out exactly which pass is crashing.
618///
619bool BugDriver::debugOptimizerCrash(const std::string &ID) {
Dan Gohmanb714fab2009-07-16 15:30:09 +0000620 outs() << "\n*** Debugging optimizer crash!\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000621
Nick Lewycky3cefdd32010-04-12 05:08:25 +0000622 std::string Error;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000623 // Reduce the list of passes which causes the optimizer to crash...
624 if (!BugpointIsInterrupted)
Nick Lewycky3cefdd32010-04-12 05:08:25 +0000625 ReducePassList(*this).reduceList(PassesToRun, Error);
626 assert(Error.empty());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000627
Dan Gohmanb714fab2009-07-16 15:30:09 +0000628 outs() << "\n*** Found crashing pass"
629 << (PassesToRun.size() == 1 ? ": " : "es: ")
630 << getPassesString(PassesToRun) << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000631
632 EmitProgressBitcode(ID);
633
Nick Lewycky3cefdd32010-04-12 05:08:25 +0000634 bool Success = DebugACrash(*this, TestForOptimizerCrash, Error);
635 assert(Error.empty());
636 return Success;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000637}
638
639static bool TestForCodeGenCrash(BugDriver &BD, Module *M) {
Nick Lewycky3cefdd32010-04-12 05:08:25 +0000640 std::string Error;
641 BD.compileProgram(M, &Error);
642 if (!Error.empty()) {
Dan Gohmanf8b81bf2009-07-15 16:35:29 +0000643 errs() << "<crash>\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000644 return true; // Tool is still crashing.
645 }
Nick Lewycky3cefdd32010-04-12 05:08:25 +0000646 errs() << '\n';
647 return false;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000648}
649
650/// debugCodeGeneratorCrash - This method is called when the code generator
651/// crashes on an input. It attempts to reduce the input as much as possible
652/// while still causing the code generator to crash.
Nick Lewycky3cefdd32010-04-12 05:08:25 +0000653bool BugDriver::debugCodeGeneratorCrash(std::string &Error) {
Dan Gohmanf8b81bf2009-07-15 16:35:29 +0000654 errs() << "*** Debugging code generator crash!\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000655
Nick Lewycky3cefdd32010-04-12 05:08:25 +0000656 return DebugACrash(*this, TestForCodeGenCrash, Error);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000657}