blob: 60171c10e2f9540d5614909f2f2d1595bf71bfed [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//
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.
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 Lattner579d9142002-05-22 20:27:00 +000018#include "llvm/Bytecode/Reader.h"
19#include "llvm/Bytecode/WriteBytecodePass.h"
Chris Lattner33974ca2002-07-23 22:04:40 +000020#include "llvm/Transforms/IPO.h"
Brian Gaeke20408902003-10-28 22:22:16 +000021#include "llvm/Target/TargetData.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000022#include "llvm/Support/CommandLine.h"
Chris Lattnerf2e292c2007-02-07 21:41:02 +000023#include "llvm/Support/Compressor.h"
Chris Lattnerc30598b2006-12-06 01:18:01 +000024#include "llvm/Support/ManagedStatic.h"
Chris Lattnerc48e1db2007-05-06 05:13:17 +000025#include "llvm/Support/MemoryBuffer.h"
Bill Wendling68fe61d2006-11-29 00:19:40 +000026#include "llvm/Support/Streams.h"
Chris Lattnerbed85ff2004-05-27 05:41:36 +000027#include "llvm/System/Signals.h"
Bill Wendling68fe61d2006-11-29 00:19:40 +000028#include <iostream>
Chris Lattner579d9142002-05-22 20:27:00 +000029#include <memory>
Chris Lattnerba9cc1f2004-02-18 16:53:59 +000030#include <fstream>
Brian Gaeked0fde302003-11-11 22:41:34 +000031using namespace llvm;
32
Chris Lattnerc48e1db2007-05-06 05:13:17 +000033cl::opt<bool> Bitcode("bitcode");
34
Chris Lattner5ff62e92002-07-22 02:10:13 +000035// InputFilename - The filename to read from.
Chris Lattnerc7a09852002-07-25 16:31:09 +000036static cl::opt<std::string>
Chris Lattner5ff62e92002-07-22 02:10:13 +000037InputFilename(cl::Positional, cl::desc("<input bytecode file>"),
38 cl::init("-"), cl::value_desc("filename"));
Misha Brukman3da94ae2005-04-22 00:00:37 +000039
Chris Lattnerba9cc1f2004-02-18 16:53:59 +000040static cl::opt<std::string>
Misha Brukman3da94ae2005-04-22 00:00:37 +000041OutputFilename("o", cl::desc("Specify output filename"),
Chris Lattnerba9cc1f2004-02-18 16:53:59 +000042 cl::value_desc("filename"), cl::init("-"));
43
44static cl::opt<bool>
45Force("f", cl::desc("Overwrite output files"));
Chris Lattner5ff62e92002-07-22 02:10:13 +000046
Misha Brukmanca718e42004-04-22 23:07:39 +000047static cl::opt<bool>
48DeleteFn("delete", cl::desc("Delete specified function from Module"));
49
Anton Korobeynikovb10308e2007-01-28 13:31:35 +000050static cl::opt<bool>
51Relink("relink",
52 cl::desc("Turn external linkage for callees of function to delete"));
53
Chris Lattner5ff62e92002-07-22 02:10:13 +000054// ExtractFunc - The function to extract from the module... defaults to main.
Chris Lattnerc7a09852002-07-25 16:31:09 +000055static cl::opt<std::string>
Chris Lattner5ff62e92002-07-22 02:10:13 +000056ExtractFunc("func", cl::desc("Specify function to extract"), cl::init("main"),
57 cl::value_desc("function"));
58
Chris Lattner579d9142002-05-22 20:27:00 +000059int main(int argc, char **argv) {
Chris Lattnerc30598b2006-12-06 01:18:01 +000060 llvm_shutdown_obj X; // Call llvm_shutdown() on exit.
Chris Lattnerc48e1db2007-05-06 05:13:17 +000061 cl::ParseCommandLineOptions(argc, argv, " llvm extractor\n");
62 sys::PrintStackTraceOnErrorSignal();
Chris Lattner579d9142002-05-22 20:27:00 +000063
Chris Lattnerc48e1db2007-05-06 05:13:17 +000064 std::auto_ptr<Module> M;
65
66 if (Bitcode) {
67 MemoryBuffer *Buffer = MemoryBuffer::getFileOrSTDIN(&InputFilename[0],
68 InputFilename.size());
69 if (Buffer == 0) {
70 cerr << "Error reading file '" + InputFilename + "'";
Chris Lattnerba9cc1f2004-02-18 16:53:59 +000071 return 1;
Chris Lattnerc48e1db2007-05-06 05:13:17 +000072 } else {
73 M.reset(ParseBitcodeFile(Buffer));
Chris Lattnerba9cc1f2004-02-18 16:53:59 +000074 }
Chris Lattnerc48e1db2007-05-06 05:13:17 +000075 delete Buffer;
76 } else {
77 M.reset(ParseBytecodeFile(InputFilename,
78 Compressor::decompressToNewBuffer));
Chris Lattnerba9cc1f2004-02-18 16:53:59 +000079 }
Chris Lattnerc48e1db2007-05-06 05:13:17 +000080
81 if (M.get() == 0) {
82 cerr << argv[0] << ": bytecode didn't read correctly.\n";
83 return 1;
84 }
85
86 // Figure out which function we should extract
87 Function *F = M.get()->getFunction(ExtractFunc);
88 if (F == 0) {
89 cerr << argv[0] << ": program doesn't contain function named '"
90 << ExtractFunc << "'!\n";
91 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
99 Passes.add(createFunctionExtractionPass(F, DeleteFn, Relink));
100 if (!DeleteFn)
101 Passes.add(createGlobalDCEPass()); // Delete unreachable globals
102 Passes.add(createDeadTypeEliminationPass()); // Remove dead types...
103 Passes.add(createStripDeadPrototypesPass()); // Remove dead func decls
104
105 std::ostream *Out = 0;
106
107 if (OutputFilename != "-") { // Not stdout?
108 if (!Force && std::ifstream(OutputFilename.c_str())) {
109 // If force is not specified, make sure not to overwrite a file!
110 cerr << argv[0] << ": error opening '" << OutputFilename
111 << "': file exists!\n"
112 << "Use -f command line argument to force output\n";
113 return 1;
114 }
115 std::ios::openmode io_mode = std::ios::out | std::ios::trunc |
116 std::ios::binary;
117 Out = new std::ofstream(OutputFilename.c_str(), io_mode);
118 } else { // Specified stdout
119 // FIXME: cout is not binary!
120 Out = &std::cout;
121 }
122
123 OStream L(*Out);
124 if (Bitcode)
125 Passes.add(CreateBitcodeWriterPass(*Out));
126 else
127 Passes.add(new WriteBytecodePass(&L)); // Write bytecode to file...
128 Passes.run(*M.get());
129
130 if (Out != &std::cout)
131 delete Out;
132 return 0;
Chris Lattner579d9142002-05-22 20:27:00 +0000133}