blob: 38e25864e4ce609c0b137be83d82a4e179e259b6 [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//
10// This file implements a method that extracts a function from program, cleans
11// it up, and returns it as a new module.
12//
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 Lattner5da69c72003-10-23 15:42:55 +000025#include "llvm/Target/TargetData.h"
Chris Lattner6db70ef2003-04-25 22:08:12 +000026#include "Support/CommandLine.h"
27
Chris Lattner47ae4a12003-08-05 15:51:05 +000028bool DisableSimplifyCFG = false;
29
Chris Lattner6db70ef2003-04-25 22:08:12 +000030namespace {
31 cl::opt<bool>
32 NoADCE("disable-adce",
33 cl::desc("Do not use the -adce pass to reduce testcases"));
34 cl::opt<bool>
35 NoDCE ("disable-dce",
36 cl::desc("Do not use the -dce pass to reduce testcases"));
Chris Lattner47ae4a12003-08-05 15:51:05 +000037 cl::opt<bool, true>
38 NoSCFG("disable-simplifycfg", cl::location(DisableSimplifyCFG),
Chris Lattner6db70ef2003-04-25 22:08:12 +000039 cl::desc("Do not use the -simplifycfg pass to reduce testcases"));
40}
Chris Lattnerafade922002-11-20 22:28:10 +000041
Chris Lattner65207852003-01-23 02:48:33 +000042/// deleteInstructionFromProgram - This method clones the current Program and
43/// deletes the specified instruction from the cloned module. It then runs a
44/// series of cleanup passes (ADCE and SimplifyCFG) to eliminate any code which
45/// depends on the value. The modified module is then returned.
46///
47Module *BugDriver::deleteInstructionFromProgram(Instruction *I,
48 unsigned Simplification) const {
49 Module *Result = CloneModule(Program);
50
51 BasicBlock *PBB = I->getParent();
52 Function *PF = PBB->getParent();
53
54 Module::iterator RFI = Result->begin(); // Get iterator to corresponding fn
55 std::advance(RFI, std::distance(Program->begin(), Module::iterator(PF)));
56
57 Function::iterator RBI = RFI->begin(); // Get iterator to corresponding BB
58 std::advance(RBI, std::distance(PF->begin(), Function::iterator(PBB)));
59
60 BasicBlock::iterator RI = RBI->begin(); // Get iterator to corresponding inst
61 std::advance(RI, std::distance(PBB->begin(), BasicBlock::iterator(I)));
62 I = RI; // Got the corresponding instruction!
63
64 // If this instruction produces a value, replace any users with null values
65 if (I->getType() != Type::VoidTy)
66 I->replaceAllUsesWith(Constant::getNullValue(I->getType()));
67
68 // Remove the instruction from the program.
69 I->getParent()->getInstList().erase(I);
70
Chris Lattner44be2572003-04-24 22:53:24 +000071 // Spiff up the output a little bit.
Chris Lattner65207852003-01-23 02:48:33 +000072 PassManager Passes;
Chris Lattner5da69c72003-10-23 15:42:55 +000073 // Make sure that the appropriate target data is always used...
74 Passes.add(new TargetData("bugpoint", Result));
75
Chris Lattner6db70ef2003-04-25 22:08:12 +000076 if (Simplification > 2 && !NoADCE)
Chris Lattner65207852003-01-23 02:48:33 +000077 Passes.add(createAggressiveDCEPass()); // Remove dead code...
78 //Passes.add(createInstructionCombiningPass());
Chris Lattner6db70ef2003-04-25 22:08:12 +000079 if (Simplification > 1 && !NoDCE)
Chris Lattner65207852003-01-23 02:48:33 +000080 Passes.add(createDeadCodeEliminationPass());
Chris Lattner47ae4a12003-08-05 15:51:05 +000081 if (Simplification && !DisableSimplifyCFG)
Chris Lattner65207852003-01-23 02:48:33 +000082 Passes.add(createCFGSimplificationPass()); // Delete dead control flow
Chris Lattner10f22cb2003-03-07 18:17:13 +000083
84 Passes.add(createVerifierPass());
Chris Lattner65207852003-01-23 02:48:33 +000085 Passes.run(*Result);
86 return Result;
87}
Chris Lattnerba386d92003-02-28 16:13:20 +000088
Chris Lattnerfcb6ec02003-11-05 21:45:35 +000089static const PassInfo *getPI(Pass *P) {
90 const PassInfo *PI = P->getPassInfo();
91 delete P;
92 return PI;
93}
94
Chris Lattnerba386d92003-02-28 16:13:20 +000095/// performFinalCleanups - This method clones the current Program and performs
96/// a series of cleanups intended to get rid of extra cruft on the module
97/// before handing it to the user...
98///
Chris Lattnerfcb6ec02003-11-05 21:45:35 +000099Module *BugDriver::performFinalCleanups(Module *M, bool MayModifySemantics) {
Chris Lattner28b8ed92003-05-21 19:41:31 +0000100 // Make all functions external, so GlobalDCE doesn't delete them...
101 for (Module::iterator I = M->begin(), E = M->end(); I != E; ++I)
102 I->setLinkage(GlobalValue::ExternalLinkage);
Chris Lattnerdbe48dc2003-05-21 20:38:59 +0000103
Chris Lattnerfcb6ec02003-11-05 21:45:35 +0000104 std::vector<const PassInfo*> CleanupPasses;
105 CleanupPasses.push_back(getPI(createFunctionResolvingPass()));
106 CleanupPasses.push_back(getPI(createGlobalDCEPass()));
107 CleanupPasses.push_back(getPI(createDeadTypeEliminationPass()));
108 CleanupPasses.push_back(getPI(createDeadArgHackingPass()));
109
110 std::swap(Program, M);
111 std::string Filename;
112 bool Failed = runPasses(CleanupPasses, Filename);
113 std::swap(Program, M);
114
115 if (Failed) {
116 std::cerr << "Final cleanups failed. Sorry. :(\n";
117 } else {
118 delete M;
119 M = ParseInputFile(Filename);
120 if (M == 0) {
121 std::cerr << getToolName() << ": Error reading bytecode file '"
122 << Filename << "'!\n";
123 exit(1);
124 }
125 }
126 return M;
Chris Lattnerba386d92003-02-28 16:13:20 +0000127}