Mercilessly rip the cbackend out of llvm-dis. Leave a helpful error message
[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
53 int main(int argc, char **argv) {
54   cl::ParseCommandLineOptions(argc, argv, " llvm .bc -> .ll disassembler\n");
55   std::ostream *Out = &std::cout;  // Default to printing to stdout...
56   std::string ErrorMessage;
57
58   if (WriteMode == c) {
59     std::cerr << "ERROR: llvm-dis no longer contains the C backend.  Use 'llc -march=c' instead!\n";
60     exit(1);
61   }
62
63   std::auto_ptr<Module> M(ParseBytecodeFile(InputFilename, &ErrorMessage));
64   if (M.get() == 0) {
65     std::cerr << argv[0] << ": ";
66     if (ErrorMessage.size())
67       std::cerr << ErrorMessage << "\n";
68     else
69       std::cerr << "bytecode didn't read correctly.\n";
70     return 1;
71   }
72   
73   if (OutputFilename != "") {   // Specified an output filename?
74     if (OutputFilename != "-") { // Not stdout?
75       if (!Force && std::ifstream(OutputFilename.c_str())) {
76         // If force is not specified, make sure not to overwrite a file!
77         std::cerr << argv[0] << ": error opening '" << OutputFilename
78                   << "': file exists! Sending to standard output.\n";
79       } else {
80         Out = new std::ofstream(OutputFilename.c_str());
81       }
82     }
83   } else {
84     if (InputFilename == "-") {
85       OutputFilename = "-";
86     } else {
87       std::string IFN = InputFilename;
88       int Len = IFN.length();
89       if (IFN[Len-3] == '.' && IFN[Len-2] == 'b' && IFN[Len-1] == 'c') {
90         // Source ends in .bc
91         OutputFilename = std::string(IFN.begin(), IFN.end()-3)+".ll";
92       } else {
93         OutputFilename = IFN+".ll";
94       }
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   Passes.add(new PrintModulePass(Out));
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