[CMake] We need to explicitly add llvm-config before clang so that LLVM_BUILD_EXTERNA...
[oota-llvm.git] / tools / bugpoint / CrashDebugger.cpp
1 //===- CrashDebugger.cpp - Debug compilation crashes ----------------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file defines the bugpoint internals that narrow down compilation crashes
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "BugDriver.h"
15 #include "ListReducer.h"
16 #include "ToolRunner.h"
17 #include "llvm/ADT/SmallPtrSet.h"
18 #include "llvm/IR/CFG.h"
19 #include "llvm/IR/Constants.h"
20 #include "llvm/IR/DerivedTypes.h"
21 #include "llvm/IR/Instructions.h"
22 #include "llvm/IR/LegacyPassManager.h"
23 #include "llvm/IR/Module.h"
24 #include "llvm/IR/ValueSymbolTable.h"
25 #include "llvm/IR/Verifier.h"
26 #include "llvm/Pass.h"
27 #include "llvm/Support/CommandLine.h"
28 #include "llvm/Support/FileUtilities.h"
29 #include "llvm/Transforms/Scalar.h"
30 #include "llvm/Transforms/Utils/Cloning.h"
31 #include <set>
32 using namespace llvm;
33
34 namespace {
35   cl::opt<bool>
36   KeepMain("keep-main",
37            cl::desc("Force function reduction to keep main"),
38            cl::init(false));
39   cl::opt<bool>
40   NoGlobalRM ("disable-global-remove",
41          cl::desc("Do not remove global variables"),
42          cl::init(false));
43
44   cl::opt<bool>
45   ReplaceFuncsWithNull("replace-funcs-with-null",
46          cl::desc("When stubbing functions, replace all uses will null"),
47          cl::init(false));
48   cl::opt<bool>
49   DontReducePassList("disable-pass-list-reduction",
50                      cl::desc("Skip pass list reduction steps"),
51                      cl::init(false));
52 }
53
54 namespace llvm {
55   class ReducePassList : public ListReducer<std::string> {
56     BugDriver &BD;
57   public:
58     ReducePassList(BugDriver &bd) : BD(bd) {}
59
60     // doTest - Return true iff running the "removed" passes succeeds, and
61     // running the "Kept" passes fail when run on the output of the "removed"
62     // passes.  If we return true, we update the current module of bugpoint.
63     //
64     TestResult doTest(std::vector<std::string> &Removed,
65                       std::vector<std::string> &Kept,
66                       std::string &Error) override;
67   };
68 }
69
70 ReducePassList::TestResult
71 ReducePassList::doTest(std::vector<std::string> &Prefix,
72                        std::vector<std::string> &Suffix,
73                        std::string &Error) {
74   std::string PrefixOutput;
75   Module *OrigProgram = nullptr;
76   if (!Prefix.empty()) {
77     outs() << "Checking to see if these passes crash: "
78            << getPassesString(Prefix) << ": ";
79     if (BD.runPasses(BD.getProgram(), Prefix, PrefixOutput))
80       return KeepPrefix;
81
82     OrigProgram = BD.Program;
83
84     BD.Program = parseInputFile(PrefixOutput, BD.getContext()).release();
85     if (BD.Program == nullptr) {
86       errs() << BD.getToolName() << ": Error reading bitcode file '"
87              << PrefixOutput << "'!\n";
88       exit(1);
89     }
90     sys::fs::remove(PrefixOutput);
91   }
92
93   outs() << "Checking to see if these passes crash: "
94          << getPassesString(Suffix) << ": ";
95
96   if (BD.runPasses(BD.getProgram(), Suffix)) {
97     delete OrigProgram;            // The suffix crashes alone...
98     return KeepSuffix;
99   }
100
101   // Nothing failed, restore state...
102   if (OrigProgram) {
103     delete BD.Program;
104     BD.Program = OrigProgram;
105   }
106   return NoFailure;
107 }
108
109 namespace {
110   /// ReduceCrashingGlobalVariables - This works by removing the global
111   /// variable's initializer and seeing if the program still crashes. If it
112   /// does, then we keep that program and try again.
113   ///
114   class ReduceCrashingGlobalVariables : public ListReducer<GlobalVariable*> {
115     BugDriver &BD;
116     bool (*TestFn)(const BugDriver &, Module *);
117   public:
118     ReduceCrashingGlobalVariables(BugDriver &bd,
119                                   bool (*testFn)(const BugDriver &, Module *))
120       : BD(bd), TestFn(testFn) {}
121
122     TestResult doTest(std::vector<GlobalVariable*> &Prefix,
123                       std::vector<GlobalVariable*> &Kept,
124                       std::string &Error) override {
125       if (!Kept.empty() && TestGlobalVariables(Kept))
126         return KeepSuffix;
127       if (!Prefix.empty() && TestGlobalVariables(Prefix))
128         return KeepPrefix;
129       return NoFailure;
130     }
131
132     bool TestGlobalVariables(std::vector<GlobalVariable*> &GVs);
133   };
134 }
135
136 bool
137 ReduceCrashingGlobalVariables::TestGlobalVariables(
138                               std::vector<GlobalVariable*> &GVs) {
139   // Clone the program to try hacking it apart...
140   ValueToValueMapTy VMap;
141   Module *M = CloneModule(BD.getProgram(), VMap);
142
143   // Convert list to set for fast lookup...
144   std::set<GlobalVariable*> GVSet;
145
146   for (unsigned i = 0, e = GVs.size(); i != e; ++i) {
147     GlobalVariable* CMGV = cast<GlobalVariable>(VMap[GVs[i]]);
148     assert(CMGV && "Global Variable not in module?!");
149     GVSet.insert(CMGV);
150   }
151
152   outs() << "Checking for crash with only these global variables: ";
153   PrintGlobalVariableList(GVs);
154   outs() << ": ";
155
156   // Loop over and delete any global variables which we aren't supposed to be
157   // playing with...
158   for (Module::global_iterator I = M->global_begin(), E = M->global_end();
159        I != E; ++I)
160     if (I->hasInitializer() && !GVSet.count(I)) {
161       I->setInitializer(nullptr);
162       I->setLinkage(GlobalValue::ExternalLinkage);
163     }
164
165   // Try running the hacked up program...
166   if (TestFn(BD, M)) {
167     BD.setNewProgram(M);        // It crashed, keep the trimmed version...
168
169     // Make sure to use global variable pointers that point into the now-current
170     // module.
171     GVs.assign(GVSet.begin(), GVSet.end());
172     return true;
173   }
174
175   delete M;
176   return false;
177 }
178
179 namespace {
180   /// ReduceCrashingFunctions reducer - This works by removing functions and
181   /// seeing if the program still crashes. If it does, then keep the newer,
182   /// smaller program.
183   ///
184   class ReduceCrashingFunctions : public ListReducer<Function*> {
185     BugDriver &BD;
186     bool (*TestFn)(const BugDriver &, Module *);
187   public:
188     ReduceCrashingFunctions(BugDriver &bd,
189                             bool (*testFn)(const BugDriver &, Module *))
190       : BD(bd), TestFn(testFn) {}
191
192     TestResult doTest(std::vector<Function*> &Prefix,
193                       std::vector<Function*> &Kept,
194                       std::string &Error) override {
195       if (!Kept.empty() && TestFuncs(Kept))
196         return KeepSuffix;
197       if (!Prefix.empty() && TestFuncs(Prefix))
198         return KeepPrefix;
199       return NoFailure;
200     }
201
202     bool TestFuncs(std::vector<Function*> &Prefix);
203   };
204 }
205
206 static void RemoveFunctionReferences(Module *M, const char* Name) {
207   auto *UsedVar = M->getGlobalVariable(Name, true);
208   if (!UsedVar || !UsedVar->hasInitializer()) return;
209   if (isa<ConstantAggregateZero>(UsedVar->getInitializer())) {
210     assert(UsedVar->use_empty());
211     UsedVar->eraseFromParent();
212     return;
213   }
214   auto *OldUsedVal = cast<ConstantArray>(UsedVar->getInitializer());
215   std::vector<Constant*> Used;
216   for(Value *V : OldUsedVal->operand_values()) {
217     Constant *Op = cast<Constant>(V->stripPointerCasts());
218     if(!Op->isNullValue()) {
219       Used.push_back(cast<Constant>(V));
220     }
221   }
222   auto *NewValElemTy = OldUsedVal->getType()->getElementType();
223   auto *NewValTy = ArrayType::get(NewValElemTy, Used.size());
224   auto *NewUsedVal = ConstantArray::get(NewValTy, Used);
225   UsedVar->mutateType(NewUsedVal->getType()->getPointerTo());
226   UsedVar->setInitializer(NewUsedVal);
227 }
228
229 bool ReduceCrashingFunctions::TestFuncs(std::vector<Function*> &Funcs) {
230   // If main isn't present, claim there is no problem.
231   if (KeepMain && std::find(Funcs.begin(), Funcs.end(),
232                             BD.getProgram()->getFunction("main")) ==
233                       Funcs.end())
234     return false;
235
236   // Clone the program to try hacking it apart...
237   ValueToValueMapTy VMap;
238   Module *M = CloneModule(BD.getProgram(), VMap);
239
240   // Convert list to set for fast lookup...
241   std::set<Function*> Functions;
242   for (unsigned i = 0, e = Funcs.size(); i != e; ++i) {
243     Function *CMF = cast<Function>(VMap[Funcs[i]]);
244     assert(CMF && "Function not in module?!");
245     assert(CMF->getFunctionType() == Funcs[i]->getFunctionType() && "wrong ty");
246     assert(CMF->getName() == Funcs[i]->getName() && "wrong name");
247     Functions.insert(CMF);
248   }
249
250   outs() << "Checking for crash with only these functions: ";
251   PrintFunctionList(Funcs);
252   outs() << ": ";
253   if (!ReplaceFuncsWithNull) {
254     // Loop over and delete any functions which we aren't supposed to be playing
255     // with...
256     for (Module::iterator I = M->begin(), E = M->end(); I != E; ++I)
257       if (!I->isDeclaration() && !Functions.count(I))
258         DeleteFunctionBody(I);
259   } else {
260     std::vector<GlobalValue*> ToRemove;
261     // First, remove aliases to functions we're about to purge.
262     for (GlobalAlias &Alias : M->aliases()) {
263       Constant *Root = Alias.getAliasee()->stripPointerCasts();
264       Function *F = dyn_cast<Function>(Root);
265       if (F) {
266         if (Functions.count(F))
267           // We're keeping this function.
268           continue;
269       } else if (Root->isNullValue()) {
270         // This referenced a globalalias that we've already replaced,
271         // so we still need to replace this alias.
272       } else if (!F) {
273         // Not a function, therefore not something we mess with.
274         continue;
275       }
276
277       PointerType *Ty = cast<PointerType>(Alias.getType());
278       Constant *Replacement = ConstantPointerNull::get(Ty);
279       Alias.replaceAllUsesWith(Replacement);
280       ToRemove.push_back(&Alias);
281     }
282
283     for (Module::iterator I = M->begin(), E = M->end(); I != E; ++I) {
284       if (!I->isDeclaration() && !Functions.count(I)) {
285         PointerType *Ty = cast<PointerType>(I->getType());
286         Constant *Replacement = ConstantPointerNull::get(Ty);
287         I->replaceAllUsesWith(Replacement);
288         ToRemove.push_back(I);
289       }
290     }
291
292     for (auto *F : ToRemove) {
293       F->eraseFromParent();
294     }
295
296     // Finally, remove any null members from any global intrinsic.
297     RemoveFunctionReferences(M, "llvm.used");
298     RemoveFunctionReferences(M, "llvm.compiler.used");
299   }
300   // Try running the hacked up program...
301   if (TestFn(BD, M)) {
302     BD.setNewProgram(M);        // It crashed, keep the trimmed version...
303
304     // Make sure to use function pointers that point into the now-current
305     // module.
306     Funcs.assign(Functions.begin(), Functions.end());
307     return true;
308   }
309   delete M;
310   return false;
311 }
312
313
314 namespace {
315   /// ReduceCrashingBlocks reducer - This works by setting the terminators of
316   /// all terminators except the specified basic blocks to a 'ret' instruction,
317   /// then running the simplify-cfg pass.  This has the effect of chopping up
318   /// the CFG really fast which can reduce large functions quickly.
319   ///
320   class ReduceCrashingBlocks : public ListReducer<const BasicBlock*> {
321     BugDriver &BD;
322     bool (*TestFn)(const BugDriver &, Module *);
323   public:
324     ReduceCrashingBlocks(BugDriver &bd,
325                          bool (*testFn)(const BugDriver &, Module *))
326       : BD(bd), TestFn(testFn) {}
327
328     TestResult doTest(std::vector<const BasicBlock*> &Prefix,
329                       std::vector<const BasicBlock*> &Kept,
330                       std::string &Error) override {
331       if (!Kept.empty() && TestBlocks(Kept))
332         return KeepSuffix;
333       if (!Prefix.empty() && TestBlocks(Prefix))
334         return KeepPrefix;
335       return NoFailure;
336     }
337
338     bool TestBlocks(std::vector<const BasicBlock*> &Prefix);
339   };
340 }
341
342 bool ReduceCrashingBlocks::TestBlocks(std::vector<const BasicBlock*> &BBs) {
343   // Clone the program to try hacking it apart...
344   ValueToValueMapTy VMap;
345   Module *M = CloneModule(BD.getProgram(), VMap);
346
347   // Convert list to set for fast lookup...
348   SmallPtrSet<BasicBlock*, 8> Blocks;
349   for (unsigned i = 0, e = BBs.size(); i != e; ++i)
350     Blocks.insert(cast<BasicBlock>(VMap[BBs[i]]));
351
352   outs() << "Checking for crash with only these blocks:";
353   unsigned NumPrint = Blocks.size();
354   if (NumPrint > 10) NumPrint = 10;
355   for (unsigned i = 0, e = NumPrint; i != e; ++i)
356     outs() << " " << BBs[i]->getName();
357   if (NumPrint < Blocks.size())
358     outs() << "... <" << Blocks.size() << " total>";
359   outs() << ": ";
360
361   // Loop over and delete any hack up any blocks that are not listed...
362   for (Module::iterator I = M->begin(), E = M->end(); I != E; ++I)
363     for (Function::iterator BB = I->begin(), E = I->end(); BB != E; ++BB)
364       if (!Blocks.count(BB) && BB->getTerminator()->getNumSuccessors()) {
365         // Loop over all of the successors of this block, deleting any PHI nodes
366         // that might include it.
367         for (succ_iterator SI = succ_begin(BB), E = succ_end(BB); SI != E; ++SI)
368           (*SI)->removePredecessor(BB);
369
370         TerminatorInst *BBTerm = BB->getTerminator();
371
372         if (!BB->getTerminator()->getType()->isVoidTy())
373           BBTerm->replaceAllUsesWith(Constant::getNullValue(BBTerm->getType()));
374
375         // Replace the old terminator instruction.
376         BB->getInstList().pop_back();
377         new UnreachableInst(BB->getContext(), BB);
378       }
379
380   // The CFG Simplifier pass may delete one of the basic blocks we are
381   // interested in.  If it does we need to take the block out of the list.  Make
382   // a "persistent mapping" by turning basic blocks into <function, name> pairs.
383   // This won't work well if blocks are unnamed, but that is just the risk we
384   // have to take.
385   std::vector<std::pair<std::string, std::string> > BlockInfo;
386
387   for (BasicBlock *BB : Blocks)
388     BlockInfo.emplace_back(BB->getParent()->getName(), BB->getName());
389
390   // Now run the CFG simplify pass on the function...
391   std::vector<std::string> Passes;
392   Passes.push_back("simplifycfg");
393   Passes.push_back("verify");
394   std::unique_ptr<Module> New = BD.runPassesOn(M, Passes);
395   delete M;
396   if (!New) {
397     errs() << "simplifycfg failed!\n";
398     exit(1);
399   }
400   M = New.release();
401
402   // Try running on the hacked up program...
403   if (TestFn(BD, M)) {
404     BD.setNewProgram(M);      // It crashed, keep the trimmed version...
405
406     // Make sure to use basic block pointers that point into the now-current
407     // module, and that they don't include any deleted blocks.
408     BBs.clear();
409     const ValueSymbolTable &GST = M->getValueSymbolTable();
410     for (unsigned i = 0, e = BlockInfo.size(); i != e; ++i) {
411       Function *F = cast<Function>(GST.lookup(BlockInfo[i].first));
412       ValueSymbolTable &ST = F->getValueSymbolTable();
413       Value* V = ST.lookup(BlockInfo[i].second);
414       if (V && V->getType() == Type::getLabelTy(V->getContext()))
415         BBs.push_back(cast<BasicBlock>(V));
416     }
417     return true;
418   }
419   delete M;  // It didn't crash, try something else.
420   return false;
421 }
422
423 namespace {
424   /// ReduceCrashingInstructions reducer - This works by removing the specified
425   /// non-terminator instructions and replacing them with undef.
426   ///
427   class ReduceCrashingInstructions : public ListReducer<const Instruction*> {
428     BugDriver &BD;
429     bool (*TestFn)(const BugDriver &, Module *);
430   public:
431     ReduceCrashingInstructions(BugDriver &bd,
432                                bool (*testFn)(const BugDriver &, Module *))
433       : BD(bd), TestFn(testFn) {}
434
435     TestResult doTest(std::vector<const Instruction*> &Prefix,
436                       std::vector<const Instruction*> &Kept,
437                       std::string &Error) override {
438       if (!Kept.empty() && TestInsts(Kept))
439         return KeepSuffix;
440       if (!Prefix.empty() && TestInsts(Prefix))
441         return KeepPrefix;
442       return NoFailure;
443     }
444
445     bool TestInsts(std::vector<const Instruction*> &Prefix);
446   };
447 }
448
449 bool ReduceCrashingInstructions::TestInsts(std::vector<const Instruction*>
450                                            &Insts) {
451   // Clone the program to try hacking it apart...
452   ValueToValueMapTy VMap;
453   Module *M = CloneModule(BD.getProgram(), VMap);
454
455   // Convert list to set for fast lookup...
456   SmallPtrSet<Instruction*, 64> Instructions;
457   for (unsigned i = 0, e = Insts.size(); i != e; ++i) {
458     assert(!isa<TerminatorInst>(Insts[i]));
459     Instructions.insert(cast<Instruction>(VMap[Insts[i]]));
460   }
461
462   outs() << "Checking for crash with only " << Instructions.size();
463   if (Instructions.size() == 1)
464     outs() << " instruction: ";
465   else
466     outs() << " instructions: ";
467
468   for (Module::iterator MI = M->begin(), ME = M->end(); MI != ME; ++MI)
469     for (Function::iterator FI = MI->begin(), FE = MI->end(); FI != FE; ++FI)
470       for (BasicBlock::iterator I = FI->begin(), E = FI->end(); I != E;) {
471         Instruction *Inst = I++;
472         if (!Instructions.count(Inst) && !isa<TerminatorInst>(Inst) &&
473             !Inst->isEHPad()) {
474           if (!Inst->getType()->isVoidTy())
475             Inst->replaceAllUsesWith(UndefValue::get(Inst->getType()));
476           Inst->eraseFromParent();
477         }
478       }
479
480   // Verify that this is still valid.
481   legacy::PassManager Passes;
482   Passes.add(createVerifierPass());
483   Passes.run(*M);
484
485   // Try running on the hacked up program...
486   if (TestFn(BD, M)) {
487     BD.setNewProgram(M);      // It crashed, keep the trimmed version...
488
489     // Make sure to use instruction pointers that point into the now-current
490     // module, and that they don't include any deleted blocks.
491     Insts.clear();
492     for (Instruction *Inst : Instructions)
493       Insts.push_back(Inst);
494     return true;
495   }
496   delete M;  // It didn't crash, try something else.
497   return false;
498 }
499
500 /// DebugACrash - Given a predicate that determines whether a component crashes
501 /// on a program, try to destructively reduce the program while still keeping
502 /// the predicate true.
503 static bool DebugACrash(BugDriver &BD,
504                         bool (*TestFn)(const BugDriver &, Module *),
505                         std::string &Error) {
506   // See if we can get away with nuking some of the global variable initializers
507   // in the program...
508   if (!NoGlobalRM &&
509       BD.getProgram()->global_begin() != BD.getProgram()->global_end()) {
510     // Now try to reduce the number of global variable initializers in the
511     // module to something small.
512     Module *M = CloneModule(BD.getProgram());
513     bool DeletedInit = false;
514
515     for (Module::global_iterator I = M->global_begin(), E = M->global_end();
516          I != E; ++I)
517       if (I->hasInitializer()) {
518         I->setInitializer(nullptr);
519         I->setLinkage(GlobalValue::ExternalLinkage);
520         DeletedInit = true;
521       }
522
523     if (!DeletedInit) {
524       delete M;  // No change made...
525     } else {
526       // See if the program still causes a crash...
527       outs() << "\nChecking to see if we can delete global inits: ";
528
529       if (TestFn(BD, M)) {      // Still crashes?
530         BD.setNewProgram(M);
531         outs() << "\n*** Able to remove all global initializers!\n";
532       } else {                  // No longer crashes?
533         outs() << "  - Removing all global inits hides problem!\n";
534         delete M;
535
536         std::vector<GlobalVariable*> GVs;
537
538         for (Module::global_iterator I = BD.getProgram()->global_begin(),
539                E = BD.getProgram()->global_end(); I != E; ++I)
540           if (I->hasInitializer())
541             GVs.push_back(I);
542
543         if (GVs.size() > 1 && !BugpointIsInterrupted) {
544           outs() << "\n*** Attempting to reduce the number of global "
545                     << "variables in the testcase\n";
546
547           unsigned OldSize = GVs.size();
548           ReduceCrashingGlobalVariables(BD, TestFn).reduceList(GVs, Error);
549           if (!Error.empty())
550             return true;
551
552           if (GVs.size() < OldSize)
553             BD.EmitProgressBitcode(BD.getProgram(), "reduced-global-variables");
554         }
555       }
556     }
557   }
558
559   // Now try to reduce the number of functions in the module to something small.
560   std::vector<Function*> Functions;
561   for (Module::iterator I = BD.getProgram()->begin(),
562          E = BD.getProgram()->end(); I != E; ++I)
563     if (!I->isDeclaration())
564       Functions.push_back(I);
565
566   if (Functions.size() > 1 && !BugpointIsInterrupted) {
567     outs() << "\n*** Attempting to reduce the number of functions "
568       "in the testcase\n";
569
570     unsigned OldSize = Functions.size();
571     ReduceCrashingFunctions(BD, TestFn).reduceList(Functions, Error);
572
573     if (Functions.size() < OldSize)
574       BD.EmitProgressBitcode(BD.getProgram(), "reduced-function");
575   }
576
577   // Attempt to delete entire basic blocks at a time to speed up
578   // convergence... this actually works by setting the terminator of the blocks
579   // to a return instruction then running simplifycfg, which can potentially
580   // shrinks the code dramatically quickly
581   //
582   if (!DisableSimplifyCFG && !BugpointIsInterrupted) {
583     std::vector<const BasicBlock*> Blocks;
584     for (Module::const_iterator I = BD.getProgram()->begin(),
585            E = BD.getProgram()->end(); I != E; ++I)
586       for (Function::const_iterator FI = I->begin(), E = I->end(); FI !=E; ++FI)
587         Blocks.push_back(FI);
588     unsigned OldSize = Blocks.size();
589     ReduceCrashingBlocks(BD, TestFn).reduceList(Blocks, Error);
590     if (Blocks.size() < OldSize)
591       BD.EmitProgressBitcode(BD.getProgram(), "reduced-blocks");
592   }
593
594   // Attempt to delete instructions using bisection. This should help out nasty
595   // cases with large basic blocks where the problem is at one end.
596   if (!BugpointIsInterrupted) {
597     std::vector<const Instruction*> Insts;
598     for (Module::const_iterator MI = BD.getProgram()->begin(),
599            ME = BD.getProgram()->end(); MI != ME; ++MI)
600       for (Function::const_iterator FI = MI->begin(), FE = MI->end(); FI != FE;
601            ++FI)
602         for (BasicBlock::const_iterator I = FI->begin(), E = FI->end();
603              I != E; ++I)
604           if (!isa<TerminatorInst>(I))
605             Insts.push_back(I);
606
607     ReduceCrashingInstructions(BD, TestFn).reduceList(Insts, Error);
608   }
609
610   // FIXME: This should use the list reducer to converge faster by deleting
611   // larger chunks of instructions at a time!
612   unsigned Simplification = 2;
613   do {
614     if (BugpointIsInterrupted) break;
615     --Simplification;
616     outs() << "\n*** Attempting to reduce testcase by deleting instruc"
617            << "tions: Simplification Level #" << Simplification << '\n';
618
619     // Now that we have deleted the functions that are unnecessary for the
620     // program, try to remove instructions that are not necessary to cause the
621     // crash.  To do this, we loop through all of the instructions in the
622     // remaining functions, deleting them (replacing any values produced with
623     // nulls), and then running ADCE and SimplifyCFG.  If the transformed input
624     // still triggers failure, keep deleting until we cannot trigger failure
625     // anymore.
626     //
627     unsigned InstructionsToSkipBeforeDeleting = 0;
628   TryAgain:
629
630     // Loop over all of the (non-terminator) instructions remaining in the
631     // function, attempting to delete them.
632     unsigned CurInstructionNum = 0;
633     for (Module::const_iterator FI = BD.getProgram()->begin(),
634            E = BD.getProgram()->end(); FI != E; ++FI)
635       if (!FI->isDeclaration())
636         for (Function::const_iterator BI = FI->begin(), E = FI->end(); BI != E;
637              ++BI)
638           for (BasicBlock::const_iterator I = BI->begin(), E = --BI->end();
639                I != E; ++I, ++CurInstructionNum) {
640             if (InstructionsToSkipBeforeDeleting) {
641               --InstructionsToSkipBeforeDeleting;
642             } else {
643               if (BugpointIsInterrupted) goto ExitLoops;
644
645               if (isa<LandingPadInst>(I))
646                 continue;
647
648               outs() << "Checking instruction: " << *I;
649               std::unique_ptr<Module> M =
650                   BD.deleteInstructionFromProgram(I, Simplification);
651
652               // Find out if the pass still crashes on this pass...
653               if (TestFn(BD, M.get())) {
654                 // Yup, it does, we delete the old module, and continue trying
655                 // to reduce the testcase...
656                 BD.setNewProgram(M.release());
657                 InstructionsToSkipBeforeDeleting = CurInstructionNum;
658                 goto TryAgain;  // I wish I had a multi-level break here!
659               }
660             }
661           }
662
663     if (InstructionsToSkipBeforeDeleting) {
664       InstructionsToSkipBeforeDeleting = 0;
665       goto TryAgain;
666     }
667
668   } while (Simplification);
669 ExitLoops:
670
671   // Try to clean up the testcase by running funcresolve and globaldce...
672   if (!BugpointIsInterrupted) {
673     outs() << "\n*** Attempting to perform final cleanups: ";
674     Module *M = CloneModule(BD.getProgram());
675     M = BD.performFinalCleanups(M, true).release();
676
677     // Find out if the pass still crashes on the cleaned up program...
678     if (TestFn(BD, M)) {
679       BD.setNewProgram(M);     // Yup, it does, keep the reduced version...
680     } else {
681       delete M;
682     }
683   }
684
685   BD.EmitProgressBitcode(BD.getProgram(), "reduced-simplified");
686
687   return false;
688 }
689
690 static bool TestForOptimizerCrash(const BugDriver &BD, Module *M) {
691   return BD.runPasses(M);
692 }
693
694 /// debugOptimizerCrash - This method is called when some pass crashes on input.
695 /// It attempts to prune down the testcase to something reasonable, and figure
696 /// out exactly which pass is crashing.
697 ///
698 bool BugDriver::debugOptimizerCrash(const std::string &ID) {
699   outs() << "\n*** Debugging optimizer crash!\n";
700
701   std::string Error;
702   // Reduce the list of passes which causes the optimizer to crash...
703   if (!BugpointIsInterrupted && !DontReducePassList)
704     ReducePassList(*this).reduceList(PassesToRun, Error);
705   assert(Error.empty());
706
707   outs() << "\n*** Found crashing pass"
708          << (PassesToRun.size() == 1 ? ": " : "es: ")
709          << getPassesString(PassesToRun) << '\n';
710
711   EmitProgressBitcode(Program, ID);
712
713   bool Success = DebugACrash(*this, TestForOptimizerCrash, Error);
714   assert(Error.empty());
715   return Success;
716 }
717
718 static bool TestForCodeGenCrash(const BugDriver &BD, Module *M) {
719   std::string Error;
720   BD.compileProgram(M, &Error);
721   if (!Error.empty()) {
722     errs() << "<crash>\n";
723     return true;  // Tool is still crashing.
724   }
725   errs() << '\n';
726   return false;
727 }
728
729 /// debugCodeGeneratorCrash - This method is called when the code generator
730 /// crashes on an input.  It attempts to reduce the input as much as possible
731 /// while still causing the code generator to crash.
732 bool BugDriver::debugCodeGeneratorCrash(std::string &Error) {
733   errs() << "*** Debugging code generator crash!\n";
734
735   return DebugACrash(*this, TestForCodeGenCrash, Error);
736 }