blob: 0f3d44e8a4da1aeda4d09eb4e7bd1102bae57415 [file] [log] [blame]
Chris Lattnerafade922002-11-20 22:28:10 +00001//===- ExtractFunction.cpp - Extract a function from Program --------------===//
John Criswell7c0e0222003-10-20 17:47:21 +00002//
3// 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.
7//
8//===----------------------------------------------------------------------===//
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"
Misha Brukmane49603d2003-08-07 21:19:30 +000016#include "llvm/Constant.h"
Chris Lattnerafade922002-11-20 22:28:10 +000017#include "llvm/Module.h"
18#include "llvm/PassManager.h"
Brian Gaeked1a85a72003-09-10 21:11:42 +000019#include "llvm/Pass.h"
Misha Brukmane49603d2003-08-07 21:19:30 +000020#include "llvm/Type.h"
21#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"
Chris Lattner6db70ef2003-04-25 22:08:12 +000027#include "Support/CommandLine.h"
Chris Lattnerbe21ca52004-03-14 19:27:19 +000028#include "Support/Debug.h"
Chris Lattner1b747162003-12-07 02:31:03 +000029#include "Support/FileUtilities.h"
Reid Spencer86f42bd2004-07-04 12:20:55 +000030#include <iostream>
Chris Lattnerfb4b96e2004-04-02 16:28:32 +000031#include <set>
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 Lattner44be2572003-04-24 22:53:24 +000077 // Spiff up the output a little bit.
Chris Lattner65207852003-01-23 02:48:33 +000078 PassManager Passes;
Chris Lattner5da69c72003-10-23 15:42:55 +000079 // Make sure that the appropriate target data is always used...
80 Passes.add(new TargetData("bugpoint", Result));
81
Chris Lattnerefdc0b52004-03-14 20:50:42 +000082 /// FIXME: If this used runPasses() like the methods below, we could get rid
83 /// of the -disable-* options!
Chris Lattner6db70ef2003-04-25 22:08:12 +000084 if (Simplification > 1 && !NoDCE)
Chris Lattner65207852003-01-23 02:48:33 +000085 Passes.add(createDeadCodeEliminationPass());
Chris Lattner47ae4a12003-08-05 15:51:05 +000086 if (Simplification && !DisableSimplifyCFG)
Chris Lattner65207852003-01-23 02:48:33 +000087 Passes.add(createCFGSimplificationPass()); // Delete dead control flow
Chris Lattner10f22cb2003-03-07 18:17:13 +000088
89 Passes.add(createVerifierPass());
Chris Lattner65207852003-01-23 02:48:33 +000090 Passes.run(*Result);
91 return Result;
92}
Chris Lattnerba386d92003-02-28 16:13:20 +000093
Chris Lattnerfcb6ec02003-11-05 21:45:35 +000094static const PassInfo *getPI(Pass *P) {
95 const PassInfo *PI = P->getPassInfo();
96 delete P;
97 return PI;
98}
99
Chris Lattnerba386d92003-02-28 16:13:20 +0000100/// performFinalCleanups - This method clones the current Program and performs
101/// a series of cleanups intended to get rid of extra cruft on the module
102/// before handing it to the user...
103///
Chris Lattnerfcb6ec02003-11-05 21:45:35 +0000104Module *BugDriver::performFinalCleanups(Module *M, bool MayModifySemantics) {
Chris Lattner28b8ed92003-05-21 19:41:31 +0000105 // Make all functions external, so GlobalDCE doesn't delete them...
106 for (Module::iterator I = M->begin(), E = M->end(); I != E; ++I)
107 I->setLinkage(GlobalValue::ExternalLinkage);
Chris Lattnerdbe48dc2003-05-21 20:38:59 +0000108
Chris Lattnerfcb6ec02003-11-05 21:45:35 +0000109 std::vector<const PassInfo*> CleanupPasses;
110 CleanupPasses.push_back(getPI(createFunctionResolvingPass()));
111 CleanupPasses.push_back(getPI(createGlobalDCEPass()));
112 CleanupPasses.push_back(getPI(createDeadTypeEliminationPass()));
Chris Lattnerfcb6ec02003-11-05 21:45:35 +0000113
Chris Lattnerc6b519d2003-11-23 04:51:05 +0000114 if (MayModifySemantics)
115 CleanupPasses.push_back(getPI(createDeadArgHackingPass()));
116 else
117 CleanupPasses.push_back(getPI(createDeadArgEliminationPass()));
Chris Lattnerfcb6ec02003-11-05 21:45:35 +0000118
Chris Lattnera75766a2004-03-14 21:17:22 +0000119 Module *New = runPassesOn(M, CleanupPasses);
120 if (New == 0) {
Chris Lattner7546c382004-03-14 20:02:07 +0000121 std::cerr << "Final cleanups failed. Sorry. :( Please report a bug!\n";
Chris Lattnerfcb6ec02003-11-05 21:45:35 +0000122 }
Chris Lattnera75766a2004-03-14 21:17:22 +0000123 delete M;
124 return New;
Chris Lattnerba386d92003-02-28 16:13:20 +0000125}
Chris Lattnerbe21ca52004-03-14 19:27:19 +0000126
127
Chris Lattner7546c382004-03-14 20:02:07 +0000128/// ExtractLoop - Given a module, extract up to one loop from it into a new
129/// function. This returns null if there are no extractable loops in the
130/// program or if the loop extractor crashes.
131Module *BugDriver::ExtractLoop(Module *M) {
132 std::vector<const PassInfo*> LoopExtractPasses;
133 LoopExtractPasses.push_back(getPI(createSingleLoopExtractorPass()));
134
Chris Lattnera75766a2004-03-14 21:17:22 +0000135 Module *NewM = runPassesOn(M, LoopExtractPasses);
136 if (NewM == 0) {
Chris Lattnera1cf1c82004-03-14 22:08:00 +0000137 Module *Old = swapProgramIn(M);
138 std::cout << "*** Loop extraction failed: ";
139 EmitProgressBytecode("loopextraction", true);
140 std::cout << "*** Sorry. :( Please report a bug!\n";
141 swapProgramIn(Old);
Chris Lattner7546c382004-03-14 20:02:07 +0000142 return 0;
Chris Lattner7546c382004-03-14 20:02:07 +0000143 }
Chris Lattnera75766a2004-03-14 21:17:22 +0000144
145 // Check to see if we created any new functions. If not, no loops were
146 // extracted and we should return null.
Chris Lattner7fa44fc2004-03-17 17:37:18 +0000147 if (M->size() == NewM->size()) {
Chris Lattnera75766a2004-03-14 21:17:22 +0000148 delete NewM;
149 return 0;
150 }
151
152 return NewM;
Chris Lattner7546c382004-03-14 20:02:07 +0000153}
154
155
Chris Lattnerbe21ca52004-03-14 19:27:19 +0000156// DeleteFunctionBody - "Remove" the function by deleting all of its basic
157// blocks, making it external.
158//
159void llvm::DeleteFunctionBody(Function *F) {
160 // delete the body of the function...
161 F->deleteBody();
162 assert(F->isExternal() && "This didn't make the function external!");
163}
164
165/// SplitFunctionsOutOfModule - Given a module and a list of functions in the
166/// module, split the functions OUT of the specified module, and place them in
167/// the new module.
Chris Lattner5eda1f22004-03-14 19:31:00 +0000168///
169/// FIXME: this could be made DRAMATICALLY more efficient for large programs if
170/// we just MOVED functions from one module to the other, instead of cloning the
171/// whole module, then proceeding to delete an entire module's worth of stuff.
172///
Chris Lattnerbe21ca52004-03-14 19:27:19 +0000173Module *llvm::SplitFunctionsOutOfModule(Module *M,
174 const std::vector<Function*> &F) {
175 // Make sure functions & globals are all external so that linkage
176 // between the two modules will work.
177 for (Module::iterator I = M->begin(), E = M->end(); I != E; ++I)
178 I->setLinkage(GlobalValue::ExternalLinkage);
179 for (Module::giterator I = M->gbegin(), E = M->gend(); I != E; ++I)
180 I->setLinkage(GlobalValue::ExternalLinkage);
181
182 Module *New = CloneModule(M);
183
184 // Make sure global initializers exist only in the safe module (CBE->.so)
185 for (Module::giterator I = New->gbegin(), E = New->gend(); I != E; ++I)
186 I->setInitializer(0); // Delete the initializer to make it external
187
188 // Remove the Test functions from the Safe module
Chris Lattnerfb4b96e2004-04-02 16:28:32 +0000189 std::set<std::pair<std::string, const PointerType*> > TestFunctions;
Chris Lattnerbe21ca52004-03-14 19:27:19 +0000190 for (unsigned i = 0, e = F.size(); i != e; ++i) {
Chris Lattnerfb4b96e2004-04-02 16:28:32 +0000191 TestFunctions.insert(std::make_pair(F[i]->getName(), F[i]->getType()));
Chris Lattnerbe21ca52004-03-14 19:27:19 +0000192 Function *TNOF = M->getFunction(F[i]->getName(), F[i]->getFunctionType());
193 DEBUG(std::cerr << "Removing function " << F[i]->getName() << "\n");
194 assert(TNOF && "Function doesn't exist in module!");
195 DeleteFunctionBody(TNOF); // Function is now external in this module!
196 }
197
198 // Remove the Safe functions from the Test module
Chris Lattnerfb4b96e2004-04-02 16:28:32 +0000199 for (Module::iterator I = New->begin(), E = New->end(); I != E; ++I)
200 if (!TestFunctions.count(std::make_pair(I->getName(), I->getType())))
Chris Lattnerbe21ca52004-03-14 19:27:19 +0000201 DeleteFunctionBody(I);
Chris Lattnerbe21ca52004-03-14 19:27:19 +0000202 return New;
203}
Chris Lattner5e783ab2004-05-11 21:54:13 +0000204
205//===----------------------------------------------------------------------===//
206// Basic Block Extraction Code
207//===----------------------------------------------------------------------===//
208
209namespace {
210 std::vector<BasicBlock*> BlocksToNotExtract;
211
212 /// BlockExtractorPass - This pass is used by bugpoint to extract all blocks
213 /// from the module into their own functions except for those specified by the
214 /// BlocksToNotExtract list.
215 class BlockExtractorPass : public Pass {
216 bool run(Module &M);
217 };
218 RegisterOpt<BlockExtractorPass>
219 XX("extract-bbs", "Extract Basic Blocks From Module (for bugpoint use)");
220}
221
222bool BlockExtractorPass::run(Module &M) {
223 std::set<BasicBlock*> TranslatedBlocksToNotExtract;
224 for (unsigned i = 0, e = BlocksToNotExtract.size(); i != e; ++i) {
225 BasicBlock *BB = BlocksToNotExtract[i];
226 Function *F = BB->getParent();
227
228 // Map the corresponding function in this module.
229 Function *MF = M.getFunction(F->getName(), F->getFunctionType());
230
231 // Figure out which index the basic block is in its function.
232 Function::iterator BBI = MF->begin();
233 std::advance(BBI, std::distance(F->begin(), Function::iterator(BB)));
234 TranslatedBlocksToNotExtract.insert(BBI);
235 }
236
237 // Now that we know which blocks to not extract, figure out which ones we WANT
238 // to extract.
239 std::vector<BasicBlock*> BlocksToExtract;
240 for (Module::iterator F = M.begin(), E = M.end(); F != E; ++F)
241 for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB)
242 if (!TranslatedBlocksToNotExtract.count(BB))
243 BlocksToExtract.push_back(BB);
244
245 for (unsigned i = 0, e = BlocksToExtract.size(); i != e; ++i)
246 ExtractBasicBlock(BlocksToExtract[i]);
247
248 return !BlocksToExtract.empty();
249}
250
251/// ExtractMappedBlocksFromModule - Extract all but the specified basic blocks
252/// into their own functions. The only detail is that M is actually a module
253/// cloned from the one the BBs are in, so some mapping needs to be performed.
254/// If this operation fails for some reason (ie the implementation is buggy),
255/// this function should return null, otherwise it returns a new Module.
256Module *BugDriver::ExtractMappedBlocksFromModule(const
257 std::vector<BasicBlock*> &BBs,
258 Module *M) {
259 // Set the global list so that pass will be able to access it.
260 BlocksToNotExtract = BBs;
261
262 std::vector<const PassInfo*> PI;
263 PI.push_back(getPI(new BlockExtractorPass()));
264 Module *Ret = runPassesOn(M, PI);
265 BlocksToNotExtract.clear();
266 if (Ret == 0)
267 std::cout << "*** Basic Block extraction failed, please report a bug!\n";
268 return Ret;
269}