llvm-mc.cpp revision 04baf9094ada38a518ba7eda87d4c478a874dbb1
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 "llvm/MC/MCContext.h"
16#include "llvm/MC/MCCodeEmitter.h"
17#include "llvm/MC/MCSectionMachO.h"
18#include "llvm/MC/MCStreamer.h"
19#include "llvm/ADT/OwningPtr.h"
20#include "llvm/CodeGen/AsmPrinter.h"
21#include "llvm/Support/CommandLine.h"
22#include "llvm/Support/FormattedStream.h"
23#include "llvm/Support/ManagedStatic.h"
24#include "llvm/Support/MemoryBuffer.h"
25#include "llvm/Support/PrettyStackTrace.h"
26#include "llvm/Support/SourceMgr.h"
27#include "llvm/Support/raw_ostream.h"
28#include "llvm/System/Signals.h"
29#include "llvm/Target/TargetAsmParser.h"
30#include "llvm/Target/TargetRegistry.h"
31#include "llvm/Target/TargetSelect.h"
32#include "AsmParser.h"
33using namespace llvm;
34
35static cl::opt<std::string>
36InputFilename(cl::Positional, cl::desc("<input file>"), cl::init("-"));
37
38static cl::opt<std::string>
39OutputFilename("o", cl::desc("Output filename"),
40               cl::value_desc("filename"));
41
42enum OutputFileType {
43  OFT_AssemblyFile,
44  OFT_ObjectFile
45};
46static cl::opt<OutputFileType>
47FileType("filetype", cl::init(OFT_AssemblyFile),
48  cl::desc("Choose an output file type:"),
49  cl::values(
50       clEnumValN(OFT_AssemblyFile, "asm",
51                  "Emit an assembly ('.s') file"),
52       clEnumValN(OFT_ObjectFile, "obj",
53                  "Emit a native object ('.o') file"),
54       clEnumValEnd));
55
56static cl::opt<bool>
57Force("f", cl::desc("Enable binary output on terminals"));
58
59static cl::list<std::string>
60IncludeDirs("I", cl::desc("Directory of include files"),
61            cl::value_desc("directory"), cl::Prefix);
62
63static cl::opt<std::string>
64TripleName("triple", cl::desc("Target triple to assemble for,"
65                          "see -version for available targets"),
66       cl::init(LLVM_HOSTTRIPLE));
67
68enum ActionType {
69  AC_AsLex,
70  AC_Assemble
71};
72
73static cl::opt<ActionType>
74Action(cl::desc("Action to perform:"),
75       cl::init(AC_Assemble),
76       cl::values(clEnumValN(AC_AsLex, "as-lex",
77                             "Lex tokens from a .s file"),
78                  clEnumValN(AC_Assemble, "assemble",
79                             "Assemble a .s file (default)"),
80                  clEnumValEnd));
81
82static int AsLexInput(const char *ProgName) {
83  std::string ErrorMessage;
84  MemoryBuffer *Buffer = MemoryBuffer::getFileOrSTDIN(InputFilename,
85                                                      &ErrorMessage);
86  if (Buffer == 0) {
87    errs() << ProgName << ": ";
88    if (ErrorMessage.size())
89      errs() << ErrorMessage << "\n";
90    else
91      errs() << "input file didn't read correctly.\n";
92    return 1;
93  }
94
95  SourceMgr SrcMgr;
96
97  // Tell SrcMgr about this buffer, which is what TGParser will pick up.
98  SrcMgr.AddNewSourceBuffer(Buffer, SMLoc());
99
100  // Record the location of the include directories so that the lexer can find
101  // it later.
102  SrcMgr.setIncludeDirs(IncludeDirs);
103
104  AsmLexer Lexer(SrcMgr);
105
106  bool Error = false;
107
108  while (Lexer.Lex().isNot(AsmToken::Eof)) {
109    switch (Lexer.getKind()) {
110    default:
111      Lexer.PrintMessage(Lexer.getLoc(), "unknown token", "warning");
112      Error = true;
113      break;
114    case AsmToken::Error:
115      Error = true; // error already printed.
116      break;
117    case AsmToken::Identifier:
118      outs() << "identifier: " << Lexer.getTok().getString() << '\n';
119      break;
120    case AsmToken::Register:
121      outs() << "register: " << Lexer.getTok().getString() << '\n';
122      break;
123    case AsmToken::String:
124      outs() << "string: " << Lexer.getTok().getString() << '\n';
125      break;
126    case AsmToken::Integer:
127      outs() << "int: " << Lexer.getTok().getString() << '\n';
128      break;
129
130    case AsmToken::Amp:            outs() << "Amp\n"; break;
131    case AsmToken::AmpAmp:         outs() << "AmpAmp\n"; break;
132    case AsmToken::Caret:          outs() << "Caret\n"; break;
133    case AsmToken::Colon:          outs() << "Colon\n"; break;
134    case AsmToken::Comma:          outs() << "Comma\n"; break;
135    case AsmToken::Dollar:         outs() << "Dollar\n"; break;
136    case AsmToken::EndOfStatement: outs() << "EndOfStatement\n"; break;
137    case AsmToken::Eof:            outs() << "Eof\n"; break;
138    case AsmToken::Equal:          outs() << "Equal\n"; break;
139    case AsmToken::EqualEqual:     outs() << "EqualEqual\n"; break;
140    case AsmToken::Exclaim:        outs() << "Exclaim\n"; break;
141    case AsmToken::ExclaimEqual:   outs() << "ExclaimEqual\n"; break;
142    case AsmToken::Greater:        outs() << "Greater\n"; break;
143    case AsmToken::GreaterEqual:   outs() << "GreaterEqual\n"; break;
144    case AsmToken::GreaterGreater: outs() << "GreaterGreater\n"; break;
145    case AsmToken::LParen:         outs() << "LParen\n"; break;
146    case AsmToken::Less:           outs() << "Less\n"; break;
147    case AsmToken::LessEqual:      outs() << "LessEqual\n"; break;
148    case AsmToken::LessGreater:    outs() << "LessGreater\n"; break;
149    case AsmToken::LessLess:       outs() << "LessLess\n"; break;
150    case AsmToken::Minus:          outs() << "Minus\n"; break;
151    case AsmToken::Percent:        outs() << "Percent\n"; break;
152    case AsmToken::Pipe:           outs() << "Pipe\n"; break;
153    case AsmToken::PipePipe:       outs() << "PipePipe\n"; break;
154    case AsmToken::Plus:           outs() << "Plus\n"; break;
155    case AsmToken::RParen:         outs() << "RParen\n"; break;
156    case AsmToken::Slash:          outs() << "Slash\n"; break;
157    case AsmToken::Star:           outs() << "Star\n"; break;
158    case AsmToken::Tilde:          outs() << "Tilde\n"; break;
159    }
160  }
161
162  return Error;
163}
164
165static const Target *GetTarget(const char *ProgName) {
166  // Get the target specific parser.
167  std::string Error;
168  const Target *TheTarget = TargetRegistry::lookupTarget(TripleName, Error);
169  if (TheTarget)
170    return TheTarget;
171
172  errs() << ProgName << ": error: unable to get target for '" << TripleName
173         << "', see --version and --triple.\n";
174  return 0;
175}
176
177static formatted_raw_ostream *GetOutputStream() {
178  if (OutputFilename == "")
179    OutputFilename = "-";
180
181  // Make sure that the Out file gets unlinked from the disk if we get a
182  // SIGINT.
183  if (OutputFilename != "-")
184    sys::RemoveFileOnSignal(sys::Path(OutputFilename));
185
186  std::string Err;
187  raw_fd_ostream *Out = new raw_fd_ostream(OutputFilename.c_str(), Err,
188                                           raw_fd_ostream::F_Binary);
189  if (!Err.empty()) {
190    errs() << Err << '\n';
191    delete Out;
192    return 0;
193  }
194
195  return new formatted_raw_ostream(*Out, formatted_raw_ostream::DELETE_STREAM);
196}
197
198static int AssembleInput(const char *ProgName) {
199  const Target *TheTarget = GetTarget(ProgName);
200  if (!TheTarget)
201    return 1;
202
203  std::string Error;
204  MemoryBuffer *Buffer = MemoryBuffer::getFileOrSTDIN(InputFilename, &Error);
205  if (Buffer == 0) {
206    errs() << ProgName << ": ";
207    if (Error.size())
208      errs() << Error << "\n";
209    else
210      errs() << "input file didn't read correctly.\n";
211    return 1;
212  }
213
214  SourceMgr SrcMgr;
215
216  // Tell SrcMgr about this buffer, which is what the parser will pick up.
217  SrcMgr.AddNewSourceBuffer(Buffer, SMLoc());
218
219  // Record the location of the include directories so that the lexer can find
220  // it later.
221  SrcMgr.setIncludeDirs(IncludeDirs);
222
223  MCContext Ctx;
224  formatted_raw_ostream *Out = GetOutputStream();
225  if (!Out)
226    return 1;
227
228
229  // FIXME: We shouldn't need to do this (and link in codegen).
230  OwningPtr<TargetMachine> TM(TheTarget->createTargetMachine(TripleName, ""));
231
232  if (!TM) {
233    errs() << ProgName << ": error: could not create target for triple '"
234           << TripleName << "'.\n";
235    return 1;
236  }
237
238  OwningPtr<AsmPrinter> AP;
239  OwningPtr<MCCodeEmitter> CE;
240  OwningPtr<MCStreamer> Str;
241
242  if (FileType == OFT_AssemblyFile) {
243    const MCAsmInfo *TAI = TheTarget->createAsmInfo(TripleName);
244    assert(TAI && "Unable to create target asm info!");
245
246    AP.reset(TheTarget->createAsmPrinter(*Out, *TM, TAI, true));
247    CE.reset(TheTarget->createCodeEmitter(*TM));
248    Str.reset(createAsmStreamer(Ctx, *Out, *TAI, AP.get(), CE.get()));
249  } else {
250    assert(FileType == OFT_ObjectFile && "Invalid file type!");
251    Str.reset(createMachOStreamer(Ctx, *Out));
252  }
253
254  AsmParser Parser(SrcMgr, Ctx, *Str.get());
255  OwningPtr<TargetAsmParser> TAP(TheTarget->createAsmParser(Parser));
256  if (!TAP) {
257    errs() << ProgName
258           << ": error: this target does not support assembly parsing.\n";
259    return 1;
260  }
261
262  Parser.setTargetParser(*TAP.get());
263
264  int Res = Parser.Run();
265  if (Out != &fouts())
266    delete Out;
267
268  return Res;
269}
270
271
272int main(int argc, char **argv) {
273  // Print a stack trace if we signal out.
274  sys::PrintStackTraceOnErrorSignal();
275  PrettyStackTraceProgram X(argc, argv);
276  llvm_shutdown_obj Y;  // Call llvm_shutdown() on exit.
277
278  // Initialize targets and assembly printers/parsers.
279  llvm::InitializeAllTargetInfos();
280  // FIXME: We shouldn't need to initialize the Target(Machine)s.
281  llvm::InitializeAllTargets();
282  llvm::InitializeAllAsmPrinters();
283  llvm::InitializeAllAsmParsers();
284
285  cl::ParseCommandLineOptions(argc, argv, "llvm machine code playground\n");
286
287  switch (Action) {
288  default:
289  case AC_AsLex:
290    return AsLexInput(argv[0]);
291  case AC_Assemble:
292    return AssembleInput(argv[0]);
293  }
294
295  return 0;
296}
297
298