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