Chris Lattner | 73a6bdd | 2002-11-20 22:28:10 +0000 | [diff] [blame] | 1 | //===- CrashDebugger.cpp - Debug compilation crashes ----------------------===// |
Misha Brukman | 650ba8e | 2005-04-22 00:00:37 +0000 | [diff] [blame] | 2 | // |
John Criswell | 09344dc | 2003-10-20 17:47:21 +0000 | [diff] [blame] | 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 345353d | 2007-12-29 20:44:31 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Misha Brukman | 650ba8e | 2005-04-22 00:00:37 +0000 | [diff] [blame] | 7 | // |
John Criswell | 09344dc | 2003-10-20 17:47:21 +0000 | [diff] [blame] | 8 | //===----------------------------------------------------------------------===// |
Chris Lattner | 73a6bdd | 2002-11-20 22:28:10 +0000 | [diff] [blame] | 9 | // |
| 10 | // This file defines the bugpoint internals that narrow down compilation crashes |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #include "BugDriver.h" |
Chris Lattner | 1d080f2 | 2003-04-24 22:24:58 +0000 | [diff] [blame] | 15 | #include "ListReducer.h" |
Chandler Carruth | 4d88a1c | 2012-12-04 10:44:52 +0000 | [diff] [blame] | 16 | #include "ToolRunner.h" |
| 17 | #include "llvm/ADT/SmallPtrSet.h" |
Keno Fischer | 34ca831 | 2015-11-06 00:12:50 +0000 | [diff] [blame] | 18 | #include "llvm/ADT/StringSet.h" |
Chandler Carruth | 1305dc3 | 2014-03-04 11:45:46 +0000 | [diff] [blame] | 19 | #include "llvm/IR/CFG.h" |
Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 20 | #include "llvm/IR/Constants.h" |
| 21 | #include "llvm/IR/DerivedTypes.h" |
| 22 | #include "llvm/IR/Instructions.h" |
Chandler Carruth | 30d69c2 | 2015-02-13 10:01:29 +0000 | [diff] [blame] | 23 | #include "llvm/IR/LegacyPassManager.h" |
Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 24 | #include "llvm/IR/Module.h" |
| 25 | #include "llvm/IR/ValueSymbolTable.h" |
Chandler Carruth | 5ad5f15 | 2014-01-13 09:26:24 +0000 | [diff] [blame] | 26 | #include "llvm/IR/Verifier.h" |
Misha Brukman | 0c2305b | 2003-08-07 21:19:30 +0000 | [diff] [blame] | 27 | #include "llvm/Pass.h" |
Chandler Carruth | 4d88a1c | 2012-12-04 10:44:52 +0000 | [diff] [blame] | 28 | #include "llvm/Support/CommandLine.h" |
| 29 | #include "llvm/Support/FileUtilities.h" |
Chris Lattner | f32939b | 2003-04-24 23:51:38 +0000 | [diff] [blame] | 30 | #include "llvm/Transforms/Scalar.h" |
Chris Lattner | 1d080f2 | 2003-04-24 22:24:58 +0000 | [diff] [blame] | 31 | #include "llvm/Transforms/Utils/Cloning.h" |
Chris Lattner | 1d080f2 | 2003-04-24 22:24:58 +0000 | [diff] [blame] | 32 | #include <set> |
Chris Lattner | 2f1aa11 | 2004-01-14 03:38:37 +0000 | [diff] [blame] | 33 | using namespace llvm; |
Chris Lattner | 73a6bdd | 2002-11-20 22:28:10 +0000 | [diff] [blame] | 34 | |
Andrew Lenharth | ef9aa12 | 2006-03-05 22:21:36 +0000 | [diff] [blame] | 35 | namespace { |
| 36 | cl::opt<bool> |
| 37 | KeepMain("keep-main", |
| 38 | cl::desc("Force function reduction to keep main"), |
| 39 | cl::init(false)); |
Torok Edwin | 5bd3f7b | 2009-05-24 09:31:04 +0000 | [diff] [blame] | 40 | cl::opt<bool> |
| 41 | NoGlobalRM ("disable-global-remove", |
| 42 | cl::desc("Do not remove global variables"), |
| 43 | cl::init(false)); |
JF Bastien | f87e20d | 2015-04-20 23:42:22 +0000 | [diff] [blame] | 44 | |
| 45 | cl::opt<bool> |
| 46 | ReplaceFuncsWithNull("replace-funcs-with-null", |
| 47 | cl::desc("When stubbing functions, replace all uses will null"), |
| 48 | cl::init(false)); |
| 49 | cl::opt<bool> |
| 50 | DontReducePassList("disable-pass-list-reduction", |
| 51 | cl::desc("Skip pass list reduction steps"), |
| 52 | cl::init(false)); |
Keno Fischer | 34ca831 | 2015-11-06 00:12:50 +0000 | [diff] [blame] | 53 | |
| 54 | cl::opt<bool> NoNamedMDRM("disable-namedmd-remove", |
| 55 | cl::desc("Do not remove global named metadata"), |
| 56 | cl::init(false)); |
Sebastian Pop | 8f7d019 | 2016-07-15 23:15:06 +0000 | [diff] [blame] | 57 | cl::opt<bool> VerboseErrors("verbose-errors", |
| 58 | cl::desc("Print the output of crashing program"), |
| 59 | cl::init(false)); |
Andrew Lenharth | ef9aa12 | 2006-03-05 22:21:36 +0000 | [diff] [blame] | 60 | } |
| 61 | |
Brian Gaeke | 960707c | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 62 | namespace llvm { |
Rafael Espindola | 33e81a8 | 2010-08-08 03:55:08 +0000 | [diff] [blame] | 63 | class ReducePassList : public ListReducer<std::string> { |
Chris Lattner | 2f1aa11 | 2004-01-14 03:38:37 +0000 | [diff] [blame] | 64 | BugDriver &BD; |
| 65 | public: |
Chris Lattner | 327019b | 2004-02-18 21:24:48 +0000 | [diff] [blame] | 66 | ReducePassList(BugDriver &bd) : BD(bd) {} |
Misha Brukman | 650ba8e | 2005-04-22 00:00:37 +0000 | [diff] [blame] | 67 | |
Sylvestre Ledru | 91ce36c | 2012-09-27 10:14:43 +0000 | [diff] [blame] | 68 | // doTest - Return true iff running the "removed" passes succeeds, and |
Chris Lattner | 2f1aa11 | 2004-01-14 03:38:37 +0000 | [diff] [blame] | 69 | // running the "Kept" passes fail when run on the output of the "removed" |
| 70 | // passes. If we return true, we update the current module of bugpoint. |
| 71 | // |
Craig Topper | e56917c | 2014-03-08 08:27:28 +0000 | [diff] [blame] | 72 | TestResult doTest(std::vector<std::string> &Removed, |
| 73 | std::vector<std::string> &Kept, |
| 74 | std::string &Error) override; |
Chris Lattner | 2f1aa11 | 2004-01-14 03:38:37 +0000 | [diff] [blame] | 75 | }; |
| 76 | } |
Chris Lattner | 1d080f2 | 2003-04-24 22:24:58 +0000 | [diff] [blame] | 77 | |
Chris Lattner | 327019b | 2004-02-18 21:24:48 +0000 | [diff] [blame] | 78 | ReducePassList::TestResult |
Rafael Espindola | 33e81a8 | 2010-08-08 03:55:08 +0000 | [diff] [blame] | 79 | ReducePassList::doTest(std::vector<std::string> &Prefix, |
| 80 | std::vector<std::string> &Suffix, |
Nick Lewycky | 6ba630b | 2010-04-12 05:08:25 +0000 | [diff] [blame] | 81 | std::string &Error) { |
Rafael Espindola | bb87665 | 2013-06-17 19:33:18 +0000 | [diff] [blame] | 82 | std::string PrefixOutput; |
Craig Topper | e6cb63e | 2014-04-25 04:24:47 +0000 | [diff] [blame] | 83 | Module *OrigProgram = nullptr; |
Chris Lattner | 1d080f2 | 2003-04-24 22:24:58 +0000 | [diff] [blame] | 84 | if (!Prefix.empty()) { |
Dan Gohman | ee05152 | 2009-07-16 15:30:09 +0000 | [diff] [blame] | 85 | outs() << "Checking to see if these passes crash: " |
| 86 | << getPassesString(Prefix) << ": "; |
Rafael Espindola | bb87665 | 2013-06-17 19:33:18 +0000 | [diff] [blame] | 87 | if (BD.runPasses(BD.getProgram(), Prefix, PrefixOutput)) |
Chris Lattner | 1d080f2 | 2003-04-24 22:24:58 +0000 | [diff] [blame] | 88 | return KeepPrefix; |
Chris Lattner | a965631 | 2003-06-02 04:54:29 +0000 | [diff] [blame] | 89 | |
| 90 | OrigProgram = BD.Program; |
| 91 | |
Rafael Espindola | 28b351a | 2014-08-26 17:19:03 +0000 | [diff] [blame] | 92 | BD.Program = parseInputFile(PrefixOutput, BD.getContext()).release(); |
Craig Topper | e6cb63e | 2014-04-25 04:24:47 +0000 | [diff] [blame] | 93 | if (BD.Program == nullptr) { |
Dan Gohman | d8db376 | 2009-07-15 16:35:29 +0000 | [diff] [blame] | 94 | errs() << BD.getToolName() << ": Error reading bitcode file '" |
Rafael Espindola | bb87665 | 2013-06-17 19:33:18 +0000 | [diff] [blame] | 95 | << PrefixOutput << "'!\n"; |
Chris Lattner | a965631 | 2003-06-02 04:54:29 +0000 | [diff] [blame] | 96 | exit(1); |
| 97 | } |
Rafael Espindola | bb87665 | 2013-06-17 19:33:18 +0000 | [diff] [blame] | 98 | sys::fs::remove(PrefixOutput); |
Chris Lattner | 1d080f2 | 2003-04-24 22:24:58 +0000 | [diff] [blame] | 99 | } |
| 100 | |
Dan Gohman | ee05152 | 2009-07-16 15:30:09 +0000 | [diff] [blame] | 101 | outs() << "Checking to see if these passes crash: " |
| 102 | << getPassesString(Suffix) << ": "; |
Misha Brukman | 650ba8e | 2005-04-22 00:00:37 +0000 | [diff] [blame] | 103 | |
Rafael Espindola | 37302ea | 2010-08-05 02:16:32 +0000 | [diff] [blame] | 104 | if (BD.runPasses(BD.getProgram(), Suffix)) { |
Chris Lattner | 1d080f2 | 2003-04-24 22:24:58 +0000 | [diff] [blame] | 105 | delete OrigProgram; // The suffix crashes alone... |
| 106 | return KeepSuffix; |
| 107 | } |
| 108 | |
| 109 | // Nothing failed, restore state... |
Chris Lattner | a965631 | 2003-06-02 04:54:29 +0000 | [diff] [blame] | 110 | if (OrigProgram) { |
| 111 | delete BD.Program; |
| 112 | BD.Program = OrigProgram; |
| 113 | } |
Chris Lattner | 1d080f2 | 2003-04-24 22:24:58 +0000 | [diff] [blame] | 114 | return NoFailure; |
| 115 | } |
| 116 | |
Bill Wendling | 3f83343 | 2006-10-25 18:36:14 +0000 | [diff] [blame] | 117 | namespace { |
| 118 | /// 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 | /// |
| 122 | class ReduceCrashingGlobalVariables : public ListReducer<GlobalVariable*> { |
| 123 | BugDriver &BD; |
Rafael Espindola | d1c7ef4 | 2010-08-05 03:00:22 +0000 | [diff] [blame] | 124 | bool (*TestFn)(const BugDriver &, Module *); |
Bill Wendling | 3f83343 | 2006-10-25 18:36:14 +0000 | [diff] [blame] | 125 | public: |
| 126 | ReduceCrashingGlobalVariables(BugDriver &bd, |
Rafael Espindola | d1c7ef4 | 2010-08-05 03:00:22 +0000 | [diff] [blame] | 127 | bool (*testFn)(const BugDriver &, Module *)) |
Bill Wendling | 3f83343 | 2006-10-25 18:36:14 +0000 | [diff] [blame] | 128 | : BD(bd), TestFn(testFn) {} |
| 129 | |
Craig Topper | e56917c | 2014-03-08 08:27:28 +0000 | [diff] [blame] | 130 | TestResult doTest(std::vector<GlobalVariable*> &Prefix, |
| 131 | std::vector<GlobalVariable*> &Kept, |
| 132 | std::string &Error) override { |
Bill Wendling | 3f83343 | 2006-10-25 18:36:14 +0000 | [diff] [blame] | 133 | if (!Kept.empty() && TestGlobalVariables(Kept)) |
| 134 | return KeepSuffix; |
Bill Wendling | 3f83343 | 2006-10-25 18:36:14 +0000 | [diff] [blame] | 135 | if (!Prefix.empty() && TestGlobalVariables(Prefix)) |
| 136 | return KeepPrefix; |
Bill Wendling | 3f83343 | 2006-10-25 18:36:14 +0000 | [diff] [blame] | 137 | return NoFailure; |
| 138 | } |
| 139 | |
Nick Lewycky | 6ba630b | 2010-04-12 05:08:25 +0000 | [diff] [blame] | 140 | bool TestGlobalVariables(std::vector<GlobalVariable*> &GVs); |
Bill Wendling | 3f83343 | 2006-10-25 18:36:14 +0000 | [diff] [blame] | 141 | }; |
| 142 | } |
| 143 | |
| 144 | bool |
| 145 | ReduceCrashingGlobalVariables::TestGlobalVariables( |
Nick Lewycky | 6ba630b | 2010-04-12 05:08:25 +0000 | [diff] [blame] | 146 | std::vector<GlobalVariable*> &GVs) { |
Bill Wendling | 3f83343 | 2006-10-25 18:36:14 +0000 | [diff] [blame] | 147 | // Clone the program to try hacking it apart... |
Rafael Espindola | 229e38f | 2010-10-13 01:36:30 +0000 | [diff] [blame] | 148 | ValueToValueMapTy VMap; |
Rafael Espindola | cab951d | 2015-12-08 23:57:17 +0000 | [diff] [blame] | 149 | Module *M = CloneModule(BD.getProgram(), VMap).release(); |
Bill Wendling | 3f83343 | 2006-10-25 18:36:14 +0000 | [diff] [blame] | 150 | |
| 151 | // Convert list to set for fast lookup... |
| 152 | std::set<GlobalVariable*> GVSet; |
| 153 | |
| 154 | for (unsigned i = 0, e = GVs.size(); i != e; ++i) { |
Devang Patel | 0dc3c2d | 2010-06-24 00:33:28 +0000 | [diff] [blame] | 155 | GlobalVariable* CMGV = cast<GlobalVariable>(VMap[GVs[i]]); |
Bill Wendling | 3f83343 | 2006-10-25 18:36:14 +0000 | [diff] [blame] | 156 | assert(CMGV && "Global Variable not in module?!"); |
| 157 | GVSet.insert(CMGV); |
| 158 | } |
| 159 | |
Dan Gohman | ee05152 | 2009-07-16 15:30:09 +0000 | [diff] [blame] | 160 | outs() << "Checking for crash with only these global variables: "; |
Bill Wendling | 3f83343 | 2006-10-25 18:36:14 +0000 | [diff] [blame] | 161 | PrintGlobalVariableList(GVs); |
Dan Gohman | ee05152 | 2009-07-16 15:30:09 +0000 | [diff] [blame] | 162 | outs() << ": "; |
Bill Wendling | 3f83343 | 2006-10-25 18:36:14 +0000 | [diff] [blame] | 163 | |
| 164 | // Loop over and delete any global variables which we aren't supposed to be |
| 165 | // playing with... |
Duncan P. N. Exon Smith | 306d16e | 2015-10-20 19:36:39 +0000 | [diff] [blame] | 166 | for (GlobalVariable &I : M->globals()) |
| 167 | if (I.hasInitializer() && !GVSet.count(&I)) { |
Hal Finkel | 28ad2b4 | 2015-11-26 19:23:49 +0000 | [diff] [blame] | 168 | DeleteGlobalInitializer(&I); |
Duncan P. N. Exon Smith | 306d16e | 2015-10-20 19:36:39 +0000 | [diff] [blame] | 169 | I.setLinkage(GlobalValue::ExternalLinkage); |
Justin Lebar | 2a445cf | 2016-06-15 23:20:12 +0000 | [diff] [blame] | 170 | I.setComdat(nullptr); |
Bill Wendling | 3f83343 | 2006-10-25 18:36:14 +0000 | [diff] [blame] | 171 | } |
| 172 | |
| 173 | // Try running the hacked up program... |
| 174 | if (TestFn(BD, M)) { |
| 175 | BD.setNewProgram(M); // It crashed, keep the trimmed version... |
| 176 | |
| 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 Blaikie | a379b181 | 2011-12-20 02:50:00 +0000 | [diff] [blame] | 187 | namespace { |
Bill Wendling | 3f83343 | 2006-10-25 18:36:14 +0000 | [diff] [blame] | 188 | /// 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 | /// |
Chris Lattner | fd72bed | 2004-03-14 20:50:42 +0000 | [diff] [blame] | 192 | class ReduceCrashingFunctions : public ListReducer<Function*> { |
Chris Lattner | 2f1aa11 | 2004-01-14 03:38:37 +0000 | [diff] [blame] | 193 | BugDriver &BD; |
Rafael Espindola | d1c7ef4 | 2010-08-05 03:00:22 +0000 | [diff] [blame] | 194 | bool (*TestFn)(const BugDriver &, Module *); |
Chris Lattner | 2f1aa11 | 2004-01-14 03:38:37 +0000 | [diff] [blame] | 195 | public: |
Chris Lattner | 8bda4c4 | 2004-02-18 23:26:28 +0000 | [diff] [blame] | 196 | ReduceCrashingFunctions(BugDriver &bd, |
Rafael Espindola | d1c7ef4 | 2010-08-05 03:00:22 +0000 | [diff] [blame] | 197 | bool (*testFn)(const BugDriver &, Module *)) |
Chris Lattner | 8bda4c4 | 2004-02-18 23:26:28 +0000 | [diff] [blame] | 198 | : BD(bd), TestFn(testFn) {} |
Misha Brukman | 650ba8e | 2005-04-22 00:00:37 +0000 | [diff] [blame] | 199 | |
Craig Topper | e56917c | 2014-03-08 08:27:28 +0000 | [diff] [blame] | 200 | TestResult doTest(std::vector<Function*> &Prefix, |
| 201 | std::vector<Function*> &Kept, |
| 202 | std::string &Error) override { |
Chris Lattner | 2f1aa11 | 2004-01-14 03:38:37 +0000 | [diff] [blame] | 203 | if (!Kept.empty() && TestFuncs(Kept)) |
| 204 | return KeepSuffix; |
| 205 | if (!Prefix.empty() && TestFuncs(Prefix)) |
| 206 | return KeepPrefix; |
| 207 | return NoFailure; |
| 208 | } |
Misha Brukman | 650ba8e | 2005-04-22 00:00:37 +0000 | [diff] [blame] | 209 | |
Chris Lattner | fd72bed | 2004-03-14 20:50:42 +0000 | [diff] [blame] | 210 | bool TestFuncs(std::vector<Function*> &Prefix); |
Chris Lattner | 2f1aa11 | 2004-01-14 03:38:37 +0000 | [diff] [blame] | 211 | }; |
| 212 | } |
Chris Lattner | 1d080f2 | 2003-04-24 22:24:58 +0000 | [diff] [blame] | 213 | |
JF Bastien | f87e20d | 2015-04-20 23:42:22 +0000 | [diff] [blame] | 214 | static void RemoveFunctionReferences(Module *M, const char* Name) { |
| 215 | auto *UsedVar = M->getGlobalVariable(Name, true); |
| 216 | if (!UsedVar || !UsedVar->hasInitializer()) return; |
| 217 | if (isa<ConstantAggregateZero>(UsedVar->getInitializer())) { |
| 218 | assert(UsedVar->use_empty()); |
| 219 | UsedVar->eraseFromParent(); |
| 220 | return; |
| 221 | } |
| 222 | auto *OldUsedVal = cast<ConstantArray>(UsedVar->getInitializer()); |
| 223 | std::vector<Constant*> Used; |
| 224 | for(Value *V : OldUsedVal->operand_values()) { |
| 225 | Constant *Op = cast<Constant>(V->stripPointerCasts()); |
| 226 | if(!Op->isNullValue()) { |
| 227 | Used.push_back(cast<Constant>(V)); |
| 228 | } |
| 229 | } |
| 230 | auto *NewValElemTy = OldUsedVal->getType()->getElementType(); |
| 231 | auto *NewValTy = ArrayType::get(NewValElemTy, Used.size()); |
| 232 | auto *NewUsedVal = ConstantArray::get(NewValTy, Used); |
| 233 | UsedVar->mutateType(NewUsedVal->getType()->getPointerTo()); |
| 234 | UsedVar->setInitializer(NewUsedVal); |
| 235 | } |
| 236 | |
Chris Lattner | fd72bed | 2004-03-14 20:50:42 +0000 | [diff] [blame] | 237 | bool ReduceCrashingFunctions::TestFuncs(std::vector<Function*> &Funcs) { |
Dmitri Gribenko | 6e0520e | 2013-09-02 01:18:56 +0000 | [diff] [blame] | 238 | // If main isn't present, claim there is no problem. |
| 239 | if (KeepMain && std::find(Funcs.begin(), Funcs.end(), |
| 240 | BD.getProgram()->getFunction("main")) == |
| 241 | Funcs.end()) |
Andrew Lenharth | ef9aa12 | 2006-03-05 22:21:36 +0000 | [diff] [blame] | 242 | return false; |
| 243 | |
Misha Brukman | 8b2bd4e | 2003-10-10 17:57:28 +0000 | [diff] [blame] | 244 | // Clone the program to try hacking it apart... |
Rafael Espindola | 229e38f | 2010-10-13 01:36:30 +0000 | [diff] [blame] | 245 | ValueToValueMapTy VMap; |
Rafael Espindola | cab951d | 2015-12-08 23:57:17 +0000 | [diff] [blame] | 246 | Module *M = CloneModule(BD.getProgram(), VMap).release(); |
Misha Brukman | 650ba8e | 2005-04-22 00:00:37 +0000 | [diff] [blame] | 247 | |
Chris Lattner | 1d080f2 | 2003-04-24 22:24:58 +0000 | [diff] [blame] | 248 | // Convert list to set for fast lookup... |
| 249 | std::set<Function*> Functions; |
| 250 | for (unsigned i = 0, e = Funcs.size(); i != e; ++i) { |
Devang Patel | 0dc3c2d | 2010-06-24 00:33:28 +0000 | [diff] [blame] | 251 | Function *CMF = cast<Function>(VMap[Funcs[i]]); |
Chris Lattner | 1d080f2 | 2003-04-24 22:24:58 +0000 | [diff] [blame] | 252 | assert(CMF && "Function not in module?!"); |
Reid Spencer | 3aaaa0b | 2007-02-05 20:47:22 +0000 | [diff] [blame] | 253 | assert(CMF->getFunctionType() == Funcs[i]->getFunctionType() && "wrong ty"); |
Dan Gohman | bcad718 | 2009-03-06 02:16:23 +0000 | [diff] [blame] | 254 | assert(CMF->getName() == Funcs[i]->getName() && "wrong name"); |
Chris Lattner | de39f2b | 2003-04-24 22:54:06 +0000 | [diff] [blame] | 255 | Functions.insert(CMF); |
Chris Lattner | 1d080f2 | 2003-04-24 22:24:58 +0000 | [diff] [blame] | 256 | } |
| 257 | |
Dan Gohman | ee05152 | 2009-07-16 15:30:09 +0000 | [diff] [blame] | 258 | outs() << "Checking for crash with only these functions: "; |
Chris Lattner | fd72bed | 2004-03-14 20:50:42 +0000 | [diff] [blame] | 259 | PrintFunctionList(Funcs); |
Dan Gohman | ee05152 | 2009-07-16 15:30:09 +0000 | [diff] [blame] | 260 | outs() << ": "; |
JF Bastien | f87e20d | 2015-04-20 23:42:22 +0000 | [diff] [blame] | 261 | if (!ReplaceFuncsWithNull) { |
| 262 | // Loop over and delete any functions which we aren't supposed to be playing |
| 263 | // with... |
Duncan P. N. Exon Smith | 306d16e | 2015-10-20 19:36:39 +0000 | [diff] [blame] | 264 | for (Function &I : *M) |
| 265 | if (!I.isDeclaration() && !Functions.count(&I)) |
| 266 | DeleteFunctionBody(&I); |
JF Bastien | f87e20d | 2015-04-20 23:42:22 +0000 | [diff] [blame] | 267 | } else { |
| 268 | std::vector<GlobalValue*> ToRemove; |
| 269 | // First, remove aliases to functions we're about to purge. |
| 270 | for (GlobalAlias &Alias : M->aliases()) { |
David Majnemer | 9554949 | 2016-05-04 00:20:48 +0000 | [diff] [blame] | 271 | GlobalObject *Root = Alias.getBaseObject(); |
| 272 | Function *F = dyn_cast_or_null<Function>(Root); |
JF Bastien | f87e20d | 2015-04-20 23:42:22 +0000 | [diff] [blame] | 273 | 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 Lattner | 1d080f2 | 2003-04-24 22:24:58 +0000 | [diff] [blame] | 284 | |
JF Bastien | f87e20d | 2015-04-20 23:42:22 +0000 | [diff] [blame] | 285 | PointerType *Ty = cast<PointerType>(Alias.getType()); |
| 286 | Constant *Replacement = ConstantPointerNull::get(Ty); |
| 287 | Alias.replaceAllUsesWith(Replacement); |
| 288 | ToRemove.push_back(&Alias); |
| 289 | } |
Chris Lattner | 1d080f2 | 2003-04-24 22:24:58 +0000 | [diff] [blame] | 290 | |
Duncan P. N. Exon Smith | 306d16e | 2015-10-20 19:36:39 +0000 | [diff] [blame] | 291 | for (Function &I : *M) { |
| 292 | if (!I.isDeclaration() && !Functions.count(&I)) { |
| 293 | PointerType *Ty = cast<PointerType>(I.getType()); |
JF Bastien | f87e20d | 2015-04-20 23:42:22 +0000 | [diff] [blame] | 294 | Constant *Replacement = ConstantPointerNull::get(Ty); |
Duncan P. N. Exon Smith | 306d16e | 2015-10-20 19:36:39 +0000 | [diff] [blame] | 295 | I.replaceAllUsesWith(Replacement); |
| 296 | ToRemove.push_back(&I); |
JF Bastien | f87e20d | 2015-04-20 23:42:22 +0000 | [diff] [blame] | 297 | } |
| 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 Lattner | 1d080f2 | 2003-04-24 22:24:58 +0000 | [diff] [blame] | 308 | // Try running the hacked up program... |
Chris Lattner | 8bda4c4 | 2004-02-18 23:26:28 +0000 | [diff] [blame] | 309 | if (TestFn(BD, M)) { |
Chris Lattner | 327019b | 2004-02-18 21:24:48 +0000 | [diff] [blame] | 310 | BD.setNewProgram(M); // It crashed, keep the trimmed version... |
Chris Lattner | 1d080f2 | 2003-04-24 22:24:58 +0000 | [diff] [blame] | 311 | |
| 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 Lattner | 327019b | 2004-02-18 21:24:48 +0000 | [diff] [blame] | 317 | delete M; |
Chris Lattner | 1d080f2 | 2003-04-24 22:24:58 +0000 | [diff] [blame] | 318 | return false; |
| 319 | } |
| 320 | |
Chris Lattner | 16a4131 | 2003-04-24 17:02:17 +0000 | [diff] [blame] | 321 | |
Chris Lattner | 1942f98 | 2004-02-18 21:29:46 +0000 | [diff] [blame] | 322 | namespace { |
Chris Lattner | 2f1aa11 | 2004-01-14 03:38:37 +0000 | [diff] [blame] | 323 | /// ReduceCrashingBlocks reducer - This works by setting the terminators of |
| 324 | /// all terminators except the specified basic blocks to a 'ret' instruction, |
| 325 | /// then running the simplify-cfg pass. This has the effect of chopping up |
| 326 | /// the CFG really fast which can reduce large functions quickly. |
| 327 | /// |
Chris Lattner | 8bda4c4 | 2004-02-18 23:26:28 +0000 | [diff] [blame] | 328 | class ReduceCrashingBlocks : public ListReducer<const BasicBlock*> { |
Chris Lattner | 2f1aa11 | 2004-01-14 03:38:37 +0000 | [diff] [blame] | 329 | BugDriver &BD; |
Rafael Espindola | d1c7ef4 | 2010-08-05 03:00:22 +0000 | [diff] [blame] | 330 | bool (*TestFn)(const BugDriver &, Module *); |
Chris Lattner | 2f1aa11 | 2004-01-14 03:38:37 +0000 | [diff] [blame] | 331 | public: |
Rafael Espindola | d1c7ef4 | 2010-08-05 03:00:22 +0000 | [diff] [blame] | 332 | ReduceCrashingBlocks(BugDriver &bd, |
| 333 | bool (*testFn)(const BugDriver &, Module *)) |
Chris Lattner | 8bda4c4 | 2004-02-18 23:26:28 +0000 | [diff] [blame] | 334 | : BD(bd), TestFn(testFn) {} |
Misha Brukman | 650ba8e | 2005-04-22 00:00:37 +0000 | [diff] [blame] | 335 | |
Craig Topper | e56917c | 2014-03-08 08:27:28 +0000 | [diff] [blame] | 336 | TestResult doTest(std::vector<const BasicBlock*> &Prefix, |
| 337 | std::vector<const BasicBlock*> &Kept, |
| 338 | std::string &Error) override { |
Chris Lattner | 2f1aa11 | 2004-01-14 03:38:37 +0000 | [diff] [blame] | 339 | if (!Kept.empty() && TestBlocks(Kept)) |
| 340 | return KeepSuffix; |
| 341 | if (!Prefix.empty() && TestBlocks(Prefix)) |
| 342 | return KeepPrefix; |
| 343 | return NoFailure; |
| 344 | } |
Misha Brukman | 650ba8e | 2005-04-22 00:00:37 +0000 | [diff] [blame] | 345 | |
Chris Lattner | 8bda4c4 | 2004-02-18 23:26:28 +0000 | [diff] [blame] | 346 | bool TestBlocks(std::vector<const BasicBlock*> &Prefix); |
Chris Lattner | 2f1aa11 | 2004-01-14 03:38:37 +0000 | [diff] [blame] | 347 | }; |
| 348 | } |
Chris Lattner | f32939b | 2003-04-24 23:51:38 +0000 | [diff] [blame] | 349 | |
Chris Lattner | 8bda4c4 | 2004-02-18 23:26:28 +0000 | [diff] [blame] | 350 | bool ReduceCrashingBlocks::TestBlocks(std::vector<const BasicBlock*> &BBs) { |
Misha Brukman | 8b2bd4e | 2003-10-10 17:57:28 +0000 | [diff] [blame] | 351 | // Clone the program to try hacking it apart... |
Rafael Espindola | 229e38f | 2010-10-13 01:36:30 +0000 | [diff] [blame] | 352 | ValueToValueMapTy VMap; |
Rafael Espindola | cab951d | 2015-12-08 23:57:17 +0000 | [diff] [blame] | 353 | Module *M = CloneModule(BD.getProgram(), VMap).release(); |
Misha Brukman | 650ba8e | 2005-04-22 00:00:37 +0000 | [diff] [blame] | 354 | |
Chris Lattner | f32939b | 2003-04-24 23:51:38 +0000 | [diff] [blame] | 355 | // Convert list to set for fast lookup... |
Nick Lewycky | b294e31 | 2009-04-04 09:39:23 +0000 | [diff] [blame] | 356 | SmallPtrSet<BasicBlock*, 8> Blocks; |
| 357 | for (unsigned i = 0, e = BBs.size(); i != e; ++i) |
Devang Patel | 0dc3c2d | 2010-06-24 00:33:28 +0000 | [diff] [blame] | 358 | Blocks.insert(cast<BasicBlock>(VMap[BBs[i]])); |
Chris Lattner | f32939b | 2003-04-24 23:51:38 +0000 | [diff] [blame] | 359 | |
Dan Gohman | ee05152 | 2009-07-16 15:30:09 +0000 | [diff] [blame] | 360 | outs() << "Checking for crash with only these blocks:"; |
Chris Lattner | 4f50ebd | 2003-10-27 04:44:59 +0000 | [diff] [blame] | 361 | unsigned NumPrint = Blocks.size(); |
| 362 | if (NumPrint > 10) NumPrint = 10; |
| 363 | for (unsigned i = 0, e = NumPrint; i != e; ++i) |
Dan Gohman | ee05152 | 2009-07-16 15:30:09 +0000 | [diff] [blame] | 364 | outs() << " " << BBs[i]->getName(); |
Chris Lattner | 4f50ebd | 2003-10-27 04:44:59 +0000 | [diff] [blame] | 365 | if (NumPrint < Blocks.size()) |
Dan Gohman | ee05152 | 2009-07-16 15:30:09 +0000 | [diff] [blame] | 366 | outs() << "... <" << Blocks.size() << " total>"; |
| 367 | outs() << ": "; |
Chris Lattner | f32939b | 2003-04-24 23:51:38 +0000 | [diff] [blame] | 368 | |
| 369 | // Loop over and delete any hack up any blocks that are not listed... |
| 370 | for (Module::iterator I = M->begin(), E = M->end(); I != E; ++I) |
| 371 | for (Function::iterator BB = I->begin(), E = I->end(); BB != E; ++BB) |
Duncan P. N. Exon Smith | 306d16e | 2015-10-20 19:36:39 +0000 | [diff] [blame] | 372 | if (!Blocks.count(&*BB) && BB->getTerminator()->getNumSuccessors()) { |
Chris Lattner | f32939b | 2003-04-24 23:51:38 +0000 | [diff] [blame] | 373 | // Loop over all of the successors of this block, deleting any PHI nodes |
| 374 | // that might include it. |
Duncan P. N. Exon Smith | 306d16e | 2015-10-20 19:36:39 +0000 | [diff] [blame] | 375 | for (succ_iterator SI = succ_begin(&*BB), E = succ_end(&*BB); SI != E; |
| 376 | ++SI) |
| 377 | (*SI)->removePredecessor(&*BB); |
Chris Lattner | f32939b | 2003-04-24 23:51:38 +0000 | [diff] [blame] | 378 | |
Chris Lattner | 7855a5c | 2008-04-28 00:04:58 +0000 | [diff] [blame] | 379 | TerminatorInst *BBTerm = BB->getTerminator(); |
Philip Reames | 29e641c | 2016-06-29 00:15:35 +0000 | [diff] [blame] | 380 | if (BBTerm->isEHPad() || BBTerm->getType()->isTokenTy()) |
David Majnemer | 189d7da | 2015-11-08 04:16:12 +0000 | [diff] [blame] | 381 | continue; |
Philip Reames | 29e641c | 2016-06-29 00:15:35 +0000 | [diff] [blame] | 382 | if (!BBTerm->getType()->isVoidTy()) |
Owen Anderson | 5a1acd9 | 2009-07-31 20:28:14 +0000 | [diff] [blame] | 383 | BBTerm->replaceAllUsesWith(Constant::getNullValue(BBTerm->getType())); |
Chris Lattner | 7b233af | 2003-11-22 02:10:38 +0000 | [diff] [blame] | 384 | |
Chris Lattner | 7855a5c | 2008-04-28 00:04:58 +0000 | [diff] [blame] | 385 | // Replace the old terminator instruction. |
Chris Lattner | f32939b | 2003-04-24 23:51:38 +0000 | [diff] [blame] | 386 | BB->getInstList().pop_back(); |
Duncan P. N. Exon Smith | 306d16e | 2015-10-20 19:36:39 +0000 | [diff] [blame] | 387 | new UnreachableInst(BB->getContext(), &*BB); |
Chris Lattner | f32939b | 2003-04-24 23:51:38 +0000 | [diff] [blame] | 388 | } |
| 389 | |
| 390 | // The CFG Simplifier pass may delete one of the basic blocks we are |
| 391 | // interested in. If it does we need to take the block out of the list. Make |
| 392 | // a "persistent mapping" by turning basic blocks into <function, name> pairs. |
| 393 | // This won't work well if blocks are unnamed, but that is just the risk we |
| 394 | // have to take. |
Rafael Espindola | d1e241a | 2010-08-10 15:46:11 +0000 | [diff] [blame] | 395 | std::vector<std::pair<std::string, std::string> > BlockInfo; |
Chris Lattner | f32939b | 2003-04-24 23:51:38 +0000 | [diff] [blame] | 396 | |
Craig Topper | 4627679 | 2014-08-24 23:23:06 +0000 | [diff] [blame] | 397 | for (BasicBlock *BB : Blocks) |
Benjamin Kramer | f5e2fc4 | 2015-05-29 19:43:39 +0000 | [diff] [blame] | 398 | BlockInfo.emplace_back(BB->getParent()->getName(), BB->getName()); |
Chris Lattner | f32939b | 2003-04-24 23:51:38 +0000 | [diff] [blame] | 399 | |
| 400 | // Now run the CFG simplify pass on the function... |
Rafael Espindola | d1e241a | 2010-08-10 15:46:11 +0000 | [diff] [blame] | 401 | std::vector<std::string> Passes; |
| 402 | Passes.push_back("simplifycfg"); |
| 403 | Passes.push_back("verify"); |
Rafael Espindola | 28b351a | 2014-08-26 17:19:03 +0000 | [diff] [blame] | 404 | std::unique_ptr<Module> New = BD.runPassesOn(M, Passes); |
Rafael Espindola | d1e241a | 2010-08-10 15:46:11 +0000 | [diff] [blame] | 405 | delete M; |
| 406 | if (!New) { |
| 407 | errs() << "simplifycfg failed!\n"; |
| 408 | exit(1); |
| 409 | } |
Rafael Espindola | 28b351a | 2014-08-26 17:19:03 +0000 | [diff] [blame] | 410 | M = New.release(); |
Chris Lattner | f32939b | 2003-04-24 23:51:38 +0000 | [diff] [blame] | 411 | |
| 412 | // Try running on the hacked up program... |
Chris Lattner | 8bda4c4 | 2004-02-18 23:26:28 +0000 | [diff] [blame] | 413 | if (TestFn(BD, M)) { |
Chris Lattner | 327019b | 2004-02-18 21:24:48 +0000 | [diff] [blame] | 414 | BD.setNewProgram(M); // It crashed, keep the trimmed version... |
Chris Lattner | f32939b | 2003-04-24 23:51:38 +0000 | [diff] [blame] | 415 | |
| 416 | // Make sure to use basic block pointers that point into the now-current |
| 417 | // module, and that they don't include any deleted blocks. |
| 418 | BBs.clear(); |
Rafael Espindola | d1e241a | 2010-08-10 15:46:11 +0000 | [diff] [blame] | 419 | const ValueSymbolTable &GST = M->getValueSymbolTable(); |
Chris Lattner | f32939b | 2003-04-24 23:51:38 +0000 | [diff] [blame] | 420 | for (unsigned i = 0, e = BlockInfo.size(); i != e; ++i) { |
Rafael Espindola | d1e241a | 2010-08-10 15:46:11 +0000 | [diff] [blame] | 421 | Function *F = cast<Function>(GST.lookup(BlockInfo[i].first)); |
| 422 | ValueSymbolTable &ST = F->getValueSymbolTable(); |
Reid Spencer | 3aaaa0b | 2007-02-05 20:47:22 +0000 | [diff] [blame] | 423 | Value* V = ST.lookup(BlockInfo[i].second); |
Owen Anderson | 55f1c09 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 424 | if (V && V->getType() == Type::getLabelTy(V->getContext())) |
Reid Spencer | 3aaaa0b | 2007-02-05 20:47:22 +0000 | [diff] [blame] | 425 | BBs.push_back(cast<BasicBlock>(V)); |
Chris Lattner | f32939b | 2003-04-24 23:51:38 +0000 | [diff] [blame] | 426 | } |
| 427 | return true; |
| 428 | } |
Chris Lattner | 327019b | 2004-02-18 21:24:48 +0000 | [diff] [blame] | 429 | delete M; // It didn't crash, try something else. |
Chris Lattner | f32939b | 2003-04-24 23:51:38 +0000 | [diff] [blame] | 430 | return false; |
| 431 | } |
| 432 | |
Nick Lewycky | 6e090c9 | 2009-05-25 05:30:00 +0000 | [diff] [blame] | 433 | namespace { |
| 434 | /// ReduceCrashingInstructions reducer - This works by removing the specified |
| 435 | /// non-terminator instructions and replacing them with undef. |
| 436 | /// |
| 437 | class ReduceCrashingInstructions : public ListReducer<const Instruction*> { |
| 438 | BugDriver &BD; |
Rafael Espindola | d1c7ef4 | 2010-08-05 03:00:22 +0000 | [diff] [blame] | 439 | bool (*TestFn)(const BugDriver &, Module *); |
Nick Lewycky | 6e090c9 | 2009-05-25 05:30:00 +0000 | [diff] [blame] | 440 | public: |
Rafael Espindola | d1c7ef4 | 2010-08-05 03:00:22 +0000 | [diff] [blame] | 441 | ReduceCrashingInstructions(BugDriver &bd, |
| 442 | bool (*testFn)(const BugDriver &, Module *)) |
Nick Lewycky | 6e090c9 | 2009-05-25 05:30:00 +0000 | [diff] [blame] | 443 | : BD(bd), TestFn(testFn) {} |
| 444 | |
Craig Topper | e56917c | 2014-03-08 08:27:28 +0000 | [diff] [blame] | 445 | TestResult doTest(std::vector<const Instruction*> &Prefix, |
| 446 | std::vector<const Instruction*> &Kept, |
| 447 | std::string &Error) override { |
Nick Lewycky | 6e090c9 | 2009-05-25 05:30:00 +0000 | [diff] [blame] | 448 | if (!Kept.empty() && TestInsts(Kept)) |
| 449 | return KeepSuffix; |
| 450 | if (!Prefix.empty() && TestInsts(Prefix)) |
| 451 | return KeepPrefix; |
| 452 | return NoFailure; |
| 453 | } |
| 454 | |
| 455 | bool TestInsts(std::vector<const Instruction*> &Prefix); |
| 456 | }; |
| 457 | } |
| 458 | |
| 459 | bool ReduceCrashingInstructions::TestInsts(std::vector<const Instruction*> |
| 460 | &Insts) { |
| 461 | // Clone the program to try hacking it apart... |
Rafael Espindola | 229e38f | 2010-10-13 01:36:30 +0000 | [diff] [blame] | 462 | ValueToValueMapTy VMap; |
Rafael Espindola | cab951d | 2015-12-08 23:57:17 +0000 | [diff] [blame] | 463 | Module *M = CloneModule(BD.getProgram(), VMap).release(); |
Nick Lewycky | 6e090c9 | 2009-05-25 05:30:00 +0000 | [diff] [blame] | 464 | |
| 465 | // Convert list to set for fast lookup... |
Matthias Braun | b30f2f51 | 2016-01-30 01:24:31 +0000 | [diff] [blame] | 466 | SmallPtrSet<Instruction*, 32> Instructions; |
Nick Lewycky | 6e090c9 | 2009-05-25 05:30:00 +0000 | [diff] [blame] | 467 | for (unsigned i = 0, e = Insts.size(); i != e; ++i) { |
| 468 | assert(!isa<TerminatorInst>(Insts[i])); |
Devang Patel | 0dc3c2d | 2010-06-24 00:33:28 +0000 | [diff] [blame] | 469 | Instructions.insert(cast<Instruction>(VMap[Insts[i]])); |
Nick Lewycky | 6e090c9 | 2009-05-25 05:30:00 +0000 | [diff] [blame] | 470 | } |
| 471 | |
Dan Gohman | ee05152 | 2009-07-16 15:30:09 +0000 | [diff] [blame] | 472 | outs() << "Checking for crash with only " << Instructions.size(); |
Nick Lewycky | 6e090c9 | 2009-05-25 05:30:00 +0000 | [diff] [blame] | 473 | if (Instructions.size() == 1) |
Dan Gohman | ee05152 | 2009-07-16 15:30:09 +0000 | [diff] [blame] | 474 | outs() << " instruction: "; |
Nick Lewycky | 6e090c9 | 2009-05-25 05:30:00 +0000 | [diff] [blame] | 475 | else |
Dan Gohman | ee05152 | 2009-07-16 15:30:09 +0000 | [diff] [blame] | 476 | outs() << " instructions: "; |
Nick Lewycky | 6e090c9 | 2009-05-25 05:30:00 +0000 | [diff] [blame] | 477 | |
| 478 | for (Module::iterator MI = M->begin(), ME = M->end(); MI != ME; ++MI) |
| 479 | for (Function::iterator FI = MI->begin(), FE = MI->end(); FI != FE; ++FI) |
| 480 | for (BasicBlock::iterator I = FI->begin(), E = FI->end(); I != E;) { |
Duncan P. N. Exon Smith | 306d16e | 2015-10-20 19:36:39 +0000 | [diff] [blame] | 481 | Instruction *Inst = &*I++; |
Eli Friedman | d4e02a5 | 2011-11-01 04:40:56 +0000 | [diff] [blame] | 482 | if (!Instructions.count(Inst) && !isa<TerminatorInst>(Inst) && |
Philip Reames | 29e641c | 2016-06-29 00:15:35 +0000 | [diff] [blame] | 483 | !Inst->isEHPad() && !Inst->getType()->isTokenTy()) { |
| 484 | if (!Inst->getType()->isVoidTy()) |
Nick Lewycky | 6e090c9 | 2009-05-25 05:30:00 +0000 | [diff] [blame] | 485 | Inst->replaceAllUsesWith(UndefValue::get(Inst->getType())); |
| 486 | Inst->eraseFromParent(); |
| 487 | } |
| 488 | } |
| 489 | |
| 490 | // Verify that this is still valid. |
Chandler Carruth | 30d69c2 | 2015-02-13 10:01:29 +0000 | [diff] [blame] | 491 | legacy::PassManager Passes; |
Nick Lewycky | 6e090c9 | 2009-05-25 05:30:00 +0000 | [diff] [blame] | 492 | Passes.add(createVerifierPass()); |
| 493 | Passes.run(*M); |
| 494 | |
| 495 | // Try running on the hacked up program... |
| 496 | if (TestFn(BD, M)) { |
| 497 | BD.setNewProgram(M); // It crashed, keep the trimmed version... |
| 498 | |
| 499 | // Make sure to use instruction pointers that point into the now-current |
| 500 | // module, and that they don't include any deleted blocks. |
| 501 | Insts.clear(); |
Craig Topper | 4627679 | 2014-08-24 23:23:06 +0000 | [diff] [blame] | 502 | for (Instruction *Inst : Instructions) |
| 503 | Insts.push_back(Inst); |
Nick Lewycky | 6e090c9 | 2009-05-25 05:30:00 +0000 | [diff] [blame] | 504 | return true; |
| 505 | } |
| 506 | delete M; // It didn't crash, try something else. |
| 507 | return false; |
| 508 | } |
| 509 | |
Keno Fischer | 34ca831 | 2015-11-06 00:12:50 +0000 | [diff] [blame] | 510 | namespace { |
| 511 | // Reduce the list of Named Metadata nodes. We keep this as a list of |
| 512 | // names to avoid having to convert back and forth every time. |
| 513 | class ReduceCrashingNamedMD : public ListReducer<std::string> { |
| 514 | BugDriver &BD; |
| 515 | bool (*TestFn)(const BugDriver &, Module *); |
| 516 | |
| 517 | public: |
| 518 | ReduceCrashingNamedMD(BugDriver &bd, |
| 519 | bool (*testFn)(const BugDriver &, Module *)) |
| 520 | : BD(bd), TestFn(testFn) {} |
| 521 | |
| 522 | TestResult doTest(std::vector<std::string> &Prefix, |
| 523 | std::vector<std::string> &Kept, |
| 524 | std::string &Error) override { |
| 525 | if (!Kept.empty() && TestNamedMDs(Kept)) |
| 526 | return KeepSuffix; |
| 527 | if (!Prefix.empty() && TestNamedMDs(Prefix)) |
| 528 | return KeepPrefix; |
| 529 | return NoFailure; |
| 530 | } |
| 531 | |
| 532 | bool TestNamedMDs(std::vector<std::string> &NamedMDs); |
| 533 | }; |
| 534 | } |
| 535 | |
| 536 | bool ReduceCrashingNamedMD::TestNamedMDs(std::vector<std::string> &NamedMDs) { |
| 537 | |
| 538 | ValueToValueMapTy VMap; |
Rafael Espindola | cab951d | 2015-12-08 23:57:17 +0000 | [diff] [blame] | 539 | Module *M = CloneModule(BD.getProgram(), VMap).release(); |
Keno Fischer | 34ca831 | 2015-11-06 00:12:50 +0000 | [diff] [blame] | 540 | |
| 541 | outs() << "Checking for crash with only these named metadata nodes:"; |
| 542 | unsigned NumPrint = std::min<size_t>(NamedMDs.size(), 10); |
| 543 | for (unsigned i = 0, e = NumPrint; i != e; ++i) |
| 544 | outs() << " " << NamedMDs[i]; |
| 545 | if (NumPrint < NamedMDs.size()) |
| 546 | outs() << "... <" << NamedMDs.size() << " total>"; |
| 547 | outs() << ": "; |
| 548 | |
| 549 | // Make a StringMap for faster lookup |
| 550 | StringSet<> Names; |
| 551 | for (const std::string &Name : NamedMDs) |
| 552 | Names.insert(Name); |
| 553 | |
| 554 | // First collect all the metadata to delete in a vector, then |
| 555 | // delete them all at once to avoid invalidating the iterator |
| 556 | std::vector<NamedMDNode *> ToDelete; |
| 557 | ToDelete.reserve(M->named_metadata_size() - Names.size()); |
| 558 | for (auto &NamedMD : M->named_metadata()) |
Adrian Prantl | faebbb0 | 2016-03-28 21:06:26 +0000 | [diff] [blame] | 559 | // Always keep a nonempty llvm.dbg.cu because the Verifier would complain. |
| 560 | if (!Names.count(NamedMD.getName()) && |
| 561 | (!(NamedMD.getName() == "llvm.dbg.cu" && NamedMD.getNumOperands() > 0))) |
Keno Fischer | 34ca831 | 2015-11-06 00:12:50 +0000 | [diff] [blame] | 562 | ToDelete.push_back(&NamedMD); |
| 563 | |
| 564 | for (auto *NamedMD : ToDelete) |
| 565 | NamedMD->eraseFromParent(); |
| 566 | |
| 567 | // Verify that this is still valid. |
| 568 | legacy::PassManager Passes; |
| 569 | Passes.add(createVerifierPass()); |
| 570 | Passes.run(*M); |
| 571 | |
| 572 | // Try running on the hacked up program... |
| 573 | if (TestFn(BD, M)) { |
| 574 | BD.setNewProgram(M); // It crashed, keep the trimmed version... |
| 575 | return true; |
| 576 | } |
| 577 | delete M; // It didn't crash, try something else. |
| 578 | return false; |
| 579 | } |
| 580 | |
| 581 | namespace { |
| 582 | // Reduce the list of operands to named metadata nodes |
| 583 | class ReduceCrashingNamedMDOps : public ListReducer<const MDNode *> { |
| 584 | BugDriver &BD; |
| 585 | bool (*TestFn)(const BugDriver &, Module *); |
| 586 | |
| 587 | public: |
| 588 | ReduceCrashingNamedMDOps(BugDriver &bd, |
| 589 | bool (*testFn)(const BugDriver &, Module *)) |
| 590 | : BD(bd), TestFn(testFn) {} |
| 591 | |
| 592 | TestResult doTest(std::vector<const MDNode *> &Prefix, |
| 593 | std::vector<const MDNode *> &Kept, |
| 594 | std::string &Error) override { |
| 595 | if (!Kept.empty() && TestNamedMDOps(Kept)) |
| 596 | return KeepSuffix; |
| 597 | if (!Prefix.empty() && TestNamedMDOps(Prefix)) |
| 598 | return KeepPrefix; |
| 599 | return NoFailure; |
| 600 | } |
| 601 | |
| 602 | bool TestNamedMDOps(std::vector<const MDNode *> &NamedMDOps); |
| 603 | }; |
| 604 | } |
| 605 | |
| 606 | bool ReduceCrashingNamedMDOps::TestNamedMDOps( |
| 607 | std::vector<const MDNode *> &NamedMDOps) { |
| 608 | // Convert list to set for fast lookup... |
Matthias Braun | b30f2f51 | 2016-01-30 01:24:31 +0000 | [diff] [blame] | 609 | SmallPtrSet<const MDNode *, 32> OldMDNodeOps; |
Keno Fischer | 34ca831 | 2015-11-06 00:12:50 +0000 | [diff] [blame] | 610 | for (unsigned i = 0, e = NamedMDOps.size(); i != e; ++i) { |
| 611 | OldMDNodeOps.insert(NamedMDOps[i]); |
| 612 | } |
| 613 | |
| 614 | outs() << "Checking for crash with only " << OldMDNodeOps.size(); |
| 615 | if (OldMDNodeOps.size() == 1) |
| 616 | outs() << " named metadata operand: "; |
| 617 | else |
| 618 | outs() << " named metadata operands: "; |
| 619 | |
| 620 | ValueToValueMapTy VMap; |
Rafael Espindola | cab951d | 2015-12-08 23:57:17 +0000 | [diff] [blame] | 621 | Module *M = CloneModule(BD.getProgram(), VMap).release(); |
Keno Fischer | 34ca831 | 2015-11-06 00:12:50 +0000 | [diff] [blame] | 622 | |
| 623 | // This is a little wasteful. In the future it might be good if we could have |
| 624 | // these dropped during cloning. |
| 625 | for (auto &NamedMD : BD.getProgram()->named_metadata()) { |
| 626 | // Drop the old one and create a new one |
| 627 | M->eraseNamedMetadata(M->getNamedMetadata(NamedMD.getName())); |
| 628 | NamedMDNode *NewNamedMDNode = |
| 629 | M->getOrInsertNamedMetadata(NamedMD.getName()); |
| 630 | for (MDNode *op : NamedMD.operands()) |
| 631 | if (OldMDNodeOps.count(op)) |
| 632 | NewNamedMDNode->addOperand(cast<MDNode>(MapMetadata(op, VMap))); |
| 633 | } |
| 634 | |
| 635 | // Verify that this is still valid. |
| 636 | legacy::PassManager Passes; |
| 637 | Passes.add(createVerifierPass()); |
| 638 | Passes.run(*M); |
| 639 | |
| 640 | // Try running on the hacked up program... |
| 641 | if (TestFn(BD, M)) { |
| 642 | // Make sure to use instruction pointers that point into the now-current |
| 643 | // module, and that they don't include any deleted blocks. |
| 644 | NamedMDOps.clear(); |
| 645 | for (const MDNode *Node : OldMDNodeOps) |
Duncan P. N. Exon Smith | da4a56d | 2016-04-02 17:04:38 +0000 | [diff] [blame] | 646 | NamedMDOps.push_back(cast<MDNode>(*VMap.getMappedMD(Node))); |
Keno Fischer | 34ca831 | 2015-11-06 00:12:50 +0000 | [diff] [blame] | 647 | |
| 648 | BD.setNewProgram(M); // It crashed, keep the trimmed version... |
| 649 | return true; |
| 650 | } |
| 651 | delete M; // It didn't crash, try something else. |
| 652 | return false; |
| 653 | } |
| 654 | |
Philip Reames | 1c232f9 | 2016-06-29 00:43:18 +0000 | [diff] [blame] | 655 | static void ReduceGlobalInitializers(BugDriver &BD, |
| 656 | bool (*TestFn)(const BugDriver &, Module *), |
| 657 | std::string &Error) { |
| 658 | if (BD.getProgram()->global_begin() != BD.getProgram()->global_end()) { |
Bill Wendling | 3f83343 | 2006-10-25 18:36:14 +0000 | [diff] [blame] | 659 | // Now try to reduce the number of global variable initializers in the |
| 660 | // module to something small. |
Rafael Espindola | cab951d | 2015-12-08 23:57:17 +0000 | [diff] [blame] | 661 | Module *M = CloneModule(BD.getProgram()).release(); |
Bill Wendling | 74a4a2a | 2006-10-27 20:18:06 +0000 | [diff] [blame] | 662 | bool DeletedInit = false; |
Misha Brukman | 650ba8e | 2005-04-22 00:00:37 +0000 | [diff] [blame] | 663 | |
Bill Wendling | 74a4a2a | 2006-10-27 20:18:06 +0000 | [diff] [blame] | 664 | for (Module::global_iterator I = M->global_begin(), E = M->global_end(); |
| 665 | I != E; ++I) |
| 666 | if (I->hasInitializer()) { |
Hal Finkel | 28ad2b4 | 2015-11-26 19:23:49 +0000 | [diff] [blame] | 667 | DeleteGlobalInitializer(&*I); |
Bill Wendling | 74a4a2a | 2006-10-27 20:18:06 +0000 | [diff] [blame] | 668 | I->setLinkage(GlobalValue::ExternalLinkage); |
Justin Lebar | 2a445cf | 2016-06-15 23:20:12 +0000 | [diff] [blame] | 669 | I->setComdat(nullptr); |
Bill Wendling | 74a4a2a | 2006-10-27 20:18:06 +0000 | [diff] [blame] | 670 | DeletedInit = true; |
| 671 | } |
Bill Wendling | 3f83343 | 2006-10-25 18:36:14 +0000 | [diff] [blame] | 672 | |
Bill Wendling | 74a4a2a | 2006-10-27 20:18:06 +0000 | [diff] [blame] | 673 | if (!DeletedInit) { |
| 674 | delete M; // No change made... |
| 675 | } else { |
| 676 | // See if the program still causes a crash... |
Dan Gohman | ee05152 | 2009-07-16 15:30:09 +0000 | [diff] [blame] | 677 | outs() << "\nChecking to see if we can delete global inits: "; |
Bill Wendling | 3f83343 | 2006-10-25 18:36:14 +0000 | [diff] [blame] | 678 | |
Bill Wendling | 74a4a2a | 2006-10-27 20:18:06 +0000 | [diff] [blame] | 679 | if (TestFn(BD, M)) { // Still crashes? |
| 680 | BD.setNewProgram(M); |
Dan Gohman | ee05152 | 2009-07-16 15:30:09 +0000 | [diff] [blame] | 681 | outs() << "\n*** Able to remove all global initializers!\n"; |
Bill Wendling | 74a4a2a | 2006-10-27 20:18:06 +0000 | [diff] [blame] | 682 | } else { // No longer crashes? |
Dan Gohman | ee05152 | 2009-07-16 15:30:09 +0000 | [diff] [blame] | 683 | outs() << " - Removing all global inits hides problem!\n"; |
Bill Wendling | 74a4a2a | 2006-10-27 20:18:06 +0000 | [diff] [blame] | 684 | delete M; |
Bill Wendling | 3f83343 | 2006-10-25 18:36:14 +0000 | [diff] [blame] | 685 | |
Bill Wendling | 74a4a2a | 2006-10-27 20:18:06 +0000 | [diff] [blame] | 686 | std::vector<GlobalVariable*> GVs; |
| 687 | |
| 688 | for (Module::global_iterator I = BD.getProgram()->global_begin(), |
| 689 | E = BD.getProgram()->global_end(); I != E; ++I) |
| 690 | if (I->hasInitializer()) |
Duncan P. N. Exon Smith | 306d16e | 2015-10-20 19:36:39 +0000 | [diff] [blame] | 691 | GVs.push_back(&*I); |
Bill Wendling | 74a4a2a | 2006-10-27 20:18:06 +0000 | [diff] [blame] | 692 | |
| 693 | if (GVs.size() > 1 && !BugpointIsInterrupted) { |
Dan Gohman | ee05152 | 2009-07-16 15:30:09 +0000 | [diff] [blame] | 694 | outs() << "\n*** Attempting to reduce the number of global " |
Bill Wendling | 74a4a2a | 2006-10-27 20:18:06 +0000 | [diff] [blame] | 695 | << "variables in the testcase\n"; |
| 696 | |
| 697 | unsigned OldSize = GVs.size(); |
Nick Lewycky | 6ba630b | 2010-04-12 05:08:25 +0000 | [diff] [blame] | 698 | ReduceCrashingGlobalVariables(BD, TestFn).reduceList(GVs, Error); |
Philip Reames | 1c232f9 | 2016-06-29 00:43:18 +0000 | [diff] [blame] | 699 | assert(!Error.empty()); |
Bill Wendling | 74a4a2a | 2006-10-27 20:18:06 +0000 | [diff] [blame] | 700 | |
| 701 | if (GVs.size() < OldSize) |
Rafael Espindola | 594994a | 2010-07-28 18:12:30 +0000 | [diff] [blame] | 702 | BD.EmitProgressBitcode(BD.getProgram(), "reduced-global-variables"); |
Bill Wendling | 74a4a2a | 2006-10-27 20:18:06 +0000 | [diff] [blame] | 703 | } |
Bill Wendling | ce3afd6 | 2006-10-27 20:22:04 +0000 | [diff] [blame] | 704 | } |
Chris Lattner | 65e5f65 | 2003-04-25 00:53:05 +0000 | [diff] [blame] | 705 | } |
| 706 | } |
Philip Reames | 1c232f9 | 2016-06-29 00:43:18 +0000 | [diff] [blame] | 707 | } |
| 708 | |
| 709 | static void ReduceInsts(BugDriver &BD, |
| 710 | bool (*TestFn)(const BugDriver &, Module *), |
| 711 | std::string &Error) { |
| 712 | // Attempt to delete instructions using bisection. This should help out nasty |
| 713 | // cases with large basic blocks where the problem is at one end. |
| 714 | if (!BugpointIsInterrupted) { |
| 715 | std::vector<const Instruction*> Insts; |
| 716 | for (const Function &F : *BD.getProgram()) |
| 717 | for (const BasicBlock &BB : F) |
| 718 | for (const Instruction &I : BB) |
| 719 | if (!isa<TerminatorInst>(&I)) |
| 720 | Insts.push_back(&I); |
| 721 | |
| 722 | ReduceCrashingInstructions(BD, TestFn).reduceList(Insts, Error); |
| 723 | } |
| 724 | |
| 725 | unsigned Simplification = 2; |
| 726 | do { |
| 727 | if (BugpointIsInterrupted) |
| 728 | return; |
| 729 | --Simplification; |
| 730 | outs() << "\n*** Attempting to reduce testcase by deleting instruc" |
| 731 | << "tions: Simplification Level #" << Simplification << '\n'; |
| 732 | |
| 733 | // Now that we have deleted the functions that are unnecessary for the |
| 734 | // program, try to remove instructions that are not necessary to cause the |
| 735 | // crash. To do this, we loop through all of the instructions in the |
| 736 | // remaining functions, deleting them (replacing any values produced with |
| 737 | // nulls), and then running ADCE and SimplifyCFG. If the transformed input |
| 738 | // still triggers failure, keep deleting until we cannot trigger failure |
| 739 | // anymore. |
| 740 | // |
| 741 | unsigned InstructionsToSkipBeforeDeleting = 0; |
| 742 | TryAgain: |
| 743 | |
| 744 | // Loop over all of the (non-terminator) instructions remaining in the |
| 745 | // function, attempting to delete them. |
| 746 | unsigned CurInstructionNum = 0; |
| 747 | for (Module::const_iterator FI = BD.getProgram()->begin(), |
| 748 | E = BD.getProgram()->end(); FI != E; ++FI) |
| 749 | if (!FI->isDeclaration()) |
| 750 | for (Function::const_iterator BI = FI->begin(), E = FI->end(); BI != E; |
| 751 | ++BI) |
| 752 | for (BasicBlock::const_iterator I = BI->begin(), E = --BI->end(); |
| 753 | I != E; ++I, ++CurInstructionNum) { |
| 754 | if (InstructionsToSkipBeforeDeleting) { |
| 755 | --InstructionsToSkipBeforeDeleting; |
| 756 | } else { |
| 757 | if (BugpointIsInterrupted) |
| 758 | return; |
| 759 | |
| 760 | if (I->isEHPad() || I->getType()->isTokenTy()) |
| 761 | continue; |
| 762 | |
| 763 | outs() << "Checking instruction: " << *I; |
| 764 | std::unique_ptr<Module> M = |
| 765 | BD.deleteInstructionFromProgram(&*I, Simplification); |
| 766 | |
| 767 | // Find out if the pass still crashes on this pass... |
| 768 | if (TestFn(BD, M.get())) { |
| 769 | // Yup, it does, we delete the old module, and continue trying |
| 770 | // to reduce the testcase... |
| 771 | BD.setNewProgram(M.release()); |
| 772 | InstructionsToSkipBeforeDeleting = CurInstructionNum; |
| 773 | goto TryAgain; // I wish I had a multi-level break here! |
| 774 | } |
| 775 | } |
| 776 | } |
| 777 | |
| 778 | if (InstructionsToSkipBeforeDeleting) { |
| 779 | InstructionsToSkipBeforeDeleting = 0; |
| 780 | goto TryAgain; |
| 781 | } |
| 782 | |
| 783 | } while (Simplification); |
| 784 | BD.EmitProgressBitcode(BD.getProgram(), "reduced-instructions"); |
| 785 | } |
| 786 | |
| 787 | |
| 788 | /// DebugACrash - Given a predicate that determines whether a component crashes |
| 789 | /// on a program, try to destructively reduce the program while still keeping |
| 790 | /// the predicate true. |
| 791 | static bool DebugACrash(BugDriver &BD, |
| 792 | bool (*TestFn)(const BugDriver &, Module *), |
| 793 | std::string &Error) { |
| 794 | // See if we can get away with nuking some of the global variable initializers |
| 795 | // in the program... |
| 796 | if (!NoGlobalRM) |
| 797 | ReduceGlobalInitializers(BD, TestFn, Error); |
Misha Brukman | 650ba8e | 2005-04-22 00:00:37 +0000 | [diff] [blame] | 798 | |
Chris Lattner | 1d080f2 | 2003-04-24 22:24:58 +0000 | [diff] [blame] | 799 | // Now try to reduce the number of functions in the module to something small. |
Chris Lattner | fd72bed | 2004-03-14 20:50:42 +0000 | [diff] [blame] | 800 | std::vector<Function*> Functions; |
Duncan P. N. Exon Smith | 306d16e | 2015-10-20 19:36:39 +0000 | [diff] [blame] | 801 | for (Function &F : *BD.getProgram()) |
| 802 | if (!F.isDeclaration()) |
| 803 | Functions.push_back(&F); |
Chris Lattner | 73a6bdd | 2002-11-20 22:28:10 +0000 | [diff] [blame] | 804 | |
Chris Lattner | beb01fa | 2005-08-02 02:16:17 +0000 | [diff] [blame] | 805 | if (Functions.size() > 1 && !BugpointIsInterrupted) { |
Dan Gohman | ee05152 | 2009-07-16 15:30:09 +0000 | [diff] [blame] | 806 | outs() << "\n*** Attempting to reduce the number of functions " |
Chris Lattner | 1d080f2 | 2003-04-24 22:24:58 +0000 | [diff] [blame] | 807 | "in the testcase\n"; |
Chris Lattner | 73a6bdd | 2002-11-20 22:28:10 +0000 | [diff] [blame] | 808 | |
Chris Lattner | 8bda4c4 | 2004-02-18 23:26:28 +0000 | [diff] [blame] | 809 | unsigned OldSize = Functions.size(); |
Nick Lewycky | 6ba630b | 2010-04-12 05:08:25 +0000 | [diff] [blame] | 810 | ReduceCrashingFunctions(BD, TestFn).reduceList(Functions, Error); |
Chris Lattner | 73a6bdd | 2002-11-20 22:28:10 +0000 | [diff] [blame] | 811 | |
Chris Lattner | beb01fa | 2005-08-02 02:16:17 +0000 | [diff] [blame] | 812 | if (Functions.size() < OldSize) |
Rafael Espindola | 594994a | 2010-07-28 18:12:30 +0000 | [diff] [blame] | 813 | BD.EmitProgressBitcode(BD.getProgram(), "reduced-function"); |
Chris Lattner | 73a6bdd | 2002-11-20 22:28:10 +0000 | [diff] [blame] | 814 | } |
| 815 | |
Chris Lattner | f32939b | 2003-04-24 23:51:38 +0000 | [diff] [blame] | 816 | // Attempt to delete entire basic blocks at a time to speed up |
| 817 | // convergence... this actually works by setting the terminator of the blocks |
| 818 | // to a return instruction then running simplifycfg, which can potentially |
| 819 | // shrinks the code dramatically quickly |
| 820 | // |
Chris Lattner | beb01fa | 2005-08-02 02:16:17 +0000 | [diff] [blame] | 821 | if (!DisableSimplifyCFG && !BugpointIsInterrupted) { |
Chris Lattner | 8bda4c4 | 2004-02-18 23:26:28 +0000 | [diff] [blame] | 822 | std::vector<const BasicBlock*> Blocks; |
Duncan P. N. Exon Smith | 306d16e | 2015-10-20 19:36:39 +0000 | [diff] [blame] | 823 | for (Function &F : *BD.getProgram()) |
| 824 | for (BasicBlock &BB : F) |
| 825 | Blocks.push_back(&BB); |
Torok Edwin | 6ee6f73 | 2009-05-24 09:40:47 +0000 | [diff] [blame] | 826 | unsigned OldSize = Blocks.size(); |
Nick Lewycky | 6ba630b | 2010-04-12 05:08:25 +0000 | [diff] [blame] | 827 | ReduceCrashingBlocks(BD, TestFn).reduceList(Blocks, Error); |
Torok Edwin | 6ee6f73 | 2009-05-24 09:40:47 +0000 | [diff] [blame] | 828 | if (Blocks.size() < OldSize) |
Rafael Espindola | 594994a | 2010-07-28 18:12:30 +0000 | [diff] [blame] | 829 | BD.EmitProgressBitcode(BD.getProgram(), "reduced-blocks"); |
Chris Lattner | d1e2aae | 2003-08-05 15:51:05 +0000 | [diff] [blame] | 830 | } |
Chris Lattner | d4e0474 | 2002-12-23 23:49:59 +0000 | [diff] [blame] | 831 | |
Nick Lewycky | 6e090c9 | 2009-05-25 05:30:00 +0000 | [diff] [blame] | 832 | // Attempt to delete instructions using bisection. This should help out nasty |
| 833 | // cases with large basic blocks where the problem is at one end. |
Philip Reames | 1c232f9 | 2016-06-29 00:43:18 +0000 | [diff] [blame] | 834 | if (!BugpointIsInterrupted) |
| 835 | ReduceInsts(BD, TestFn, Error); |
Keno Fischer | 34ca831 | 2015-11-06 00:12:50 +0000 | [diff] [blame] | 836 | |
| 837 | if (!NoNamedMDRM) { |
Keno Fischer | 34ca831 | 2015-11-06 00:12:50 +0000 | [diff] [blame] | 838 | if (!BugpointIsInterrupted) { |
| 839 | // Try to reduce the amount of global metadata (particularly debug info), |
| 840 | // by dropping global named metadata that anchors them |
| 841 | outs() << "\n*** Attempting to remove named metadata: "; |
| 842 | std::vector<std::string> NamedMDNames; |
| 843 | for (auto &NamedMD : BD.getProgram()->named_metadata()) |
| 844 | NamedMDNames.push_back(NamedMD.getName().str()); |
| 845 | ReduceCrashingNamedMD(BD, TestFn).reduceList(NamedMDNames, Error); |
| 846 | } |
| 847 | |
| 848 | if (!BugpointIsInterrupted) { |
| 849 | // Now that we quickly dropped all the named metadata that doesn't |
| 850 | // contribute to the crash, bisect the operands of the remaining ones |
| 851 | std::vector<const MDNode *> NamedMDOps; |
| 852 | for (auto &NamedMD : BD.getProgram()->named_metadata()) |
Keno Fischer | 256df86 | 2015-11-06 00:45:47 +0000 | [diff] [blame] | 853 | for (auto op : NamedMD.operands()) |
| 854 | NamedMDOps.push_back(op); |
Keno Fischer | 34ca831 | 2015-11-06 00:12:50 +0000 | [diff] [blame] | 855 | ReduceCrashingNamedMDOps(BD, TestFn).reduceList(NamedMDOps, Error); |
| 856 | } |
Philip Reames | ac285cc | 2016-06-29 00:10:39 +0000 | [diff] [blame] | 857 | BD.EmitProgressBitcode(BD.getProgram(), "reduced-named-md"); |
Keno Fischer | 34ca831 | 2015-11-06 00:12:50 +0000 | [diff] [blame] | 858 | } |
| 859 | |
Chris Lattner | 514c02e | 2003-02-28 16:13:20 +0000 | [diff] [blame] | 860 | // Try to clean up the testcase by running funcresolve and globaldce... |
Chris Lattner | beb01fa | 2005-08-02 02:16:17 +0000 | [diff] [blame] | 861 | if (!BugpointIsInterrupted) { |
Dan Gohman | ee05152 | 2009-07-16 15:30:09 +0000 | [diff] [blame] | 862 | outs() << "\n*** Attempting to perform final cleanups: "; |
Rafael Espindola | cab951d | 2015-12-08 23:57:17 +0000 | [diff] [blame] | 863 | Module *M = CloneModule(BD.getProgram()).release(); |
Rafael Espindola | 28b351a | 2014-08-26 17:19:03 +0000 | [diff] [blame] | 864 | M = BD.performFinalCleanups(M, true).release(); |
Misha Brukman | 650ba8e | 2005-04-22 00:00:37 +0000 | [diff] [blame] | 865 | |
Chris Lattner | beb01fa | 2005-08-02 02:16:17 +0000 | [diff] [blame] | 866 | // Find out if the pass still crashes on the cleaned up program... |
| 867 | if (TestFn(BD, M)) { |
| 868 | BD.setNewProgram(M); // Yup, it does, keep the reduced version... |
| 869 | } else { |
| 870 | delete M; |
| 871 | } |
Chris Lattner | 514c02e | 2003-02-28 16:13:20 +0000 | [diff] [blame] | 872 | } |
| 873 | |
Rafael Espindola | 594994a | 2010-07-28 18:12:30 +0000 | [diff] [blame] | 874 | BD.EmitProgressBitcode(BD.getProgram(), "reduced-simplified"); |
Chris Lattner | 514c02e | 2003-02-28 16:13:20 +0000 | [diff] [blame] | 875 | |
Misha Brukman | 650ba8e | 2005-04-22 00:00:37 +0000 | [diff] [blame] | 876 | return false; |
Chris Lattner | 73a6bdd | 2002-11-20 22:28:10 +0000 | [diff] [blame] | 877 | } |
Brian Gaeke | 960707c | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 878 | |
Rafael Espindola | d1c7ef4 | 2010-08-05 03:00:22 +0000 | [diff] [blame] | 879 | static bool TestForOptimizerCrash(const BugDriver &BD, Module *M) { |
Philip Reames | e5b5602 | 2016-06-29 03:01:13 +0000 | [diff] [blame] | 880 | return BD.runPasses(M, BD.getPassesToRun()); |
Chris Lattner | 8bda4c4 | 2004-02-18 23:26:28 +0000 | [diff] [blame] | 881 | } |
Chris Lattner | ead1dff | 2004-02-18 21:02:04 +0000 | [diff] [blame] | 882 | |
Chris Lattner | 8bda4c4 | 2004-02-18 23:26:28 +0000 | [diff] [blame] | 883 | /// debugOptimizerCrash - This method is called when some pass crashes on input. |
| 884 | /// It attempts to prune down the testcase to something reasonable, and figure |
| 885 | /// out exactly which pass is crashing. |
| 886 | /// |
Patrick Jenkins | c46c038 | 2006-08-15 16:40:49 +0000 | [diff] [blame] | 887 | bool BugDriver::debugOptimizerCrash(const std::string &ID) { |
Dan Gohman | ee05152 | 2009-07-16 15:30:09 +0000 | [diff] [blame] | 888 | outs() << "\n*** Debugging optimizer crash!\n"; |
Chris Lattner | 8bda4c4 | 2004-02-18 23:26:28 +0000 | [diff] [blame] | 889 | |
Nick Lewycky | 6ba630b | 2010-04-12 05:08:25 +0000 | [diff] [blame] | 890 | std::string Error; |
Chris Lattner | 8bda4c4 | 2004-02-18 23:26:28 +0000 | [diff] [blame] | 891 | // Reduce the list of passes which causes the optimizer to crash... |
JF Bastien | f87e20d | 2015-04-20 23:42:22 +0000 | [diff] [blame] | 892 | if (!BugpointIsInterrupted && !DontReducePassList) |
Nick Lewycky | 6ba630b | 2010-04-12 05:08:25 +0000 | [diff] [blame] | 893 | ReducePassList(*this).reduceList(PassesToRun, Error); |
| 894 | assert(Error.empty()); |
Chris Lattner | 8bda4c4 | 2004-02-18 23:26:28 +0000 | [diff] [blame] | 895 | |
Dan Gohman | ee05152 | 2009-07-16 15:30:09 +0000 | [diff] [blame] | 896 | outs() << "\n*** Found crashing pass" |
| 897 | << (PassesToRun.size() == 1 ? ": " : "es: ") |
| 898 | << getPassesString(PassesToRun) << '\n'; |
Chris Lattner | 8bda4c4 | 2004-02-18 23:26:28 +0000 | [diff] [blame] | 899 | |
Rafael Espindola | 594994a | 2010-07-28 18:12:30 +0000 | [diff] [blame] | 900 | EmitProgressBitcode(Program, ID); |
Chris Lattner | 8bda4c4 | 2004-02-18 23:26:28 +0000 | [diff] [blame] | 901 | |
Nick Lewycky | 6ba630b | 2010-04-12 05:08:25 +0000 | [diff] [blame] | 902 | bool Success = DebugACrash(*this, TestForOptimizerCrash, Error); |
| 903 | assert(Error.empty()); |
| 904 | return Success; |
Chris Lattner | 8bda4c4 | 2004-02-18 23:26:28 +0000 | [diff] [blame] | 905 | } |
| 906 | |
Rafael Espindola | d1c7ef4 | 2010-08-05 03:00:22 +0000 | [diff] [blame] | 907 | static bool TestForCodeGenCrash(const BugDriver &BD, Module *M) { |
Nick Lewycky | 6ba630b | 2010-04-12 05:08:25 +0000 | [diff] [blame] | 908 | std::string Error; |
| 909 | BD.compileProgram(M, &Error); |
| 910 | if (!Error.empty()) { |
Sebastian Pop | 8f7d019 | 2016-07-15 23:15:06 +0000 | [diff] [blame] | 911 | if (VerboseErrors) |
| 912 | errs() << Error << "\n"; |
| 913 | else |
| 914 | errs() << "<crash>\n"; |
Chris Lattner | 8bda4c4 | 2004-02-18 23:26:28 +0000 | [diff] [blame] | 915 | return true; // Tool is still crashing. |
| 916 | } |
Nick Lewycky | 6ba630b | 2010-04-12 05:08:25 +0000 | [diff] [blame] | 917 | errs() << '\n'; |
| 918 | return false; |
Chris Lattner | 8bda4c4 | 2004-02-18 23:26:28 +0000 | [diff] [blame] | 919 | } |
Chris Lattner | ead1dff | 2004-02-18 21:02:04 +0000 | [diff] [blame] | 920 | |
| 921 | /// debugCodeGeneratorCrash - This method is called when the code generator |
| 922 | /// crashes on an input. It attempts to reduce the input as much as possible |
| 923 | /// while still causing the code generator to crash. |
Nick Lewycky | 6ba630b | 2010-04-12 05:08:25 +0000 | [diff] [blame] | 924 | bool BugDriver::debugCodeGeneratorCrash(std::string &Error) { |
Dan Gohman | d8db376 | 2009-07-15 16:35:29 +0000 | [diff] [blame] | 925 | errs() << "*** Debugging code generator crash!\n"; |
Chris Lattner | ead1dff | 2004-02-18 21:02:04 +0000 | [diff] [blame] | 926 | |
Nick Lewycky | 6ba630b | 2010-04-12 05:08:25 +0000 | [diff] [blame] | 927 | return DebugACrash(*this, TestForCodeGenCrash, Error); |
Chris Lattner | ead1dff | 2004-02-18 21:02:04 +0000 | [diff] [blame] | 928 | } |