blob: 543d01f9103b22d86a10669c8a2ce9d4369f93b0 [file] [log] [blame]
Misha Brukmane22594f2005-04-24 17:36:05 +00001//===- llvm-extract.cpp - LLVM function extraction utility ----------------===//
Misha Brukman650ba8e2005-04-22 00:00:37 +00002//
John Criswell09344dc2003-10-20 17:47:21 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner345353d2007-12-29 20:44:31 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukman650ba8e2005-04-22 00:00:37 +00007//
John Criswell09344dc2003-10-20 17:47:21 +00008//===----------------------------------------------------------------------===//
Chris Lattner055de182002-05-22 20:27:00 +00009//
10// This utility changes the input module to only contain a single function,
11// which is primarily used for debugging transformations.
12//
13//===----------------------------------------------------------------------===//
14
Owen Anderson6773d382009-07-01 16:58:40 +000015#include "llvm/LLVMContext.h"
Chris Lattner055de182002-05-22 20:27:00 +000016#include "llvm/Module.h"
17#include "llvm/PassManager.h"
Chris Lattner27936992007-05-06 05:13:17 +000018#include "llvm/Bitcode/ReaderWriter.h"
Chris Lattnerda02d412002-07-23 22:04:40 +000019#include "llvm/Transforms/IPO.h"
Brian Gaeke8fb7af12003-10-28 22:22:16 +000020#include "llvm/Target/TargetData.h"
Reid Spencer7c16caa2004-09-01 22:55:40 +000021#include "llvm/Support/CommandLine.h"
Chris Lattner76d46322006-12-06 01:18:01 +000022#include "llvm/Support/ManagedStatic.h"
Chris Lattner27936992007-05-06 05:13:17 +000023#include "llvm/Support/MemoryBuffer.h"
Chris Lattnere3fc2d12009-03-06 05:34:10 +000024#include "llvm/Support/PrettyStackTrace.h"
Dan Gohman607818a2009-07-15 17:29:42 +000025#include "llvm/Support/raw_ostream.h"
Dan Gohman61a87962009-08-25 15:34:52 +000026#include "llvm/Support/SystemUtils.h"
Chris Lattner278f5152004-05-27 05:41:36 +000027#include "llvm/System/Signals.h"
Chris Lattner055de182002-05-22 20:27:00 +000028#include <memory>
Brian Gaeke960707c2003-11-11 22:41:34 +000029using namespace llvm;
30
Chris Lattnerf5cad152002-07-22 02:10:13 +000031// InputFilename - The filename to read from.
Chris Lattner64a67272002-07-25 16:31:09 +000032static cl::opt<std::string>
Gabor Greife16561c2007-07-05 17:07:56 +000033InputFilename(cl::Positional, cl::desc("<input bitcode file>"),
Chris Lattnerf5cad152002-07-22 02:10:13 +000034 cl::init("-"), cl::value_desc("filename"));
Misha Brukman650ba8e2005-04-22 00:00:37 +000035
Chris Lattner3b203f52004-02-18 16:53:59 +000036static cl::opt<std::string>
Misha Brukman650ba8e2005-04-22 00:00:37 +000037OutputFilename("o", cl::desc("Specify output filename"),
Chris Lattner3b203f52004-02-18 16:53:59 +000038 cl::value_desc("filename"), cl::init("-"));
39
40static cl::opt<bool>
Dan Gohman61a87962009-08-25 15:34:52 +000041Force("f", cl::desc("Enable binary output on terminals"));
Chris Lattnerf5cad152002-07-22 02:10:13 +000042
Misha Brukman2ccac822004-04-22 23:07:39 +000043static cl::opt<bool>
Andrew Lenharth3f13b662008-03-07 19:51:57 +000044DeleteFn("delete", cl::desc("Delete specified Globals from Module"));
Misha Brukman2ccac822004-04-22 23:07:39 +000045
Anton Korobeynikov037c8672007-01-28 13:31:35 +000046static cl::opt<bool>
47Relink("relink",
48 cl::desc("Turn external linkage for callees of function to delete"));
49
Andrew Lenharth3f13b662008-03-07 19:51:57 +000050// ExtractFunc - The function to extract from the module...
Chris Lattner64a67272002-07-25 16:31:09 +000051static cl::opt<std::string>
Andrew Lenharth3f13b662008-03-07 19:51:57 +000052ExtractFunc("func", cl::desc("Specify function to extract"), cl::init(""),
Chris Lattnerf5cad152002-07-22 02:10:13 +000053 cl::value_desc("function"));
54
Andrew Lenharth3f13b662008-03-07 19:51:57 +000055// ExtractGlobal - The global to extract from the module...
56static cl::opt<std::string>
57ExtractGlobal("glob", cl::desc("Specify global to extract"), cl::init(""),
58 cl::value_desc("global"));
59
Chris Lattner055de182002-05-22 20:27:00 +000060int main(int argc, char **argv) {
Chris Lattnere3fc2d12009-03-06 05:34:10 +000061 // Print a stack trace if we signal out.
Chris Lattner27936992007-05-06 05:13:17 +000062 sys::PrintStackTraceOnErrorSignal();
Chris Lattnere3fc2d12009-03-06 05:34:10 +000063 PrettyStackTraceProgram X(argc, argv);
Owen Anderson6773d382009-07-01 16:58:40 +000064
Owen Anderson19251ec2009-07-15 22:16:10 +000065 LLVMContext &Context = getGlobalContext();
Chris Lattnere3fc2d12009-03-06 05:34:10 +000066 llvm_shutdown_obj Y; // Call llvm_shutdown() on exit.
67 cl::ParseCommandLineOptions(argc, argv, "llvm extractor\n");
Chris Lattner055de182002-05-22 20:27:00 +000068
Chris Lattner27936992007-05-06 05:13:17 +000069 std::auto_ptr<Module> M;
70
Chris Lattner9e9a34c2007-05-06 23:45:49 +000071 MemoryBuffer *Buffer = MemoryBuffer::getFileOrSTDIN(InputFilename);
Chris Lattner6d80e212007-05-06 09:29:57 +000072 if (Buffer == 0) {
Dan Gohmanee051522009-07-16 15:30:09 +000073 errs() << argv[0] << ": Error reading file '" + InputFilename + "'\n";
Chris Lattner6d80e212007-05-06 09:29:57 +000074 return 1;
Chris Lattner27936992007-05-06 05:13:17 +000075 } else {
Owen Anderson1cf085d2009-07-01 21:22:36 +000076 M.reset(ParseBitcodeFile(Buffer, Context));
Chris Lattner3b203f52004-02-18 16:53:59 +000077 }
Chris Lattner6d80e212007-05-06 09:29:57 +000078 delete Buffer;
Chris Lattner27936992007-05-06 05:13:17 +000079
80 if (M.get() == 0) {
Dan Gohmanee051522009-07-16 15:30:09 +000081 errs() << argv[0] << ": bitcode didn't read correctly.\n";
Chris Lattner27936992007-05-06 05:13:17 +000082 return 1;
83 }
84
85 // Figure out which function we should extract
Dan Gohman59ceb592009-04-20 16:19:02 +000086 GlobalVariable *G = !ExtractGlobal.empty() ?
Andrew Lenharth3f13b662008-03-07 19:51:57 +000087 M.get()->getNamedGlobal(ExtractGlobal) : 0;
88
89 // Figure out which function we should extract
Dan Gohman59ceb592009-04-20 16:19:02 +000090 if (ExtractFunc.empty() && ExtractGlobal.empty()) ExtractFunc = "main";
Andrew Lenharth3906c6a2008-03-07 20:07:24 +000091 Function *F = M.get()->getFunction(ExtractFunc);
Andrew Lenharth3f13b662008-03-07 19:51:57 +000092
93 if (F == 0 && G == 0) {
Dan Gohmanee051522009-07-16 15:30:09 +000094 errs() << argv[0] << ": program doesn't contain function named '"
95 << ExtractFunc << "' or a global named '" << ExtractGlobal << "'!\n";
Chris Lattner27936992007-05-06 05:13:17 +000096 return 1;
97 }
98
99 // In addition to deleting all other functions, we also want to spiff it
100 // up a little bit. Do this now.
101 PassManager Passes;
102 Passes.add(new TargetData(M.get())); // Use correct TargetData
103 // Either isolate the function or delete it from the Module
Andrew Lenharth3f13b662008-03-07 19:51:57 +0000104 std::vector<GlobalValue*> GVs;
105 if (F) GVs.push_back(F);
106 if (G) GVs.push_back(G);
107
108 Passes.add(createGVExtractionPass(GVs, DeleteFn, Relink));
Chris Lattner27936992007-05-06 05:13:17 +0000109 if (!DeleteFn)
110 Passes.add(createGlobalDCEPass()); // Delete unreachable globals
111 Passes.add(createDeadTypeEliminationPass()); // Remove dead types...
112 Passes.add(createStripDeadPrototypesPass()); // Remove dead func decls
113
Chris Lattnerabd17362009-08-23 02:56:05 +0000114 std::string ErrorInfo;
115 std::auto_ptr<raw_fd_ostream>
116 Out(new raw_fd_ostream(OutputFilename.c_str(), ErrorInfo,
Dan Gohman61a87962009-08-25 15:34:52 +0000117 raw_fd_ostream::F_Binary));
Chris Lattnerabd17362009-08-23 02:56:05 +0000118 if (!ErrorInfo.empty()) {
119 errs() << ErrorInfo << '\n';
Chris Lattnerabd17362009-08-23 02:56:05 +0000120 return 1;
Chris Lattner27936992007-05-06 05:13:17 +0000121 }
122
Dan Gohman61a87962009-08-25 15:34:52 +0000123 if (Force || !CheckBitcodeOutputToConsole(*Out, true))
124 Passes.add(createBitcodeWriterPass(*Out));
125
Chris Lattner27936992007-05-06 05:13:17 +0000126 Passes.run(*M.get());
127
Chris Lattner27936992007-05-06 05:13:17 +0000128 return 0;
Chris Lattner055de182002-05-22 20:27:00 +0000129}