[Hexagon] Use constant extenders to fix up hardware loops
[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 static cl::opt<bool> PreserveAssemblyUseListOrder(
58     "preserve-ll-uselistorder",
59     cl::desc("Preserve use-list order when writing LLVM assembly."),
60     cl::init(false), cl::Hidden);
61
62 namespace {
63
64 static void printDebugLoc(const DebugLoc &DL, formatted_raw_ostream &OS) {
65   OS << DL.getLine() << ":" << DL.getCol();
66   if (MDLocation *IDL = DL.getInlinedAt()) {
67     OS << "@";
68     printDebugLoc(IDL, OS);
69   }
70 }
71 class CommentWriter : public AssemblyAnnotationWriter {
72 public:
73   void emitFunctionAnnot(const Function *F,
74                          formatted_raw_ostream &OS) override {
75     OS << "; [#uses=" << F->getNumUses() << ']';  // Output # uses
76     OS << '\n';
77   }
78   void printInfoComment(const Value &V, formatted_raw_ostream &OS) override {
79     bool Padded = false;
80     if (!V.getType()->isVoidTy()) {
81       OS.PadToColumn(50);
82       Padded = true;
83       OS << "; [#uses=" << V.getNumUses() << " type=" << *V.getType() << "]";  // Output # uses and type
84     }
85     if (const Instruction *I = dyn_cast<Instruction>(&V)) {
86       if (const DebugLoc &DL = I->getDebugLoc()) {
87         if (!Padded) {
88           OS.PadToColumn(50);
89           Padded = true;
90           OS << ";";
91         }
92         OS << " [debug line = ";
93         printDebugLoc(DL,OS);
94         OS << "]";
95       }
96       if (const DbgDeclareInst *DDI = dyn_cast<DbgDeclareInst>(I)) {
97         if (!Padded) {
98           OS.PadToColumn(50);
99           OS << ";";
100         }
101         OS << " [debug variable = " << DDI->getVariable()->getName() << "]";
102       }
103       else if (const DbgValueInst *DVI = dyn_cast<DbgValueInst>(I)) {
104         if (!Padded) {
105           OS.PadToColumn(50);
106           OS << ";";
107         }
108         OS << " [debug variable = " << DVI->getVariable()->getName() << "]";
109       }
110     }
111   }
112 };
113
114 } // end anon namespace
115
116 static void diagnosticHandler(const DiagnosticInfo &DI, void *Context) {
117   raw_ostream &OS = errs();
118   OS << (char *)Context << ": ";
119   switch (DI.getSeverity()) {
120   case DS_Error: OS << "error: "; break;
121   case DS_Warning: OS << "warning: "; break;
122   case DS_Remark: OS << "remark: "; break;
123   case DS_Note: OS << "note: "; break;
124   }
125
126   DiagnosticPrinterRawOStream DP(OS);
127   DI.print(DP);
128   OS << '\n';
129
130   if (DI.getSeverity() == DS_Error)
131     exit(1);
132 }
133
134 int main(int argc, char **argv) {
135   // Print a stack trace if we signal out.
136   sys::PrintStackTraceOnErrorSignal();
137   PrettyStackTraceProgram X(argc, argv);
138
139   LLVMContext &Context = getGlobalContext();
140   llvm_shutdown_obj Y;  // Call llvm_shutdown() on exit.
141
142   Context.setDiagnosticHandler(diagnosticHandler, argv[0]);
143
144   cl::ParseCommandLineOptions(argc, argv, "llvm .bc -> .ll disassembler\n");
145
146   std::string ErrorMessage;
147   std::unique_ptr<Module> M;
148
149   // Use the bitcode streaming interface
150   DataStreamer *Streamer = getDataFileStreamer(InputFilename, &ErrorMessage);
151   if (Streamer) {
152     std::string DisplayFilename;
153     if (InputFilename == "-")
154       DisplayFilename = "<stdin>";
155     else
156       DisplayFilename = InputFilename;
157     ErrorOr<std::unique_ptr<Module>> MOrErr =
158         getStreamedBitcodeModule(DisplayFilename, Streamer, Context);
159     M = std::move(*MOrErr);
160     M->materializeAllPermanently();
161   }
162
163   // Just use stdout.  We won't actually print anything on it.
164   if (DontPrint)
165     OutputFilename = "-";
166
167   if (OutputFilename.empty()) { // Unspecified output, infer it.
168     if (InputFilename == "-") {
169       OutputFilename = "-";
170     } else {
171       const std::string &IFN = InputFilename;
172       int Len = IFN.length();
173       // If the source ends in .bc, strip it off.
174       if (IFN[Len-3] == '.' && IFN[Len-2] == 'b' && IFN[Len-1] == 'c')
175         OutputFilename = std::string(IFN.begin(), IFN.end()-3)+".ll";
176       else
177         OutputFilename = IFN+".ll";
178     }
179   }
180
181   std::error_code EC;
182   std::unique_ptr<tool_output_file> Out(
183       new tool_output_file(OutputFilename, EC, sys::fs::F_None));
184   if (EC) {
185     errs() << EC.message() << '\n';
186     return 1;
187   }
188
189   std::unique_ptr<AssemblyAnnotationWriter> Annotator;
190   if (ShowAnnotations)
191     Annotator.reset(new CommentWriter());
192
193   // All that llvm-dis does is write the assembly to a file.
194   if (!DontPrint)
195     M->print(Out->os(), Annotator.get(), PreserveAssemblyUseListOrder);
196
197   // Declare success.
198   Out->keep();
199
200   return 0;
201 }