blob: 7bdba50791509bc10d0d56d8ff2fe3713b9d5423 [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"
Chris Lattner5e783ab2004-05-11 21:54:13 +000027#include "llvm/Transforms/Utils/FunctionUtils.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"
Nick Lewycky6fa98b12007-11-14 06:47:06 +000032#include "llvm/System/Path.h"
33#include "llvm/System/Signals.h"
Chris Lattnerfb4b96e2004-04-02 16:28:32 +000034#include <set>
Nick Lewycky6fa98b12007-11-14 06:47:06 +000035#include <fstream>
Chris Lattnere31a9cc2006-01-22 22:53:40 +000036#include <iostream>
Chris Lattnerc6b519d2003-11-23 04:51:05 +000037using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000038
39namespace llvm {
Chris Lattnerc6b519d2003-11-23 04:51:05 +000040 bool DisableSimplifyCFG = false;
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"));
50}
Chris Lattnerafade922002-11-20 22:28:10 +000051
Chris Lattner65207852003-01-23 02:48:33 +000052/// deleteInstructionFromProgram - This method clones the current Program and
53/// deletes the specified instruction from the cloned module. It then runs a
54/// series of cleanup passes (ADCE and SimplifyCFG) to eliminate any code which
55/// depends on the value. The modified module is then returned.
56///
Chris Lattner0cc88072004-02-18 21:50:26 +000057Module *BugDriver::deleteInstructionFromProgram(const Instruction *I,
Chris Lattner65207852003-01-23 02:48:33 +000058 unsigned Simplification) const {
59 Module *Result = CloneModule(Program);
60
Chris Lattner0cc88072004-02-18 21:50:26 +000061 const BasicBlock *PBB = I->getParent();
62 const Function *PF = PBB->getParent();
Chris Lattner65207852003-01-23 02:48:33 +000063
64 Module::iterator RFI = Result->begin(); // Get iterator to corresponding fn
Chris Lattner0cc88072004-02-18 21:50:26 +000065 std::advance(RFI, std::distance(PF->getParent()->begin(),
66 Module::const_iterator(PF)));
Chris Lattner65207852003-01-23 02:48:33 +000067
68 Function::iterator RBI = RFI->begin(); // Get iterator to corresponding BB
Chris Lattner0cc88072004-02-18 21:50:26 +000069 std::advance(RBI, std::distance(PF->begin(), Function::const_iterator(PBB)));
Chris Lattner65207852003-01-23 02:48:33 +000070
71 BasicBlock::iterator RI = RBI->begin(); // Get iterator to corresponding inst
Chris Lattner0cc88072004-02-18 21:50:26 +000072 std::advance(RI, std::distance(PBB->begin(), BasicBlock::const_iterator(I)));
73 Instruction *TheInst = RI; // Got the corresponding instruction!
Chris Lattner65207852003-01-23 02:48:33 +000074
75 // If this instruction produces a value, replace any users with null values
Chris Lattnere78109e2008-04-28 00:04:58 +000076 if (isa<StructType>(TheInst->getType()))
Owen Anderson9adc0ab2009-07-14 23:09:55 +000077 TheInst->replaceAllUsesWith(Context.getUndef(TheInst->getType()));
Chris Lattnere78109e2008-04-28 00:04:58 +000078 else if (TheInst->getType() != Type::VoidTy)
Owen Anderson0a5372e2009-07-13 04:09:18 +000079 TheInst->replaceAllUsesWith(Context.getNullValue(TheInst->getType()));
Chris Lattner65207852003-01-23 02:48:33 +000080
81 // Remove the instruction from the program.
Chris Lattner0cc88072004-02-18 21:50:26 +000082 TheInst->getParent()->getInstList().erase(TheInst);
Chris Lattner65207852003-01-23 02:48:33 +000083
Chris Lattner5a7a9e52006-03-08 23:55:38 +000084
85 //writeProgramToFile("current.bc", Result);
86
Chris Lattner44be2572003-04-24 22:53:24 +000087 // Spiff up the output a little bit.
Chris Lattner65207852003-01-23 02:48:33 +000088 PassManager Passes;
Chris Lattner5da69c72003-10-23 15:42:55 +000089 // Make sure that the appropriate target data is always used...
Chris Lattner831b1212006-06-16 18:23:49 +000090 Passes.add(new TargetData(Result));
Chris Lattner5da69c72003-10-23 15:42:55 +000091
Chris Lattnerefdc0b52004-03-14 20:50:42 +000092 /// FIXME: If this used runPasses() like the methods below, we could get rid
93 /// of the -disable-* options!
Chris Lattner6db70ef2003-04-25 22:08:12 +000094 if (Simplification > 1 && !NoDCE)
Chris Lattner65207852003-01-23 02:48:33 +000095 Passes.add(createDeadCodeEliminationPass());
Chris Lattner47ae4a12003-08-05 15:51:05 +000096 if (Simplification && !DisableSimplifyCFG)
Chris Lattner65207852003-01-23 02:48:33 +000097 Passes.add(createCFGSimplificationPass()); // Delete dead control flow
Chris Lattner10f22cb2003-03-07 18:17:13 +000098
99 Passes.add(createVerifierPass());
Chris Lattner65207852003-01-23 02:48:33 +0000100 Passes.run(*Result);
101 return Result;
102}
Chris Lattnerba386d92003-02-28 16:13:20 +0000103
Chris Lattnerfcb6ec02003-11-05 21:45:35 +0000104static const PassInfo *getPI(Pass *P) {
105 const PassInfo *PI = P->getPassInfo();
106 delete P;
107 return PI;
108}
109
Chris Lattnerba386d92003-02-28 16:13:20 +0000110/// performFinalCleanups - This method clones the current Program and performs
111/// a series of cleanups intended to get rid of extra cruft on the module
Chris Lattner9b5b1902005-02-23 06:12:11 +0000112/// before handing it to the user.
Chris Lattnerba386d92003-02-28 16:13:20 +0000113///
Chris Lattnerfcb6ec02003-11-05 21:45:35 +0000114Module *BugDriver::performFinalCleanups(Module *M, bool MayModifySemantics) {
Chris Lattner28b8ed92003-05-21 19:41:31 +0000115 // Make all functions external, so GlobalDCE doesn't delete them...
116 for (Module::iterator I = M->begin(), E = M->end(); I != E; ++I)
117 I->setLinkage(GlobalValue::ExternalLinkage);
Misha Brukman3da94ae2005-04-22 00:00:37 +0000118
Chris Lattnerfcb6ec02003-11-05 21:45:35 +0000119 std::vector<const PassInfo*> CleanupPasses;
Chris Lattnerfcb6ec02003-11-05 21:45:35 +0000120 CleanupPasses.push_back(getPI(createGlobalDCEPass()));
121 CleanupPasses.push_back(getPI(createDeadTypeEliminationPass()));
Chris Lattnerfcb6ec02003-11-05 21:45:35 +0000122
Chris Lattnerc6b519d2003-11-23 04:51:05 +0000123 if (MayModifySemantics)
124 CleanupPasses.push_back(getPI(createDeadArgHackingPass()));
125 else
126 CleanupPasses.push_back(getPI(createDeadArgEliminationPass()));
Chris Lattnerfcb6ec02003-11-05 21:45:35 +0000127
Chris Lattnera75766a2004-03-14 21:17:22 +0000128 Module *New = runPassesOn(M, CleanupPasses);
129 if (New == 0) {
Dan Gohman65f57c22009-07-15 16:35:29 +0000130 errs() << "Final cleanups failed. Sorry. :( Please report a bug!\n";
Chris Lattner9b5b1902005-02-23 06:12:11 +0000131 return M;
Chris Lattnerfcb6ec02003-11-05 21:45:35 +0000132 }
Chris Lattnera75766a2004-03-14 21:17:22 +0000133 delete M;
134 return New;
Chris Lattnerba386d92003-02-28 16:13:20 +0000135}
Chris Lattnerbe21ca52004-03-14 19:27:19 +0000136
137
Chris Lattner7546c382004-03-14 20:02:07 +0000138/// ExtractLoop - Given a module, extract up to one loop from it into a new
139/// function. This returns null if there are no extractable loops in the
140/// program or if the loop extractor crashes.
141Module *BugDriver::ExtractLoop(Module *M) {
142 std::vector<const PassInfo*> LoopExtractPasses;
143 LoopExtractPasses.push_back(getPI(createSingleLoopExtractorPass()));
144
Chris Lattnera75766a2004-03-14 21:17:22 +0000145 Module *NewM = runPassesOn(M, LoopExtractPasses);
146 if (NewM == 0) {
Chris Lattnera1cf1c82004-03-14 22:08:00 +0000147 Module *Old = swapProgramIn(M);
148 std::cout << "*** Loop extraction failed: ";
Gabor Greif8ff70c22007-07-04 21:55:50 +0000149 EmitProgressBitcode("loopextraction", true);
Chris Lattnera1cf1c82004-03-14 22:08:00 +0000150 std::cout << "*** Sorry. :( Please report a bug!\n";
151 swapProgramIn(Old);
Chris Lattner7546c382004-03-14 20:02:07 +0000152 return 0;
Chris Lattner7546c382004-03-14 20:02:07 +0000153 }
Chris Lattnera75766a2004-03-14 21:17:22 +0000154
155 // Check to see if we created any new functions. If not, no loops were
Chris Lattnera269ec72004-11-18 19:40:13 +0000156 // extracted and we should return null. Limit the number of loops we extract
157 // to avoid taking forever.
158 static unsigned NumExtracted = 32;
Chris Lattner90c18c52004-11-16 06:31:38 +0000159 if (M->size() == NewM->size() || --NumExtracted == 0) {
Chris Lattnera75766a2004-03-14 21:17:22 +0000160 delete NewM;
161 return 0;
Chris Lattner90c18c52004-11-16 06:31:38 +0000162 } else {
163 assert(M->size() < NewM->size() && "Loop extract removed functions?");
164 Module::iterator MI = NewM->begin();
165 for (unsigned i = 0, e = M->size(); i != e; ++i)
166 ++MI;
Chris Lattnera75766a2004-03-14 21:17:22 +0000167 }
Misha Brukman3da94ae2005-04-22 00:00:37 +0000168
Chris Lattnera75766a2004-03-14 21:17:22 +0000169 return NewM;
Chris Lattner7546c382004-03-14 20:02:07 +0000170}
171
172
Chris Lattnerbe21ca52004-03-14 19:27:19 +0000173// DeleteFunctionBody - "Remove" the function by deleting all of its basic
174// blocks, making it external.
175//
176void llvm::DeleteFunctionBody(Function *F) {
177 // delete the body of the function...
178 F->deleteBody();
Reid Spencer5cbf9852007-01-30 20:08:39 +0000179 assert(F->isDeclaration() && "This didn't make the function external!");
Chris Lattnerbe21ca52004-03-14 19:27:19 +0000180}
181
Chris Lattner5a7a9e52006-03-08 23:55:38 +0000182/// GetTorInit - Given a list of entries for static ctors/dtors, return them
183/// as a constant array.
184static Constant *GetTorInit(std::vector<std::pair<Function*, int> > &TorList) {
185 assert(!TorList.empty() && "Don't create empty tor list!");
Owen Anderson9adc0ab2009-07-14 23:09:55 +0000186 LLVMContext &Context = *TorList[0].first->getContext();
Chris Lattner5a7a9e52006-03-08 23:55:38 +0000187 std::vector<Constant*> ArrayElts;
188 for (unsigned i = 0, e = TorList.size(); i != e; ++i) {
189 std::vector<Constant*> Elts;
Owen Anderson9adc0ab2009-07-14 23:09:55 +0000190 Elts.push_back(Context.getConstantInt(Type::Int32Ty, TorList[i].second));
Chris Lattner5a7a9e52006-03-08 23:55:38 +0000191 Elts.push_back(TorList[i].first);
Owen Anderson9adc0ab2009-07-14 23:09:55 +0000192 ArrayElts.push_back(Context.getConstantStruct(Elts));
Chris Lattner5a7a9e52006-03-08 23:55:38 +0000193 }
Owen Anderson9adc0ab2009-07-14 23:09:55 +0000194 return Context.getConstantArray(Context.getArrayType(ArrayElts[0]->getType(),
Chris Lattner5a7a9e52006-03-08 23:55:38 +0000195 ArrayElts.size()),
196 ArrayElts);
197}
198
199/// SplitStaticCtorDtor - A module was recently split into two parts, M1/M2, and
200/// M1 has all of the global variables. If M2 contains any functions that are
201/// static ctors/dtors, we need to add an llvm.global_[cd]tors global to M2, and
202/// prune appropriate entries out of M1s list.
Dan Gohmand50330c2009-04-22 15:57:18 +0000203static void SplitStaticCtorDtor(const char *GlobalName, Module *M1, Module *M2,
204 DenseMap<const Value*, Value*> ValueMap) {
Chris Lattner5a7a9e52006-03-08 23:55:38 +0000205 GlobalVariable *GV = M1->getNamedGlobal(GlobalName);
Rafael Espindolabb46f522009-01-15 20:18:42 +0000206 if (!GV || GV->isDeclaration() || GV->hasLocalLinkage() ||
Chris Lattner5a7a9e52006-03-08 23:55:38 +0000207 !GV->use_empty()) return;
208
209 std::vector<std::pair<Function*, int> > M1Tors, M2Tors;
210 ConstantArray *InitList = dyn_cast<ConstantArray>(GV->getInitializer());
211 if (!InitList) return;
212
213 for (unsigned i = 0, e = InitList->getNumOperands(); i != e; ++i) {
214 if (ConstantStruct *CS = dyn_cast<ConstantStruct>(InitList->getOperand(i))){
215 if (CS->getNumOperands() != 2) return; // Not array of 2-element structs.
216
217 if (CS->getOperand(1)->isNullValue())
218 break; // Found a null terminator, stop here.
219
Reid Spencerb83eb642006-10-20 07:07:24 +0000220 ConstantInt *CI = dyn_cast<ConstantInt>(CS->getOperand(0));
221 int Priority = CI ? CI->getSExtValue() : 0;
Chris Lattner5a7a9e52006-03-08 23:55:38 +0000222
223 Constant *FP = CS->getOperand(1);
224 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(FP))
Reid Spencer3da59db2006-11-27 01:05:10 +0000225 if (CE->isCast())
Chris Lattner5a7a9e52006-03-08 23:55:38 +0000226 FP = CE->getOperand(0);
227 if (Function *F = dyn_cast<Function>(FP)) {
Reid Spencer5cbf9852007-01-30 20:08:39 +0000228 if (!F->isDeclaration())
Chris Lattner5a7a9e52006-03-08 23:55:38 +0000229 M1Tors.push_back(std::make_pair(F, Priority));
230 else {
231 // Map to M2's version of the function.
Dan Gohmand50330c2009-04-22 15:57:18 +0000232 F = cast<Function>(ValueMap[F]);
Chris Lattner5a7a9e52006-03-08 23:55:38 +0000233 M2Tors.push_back(std::make_pair(F, Priority));
234 }
235 }
236 }
237 }
238
239 GV->eraseFromParent();
240 if (!M1Tors.empty()) {
241 Constant *M1Init = GetTorInit(M1Tors);
Owen Andersone9b11b42009-07-08 19:03:57 +0000242 new GlobalVariable(*M1, M1Init->getType(), false,
Owen Anderson3d29df32009-07-08 01:26:06 +0000243 GlobalValue::AppendingLinkage,
Owen Andersone9b11b42009-07-08 19:03:57 +0000244 M1Init, GlobalName);
Chris Lattner5a7a9e52006-03-08 23:55:38 +0000245 }
246
247 GV = M2->getNamedGlobal(GlobalName);
248 assert(GV && "Not a clone of M1?");
249 assert(GV->use_empty() && "llvm.ctors shouldn't have uses!");
250
251 GV->eraseFromParent();
252 if (!M2Tors.empty()) {
253 Constant *M2Init = GetTorInit(M2Tors);
Owen Andersone9b11b42009-07-08 19:03:57 +0000254 new GlobalVariable(*M2, M2Init->getType(), false,
Owen Anderson3d29df32009-07-08 01:26:06 +0000255 GlobalValue::AppendingLinkage,
Owen Andersone9b11b42009-07-08 19:03:57 +0000256 M2Init, GlobalName);
Chris Lattner5a7a9e52006-03-08 23:55:38 +0000257 }
258}
259
Patrick Jenkinse47863e2006-07-28 01:19:28 +0000260
Chris Lattnerbe21ca52004-03-14 19:27:19 +0000261/// SplitFunctionsOutOfModule - Given a module and a list of functions in the
262/// module, split the functions OUT of the specified module, and place them in
263/// the new module.
Dan Gohmand50330c2009-04-22 15:57:18 +0000264Module *
265llvm::SplitFunctionsOutOfModule(Module *M,
266 const std::vector<Function*> &F,
267 DenseMap<const Value*, Value*> &ValueMap) {
Chris Lattnerbe21ca52004-03-14 19:27:19 +0000268 // Make sure functions & globals are all external so that linkage
269 // between the two modules will work.
270 for (Module::iterator I = M->begin(), E = M->end(); I != E; ++I)
271 I->setLinkage(GlobalValue::ExternalLinkage);
Chris Lattner5a7a9e52006-03-08 23:55:38 +0000272 for (Module::global_iterator I = M->global_begin(), E = M->global_end();
Owen Anderson7220b812008-07-08 16:38:42 +0000273 I != E; ++I) {
274 if (I->hasName() && *I->getNameStart() == '\01')
275 I->setName(I->getNameStart()+1, I->getNameLen()-1);
Chris Lattnerbe21ca52004-03-14 19:27:19 +0000276 I->setLinkage(GlobalValue::ExternalLinkage);
Owen Anderson7220b812008-07-08 16:38:42 +0000277 }
Chris Lattnerbe21ca52004-03-14 19:27:19 +0000278
Dan Gohmand50330c2009-04-22 15:57:18 +0000279 DenseMap<const Value*, Value*> NewValueMap;
280 Module *New = CloneModule(M, NewValueMap);
Chris Lattnerbe21ca52004-03-14 19:27:19 +0000281
Chris Lattnerfef02422006-11-09 06:24:56 +0000282 // Make sure global initializers exist only in the safe module (CBE->.so)
283 for (Module::global_iterator I = New->global_begin(), E = New->global_end();
284 I != E; ++I)
285 I->setInitializer(0); // Delete the initializer to make it external
Chris Lattnerbe21ca52004-03-14 19:27:19 +0000286
Chris Lattnerfef02422006-11-09 06:24:56 +0000287 // Remove the Test functions from the Safe module
Dan Gohmand50330c2009-04-22 15:57:18 +0000288 std::set<Function *> TestFunctions;
Chris Lattnerbe21ca52004-03-14 19:27:19 +0000289 for (unsigned i = 0, e = F.size(); i != e; ++i) {
Dan Gohmand50330c2009-04-22 15:57:18 +0000290 Function *TNOF = cast<Function>(ValueMap[F[i]]);
Dan Gohman65f57c22009-07-15 16:35:29 +0000291 DEBUG(errs() << "Removing function ");
292 DEBUG(WriteAsOperand(errs(), TNOF, false));
293 DEBUG(errs() << "\n");
Dan Gohmand50330c2009-04-22 15:57:18 +0000294 TestFunctions.insert(cast<Function>(NewValueMap[TNOF]));
Chris Lattnerfef02422006-11-09 06:24:56 +0000295 DeleteFunctionBody(TNOF); // Function is now external in this module!
Chris Lattnerbe21ca52004-03-14 19:27:19 +0000296 }
297
Chris Lattner5a7a9e52006-03-08 23:55:38 +0000298
Chris Lattnerfef02422006-11-09 06:24:56 +0000299 // Remove the Safe functions from the Test module
300 for (Module::iterator I = New->begin(), E = New->end(); I != E; ++I)
Dan Gohmand50330c2009-04-22 15:57:18 +0000301 if (!TestFunctions.count(I))
Chris Lattnerfef02422006-11-09 06:24:56 +0000302 DeleteFunctionBody(I);
303
Patrick Jenkinse47863e2006-07-28 01:19:28 +0000304
Chris Lattner5a7a9e52006-03-08 23:55:38 +0000305 // Make sure that there is a global ctor/dtor array in both halves of the
306 // module if they both have static ctor/dtor functions.
Dan Gohmand50330c2009-04-22 15:57:18 +0000307 SplitStaticCtorDtor("llvm.global_ctors", M, New, NewValueMap);
308 SplitStaticCtorDtor("llvm.global_dtors", M, New, NewValueMap);
Chris Lattner5a7a9e52006-03-08 23:55:38 +0000309
Chris Lattnerbe21ca52004-03-14 19:27:19 +0000310 return New;
311}
Chris Lattner5e783ab2004-05-11 21:54:13 +0000312
313//===----------------------------------------------------------------------===//
314// Basic Block Extraction Code
315//===----------------------------------------------------------------------===//
316
Chris Lattner5e783ab2004-05-11 21:54:13 +0000317/// ExtractMappedBlocksFromModule - Extract all but the specified basic blocks
318/// into their own functions. The only detail is that M is actually a module
319/// cloned from the one the BBs are in, so some mapping needs to be performed.
320/// If this operation fails for some reason (ie the implementation is buggy),
321/// this function should return null, otherwise it returns a new Module.
322Module *BugDriver::ExtractMappedBlocksFromModule(const
323 std::vector<BasicBlock*> &BBs,
324 Module *M) {
Nick Lewycky6fa98b12007-11-14 06:47:06 +0000325 char *ExtraArg = NULL;
326
327 sys::Path uniqueFilename("bugpoint-extractblocks");
328 std::string ErrMsg;
329 if (uniqueFilename.createTemporaryFileOnDisk(true, &ErrMsg)) {
330 std::cout << "*** Basic Block extraction failed!\n";
Dan Gohman65f57c22009-07-15 16:35:29 +0000331 errs() << "Error creating temporary file: " << ErrMsg << "\n";
Nick Lewycky6fa98b12007-11-14 06:47:06 +0000332 M = swapProgramIn(M);
333 EmitProgressBitcode("basicblockextractfail", true);
334 swapProgramIn(M);
335 return 0;
336 }
337 sys::RemoveFileOnSignal(uniqueFilename);
338
339 std::ofstream BlocksToNotExtractFile(uniqueFilename.c_str());
340 if (!BlocksToNotExtractFile) {
341 std::cout << "*** Basic Block extraction failed!\n";
Dan Gohman65f57c22009-07-15 16:35:29 +0000342 errs() << "Error writing list of blocks to not extract: " << ErrMsg
343 << "\n";
Nick Lewycky6fa98b12007-11-14 06:47:06 +0000344 M = swapProgramIn(M);
345 EmitProgressBitcode("basicblockextractfail", true);
346 swapProgramIn(M);
347 return 0;
348 }
349 for (std::vector<BasicBlock*>::const_iterator I = BBs.begin(), E = BBs.end();
350 I != E; ++I) {
351 BasicBlock *BB = *I;
Chris Lattner4a6a6f22008-01-08 04:26:20 +0000352 // If the BB doesn't have a name, give it one so we have something to key
353 // off of.
354 if (!BB->hasName()) BB->setName("tmpbb");
Nick Lewycky6fa98b12007-11-14 06:47:06 +0000355 BlocksToNotExtractFile << BB->getParent()->getName() << " "
356 << BB->getName() << "\n";
357 }
358 BlocksToNotExtractFile.close();
359
360 const char *uniqueFN = uniqueFilename.c_str();
361 ExtraArg = (char*)malloc(23 + strlen(uniqueFN));
362 strcat(strcpy(ExtraArg, "--extract-blocks-file="), uniqueFN);
363
Chris Lattner5e783ab2004-05-11 21:54:13 +0000364 std::vector<const PassInfo*> PI;
Nick Lewycky6fa98b12007-11-14 06:47:06 +0000365 std::vector<BasicBlock *> EmptyBBs; // This parameter is ignored.
366 PI.push_back(getPI(createBlockExtractorPass(EmptyBBs)));
367 Module *Ret = runPassesOn(M, PI, false, 1, &ExtraArg);
368
369 if (uniqueFilename.exists())
370 uniqueFilename.eraseFromDisk(); // Free disk space
371 free(ExtraArg);
372
Chris Lattner891150f2004-08-12 02:36:50 +0000373 if (Ret == 0) {
Chris Lattner5e783ab2004-05-11 21:54:13 +0000374 std::cout << "*** Basic Block extraction failed, please report a bug!\n";
Chris Lattner891150f2004-08-12 02:36:50 +0000375 M = swapProgramIn(M);
Gabor Greif8ff70c22007-07-04 21:55:50 +0000376 EmitProgressBitcode("basicblockextractfail", true);
Chris Lattnerb923b2e2006-05-12 17:28:36 +0000377 swapProgramIn(M);
Chris Lattner891150f2004-08-12 02:36:50 +0000378 }
Chris Lattner5e783ab2004-05-11 21:54:13 +0000379 return Ret;
380}