blob: f2e61f8b5d1305eb7286503535f45b384a870856 [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"
Chris Lattnerfdb533a2006-03-08 23:55:38 +000016#include "llvm/Constants.h"
17#include "llvm/DerivedTypes.h"
Owen Andersonb2584102009-07-13 22:40:32 +000018#include "llvm/LLVMContext.h"
Chris Lattner73a6bdd2002-11-20 22:28:10 +000019#include "llvm/Module.h"
20#include "llvm/PassManager.h"
Brian Gaekeef432702003-09-10 21:11:42 +000021#include "llvm/Pass.h"
Misha Brukman0c2305b2003-08-07 21:19:30 +000022#include "llvm/Analysis/Verifier.h"
Dan Gohmane2d31aa2009-07-13 22:56:37 +000023#include "llvm/Assembly/Writer.h"
Chris Lattner73a6bdd2002-11-20 22:28:10 +000024#include "llvm/Transforms/IPO.h"
Chris Lattner0eb5ce92003-01-23 02:48:33 +000025#include "llvm/Transforms/Scalar.h"
Chris Lattner73a6bdd2002-11-20 22:28:10 +000026#include "llvm/Transforms/Utils/Cloning.h"
Chris Lattnera060b102004-05-11 21:54:13 +000027#include "llvm/Transforms/Utils/FunctionUtils.h"
Chris Lattnerf3e8f972003-10-23 15:42:55 +000028#include "llvm/Target/TargetData.h"
Reid Spencer7c16caa2004-09-01 22:55:40 +000029#include "llvm/Support/CommandLine.h"
30#include "llvm/Support/Debug.h"
31#include "llvm/Support/FileUtilities.h"
Dan Gohman0df7ea42010-10-07 20:32:40 +000032#include "llvm/Support/ToolOutputFile.h"
Michael J. Spencer447762d2010-11-29 18:16:10 +000033#include "llvm/Support/Path.h"
34#include "llvm/Support/Signals.h"
Chris Lattner38382432004-04-02 16:28:32 +000035#include <set>
Chris Lattner3f1ad872003-11-23 04:51:05 +000036using namespace llvm;
Brian Gaeke960707c2003-11-11 22:41:34 +000037
38namespace llvm {
Chris Lattner3f1ad872003-11-23 04:51:05 +000039 bool DisableSimplifyCFG = false;
Daniel Dunbara53337f2009-09-07 19:26:11 +000040 extern cl::opt<std::string> OutputPrefix;
Brian Gaeke960707c2003-11-11 22:41:34 +000041} // End llvm namespace
42
Chris Lattner8d8de422003-04-25 22:08:12 +000043namespace {
44 cl::opt<bool>
Chris Lattner8d8de422003-04-25 22:08:12 +000045 NoDCE ("disable-dce",
46 cl::desc("Do not use the -dce pass to reduce testcases"));
Chris Lattnerd1e2aae2003-08-05 15:51:05 +000047 cl::opt<bool, true>
48 NoSCFG("disable-simplifycfg", cl::location(DisableSimplifyCFG),
Chris Lattner8d8de422003-04-25 22:08:12 +000049 cl::desc("Do not use the -simplifycfg pass to reduce testcases"));
50}
Chris Lattner73a6bdd2002-11-20 22:28:10 +000051
Chris Lattner0eb5ce92003-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 Lattnerb943b6b2004-02-18 21:50:26 +000057Module *BugDriver::deleteInstructionFromProgram(const Instruction *I,
Rafael Espindolad1e241a2010-08-10 15:46:11 +000058 unsigned Simplification) {
59 // FIXME, use vmap?
60 Module *Clone = CloneModule(Program);
Chris Lattner0eb5ce92003-01-23 02:48:33 +000061
Chris Lattnerb943b6b2004-02-18 21:50:26 +000062 const BasicBlock *PBB = I->getParent();
63 const Function *PF = PBB->getParent();
Chris Lattner0eb5ce92003-01-23 02:48:33 +000064
Rafael Espindolad1e241a2010-08-10 15:46:11 +000065 Module::iterator RFI = Clone->begin(); // Get iterator to corresponding fn
Chris Lattnerb943b6b2004-02-18 21:50:26 +000066 std::advance(RFI, std::distance(PF->getParent()->begin(),
67 Module::const_iterator(PF)));
Chris Lattner0eb5ce92003-01-23 02:48:33 +000068
69 Function::iterator RBI = RFI->begin(); // Get iterator to corresponding BB
Chris Lattnerb943b6b2004-02-18 21:50:26 +000070 std::advance(RBI, std::distance(PF->begin(), Function::const_iterator(PBB)));
Chris Lattner0eb5ce92003-01-23 02:48:33 +000071
72 BasicBlock::iterator RI = RBI->begin(); // Get iterator to corresponding inst
Chris Lattnerb943b6b2004-02-18 21:50:26 +000073 std::advance(RI, std::distance(PBB->begin(), BasicBlock::const_iterator(I)));
74 Instruction *TheInst = RI; // Got the corresponding instruction!
Chris Lattner0eb5ce92003-01-23 02:48:33 +000075
76 // If this instruction produces a value, replace any users with null values
Dan Gohman34a22492010-06-07 20:19:26 +000077 if (!TheInst->getType()->isVoidTy())
Owen Anderson5a1acd92009-07-31 20:28:14 +000078 TheInst->replaceAllUsesWith(Constant::getNullValue(TheInst->getType()));
Chris Lattner0eb5ce92003-01-23 02:48:33 +000079
80 // Remove the instruction from the program.
Chris Lattnerb943b6b2004-02-18 21:50:26 +000081 TheInst->getParent()->getInstList().erase(TheInst);
Chris Lattner0eb5ce92003-01-23 02:48:33 +000082
Chris Lattner10c04692003-04-24 22:53:24 +000083 // Spiff up the output a little bit.
Rafael Espindolad1e241a2010-08-10 15:46:11 +000084 std::vector<std::string> Passes;
Chris Lattnerf3e8f972003-10-23 15:42:55 +000085
Rafael Espindolad1e241a2010-08-10 15:46:11 +000086 /// Can we get rid of the -disable-* options?
Chris Lattner8d8de422003-04-25 22:08:12 +000087 if (Simplification > 1 && !NoDCE)
Rafael Espindolad1e241a2010-08-10 15:46:11 +000088 Passes.push_back("dce");
Chris Lattnerd1e2aae2003-08-05 15:51:05 +000089 if (Simplification && !DisableSimplifyCFG)
Rafael Espindolad1e241a2010-08-10 15:46:11 +000090 Passes.push_back("simplifycfg"); // Delete dead control flow
Chris Lattner44ffd7c2003-03-07 18:17:13 +000091
Rafael Espindolad1e241a2010-08-10 15:46:11 +000092 Passes.push_back("verify");
93 Module *New = runPassesOn(Clone, Passes);
94 delete Clone;
95 if (!New) {
96 errs() << "Instruction removal failed. Sorry. :( Please report a bug!\n";
97 exit(1);
98 }
99 return New;
Chris Lattner0eb5ce92003-01-23 02:48:33 +0000100}
Chris Lattner514c02e2003-02-28 16:13:20 +0000101
102/// performFinalCleanups - This method clones the current Program and performs
103/// a series of cleanups intended to get rid of extra cruft on the module
Chris Lattner5e166a52005-02-23 06:12:11 +0000104/// before handing it to the user.
Chris Lattner514c02e2003-02-28 16:13:20 +0000105///
Chris Lattner29201002003-11-05 21:45:35 +0000106Module *BugDriver::performFinalCleanups(Module *M, bool MayModifySemantics) {
Chris Lattner2b3ab562003-05-21 19:41:31 +0000107 // Make all functions external, so GlobalDCE doesn't delete them...
108 for (Module::iterator I = M->begin(), E = M->end(); I != E; ++I)
109 I->setLinkage(GlobalValue::ExternalLinkage);
Misha Brukman650ba8e2005-04-22 00:00:37 +0000110
Rafael Espindola33e81a82010-08-08 03:55:08 +0000111 std::vector<std::string> CleanupPasses;
112 CleanupPasses.push_back("globaldce");
Chris Lattner29201002003-11-05 21:45:35 +0000113
Chris Lattner3f1ad872003-11-23 04:51:05 +0000114 if (MayModifySemantics)
Rafael Espindola33e81a82010-08-08 03:55:08 +0000115 CleanupPasses.push_back("deadarghaX0r");
Chris Lattner3f1ad872003-11-23 04:51:05 +0000116 else
Rafael Espindola33e81a82010-08-08 03:55:08 +0000117 CleanupPasses.push_back("deadargelim");
Chris Lattner29201002003-11-05 21:45:35 +0000118
Chris Lattner6ce2d032004-03-14 21:17:22 +0000119 Module *New = runPassesOn(M, CleanupPasses);
120 if (New == 0) {
Dan Gohmand8db3762009-07-15 16:35:29 +0000121 errs() << "Final cleanups failed. Sorry. :( Please report a bug!\n";
Chris Lattner5e166a52005-02-23 06:12:11 +0000122 return M;
Chris Lattner29201002003-11-05 21:45:35 +0000123 }
Chris Lattner6ce2d032004-03-14 21:17:22 +0000124 delete M;
125 return New;
Chris Lattner514c02e2003-02-28 16:13:20 +0000126}
Chris Lattner567543f2004-03-14 19:27:19 +0000127
128
Chris Lattner3fe96bc2004-03-14 20:02:07 +0000129/// ExtractLoop - Given a module, extract up to one loop from it into a new
130/// function. This returns null if there are no extractable loops in the
131/// program or if the loop extractor crashes.
132Module *BugDriver::ExtractLoop(Module *M) {
Rafael Espindola33e81a82010-08-08 03:55:08 +0000133 std::vector<std::string> LoopExtractPasses;
134 LoopExtractPasses.push_back("loop-extract-single");
Chris Lattner3fe96bc2004-03-14 20:02:07 +0000135
Chris Lattner6ce2d032004-03-14 21:17:22 +0000136 Module *NewM = runPassesOn(M, LoopExtractPasses);
137 if (NewM == 0) {
Dan Gohmanee051522009-07-16 15:30:09 +0000138 outs() << "*** Loop extraction failed: ";
Rafael Espindola594994a2010-07-28 18:12:30 +0000139 EmitProgressBitcode(M, "loopextraction", true);
Dan Gohmanee051522009-07-16 15:30:09 +0000140 outs() << "*** Sorry. :( Please report a bug!\n";
Chris Lattner3fe96bc2004-03-14 20:02:07 +0000141 return 0;
Chris Lattner3fe96bc2004-03-14 20:02:07 +0000142 }
Chris Lattner6ce2d032004-03-14 21:17:22 +0000143
144 // Check to see if we created any new functions. If not, no loops were
Chris Lattner8cb483b2004-11-18 19:40:13 +0000145 // extracted and we should return null. Limit the number of loops we extract
146 // to avoid taking forever.
147 static unsigned NumExtracted = 32;
Chris Lattnerd3087972004-11-16 06:31:38 +0000148 if (M->size() == NewM->size() || --NumExtracted == 0) {
Chris Lattner6ce2d032004-03-14 21:17:22 +0000149 delete NewM;
150 return 0;
Chris Lattnerd3087972004-11-16 06:31:38 +0000151 } else {
152 assert(M->size() < NewM->size() && "Loop extract removed functions?");
153 Module::iterator MI = NewM->begin();
154 for (unsigned i = 0, e = M->size(); i != e; ++i)
155 ++MI;
Chris Lattner6ce2d032004-03-14 21:17:22 +0000156 }
Misha Brukman650ba8e2005-04-22 00:00:37 +0000157
Chris Lattner6ce2d032004-03-14 21:17:22 +0000158 return NewM;
Chris Lattner3fe96bc2004-03-14 20:02:07 +0000159}
160
161
Chris Lattner567543f2004-03-14 19:27:19 +0000162// DeleteFunctionBody - "Remove" the function by deleting all of its basic
163// blocks, making it external.
164//
165void llvm::DeleteFunctionBody(Function *F) {
166 // delete the body of the function...
167 F->deleteBody();
Reid Spencer5301e7c2007-01-30 20:08:39 +0000168 assert(F->isDeclaration() && "This didn't make the function external!");
Chris Lattner567543f2004-03-14 19:27:19 +0000169}
170
Chris Lattnerfdb533a2006-03-08 23:55:38 +0000171/// GetTorInit - Given a list of entries for static ctors/dtors, return them
172/// as a constant array.
173static Constant *GetTorInit(std::vector<std::pair<Function*, int> > &TorList) {
174 assert(!TorList.empty() && "Don't create empty tor list!");
175 std::vector<Constant*> ArrayElts;
Jay Foadb804a2b2011-07-12 14:06:48 +0000176 Type *Int32Ty = Type::getInt32Ty(TorList[0].first->getContext());
Chris Lattnercc19efa2011-06-20 04:01:31 +0000177
Chris Lattner229907c2011-07-18 04:54:35 +0000178 StructType *STy =
Chris Lattnercc19efa2011-06-20 04:01:31 +0000179 StructType::get(Int32Ty, TorList[0].first->getType(), NULL);
Chris Lattnerfdb533a2006-03-08 23:55:38 +0000180 for (unsigned i = 0, e = TorList.size(); i != e; ++i) {
Chris Lattnercc19efa2011-06-20 04:01:31 +0000181 Constant *Elts[] = {
182 ConstantInt::get(Int32Ty, TorList[i].second),
183 TorList[i].first
184 };
185 ArrayElts.push_back(ConstantStruct::get(STy, Elts));
Chris Lattnerfdb533a2006-03-08 23:55:38 +0000186 }
Owen Anderson4056ca92009-07-29 22:17:13 +0000187 return ConstantArray::get(ArrayType::get(ArrayElts[0]->getType(),
Chris Lattnerfdb533a2006-03-08 23:55:38 +0000188 ArrayElts.size()),
189 ArrayElts);
190}
191
192/// SplitStaticCtorDtor - A module was recently split into two parts, M1/M2, and
193/// M1 has all of the global variables. If M2 contains any functions that are
194/// static ctors/dtors, we need to add an llvm.global_[cd]tors global to M2, and
195/// prune appropriate entries out of M1s list.
Dan Gohman956ae9d2009-04-22 15:57:18 +0000196static void SplitStaticCtorDtor(const char *GlobalName, Module *M1, Module *M2,
Rafael Espindola229e38f2010-10-13 01:36:30 +0000197 ValueToValueMapTy &VMap) {
Chris Lattnerfdb533a2006-03-08 23:55:38 +0000198 GlobalVariable *GV = M1->getNamedGlobal(GlobalName);
Rafael Espindola6de96a12009-01-15 20:18:42 +0000199 if (!GV || GV->isDeclaration() || GV->hasLocalLinkage() ||
Chris Lattnerfdb533a2006-03-08 23:55:38 +0000200 !GV->use_empty()) return;
201
202 std::vector<std::pair<Function*, int> > M1Tors, M2Tors;
203 ConstantArray *InitList = dyn_cast<ConstantArray>(GV->getInitializer());
204 if (!InitList) return;
205
206 for (unsigned i = 0, e = InitList->getNumOperands(); i != e; ++i) {
207 if (ConstantStruct *CS = dyn_cast<ConstantStruct>(InitList->getOperand(i))){
208 if (CS->getNumOperands() != 2) return; // Not array of 2-element structs.
209
210 if (CS->getOperand(1)->isNullValue())
211 break; // Found a null terminator, stop here.
212
Reid Spencere0fc4df2006-10-20 07:07:24 +0000213 ConstantInt *CI = dyn_cast<ConstantInt>(CS->getOperand(0));
214 int Priority = CI ? CI->getSExtValue() : 0;
Chris Lattnerfdb533a2006-03-08 23:55:38 +0000215
216 Constant *FP = CS->getOperand(1);
217 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(FP))
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000218 if (CE->isCast())
Chris Lattnerfdb533a2006-03-08 23:55:38 +0000219 FP = CE->getOperand(0);
220 if (Function *F = dyn_cast<Function>(FP)) {
Reid Spencer5301e7c2007-01-30 20:08:39 +0000221 if (!F->isDeclaration())
Chris Lattnerfdb533a2006-03-08 23:55:38 +0000222 M1Tors.push_back(std::make_pair(F, Priority));
223 else {
224 // Map to M2's version of the function.
Devang Patel0dc3c2d2010-06-24 00:33:28 +0000225 F = cast<Function>(VMap[F]);
Chris Lattnerfdb533a2006-03-08 23:55:38 +0000226 M2Tors.push_back(std::make_pair(F, Priority));
227 }
228 }
229 }
230 }
231
232 GV->eraseFromParent();
233 if (!M1Tors.empty()) {
234 Constant *M1Init = GetTorInit(M1Tors);
Owen Andersonb17f3292009-07-08 19:03:57 +0000235 new GlobalVariable(*M1, M1Init->getType(), false,
Owen Anderson5948fdf2009-07-08 01:26:06 +0000236 GlobalValue::AppendingLinkage,
Owen Andersonb17f3292009-07-08 19:03:57 +0000237 M1Init, GlobalName);
Chris Lattnerfdb533a2006-03-08 23:55:38 +0000238 }
239
240 GV = M2->getNamedGlobal(GlobalName);
241 assert(GV && "Not a clone of M1?");
242 assert(GV->use_empty() && "llvm.ctors shouldn't have uses!");
243
244 GV->eraseFromParent();
245 if (!M2Tors.empty()) {
246 Constant *M2Init = GetTorInit(M2Tors);
Owen Andersonb17f3292009-07-08 19:03:57 +0000247 new GlobalVariable(*M2, M2Init->getType(), false,
Owen Anderson5948fdf2009-07-08 01:26:06 +0000248 GlobalValue::AppendingLinkage,
Owen Andersonb17f3292009-07-08 19:03:57 +0000249 M2Init, GlobalName);
Chris Lattnerfdb533a2006-03-08 23:55:38 +0000250 }
251}
252
Patrick Jenkinsb417a5c2006-07-28 01:19:28 +0000253
Chris Lattner567543f2004-03-14 19:27:19 +0000254/// SplitFunctionsOutOfModule - Given a module and a list of functions in the
255/// module, split the functions OUT of the specified module, and place them in
256/// the new module.
Dan Gohman956ae9d2009-04-22 15:57:18 +0000257Module *
258llvm::SplitFunctionsOutOfModule(Module *M,
259 const std::vector<Function*> &F,
Rafael Espindola229e38f2010-10-13 01:36:30 +0000260 ValueToValueMapTy &VMap) {
Chris Lattner567543f2004-03-14 19:27:19 +0000261 // Make sure functions & globals are all external so that linkage
262 // between the two modules will work.
263 for (Module::iterator I = M->begin(), E = M->end(); I != E; ++I)
264 I->setLinkage(GlobalValue::ExternalLinkage);
Chris Lattnerfdb533a2006-03-08 23:55:38 +0000265 for (Module::global_iterator I = M->global_begin(), E = M->global_end();
Owen Andersonc76bacb2008-07-08 16:38:42 +0000266 I != E; ++I) {
Daniel Dunbard786b512009-07-26 00:34:27 +0000267 if (I->hasName() && I->getName()[0] == '\01')
268 I->setName(I->getName().substr(1));
Chris Lattner567543f2004-03-14 19:27:19 +0000269 I->setLinkage(GlobalValue::ExternalLinkage);
Owen Andersonc76bacb2008-07-08 16:38:42 +0000270 }
Chris Lattner567543f2004-03-14 19:27:19 +0000271
Rafael Espindola229e38f2010-10-13 01:36:30 +0000272 ValueToValueMapTy NewVMap;
Devang Patel0dc3c2d2010-06-24 00:33:28 +0000273 Module *New = CloneModule(M, NewVMap);
Chris Lattner567543f2004-03-14 19:27:19 +0000274
Chris Lattner7275b022006-11-09 06:24:56 +0000275 // Make sure global initializers exist only in the safe module (CBE->.so)
276 for (Module::global_iterator I = New->global_begin(), E = New->global_end();
277 I != E; ++I)
278 I->setInitializer(0); // Delete the initializer to make it external
Chris Lattner567543f2004-03-14 19:27:19 +0000279
Chris Lattner7275b022006-11-09 06:24:56 +0000280 // Remove the Test functions from the Safe module
Dan Gohman956ae9d2009-04-22 15:57:18 +0000281 std::set<Function *> TestFunctions;
Chris Lattner567543f2004-03-14 19:27:19 +0000282 for (unsigned i = 0, e = F.size(); i != e; ++i) {
Devang Patel0dc3c2d2010-06-24 00:33:28 +0000283 Function *TNOF = cast<Function>(VMap[F[i]]);
Dan Gohmand8db3762009-07-15 16:35:29 +0000284 DEBUG(errs() << "Removing function ");
285 DEBUG(WriteAsOperand(errs(), TNOF, false));
286 DEBUG(errs() << "\n");
Devang Patel0dc3c2d2010-06-24 00:33:28 +0000287 TestFunctions.insert(cast<Function>(NewVMap[TNOF]));
Chris Lattner7275b022006-11-09 06:24:56 +0000288 DeleteFunctionBody(TNOF); // Function is now external in this module!
Chris Lattner567543f2004-03-14 19:27:19 +0000289 }
290
Chris Lattnerfdb533a2006-03-08 23:55:38 +0000291
Chris Lattner7275b022006-11-09 06:24:56 +0000292 // Remove the Safe functions from the Test module
293 for (Module::iterator I = New->begin(), E = New->end(); I != E; ++I)
Dan Gohman956ae9d2009-04-22 15:57:18 +0000294 if (!TestFunctions.count(I))
Chris Lattner7275b022006-11-09 06:24:56 +0000295 DeleteFunctionBody(I);
296
Patrick Jenkinsb417a5c2006-07-28 01:19:28 +0000297
Chris Lattnerfdb533a2006-03-08 23:55:38 +0000298 // Make sure that there is a global ctor/dtor array in both halves of the
299 // module if they both have static ctor/dtor functions.
Devang Patel0dc3c2d2010-06-24 00:33:28 +0000300 SplitStaticCtorDtor("llvm.global_ctors", M, New, NewVMap);
301 SplitStaticCtorDtor("llvm.global_dtors", M, New, NewVMap);
Chris Lattnerfdb533a2006-03-08 23:55:38 +0000302
Chris Lattner567543f2004-03-14 19:27:19 +0000303 return New;
304}
Chris Lattnera060b102004-05-11 21:54:13 +0000305
306//===----------------------------------------------------------------------===//
307// Basic Block Extraction Code
308//===----------------------------------------------------------------------===//
309
Chris Lattnera060b102004-05-11 21:54:13 +0000310/// ExtractMappedBlocksFromModule - Extract all but the specified basic blocks
311/// into their own functions. The only detail is that M is actually a module
312/// cloned from the one the BBs are in, so some mapping needs to be performed.
313/// If this operation fails for some reason (ie the implementation is buggy),
314/// this function should return null, otherwise it returns a new Module.
315Module *BugDriver::ExtractMappedBlocksFromModule(const
316 std::vector<BasicBlock*> &BBs,
317 Module *M) {
Daniel Dunbara53337f2009-09-07 19:26:11 +0000318 sys::Path uniqueFilename(OutputPrefix + "-extractblocks");
Nick Lewyckyc6243022007-11-14 06:47:06 +0000319 std::string ErrMsg;
320 if (uniqueFilename.createTemporaryFileOnDisk(true, &ErrMsg)) {
Dan Gohmanee051522009-07-16 15:30:09 +0000321 outs() << "*** Basic Block extraction failed!\n";
Dan Gohmand8db3762009-07-15 16:35:29 +0000322 errs() << "Error creating temporary file: " << ErrMsg << "\n";
Rafael Espindola594994a2010-07-28 18:12:30 +0000323 EmitProgressBitcode(M, "basicblockextractfail", true);
Nick Lewyckyc6243022007-11-14 06:47:06 +0000324 return 0;
325 }
326 sys::RemoveFileOnSignal(uniqueFilename);
327
Dan Gohmanee051522009-07-16 15:30:09 +0000328 std::string ErrorInfo;
Dan Gohman8525fe72010-08-20 16:59:15 +0000329 tool_output_file BlocksToNotExtractFile(uniqueFilename.c_str(), ErrorInfo);
Dan Gohmanee051522009-07-16 15:30:09 +0000330 if (!ErrorInfo.empty()) {
331 outs() << "*** Basic Block extraction failed!\n";
332 errs() << "Error writing list of blocks to not extract: " << ErrorInfo
Dan Gohmand8db3762009-07-15 16:35:29 +0000333 << "\n";
Rafael Espindola594994a2010-07-28 18:12:30 +0000334 EmitProgressBitcode(M, "basicblockextractfail", true);
Nick Lewyckyc6243022007-11-14 06:47:06 +0000335 return 0;
336 }
337 for (std::vector<BasicBlock*>::const_iterator I = BBs.begin(), E = BBs.end();
338 I != E; ++I) {
339 BasicBlock *BB = *I;
Chris Lattner97879422008-01-08 04:26:20 +0000340 // If the BB doesn't have a name, give it one so we have something to key
341 // off of.
342 if (!BB->hasName()) BB->setName("tmpbb");
Benjamin Kramer1f97a5a2011-11-15 16:27:03 +0000343 BlocksToNotExtractFile.os() << BB->getParent()->getName() << " "
Dan Gohmana2233f22010-09-01 14:20:41 +0000344 << BB->getName() << "\n";
Nick Lewyckyc6243022007-11-14 06:47:06 +0000345 }
Dan Gohmana2233f22010-09-01 14:20:41 +0000346 BlocksToNotExtractFile.os().close();
347 if (BlocksToNotExtractFile.os().has_error()) {
Dan Gohman8525fe72010-08-20 16:59:15 +0000348 errs() << "Error writing list of blocks to not extract: " << ErrorInfo
349 << "\n";
350 EmitProgressBitcode(M, "basicblockextractfail", true);
Dan Gohmana2233f22010-09-01 14:20:41 +0000351 BlocksToNotExtractFile.os().clear_error();
Dan Gohman8525fe72010-08-20 16:59:15 +0000352 return 0;
353 }
354 BlocksToNotExtractFile.keep();
Nick Lewyckyc6243022007-11-14 06:47:06 +0000355
Benjamin Kramer29063ea2010-01-28 18:04:38 +0000356 std::string uniqueFN = "--extract-blocks-file=" + uniqueFilename.str();
357 const char *ExtraArg = uniqueFN.c_str();
Nick Lewyckyc6243022007-11-14 06:47:06 +0000358
Rafael Espindola33e81a82010-08-08 03:55:08 +0000359 std::vector<std::string> PI;
360 PI.push_back("extract-blocks");
Nick Lewyckyc6243022007-11-14 06:47:06 +0000361 Module *Ret = runPassesOn(M, PI, false, 1, &ExtraArg);
362
Dan Gohman6debf892010-05-27 20:51:54 +0000363 uniqueFilename.eraseFromDisk(); // Free disk space
Nick Lewyckyc6243022007-11-14 06:47:06 +0000364
Chris Lattneraf32dfa2004-08-12 02:36:50 +0000365 if (Ret == 0) {
Dan Gohmanee051522009-07-16 15:30:09 +0000366 outs() << "*** Basic Block extraction failed, please report a bug!\n";
Rafael Espindola594994a2010-07-28 18:12:30 +0000367 EmitProgressBitcode(M, "basicblockextractfail", true);
Chris Lattneraf32dfa2004-08-12 02:36:50 +0000368 }
Chris Lattnera060b102004-05-11 21:54:13 +0000369 return Ret;
370}