2002-11-20 22:28:10 +00:00
|
|
|
//===- ExtractFunction.cpp - Extract a function from Program --------------===//
|
|
|
|
//
|
|
|
|
// This file implements a method that extracts a function from program, cleans
|
|
|
|
// it up, and returns it as a new module.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "BugDriver.h"
|
|
|
|
#include "llvm/Module.h"
|
|
|
|
#include "llvm/PassManager.h"
|
|
|
|
#include "llvm/Transforms/IPO.h"
|
2003-01-23 02:48:33 +00:00
|
|
|
#include "llvm/Transforms/Scalar.h"
|
2002-11-20 22:28:10 +00:00
|
|
|
#include "llvm/Transforms/Utils/Cloning.h"
|
2003-03-07 18:17:13 +00:00
|
|
|
#include "llvm/Analysis/Verifier.h"
|
2003-01-23 02:48:33 +00:00
|
|
|
#include "llvm/Type.h"
|
|
|
|
#include "llvm/Constant.h"
|
2003-04-25 22:08:12 +00:00
|
|
|
#include "Support/CommandLine.h"
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
cl::opt<bool>
|
|
|
|
NoADCE("disable-adce",
|
|
|
|
cl::desc("Do not use the -adce pass to reduce testcases"));
|
|
|
|
cl::opt<bool>
|
|
|
|
NoDCE ("disable-dce",
|
|
|
|
cl::desc("Do not use the -dce pass to reduce testcases"));
|
|
|
|
cl::opt<bool>
|
|
|
|
NoSCFG("disable-simplifycfg",
|
|
|
|
cl::desc("Do not use the -simplifycfg pass to reduce testcases"));
|
|
|
|
}
|
2002-11-20 22:28:10 +00:00
|
|
|
|
2003-01-23 02:48:33 +00:00
|
|
|
/// deleteInstructionFromProgram - This method clones the current Program and
|
|
|
|
/// deletes the specified instruction from the cloned module. It then runs a
|
|
|
|
/// series of cleanup passes (ADCE and SimplifyCFG) to eliminate any code which
|
|
|
|
/// depends on the value. The modified module is then returned.
|
|
|
|
///
|
|
|
|
Module *BugDriver::deleteInstructionFromProgram(Instruction *I,
|
|
|
|
unsigned Simplification) const {
|
|
|
|
Module *Result = CloneModule(Program);
|
|
|
|
|
|
|
|
BasicBlock *PBB = I->getParent();
|
|
|
|
Function *PF = PBB->getParent();
|
|
|
|
|
|
|
|
Module::iterator RFI = Result->begin(); // Get iterator to corresponding fn
|
|
|
|
std::advance(RFI, std::distance(Program->begin(), Module::iterator(PF)));
|
|
|
|
|
|
|
|
Function::iterator RBI = RFI->begin(); // Get iterator to corresponding BB
|
|
|
|
std::advance(RBI, std::distance(PF->begin(), Function::iterator(PBB)));
|
|
|
|
|
|
|
|
BasicBlock::iterator RI = RBI->begin(); // Get iterator to corresponding inst
|
|
|
|
std::advance(RI, std::distance(PBB->begin(), BasicBlock::iterator(I)));
|
|
|
|
I = RI; // Got the corresponding instruction!
|
|
|
|
|
|
|
|
// If this instruction produces a value, replace any users with null values
|
|
|
|
if (I->getType() != Type::VoidTy)
|
|
|
|
I->replaceAllUsesWith(Constant::getNullValue(I->getType()));
|
|
|
|
|
|
|
|
// Remove the instruction from the program.
|
|
|
|
I->getParent()->getInstList().erase(I);
|
|
|
|
|
2003-04-24 22:53:24 +00:00
|
|
|
// Spiff up the output a little bit.
|
2003-01-23 02:48:33 +00:00
|
|
|
PassManager Passes;
|
2003-04-25 22:08:12 +00:00
|
|
|
if (Simplification > 2 && !NoADCE)
|
2003-01-23 02:48:33 +00:00
|
|
|
Passes.add(createAggressiveDCEPass()); // Remove dead code...
|
|
|
|
//Passes.add(createInstructionCombiningPass());
|
2003-04-25 22:08:12 +00:00
|
|
|
if (Simplification > 1 && !NoDCE)
|
2003-01-23 02:48:33 +00:00
|
|
|
Passes.add(createDeadCodeEliminationPass());
|
2003-04-25 22:08:12 +00:00
|
|
|
if (Simplification && !NoSCFG)
|
2003-01-23 02:48:33 +00:00
|
|
|
Passes.add(createCFGSimplificationPass()); // Delete dead control flow
|
2003-03-07 18:17:13 +00:00
|
|
|
|
|
|
|
Passes.add(createVerifierPass());
|
2003-01-23 02:48:33 +00:00
|
|
|
Passes.run(*Result);
|
|
|
|
return Result;
|
|
|
|
}
|
2003-02-28 16:13:20 +00:00
|
|
|
|
|
|
|
/// performFinalCleanups - This method clones the current Program and performs
|
|
|
|
/// a series of cleanups intended to get rid of extra cruft on the module
|
|
|
|
/// before handing it to the user...
|
|
|
|
///
|
|
|
|
Module *BugDriver::performFinalCleanups() const {
|
2003-04-25 00:52:30 +00:00
|
|
|
Module *M = CloneModule(Program);
|
2003-02-28 16:13:20 +00:00
|
|
|
PassManager CleanupPasses;
|
|
|
|
CleanupPasses.add(createFunctionResolvingPass());
|
|
|
|
CleanupPasses.add(createGlobalDCEPass());
|
2003-04-25 00:52:30 +00:00
|
|
|
CleanupPasses.add(createDeadTypeEliminationPass());
|
2003-03-07 18:17:13 +00:00
|
|
|
CleanupPasses.add(createVerifierPass());
|
2003-02-28 16:13:20 +00:00
|
|
|
CleanupPasses.run(*M);
|
|
|
|
return M;
|
|
|
|
}
|