blob: 95822d03899bc709f4133d9ced78dda37f7b51b8 [file] [log] [blame]
Chris Lattner2148bcb2003-09-10 19:42:51 +00001//===- extract.cpp - LLVM function extraction utility ---------------------===//
John Criswell7c0e0222003-10-20 17:47:21 +00002//
3// 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.
7//
8//===----------------------------------------------------------------------===//
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"
17#include "llvm/Bytecode/Reader.h"
18#include "llvm/Bytecode/WriteBytecodePass.h"
Chris Lattner33974ca2002-07-23 22:04:40 +000019#include "llvm/Transforms/IPO.h"
Brian Gaeke20408902003-10-28 22:22:16 +000020#include "llvm/Target/TargetData.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000021#include "llvm/Support/CommandLine.h"
Chris Lattnerbed85ff2004-05-27 05:41:36 +000022#include "llvm/System/Signals.h"
Chris Lattner579d9142002-05-22 20:27:00 +000023#include <memory>
Chris Lattnerba9cc1f2004-02-18 16:53:59 +000024#include <fstream>
Brian Gaeked0fde302003-11-11 22:41:34 +000025using namespace llvm;
26
Chris Lattner5ff62e92002-07-22 02:10:13 +000027// InputFilename - The filename to read from.
Chris Lattnerc7a09852002-07-25 16:31:09 +000028static cl::opt<std::string>
Chris Lattner5ff62e92002-07-22 02:10:13 +000029InputFilename(cl::Positional, cl::desc("<input bytecode file>"),
30 cl::init("-"), cl::value_desc("filename"));
31
Chris Lattnerba9cc1f2004-02-18 16:53:59 +000032static cl::opt<std::string>
33OutputFilename("o", cl::desc("Specify output filename"),
34 cl::value_desc("filename"), cl::init("-"));
35
36static cl::opt<bool>
37Force("f", cl::desc("Overwrite output files"));
Chris Lattner5ff62e92002-07-22 02:10:13 +000038
Misha Brukmanca718e42004-04-22 23:07:39 +000039static cl::opt<bool>
40DeleteFn("delete", cl::desc("Delete specified function from Module"));
41
Chris Lattner5ff62e92002-07-22 02:10:13 +000042// ExtractFunc - The function to extract from the module... defaults to main.
Chris Lattnerc7a09852002-07-25 16:31:09 +000043static cl::opt<std::string>
Chris Lattner5ff62e92002-07-22 02:10:13 +000044ExtractFunc("func", cl::desc("Specify function to extract"), cl::init("main"),
45 cl::value_desc("function"));
46
Chris Lattner579d9142002-05-22 20:27:00 +000047int main(int argc, char **argv) {
48 cl::ParseCommandLineOptions(argc, argv, " llvm extractor\n");
Reid Spencer9de7b332004-08-29 19:28:55 +000049 sys::PrintStackTraceOnErrorSignal();
Chris Lattner579d9142002-05-22 20:27:00 +000050
51 std::auto_ptr<Module> M(ParseBytecodeFile(InputFilename));
52 if (M.get() == 0) {
Chris Lattner50e3a202002-07-30 21:43:22 +000053 std::cerr << argv[0] << ": bytecode didn't read correctly.\n";
Chris Lattner579d9142002-05-22 20:27:00 +000054 return 1;
55 }
56
Chris Lattner5113eb02002-11-19 18:42:59 +000057 // Figure out which function we should extract
58 Function *F = M.get()->getNamedFunction(ExtractFunc);
59 if (F == 0) {
60 std::cerr << argv[0] << ": program doesn't contain function named '"
61 << ExtractFunc << "'!\n";
62 return 1;
63 }
64
Chris Lattnerba9cc1f2004-02-18 16:53:59 +000065 // In addition to deleting all other functions, we also want to spiff it up a
66 // little bit. Do this now.
Chris Lattner579d9142002-05-22 20:27:00 +000067 //
68 PassManager Passes;
Brian Gaeke20408902003-10-28 22:22:16 +000069 Passes.add(new TargetData("extract", M.get())); // Use correct TargetData
Misha Brukmanca718e42004-04-22 23:07:39 +000070 // Either isolate the function or delete it from the Module
71 Passes.add(createFunctionExtractionPass(F, DeleteFn));
Chris Lattner579d9142002-05-22 20:27:00 +000072 Passes.add(createGlobalDCEPass()); // Delete unreachable globals
Chris Lattner68ed3182002-10-12 20:50:16 +000073 Passes.add(createFunctionResolvingPass()); // Delete prototypes
Chris Lattner33974ca2002-07-23 22:04:40 +000074 Passes.add(createDeadTypeEliminationPass()); // Remove dead types...
Chris Lattner579d9142002-05-22 20:27:00 +000075
Chris Lattnerba9cc1f2004-02-18 16:53:59 +000076 std::ostream *Out = 0;
77
78 if (OutputFilename != "-") { // Not stdout?
79 if (!Force && std::ifstream(OutputFilename.c_str())) {
80 // If force is not specified, make sure not to overwrite a file!
81 std::cerr << argv[0] << ": error opening '" << OutputFilename
82 << "': file exists!\n"
83 << "Use -f command line argument to force output\n";
84 return 1;
85 }
86 Out = new std::ofstream(OutputFilename.c_str());
87 } else { // Specified stdout
88 Out = &std::cout;
89 }
90
91 Passes.add(new WriteBytecodePass(Out)); // Write bytecode to file...
Chris Lattner7e708292002-06-25 16:13:24 +000092 Passes.run(*M.get());
Chris Lattnerba9cc1f2004-02-18 16:53:59 +000093
94 if (Out != &std::cout)
95 delete Out;
Chris Lattner579d9142002-05-22 20:27:00 +000096 return 0;
97}