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