blob: bb35d4fab453ac2d923fe869e17b39d6ef15369f [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"
Nick Lewycky43e736d2007-11-14 06:47:06 +000032#include "llvm/System/Path.h"
33#include "llvm/System/Signals.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000034#include <set>
Nick Lewycky43e736d2007-11-14 06:47:06 +000035#include <fstream>
Dan Gohmanf17a25c2007-07-18 16:29:46 +000036#include <iostream>
37using namespace llvm;
38
39namespace llvm {
40 bool DisableSimplifyCFG = false;
41} // 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
Chris Lattner86a23b12008-04-28 00:04:58 +000076 if (isa<StructType>(TheInst->getType()))
77 TheInst->replaceAllUsesWith(UndefValue::get(TheInst->getType()));
78 else if (TheInst->getType() != Type::VoidTy)
Owen Anderson15b39322009-07-13 04:09:18 +000079 TheInst->replaceAllUsesWith(Context.getNullValue(TheInst->getType()));
Dan Gohmanf17a25c2007-07-18 16:29:46 +000080
81 // Remove the instruction from the program.
82 TheInst->getParent()->getInstList().erase(TheInst);
83
84
85 //writeProgramToFile("current.bc", Result);
86
87 // Spiff up the output a little bit.
88 PassManager Passes;
89 // Make sure that the appropriate target data is always used...
90 Passes.add(new TargetData(Result));
91
92 /// FIXME: If this used runPasses() like the methods below, we could get rid
93 /// of the -disable-* options!
94 if (Simplification > 1 && !NoDCE)
95 Passes.add(createDeadCodeEliminationPass());
96 if (Simplification && !DisableSimplifyCFG)
97 Passes.add(createCFGSimplificationPass()); // Delete dead control flow
98
99 Passes.add(createVerifierPass());
100 Passes.run(*Result);
101 return Result;
102}
103
104static const PassInfo *getPI(Pass *P) {
105 const PassInfo *PI = P->getPassInfo();
106 delete P;
107 return PI;
108}
109
110/// performFinalCleanups - This method clones the current Program and performs
111/// a series of cleanups intended to get rid of extra cruft on the module
112/// before handing it to the user.
113///
114Module *BugDriver::performFinalCleanups(Module *M, bool MayModifySemantics) {
115 // 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);
118
119 std::vector<const PassInfo*> CleanupPasses;
120 CleanupPasses.push_back(getPI(createGlobalDCEPass()));
121 CleanupPasses.push_back(getPI(createDeadTypeEliminationPass()));
122
123 if (MayModifySemantics)
124 CleanupPasses.push_back(getPI(createDeadArgHackingPass()));
125 else
126 CleanupPasses.push_back(getPI(createDeadArgEliminationPass()));
127
128 Module *New = runPassesOn(M, CleanupPasses);
129 if (New == 0) {
130 std::cerr << "Final cleanups failed. Sorry. :( Please report a bug!\n";
131 return M;
132 }
133 delete M;
134 return New;
135}
136
137
138/// 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
145 Module *NewM = runPassesOn(M, LoopExtractPasses);
146 if (NewM == 0) {
147 Module *Old = swapProgramIn(M);
148 std::cout << "*** Loop extraction failed: ";
149 EmitProgressBitcode("loopextraction", true);
150 std::cout << "*** Sorry. :( Please report a bug!\n";
151 swapProgramIn(Old);
152 return 0;
153 }
154
155 // Check to see if we created any new functions. If not, no loops were
156 // extracted and we should return null. Limit the number of loops we extract
157 // to avoid taking forever.
158 static unsigned NumExtracted = 32;
159 if (M->size() == NewM->size() || --NumExtracted == 0) {
160 delete NewM;
161 return 0;
162 } 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;
167 }
168
169 return NewM;
170}
171
172
173// 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();
179 assert(F->isDeclaration() && "This didn't make the function external!");
180}
181
182/// 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!");
186 std::vector<Constant*> ArrayElts;
187 for (unsigned i = 0, e = TorList.size(); i != e; ++i) {
188 std::vector<Constant*> Elts;
189 Elts.push_back(ConstantInt::get(Type::Int32Ty, TorList[i].second));
190 Elts.push_back(TorList[i].first);
191 ArrayElts.push_back(ConstantStruct::get(Elts));
192 }
193 return ConstantArray::get(ArrayType::get(ArrayElts[0]->getType(),
194 ArrayElts.size()),
195 ArrayElts);
196}
197
198/// SplitStaticCtorDtor - A module was recently split into two parts, M1/M2, and
199/// M1 has all of the global variables. If M2 contains any functions that are
200/// static ctors/dtors, we need to add an llvm.global_[cd]tors global to M2, and
201/// prune appropriate entries out of M1s list.
Dan Gohman819b9562009-04-22 15:57:18 +0000202static void SplitStaticCtorDtor(const char *GlobalName, Module *M1, Module *M2,
203 DenseMap<const Value*, Value*> ValueMap) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000204 GlobalVariable *GV = M1->getNamedGlobal(GlobalName);
Rafael Espindolaa168fc92009-01-15 20:18:42 +0000205 if (!GV || GV->isDeclaration() || GV->hasLocalLinkage() ||
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000206 !GV->use_empty()) return;
207
208 std::vector<std::pair<Function*, int> > M1Tors, M2Tors;
209 ConstantArray *InitList = dyn_cast<ConstantArray>(GV->getInitializer());
210 if (!InitList) return;
211
212 for (unsigned i = 0, e = InitList->getNumOperands(); i != e; ++i) {
213 if (ConstantStruct *CS = dyn_cast<ConstantStruct>(InitList->getOperand(i))){
214 if (CS->getNumOperands() != 2) return; // Not array of 2-element structs.
215
216 if (CS->getOperand(1)->isNullValue())
217 break; // Found a null terminator, stop here.
218
219 ConstantInt *CI = dyn_cast<ConstantInt>(CS->getOperand(0));
220 int Priority = CI ? CI->getSExtValue() : 0;
221
222 Constant *FP = CS->getOperand(1);
223 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(FP))
224 if (CE->isCast())
225 FP = CE->getOperand(0);
226 if (Function *F = dyn_cast<Function>(FP)) {
227 if (!F->isDeclaration())
228 M1Tors.push_back(std::make_pair(F, Priority));
229 else {
230 // Map to M2's version of the function.
Dan Gohman819b9562009-04-22 15:57:18 +0000231 F = cast<Function>(ValueMap[F]);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000232 M2Tors.push_back(std::make_pair(F, Priority));
233 }
234 }
235 }
236 }
237
238 GV->eraseFromParent();
239 if (!M1Tors.empty()) {
240 Constant *M1Init = GetTorInit(M1Tors);
Owen Andersone17fc1d2009-07-08 19:03:57 +0000241 new GlobalVariable(*M1, M1Init->getType(), false,
Owen Andersone0f136d2009-07-08 01:26:06 +0000242 GlobalValue::AppendingLinkage,
Owen Andersone17fc1d2009-07-08 19:03:57 +0000243 M1Init, GlobalName);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000244 }
245
246 GV = M2->getNamedGlobal(GlobalName);
247 assert(GV && "Not a clone of M1?");
248 assert(GV->use_empty() && "llvm.ctors shouldn't have uses!");
249
250 GV->eraseFromParent();
251 if (!M2Tors.empty()) {
252 Constant *M2Init = GetTorInit(M2Tors);
Owen Andersone17fc1d2009-07-08 19:03:57 +0000253 new GlobalVariable(*M2, M2Init->getType(), false,
Owen Andersone0f136d2009-07-08 01:26:06 +0000254 GlobalValue::AppendingLinkage,
Owen Andersone17fc1d2009-07-08 19:03:57 +0000255 M2Init, GlobalName);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000256 }
257}
258
259
260/// SplitFunctionsOutOfModule - Given a module and a list of functions in the
261/// module, split the functions OUT of the specified module, and place them in
262/// the new module.
Dan Gohman819b9562009-04-22 15:57:18 +0000263Module *
264llvm::SplitFunctionsOutOfModule(Module *M,
265 const std::vector<Function*> &F,
266 DenseMap<const Value*, Value*> &ValueMap) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000267 // Make sure functions & globals are all external so that linkage
268 // between the two modules will work.
269 for (Module::iterator I = M->begin(), E = M->end(); I != E; ++I)
270 I->setLinkage(GlobalValue::ExternalLinkage);
271 for (Module::global_iterator I = M->global_begin(), E = M->global_end();
Owen Anderson771a81d2008-07-08 16:38:42 +0000272 I != E; ++I) {
273 if (I->hasName() && *I->getNameStart() == '\01')
274 I->setName(I->getNameStart()+1, I->getNameLen()-1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000275 I->setLinkage(GlobalValue::ExternalLinkage);
Owen Anderson771a81d2008-07-08 16:38:42 +0000276 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000277
Dan Gohman819b9562009-04-22 15:57:18 +0000278 DenseMap<const Value*, Value*> NewValueMap;
279 Module *New = CloneModule(M, NewValueMap);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000280
281 // Make sure global initializers exist only in the safe module (CBE->.so)
282 for (Module::global_iterator I = New->global_begin(), E = New->global_end();
283 I != E; ++I)
284 I->setInitializer(0); // Delete the initializer to make it external
285
286 // Remove the Test functions from the Safe module
Dan Gohman819b9562009-04-22 15:57:18 +0000287 std::set<Function *> TestFunctions;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000288 for (unsigned i = 0, e = F.size(); i != e; ++i) {
Dan Gohman819b9562009-04-22 15:57:18 +0000289 Function *TNOF = cast<Function>(ValueMap[F[i]]);
290 DEBUG(std::cerr << "Removing function ");
291 DEBUG(WriteAsOperand(std::cerr, TNOF, false));
292 DEBUG(std::cerr << "\n");
293 TestFunctions.insert(cast<Function>(NewValueMap[TNOF]));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000294 DeleteFunctionBody(TNOF); // Function is now external in this module!
295 }
296
297
298 // Remove the Safe functions from the Test module
299 for (Module::iterator I = New->begin(), E = New->end(); I != E; ++I)
Dan Gohman819b9562009-04-22 15:57:18 +0000300 if (!TestFunctions.count(I))
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000301 DeleteFunctionBody(I);
302
303
304 // Make sure that there is a global ctor/dtor array in both halves of the
305 // module if they both have static ctor/dtor functions.
Dan Gohman819b9562009-04-22 15:57:18 +0000306 SplitStaticCtorDtor("llvm.global_ctors", M, New, NewValueMap);
307 SplitStaticCtorDtor("llvm.global_dtors", M, New, NewValueMap);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000308
309 return New;
310}
311
312//===----------------------------------------------------------------------===//
313// Basic Block Extraction Code
314//===----------------------------------------------------------------------===//
315
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000316/// ExtractMappedBlocksFromModule - Extract all but the specified basic blocks
317/// into their own functions. The only detail is that M is actually a module
318/// cloned from the one the BBs are in, so some mapping needs to be performed.
319/// If this operation fails for some reason (ie the implementation is buggy),
320/// this function should return null, otherwise it returns a new Module.
321Module *BugDriver::ExtractMappedBlocksFromModule(const
322 std::vector<BasicBlock*> &BBs,
323 Module *M) {
Nick Lewycky43e736d2007-11-14 06:47:06 +0000324 char *ExtraArg = NULL;
325
326 sys::Path uniqueFilename("bugpoint-extractblocks");
327 std::string ErrMsg;
328 if (uniqueFilename.createTemporaryFileOnDisk(true, &ErrMsg)) {
329 std::cout << "*** Basic Block extraction failed!\n";
330 std::cerr << "Error creating temporary file: " << ErrMsg << "\n";
331 M = swapProgramIn(M);
332 EmitProgressBitcode("basicblockextractfail", true);
333 swapProgramIn(M);
334 return 0;
335 }
336 sys::RemoveFileOnSignal(uniqueFilename);
337
338 std::ofstream BlocksToNotExtractFile(uniqueFilename.c_str());
339 if (!BlocksToNotExtractFile) {
340 std::cout << "*** Basic Block extraction failed!\n";
341 std::cerr << "Error writing list of blocks to not extract: " << ErrMsg
342 << "\n";
343 M = swapProgramIn(M);
344 EmitProgressBitcode("basicblockextractfail", true);
345 swapProgramIn(M);
346 return 0;
347 }
348 for (std::vector<BasicBlock*>::const_iterator I = BBs.begin(), E = BBs.end();
349 I != E; ++I) {
350 BasicBlock *BB = *I;
Chris Lattner2dda3202008-01-08 04:26:20 +0000351 // If the BB doesn't have a name, give it one so we have something to key
352 // off of.
353 if (!BB->hasName()) BB->setName("tmpbb");
Nick Lewycky43e736d2007-11-14 06:47:06 +0000354 BlocksToNotExtractFile << BB->getParent()->getName() << " "
355 << BB->getName() << "\n";
356 }
357 BlocksToNotExtractFile.close();
358
359 const char *uniqueFN = uniqueFilename.c_str();
360 ExtraArg = (char*)malloc(23 + strlen(uniqueFN));
361 strcat(strcpy(ExtraArg, "--extract-blocks-file="), uniqueFN);
362
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000363 std::vector<const PassInfo*> PI;
Nick Lewycky43e736d2007-11-14 06:47:06 +0000364 std::vector<BasicBlock *> EmptyBBs; // This parameter is ignored.
365 PI.push_back(getPI(createBlockExtractorPass(EmptyBBs)));
366 Module *Ret = runPassesOn(M, PI, false, 1, &ExtraArg);
367
368 if (uniqueFilename.exists())
369 uniqueFilename.eraseFromDisk(); // Free disk space
370 free(ExtraArg);
371
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000372 if (Ret == 0) {
373 std::cout << "*** Basic Block extraction failed, please report a bug!\n";
374 M = swapProgramIn(M);
375 EmitProgressBitcode("basicblockextractfail", true);
376 swapProgramIn(M);
377 }
378 return Ret;
379}