1 //===-- llvm-dis.cpp - The low-level LLVM disassembler --------------------===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
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
15 // --help - Output information about command line switches
17 //===----------------------------------------------------------------------===//
19 #include "llvm/Module.h"
20 #include "llvm/PassManager.h"
21 #include "llvm/Bitcode/ReaderWriter.h"
22 #include "llvm/Assembly/PrintModulePass.h"
23 #include "llvm/Support/CommandLine.h"
24 #include "llvm/Support/ManagedStatic.h"
25 #include "llvm/Support/MemoryBuffer.h"
26 #include "llvm/Support/Streams.h"
27 #include "llvm/System/Signals.h"
33 static cl::opt<std::string>
34 InputFilename(cl::Positional, cl::desc("<input bitcode>"), cl::init("-"));
36 static cl::opt<std::string>
37 OutputFilename("o", cl::desc("Override output filename"),
38 cl::value_desc("filename"));
41 Force("f", cl::desc("Overwrite output files"));
44 DontPrint("disable-output", cl::desc("Don't output the .ll file"), cl::Hidden);
46 int main(int argc, char **argv) {
47 llvm_shutdown_obj X; // Call llvm_shutdown() on exit.
49 cl::ParseCommandLineOptions(argc, argv, "llvm .bc -> .ll disassembler\n");
50 sys::PrintStackTraceOnErrorSignal();
52 std::ostream *Out = &std::cout; // Default to printing to stdout.
53 std::string ErrorMessage;
55 std::auto_ptr<Module> M;
57 if (MemoryBuffer *Buffer
58 = MemoryBuffer::getFileOrSTDIN(InputFilename, &ErrorMessage)) {
59 M.reset(ParseBitcodeFile(Buffer, &ErrorMessage));
64 cerr << argv[0] << ": ";
65 if (ErrorMessage.size())
66 cerr << ErrorMessage << "\n";
68 cerr << "bitcode didn't read correctly.\n";
73 // Just use stdout. We won't actually print anything on it.
74 } else if (OutputFilename != "") { // Specified an output filename?
75 if (OutputFilename != "-") { // Not stdout?
76 if (!Force && std::ifstream(OutputFilename.c_str())) {
77 // If force is not specified, make sure not to overwrite a file!
78 cerr << argv[0] << ": error opening '" << OutputFilename
79 << "': file exists! Sending to standard output.\n";
81 Out = new std::ofstream(OutputFilename.c_str());
85 if (InputFilename == "-") {
88 std::string IFN = InputFilename;
89 int Len = IFN.length();
90 if (IFN[Len-3] == '.' && IFN[Len-2] == 'b' && IFN[Len-1] == 'c') {
92 OutputFilename = std::string(IFN.begin(), IFN.end()-3)+".ll";
94 OutputFilename = IFN+".ll";
97 if (!Force && std::ifstream(OutputFilename.c_str())) {
98 // If force is not specified, make sure not to overwrite a file!
99 cerr << argv[0] << ": error opening '" << OutputFilename
100 << "': file exists! Sending to standard output.\n";
102 Out = new std::ofstream(OutputFilename.c_str());
104 // Make sure that the Out file gets unlinked from the disk if we get a
106 sys::RemoveFileOnSignal(sys::Path(OutputFilename));
112 cerr << argv[0] << ": error opening " << OutputFilename
113 << ": sending to stdout instead!\n";
117 // All that llvm-dis does is write the assembly to a file.
121 Passes.add(new PrintModulePass(&L));
122 Passes.run(*M.get());
125 if (Out != &std::cout) {
126 ((std::ofstream*)Out)->close();
130 } catch (const std::string& msg) {
131 cerr << argv[0] << ": " << msg << "\n";
133 cerr << argv[0] << ": Unexpected unknown exception occurred.\n";