blob: 369c904709ad64236e98b56428085b4074a696fb [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 Carruth4d88a1c2012-12-04 10:44:52 +000016#include "llvm/Analysis/Verifier.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000017#include "llvm/IR/Constants.h"
18#include "llvm/IR/DataLayout.h"
19#include "llvm/IR/DerivedTypes.h"
20#include "llvm/IR/LLVMContext.h"
21#include "llvm/IR/Module.h"
Brian Gaekeef432702003-09-10 21:11:42 +000022#include "llvm/Pass.h"
Chandler Carruth4d88a1c2012-12-04 10:44:52 +000023#include "llvm/PassManager.h"
24#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
37namespace llvm {
Chris Lattner3f1ad872003-11-23 04:51:05 +000038 bool DisableSimplifyCFG = false;
Daniel Dunbara53337f2009-09-07 19:26:11 +000039 extern cl::opt<std::string> OutputPrefix;
Brian Gaeke960707c2003-11-11 22:41:34 +000040} // End llvm namespace
41
Chris Lattner8d8de422003-04-25 22:08:12 +000042namespace {
43 cl::opt<bool>
Chris Lattner8d8de422003-04-25 22:08:12 +000044 NoDCE ("disable-dce",
45 cl::desc("Do not use the -dce pass to reduce testcases"));
Chris Lattnerd1e2aae2003-08-05 15:51:05 +000046 cl::opt<bool, true>
47 NoSCFG("disable-simplifycfg", cl::location(DisableSimplifyCFG),
Chris Lattner8d8de422003-04-25 22:08:12 +000048 cl::desc("Do not use the -simplifycfg pass to reduce testcases"));
Eli Friedman9f18ea82012-02-22 01:43:47 +000049
50 Function* globalInitUsesExternalBA(GlobalVariable* GV) {
51 if (!GV->hasInitializer())
52 return 0;
53
54 Constant *I = GV->getInitializer();
55
56 // walk the values used by the initializer
57 // (and recurse into things like ConstantExpr)
58 std::vector<Constant*> Todo;
59 std::set<Constant*> Done;
60 Todo.push_back(I);
61
62 while (!Todo.empty()) {
63 Constant* V = Todo.back();
64 Todo.pop_back();
65 Done.insert(V);
66
67 if (BlockAddress *BA = dyn_cast<BlockAddress>(V)) {
68 Function *F = BA->getFunction();
69 if (F->isDeclaration())
70 return F;
71 }
72
73 for (User::op_iterator i = V->op_begin(), e = V->op_end(); i != e; ++i) {
74 Constant *C = dyn_cast<Constant>(*i);
75 if (C && !isa<GlobalValue>(C) && !Done.count(C))
76 Todo.push_back(C);
77 }
78 }
79 return 0;
80 }
81} // end anonymous namespace
Chris Lattner73a6bdd2002-11-20 22:28:10 +000082
Chris Lattner0eb5ce92003-01-23 02:48:33 +000083/// deleteInstructionFromProgram - This method clones the current Program and
84/// deletes the specified instruction from the cloned module. It then runs a
85/// series of cleanup passes (ADCE and SimplifyCFG) to eliminate any code which
86/// depends on the value. The modified module is then returned.
87///
Chris Lattnerb943b6b2004-02-18 21:50:26 +000088Module *BugDriver::deleteInstructionFromProgram(const Instruction *I,
Rafael Espindolad1e241a2010-08-10 15:46:11 +000089 unsigned Simplification) {
90 // FIXME, use vmap?
91 Module *Clone = CloneModule(Program);
Chris Lattner0eb5ce92003-01-23 02:48:33 +000092
Chris Lattnerb943b6b2004-02-18 21:50:26 +000093 const BasicBlock *PBB = I->getParent();
94 const Function *PF = PBB->getParent();
Chris Lattner0eb5ce92003-01-23 02:48:33 +000095
Rafael Espindolad1e241a2010-08-10 15:46:11 +000096 Module::iterator RFI = Clone->begin(); // Get iterator to corresponding fn
Chris Lattnerb943b6b2004-02-18 21:50:26 +000097 std::advance(RFI, std::distance(PF->getParent()->begin(),
98 Module::const_iterator(PF)));
Chris Lattner0eb5ce92003-01-23 02:48:33 +000099
100 Function::iterator RBI = RFI->begin(); // Get iterator to corresponding BB
Chris Lattnerb943b6b2004-02-18 21:50:26 +0000101 std::advance(RBI, std::distance(PF->begin(), Function::const_iterator(PBB)));
Chris Lattner0eb5ce92003-01-23 02:48:33 +0000102
103 BasicBlock::iterator RI = RBI->begin(); // Get iterator to corresponding inst
Chris Lattnerb943b6b2004-02-18 21:50:26 +0000104 std::advance(RI, std::distance(PBB->begin(), BasicBlock::const_iterator(I)));
105 Instruction *TheInst = RI; // Got the corresponding instruction!
Chris Lattner0eb5ce92003-01-23 02:48:33 +0000106
107 // If this instruction produces a value, replace any users with null values
Dan Gohman34a22492010-06-07 20:19:26 +0000108 if (!TheInst->getType()->isVoidTy())
Owen Anderson5a1acd92009-07-31 20:28:14 +0000109 TheInst->replaceAllUsesWith(Constant::getNullValue(TheInst->getType()));
Chris Lattner0eb5ce92003-01-23 02:48:33 +0000110
111 // Remove the instruction from the program.
Chris Lattnerb943b6b2004-02-18 21:50:26 +0000112 TheInst->getParent()->getInstList().erase(TheInst);
Chris Lattner0eb5ce92003-01-23 02:48:33 +0000113
Chris Lattner10c04692003-04-24 22:53:24 +0000114 // Spiff up the output a little bit.
Rafael Espindolad1e241a2010-08-10 15:46:11 +0000115 std::vector<std::string> Passes;
Chris Lattnerf3e8f972003-10-23 15:42:55 +0000116
Rafael Espindolad1e241a2010-08-10 15:46:11 +0000117 /// Can we get rid of the -disable-* options?
Chris Lattner8d8de422003-04-25 22:08:12 +0000118 if (Simplification > 1 && !NoDCE)
Rafael Espindolad1e241a2010-08-10 15:46:11 +0000119 Passes.push_back("dce");
Chris Lattnerd1e2aae2003-08-05 15:51:05 +0000120 if (Simplification && !DisableSimplifyCFG)
Rafael Espindolad1e241a2010-08-10 15:46:11 +0000121 Passes.push_back("simplifycfg"); // Delete dead control flow
Chris Lattner44ffd7c2003-03-07 18:17:13 +0000122
Rafael Espindolad1e241a2010-08-10 15:46:11 +0000123 Passes.push_back("verify");
124 Module *New = runPassesOn(Clone, Passes);
125 delete Clone;
126 if (!New) {
127 errs() << "Instruction removal failed. Sorry. :( Please report a bug!\n";
128 exit(1);
129 }
130 return New;
Chris Lattner0eb5ce92003-01-23 02:48:33 +0000131}
Chris Lattner514c02e2003-02-28 16:13:20 +0000132
133/// performFinalCleanups - This method clones the current Program and performs
134/// a series of cleanups intended to get rid of extra cruft on the module
Chris Lattner5e166a52005-02-23 06:12:11 +0000135/// before handing it to the user.
Chris Lattner514c02e2003-02-28 16:13:20 +0000136///
Chris Lattner29201002003-11-05 21:45:35 +0000137Module *BugDriver::performFinalCleanups(Module *M, bool MayModifySemantics) {
Chris Lattner2b3ab562003-05-21 19:41:31 +0000138 // Make all functions external, so GlobalDCE doesn't delete them...
139 for (Module::iterator I = M->begin(), E = M->end(); I != E; ++I)
140 I->setLinkage(GlobalValue::ExternalLinkage);
Misha Brukman650ba8e2005-04-22 00:00:37 +0000141
Rafael Espindola33e81a82010-08-08 03:55:08 +0000142 std::vector<std::string> CleanupPasses;
143 CleanupPasses.push_back("globaldce");
Chris Lattner29201002003-11-05 21:45:35 +0000144
Chris Lattner3f1ad872003-11-23 04:51:05 +0000145 if (MayModifySemantics)
Rafael Espindola33e81a82010-08-08 03:55:08 +0000146 CleanupPasses.push_back("deadarghaX0r");
Chris Lattner3f1ad872003-11-23 04:51:05 +0000147 else
Rafael Espindola33e81a82010-08-08 03:55:08 +0000148 CleanupPasses.push_back("deadargelim");
Chris Lattner29201002003-11-05 21:45:35 +0000149
Chris Lattner6ce2d032004-03-14 21:17:22 +0000150 Module *New = runPassesOn(M, CleanupPasses);
151 if (New == 0) {
Dan Gohmand8db3762009-07-15 16:35:29 +0000152 errs() << "Final cleanups failed. Sorry. :( Please report a bug!\n";
Chris Lattner5e166a52005-02-23 06:12:11 +0000153 return M;
Chris Lattner29201002003-11-05 21:45:35 +0000154 }
Chris Lattner6ce2d032004-03-14 21:17:22 +0000155 delete M;
156 return New;
Chris Lattner514c02e2003-02-28 16:13:20 +0000157}
Chris Lattner567543f2004-03-14 19:27:19 +0000158
159
Chris Lattner3fe96bc2004-03-14 20:02:07 +0000160/// ExtractLoop - Given a module, extract up to one loop from it into a new
161/// function. This returns null if there are no extractable loops in the
162/// program or if the loop extractor crashes.
163Module *BugDriver::ExtractLoop(Module *M) {
Rafael Espindola33e81a82010-08-08 03:55:08 +0000164 std::vector<std::string> LoopExtractPasses;
165 LoopExtractPasses.push_back("loop-extract-single");
Chris Lattner3fe96bc2004-03-14 20:02:07 +0000166
Chris Lattner6ce2d032004-03-14 21:17:22 +0000167 Module *NewM = runPassesOn(M, LoopExtractPasses);
168 if (NewM == 0) {
Dan Gohmanee051522009-07-16 15:30:09 +0000169 outs() << "*** Loop extraction failed: ";
Rafael Espindola594994a2010-07-28 18:12:30 +0000170 EmitProgressBitcode(M, "loopextraction", true);
Dan Gohmanee051522009-07-16 15:30:09 +0000171 outs() << "*** Sorry. :( Please report a bug!\n";
Chris Lattner3fe96bc2004-03-14 20:02:07 +0000172 return 0;
Chris Lattner3fe96bc2004-03-14 20:02:07 +0000173 }
Chris Lattner6ce2d032004-03-14 21:17:22 +0000174
175 // Check to see if we created any new functions. If not, no loops were
Chris Lattner8cb483b2004-11-18 19:40:13 +0000176 // extracted and we should return null. Limit the number of loops we extract
177 // to avoid taking forever.
178 static unsigned NumExtracted = 32;
Chris Lattnerd3087972004-11-16 06:31:38 +0000179 if (M->size() == NewM->size() || --NumExtracted == 0) {
Chris Lattner6ce2d032004-03-14 21:17:22 +0000180 delete NewM;
181 return 0;
Chris Lattnerd3087972004-11-16 06:31:38 +0000182 } else {
183 assert(M->size() < NewM->size() && "Loop extract removed functions?");
184 Module::iterator MI = NewM->begin();
185 for (unsigned i = 0, e = M->size(); i != e; ++i)
186 ++MI;
Chris Lattner6ce2d032004-03-14 21:17:22 +0000187 }
Misha Brukman650ba8e2005-04-22 00:00:37 +0000188
Chris Lattner6ce2d032004-03-14 21:17:22 +0000189 return NewM;
Chris Lattner3fe96bc2004-03-14 20:02:07 +0000190}
191
192
Chris Lattner567543f2004-03-14 19:27:19 +0000193// DeleteFunctionBody - "Remove" the function by deleting all of its basic
194// blocks, making it external.
195//
196void llvm::DeleteFunctionBody(Function *F) {
197 // delete the body of the function...
198 F->deleteBody();
Reid Spencer5301e7c2007-01-30 20:08:39 +0000199 assert(F->isDeclaration() && "This didn't make the function external!");
Chris Lattner567543f2004-03-14 19:27:19 +0000200}
201
Chris Lattnerfdb533a2006-03-08 23:55:38 +0000202/// GetTorInit - Given a list of entries for static ctors/dtors, return them
203/// as a constant array.
204static Constant *GetTorInit(std::vector<std::pair<Function*, int> > &TorList) {
205 assert(!TorList.empty() && "Don't create empty tor list!");
206 std::vector<Constant*> ArrayElts;
Jay Foadb804a2b2011-07-12 14:06:48 +0000207 Type *Int32Ty = Type::getInt32Ty(TorList[0].first->getContext());
Chris Lattnercc19efa2011-06-20 04:01:31 +0000208
Chris Lattner229907c2011-07-18 04:54:35 +0000209 StructType *STy =
Chris Lattnercc19efa2011-06-20 04:01:31 +0000210 StructType::get(Int32Ty, TorList[0].first->getType(), NULL);
Chris Lattnerfdb533a2006-03-08 23:55:38 +0000211 for (unsigned i = 0, e = TorList.size(); i != e; ++i) {
Chris Lattnercc19efa2011-06-20 04:01:31 +0000212 Constant *Elts[] = {
213 ConstantInt::get(Int32Ty, TorList[i].second),
214 TorList[i].first
215 };
216 ArrayElts.push_back(ConstantStruct::get(STy, Elts));
Chris Lattnerfdb533a2006-03-08 23:55:38 +0000217 }
Owen Anderson4056ca92009-07-29 22:17:13 +0000218 return ConstantArray::get(ArrayType::get(ArrayElts[0]->getType(),
Chris Lattnerfdb533a2006-03-08 23:55:38 +0000219 ArrayElts.size()),
220 ArrayElts);
221}
222
223/// SplitStaticCtorDtor - A module was recently split into two parts, M1/M2, and
224/// M1 has all of the global variables. If M2 contains any functions that are
225/// static ctors/dtors, we need to add an llvm.global_[cd]tors global to M2, and
226/// prune appropriate entries out of M1s list.
Dan Gohman956ae9d2009-04-22 15:57:18 +0000227static void SplitStaticCtorDtor(const char *GlobalName, Module *M1, Module *M2,
Rafael Espindola229e38f2010-10-13 01:36:30 +0000228 ValueToValueMapTy &VMap) {
Chris Lattnerfdb533a2006-03-08 23:55:38 +0000229 GlobalVariable *GV = M1->getNamedGlobal(GlobalName);
Rafael Espindola6de96a12009-01-15 20:18:42 +0000230 if (!GV || GV->isDeclaration() || GV->hasLocalLinkage() ||
Chris Lattnerfdb533a2006-03-08 23:55:38 +0000231 !GV->use_empty()) return;
232
233 std::vector<std::pair<Function*, int> > M1Tors, M2Tors;
234 ConstantArray *InitList = dyn_cast<ConstantArray>(GV->getInitializer());
235 if (!InitList) return;
236
237 for (unsigned i = 0, e = InitList->getNumOperands(); i != e; ++i) {
238 if (ConstantStruct *CS = dyn_cast<ConstantStruct>(InitList->getOperand(i))){
239 if (CS->getNumOperands() != 2) return; // Not array of 2-element structs.
240
241 if (CS->getOperand(1)->isNullValue())
242 break; // Found a null terminator, stop here.
243
Reid Spencere0fc4df2006-10-20 07:07:24 +0000244 ConstantInt *CI = dyn_cast<ConstantInt>(CS->getOperand(0));
245 int Priority = CI ? CI->getSExtValue() : 0;
Chris Lattnerfdb533a2006-03-08 23:55:38 +0000246
247 Constant *FP = CS->getOperand(1);
248 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(FP))
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000249 if (CE->isCast())
Chris Lattnerfdb533a2006-03-08 23:55:38 +0000250 FP = CE->getOperand(0);
251 if (Function *F = dyn_cast<Function>(FP)) {
Reid Spencer5301e7c2007-01-30 20:08:39 +0000252 if (!F->isDeclaration())
Chris Lattnerfdb533a2006-03-08 23:55:38 +0000253 M1Tors.push_back(std::make_pair(F, Priority));
254 else {
255 // Map to M2's version of the function.
Devang Patel0dc3c2d2010-06-24 00:33:28 +0000256 F = cast<Function>(VMap[F]);
Chris Lattnerfdb533a2006-03-08 23:55:38 +0000257 M2Tors.push_back(std::make_pair(F, Priority));
258 }
259 }
260 }
261 }
262
263 GV->eraseFromParent();
264 if (!M1Tors.empty()) {
265 Constant *M1Init = GetTorInit(M1Tors);
Owen Andersonb17f3292009-07-08 19:03:57 +0000266 new GlobalVariable(*M1, M1Init->getType(), false,
Owen Anderson5948fdf2009-07-08 01:26:06 +0000267 GlobalValue::AppendingLinkage,
Owen Andersonb17f3292009-07-08 19:03:57 +0000268 M1Init, GlobalName);
Chris Lattnerfdb533a2006-03-08 23:55:38 +0000269 }
270
271 GV = M2->getNamedGlobal(GlobalName);
272 assert(GV && "Not a clone of M1?");
273 assert(GV->use_empty() && "llvm.ctors shouldn't have uses!");
274
275 GV->eraseFromParent();
276 if (!M2Tors.empty()) {
277 Constant *M2Init = GetTorInit(M2Tors);
Owen Andersonb17f3292009-07-08 19:03:57 +0000278 new GlobalVariable(*M2, M2Init->getType(), false,
Owen Anderson5948fdf2009-07-08 01:26:06 +0000279 GlobalValue::AppendingLinkage,
Owen Andersonb17f3292009-07-08 19:03:57 +0000280 M2Init, GlobalName);
Chris Lattnerfdb533a2006-03-08 23:55:38 +0000281 }
282}
283
Patrick Jenkinsb417a5c2006-07-28 01:19:28 +0000284
Chris Lattner567543f2004-03-14 19:27:19 +0000285/// SplitFunctionsOutOfModule - Given a module and a list of functions in the
286/// module, split the functions OUT of the specified module, and place them in
287/// the new module.
Dan Gohman956ae9d2009-04-22 15:57:18 +0000288Module *
289llvm::SplitFunctionsOutOfModule(Module *M,
290 const std::vector<Function*> &F,
Rafael Espindola229e38f2010-10-13 01:36:30 +0000291 ValueToValueMapTy &VMap) {
Chris Lattner567543f2004-03-14 19:27:19 +0000292 // Make sure functions & globals are all external so that linkage
293 // between the two modules will work.
294 for (Module::iterator I = M->begin(), E = M->end(); I != E; ++I)
295 I->setLinkage(GlobalValue::ExternalLinkage);
Chris Lattnerfdb533a2006-03-08 23:55:38 +0000296 for (Module::global_iterator I = M->global_begin(), E = M->global_end();
Owen Andersonc76bacb2008-07-08 16:38:42 +0000297 I != E; ++I) {
Daniel Dunbard786b512009-07-26 00:34:27 +0000298 if (I->hasName() && I->getName()[0] == '\01')
299 I->setName(I->getName().substr(1));
Chris Lattner567543f2004-03-14 19:27:19 +0000300 I->setLinkage(GlobalValue::ExternalLinkage);
Owen Andersonc76bacb2008-07-08 16:38:42 +0000301 }
Chris Lattner567543f2004-03-14 19:27:19 +0000302
Rafael Espindola229e38f2010-10-13 01:36:30 +0000303 ValueToValueMapTy NewVMap;
Devang Patel0dc3c2d2010-06-24 00:33:28 +0000304 Module *New = CloneModule(M, NewVMap);
Chris Lattner567543f2004-03-14 19:27:19 +0000305
Chris Lattner7275b022006-11-09 06:24:56 +0000306 // Remove the Test functions from the Safe module
Dan Gohman956ae9d2009-04-22 15:57:18 +0000307 std::set<Function *> TestFunctions;
Chris Lattner567543f2004-03-14 19:27:19 +0000308 for (unsigned i = 0, e = F.size(); i != e; ++i) {
Devang Patel0dc3c2d2010-06-24 00:33:28 +0000309 Function *TNOF = cast<Function>(VMap[F[i]]);
Dan Gohmand8db3762009-07-15 16:35:29 +0000310 DEBUG(errs() << "Removing function ");
Chandler Carruthd48cdbf2014-01-09 02:29:41 +0000311 DEBUG(TNOF->printAsOperand(errs(), false));
Dan Gohmand8db3762009-07-15 16:35:29 +0000312 DEBUG(errs() << "\n");
Devang Patel0dc3c2d2010-06-24 00:33:28 +0000313 TestFunctions.insert(cast<Function>(NewVMap[TNOF]));
Chris Lattner7275b022006-11-09 06:24:56 +0000314 DeleteFunctionBody(TNOF); // Function is now external in this module!
Chris Lattner567543f2004-03-14 19:27:19 +0000315 }
316
Chris Lattnerfdb533a2006-03-08 23:55:38 +0000317
Chris Lattner7275b022006-11-09 06:24:56 +0000318 // Remove the Safe functions from the Test module
319 for (Module::iterator I = New->begin(), E = New->end(); I != E; ++I)
Dan Gohman956ae9d2009-04-22 15:57:18 +0000320 if (!TestFunctions.count(I))
Chris Lattner7275b022006-11-09 06:24:56 +0000321 DeleteFunctionBody(I);
322
Patrick Jenkinsb417a5c2006-07-28 01:19:28 +0000323
Eli Friedman9f18ea82012-02-22 01:43:47 +0000324 // Try to split the global initializers evenly
325 for (Module::global_iterator I = M->global_begin(), E = M->global_end();
326 I != E; ++I) {
327 GlobalVariable *GV = cast<GlobalVariable>(NewVMap[I]);
328 if (Function *TestFn = globalInitUsesExternalBA(I)) {
329 if (Function *SafeFn = globalInitUsesExternalBA(GV)) {
330 errs() << "*** Error: when reducing functions, encountered "
331 "the global '";
Chandler Carruthd48cdbf2014-01-09 02:29:41 +0000332 GV->printAsOperand(errs(), false);
Eli Friedman9f18ea82012-02-22 01:43:47 +0000333 errs() << "' with an initializer that references blockaddresses "
334 "from safe function '" << SafeFn->getName()
335 << "' and from test function '" << TestFn->getName() << "'.\n";
336 exit(1);
337 }
338 I->setInitializer(0); // Delete the initializer to make it external
339 } else {
340 // If we keep it in the safe module, then delete it in the test module
341 GV->setInitializer(0);
342 }
343 }
344
Chris Lattnerfdb533a2006-03-08 23:55:38 +0000345 // Make sure that there is a global ctor/dtor array in both halves of the
346 // module if they both have static ctor/dtor functions.
Devang Patel0dc3c2d2010-06-24 00:33:28 +0000347 SplitStaticCtorDtor("llvm.global_ctors", M, New, NewVMap);
348 SplitStaticCtorDtor("llvm.global_dtors", M, New, NewVMap);
Chris Lattnerfdb533a2006-03-08 23:55:38 +0000349
Chris Lattner567543f2004-03-14 19:27:19 +0000350 return New;
351}
Chris Lattnera060b102004-05-11 21:54:13 +0000352
353//===----------------------------------------------------------------------===//
354// Basic Block Extraction Code
355//===----------------------------------------------------------------------===//
356
Chris Lattnera060b102004-05-11 21:54:13 +0000357/// ExtractMappedBlocksFromModule - Extract all but the specified basic blocks
358/// into their own functions. The only detail is that M is actually a module
359/// cloned from the one the BBs are in, so some mapping needs to be performed.
360/// If this operation fails for some reason (ie the implementation is buggy),
361/// this function should return null, otherwise it returns a new Module.
362Module *BugDriver::ExtractMappedBlocksFromModule(const
363 std::vector<BasicBlock*> &BBs,
364 Module *M) {
Rafael Espindola7e936ee2013-06-17 18:48:59 +0000365 SmallString<128> Filename;
366 int FD;
Rafael Espindolac9d2e5b2013-07-05 21:01:08 +0000367 error_code EC = sys::fs::createUniqueFile(
368 OutputPrefix + "-extractblocks%%%%%%%", FD, Filename);
Rafael Espindola7e936ee2013-06-17 18:48:59 +0000369 if (EC) {
Dan Gohmanee051522009-07-16 15:30:09 +0000370 outs() << "*** Basic Block extraction failed!\n";
Rafael Espindola7e936ee2013-06-17 18:48:59 +0000371 errs() << "Error creating temporary file: " << EC.message() << "\n";
Rafael Espindola594994a2010-07-28 18:12:30 +0000372 EmitProgressBitcode(M, "basicblockextractfail", true);
Nick Lewyckyc6243022007-11-14 06:47:06 +0000373 return 0;
374 }
Rafael Espindola7e936ee2013-06-17 18:48:59 +0000375 sys::RemoveFileOnSignal(Filename);
Nick Lewyckyc6243022007-11-14 06:47:06 +0000376
Rafael Espindola7e936ee2013-06-17 18:48:59 +0000377 tool_output_file BlocksToNotExtractFile(Filename.c_str(), FD);
Nick Lewyckyc6243022007-11-14 06:47:06 +0000378 for (std::vector<BasicBlock*>::const_iterator I = BBs.begin(), E = BBs.end();
379 I != E; ++I) {
380 BasicBlock *BB = *I;
Chris Lattner97879422008-01-08 04:26:20 +0000381 // If the BB doesn't have a name, give it one so we have something to key
382 // off of.
383 if (!BB->hasName()) BB->setName("tmpbb");
Benjamin Kramer1f97a5a2011-11-15 16:27:03 +0000384 BlocksToNotExtractFile.os() << BB->getParent()->getName() << " "
Dan Gohmana2233f22010-09-01 14:20:41 +0000385 << BB->getName() << "\n";
Nick Lewyckyc6243022007-11-14 06:47:06 +0000386 }
Dan Gohmana2233f22010-09-01 14:20:41 +0000387 BlocksToNotExtractFile.os().close();
388 if (BlocksToNotExtractFile.os().has_error()) {
Rafael Espindola7e936ee2013-06-17 18:48:59 +0000389 errs() << "Error writing list of blocks to not extract\n";
Dan Gohman8525fe72010-08-20 16:59:15 +0000390 EmitProgressBitcode(M, "basicblockextractfail", true);
Dan Gohmana2233f22010-09-01 14:20:41 +0000391 BlocksToNotExtractFile.os().clear_error();
Dan Gohman8525fe72010-08-20 16:59:15 +0000392 return 0;
393 }
394 BlocksToNotExtractFile.keep();
Nick Lewyckyc6243022007-11-14 06:47:06 +0000395
Rafael Espindola7e936ee2013-06-17 18:48:59 +0000396 std::string uniqueFN = "--extract-blocks-file=";
397 uniqueFN += Filename.str();
Benjamin Kramer29063ea2010-01-28 18:04:38 +0000398 const char *ExtraArg = uniqueFN.c_str();
Nick Lewyckyc6243022007-11-14 06:47:06 +0000399
Rafael Espindola33e81a82010-08-08 03:55:08 +0000400 std::vector<std::string> PI;
401 PI.push_back("extract-blocks");
Nick Lewyckyc6243022007-11-14 06:47:06 +0000402 Module *Ret = runPassesOn(M, PI, false, 1, &ExtraArg);
403
Rafael Espindola7e936ee2013-06-17 18:48:59 +0000404 sys::fs::remove(Filename.c_str());
Nick Lewyckyc6243022007-11-14 06:47:06 +0000405
Chris Lattneraf32dfa2004-08-12 02:36:50 +0000406 if (Ret == 0) {
Dan Gohmanee051522009-07-16 15:30:09 +0000407 outs() << "*** Basic Block extraction failed, please report a bug!\n";
Rafael Espindola594994a2010-07-28 18:12:30 +0000408 EmitProgressBitcode(M, "basicblockextractfail", true);
Chris Lattneraf32dfa2004-08-12 02:36:50 +0000409 }
Chris Lattnera060b102004-05-11 21:54:13 +0000410 return Ret;
411}