Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1 | //===-- llvm-dis.cpp - The low-level LLVM disassembler --------------------===// |
| 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 may be invoked in the following manner: |
| 11 | // llvm-dis [options] - Read LLVM bitcode from stdin, write asm to stdout |
| 12 | // llvm-dis [options] x.bc - Read LLVM bitcode from the x.bc file, write asm |
| 13 | // to the x.ll file. |
| 14 | // Options: |
| 15 | // --help - Output information about command line switches |
| 16 | // |
| 17 | //===----------------------------------------------------------------------===// |
| 18 | |
Owen Anderson | 25209b4 | 2009-07-01 16:58:40 +0000 | [diff] [blame^] | 19 | #include "llvm/LLVMContext.h" |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 20 | #include "llvm/Module.h" |
| 21 | #include "llvm/PassManager.h" |
| 22 | #include "llvm/Bitcode/ReaderWriter.h" |
| 23 | #include "llvm/Assembly/PrintModulePass.h" |
| 24 | #include "llvm/Support/CommandLine.h" |
| 25 | #include "llvm/Support/ManagedStatic.h" |
| 26 | #include "llvm/Support/MemoryBuffer.h" |
Chris Lattner | e6012df | 2009-03-06 05:34:10 +0000 | [diff] [blame] | 27 | #include "llvm/Support/PrettyStackTrace.h" |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 28 | #include "llvm/Support/Streams.h" |
Daniel Dunbar | 3b475e9 | 2008-10-22 03:25:22 +0000 | [diff] [blame] | 29 | #include "llvm/Support/raw_ostream.h" |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 30 | #include "llvm/System/Signals.h" |
| 31 | #include <iostream> |
| 32 | #include <fstream> |
| 33 | #include <memory> |
| 34 | using namespace llvm; |
| 35 | |
| 36 | static cl::opt<std::string> |
| 37 | InputFilename(cl::Positional, cl::desc("<input bitcode>"), cl::init("-")); |
| 38 | |
| 39 | static cl::opt<std::string> |
| 40 | OutputFilename("o", cl::desc("Override output filename"), |
| 41 | cl::value_desc("filename")); |
| 42 | |
| 43 | static cl::opt<bool> |
| 44 | Force("f", cl::desc("Overwrite output files")); |
| 45 | |
| 46 | static cl::opt<bool> |
| 47 | DontPrint("disable-output", cl::desc("Don't output the .ll file"), cl::Hidden); |
| 48 | |
| 49 | int main(int argc, char **argv) { |
Chris Lattner | e6012df | 2009-03-06 05:34:10 +0000 | [diff] [blame] | 50 | // Print a stack trace if we signal out. |
| 51 | sys::PrintStackTraceOnErrorSignal(); |
| 52 | PrettyStackTraceProgram X(argc, argv); |
| 53 | |
Owen Anderson | 25209b4 | 2009-07-01 16:58:40 +0000 | [diff] [blame^] | 54 | LLVMContext Context; |
Chris Lattner | e6012df | 2009-03-06 05:34:10 +0000 | [diff] [blame] | 55 | llvm_shutdown_obj Y; // Call llvm_shutdown() on exit. |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 56 | try { |
Dan Gohman | 6099df8 | 2007-10-08 15:45:12 +0000 | [diff] [blame] | 57 | cl::ParseCommandLineOptions(argc, argv, "llvm .bc -> .ll disassembler\n"); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 58 | |
| 59 | std::ostream *Out = &std::cout; // Default to printing to stdout. |
| 60 | std::string ErrorMessage; |
| 61 | |
| 62 | std::auto_ptr<Module> M; |
| 63 | |
| 64 | if (MemoryBuffer *Buffer |
| 65 | = MemoryBuffer::getFileOrSTDIN(InputFilename, &ErrorMessage)) { |
Owen Anderson | 25209b4 | 2009-07-01 16:58:40 +0000 | [diff] [blame^] | 66 | M.reset(ParseBitcodeFile(Buffer, &Context, &ErrorMessage)); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 67 | delete Buffer; |
| 68 | } |
| 69 | |
| 70 | if (M.get() == 0) { |
| 71 | cerr << argv[0] << ": "; |
| 72 | if (ErrorMessage.size()) |
| 73 | cerr << ErrorMessage << "\n"; |
| 74 | else |
| 75 | cerr << "bitcode didn't read correctly.\n"; |
| 76 | return 1; |
| 77 | } |
| 78 | |
| 79 | if (DontPrint) { |
| 80 | // Just use stdout. We won't actually print anything on it. |
| 81 | } else if (OutputFilename != "") { // Specified an output filename? |
| 82 | if (OutputFilename != "-") { // Not stdout? |
| 83 | if (!Force && std::ifstream(OutputFilename.c_str())) { |
| 84 | // If force is not specified, make sure not to overwrite a file! |
| 85 | cerr << argv[0] << ": error opening '" << OutputFilename |
| 86 | << "': file exists! Sending to standard output.\n"; |
| 87 | } else { |
| 88 | Out = new std::ofstream(OutputFilename.c_str()); |
| 89 | } |
| 90 | } |
| 91 | } else { |
| 92 | if (InputFilename == "-") { |
| 93 | OutputFilename = "-"; |
| 94 | } else { |
| 95 | std::string IFN = InputFilename; |
| 96 | int Len = IFN.length(); |
| 97 | if (IFN[Len-3] == '.' && IFN[Len-2] == 'b' && IFN[Len-1] == 'c') { |
| 98 | // Source ends in .bc |
| 99 | OutputFilename = std::string(IFN.begin(), IFN.end()-3)+".ll"; |
| 100 | } else { |
| 101 | OutputFilename = IFN+".ll"; |
| 102 | } |
| 103 | |
| 104 | if (!Force && std::ifstream(OutputFilename.c_str())) { |
| 105 | // If force is not specified, make sure not to overwrite a file! |
| 106 | cerr << argv[0] << ": error opening '" << OutputFilename |
| 107 | << "': file exists! Sending to standard output.\n"; |
| 108 | } else { |
| 109 | Out = new std::ofstream(OutputFilename.c_str()); |
| 110 | |
| 111 | // Make sure that the Out file gets unlinked from the disk if we get a |
| 112 | // SIGINT |
| 113 | sys::RemoveFileOnSignal(sys::Path(OutputFilename)); |
| 114 | } |
| 115 | } |
| 116 | } |
| 117 | |
| 118 | if (!Out->good()) { |
| 119 | cerr << argv[0] << ": error opening " << OutputFilename |
| 120 | << ": sending to stdout instead!\n"; |
| 121 | Out = &std::cout; |
| 122 | } |
| 123 | |
| 124 | // All that llvm-dis does is write the assembly to a file. |
| 125 | if (!DontPrint) { |
| 126 | PassManager Passes; |
Daniel Dunbar | 3b475e9 | 2008-10-22 03:25:22 +0000 | [diff] [blame] | 127 | raw_os_ostream L(*Out); |
Daniel Dunbar | 1363a6d | 2008-10-21 23:33:38 +0000 | [diff] [blame] | 128 | Passes.add(createPrintModulePass(&L)); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 129 | Passes.run(*M.get()); |
| 130 | } |
| 131 | |
| 132 | if (Out != &std::cout) { |
| 133 | ((std::ofstream*)Out)->close(); |
| 134 | delete Out; |
| 135 | } |
| 136 | return 0; |
| 137 | } catch (const std::string& msg) { |
| 138 | cerr << argv[0] << ": " << msg << "\n"; |
| 139 | } catch (...) { |
| 140 | cerr << argv[0] << ": Unexpected unknown exception occurred.\n"; |
| 141 | } |
| 142 | |
| 143 | return 1; |
| 144 | } |
| 145 | |