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