2005-04-24 17:36:05 +00:00
|
|
|
//===- llvm-extract.cpp - LLVM function extraction utility ----------------===//
|
2005-04-22 00:00:37 +00:00
|
|
|
//
|
2003-10-20 17:47:21 +00:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 20:44:31 +00:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-04-22 00:00:37 +00:00
|
|
|
//
|
2003-10-20 17:47:21 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2002-05-22 20:27:00 +00:00
|
|
|
//
|
|
|
|
// This utility changes the input module to only contain a single function,
|
|
|
|
// which is primarily used for debugging transformations.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2009-07-01 16:58:40 +00:00
|
|
|
#include "llvm/LLVMContext.h"
|
2002-05-22 20:27:00 +00:00
|
|
|
#include "llvm/Module.h"
|
|
|
|
#include "llvm/PassManager.h"
|
2009-09-11 20:46:33 +00:00
|
|
|
#include "llvm/Assembly/PrintModulePass.h"
|
2007-05-06 05:13:17 +00:00
|
|
|
#include "llvm/Bitcode/ReaderWriter.h"
|
2002-07-23 22:04:40 +00:00
|
|
|
#include "llvm/Transforms/IPO.h"
|
2003-10-28 22:22:16 +00:00
|
|
|
#include "llvm/Target/TargetData.h"
|
2004-09-01 22:55:40 +00:00
|
|
|
#include "llvm/Support/CommandLine.h"
|
2009-09-11 20:46:33 +00:00
|
|
|
#include "llvm/Support/IRReader.h"
|
2006-12-06 01:18:01 +00:00
|
|
|
#include "llvm/Support/ManagedStatic.h"
|
2007-05-06 05:13:17 +00:00
|
|
|
#include "llvm/Support/MemoryBuffer.h"
|
2009-03-06 05:34:10 +00:00
|
|
|
#include "llvm/Support/PrettyStackTrace.h"
|
2009-07-15 17:29:42 +00:00
|
|
|
#include "llvm/Support/raw_ostream.h"
|
2009-08-25 15:34:52 +00:00
|
|
|
#include "llvm/Support/SystemUtils.h"
|
2004-05-27 05:41:36 +00:00
|
|
|
#include "llvm/System/Signals.h"
|
2002-05-22 20:27:00 +00:00
|
|
|
#include <memory>
|
2003-11-11 22:41:34 +00:00
|
|
|
using namespace llvm;
|
|
|
|
|
2002-07-22 02:10:13 +00:00
|
|
|
// InputFilename - The filename to read from.
|
2002-07-25 16:31:09 +00:00
|
|
|
static cl::opt<std::string>
|
2007-07-05 17:07:56 +00:00
|
|
|
InputFilename(cl::Positional, cl::desc("<input bitcode file>"),
|
2002-07-22 02:10:13 +00:00
|
|
|
cl::init("-"), cl::value_desc("filename"));
|
2005-04-22 00:00:37 +00:00
|
|
|
|
2004-02-18 16:53:59 +00:00
|
|
|
static cl::opt<std::string>
|
2005-04-22 00:00:37 +00:00
|
|
|
OutputFilename("o", cl::desc("Specify output filename"),
|
2004-02-18 16:53:59 +00:00
|
|
|
cl::value_desc("filename"), cl::init("-"));
|
|
|
|
|
|
|
|
static cl::opt<bool>
|
2009-08-25 15:34:52 +00:00
|
|
|
Force("f", cl::desc("Enable binary output on terminals"));
|
2002-07-22 02:10:13 +00:00
|
|
|
|
2004-04-22 23:07:39 +00:00
|
|
|
static cl::opt<bool>
|
2008-03-07 19:51:57 +00:00
|
|
|
DeleteFn("delete", cl::desc("Delete specified Globals from Module"));
|
2004-04-22 23:07:39 +00:00
|
|
|
|
2007-01-28 13:31:35 +00:00
|
|
|
static cl::opt<bool>
|
|
|
|
Relink("relink",
|
|
|
|
cl::desc("Turn external linkage for callees of function to delete"));
|
|
|
|
|
2008-03-07 19:51:57 +00:00
|
|
|
// ExtractFunc - The function to extract from the module...
|
2002-07-25 16:31:09 +00:00
|
|
|
static cl::opt<std::string>
|
2008-03-07 19:51:57 +00:00
|
|
|
ExtractFunc("func", cl::desc("Specify function to extract"), cl::init(""),
|
2002-07-22 02:10:13 +00:00
|
|
|
cl::value_desc("function"));
|
|
|
|
|
2008-03-07 19:51:57 +00:00
|
|
|
// ExtractGlobal - The global to extract from the module...
|
|
|
|
static cl::opt<std::string>
|
|
|
|
ExtractGlobal("glob", cl::desc("Specify global to extract"), cl::init(""),
|
|
|
|
cl::value_desc("global"));
|
|
|
|
|
2009-09-11 20:46:33 +00:00
|
|
|
static cl::opt<bool>
|
|
|
|
OutputAssembly("S",
|
|
|
|
cl::desc("Write output as LLVM assembly"), cl::Hidden);
|
|
|
|
|
2002-05-22 20:27:00 +00:00
|
|
|
int main(int argc, char **argv) {
|
2009-03-06 05:34:10 +00:00
|
|
|
// Print a stack trace if we signal out.
|
2007-05-06 05:13:17 +00:00
|
|
|
sys::PrintStackTraceOnErrorSignal();
|
2009-03-06 05:34:10 +00:00
|
|
|
PrettyStackTraceProgram X(argc, argv);
|
2009-07-01 16:58:40 +00:00
|
|
|
|
2009-07-15 22:16:10 +00:00
|
|
|
LLVMContext &Context = getGlobalContext();
|
2009-03-06 05:34:10 +00:00
|
|
|
llvm_shutdown_obj Y; // Call llvm_shutdown() on exit.
|
|
|
|
cl::ParseCommandLineOptions(argc, argv, "llvm extractor\n");
|
2002-05-22 20:27:00 +00:00
|
|
|
|
2009-09-11 20:46:33 +00:00
|
|
|
SMDiagnostic Err;
|
2007-05-06 05:13:17 +00:00
|
|
|
std::auto_ptr<Module> M;
|
2009-09-11 20:46:33 +00:00
|
|
|
M.reset(ParseIRFile(InputFilename, Err, Context));
|
|
|
|
|
2007-05-06 05:13:17 +00:00
|
|
|
if (M.get() == 0) {
|
2009-09-11 20:46:33 +00:00
|
|
|
Err.Print(argv[0], errs());
|
2007-05-06 05:13:17 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Figure out which function we should extract
|
2009-04-20 16:19:02 +00:00
|
|
|
GlobalVariable *G = !ExtractGlobal.empty() ?
|
2008-03-07 19:51:57 +00:00
|
|
|
M.get()->getNamedGlobal(ExtractGlobal) : 0;
|
|
|
|
|
|
|
|
// Figure out which function we should extract
|
2009-04-20 16:19:02 +00:00
|
|
|
if (ExtractFunc.empty() && ExtractGlobal.empty()) ExtractFunc = "main";
|
2008-03-07 20:07:24 +00:00
|
|
|
Function *F = M.get()->getFunction(ExtractFunc);
|
2008-03-07 19:51:57 +00:00
|
|
|
|
|
|
|
if (F == 0 && G == 0) {
|
2009-07-16 15:30:09 +00:00
|
|
|
errs() << argv[0] << ": program doesn't contain function named '"
|
|
|
|
<< ExtractFunc << "' or a global named '" << ExtractGlobal << "'!\n";
|
2007-05-06 05:13:17 +00:00
|
|
|
return 1;
|
|
|
|
}
|
2002-11-19 18:42:59 +00:00
|
|
|
|
2007-05-06 05:13:17 +00:00
|
|
|
// In addition to deleting all other functions, we also want to spiff it
|
|
|
|
// up a little bit. Do this now.
|
|
|
|
PassManager Passes;
|
|
|
|
Passes.add(new TargetData(M.get())); // Use correct TargetData
|
|
|
|
// Either isolate the function or delete it from the Module
|
2008-03-07 19:51:57 +00:00
|
|
|
std::vector<GlobalValue*> GVs;
|
|
|
|
if (F) GVs.push_back(F);
|
|
|
|
if (G) GVs.push_back(G);
|
|
|
|
|
|
|
|
Passes.add(createGVExtractionPass(GVs, DeleteFn, Relink));
|
2007-05-06 05:13:17 +00:00
|
|
|
if (!DeleteFn)
|
|
|
|
Passes.add(createGlobalDCEPass()); // Delete unreachable globals
|
|
|
|
Passes.add(createDeadTypeEliminationPass()); // Remove dead types...
|
|
|
|
Passes.add(createStripDeadPrototypesPass()); // Remove dead func decls
|
|
|
|
|
2009-09-11 20:46:33 +00:00
|
|
|
// Make sure that the Output file gets unlinked from the disk if we get a
|
|
|
|
// SIGINT
|
|
|
|
sys::RemoveFileOnSignal(sys::Path(OutputFilename));
|
|
|
|
|
2009-08-23 02:56:05 +00:00
|
|
|
std::string ErrorInfo;
|
2009-09-11 20:46:33 +00:00
|
|
|
raw_fd_ostream Out(OutputFilename.c_str(), ErrorInfo,
|
|
|
|
raw_fd_ostream::F_Binary);
|
2009-08-23 02:56:05 +00:00
|
|
|
if (!ErrorInfo.empty()) {
|
|
|
|
errs() << ErrorInfo << '\n';
|
|
|
|
return 1;
|
2007-05-06 05:13:17 +00:00
|
|
|
}
|
2004-02-18 16:53:59 +00:00
|
|
|
|
2009-09-11 20:46:33 +00:00
|
|
|
if (OutputAssembly)
|
|
|
|
Passes.add(createPrintModulePass(&Out));
|
|
|
|
else if (Force || !CheckBitcodeOutputToConsole(Out, true))
|
|
|
|
Passes.add(createBitcodeWriterPass(Out));
|
2009-08-25 15:34:52 +00:00
|
|
|
|
2007-05-06 05:13:17 +00:00
|
|
|
Passes.run(*M.get());
|
|
|
|
|
|
|
|
return 0;
|
2002-05-22 20:27:00 +00:00
|
|
|
}
|