blob: 649cac7c681b8e638fcd5d043f72a6050b887133 [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"
Keno Fischer34ca8312015-11-06 00:12:50 +000018#include "llvm/ADT/StringSet.h"
Justin Bogner8d0a0812016-09-02 01:21:37 +000019#include "llvm/Analysis/TargetTransformInfo.h"
Chandler Carruth1305dc32014-03-04 11:45:46 +000020#include "llvm/IR/CFG.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000021#include "llvm/IR/Constants.h"
22#include "llvm/IR/DerivedTypes.h"
23#include "llvm/IR/Instructions.h"
Chandler Carruth30d69c22015-02-13 10:01:29 +000024#include "llvm/IR/LegacyPassManager.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000025#include "llvm/IR/Module.h"
26#include "llvm/IR/ValueSymbolTable.h"
Chandler Carruth5ad5f152014-01-13 09:26:24 +000027#include "llvm/IR/Verifier.h"
Misha Brukman0c2305b2003-08-07 21:19:30 +000028#include "llvm/Pass.h"
Chandler Carruth4d88a1c2012-12-04 10:44:52 +000029#include "llvm/Support/CommandLine.h"
30#include "llvm/Support/FileUtilities.h"
Chris Lattnerf32939b2003-04-24 23:51:38 +000031#include "llvm/Transforms/Scalar.h"
Daniel Berlin271ca402016-07-27 16:13:25 +000032#include "llvm/Transforms/Utils/BasicBlockUtils.h"
Chris Lattner1d080f22003-04-24 22:24:58 +000033#include "llvm/Transforms/Utils/Cloning.h"
Daniel Berlin271ca402016-07-27 16:13:25 +000034#include "llvm/Transforms/Utils/Local.h"
Chris Lattner1d080f22003-04-24 22:24:58 +000035#include <set>
Chris Lattner2f1aa112004-01-14 03:38:37 +000036using namespace llvm;
Chris Lattner73a6bdd2002-11-20 22:28:10 +000037
Andrew Lenharthef9aa122006-03-05 22:21:36 +000038namespace {
Justin Bogner8d0a0812016-09-02 01:21:37 +000039cl::opt<bool> KeepMain("keep-main",
40 cl::desc("Force function reduction to keep main"),
41 cl::init(false));
42cl::opt<bool> NoGlobalRM("disable-global-remove",
43 cl::desc("Do not remove global variables"),
44 cl::init(false));
JF Bastienf87e20d2015-04-20 23:42:22 +000045
Justin Bogner8d0a0812016-09-02 01:21:37 +000046cl::opt<bool> ReplaceFuncsWithNull(
47 "replace-funcs-with-null",
48 cl::desc("When stubbing functions, replace all uses will null"),
49 cl::init(false));
50cl::opt<bool> DontReducePassList("disable-pass-list-reduction",
51 cl::desc("Skip pass list reduction steps"),
52 cl::init(false));
Keno Fischer34ca8312015-11-06 00:12:50 +000053
Justin Bogner8d0a0812016-09-02 01:21:37 +000054cl::opt<bool> NoNamedMDRM("disable-namedmd-remove",
55 cl::desc("Do not remove global named metadata"),
56 cl::init(false));
57cl::opt<bool> VerboseErrors("verbose-errors",
Sebastian Pop8f7d0192016-07-15 23:15:06 +000058 cl::desc("Print the output of crashing program"),
59 cl::init(false));
Andrew Lenharthef9aa122006-03-05 22:21:36 +000060}
61
Brian Gaeke960707c2003-11-11 22:41:34 +000062namespace llvm {
Justin Bogner8d0a0812016-09-02 01:21:37 +000063class ReducePassList : public ListReducer<std::string> {
64 BugDriver &BD;
Misha Brukman650ba8e2005-04-22 00:00:37 +000065
Justin Bogner8d0a0812016-09-02 01:21:37 +000066public:
67 ReducePassList(BugDriver &bd) : BD(bd) {}
68
69 // doTest - Return true iff running the "removed" passes succeeds, and
70 // running the "Kept" passes fail when run on the output of the "removed"
71 // passes. If we return true, we update the current module of bugpoint.
72 //
73 TestResult doTest(std::vector<std::string> &Removed,
74 std::vector<std::string> &Kept,
75 std::string &Error) override;
76};
Chris Lattner2f1aa112004-01-14 03:38:37 +000077}
Chris Lattner1d080f22003-04-24 22:24:58 +000078
Chris Lattner327019b2004-02-18 21:24:48 +000079ReducePassList::TestResult
Rafael Espindola33e81a82010-08-08 03:55:08 +000080ReducePassList::doTest(std::vector<std::string> &Prefix,
Justin Bogner8d0a0812016-09-02 01:21:37 +000081 std::vector<std::string> &Suffix, std::string &Error) {
Rafael Espindolabb876652013-06-17 19:33:18 +000082 std::string PrefixOutput;
Craig Toppere6cb63e2014-04-25 04:24:47 +000083 Module *OrigProgram = nullptr;
Chris Lattner1d080f22003-04-24 22:24:58 +000084 if (!Prefix.empty()) {
Dan Gohmanee051522009-07-16 15:30:09 +000085 outs() << "Checking to see if these passes crash: "
86 << getPassesString(Prefix) << ": ";
Rafael Espindolabb876652013-06-17 19:33:18 +000087 if (BD.runPasses(BD.getProgram(), Prefix, PrefixOutput))
Chris Lattner1d080f22003-04-24 22:24:58 +000088 return KeepPrefix;
Chris Lattnera9656312003-06-02 04:54:29 +000089
90 OrigProgram = BD.Program;
91
Rafael Espindola28b351a2014-08-26 17:19:03 +000092 BD.Program = parseInputFile(PrefixOutput, BD.getContext()).release();
Craig Toppere6cb63e2014-04-25 04:24:47 +000093 if (BD.Program == nullptr) {
Dan Gohmand8db3762009-07-15 16:35:29 +000094 errs() << BD.getToolName() << ": Error reading bitcode file '"
Rafael Espindolabb876652013-06-17 19:33:18 +000095 << PrefixOutput << "'!\n";
Chris Lattnera9656312003-06-02 04:54:29 +000096 exit(1);
97 }
Rafael Espindolabb876652013-06-17 19:33:18 +000098 sys::fs::remove(PrefixOutput);
Chris Lattner1d080f22003-04-24 22:24:58 +000099 }
100
Justin Bogner8d0a0812016-09-02 01:21:37 +0000101 outs() << "Checking to see if these passes crash: " << getPassesString(Suffix)
102 << ": ";
Misha Brukman650ba8e2005-04-22 00:00:37 +0000103
Rafael Espindola37302ea2010-08-05 02:16:32 +0000104 if (BD.runPasses(BD.getProgram(), Suffix)) {
Justin Bogner8d0a0812016-09-02 01:21:37 +0000105 delete OrigProgram; // The suffix crashes alone...
Chris Lattner1d080f22003-04-24 22:24:58 +0000106 return KeepSuffix;
107 }
108
109 // Nothing failed, restore state...
Chris Lattnera9656312003-06-02 04:54:29 +0000110 if (OrigProgram) {
111 delete BD.Program;
112 BD.Program = OrigProgram;
113 }
Chris Lattner1d080f22003-04-24 22:24:58 +0000114 return NoFailure;
115}
116
Bill Wendling3f833432006-10-25 18:36:14 +0000117namespace {
Justin Bogner8d0a0812016-09-02 01:21:37 +0000118/// ReduceCrashingGlobalVariables - This works by removing the global
119/// variable's initializer and seeing if the program still crashes. If it
120/// does, then we keep that program and try again.
121///
122class ReduceCrashingGlobalVariables : public ListReducer<GlobalVariable *> {
123 BugDriver &BD;
124 bool (*TestFn)(const BugDriver &, Module *);
125
126public:
127 ReduceCrashingGlobalVariables(BugDriver &bd,
128 bool (*testFn)(const BugDriver &, Module *))
Bill Wendling3f833432006-10-25 18:36:14 +0000129 : BD(bd), TestFn(testFn) {}
130
Justin Bogner8d0a0812016-09-02 01:21:37 +0000131 TestResult doTest(std::vector<GlobalVariable *> &Prefix,
132 std::vector<GlobalVariable *> &Kept,
133 std::string &Error) override {
134 if (!Kept.empty() && TestGlobalVariables(Kept))
135 return KeepSuffix;
136 if (!Prefix.empty() && TestGlobalVariables(Prefix))
137 return KeepPrefix;
138 return NoFailure;
139 }
Bill Wendling3f833432006-10-25 18:36:14 +0000140
Justin Bogner8d0a0812016-09-02 01:21:37 +0000141 bool TestGlobalVariables(std::vector<GlobalVariable *> &GVs);
142};
Bill Wendling3f833432006-10-25 18:36:14 +0000143}
144
Justin Bogner8d0a0812016-09-02 01:21:37 +0000145bool ReduceCrashingGlobalVariables::TestGlobalVariables(
146 std::vector<GlobalVariable *> &GVs) {
Bill Wendling3f833432006-10-25 18:36:14 +0000147 // Clone the program to try hacking it apart...
Rafael Espindola229e38f2010-10-13 01:36:30 +0000148 ValueToValueMapTy VMap;
Rafael Espindolacab951d2015-12-08 23:57:17 +0000149 Module *M = CloneModule(BD.getProgram(), VMap).release();
Bill Wendling3f833432006-10-25 18:36:14 +0000150
151 // Convert list to set for fast lookup...
Justin Bogner8d0a0812016-09-02 01:21:37 +0000152 std::set<GlobalVariable *> GVSet;
Bill Wendling3f833432006-10-25 18:36:14 +0000153
154 for (unsigned i = 0, e = GVs.size(); i != e; ++i) {
Justin Bogner8d0a0812016-09-02 01:21:37 +0000155 GlobalVariable *CMGV = cast<GlobalVariable>(VMap[GVs[i]]);
Bill Wendling3f833432006-10-25 18:36:14 +0000156 assert(CMGV && "Global Variable not in module?!");
157 GVSet.insert(CMGV);
158 }
159
Dan Gohmanee051522009-07-16 15:30:09 +0000160 outs() << "Checking for crash with only these global variables: ";
Bill Wendling3f833432006-10-25 18:36:14 +0000161 PrintGlobalVariableList(GVs);
Dan Gohmanee051522009-07-16 15:30:09 +0000162 outs() << ": ";
Bill Wendling3f833432006-10-25 18:36:14 +0000163
164 // Loop over and delete any global variables which we aren't supposed to be
165 // playing with...
Duncan P. N. Exon Smith306d16e2015-10-20 19:36:39 +0000166 for (GlobalVariable &I : M->globals())
167 if (I.hasInitializer() && !GVSet.count(&I)) {
Hal Finkel28ad2b42015-11-26 19:23:49 +0000168 DeleteGlobalInitializer(&I);
Duncan P. N. Exon Smith306d16e2015-10-20 19:36:39 +0000169 I.setLinkage(GlobalValue::ExternalLinkage);
Justin Lebar2a445cf2016-06-15 23:20:12 +0000170 I.setComdat(nullptr);
Bill Wendling3f833432006-10-25 18:36:14 +0000171 }
172
173 // Try running the hacked up program...
174 if (TestFn(BD, M)) {
Justin Bogner8d0a0812016-09-02 01:21:37 +0000175 BD.setNewProgram(M); // It crashed, keep the trimmed version...
Bill Wendling3f833432006-10-25 18:36:14 +0000176
177 // Make sure to use global variable pointers that point into the now-current
178 // module.
179 GVs.assign(GVSet.begin(), GVSet.end());
180 return true;
181 }
182
183 delete M;
184 return false;
185}
186
David Blaikiea379b1812011-12-20 02:50:00 +0000187namespace {
Justin Bogner8d0a0812016-09-02 01:21:37 +0000188/// ReduceCrashingFunctions reducer - This works by removing functions and
189/// seeing if the program still crashes. If it does, then keep the newer,
190/// smaller program.
191///
192class ReduceCrashingFunctions : public ListReducer<Function *> {
193 BugDriver &BD;
194 bool (*TestFn)(const BugDriver &, Module *);
195
196public:
197 ReduceCrashingFunctions(BugDriver &bd,
198 bool (*testFn)(const BugDriver &, Module *))
Chris Lattner8bda4c42004-02-18 23:26:28 +0000199 : BD(bd), TestFn(testFn) {}
Misha Brukman650ba8e2005-04-22 00:00:37 +0000200
Justin Bogner8d0a0812016-09-02 01:21:37 +0000201 TestResult doTest(std::vector<Function *> &Prefix,
202 std::vector<Function *> &Kept,
203 std::string &Error) override {
204 if (!Kept.empty() && TestFuncs(Kept))
205 return KeepSuffix;
206 if (!Prefix.empty() && TestFuncs(Prefix))
207 return KeepPrefix;
208 return NoFailure;
209 }
Misha Brukman650ba8e2005-04-22 00:00:37 +0000210
Justin Bogner8d0a0812016-09-02 01:21:37 +0000211 bool TestFuncs(std::vector<Function *> &Prefix);
212};
Chris Lattner2f1aa112004-01-14 03:38:37 +0000213}
Chris Lattner1d080f22003-04-24 22:24:58 +0000214
Justin Bogner8d0a0812016-09-02 01:21:37 +0000215static void RemoveFunctionReferences(Module *M, const char *Name) {
JF Bastienf87e20d2015-04-20 23:42:22 +0000216 auto *UsedVar = M->getGlobalVariable(Name, true);
Justin Bogner8d0a0812016-09-02 01:21:37 +0000217 if (!UsedVar || !UsedVar->hasInitializer())
218 return;
JF Bastienf87e20d2015-04-20 23:42:22 +0000219 if (isa<ConstantAggregateZero>(UsedVar->getInitializer())) {
220 assert(UsedVar->use_empty());
221 UsedVar->eraseFromParent();
222 return;
223 }
224 auto *OldUsedVal = cast<ConstantArray>(UsedVar->getInitializer());
Justin Bogner8d0a0812016-09-02 01:21:37 +0000225 std::vector<Constant *> Used;
226 for (Value *V : OldUsedVal->operand_values()) {
JF Bastienf87e20d2015-04-20 23:42:22 +0000227 Constant *Op = cast<Constant>(V->stripPointerCasts());
Justin Bogner8d0a0812016-09-02 01:21:37 +0000228 if (!Op->isNullValue()) {
JF Bastienf87e20d2015-04-20 23:42:22 +0000229 Used.push_back(cast<Constant>(V));
230 }
231 }
232 auto *NewValElemTy = OldUsedVal->getType()->getElementType();
233 auto *NewValTy = ArrayType::get(NewValElemTy, Used.size());
234 auto *NewUsedVal = ConstantArray::get(NewValTy, Used);
235 UsedVar->mutateType(NewUsedVal->getType()->getPointerTo());
236 UsedVar->setInitializer(NewUsedVal);
237}
238
Justin Bogner8d0a0812016-09-02 01:21:37 +0000239bool ReduceCrashingFunctions::TestFuncs(std::vector<Function *> &Funcs) {
Dmitri Gribenko6e0520e2013-09-02 01:18:56 +0000240 // If main isn't present, claim there is no problem.
David Majnemer0d955d02016-08-11 22:21:41 +0000241 if (KeepMain && !is_contained(Funcs, BD.getProgram()->getFunction("main")))
Andrew Lenharthef9aa122006-03-05 22:21:36 +0000242 return false;
243
Misha Brukman8b2bd4e2003-10-10 17:57:28 +0000244 // Clone the program to try hacking it apart...
Rafael Espindola229e38f2010-10-13 01:36:30 +0000245 ValueToValueMapTy VMap;
Rafael Espindolacab951d2015-12-08 23:57:17 +0000246 Module *M = CloneModule(BD.getProgram(), VMap).release();
Misha Brukman650ba8e2005-04-22 00:00:37 +0000247
Chris Lattner1d080f22003-04-24 22:24:58 +0000248 // Convert list to set for fast lookup...
Justin Bogner8d0a0812016-09-02 01:21:37 +0000249 std::set<Function *> Functions;
Chris Lattner1d080f22003-04-24 22:24:58 +0000250 for (unsigned i = 0, e = Funcs.size(); i != e; ++i) {
Devang Patel0dc3c2d2010-06-24 00:33:28 +0000251 Function *CMF = cast<Function>(VMap[Funcs[i]]);
Chris Lattner1d080f22003-04-24 22:24:58 +0000252 assert(CMF && "Function not in module?!");
Reid Spencer3aaaa0b2007-02-05 20:47:22 +0000253 assert(CMF->getFunctionType() == Funcs[i]->getFunctionType() && "wrong ty");
Dan Gohmanbcad7182009-03-06 02:16:23 +0000254 assert(CMF->getName() == Funcs[i]->getName() && "wrong name");
Chris Lattnerde39f2b2003-04-24 22:54:06 +0000255 Functions.insert(CMF);
Chris Lattner1d080f22003-04-24 22:24:58 +0000256 }
257
Dan Gohmanee051522009-07-16 15:30:09 +0000258 outs() << "Checking for crash with only these functions: ";
Chris Lattnerfd72bed2004-03-14 20:50:42 +0000259 PrintFunctionList(Funcs);
Dan Gohmanee051522009-07-16 15:30:09 +0000260 outs() << ": ";
JF Bastienf87e20d2015-04-20 23:42:22 +0000261 if (!ReplaceFuncsWithNull) {
262 // Loop over and delete any functions which we aren't supposed to be playing
263 // with...
Duncan P. N. Exon Smith306d16e2015-10-20 19:36:39 +0000264 for (Function &I : *M)
265 if (!I.isDeclaration() && !Functions.count(&I))
266 DeleteFunctionBody(&I);
JF Bastienf87e20d2015-04-20 23:42:22 +0000267 } else {
Justin Bogner8d0a0812016-09-02 01:21:37 +0000268 std::vector<GlobalValue *> ToRemove;
JF Bastienf87e20d2015-04-20 23:42:22 +0000269 // First, remove aliases to functions we're about to purge.
270 for (GlobalAlias &Alias : M->aliases()) {
David Majnemer95549492016-05-04 00:20:48 +0000271 GlobalObject *Root = Alias.getBaseObject();
272 Function *F = dyn_cast_or_null<Function>(Root);
JF Bastienf87e20d2015-04-20 23:42:22 +0000273 if (F) {
274 if (Functions.count(F))
275 // We're keeping this function.
276 continue;
277 } else if (Root->isNullValue()) {
278 // This referenced a globalalias that we've already replaced,
279 // so we still need to replace this alias.
280 } else if (!F) {
281 // Not a function, therefore not something we mess with.
282 continue;
283 }
Chris Lattner1d080f22003-04-24 22:24:58 +0000284
JF Bastienf87e20d2015-04-20 23:42:22 +0000285 PointerType *Ty = cast<PointerType>(Alias.getType());
286 Constant *Replacement = ConstantPointerNull::get(Ty);
287 Alias.replaceAllUsesWith(Replacement);
288 ToRemove.push_back(&Alias);
289 }
Chris Lattner1d080f22003-04-24 22:24:58 +0000290
Duncan P. N. Exon Smith306d16e2015-10-20 19:36:39 +0000291 for (Function &I : *M) {
292 if (!I.isDeclaration() && !Functions.count(&I)) {
293 PointerType *Ty = cast<PointerType>(I.getType());
JF Bastienf87e20d2015-04-20 23:42:22 +0000294 Constant *Replacement = ConstantPointerNull::get(Ty);
Duncan P. N. Exon Smith306d16e2015-10-20 19:36:39 +0000295 I.replaceAllUsesWith(Replacement);
296 ToRemove.push_back(&I);
JF Bastienf87e20d2015-04-20 23:42:22 +0000297 }
298 }
299
300 for (auto *F : ToRemove) {
301 F->eraseFromParent();
302 }
303
304 // Finally, remove any null members from any global intrinsic.
305 RemoveFunctionReferences(M, "llvm.used");
306 RemoveFunctionReferences(M, "llvm.compiler.used");
307 }
Chris Lattner1d080f22003-04-24 22:24:58 +0000308 // Try running the hacked up program...
Chris Lattner8bda4c42004-02-18 23:26:28 +0000309 if (TestFn(BD, M)) {
Justin Bogner8d0a0812016-09-02 01:21:37 +0000310 BD.setNewProgram(M); // It crashed, keep the trimmed version...
Chris Lattner1d080f22003-04-24 22:24:58 +0000311
312 // Make sure to use function pointers that point into the now-current
313 // module.
314 Funcs.assign(Functions.begin(), Functions.end());
315 return true;
316 }
Chris Lattner327019b2004-02-18 21:24:48 +0000317 delete M;
Chris Lattner1d080f22003-04-24 22:24:58 +0000318 return false;
319}
320
Chris Lattner1942f982004-02-18 21:29:46 +0000321namespace {
Daniel Berlin60606262016-07-28 22:29:25 +0000322/// Simplify the CFG without completely destroying it.
323/// This is not well defined, but basically comes down to "try to eliminate
324/// unreachable blocks and constant fold terminators without deciding that
325/// certain undefined behavior cuts off the program at the legs".
326void simpleSimplifyCfg(Function &F, SmallVectorImpl<BasicBlock *> &BBs) {
327 if (F.empty())
328 return;
329
330 for (auto *BB : BBs) {
331 ConstantFoldTerminator(BB);
332 MergeBlockIntoPredecessor(BB);
333 }
334
335 // Remove unreachable blocks
336 // removeUnreachableBlocks can't be used here, it will turn various
337 // undefined behavior into unreachables, but bugpoint was the thing that
338 // generated the undefined behavior, and we don't want it to kill the entire
339 // program.
340 SmallPtrSet<BasicBlock *, 16> Visited;
341 for (auto *BB : depth_first(&F.getEntryBlock()))
342 Visited.insert(BB);
343
344 SmallVector<BasicBlock *, 16> Unreachable;
345 for (auto &BB : F)
346 if (!Visited.count(&BB))
347 Unreachable.push_back(&BB);
348
349 // The dead BB's may be in a dead cycle or otherwise have references to each
350 // other. Because of this, we have to drop all references first, then delete
351 // them all at once.
Justin Bogner8d0a0812016-09-02 01:21:37 +0000352 for (auto *BB : Unreachable) {
Daniel Berlin60606262016-07-28 22:29:25 +0000353 for (BasicBlock *Successor : successors(&*BB))
354 if (Visited.count(Successor))
355 Successor->removePredecessor(&*BB);
356 BB->dropAllReferences();
357 }
358 for (auto *BB : Unreachable)
359 BB->eraseFromParent();
360}
Justin Bogner8d0a0812016-09-02 01:21:37 +0000361/// ReduceCrashingBlocks reducer - This works by setting the terminators of
362/// all terminators except the specified basic blocks to a 'ret' instruction,
363/// then running the simplify-cfg pass. This has the effect of chopping up
364/// the CFG really fast which can reduce large functions quickly.
365///
366class ReduceCrashingBlocks : public ListReducer<const BasicBlock *> {
367 BugDriver &BD;
368 bool (*TestFn)(const BugDriver &, Module *);
369
370public:
371 ReduceCrashingBlocks(BugDriver &BD,
372 bool (*testFn)(const BugDriver &, Module *))
Daniel Berlin60606262016-07-28 22:29:25 +0000373 : BD(BD), TestFn(testFn) {}
Misha Brukman650ba8e2005-04-22 00:00:37 +0000374
Justin Bogner8d0a0812016-09-02 01:21:37 +0000375 TestResult doTest(std::vector<const BasicBlock *> &Prefix,
376 std::vector<const BasicBlock *> &Kept,
377 std::string &Error) override {
378 if (!Kept.empty() && TestBlocks(Kept))
379 return KeepSuffix;
380 if (!Prefix.empty() && TestBlocks(Prefix))
381 return KeepPrefix;
382 return NoFailure;
383 }
Misha Brukman650ba8e2005-04-22 00:00:37 +0000384
Justin Bogner8d0a0812016-09-02 01:21:37 +0000385 bool TestBlocks(std::vector<const BasicBlock *> &Prefix);
386};
Chris Lattner2f1aa112004-01-14 03:38:37 +0000387}
Chris Lattnerf32939b2003-04-24 23:51:38 +0000388
Justin Bogner8d0a0812016-09-02 01:21:37 +0000389bool ReduceCrashingBlocks::TestBlocks(std::vector<const BasicBlock *> &BBs) {
Misha Brukman8b2bd4e2003-10-10 17:57:28 +0000390 // Clone the program to try hacking it apart...
Rafael Espindola229e38f2010-10-13 01:36:30 +0000391 ValueToValueMapTy VMap;
Rafael Espindolacab951d2015-12-08 23:57:17 +0000392 Module *M = CloneModule(BD.getProgram(), VMap).release();
Misha Brukman650ba8e2005-04-22 00:00:37 +0000393
Chris Lattnerf32939b2003-04-24 23:51:38 +0000394 // Convert list to set for fast lookup...
Justin Bogner8d0a0812016-09-02 01:21:37 +0000395 SmallPtrSet<BasicBlock *, 8> Blocks;
Nick Lewyckyb294e312009-04-04 09:39:23 +0000396 for (unsigned i = 0, e = BBs.size(); i != e; ++i)
Devang Patel0dc3c2d2010-06-24 00:33:28 +0000397 Blocks.insert(cast<BasicBlock>(VMap[BBs[i]]));
Chris Lattnerf32939b2003-04-24 23:51:38 +0000398
Dan Gohmanee051522009-07-16 15:30:09 +0000399 outs() << "Checking for crash with only these blocks:";
Chris Lattner4f50ebd2003-10-27 04:44:59 +0000400 unsigned NumPrint = Blocks.size();
Justin Bogner8d0a0812016-09-02 01:21:37 +0000401 if (NumPrint > 10)
402 NumPrint = 10;
Chris Lattner4f50ebd2003-10-27 04:44:59 +0000403 for (unsigned i = 0, e = NumPrint; i != e; ++i)
Dan Gohmanee051522009-07-16 15:30:09 +0000404 outs() << " " << BBs[i]->getName();
Chris Lattner4f50ebd2003-10-27 04:44:59 +0000405 if (NumPrint < Blocks.size())
Dan Gohmanee051522009-07-16 15:30:09 +0000406 outs() << "... <" << Blocks.size() << " total>";
407 outs() << ": ";
Chris Lattnerf32939b2003-04-24 23:51:38 +0000408
409 // Loop over and delete any hack up any blocks that are not listed...
410 for (Module::iterator I = M->begin(), E = M->end(); I != E; ++I)
411 for (Function::iterator BB = I->begin(), E = I->end(); BB != E; ++BB)
Duncan P. N. Exon Smith306d16e2015-10-20 19:36:39 +0000412 if (!Blocks.count(&*BB) && BB->getTerminator()->getNumSuccessors()) {
Chris Lattnerf32939b2003-04-24 23:51:38 +0000413 // Loop over all of the successors of this block, deleting any PHI nodes
414 // that might include it.
Duncan P. N. Exon Smith306d16e2015-10-20 19:36:39 +0000415 for (succ_iterator SI = succ_begin(&*BB), E = succ_end(&*BB); SI != E;
416 ++SI)
417 (*SI)->removePredecessor(&*BB);
Chris Lattnerf32939b2003-04-24 23:51:38 +0000418
Chris Lattner7855a5c2008-04-28 00:04:58 +0000419 TerminatorInst *BBTerm = BB->getTerminator();
Philip Reames29e641c2016-06-29 00:15:35 +0000420 if (BBTerm->isEHPad() || BBTerm->getType()->isTokenTy())
David Majnemer189d7da2015-11-08 04:16:12 +0000421 continue;
Philip Reames29e641c2016-06-29 00:15:35 +0000422 if (!BBTerm->getType()->isVoidTy())
Owen Anderson5a1acd92009-07-31 20:28:14 +0000423 BBTerm->replaceAllUsesWith(Constant::getNullValue(BBTerm->getType()));
Chris Lattner7b233af2003-11-22 02:10:38 +0000424
Chris Lattner7855a5c2008-04-28 00:04:58 +0000425 // Replace the old terminator instruction.
Chris Lattnerf32939b2003-04-24 23:51:38 +0000426 BB->getInstList().pop_back();
Duncan P. N. Exon Smith306d16e2015-10-20 19:36:39 +0000427 new UnreachableInst(BB->getContext(), &*BB);
Chris Lattnerf32939b2003-04-24 23:51:38 +0000428 }
429
430 // The CFG Simplifier pass may delete one of the basic blocks we are
431 // interested in. If it does we need to take the block out of the list. Make
432 // a "persistent mapping" by turning basic blocks into <function, name> pairs.
433 // This won't work well if blocks are unnamed, but that is just the risk we
434 // have to take.
Justin Bogner8d0a0812016-09-02 01:21:37 +0000435 std::vector<std::pair<std::string, std::string>> BlockInfo;
Chris Lattnerf32939b2003-04-24 23:51:38 +0000436
Craig Topper46276792014-08-24 23:23:06 +0000437 for (BasicBlock *BB : Blocks)
Benjamin Kramerf5e2fc42015-05-29 19:43:39 +0000438 BlockInfo.emplace_back(BB->getParent()->getName(), BB->getName());
Justin Bogner8d0a0812016-09-02 01:21:37 +0000439
Daniel Berlin60606262016-07-28 22:29:25 +0000440 SmallVector<BasicBlock *, 16> ToProcess;
Justin Bogner8d0a0812016-09-02 01:21:37 +0000441 for (auto &F : *M) {
Daniel Berlin60606262016-07-28 22:29:25 +0000442 for (auto &BB : F)
443 if (!Blocks.count(&BB))
444 ToProcess.push_back(&BB);
445 simpleSimplifyCfg(F, ToProcess);
446 ToProcess.clear();
447 }
448 // Verify we didn't break anything
Rafael Espindolad1e241a2010-08-10 15:46:11 +0000449 std::vector<std::string> Passes;
Rafael Espindolad1e241a2010-08-10 15:46:11 +0000450 Passes.push_back("verify");
Rafael Espindola28b351a2014-08-26 17:19:03 +0000451 std::unique_ptr<Module> New = BD.runPassesOn(M, Passes);
Rafael Espindolad1e241a2010-08-10 15:46:11 +0000452 delete M;
453 if (!New) {
Daniel Berlin60606262016-07-28 22:29:25 +0000454 errs() << "verify failed!\n";
Rafael Espindolad1e241a2010-08-10 15:46:11 +0000455 exit(1);
456 }
Rafael Espindola28b351a2014-08-26 17:19:03 +0000457 M = New.release();
Justin Bogner8d0a0812016-09-02 01:21:37 +0000458
Chris Lattnerf32939b2003-04-24 23:51:38 +0000459 // Try running on the hacked up program...
Chris Lattner8bda4c42004-02-18 23:26:28 +0000460 if (TestFn(BD, M)) {
Justin Bogner8d0a0812016-09-02 01:21:37 +0000461 BD.setNewProgram(M); // It crashed, keep the trimmed version...
Chris Lattnerf32939b2003-04-24 23:51:38 +0000462
463 // Make sure to use basic block pointers that point into the now-current
464 // module, and that they don't include any deleted blocks.
465 BBs.clear();
Rafael Espindolad1e241a2010-08-10 15:46:11 +0000466 const ValueSymbolTable &GST = M->getValueSymbolTable();
Chris Lattnerf32939b2003-04-24 23:51:38 +0000467 for (unsigned i = 0, e = BlockInfo.size(); i != e; ++i) {
Rafael Espindolad1e241a2010-08-10 15:46:11 +0000468 Function *F = cast<Function>(GST.lookup(BlockInfo[i].first));
469 ValueSymbolTable &ST = F->getValueSymbolTable();
Justin Bogner8d0a0812016-09-02 01:21:37 +0000470 Value *V = ST.lookup(BlockInfo[i].second);
Owen Anderson55f1c092009-08-13 21:58:54 +0000471 if (V && V->getType() == Type::getLabelTy(V->getContext()))
Reid Spencer3aaaa0b2007-02-05 20:47:22 +0000472 BBs.push_back(cast<BasicBlock>(V));
Chris Lattnerf32939b2003-04-24 23:51:38 +0000473 }
474 return true;
475 }
Justin Bogner8d0a0812016-09-02 01:21:37 +0000476 delete M; // It didn't crash, try something else.
Chris Lattnerf32939b2003-04-24 23:51:38 +0000477 return false;
478}
479
Nick Lewycky6e090c92009-05-25 05:30:00 +0000480namespace {
Daniel Berlin271ca402016-07-27 16:13:25 +0000481/// ReduceCrashingConditionals reducer - This works by changing
482/// conditional branches to unconditional ones, then simplifying the CFG
483/// This has the effect of chopping up the CFG really fast which can reduce
484/// large functions quickly.
485///
486class ReduceCrashingConditionals : public ListReducer<const BasicBlock *> {
487 BugDriver &BD;
488 bool (*TestFn)(const BugDriver &, Module *);
489 bool Direction;
490
491public:
492 ReduceCrashingConditionals(BugDriver &bd,
493 bool (*testFn)(const BugDriver &, Module *),
494 bool Direction)
495 : BD(bd), TestFn(testFn), Direction(Direction) {}
496
497 TestResult doTest(std::vector<const BasicBlock *> &Prefix,
498 std::vector<const BasicBlock *> &Kept,
499 std::string &Error) override {
500 if (!Kept.empty() && TestBlocks(Kept))
501 return KeepSuffix;
502 if (!Prefix.empty() && TestBlocks(Prefix))
503 return KeepPrefix;
504 return NoFailure;
505 }
506
507 bool TestBlocks(std::vector<const BasicBlock *> &Prefix);
508};
509}
510
511bool ReduceCrashingConditionals::TestBlocks(
512 std::vector<const BasicBlock *> &BBs) {
513 // Clone the program to try hacking it apart...
514 ValueToValueMapTy VMap;
515 Module *M = CloneModule(BD.getProgram(), VMap).release();
516
517 // Convert list to set for fast lookup...
518 SmallPtrSet<const BasicBlock *, 8> Blocks;
Justin Bogner8d0a0812016-09-02 01:21:37 +0000519 for (const auto *BB : BBs)
Daniel Berlin271ca402016-07-27 16:13:25 +0000520 Blocks.insert(cast<BasicBlock>(VMap[BB]));
521
522 outs() << "Checking for crash with changing conditionals to always jump to "
523 << (Direction ? "true" : "false") << ":";
524 unsigned NumPrint = Blocks.size();
525 if (NumPrint > 10)
526 NumPrint = 10;
527 for (unsigned i = 0, e = NumPrint; i != e; ++i)
528 outs() << " " << BBs[i]->getName();
529 if (NumPrint < Blocks.size())
530 outs() << "... <" << Blocks.size() << " total>";
531 outs() << ": ";
532
533 // Loop over and delete any hack up any blocks that are not listed...
Justin Bogner8d0a0812016-09-02 01:21:37 +0000534 for (auto &F : *M)
Daniel Berlin271ca402016-07-27 16:13:25 +0000535 for (auto &BB : F)
536 if (!Blocks.count(&BB)) {
537 auto *BR = dyn_cast<BranchInst>(BB.getTerminator());
538 if (!BR || !BR->isConditional())
539 continue;
540 if (Direction)
541 BR->setCondition(ConstantInt::getTrue(BR->getContext()));
542 else
543 BR->setCondition(ConstantInt::getFalse(BR->getContext()));
544 }
545
546 // The following may destroy some blocks, so we save them first
547 std::vector<std::pair<std::string, std::string>> BlockInfo;
548
549 for (const BasicBlock *BB : Blocks)
550 BlockInfo.emplace_back(BB->getParent()->getName(), BB->getName());
551
552 SmallVector<BasicBlock *, 16> ToProcess;
Justin Bogner8d0a0812016-09-02 01:21:37 +0000553 for (auto &F : *M) {
Daniel Berlin271ca402016-07-27 16:13:25 +0000554 for (auto &BB : F)
555 if (!Blocks.count(&BB))
556 ToProcess.push_back(&BB);
557 simpleSimplifyCfg(F, ToProcess);
558 ToProcess.clear();
559 }
560 // Verify we didn't break anything
561 std::vector<std::string> Passes;
562 Passes.push_back("verify");
563 std::unique_ptr<Module> New = BD.runPassesOn(M, Passes);
564 delete M;
565 if (!New) {
566 errs() << "verify failed!\n";
567 exit(1);
568 }
569 M = New.release();
570
571 // Try running on the hacked up program...
572 if (TestFn(BD, M)) {
573 BD.setNewProgram(M); // It crashed, keep the trimmed version...
574
575 // Make sure to use basic block pointers that point into the now-current
576 // module, and that they don't include any deleted blocks.
577 BBs.clear();
578 const ValueSymbolTable &GST = M->getValueSymbolTable();
579 for (auto &BI : BlockInfo) {
580 auto *F = cast<Function>(GST.lookup(BI.first));
581 ValueSymbolTable &ST = F->getValueSymbolTable();
582 Value *V = ST.lookup(BI.second);
583 if (V && V->getType() == Type::getLabelTy(V->getContext()))
584 BBs.push_back(cast<BasicBlock>(V));
585 }
586 return true;
587 }
588 delete M; // It didn't crash, try something else.
589 return false;
590}
591
592namespace {
Daniel Berlin60606262016-07-28 22:29:25 +0000593/// SimplifyCFG reducer - This works by calling SimplifyCFG on each basic block
594/// in the program.
595
596class ReduceSimplifyCFG : public ListReducer<const BasicBlock *> {
597 BugDriver &BD;
598 bool (*TestFn)(const BugDriver &, Module *);
599 TargetTransformInfo TTI;
Justin Bogner8d0a0812016-09-02 01:21:37 +0000600
Daniel Berlin60606262016-07-28 22:29:25 +0000601public:
Justin Bogner8d0a0812016-09-02 01:21:37 +0000602 ReduceSimplifyCFG(BugDriver &bd, bool (*testFn)(const BugDriver &, Module *))
603 : BD(bd), TestFn(testFn), TTI(bd.getProgram()->getDataLayout()) {}
Daniel Berlin60606262016-07-28 22:29:25 +0000604
605 TestResult doTest(std::vector<const BasicBlock *> &Prefix,
606 std::vector<const BasicBlock *> &Kept,
607 std::string &Error) override {
608 if (!Kept.empty() && TestBlocks(Kept))
609 return KeepSuffix;
610 if (!Prefix.empty() && TestBlocks(Prefix))
611 return KeepPrefix;
612 return NoFailure;
613 }
614
615 bool TestBlocks(std::vector<const BasicBlock *> &Prefix);
616};
617}
618
Justin Bogner8d0a0812016-09-02 01:21:37 +0000619bool ReduceSimplifyCFG::TestBlocks(std::vector<const BasicBlock *> &BBs) {
Daniel Berlin60606262016-07-28 22:29:25 +0000620 // Clone the program to try hacking it apart...
621 ValueToValueMapTy VMap;
622 Module *M = CloneModule(BD.getProgram(), VMap).release();
623
624 // Convert list to set for fast lookup...
625 SmallPtrSet<const BasicBlock *, 8> Blocks;
Justin Bogner8d0a0812016-09-02 01:21:37 +0000626 for (const auto *BB : BBs)
Daniel Berlin60606262016-07-28 22:29:25 +0000627 Blocks.insert(cast<BasicBlock>(VMap[BB]));
628
629 outs() << "Checking for crash with CFG simplifying:";
630 unsigned NumPrint = Blocks.size();
631 if (NumPrint > 10)
632 NumPrint = 10;
633 for (unsigned i = 0, e = NumPrint; i != e; ++i)
634 outs() << " " << BBs[i]->getName();
635 if (NumPrint < Blocks.size())
636 outs() << "... <" << Blocks.size() << " total>";
637 outs() << ": ";
638
Justin Bogner8d0a0812016-09-02 01:21:37 +0000639 // The following may destroy some blocks, so we save them first
Daniel Berlin60606262016-07-28 22:29:25 +0000640 std::vector<std::pair<std::string, std::string>> BlockInfo;
641
642 for (const BasicBlock *BB : Blocks)
643 BlockInfo.emplace_back(BB->getParent()->getName(), BB->getName());
644
Daniel Berlin60606262016-07-28 22:29:25 +0000645 // Loop over and delete any hack up any blocks that are not listed...
Justin Bogner8d0a0812016-09-02 01:21:37 +0000646 for (auto &F : *M)
647 // Loop over all of the basic blocks and remove them if they are unneeded.
648 for (Function::iterator BBIt = F.begin(); BBIt != F.end();) {
649 if (!Blocks.count(&*BBIt)) {
650 ++BBIt;
651 continue;
652 }
653 SimplifyCFG(&*BBIt++, TTI, 1);
654 }
Daniel Berlin60606262016-07-28 22:29:25 +0000655 // Verify we didn't break anything
656 std::vector<std::string> Passes;
657 Passes.push_back("verify");
658 std::unique_ptr<Module> New = BD.runPassesOn(M, Passes);
659 delete M;
660 if (!New) {
661 errs() << "verify failed!\n";
662 exit(1);
663 }
664 M = New.release();
665
666 // Try running on the hacked up program...
667 if (TestFn(BD, M)) {
668 BD.setNewProgram(M); // It crashed, keep the trimmed version...
669
670 // Make sure to use basic block pointers that point into the now-current
671 // module, and that they don't include any deleted blocks.
672 BBs.clear();
673 const ValueSymbolTable &GST = M->getValueSymbolTable();
Justin Bogner8d0a0812016-09-02 01:21:37 +0000674 for (auto &BI : BlockInfo) {
Daniel Berlin60606262016-07-28 22:29:25 +0000675 auto *F = cast<Function>(GST.lookup(BI.first));
676 ValueSymbolTable &ST = F->getValueSymbolTable();
677 Value *V = ST.lookup(BI.second);
678 if (V && V->getType() == Type::getLabelTy(V->getContext()))
679 BBs.push_back(cast<BasicBlock>(V));
680 }
681 return true;
682 }
683 delete M; // It didn't crash, try something else.
684 return false;
685}
686
687namespace {
Justin Bogner8d0a0812016-09-02 01:21:37 +0000688/// ReduceCrashingInstructions reducer - This works by removing the specified
689/// non-terminator instructions and replacing them with undef.
690///
691class ReduceCrashingInstructions : public ListReducer<const Instruction *> {
692 BugDriver &BD;
693 bool (*TestFn)(const BugDriver &, Module *);
694
695public:
696 ReduceCrashingInstructions(BugDriver &bd,
697 bool (*testFn)(const BugDriver &, Module *))
Nick Lewycky6e090c92009-05-25 05:30:00 +0000698 : BD(bd), TestFn(testFn) {}
699
Justin Bogner8d0a0812016-09-02 01:21:37 +0000700 TestResult doTest(std::vector<const Instruction *> &Prefix,
701 std::vector<const Instruction *> &Kept,
702 std::string &Error) override {
703 if (!Kept.empty() && TestInsts(Kept))
704 return KeepSuffix;
705 if (!Prefix.empty() && TestInsts(Prefix))
706 return KeepPrefix;
707 return NoFailure;
708 }
Nick Lewycky6e090c92009-05-25 05:30:00 +0000709
Justin Bogner8d0a0812016-09-02 01:21:37 +0000710 bool TestInsts(std::vector<const Instruction *> &Prefix);
711};
Nick Lewycky6e090c92009-05-25 05:30:00 +0000712}
713
Justin Bogner8d0a0812016-09-02 01:21:37 +0000714bool ReduceCrashingInstructions::TestInsts(
715 std::vector<const Instruction *> &Insts) {
Nick Lewycky6e090c92009-05-25 05:30:00 +0000716 // Clone the program to try hacking it apart...
Rafael Espindola229e38f2010-10-13 01:36:30 +0000717 ValueToValueMapTy VMap;
Rafael Espindolacab951d2015-12-08 23:57:17 +0000718 Module *M = CloneModule(BD.getProgram(), VMap).release();
Nick Lewycky6e090c92009-05-25 05:30:00 +0000719
720 // Convert list to set for fast lookup...
Justin Bogner8d0a0812016-09-02 01:21:37 +0000721 SmallPtrSet<Instruction *, 32> Instructions;
Nick Lewycky6e090c92009-05-25 05:30:00 +0000722 for (unsigned i = 0, e = Insts.size(); i != e; ++i) {
723 assert(!isa<TerminatorInst>(Insts[i]));
Devang Patel0dc3c2d2010-06-24 00:33:28 +0000724 Instructions.insert(cast<Instruction>(VMap[Insts[i]]));
Nick Lewycky6e090c92009-05-25 05:30:00 +0000725 }
726
Dan Gohmanee051522009-07-16 15:30:09 +0000727 outs() << "Checking for crash with only " << Instructions.size();
Nick Lewycky6e090c92009-05-25 05:30:00 +0000728 if (Instructions.size() == 1)
Dan Gohmanee051522009-07-16 15:30:09 +0000729 outs() << " instruction: ";
Nick Lewycky6e090c92009-05-25 05:30:00 +0000730 else
Dan Gohmanee051522009-07-16 15:30:09 +0000731 outs() << " instructions: ";
Nick Lewycky6e090c92009-05-25 05:30:00 +0000732
733 for (Module::iterator MI = M->begin(), ME = M->end(); MI != ME; ++MI)
734 for (Function::iterator FI = MI->begin(), FE = MI->end(); FI != FE; ++FI)
735 for (BasicBlock::iterator I = FI->begin(), E = FI->end(); I != E;) {
Duncan P. N. Exon Smith306d16e2015-10-20 19:36:39 +0000736 Instruction *Inst = &*I++;
Eli Friedmand4e02a52011-11-01 04:40:56 +0000737 if (!Instructions.count(Inst) && !isa<TerminatorInst>(Inst) &&
Philip Reames29e641c2016-06-29 00:15:35 +0000738 !Inst->isEHPad() && !Inst->getType()->isTokenTy()) {
739 if (!Inst->getType()->isVoidTy())
Nick Lewycky6e090c92009-05-25 05:30:00 +0000740 Inst->replaceAllUsesWith(UndefValue::get(Inst->getType()));
741 Inst->eraseFromParent();
742 }
743 }
744
745 // Verify that this is still valid.
Chandler Carruth30d69c22015-02-13 10:01:29 +0000746 legacy::PassManager Passes;
Nick Lewycky6e090c92009-05-25 05:30:00 +0000747 Passes.add(createVerifierPass());
748 Passes.run(*M);
749
750 // Try running on the hacked up program...
751 if (TestFn(BD, M)) {
Justin Bogner8d0a0812016-09-02 01:21:37 +0000752 BD.setNewProgram(M); // It crashed, keep the trimmed version...
Nick Lewycky6e090c92009-05-25 05:30:00 +0000753
754 // Make sure to use instruction pointers that point into the now-current
755 // module, and that they don't include any deleted blocks.
756 Insts.clear();
Craig Topper46276792014-08-24 23:23:06 +0000757 for (Instruction *Inst : Instructions)
758 Insts.push_back(Inst);
Nick Lewycky6e090c92009-05-25 05:30:00 +0000759 return true;
760 }
Justin Bogner8d0a0812016-09-02 01:21:37 +0000761 delete M; // It didn't crash, try something else.
Nick Lewycky6e090c92009-05-25 05:30:00 +0000762 return false;
763}
764
Keno Fischer34ca8312015-11-06 00:12:50 +0000765namespace {
766// Reduce the list of Named Metadata nodes. We keep this as a list of
767// names to avoid having to convert back and forth every time.
768class ReduceCrashingNamedMD : public ListReducer<std::string> {
769 BugDriver &BD;
770 bool (*TestFn)(const BugDriver &, Module *);
771
772public:
773 ReduceCrashingNamedMD(BugDriver &bd,
774 bool (*testFn)(const BugDriver &, Module *))
775 : BD(bd), TestFn(testFn) {}
776
777 TestResult doTest(std::vector<std::string> &Prefix,
778 std::vector<std::string> &Kept,
779 std::string &Error) override {
780 if (!Kept.empty() && TestNamedMDs(Kept))
781 return KeepSuffix;
782 if (!Prefix.empty() && TestNamedMDs(Prefix))
783 return KeepPrefix;
784 return NoFailure;
785 }
786
787 bool TestNamedMDs(std::vector<std::string> &NamedMDs);
788};
789}
790
791bool ReduceCrashingNamedMD::TestNamedMDs(std::vector<std::string> &NamedMDs) {
792
793 ValueToValueMapTy VMap;
Rafael Espindolacab951d2015-12-08 23:57:17 +0000794 Module *M = CloneModule(BD.getProgram(), VMap).release();
Keno Fischer34ca8312015-11-06 00:12:50 +0000795
796 outs() << "Checking for crash with only these named metadata nodes:";
797 unsigned NumPrint = std::min<size_t>(NamedMDs.size(), 10);
798 for (unsigned i = 0, e = NumPrint; i != e; ++i)
799 outs() << " " << NamedMDs[i];
800 if (NumPrint < NamedMDs.size())
801 outs() << "... <" << NamedMDs.size() << " total>";
802 outs() << ": ";
803
804 // Make a StringMap for faster lookup
805 StringSet<> Names;
806 for (const std::string &Name : NamedMDs)
807 Names.insert(Name);
808
809 // First collect all the metadata to delete in a vector, then
810 // delete them all at once to avoid invalidating the iterator
811 std::vector<NamedMDNode *> ToDelete;
812 ToDelete.reserve(M->named_metadata_size() - Names.size());
813 for (auto &NamedMD : M->named_metadata())
Adrian Prantlfaebbb02016-03-28 21:06:26 +0000814 // Always keep a nonempty llvm.dbg.cu because the Verifier would complain.
815 if (!Names.count(NamedMD.getName()) &&
816 (!(NamedMD.getName() == "llvm.dbg.cu" && NamedMD.getNumOperands() > 0)))
Keno Fischer34ca8312015-11-06 00:12:50 +0000817 ToDelete.push_back(&NamedMD);
818
819 for (auto *NamedMD : ToDelete)
820 NamedMD->eraseFromParent();
821
822 // Verify that this is still valid.
823 legacy::PassManager Passes;
824 Passes.add(createVerifierPass());
825 Passes.run(*M);
826
827 // Try running on the hacked up program...
828 if (TestFn(BD, M)) {
829 BD.setNewProgram(M); // It crashed, keep the trimmed version...
830 return true;
831 }
832 delete M; // It didn't crash, try something else.
833 return false;
834}
835
836namespace {
837// Reduce the list of operands to named metadata nodes
838class ReduceCrashingNamedMDOps : public ListReducer<const MDNode *> {
839 BugDriver &BD;
840 bool (*TestFn)(const BugDriver &, Module *);
841
842public:
843 ReduceCrashingNamedMDOps(BugDriver &bd,
844 bool (*testFn)(const BugDriver &, Module *))
845 : BD(bd), TestFn(testFn) {}
846
847 TestResult doTest(std::vector<const MDNode *> &Prefix,
848 std::vector<const MDNode *> &Kept,
849 std::string &Error) override {
850 if (!Kept.empty() && TestNamedMDOps(Kept))
851 return KeepSuffix;
852 if (!Prefix.empty() && TestNamedMDOps(Prefix))
853 return KeepPrefix;
854 return NoFailure;
855 }
856
857 bool TestNamedMDOps(std::vector<const MDNode *> &NamedMDOps);
858};
859}
860
861bool ReduceCrashingNamedMDOps::TestNamedMDOps(
862 std::vector<const MDNode *> &NamedMDOps) {
863 // Convert list to set for fast lookup...
Matthias Braunb30f2f512016-01-30 01:24:31 +0000864 SmallPtrSet<const MDNode *, 32> OldMDNodeOps;
Keno Fischer34ca8312015-11-06 00:12:50 +0000865 for (unsigned i = 0, e = NamedMDOps.size(); i != e; ++i) {
866 OldMDNodeOps.insert(NamedMDOps[i]);
867 }
868
869 outs() << "Checking for crash with only " << OldMDNodeOps.size();
870 if (OldMDNodeOps.size() == 1)
871 outs() << " named metadata operand: ";
872 else
873 outs() << " named metadata operands: ";
874
875 ValueToValueMapTy VMap;
Rafael Espindolacab951d2015-12-08 23:57:17 +0000876 Module *M = CloneModule(BD.getProgram(), VMap).release();
Keno Fischer34ca8312015-11-06 00:12:50 +0000877
878 // This is a little wasteful. In the future it might be good if we could have
879 // these dropped during cloning.
880 for (auto &NamedMD : BD.getProgram()->named_metadata()) {
881 // Drop the old one and create a new one
882 M->eraseNamedMetadata(M->getNamedMetadata(NamedMD.getName()));
883 NamedMDNode *NewNamedMDNode =
884 M->getOrInsertNamedMetadata(NamedMD.getName());
885 for (MDNode *op : NamedMD.operands())
886 if (OldMDNodeOps.count(op))
887 NewNamedMDNode->addOperand(cast<MDNode>(MapMetadata(op, VMap)));
888 }
889
890 // Verify that this is still valid.
891 legacy::PassManager Passes;
892 Passes.add(createVerifierPass());
893 Passes.run(*M);
894
895 // Try running on the hacked up program...
896 if (TestFn(BD, M)) {
897 // Make sure to use instruction pointers that point into the now-current
898 // module, and that they don't include any deleted blocks.
899 NamedMDOps.clear();
900 for (const MDNode *Node : OldMDNodeOps)
Duncan P. N. Exon Smithda4a56d2016-04-02 17:04:38 +0000901 NamedMDOps.push_back(cast<MDNode>(*VMap.getMappedMD(Node)));
Keno Fischer34ca8312015-11-06 00:12:50 +0000902
903 BD.setNewProgram(M); // It crashed, keep the trimmed version...
904 return true;
905 }
906 delete M; // It didn't crash, try something else.
907 return false;
908}
909
Philip Reames1c232f92016-06-29 00:43:18 +0000910static void ReduceGlobalInitializers(BugDriver &BD,
Justin Bogner8d0a0812016-09-02 01:21:37 +0000911 bool (*TestFn)(const BugDriver &,
912 Module *),
Philip Reames1c232f92016-06-29 00:43:18 +0000913 std::string &Error) {
914 if (BD.getProgram()->global_begin() != BD.getProgram()->global_end()) {
Bill Wendling3f833432006-10-25 18:36:14 +0000915 // Now try to reduce the number of global variable initializers in the
916 // module to something small.
Rafael Espindolacab951d2015-12-08 23:57:17 +0000917 Module *M = CloneModule(BD.getProgram()).release();
Bill Wendling74a4a2a2006-10-27 20:18:06 +0000918 bool DeletedInit = false;
Misha Brukman650ba8e2005-04-22 00:00:37 +0000919
Bill Wendling74a4a2a2006-10-27 20:18:06 +0000920 for (Module::global_iterator I = M->global_begin(), E = M->global_end();
921 I != E; ++I)
922 if (I->hasInitializer()) {
Hal Finkel28ad2b42015-11-26 19:23:49 +0000923 DeleteGlobalInitializer(&*I);
Bill Wendling74a4a2a2006-10-27 20:18:06 +0000924 I->setLinkage(GlobalValue::ExternalLinkage);
Justin Lebar2a445cf2016-06-15 23:20:12 +0000925 I->setComdat(nullptr);
Bill Wendling74a4a2a2006-10-27 20:18:06 +0000926 DeletedInit = true;
927 }
Bill Wendling3f833432006-10-25 18:36:14 +0000928
Bill Wendling74a4a2a2006-10-27 20:18:06 +0000929 if (!DeletedInit) {
Justin Bogner8d0a0812016-09-02 01:21:37 +0000930 delete M; // No change made...
Bill Wendling74a4a2a2006-10-27 20:18:06 +0000931 } else {
932 // See if the program still causes a crash...
Dan Gohmanee051522009-07-16 15:30:09 +0000933 outs() << "\nChecking to see if we can delete global inits: ";
Bill Wendling3f833432006-10-25 18:36:14 +0000934
Justin Bogner8d0a0812016-09-02 01:21:37 +0000935 if (TestFn(BD, M)) { // Still crashes?
Bill Wendling74a4a2a2006-10-27 20:18:06 +0000936 BD.setNewProgram(M);
Dan Gohmanee051522009-07-16 15:30:09 +0000937 outs() << "\n*** Able to remove all global initializers!\n";
Justin Bogner8d0a0812016-09-02 01:21:37 +0000938 } else { // No longer crashes?
Dan Gohmanee051522009-07-16 15:30:09 +0000939 outs() << " - Removing all global inits hides problem!\n";
Bill Wendling74a4a2a2006-10-27 20:18:06 +0000940 delete M;
Bill Wendling3f833432006-10-25 18:36:14 +0000941
Justin Bogner8d0a0812016-09-02 01:21:37 +0000942 std::vector<GlobalVariable *> GVs;
Bill Wendling74a4a2a2006-10-27 20:18:06 +0000943
944 for (Module::global_iterator I = BD.getProgram()->global_begin(),
Justin Bogner8d0a0812016-09-02 01:21:37 +0000945 E = BD.getProgram()->global_end();
946 I != E; ++I)
Bill Wendling74a4a2a2006-10-27 20:18:06 +0000947 if (I->hasInitializer())
Duncan P. N. Exon Smith306d16e2015-10-20 19:36:39 +0000948 GVs.push_back(&*I);
Bill Wendling74a4a2a2006-10-27 20:18:06 +0000949
950 if (GVs.size() > 1 && !BugpointIsInterrupted) {
Dan Gohmanee051522009-07-16 15:30:09 +0000951 outs() << "\n*** Attempting to reduce the number of global "
Justin Bogner8d0a0812016-09-02 01:21:37 +0000952 << "variables in the testcase\n";
Bill Wendling74a4a2a2006-10-27 20:18:06 +0000953
954 unsigned OldSize = GVs.size();
Nick Lewycky6ba630b2010-04-12 05:08:25 +0000955 ReduceCrashingGlobalVariables(BD, TestFn).reduceList(GVs, Error);
Philip Reames1c232f92016-06-29 00:43:18 +0000956 assert(!Error.empty());
Bill Wendling74a4a2a2006-10-27 20:18:06 +0000957
958 if (GVs.size() < OldSize)
Rafael Espindola594994a2010-07-28 18:12:30 +0000959 BD.EmitProgressBitcode(BD.getProgram(), "reduced-global-variables");
Bill Wendling74a4a2a2006-10-27 20:18:06 +0000960 }
Bill Wendlingce3afd62006-10-27 20:22:04 +0000961 }
Chris Lattner65e5f652003-04-25 00:53:05 +0000962 }
963 }
Philip Reames1c232f92016-06-29 00:43:18 +0000964}
965
966static void ReduceInsts(BugDriver &BD,
967 bool (*TestFn)(const BugDriver &, Module *),
968 std::string &Error) {
969 // Attempt to delete instructions using bisection. This should help out nasty
970 // cases with large basic blocks where the problem is at one end.
971 if (!BugpointIsInterrupted) {
Justin Bogner8d0a0812016-09-02 01:21:37 +0000972 std::vector<const Instruction *> Insts;
Philip Reames1c232f92016-06-29 00:43:18 +0000973 for (const Function &F : *BD.getProgram())
974 for (const BasicBlock &BB : F)
975 for (const Instruction &I : BB)
976 if (!isa<TerminatorInst>(&I))
977 Insts.push_back(&I);
978
979 ReduceCrashingInstructions(BD, TestFn).reduceList(Insts, Error);
980 }
981
982 unsigned Simplification = 2;
983 do {
984 if (BugpointIsInterrupted)
985 return;
986 --Simplification;
987 outs() << "\n*** Attempting to reduce testcase by deleting instruc"
988 << "tions: Simplification Level #" << Simplification << '\n';
989
990 // Now that we have deleted the functions that are unnecessary for the
991 // program, try to remove instructions that are not necessary to cause the
992 // crash. To do this, we loop through all of the instructions in the
993 // remaining functions, deleting them (replacing any values produced with
994 // nulls), and then running ADCE and SimplifyCFG. If the transformed input
995 // still triggers failure, keep deleting until we cannot trigger failure
996 // anymore.
997 //
998 unsigned InstructionsToSkipBeforeDeleting = 0;
999 TryAgain:
1000
1001 // Loop over all of the (non-terminator) instructions remaining in the
1002 // function, attempting to delete them.
1003 unsigned CurInstructionNum = 0;
1004 for (Module::const_iterator FI = BD.getProgram()->begin(),
Justin Bogner8d0a0812016-09-02 01:21:37 +00001005 E = BD.getProgram()->end();
1006 FI != E; ++FI)
Philip Reames1c232f92016-06-29 00:43:18 +00001007 if (!FI->isDeclaration())
1008 for (Function::const_iterator BI = FI->begin(), E = FI->end(); BI != E;
1009 ++BI)
1010 for (BasicBlock::const_iterator I = BI->begin(), E = --BI->end();
1011 I != E; ++I, ++CurInstructionNum) {
1012 if (InstructionsToSkipBeforeDeleting) {
1013 --InstructionsToSkipBeforeDeleting;
1014 } else {
1015 if (BugpointIsInterrupted)
1016 return;
1017
1018 if (I->isEHPad() || I->getType()->isTokenTy())
1019 continue;
1020
1021 outs() << "Checking instruction: " << *I;
1022 std::unique_ptr<Module> M =
1023 BD.deleteInstructionFromProgram(&*I, Simplification);
1024
1025 // Find out if the pass still crashes on this pass...
1026 if (TestFn(BD, M.get())) {
1027 // Yup, it does, we delete the old module, and continue trying
1028 // to reduce the testcase...
1029 BD.setNewProgram(M.release());
1030 InstructionsToSkipBeforeDeleting = CurInstructionNum;
Justin Bogner8d0a0812016-09-02 01:21:37 +00001031 goto TryAgain; // I wish I had a multi-level break here!
Philip Reames1c232f92016-06-29 00:43:18 +00001032 }
1033 }
1034 }
1035
1036 if (InstructionsToSkipBeforeDeleting) {
1037 InstructionsToSkipBeforeDeleting = 0;
1038 goto TryAgain;
1039 }
1040
1041 } while (Simplification);
1042 BD.EmitProgressBitcode(BD.getProgram(), "reduced-instructions");
1043}
1044
Philip Reames1c232f92016-06-29 00:43:18 +00001045/// DebugACrash - Given a predicate that determines whether a component crashes
1046/// on a program, try to destructively reduce the program while still keeping
1047/// the predicate true.
1048static bool DebugACrash(BugDriver &BD,
1049 bool (*TestFn)(const BugDriver &, Module *),
1050 std::string &Error) {
1051 // See if we can get away with nuking some of the global variable initializers
1052 // in the program...
1053 if (!NoGlobalRM)
1054 ReduceGlobalInitializers(BD, TestFn, Error);
Misha Brukman650ba8e2005-04-22 00:00:37 +00001055
Chris Lattner1d080f22003-04-24 22:24:58 +00001056 // Now try to reduce the number of functions in the module to something small.
Justin Bogner8d0a0812016-09-02 01:21:37 +00001057 std::vector<Function *> Functions;
Duncan P. N. Exon Smith306d16e2015-10-20 19:36:39 +00001058 for (Function &F : *BD.getProgram())
1059 if (!F.isDeclaration())
1060 Functions.push_back(&F);
Chris Lattner73a6bdd2002-11-20 22:28:10 +00001061
Chris Lattnerbeb01fa2005-08-02 02:16:17 +00001062 if (Functions.size() > 1 && !BugpointIsInterrupted) {
Dan Gohmanee051522009-07-16 15:30:09 +00001063 outs() << "\n*** Attempting to reduce the number of functions "
Justin Bogner8d0a0812016-09-02 01:21:37 +00001064 "in the testcase\n";
Chris Lattner73a6bdd2002-11-20 22:28:10 +00001065
Chris Lattner8bda4c42004-02-18 23:26:28 +00001066 unsigned OldSize = Functions.size();
Nick Lewycky6ba630b2010-04-12 05:08:25 +00001067 ReduceCrashingFunctions(BD, TestFn).reduceList(Functions, Error);
Chris Lattner73a6bdd2002-11-20 22:28:10 +00001068
Chris Lattnerbeb01fa2005-08-02 02:16:17 +00001069 if (Functions.size() < OldSize)
Rafael Espindola594994a2010-07-28 18:12:30 +00001070 BD.EmitProgressBitcode(BD.getProgram(), "reduced-function");
Chris Lattner73a6bdd2002-11-20 22:28:10 +00001071 }
1072
Daniel Berlin271ca402016-07-27 16:13:25 +00001073 // Attempt to change conditional branches into unconditional branches to
1074 // eliminate blocks.
1075 if (!DisableSimplifyCFG && !BugpointIsInterrupted) {
Justin Bogner8d0a0812016-09-02 01:21:37 +00001076 std::vector<const BasicBlock *> Blocks;
Daniel Berlin271ca402016-07-27 16:13:25 +00001077 for (Function &F : *BD.getProgram())
1078 for (BasicBlock &BB : F)
1079 Blocks.push_back(&BB);
1080 unsigned OldSize = Blocks.size();
1081 ReduceCrashingConditionals(BD, TestFn, true).reduceList(Blocks, Error);
1082 ReduceCrashingConditionals(BD, TestFn, false).reduceList(Blocks, Error);
1083 if (Blocks.size() < OldSize)
1084 BD.EmitProgressBitcode(BD.getProgram(), "reduced-conditionals");
1085 }
1086
Chris Lattnerf32939b2003-04-24 23:51:38 +00001087 // Attempt to delete entire basic blocks at a time to speed up
1088 // convergence... this actually works by setting the terminator of the blocks
1089 // to a return instruction then running simplifycfg, which can potentially
1090 // shrinks the code dramatically quickly
1091 //
Chris Lattnerbeb01fa2005-08-02 02:16:17 +00001092 if (!DisableSimplifyCFG && !BugpointIsInterrupted) {
Justin Bogner8d0a0812016-09-02 01:21:37 +00001093 std::vector<const BasicBlock *> Blocks;
Duncan P. N. Exon Smith306d16e2015-10-20 19:36:39 +00001094 for (Function &F : *BD.getProgram())
1095 for (BasicBlock &BB : F)
1096 Blocks.push_back(&BB);
Torok Edwin6ee6f732009-05-24 09:40:47 +00001097 unsigned OldSize = Blocks.size();
Nick Lewycky6ba630b2010-04-12 05:08:25 +00001098 ReduceCrashingBlocks(BD, TestFn).reduceList(Blocks, Error);
Torok Edwin6ee6f732009-05-24 09:40:47 +00001099 if (Blocks.size() < OldSize)
Rafael Espindola594994a2010-07-28 18:12:30 +00001100 BD.EmitProgressBitcode(BD.getProgram(), "reduced-blocks");
Chris Lattnerd1e2aae2003-08-05 15:51:05 +00001101 }
Chris Lattnerd4e04742002-12-23 23:49:59 +00001102
Daniel Berlin60606262016-07-28 22:29:25 +00001103 if (!DisableSimplifyCFG & !BugpointIsInterrupted) {
Justin Bogner8d0a0812016-09-02 01:21:37 +00001104 std::vector<const BasicBlock *> Blocks;
Daniel Berlin60606262016-07-28 22:29:25 +00001105 for (Function &F : *BD.getProgram())
1106 for (BasicBlock &BB : F)
1107 Blocks.push_back(&BB);
1108 unsigned OldSize = Blocks.size();
1109 ReduceSimplifyCFG(BD, TestFn).reduceList(Blocks, Error);
1110 if (Blocks.size() < OldSize)
1111 BD.EmitProgressBitcode(BD.getProgram(), "reduced-simplifycfg");
1112 }
Justin Bogner8d0a0812016-09-02 01:21:37 +00001113
Nick Lewycky6e090c92009-05-25 05:30:00 +00001114 // Attempt to delete instructions using bisection. This should help out nasty
1115 // cases with large basic blocks where the problem is at one end.
Philip Reames1c232f92016-06-29 00:43:18 +00001116 if (!BugpointIsInterrupted)
1117 ReduceInsts(BD, TestFn, Error);
Keno Fischer34ca8312015-11-06 00:12:50 +00001118
1119 if (!NoNamedMDRM) {
Keno Fischer34ca8312015-11-06 00:12:50 +00001120 if (!BugpointIsInterrupted) {
1121 // Try to reduce the amount of global metadata (particularly debug info),
1122 // by dropping global named metadata that anchors them
1123 outs() << "\n*** Attempting to remove named metadata: ";
1124 std::vector<std::string> NamedMDNames;
1125 for (auto &NamedMD : BD.getProgram()->named_metadata())
1126 NamedMDNames.push_back(NamedMD.getName().str());
1127 ReduceCrashingNamedMD(BD, TestFn).reduceList(NamedMDNames, Error);
1128 }
1129
1130 if (!BugpointIsInterrupted) {
1131 // Now that we quickly dropped all the named metadata that doesn't
1132 // contribute to the crash, bisect the operands of the remaining ones
1133 std::vector<const MDNode *> NamedMDOps;
1134 for (auto &NamedMD : BD.getProgram()->named_metadata())
Keno Fischer256df862015-11-06 00:45:47 +00001135 for (auto op : NamedMD.operands())
1136 NamedMDOps.push_back(op);
Keno Fischer34ca8312015-11-06 00:12:50 +00001137 ReduceCrashingNamedMDOps(BD, TestFn).reduceList(NamedMDOps, Error);
1138 }
Philip Reamesac285cc2016-06-29 00:10:39 +00001139 BD.EmitProgressBitcode(BD.getProgram(), "reduced-named-md");
Keno Fischer34ca8312015-11-06 00:12:50 +00001140 }
1141
Chris Lattner514c02e2003-02-28 16:13:20 +00001142 // Try to clean up the testcase by running funcresolve and globaldce...
Chris Lattnerbeb01fa2005-08-02 02:16:17 +00001143 if (!BugpointIsInterrupted) {
Dan Gohmanee051522009-07-16 15:30:09 +00001144 outs() << "\n*** Attempting to perform final cleanups: ";
Rafael Espindolacab951d2015-12-08 23:57:17 +00001145 Module *M = CloneModule(BD.getProgram()).release();
Rafael Espindola28b351a2014-08-26 17:19:03 +00001146 M = BD.performFinalCleanups(M, true).release();
Misha Brukman650ba8e2005-04-22 00:00:37 +00001147
Chris Lattnerbeb01fa2005-08-02 02:16:17 +00001148 // Find out if the pass still crashes on the cleaned up program...
1149 if (TestFn(BD, M)) {
Justin Bogner8d0a0812016-09-02 01:21:37 +00001150 BD.setNewProgram(M); // Yup, it does, keep the reduced version...
Chris Lattnerbeb01fa2005-08-02 02:16:17 +00001151 } else {
1152 delete M;
1153 }
Chris Lattner514c02e2003-02-28 16:13:20 +00001154 }
1155
Rafael Espindola594994a2010-07-28 18:12:30 +00001156 BD.EmitProgressBitcode(BD.getProgram(), "reduced-simplified");
Chris Lattner514c02e2003-02-28 16:13:20 +00001157
Misha Brukman650ba8e2005-04-22 00:00:37 +00001158 return false;
Chris Lattner73a6bdd2002-11-20 22:28:10 +00001159}
Brian Gaeke960707c2003-11-11 22:41:34 +00001160
Rafael Espindolad1c7ef42010-08-05 03:00:22 +00001161static bool TestForOptimizerCrash(const BugDriver &BD, Module *M) {
Philip Reamese5b56022016-06-29 03:01:13 +00001162 return BD.runPasses(M, BD.getPassesToRun());
Chris Lattner8bda4c42004-02-18 23:26:28 +00001163}
Chris Lattneread1dff2004-02-18 21:02:04 +00001164
Chris Lattner8bda4c42004-02-18 23:26:28 +00001165/// debugOptimizerCrash - This method is called when some pass crashes on input.
1166/// It attempts to prune down the testcase to something reasonable, and figure
1167/// out exactly which pass is crashing.
1168///
Patrick Jenkinsc46c0382006-08-15 16:40:49 +00001169bool BugDriver::debugOptimizerCrash(const std::string &ID) {
Dan Gohmanee051522009-07-16 15:30:09 +00001170 outs() << "\n*** Debugging optimizer crash!\n";
Chris Lattner8bda4c42004-02-18 23:26:28 +00001171
Nick Lewycky6ba630b2010-04-12 05:08:25 +00001172 std::string Error;
Chris Lattner8bda4c42004-02-18 23:26:28 +00001173 // Reduce the list of passes which causes the optimizer to crash...
JF Bastienf87e20d2015-04-20 23:42:22 +00001174 if (!BugpointIsInterrupted && !DontReducePassList)
Nick Lewycky6ba630b2010-04-12 05:08:25 +00001175 ReducePassList(*this).reduceList(PassesToRun, Error);
1176 assert(Error.empty());
Chris Lattner8bda4c42004-02-18 23:26:28 +00001177
Dan Gohmanee051522009-07-16 15:30:09 +00001178 outs() << "\n*** Found crashing pass"
1179 << (PassesToRun.size() == 1 ? ": " : "es: ")
1180 << getPassesString(PassesToRun) << '\n';
Chris Lattner8bda4c42004-02-18 23:26:28 +00001181
Rafael Espindola594994a2010-07-28 18:12:30 +00001182 EmitProgressBitcode(Program, ID);
Chris Lattner8bda4c42004-02-18 23:26:28 +00001183
Nick Lewycky6ba630b2010-04-12 05:08:25 +00001184 bool Success = DebugACrash(*this, TestForOptimizerCrash, Error);
1185 assert(Error.empty());
1186 return Success;
Chris Lattner8bda4c42004-02-18 23:26:28 +00001187}
1188
Rafael Espindolad1c7ef42010-08-05 03:00:22 +00001189static bool TestForCodeGenCrash(const BugDriver &BD, Module *M) {
Nick Lewycky6ba630b2010-04-12 05:08:25 +00001190 std::string Error;
1191 BD.compileProgram(M, &Error);
1192 if (!Error.empty()) {
Sebastian Pop8f7d0192016-07-15 23:15:06 +00001193 if (VerboseErrors)
1194 errs() << Error << "\n";
1195 else
1196 errs() << "<crash>\n";
Justin Bogner8d0a0812016-09-02 01:21:37 +00001197 return true; // Tool is still crashing.
Chris Lattner8bda4c42004-02-18 23:26:28 +00001198 }
Nick Lewycky6ba630b2010-04-12 05:08:25 +00001199 errs() << '\n';
1200 return false;
Chris Lattner8bda4c42004-02-18 23:26:28 +00001201}
Chris Lattneread1dff2004-02-18 21:02:04 +00001202
1203/// debugCodeGeneratorCrash - This method is called when the code generator
1204/// crashes on an input. It attempts to reduce the input as much as possible
1205/// while still causing the code generator to crash.
Nick Lewycky6ba630b2010-04-12 05:08:25 +00001206bool BugDriver::debugCodeGeneratorCrash(std::string &Error) {
Dan Gohmand8db3762009-07-15 16:35:29 +00001207 errs() << "*** Debugging code generator crash!\n";
Chris Lattneread1dff2004-02-18 21:02:04 +00001208
Nick Lewycky6ba630b2010-04-12 05:08:25 +00001209 return DebugACrash(*this, TestForCodeGenCrash, Error);
Chris Lattneread1dff2004-02-18 21:02:04 +00001210}