blob: 4225a40c743bb01b166236abfbf7e23982b8d01b [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 Lattnerafade922002-11-20 22:28:10 +000031#include <fstream>
Chris Lattneraae33f92003-04-24 22:24:58 +000032#include <set>
Chris Lattnerfa761832004-01-14 03:38:37 +000033using namespace llvm;
Chris Lattnerafade922002-11-20 22:28:10 +000034
Andrew Lenharth7c0a9372006-03-05 22:21:36 +000035namespace {
36 cl::opt<bool>
37 KeepMain("keep-main",
38 cl::desc("Force function reduction to keep main"),
39 cl::init(false));
40}
41
Brian Gaeked0fde302003-11-11 22:41:34 +000042namespace llvm {
Chris Lattner06905db2004-02-18 21:24:48 +000043 class ReducePassList : public ListReducer<const PassInfo*> {
Chris Lattnerfa761832004-01-14 03:38:37 +000044 BugDriver &BD;
45 public:
Chris Lattner06905db2004-02-18 21:24:48 +000046 ReducePassList(BugDriver &bd) : BD(bd) {}
Misha Brukman3da94ae2005-04-22 00:00:37 +000047
Chris Lattnerfa761832004-01-14 03:38:37 +000048 // doTest - Return true iff running the "removed" passes succeeds, and
49 // running the "Kept" passes fail when run on the output of the "removed"
50 // passes. If we return true, we update the current module of bugpoint.
51 //
52 virtual TestResult doTest(std::vector<const PassInfo*> &Removed,
53 std::vector<const PassInfo*> &Kept);
54 };
55}
Chris Lattneraae33f92003-04-24 22:24:58 +000056
Chris Lattner06905db2004-02-18 21:24:48 +000057ReducePassList::TestResult
58ReducePassList::doTest(std::vector<const PassInfo*> &Prefix,
59 std::vector<const PassInfo*> &Suffix) {
Reid Spencer5f767602004-12-16 23:04:20 +000060 sys::Path PrefixOutput;
Chris Lattnerb417c792003-06-02 04:54:29 +000061 Module *OrigProgram = 0;
Chris Lattneraae33f92003-04-24 22:24:58 +000062 if (!Prefix.empty()) {
63 std::cout << "Checking to see if these passes crash: "
64 << getPassesString(Prefix) << ": ";
Reid Spencer5f767602004-12-16 23:04:20 +000065 std::string PfxOutput;
66 if (BD.runPasses(Prefix, PfxOutput))
Chris Lattneraae33f92003-04-24 22:24:58 +000067 return KeepPrefix;
Chris Lattnerb417c792003-06-02 04:54:29 +000068
Reid Spencerdd04df02005-07-07 23:21:43 +000069 PrefixOutput.set(PfxOutput);
Chris Lattnerb417c792003-06-02 04:54:29 +000070 OrigProgram = BD.Program;
71
Reid Spencer5f767602004-12-16 23:04:20 +000072 BD.Program = ParseInputFile(PrefixOutput.toString());
Chris Lattnerb417c792003-06-02 04:54:29 +000073 if (BD.Program == 0) {
Gabor Greif8ff70c22007-07-04 21:55:50 +000074 std::cerr << BD.getToolName() << ": Error reading bitcode file '"
Chris Lattnerb417c792003-06-02 04:54:29 +000075 << PrefixOutput << "'!\n";
76 exit(1);
77 }
Reid Spencera229c5c2005-07-08 03:08:58 +000078 PrefixOutput.eraseFromDisk();
Chris Lattneraae33f92003-04-24 22:24:58 +000079 }
80
81 std::cout << "Checking to see if these passes crash: "
82 << getPassesString(Suffix) << ": ";
Misha Brukman3da94ae2005-04-22 00:00:37 +000083
Chris Lattneraae33f92003-04-24 22:24:58 +000084 if (BD.runPasses(Suffix)) {
85 delete OrigProgram; // The suffix crashes alone...
86 return KeepSuffix;
87 }
88
89 // Nothing failed, restore state...
Chris Lattnerb417c792003-06-02 04:54:29 +000090 if (OrigProgram) {
91 delete BD.Program;
92 BD.Program = OrigProgram;
93 }
Chris Lattneraae33f92003-04-24 22:24:58 +000094 return NoFailure;
95}
96
Bill Wendling4e3be892006-10-25 18:36:14 +000097namespace {
98 /// ReduceCrashingGlobalVariables - This works by removing the global
99 /// variable's initializer and seeing if the program still crashes. If it
100 /// does, then we keep that program and try again.
101 ///
102 class ReduceCrashingGlobalVariables : public ListReducer<GlobalVariable*> {
103 BugDriver &BD;
104 bool (*TestFn)(BugDriver &, Module *);
105 public:
106 ReduceCrashingGlobalVariables(BugDriver &bd,
107 bool (*testFn)(BugDriver&, Module*))
108 : BD(bd), TestFn(testFn) {}
109
110 virtual TestResult doTest(std::vector<GlobalVariable*>& Prefix,
111 std::vector<GlobalVariable*>& Kept) {
112 if (!Kept.empty() && TestGlobalVariables(Kept))
113 return KeepSuffix;
114
115 if (!Prefix.empty() && TestGlobalVariables(Prefix))
116 return KeepPrefix;
117
118 return NoFailure;
119 }
120
121 bool TestGlobalVariables(std::vector<GlobalVariable*>& GVs);
122 };
123}
124
125bool
126ReduceCrashingGlobalVariables::TestGlobalVariables(
127 std::vector<GlobalVariable*>& GVs) {
128 // Clone the program to try hacking it apart...
Andrew Lenharthdf4613c2008-03-24 22:16:14 +0000129 DenseMap<const Value*, Value*> ValueMap;
130 Module *M = CloneModule(BD.getProgram(), ValueMap);
Bill Wendling4e3be892006-10-25 18:36:14 +0000131
132 // Convert list to set for fast lookup...
133 std::set<GlobalVariable*> GVSet;
134
135 for (unsigned i = 0, e = GVs.size(); i != e; ++i) {
Andrew Lenharthdf4613c2008-03-24 22:16:14 +0000136 GlobalVariable* CMGV = cast<GlobalVariable>(ValueMap[GVs[i]]);
Bill Wendling4e3be892006-10-25 18:36:14 +0000137 assert(CMGV && "Global Variable not in module?!");
138 GVSet.insert(CMGV);
139 }
140
141 std::cout << "Checking for crash with only these global variables: ";
142 PrintGlobalVariableList(GVs);
143 std::cout << ": ";
144
145 // Loop over and delete any global variables which we aren't supposed to be
146 // playing with...
147 for (Module::global_iterator I = M->global_begin(), E = M->global_end();
148 I != E; ++I)
149 if (I->hasInitializer()) {
150 I->setInitializer(0);
151 I->setLinkage(GlobalValue::ExternalLinkage);
152 }
153
154 // Try running the hacked up program...
155 if (TestFn(BD, M)) {
156 BD.setNewProgram(M); // It crashed, keep the trimmed version...
157
158 // Make sure to use global variable pointers that point into the now-current
159 // module.
160 GVs.assign(GVSet.begin(), GVSet.end());
161 return true;
162 }
163
164 delete M;
165 return false;
166}
167
Chris Lattnerfa761832004-01-14 03:38:37 +0000168namespace llvm {
Bill Wendling4e3be892006-10-25 18:36:14 +0000169 /// ReduceCrashingFunctions reducer - This works by removing functions and
170 /// seeing if the program still crashes. If it does, then keep the newer,
171 /// smaller program.
172 ///
Chris Lattnerefdc0b52004-03-14 20:50:42 +0000173 class ReduceCrashingFunctions : public ListReducer<Function*> {
Chris Lattnerfa761832004-01-14 03:38:37 +0000174 BugDriver &BD;
Chris Lattner8b189272004-02-18 23:26:28 +0000175 bool (*TestFn)(BugDriver &, Module *);
Chris Lattnerfa761832004-01-14 03:38:37 +0000176 public:
Chris Lattner8b189272004-02-18 23:26:28 +0000177 ReduceCrashingFunctions(BugDriver &bd,
178 bool (*testFn)(BugDriver &, Module *))
179 : BD(bd), TestFn(testFn) {}
Misha Brukman3da94ae2005-04-22 00:00:37 +0000180
Chris Lattnerefdc0b52004-03-14 20:50:42 +0000181 virtual TestResult doTest(std::vector<Function*> &Prefix,
182 std::vector<Function*> &Kept) {
Chris Lattnerfa761832004-01-14 03:38:37 +0000183 if (!Kept.empty() && TestFuncs(Kept))
184 return KeepSuffix;
185 if (!Prefix.empty() && TestFuncs(Prefix))
186 return KeepPrefix;
187 return NoFailure;
188 }
Misha Brukman3da94ae2005-04-22 00:00:37 +0000189
Chris Lattnerefdc0b52004-03-14 20:50:42 +0000190 bool TestFuncs(std::vector<Function*> &Prefix);
Chris Lattnerfa761832004-01-14 03:38:37 +0000191 };
192}
Chris Lattneraae33f92003-04-24 22:24:58 +0000193
Chris Lattnerefdc0b52004-03-14 20:50:42 +0000194bool ReduceCrashingFunctions::TestFuncs(std::vector<Function*> &Funcs) {
Andrew Lenharth7c0a9372006-03-05 22:21:36 +0000195
196 //if main isn't present, claim there is no problem
Bill Wendling4e3be892006-10-25 18:36:14 +0000197 if (KeepMain && find(Funcs.begin(), Funcs.end(),
Reid Spencer688b0492007-02-05 21:19:13 +0000198 BD.getProgram()->getFunction("main")) == Funcs.end())
Andrew Lenharth7c0a9372006-03-05 22:21:36 +0000199 return false;
200
Misha Brukmancf00c4a2003-10-10 17:57:28 +0000201 // Clone the program to try hacking it apart...
Dan Gohmanf6dd0eb2009-03-06 02:16:23 +0000202 DenseMap<const Value*, Value*> ValueMap;
203 Module *M = CloneModule(BD.getProgram(), ValueMap);
Misha Brukman3da94ae2005-04-22 00:00:37 +0000204
Chris Lattneraae33f92003-04-24 22:24:58 +0000205 // Convert list to set for fast lookup...
206 std::set<Function*> Functions;
207 for (unsigned i = 0, e = Funcs.size(); i != e; ++i) {
Dan Gohmanf6dd0eb2009-03-06 02:16:23 +0000208 Function *CMF = cast<Function>(ValueMap[Funcs[i]]);
Chris Lattneraae33f92003-04-24 22:24:58 +0000209 assert(CMF && "Function not in module?!");
Reid Spenceref9b9a72007-02-05 20:47:22 +0000210 assert(CMF->getFunctionType() == Funcs[i]->getFunctionType() && "wrong ty");
Dan Gohmanf6dd0eb2009-03-06 02:16:23 +0000211 assert(CMF->getName() == Funcs[i]->getName() && "wrong name");
Chris Lattnerf607b792003-04-24 22:54:06 +0000212 Functions.insert(CMF);
Chris Lattneraae33f92003-04-24 22:24:58 +0000213 }
214
Chris Lattnerefdc0b52004-03-14 20:50:42 +0000215 std::cout << "Checking for crash with only these functions: ";
216 PrintFunctionList(Funcs);
Chris Lattneraae33f92003-04-24 22:24:58 +0000217 std::cout << ": ";
218
219 // Loop over and delete any functions which we aren't supposed to be playing
220 // with...
221 for (Module::iterator I = M->begin(), E = M->end(); I != E; ++I)
Reid Spencer5cbf9852007-01-30 20:08:39 +0000222 if (!I->isDeclaration() && !Functions.count(I))
Chris Lattneraae33f92003-04-24 22:24:58 +0000223 DeleteFunctionBody(I);
224
225 // Try running the hacked up program...
Chris Lattner8b189272004-02-18 23:26:28 +0000226 if (TestFn(BD, M)) {
Chris Lattner06905db2004-02-18 21:24:48 +0000227 BD.setNewProgram(M); // It crashed, keep the trimmed version...
Chris Lattneraae33f92003-04-24 22:24:58 +0000228
229 // Make sure to use function pointers that point into the now-current
230 // module.
231 Funcs.assign(Functions.begin(), Functions.end());
232 return true;
233 }
Chris Lattner06905db2004-02-18 21:24:48 +0000234 delete M;
Chris Lattneraae33f92003-04-24 22:24:58 +0000235 return false;
236}
237
Chris Lattner640f22e2003-04-24 17:02:17 +0000238
Chris Lattnerf913f402004-02-18 21:29:46 +0000239namespace {
Chris Lattnerfa761832004-01-14 03:38:37 +0000240 /// ReduceCrashingBlocks reducer - This works by setting the terminators of
241 /// all terminators except the specified basic blocks to a 'ret' instruction,
242 /// then running the simplify-cfg pass. This has the effect of chopping up
243 /// the CFG really fast which can reduce large functions quickly.
244 ///
Chris Lattner8b189272004-02-18 23:26:28 +0000245 class ReduceCrashingBlocks : public ListReducer<const BasicBlock*> {
Chris Lattnerfa761832004-01-14 03:38:37 +0000246 BugDriver &BD;
Chris Lattner8b189272004-02-18 23:26:28 +0000247 bool (*TestFn)(BugDriver &, Module *);
Chris Lattnerfa761832004-01-14 03:38:37 +0000248 public:
Chris Lattner8b189272004-02-18 23:26:28 +0000249 ReduceCrashingBlocks(BugDriver &bd, bool (*testFn)(BugDriver &, Module *))
250 : BD(bd), TestFn(testFn) {}
Misha Brukman3da94ae2005-04-22 00:00:37 +0000251
Chris Lattner8b189272004-02-18 23:26:28 +0000252 virtual TestResult doTest(std::vector<const BasicBlock*> &Prefix,
253 std::vector<const BasicBlock*> &Kept) {
Chris Lattnerfa761832004-01-14 03:38:37 +0000254 if (!Kept.empty() && TestBlocks(Kept))
255 return KeepSuffix;
256 if (!Prefix.empty() && TestBlocks(Prefix))
257 return KeepPrefix;
258 return NoFailure;
259 }
Misha Brukman3da94ae2005-04-22 00:00:37 +0000260
Chris Lattner8b189272004-02-18 23:26:28 +0000261 bool TestBlocks(std::vector<const BasicBlock*> &Prefix);
Chris Lattnerfa761832004-01-14 03:38:37 +0000262 };
263}
Chris Lattner286921e2003-04-24 23:51:38 +0000264
Chris Lattner8b189272004-02-18 23:26:28 +0000265bool ReduceCrashingBlocks::TestBlocks(std::vector<const BasicBlock*> &BBs) {
Misha Brukmancf00c4a2003-10-10 17:57:28 +0000266 // Clone the program to try hacking it apart...
Dan Gohmanef0ff142009-03-05 23:20:46 +0000267 DenseMap<const Value*, Value*> ValueMap;
268 Module *M = CloneModule(BD.getProgram(), ValueMap);
Misha Brukman3da94ae2005-04-22 00:00:37 +0000269
Chris Lattner286921e2003-04-24 23:51:38 +0000270 // Convert list to set for fast lookup...
Nick Lewyckye0325902009-04-04 09:39:23 +0000271 SmallPtrSet<BasicBlock*, 8> Blocks;
272 for (unsigned i = 0, e = BBs.size(); i != e; ++i)
273 Blocks.insert(cast<BasicBlock>(ValueMap[BBs[i]]));
Chris Lattner286921e2003-04-24 23:51:38 +0000274
275 std::cout << "Checking for crash with only these blocks:";
Chris Lattner73b96bd2003-10-27 04:44:59 +0000276 unsigned NumPrint = Blocks.size();
277 if (NumPrint > 10) NumPrint = 10;
278 for (unsigned i = 0, e = NumPrint; i != e; ++i)
Chris Lattner286921e2003-04-24 23:51:38 +0000279 std::cout << " " << BBs[i]->getName();
Chris Lattner73b96bd2003-10-27 04:44:59 +0000280 if (NumPrint < Blocks.size())
281 std::cout << "... <" << Blocks.size() << " total>";
Chris Lattner286921e2003-04-24 23:51:38 +0000282 std::cout << ": ";
283
284 // Loop over and delete any hack up any blocks that are not listed...
285 for (Module::iterator I = M->begin(), E = M->end(); I != E; ++I)
286 for (Function::iterator BB = I->begin(), E = I->end(); BB != E; ++BB)
Chris Lattner8bc098b2003-11-22 02:10:38 +0000287 if (!Blocks.count(BB) && BB->getTerminator()->getNumSuccessors()) {
Chris Lattner286921e2003-04-24 23:51:38 +0000288 // Loop over all of the successors of this block, deleting any PHI nodes
289 // that might include it.
290 for (succ_iterator SI = succ_begin(BB), E = succ_end(BB); SI != E; ++SI)
291 (*SI)->removePredecessor(BB);
292
Chris Lattnere78109e2008-04-28 00:04:58 +0000293 TerminatorInst *BBTerm = BB->getTerminator();
294
295 if (isa<StructType>(BBTerm->getType()))
296 BBTerm->replaceAllUsesWith(UndefValue::get(BBTerm->getType()));
297 else if (BB->getTerminator()->getType() != Type::VoidTy)
298 BBTerm->replaceAllUsesWith(Constant::getNullValue(BBTerm->getType()));
Chris Lattner8bc098b2003-11-22 02:10:38 +0000299
Chris Lattnere78109e2008-04-28 00:04:58 +0000300 // Replace the old terminator instruction.
Chris Lattner286921e2003-04-24 23:51:38 +0000301 BB->getInstList().pop_back();
Chris Lattnere78109e2008-04-28 00:04:58 +0000302 new UnreachableInst(BB);
Chris Lattner286921e2003-04-24 23:51:38 +0000303 }
304
305 // The CFG Simplifier pass may delete one of the basic blocks we are
306 // interested in. If it does we need to take the block out of the list. Make
307 // a "persistent mapping" by turning basic blocks into <function, name> pairs.
308 // This won't work well if blocks are unnamed, but that is just the risk we
309 // have to take.
310 std::vector<std::pair<Function*, std::string> > BlockInfo;
311
Nick Lewyckye0325902009-04-04 09:39:23 +0000312 for (SmallPtrSet<BasicBlock*, 8>::iterator I = Blocks.begin(),
313 E = Blocks.end(); I != E; ++I)
Chris Lattner286921e2003-04-24 23:51:38 +0000314 BlockInfo.push_back(std::make_pair((*I)->getParent(), (*I)->getName()));
315
316 // Now run the CFG simplify pass on the function...
317 PassManager Passes;
318 Passes.add(createCFGSimplificationPass());
319 Passes.add(createVerifierPass());
320 Passes.run(*M);
321
322 // Try running on the hacked up program...
Chris Lattner8b189272004-02-18 23:26:28 +0000323 if (TestFn(BD, M)) {
Chris Lattner06905db2004-02-18 21:24:48 +0000324 BD.setNewProgram(M); // It crashed, keep the trimmed version...
Chris Lattner286921e2003-04-24 23:51:38 +0000325
326 // Make sure to use basic block pointers that point into the now-current
327 // module, and that they don't include any deleted blocks.
328 BBs.clear();
329 for (unsigned i = 0, e = BlockInfo.size(); i != e; ++i) {
Reid Spenceref9b9a72007-02-05 20:47:22 +0000330 ValueSymbolTable &ST = BlockInfo[i].first->getValueSymbolTable();
331 Value* V = ST.lookup(BlockInfo[i].second);
332 if (V && V->getType() == Type::LabelTy)
333 BBs.push_back(cast<BasicBlock>(V));
Chris Lattner286921e2003-04-24 23:51:38 +0000334 }
335 return true;
336 }
Chris Lattner06905db2004-02-18 21:24:48 +0000337 delete M; // It didn't crash, try something else.
Chris Lattner286921e2003-04-24 23:51:38 +0000338 return false;
339}
340
Chris Lattner8b189272004-02-18 23:26:28 +0000341/// DebugACrash - Given a predicate that determines whether a component crashes
342/// on a program, try to destructively reduce the program while still keeping
343/// the predicate true.
344static bool DebugACrash(BugDriver &BD, bool (*TestFn)(BugDriver &, Module *)) {
Bill Wendling4e3be892006-10-25 18:36:14 +0000345 // See if we can get away with nuking some of the global variable initializers
Chris Lattner5f73e382003-04-25 00:53:05 +0000346 // in the program...
Chris Lattner852b4d42005-03-15 15:48:06 +0000347 if (BD.getProgram()->global_begin() != BD.getProgram()->global_end()) {
Bill Wendling4e3be892006-10-25 18:36:14 +0000348 // Now try to reduce the number of global variable initializers in the
349 // module to something small.
Bill Wendlingb3d83a32006-10-27 20:18:06 +0000350 Module *M = CloneModule(BD.getProgram());
351 bool DeletedInit = false;
Misha Brukman3da94ae2005-04-22 00:00:37 +0000352
Bill Wendlingb3d83a32006-10-27 20:18:06 +0000353 for (Module::global_iterator I = M->global_begin(), E = M->global_end();
354 I != E; ++I)
355 if (I->hasInitializer()) {
356 I->setInitializer(0);
357 I->setLinkage(GlobalValue::ExternalLinkage);
358 DeletedInit = true;
359 }
Bill Wendling4e3be892006-10-25 18:36:14 +0000360
Bill Wendlingb3d83a32006-10-27 20:18:06 +0000361 if (!DeletedInit) {
362 delete M; // No change made...
363 } else {
364 // See if the program still causes a crash...
365 std::cout << "\nChecking to see if we can delete global inits: ";
Bill Wendling4e3be892006-10-25 18:36:14 +0000366
Bill Wendlingb3d83a32006-10-27 20:18:06 +0000367 if (TestFn(BD, M)) { // Still crashes?
368 BD.setNewProgram(M);
369 std::cout << "\n*** Able to remove all global initializers!\n";
370 } else { // No longer crashes?
371 std::cout << " - Removing all global inits hides problem!\n";
372 delete M;
Bill Wendling4e3be892006-10-25 18:36:14 +0000373
Bill Wendlingb3d83a32006-10-27 20:18:06 +0000374 std::vector<GlobalVariable*> GVs;
375
376 for (Module::global_iterator I = BD.getProgram()->global_begin(),
377 E = BD.getProgram()->global_end(); I != E; ++I)
378 if (I->hasInitializer())
379 GVs.push_back(I);
380
381 if (GVs.size() > 1 && !BugpointIsInterrupted) {
382 std::cout << "\n*** Attempting to reduce the number of global "
383 << "variables in the testcase\n";
384
385 unsigned OldSize = GVs.size();
386 ReduceCrashingGlobalVariables(BD, TestFn).reduceList(GVs);
387
388 if (GVs.size() < OldSize)
Gabor Greif8ff70c22007-07-04 21:55:50 +0000389 BD.EmitProgressBitcode("reduced-global-variables");
Bill Wendlingb3d83a32006-10-27 20:18:06 +0000390 }
Bill Wendling22706e82006-10-27 20:22:04 +0000391 }
Chris Lattner5f73e382003-04-25 00:53:05 +0000392 }
393 }
Misha Brukman3da94ae2005-04-22 00:00:37 +0000394
Chris Lattneraae33f92003-04-24 22:24:58 +0000395 // Now try to reduce the number of functions in the module to something small.
Chris Lattnerefdc0b52004-03-14 20:50:42 +0000396 std::vector<Function*> Functions;
397 for (Module::iterator I = BD.getProgram()->begin(),
Chris Lattner8b189272004-02-18 23:26:28 +0000398 E = BD.getProgram()->end(); I != E; ++I)
Reid Spencer5cbf9852007-01-30 20:08:39 +0000399 if (!I->isDeclaration())
Chris Lattneraae33f92003-04-24 22:24:58 +0000400 Functions.push_back(I);
Chris Lattnerafade922002-11-20 22:28:10 +0000401
Chris Lattnerf9aaae02005-08-02 02:16:17 +0000402 if (Functions.size() > 1 && !BugpointIsInterrupted) {
Chris Lattneraae33f92003-04-24 22:24:58 +0000403 std::cout << "\n*** Attempting to reduce the number of functions "
404 "in the testcase\n";
Chris Lattnerafade922002-11-20 22:28:10 +0000405
Chris Lattner8b189272004-02-18 23:26:28 +0000406 unsigned OldSize = Functions.size();
407 ReduceCrashingFunctions(BD, TestFn).reduceList(Functions);
Chris Lattnerafade922002-11-20 22:28:10 +0000408
Chris Lattnerf9aaae02005-08-02 02:16:17 +0000409 if (Functions.size() < OldSize)
Gabor Greif8ff70c22007-07-04 21:55:50 +0000410 BD.EmitProgressBitcode("reduced-function");
Chris Lattnerafade922002-11-20 22:28:10 +0000411 }
412
Chris Lattner286921e2003-04-24 23:51:38 +0000413 // Attempt to delete entire basic blocks at a time to speed up
414 // convergence... this actually works by setting the terminator of the blocks
415 // to a return instruction then running simplifycfg, which can potentially
416 // shrinks the code dramatically quickly
417 //
Chris Lattnerf9aaae02005-08-02 02:16:17 +0000418 if (!DisableSimplifyCFG && !BugpointIsInterrupted) {
Chris Lattner8b189272004-02-18 23:26:28 +0000419 std::vector<const BasicBlock*> Blocks;
420 for (Module::const_iterator I = BD.getProgram()->begin(),
421 E = BD.getProgram()->end(); I != E; ++I)
422 for (Function::const_iterator FI = I->begin(), E = I->end(); FI !=E; ++FI)
Chris Lattner47ae4a12003-08-05 15:51:05 +0000423 Blocks.push_back(FI);
Chris Lattner8b189272004-02-18 23:26:28 +0000424 ReduceCrashingBlocks(BD, TestFn).reduceList(Blocks);
Chris Lattner47ae4a12003-08-05 15:51:05 +0000425 }
Chris Lattner218e26e2002-12-23 23:49:59 +0000426
Chris Lattneraae33f92003-04-24 22:24:58 +0000427 // FIXME: This should use the list reducer to converge faster by deleting
428 // larger chunks of instructions at a time!
Chris Lattnerb2c180f2004-03-13 19:35:54 +0000429 unsigned Simplification = 2;
Chris Lattner65207852003-01-23 02:48:33 +0000430 do {
Chris Lattnerf9aaae02005-08-02 02:16:17 +0000431 if (BugpointIsInterrupted) break;
Chris Lattner65207852003-01-23 02:48:33 +0000432 --Simplification;
433 std::cout << "\n*** Attempting to reduce testcase by deleting instruc"
Misha Brukmaneed80e22004-07-23 01:30:49 +0000434 << "tions: Simplification Level #" << Simplification << '\n';
Chris Lattner65207852003-01-23 02:48:33 +0000435
Misha Brukman5560c9d2003-08-18 14:43:39 +0000436 // Now that we have deleted the functions that are unnecessary for the
437 // program, try to remove instructions that are not necessary to cause the
Chris Lattner65207852003-01-23 02:48:33 +0000438 // crash. To do this, we loop through all of the instructions in the
439 // remaining functions, deleting them (replacing any values produced with
440 // nulls), and then running ADCE and SimplifyCFG. If the transformed input
441 // still triggers failure, keep deleting until we cannot trigger failure
442 // anymore.
443 //
Chris Lattnerf66d9062004-02-18 23:59:11 +0000444 unsigned InstructionsToSkipBeforeDeleting = 0;
Chris Lattner65207852003-01-23 02:48:33 +0000445 TryAgain:
Misha Brukman3da94ae2005-04-22 00:00:37 +0000446
Chris Lattner65207852003-01-23 02:48:33 +0000447 // Loop over all of the (non-terminator) instructions remaining in the
448 // function, attempting to delete them.
Chris Lattnerf66d9062004-02-18 23:59:11 +0000449 unsigned CurInstructionNum = 0;
Chris Lattner8b189272004-02-18 23:26:28 +0000450 for (Module::const_iterator FI = BD.getProgram()->begin(),
451 E = BD.getProgram()->end(); FI != E; ++FI)
Reid Spencer5cbf9852007-01-30 20:08:39 +0000452 if (!FI->isDeclaration())
Chris Lattner8b189272004-02-18 23:26:28 +0000453 for (Function::const_iterator BI = FI->begin(), E = FI->end(); BI != E;
454 ++BI)
455 for (BasicBlock::const_iterator I = BI->begin(), E = --BI->end();
Chris Lattnerf66d9062004-02-18 23:59:11 +0000456 I != E; ++I, ++CurInstructionNum)
457 if (InstructionsToSkipBeforeDeleting) {
458 --InstructionsToSkipBeforeDeleting;
459 } else {
Chris Lattnerf9aaae02005-08-02 02:16:17 +0000460 if (BugpointIsInterrupted) goto ExitLoops;
461
Matthijs Kooijmanbcbd9c42008-07-29 08:55:30 +0000462 std::cout << "Checking instruction: " << *I;
Chris Lattnerf66d9062004-02-18 23:59:11 +0000463 Module *M = BD.deleteInstructionFromProgram(I, Simplification);
Misha Brukman3da94ae2005-04-22 00:00:37 +0000464
Chris Lattnerf66d9062004-02-18 23:59:11 +0000465 // Find out if the pass still crashes on this pass...
466 if (TestFn(BD, M)) {
467 // Yup, it does, we delete the old module, and continue trying
468 // to reduce the testcase...
469 BD.setNewProgram(M);
Chris Lattnerf66d9062004-02-18 23:59:11 +0000470 InstructionsToSkipBeforeDeleting = CurInstructionNum;
471 goto TryAgain; // I wish I had a multi-level break here!
472 }
Misha Brukman3da94ae2005-04-22 00:00:37 +0000473
Chris Lattnerf66d9062004-02-18 23:59:11 +0000474 // This pass didn't crash without this instruction, try the next
475 // one.
476 delete M;
Chris Lattner65207852003-01-23 02:48:33 +0000477 }
Chris Lattnerf66d9062004-02-18 23:59:11 +0000478
479 if (InstructionsToSkipBeforeDeleting) {
480 InstructionsToSkipBeforeDeleting = 0;
481 goto TryAgain;
482 }
Misha Brukman3da94ae2005-04-22 00:00:37 +0000483
Chris Lattner65207852003-01-23 02:48:33 +0000484 } while (Simplification);
Chris Lattnerf9aaae02005-08-02 02:16:17 +0000485ExitLoops:
Chris Lattnerba386d92003-02-28 16:13:20 +0000486
487 // Try to clean up the testcase by running funcresolve and globaldce...
Chris Lattnerf9aaae02005-08-02 02:16:17 +0000488 if (!BugpointIsInterrupted) {
489 std::cout << "\n*** Attempting to perform final cleanups: ";
490 Module *M = CloneModule(BD.getProgram());
491 M = BD.performFinalCleanups(M, true);
Misha Brukman3da94ae2005-04-22 00:00:37 +0000492
Chris Lattnerf9aaae02005-08-02 02:16:17 +0000493 // Find out if the pass still crashes on the cleaned up program...
494 if (TestFn(BD, M)) {
495 BD.setNewProgram(M); // Yup, it does, keep the reduced version...
496 } else {
497 delete M;
498 }
Chris Lattnerba386d92003-02-28 16:13:20 +0000499 }
500
Gabor Greif8ff70c22007-07-04 21:55:50 +0000501 BD.EmitProgressBitcode("reduced-simplified");
Chris Lattnerba386d92003-02-28 16:13:20 +0000502
Misha Brukman3da94ae2005-04-22 00:00:37 +0000503 return false;
Chris Lattnerafade922002-11-20 22:28:10 +0000504}
Brian Gaeked0fde302003-11-11 22:41:34 +0000505
Chris Lattner8b189272004-02-18 23:26:28 +0000506static bool TestForOptimizerCrash(BugDriver &BD, Module *M) {
507 return BD.runPasses(M);
508}
Chris Lattner02526262004-02-18 21:02:04 +0000509
Chris Lattner8b189272004-02-18 23:26:28 +0000510/// debugOptimizerCrash - This method is called when some pass crashes on input.
511/// It attempts to prune down the testcase to something reasonable, and figure
512/// out exactly which pass is crashing.
513///
Patrick Jenkins6a3f31c2006-08-15 16:40:49 +0000514bool BugDriver::debugOptimizerCrash(const std::string &ID) {
Chris Lattner8b189272004-02-18 23:26:28 +0000515 std::cout << "\n*** Debugging optimizer crash!\n";
516
517 // Reduce the list of passes which causes the optimizer to crash...
Chris Lattnerf9aaae02005-08-02 02:16:17 +0000518 if (!BugpointIsInterrupted)
519 ReducePassList(*this).reduceList(PassesToRun);
Chris Lattner8b189272004-02-18 23:26:28 +0000520
521 std::cout << "\n*** Found crashing pass"
522 << (PassesToRun.size() == 1 ? ": " : "es: ")
Misha Brukmaneed80e22004-07-23 01:30:49 +0000523 << getPassesString(PassesToRun) << '\n';
Chris Lattner8b189272004-02-18 23:26:28 +0000524
Gabor Greif8ff70c22007-07-04 21:55:50 +0000525 EmitProgressBitcode(ID);
Chris Lattner8b189272004-02-18 23:26:28 +0000526
527 return DebugACrash(*this, TestForOptimizerCrash);
528}
529
530static bool TestForCodeGenCrash(BugDriver &BD, Module *M) {
531 try {
Chris Lattner8b189272004-02-18 23:26:28 +0000532 BD.compileProgram(M);
Misha Brukmaneed80e22004-07-23 01:30:49 +0000533 std::cerr << '\n';
Chris Lattner8b189272004-02-18 23:26:28 +0000534 return false;
Jeff Cohen83881952005-01-22 16:30:58 +0000535 } catch (ToolExecutionError &) {
Chris Lattner8b189272004-02-18 23:26:28 +0000536 std::cerr << "<crash>\n";
537 return true; // Tool is still crashing.
538 }
539}
Chris Lattner02526262004-02-18 21:02:04 +0000540
541/// debugCodeGeneratorCrash - This method is called when the code generator
542/// crashes on an input. It attempts to reduce the input as much as possible
543/// while still causing the code generator to crash.
544bool BugDriver::debugCodeGeneratorCrash() {
Chris Lattner06905db2004-02-18 21:24:48 +0000545 std::cerr << "*** Debugging code generator crash!\n";
Chris Lattner02526262004-02-18 21:02:04 +0000546
Chris Lattner8b189272004-02-18 23:26:28 +0000547 return DebugACrash(*this, TestForCodeGenCrash);
Chris Lattner02526262004-02-18 21:02:04 +0000548}