blob: 7a16acfc071bda7d6d66a38b424799a4ebd8f58d [file] [log] [blame]
Misha Brukmande03bc02005-04-24 17:36:05 +00001//===- llvm-extract.cpp - LLVM function extraction utility ----------------===//
Misha Brukman3da94ae2005-04-22 00:00:37 +00002//
John Criswell7c0e0222003-10-20 17:47:21 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner21c62da2007-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 Brukman3da94ae2005-04-22 00:00:37 +00007//
John Criswell7c0e0222003-10-20 17:47:21 +00008//===----------------------------------------------------------------------===//
Chris Lattner579d9142002-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
15#include "llvm/Module.h"
16#include "llvm/PassManager.h"
Chris Lattnerc48e1db2007-05-06 05:13:17 +000017#include "llvm/Bitcode/ReaderWriter.h"
Chris Lattner33974ca2002-07-23 22:04:40 +000018#include "llvm/Transforms/IPO.h"
Brian Gaeke20408902003-10-28 22:22:16 +000019#include "llvm/Target/TargetData.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000020#include "llvm/Support/CommandLine.h"
Chris Lattnerc30598b2006-12-06 01:18:01 +000021#include "llvm/Support/ManagedStatic.h"
Chris Lattnerc48e1db2007-05-06 05:13:17 +000022#include "llvm/Support/MemoryBuffer.h"
Chris Lattnerbed85ff2004-05-27 05:41:36 +000023#include "llvm/System/Signals.h"
Bill Wendling68fe61d2006-11-29 00:19:40 +000024#include <iostream>
Chris Lattner579d9142002-05-22 20:27:00 +000025#include <memory>
Chris Lattnerba9cc1f2004-02-18 16:53:59 +000026#include <fstream>
Brian Gaeked0fde302003-11-11 22:41:34 +000027using namespace llvm;
28
Chris Lattner5ff62e92002-07-22 02:10:13 +000029// InputFilename - The filename to read from.
Chris Lattnerc7a09852002-07-25 16:31:09 +000030static cl::opt<std::string>
Gabor Greifa99be512007-07-05 17:07:56 +000031InputFilename(cl::Positional, cl::desc("<input bitcode file>"),
Chris Lattner5ff62e92002-07-22 02:10:13 +000032 cl::init("-"), cl::value_desc("filename"));
Misha Brukman3da94ae2005-04-22 00:00:37 +000033
Chris Lattnerba9cc1f2004-02-18 16:53:59 +000034static cl::opt<std::string>
Misha Brukman3da94ae2005-04-22 00:00:37 +000035OutputFilename("o", cl::desc("Specify output filename"),
Chris Lattnerba9cc1f2004-02-18 16:53:59 +000036 cl::value_desc("filename"), cl::init("-"));
37
38static cl::opt<bool>
39Force("f", cl::desc("Overwrite output files"));
Chris Lattner5ff62e92002-07-22 02:10:13 +000040
Misha Brukmanca718e42004-04-22 23:07:39 +000041static cl::opt<bool>
Andrew Lenharthd245a8a2008-03-07 19:51:57 +000042DeleteFn("delete", cl::desc("Delete specified Globals from Module"));
Misha Brukmanca718e42004-04-22 23:07:39 +000043
Anton Korobeynikovb10308e2007-01-28 13:31:35 +000044static cl::opt<bool>
45Relink("relink",
46 cl::desc("Turn external linkage for callees of function to delete"));
47
Andrew Lenharthd245a8a2008-03-07 19:51:57 +000048// ExtractFunc - The function to extract from the module...
Chris Lattnerc7a09852002-07-25 16:31:09 +000049static cl::opt<std::string>
Andrew Lenharthd245a8a2008-03-07 19:51:57 +000050ExtractFunc("func", cl::desc("Specify function to extract"), cl::init(""),
Chris Lattner5ff62e92002-07-22 02:10:13 +000051 cl::value_desc("function"));
52
Andrew Lenharthd245a8a2008-03-07 19:51:57 +000053// ExtractGlobal - The global to extract from the module...
54static cl::opt<std::string>
55ExtractGlobal("glob", cl::desc("Specify global to extract"), cl::init(""),
56 cl::value_desc("global"));
57
Chris Lattner579d9142002-05-22 20:27:00 +000058int main(int argc, char **argv) {
Chris Lattnerc30598b2006-12-06 01:18:01 +000059 llvm_shutdown_obj X; // Call llvm_shutdown() on exit.
Dan Gohman82a13c92007-10-08 15:45:12 +000060 cl::ParseCommandLineOptions(argc, argv, "llvm extractor\n");
Chris Lattnerc48e1db2007-05-06 05:13:17 +000061 sys::PrintStackTraceOnErrorSignal();
Chris Lattner579d9142002-05-22 20:27:00 +000062
Chris Lattnerc48e1db2007-05-06 05:13:17 +000063 std::auto_ptr<Module> M;
64
Chris Lattner065344d2007-05-06 23:45:49 +000065 MemoryBuffer *Buffer = MemoryBuffer::getFileOrSTDIN(InputFilename);
Chris Lattner44dadff2007-05-06 09:29:57 +000066 if (Buffer == 0) {
Reid Spencerd2887e42007-08-08 21:19:01 +000067 cerr << argv[0] << ": Error reading file '" + InputFilename + "'\n";
Chris Lattner44dadff2007-05-06 09:29:57 +000068 return 1;
Chris Lattnerc48e1db2007-05-06 05:13:17 +000069 } else {
Chris Lattner44dadff2007-05-06 09:29:57 +000070 M.reset(ParseBitcodeFile(Buffer));
Chris Lattnerba9cc1f2004-02-18 16:53:59 +000071 }
Chris Lattner44dadff2007-05-06 09:29:57 +000072 delete Buffer;
Chris Lattnerc48e1db2007-05-06 05:13:17 +000073
74 if (M.get() == 0) {
Gabor Greifa99be512007-07-05 17:07:56 +000075 cerr << argv[0] << ": bitcode didn't read correctly.\n";
Chris Lattnerc48e1db2007-05-06 05:13:17 +000076 return 1;
77 }
78
79 // Figure out which function we should extract
Andrew Lenharthd245a8a2008-03-07 19:51:57 +000080 GlobalVariable *G = ExtractGlobal.size() ?
81 M.get()->getNamedGlobal(ExtractGlobal) : 0;
82
83 // Figure out which function we should extract
84 Function *F = ExtractFunc.size() ?
85 M.get()->getFunction(ExtractFunc) :
86 M.get()->getFunction("main");
87
88 if (F == 0 && G == 0) {
Chris Lattnerc48e1db2007-05-06 05:13:17 +000089 cerr << argv[0] << ": program doesn't contain function named '"
Andrew Lenharthd245a8a2008-03-07 19:51:57 +000090 << ExtractFunc << "' or a global named '" << ExtractGlobal << "'!\n";
Chris Lattnerc48e1db2007-05-06 05:13:17 +000091 return 1;
92 }
93
94 // In addition to deleting all other functions, we also want to spiff it
95 // up a little bit. Do this now.
96 PassManager Passes;
97 Passes.add(new TargetData(M.get())); // Use correct TargetData
98 // Either isolate the function or delete it from the Module
Andrew Lenharthd245a8a2008-03-07 19:51:57 +000099 std::vector<GlobalValue*> GVs;
100 if (F) GVs.push_back(F);
101 if (G) GVs.push_back(G);
102
103 Passes.add(createGVExtractionPass(GVs, DeleteFn, Relink));
Chris Lattnerc48e1db2007-05-06 05:13:17 +0000104 if (!DeleteFn)
105 Passes.add(createGlobalDCEPass()); // Delete unreachable globals
106 Passes.add(createDeadTypeEliminationPass()); // Remove dead types...
107 Passes.add(createStripDeadPrototypesPass()); // Remove dead func decls
108
109 std::ostream *Out = 0;
110
111 if (OutputFilename != "-") { // Not stdout?
112 if (!Force && std::ifstream(OutputFilename.c_str())) {
113 // If force is not specified, make sure not to overwrite a file!
114 cerr << argv[0] << ": error opening '" << OutputFilename
115 << "': file exists!\n"
116 << "Use -f command line argument to force output\n";
117 return 1;
118 }
119 std::ios::openmode io_mode = std::ios::out | std::ios::trunc |
120 std::ios::binary;
121 Out = new std::ofstream(OutputFilename.c_str(), io_mode);
122 } else { // Specified stdout
123 // FIXME: cout is not binary!
124 Out = &std::cout;
125 }
126
Chris Lattner44dadff2007-05-06 09:29:57 +0000127 Passes.add(CreateBitcodeWriterPass(*Out));
Chris Lattnerc48e1db2007-05-06 05:13:17 +0000128 Passes.run(*M.get());
129
130 if (Out != &std::cout)
131 delete Out;
132 return 0;
Chris Lattner579d9142002-05-22 20:27:00 +0000133}