blob: 9d4e98ca508690ac255b658d2bc781ae3c444b48 [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,
56 std::vector<const PassInfo*> &Kept);
57 };
58}
59
60ReducePassList::TestResult
61ReducePassList::doTest(std::vector<const PassInfo*> &Prefix,
62 std::vector<const PassInfo*> &Suffix) {
63 sys::Path PrefixOutput;
64 Module *OrigProgram = 0;
65 if (!Prefix.empty()) {
Dan Gohmanb714fab2009-07-16 15:30:09 +000066 outs() << "Checking to see if these passes crash: "
67 << getPassesString(Prefix) << ": ";
Dan Gohmanf17a25c2007-07-18 16:29:46 +000068 std::string PfxOutput;
69 if (BD.runPasses(Prefix, PfxOutput))
70 return KeepPrefix;
71
72 PrefixOutput.set(PfxOutput);
73 OrigProgram = BD.Program;
74
Owen Anderson25209b42009-07-01 16:58:40 +000075 BD.Program = ParseInputFile(PrefixOutput.toString(), BD.getContext());
Dan Gohmanf17a25c2007-07-18 16:29:46 +000076 if (BD.Program == 0) {
Dan Gohmanf8b81bf2009-07-15 16:35:29 +000077 errs() << BD.getToolName() << ": Error reading bitcode file '"
78 << PrefixOutput << "'!\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +000079 exit(1);
80 }
81 PrefixOutput.eraseFromDisk();
82 }
83
Dan Gohmanb714fab2009-07-16 15:30:09 +000084 outs() << "Checking to see if these passes crash: "
85 << getPassesString(Suffix) << ": ";
Dan Gohmanf17a25c2007-07-18 16:29:46 +000086
87 if (BD.runPasses(Suffix)) {
88 delete OrigProgram; // The suffix crashes alone...
89 return KeepSuffix;
90 }
91
92 // Nothing failed, restore state...
93 if (OrigProgram) {
94 delete BD.Program;
95 BD.Program = OrigProgram;
96 }
97 return NoFailure;
98}
99
100namespace {
101 /// ReduceCrashingGlobalVariables - This works by removing the global
102 /// variable's initializer and seeing if the program still crashes. If it
103 /// does, then we keep that program and try again.
104 ///
105 class ReduceCrashingGlobalVariables : public ListReducer<GlobalVariable*> {
106 BugDriver &BD;
107 bool (*TestFn)(BugDriver &, Module *);
108 public:
109 ReduceCrashingGlobalVariables(BugDriver &bd,
110 bool (*testFn)(BugDriver&, Module*))
111 : BD(bd), TestFn(testFn) {}
112
113 virtual TestResult doTest(std::vector<GlobalVariable*>& Prefix,
114 std::vector<GlobalVariable*>& Kept) {
115 if (!Kept.empty() && TestGlobalVariables(Kept))
116 return KeepSuffix;
117
118 if (!Prefix.empty() && TestGlobalVariables(Prefix))
119 return KeepPrefix;
120
121 return NoFailure;
122 }
123
124 bool TestGlobalVariables(std::vector<GlobalVariable*>& GVs);
125 };
126}
127
128bool
129ReduceCrashingGlobalVariables::TestGlobalVariables(
130 std::vector<GlobalVariable*>& GVs) {
131 // Clone the program to try hacking it apart...
Andrew Lenharth7db97992008-03-24 22:16:14 +0000132 DenseMap<const Value*, Value*> ValueMap;
133 Module *M = CloneModule(BD.getProgram(), ValueMap);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000134
135 // Convert list to set for fast lookup...
136 std::set<GlobalVariable*> GVSet;
137
138 for (unsigned i = 0, e = GVs.size(); i != e; ++i) {
Andrew Lenharth7db97992008-03-24 22:16:14 +0000139 GlobalVariable* CMGV = cast<GlobalVariable>(ValueMap[GVs[i]]);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000140 assert(CMGV && "Global Variable not in module?!");
141 GVSet.insert(CMGV);
142 }
143
Dan Gohmanb714fab2009-07-16 15:30:09 +0000144 outs() << "Checking for crash with only these global variables: ";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000145 PrintGlobalVariableList(GVs);
Dan Gohmanb714fab2009-07-16 15:30:09 +0000146 outs() << ": ";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000147
148 // Loop over and delete any global variables which we aren't supposed to be
149 // playing with...
150 for (Module::global_iterator I = M->global_begin(), E = M->global_end();
151 I != E; ++I)
Nick Lewyckyafd24a42009-05-25 06:29:56 +0000152 if (I->hasInitializer() && !GVSet.count(I)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000153 I->setInitializer(0);
154 I->setLinkage(GlobalValue::ExternalLinkage);
155 }
156
157 // Try running the hacked up program...
158 if (TestFn(BD, M)) {
159 BD.setNewProgram(M); // It crashed, keep the trimmed version...
160
161 // Make sure to use global variable pointers that point into the now-current
162 // module.
163 GVs.assign(GVSet.begin(), GVSet.end());
164 return true;
165 }
166
167 delete M;
168 return false;
169}
170
171namespace llvm {
172 /// ReduceCrashingFunctions reducer - This works by removing functions and
173 /// seeing if the program still crashes. If it does, then keep the newer,
174 /// smaller program.
175 ///
176 class ReduceCrashingFunctions : public ListReducer<Function*> {
177 BugDriver &BD;
178 bool (*TestFn)(BugDriver &, Module *);
179 public:
180 ReduceCrashingFunctions(BugDriver &bd,
181 bool (*testFn)(BugDriver &, Module *))
182 : BD(bd), TestFn(testFn) {}
183
184 virtual TestResult doTest(std::vector<Function*> &Prefix,
185 std::vector<Function*> &Kept) {
186 if (!Kept.empty() && TestFuncs(Kept))
187 return KeepSuffix;
188 if (!Prefix.empty() && TestFuncs(Prefix))
189 return KeepPrefix;
190 return NoFailure;
191 }
192
193 bool TestFuncs(std::vector<Function*> &Prefix);
194 };
195}
196
197bool ReduceCrashingFunctions::TestFuncs(std::vector<Function*> &Funcs) {
198
199 //if main isn't present, claim there is no problem
200 if (KeepMain && find(Funcs.begin(), Funcs.end(),
201 BD.getProgram()->getFunction("main")) == Funcs.end())
202 return false;
203
204 // Clone the program to try hacking it apart...
Dan Gohman896e78a2009-03-06 02:16:23 +0000205 DenseMap<const Value*, Value*> ValueMap;
206 Module *M = CloneModule(BD.getProgram(), ValueMap);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000207
208 // Convert list to set for fast lookup...
209 std::set<Function*> Functions;
210 for (unsigned i = 0, e = Funcs.size(); i != e; ++i) {
Dan Gohman896e78a2009-03-06 02:16:23 +0000211 Function *CMF = cast<Function>(ValueMap[Funcs[i]]);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000212 assert(CMF && "Function not in module?!");
213 assert(CMF->getFunctionType() == Funcs[i]->getFunctionType() && "wrong ty");
Dan Gohman896e78a2009-03-06 02:16:23 +0000214 assert(CMF->getName() == Funcs[i]->getName() && "wrong name");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000215 Functions.insert(CMF);
216 }
217
Dan Gohmanb714fab2009-07-16 15:30:09 +0000218 outs() << "Checking for crash with only these functions: ";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000219 PrintFunctionList(Funcs);
Dan Gohmanb714fab2009-07-16 15:30:09 +0000220 outs() << ": ";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000221
222 // Loop over and delete any functions which we aren't supposed to be playing
223 // with...
224 for (Module::iterator I = M->begin(), E = M->end(); I != E; ++I)
225 if (!I->isDeclaration() && !Functions.count(I))
226 DeleteFunctionBody(I);
227
228 // Try running the hacked up program...
229 if (TestFn(BD, M)) {
230 BD.setNewProgram(M); // It crashed, keep the trimmed version...
231
232 // Make sure to use function pointers that point into the now-current
233 // module.
234 Funcs.assign(Functions.begin(), Functions.end());
235 return true;
236 }
237 delete M;
238 return false;
239}
240
241
242namespace {
243 /// ReduceCrashingBlocks reducer - This works by setting the terminators of
244 /// all terminators except the specified basic blocks to a 'ret' instruction,
245 /// then running the simplify-cfg pass. This has the effect of chopping up
246 /// the CFG really fast which can reduce large functions quickly.
247 ///
248 class ReduceCrashingBlocks : public ListReducer<const BasicBlock*> {
249 BugDriver &BD;
250 bool (*TestFn)(BugDriver &, Module *);
251 public:
252 ReduceCrashingBlocks(BugDriver &bd, bool (*testFn)(BugDriver &, Module *))
253 : BD(bd), TestFn(testFn) {}
254
255 virtual TestResult doTest(std::vector<const BasicBlock*> &Prefix,
256 std::vector<const BasicBlock*> &Kept) {
257 if (!Kept.empty() && TestBlocks(Kept))
258 return KeepSuffix;
259 if (!Prefix.empty() && TestBlocks(Prefix))
260 return KeepPrefix;
261 return NoFailure;
262 }
263
264 bool TestBlocks(std::vector<const BasicBlock*> &Prefix);
265 };
266}
267
268bool ReduceCrashingBlocks::TestBlocks(std::vector<const BasicBlock*> &BBs) {
269 // Clone the program to try hacking it apart...
Dan Gohmanea5f86f2009-03-05 23:20:46 +0000270 DenseMap<const Value*, Value*> ValueMap;
271 Module *M = CloneModule(BD.getProgram(), ValueMap);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000272
273 // Convert list to set for fast lookup...
Nick Lewyckyb35aa262009-04-04 09:39:23 +0000274 SmallPtrSet<BasicBlock*, 8> Blocks;
275 for (unsigned i = 0, e = BBs.size(); i != e; ++i)
276 Blocks.insert(cast<BasicBlock>(ValueMap[BBs[i]]));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000277
Dan Gohmanb714fab2009-07-16 15:30:09 +0000278 outs() << "Checking for crash with only these blocks:";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000279 unsigned NumPrint = Blocks.size();
280 if (NumPrint > 10) NumPrint = 10;
281 for (unsigned i = 0, e = NumPrint; i != e; ++i)
Dan Gohmanb714fab2009-07-16 15:30:09 +0000282 outs() << " " << BBs[i]->getName();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000283 if (NumPrint < Blocks.size())
Dan Gohmanb714fab2009-07-16 15:30:09 +0000284 outs() << "... <" << Blocks.size() << " total>";
285 outs() << ": ";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000286
287 // Loop over and delete any hack up any blocks that are not listed...
288 for (Module::iterator I = M->begin(), E = M->end(); I != E; ++I)
289 for (Function::iterator BB = I->begin(), E = I->end(); BB != E; ++BB)
290 if (!Blocks.count(BB) && BB->getTerminator()->getNumSuccessors()) {
291 // Loop over all of the successors of this block, deleting any PHI nodes
292 // that might include it.
293 for (succ_iterator SI = succ_begin(BB), E = succ_end(BB); SI != E; ++SI)
294 (*SI)->removePredecessor(BB);
295
Chris Lattner86a23b12008-04-28 00:04:58 +0000296 TerminatorInst *BBTerm = BB->getTerminator();
297
298 if (isa<StructType>(BBTerm->getType()))
299 BBTerm->replaceAllUsesWith(UndefValue::get(BBTerm->getType()));
300 else if (BB->getTerminator()->getType() != Type::VoidTy)
Owen Andersonaac28372009-07-31 20:28:14 +0000301 BBTerm->replaceAllUsesWith(Constant::getNullValue(BBTerm->getType()));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000302
Chris Lattner86a23b12008-04-28 00:04:58 +0000303 // Replace the old terminator instruction.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000304 BB->getInstList().pop_back();
Chris Lattner86a23b12008-04-28 00:04:58 +0000305 new UnreachableInst(BB);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000306 }
307
308 // The CFG Simplifier pass may delete one of the basic blocks we are
309 // interested in. If it does we need to take the block out of the list. Make
310 // a "persistent mapping" by turning basic blocks into <function, name> pairs.
311 // This won't work well if blocks are unnamed, but that is just the risk we
312 // have to take.
313 std::vector<std::pair<Function*, std::string> > BlockInfo;
314
Nick Lewyckyb35aa262009-04-04 09:39:23 +0000315 for (SmallPtrSet<BasicBlock*, 8>::iterator I = Blocks.begin(),
316 E = Blocks.end(); I != E; ++I)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000317 BlockInfo.push_back(std::make_pair((*I)->getParent(), (*I)->getName()));
318
319 // Now run the CFG simplify pass on the function...
320 PassManager Passes;
321 Passes.add(createCFGSimplificationPass());
322 Passes.add(createVerifierPass());
323 Passes.run(*M);
324
325 // Try running on the hacked up program...
326 if (TestFn(BD, M)) {
327 BD.setNewProgram(M); // It crashed, keep the trimmed version...
328
329 // Make sure to use basic block pointers that point into the now-current
330 // module, and that they don't include any deleted blocks.
331 BBs.clear();
332 for (unsigned i = 0, e = BlockInfo.size(); i != e; ++i) {
333 ValueSymbolTable &ST = BlockInfo[i].first->getValueSymbolTable();
334 Value* V = ST.lookup(BlockInfo[i].second);
335 if (V && V->getType() == Type::LabelTy)
336 BBs.push_back(cast<BasicBlock>(V));
337 }
338 return true;
339 }
340 delete M; // It didn't crash, try something else.
341 return false;
342}
343
Nick Lewycky40ebc872009-05-25 05:30:00 +0000344namespace {
345 /// ReduceCrashingInstructions reducer - This works by removing the specified
346 /// non-terminator instructions and replacing them with undef.
347 ///
348 class ReduceCrashingInstructions : public ListReducer<const Instruction*> {
349 BugDriver &BD;
350 bool (*TestFn)(BugDriver &, Module *);
351 public:
352 ReduceCrashingInstructions(BugDriver &bd, bool (*testFn)(BugDriver &,
353 Module *))
354 : BD(bd), TestFn(testFn) {}
355
356 virtual TestResult doTest(std::vector<const Instruction*> &Prefix,
357 std::vector<const Instruction*> &Kept) {
358 if (!Kept.empty() && TestInsts(Kept))
359 return KeepSuffix;
360 if (!Prefix.empty() && TestInsts(Prefix))
361 return KeepPrefix;
362 return NoFailure;
363 }
364
365 bool TestInsts(std::vector<const Instruction*> &Prefix);
366 };
367}
368
369bool ReduceCrashingInstructions::TestInsts(std::vector<const Instruction*>
370 &Insts) {
371 // Clone the program to try hacking it apart...
372 DenseMap<const Value*, Value*> ValueMap;
373 Module *M = CloneModule(BD.getProgram(), ValueMap);
374
375 // Convert list to set for fast lookup...
376 SmallPtrSet<Instruction*, 64> Instructions;
377 for (unsigned i = 0, e = Insts.size(); i != e; ++i) {
378 assert(!isa<TerminatorInst>(Insts[i]));
379 Instructions.insert(cast<Instruction>(ValueMap[Insts[i]]));
380 }
381
Dan Gohmanb714fab2009-07-16 15:30:09 +0000382 outs() << "Checking for crash with only " << Instructions.size();
Nick Lewycky40ebc872009-05-25 05:30:00 +0000383 if (Instructions.size() == 1)
Dan Gohmanb714fab2009-07-16 15:30:09 +0000384 outs() << " instruction: ";
Nick Lewycky40ebc872009-05-25 05:30:00 +0000385 else
Dan Gohmanb714fab2009-07-16 15:30:09 +0000386 outs() << " instructions: ";
Nick Lewycky40ebc872009-05-25 05:30:00 +0000387
388 for (Module::iterator MI = M->begin(), ME = M->end(); MI != ME; ++MI)
389 for (Function::iterator FI = MI->begin(), FE = MI->end(); FI != FE; ++FI)
390 for (BasicBlock::iterator I = FI->begin(), E = FI->end(); I != E;) {
391 Instruction *Inst = I++;
392 if (!Instructions.count(Inst) && !isa<TerminatorInst>(Inst)) {
393 if (Inst->getType() != Type::VoidTy)
394 Inst->replaceAllUsesWith(UndefValue::get(Inst->getType()));
395 Inst->eraseFromParent();
396 }
397 }
398
399 // Verify that this is still valid.
400 PassManager Passes;
401 Passes.add(createVerifierPass());
402 Passes.run(*M);
403
404 // Try running on the hacked up program...
405 if (TestFn(BD, M)) {
406 BD.setNewProgram(M); // It crashed, keep the trimmed version...
407
408 // Make sure to use instruction pointers that point into the now-current
409 // module, and that they don't include any deleted blocks.
410 Insts.clear();
411 for (SmallPtrSet<Instruction*, 64>::const_iterator I = Instructions.begin(),
412 E = Instructions.end(); I != E; ++I)
413 Insts.push_back(*I);
414 return true;
415 }
416 delete M; // It didn't crash, try something else.
417 return false;
418}
419
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000420/// DebugACrash - Given a predicate that determines whether a component crashes
421/// on a program, try to destructively reduce the program while still keeping
422/// the predicate true.
423static bool DebugACrash(BugDriver &BD, bool (*TestFn)(BugDriver &, Module *)) {
424 // See if we can get away with nuking some of the global variable initializers
425 // in the program...
Edwin Törökecf67c42009-05-24 09:31:04 +0000426 if (!NoGlobalRM &&
427 BD.getProgram()->global_begin() != BD.getProgram()->global_end()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000428 // Now try to reduce the number of global variable initializers in the
429 // module to something small.
430 Module *M = CloneModule(BD.getProgram());
431 bool DeletedInit = false;
432
433 for (Module::global_iterator I = M->global_begin(), E = M->global_end();
434 I != E; ++I)
435 if (I->hasInitializer()) {
436 I->setInitializer(0);
437 I->setLinkage(GlobalValue::ExternalLinkage);
438 DeletedInit = true;
439 }
440
441 if (!DeletedInit) {
442 delete M; // No change made...
443 } else {
444 // See if the program still causes a crash...
Dan Gohmanb714fab2009-07-16 15:30:09 +0000445 outs() << "\nChecking to see if we can delete global inits: ";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000446
447 if (TestFn(BD, M)) { // Still crashes?
448 BD.setNewProgram(M);
Dan Gohmanb714fab2009-07-16 15:30:09 +0000449 outs() << "\n*** Able to remove all global initializers!\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000450 } else { // No longer crashes?
Dan Gohmanb714fab2009-07-16 15:30:09 +0000451 outs() << " - Removing all global inits hides problem!\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000452 delete M;
453
454 std::vector<GlobalVariable*> GVs;
455
456 for (Module::global_iterator I = BD.getProgram()->global_begin(),
457 E = BD.getProgram()->global_end(); I != E; ++I)
458 if (I->hasInitializer())
459 GVs.push_back(I);
460
461 if (GVs.size() > 1 && !BugpointIsInterrupted) {
Dan Gohmanb714fab2009-07-16 15:30:09 +0000462 outs() << "\n*** Attempting to reduce the number of global "
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000463 << "variables in the testcase\n";
464
465 unsigned OldSize = GVs.size();
466 ReduceCrashingGlobalVariables(BD, TestFn).reduceList(GVs);
467
468 if (GVs.size() < OldSize)
469 BD.EmitProgressBitcode("reduced-global-variables");
470 }
471 }
472 }
473 }
474
475 // Now try to reduce the number of functions in the module to something small.
476 std::vector<Function*> Functions;
477 for (Module::iterator I = BD.getProgram()->begin(),
478 E = BD.getProgram()->end(); I != E; ++I)
479 if (!I->isDeclaration())
480 Functions.push_back(I);
481
482 if (Functions.size() > 1 && !BugpointIsInterrupted) {
Dan Gohmanb714fab2009-07-16 15:30:09 +0000483 outs() << "\n*** Attempting to reduce the number of functions "
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000484 "in the testcase\n";
485
486 unsigned OldSize = Functions.size();
487 ReduceCrashingFunctions(BD, TestFn).reduceList(Functions);
488
489 if (Functions.size() < OldSize)
490 BD.EmitProgressBitcode("reduced-function");
491 }
492
493 // Attempt to delete entire basic blocks at a time to speed up
494 // convergence... this actually works by setting the terminator of the blocks
495 // to a return instruction then running simplifycfg, which can potentially
496 // shrinks the code dramatically quickly
497 //
498 if (!DisableSimplifyCFG && !BugpointIsInterrupted) {
499 std::vector<const BasicBlock*> Blocks;
500 for (Module::const_iterator I = BD.getProgram()->begin(),
501 E = BD.getProgram()->end(); I != E; ++I)
502 for (Function::const_iterator FI = I->begin(), E = I->end(); FI !=E; ++FI)
503 Blocks.push_back(FI);
Edwin Törökce1c1f52009-05-24 09:40:47 +0000504 unsigned OldSize = Blocks.size();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000505 ReduceCrashingBlocks(BD, TestFn).reduceList(Blocks);
Edwin Törökce1c1f52009-05-24 09:40:47 +0000506 if (Blocks.size() < OldSize)
507 BD.EmitProgressBitcode("reduced-blocks");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000508 }
509
Nick Lewycky40ebc872009-05-25 05:30:00 +0000510 // Attempt to delete instructions using bisection. This should help out nasty
511 // cases with large basic blocks where the problem is at one end.
512 if (!BugpointIsInterrupted) {
513 std::vector<const Instruction*> Insts;
514 for (Module::const_iterator MI = BD.getProgram()->begin(),
515 ME = BD.getProgram()->end(); MI != ME; ++MI)
516 for (Function::const_iterator FI = MI->begin(), FE = MI->end(); FI != FE;
517 ++FI)
518 for (BasicBlock::const_iterator I = FI->begin(), E = FI->end();
519 I != E; ++I)
520 if (!isa<TerminatorInst>(I))
521 Insts.push_back(I);
522
523 ReduceCrashingInstructions(BD, TestFn).reduceList(Insts);
524 }
525
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000526 // FIXME: This should use the list reducer to converge faster by deleting
527 // larger chunks of instructions at a time!
528 unsigned Simplification = 2;
529 do {
530 if (BugpointIsInterrupted) break;
531 --Simplification;
Dan Gohmanb714fab2009-07-16 15:30:09 +0000532 outs() << "\n*** Attempting to reduce testcase by deleting instruc"
533 << "tions: Simplification Level #" << Simplification << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000534
535 // Now that we have deleted the functions that are unnecessary for the
536 // program, try to remove instructions that are not necessary to cause the
537 // crash. To do this, we loop through all of the instructions in the
538 // remaining functions, deleting them (replacing any values produced with
539 // nulls), and then running ADCE and SimplifyCFG. If the transformed input
540 // still triggers failure, keep deleting until we cannot trigger failure
541 // anymore.
542 //
543 unsigned InstructionsToSkipBeforeDeleting = 0;
544 TryAgain:
545
546 // Loop over all of the (non-terminator) instructions remaining in the
547 // function, attempting to delete them.
548 unsigned CurInstructionNum = 0;
549 for (Module::const_iterator FI = BD.getProgram()->begin(),
550 E = BD.getProgram()->end(); FI != E; ++FI)
551 if (!FI->isDeclaration())
552 for (Function::const_iterator BI = FI->begin(), E = FI->end(); BI != E;
553 ++BI)
554 for (BasicBlock::const_iterator I = BI->begin(), E = --BI->end();
555 I != E; ++I, ++CurInstructionNum)
556 if (InstructionsToSkipBeforeDeleting) {
557 --InstructionsToSkipBeforeDeleting;
558 } else {
559 if (BugpointIsInterrupted) goto ExitLoops;
560
Dan Gohmanb714fab2009-07-16 15:30:09 +0000561 outs() << "Checking instruction: " << *I;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000562 Module *M = BD.deleteInstructionFromProgram(I, Simplification);
563
564 // Find out if the pass still crashes on this pass...
565 if (TestFn(BD, M)) {
566 // Yup, it does, we delete the old module, and continue trying
567 // to reduce the testcase...
568 BD.setNewProgram(M);
569 InstructionsToSkipBeforeDeleting = CurInstructionNum;
570 goto TryAgain; // I wish I had a multi-level break here!
571 }
572
573 // This pass didn't crash without this instruction, try the next
574 // one.
575 delete M;
576 }
577
578 if (InstructionsToSkipBeforeDeleting) {
579 InstructionsToSkipBeforeDeleting = 0;
580 goto TryAgain;
581 }
582
583 } while (Simplification);
584ExitLoops:
585
586 // Try to clean up the testcase by running funcresolve and globaldce...
587 if (!BugpointIsInterrupted) {
Dan Gohmanb714fab2009-07-16 15:30:09 +0000588 outs() << "\n*** Attempting to perform final cleanups: ";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000589 Module *M = CloneModule(BD.getProgram());
590 M = BD.performFinalCleanups(M, true);
591
592 // Find out if the pass still crashes on the cleaned up program...
593 if (TestFn(BD, M)) {
594 BD.setNewProgram(M); // Yup, it does, keep the reduced version...
595 } else {
596 delete M;
597 }
598 }
599
600 BD.EmitProgressBitcode("reduced-simplified");
601
602 return false;
603}
604
605static bool TestForOptimizerCrash(BugDriver &BD, Module *M) {
606 return BD.runPasses(M);
607}
608
609/// debugOptimizerCrash - This method is called when some pass crashes on input.
610/// It attempts to prune down the testcase to something reasonable, and figure
611/// out exactly which pass is crashing.
612///
613bool BugDriver::debugOptimizerCrash(const std::string &ID) {
Dan Gohmanb714fab2009-07-16 15:30:09 +0000614 outs() << "\n*** Debugging optimizer crash!\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000615
616 // Reduce the list of passes which causes the optimizer to crash...
617 if (!BugpointIsInterrupted)
618 ReducePassList(*this).reduceList(PassesToRun);
619
Dan Gohmanb714fab2009-07-16 15:30:09 +0000620 outs() << "\n*** Found crashing pass"
621 << (PassesToRun.size() == 1 ? ": " : "es: ")
622 << getPassesString(PassesToRun) << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000623
624 EmitProgressBitcode(ID);
625
626 return DebugACrash(*this, TestForOptimizerCrash);
627}
628
629static bool TestForCodeGenCrash(BugDriver &BD, Module *M) {
630 try {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000631 BD.compileProgram(M);
Dan Gohmanf8b81bf2009-07-15 16:35:29 +0000632 errs() << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000633 return false;
634 } catch (ToolExecutionError &) {
Dan Gohmanf8b81bf2009-07-15 16:35:29 +0000635 errs() << "<crash>\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000636 return true; // Tool is still crashing.
637 }
638}
639
640/// debugCodeGeneratorCrash - This method is called when the code generator
641/// crashes on an input. It attempts to reduce the input as much as possible
642/// while still causing the code generator to crash.
643bool BugDriver::debugCodeGeneratorCrash() {
Dan Gohmanf8b81bf2009-07-15 16:35:29 +0000644 errs() << "*** Debugging code generator crash!\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000645
646 return DebugACrash(*this, TestForCodeGenCrash);
647}