Misha Brukman | de03bc0 | 2005-04-24 17:36:05 +0000 | [diff] [blame] | 1 | //===- llvm-extract.cpp - LLVM function extraction utility ----------------===// |
Misha Brukman | 3da94ae | 2005-04-22 00:00:37 +0000 | [diff] [blame] | 2 | // |
John Criswell | 7c0e022 | 2003-10-20 17:47:21 +0000 | [diff] [blame] | 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 21c62da | 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. |
Misha Brukman | 3da94ae | 2005-04-22 00:00:37 +0000 | [diff] [blame] | 7 | // |
John Criswell | 7c0e022 | 2003-10-20 17:47:21 +0000 | [diff] [blame] | 8 | //===----------------------------------------------------------------------===// |
Chris Lattner | 579d914 | 2002-05-22 20:27:00 +0000 | [diff] [blame] | 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 | |
Owen Anderson | 8b477ed | 2009-07-01 16:58:40 +0000 | [diff] [blame] | 15 | #include "llvm/LLVMContext.h" |
Chris Lattner | 579d914 | 2002-05-22 20:27:00 +0000 | [diff] [blame] | 16 | #include "llvm/Module.h" |
| 17 | #include "llvm/PassManager.h" |
Dan Gohman | ec08046 | 2009-09-11 20:46:33 +0000 | [diff] [blame] | 18 | #include "llvm/Assembly/PrintModulePass.h" |
Chris Lattner | c48e1db | 2007-05-06 05:13:17 +0000 | [diff] [blame] | 19 | #include "llvm/Bitcode/ReaderWriter.h" |
Chris Lattner | 33974ca | 2002-07-23 22:04:40 +0000 | [diff] [blame] | 20 | #include "llvm/Transforms/IPO.h" |
Brian Gaeke | 2040890 | 2003-10-28 22:22:16 +0000 | [diff] [blame] | 21 | #include "llvm/Target/TargetData.h" |
Reid Spencer | 551ccae | 2004-09-01 22:55:40 +0000 | [diff] [blame] | 22 | #include "llvm/Support/CommandLine.h" |
Dan Gohman | ec08046 | 2009-09-11 20:46:33 +0000 | [diff] [blame] | 23 | #include "llvm/Support/IRReader.h" |
Chris Lattner | c30598b | 2006-12-06 01:18:01 +0000 | [diff] [blame] | 24 | #include "llvm/Support/ManagedStatic.h" |
Chris Lattner | cc14d25 | 2009-03-06 05:34:10 +0000 | [diff] [blame] | 25 | #include "llvm/Support/PrettyStackTrace.h" |
Dan Gohman | e4f1a9b | 2010-10-07 20:32:40 +0000 | [diff] [blame] | 26 | #include "llvm/Support/ToolOutputFile.h" |
Dan Gohman | baa2639 | 2009-08-25 15:34:52 +0000 | [diff] [blame] | 27 | #include "llvm/Support/SystemUtils.h" |
Michael J. Spencer | 1f6efa3 | 2010-11-29 18:16:10 +0000 | [diff] [blame] | 28 | #include "llvm/Support/Signals.h" |
Dan Gohman | be2d4e7 | 2010-09-23 00:33:13 +0000 | [diff] [blame] | 29 | #include "llvm/ADT/SmallPtrSet.h" |
Chris Lattner | 579d914 | 2002-05-22 20:27:00 +0000 | [diff] [blame] | 30 | #include <memory> |
Brian Gaeke | d0fde30 | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 31 | using namespace llvm; |
| 32 | |
Chris Lattner | 5ff62e9 | 2002-07-22 02:10:13 +0000 | [diff] [blame] | 33 | // InputFilename - The filename to read from. |
Chris Lattner | c7a0985 | 2002-07-25 16:31:09 +0000 | [diff] [blame] | 34 | static cl::opt<std::string> |
Gabor Greif | a99be51 | 2007-07-05 17:07:56 +0000 | [diff] [blame] | 35 | InputFilename(cl::Positional, cl::desc("<input bitcode file>"), |
Chris Lattner | 5ff62e9 | 2002-07-22 02:10:13 +0000 | [diff] [blame] | 36 | cl::init("-"), cl::value_desc("filename")); |
Misha Brukman | 3da94ae | 2005-04-22 00:00:37 +0000 | [diff] [blame] | 37 | |
Chris Lattner | ba9cc1f | 2004-02-18 16:53:59 +0000 | [diff] [blame] | 38 | static cl::opt<std::string> |
Misha Brukman | 3da94ae | 2005-04-22 00:00:37 +0000 | [diff] [blame] | 39 | OutputFilename("o", cl::desc("Specify output filename"), |
Chris Lattner | ba9cc1f | 2004-02-18 16:53:59 +0000 | [diff] [blame] | 40 | cl::value_desc("filename"), cl::init("-")); |
| 41 | |
| 42 | static cl::opt<bool> |
Dan Gohman | baa2639 | 2009-08-25 15:34:52 +0000 | [diff] [blame] | 43 | Force("f", cl::desc("Enable binary output on terminals")); |
Chris Lattner | 5ff62e9 | 2002-07-22 02:10:13 +0000 | [diff] [blame] | 44 | |
Misha Brukman | ca718e4 | 2004-04-22 23:07:39 +0000 | [diff] [blame] | 45 | static cl::opt<bool> |
Andrew Lenharth | d245a8a | 2008-03-07 19:51:57 +0000 | [diff] [blame] | 46 | DeleteFn("delete", cl::desc("Delete specified Globals from Module")); |
Misha Brukman | ca718e4 | 2004-04-22 23:07:39 +0000 | [diff] [blame] | 47 | |
Dan Gohman | a499d20 | 2010-02-10 23:58:53 +0000 | [diff] [blame] | 48 | // ExtractFuncs - The functions to extract from the module... |
| 49 | static cl::list<std::string> |
| 50 | ExtractFuncs("func", cl::desc("Specify function to extract"), |
| 51 | cl::ZeroOrMore, cl::value_desc("function")); |
Chris Lattner | 5ff62e9 | 2002-07-22 02:10:13 +0000 | [diff] [blame] | 52 | |
Dan Gohman | a499d20 | 2010-02-10 23:58:53 +0000 | [diff] [blame] | 53 | // ExtractGlobals - The globals to extract from the module... |
| 54 | static cl::list<std::string> |
| 55 | ExtractGlobals("glob", cl::desc("Specify global to extract"), |
| 56 | cl::ZeroOrMore, cl::value_desc("global")); |
Andrew Lenharth | d245a8a | 2008-03-07 19:51:57 +0000 | [diff] [blame] | 57 | |
Dan Gohman | ec08046 | 2009-09-11 20:46:33 +0000 | [diff] [blame] | 58 | static cl::opt<bool> |
| 59 | OutputAssembly("S", |
| 60 | cl::desc("Write output as LLVM assembly"), cl::Hidden); |
| 61 | |
Chris Lattner | 579d914 | 2002-05-22 20:27:00 +0000 | [diff] [blame] | 62 | int main(int argc, char **argv) { |
Chris Lattner | cc14d25 | 2009-03-06 05:34:10 +0000 | [diff] [blame] | 63 | // Print a stack trace if we signal out. |
Chris Lattner | c48e1db | 2007-05-06 05:13:17 +0000 | [diff] [blame] | 64 | sys::PrintStackTraceOnErrorSignal(); |
Chris Lattner | cc14d25 | 2009-03-06 05:34:10 +0000 | [diff] [blame] | 65 | PrettyStackTraceProgram X(argc, argv); |
Owen Anderson | 8b477ed | 2009-07-01 16:58:40 +0000 | [diff] [blame] | 66 | |
Owen Anderson | 0d7c695 | 2009-07-15 22:16:10 +0000 | [diff] [blame] | 67 | LLVMContext &Context = getGlobalContext(); |
Chris Lattner | cc14d25 | 2009-03-06 05:34:10 +0000 | [diff] [blame] | 68 | llvm_shutdown_obj Y; // Call llvm_shutdown() on exit. |
| 69 | cl::ParseCommandLineOptions(argc, argv, "llvm extractor\n"); |
Chris Lattner | 579d914 | 2002-05-22 20:27:00 +0000 | [diff] [blame] | 70 | |
Dan Gohman | 44f9533 | 2010-08-25 23:33:07 +0000 | [diff] [blame] | 71 | // Use lazy loading, since we only care about selected global values. |
Dan Gohman | ec08046 | 2009-09-11 20:46:33 +0000 | [diff] [blame] | 72 | SMDiagnostic Err; |
Chris Lattner | c48e1db | 2007-05-06 05:13:17 +0000 | [diff] [blame] | 73 | std::auto_ptr<Module> M; |
Dan Gohman | 44f9533 | 2010-08-25 23:33:07 +0000 | [diff] [blame] | 74 | M.reset(getLazyIRFileModule(InputFilename, Err, Context)); |
Dan Gohman | ec08046 | 2009-09-11 20:46:33 +0000 | [diff] [blame] | 75 | |
Chris Lattner | c48e1db | 2007-05-06 05:13:17 +0000 | [diff] [blame] | 76 | if (M.get() == 0) { |
Dan Gohman | ec08046 | 2009-09-11 20:46:33 +0000 | [diff] [blame] | 77 | Err.Print(argv[0], errs()); |
Chris Lattner | c48e1db | 2007-05-06 05:13:17 +0000 | [diff] [blame] | 78 | return 1; |
| 79 | } |
| 80 | |
Dan Gohman | a499d20 | 2010-02-10 23:58:53 +0000 | [diff] [blame] | 81 | std::vector<GlobalValue *> GVs; |
Andrew Lenharth | d245a8a | 2008-03-07 19:51:57 +0000 | [diff] [blame] | 82 | |
Dan Gohman | a499d20 | 2010-02-10 23:58:53 +0000 | [diff] [blame] | 83 | // Figure out which globals we should extract. |
| 84 | for (size_t i = 0, e = ExtractGlobals.size(); i != e; ++i) { |
| 85 | GlobalValue *GV = M.get()->getNamedGlobal(ExtractGlobals[i]); |
| 86 | if (!GV) { |
| 87 | errs() << argv[0] << ": program doesn't contain global named '" |
| 88 | << ExtractGlobals[i] << "'!\n"; |
| 89 | return 1; |
| 90 | } |
| 91 | GVs.push_back(GV); |
| 92 | } |
Andrew Lenharth | d245a8a | 2008-03-07 19:51:57 +0000 | [diff] [blame] | 93 | |
Dan Gohman | a499d20 | 2010-02-10 23:58:53 +0000 | [diff] [blame] | 94 | // Figure out which functions we should extract. |
| 95 | for (size_t i = 0, e = ExtractFuncs.size(); i != e; ++i) { |
| 96 | GlobalValue *GV = M.get()->getFunction(ExtractFuncs[i]); |
| 97 | if (!GV) { |
| 98 | errs() << argv[0] << ": program doesn't contain function named '" |
| 99 | << ExtractFuncs[i] << "'!\n"; |
| 100 | return 1; |
| 101 | } |
| 102 | GVs.push_back(GV); |
Chris Lattner | c48e1db | 2007-05-06 05:13:17 +0000 | [diff] [blame] | 103 | } |
| 104 | |
Dan Gohman | 44f9533 | 2010-08-25 23:33:07 +0000 | [diff] [blame] | 105 | // Materialize requisite global values. |
Dan Gohman | be2d4e7 | 2010-09-23 00:33:13 +0000 | [diff] [blame] | 106 | if (!DeleteFn) |
| 107 | for (size_t i = 0, e = GVs.size(); i != e; ++i) { |
| 108 | GlobalValue *GV = GVs[i]; |
| 109 | if (GV->isMaterializable()) { |
| 110 | std::string ErrInfo; |
| 111 | if (GV->Materialize(&ErrInfo)) { |
| 112 | errs() << argv[0] << ": error reading input: " << ErrInfo << "\n"; |
| 113 | return 1; |
| 114 | } |
| 115 | } |
| 116 | } |
| 117 | else { |
| 118 | // Deleting. Materialize every GV that's *not* in GVs. |
| 119 | SmallPtrSet<GlobalValue *, 8> GVSet(GVs.begin(), GVs.end()); |
| 120 | for (Module::global_iterator I = M->global_begin(), E = M->global_end(); |
| 121 | I != E; ++I) { |
| 122 | GlobalVariable *G = I; |
| 123 | if (!GVSet.count(G) && G->isMaterializable()) { |
| 124 | std::string ErrInfo; |
| 125 | if (G->Materialize(&ErrInfo)) { |
| 126 | errs() << argv[0] << ": error reading input: " << ErrInfo << "\n"; |
| 127 | return 1; |
| 128 | } |
| 129 | } |
| 130 | } |
| 131 | for (Module::iterator I = M->begin(), E = M->end(); I != E; ++I) { |
| 132 | Function *F = I; |
| 133 | if (!GVSet.count(F) && F->isMaterializable()) { |
| 134 | std::string ErrInfo; |
| 135 | if (F->Materialize(&ErrInfo)) { |
| 136 | errs() << argv[0] << ": error reading input: " << ErrInfo << "\n"; |
| 137 | return 1; |
| 138 | } |
Dan Gohman | 44f9533 | 2010-08-25 23:33:07 +0000 | [diff] [blame] | 139 | } |
| 140 | } |
| 141 | } |
| 142 | |
Chris Lattner | c48e1db | 2007-05-06 05:13:17 +0000 | [diff] [blame] | 143 | // In addition to deleting all other functions, we also want to spiff it |
| 144 | // up a little bit. Do this now. |
| 145 | PassManager Passes; |
| 146 | Passes.add(new TargetData(M.get())); // Use correct TargetData |
Andrew Lenharth | d245a8a | 2008-03-07 19:51:57 +0000 | [diff] [blame] | 147 | |
Dan Gohman | b4e3cda | 2010-08-26 00:22:55 +0000 | [diff] [blame] | 148 | Passes.add(createGVExtractionPass(GVs, DeleteFn)); |
Chris Lattner | c48e1db | 2007-05-06 05:13:17 +0000 | [diff] [blame] | 149 | if (!DeleteFn) |
| 150 | Passes.add(createGlobalDCEPass()); // Delete unreachable globals |
Devang Patel | c1874b7 | 2010-07-01 19:58:05 +0000 | [diff] [blame] | 151 | Passes.add(createStripDeadDebugInfoPass()); // Remove dead debug info |
Chris Lattner | c48e1db | 2007-05-06 05:13:17 +0000 | [diff] [blame] | 152 | Passes.add(createDeadTypeEliminationPass()); // Remove dead types... |
| 153 | Passes.add(createStripDeadPrototypesPass()); // Remove dead func decls |
| 154 | |
Chris Lattner | 51a1132 | 2009-08-23 02:56:05 +0000 | [diff] [blame] | 155 | std::string ErrorInfo; |
Dan Gohman | 2df9504 | 2010-08-20 01:12:13 +0000 | [diff] [blame] | 156 | tool_output_file Out(OutputFilename.c_str(), ErrorInfo, |
| 157 | raw_fd_ostream::F_Binary); |
Chris Lattner | 51a1132 | 2009-08-23 02:56:05 +0000 | [diff] [blame] | 158 | if (!ErrorInfo.empty()) { |
| 159 | errs() << ErrorInfo << '\n'; |
Chris Lattner | 51a1132 | 2009-08-23 02:56:05 +0000 | [diff] [blame] | 160 | return 1; |
Chris Lattner | c48e1db | 2007-05-06 05:13:17 +0000 | [diff] [blame] | 161 | } |
| 162 | |
Dan Gohman | ec08046 | 2009-09-11 20:46:33 +0000 | [diff] [blame] | 163 | if (OutputAssembly) |
Dan Gohman | d4c4543 | 2010-09-01 14:20:41 +0000 | [diff] [blame] | 164 | Passes.add(createPrintModulePass(&Out.os())); |
| 165 | else if (Force || !CheckBitcodeOutputToConsole(Out.os(), true)) |
| 166 | Passes.add(createBitcodeWriterPass(Out.os())); |
Dan Gohman | baa2639 | 2009-08-25 15:34:52 +0000 | [diff] [blame] | 167 | |
Chris Lattner | c48e1db | 2007-05-06 05:13:17 +0000 | [diff] [blame] | 168 | Passes.run(*M.get()); |
| 169 | |
Dan Gohman | 2df9504 | 2010-08-20 01:12:13 +0000 | [diff] [blame] | 170 | // Declare success. |
| 171 | Out.keep(); |
| 172 | |
Chris Lattner | c48e1db | 2007-05-06 05:13:17 +0000 | [diff] [blame] | 173 | return 0; |
Chris Lattner | 579d914 | 2002-05-22 20:27:00 +0000 | [diff] [blame] | 174 | } |