blob: 82c61b6e1be7aa52a76750c82b4cbbc9ea378e1d [file] [log] [blame]
Chris Lattner73a6bdd2002-11-20 22:28:10 +00001//===- ExtractFunction.cpp - Extract a function from Program --------------===//
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//
Chris Lattnerfd72bed2004-03-14 20:50:42 +000010// This file implements several methods that are used to extract functions,
11// loops, or portions of a module from the rest of the module.
Chris Lattner73a6bdd2002-11-20 22:28:10 +000012//
13//===----------------------------------------------------------------------===//
14
15#include "BugDriver.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000016#include "llvm/IR/Constants.h"
17#include "llvm/IR/DataLayout.h"
18#include "llvm/IR/DerivedTypes.h"
19#include "llvm/IR/LLVMContext.h"
Chandler Carruth30d69c22015-02-13 10:01:29 +000020#include "llvm/IR/LegacyPassManager.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000021#include "llvm/IR/Module.h"
Chandler Carruth5ad5f152014-01-13 09:26:24 +000022#include "llvm/IR/Verifier.h"
Brian Gaekeef432702003-09-10 21:11:42 +000023#include "llvm/Pass.h"
Chandler Carruth4d88a1c2012-12-04 10:44:52 +000024#include "llvm/Support/CommandLine.h"
25#include "llvm/Support/Debug.h"
26#include "llvm/Support/FileUtilities.h"
27#include "llvm/Support/Path.h"
28#include "llvm/Support/Signals.h"
29#include "llvm/Support/ToolOutputFile.h"
Chris Lattner73a6bdd2002-11-20 22:28:10 +000030#include "llvm/Transforms/IPO.h"
Chris Lattner0eb5ce92003-01-23 02:48:33 +000031#include "llvm/Transforms/Scalar.h"
Chris Lattner73a6bdd2002-11-20 22:28:10 +000032#include "llvm/Transforms/Utils/Cloning.h"
Chandler Carruth0fde0012012-05-04 10:18:49 +000033#include "llvm/Transforms/Utils/CodeExtractor.h"
Chris Lattner38382432004-04-02 16:28:32 +000034#include <set>
Chris Lattner3f1ad872003-11-23 04:51:05 +000035using namespace llvm;
Brian Gaeke960707c2003-11-11 22:41:34 +000036
Chandler Carruthe96dd892014-04-21 22:55:11 +000037#define DEBUG_TYPE "bugpoint"
38
Brian Gaeke960707c2003-11-11 22:41:34 +000039namespace llvm {
Justin Bogner8d0a0812016-09-02 01:21:37 +000040bool DisableSimplifyCFG = false;
41extern cl::opt<std::string> OutputPrefix;
Brian Gaeke960707c2003-11-11 22:41:34 +000042} // End llvm namespace
43
Chris Lattner8d8de422003-04-25 22:08:12 +000044namespace {
Justin Bogner8d0a0812016-09-02 01:21:37 +000045cl::opt<bool> NoDCE("disable-dce",
46 cl::desc("Do not use the -dce pass to reduce testcases"));
47cl::opt<bool, true>
48 NoSCFG("disable-simplifycfg", cl::location(DisableSimplifyCFG),
49 cl::desc("Do not use the -simplifycfg pass to reduce testcases"));
Eli Friedman9f18ea82012-02-22 01:43:47 +000050
Justin Bogner8d0a0812016-09-02 01:21:37 +000051Function *globalInitUsesExternalBA(GlobalVariable *GV) {
52 if (!GV->hasInitializer())
Craig Toppere6cb63e2014-04-25 04:24:47 +000053 return nullptr;
Justin Bogner8d0a0812016-09-02 01:21:37 +000054
55 Constant *I = GV->getInitializer();
56
57 // walk the values used by the initializer
58 // (and recurse into things like ConstantExpr)
59 std::vector<Constant *> Todo;
60 std::set<Constant *> Done;
61 Todo.push_back(I);
62
63 while (!Todo.empty()) {
64 Constant *V = Todo.back();
65 Todo.pop_back();
66 Done.insert(V);
67
68 if (BlockAddress *BA = dyn_cast<BlockAddress>(V)) {
69 Function *F = BA->getFunction();
70 if (F->isDeclaration())
71 return F;
72 }
73
74 for (User::op_iterator i = V->op_begin(), e = V->op_end(); i != e; ++i) {
75 Constant *C = dyn_cast<Constant>(*i);
76 if (C && !isa<GlobalValue>(C) && !Done.count(C))
77 Todo.push_back(C);
78 }
Eli Friedman9f18ea82012-02-22 01:43:47 +000079 }
Justin Bogner8d0a0812016-09-02 01:21:37 +000080 return nullptr;
81}
82} // end anonymous namespace
Chris Lattner73a6bdd2002-11-20 22:28:10 +000083
Rafael Espindola28b351a2014-08-26 17:19:03 +000084std::unique_ptr<Module>
85BugDriver::deleteInstructionFromProgram(const Instruction *I,
86 unsigned Simplification) {
Rafael Espindolad1e241a2010-08-10 15:46:11 +000087 // FIXME, use vmap?
Rafael Espindolacab951d2015-12-08 23:57:17 +000088 Module *Clone = CloneModule(Program).release();
Chris Lattner0eb5ce92003-01-23 02:48:33 +000089
Chris Lattnerb943b6b2004-02-18 21:50:26 +000090 const BasicBlock *PBB = I->getParent();
91 const Function *PF = PBB->getParent();
Chris Lattner0eb5ce92003-01-23 02:48:33 +000092
Rafael Espindolad1e241a2010-08-10 15:46:11 +000093 Module::iterator RFI = Clone->begin(); // Get iterator to corresponding fn
Justin Bogner8d0a0812016-09-02 01:21:37 +000094 std::advance(
95 RFI, std::distance(PF->getParent()->begin(), Module::const_iterator(PF)));
Chris Lattner0eb5ce92003-01-23 02:48:33 +000096
Justin Bogner8d0a0812016-09-02 01:21:37 +000097 Function::iterator RBI = RFI->begin(); // Get iterator to corresponding BB
Chris Lattnerb943b6b2004-02-18 21:50:26 +000098 std::advance(RBI, std::distance(PF->begin(), Function::const_iterator(PBB)));
Chris Lattner0eb5ce92003-01-23 02:48:33 +000099
100 BasicBlock::iterator RI = RBI->begin(); // Get iterator to corresponding inst
Chris Lattnerb943b6b2004-02-18 21:50:26 +0000101 std::advance(RI, std::distance(PBB->begin(), BasicBlock::const_iterator(I)));
Duncan P. N. Exon Smith306d16e2015-10-20 19:36:39 +0000102 Instruction *TheInst = &*RI; // Got the corresponding instruction!
Chris Lattner0eb5ce92003-01-23 02:48:33 +0000103
104 // If this instruction produces a value, replace any users with null values
Dan Gohman34a22492010-06-07 20:19:26 +0000105 if (!TheInst->getType()->isVoidTy())
Owen Anderson5a1acd92009-07-31 20:28:14 +0000106 TheInst->replaceAllUsesWith(Constant::getNullValue(TheInst->getType()));
Chris Lattner0eb5ce92003-01-23 02:48:33 +0000107
108 // Remove the instruction from the program.
Chris Lattnerb943b6b2004-02-18 21:50:26 +0000109 TheInst->getParent()->getInstList().erase(TheInst);
Chris Lattner0eb5ce92003-01-23 02:48:33 +0000110
Chris Lattner10c04692003-04-24 22:53:24 +0000111 // Spiff up the output a little bit.
Rafael Espindolad1e241a2010-08-10 15:46:11 +0000112 std::vector<std::string> Passes;
Chris Lattnerf3e8f972003-10-23 15:42:55 +0000113
Rafael Espindolad1e241a2010-08-10 15:46:11 +0000114 /// Can we get rid of the -disable-* options?
Chris Lattner8d8de422003-04-25 22:08:12 +0000115 if (Simplification > 1 && !NoDCE)
Rafael Espindolad1e241a2010-08-10 15:46:11 +0000116 Passes.push_back("dce");
Chris Lattnerd1e2aae2003-08-05 15:51:05 +0000117 if (Simplification && !DisableSimplifyCFG)
Justin Bogner8d0a0812016-09-02 01:21:37 +0000118 Passes.push_back("simplifycfg"); // Delete dead control flow
Chris Lattner44ffd7c2003-03-07 18:17:13 +0000119
Rafael Espindolad1e241a2010-08-10 15:46:11 +0000120 Passes.push_back("verify");
Rafael Espindola28b351a2014-08-26 17:19:03 +0000121 std::unique_ptr<Module> New = runPassesOn(Clone, Passes);
Rafael Espindolad1e241a2010-08-10 15:46:11 +0000122 delete Clone;
123 if (!New) {
124 errs() << "Instruction removal failed. Sorry. :( Please report a bug!\n";
125 exit(1);
126 }
127 return New;
Chris Lattner0eb5ce92003-01-23 02:48:33 +0000128}
Chris Lattner514c02e2003-02-28 16:13:20 +0000129
Rafael Espindola28b351a2014-08-26 17:19:03 +0000130std::unique_ptr<Module>
131BugDriver::performFinalCleanups(Module *M, bool MayModifySemantics) {
Chris Lattner2b3ab562003-05-21 19:41:31 +0000132 // Make all functions external, so GlobalDCE doesn't delete them...
133 for (Module::iterator I = M->begin(), E = M->end(); I != E; ++I)
134 I->setLinkage(GlobalValue::ExternalLinkage);
Misha Brukman650ba8e2005-04-22 00:00:37 +0000135
Rafael Espindola33e81a82010-08-08 03:55:08 +0000136 std::vector<std::string> CleanupPasses;
137 CleanupPasses.push_back("globaldce");
Chris Lattner29201002003-11-05 21:45:35 +0000138
Chris Lattner3f1ad872003-11-23 04:51:05 +0000139 if (MayModifySemantics)
Rafael Espindola33e81a82010-08-08 03:55:08 +0000140 CleanupPasses.push_back("deadarghaX0r");
Chris Lattner3f1ad872003-11-23 04:51:05 +0000141 else
Rafael Espindola33e81a82010-08-08 03:55:08 +0000142 CleanupPasses.push_back("deadargelim");
Chris Lattner29201002003-11-05 21:45:35 +0000143
Rafael Espindola28b351a2014-08-26 17:19:03 +0000144 std::unique_ptr<Module> New = runPassesOn(M, CleanupPasses);
Craig Toppere6cb63e2014-04-25 04:24:47 +0000145 if (!New) {
Dan Gohmand8db3762009-07-15 16:35:29 +0000146 errs() << "Final cleanups failed. Sorry. :( Please report a bug!\n";
Rafael Espindola28b351a2014-08-26 17:19:03 +0000147 return nullptr;
Chris Lattner29201002003-11-05 21:45:35 +0000148 }
Chris Lattner6ce2d032004-03-14 21:17:22 +0000149 delete M;
150 return New;
Chris Lattner514c02e2003-02-28 16:13:20 +0000151}
Chris Lattner567543f2004-03-14 19:27:19 +0000152
Rafael Espindola28b351a2014-08-26 17:19:03 +0000153std::unique_ptr<Module> BugDriver::extractLoop(Module *M) {
Rafael Espindola33e81a82010-08-08 03:55:08 +0000154 std::vector<std::string> LoopExtractPasses;
155 LoopExtractPasses.push_back("loop-extract-single");
Chris Lattner3fe96bc2004-03-14 20:02:07 +0000156
Rafael Espindola28b351a2014-08-26 17:19:03 +0000157 std::unique_ptr<Module> NewM = runPassesOn(M, LoopExtractPasses);
Craig Toppere6cb63e2014-04-25 04:24:47 +0000158 if (!NewM) {
Dan Gohmanee051522009-07-16 15:30:09 +0000159 outs() << "*** Loop extraction failed: ";
Rafael Espindola594994a2010-07-28 18:12:30 +0000160 EmitProgressBitcode(M, "loopextraction", true);
Dan Gohmanee051522009-07-16 15:30:09 +0000161 outs() << "*** Sorry. :( Please report a bug!\n";
Craig Toppere6cb63e2014-04-25 04:24:47 +0000162 return nullptr;
Chris Lattner3fe96bc2004-03-14 20:02:07 +0000163 }
Chris Lattner6ce2d032004-03-14 21:17:22 +0000164
165 // Check to see if we created any new functions. If not, no loops were
Chris Lattner8cb483b2004-11-18 19:40:13 +0000166 // extracted and we should return null. Limit the number of loops we extract
167 // to avoid taking forever.
168 static unsigned NumExtracted = 32;
Chris Lattnerd3087972004-11-16 06:31:38 +0000169 if (M->size() == NewM->size() || --NumExtracted == 0) {
Craig Toppere6cb63e2014-04-25 04:24:47 +0000170 return nullptr;
Chris Lattnerd3087972004-11-16 06:31:38 +0000171 } else {
172 assert(M->size() < NewM->size() && "Loop extract removed functions?");
173 Module::iterator MI = NewM->begin();
174 for (unsigned i = 0, e = M->size(); i != e; ++i)
175 ++MI;
Chris Lattner6ce2d032004-03-14 21:17:22 +0000176 }
Misha Brukman650ba8e2005-04-22 00:00:37 +0000177
Chris Lattner6ce2d032004-03-14 21:17:22 +0000178 return NewM;
Chris Lattner3fe96bc2004-03-14 20:02:07 +0000179}
180
Hal Finkel28ad2b42015-11-26 19:23:49 +0000181static void eliminateAliases(GlobalValue *GV) {
182 // First, check whether a GlobalAlias references this definition.
183 // GlobalAlias MAY NOT reference declarations.
184 for (;;) {
185 // 1. Find aliases
Justin Bogner8d0a0812016-09-02 01:21:37 +0000186 SmallVector<GlobalAlias *, 1> aliases;
Hal Finkel28ad2b42015-11-26 19:23:49 +0000187 Module *M = GV->getParent();
Justin Bogner8d0a0812016-09-02 01:21:37 +0000188 for (Module::alias_iterator I = M->alias_begin(), E = M->alias_end();
189 I != E; ++I)
Hal Finkel28ad2b42015-11-26 19:23:49 +0000190 if (I->getAliasee()->stripPointerCasts() == GV)
191 aliases.push_back(&*I);
192 if (aliases.empty())
193 break;
194 // 2. Resolve aliases
Justin Bogner8d0a0812016-09-02 01:21:37 +0000195 for (unsigned i = 0, e = aliases.size(); i < e; ++i) {
Hal Finkel28ad2b42015-11-26 19:23:49 +0000196 aliases[i]->replaceAllUsesWith(aliases[i]->getAliasee());
197 aliases[i]->eraseFromParent();
198 }
199 // 3. Repeat until no more aliases found; there might
200 // be an alias to an alias...
201 }
202}
203
204//
Justin Bogner8d0a0812016-09-02 01:21:37 +0000205// DeleteGlobalInitializer - "Remove" the global variable by deleting its
206// initializer,
Hal Finkel28ad2b42015-11-26 19:23:49 +0000207// making it external.
208//
209void llvm::DeleteGlobalInitializer(GlobalVariable *GV) {
210 eliminateAliases(GV);
211 GV->setInitializer(nullptr);
Hal Finkel55379ab2017-04-11 00:18:42 +0000212 GV->setComdat(nullptr);
Hal Finkel28ad2b42015-11-26 19:23:49 +0000213}
Chris Lattner3fe96bc2004-03-14 20:02:07 +0000214
Chris Lattner567543f2004-03-14 19:27:19 +0000215// DeleteFunctionBody - "Remove" the function by deleting all of its basic
216// blocks, making it external.
217//
218void llvm::DeleteFunctionBody(Function *F) {
Hal Finkel28ad2b42015-11-26 19:23:49 +0000219 eliminateAliases(F);
Justin Lebar2a445cf2016-06-15 23:20:12 +0000220 // Function declarations can't have comdats.
221 F->setComdat(nullptr);
Hal Finkel28ad2b42015-11-26 19:23:49 +0000222
Chris Lattner567543f2004-03-14 19:27:19 +0000223 // delete the body of the function...
224 F->deleteBody();
Reid Spencer5301e7c2007-01-30 20:08:39 +0000225 assert(F->isDeclaration() && "This didn't make the function external!");
Chris Lattner567543f2004-03-14 19:27:19 +0000226}
227
Chris Lattnerfdb533a2006-03-08 23:55:38 +0000228/// GetTorInit - Given a list of entries for static ctors/dtors, return them
229/// as a constant array.
Justin Bogner8d0a0812016-09-02 01:21:37 +0000230static Constant *GetTorInit(std::vector<std::pair<Function *, int>> &TorList) {
Chris Lattnerfdb533a2006-03-08 23:55:38 +0000231 assert(!TorList.empty() && "Don't create empty tor list!");
Justin Bogner8d0a0812016-09-02 01:21:37 +0000232 std::vector<Constant *> ArrayElts;
Jay Foadb804a2b2011-07-12 14:06:48 +0000233 Type *Int32Ty = Type::getInt32Ty(TorList[0].first->getContext());
David Majnemer6539ed72015-02-26 01:10:49 +0000234
Chris Lattner229907c2011-07-18 04:54:35 +0000235 StructType *STy =
David Majnemer6539ed72015-02-26 01:10:49 +0000236 StructType::get(Int32Ty, TorList[0].first->getType(), nullptr);
Chris Lattnerfdb533a2006-03-08 23:55:38 +0000237 for (unsigned i = 0, e = TorList.size(); i != e; ++i) {
Justin Bogner8d0a0812016-09-02 01:21:37 +0000238 Constant *Elts[] = {ConstantInt::get(Int32Ty, TorList[i].second),
239 TorList[i].first};
Chris Lattnercc19efa2011-06-20 04:01:31 +0000240 ArrayElts.push_back(ConstantStruct::get(STy, Elts));
Chris Lattnerfdb533a2006-03-08 23:55:38 +0000241 }
Justin Bogner8d0a0812016-09-02 01:21:37 +0000242 return ConstantArray::get(
243 ArrayType::get(ArrayElts[0]->getType(), ArrayElts.size()), ArrayElts);
Chris Lattnerfdb533a2006-03-08 23:55:38 +0000244}
245
246/// SplitStaticCtorDtor - A module was recently split into two parts, M1/M2, and
247/// M1 has all of the global variables. If M2 contains any functions that are
248/// static ctors/dtors, we need to add an llvm.global_[cd]tors global to M2, and
249/// prune appropriate entries out of M1s list.
Dan Gohman956ae9d2009-04-22 15:57:18 +0000250static void SplitStaticCtorDtor(const char *GlobalName, Module *M1, Module *M2,
Rafael Espindola229e38f2010-10-13 01:36:30 +0000251 ValueToValueMapTy &VMap) {
Chris Lattnerfdb533a2006-03-08 23:55:38 +0000252 GlobalVariable *GV = M1->getNamedGlobal(GlobalName);
Justin Bogner8d0a0812016-09-02 01:21:37 +0000253 if (!GV || GV->isDeclaration() || GV->hasLocalLinkage() || !GV->use_empty())
254 return;
255
256 std::vector<std::pair<Function *, int>> M1Tors, M2Tors;
Chris Lattnerfdb533a2006-03-08 23:55:38 +0000257 ConstantArray *InitList = dyn_cast<ConstantArray>(GV->getInitializer());
Justin Bogner8d0a0812016-09-02 01:21:37 +0000258 if (!InitList)
259 return;
260
Chris Lattnerfdb533a2006-03-08 23:55:38 +0000261 for (unsigned i = 0, e = InitList->getNumOperands(); i != e; ++i) {
Justin Bogner8d0a0812016-09-02 01:21:37 +0000262 if (ConstantStruct *CS =
263 dyn_cast<ConstantStruct>(InitList->getOperand(i))) {
264 if (CS->getNumOperands() != 2)
265 return; // Not array of 2-element structs.
266
Chris Lattnerfdb533a2006-03-08 23:55:38 +0000267 if (CS->getOperand(1)->isNullValue())
Justin Bogner8d0a0812016-09-02 01:21:37 +0000268 break; // Found a null terminator, stop here.
269
Reid Spencere0fc4df2006-10-20 07:07:24 +0000270 ConstantInt *CI = dyn_cast<ConstantInt>(CS->getOperand(0));
271 int Priority = CI ? CI->getSExtValue() : 0;
Justin Bogner8d0a0812016-09-02 01:21:37 +0000272
Chris Lattnerfdb533a2006-03-08 23:55:38 +0000273 Constant *FP = CS->getOperand(1);
274 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(FP))
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000275 if (CE->isCast())
Chris Lattnerfdb533a2006-03-08 23:55:38 +0000276 FP = CE->getOperand(0);
277 if (Function *F = dyn_cast<Function>(FP)) {
Reid Spencer5301e7c2007-01-30 20:08:39 +0000278 if (!F->isDeclaration())
Chris Lattnerfdb533a2006-03-08 23:55:38 +0000279 M1Tors.push_back(std::make_pair(F, Priority));
280 else {
281 // Map to M2's version of the function.
Devang Patel0dc3c2d2010-06-24 00:33:28 +0000282 F = cast<Function>(VMap[F]);
Chris Lattnerfdb533a2006-03-08 23:55:38 +0000283 M2Tors.push_back(std::make_pair(F, Priority));
284 }
285 }
286 }
287 }
Justin Bogner8d0a0812016-09-02 01:21:37 +0000288
Chris Lattnerfdb533a2006-03-08 23:55:38 +0000289 GV->eraseFromParent();
290 if (!M1Tors.empty()) {
291 Constant *M1Init = GetTorInit(M1Tors);
Owen Andersonb17f3292009-07-08 19:03:57 +0000292 new GlobalVariable(*M1, M1Init->getType(), false,
Justin Bogner8d0a0812016-09-02 01:21:37 +0000293 GlobalValue::AppendingLinkage, M1Init, GlobalName);
Chris Lattnerfdb533a2006-03-08 23:55:38 +0000294 }
295
296 GV = M2->getNamedGlobal(GlobalName);
297 assert(GV && "Not a clone of M1?");
298 assert(GV->use_empty() && "llvm.ctors shouldn't have uses!");
299
300 GV->eraseFromParent();
301 if (!M2Tors.empty()) {
302 Constant *M2Init = GetTorInit(M2Tors);
Owen Andersonb17f3292009-07-08 19:03:57 +0000303 new GlobalVariable(*M2, M2Init->getType(), false,
Justin Bogner8d0a0812016-09-02 01:21:37 +0000304 GlobalValue::AppendingLinkage, M2Init, GlobalName);
Chris Lattnerfdb533a2006-03-08 23:55:38 +0000305 }
306}
307
Rafael Espindola50102c22015-12-09 00:34:10 +0000308std::unique_ptr<Module>
309llvm::SplitFunctionsOutOfModule(Module *M, const std::vector<Function *> &F,
Rafael Espindola229e38f2010-10-13 01:36:30 +0000310 ValueToValueMapTy &VMap) {
Chris Lattner567543f2004-03-14 19:27:19 +0000311 // Make sure functions & globals are all external so that linkage
312 // between the two modules will work.
313 for (Module::iterator I = M->begin(), E = M->end(); I != E; ++I)
314 I->setLinkage(GlobalValue::ExternalLinkage);
Chris Lattnerfdb533a2006-03-08 23:55:38 +0000315 for (Module::global_iterator I = M->global_begin(), E = M->global_end();
Owen Andersonc76bacb2008-07-08 16:38:42 +0000316 I != E; ++I) {
Daniel Dunbard786b512009-07-26 00:34:27 +0000317 if (I->hasName() && I->getName()[0] == '\01')
318 I->setName(I->getName().substr(1));
Chris Lattner567543f2004-03-14 19:27:19 +0000319 I->setLinkage(GlobalValue::ExternalLinkage);
Owen Andersonc76bacb2008-07-08 16:38:42 +0000320 }
Chris Lattner567543f2004-03-14 19:27:19 +0000321
Rafael Espindola229e38f2010-10-13 01:36:30 +0000322 ValueToValueMapTy NewVMap;
Rafael Espindola50102c22015-12-09 00:34:10 +0000323 std::unique_ptr<Module> New = CloneModule(M, NewVMap);
Chris Lattner567543f2004-03-14 19:27:19 +0000324
Chris Lattner7275b022006-11-09 06:24:56 +0000325 // Remove the Test functions from the Safe module
Dan Gohman956ae9d2009-04-22 15:57:18 +0000326 std::set<Function *> TestFunctions;
Chris Lattner567543f2004-03-14 19:27:19 +0000327 for (unsigned i = 0, e = F.size(); i != e; ++i) {
Devang Patel0dc3c2d2010-06-24 00:33:28 +0000328 Function *TNOF = cast<Function>(VMap[F[i]]);
Dan Gohmand8db3762009-07-15 16:35:29 +0000329 DEBUG(errs() << "Removing function ");
Chandler Carruthd48cdbf2014-01-09 02:29:41 +0000330 DEBUG(TNOF->printAsOperand(errs(), false));
Dan Gohmand8db3762009-07-15 16:35:29 +0000331 DEBUG(errs() << "\n");
Devang Patel0dc3c2d2010-06-24 00:33:28 +0000332 TestFunctions.insert(cast<Function>(NewVMap[TNOF]));
Justin Bogner8d0a0812016-09-02 01:21:37 +0000333 DeleteFunctionBody(TNOF); // Function is now external in this module!
Chris Lattner567543f2004-03-14 19:27:19 +0000334 }
335
Chris Lattner7275b022006-11-09 06:24:56 +0000336 // Remove the Safe functions from the Test module
Duncan P. N. Exon Smith306d16e2015-10-20 19:36:39 +0000337 for (Function &I : *New)
338 if (!TestFunctions.count(&I))
339 DeleteFunctionBody(&I);
Patrick Jenkinsb417a5c2006-07-28 01:19:28 +0000340
Eli Friedman9f18ea82012-02-22 01:43:47 +0000341 // Try to split the global initializers evenly
Duncan P. N. Exon Smith306d16e2015-10-20 19:36:39 +0000342 for (GlobalVariable &I : M->globals()) {
343 GlobalVariable *GV = cast<GlobalVariable>(NewVMap[&I]);
344 if (Function *TestFn = globalInitUsesExternalBA(&I)) {
Eli Friedman9f18ea82012-02-22 01:43:47 +0000345 if (Function *SafeFn = globalInitUsesExternalBA(GV)) {
346 errs() << "*** Error: when reducing functions, encountered "
347 "the global '";
Chandler Carruthd48cdbf2014-01-09 02:29:41 +0000348 GV->printAsOperand(errs(), false);
Eli Friedman9f18ea82012-02-22 01:43:47 +0000349 errs() << "' with an initializer that references blockaddresses "
Justin Bogner8d0a0812016-09-02 01:21:37 +0000350 "from safe function '"
351 << SafeFn->getName() << "' and from test function '"
352 << TestFn->getName() << "'.\n";
Eli Friedman9f18ea82012-02-22 01:43:47 +0000353 exit(1);
354 }
Hal Finkel28ad2b42015-11-26 19:23:49 +0000355 DeleteGlobalInitializer(&I); // Delete the initializer to make it external
Eli Friedman9f18ea82012-02-22 01:43:47 +0000356 } else {
357 // If we keep it in the safe module, then delete it in the test module
Hal Finkel28ad2b42015-11-26 19:23:49 +0000358 DeleteGlobalInitializer(GV);
Eli Friedman9f18ea82012-02-22 01:43:47 +0000359 }
360 }
361
Chris Lattnerfdb533a2006-03-08 23:55:38 +0000362 // Make sure that there is a global ctor/dtor array in both halves of the
363 // module if they both have static ctor/dtor functions.
Rafael Espindola50102c22015-12-09 00:34:10 +0000364 SplitStaticCtorDtor("llvm.global_ctors", M, New.get(), NewVMap);
365 SplitStaticCtorDtor("llvm.global_dtors", M, New.get(), NewVMap);
366
Chris Lattner567543f2004-03-14 19:27:19 +0000367 return New;
368}
Chris Lattnera060b102004-05-11 21:54:13 +0000369
370//===----------------------------------------------------------------------===//
371// Basic Block Extraction Code
372//===----------------------------------------------------------------------===//
373
Rafael Espindola28b351a2014-08-26 17:19:03 +0000374std::unique_ptr<Module>
375BugDriver::extractMappedBlocksFromModule(const std::vector<BasicBlock *> &BBs,
376 Module *M) {
Rafael Espindola7e936ee2013-06-17 18:48:59 +0000377 SmallString<128> Filename;
378 int FD;
Rafael Espindola4453e42942014-06-13 03:07:50 +0000379 std::error_code EC = sys::fs::createUniqueFile(
Rafael Espindolac9d2e5b2013-07-05 21:01:08 +0000380 OutputPrefix + "-extractblocks%%%%%%%", FD, Filename);
Rafael Espindola7e936ee2013-06-17 18:48:59 +0000381 if (EC) {
Dan Gohmanee051522009-07-16 15:30:09 +0000382 outs() << "*** Basic Block extraction failed!\n";
Rafael Espindola7e936ee2013-06-17 18:48:59 +0000383 errs() << "Error creating temporary file: " << EC.message() << "\n";
Rafael Espindola594994a2010-07-28 18:12:30 +0000384 EmitProgressBitcode(M, "basicblockextractfail", true);
Craig Toppere6cb63e2014-04-25 04:24:47 +0000385 return nullptr;
Nick Lewyckyc6243022007-11-14 06:47:06 +0000386 }
Rafael Espindola7e936ee2013-06-17 18:48:59 +0000387 sys::RemoveFileOnSignal(Filename);
Nick Lewyckyc6243022007-11-14 06:47:06 +0000388
Rafael Espindola7e936ee2013-06-17 18:48:59 +0000389 tool_output_file BlocksToNotExtractFile(Filename.c_str(), FD);
Justin Bogner8d0a0812016-09-02 01:21:37 +0000390 for (std::vector<BasicBlock *>::const_iterator I = BBs.begin(), E = BBs.end();
Nick Lewyckyc6243022007-11-14 06:47:06 +0000391 I != E; ++I) {
392 BasicBlock *BB = *I;
Chris Lattner97879422008-01-08 04:26:20 +0000393 // If the BB doesn't have a name, give it one so we have something to key
394 // off of.
Justin Bogner8d0a0812016-09-02 01:21:37 +0000395 if (!BB->hasName())
396 BB->setName("tmpbb");
Benjamin Kramer1f97a5a2011-11-15 16:27:03 +0000397 BlocksToNotExtractFile.os() << BB->getParent()->getName() << " "
Dan Gohmana2233f22010-09-01 14:20:41 +0000398 << BB->getName() << "\n";
Nick Lewyckyc6243022007-11-14 06:47:06 +0000399 }
Dan Gohmana2233f22010-09-01 14:20:41 +0000400 BlocksToNotExtractFile.os().close();
401 if (BlocksToNotExtractFile.os().has_error()) {
Rafael Espindola7e936ee2013-06-17 18:48:59 +0000402 errs() << "Error writing list of blocks to not extract\n";
Dan Gohman8525fe72010-08-20 16:59:15 +0000403 EmitProgressBitcode(M, "basicblockextractfail", true);
Dan Gohmana2233f22010-09-01 14:20:41 +0000404 BlocksToNotExtractFile.os().clear_error();
Craig Toppere6cb63e2014-04-25 04:24:47 +0000405 return nullptr;
Dan Gohman8525fe72010-08-20 16:59:15 +0000406 }
407 BlocksToNotExtractFile.keep();
Nick Lewyckyc6243022007-11-14 06:47:06 +0000408
Rafael Espindola7e936ee2013-06-17 18:48:59 +0000409 std::string uniqueFN = "--extract-blocks-file=";
410 uniqueFN += Filename.str();
Benjamin Kramer29063ea2010-01-28 18:04:38 +0000411 const char *ExtraArg = uniqueFN.c_str();
Nick Lewyckyc6243022007-11-14 06:47:06 +0000412
Rafael Espindola33e81a82010-08-08 03:55:08 +0000413 std::vector<std::string> PI;
414 PI.push_back("extract-blocks");
Philip Reames78153a62016-06-29 00:26:21 +0000415 std::unique_ptr<Module> Ret = runPassesOn(M, PI, 1, &ExtraArg);
Nick Lewyckyc6243022007-11-14 06:47:06 +0000416
Rafael Espindola7e936ee2013-06-17 18:48:59 +0000417 sys::fs::remove(Filename.c_str());
Nick Lewyckyc6243022007-11-14 06:47:06 +0000418
Craig Toppere6cb63e2014-04-25 04:24:47 +0000419 if (!Ret) {
Dan Gohmanee051522009-07-16 15:30:09 +0000420 outs() << "*** Basic Block extraction failed, please report a bug!\n";
Rafael Espindola594994a2010-07-28 18:12:30 +0000421 EmitProgressBitcode(M, "basicblockextractfail", true);
Chris Lattneraf32dfa2004-08-12 02:36:50 +0000422 }
Chris Lattnera060b102004-05-11 21:54:13 +0000423 return Ret;
424}