blob: 34fa727f0e77c5ed65a638a1ccfc681fd8e66dc1 [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//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source 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"
Chris Lattnerafade922002-11-20 22:28:10 +000018#include "llvm/Module.h"
19#include "llvm/PassManager.h"
Brian Gaeked1a85a72003-09-10 21:11:42 +000020#include "llvm/Pass.h"
Misha Brukmane49603d2003-08-07 21:19:30 +000021#include "llvm/Analysis/Verifier.h"
Chris Lattnerafade922002-11-20 22:28:10 +000022#include "llvm/Transforms/IPO.h"
Chris Lattner65207852003-01-23 02:48:33 +000023#include "llvm/Transforms/Scalar.h"
Chris Lattnerafade922002-11-20 22:28:10 +000024#include "llvm/Transforms/Utils/Cloning.h"
Chris Lattner5e783ab2004-05-11 21:54:13 +000025#include "llvm/Transforms/Utils/FunctionUtils.h"
Chris Lattner5da69c72003-10-23 15:42:55 +000026#include "llvm/Target/TargetData.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000027#include "llvm/Support/CommandLine.h"
28#include "llvm/Support/Debug.h"
29#include "llvm/Support/FileUtilities.h"
Chris Lattnerfb4b96e2004-04-02 16:28:32 +000030#include <set>
Chris Lattnere31a9cc2006-01-22 22:53:40 +000031#include <iostream>
Chris Lattnerc6b519d2003-11-23 04:51:05 +000032using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000033
34namespace llvm {
Chris Lattnerc6b519d2003-11-23 04:51:05 +000035 bool DisableSimplifyCFG = false;
Brian Gaeked0fde302003-11-11 22:41:34 +000036} // End llvm namespace
37
Chris Lattner6db70ef2003-04-25 22:08:12 +000038namespace {
39 cl::opt<bool>
Chris Lattner6db70ef2003-04-25 22:08:12 +000040 NoDCE ("disable-dce",
41 cl::desc("Do not use the -dce pass to reduce testcases"));
Chris Lattner47ae4a12003-08-05 15:51:05 +000042 cl::opt<bool, true>
43 NoSCFG("disable-simplifycfg", cl::location(DisableSimplifyCFG),
Chris Lattner6db70ef2003-04-25 22:08:12 +000044 cl::desc("Do not use the -simplifycfg pass to reduce testcases"));
45}
Chris Lattnerafade922002-11-20 22:28:10 +000046
Chris Lattner65207852003-01-23 02:48:33 +000047/// deleteInstructionFromProgram - This method clones the current Program and
48/// deletes the specified instruction from the cloned module. It then runs a
49/// series of cleanup passes (ADCE and SimplifyCFG) to eliminate any code which
50/// depends on the value. The modified module is then returned.
51///
Chris Lattner0cc88072004-02-18 21:50:26 +000052Module *BugDriver::deleteInstructionFromProgram(const Instruction *I,
Chris Lattner65207852003-01-23 02:48:33 +000053 unsigned Simplification) const {
54 Module *Result = CloneModule(Program);
55
Chris Lattner0cc88072004-02-18 21:50:26 +000056 const BasicBlock *PBB = I->getParent();
57 const Function *PF = PBB->getParent();
Chris Lattner65207852003-01-23 02:48:33 +000058
59 Module::iterator RFI = Result->begin(); // Get iterator to corresponding fn
Chris Lattner0cc88072004-02-18 21:50:26 +000060 std::advance(RFI, std::distance(PF->getParent()->begin(),
61 Module::const_iterator(PF)));
Chris Lattner65207852003-01-23 02:48:33 +000062
63 Function::iterator RBI = RFI->begin(); // Get iterator to corresponding BB
Chris Lattner0cc88072004-02-18 21:50:26 +000064 std::advance(RBI, std::distance(PF->begin(), Function::const_iterator(PBB)));
Chris Lattner65207852003-01-23 02:48:33 +000065
66 BasicBlock::iterator RI = RBI->begin(); // Get iterator to corresponding inst
Chris Lattner0cc88072004-02-18 21:50:26 +000067 std::advance(RI, std::distance(PBB->begin(), BasicBlock::const_iterator(I)));
68 Instruction *TheInst = RI; // Got the corresponding instruction!
Chris Lattner65207852003-01-23 02:48:33 +000069
70 // If this instruction produces a value, replace any users with null values
Chris Lattner0cc88072004-02-18 21:50:26 +000071 if (TheInst->getType() != Type::VoidTy)
72 TheInst->replaceAllUsesWith(Constant::getNullValue(TheInst->getType()));
Chris Lattner65207852003-01-23 02:48:33 +000073
74 // Remove the instruction from the program.
Chris Lattner0cc88072004-02-18 21:50:26 +000075 TheInst->getParent()->getInstList().erase(TheInst);
Chris Lattner65207852003-01-23 02:48:33 +000076
Chris Lattner5a7a9e52006-03-08 23:55:38 +000077
78 //writeProgramToFile("current.bc", Result);
79
Chris Lattner44be2572003-04-24 22:53:24 +000080 // Spiff up the output a little bit.
Chris Lattner65207852003-01-23 02:48:33 +000081 PassManager Passes;
Chris Lattner5da69c72003-10-23 15:42:55 +000082 // Make sure that the appropriate target data is always used...
Chris Lattner831b1212006-06-16 18:23:49 +000083 Passes.add(new TargetData(Result));
Chris Lattner5da69c72003-10-23 15:42:55 +000084
Chris Lattnerefdc0b52004-03-14 20:50:42 +000085 /// FIXME: If this used runPasses() like the methods below, we could get rid
86 /// of the -disable-* options!
Chris Lattner6db70ef2003-04-25 22:08:12 +000087 if (Simplification > 1 && !NoDCE)
Chris Lattner65207852003-01-23 02:48:33 +000088 Passes.add(createDeadCodeEliminationPass());
Chris Lattner47ae4a12003-08-05 15:51:05 +000089 if (Simplification && !DisableSimplifyCFG)
Chris Lattner65207852003-01-23 02:48:33 +000090 Passes.add(createCFGSimplificationPass()); // Delete dead control flow
Chris Lattner10f22cb2003-03-07 18:17:13 +000091
92 Passes.add(createVerifierPass());
Chris Lattner65207852003-01-23 02:48:33 +000093 Passes.run(*Result);
94 return Result;
95}
Chris Lattnerba386d92003-02-28 16:13:20 +000096
Chris Lattnerfcb6ec02003-11-05 21:45:35 +000097static const PassInfo *getPI(Pass *P) {
98 const PassInfo *PI = P->getPassInfo();
99 delete P;
100 return PI;
101}
102
Chris Lattnerba386d92003-02-28 16:13:20 +0000103/// performFinalCleanups - This method clones the current Program and performs
104/// a series of cleanups intended to get rid of extra cruft on the module
Chris Lattner9b5b1902005-02-23 06:12:11 +0000105/// before handing it to the user.
Chris Lattnerba386d92003-02-28 16:13:20 +0000106///
Chris Lattnerfcb6ec02003-11-05 21:45:35 +0000107Module *BugDriver::performFinalCleanups(Module *M, bool MayModifySemantics) {
Chris Lattner28b8ed92003-05-21 19:41:31 +0000108 // Make all functions external, so GlobalDCE doesn't delete them...
109 for (Module::iterator I = M->begin(), E = M->end(); I != E; ++I)
110 I->setLinkage(GlobalValue::ExternalLinkage);
Misha Brukman3da94ae2005-04-22 00:00:37 +0000111
Chris Lattnerfcb6ec02003-11-05 21:45:35 +0000112 std::vector<const PassInfo*> CleanupPasses;
113 CleanupPasses.push_back(getPI(createFunctionResolvingPass()));
114 CleanupPasses.push_back(getPI(createGlobalDCEPass()));
115 CleanupPasses.push_back(getPI(createDeadTypeEliminationPass()));
Chris Lattnerfcb6ec02003-11-05 21:45:35 +0000116
Chris Lattnerc6b519d2003-11-23 04:51:05 +0000117 if (MayModifySemantics)
118 CleanupPasses.push_back(getPI(createDeadArgHackingPass()));
119 else
120 CleanupPasses.push_back(getPI(createDeadArgEliminationPass()));
Chris Lattnerfcb6ec02003-11-05 21:45:35 +0000121
Chris Lattnera75766a2004-03-14 21:17:22 +0000122 Module *New = runPassesOn(M, CleanupPasses);
123 if (New == 0) {
Chris Lattner7546c382004-03-14 20:02:07 +0000124 std::cerr << "Final cleanups failed. Sorry. :( Please report a bug!\n";
Chris Lattner9b5b1902005-02-23 06:12:11 +0000125 return M;
Chris Lattnerfcb6ec02003-11-05 21:45:35 +0000126 }
Chris Lattnera75766a2004-03-14 21:17:22 +0000127 delete M;
128 return New;
Chris Lattnerba386d92003-02-28 16:13:20 +0000129}
Chris Lattnerbe21ca52004-03-14 19:27:19 +0000130
131
Chris Lattner7546c382004-03-14 20:02:07 +0000132/// ExtractLoop - Given a module, extract up to one loop from it into a new
133/// function. This returns null if there are no extractable loops in the
134/// program or if the loop extractor crashes.
135Module *BugDriver::ExtractLoop(Module *M) {
136 std::vector<const PassInfo*> LoopExtractPasses;
137 LoopExtractPasses.push_back(getPI(createSingleLoopExtractorPass()));
138
Chris Lattnera75766a2004-03-14 21:17:22 +0000139 Module *NewM = runPassesOn(M, LoopExtractPasses);
140 if (NewM == 0) {
Chris Lattnera1cf1c82004-03-14 22:08:00 +0000141 Module *Old = swapProgramIn(M);
142 std::cout << "*** Loop extraction failed: ";
143 EmitProgressBytecode("loopextraction", true);
144 std::cout << "*** Sorry. :( Please report a bug!\n";
145 swapProgramIn(Old);
Chris Lattner7546c382004-03-14 20:02:07 +0000146 return 0;
Chris Lattner7546c382004-03-14 20:02:07 +0000147 }
Chris Lattnera75766a2004-03-14 21:17:22 +0000148
149 // Check to see if we created any new functions. If not, no loops were
Chris Lattnera269ec72004-11-18 19:40:13 +0000150 // extracted and we should return null. Limit the number of loops we extract
151 // to avoid taking forever.
152 static unsigned NumExtracted = 32;
Chris Lattner90c18c52004-11-16 06:31:38 +0000153 if (M->size() == NewM->size() || --NumExtracted == 0) {
Chris Lattnera75766a2004-03-14 21:17:22 +0000154 delete NewM;
155 return 0;
Chris Lattner90c18c52004-11-16 06:31:38 +0000156 } else {
157 assert(M->size() < NewM->size() && "Loop extract removed functions?");
158 Module::iterator MI = NewM->begin();
159 for (unsigned i = 0, e = M->size(); i != e; ++i)
160 ++MI;
Chris Lattnera75766a2004-03-14 21:17:22 +0000161 }
Misha Brukman3da94ae2005-04-22 00:00:37 +0000162
Chris Lattnera75766a2004-03-14 21:17:22 +0000163 return NewM;
Chris Lattner7546c382004-03-14 20:02:07 +0000164}
165
166
Chris Lattnerbe21ca52004-03-14 19:27:19 +0000167// DeleteFunctionBody - "Remove" the function by deleting all of its basic
168// blocks, making it external.
169//
170void llvm::DeleteFunctionBody(Function *F) {
171 // delete the body of the function...
172 F->deleteBody();
173 assert(F->isExternal() && "This didn't make the function external!");
174}
175
Chris Lattner5a7a9e52006-03-08 23:55:38 +0000176/// GetTorInit - Given a list of entries for static ctors/dtors, return them
177/// as a constant array.
178static Constant *GetTorInit(std::vector<std::pair<Function*, int> > &TorList) {
179 assert(!TorList.empty() && "Don't create empty tor list!");
180 std::vector<Constant*> ArrayElts;
181 for (unsigned i = 0, e = TorList.size(); i != e; ++i) {
182 std::vector<Constant*> Elts;
Reid Spencer71d2ec92006-12-31 06:02:26 +0000183 Elts.push_back(ConstantInt::get(Type::Int32Ty, TorList[i].second));
Chris Lattner5a7a9e52006-03-08 23:55:38 +0000184 Elts.push_back(TorList[i].first);
185 ArrayElts.push_back(ConstantStruct::get(Elts));
186 }
187 return ConstantArray::get(ArrayType::get(ArrayElts[0]->getType(),
188 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.
196static void SplitStaticCtorDtor(const char *GlobalName, Module *M1, Module *M2){
197 GlobalVariable *GV = M1->getNamedGlobal(GlobalName);
198 if (!GV || GV->isExternal() || GV->hasInternalLinkage() ||
199 !GV->use_empty()) return;
200
201 std::vector<std::pair<Function*, int> > M1Tors, M2Tors;
202 ConstantArray *InitList = dyn_cast<ConstantArray>(GV->getInitializer());
203 if (!InitList) return;
204
205 for (unsigned i = 0, e = InitList->getNumOperands(); i != e; ++i) {
206 if (ConstantStruct *CS = dyn_cast<ConstantStruct>(InitList->getOperand(i))){
207 if (CS->getNumOperands() != 2) return; // Not array of 2-element structs.
208
209 if (CS->getOperand(1)->isNullValue())
210 break; // Found a null terminator, stop here.
211
Reid Spencerb83eb642006-10-20 07:07:24 +0000212 ConstantInt *CI = dyn_cast<ConstantInt>(CS->getOperand(0));
213 int Priority = CI ? CI->getSExtValue() : 0;
Chris Lattner5a7a9e52006-03-08 23:55:38 +0000214
215 Constant *FP = CS->getOperand(1);
216 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(FP))
Reid Spencer3da59db2006-11-27 01:05:10 +0000217 if (CE->isCast())
Chris Lattner5a7a9e52006-03-08 23:55:38 +0000218 FP = CE->getOperand(0);
219 if (Function *F = dyn_cast<Function>(FP)) {
220 if (!F->isExternal())
221 M1Tors.push_back(std::make_pair(F, Priority));
222 else {
223 // Map to M2's version of the function.
224 F = M2->getFunction(F->getName(), F->getFunctionType());
225 M2Tors.push_back(std::make_pair(F, Priority));
226 }
227 }
228 }
229 }
230
231 GV->eraseFromParent();
232 if (!M1Tors.empty()) {
233 Constant *M1Init = GetTorInit(M1Tors);
234 new GlobalVariable(M1Init->getType(), false, GlobalValue::AppendingLinkage,
235 M1Init, GlobalName, M1);
236 }
237
238 GV = M2->getNamedGlobal(GlobalName);
239 assert(GV && "Not a clone of M1?");
240 assert(GV->use_empty() && "llvm.ctors shouldn't have uses!");
241
242 GV->eraseFromParent();
243 if (!M2Tors.empty()) {
244 Constant *M2Init = GetTorInit(M2Tors);
245 new GlobalVariable(M2Init->getType(), false, GlobalValue::AppendingLinkage,
246 M2Init, GlobalName, M2);
247 }
248}
249
Patrick Jenkinse47863e2006-07-28 01:19:28 +0000250
Chris Lattnerbe21ca52004-03-14 19:27:19 +0000251/// SplitFunctionsOutOfModule - Given a module and a list of functions in the
252/// module, split the functions OUT of the specified module, and place them in
253/// the new module.
254Module *llvm::SplitFunctionsOutOfModule(Module *M,
255 const std::vector<Function*> &F) {
256 // Make sure functions & globals are all external so that linkage
257 // between the two modules will work.
258 for (Module::iterator I = M->begin(), E = M->end(); I != E; ++I)
259 I->setLinkage(GlobalValue::ExternalLinkage);
Chris Lattner5a7a9e52006-03-08 23:55:38 +0000260 for (Module::global_iterator I = M->global_begin(), E = M->global_end();
261 I != E; ++I)
Chris Lattnerbe21ca52004-03-14 19:27:19 +0000262 I->setLinkage(GlobalValue::ExternalLinkage);
263
Chris Lattnerfef02422006-11-09 06:24:56 +0000264 Module *New = CloneModule(M);
Chris Lattnerbe21ca52004-03-14 19:27:19 +0000265
Chris Lattnerfef02422006-11-09 06:24:56 +0000266 // Make sure global initializers exist only in the safe module (CBE->.so)
267 for (Module::global_iterator I = New->global_begin(), E = New->global_end();
268 I != E; ++I)
269 I->setInitializer(0); // Delete the initializer to make it external
Chris Lattnerbe21ca52004-03-14 19:27:19 +0000270
Chris Lattnerfef02422006-11-09 06:24:56 +0000271 // Remove the Test functions from the Safe module
Chris Lattnerfb4b96e2004-04-02 16:28:32 +0000272 std::set<std::pair<std::string, const PointerType*> > TestFunctions;
Chris Lattnerbe21ca52004-03-14 19:27:19 +0000273 for (unsigned i = 0, e = F.size(); i != e; ++i) {
Patrick Jenkinse47863e2006-07-28 01:19:28 +0000274 TestFunctions.insert(std::make_pair(F[i]->getName(), F[i]->getType()));
Chris Lattnerfef02422006-11-09 06:24:56 +0000275 Function *TNOF = M->getFunction(F[i]->getName(), F[i]->getFunctionType());
276 DEBUG(std::cerr << "Removing function " << F[i]->getName() << "\n");
277 assert(TNOF && "Function doesn't exist in module!");
278 DeleteFunctionBody(TNOF); // Function is now external in this module!
Chris Lattnerbe21ca52004-03-14 19:27:19 +0000279 }
280
Chris Lattner5a7a9e52006-03-08 23:55:38 +0000281
Chris Lattnerfef02422006-11-09 06:24:56 +0000282 // Remove the Safe functions from the Test module
283 for (Module::iterator I = New->begin(), E = New->end(); I != E; ++I)
284 if (!TestFunctions.count(std::make_pair(I->getName(), I->getType())))
285 DeleteFunctionBody(I);
286
Patrick Jenkinse47863e2006-07-28 01:19:28 +0000287
Chris Lattner5a7a9e52006-03-08 23:55:38 +0000288 // Make sure that there is a global ctor/dtor array in both halves of the
289 // module if they both have static ctor/dtor functions.
290 SplitStaticCtorDtor("llvm.global_ctors", M, New);
291 SplitStaticCtorDtor("llvm.global_dtors", M, New);
292
Chris Lattnerbe21ca52004-03-14 19:27:19 +0000293 return New;
294}
Chris Lattner5e783ab2004-05-11 21:54:13 +0000295
296//===----------------------------------------------------------------------===//
297// Basic Block Extraction Code
298//===----------------------------------------------------------------------===//
299
300namespace {
301 std::vector<BasicBlock*> BlocksToNotExtract;
302
303 /// BlockExtractorPass - This pass is used by bugpoint to extract all blocks
304 /// from the module into their own functions except for those specified by the
305 /// BlocksToNotExtract list.
Chris Lattnerb12914b2004-09-20 04:48:05 +0000306 class BlockExtractorPass : public ModulePass {
307 bool runOnModule(Module &M);
Chris Lattner5e783ab2004-05-11 21:54:13 +0000308 };
Chris Lattner7f8897f2006-08-27 22:42:52 +0000309 RegisterPass<BlockExtractorPass>
Chris Lattner5e783ab2004-05-11 21:54:13 +0000310 XX("extract-bbs", "Extract Basic Blocks From Module (for bugpoint use)");
311}
312
Chris Lattnerb12914b2004-09-20 04:48:05 +0000313bool BlockExtractorPass::runOnModule(Module &M) {
Chris Lattner5e783ab2004-05-11 21:54:13 +0000314 std::set<BasicBlock*> TranslatedBlocksToNotExtract;
315 for (unsigned i = 0, e = BlocksToNotExtract.size(); i != e; ++i) {
316 BasicBlock *BB = BlocksToNotExtract[i];
317 Function *F = BB->getParent();
318
319 // Map the corresponding function in this module.
320 Function *MF = M.getFunction(F->getName(), F->getFunctionType());
321
322 // Figure out which index the basic block is in its function.
323 Function::iterator BBI = MF->begin();
324 std::advance(BBI, std::distance(F->begin(), Function::iterator(BB)));
325 TranslatedBlocksToNotExtract.insert(BBI);
326 }
327
328 // Now that we know which blocks to not extract, figure out which ones we WANT
329 // to extract.
330 std::vector<BasicBlock*> BlocksToExtract;
331 for (Module::iterator F = M.begin(), E = M.end(); F != E; ++F)
332 for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB)
333 if (!TranslatedBlocksToNotExtract.count(BB))
334 BlocksToExtract.push_back(BB);
335
336 for (unsigned i = 0, e = BlocksToExtract.size(); i != e; ++i)
337 ExtractBasicBlock(BlocksToExtract[i]);
Misha Brukman3da94ae2005-04-22 00:00:37 +0000338
Chris Lattner5e783ab2004-05-11 21:54:13 +0000339 return !BlocksToExtract.empty();
340}
341
342/// ExtractMappedBlocksFromModule - Extract all but the specified basic blocks
343/// into their own functions. The only detail is that M is actually a module
344/// cloned from the one the BBs are in, so some mapping needs to be performed.
345/// If this operation fails for some reason (ie the implementation is buggy),
346/// this function should return null, otherwise it returns a new Module.
347Module *BugDriver::ExtractMappedBlocksFromModule(const
348 std::vector<BasicBlock*> &BBs,
349 Module *M) {
350 // Set the global list so that pass will be able to access it.
351 BlocksToNotExtract = BBs;
352
353 std::vector<const PassInfo*> PI;
354 PI.push_back(getPI(new BlockExtractorPass()));
355 Module *Ret = runPassesOn(M, PI);
356 BlocksToNotExtract.clear();
Chris Lattner891150f2004-08-12 02:36:50 +0000357 if (Ret == 0) {
Chris Lattner5e783ab2004-05-11 21:54:13 +0000358 std::cout << "*** Basic Block extraction failed, please report a bug!\n";
Chris Lattner891150f2004-08-12 02:36:50 +0000359 M = swapProgramIn(M);
360 EmitProgressBytecode("basicblockextractfail", true);
Chris Lattnerb923b2e2006-05-12 17:28:36 +0000361 swapProgramIn(M);
Chris Lattner891150f2004-08-12 02:36:50 +0000362 }
Chris Lattner5e783ab2004-05-11 21:54:13 +0000363 return Ret;
364}