Refer users looking for the release notes to 3.6.
[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 is distributed under the University of Illinois Open Source
6 // 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 bitcode from stdin, write asm to stdout
12 //  llvm-dis [options] x.bc - Read LLVM bitcode 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/IR/LLVMContext.h"
20 #include "llvm/Bitcode/ReaderWriter.h"
21 #include "llvm/IR/AssemblyAnnotationWriter.h"
22 #include "llvm/IR/DebugInfo.h"
23 #include "llvm/IR/DiagnosticInfo.h"
24 #include "llvm/IR/DiagnosticPrinter.h"
25 #include "llvm/IR/IntrinsicInst.h"
26 #include "llvm/IR/Module.h"
27 #include "llvm/IR/Type.h"
28 #include "llvm/Support/CommandLine.h"
29 #include "llvm/Support/DataStream.h"
30 #include "llvm/Support/FileSystem.h"
31 #include "llvm/Support/FormattedStream.h"
32 #include "llvm/Support/ManagedStatic.h"
33 #include "llvm/Support/MemoryBuffer.h"
34 #include "llvm/Support/PrettyStackTrace.h"
35 #include "llvm/Support/Signals.h"
36 #include "llvm/Support/ToolOutputFile.h"
37 #include <system_error>
38 using namespace llvm;
39
40 static cl::opt<std::string>
41 InputFilename(cl::Positional, cl::desc("<input bitcode>"), cl::init("-"));
42
43 static cl::opt<std::string>
44 OutputFilename("o", cl::desc("Override output filename"),
45                cl::value_desc("filename"));
46
47 static cl::opt<bool>
48 Force("f", cl::desc("Enable binary output on terminals"));
49
50 static cl::opt<bool>
51 DontPrint("disable-output", cl::desc("Don't output the .ll file"), cl::Hidden);
52
53 static cl::opt<bool>
54 ShowAnnotations("show-annotations",
55                 cl::desc("Add informational comments to the .ll file"));
56
57 namespace {
58
59 static void printDebugLoc(const DebugLoc &DL, formatted_raw_ostream &OS) {
60   OS << DL.getLine() << ":" << DL.getCol();
61   if (MDNode *N = DL.getInlinedAt(getGlobalContext())) {
62     DebugLoc IDL = DebugLoc::getFromDILocation(N);
63     if (!IDL.isUnknown()) {
64       OS << "@";
65       printDebugLoc(IDL,OS);
66     }
67   }
68 }
69 class CommentWriter : public AssemblyAnnotationWriter {
70 public:
71   void emitFunctionAnnot(const Function *F,
72                          formatted_raw_ostream &OS) override {
73     OS << "; [#uses=" << F->getNumUses() << ']';  // Output # uses
74     OS << '\n';
75   }
76   void printInfoComment(const Value &V, formatted_raw_ostream &OS) override {
77     bool Padded = false;
78     if (!V.getType()->isVoidTy()) {
79       OS.PadToColumn(50);
80       Padded = true;
81       OS << "; [#uses=" << V.getNumUses() << " type=" << *V.getType() << "]";  // Output # uses and type
82     }
83     if (const Instruction *I = dyn_cast<Instruction>(&V)) {
84       const DebugLoc &DL = I->getDebugLoc();
85       if (!DL.isUnknown()) {
86         if (!Padded) {
87           OS.PadToColumn(50);
88           Padded = true;
89           OS << ";";
90         }
91         OS << " [debug line = ";
92         printDebugLoc(DL,OS);
93         OS << "]";
94       }
95       if (const DbgDeclareInst *DDI = dyn_cast<DbgDeclareInst>(I)) {
96         DIVariable Var(DDI->getVariable());
97         if (!Padded) {
98           OS.PadToColumn(50);
99           OS << ";";
100         }
101         OS << " [debug variable = " << Var.getName() << "]";
102       }
103       else if (const DbgValueInst *DVI = dyn_cast<DbgValueInst>(I)) {
104         DIVariable Var(DVI->getVariable());
105         if (!Padded) {
106           OS.PadToColumn(50);
107           OS << ";";
108         }
109         OS << " [debug variable = " << Var.getName() << "]";
110       }
111     }
112   }
113 };
114
115 } // end anon namespace
116
117 static void diagnosticHandler(const DiagnosticInfo &DI, void *Context) {
118   raw_ostream &OS = errs();
119   OS << (char *)Context << ": ";
120   switch (DI.getSeverity()) {
121   case DS_Error: OS << "error: "; break;
122   case DS_Warning: OS << "warning: "; break;
123   case DS_Remark: OS << "remark: "; break;
124   case DS_Note: OS << "note: "; break;
125   }
126
127   DiagnosticPrinterRawOStream DP(OS);
128   DI.print(DP);
129   OS << '\n';
130
131   if (DI.getSeverity() == DS_Error)
132     exit(1);
133 }
134
135 int main(int argc, char **argv) {
136   // Print a stack trace if we signal out.
137   sys::PrintStackTraceOnErrorSignal();
138   PrettyStackTraceProgram X(argc, argv);
139
140   LLVMContext &Context = getGlobalContext();
141   llvm_shutdown_obj Y;  // Call llvm_shutdown() on exit.
142
143   Context.setDiagnosticHandler(diagnosticHandler, argv[0]);
144
145   cl::ParseCommandLineOptions(argc, argv, "llvm .bc -> .ll disassembler\n");
146
147   std::string ErrorMessage;
148   std::unique_ptr<Module> M;
149
150   // Use the bitcode streaming interface
151   DataStreamer *Streamer = getDataFileStreamer(InputFilename, &ErrorMessage);
152   if (Streamer) {
153     std::string DisplayFilename;
154     if (InputFilename == "-")
155       DisplayFilename = "<stdin>";
156     else
157       DisplayFilename = InputFilename;
158     ErrorOr<std::unique_ptr<Module>> MOrErr =
159         getStreamedBitcodeModule(DisplayFilename, Streamer, Context);
160     M = std::move(*MOrErr);
161     M->materializeAllPermanently();
162   }
163
164   // Just use stdout.  We won't actually print anything on it.
165   if (DontPrint)
166     OutputFilename = "-";
167
168   if (OutputFilename.empty()) { // Unspecified output, infer it.
169     if (InputFilename == "-") {
170       OutputFilename = "-";
171     } else {
172       const std::string &IFN = InputFilename;
173       int Len = IFN.length();
174       // If the source ends in .bc, strip it off.
175       if (IFN[Len-3] == '.' && IFN[Len-2] == 'b' && IFN[Len-1] == 'c')
176         OutputFilename = std::string(IFN.begin(), IFN.end()-3)+".ll";
177       else
178         OutputFilename = IFN+".ll";
179     }
180   }
181
182   std::error_code EC;
183   std::unique_ptr<tool_output_file> Out(
184       new tool_output_file(OutputFilename, EC, sys::fs::F_None));
185   if (EC) {
186     errs() << EC.message() << '\n';
187     return 1;
188   }
189
190   std::unique_ptr<AssemblyAnnotationWriter> Annotator;
191   if (ShowAnnotations)
192     Annotator.reset(new CommentWriter());
193
194   // All that llvm-dis does is write the assembly to a file.
195   if (!DontPrint)
196     M->print(Out->os(), Annotator.get());
197
198   // Declare success.
199   Out->keep();
200
201   return 0;
202 }