blob: b480e13748506787b60a82a7335fea60e8abcbab [file] [log] [blame]
Chris Lattner579d9142002-05-22 20:27:00 +00001//===----------------------------------------------------------------------===//
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"
Chris Lattner33974ca2002-07-23 22:04:40 +000016#include "llvm/Transforms/IPO.h"
Chris Lattner579d9142002-05-22 20:27:00 +000017#include "Support/CommandLine.h"
18#include <memory>
19
Chris Lattner5ff62e92002-07-22 02:10:13 +000020// InputFilename - The filename to read from.
21static cl::opt<string>
22InputFilename(cl::Positional, cl::desc("<input bytecode file>"),
23 cl::init("-"), cl::value_desc("filename"));
24
25
26// ExtractFunc - The function to extract from the module... defaults to main.
27static cl::opt<string>
28ExtractFunc("func", cl::desc("Specify function to extract"), cl::init("main"),
29 cl::value_desc("function"));
30
Chris Lattner579d9142002-05-22 20:27:00 +000031
32struct FunctionExtractorPass : public Pass {
Chris Lattner7e708292002-06-25 16:13:24 +000033 bool run(Module &M) {
Chris Lattner579d9142002-05-22 20:27:00 +000034 // Mark all global variables to be internal
Chris Lattner7e708292002-06-25 16:13:24 +000035 for (Module::giterator I = M.gbegin(), E = M.gend(); I != E; ++I)
36 I->setInternalLinkage(true);
Chris Lattner579d9142002-05-22 20:27:00 +000037
38 Function *Named = 0;
39
40 // Loop over all of the functions in the module, dropping all references in
41 // functions that are not the named function.
Chris Lattner7e708292002-06-25 16:13:24 +000042 for (Module::iterator I = M.begin(), E = M.end(); I != E;)
Chris Lattner579d9142002-05-22 20:27:00 +000043 // Check to see if this is the named function!
Chris Lattner7e708292002-06-25 16:13:24 +000044 if (!Named && I->getName() == ExtractFunc) {
Chris Lattner579d9142002-05-22 20:27:00 +000045 // Yes, it is. Keep track of it...
Chris Lattner7e708292002-06-25 16:13:24 +000046 Named = I;
Chris Lattner579d9142002-05-22 20:27:00 +000047
Chris Lattner6a135922002-05-23 18:36:25 +000048 // Make sure it's globally accessable...
49 Named->setInternalLinkage(false);
50
Chris Lattner579d9142002-05-22 20:27:00 +000051 // Remove the named function from the module.
Chris Lattner7e708292002-06-25 16:13:24 +000052 M.getFunctionList().remove(I);
Chris Lattner579d9142002-05-22 20:27:00 +000053 } else {
54 // Nope it's not the named function, delete the body of the function
Chris Lattner7e708292002-06-25 16:13:24 +000055 I->dropAllReferences();
Chris Lattner579d9142002-05-22 20:27:00 +000056 ++I;
57 }
58
59 // All of the functions that still have uses now must be used by global
60 // variables or the named function. Loop through them and create a new,
61 // external function for the used ones... making all uses point to the new
62 // functions.
63 std::vector<Function*> NewFunctions;
64
Chris Lattner7e708292002-06-25 16:13:24 +000065 for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I)
66 if (!I->use_empty()) {
67 Function *New = new Function(I->getFunctionType(), false, I->getName());
68 I->replaceAllUsesWith(New);
Chris Lattner579d9142002-05-22 20:27:00 +000069 NewFunctions.push_back(New);
70 }
71
72 // Now the module only has unused functions with their references dropped.
73 // Delete them all now!
Chris Lattner7e708292002-06-25 16:13:24 +000074 M.getFunctionList().clear();
Chris Lattner579d9142002-05-22 20:27:00 +000075
76 // Re-insert the named function...
77 if (Named)
Chris Lattner7e708292002-06-25 16:13:24 +000078 M.getFunctionList().push_back(Named);
Chris Lattner579d9142002-05-22 20:27:00 +000079 else
80 std::cerr << "Warning: Function '" << ExtractFunc << "' not found!\n";
81
82 // Insert all of the function stubs...
Chris Lattner7e708292002-06-25 16:13:24 +000083 M.getFunctionList().insert(M.end(), NewFunctions.begin(),
84 NewFunctions.end());
Chris Lattner579d9142002-05-22 20:27:00 +000085 return true;
86 }
87};
88
89
Chris Lattner33974ca2002-07-23 22:04:40 +000090static RegisterPass<FunctionExtractorPass> X("extract", "Function Extractor");
91
92
Chris Lattner579d9142002-05-22 20:27:00 +000093int main(int argc, char **argv) {
94 cl::ParseCommandLineOptions(argc, argv, " llvm extractor\n");
95
96 std::auto_ptr<Module> M(ParseBytecodeFile(InputFilename));
97 if (M.get() == 0) {
98 std::cerr << "bytecode didn't read correctly.\n";
99 return 1;
100 }
101
102 // In addition to just parsing the input from GCC, we also want to spiff it up
103 // a little bit. Do this now.
104 //
105 PassManager Passes;
106 Passes.add(new FunctionExtractorPass());
107 Passes.add(createGlobalDCEPass()); // Delete unreachable globals
108 Passes.add(createConstantMergePass()); // Merge dup global constants
Chris Lattner33974ca2002-07-23 22:04:40 +0000109 Passes.add(createDeadTypeEliminationPass()); // Remove dead types...
Chris Lattner579d9142002-05-22 20:27:00 +0000110 Passes.add(new WriteBytecodePass(&std::cout)); // Write bytecode to file...
111
Chris Lattner7e708292002-06-25 16:13:24 +0000112 Passes.run(*M.get());
Chris Lattner579d9142002-05-22 20:27:00 +0000113 return 0;
114}