1 //===-- llvm-mc.cpp - Machine Code Hacking Driver -------------------------===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This utility is a simple driver that allows command line hacking on machine
13 //===----------------------------------------------------------------------===//
15 #include "llvm/MC/MCContext.h"
16 #include "llvm/MC/MCSection.h"
17 #include "llvm/MC/MCStreamer.h"
18 #include "llvm/ADT/OwningPtr.h"
19 #include "llvm/Support/CommandLine.h"
20 #include "llvm/Support/ManagedStatic.h"
21 #include "llvm/Support/MemoryBuffer.h"
22 #include "llvm/Support/PrettyStackTrace.h"
23 #include "llvm/Support/SourceMgr.h"
24 #include "llvm/Support/raw_ostream.h"
25 #include "llvm/System/Signals.h"
26 #include "llvm/Target/TargetAsmParser.h"
27 #include "llvm/Target/TargetRegistry.h"
28 #include "llvm/Target/TargetSelect.h"
29 #include "AsmParser.h"
32 static cl::opt
<std::string
>
33 InputFilename(cl::Positional
, cl::desc("<input file>"), cl::init("-"));
35 static cl::opt
<std::string
>
36 OutputFilename("o", cl::desc("Output filename"),
37 cl::value_desc("filename"));
39 static cl::list
<std::string
>
40 IncludeDirs("I", cl::desc("Directory of include files"),
41 cl::value_desc("directory"), cl::Prefix
);
43 static cl::opt
<std::string
>
44 TripleName("triple", cl::desc("Target triple to assemble for,"
45 "see -version for available targets"),
46 cl::init(LLVM_HOSTTRIPLE
));
53 static cl::opt
<ActionType
>
54 Action(cl::desc("Action to perform:"),
55 cl::init(AC_Assemble
),
56 cl::values(clEnumValN(AC_AsLex
, "as-lex",
57 "Lex tokens from a .s file"),
58 clEnumValN(AC_Assemble
, "assemble",
59 "Assemble a .s file (default)"),
62 static int AsLexInput(const char *ProgName
) {
63 std::string ErrorMessage
;
64 MemoryBuffer
*Buffer
= MemoryBuffer::getFileOrSTDIN(InputFilename
,
67 errs() << ProgName
<< ": ";
68 if (ErrorMessage
.size())
69 errs() << ErrorMessage
<< "\n";
71 errs() << "input file didn't read correctly.\n";
77 // Tell SrcMgr about this buffer, which is what TGParser will pick up.
78 SrcMgr
.AddNewSourceBuffer(Buffer
, SMLoc());
80 // Record the location of the include directories so that the lexer can find
82 SrcMgr
.setIncludeDirs(IncludeDirs
);
84 AsmLexer
Lexer(SrcMgr
);
88 while (Lexer
.Lex().isNot(AsmToken::Eof
)) {
89 switch (Lexer
.getKind()) {
91 Lexer
.PrintMessage(Lexer
.getLoc(), "unknown token", "warning");
95 Error
= true; // error already printed.
97 case AsmToken::Identifier
:
98 outs() << "identifier: " << Lexer
.getTok().getString() << '\n';
100 case AsmToken::Register
:
101 outs() << "register: " << Lexer
.getTok().getString() << '\n';
103 case AsmToken::String
:
104 outs() << "string: " << Lexer
.getTok().getString() << '\n';
106 case AsmToken::Integer
:
107 outs() << "int: " << Lexer
.getTok().getString() << '\n';
110 case AsmToken::Amp
: outs() << "Amp\n"; break;
111 case AsmToken::AmpAmp
: outs() << "AmpAmp\n"; break;
112 case AsmToken::Caret
: outs() << "Caret\n"; break;
113 case AsmToken::Colon
: outs() << "Colon\n"; break;
114 case AsmToken::Comma
: outs() << "Comma\n"; break;
115 case AsmToken::Dollar
: outs() << "Dollar\n"; break;
116 case AsmToken::EndOfStatement
: outs() << "EndOfStatement\n"; break;
117 case AsmToken::Eof
: outs() << "Eof\n"; break;
118 case AsmToken::Equal
: outs() << "Equal\n"; break;
119 case AsmToken::EqualEqual
: outs() << "EqualEqual\n"; break;
120 case AsmToken::Exclaim
: outs() << "Exclaim\n"; break;
121 case AsmToken::ExclaimEqual
: outs() << "ExclaimEqual\n"; break;
122 case AsmToken::Greater
: outs() << "Greater\n"; break;
123 case AsmToken::GreaterEqual
: outs() << "GreaterEqual\n"; break;
124 case AsmToken::GreaterGreater
: outs() << "GreaterGreater\n"; break;
125 case AsmToken::LParen
: outs() << "LParen\n"; break;
126 case AsmToken::Less
: outs() << "Less\n"; break;
127 case AsmToken::LessEqual
: outs() << "LessEqual\n"; break;
128 case AsmToken::LessGreater
: outs() << "LessGreater\n"; break;
129 case AsmToken::LessLess
: outs() << "LessLess\n"; break;
130 case AsmToken::Minus
: outs() << "Minus\n"; break;
131 case AsmToken::Percent
: outs() << "Percent\n"; break;
132 case AsmToken::Pipe
: outs() << "Pipe\n"; break;
133 case AsmToken::PipePipe
: outs() << "PipePipe\n"; break;
134 case AsmToken::Plus
: outs() << "Plus\n"; break;
135 case AsmToken::RParen
: outs() << "RParen\n"; break;
136 case AsmToken::Slash
: outs() << "Slash\n"; break;
137 case AsmToken::Star
: outs() << "Star\n"; break;
138 case AsmToken::Tilde
: outs() << "Tilde\n"; break;
145 static TargetAsmParser
*GetTargetAsmParser(const char *ProgName
,
146 MCAsmParser
&Parser
) {
147 // Get the target specific parser.
149 const Target
*TheTarget
= TargetRegistry::lookupTarget(TripleName
, Error
);
150 if (TheTarget
== 0) {
151 errs() << ProgName
<< ": error: unable to get target for '" << TripleName
152 << "', see --version and --triple.\n";
156 if (TargetAsmParser
*TAP
= TheTarget
->createAsmParser(Parser
))
160 << ": error: this target does not support assembly parsing.\n";
164 static int AssembleInput(const char *ProgName
) {
166 MemoryBuffer
*Buffer
= MemoryBuffer::getFileOrSTDIN(InputFilename
, &Error
);
168 errs() << ProgName
<< ": ";
170 errs() << Error
<< "\n";
172 errs() << "input file didn't read correctly.\n";
178 // Tell SrcMgr about this buffer, which is what TGParser will pick up.
179 SrcMgr
.AddNewSourceBuffer(Buffer
, SMLoc());
181 // Record the location of the include directories so that the lexer can find
183 SrcMgr
.setIncludeDirs(IncludeDirs
);
186 OwningPtr
<MCStreamer
> Str(createAsmStreamer(Ctx
, outs()));
188 // FIXME: Target hook & command line option for initial section.
189 Str
.get()->SwitchSection(MCSection::Create("__TEXT,__text,"
190 "regular,pure_instructions",
192 SectionKind::getText(),
195 AsmParser
Parser(SrcMgr
, Ctx
, *Str
.get());
196 OwningPtr
<TargetAsmParser
> TAP(GetTargetAsmParser(ProgName
, Parser
));
199 Parser
.setTargetParser(*TAP
.get());
204 int main(int argc
, char **argv
) {
205 // Print a stack trace if we signal out.
206 sys::PrintStackTraceOnErrorSignal();
207 PrettyStackTraceProgram
X(argc
, argv
);
208 llvm_shutdown_obj Y
; // Call llvm_shutdown() on exit.
210 // Initialize targets and assembly parsers.
211 llvm::InitializeAllTargetInfos();
212 llvm::InitializeAllAsmParsers();
214 cl::ParseCommandLineOptions(argc
, argv
, "llvm machine code playground\n");
219 return AsLexInput(argv
[0]);
221 return AssembleInput(argv
[0]);