Make sure to print a stack trace whenever an error signal is delivered to the
[oota-llvm.git] / tools / llvm-dis / llvm-dis.cpp
1 //===-- llvm-dis.cpp - The low-level LLVM disassembler --------------------===//
2 // 
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.
7 // 
8 //===----------------------------------------------------------------------===//
9 //
10 // This utility may be invoked in the following manner:
11 //  llvm-dis [options]      - Read LLVM bytecode from stdin, write asm to stdout
12 //  llvm-dis [options] x.bc - Read LLVM bytecode from the x.bc file, write asm
13 //                            to the x.ll file.
14 //  Options:
15 //      --help   - Output information about command line switches
16 //       -c      - Print C code instead of LLVM assembly
17 //
18 //===----------------------------------------------------------------------===//
19
20 #include "llvm/Module.h"
21 #include "llvm/PassManager.h"
22 #include "llvm/Bytecode/Reader.h"
23 #include "llvm/Assembly/PrintModulePass.h"
24 #include "Support/CommandLine.h"
25 #include "Support/Signals.h"
26 #include <fstream>
27 #include <memory>
28
29 // OutputMode - The different orderings to print basic blocks in...
30 enum OutputMode {
31   LLVM = 0,           // Generate LLVM assembly (the default)
32   c,                  // Generate C code
33 };
34
35 using namespace llvm;
36
37 static cl::opt<std::string>
38 InputFilename(cl::Positional, cl::desc("<input bytecode>"), cl::init("-"));
39
40 static cl::opt<std::string>
41 OutputFilename("o", cl::desc("Override output filename"), 
42                cl::value_desc("filename"));
43
44 static cl::opt<bool>
45 Force("f", cl::desc("Overwrite output files"));
46
47 static cl::opt<enum OutputMode>
48 WriteMode(cl::desc("Specify the output format:"),
49           cl::values(clEnumValN(LLVM, "llvm", "Output LLVM assembly"),
50                      clEnumVal(c, "Output C code for program"),
51                     0),
52           cl::ReallyHidden);
53
54 int main(int argc, char **argv) {
55   cl::ParseCommandLineOptions(argc, argv, " llvm .bc -> .ll disassembler\n");
56   PrintStackTraceOnErrorSignal();
57
58   std::ostream *Out = &std::cout;  // Default to printing to stdout...
59   std::string ErrorMessage;
60
61   if (WriteMode == c) {
62     std::cerr << "ERROR: llvm-dis no longer contains the C backend. "
63               << "Use 'llc -march=c' instead!\n";
64     exit(1);
65   }
66
67   std::auto_ptr<Module> M(ParseBytecodeFile(InputFilename, &ErrorMessage));
68   if (M.get() == 0) {
69     std::cerr << argv[0] << ": ";
70     if (ErrorMessage.size())
71       std::cerr << ErrorMessage << "\n";
72     else
73       std::cerr << "bytecode didn't read correctly.\n";
74     return 1;
75   }
76   
77   if (OutputFilename != "") {   // Specified an output filename?
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! Sending to standard output.\n";
83       } else {
84         Out = new std::ofstream(OutputFilename.c_str());
85       }
86     }
87   } else {
88     if (InputFilename == "-") {
89       OutputFilename = "-";
90     } else {
91       std::string IFN = InputFilename;
92       int Len = IFN.length();
93       if (IFN[Len-3] == '.' && IFN[Len-2] == 'b' && IFN[Len-1] == 'c') {
94         // Source ends in .bc
95         OutputFilename = std::string(IFN.begin(), IFN.end()-3)+".ll";
96       } else {
97         OutputFilename = IFN+".ll";
98       }
99
100       if (!Force && std::ifstream(OutputFilename.c_str())) {
101         // If force is not specified, make sure not to overwrite a file!
102         std::cerr << argv[0] << ": error opening '" << OutputFilename
103                   << "': file exists! Sending to standard output.\n";
104       } else {
105         Out = new std::ofstream(OutputFilename.c_str());
106
107         // Make sure that the Out file gets unlinked from the disk if we get a
108         // SIGINT
109         RemoveFileOnSignal(OutputFilename);
110       }
111     }
112   }
113
114   if (!Out->good()) {
115     std::cerr << argv[0] << ": error opening " << OutputFilename
116               << ": sending to stdout instead!\n";
117     Out = &std::cout;
118   }
119
120   // All that dis does is write the assembly or C out to a file...
121   //
122   PassManager Passes;
123   Passes.add(new PrintModulePass(Out));
124   Passes.run(*M.get());
125
126   if (Out != &std::cout) {
127     ((std::ofstream*)Out)->close();
128     delete Out;
129   }
130   return 0;
131 }
132