Eliminate more traces of the -c option
[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 //
17 //===----------------------------------------------------------------------===//
18
19 #include "llvm/Module.h"
20 #include "llvm/PassManager.h"
21 #include "llvm/Bytecode/Reader.h"
22 #include "llvm/Assembly/PrintModulePass.h"
23 #include "Support/CommandLine.h"
24 #include "llvm/System/Signals.h"
25 #include <fstream>
26 #include <memory>
27
28 using namespace llvm;
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<bool>
41 CWriteMode("c", cl::desc("Obsolete option, do not use"), cl::ReallyHidden);
42
43 int main(int argc, char **argv) {
44   cl::ParseCommandLineOptions(argc, argv, " llvm .bc -> .ll disassembler\n");
45   PrintStackTraceOnErrorSignal();
46
47   std::ostream *Out = &std::cout;  // Default to printing to stdout...
48   std::string ErrorMessage;
49
50   if (CWriteMode) {
51     std::cerr << "ERROR: llvm-dis no longer contains the C backend. "
52               << "Use 'llc -march=c' instead!\n";
53     exit(1);
54   }
55
56   std::auto_ptr<Module> M(ParseBytecodeFile(InputFilename, &ErrorMessage));
57   if (M.get() == 0) {
58     std::cerr << argv[0] << ": ";
59     if (ErrorMessage.size())
60       std::cerr << ErrorMessage << "\n";
61     else
62       std::cerr << "bytecode didn't read correctly.\n";
63     return 1;
64   }
65   
66   if (OutputFilename != "") {   // Specified an output filename?
67     if (OutputFilename != "-") { // Not stdout?
68       if (!Force && std::ifstream(OutputFilename.c_str())) {
69         // If force is not specified, make sure not to overwrite a file!
70         std::cerr << argv[0] << ": error opening '" << OutputFilename
71                   << "': file exists! Sending to standard output.\n";
72       } else {
73         Out = new std::ofstream(OutputFilename.c_str());
74       }
75     }
76   } else {
77     if (InputFilename == "-") {
78       OutputFilename = "-";
79     } else {
80       std::string IFN = InputFilename;
81       int Len = IFN.length();
82       if (IFN[Len-3] == '.' && IFN[Len-2] == 'b' && IFN[Len-1] == 'c') {
83         // Source ends in .bc
84         OutputFilename = std::string(IFN.begin(), IFN.end()-3)+".ll";
85       } else {
86         OutputFilename = IFN+".ll";
87       }
88
89       if (!Force && std::ifstream(OutputFilename.c_str())) {
90         // If force is not specified, make sure not to overwrite a file!
91         std::cerr << argv[0] << ": error opening '" << OutputFilename
92                   << "': file exists! Sending to standard output.\n";
93       } else {
94         Out = new std::ofstream(OutputFilename.c_str());
95
96         // Make sure that the Out file gets unlinked from the disk if we get a
97         // SIGINT
98         RemoveFileOnSignal(OutputFilename);
99       }
100     }
101   }
102
103   if (!Out->good()) {
104     std::cerr << argv[0] << ": error opening " << OutputFilename
105               << ": sending to stdout instead!\n";
106     Out = &std::cout;
107   }
108
109   // All that dis does is write the assembly or C out to a file...
110   //
111   PassManager Passes;
112   Passes.add(new PrintModulePass(Out));
113   Passes.run(*M.get());
114
115   if (Out != &std::cout) {
116     ((std::ofstream*)Out)->close();
117     delete Out;
118   }
119   return 0;
120 }
121