Remove edis - the enhanced disassembler. Fixes PR14654.
[oota-llvm.git] / tools / llvm-mc / llvm-mc.cpp
1 //===-- llvm-mc.cpp - Machine Code Hacking Driver -------------------------===//
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 is a simple driver that allows command line hacking on machine
11 // code.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #include "Disassembler.h"
16 #include "llvm/ADT/OwningPtr.h"
17 #include "llvm/MC/MCAsmBackend.h"
18 #include "llvm/MC/MCAsmInfo.h"
19 #include "llvm/MC/MCCodeEmitter.h"
20 #include "llvm/MC/MCContext.h"
21 #include "llvm/MC/MCInstPrinter.h"
22 #include "llvm/MC/MCInstrInfo.h"
23 #include "llvm/MC/MCObjectFileInfo.h"
24 #include "llvm/MC/MCParser/AsmLexer.h"
25 #include "llvm/MC/MCParser/MCAsmLexer.h"
26 #include "llvm/MC/MCRegisterInfo.h"
27 #include "llvm/MC/MCSectionMachO.h"
28 #include "llvm/MC/MCStreamer.h"
29 #include "llvm/MC/MCSubtargetInfo.h"
30 #include "llvm/MC/MCTargetAsmParser.h"
31 #include "llvm/MC/SubtargetFeature.h"
32 #include "llvm/Support/CommandLine.h"
33 #include "llvm/Support/FileUtilities.h"
34 #include "llvm/Support/FormattedStream.h"
35 #include "llvm/Support/Host.h"
36 #include "llvm/Support/ManagedStatic.h"
37 #include "llvm/Support/MemoryBuffer.h"
38 #include "llvm/Support/PrettyStackTrace.h"
39 #include "llvm/Support/Signals.h"
40 #include "llvm/Support/SourceMgr.h"
41 #include "llvm/Support/TargetRegistry.h"
42 #include "llvm/Support/TargetSelect.h"
43 #include "llvm/Support/ToolOutputFile.h"
44 #include "llvm/Support/system_error.h"
45 using namespace llvm;
46
47 static cl::opt<std::string>
48 InputFilename(cl::Positional, cl::desc("<input file>"), cl::init("-"));
49
50 static cl::opt<std::string>
51 OutputFilename("o", cl::desc("Output filename"),
52                cl::value_desc("filename"));
53
54 static cl::opt<bool>
55 ShowEncoding("show-encoding", cl::desc("Show instruction encodings"));
56
57 static cl::opt<bool>
58 ShowInst("show-inst", cl::desc("Show internal instruction representation"));
59
60 static cl::opt<bool>
61 ShowInstOperands("show-inst-operands",
62                  cl::desc("Show instructions operands as parsed"));
63
64 static cl::opt<unsigned>
65 OutputAsmVariant("output-asm-variant",
66                  cl::desc("Syntax variant to use for output printing"));
67
68 static cl::opt<bool>
69 RelaxAll("mc-relax-all", cl::desc("Relax all fixups"));
70
71 static cl::opt<bool>
72 DisableCFI("disable-cfi", cl::desc("Do not use .cfi_* directives"));
73
74 static cl::opt<bool>
75 NoExecStack("mc-no-exec-stack", cl::desc("File doesn't need an exec stack"));
76
77 enum OutputFileType {
78   OFT_Null,
79   OFT_AssemblyFile,
80   OFT_ObjectFile
81 };
82 static cl::opt<OutputFileType>
83 FileType("filetype", cl::init(OFT_AssemblyFile),
84   cl::desc("Choose an output file type:"),
85   cl::values(
86        clEnumValN(OFT_AssemblyFile, "asm",
87                   "Emit an assembly ('.s') file"),
88        clEnumValN(OFT_Null, "null",
89                   "Don't emit anything (for timing purposes)"),
90        clEnumValN(OFT_ObjectFile, "obj",
91                   "Emit a native object ('.o') file"),
92        clEnumValEnd));
93
94 static cl::list<std::string>
95 IncludeDirs("I", cl::desc("Directory of include files"),
96             cl::value_desc("directory"), cl::Prefix);
97
98 static cl::opt<std::string>
99 ArchName("arch", cl::desc("Target arch to assemble for, "
100                           "see -version for available targets"));
101
102 static cl::opt<std::string>
103 TripleName("triple", cl::desc("Target triple to assemble for, "
104                               "see -version for available targets"));
105
106 static cl::opt<std::string>
107 MCPU("mcpu",
108      cl::desc("Target a specific cpu type (-mcpu=help for details)"),
109      cl::value_desc("cpu-name"),
110      cl::init(""));
111
112 static cl::list<std::string>
113 MAttrs("mattr",
114   cl::CommaSeparated,
115   cl::desc("Target specific attributes (-mattr=help for details)"),
116   cl::value_desc("a1,+a2,-a3,..."));
117
118 static cl::opt<Reloc::Model>
119 RelocModel("relocation-model",
120              cl::desc("Choose relocation model"),
121              cl::init(Reloc::Default),
122              cl::values(
123             clEnumValN(Reloc::Default, "default",
124                        "Target default relocation model"),
125             clEnumValN(Reloc::Static, "static",
126                        "Non-relocatable code"),
127             clEnumValN(Reloc::PIC_, "pic",
128                        "Fully relocatable, position independent code"),
129             clEnumValN(Reloc::DynamicNoPIC, "dynamic-no-pic",
130                        "Relocatable external references, non-relocatable code"),
131             clEnumValEnd));
132
133 static cl::opt<llvm::CodeModel::Model>
134 CMModel("code-model",
135         cl::desc("Choose code model"),
136         cl::init(CodeModel::Default),
137         cl::values(clEnumValN(CodeModel::Default, "default",
138                               "Target default code model"),
139                    clEnumValN(CodeModel::Small, "small",
140                               "Small code model"),
141                    clEnumValN(CodeModel::Kernel, "kernel",
142                               "Kernel code model"),
143                    clEnumValN(CodeModel::Medium, "medium",
144                               "Medium code model"),
145                    clEnumValN(CodeModel::Large, "large",
146                               "Large code model"),
147                    clEnumValEnd));
148
149 static cl::opt<bool>
150 NoInitialTextSection("n", cl::desc("Don't assume assembly file starts "
151                                    "in the text section"));
152
153 static cl::opt<bool>
154 SaveTempLabels("L", cl::desc("Don't discard temporary labels"));
155
156 static cl::opt<bool>
157 GenDwarfForAssembly("g", cl::desc("Generate dwarf debugging info for assembly "
158                                   "source files"));
159
160 static cl::opt<std::string>
161 DebugCompilationDir("fdebug-compilation-dir",
162                     cl::desc("Specifies the debug info's compilation dir"));
163
164 static cl::opt<std::string>
165 MainFileName("main-file-name",
166              cl::desc("Specifies the name we should consider the input file"));
167
168 enum ActionType {
169   AC_AsLex,
170   AC_Assemble,
171   AC_Disassemble,
172   AC_MDisassemble,
173   AC_HDisassemble
174 };
175
176 static cl::opt<ActionType>
177 Action(cl::desc("Action to perform:"),
178        cl::init(AC_Assemble),
179        cl::values(clEnumValN(AC_AsLex, "as-lex",
180                              "Lex tokens from a .s file"),
181                   clEnumValN(AC_Assemble, "assemble",
182                              "Assemble a .s file (default)"),
183                   clEnumValN(AC_Disassemble, "disassemble",
184                              "Disassemble strings of hex bytes"),
185                   clEnumValN(AC_MDisassemble, "mdis",
186                              "Marked up disassembly of strings of hex bytes"),
187                   clEnumValN(AC_HDisassemble, "hdis",
188                              "Disassemble strings of hex bytes printing "
189                              "immediates as hex"),
190                   clEnumValEnd));
191
192 static const Target *GetTarget(const char *ProgName) {
193   // Figure out the target triple.
194   if (TripleName.empty())
195     TripleName = sys::getDefaultTargetTriple();
196   Triple TheTriple(Triple::normalize(TripleName));
197
198   // Get the target specific parser.
199   std::string Error;
200   const Target *TheTarget = TargetRegistry::lookupTarget(ArchName, TheTriple,
201                                                          Error);
202   if (!TheTarget) {
203     errs() << ProgName << ": " << Error;
204     return 0;
205   }
206
207   // Update the triple name and return the found target.
208   TripleName = TheTriple.getTriple();
209   return TheTarget;
210 }
211
212 static tool_output_file *GetOutputStream() {
213   if (OutputFilename == "")
214     OutputFilename = "-";
215
216   std::string Err;
217   tool_output_file *Out = new tool_output_file(OutputFilename.c_str(), Err,
218                                                raw_fd_ostream::F_Binary);
219   if (!Err.empty()) {
220     errs() << Err << '\n';
221     delete Out;
222     return 0;
223   }
224
225   return Out;
226 }
227
228 static std::string DwarfDebugFlags;
229 static void setDwarfDebugFlags(int argc, char **argv) {
230   if (!getenv("RC_DEBUG_OPTIONS"))
231     return;
232   for (int i = 0; i < argc; i++) {
233     DwarfDebugFlags += argv[i];
234     if (i + 1 < argc)
235       DwarfDebugFlags += " ";
236   }
237 }
238
239 static int AsLexInput(SourceMgr &SrcMgr, MCAsmInfo &MAI, tool_output_file *Out) {
240
241   AsmLexer Lexer(MAI);
242   Lexer.setBuffer(SrcMgr.getMemoryBuffer(0));
243
244   bool Error = false;
245   while (Lexer.Lex().isNot(AsmToken::Eof)) {
246     AsmToken Tok = Lexer.getTok();
247
248     switch (Tok.getKind()) {
249     default:
250       SrcMgr.PrintMessage(Lexer.getLoc(), SourceMgr::DK_Warning,
251                           "unknown token");
252       Error = true;
253       break;
254     case AsmToken::Error:
255       Error = true; // error already printed.
256       break;
257     case AsmToken::Identifier:
258       Out->os() << "identifier: " << Lexer.getTok().getString();
259       break;
260     case AsmToken::Integer:
261       Out->os() << "int: " << Lexer.getTok().getString();
262       break;
263     case AsmToken::Real:
264       Out->os() << "real: " << Lexer.getTok().getString();
265       break;
266     case AsmToken::Register:
267       Out->os() << "register: " << Lexer.getTok().getRegVal();
268       break;
269     case AsmToken::String:
270       Out->os() << "string: " << Lexer.getTok().getString();
271       break;
272
273     case AsmToken::Amp:            Out->os() << "Amp"; break;
274     case AsmToken::AmpAmp:         Out->os() << "AmpAmp"; break;
275     case AsmToken::At:             Out->os() << "At"; break;
276     case AsmToken::Caret:          Out->os() << "Caret"; break;
277     case AsmToken::Colon:          Out->os() << "Colon"; break;
278     case AsmToken::Comma:          Out->os() << "Comma"; break;
279     case AsmToken::Dollar:         Out->os() << "Dollar"; break;
280     case AsmToken::Dot:            Out->os() << "Dot"; break;
281     case AsmToken::EndOfStatement: Out->os() << "EndOfStatement"; break;
282     case AsmToken::Eof:            Out->os() << "Eof"; break;
283     case AsmToken::Equal:          Out->os() << "Equal"; break;
284     case AsmToken::EqualEqual:     Out->os() << "EqualEqual"; break;
285     case AsmToken::Exclaim:        Out->os() << "Exclaim"; break;
286     case AsmToken::ExclaimEqual:   Out->os() << "ExclaimEqual"; break;
287     case AsmToken::Greater:        Out->os() << "Greater"; break;
288     case AsmToken::GreaterEqual:   Out->os() << "GreaterEqual"; break;
289     case AsmToken::GreaterGreater: Out->os() << "GreaterGreater"; break;
290     case AsmToken::Hash:           Out->os() << "Hash"; break;
291     case AsmToken::LBrac:          Out->os() << "LBrac"; break;
292     case AsmToken::LCurly:         Out->os() << "LCurly"; break;
293     case AsmToken::LParen:         Out->os() << "LParen"; break;
294     case AsmToken::Less:           Out->os() << "Less"; break;
295     case AsmToken::LessEqual:      Out->os() << "LessEqual"; break;
296     case AsmToken::LessGreater:    Out->os() << "LessGreater"; break;
297     case AsmToken::LessLess:       Out->os() << "LessLess"; break;
298     case AsmToken::Minus:          Out->os() << "Minus"; break;
299     case AsmToken::Percent:        Out->os() << "Percent"; break;
300     case AsmToken::Pipe:           Out->os() << "Pipe"; break;
301     case AsmToken::PipePipe:       Out->os() << "PipePipe"; break;
302     case AsmToken::Plus:           Out->os() << "Plus"; break;
303     case AsmToken::RBrac:          Out->os() << "RBrac"; break;
304     case AsmToken::RCurly:         Out->os() << "RCurly"; break;
305     case AsmToken::RParen:         Out->os() << "RParen"; break;
306     case AsmToken::Slash:          Out->os() << "Slash"; break;
307     case AsmToken::Star:           Out->os() << "Star"; break;
308     case AsmToken::Tilde:          Out->os() << "Tilde"; break;
309     }
310
311     // Print the token string.
312     Out->os() << " (\"";
313     Out->os().write_escaped(Tok.getString());
314     Out->os() << "\")\n";
315   }
316
317   return Error;
318 }
319
320 static int AssembleInput(const char *ProgName, const Target *TheTarget, 
321                          SourceMgr &SrcMgr, MCContext &Ctx, MCStreamer &Str,
322                          MCAsmInfo &MAI, MCSubtargetInfo &STI) {
323   OwningPtr<MCAsmParser> Parser(createMCAsmParser(SrcMgr, Ctx,
324                                                   Str, MAI));
325   OwningPtr<MCTargetAsmParser> TAP(TheTarget->createMCAsmParser(STI, *Parser));
326   if (!TAP) {
327     errs() << ProgName
328            << ": error: this target does not support assembly parsing.\n";
329     return 1;
330   }
331
332   Parser->setShowParsedOperands(ShowInstOperands);
333   Parser->setTargetParser(*TAP.get());
334
335   int Res = Parser->Run(NoInitialTextSection);
336
337   return Res;
338 }
339
340 int main(int argc, char **argv) {
341   // Print a stack trace if we signal out.
342   sys::PrintStackTraceOnErrorSignal();
343   PrettyStackTraceProgram X(argc, argv);
344   llvm_shutdown_obj Y;  // Call llvm_shutdown() on exit.
345
346   // Initialize targets and assembly printers/parsers.
347   llvm::InitializeAllTargetInfos();
348   llvm::InitializeAllTargetMCs();
349   llvm::InitializeAllAsmParsers();
350   llvm::InitializeAllDisassemblers();
351
352   // Register the target printer for --version.
353   cl::AddExtraVersionPrinter(TargetRegistry::printRegisteredTargetsForVersion);
354
355   cl::ParseCommandLineOptions(argc, argv, "llvm machine code playground\n");
356   TripleName = Triple::normalize(TripleName);
357   setDwarfDebugFlags(argc, argv);
358
359   const char *ProgName = argv[0];
360   const Target *TheTarget = GetTarget(ProgName);
361   if (!TheTarget)
362     return 1;
363
364   OwningPtr<MemoryBuffer> BufferPtr;
365   if (error_code ec = MemoryBuffer::getFileOrSTDIN(InputFilename, BufferPtr)) {
366     errs() << ProgName << ": " << ec.message() << '\n';
367     return 1;
368   }
369   MemoryBuffer *Buffer = BufferPtr.take();
370
371   SourceMgr SrcMgr;
372
373   // Tell SrcMgr about this buffer, which is what the parser will pick up.
374   SrcMgr.AddNewSourceBuffer(Buffer, SMLoc());
375
376   // Record the location of the include directories so that the lexer can find
377   // it later.
378   SrcMgr.setIncludeDirs(IncludeDirs);
379
380
381   llvm::OwningPtr<MCAsmInfo> MAI(TheTarget->createMCAsmInfo(TripleName));
382   assert(MAI && "Unable to create target asm info!");
383
384   llvm::OwningPtr<MCRegisterInfo> MRI(TheTarget->createMCRegInfo(TripleName));
385   assert(MRI && "Unable to create target register info!");
386
387   // FIXME: This is not pretty. MCContext has a ptr to MCObjectFileInfo and
388   // MCObjectFileInfo needs a MCContext reference in order to initialize itself.
389   OwningPtr<MCObjectFileInfo> MOFI(new MCObjectFileInfo());
390   MCContext Ctx(*MAI, *MRI, MOFI.get(), &SrcMgr);
391   MOFI->InitMCObjectFileInfo(TripleName, RelocModel, CMModel, Ctx);
392
393   if (SaveTempLabels)
394     Ctx.setAllowTemporaryLabels(false);
395
396   Ctx.setGenDwarfForAssembly(GenDwarfForAssembly);
397   if (!DwarfDebugFlags.empty())
398     Ctx.setDwarfDebugFlags(StringRef(DwarfDebugFlags));
399   if (!DebugCompilationDir.empty())
400     Ctx.setCompilationDir(DebugCompilationDir);
401   if (!MainFileName.empty())
402     Ctx.setMainFileName(MainFileName);
403
404   // Package up features to be passed to target/subtarget
405   std::string FeaturesStr;
406   if (MAttrs.size()) {
407     SubtargetFeatures Features;
408     for (unsigned i = 0; i != MAttrs.size(); ++i)
409       Features.AddFeature(MAttrs[i]);
410     FeaturesStr = Features.getString();
411   }
412
413   OwningPtr<tool_output_file> Out(GetOutputStream());
414   if (!Out)
415     return 1;
416
417   formatted_raw_ostream FOS(Out->os());
418   OwningPtr<MCStreamer> Str;
419
420   OwningPtr<MCInstrInfo> MCII(TheTarget->createMCInstrInfo());
421   OwningPtr<MCSubtargetInfo>
422     STI(TheTarget->createMCSubtargetInfo(TripleName, MCPU, FeaturesStr));
423
424   MCInstPrinter *IP;
425   if (FileType == OFT_AssemblyFile) {
426     IP =
427       TheTarget->createMCInstPrinter(OutputAsmVariant, *MAI, *MCII, *MRI, *STI);
428     MCCodeEmitter *CE = 0;
429     MCAsmBackend *MAB = 0;
430     if (ShowEncoding) {
431       CE = TheTarget->createMCCodeEmitter(*MCII, *MRI, *STI, Ctx);
432       MAB = TheTarget->createMCAsmBackend(TripleName, MCPU);
433     }
434     bool UseCFI = !DisableCFI;
435     Str.reset(TheTarget->createAsmStreamer(Ctx, FOS, /*asmverbose*/true,
436                                            /*useLoc*/ true,
437                                            UseCFI,
438                                            /*useDwarfDirectory*/ true,
439                                            IP, CE, MAB, ShowInst));
440
441   } else if (FileType == OFT_Null) {
442     Str.reset(createNullStreamer(Ctx));
443   } else {
444     assert(FileType == OFT_ObjectFile && "Invalid file type!");
445     MCCodeEmitter *CE = TheTarget->createMCCodeEmitter(*MCII, *MRI, *STI, Ctx);
446     MCAsmBackend *MAB = TheTarget->createMCAsmBackend(TripleName, MCPU);
447     Str.reset(TheTarget->createMCObjectStreamer(TripleName, Ctx, *MAB,
448                                                 FOS, CE, RelaxAll,
449                                                 NoExecStack));
450   }
451
452   int Res = 1;
453   bool disassemble = false;
454   switch (Action) {
455   case AC_AsLex:
456     Res = AsLexInput(SrcMgr, *MAI, Out.get());
457     break;
458   case AC_Assemble:
459     Res = AssembleInput(ProgName, TheTarget, SrcMgr, Ctx, *Str, *MAI, *STI);
460     break;
461   case AC_MDisassemble:
462     IP->setUseMarkup(1);
463     disassemble = true;
464     break;
465   case AC_HDisassemble:
466     IP->setPrintImmHex(1);
467     disassemble = true;
468     break;
469   case AC_Disassemble:
470     disassemble = true;
471     break;
472   }
473   if (disassemble)
474     Res = Disassembler::disassemble(*TheTarget, TripleName, *STI, *Str,
475                                     *Buffer, SrcMgr, Out->os());
476
477   // Keep output if no errors.
478   if (Res == 0) Out->keep();
479   return Res;
480 }