c355434b4445787a3483d0028822b17899cc7fba
[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   std::ostream *Out = &std::cout;  // Default to printing to stdout...
57   std::string ErrorMessage;
58
59   if (WriteMode == c) {
60     std::cerr << "ERROR: llvm-dis no longer contains the C backend.  Use 'llc -march=c' instead!\n";
61     exit(1);
62   }
63
64   std::auto_ptr<Module> M(ParseBytecodeFile(InputFilename, &ErrorMessage));
65   if (M.get() == 0) {
66     std::cerr << argv[0] << ": ";
67     if (ErrorMessage.size())
68       std::cerr << ErrorMessage << "\n";
69     else
70       std::cerr << "bytecode didn't read correctly.\n";
71     return 1;
72   }
73   
74   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         std::cerr << argv[0] << ": error opening '" << OutputFilename
79                   << "': file exists! Sending to standard output.\n";
80       } else {
81         Out = new std::ofstream(OutputFilename.c_str());
82       }
83     }
84   } else {
85     if (InputFilename == "-") {
86       OutputFilename = "-";
87     } else {
88       std::string IFN = InputFilename;
89       int Len = IFN.length();
90       if (IFN[Len-3] == '.' && IFN[Len-2] == 'b' && IFN[Len-1] == 'c') {
91         // Source ends in .bc
92         OutputFilename = std::string(IFN.begin(), IFN.end()-3)+".ll";
93       } else {
94         OutputFilename = IFN+".ll";
95       }
96
97       if (!Force && std::ifstream(OutputFilename.c_str())) {
98         // If force is not specified, make sure not to overwrite a file!
99         std::cerr << argv[0] << ": error opening '" << OutputFilename
100                   << "': file exists! Sending to standard output.\n";
101       } else {
102         Out = new std::ofstream(OutputFilename.c_str());
103
104         // Make sure that the Out file gets unlinked from the disk if we get a
105         // SIGINT
106         RemoveFileOnSignal(OutputFilename);
107       }
108     }
109   }
110
111   if (!Out->good()) {
112     std::cerr << argv[0] << ": error opening " << OutputFilename
113               << ": sending to stdout instead!\n";
114     Out = &std::cout;
115   }
116
117   // All that dis does is write the assembly or C out to a file...
118   //
119   PassManager Passes;
120   Passes.add(new PrintModulePass(Out));
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