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