blob: c03d86ca1fe85f3a8af903710b719e1a2a895a6c [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===- ExtractFunction.cpp - Extract a function from Program --------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner5f5a5732007-12-29 20:44:31 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements several methods that are used to extract functions,
11// loops, or portions of a module from the rest of the module.
12//
13//===----------------------------------------------------------------------===//
14
15#include "BugDriver.h"
16#include "llvm/Constants.h"
17#include "llvm/DerivedTypes.h"
Owen Andersonea6230a2009-07-13 22:40:32 +000018#include "llvm/LLVMContext.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000019#include "llvm/Module.h"
20#include "llvm/PassManager.h"
21#include "llvm/Pass.h"
22#include "llvm/Analysis/Verifier.h"
Dan Gohman92cc6932009-07-13 22:56:37 +000023#include "llvm/Assembly/Writer.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000024#include "llvm/Transforms/IPO.h"
25#include "llvm/Transforms/Scalar.h"
26#include "llvm/Transforms/Utils/Cloning.h"
27#include "llvm/Transforms/Utils/FunctionUtils.h"
28#include "llvm/Target/TargetData.h"
29#include "llvm/Support/CommandLine.h"
30#include "llvm/Support/Debug.h"
31#include "llvm/Support/FileUtilities.h"
Chris Lattnerb1aa85b2009-08-23 22:45:37 +000032#include "llvm/Support/raw_ostream.h"
Nick Lewycky43e736d2007-11-14 06:47:06 +000033#include "llvm/System/Path.h"
34#include "llvm/System/Signals.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000035#include <set>
Dan Gohmanf17a25c2007-07-18 16:29:46 +000036using namespace llvm;
37
38namespace llvm {
39 bool DisableSimplifyCFG = false;
Daniel Dunbar377b5a32009-09-07 19:26:11 +000040 extern cl::opt<std::string> OutputPrefix;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000041} // End llvm namespace
42
43namespace {
44 cl::opt<bool>
45 NoDCE ("disable-dce",
46 cl::desc("Do not use the -dce pass to reduce testcases"));
47 cl::opt<bool, true>
48 NoSCFG("disable-simplifycfg", cl::location(DisableSimplifyCFG),
49 cl::desc("Do not use the -simplifycfg pass to reduce testcases"));
50}
51
52/// 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///
57Module *BugDriver::deleteInstructionFromProgram(const Instruction *I,
58 unsigned Simplification) const {
59 Module *Result = CloneModule(Program);
60
61 const BasicBlock *PBB = I->getParent();
62 const Function *PF = PBB->getParent();
63
64 Module::iterator RFI = Result->begin(); // Get iterator to corresponding fn
65 std::advance(RFI, std::distance(PF->getParent()->begin(),
66 Module::const_iterator(PF)));
67
68 Function::iterator RBI = RFI->begin(); // Get iterator to corresponding BB
69 std::advance(RBI, std::distance(PF->begin(), Function::const_iterator(PBB)));
70
71 BasicBlock::iterator RI = RBI->begin(); // Get iterator to corresponding inst
72 std::advance(RI, std::distance(PBB->begin(), BasicBlock::const_iterator(I)));
73 Instruction *TheInst = RI; // Got the corresponding instruction!
74
75 // If this instruction produces a value, replace any users with null values
Dan Gohman16b5f412010-06-07 20:19:26 +000076 if (!TheInst->getType()->isVoidTy())
Owen Andersonaac28372009-07-31 20:28:14 +000077 TheInst->replaceAllUsesWith(Constant::getNullValue(TheInst->getType()));
Dan Gohmanf17a25c2007-07-18 16:29:46 +000078
79 // Remove the instruction from the program.
80 TheInst->getParent()->getInstList().erase(TheInst);
81
82
83 //writeProgramToFile("current.bc", Result);
84
85 // Spiff up the output a little bit.
86 PassManager Passes;
87 // Make sure that the appropriate target data is always used...
88 Passes.add(new TargetData(Result));
89
90 /// FIXME: If this used runPasses() like the methods below, we could get rid
91 /// of the -disable-* options!
92 if (Simplification > 1 && !NoDCE)
93 Passes.add(createDeadCodeEliminationPass());
94 if (Simplification && !DisableSimplifyCFG)
95 Passes.add(createCFGSimplificationPass()); // Delete dead control flow
96
97 Passes.add(createVerifierPass());
98 Passes.run(*Result);
99 return Result;
100}
101
Owen Andersoncb14cb82010-07-20 08:26:15 +0000102static const PassInfo *getPI(Pass *P) {
103 const PassInfo *PI = P->getPassInfo();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000104 delete P;
105 return PI;
106}
107
108/// performFinalCleanups - This method clones the current Program and performs
109/// a series of cleanups intended to get rid of extra cruft on the module
110/// before handing it to the user.
111///
112Module *BugDriver::performFinalCleanups(Module *M, bool MayModifySemantics) {
113 // Make all functions external, so GlobalDCE doesn't delete them...
114 for (Module::iterator I = M->begin(), E = M->end(); I != E; ++I)
115 I->setLinkage(GlobalValue::ExternalLinkage);
116
Owen Andersoncb14cb82010-07-20 08:26:15 +0000117 std::vector<const PassInfo*> CleanupPasses;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000118 CleanupPasses.push_back(getPI(createGlobalDCEPass()));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000119
120 if (MayModifySemantics)
121 CleanupPasses.push_back(getPI(createDeadArgHackingPass()));
122 else
123 CleanupPasses.push_back(getPI(createDeadArgEliminationPass()));
124
Dan Gohman4a8e3f12010-06-07 20:28:37 +0000125 CleanupPasses.push_back(getPI(createDeadTypeEliminationPass()));
126
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000127 Module *New = runPassesOn(M, CleanupPasses);
128 if (New == 0) {
Dan Gohmanf8b81bf2009-07-15 16:35:29 +0000129 errs() << "Final cleanups failed. Sorry. :( Please report a bug!\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000130 return M;
131 }
132 delete M;
133 return New;
134}
135
136
137/// 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) {
Owen Andersoncb14cb82010-07-20 08:26:15 +0000141 std::vector<const PassInfo*> LoopExtractPasses;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000142 LoopExtractPasses.push_back(getPI(createSingleLoopExtractorPass()));
143
144 Module *NewM = runPassesOn(M, LoopExtractPasses);
145 if (NewM == 0) {
Dan Gohmanb714fab2009-07-16 15:30:09 +0000146 outs() << "*** Loop extraction failed: ";
Rafael Espindola131d2602010-07-28 18:12:30 +0000147 EmitProgressBitcode(M, "loopextraction", true);
Dan Gohmanb714fab2009-07-16 15:30:09 +0000148 outs() << "*** Sorry. :( Please report a bug!\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000149 return 0;
150 }
151
152 // Check to see if we created any new functions. If not, no loops were
153 // extracted and we should return null. Limit the number of loops we extract
154 // to avoid taking forever.
155 static unsigned NumExtracted = 32;
156 if (M->size() == NewM->size() || --NumExtracted == 0) {
157 delete NewM;
158 return 0;
159 } else {
160 assert(M->size() < NewM->size() && "Loop extract removed functions?");
161 Module::iterator MI = NewM->begin();
162 for (unsigned i = 0, e = M->size(); i != e; ++i)
163 ++MI;
164 }
165
166 return NewM;
167}
168
169
170// DeleteFunctionBody - "Remove" the function by deleting all of its basic
171// blocks, making it external.
172//
173void llvm::DeleteFunctionBody(Function *F) {
174 // delete the body of the function...
175 F->deleteBody();
176 assert(F->isDeclaration() && "This didn't make the function external!");
177}
178
179/// GetTorInit - Given a list of entries for static ctors/dtors, return them
180/// as a constant array.
181static Constant *GetTorInit(std::vector<std::pair<Function*, int> > &TorList) {
182 assert(!TorList.empty() && "Don't create empty tor list!");
183 std::vector<Constant*> ArrayElts;
184 for (unsigned i = 0, e = TorList.size(); i != e; ++i) {
185 std::vector<Constant*> Elts;
Owen Anderson35b47072009-08-13 21:58:54 +0000186 Elts.push_back(ConstantInt::get(
187 Type::getInt32Ty(TorList[i].first->getContext()), TorList[i].second));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000188 Elts.push_back(TorList[i].first);
Nick Lewycky9229fdb2009-09-19 20:30:26 +0000189 ArrayElts.push_back(ConstantStruct::get(TorList[i].first->getContext(),
190 Elts, false));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000191 }
Owen Anderson6b6e2d92009-07-29 22:17:13 +0000192 return ConstantArray::get(ArrayType::get(ArrayElts[0]->getType(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000193 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 Gohman819b9562009-04-22 15:57:18 +0000201static void SplitStaticCtorDtor(const char *GlobalName, Module *M1, Module *M2,
Devang Patel7098baf2010-06-24 00:33:28 +0000202 ValueMap<const Value*, Value*> VMap) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000203 GlobalVariable *GV = M1->getNamedGlobal(GlobalName);
Rafael Espindolaa168fc92009-01-15 20:18:42 +0000204 if (!GV || GV->isDeclaration() || GV->hasLocalLinkage() ||
Dan Gohmanf17a25c2007-07-18 16:29:46 +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
218 ConstantInt *CI = dyn_cast<ConstantInt>(CS->getOperand(0));
219 int Priority = CI ? CI->getSExtValue() : 0;
220
221 Constant *FP = CS->getOperand(1);
222 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(FP))
223 if (CE->isCast())
224 FP = CE->getOperand(0);
225 if (Function *F = dyn_cast<Function>(FP)) {
226 if (!F->isDeclaration())
227 M1Tors.push_back(std::make_pair(F, Priority));
228 else {
229 // Map to M2's version of the function.
Devang Patel7098baf2010-06-24 00:33:28 +0000230 F = cast<Function>(VMap[F]);
Dan Gohmanf17a25c2007-07-18 16:29:46 +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 Andersone17fc1d2009-07-08 19:03:57 +0000240 new GlobalVariable(*M1, M1Init->getType(), false,
Owen Andersone0f136d2009-07-08 01:26:06 +0000241 GlobalValue::AppendingLinkage,
Owen Andersone17fc1d2009-07-08 19:03:57 +0000242 M1Init, GlobalName);
Dan Gohmanf17a25c2007-07-18 16:29:46 +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 Andersone17fc1d2009-07-08 19:03:57 +0000252 new GlobalVariable(*M2, M2Init->getType(), false,
Owen Andersone0f136d2009-07-08 01:26:06 +0000253 GlobalValue::AppendingLinkage,
Owen Andersone17fc1d2009-07-08 19:03:57 +0000254 M2Init, GlobalName);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000255 }
256}
257
258
259/// 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 Gohman819b9562009-04-22 15:57:18 +0000262Module *
263llvm::SplitFunctionsOutOfModule(Module *M,
264 const std::vector<Function*> &F,
Devang Patel7098baf2010-06-24 00:33:28 +0000265 ValueMap<const Value*, Value*> &VMap) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +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);
270 for (Module::global_iterator I = M->global_begin(), E = M->global_end();
Owen Anderson771a81d2008-07-08 16:38:42 +0000271 I != E; ++I) {
Daniel Dunbar1be13862009-07-26 00:34:27 +0000272 if (I->hasName() && I->getName()[0] == '\01')
273 I->setName(I->getName().substr(1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000274 I->setLinkage(GlobalValue::ExternalLinkage);
Owen Anderson771a81d2008-07-08 16:38:42 +0000275 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000276
Devang Patel7098baf2010-06-24 00:33:28 +0000277 ValueMap<const Value*, Value*> NewVMap;
278 Module *New = CloneModule(M, NewVMap);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000279
280 // 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
284
285 // Remove the Test functions from the Safe module
Dan Gohman819b9562009-04-22 15:57:18 +0000286 std::set<Function *> TestFunctions;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000287 for (unsigned i = 0, e = F.size(); i != e; ++i) {
Devang Patel7098baf2010-06-24 00:33:28 +0000288 Function *TNOF = cast<Function>(VMap[F[i]]);
Dan Gohmanf8b81bf2009-07-15 16:35:29 +0000289 DEBUG(errs() << "Removing function ");
290 DEBUG(WriteAsOperand(errs(), TNOF, false));
291 DEBUG(errs() << "\n");
Devang Patel7098baf2010-06-24 00:33:28 +0000292 TestFunctions.insert(cast<Function>(NewVMap[TNOF]));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000293 DeleteFunctionBody(TNOF); // Function is now external in this module!
294 }
295
296
297 // Remove the Safe functions from the Test module
298 for (Module::iterator I = New->begin(), E = New->end(); I != E; ++I)
Dan Gohman819b9562009-04-22 15:57:18 +0000299 if (!TestFunctions.count(I))
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000300 DeleteFunctionBody(I);
301
302
303 // 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.
Devang Patel7098baf2010-06-24 00:33:28 +0000305 SplitStaticCtorDtor("llvm.global_ctors", M, New, NewVMap);
306 SplitStaticCtorDtor("llvm.global_dtors", M, New, NewVMap);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000307
308 return New;
309}
310
311//===----------------------------------------------------------------------===//
312// Basic Block Extraction Code
313//===----------------------------------------------------------------------===//
314
Dan Gohmanf17a25c2007-07-18 16:29:46 +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) {
Daniel Dunbar377b5a32009-09-07 19:26:11 +0000323 sys::Path uniqueFilename(OutputPrefix + "-extractblocks");
Nick Lewycky43e736d2007-11-14 06:47:06 +0000324 std::string ErrMsg;
325 if (uniqueFilename.createTemporaryFileOnDisk(true, &ErrMsg)) {
Dan Gohmanb714fab2009-07-16 15:30:09 +0000326 outs() << "*** Basic Block extraction failed!\n";
Dan Gohmanf8b81bf2009-07-15 16:35:29 +0000327 errs() << "Error creating temporary file: " << ErrMsg << "\n";
Rafael Espindola131d2602010-07-28 18:12:30 +0000328 EmitProgressBitcode(M, "basicblockextractfail", true);
Nick Lewycky43e736d2007-11-14 06:47:06 +0000329 return 0;
330 }
331 sys::RemoveFileOnSignal(uniqueFilename);
332
Dan Gohmanb714fab2009-07-16 15:30:09 +0000333 std::string ErrorInfo;
Dan Gohman176426d2009-08-25 15:34:52 +0000334 raw_fd_ostream BlocksToNotExtractFile(uniqueFilename.c_str(), ErrorInfo);
Dan Gohmanb714fab2009-07-16 15:30:09 +0000335 if (!ErrorInfo.empty()) {
336 outs() << "*** Basic Block extraction failed!\n";
337 errs() << "Error writing list of blocks to not extract: " << ErrorInfo
Dan Gohmanf8b81bf2009-07-15 16:35:29 +0000338 << "\n";
Rafael Espindola131d2602010-07-28 18:12:30 +0000339 EmitProgressBitcode(M, "basicblockextractfail", true);
Nick Lewycky43e736d2007-11-14 06:47:06 +0000340 return 0;
341 }
342 for (std::vector<BasicBlock*>::const_iterator I = BBs.begin(), E = BBs.end();
343 I != E; ++I) {
344 BasicBlock *BB = *I;
Chris Lattner2dda3202008-01-08 04:26:20 +0000345 // If the BB doesn't have a name, give it one so we have something to key
346 // off of.
347 if (!BB->hasName()) BB->setName("tmpbb");
Daniel Dunbar1e13b972009-07-24 08:24:36 +0000348 BlocksToNotExtractFile << BB->getParent()->getNameStr() << " "
Nick Lewycky43e736d2007-11-14 06:47:06 +0000349 << BB->getName() << "\n";
350 }
351 BlocksToNotExtractFile.close();
352
Benjamin Kramerd65ad3c62010-01-28 18:04:38 +0000353 std::string uniqueFN = "--extract-blocks-file=" + uniqueFilename.str();
354 const char *ExtraArg = uniqueFN.c_str();
Nick Lewycky43e736d2007-11-14 06:47:06 +0000355
Owen Andersoncb14cb82010-07-20 08:26:15 +0000356 std::vector<const PassInfo*> PI;
Nick Lewycky43e736d2007-11-14 06:47:06 +0000357 std::vector<BasicBlock *> EmptyBBs; // This parameter is ignored.
358 PI.push_back(getPI(createBlockExtractorPass(EmptyBBs)));
359 Module *Ret = runPassesOn(M, PI, false, 1, &ExtraArg);
360
Dan Gohman2e634222010-05-27 20:51:54 +0000361 uniqueFilename.eraseFromDisk(); // Free disk space
Nick Lewycky43e736d2007-11-14 06:47:06 +0000362
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000363 if (Ret == 0) {
Dan Gohmanb714fab2009-07-16 15:30:09 +0000364 outs() << "*** Basic Block extraction failed, please report a bug!\n";
Rafael Espindola131d2602010-07-28 18:12:30 +0000365 EmitProgressBitcode(M, "basicblockextractfail", true);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000366 }
367 return Ret;
368}