blob: 4e73b8f9e93558679a60e8f4e03277e1b8cdaf00 [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 {
Chris Lattner06905db2004-02-18 21:24:48 +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 //
55 virtual TestResult doTest(std::vector<const PassInfo*> &Removed,
56 std::vector<const PassInfo*> &Kept);
57 };
58}
Chris Lattneraae33f92003-04-24 22:24:58 +000059
Chris Lattner06905db2004-02-18 21:24:48 +000060ReducePassList::TestResult
61ReducePassList::doTest(std::vector<const PassInfo*> &Prefix,
62 std::vector<const PassInfo*> &Suffix) {
Reid Spencer5f767602004-12-16 23:04:20 +000063 sys::Path PrefixOutput;
Chris Lattnerb417c792003-06-02 04:54:29 +000064 Module *OrigProgram = 0;
Chris Lattneraae33f92003-04-24 22:24:58 +000065 if (!Prefix.empty()) {
Dan Gohmanac95cc72009-07-16 15:30:09 +000066 outs() << "Checking to see if these passes crash: "
67 << getPassesString(Prefix) << ": ";
Reid Spencer5f767602004-12-16 23:04:20 +000068 std::string PfxOutput;
69 if (BD.runPasses(Prefix, PfxOutput))
Chris Lattneraae33f92003-04-24 22:24:58 +000070 return KeepPrefix;
Chris Lattnerb417c792003-06-02 04:54:29 +000071
Reid Spencerdd04df02005-07-07 23:21:43 +000072 PrefixOutput.set(PfxOutput);
Chris Lattnerb417c792003-06-02 04:54:29 +000073 OrigProgram = BD.Program;
74
Owen Anderson8b477ed2009-07-01 16:58:40 +000075 BD.Program = ParseInputFile(PrefixOutput.toString(), BD.getContext());
Chris Lattnerb417c792003-06-02 04:54:29 +000076 if (BD.Program == 0) {
Dan Gohman65f57c22009-07-15 16:35:29 +000077 errs() << BD.getToolName() << ": Error reading bitcode file '"
78 << PrefixOutput << "'!\n";
Chris Lattnerb417c792003-06-02 04:54:29 +000079 exit(1);
80 }
Reid Spencera229c5c2005-07-08 03:08:58 +000081 PrefixOutput.eraseFromDisk();
Chris Lattneraae33f92003-04-24 22:24:58 +000082 }
83
Dan Gohmanac95cc72009-07-16 15:30:09 +000084 outs() << "Checking to see if these passes crash: "
85 << getPassesString(Suffix) << ": ";
Misha Brukman3da94ae2005-04-22 00:00:37 +000086
Chris Lattneraae33f92003-04-24 22:24:58 +000087 if (BD.runPasses(Suffix)) {
88 delete OrigProgram; // The suffix crashes alone...
89 return KeepSuffix;
90 }
91
92 // Nothing failed, restore state...
Chris Lattnerb417c792003-06-02 04:54:29 +000093 if (OrigProgram) {
94 delete BD.Program;
95 BD.Program = OrigProgram;
96 }
Chris Lattneraae33f92003-04-24 22:24:58 +000097 return NoFailure;
98}
99
Bill Wendling4e3be892006-10-25 18:36:14 +0000100namespace {
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 Lenharthdf4613c2008-03-24 22:16:14 +0000132 DenseMap<const Value*, Value*> ValueMap;
133 Module *M = CloneModule(BD.getProgram(), ValueMap);
Bill Wendling4e3be892006-10-25 18:36:14 +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 Lenharthdf4613c2008-03-24 22:16:14 +0000139 GlobalVariable* CMGV = cast<GlobalVariable>(ValueMap[GVs[i]]);
Bill Wendling4e3be892006-10-25 18:36:14 +0000140 assert(CMGV && "Global Variable not in module?!");
141 GVSet.insert(CMGV);
142 }
143
Dan Gohmanac95cc72009-07-16 15:30:09 +0000144 outs() << "Checking for crash with only these global variables: ";
Bill Wendling4e3be892006-10-25 18:36:14 +0000145 PrintGlobalVariableList(GVs);
Dan Gohmanac95cc72009-07-16 15:30:09 +0000146 outs() << ": ";
Bill Wendling4e3be892006-10-25 18:36:14 +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 Lewycky028839d2009-05-25 06:29:56 +0000152 if (I->hasInitializer() && !GVSet.count(I)) {
Bill Wendling4e3be892006-10-25 18:36:14 +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
Chris Lattnerfa761832004-01-14 03:38:37 +0000171namespace llvm {
Bill Wendling4e3be892006-10-25 18:36:14 +0000172 /// 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 ///
Chris Lattnerefdc0b52004-03-14 20:50:42 +0000176 class ReduceCrashingFunctions : public ListReducer<Function*> {
Chris Lattnerfa761832004-01-14 03:38:37 +0000177 BugDriver &BD;
Chris Lattner8b189272004-02-18 23:26:28 +0000178 bool (*TestFn)(BugDriver &, Module *);
Chris Lattnerfa761832004-01-14 03:38:37 +0000179 public:
Chris Lattner8b189272004-02-18 23:26:28 +0000180 ReduceCrashingFunctions(BugDriver &bd,
181 bool (*testFn)(BugDriver &, Module *))
182 : BD(bd), TestFn(testFn) {}
Misha Brukman3da94ae2005-04-22 00:00:37 +0000183
Chris Lattnerefdc0b52004-03-14 20:50:42 +0000184 virtual TestResult doTest(std::vector<Function*> &Prefix,
185 std::vector<Function*> &Kept) {
Chris Lattnerfa761832004-01-14 03:38:37 +0000186 if (!Kept.empty() && TestFuncs(Kept))
187 return KeepSuffix;
188 if (!Prefix.empty() && TestFuncs(Prefix))
189 return KeepPrefix;
190 return NoFailure;
191 }
Misha Brukman3da94ae2005-04-22 00:00:37 +0000192
Chris Lattnerefdc0b52004-03-14 20:50:42 +0000193 bool TestFuncs(std::vector<Function*> &Prefix);
Chris Lattnerfa761832004-01-14 03:38:37 +0000194 };
195}
Chris Lattneraae33f92003-04-24 22:24:58 +0000196
Chris Lattnerefdc0b52004-03-14 20:50:42 +0000197bool ReduceCrashingFunctions::TestFuncs(std::vector<Function*> &Funcs) {
Andrew Lenharth7c0a9372006-03-05 22:21:36 +0000198
199 //if main isn't present, claim there is no problem
Bill Wendling4e3be892006-10-25 18:36:14 +0000200 if (KeepMain && find(Funcs.begin(), Funcs.end(),
Reid Spencer688b0492007-02-05 21:19:13 +0000201 BD.getProgram()->getFunction("main")) == Funcs.end())
Andrew Lenharth7c0a9372006-03-05 22:21:36 +0000202 return false;
203
Misha Brukmancf00c4a2003-10-10 17:57:28 +0000204 // Clone the program to try hacking it apart...
Dan Gohmanf6dd0eb2009-03-06 02:16:23 +0000205 DenseMap<const Value*, Value*> ValueMap;
206 Module *M = CloneModule(BD.getProgram(), ValueMap);
Misha Brukman3da94ae2005-04-22 00:00:37 +0000207
Chris Lattneraae33f92003-04-24 22:24:58 +0000208 // Convert list to set for fast lookup...
209 std::set<Function*> Functions;
210 for (unsigned i = 0, e = Funcs.size(); i != e; ++i) {
Dan Gohmanf6dd0eb2009-03-06 02:16:23 +0000211 Function *CMF = cast<Function>(ValueMap[Funcs[i]]);
Chris Lattneraae33f92003-04-24 22:24:58 +0000212 assert(CMF && "Function not in module?!");
Reid Spenceref9b9a72007-02-05 20:47:22 +0000213 assert(CMF->getFunctionType() == Funcs[i]->getFunctionType() && "wrong ty");
Dan Gohmanf6dd0eb2009-03-06 02:16:23 +0000214 assert(CMF->getName() == Funcs[i]->getName() && "wrong name");
Chris Lattnerf607b792003-04-24 22:54:06 +0000215 Functions.insert(CMF);
Chris Lattneraae33f92003-04-24 22:24:58 +0000216 }
217
Dan Gohmanac95cc72009-07-16 15:30:09 +0000218 outs() << "Checking for crash with only these functions: ";
Chris Lattnerefdc0b52004-03-14 20:50:42 +0000219 PrintFunctionList(Funcs);
Dan Gohmanac95cc72009-07-16 15:30:09 +0000220 outs() << ": ";
Chris Lattneraae33f92003-04-24 22:24:58 +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)
Reid Spencer5cbf9852007-01-30 20:08:39 +0000225 if (!I->isDeclaration() && !Functions.count(I))
Chris Lattneraae33f92003-04-24 22:24:58 +0000226 DeleteFunctionBody(I);
227
228 // Try running the hacked up program...
Chris Lattner8b189272004-02-18 23:26:28 +0000229 if (TestFn(BD, M)) {
Chris Lattner06905db2004-02-18 21:24:48 +0000230 BD.setNewProgram(M); // It crashed, keep the trimmed version...
Chris Lattneraae33f92003-04-24 22:24:58 +0000231
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 }
Chris Lattner06905db2004-02-18 21:24:48 +0000237 delete M;
Chris Lattneraae33f92003-04-24 22:24:58 +0000238 return false;
239}
240
Chris Lattner640f22e2003-04-24 17:02:17 +0000241
Chris Lattnerf913f402004-02-18 21:29:46 +0000242namespace {
Chris Lattnerfa761832004-01-14 03:38:37 +0000243 /// 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 ///
Chris Lattner8b189272004-02-18 23:26:28 +0000248 class ReduceCrashingBlocks : public ListReducer<const BasicBlock*> {
Chris Lattnerfa761832004-01-14 03:38:37 +0000249 BugDriver &BD;
Chris Lattner8b189272004-02-18 23:26:28 +0000250 bool (*TestFn)(BugDriver &, Module *);
Chris Lattnerfa761832004-01-14 03:38:37 +0000251 public:
Chris Lattner8b189272004-02-18 23:26:28 +0000252 ReduceCrashingBlocks(BugDriver &bd, bool (*testFn)(BugDriver &, Module *))
253 : BD(bd), TestFn(testFn) {}
Misha Brukman3da94ae2005-04-22 00:00:37 +0000254
Chris Lattner8b189272004-02-18 23:26:28 +0000255 virtual TestResult doTest(std::vector<const BasicBlock*> &Prefix,
256 std::vector<const BasicBlock*> &Kept) {
Chris Lattnerfa761832004-01-14 03:38:37 +0000257 if (!Kept.empty() && TestBlocks(Kept))
258 return KeepSuffix;
259 if (!Prefix.empty() && TestBlocks(Prefix))
260 return KeepPrefix;
261 return NoFailure;
262 }
Misha Brukman3da94ae2005-04-22 00:00:37 +0000263
Chris Lattner8b189272004-02-18 23:26:28 +0000264 bool TestBlocks(std::vector<const BasicBlock*> &Prefix);
Chris Lattnerfa761832004-01-14 03:38:37 +0000265 };
266}
Chris Lattner286921e2003-04-24 23:51:38 +0000267
Chris Lattner8b189272004-02-18 23:26:28 +0000268bool ReduceCrashingBlocks::TestBlocks(std::vector<const BasicBlock*> &BBs) {
Misha Brukmancf00c4a2003-10-10 17:57:28 +0000269 // Clone the program to try hacking it apart...
Dan Gohmanef0ff142009-03-05 23:20:46 +0000270 DenseMap<const Value*, Value*> ValueMap;
271 Module *M = CloneModule(BD.getProgram(), ValueMap);
Misha Brukman3da94ae2005-04-22 00:00:37 +0000272
Chris Lattner286921e2003-04-24 23:51:38 +0000273 // Convert list to set for fast lookup...
Nick Lewyckye0325902009-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]]));
Chris Lattner286921e2003-04-24 23:51:38 +0000277
Dan Gohmanac95cc72009-07-16 15:30:09 +0000278 outs() << "Checking for crash with only these blocks:";
Chris Lattner73b96bd2003-10-27 04:44:59 +0000279 unsigned NumPrint = Blocks.size();
280 if (NumPrint > 10) NumPrint = 10;
281 for (unsigned i = 0, e = NumPrint; i != e; ++i)
Dan Gohmanac95cc72009-07-16 15:30:09 +0000282 outs() << " " << BBs[i]->getName();
Chris Lattner73b96bd2003-10-27 04:44:59 +0000283 if (NumPrint < Blocks.size())
Dan Gohmanac95cc72009-07-16 15:30:09 +0000284 outs() << "... <" << Blocks.size() << " total>";
285 outs() << ": ";
Chris Lattner286921e2003-04-24 23:51:38 +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)
Chris Lattner8bc098b2003-11-22 02:10:38 +0000290 if (!Blocks.count(BB) && BB->getTerminator()->getNumSuccessors()) {
Chris Lattner286921e2003-04-24 23:51:38 +0000291 // 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 Lattnere78109e2008-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 Anderson0a5372e2009-07-13 04:09:18 +0000301 BBTerm->replaceAllUsesWith(
302 BD.getContext().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();
Chris Lattnere78109e2008-04-28 00:04:58 +0000306 new UnreachableInst(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);
336 if (V && V->getType() == Type::LabelTy)
337 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,
358 std::vector<const Instruction*> &Kept) {
359 if (!Kept.empty() && TestInsts(Kept))
360 return KeepSuffix;
361 if (!Prefix.empty() && TestInsts(Prefix))
362 return KeepPrefix;
363 return NoFailure;
364 }
365
366 bool TestInsts(std::vector<const Instruction*> &Prefix);
367 };
368}
369
370bool ReduceCrashingInstructions::TestInsts(std::vector<const Instruction*>
371 &Insts) {
372 // Clone the program to try hacking it apart...
373 DenseMap<const Value*, Value*> ValueMap;
374 Module *M = CloneModule(BD.getProgram(), ValueMap);
375
376 // Convert list to set for fast lookup...
377 SmallPtrSet<Instruction*, 64> Instructions;
378 for (unsigned i = 0, e = Insts.size(); i != e; ++i) {
379 assert(!isa<TerminatorInst>(Insts[i]));
380 Instructions.insert(cast<Instruction>(ValueMap[Insts[i]]));
381 }
382
Dan Gohmanac95cc72009-07-16 15:30:09 +0000383 outs() << "Checking for crash with only " << Instructions.size();
Nick Lewycky4c8f9af2009-05-25 05:30:00 +0000384 if (Instructions.size() == 1)
Dan Gohmanac95cc72009-07-16 15:30:09 +0000385 outs() << " instruction: ";
Nick Lewycky4c8f9af2009-05-25 05:30:00 +0000386 else
Dan Gohmanac95cc72009-07-16 15:30:09 +0000387 outs() << " instructions: ";
Nick Lewycky4c8f9af2009-05-25 05:30:00 +0000388
389 for (Module::iterator MI = M->begin(), ME = M->end(); MI != ME; ++MI)
390 for (Function::iterator FI = MI->begin(), FE = MI->end(); FI != FE; ++FI)
391 for (BasicBlock::iterator I = FI->begin(), E = FI->end(); I != E;) {
392 Instruction *Inst = I++;
393 if (!Instructions.count(Inst) && !isa<TerminatorInst>(Inst)) {
394 if (Inst->getType() != Type::VoidTy)
395 Inst->replaceAllUsesWith(UndefValue::get(Inst->getType()));
396 Inst->eraseFromParent();
397 }
398 }
399
400 // Verify that this is still valid.
401 PassManager Passes;
402 Passes.add(createVerifierPass());
403 Passes.run(*M);
404
405 // Try running on the hacked up program...
406 if (TestFn(BD, M)) {
407 BD.setNewProgram(M); // It crashed, keep the trimmed version...
408
409 // Make sure to use instruction pointers that point into the now-current
410 // module, and that they don't include any deleted blocks.
411 Insts.clear();
412 for (SmallPtrSet<Instruction*, 64>::const_iterator I = Instructions.begin(),
413 E = Instructions.end(); I != E; ++I)
414 Insts.push_back(*I);
415 return true;
416 }
417 delete M; // It didn't crash, try something else.
418 return false;
419}
420
Chris Lattner8b189272004-02-18 23:26:28 +0000421/// DebugACrash - Given a predicate that determines whether a component crashes
422/// on a program, try to destructively reduce the program while still keeping
423/// the predicate true.
424static bool DebugACrash(BugDriver &BD, bool (*TestFn)(BugDriver &, Module *)) {
Bill Wendling4e3be892006-10-25 18:36:14 +0000425 // See if we can get away with nuking some of the global variable initializers
Chris Lattner5f73e382003-04-25 00:53:05 +0000426 // in the program...
Torok Edwin23d471f2009-05-24 09:31:04 +0000427 if (!NoGlobalRM &&
428 BD.getProgram()->global_begin() != BD.getProgram()->global_end()) {
Bill Wendling4e3be892006-10-25 18:36:14 +0000429 // Now try to reduce the number of global variable initializers in the
430 // module to something small.
Bill Wendlingb3d83a32006-10-27 20:18:06 +0000431 Module *M = CloneModule(BD.getProgram());
432 bool DeletedInit = false;
Misha Brukman3da94ae2005-04-22 00:00:37 +0000433
Bill Wendlingb3d83a32006-10-27 20:18:06 +0000434 for (Module::global_iterator I = M->global_begin(), E = M->global_end();
435 I != E; ++I)
436 if (I->hasInitializer()) {
437 I->setInitializer(0);
438 I->setLinkage(GlobalValue::ExternalLinkage);
439 DeletedInit = true;
440 }
Bill Wendling4e3be892006-10-25 18:36:14 +0000441
Bill Wendlingb3d83a32006-10-27 20:18:06 +0000442 if (!DeletedInit) {
443 delete M; // No change made...
444 } else {
445 // See if the program still causes a crash...
Dan Gohmanac95cc72009-07-16 15:30:09 +0000446 outs() << "\nChecking to see if we can delete global inits: ";
Bill Wendling4e3be892006-10-25 18:36:14 +0000447
Bill Wendlingb3d83a32006-10-27 20:18:06 +0000448 if (TestFn(BD, M)) { // Still crashes?
449 BD.setNewProgram(M);
Dan Gohmanac95cc72009-07-16 15:30:09 +0000450 outs() << "\n*** Able to remove all global initializers!\n";
Bill Wendlingb3d83a32006-10-27 20:18:06 +0000451 } else { // No longer crashes?
Dan Gohmanac95cc72009-07-16 15:30:09 +0000452 outs() << " - Removing all global inits hides problem!\n";
Bill Wendlingb3d83a32006-10-27 20:18:06 +0000453 delete M;
Bill Wendling4e3be892006-10-25 18:36:14 +0000454
Bill Wendlingb3d83a32006-10-27 20:18:06 +0000455 std::vector<GlobalVariable*> GVs;
456
457 for (Module::global_iterator I = BD.getProgram()->global_begin(),
458 E = BD.getProgram()->global_end(); I != E; ++I)
459 if (I->hasInitializer())
460 GVs.push_back(I);
461
462 if (GVs.size() > 1 && !BugpointIsInterrupted) {
Dan Gohmanac95cc72009-07-16 15:30:09 +0000463 outs() << "\n*** Attempting to reduce the number of global "
Bill Wendlingb3d83a32006-10-27 20:18:06 +0000464 << "variables in the testcase\n";
465
466 unsigned OldSize = GVs.size();
467 ReduceCrashingGlobalVariables(BD, TestFn).reduceList(GVs);
468
469 if (GVs.size() < OldSize)
Gabor Greif8ff70c22007-07-04 21:55:50 +0000470 BD.EmitProgressBitcode("reduced-global-variables");
Bill Wendlingb3d83a32006-10-27 20:18:06 +0000471 }
Bill Wendling22706e82006-10-27 20:22:04 +0000472 }
Chris Lattner5f73e382003-04-25 00:53:05 +0000473 }
474 }
Misha Brukman3da94ae2005-04-22 00:00:37 +0000475
Chris Lattneraae33f92003-04-24 22:24:58 +0000476 // Now try to reduce the number of functions in the module to something small.
Chris Lattnerefdc0b52004-03-14 20:50:42 +0000477 std::vector<Function*> Functions;
478 for (Module::iterator I = BD.getProgram()->begin(),
Chris Lattner8b189272004-02-18 23:26:28 +0000479 E = BD.getProgram()->end(); I != E; ++I)
Reid Spencer5cbf9852007-01-30 20:08:39 +0000480 if (!I->isDeclaration())
Chris Lattneraae33f92003-04-24 22:24:58 +0000481 Functions.push_back(I);
Chris Lattnerafade922002-11-20 22:28:10 +0000482
Chris Lattnerf9aaae02005-08-02 02:16:17 +0000483 if (Functions.size() > 1 && !BugpointIsInterrupted) {
Dan Gohmanac95cc72009-07-16 15:30:09 +0000484 outs() << "\n*** Attempting to reduce the number of functions "
Chris Lattneraae33f92003-04-24 22:24:58 +0000485 "in the testcase\n";
Chris Lattnerafade922002-11-20 22:28:10 +0000486
Chris Lattner8b189272004-02-18 23:26:28 +0000487 unsigned OldSize = Functions.size();
488 ReduceCrashingFunctions(BD, TestFn).reduceList(Functions);
Chris Lattnerafade922002-11-20 22:28:10 +0000489
Chris Lattnerf9aaae02005-08-02 02:16:17 +0000490 if (Functions.size() < OldSize)
Gabor Greif8ff70c22007-07-04 21:55:50 +0000491 BD.EmitProgressBitcode("reduced-function");
Chris Lattnerafade922002-11-20 22:28:10 +0000492 }
493
Chris Lattner286921e2003-04-24 23:51:38 +0000494 // Attempt to delete entire basic blocks at a time to speed up
495 // convergence... this actually works by setting the terminator of the blocks
496 // to a return instruction then running simplifycfg, which can potentially
497 // shrinks the code dramatically quickly
498 //
Chris Lattnerf9aaae02005-08-02 02:16:17 +0000499 if (!DisableSimplifyCFG && !BugpointIsInterrupted) {
Chris Lattner8b189272004-02-18 23:26:28 +0000500 std::vector<const BasicBlock*> Blocks;
501 for (Module::const_iterator I = BD.getProgram()->begin(),
502 E = BD.getProgram()->end(); I != E; ++I)
503 for (Function::const_iterator FI = I->begin(), E = I->end(); FI !=E; ++FI)
Chris Lattner47ae4a12003-08-05 15:51:05 +0000504 Blocks.push_back(FI);
Torok Edwin2c235012009-05-24 09:40:47 +0000505 unsigned OldSize = Blocks.size();
Chris Lattner8b189272004-02-18 23:26:28 +0000506 ReduceCrashingBlocks(BD, TestFn).reduceList(Blocks);
Torok Edwin2c235012009-05-24 09:40:47 +0000507 if (Blocks.size() < OldSize)
508 BD.EmitProgressBitcode("reduced-blocks");
Chris Lattner47ae4a12003-08-05 15:51:05 +0000509 }
Chris Lattner218e26e2002-12-23 23:49:59 +0000510
Nick Lewycky4c8f9af2009-05-25 05:30:00 +0000511 // Attempt to delete instructions using bisection. This should help out nasty
512 // cases with large basic blocks where the problem is at one end.
513 if (!BugpointIsInterrupted) {
514 std::vector<const Instruction*> Insts;
515 for (Module::const_iterator MI = BD.getProgram()->begin(),
516 ME = BD.getProgram()->end(); MI != ME; ++MI)
517 for (Function::const_iterator FI = MI->begin(), FE = MI->end(); FI != FE;
518 ++FI)
519 for (BasicBlock::const_iterator I = FI->begin(), E = FI->end();
520 I != E; ++I)
521 if (!isa<TerminatorInst>(I))
522 Insts.push_back(I);
523
524 ReduceCrashingInstructions(BD, TestFn).reduceList(Insts);
525 }
526
Chris Lattneraae33f92003-04-24 22:24:58 +0000527 // FIXME: This should use the list reducer to converge faster by deleting
528 // larger chunks of instructions at a time!
Chris Lattnerb2c180f2004-03-13 19:35:54 +0000529 unsigned Simplification = 2;
Chris Lattner65207852003-01-23 02:48:33 +0000530 do {
Chris Lattnerf9aaae02005-08-02 02:16:17 +0000531 if (BugpointIsInterrupted) break;
Chris Lattner65207852003-01-23 02:48:33 +0000532 --Simplification;
Dan Gohmanac95cc72009-07-16 15:30:09 +0000533 outs() << "\n*** Attempting to reduce testcase by deleting instruc"
534 << "tions: Simplification Level #" << Simplification << '\n';
Chris Lattner65207852003-01-23 02:48:33 +0000535
Misha Brukman5560c9d2003-08-18 14:43:39 +0000536 // Now that we have deleted the functions that are unnecessary for the
537 // program, try to remove instructions that are not necessary to cause the
Chris Lattner65207852003-01-23 02:48:33 +0000538 // crash. To do this, we loop through all of the instructions in the
539 // remaining functions, deleting them (replacing any values produced with
540 // nulls), and then running ADCE and SimplifyCFG. If the transformed input
541 // still triggers failure, keep deleting until we cannot trigger failure
542 // anymore.
543 //
Chris Lattnerf66d9062004-02-18 23:59:11 +0000544 unsigned InstructionsToSkipBeforeDeleting = 0;
Chris Lattner65207852003-01-23 02:48:33 +0000545 TryAgain:
Misha Brukman3da94ae2005-04-22 00:00:37 +0000546
Chris Lattner65207852003-01-23 02:48:33 +0000547 // Loop over all of the (non-terminator) instructions remaining in the
548 // function, attempting to delete them.
Chris Lattnerf66d9062004-02-18 23:59:11 +0000549 unsigned CurInstructionNum = 0;
Chris Lattner8b189272004-02-18 23:26:28 +0000550 for (Module::const_iterator FI = BD.getProgram()->begin(),
551 E = BD.getProgram()->end(); FI != E; ++FI)
Reid Spencer5cbf9852007-01-30 20:08:39 +0000552 if (!FI->isDeclaration())
Chris Lattner8b189272004-02-18 23:26:28 +0000553 for (Function::const_iterator BI = FI->begin(), E = FI->end(); BI != E;
554 ++BI)
555 for (BasicBlock::const_iterator I = BI->begin(), E = --BI->end();
Chris Lattnerf66d9062004-02-18 23:59:11 +0000556 I != E; ++I, ++CurInstructionNum)
557 if (InstructionsToSkipBeforeDeleting) {
558 --InstructionsToSkipBeforeDeleting;
559 } else {
Chris Lattnerf9aaae02005-08-02 02:16:17 +0000560 if (BugpointIsInterrupted) goto ExitLoops;
561
Dan Gohmanac95cc72009-07-16 15:30:09 +0000562 outs() << "Checking instruction: " << *I;
Chris Lattnerf66d9062004-02-18 23:59:11 +0000563 Module *M = BD.deleteInstructionFromProgram(I, Simplification);
Misha Brukman3da94ae2005-04-22 00:00:37 +0000564
Chris Lattnerf66d9062004-02-18 23:59:11 +0000565 // Find out if the pass still crashes on this pass...
566 if (TestFn(BD, M)) {
567 // Yup, it does, we delete the old module, and continue trying
568 // to reduce the testcase...
569 BD.setNewProgram(M);
Chris Lattnerf66d9062004-02-18 23:59:11 +0000570 InstructionsToSkipBeforeDeleting = CurInstructionNum;
571 goto TryAgain; // I wish I had a multi-level break here!
572 }
Misha Brukman3da94ae2005-04-22 00:00:37 +0000573
Chris Lattnerf66d9062004-02-18 23:59:11 +0000574 // This pass didn't crash without this instruction, try the next
575 // one.
576 delete M;
Chris Lattner65207852003-01-23 02:48:33 +0000577 }
Chris Lattnerf66d9062004-02-18 23:59:11 +0000578
579 if (InstructionsToSkipBeforeDeleting) {
580 InstructionsToSkipBeforeDeleting = 0;
581 goto TryAgain;
582 }
Misha Brukman3da94ae2005-04-22 00:00:37 +0000583
Chris Lattner65207852003-01-23 02:48:33 +0000584 } while (Simplification);
Chris Lattnerf9aaae02005-08-02 02:16:17 +0000585ExitLoops:
Chris Lattnerba386d92003-02-28 16:13:20 +0000586
587 // Try to clean up the testcase by running funcresolve and globaldce...
Chris Lattnerf9aaae02005-08-02 02:16:17 +0000588 if (!BugpointIsInterrupted) {
Dan Gohmanac95cc72009-07-16 15:30:09 +0000589 outs() << "\n*** Attempting to perform final cleanups: ";
Chris Lattnerf9aaae02005-08-02 02:16:17 +0000590 Module *M = CloneModule(BD.getProgram());
591 M = BD.performFinalCleanups(M, true);
Misha Brukman3da94ae2005-04-22 00:00:37 +0000592
Chris Lattnerf9aaae02005-08-02 02:16:17 +0000593 // Find out if the pass still crashes on the cleaned up program...
594 if (TestFn(BD, M)) {
595 BD.setNewProgram(M); // Yup, it does, keep the reduced version...
596 } else {
597 delete M;
598 }
Chris Lattnerba386d92003-02-28 16:13:20 +0000599 }
600
Gabor Greif8ff70c22007-07-04 21:55:50 +0000601 BD.EmitProgressBitcode("reduced-simplified");
Chris Lattnerba386d92003-02-28 16:13:20 +0000602
Misha Brukman3da94ae2005-04-22 00:00:37 +0000603 return false;
Chris Lattnerafade922002-11-20 22:28:10 +0000604}
Brian Gaeked0fde302003-11-11 22:41:34 +0000605
Chris Lattner8b189272004-02-18 23:26:28 +0000606static bool TestForOptimizerCrash(BugDriver &BD, Module *M) {
607 return BD.runPasses(M);
608}
Chris Lattner02526262004-02-18 21:02:04 +0000609
Chris Lattner8b189272004-02-18 23:26:28 +0000610/// debugOptimizerCrash - This method is called when some pass crashes on input.
611/// It attempts to prune down the testcase to something reasonable, and figure
612/// out exactly which pass is crashing.
613///
Patrick Jenkins6a3f31c2006-08-15 16:40:49 +0000614bool BugDriver::debugOptimizerCrash(const std::string &ID) {
Dan Gohmanac95cc72009-07-16 15:30:09 +0000615 outs() << "\n*** Debugging optimizer crash!\n";
Chris Lattner8b189272004-02-18 23:26:28 +0000616
617 // Reduce the list of passes which causes the optimizer to crash...
Chris Lattnerf9aaae02005-08-02 02:16:17 +0000618 if (!BugpointIsInterrupted)
619 ReducePassList(*this).reduceList(PassesToRun);
Chris Lattner8b189272004-02-18 23:26:28 +0000620
Dan Gohmanac95cc72009-07-16 15:30:09 +0000621 outs() << "\n*** Found crashing pass"
622 << (PassesToRun.size() == 1 ? ": " : "es: ")
623 << getPassesString(PassesToRun) << '\n';
Chris Lattner8b189272004-02-18 23:26:28 +0000624
Gabor Greif8ff70c22007-07-04 21:55:50 +0000625 EmitProgressBitcode(ID);
Chris Lattner8b189272004-02-18 23:26:28 +0000626
627 return DebugACrash(*this, TestForOptimizerCrash);
628}
629
630static bool TestForCodeGenCrash(BugDriver &BD, Module *M) {
631 try {
Chris Lattner8b189272004-02-18 23:26:28 +0000632 BD.compileProgram(M);
Dan Gohman65f57c22009-07-15 16:35:29 +0000633 errs() << '\n';
Chris Lattner8b189272004-02-18 23:26:28 +0000634 return false;
Jeff Cohen83881952005-01-22 16:30:58 +0000635 } catch (ToolExecutionError &) {
Dan Gohman65f57c22009-07-15 16:35:29 +0000636 errs() << "<crash>\n";
Chris Lattner8b189272004-02-18 23:26:28 +0000637 return true; // Tool is still crashing.
638 }
639}
Chris Lattner02526262004-02-18 21:02:04 +0000640
641/// debugCodeGeneratorCrash - This method is called when the code generator
642/// crashes on an input. It attempts to reduce the input as much as possible
643/// while still causing the code generator to crash.
644bool BugDriver::debugCodeGeneratorCrash() {
Dan Gohman65f57c22009-07-15 16:35:29 +0000645 errs() << "*** Debugging code generator crash!\n";
Chris Lattner02526262004-02-18 21:02:04 +0000646
Chris Lattner8b189272004-02-18 23:26:28 +0000647 return DebugACrash(*this, TestForCodeGenCrash);
Chris Lattner02526262004-02-18 21:02:04 +0000648}