Move the function extractor pass from tools/extract into lib/Xform/IPO
[oota-llvm.git] / tools / llvm-extract / llvm-extract.cpp
1 //===----------------------------------------------------------------------===//
2 // LLVM extract Utility
3 //
4 // This utility changes the input module to only contain a single function,
5 // which is primarily used for debugging transformations.
6 //
7 //===----------------------------------------------------------------------===//
8
9 #include "llvm/Module.h"
10 #include "llvm/PassManager.h"
11 #include "llvm/Bytecode/Reader.h"
12 #include "llvm/Bytecode/WriteBytecodePass.h"
13 #include "llvm/Transforms/IPO.h"
14 #include "Support/CommandLine.h"
15 #include <memory>
16
17 // InputFilename - The filename to read from.
18 static cl::opt<std::string>
19 InputFilename(cl::Positional, cl::desc("<input bytecode file>"),
20               cl::init("-"), cl::value_desc("filename"));
21               
22
23 // ExtractFunc - The function to extract from the module... defaults to main.
24 static cl::opt<std::string>
25 ExtractFunc("func", cl::desc("Specify function to extract"), cl::init("main"),
26             cl::value_desc("function"));
27
28 int main(int argc, char **argv) {
29   cl::ParseCommandLineOptions(argc, argv, " llvm extractor\n");
30
31   std::auto_ptr<Module> M(ParseBytecodeFile(InputFilename));
32   if (M.get() == 0) {
33     std::cerr << argv[0] << ": bytecode didn't read correctly.\n";
34     return 1;
35   }
36
37   // Figure out which function we should extract
38   Function *F = M.get()->getNamedFunction(ExtractFunc);
39   if (F == 0) {
40     std::cerr << argv[0] << ": program doesn't contain function named '"
41               << ExtractFunc << "'!\n";
42     return 1;
43   }
44
45   // In addition to just parsing the input from GCC, we also want to spiff it up
46   // a little bit.  Do this now.
47   //
48   PassManager Passes;
49   Passes.add(createFunctionExtractionPass(F));    // Extract the function
50   Passes.add(createGlobalDCEPass());              // Delete unreachable globals
51   Passes.add(createFunctionResolvingPass());      // Delete prototypes
52   Passes.add(createDeadTypeEliminationPass());    // Remove dead types...
53   Passes.add(new WriteBytecodePass(&std::cout));  // Write bytecode to file...
54
55   Passes.run(*M.get());
56   return 0;
57 }