blob: 27e99b994ba090888c2f066bb826f3eb79f2797d [file] [log] [blame]
Chris Lattnerafade922002-11-20 22:28:10 +00001//===- CrashDebugger.cpp - Debug compilation crashes ----------------------===//
John Criswell7c0e0222003-10-20 17:47:21 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
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 Lattneraae33f92003-04-24 22:24:58 +000015#include "ListReducer.h"
Chris Lattner286921e2003-04-24 23:51:38 +000016#include "llvm/Constant.h"
17#include "llvm/iTerminators.h"
Misha Brukmane49603d2003-08-07 21:19:30 +000018#include "llvm/Module.h"
19#include "llvm/Pass.h"
20#include "llvm/PassManager.h"
Chris Lattner286921e2003-04-24 23:51:38 +000021#include "llvm/SymbolTable.h"
Misha Brukmane49603d2003-08-07 21:19:30 +000022#include "llvm/Type.h"
Chris Lattner286921e2003-04-24 23:51:38 +000023#include "llvm/Analysis/Verifier.h"
Misha Brukmane49603d2003-08-07 21:19:30 +000024#include "llvm/Bytecode/Writer.h"
25#include "llvm/Support/CFG.h"
Chris Lattner286921e2003-04-24 23:51:38 +000026#include "llvm/Transforms/Scalar.h"
Chris Lattneraae33f92003-04-24 22:24:58 +000027#include "llvm/Transforms/Utils/Cloning.h"
Misha Brukman3d9cafa2003-08-07 21:42:28 +000028#include "Support/FileUtilities.h"
Chris Lattnerafade922002-11-20 22:28:10 +000029#include <fstream>
Chris Lattneraae33f92003-04-24 22:24:58 +000030#include <set>
Chris Lattnerafade922002-11-20 22:28:10 +000031
Chris Lattner640f22e2003-04-24 17:02:17 +000032class DebugCrashes : public ListReducer<const PassInfo*> {
33 BugDriver &BD;
34public:
35 DebugCrashes(BugDriver &bd) : BD(bd) {}
36
37 // doTest - Return true iff running the "removed" passes succeeds, and running
38 // the "Kept" passes fail when run on the output of the "removed" passes. If
39 // we return true, we update the current module of bugpoint.
40 //
Chris Lattneraae33f92003-04-24 22:24:58 +000041 virtual TestResult doTest(std::vector<const PassInfo*> &Removed,
42 std::vector<const PassInfo*> &Kept);
Chris Lattner640f22e2003-04-24 17:02:17 +000043};
Chris Lattneraae33f92003-04-24 22:24:58 +000044
45DebugCrashes::TestResult
46DebugCrashes::doTest(std::vector<const PassInfo*> &Prefix,
47 std::vector<const PassInfo*> &Suffix) {
48 std::string PrefixOutput;
Chris Lattnerb417c792003-06-02 04:54:29 +000049 Module *OrigProgram = 0;
Chris Lattneraae33f92003-04-24 22:24:58 +000050 if (!Prefix.empty()) {
51 std::cout << "Checking to see if these passes crash: "
52 << getPassesString(Prefix) << ": ";
53 if (BD.runPasses(Prefix, PrefixOutput))
54 return KeepPrefix;
Chris Lattnerb417c792003-06-02 04:54:29 +000055
56 OrigProgram = BD.Program;
57
58 BD.Program = BD.ParseInputFile(PrefixOutput);
59 if (BD.Program == 0) {
60 std::cerr << BD.getToolName() << ": Error reading bytecode file '"
61 << PrefixOutput << "'!\n";
62 exit(1);
63 }
64 removeFile(PrefixOutput);
Chris Lattneraae33f92003-04-24 22:24:58 +000065 }
66
67 std::cout << "Checking to see if these passes crash: "
68 << getPassesString(Suffix) << ": ";
Chris Lattnerb417c792003-06-02 04:54:29 +000069
Chris Lattneraae33f92003-04-24 22:24:58 +000070 if (BD.runPasses(Suffix)) {
71 delete OrigProgram; // The suffix crashes alone...
72 return KeepSuffix;
73 }
74
75 // Nothing failed, restore state...
Chris Lattnerb417c792003-06-02 04:54:29 +000076 if (OrigProgram) {
77 delete BD.Program;
78 BD.Program = OrigProgram;
79 }
Chris Lattneraae33f92003-04-24 22:24:58 +000080 return NoFailure;
81}
82
83class ReduceCrashingFunctions : public ListReducer<Function*> {
84 BugDriver &BD;
85public:
86 ReduceCrashingFunctions(BugDriver &bd) : BD(bd) {}
87
88 virtual TestResult doTest(std::vector<Function*> &Prefix,
89 std::vector<Function*> &Kept) {
Misha Brukmana493ae32003-08-05 15:26:21 +000090 if (!Kept.empty() && TestFuncs(Kept))
Chris Lattneraae33f92003-04-24 22:24:58 +000091 return KeepSuffix;
92 if (!Prefix.empty() && TestFuncs(Prefix))
93 return KeepPrefix;
94 return NoFailure;
95 }
96
97 bool TestFuncs(std::vector<Function*> &Prefix);
98};
99
100bool ReduceCrashingFunctions::TestFuncs(std::vector<Function*> &Funcs) {
Misha Brukmancf00c4a2003-10-10 17:57:28 +0000101 // Clone the program to try hacking it apart...
Chris Lattneraae33f92003-04-24 22:24:58 +0000102 Module *M = CloneModule(BD.Program);
103
104 // Convert list to set for fast lookup...
105 std::set<Function*> Functions;
106 for (unsigned i = 0, e = Funcs.size(); i != e; ++i) {
107 Function *CMF = M->getFunction(Funcs[i]->getName(),
108 Funcs[i]->getFunctionType());
109 assert(CMF && "Function not in module?!");
Chris Lattnerf607b792003-04-24 22:54:06 +0000110 Functions.insert(CMF);
Chris Lattneraae33f92003-04-24 22:24:58 +0000111 }
112
113 std::cout << "Checking for crash with only these functions:";
Chris Lattner73b96bd2003-10-27 04:44:59 +0000114 unsigned NumPrint = Funcs.size();
115 if (NumPrint > 10) NumPrint = 10;
116 for (unsigned i = 0; i != NumPrint; ++i)
Chris Lattneraae33f92003-04-24 22:24:58 +0000117 std::cout << " " << Funcs[i]->getName();
Chris Lattner73b96bd2003-10-27 04:44:59 +0000118 if (NumPrint < Funcs.size())
119 std::cout << "... <" << Funcs.size() << " total>";
Chris Lattneraae33f92003-04-24 22:24:58 +0000120 std::cout << ": ";
121
122 // Loop over and delete any functions which we aren't supposed to be playing
123 // with...
124 for (Module::iterator I = M->begin(), E = M->end(); I != E; ++I)
Chris Lattnerf607b792003-04-24 22:54:06 +0000125 if (!I->isExternal() && !Functions.count(I))
Chris Lattneraae33f92003-04-24 22:24:58 +0000126 DeleteFunctionBody(I);
127
128 // Try running the hacked up program...
129 std::swap(BD.Program, M);
130 if (BD.runPasses(BD.PassesToRun)) {
131 delete M; // It crashed, keep the trimmed version...
132
133 // Make sure to use function pointers that point into the now-current
134 // module.
135 Funcs.assign(Functions.begin(), Functions.end());
136 return true;
137 }
138 delete BD.Program; // It didn't crash, revert...
139 BD.Program = M;
140 return false;
141}
142
Chris Lattner640f22e2003-04-24 17:02:17 +0000143
Chris Lattner286921e2003-04-24 23:51:38 +0000144/// ReduceCrashingBlocks reducer - This works by setting the terminators of all
145/// terminators except the specified basic blocks to a 'ret' instruction, then
146/// running the simplify-cfg pass. This has the effect of chopping up the CFG
147/// really fast which can reduce large functions quickly.
148///
149class ReduceCrashingBlocks : public ListReducer<BasicBlock*> {
150 BugDriver &BD;
151public:
152 ReduceCrashingBlocks(BugDriver &bd) : BD(bd) {}
153
154 virtual TestResult doTest(std::vector<BasicBlock*> &Prefix,
155 std::vector<BasicBlock*> &Kept) {
John Criswell5cfff252003-08-04 18:24:31 +0000156 if (!Kept.empty() && TestBlocks(Kept))
Chris Lattner286921e2003-04-24 23:51:38 +0000157 return KeepSuffix;
158 if (!Prefix.empty() && TestBlocks(Prefix))
159 return KeepPrefix;
160 return NoFailure;
161 }
162
163 bool TestBlocks(std::vector<BasicBlock*> &Prefix);
164};
165
166bool ReduceCrashingBlocks::TestBlocks(std::vector<BasicBlock*> &BBs) {
Misha Brukmancf00c4a2003-10-10 17:57:28 +0000167 // Clone the program to try hacking it apart...
Chris Lattner286921e2003-04-24 23:51:38 +0000168 Module *M = CloneModule(BD.Program);
169
170 // Convert list to set for fast lookup...
171 std::set<BasicBlock*> Blocks;
172 for (unsigned i = 0, e = BBs.size(); i != e; ++i) {
173 // Convert the basic block from the original module to the new module...
174 Function *F = BBs[i]->getParent();
175 Function *CMF = M->getFunction(F->getName(), F->getFunctionType());
176 assert(CMF && "Function not in module?!");
177
178 // Get the mapped basic block...
179 Function::iterator CBI = CMF->begin();
180 std::advance(CBI, std::distance(F->begin(), Function::iterator(BBs[i])));
181 Blocks.insert(CBI);
182 }
183
184 std::cout << "Checking for crash with only these blocks:";
Chris Lattner73b96bd2003-10-27 04:44:59 +0000185 unsigned NumPrint = Blocks.size();
186 if (NumPrint > 10) NumPrint = 10;
187 for (unsigned i = 0, e = NumPrint; i != e; ++i)
Chris Lattner286921e2003-04-24 23:51:38 +0000188 std::cout << " " << BBs[i]->getName();
Chris Lattner73b96bd2003-10-27 04:44:59 +0000189 if (NumPrint < Blocks.size())
190 std::cout << "... <" << Blocks.size() << " total>";
Chris Lattner286921e2003-04-24 23:51:38 +0000191 std::cout << ": ";
192
193 // Loop over and delete any hack up any blocks that are not listed...
194 for (Module::iterator I = M->begin(), E = M->end(); I != E; ++I)
195 for (Function::iterator BB = I->begin(), E = I->end(); BB != E; ++BB)
196 if (!Blocks.count(BB) && !isa<ReturnInst>(BB->getTerminator())) {
197 // Loop over all of the successors of this block, deleting any PHI nodes
198 // that might include it.
199 for (succ_iterator SI = succ_begin(BB), E = succ_end(BB); SI != E; ++SI)
200 (*SI)->removePredecessor(BB);
201
202 // Delete the old terminator instruction...
203 BB->getInstList().pop_back();
204
205 // Add a new return instruction of the appropriate type...
206 const Type *RetTy = BB->getParent()->getReturnType();
207 ReturnInst *RI = new ReturnInst(RetTy == Type::VoidTy ? 0 :
208 Constant::getNullValue(RetTy));
209 BB->getInstList().push_back(RI);
210 }
211
212 // The CFG Simplifier pass may delete one of the basic blocks we are
213 // interested in. If it does we need to take the block out of the list. Make
214 // a "persistent mapping" by turning basic blocks into <function, name> pairs.
215 // This won't work well if blocks are unnamed, but that is just the risk we
216 // have to take.
217 std::vector<std::pair<Function*, std::string> > BlockInfo;
218
219 for (std::set<BasicBlock*>::iterator I = Blocks.begin(), E = Blocks.end();
220 I != E; ++I)
221 BlockInfo.push_back(std::make_pair((*I)->getParent(), (*I)->getName()));
222
223 // Now run the CFG simplify pass on the function...
224 PassManager Passes;
225 Passes.add(createCFGSimplificationPass());
226 Passes.add(createVerifierPass());
227 Passes.run(*M);
228
229 // Try running on the hacked up program...
230 std::swap(BD.Program, M);
231 if (BD.runPasses(BD.PassesToRun)) {
232 delete M; // It crashed, keep the trimmed version...
233
234 // Make sure to use basic block pointers that point into the now-current
235 // module, and that they don't include any deleted blocks.
236 BBs.clear();
237 for (unsigned i = 0, e = BlockInfo.size(); i != e; ++i) {
238 SymbolTable &ST = BlockInfo[i].first->getSymbolTable();
239 SymbolTable::iterator I = ST.find(Type::LabelTy);
240 if (I != ST.end() && I->second.count(BlockInfo[i].second))
241 BBs.push_back(cast<BasicBlock>(I->second[BlockInfo[i].second]));
242 }
243 return true;
244 }
245 delete BD.Program; // It didn't crash, revert...
246 BD.Program = M;
247 return false;
248}
249
Chris Lattnerafade922002-11-20 22:28:10 +0000250/// debugCrash - This method is called when some pass crashes on input. It
251/// attempts to prune down the testcase to something reasonable, and figure
252/// out exactly which pass is crashing.
253///
254bool BugDriver::debugCrash() {
Chris Lattneraae33f92003-04-24 22:24:58 +0000255 bool AnyReduction = false;
Chris Lattnerafade922002-11-20 22:28:10 +0000256 std::cout << "\n*** Debugging optimizer crash!\n";
257
Chris Lattner640f22e2003-04-24 17:02:17 +0000258 // Reduce the list of passes which causes the optimizer to crash...
Chris Lattneraae33f92003-04-24 22:24:58 +0000259 unsigned OldSize = PassesToRun.size();
Chris Lattner640f22e2003-04-24 17:02:17 +0000260 DebugCrashes(*this).reduceList(PassesToRun);
Chris Lattner640f22e2003-04-24 17:02:17 +0000261
Chris Lattneraae33f92003-04-24 22:24:58 +0000262 std::cout << "\n*** Found crashing pass"
263 << (PassesToRun.size() == 1 ? ": " : "es: ")
264 << getPassesString(PassesToRun) << "\n";
Chris Lattnerafade922002-11-20 22:28:10 +0000265
Chris Lattner640f22e2003-04-24 17:02:17 +0000266 EmitProgressBytecode("passinput");
Chris Lattner5f73e382003-04-25 00:53:05 +0000267
268 // See if we can get away with nuking all of the global variable initializers
269 // in the program...
270 if (Program->gbegin() != Program->gend()) {
271 Module *M = CloneModule(Program);
272 bool DeletedInit = false;
273 for (Module::giterator I = M->gbegin(), E = M->gend(); I != E; ++I)
274 if (I->hasInitializer()) {
275 I->setInitializer(0);
276 I->setLinkage(GlobalValue::ExternalLinkage);
277 DeletedInit = true;
278 }
279
280 if (!DeletedInit) {
281 delete M; // No change made...
282 } else {
283 // See if the program still causes a crash...
284 std::cout << "\nChecking to see if we can delete global inits: ";
285 std::swap(Program, M);
286 if (runPasses(PassesToRun)) { // Still crashes?
287 AnyReduction = true;
288 delete M;
289 std::cout << "\n*** Able to remove all global initializers!\n";
290 } else { // No longer crashes?
291 delete Program; // Restore program.
292 Program = M;
293 std::cout << " - Removing all global inits hides problem!\n";
294 }
295 }
296 }
Chris Lattneraae33f92003-04-24 22:24:58 +0000297
298 // Now try to reduce the number of functions in the module to something small.
299 std::vector<Function*> Functions;
300 for (Module::iterator I = Program->begin(), E = Program->end(); I != E; ++I)
301 if (!I->isExternal())
302 Functions.push_back(I);
Chris Lattnerafade922002-11-20 22:28:10 +0000303
Chris Lattneraae33f92003-04-24 22:24:58 +0000304 if (Functions.size() > 1) {
305 std::cout << "\n*** Attempting to reduce the number of functions "
306 "in the testcase\n";
Chris Lattnerafade922002-11-20 22:28:10 +0000307
Chris Lattneraae33f92003-04-24 22:24:58 +0000308 OldSize = Functions.size();
309 ReduceCrashingFunctions(*this).reduceList(Functions);
Chris Lattnerafade922002-11-20 22:28:10 +0000310
Chris Lattneraae33f92003-04-24 22:24:58 +0000311 if (Functions.size() < OldSize) {
312 EmitProgressBytecode("reduced-function");
313 AnyReduction = true;
Chris Lattner65207852003-01-23 02:48:33 +0000314 }
Chris Lattnerafade922002-11-20 22:28:10 +0000315 }
316
Chris Lattner286921e2003-04-24 23:51:38 +0000317 // Attempt to delete entire basic blocks at a time to speed up
318 // convergence... this actually works by setting the terminator of the blocks
319 // to a return instruction then running simplifycfg, which can potentially
320 // shrinks the code dramatically quickly
321 //
Chris Lattner47ae4a12003-08-05 15:51:05 +0000322 if (!DisableSimplifyCFG) {
323 std::vector<BasicBlock*> Blocks;
324 for (Module::iterator I = Program->begin(), E = Program->end(); I != E; ++I)
325 for (Function::iterator FI = I->begin(), E = I->end(); FI != E; ++FI)
326 Blocks.push_back(FI);
327 ReduceCrashingBlocks(*this).reduceList(Blocks);
328 }
Chris Lattner218e26e2002-12-23 23:49:59 +0000329
Chris Lattneraae33f92003-04-24 22:24:58 +0000330 // FIXME: This should use the list reducer to converge faster by deleting
331 // larger chunks of instructions at a time!
Chris Lattner65207852003-01-23 02:48:33 +0000332 unsigned Simplification = 4;
333 do {
334 --Simplification;
335 std::cout << "\n*** Attempting to reduce testcase by deleting instruc"
336 << "tions: Simplification Level #" << Simplification << "\n";
337
Misha Brukman5560c9d2003-08-18 14:43:39 +0000338 // Now that we have deleted the functions that are unnecessary for the
339 // program, try to remove instructions that are not necessary to cause the
Chris Lattner65207852003-01-23 02:48:33 +0000340 // crash. To do this, we loop through all of the instructions in the
341 // remaining functions, deleting them (replacing any values produced with
342 // nulls), and then running ADCE and SimplifyCFG. If the transformed input
343 // still triggers failure, keep deleting until we cannot trigger failure
344 // anymore.
345 //
346 TryAgain:
347
348 // Loop over all of the (non-terminator) instructions remaining in the
349 // function, attempting to delete them.
350 for (Module::iterator FI = Program->begin(), E = Program->end();
351 FI != E; ++FI)
352 if (!FI->isExternal()) {
353 for (Function::iterator BI = FI->begin(), E = FI->end(); BI != E; ++BI)
354 for (BasicBlock::iterator I = BI->begin(), E = --BI->end();
355 I != E; ++I) {
356 Module *M = deleteInstructionFromProgram(I, Simplification);
357
358 // Make the function the current program...
359 std::swap(Program, M);
360
361 // Find out if the pass still crashes on this pass...
362 std::cout << "Checking instruction '" << I->getName() << "': ";
Chris Lattneraae33f92003-04-24 22:24:58 +0000363 if (runPasses(PassesToRun)) {
Chris Lattner65207852003-01-23 02:48:33 +0000364 // Yup, it does, we delete the old module, and continue trying to
365 // reduce the testcase...
Chris Lattner65207852003-01-23 02:48:33 +0000366 delete M;
Chris Lattnerf607b792003-04-24 22:54:06 +0000367 AnyReduction = true;
Chris Lattner65207852003-01-23 02:48:33 +0000368 goto TryAgain; // I wish I had a multi-level break here!
369 }
370
371 // This pass didn't crash without this instruction, try the next
372 // one.
373 delete Program;
374 Program = M;
375 }
376 }
377 } while (Simplification);
Chris Lattnerba386d92003-02-28 16:13:20 +0000378
379 // Try to clean up the testcase by running funcresolve and globaldce...
Chris Lattner898e0e42003-06-25 04:13:52 +0000380 std::cout << "\n*** Attempting to perform final cleanups: ";
Chris Lattner417477d2003-11-05 21:15:19 +0000381 Module *M = CloneModule(Program);
382 performFinalCleanups(M, true);
Chris Lattner898e0e42003-06-25 04:13:52 +0000383 std::swap(Program, M);
Chris Lattnerba386d92003-02-28 16:13:20 +0000384
Chris Lattner898e0e42003-06-25 04:13:52 +0000385 // Find out if the pass still crashes on the cleaned up program...
386 if (runPasses(PassesToRun)) {
387 // Yup, it does, keep the reduced version...
388 delete M;
389 AnyReduction = true;
390 } else {
391 delete Program; // Otherwise, restore the original module...
392 Program = M;
Chris Lattnerba386d92003-02-28 16:13:20 +0000393 }
394
Chris Lattnerf607b792003-04-24 22:54:06 +0000395 if (AnyReduction)
Chris Lattner640f22e2003-04-24 17:02:17 +0000396 EmitProgressBytecode("reduced-simplified");
Chris Lattnerba386d92003-02-28 16:13:20 +0000397
Chris Lattnerafade922002-11-20 22:28:10 +0000398 return false;
399}