blob: 60d4123c184bc3a9dcbb37e625bd084a2d0b7eed [file] [log] [blame]
Chris Lattner73a6bdd2002-11-20 22:28:10 +00001//===- CrashDebugger.cpp - Debug compilation crashes ----------------------===//
Misha Brukman650ba8e2005-04-22 00:00:37 +00002//
John Criswell09344dc2003-10-20 17:47:21 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner345353d2007-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 Brukman650ba8e2005-04-22 00:00:37 +00007//
John Criswell09344dc2003-10-20 17:47:21 +00008//===----------------------------------------------------------------------===//
Chris Lattner73a6bdd2002-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 Lattner1d080f22003-04-24 22:24:58 +000015#include "ListReducer.h"
Chandler Carruth4d88a1c2012-12-04 10:44:52 +000016#include "ToolRunner.h"
17#include "llvm/ADT/SmallPtrSet.h"
Chandler Carruth1305dc32014-03-04 11:45:46 +000018#include "llvm/IR/CFG.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000019#include "llvm/IR/Constants.h"
20#include "llvm/IR/DerivedTypes.h"
21#include "llvm/IR/Instructions.h"
22#include "llvm/IR/Module.h"
23#include "llvm/IR/ValueSymbolTable.h"
Chandler Carruth5ad5f152014-01-13 09:26:24 +000024#include "llvm/IR/Verifier.h"
Misha Brukman0c2305b2003-08-07 21:19:30 +000025#include "llvm/Pass.h"
26#include "llvm/PassManager.h"
Chandler Carruth4d88a1c2012-12-04 10:44:52 +000027#include "llvm/Support/CommandLine.h"
28#include "llvm/Support/FileUtilities.h"
Chris Lattnerf32939b2003-04-24 23:51:38 +000029#include "llvm/Transforms/Scalar.h"
Chris Lattner1d080f22003-04-24 22:24:58 +000030#include "llvm/Transforms/Utils/Cloning.h"
Chris Lattner1d080f22003-04-24 22:24:58 +000031#include <set>
Chris Lattner2f1aa112004-01-14 03:38:37 +000032using namespace llvm;
Chris Lattner73a6bdd2002-11-20 22:28:10 +000033
Andrew Lenharthef9aa122006-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 Edwin5bd3f7b2009-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 Lenharthef9aa122006-03-05 22:21:36 +000043}
44
Brian Gaeke960707c2003-11-11 22:41:34 +000045namespace llvm {
Rafael Espindola33e81a82010-08-08 03:55:08 +000046 class ReducePassList : public ListReducer<std::string> {
Chris Lattner2f1aa112004-01-14 03:38:37 +000047 BugDriver &BD;
48 public:
Chris Lattner327019b2004-02-18 21:24:48 +000049 ReducePassList(BugDriver &bd) : BD(bd) {}
Misha Brukman650ba8e2005-04-22 00:00:37 +000050
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +000051 // doTest - Return true iff running the "removed" passes succeeds, and
Chris Lattner2f1aa112004-01-14 03:38:37 +000052 // 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 //
Craig Toppere56917c2014-03-08 08:27:28 +000055 TestResult doTest(std::vector<std::string> &Removed,
56 std::vector<std::string> &Kept,
57 std::string &Error) override;
Chris Lattner2f1aa112004-01-14 03:38:37 +000058 };
59}
Chris Lattner1d080f22003-04-24 22:24:58 +000060
Chris Lattner327019b2004-02-18 21:24:48 +000061ReducePassList::TestResult
Rafael Espindola33e81a82010-08-08 03:55:08 +000062ReducePassList::doTest(std::vector<std::string> &Prefix,
63 std::vector<std::string> &Suffix,
Nick Lewycky6ba630b2010-04-12 05:08:25 +000064 std::string &Error) {
Rafael Espindolabb876652013-06-17 19:33:18 +000065 std::string PrefixOutput;
Craig Toppere6cb63e2014-04-25 04:24:47 +000066 Module *OrigProgram = nullptr;
Chris Lattner1d080f22003-04-24 22:24:58 +000067 if (!Prefix.empty()) {
Dan Gohmanee051522009-07-16 15:30:09 +000068 outs() << "Checking to see if these passes crash: "
69 << getPassesString(Prefix) << ": ";
Rafael Espindolabb876652013-06-17 19:33:18 +000070 if (BD.runPasses(BD.getProgram(), Prefix, PrefixOutput))
Chris Lattner1d080f22003-04-24 22:24:58 +000071 return KeepPrefix;
Chris Lattnera9656312003-06-02 04:54:29 +000072
73 OrigProgram = BD.Program;
74
Rafael Espindolabb876652013-06-17 19:33:18 +000075 BD.Program = ParseInputFile(PrefixOutput, BD.getContext());
Craig Toppere6cb63e2014-04-25 04:24:47 +000076 if (BD.Program == nullptr) {
Dan Gohmand8db3762009-07-15 16:35:29 +000077 errs() << BD.getToolName() << ": Error reading bitcode file '"
Rafael Espindolabb876652013-06-17 19:33:18 +000078 << PrefixOutput << "'!\n";
Chris Lattnera9656312003-06-02 04:54:29 +000079 exit(1);
80 }
Rafael Espindolabb876652013-06-17 19:33:18 +000081 sys::fs::remove(PrefixOutput);
Chris Lattner1d080f22003-04-24 22:24:58 +000082 }
83
Dan Gohmanee051522009-07-16 15:30:09 +000084 outs() << "Checking to see if these passes crash: "
85 << getPassesString(Suffix) << ": ";
Misha Brukman650ba8e2005-04-22 00:00:37 +000086
Rafael Espindola37302ea2010-08-05 02:16:32 +000087 if (BD.runPasses(BD.getProgram(), Suffix)) {
Chris Lattner1d080f22003-04-24 22:24:58 +000088 delete OrigProgram; // The suffix crashes alone...
89 return KeepSuffix;
90 }
91
92 // Nothing failed, restore state...
Chris Lattnera9656312003-06-02 04:54:29 +000093 if (OrigProgram) {
94 delete BD.Program;
95 BD.Program = OrigProgram;
96 }
Chris Lattner1d080f22003-04-24 22:24:58 +000097 return NoFailure;
98}
99
Bill Wendling3f833432006-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;
Rafael Espindolad1c7ef42010-08-05 03:00:22 +0000107 bool (*TestFn)(const BugDriver &, Module *);
Bill Wendling3f833432006-10-25 18:36:14 +0000108 public:
109 ReduceCrashingGlobalVariables(BugDriver &bd,
Rafael Espindolad1c7ef42010-08-05 03:00:22 +0000110 bool (*testFn)(const BugDriver &, Module *))
Bill Wendling3f833432006-10-25 18:36:14 +0000111 : BD(bd), TestFn(testFn) {}
112
Craig Toppere56917c2014-03-08 08:27:28 +0000113 TestResult doTest(std::vector<GlobalVariable*> &Prefix,
114 std::vector<GlobalVariable*> &Kept,
115 std::string &Error) override {
Bill Wendling3f833432006-10-25 18:36:14 +0000116 if (!Kept.empty() && TestGlobalVariables(Kept))
117 return KeepSuffix;
Bill Wendling3f833432006-10-25 18:36:14 +0000118 if (!Prefix.empty() && TestGlobalVariables(Prefix))
119 return KeepPrefix;
Bill Wendling3f833432006-10-25 18:36:14 +0000120 return NoFailure;
121 }
122
Nick Lewycky6ba630b2010-04-12 05:08:25 +0000123 bool TestGlobalVariables(std::vector<GlobalVariable*> &GVs);
Bill Wendling3f833432006-10-25 18:36:14 +0000124 };
125}
126
127bool
128ReduceCrashingGlobalVariables::TestGlobalVariables(
Nick Lewycky6ba630b2010-04-12 05:08:25 +0000129 std::vector<GlobalVariable*> &GVs) {
Bill Wendling3f833432006-10-25 18:36:14 +0000130 // Clone the program to try hacking it apart...
Rafael Espindola229e38f2010-10-13 01:36:30 +0000131 ValueToValueMapTy VMap;
Devang Patel0dc3c2d2010-06-24 00:33:28 +0000132 Module *M = CloneModule(BD.getProgram(), VMap);
Bill Wendling3f833432006-10-25 18:36:14 +0000133
134 // Convert list to set for fast lookup...
135 std::set<GlobalVariable*> GVSet;
136
137 for (unsigned i = 0, e = GVs.size(); i != e; ++i) {
Devang Patel0dc3c2d2010-06-24 00:33:28 +0000138 GlobalVariable* CMGV = cast<GlobalVariable>(VMap[GVs[i]]);
Bill Wendling3f833432006-10-25 18:36:14 +0000139 assert(CMGV && "Global Variable not in module?!");
140 GVSet.insert(CMGV);
141 }
142
Dan Gohmanee051522009-07-16 15:30:09 +0000143 outs() << "Checking for crash with only these global variables: ";
Bill Wendling3f833432006-10-25 18:36:14 +0000144 PrintGlobalVariableList(GVs);
Dan Gohmanee051522009-07-16 15:30:09 +0000145 outs() << ": ";
Bill Wendling3f833432006-10-25 18:36:14 +0000146
147 // Loop over and delete any global variables which we aren't supposed to be
148 // playing with...
149 for (Module::global_iterator I = M->global_begin(), E = M->global_end();
150 I != E; ++I)
Nick Lewycky4099c7c2009-05-25 06:29:56 +0000151 if (I->hasInitializer() && !GVSet.count(I)) {
Craig Toppere6cb63e2014-04-25 04:24:47 +0000152 I->setInitializer(nullptr);
Bill Wendling3f833432006-10-25 18:36:14 +0000153 I->setLinkage(GlobalValue::ExternalLinkage);
154 }
155
156 // Try running the hacked up program...
157 if (TestFn(BD, M)) {
158 BD.setNewProgram(M); // It crashed, keep the trimmed version...
159
160 // Make sure to use global variable pointers that point into the now-current
161 // module.
162 GVs.assign(GVSet.begin(), GVSet.end());
163 return true;
164 }
165
166 delete M;
167 return false;
168}
169
David Blaikiea379b1812011-12-20 02:50:00 +0000170namespace {
Bill Wendling3f833432006-10-25 18:36:14 +0000171 /// ReduceCrashingFunctions reducer - This works by removing functions and
172 /// seeing if the program still crashes. If it does, then keep the newer,
173 /// smaller program.
174 ///
Chris Lattnerfd72bed2004-03-14 20:50:42 +0000175 class ReduceCrashingFunctions : public ListReducer<Function*> {
Chris Lattner2f1aa112004-01-14 03:38:37 +0000176 BugDriver &BD;
Rafael Espindolad1c7ef42010-08-05 03:00:22 +0000177 bool (*TestFn)(const BugDriver &, Module *);
Chris Lattner2f1aa112004-01-14 03:38:37 +0000178 public:
Chris Lattner8bda4c42004-02-18 23:26:28 +0000179 ReduceCrashingFunctions(BugDriver &bd,
Rafael Espindolad1c7ef42010-08-05 03:00:22 +0000180 bool (*testFn)(const BugDriver &, Module *))
Chris Lattner8bda4c42004-02-18 23:26:28 +0000181 : BD(bd), TestFn(testFn) {}
Misha Brukman650ba8e2005-04-22 00:00:37 +0000182
Craig Toppere56917c2014-03-08 08:27:28 +0000183 TestResult doTest(std::vector<Function*> &Prefix,
184 std::vector<Function*> &Kept,
185 std::string &Error) override {
Chris Lattner2f1aa112004-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 Brukman650ba8e2005-04-22 00:00:37 +0000192
Chris Lattnerfd72bed2004-03-14 20:50:42 +0000193 bool TestFuncs(std::vector<Function*> &Prefix);
Chris Lattner2f1aa112004-01-14 03:38:37 +0000194 };
195}
Chris Lattner1d080f22003-04-24 22:24:58 +0000196
Chris Lattnerfd72bed2004-03-14 20:50:42 +0000197bool ReduceCrashingFunctions::TestFuncs(std::vector<Function*> &Funcs) {
Dmitri Gribenko6e0520e2013-09-02 01:18:56 +0000198 // If main isn't present, claim there is no problem.
199 if (KeepMain && std::find(Funcs.begin(), Funcs.end(),
200 BD.getProgram()->getFunction("main")) ==
201 Funcs.end())
Andrew Lenharthef9aa122006-03-05 22:21:36 +0000202 return false;
203
Misha Brukman8b2bd4e2003-10-10 17:57:28 +0000204 // Clone the program to try hacking it apart...
Rafael Espindola229e38f2010-10-13 01:36:30 +0000205 ValueToValueMapTy VMap;
Devang Patel0dc3c2d2010-06-24 00:33:28 +0000206 Module *M = CloneModule(BD.getProgram(), VMap);
Misha Brukman650ba8e2005-04-22 00:00:37 +0000207
Chris Lattner1d080f22003-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) {
Devang Patel0dc3c2d2010-06-24 00:33:28 +0000211 Function *CMF = cast<Function>(VMap[Funcs[i]]);
Chris Lattner1d080f22003-04-24 22:24:58 +0000212 assert(CMF && "Function not in module?!");
Reid Spencer3aaaa0b2007-02-05 20:47:22 +0000213 assert(CMF->getFunctionType() == Funcs[i]->getFunctionType() && "wrong ty");
Dan Gohmanbcad7182009-03-06 02:16:23 +0000214 assert(CMF->getName() == Funcs[i]->getName() && "wrong name");
Chris Lattnerde39f2b2003-04-24 22:54:06 +0000215 Functions.insert(CMF);
Chris Lattner1d080f22003-04-24 22:24:58 +0000216 }
217
Dan Gohmanee051522009-07-16 15:30:09 +0000218 outs() << "Checking for crash with only these functions: ";
Chris Lattnerfd72bed2004-03-14 20:50:42 +0000219 PrintFunctionList(Funcs);
Dan Gohmanee051522009-07-16 15:30:09 +0000220 outs() << ": ";
Chris Lattner1d080f22003-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 Spencer5301e7c2007-01-30 20:08:39 +0000225 if (!I->isDeclaration() && !Functions.count(I))
Chris Lattner1d080f22003-04-24 22:24:58 +0000226 DeleteFunctionBody(I);
227
228 // Try running the hacked up program...
Chris Lattner8bda4c42004-02-18 23:26:28 +0000229 if (TestFn(BD, M)) {
Chris Lattner327019b2004-02-18 21:24:48 +0000230 BD.setNewProgram(M); // It crashed, keep the trimmed version...
Chris Lattner1d080f22003-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 Lattner327019b2004-02-18 21:24:48 +0000237 delete M;
Chris Lattner1d080f22003-04-24 22:24:58 +0000238 return false;
239}
240
Chris Lattner16a41312003-04-24 17:02:17 +0000241
Chris Lattner1942f982004-02-18 21:29:46 +0000242namespace {
Chris Lattner2f1aa112004-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 Lattner8bda4c42004-02-18 23:26:28 +0000248 class ReduceCrashingBlocks : public ListReducer<const BasicBlock*> {
Chris Lattner2f1aa112004-01-14 03:38:37 +0000249 BugDriver &BD;
Rafael Espindolad1c7ef42010-08-05 03:00:22 +0000250 bool (*TestFn)(const BugDriver &, Module *);
Chris Lattner2f1aa112004-01-14 03:38:37 +0000251 public:
Rafael Espindolad1c7ef42010-08-05 03:00:22 +0000252 ReduceCrashingBlocks(BugDriver &bd,
253 bool (*testFn)(const BugDriver &, Module *))
Chris Lattner8bda4c42004-02-18 23:26:28 +0000254 : BD(bd), TestFn(testFn) {}
Misha Brukman650ba8e2005-04-22 00:00:37 +0000255
Craig Toppere56917c2014-03-08 08:27:28 +0000256 TestResult doTest(std::vector<const BasicBlock*> &Prefix,
257 std::vector<const BasicBlock*> &Kept,
258 std::string &Error) override {
Chris Lattner2f1aa112004-01-14 03:38:37 +0000259 if (!Kept.empty() && TestBlocks(Kept))
260 return KeepSuffix;
261 if (!Prefix.empty() && TestBlocks(Prefix))
262 return KeepPrefix;
263 return NoFailure;
264 }
Misha Brukman650ba8e2005-04-22 00:00:37 +0000265
Chris Lattner8bda4c42004-02-18 23:26:28 +0000266 bool TestBlocks(std::vector<const BasicBlock*> &Prefix);
Chris Lattner2f1aa112004-01-14 03:38:37 +0000267 };
268}
Chris Lattnerf32939b2003-04-24 23:51:38 +0000269
Chris Lattner8bda4c42004-02-18 23:26:28 +0000270bool ReduceCrashingBlocks::TestBlocks(std::vector<const BasicBlock*> &BBs) {
Misha Brukman8b2bd4e2003-10-10 17:57:28 +0000271 // Clone the program to try hacking it apart...
Rafael Espindola229e38f2010-10-13 01:36:30 +0000272 ValueToValueMapTy VMap;
Devang Patel0dc3c2d2010-06-24 00:33:28 +0000273 Module *M = CloneModule(BD.getProgram(), VMap);
Misha Brukman650ba8e2005-04-22 00:00:37 +0000274
Chris Lattnerf32939b2003-04-24 23:51:38 +0000275 // Convert list to set for fast lookup...
Nick Lewyckyb294e312009-04-04 09:39:23 +0000276 SmallPtrSet<BasicBlock*, 8> Blocks;
277 for (unsigned i = 0, e = BBs.size(); i != e; ++i)
Devang Patel0dc3c2d2010-06-24 00:33:28 +0000278 Blocks.insert(cast<BasicBlock>(VMap[BBs[i]]));
Chris Lattnerf32939b2003-04-24 23:51:38 +0000279
Dan Gohmanee051522009-07-16 15:30:09 +0000280 outs() << "Checking for crash with only these blocks:";
Chris Lattner4f50ebd2003-10-27 04:44:59 +0000281 unsigned NumPrint = Blocks.size();
282 if (NumPrint > 10) NumPrint = 10;
283 for (unsigned i = 0, e = NumPrint; i != e; ++i)
Dan Gohmanee051522009-07-16 15:30:09 +0000284 outs() << " " << BBs[i]->getName();
Chris Lattner4f50ebd2003-10-27 04:44:59 +0000285 if (NumPrint < Blocks.size())
Dan Gohmanee051522009-07-16 15:30:09 +0000286 outs() << "... <" << Blocks.size() << " total>";
287 outs() << ": ";
Chris Lattnerf32939b2003-04-24 23:51:38 +0000288
289 // Loop over and delete any hack up any blocks that are not listed...
290 for (Module::iterator I = M->begin(), E = M->end(); I != E; ++I)
291 for (Function::iterator BB = I->begin(), E = I->end(); BB != E; ++BB)
Chris Lattner7b233af2003-11-22 02:10:38 +0000292 if (!Blocks.count(BB) && BB->getTerminator()->getNumSuccessors()) {
Chris Lattnerf32939b2003-04-24 23:51:38 +0000293 // Loop over all of the successors of this block, deleting any PHI nodes
294 // that might include it.
Duncan P. N. Exon Smith6c990152014-07-21 17:06:51 +0000295 for (succ_iterator SI = succ_begin(BB), E = succ_end(BB); SI != E; ++SI)
296 (*SI)->removePredecessor(BB);
Chris Lattnerf32939b2003-04-24 23:51:38 +0000297
Chris Lattner7855a5c2008-04-28 00:04:58 +0000298 TerminatorInst *BBTerm = BB->getTerminator();
299
Dan Gohman34a22492010-06-07 20:19:26 +0000300 if (!BB->getTerminator()->getType()->isVoidTy())
Owen Anderson5a1acd92009-07-31 20:28:14 +0000301 BBTerm->replaceAllUsesWith(Constant::getNullValue(BBTerm->getType()));
Chris Lattner7b233af2003-11-22 02:10:38 +0000302
Chris Lattner7855a5c2008-04-28 00:04:58 +0000303 // Replace the old terminator instruction.
Chris Lattnerf32939b2003-04-24 23:51:38 +0000304 BB->getInstList().pop_back();
Owen Anderson55f1c092009-08-13 21:58:54 +0000305 new UnreachableInst(BB->getContext(), BB);
Chris Lattnerf32939b2003-04-24 23:51:38 +0000306 }
307
308 // The CFG Simplifier pass may delete one of the basic blocks we are
309 // interested in. If it does we need to take the block out of the list. Make
310 // a "persistent mapping" by turning basic blocks into <function, name> pairs.
311 // This won't work well if blocks are unnamed, but that is just the risk we
312 // have to take.
Rafael Espindolad1e241a2010-08-10 15:46:11 +0000313 std::vector<std::pair<std::string, std::string> > BlockInfo;
Chris Lattnerf32939b2003-04-24 23:51:38 +0000314
Craig Topper46276792014-08-24 23:23:06 +0000315 for (BasicBlock *BB : Blocks)
316 BlockInfo.push_back(std::make_pair(BB->getParent()->getName(),
317 BB->getName()));
Chris Lattnerf32939b2003-04-24 23:51:38 +0000318
319 // Now run the CFG simplify pass on the function...
Rafael Espindolad1e241a2010-08-10 15:46:11 +0000320 std::vector<std::string> Passes;
321 Passes.push_back("simplifycfg");
322 Passes.push_back("verify");
323 Module *New = BD.runPassesOn(M, Passes);
324 delete M;
325 if (!New) {
326 errs() << "simplifycfg failed!\n";
327 exit(1);
328 }
329 M = New;
Chris Lattnerf32939b2003-04-24 23:51:38 +0000330
331 // Try running on the hacked up program...
Chris Lattner8bda4c42004-02-18 23:26:28 +0000332 if (TestFn(BD, M)) {
Chris Lattner327019b2004-02-18 21:24:48 +0000333 BD.setNewProgram(M); // It crashed, keep the trimmed version...
Chris Lattnerf32939b2003-04-24 23:51:38 +0000334
335 // Make sure to use basic block pointers that point into the now-current
336 // module, and that they don't include any deleted blocks.
337 BBs.clear();
Rafael Espindolad1e241a2010-08-10 15:46:11 +0000338 const ValueSymbolTable &GST = M->getValueSymbolTable();
Chris Lattnerf32939b2003-04-24 23:51:38 +0000339 for (unsigned i = 0, e = BlockInfo.size(); i != e; ++i) {
Rafael Espindolad1e241a2010-08-10 15:46:11 +0000340 Function *F = cast<Function>(GST.lookup(BlockInfo[i].first));
341 ValueSymbolTable &ST = F->getValueSymbolTable();
Reid Spencer3aaaa0b2007-02-05 20:47:22 +0000342 Value* V = ST.lookup(BlockInfo[i].second);
Owen Anderson55f1c092009-08-13 21:58:54 +0000343 if (V && V->getType() == Type::getLabelTy(V->getContext()))
Reid Spencer3aaaa0b2007-02-05 20:47:22 +0000344 BBs.push_back(cast<BasicBlock>(V));
Chris Lattnerf32939b2003-04-24 23:51:38 +0000345 }
346 return true;
347 }
Chris Lattner327019b2004-02-18 21:24:48 +0000348 delete M; // It didn't crash, try something else.
Chris Lattnerf32939b2003-04-24 23:51:38 +0000349 return false;
350}
351
Nick Lewycky6e090c92009-05-25 05:30:00 +0000352namespace {
353 /// ReduceCrashingInstructions reducer - This works by removing the specified
354 /// non-terminator instructions and replacing them with undef.
355 ///
356 class ReduceCrashingInstructions : public ListReducer<const Instruction*> {
357 BugDriver &BD;
Rafael Espindolad1c7ef42010-08-05 03:00:22 +0000358 bool (*TestFn)(const BugDriver &, Module *);
Nick Lewycky6e090c92009-05-25 05:30:00 +0000359 public:
Rafael Espindolad1c7ef42010-08-05 03:00:22 +0000360 ReduceCrashingInstructions(BugDriver &bd,
361 bool (*testFn)(const BugDriver &, Module *))
Nick Lewycky6e090c92009-05-25 05:30:00 +0000362 : BD(bd), TestFn(testFn) {}
363
Craig Toppere56917c2014-03-08 08:27:28 +0000364 TestResult doTest(std::vector<const Instruction*> &Prefix,
365 std::vector<const Instruction*> &Kept,
366 std::string &Error) override {
Nick Lewycky6e090c92009-05-25 05:30:00 +0000367 if (!Kept.empty() && TestInsts(Kept))
368 return KeepSuffix;
369 if (!Prefix.empty() && TestInsts(Prefix))
370 return KeepPrefix;
371 return NoFailure;
372 }
373
374 bool TestInsts(std::vector<const Instruction*> &Prefix);
375 };
376}
377
378bool ReduceCrashingInstructions::TestInsts(std::vector<const Instruction*>
379 &Insts) {
380 // Clone the program to try hacking it apart...
Rafael Espindola229e38f2010-10-13 01:36:30 +0000381 ValueToValueMapTy VMap;
Devang Patel0dc3c2d2010-06-24 00:33:28 +0000382 Module *M = CloneModule(BD.getProgram(), VMap);
Nick Lewycky6e090c92009-05-25 05:30:00 +0000383
384 // Convert list to set for fast lookup...
385 SmallPtrSet<Instruction*, 64> Instructions;
386 for (unsigned i = 0, e = Insts.size(); i != e; ++i) {
387 assert(!isa<TerminatorInst>(Insts[i]));
Devang Patel0dc3c2d2010-06-24 00:33:28 +0000388 Instructions.insert(cast<Instruction>(VMap[Insts[i]]));
Nick Lewycky6e090c92009-05-25 05:30:00 +0000389 }
390
Dan Gohmanee051522009-07-16 15:30:09 +0000391 outs() << "Checking for crash with only " << Instructions.size();
Nick Lewycky6e090c92009-05-25 05:30:00 +0000392 if (Instructions.size() == 1)
Dan Gohmanee051522009-07-16 15:30:09 +0000393 outs() << " instruction: ";
Nick Lewycky6e090c92009-05-25 05:30:00 +0000394 else
Dan Gohmanee051522009-07-16 15:30:09 +0000395 outs() << " instructions: ";
Nick Lewycky6e090c92009-05-25 05:30:00 +0000396
397 for (Module::iterator MI = M->begin(), ME = M->end(); MI != ME; ++MI)
398 for (Function::iterator FI = MI->begin(), FE = MI->end(); FI != FE; ++FI)
399 for (BasicBlock::iterator I = FI->begin(), E = FI->end(); I != E;) {
400 Instruction *Inst = I++;
Eli Friedmand4e02a52011-11-01 04:40:56 +0000401 if (!Instructions.count(Inst) && !isa<TerminatorInst>(Inst) &&
402 !isa<LandingPadInst>(Inst)) {
Dan Gohman34a22492010-06-07 20:19:26 +0000403 if (!Inst->getType()->isVoidTy())
Nick Lewycky6e090c92009-05-25 05:30:00 +0000404 Inst->replaceAllUsesWith(UndefValue::get(Inst->getType()));
405 Inst->eraseFromParent();
406 }
407 }
408
409 // Verify that this is still valid.
410 PassManager Passes;
411 Passes.add(createVerifierPass());
Duncan P. N. Exon Smith6ef5f282014-04-15 16:27:38 +0000412 Passes.add(createDebugInfoVerifierPass());
Nick Lewycky6e090c92009-05-25 05:30:00 +0000413 Passes.run(*M);
414
415 // Try running on the hacked up program...
416 if (TestFn(BD, M)) {
417 BD.setNewProgram(M); // It crashed, keep the trimmed version...
418
419 // Make sure to use instruction pointers that point into the now-current
420 // module, and that they don't include any deleted blocks.
421 Insts.clear();
Craig Topper46276792014-08-24 23:23:06 +0000422 for (Instruction *Inst : Instructions)
423 Insts.push_back(Inst);
Nick Lewycky6e090c92009-05-25 05:30:00 +0000424 return true;
425 }
426 delete M; // It didn't crash, try something else.
427 return false;
428}
429
Chris Lattner8bda4c42004-02-18 23:26:28 +0000430/// DebugACrash - Given a predicate that determines whether a component crashes
431/// on a program, try to destructively reduce the program while still keeping
432/// the predicate true.
Rafael Espindolad1c7ef42010-08-05 03:00:22 +0000433static bool DebugACrash(BugDriver &BD,
434 bool (*TestFn)(const BugDriver &, Module *),
Nick Lewycky6ba630b2010-04-12 05:08:25 +0000435 std::string &Error) {
Bill Wendling3f833432006-10-25 18:36:14 +0000436 // See if we can get away with nuking some of the global variable initializers
Chris Lattner65e5f652003-04-25 00:53:05 +0000437 // in the program...
Torok Edwin5bd3f7b2009-05-24 09:31:04 +0000438 if (!NoGlobalRM &&
439 BD.getProgram()->global_begin() != BD.getProgram()->global_end()) {
Bill Wendling3f833432006-10-25 18:36:14 +0000440 // Now try to reduce the number of global variable initializers in the
441 // module to something small.
Bill Wendling74a4a2a2006-10-27 20:18:06 +0000442 Module *M = CloneModule(BD.getProgram());
443 bool DeletedInit = false;
Misha Brukman650ba8e2005-04-22 00:00:37 +0000444
Bill Wendling74a4a2a2006-10-27 20:18:06 +0000445 for (Module::global_iterator I = M->global_begin(), E = M->global_end();
446 I != E; ++I)
447 if (I->hasInitializer()) {
Craig Toppere6cb63e2014-04-25 04:24:47 +0000448 I->setInitializer(nullptr);
Bill Wendling74a4a2a2006-10-27 20:18:06 +0000449 I->setLinkage(GlobalValue::ExternalLinkage);
450 DeletedInit = true;
451 }
Bill Wendling3f833432006-10-25 18:36:14 +0000452
Bill Wendling74a4a2a2006-10-27 20:18:06 +0000453 if (!DeletedInit) {
454 delete M; // No change made...
455 } else {
456 // See if the program still causes a crash...
Dan Gohmanee051522009-07-16 15:30:09 +0000457 outs() << "\nChecking to see if we can delete global inits: ";
Bill Wendling3f833432006-10-25 18:36:14 +0000458
Bill Wendling74a4a2a2006-10-27 20:18:06 +0000459 if (TestFn(BD, M)) { // Still crashes?
460 BD.setNewProgram(M);
Dan Gohmanee051522009-07-16 15:30:09 +0000461 outs() << "\n*** Able to remove all global initializers!\n";
Bill Wendling74a4a2a2006-10-27 20:18:06 +0000462 } else { // No longer crashes?
Dan Gohmanee051522009-07-16 15:30:09 +0000463 outs() << " - Removing all global inits hides problem!\n";
Bill Wendling74a4a2a2006-10-27 20:18:06 +0000464 delete M;
Bill Wendling3f833432006-10-25 18:36:14 +0000465
Bill Wendling74a4a2a2006-10-27 20:18:06 +0000466 std::vector<GlobalVariable*> GVs;
467
468 for (Module::global_iterator I = BD.getProgram()->global_begin(),
469 E = BD.getProgram()->global_end(); I != E; ++I)
470 if (I->hasInitializer())
471 GVs.push_back(I);
472
473 if (GVs.size() > 1 && !BugpointIsInterrupted) {
Dan Gohmanee051522009-07-16 15:30:09 +0000474 outs() << "\n*** Attempting to reduce the number of global "
Bill Wendling74a4a2a2006-10-27 20:18:06 +0000475 << "variables in the testcase\n";
476
477 unsigned OldSize = GVs.size();
Nick Lewycky6ba630b2010-04-12 05:08:25 +0000478 ReduceCrashingGlobalVariables(BD, TestFn).reduceList(GVs, Error);
479 if (!Error.empty())
480 return true;
Bill Wendling74a4a2a2006-10-27 20:18:06 +0000481
482 if (GVs.size() < OldSize)
Rafael Espindola594994a2010-07-28 18:12:30 +0000483 BD.EmitProgressBitcode(BD.getProgram(), "reduced-global-variables");
Bill Wendling74a4a2a2006-10-27 20:18:06 +0000484 }
Bill Wendlingce3afd62006-10-27 20:22:04 +0000485 }
Chris Lattner65e5f652003-04-25 00:53:05 +0000486 }
487 }
Misha Brukman650ba8e2005-04-22 00:00:37 +0000488
Chris Lattner1d080f22003-04-24 22:24:58 +0000489 // Now try to reduce the number of functions in the module to something small.
Chris Lattnerfd72bed2004-03-14 20:50:42 +0000490 std::vector<Function*> Functions;
491 for (Module::iterator I = BD.getProgram()->begin(),
Chris Lattner8bda4c42004-02-18 23:26:28 +0000492 E = BD.getProgram()->end(); I != E; ++I)
Reid Spencer5301e7c2007-01-30 20:08:39 +0000493 if (!I->isDeclaration())
Chris Lattner1d080f22003-04-24 22:24:58 +0000494 Functions.push_back(I);
Chris Lattner73a6bdd2002-11-20 22:28:10 +0000495
Chris Lattnerbeb01fa2005-08-02 02:16:17 +0000496 if (Functions.size() > 1 && !BugpointIsInterrupted) {
Dan Gohmanee051522009-07-16 15:30:09 +0000497 outs() << "\n*** Attempting to reduce the number of functions "
Chris Lattner1d080f22003-04-24 22:24:58 +0000498 "in the testcase\n";
Chris Lattner73a6bdd2002-11-20 22:28:10 +0000499
Chris Lattner8bda4c42004-02-18 23:26:28 +0000500 unsigned OldSize = Functions.size();
Nick Lewycky6ba630b2010-04-12 05:08:25 +0000501 ReduceCrashingFunctions(BD, TestFn).reduceList(Functions, Error);
Chris Lattner73a6bdd2002-11-20 22:28:10 +0000502
Chris Lattnerbeb01fa2005-08-02 02:16:17 +0000503 if (Functions.size() < OldSize)
Rafael Espindola594994a2010-07-28 18:12:30 +0000504 BD.EmitProgressBitcode(BD.getProgram(), "reduced-function");
Chris Lattner73a6bdd2002-11-20 22:28:10 +0000505 }
506
Chris Lattnerf32939b2003-04-24 23:51:38 +0000507 // Attempt to delete entire basic blocks at a time to speed up
508 // convergence... this actually works by setting the terminator of the blocks
509 // to a return instruction then running simplifycfg, which can potentially
510 // shrinks the code dramatically quickly
511 //
Chris Lattnerbeb01fa2005-08-02 02:16:17 +0000512 if (!DisableSimplifyCFG && !BugpointIsInterrupted) {
Chris Lattner8bda4c42004-02-18 23:26:28 +0000513 std::vector<const BasicBlock*> Blocks;
514 for (Module::const_iterator I = BD.getProgram()->begin(),
515 E = BD.getProgram()->end(); I != E; ++I)
516 for (Function::const_iterator FI = I->begin(), E = I->end(); FI !=E; ++FI)
Chris Lattnerd1e2aae2003-08-05 15:51:05 +0000517 Blocks.push_back(FI);
Torok Edwin6ee6f732009-05-24 09:40:47 +0000518 unsigned OldSize = Blocks.size();
Nick Lewycky6ba630b2010-04-12 05:08:25 +0000519 ReduceCrashingBlocks(BD, TestFn).reduceList(Blocks, Error);
Torok Edwin6ee6f732009-05-24 09:40:47 +0000520 if (Blocks.size() < OldSize)
Rafael Espindola594994a2010-07-28 18:12:30 +0000521 BD.EmitProgressBitcode(BD.getProgram(), "reduced-blocks");
Chris Lattnerd1e2aae2003-08-05 15:51:05 +0000522 }
Chris Lattnerd4e04742002-12-23 23:49:59 +0000523
Nick Lewycky6e090c92009-05-25 05:30:00 +0000524 // Attempt to delete instructions using bisection. This should help out nasty
525 // cases with large basic blocks where the problem is at one end.
526 if (!BugpointIsInterrupted) {
527 std::vector<const Instruction*> Insts;
528 for (Module::const_iterator MI = BD.getProgram()->begin(),
529 ME = BD.getProgram()->end(); MI != ME; ++MI)
530 for (Function::const_iterator FI = MI->begin(), FE = MI->end(); FI != FE;
531 ++FI)
532 for (BasicBlock::const_iterator I = FI->begin(), E = FI->end();
533 I != E; ++I)
534 if (!isa<TerminatorInst>(I))
535 Insts.push_back(I);
536
Nick Lewycky6ba630b2010-04-12 05:08:25 +0000537 ReduceCrashingInstructions(BD, TestFn).reduceList(Insts, Error);
Nick Lewycky6e090c92009-05-25 05:30:00 +0000538 }
539
Chris Lattner1d080f22003-04-24 22:24:58 +0000540 // FIXME: This should use the list reducer to converge faster by deleting
541 // larger chunks of instructions at a time!
Chris Lattner0ee372c2004-03-13 19:35:54 +0000542 unsigned Simplification = 2;
Chris Lattner0eb5ce92003-01-23 02:48:33 +0000543 do {
Chris Lattnerbeb01fa2005-08-02 02:16:17 +0000544 if (BugpointIsInterrupted) break;
Chris Lattner0eb5ce92003-01-23 02:48:33 +0000545 --Simplification;
Dan Gohmanee051522009-07-16 15:30:09 +0000546 outs() << "\n*** Attempting to reduce testcase by deleting instruc"
547 << "tions: Simplification Level #" << Simplification << '\n';
Chris Lattner0eb5ce92003-01-23 02:48:33 +0000548
Misha Brukman7eb05a12003-08-18 14:43:39 +0000549 // Now that we have deleted the functions that are unnecessary for the
550 // program, try to remove instructions that are not necessary to cause the
Chris Lattner0eb5ce92003-01-23 02:48:33 +0000551 // crash. To do this, we loop through all of the instructions in the
552 // remaining functions, deleting them (replacing any values produced with
553 // nulls), and then running ADCE and SimplifyCFG. If the transformed input
554 // still triggers failure, keep deleting until we cannot trigger failure
555 // anymore.
556 //
Chris Lattner94b2bfb2004-02-18 23:59:11 +0000557 unsigned InstructionsToSkipBeforeDeleting = 0;
Chris Lattner0eb5ce92003-01-23 02:48:33 +0000558 TryAgain:
Misha Brukman650ba8e2005-04-22 00:00:37 +0000559
Chris Lattner0eb5ce92003-01-23 02:48:33 +0000560 // Loop over all of the (non-terminator) instructions remaining in the
561 // function, attempting to delete them.
Chris Lattner94b2bfb2004-02-18 23:59:11 +0000562 unsigned CurInstructionNum = 0;
Chris Lattner8bda4c42004-02-18 23:26:28 +0000563 for (Module::const_iterator FI = BD.getProgram()->begin(),
564 E = BD.getProgram()->end(); FI != E; ++FI)
Reid Spencer5301e7c2007-01-30 20:08:39 +0000565 if (!FI->isDeclaration())
Chris Lattner8bda4c42004-02-18 23:26:28 +0000566 for (Function::const_iterator BI = FI->begin(), E = FI->end(); BI != E;
567 ++BI)
568 for (BasicBlock::const_iterator I = BI->begin(), E = --BI->end();
Bill Wendling2990ec62011-12-25 06:56:22 +0000569 I != E; ++I, ++CurInstructionNum) {
Chris Lattner94b2bfb2004-02-18 23:59:11 +0000570 if (InstructionsToSkipBeforeDeleting) {
571 --InstructionsToSkipBeforeDeleting;
572 } else {
Chris Lattnerbeb01fa2005-08-02 02:16:17 +0000573 if (BugpointIsInterrupted) goto ExitLoops;
574
Eli Friedmand4e02a52011-11-01 04:40:56 +0000575 if (isa<LandingPadInst>(I))
576 continue;
577
Dan Gohmanee051522009-07-16 15:30:09 +0000578 outs() << "Checking instruction: " << *I;
Chris Lattner94b2bfb2004-02-18 23:59:11 +0000579 Module *M = BD.deleteInstructionFromProgram(I, Simplification);
Misha Brukman650ba8e2005-04-22 00:00:37 +0000580
Chris Lattner94b2bfb2004-02-18 23:59:11 +0000581 // Find out if the pass still crashes on this pass...
582 if (TestFn(BD, M)) {
583 // Yup, it does, we delete the old module, and continue trying
584 // to reduce the testcase...
585 BD.setNewProgram(M);
Chris Lattner94b2bfb2004-02-18 23:59:11 +0000586 InstructionsToSkipBeforeDeleting = CurInstructionNum;
587 goto TryAgain; // I wish I had a multi-level break here!
588 }
Misha Brukman650ba8e2005-04-22 00:00:37 +0000589
Chris Lattner94b2bfb2004-02-18 23:59:11 +0000590 // This pass didn't crash without this instruction, try the next
591 // one.
592 delete M;
Chris Lattner0eb5ce92003-01-23 02:48:33 +0000593 }
Bill Wendling2990ec62011-12-25 06:56:22 +0000594 }
Chris Lattner94b2bfb2004-02-18 23:59:11 +0000595
596 if (InstructionsToSkipBeforeDeleting) {
597 InstructionsToSkipBeforeDeleting = 0;
598 goto TryAgain;
599 }
Misha Brukman650ba8e2005-04-22 00:00:37 +0000600
Chris Lattner0eb5ce92003-01-23 02:48:33 +0000601 } while (Simplification);
Chris Lattnerbeb01fa2005-08-02 02:16:17 +0000602ExitLoops:
Chris Lattner514c02e2003-02-28 16:13:20 +0000603
604 // Try to clean up the testcase by running funcresolve and globaldce...
Chris Lattnerbeb01fa2005-08-02 02:16:17 +0000605 if (!BugpointIsInterrupted) {
Dan Gohmanee051522009-07-16 15:30:09 +0000606 outs() << "\n*** Attempting to perform final cleanups: ";
Chris Lattnerbeb01fa2005-08-02 02:16:17 +0000607 Module *M = CloneModule(BD.getProgram());
608 M = BD.performFinalCleanups(M, true);
Misha Brukman650ba8e2005-04-22 00:00:37 +0000609
Chris Lattnerbeb01fa2005-08-02 02:16:17 +0000610 // Find out if the pass still crashes on the cleaned up program...
611 if (TestFn(BD, M)) {
612 BD.setNewProgram(M); // Yup, it does, keep the reduced version...
613 } else {
614 delete M;
615 }
Chris Lattner514c02e2003-02-28 16:13:20 +0000616 }
617
Rafael Espindola594994a2010-07-28 18:12:30 +0000618 BD.EmitProgressBitcode(BD.getProgram(), "reduced-simplified");
Chris Lattner514c02e2003-02-28 16:13:20 +0000619
Misha Brukman650ba8e2005-04-22 00:00:37 +0000620 return false;
Chris Lattner73a6bdd2002-11-20 22:28:10 +0000621}
Brian Gaeke960707c2003-11-11 22:41:34 +0000622
Rafael Espindolad1c7ef42010-08-05 03:00:22 +0000623static bool TestForOptimizerCrash(const BugDriver &BD, Module *M) {
Chris Lattner8bda4c42004-02-18 23:26:28 +0000624 return BD.runPasses(M);
625}
Chris Lattneread1dff2004-02-18 21:02:04 +0000626
Chris Lattner8bda4c42004-02-18 23:26:28 +0000627/// debugOptimizerCrash - This method is called when some pass crashes on input.
628/// It attempts to prune down the testcase to something reasonable, and figure
629/// out exactly which pass is crashing.
630///
Patrick Jenkinsc46c0382006-08-15 16:40:49 +0000631bool BugDriver::debugOptimizerCrash(const std::string &ID) {
Dan Gohmanee051522009-07-16 15:30:09 +0000632 outs() << "\n*** Debugging optimizer crash!\n";
Chris Lattner8bda4c42004-02-18 23:26:28 +0000633
Nick Lewycky6ba630b2010-04-12 05:08:25 +0000634 std::string Error;
Chris Lattner8bda4c42004-02-18 23:26:28 +0000635 // Reduce the list of passes which causes the optimizer to crash...
Chris Lattnerbeb01fa2005-08-02 02:16:17 +0000636 if (!BugpointIsInterrupted)
Nick Lewycky6ba630b2010-04-12 05:08:25 +0000637 ReducePassList(*this).reduceList(PassesToRun, Error);
638 assert(Error.empty());
Chris Lattner8bda4c42004-02-18 23:26:28 +0000639
Dan Gohmanee051522009-07-16 15:30:09 +0000640 outs() << "\n*** Found crashing pass"
641 << (PassesToRun.size() == 1 ? ": " : "es: ")
642 << getPassesString(PassesToRun) << '\n';
Chris Lattner8bda4c42004-02-18 23:26:28 +0000643
Rafael Espindola594994a2010-07-28 18:12:30 +0000644 EmitProgressBitcode(Program, ID);
Chris Lattner8bda4c42004-02-18 23:26:28 +0000645
Nick Lewycky6ba630b2010-04-12 05:08:25 +0000646 bool Success = DebugACrash(*this, TestForOptimizerCrash, Error);
647 assert(Error.empty());
648 return Success;
Chris Lattner8bda4c42004-02-18 23:26:28 +0000649}
650
Rafael Espindolad1c7ef42010-08-05 03:00:22 +0000651static bool TestForCodeGenCrash(const BugDriver &BD, Module *M) {
Nick Lewycky6ba630b2010-04-12 05:08:25 +0000652 std::string Error;
653 BD.compileProgram(M, &Error);
654 if (!Error.empty()) {
Dan Gohmand8db3762009-07-15 16:35:29 +0000655 errs() << "<crash>\n";
Chris Lattner8bda4c42004-02-18 23:26:28 +0000656 return true; // Tool is still crashing.
657 }
Nick Lewycky6ba630b2010-04-12 05:08:25 +0000658 errs() << '\n';
659 return false;
Chris Lattner8bda4c42004-02-18 23:26:28 +0000660}
Chris Lattneread1dff2004-02-18 21:02:04 +0000661
662/// debugCodeGeneratorCrash - This method is called when the code generator
663/// crashes on an input. It attempts to reduce the input as much as possible
664/// while still causing the code generator to crash.
Nick Lewycky6ba630b2010-04-12 05:08:25 +0000665bool BugDriver::debugCodeGeneratorCrash(std::string &Error) {
Dan Gohmand8db3762009-07-15 16:35:29 +0000666 errs() << "*** Debugging code generator crash!\n";
Chris Lattneread1dff2004-02-18 21:02:04 +0000667
Nick Lewycky6ba630b2010-04-12 05:08:25 +0000668 return DebugACrash(*this, TestForCodeGenCrash, Error);
Chris Lattneread1dff2004-02-18 21:02:04 +0000669}