blob: 6d94f7aec4e682c3ce0f01ec17f31a7d4681b3b2 [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"
Chris Lattnerafade922002-11-20 22:28:10 +000023#include "llvm/Transforms/IPO.h"
Chris Lattner65207852003-01-23 02:48:33 +000024#include "llvm/Transforms/Scalar.h"
Chris Lattnerafade922002-11-20 22:28:10 +000025#include "llvm/Transforms/Utils/Cloning.h"
Chris Lattner5e783ab2004-05-11 21:54:13 +000026#include "llvm/Transforms/Utils/FunctionUtils.h"
Chris Lattner5da69c72003-10-23 15:42:55 +000027#include "llvm/Target/TargetData.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000028#include "llvm/Support/CommandLine.h"
29#include "llvm/Support/Debug.h"
30#include "llvm/Support/FileUtilities.h"
Nick Lewycky6fa98b12007-11-14 06:47:06 +000031#include "llvm/System/Path.h"
32#include "llvm/System/Signals.h"
Chris Lattnerfb4b96e2004-04-02 16:28:32 +000033#include <set>
Nick Lewycky6fa98b12007-11-14 06:47:06 +000034#include <fstream>
Chris Lattnere31a9cc2006-01-22 22:53:40 +000035#include <iostream>
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;
Brian Gaeked0fde302003-11-11 22:41:34 +000040} // End llvm namespace
41
Chris Lattner6db70ef2003-04-25 22:08:12 +000042namespace {
43 cl::opt<bool>
Chris Lattner6db70ef2003-04-25 22:08:12 +000044 NoDCE ("disable-dce",
45 cl::desc("Do not use the -dce pass to reduce testcases"));
Chris Lattner47ae4a12003-08-05 15:51:05 +000046 cl::opt<bool, true>
47 NoSCFG("disable-simplifycfg", cl::location(DisableSimplifyCFG),
Chris Lattner6db70ef2003-04-25 22:08:12 +000048 cl::desc("Do not use the -simplifycfg pass to reduce testcases"));
49}
Chris Lattnerafade922002-11-20 22:28:10 +000050
Chris Lattner65207852003-01-23 02:48:33 +000051/// deleteInstructionFromProgram - This method clones the current Program and
52/// deletes the specified instruction from the cloned module. It then runs a
53/// series of cleanup passes (ADCE and SimplifyCFG) to eliminate any code which
54/// depends on the value. The modified module is then returned.
55///
Chris Lattner0cc88072004-02-18 21:50:26 +000056Module *BugDriver::deleteInstructionFromProgram(const Instruction *I,
Chris Lattner65207852003-01-23 02:48:33 +000057 unsigned Simplification) const {
58 Module *Result = CloneModule(Program);
59
Chris Lattner0cc88072004-02-18 21:50:26 +000060 const BasicBlock *PBB = I->getParent();
61 const Function *PF = PBB->getParent();
Chris Lattner65207852003-01-23 02:48:33 +000062
63 Module::iterator RFI = Result->begin(); // Get iterator to corresponding fn
Chris Lattner0cc88072004-02-18 21:50:26 +000064 std::advance(RFI, std::distance(PF->getParent()->begin(),
65 Module::const_iterator(PF)));
Chris Lattner65207852003-01-23 02:48:33 +000066
67 Function::iterator RBI = RFI->begin(); // Get iterator to corresponding BB
Chris Lattner0cc88072004-02-18 21:50:26 +000068 std::advance(RBI, std::distance(PF->begin(), Function::const_iterator(PBB)));
Chris Lattner65207852003-01-23 02:48:33 +000069
70 BasicBlock::iterator RI = RBI->begin(); // Get iterator to corresponding inst
Chris Lattner0cc88072004-02-18 21:50:26 +000071 std::advance(RI, std::distance(PBB->begin(), BasicBlock::const_iterator(I)));
72 Instruction *TheInst = RI; // Got the corresponding instruction!
Chris Lattner65207852003-01-23 02:48:33 +000073
74 // If this instruction produces a value, replace any users with null values
Chris Lattnere78109e2008-04-28 00:04:58 +000075 if (isa<StructType>(TheInst->getType()))
76 TheInst->replaceAllUsesWith(UndefValue::get(TheInst->getType()));
77 else if (TheInst->getType() != Type::VoidTy)
Owen Anderson0a5372e2009-07-13 04:09:18 +000078 TheInst->replaceAllUsesWith(Context.getNullValue(TheInst->getType()));
Chris Lattner65207852003-01-23 02:48:33 +000079
80 // Remove the instruction from the program.
Chris Lattner0cc88072004-02-18 21:50:26 +000081 TheInst->getParent()->getInstList().erase(TheInst);
Chris Lattner65207852003-01-23 02:48:33 +000082
Chris Lattner5a7a9e52006-03-08 23:55:38 +000083
84 //writeProgramToFile("current.bc", Result);
85
Chris Lattner44be2572003-04-24 22:53:24 +000086 // Spiff up the output a little bit.
Chris Lattner65207852003-01-23 02:48:33 +000087 PassManager Passes;
Chris Lattner5da69c72003-10-23 15:42:55 +000088 // Make sure that the appropriate target data is always used...
Chris Lattner831b1212006-06-16 18:23:49 +000089 Passes.add(new TargetData(Result));
Chris Lattner5da69c72003-10-23 15:42:55 +000090
Chris Lattnerefdc0b52004-03-14 20:50:42 +000091 /// FIXME: If this used runPasses() like the methods below, we could get rid
92 /// of the -disable-* options!
Chris Lattner6db70ef2003-04-25 22:08:12 +000093 if (Simplification > 1 && !NoDCE)
Chris Lattner65207852003-01-23 02:48:33 +000094 Passes.add(createDeadCodeEliminationPass());
Chris Lattner47ae4a12003-08-05 15:51:05 +000095 if (Simplification && !DisableSimplifyCFG)
Chris Lattner65207852003-01-23 02:48:33 +000096 Passes.add(createCFGSimplificationPass()); // Delete dead control flow
Chris Lattner10f22cb2003-03-07 18:17:13 +000097
98 Passes.add(createVerifierPass());
Chris Lattner65207852003-01-23 02:48:33 +000099 Passes.run(*Result);
100 return Result;
101}
Chris Lattnerba386d92003-02-28 16:13:20 +0000102
Chris Lattnerfcb6ec02003-11-05 21:45:35 +0000103static const PassInfo *getPI(Pass *P) {
104 const PassInfo *PI = P->getPassInfo();
105 delete P;
106 return PI;
107}
108
Chris Lattnerba386d92003-02-28 16:13:20 +0000109/// performFinalCleanups - This method clones the current Program and performs
110/// a series of cleanups intended to get rid of extra cruft on the module
Chris Lattner9b5b1902005-02-23 06:12:11 +0000111/// before handing it to the user.
Chris Lattnerba386d92003-02-28 16:13:20 +0000112///
Chris Lattnerfcb6ec02003-11-05 21:45:35 +0000113Module *BugDriver::performFinalCleanups(Module *M, bool MayModifySemantics) {
Chris Lattner28b8ed92003-05-21 19:41:31 +0000114 // Make all functions external, so GlobalDCE doesn't delete them...
115 for (Module::iterator I = M->begin(), E = M->end(); I != E; ++I)
116 I->setLinkage(GlobalValue::ExternalLinkage);
Misha Brukman3da94ae2005-04-22 00:00:37 +0000117
Chris Lattnerfcb6ec02003-11-05 21:45:35 +0000118 std::vector<const PassInfo*> CleanupPasses;
Chris Lattnerfcb6ec02003-11-05 21:45:35 +0000119 CleanupPasses.push_back(getPI(createGlobalDCEPass()));
120 CleanupPasses.push_back(getPI(createDeadTypeEliminationPass()));
Chris Lattnerfcb6ec02003-11-05 21:45:35 +0000121
Chris Lattnerc6b519d2003-11-23 04:51:05 +0000122 if (MayModifySemantics)
123 CleanupPasses.push_back(getPI(createDeadArgHackingPass()));
124 else
125 CleanupPasses.push_back(getPI(createDeadArgEliminationPass()));
Chris Lattnerfcb6ec02003-11-05 21:45:35 +0000126
Chris Lattnera75766a2004-03-14 21:17:22 +0000127 Module *New = runPassesOn(M, CleanupPasses);
128 if (New == 0) {
Chris Lattner7546c382004-03-14 20:02:07 +0000129 std::cerr << "Final cleanups failed. Sorry. :( Please report a bug!\n";
Chris Lattner9b5b1902005-02-23 06:12:11 +0000130 return M;
Chris Lattnerfcb6ec02003-11-05 21:45:35 +0000131 }
Chris Lattnera75766a2004-03-14 21:17:22 +0000132 delete M;
133 return New;
Chris Lattnerba386d92003-02-28 16:13:20 +0000134}
Chris Lattnerbe21ca52004-03-14 19:27:19 +0000135
136
Chris Lattner7546c382004-03-14 20:02:07 +0000137/// ExtractLoop - Given a module, extract up to one loop from it into a new
138/// function. This returns null if there are no extractable loops in the
139/// program or if the loop extractor crashes.
140Module *BugDriver::ExtractLoop(Module *M) {
141 std::vector<const PassInfo*> LoopExtractPasses;
142 LoopExtractPasses.push_back(getPI(createSingleLoopExtractorPass()));
143
Chris Lattnera75766a2004-03-14 21:17:22 +0000144 Module *NewM = runPassesOn(M, LoopExtractPasses);
145 if (NewM == 0) {
Chris Lattnera1cf1c82004-03-14 22:08:00 +0000146 Module *Old = swapProgramIn(M);
147 std::cout << "*** Loop extraction failed: ";
Gabor Greif8ff70c22007-07-04 21:55:50 +0000148 EmitProgressBitcode("loopextraction", true);
Chris Lattnera1cf1c82004-03-14 22:08:00 +0000149 std::cout << "*** Sorry. :( Please report a bug!\n";
150 swapProgramIn(Old);
Chris Lattner7546c382004-03-14 20:02:07 +0000151 return 0;
Chris Lattner7546c382004-03-14 20:02:07 +0000152 }
Chris Lattnera75766a2004-03-14 21:17:22 +0000153
154 // Check to see if we created any new functions. If not, no loops were
Chris Lattnera269ec72004-11-18 19:40:13 +0000155 // extracted and we should return null. Limit the number of loops we extract
156 // to avoid taking forever.
157 static unsigned NumExtracted = 32;
Chris Lattner90c18c52004-11-16 06:31:38 +0000158 if (M->size() == NewM->size() || --NumExtracted == 0) {
Chris Lattnera75766a2004-03-14 21:17:22 +0000159 delete NewM;
160 return 0;
Chris Lattner90c18c52004-11-16 06:31:38 +0000161 } else {
162 assert(M->size() < NewM->size() && "Loop extract removed functions?");
163 Module::iterator MI = NewM->begin();
164 for (unsigned i = 0, e = M->size(); i != e; ++i)
165 ++MI;
Chris Lattnera75766a2004-03-14 21:17:22 +0000166 }
Misha Brukman3da94ae2005-04-22 00:00:37 +0000167
Chris Lattnera75766a2004-03-14 21:17:22 +0000168 return NewM;
Chris Lattner7546c382004-03-14 20:02:07 +0000169}
170
171
Chris Lattnerbe21ca52004-03-14 19:27:19 +0000172// DeleteFunctionBody - "Remove" the function by deleting all of its basic
173// blocks, making it external.
174//
175void llvm::DeleteFunctionBody(Function *F) {
176 // delete the body of the function...
177 F->deleteBody();
Reid Spencer5cbf9852007-01-30 20:08:39 +0000178 assert(F->isDeclaration() && "This didn't make the function external!");
Chris Lattnerbe21ca52004-03-14 19:27:19 +0000179}
180
Chris Lattner5a7a9e52006-03-08 23:55:38 +0000181/// GetTorInit - Given a list of entries for static ctors/dtors, return them
182/// as a constant array.
183static Constant *GetTorInit(std::vector<std::pair<Function*, int> > &TorList) {
184 assert(!TorList.empty() && "Don't create empty tor list!");
185 std::vector<Constant*> ArrayElts;
186 for (unsigned i = 0, e = TorList.size(); i != e; ++i) {
187 std::vector<Constant*> Elts;
Reid Spencer71d2ec92006-12-31 06:02:26 +0000188 Elts.push_back(ConstantInt::get(Type::Int32Ty, TorList[i].second));
Chris Lattner5a7a9e52006-03-08 23:55:38 +0000189 Elts.push_back(TorList[i].first);
190 ArrayElts.push_back(ConstantStruct::get(Elts));
191 }
192 return ConstantArray::get(ArrayType::get(ArrayElts[0]->getType(),
193 ArrayElts.size()),
194 ArrayElts);
195}
196
197/// SplitStaticCtorDtor - A module was recently split into two parts, M1/M2, and
198/// M1 has all of the global variables. If M2 contains any functions that are
199/// static ctors/dtors, we need to add an llvm.global_[cd]tors global to M2, and
200/// prune appropriate entries out of M1s list.
Dan Gohmand50330c2009-04-22 15:57:18 +0000201static void SplitStaticCtorDtor(const char *GlobalName, Module *M1, Module *M2,
202 DenseMap<const Value*, Value*> ValueMap) {
Chris Lattner5a7a9e52006-03-08 23:55:38 +0000203 GlobalVariable *GV = M1->getNamedGlobal(GlobalName);
Rafael Espindolabb46f522009-01-15 20:18:42 +0000204 if (!GV || GV->isDeclaration() || GV->hasLocalLinkage() ||
Chris Lattner5a7a9e52006-03-08 23:55:38 +0000205 !GV->use_empty()) return;
206
207 std::vector<std::pair<Function*, int> > M1Tors, M2Tors;
208 ConstantArray *InitList = dyn_cast<ConstantArray>(GV->getInitializer());
209 if (!InitList) return;
210
211 for (unsigned i = 0, e = InitList->getNumOperands(); i != e; ++i) {
212 if (ConstantStruct *CS = dyn_cast<ConstantStruct>(InitList->getOperand(i))){
213 if (CS->getNumOperands() != 2) return; // Not array of 2-element structs.
214
215 if (CS->getOperand(1)->isNullValue())
216 break; // Found a null terminator, stop here.
217
Reid Spencerb83eb642006-10-20 07:07:24 +0000218 ConstantInt *CI = dyn_cast<ConstantInt>(CS->getOperand(0));
219 int Priority = CI ? CI->getSExtValue() : 0;
Chris Lattner5a7a9e52006-03-08 23:55:38 +0000220
221 Constant *FP = CS->getOperand(1);
222 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(FP))
Reid Spencer3da59db2006-11-27 01:05:10 +0000223 if (CE->isCast())
Chris Lattner5a7a9e52006-03-08 23:55:38 +0000224 FP = CE->getOperand(0);
225 if (Function *F = dyn_cast<Function>(FP)) {
Reid Spencer5cbf9852007-01-30 20:08:39 +0000226 if (!F->isDeclaration())
Chris Lattner5a7a9e52006-03-08 23:55:38 +0000227 M1Tors.push_back(std::make_pair(F, Priority));
228 else {
229 // Map to M2's version of the function.
Dan Gohmand50330c2009-04-22 15:57:18 +0000230 F = cast<Function>(ValueMap[F]);
Chris Lattner5a7a9e52006-03-08 23:55:38 +0000231 M2Tors.push_back(std::make_pair(F, Priority));
232 }
233 }
234 }
235 }
236
237 GV->eraseFromParent();
238 if (!M1Tors.empty()) {
239 Constant *M1Init = GetTorInit(M1Tors);
Owen Andersone9b11b42009-07-08 19:03:57 +0000240 new GlobalVariable(*M1, M1Init->getType(), false,
Owen Anderson3d29df32009-07-08 01:26:06 +0000241 GlobalValue::AppendingLinkage,
Owen Andersone9b11b42009-07-08 19:03:57 +0000242 M1Init, GlobalName);
Chris Lattner5a7a9e52006-03-08 23:55:38 +0000243 }
244
245 GV = M2->getNamedGlobal(GlobalName);
246 assert(GV && "Not a clone of M1?");
247 assert(GV->use_empty() && "llvm.ctors shouldn't have uses!");
248
249 GV->eraseFromParent();
250 if (!M2Tors.empty()) {
251 Constant *M2Init = GetTorInit(M2Tors);
Owen Andersone9b11b42009-07-08 19:03:57 +0000252 new GlobalVariable(*M2, M2Init->getType(), false,
Owen Anderson3d29df32009-07-08 01:26:06 +0000253 GlobalValue::AppendingLinkage,
Owen Andersone9b11b42009-07-08 19:03:57 +0000254 M2Init, GlobalName);
Chris Lattner5a7a9e52006-03-08 23:55:38 +0000255 }
256}
257
Patrick Jenkinse47863e2006-07-28 01:19:28 +0000258
Chris Lattnerbe21ca52004-03-14 19:27:19 +0000259/// SplitFunctionsOutOfModule - Given a module and a list of functions in the
260/// module, split the functions OUT of the specified module, and place them in
261/// the new module.
Dan Gohmand50330c2009-04-22 15:57:18 +0000262Module *
263llvm::SplitFunctionsOutOfModule(Module *M,
264 const std::vector<Function*> &F,
265 DenseMap<const Value*, Value*> &ValueMap) {
Chris Lattnerbe21ca52004-03-14 19:27:19 +0000266 // Make sure functions & globals are all external so that linkage
267 // between the two modules will work.
268 for (Module::iterator I = M->begin(), E = M->end(); I != E; ++I)
269 I->setLinkage(GlobalValue::ExternalLinkage);
Chris Lattner5a7a9e52006-03-08 23:55:38 +0000270 for (Module::global_iterator I = M->global_begin(), E = M->global_end();
Owen Anderson7220b812008-07-08 16:38:42 +0000271 I != E; ++I) {
272 if (I->hasName() && *I->getNameStart() == '\01')
273 I->setName(I->getNameStart()+1, I->getNameLen()-1);
Chris Lattnerbe21ca52004-03-14 19:27:19 +0000274 I->setLinkage(GlobalValue::ExternalLinkage);
Owen Anderson7220b812008-07-08 16:38:42 +0000275 }
Chris Lattnerbe21ca52004-03-14 19:27:19 +0000276
Dan Gohmand50330c2009-04-22 15:57:18 +0000277 DenseMap<const Value*, Value*> NewValueMap;
278 Module *New = CloneModule(M, NewValueMap);
Chris Lattnerbe21ca52004-03-14 19:27:19 +0000279
Chris Lattnerfef02422006-11-09 06:24:56 +0000280 // Make sure global initializers exist only in the safe module (CBE->.so)
281 for (Module::global_iterator I = New->global_begin(), E = New->global_end();
282 I != E; ++I)
283 I->setInitializer(0); // Delete the initializer to make it external
Chris Lattnerbe21ca52004-03-14 19:27:19 +0000284
Chris Lattnerfef02422006-11-09 06:24:56 +0000285 // Remove the Test functions from the Safe module
Dan Gohmand50330c2009-04-22 15:57:18 +0000286 std::set<Function *> TestFunctions;
Chris Lattnerbe21ca52004-03-14 19:27:19 +0000287 for (unsigned i = 0, e = F.size(); i != e; ++i) {
Dan Gohmand50330c2009-04-22 15:57:18 +0000288 Function *TNOF = cast<Function>(ValueMap[F[i]]);
289 DEBUG(std::cerr << "Removing function ");
290 DEBUG(WriteAsOperand(std::cerr, TNOF, false));
291 DEBUG(std::cerr << "\n");
292 TestFunctions.insert(cast<Function>(NewValueMap[TNOF]));
Chris Lattnerfef02422006-11-09 06:24:56 +0000293 DeleteFunctionBody(TNOF); // Function is now external in this module!
Chris Lattnerbe21ca52004-03-14 19:27:19 +0000294 }
295
Chris Lattner5a7a9e52006-03-08 23:55:38 +0000296
Chris Lattnerfef02422006-11-09 06:24:56 +0000297 // Remove the Safe functions from the Test module
298 for (Module::iterator I = New->begin(), E = New->end(); I != E; ++I)
Dan Gohmand50330c2009-04-22 15:57:18 +0000299 if (!TestFunctions.count(I))
Chris Lattnerfef02422006-11-09 06:24:56 +0000300 DeleteFunctionBody(I);
301
Patrick Jenkinse47863e2006-07-28 01:19:28 +0000302
Chris Lattner5a7a9e52006-03-08 23:55:38 +0000303 // Make sure that there is a global ctor/dtor array in both halves of the
304 // module if they both have static ctor/dtor functions.
Dan Gohmand50330c2009-04-22 15:57:18 +0000305 SplitStaticCtorDtor("llvm.global_ctors", M, New, NewValueMap);
306 SplitStaticCtorDtor("llvm.global_dtors", M, New, NewValueMap);
Chris Lattner5a7a9e52006-03-08 23:55:38 +0000307
Chris Lattnerbe21ca52004-03-14 19:27:19 +0000308 return New;
309}
Chris Lattner5e783ab2004-05-11 21:54:13 +0000310
311//===----------------------------------------------------------------------===//
312// Basic Block Extraction Code
313//===----------------------------------------------------------------------===//
314
Chris Lattner5e783ab2004-05-11 21:54:13 +0000315/// ExtractMappedBlocksFromModule - Extract all but the specified basic blocks
316/// into their own functions. The only detail is that M is actually a module
317/// cloned from the one the BBs are in, so some mapping needs to be performed.
318/// If this operation fails for some reason (ie the implementation is buggy),
319/// this function should return null, otherwise it returns a new Module.
320Module *BugDriver::ExtractMappedBlocksFromModule(const
321 std::vector<BasicBlock*> &BBs,
322 Module *M) {
Nick Lewycky6fa98b12007-11-14 06:47:06 +0000323 char *ExtraArg = NULL;
324
325 sys::Path uniqueFilename("bugpoint-extractblocks");
326 std::string ErrMsg;
327 if (uniqueFilename.createTemporaryFileOnDisk(true, &ErrMsg)) {
328 std::cout << "*** Basic Block extraction failed!\n";
329 std::cerr << "Error creating temporary file: " << ErrMsg << "\n";
330 M = swapProgramIn(M);
331 EmitProgressBitcode("basicblockextractfail", true);
332 swapProgramIn(M);
333 return 0;
334 }
335 sys::RemoveFileOnSignal(uniqueFilename);
336
337 std::ofstream BlocksToNotExtractFile(uniqueFilename.c_str());
338 if (!BlocksToNotExtractFile) {
339 std::cout << "*** Basic Block extraction failed!\n";
340 std::cerr << "Error writing list of blocks to not extract: " << ErrMsg
341 << "\n";
342 M = swapProgramIn(M);
343 EmitProgressBitcode("basicblockextractfail", true);
344 swapProgramIn(M);
345 return 0;
346 }
347 for (std::vector<BasicBlock*>::const_iterator I = BBs.begin(), E = BBs.end();
348 I != E; ++I) {
349 BasicBlock *BB = *I;
Chris Lattner4a6a6f22008-01-08 04:26:20 +0000350 // If the BB doesn't have a name, give it one so we have something to key
351 // off of.
352 if (!BB->hasName()) BB->setName("tmpbb");
Nick Lewycky6fa98b12007-11-14 06:47:06 +0000353 BlocksToNotExtractFile << BB->getParent()->getName() << " "
354 << BB->getName() << "\n";
355 }
356 BlocksToNotExtractFile.close();
357
358 const char *uniqueFN = uniqueFilename.c_str();
359 ExtraArg = (char*)malloc(23 + strlen(uniqueFN));
360 strcat(strcpy(ExtraArg, "--extract-blocks-file="), uniqueFN);
361
Chris Lattner5e783ab2004-05-11 21:54:13 +0000362 std::vector<const PassInfo*> PI;
Nick Lewycky6fa98b12007-11-14 06:47:06 +0000363 std::vector<BasicBlock *> EmptyBBs; // This parameter is ignored.
364 PI.push_back(getPI(createBlockExtractorPass(EmptyBBs)));
365 Module *Ret = runPassesOn(M, PI, false, 1, &ExtraArg);
366
367 if (uniqueFilename.exists())
368 uniqueFilename.eraseFromDisk(); // Free disk space
369 free(ExtraArg);
370
Chris Lattner891150f2004-08-12 02:36:50 +0000371 if (Ret == 0) {
Chris Lattner5e783ab2004-05-11 21:54:13 +0000372 std::cout << "*** Basic Block extraction failed, please report a bug!\n";
Chris Lattner891150f2004-08-12 02:36:50 +0000373 M = swapProgramIn(M);
Gabor Greif8ff70c22007-07-04 21:55:50 +0000374 EmitProgressBitcode("basicblockextractfail", true);
Chris Lattnerb923b2e2006-05-12 17:28:36 +0000375 swapProgramIn(M);
Chris Lattner891150f2004-08-12 02:36:50 +0000376 }
Chris Lattner5e783ab2004-05-11 21:54:13 +0000377 return Ret;
378}