Make sure to print a stack trace whenever an error signal is delivered to
[oota-llvm.git] / tools / llvm-extract / llvm-extract.cpp
1 //===- extract.cpp - LLVM function extraction utility ---------------------===//
2 // 
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 //===----------------------------------------------------------------------===//
9 //
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"
19 #include "llvm/Transforms/IPO.h"
20 #include "llvm/Target/TargetData.h"
21 #include "Support/CommandLine.h"
22 #include "Support/Signals.h"
23 #include <memory>
24 #include <fstream>
25 using namespace llvm;
26
27 // InputFilename - The filename to read from.
28 static cl::opt<std::string>
29 InputFilename(cl::Positional, cl::desc("<input bytecode file>"),
30               cl::init("-"), cl::value_desc("filename"));
31               
32 static cl::opt<std::string>
33 OutputFilename("o", cl::desc("Specify output filename"), 
34                cl::value_desc("filename"), cl::init("-"));
35
36 static cl::opt<bool>
37 Force("f", cl::desc("Overwrite output files"));
38
39 // ExtractFunc - The function to extract from the module... defaults to main.
40 static cl::opt<std::string>
41 ExtractFunc("func", cl::desc("Specify function to extract"), cl::init("main"),
42             cl::value_desc("function"));
43
44 int main(int argc, char **argv) {
45   cl::ParseCommandLineOptions(argc, argv, " llvm extractor\n");
46   PrintStackTraceOnErrorSignal();
47
48   std::auto_ptr<Module> M(ParseBytecodeFile(InputFilename));
49   if (M.get() == 0) {
50     std::cerr << argv[0] << ": bytecode didn't read correctly.\n";
51     return 1;
52   }
53
54   // Figure out which function we should extract
55   Function *F = M.get()->getNamedFunction(ExtractFunc);
56   if (F == 0) {
57     std::cerr << argv[0] << ": program doesn't contain function named '"
58               << ExtractFunc << "'!\n";
59     return 1;
60   }
61
62   // In addition to deleting all other functions, we also want to spiff it up a
63   // little bit.  Do this now.
64   //
65   PassManager Passes;
66   Passes.add(new TargetData("extract", M.get())); // Use correct TargetData
67   Passes.add(createFunctionExtractionPass(F));    // Extract the function
68   Passes.add(createGlobalDCEPass());              // Delete unreachable globals
69   Passes.add(createFunctionResolvingPass());      // Delete prototypes
70   Passes.add(createDeadTypeEliminationPass());    // Remove dead types...
71
72   std::ostream *Out = 0;
73
74   if (OutputFilename != "-") {  // Not stdout?
75     if (!Force && std::ifstream(OutputFilename.c_str())) {
76       // If force is not specified, make sure not to overwrite a file!
77       std::cerr << argv[0] << ": error opening '" << OutputFilename
78                 << "': file exists!\n"
79                 << "Use -f command line argument to force output\n";
80       return 1;
81     }
82     Out = new std::ofstream(OutputFilename.c_str());
83   } else {                      // Specified stdout
84     Out = &std::cout;       
85   }
86
87   Passes.add(new WriteBytecodePass(Out));  // Write bytecode to file...
88   Passes.run(*M.get());
89
90   if (Out != &std::cout)
91     delete Out;
92   return 0;
93 }