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 | // |
| 5 | // This file was developed by the LLVM research group and is distributed under |
| 6 | // the University of Illinois Open Source 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 | |
| 15 | #include "llvm/Module.h" |
| 16 | #include "llvm/PassManager.h" |
| 17 | #include "llvm/Bytecode/Reader.h" |
| 18 | #include "llvm/Bytecode/WriteBytecodePass.h" |
Chris Lattner | 33974ca | 2002-07-23 22:04:40 +0000 | [diff] [blame] | 19 | #include "llvm/Transforms/IPO.h" |
Brian Gaeke | 2040890 | 2003-10-28 22:22:16 +0000 | [diff] [blame] | 20 | #include "llvm/Target/TargetData.h" |
Reid Spencer | 551ccae | 2004-09-01 22:55:40 +0000 | [diff] [blame] | 21 | #include "llvm/Support/CommandLine.h" |
Chris Lattner | bed85ff | 2004-05-27 05:41:36 +0000 | [diff] [blame] | 22 | #include "llvm/System/Signals.h" |
Chris Lattner | 579d914 | 2002-05-22 20:27:00 +0000 | [diff] [blame] | 23 | #include <memory> |
Chris Lattner | ba9cc1f | 2004-02-18 16:53:59 +0000 | [diff] [blame] | 24 | #include <fstream> |
Brian Gaeke | d0fde30 | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 25 | using namespace llvm; |
| 26 | |
Chris Lattner | 5ff62e9 | 2002-07-22 02:10:13 +0000 | [diff] [blame] | 27 | // InputFilename - The filename to read from. |
Chris Lattner | c7a0985 | 2002-07-25 16:31:09 +0000 | [diff] [blame] | 28 | static cl::opt<std::string> |
Chris Lattner | 5ff62e9 | 2002-07-22 02:10:13 +0000 | [diff] [blame] | 29 | InputFilename(cl::Positional, cl::desc("<input bytecode file>"), |
| 30 | cl::init("-"), cl::value_desc("filename")); |
Misha Brukman | 3da94ae | 2005-04-22 00:00:37 +0000 | [diff] [blame] | 31 | |
Chris Lattner | ba9cc1f | 2004-02-18 16:53:59 +0000 | [diff] [blame] | 32 | static cl::opt<std::string> |
Misha Brukman | 3da94ae | 2005-04-22 00:00:37 +0000 | [diff] [blame] | 33 | OutputFilename("o", cl::desc("Specify output filename"), |
Chris Lattner | ba9cc1f | 2004-02-18 16:53:59 +0000 | [diff] [blame] | 34 | cl::value_desc("filename"), cl::init("-")); |
| 35 | |
| 36 | static cl::opt<bool> |
| 37 | Force("f", cl::desc("Overwrite output files")); |
Chris Lattner | 5ff62e9 | 2002-07-22 02:10:13 +0000 | [diff] [blame] | 38 | |
Misha Brukman | ca718e4 | 2004-04-22 23:07:39 +0000 | [diff] [blame] | 39 | static cl::opt<bool> |
| 40 | DeleteFn("delete", cl::desc("Delete specified function from Module")); |
| 41 | |
Chris Lattner | 5ff62e9 | 2002-07-22 02:10:13 +0000 | [diff] [blame] | 42 | // ExtractFunc - The function to extract from the module... defaults to main. |
Chris Lattner | c7a0985 | 2002-07-25 16:31:09 +0000 | [diff] [blame] | 43 | static cl::opt<std::string> |
Chris Lattner | 5ff62e9 | 2002-07-22 02:10:13 +0000 | [diff] [blame] | 44 | ExtractFunc("func", cl::desc("Specify function to extract"), cl::init("main"), |
| 45 | cl::value_desc("function")); |
| 46 | |
Chris Lattner | 579d914 | 2002-05-22 20:27:00 +0000 | [diff] [blame] | 47 | int main(int argc, char **argv) { |
Reid Spencer | 1ef8bda | 2004-12-30 05:36:08 +0000 | [diff] [blame] | 48 | try { |
| 49 | cl::ParseCommandLineOptions(argc, argv, " llvm extractor\n"); |
| 50 | sys::PrintStackTraceOnErrorSignal(); |
Chris Lattner | 579d914 | 2002-05-22 20:27:00 +0000 | [diff] [blame] | 51 | |
Reid Spencer | 1ef8bda | 2004-12-30 05:36:08 +0000 | [diff] [blame] | 52 | std::auto_ptr<Module> M(ParseBytecodeFile(InputFilename)); |
| 53 | if (M.get() == 0) { |
| 54 | std::cerr << argv[0] << ": bytecode didn't read correctly.\n"; |
Chris Lattner | ba9cc1f | 2004-02-18 16:53:59 +0000 | [diff] [blame] | 55 | return 1; |
| 56 | } |
Reid Spencer | 1ef8bda | 2004-12-30 05:36:08 +0000 | [diff] [blame] | 57 | |
| 58 | // Figure out which function we should extract |
| 59 | Function *F = M.get()->getNamedFunction(ExtractFunc); |
| 60 | if (F == 0) { |
| 61 | std::cerr << argv[0] << ": program doesn't contain function named '" |
| 62 | << ExtractFunc << "'!\n"; |
| 63 | return 1; |
| 64 | } |
| 65 | |
Jeff Cohen | 5fb6ed4 | 2005-01-22 17:36:17 +0000 | [diff] [blame] | 66 | // In addition to deleting all other functions, we also want to spiff it |
| 67 | // up a little bit. Do this now. |
Reid Spencer | 1ef8bda | 2004-12-30 05:36:08 +0000 | [diff] [blame] | 68 | PassManager Passes; |
| 69 | Passes.add(new TargetData("extract", M.get())); // Use correct TargetData |
| 70 | // Either isolate the function or delete it from the Module |
| 71 | Passes.add(createFunctionExtractionPass(F, DeleteFn)); |
Misha Brukman | de03bc0 | 2005-04-24 17:36:05 +0000 | [diff] [blame^] | 72 | Passes.add(createGlobalDCEPass()); // Delete unreachable globals |
| 73 | Passes.add(createFunctionResolvingPass()); // Delete prototypes |
| 74 | Passes.add(createDeadTypeEliminationPass()); // Remove dead types... |
Reid Spencer | 1ef8bda | 2004-12-30 05:36:08 +0000 | [diff] [blame] | 75 | |
| 76 | std::ostream *Out = 0; |
| 77 | |
| 78 | if (OutputFilename != "-") { // Not stdout? |
| 79 | if (!Force && std::ifstream(OutputFilename.c_str())) { |
| 80 | // If force is not specified, make sure not to overwrite a file! |
| 81 | std::cerr << argv[0] << ": error opening '" << OutputFilename |
| 82 | << "': file exists!\n" |
| 83 | << "Use -f command line argument to force output\n"; |
| 84 | return 1; |
| 85 | } |
Jeff Cohen | 5fb6ed4 | 2005-01-22 17:36:17 +0000 | [diff] [blame] | 86 | std::ios::openmode io_mode = std::ios::out | std::ios::trunc | |
| 87 | std::ios::binary; |
| 88 | Out = new std::ofstream(OutputFilename.c_str(), io_mode); |
Reid Spencer | 1ef8bda | 2004-12-30 05:36:08 +0000 | [diff] [blame] | 89 | } else { // Specified stdout |
Jeff Cohen | 5fb6ed4 | 2005-01-22 17:36:17 +0000 | [diff] [blame] | 90 | // FIXME: cout is not binary! |
Misha Brukman | 3da94ae | 2005-04-22 00:00:37 +0000 | [diff] [blame] | 91 | Out = &std::cout; |
Reid Spencer | 1ef8bda | 2004-12-30 05:36:08 +0000 | [diff] [blame] | 92 | } |
| 93 | |
| 94 | Passes.add(new WriteBytecodePass(Out)); // Write bytecode to file... |
| 95 | Passes.run(*M.get()); |
| 96 | |
| 97 | if (Out != &std::cout) |
| 98 | delete Out; |
| 99 | return 0; |
| 100 | } catch (const std::string& msg) { |
| 101 | std::cerr << argv[0] << ": " << msg << "\n"; |
| 102 | } catch (...) { |
| 103 | std::cerr << argv[0] << ": Unexpected unknown exception occurred.\n"; |
Chris Lattner | ba9cc1f | 2004-02-18 16:53:59 +0000 | [diff] [blame] | 104 | } |
Reid Spencer | 1ef8bda | 2004-12-30 05:36:08 +0000 | [diff] [blame] | 105 | return 1; |
Chris Lattner | 579d914 | 2002-05-22 20:27:00 +0000 | [diff] [blame] | 106 | } |