blob: 888d2c8e9262d3eedafec4c7c12dea64dd53c8b1 [file] [log] [blame]
Chris Lattnerafade922002-11-20 22:28:10 +00001//===- ExtractFunction.cpp - Extract a function from Program --------------===//
Misha Brukman3da94ae2005-04-22 00:00:37 +00002//
John Criswell7c0e0222003-10-20 17:47:21 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner21c62da2007-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 Brukman3da94ae2005-04-22 00:00:37 +00007//
John Criswell7c0e0222003-10-20 17:47:21 +00008//===----------------------------------------------------------------------===//
Chris Lattnerafade922002-11-20 22:28:10 +00009//
Chris Lattnerefdc0b52004-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 Lattnerafade922002-11-20 22:28:10 +000012//
13//===----------------------------------------------------------------------===//
14
15#include "BugDriver.h"
Chris Lattner5a7a9e52006-03-08 23:55:38 +000016#include "llvm/Constants.h"
17#include "llvm/DerivedTypes.h"
Owen Andersondb1cd5e2009-07-13 22:40:32 +000018#include "llvm/LLVMContext.h"
Chris Lattnerafade922002-11-20 22:28:10 +000019#include "llvm/Module.h"
20#include "llvm/PassManager.h"
Brian Gaeked1a85a72003-09-10 21:11:42 +000021#include "llvm/Pass.h"
Misha Brukmane49603d2003-08-07 21:19:30 +000022#include "llvm/Analysis/Verifier.h"
Dan Gohmane860dcb2009-07-13 22:56:37 +000023#include "llvm/Assembly/Writer.h"
Chris Lattnerafade922002-11-20 22:28:10 +000024#include "llvm/Transforms/IPO.h"
Chris Lattner65207852003-01-23 02:48:33 +000025#include "llvm/Transforms/Scalar.h"
Chris Lattnerafade922002-11-20 22:28:10 +000026#include "llvm/Transforms/Utils/Cloning.h"
Chandler Carruth99650c92012-05-04 10:18:49 +000027#include "llvm/Transforms/Utils/CodeExtractor.h"
Chris Lattner5da69c72003-10-23 15:42:55 +000028#include "llvm/Target/TargetData.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000029#include "llvm/Support/CommandLine.h"
30#include "llvm/Support/Debug.h"
31#include "llvm/Support/FileUtilities.h"
Dan Gohmane4f1a9b2010-10-07 20:32:40 +000032#include "llvm/Support/ToolOutputFile.h"
Michael J. Spencer1f6efa32010-11-29 18:16:10 +000033#include "llvm/Support/Path.h"
34#include "llvm/Support/Signals.h"
Chris Lattnerfb4b96e2004-04-02 16:28:32 +000035#include <set>
Chris Lattnerc6b519d2003-11-23 04:51:05 +000036using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000037
38namespace llvm {
Chris Lattnerc6b519d2003-11-23 04:51:05 +000039 bool DisableSimplifyCFG = false;
Daniel Dunbar68ccdaa2009-09-07 19:26:11 +000040 extern cl::opt<std::string> OutputPrefix;
Brian Gaeked0fde302003-11-11 22:41:34 +000041} // End llvm namespace
42
Chris Lattner6db70ef2003-04-25 22:08:12 +000043namespace {
44 cl::opt<bool>
Chris Lattner6db70ef2003-04-25 22:08:12 +000045 NoDCE ("disable-dce",
46 cl::desc("Do not use the -dce pass to reduce testcases"));
Chris Lattner47ae4a12003-08-05 15:51:05 +000047 cl::opt<bool, true>
48 NoSCFG("disable-simplifycfg", cl::location(DisableSimplifyCFG),
Chris Lattner6db70ef2003-04-25 22:08:12 +000049 cl::desc("Do not use the -simplifycfg pass to reduce testcases"));
Eli Friedman967570f2012-02-22 01:43:47 +000050
51 Function* globalInitUsesExternalBA(GlobalVariable* GV) {
52 if (!GV->hasInitializer())
53 return 0;
54
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 }
79 }
80 return 0;
81 }
82} // end anonymous namespace
Chris Lattnerafade922002-11-20 22:28:10 +000083
Chris Lattner65207852003-01-23 02:48:33 +000084/// deleteInstructionFromProgram - This method clones the current Program and
85/// deletes the specified instruction from the cloned module. It then runs a
86/// series of cleanup passes (ADCE and SimplifyCFG) to eliminate any code which
87/// depends on the value. The modified module is then returned.
88///
Chris Lattner0cc88072004-02-18 21:50:26 +000089Module *BugDriver::deleteInstructionFromProgram(const Instruction *I,
Rafael Espindola866aa0d2010-08-10 15:46:11 +000090 unsigned Simplification) {
91 // FIXME, use vmap?
92 Module *Clone = CloneModule(Program);
Chris Lattner65207852003-01-23 02:48:33 +000093
Chris Lattner0cc88072004-02-18 21:50:26 +000094 const BasicBlock *PBB = I->getParent();
95 const Function *PF = PBB->getParent();
Chris Lattner65207852003-01-23 02:48:33 +000096
Rafael Espindola866aa0d2010-08-10 15:46:11 +000097 Module::iterator RFI = Clone->begin(); // Get iterator to corresponding fn
Chris Lattner0cc88072004-02-18 21:50:26 +000098 std::advance(RFI, std::distance(PF->getParent()->begin(),
99 Module::const_iterator(PF)));
Chris Lattner65207852003-01-23 02:48:33 +0000100
101 Function::iterator RBI = RFI->begin(); // Get iterator to corresponding BB
Chris Lattner0cc88072004-02-18 21:50:26 +0000102 std::advance(RBI, std::distance(PF->begin(), Function::const_iterator(PBB)));
Chris Lattner65207852003-01-23 02:48:33 +0000103
104 BasicBlock::iterator RI = RBI->begin(); // Get iterator to corresponding inst
Chris Lattner0cc88072004-02-18 21:50:26 +0000105 std::advance(RI, std::distance(PBB->begin(), BasicBlock::const_iterator(I)));
106 Instruction *TheInst = RI; // Got the corresponding instruction!
Chris Lattner65207852003-01-23 02:48:33 +0000107
108 // If this instruction produces a value, replace any users with null values
Dan Gohmane49a13e2010-06-07 20:19:26 +0000109 if (!TheInst->getType()->isVoidTy())
Owen Andersona7235ea2009-07-31 20:28:14 +0000110 TheInst->replaceAllUsesWith(Constant::getNullValue(TheInst->getType()));
Chris Lattner65207852003-01-23 02:48:33 +0000111
112 // Remove the instruction from the program.
Chris Lattner0cc88072004-02-18 21:50:26 +0000113 TheInst->getParent()->getInstList().erase(TheInst);
Chris Lattner65207852003-01-23 02:48:33 +0000114
Chris Lattner44be2572003-04-24 22:53:24 +0000115 // Spiff up the output a little bit.
Rafael Espindola866aa0d2010-08-10 15:46:11 +0000116 std::vector<std::string> Passes;
Chris Lattner5da69c72003-10-23 15:42:55 +0000117
Rafael Espindola866aa0d2010-08-10 15:46:11 +0000118 /// Can we get rid of the -disable-* options?
Chris Lattner6db70ef2003-04-25 22:08:12 +0000119 if (Simplification > 1 && !NoDCE)
Rafael Espindola866aa0d2010-08-10 15:46:11 +0000120 Passes.push_back("dce");
Chris Lattner47ae4a12003-08-05 15:51:05 +0000121 if (Simplification && !DisableSimplifyCFG)
Rafael Espindola866aa0d2010-08-10 15:46:11 +0000122 Passes.push_back("simplifycfg"); // Delete dead control flow
Chris Lattner10f22cb2003-03-07 18:17:13 +0000123
Rafael Espindola866aa0d2010-08-10 15:46:11 +0000124 Passes.push_back("verify");
125 Module *New = runPassesOn(Clone, Passes);
126 delete Clone;
127 if (!New) {
128 errs() << "Instruction removal failed. Sorry. :( Please report a bug!\n";
129 exit(1);
130 }
131 return New;
Chris Lattner65207852003-01-23 02:48:33 +0000132}
Chris Lattnerba386d92003-02-28 16:13:20 +0000133
134/// performFinalCleanups - This method clones the current Program and performs
135/// a series of cleanups intended to get rid of extra cruft on the module
Chris Lattner9b5b1902005-02-23 06:12:11 +0000136/// before handing it to the user.
Chris Lattnerba386d92003-02-28 16:13:20 +0000137///
Chris Lattnerfcb6ec02003-11-05 21:45:35 +0000138Module *BugDriver::performFinalCleanups(Module *M, bool MayModifySemantics) {
Chris Lattner28b8ed92003-05-21 19:41:31 +0000139 // Make all functions external, so GlobalDCE doesn't delete them...
140 for (Module::iterator I = M->begin(), E = M->end(); I != E; ++I)
141 I->setLinkage(GlobalValue::ExternalLinkage);
Misha Brukman3da94ae2005-04-22 00:00:37 +0000142
Rafael Espindola8261dfe2010-08-08 03:55:08 +0000143 std::vector<std::string> CleanupPasses;
144 CleanupPasses.push_back("globaldce");
Chris Lattnerfcb6ec02003-11-05 21:45:35 +0000145
Chris Lattnerc6b519d2003-11-23 04:51:05 +0000146 if (MayModifySemantics)
Rafael Espindola8261dfe2010-08-08 03:55:08 +0000147 CleanupPasses.push_back("deadarghaX0r");
Chris Lattnerc6b519d2003-11-23 04:51:05 +0000148 else
Rafael Espindola8261dfe2010-08-08 03:55:08 +0000149 CleanupPasses.push_back("deadargelim");
Chris Lattnerfcb6ec02003-11-05 21:45:35 +0000150
Chris Lattnera75766a2004-03-14 21:17:22 +0000151 Module *New = runPassesOn(M, CleanupPasses);
152 if (New == 0) {
Dan Gohman65f57c22009-07-15 16:35:29 +0000153 errs() << "Final cleanups failed. Sorry. :( Please report a bug!\n";
Chris Lattner9b5b1902005-02-23 06:12:11 +0000154 return M;
Chris Lattnerfcb6ec02003-11-05 21:45:35 +0000155 }
Chris Lattnera75766a2004-03-14 21:17:22 +0000156 delete M;
157 return New;
Chris Lattnerba386d92003-02-28 16:13:20 +0000158}
Chris Lattnerbe21ca52004-03-14 19:27:19 +0000159
160
Chris Lattner7546c382004-03-14 20:02:07 +0000161/// ExtractLoop - Given a module, extract up to one loop from it into a new
162/// function. This returns null if there are no extractable loops in the
163/// program or if the loop extractor crashes.
164Module *BugDriver::ExtractLoop(Module *M) {
Rafael Espindola8261dfe2010-08-08 03:55:08 +0000165 std::vector<std::string> LoopExtractPasses;
166 LoopExtractPasses.push_back("loop-extract-single");
Chris Lattner7546c382004-03-14 20:02:07 +0000167
Chris Lattnera75766a2004-03-14 21:17:22 +0000168 Module *NewM = runPassesOn(M, LoopExtractPasses);
169 if (NewM == 0) {
Dan Gohmanac95cc72009-07-16 15:30:09 +0000170 outs() << "*** Loop extraction failed: ";
Rafael Espindolabae1b712010-07-28 18:12:30 +0000171 EmitProgressBitcode(M, "loopextraction", true);
Dan Gohmanac95cc72009-07-16 15:30:09 +0000172 outs() << "*** Sorry. :( Please report a bug!\n";
Chris Lattner7546c382004-03-14 20:02:07 +0000173 return 0;
Chris Lattner7546c382004-03-14 20:02:07 +0000174 }
Chris Lattnera75766a2004-03-14 21:17:22 +0000175
176 // Check to see if we created any new functions. If not, no loops were
Chris Lattnera269ec72004-11-18 19:40:13 +0000177 // extracted and we should return null. Limit the number of loops we extract
178 // to avoid taking forever.
179 static unsigned NumExtracted = 32;
Chris Lattner90c18c52004-11-16 06:31:38 +0000180 if (M->size() == NewM->size() || --NumExtracted == 0) {
Chris Lattnera75766a2004-03-14 21:17:22 +0000181 delete NewM;
182 return 0;
Chris Lattner90c18c52004-11-16 06:31:38 +0000183 } else {
184 assert(M->size() < NewM->size() && "Loop extract removed functions?");
185 Module::iterator MI = NewM->begin();
186 for (unsigned i = 0, e = M->size(); i != e; ++i)
187 ++MI;
Chris Lattnera75766a2004-03-14 21:17:22 +0000188 }
Misha Brukman3da94ae2005-04-22 00:00:37 +0000189
Chris Lattnera75766a2004-03-14 21:17:22 +0000190 return NewM;
Chris Lattner7546c382004-03-14 20:02:07 +0000191}
192
193
Chris Lattnerbe21ca52004-03-14 19:27:19 +0000194// DeleteFunctionBody - "Remove" the function by deleting all of its basic
195// blocks, making it external.
196//
197void llvm::DeleteFunctionBody(Function *F) {
198 // delete the body of the function...
199 F->deleteBody();
Reid Spencer5cbf9852007-01-30 20:08:39 +0000200 assert(F->isDeclaration() && "This didn't make the function external!");
Chris Lattnerbe21ca52004-03-14 19:27:19 +0000201}
202
Chris Lattner5a7a9e52006-03-08 23:55:38 +0000203/// GetTorInit - Given a list of entries for static ctors/dtors, return them
204/// as a constant array.
205static Constant *GetTorInit(std::vector<std::pair<Function*, int> > &TorList) {
206 assert(!TorList.empty() && "Don't create empty tor list!");
207 std::vector<Constant*> ArrayElts;
Jay Foad5fdd6c82011-07-12 14:06:48 +0000208 Type *Int32Ty = Type::getInt32Ty(TorList[0].first->getContext());
Chris Lattnerb065b062011-06-20 04:01:31 +0000209
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000210 StructType *STy =
Chris Lattnerb065b062011-06-20 04:01:31 +0000211 StructType::get(Int32Ty, TorList[0].first->getType(), NULL);
Chris Lattner5a7a9e52006-03-08 23:55:38 +0000212 for (unsigned i = 0, e = TorList.size(); i != e; ++i) {
Chris Lattnerb065b062011-06-20 04:01:31 +0000213 Constant *Elts[] = {
214 ConstantInt::get(Int32Ty, TorList[i].second),
215 TorList[i].first
216 };
217 ArrayElts.push_back(ConstantStruct::get(STy, Elts));
Chris Lattner5a7a9e52006-03-08 23:55:38 +0000218 }
Owen Andersondebcb012009-07-29 22:17:13 +0000219 return ConstantArray::get(ArrayType::get(ArrayElts[0]->getType(),
Chris Lattner5a7a9e52006-03-08 23:55:38 +0000220 ArrayElts.size()),
221 ArrayElts);
222}
223
224/// SplitStaticCtorDtor - A module was recently split into two parts, M1/M2, and
225/// M1 has all of the global variables. If M2 contains any functions that are
226/// static ctors/dtors, we need to add an llvm.global_[cd]tors global to M2, and
227/// prune appropriate entries out of M1s list.
Dan Gohmand50330c2009-04-22 15:57:18 +0000228static void SplitStaticCtorDtor(const char *GlobalName, Module *M1, Module *M2,
Rafael Espindola1ed219a2010-10-13 01:36:30 +0000229 ValueToValueMapTy &VMap) {
Chris Lattner5a7a9e52006-03-08 23:55:38 +0000230 GlobalVariable *GV = M1->getNamedGlobal(GlobalName);
Rafael Espindolabb46f522009-01-15 20:18:42 +0000231 if (!GV || GV->isDeclaration() || GV->hasLocalLinkage() ||
Chris Lattner5a7a9e52006-03-08 23:55:38 +0000232 !GV->use_empty()) return;
233
234 std::vector<std::pair<Function*, int> > M1Tors, M2Tors;
235 ConstantArray *InitList = dyn_cast<ConstantArray>(GV->getInitializer());
236 if (!InitList) return;
237
238 for (unsigned i = 0, e = InitList->getNumOperands(); i != e; ++i) {
239 if (ConstantStruct *CS = dyn_cast<ConstantStruct>(InitList->getOperand(i))){
240 if (CS->getNumOperands() != 2) return; // Not array of 2-element structs.
241
242 if (CS->getOperand(1)->isNullValue())
243 break; // Found a null terminator, stop here.
244
Reid Spencerb83eb642006-10-20 07:07:24 +0000245 ConstantInt *CI = dyn_cast<ConstantInt>(CS->getOperand(0));
246 int Priority = CI ? CI->getSExtValue() : 0;
Chris Lattner5a7a9e52006-03-08 23:55:38 +0000247
248 Constant *FP = CS->getOperand(1);
249 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(FP))
Reid Spencer3da59db2006-11-27 01:05:10 +0000250 if (CE->isCast())
Chris Lattner5a7a9e52006-03-08 23:55:38 +0000251 FP = CE->getOperand(0);
252 if (Function *F = dyn_cast<Function>(FP)) {
Reid Spencer5cbf9852007-01-30 20:08:39 +0000253 if (!F->isDeclaration())
Chris Lattner5a7a9e52006-03-08 23:55:38 +0000254 M1Tors.push_back(std::make_pair(F, Priority));
255 else {
256 // Map to M2's version of the function.
Devang Patele9916a32010-06-24 00:33:28 +0000257 F = cast<Function>(VMap[F]);
Chris Lattner5a7a9e52006-03-08 23:55:38 +0000258 M2Tors.push_back(std::make_pair(F, Priority));
259 }
260 }
261 }
262 }
263
264 GV->eraseFromParent();
265 if (!M1Tors.empty()) {
266 Constant *M1Init = GetTorInit(M1Tors);
Owen Andersone9b11b42009-07-08 19:03:57 +0000267 new GlobalVariable(*M1, M1Init->getType(), false,
Owen Anderson3d29df32009-07-08 01:26:06 +0000268 GlobalValue::AppendingLinkage,
Owen Andersone9b11b42009-07-08 19:03:57 +0000269 M1Init, GlobalName);
Chris Lattner5a7a9e52006-03-08 23:55:38 +0000270 }
271
272 GV = M2->getNamedGlobal(GlobalName);
273 assert(GV && "Not a clone of M1?");
274 assert(GV->use_empty() && "llvm.ctors shouldn't have uses!");
275
276 GV->eraseFromParent();
277 if (!M2Tors.empty()) {
278 Constant *M2Init = GetTorInit(M2Tors);
Owen Andersone9b11b42009-07-08 19:03:57 +0000279 new GlobalVariable(*M2, M2Init->getType(), false,
Owen Anderson3d29df32009-07-08 01:26:06 +0000280 GlobalValue::AppendingLinkage,
Owen Andersone9b11b42009-07-08 19:03:57 +0000281 M2Init, GlobalName);
Chris Lattner5a7a9e52006-03-08 23:55:38 +0000282 }
283}
284
Patrick Jenkinse47863e2006-07-28 01:19:28 +0000285
Chris Lattnerbe21ca52004-03-14 19:27:19 +0000286/// SplitFunctionsOutOfModule - Given a module and a list of functions in the
287/// module, split the functions OUT of the specified module, and place them in
288/// the new module.
Dan Gohmand50330c2009-04-22 15:57:18 +0000289Module *
290llvm::SplitFunctionsOutOfModule(Module *M,
291 const std::vector<Function*> &F,
Rafael Espindola1ed219a2010-10-13 01:36:30 +0000292 ValueToValueMapTy &VMap) {
Chris Lattnerbe21ca52004-03-14 19:27:19 +0000293 // Make sure functions & globals are all external so that linkage
294 // between the two modules will work.
295 for (Module::iterator I = M->begin(), E = M->end(); I != E; ++I)
296 I->setLinkage(GlobalValue::ExternalLinkage);
Chris Lattner5a7a9e52006-03-08 23:55:38 +0000297 for (Module::global_iterator I = M->global_begin(), E = M->global_end();
Owen Anderson7220b812008-07-08 16:38:42 +0000298 I != E; ++I) {
Daniel Dunbar3f53fa92009-07-26 00:34:27 +0000299 if (I->hasName() && I->getName()[0] == '\01')
300 I->setName(I->getName().substr(1));
Chris Lattnerbe21ca52004-03-14 19:27:19 +0000301 I->setLinkage(GlobalValue::ExternalLinkage);
Owen Anderson7220b812008-07-08 16:38:42 +0000302 }
Chris Lattnerbe21ca52004-03-14 19:27:19 +0000303
Rafael Espindola1ed219a2010-10-13 01:36:30 +0000304 ValueToValueMapTy NewVMap;
Devang Patele9916a32010-06-24 00:33:28 +0000305 Module *New = CloneModule(M, NewVMap);
Chris Lattnerbe21ca52004-03-14 19:27:19 +0000306
Chris Lattnerfef02422006-11-09 06:24:56 +0000307 // Remove the Test functions from the Safe module
Dan Gohmand50330c2009-04-22 15:57:18 +0000308 std::set<Function *> TestFunctions;
Chris Lattnerbe21ca52004-03-14 19:27:19 +0000309 for (unsigned i = 0, e = F.size(); i != e; ++i) {
Devang Patele9916a32010-06-24 00:33:28 +0000310 Function *TNOF = cast<Function>(VMap[F[i]]);
Dan Gohman65f57c22009-07-15 16:35:29 +0000311 DEBUG(errs() << "Removing function ");
312 DEBUG(WriteAsOperand(errs(), TNOF, false));
313 DEBUG(errs() << "\n");
Devang Patele9916a32010-06-24 00:33:28 +0000314 TestFunctions.insert(cast<Function>(NewVMap[TNOF]));
Chris Lattnerfef02422006-11-09 06:24:56 +0000315 DeleteFunctionBody(TNOF); // Function is now external in this module!
Chris Lattnerbe21ca52004-03-14 19:27:19 +0000316 }
317
Chris Lattner5a7a9e52006-03-08 23:55:38 +0000318
Chris Lattnerfef02422006-11-09 06:24:56 +0000319 // Remove the Safe functions from the Test module
320 for (Module::iterator I = New->begin(), E = New->end(); I != E; ++I)
Dan Gohmand50330c2009-04-22 15:57:18 +0000321 if (!TestFunctions.count(I))
Chris Lattnerfef02422006-11-09 06:24:56 +0000322 DeleteFunctionBody(I);
323
Patrick Jenkinse47863e2006-07-28 01:19:28 +0000324
Eli Friedman967570f2012-02-22 01:43:47 +0000325 // Try to split the global initializers evenly
326 for (Module::global_iterator I = M->global_begin(), E = M->global_end();
327 I != E; ++I) {
328 GlobalVariable *GV = cast<GlobalVariable>(NewVMap[I]);
329 if (Function *TestFn = globalInitUsesExternalBA(I)) {
330 if (Function *SafeFn = globalInitUsesExternalBA(GV)) {
331 errs() << "*** Error: when reducing functions, encountered "
332 "the global '";
333 WriteAsOperand(errs(), GV, false);
334 errs() << "' with an initializer that references blockaddresses "
335 "from safe function '" << SafeFn->getName()
336 << "' and from test function '" << TestFn->getName() << "'.\n";
337 exit(1);
338 }
339 I->setInitializer(0); // Delete the initializer to make it external
340 } else {
341 // If we keep it in the safe module, then delete it in the test module
342 GV->setInitializer(0);
343 }
344 }
345
Chris Lattner5a7a9e52006-03-08 23:55:38 +0000346 // Make sure that there is a global ctor/dtor array in both halves of the
347 // module if they both have static ctor/dtor functions.
Devang Patele9916a32010-06-24 00:33:28 +0000348 SplitStaticCtorDtor("llvm.global_ctors", M, New, NewVMap);
349 SplitStaticCtorDtor("llvm.global_dtors", M, New, NewVMap);
Chris Lattner5a7a9e52006-03-08 23:55:38 +0000350
Chris Lattnerbe21ca52004-03-14 19:27:19 +0000351 return New;
352}
Chris Lattner5e783ab2004-05-11 21:54:13 +0000353
354//===----------------------------------------------------------------------===//
355// Basic Block Extraction Code
356//===----------------------------------------------------------------------===//
357
Chris Lattner5e783ab2004-05-11 21:54:13 +0000358/// ExtractMappedBlocksFromModule - Extract all but the specified basic blocks
359/// into their own functions. The only detail is that M is actually a module
360/// cloned from the one the BBs are in, so some mapping needs to be performed.
361/// If this operation fails for some reason (ie the implementation is buggy),
362/// this function should return null, otherwise it returns a new Module.
363Module *BugDriver::ExtractMappedBlocksFromModule(const
364 std::vector<BasicBlock*> &BBs,
365 Module *M) {
Daniel Dunbar68ccdaa2009-09-07 19:26:11 +0000366 sys::Path uniqueFilename(OutputPrefix + "-extractblocks");
Nick Lewycky6fa98b12007-11-14 06:47:06 +0000367 std::string ErrMsg;
368 if (uniqueFilename.createTemporaryFileOnDisk(true, &ErrMsg)) {
Dan Gohmanac95cc72009-07-16 15:30:09 +0000369 outs() << "*** Basic Block extraction failed!\n";
Dan Gohman65f57c22009-07-15 16:35:29 +0000370 errs() << "Error creating temporary file: " << ErrMsg << "\n";
Rafael Espindolabae1b712010-07-28 18:12:30 +0000371 EmitProgressBitcode(M, "basicblockextractfail", true);
Nick Lewycky6fa98b12007-11-14 06:47:06 +0000372 return 0;
373 }
374 sys::RemoveFileOnSignal(uniqueFilename);
375
Dan Gohmanac95cc72009-07-16 15:30:09 +0000376 std::string ErrorInfo;
Dan Gohmanf2914012010-08-20 16:59:15 +0000377 tool_output_file BlocksToNotExtractFile(uniqueFilename.c_str(), ErrorInfo);
Dan Gohmanac95cc72009-07-16 15:30:09 +0000378 if (!ErrorInfo.empty()) {
379 outs() << "*** Basic Block extraction failed!\n";
380 errs() << "Error writing list of blocks to not extract: " << ErrorInfo
Dan Gohman65f57c22009-07-15 16:35:29 +0000381 << "\n";
Rafael Espindolabae1b712010-07-28 18:12:30 +0000382 EmitProgressBitcode(M, "basicblockextractfail", true);
Nick Lewycky6fa98b12007-11-14 06:47:06 +0000383 return 0;
384 }
385 for (std::vector<BasicBlock*>::const_iterator I = BBs.begin(), E = BBs.end();
386 I != E; ++I) {
387 BasicBlock *BB = *I;
Chris Lattner4a6a6f22008-01-08 04:26:20 +0000388 // If the BB doesn't have a name, give it one so we have something to key
389 // off of.
390 if (!BB->hasName()) BB->setName("tmpbb");
Benjamin Kramera7b0cb72011-11-15 16:27:03 +0000391 BlocksToNotExtractFile.os() << BB->getParent()->getName() << " "
Dan Gohmand4c45432010-09-01 14:20:41 +0000392 << BB->getName() << "\n";
Nick Lewycky6fa98b12007-11-14 06:47:06 +0000393 }
Dan Gohmand4c45432010-09-01 14:20:41 +0000394 BlocksToNotExtractFile.os().close();
395 if (BlocksToNotExtractFile.os().has_error()) {
Dan Gohmanf2914012010-08-20 16:59:15 +0000396 errs() << "Error writing list of blocks to not extract: " << ErrorInfo
397 << "\n";
398 EmitProgressBitcode(M, "basicblockextractfail", true);
Dan Gohmand4c45432010-09-01 14:20:41 +0000399 BlocksToNotExtractFile.os().clear_error();
Dan Gohmanf2914012010-08-20 16:59:15 +0000400 return 0;
401 }
402 BlocksToNotExtractFile.keep();
Nick Lewycky6fa98b12007-11-14 06:47:06 +0000403
Benjamin Kramer12ea66a2010-01-28 18:04:38 +0000404 std::string uniqueFN = "--extract-blocks-file=" + uniqueFilename.str();
405 const char *ExtraArg = uniqueFN.c_str();
Nick Lewycky6fa98b12007-11-14 06:47:06 +0000406
Rafael Espindola8261dfe2010-08-08 03:55:08 +0000407 std::vector<std::string> PI;
408 PI.push_back("extract-blocks");
Nick Lewycky6fa98b12007-11-14 06:47:06 +0000409 Module *Ret = runPassesOn(M, PI, false, 1, &ExtraArg);
410
Dan Gohmand27047f2010-05-27 20:51:54 +0000411 uniqueFilename.eraseFromDisk(); // Free disk space
Nick Lewycky6fa98b12007-11-14 06:47:06 +0000412
Chris Lattner891150f2004-08-12 02:36:50 +0000413 if (Ret == 0) {
Dan Gohmanac95cc72009-07-16 15:30:09 +0000414 outs() << "*** Basic Block extraction failed, please report a bug!\n";
Rafael Espindolabae1b712010-07-28 18:12:30 +0000415 EmitProgressBitcode(M, "basicblockextractfail", true);
Chris Lattner891150f2004-08-12 02:36:50 +0000416 }
Chris Lattner5e783ab2004-05-11 21:54:13 +0000417 return Ret;
418}