7a6a1c101ecaa6d93d2f57f3181893a8d65cc194
[oota-llvm.git] / tools / extract / 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/GlobalVariable.h"
14 #include "llvm/Function.h"
15 #include "llvm/Transforms/IPO/GlobalDCE.h"
16 #include "llvm/Transforms/ConstantMerge.h"
17 #include "llvm/Transforms/CleanupGCCOutput.h"
18 #include "Support/CommandLine.h"
19 #include <memory>
20
21 static cl::String InputFilename("", "Specify input bytecode file", 0, "-");
22 static cl::String ExtractFunc("func", "Specify function to extract", 0, "main");
23
24 struct FunctionExtractorPass : public Pass {
25   const char *getPassName() const { return "Function Extractor"; }
26
27   bool run(Module *M) {
28     // Mark all global variables to be internal
29     for (Module::giterator I = M->gbegin(), E = M->gend(); I != E; ++I)
30       (*I)->setInternalLinkage(true);
31
32     Function *Named = 0;
33
34     // Loop over all of the functions in the module, dropping all references in
35     // functions that are not the named function.
36     for (Module::iterator I = M->begin(), E = M->end(); I != E;)
37       // Check to see if this is the named function!
38       if (!Named && (*I)->getName() == ExtractFunc) {
39         // Yes, it is.  Keep track of it...
40         Named = *I;
41
42         // Remove the named function from the module.
43         M->getFunctionList().remove(I);
44         E = M->end();
45       } else {
46         // Nope it's not the named function, delete the body of the function
47         (*I)->dropAllReferences();
48         ++I;
49       }
50
51     // All of the functions that still have uses now must be used by global
52     // variables or the named function.  Loop through them and create a new,
53     // external function for the used ones... making all uses point to the new
54     // functions.
55     std::vector<Function*> NewFunctions;
56     
57     for (Module::iterator I = M->begin(), E = M->end(); I != E; ++I)
58       if (!(*I)->use_empty()) {
59         Function *New = new Function((*I)->getFunctionType(), false,
60                                      (*I)->getName());
61         (*I)->replaceAllUsesWith(New);
62         NewFunctions.push_back(New);
63       }
64     
65     // Now the module only has unused functions with their references dropped.
66     // Delete them all now!
67     M->getFunctionList().delete_all();
68
69     // Re-insert the named function...
70     if (Named)
71       M->getFunctionList().push_back(Named);
72     else
73       std::cerr << "Warning: Function '" << ExtractFunc << "' not found!\n";
74     
75     // Insert all of the function stubs...
76     M->getFunctionList().insert(M->end(), NewFunctions.begin(),
77                                 NewFunctions.end());
78     return true;
79   }
80 };
81
82
83 int main(int argc, char **argv) {
84   cl::ParseCommandLineOptions(argc, argv, " llvm extractor\n");
85
86   std::auto_ptr<Module> M(ParseBytecodeFile(InputFilename));
87   if (M.get() == 0) {
88     std::cerr << "bytecode didn't read correctly.\n";
89     return 1;
90   }
91
92   // In addition to just parsing the input from GCC, we also want to spiff it up
93   // a little bit.  Do this now.
94   //
95   PassManager Passes;
96   Passes.add(new FunctionExtractorPass());
97   Passes.add(createGlobalDCEPass());              // Delete unreachable globals
98   Passes.add(createConstantMergePass());          // Merge dup global constants
99   Passes.add(createCleanupGCCOutputPass());       // Fix gccisms
100   Passes.add(new WriteBytecodePass(&std::cout));  // Write bytecode to file...
101
102   Passes.run(M.get());
103   return 0;
104 }