Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1 | //===- llvm-extract.cpp - LLVM function extraction utility ----------------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 5f5a573 | 2007-12-29 20:44:31 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 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/Bitcode/ReaderWriter.h" |
| 18 | #include "llvm/Transforms/IPO.h" |
| 19 | #include "llvm/Target/TargetData.h" |
| 20 | #include "llvm/Support/CommandLine.h" |
| 21 | #include "llvm/Support/ManagedStatic.h" |
| 22 | #include "llvm/Support/MemoryBuffer.h" |
| 23 | #include "llvm/System/Signals.h" |
| 24 | #include <iostream> |
| 25 | #include <memory> |
| 26 | #include <fstream> |
| 27 | using namespace llvm; |
| 28 | |
| 29 | // InputFilename - The filename to read from. |
| 30 | static cl::opt<std::string> |
| 31 | InputFilename(cl::Positional, cl::desc("<input bitcode file>"), |
| 32 | cl::init("-"), cl::value_desc("filename")); |
| 33 | |
| 34 | static cl::opt<std::string> |
| 35 | OutputFilename("o", cl::desc("Specify output filename"), |
| 36 | cl::value_desc("filename"), cl::init("-")); |
| 37 | |
| 38 | static cl::opt<bool> |
| 39 | Force("f", cl::desc("Overwrite output files")); |
| 40 | |
| 41 | static cl::opt<bool> |
Andrew Lenharth | 38a1767 | 2008-03-07 19:51:57 +0000 | [diff] [blame] | 42 | DeleteFn("delete", cl::desc("Delete specified Globals from Module")); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 43 | |
| 44 | static cl::opt<bool> |
| 45 | Relink("relink", |
| 46 | cl::desc("Turn external linkage for callees of function to delete")); |
| 47 | |
Andrew Lenharth | 38a1767 | 2008-03-07 19:51:57 +0000 | [diff] [blame] | 48 | // ExtractFunc - The function to extract from the module... |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 49 | static cl::opt<std::string> |
Andrew Lenharth | 38a1767 | 2008-03-07 19:51:57 +0000 | [diff] [blame] | 50 | ExtractFunc("func", cl::desc("Specify function to extract"), cl::init(""), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 51 | cl::value_desc("function")); |
| 52 | |
Andrew Lenharth | 38a1767 | 2008-03-07 19:51:57 +0000 | [diff] [blame] | 53 | // ExtractGlobal - The global to extract from the module... |
| 54 | static cl::opt<std::string> |
| 55 | ExtractGlobal("glob", cl::desc("Specify global to extract"), cl::init(""), |
| 56 | cl::value_desc("global")); |
| 57 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 58 | int main(int argc, char **argv) { |
| 59 | llvm_shutdown_obj X; // Call llvm_shutdown() on exit. |
Dan Gohman | 6099df8 | 2007-10-08 15:45:12 +0000 | [diff] [blame] | 60 | cl::ParseCommandLineOptions(argc, argv, "llvm extractor\n"); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 61 | sys::PrintStackTraceOnErrorSignal(); |
| 62 | |
| 63 | std::auto_ptr<Module> M; |
| 64 | |
| 65 | MemoryBuffer *Buffer = MemoryBuffer::getFileOrSTDIN(InputFilename); |
| 66 | if (Buffer == 0) { |
Reid Spencer | 0e8e10d | 2007-08-08 21:19:01 +0000 | [diff] [blame] | 67 | cerr << argv[0] << ": Error reading file '" + InputFilename + "'\n"; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 68 | return 1; |
| 69 | } else { |
| 70 | M.reset(ParseBitcodeFile(Buffer)); |
| 71 | } |
| 72 | delete Buffer; |
| 73 | |
| 74 | if (M.get() == 0) { |
| 75 | cerr << argv[0] << ": bitcode didn't read correctly.\n"; |
| 76 | return 1; |
| 77 | } |
| 78 | |
| 79 | // Figure out which function we should extract |
Andrew Lenharth | 38a1767 | 2008-03-07 19:51:57 +0000 | [diff] [blame] | 80 | GlobalVariable *G = ExtractGlobal.size() ? |
| 81 | M.get()->getNamedGlobal(ExtractGlobal) : 0; |
| 82 | |
| 83 | // Figure out which function we should extract |
Andrew Lenharth | d931240 | 2008-03-07 20:10:54 +0000 | [diff] [blame] | 84 | if (!ExtractFunc.size() && !ExtractGlobal.size()) ExtractFunc = "main"; |
Andrew Lenharth | df35b3c | 2008-03-07 20:07:24 +0000 | [diff] [blame] | 85 | Function *F = M.get()->getFunction(ExtractFunc); |
Andrew Lenharth | 38a1767 | 2008-03-07 19:51:57 +0000 | [diff] [blame] | 86 | |
| 87 | if (F == 0 && G == 0) { |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 88 | cerr << argv[0] << ": program doesn't contain function named '" |
Andrew Lenharth | 38a1767 | 2008-03-07 19:51:57 +0000 | [diff] [blame] | 89 | << ExtractFunc << "' or a global named '" << ExtractGlobal << "'!\n"; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 90 | return 1; |
| 91 | } |
| 92 | |
| 93 | // In addition to deleting all other functions, we also want to spiff it |
| 94 | // up a little bit. Do this now. |
| 95 | PassManager Passes; |
| 96 | Passes.add(new TargetData(M.get())); // Use correct TargetData |
| 97 | // Either isolate the function or delete it from the Module |
Andrew Lenharth | 38a1767 | 2008-03-07 19:51:57 +0000 | [diff] [blame] | 98 | std::vector<GlobalValue*> GVs; |
| 99 | if (F) GVs.push_back(F); |
| 100 | if (G) GVs.push_back(G); |
| 101 | |
| 102 | Passes.add(createGVExtractionPass(GVs, DeleteFn, Relink)); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 103 | if (!DeleteFn) |
| 104 | Passes.add(createGlobalDCEPass()); // Delete unreachable globals |
| 105 | Passes.add(createDeadTypeEliminationPass()); // Remove dead types... |
| 106 | Passes.add(createStripDeadPrototypesPass()); // Remove dead func decls |
| 107 | |
| 108 | std::ostream *Out = 0; |
| 109 | |
| 110 | if (OutputFilename != "-") { // Not stdout? |
| 111 | if (!Force && std::ifstream(OutputFilename.c_str())) { |
| 112 | // If force is not specified, make sure not to overwrite a file! |
| 113 | cerr << argv[0] << ": error opening '" << OutputFilename |
| 114 | << "': file exists!\n" |
| 115 | << "Use -f command line argument to force output\n"; |
| 116 | return 1; |
| 117 | } |
| 118 | std::ios::openmode io_mode = std::ios::out | std::ios::trunc | |
| 119 | std::ios::binary; |
| 120 | Out = new std::ofstream(OutputFilename.c_str(), io_mode); |
| 121 | } else { // Specified stdout |
| 122 | // FIXME: cout is not binary! |
| 123 | Out = &std::cout; |
| 124 | } |
| 125 | |
| 126 | Passes.add(CreateBitcodeWriterPass(*Out)); |
| 127 | Passes.run(*M.get()); |
| 128 | |
| 129 | if (Out != &std::cout) |
| 130 | delete Out; |
| 131 | return 0; |
| 132 | } |